From db312e67070681e1ab435fb60a0380afdcdaab3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 10:30:44 -0300 Subject: [PATCH 1/9] fix(CI): fix CI workflows --- Makefile | 2 +- conda/dev.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 19f07fc..7606bb3 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ export PRINT_HELP_PYSCRIPT help: @python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST) -DOCKER = docker-compose -p pysus -f docker/docker-compose.yaml +DOCKER = docker compose -p pysus -f docker/docker-compose.yaml SERVICE := SEMANTIC_RELEASE = npx --yes \ -p semantic-release \ diff --git a/conda/dev.yaml b/conda/dev.yaml index ce0f4ac..53ae0d4 100644 --- a/conda/dev.yaml +++ b/conda/dev.yaml @@ -3,6 +3,7 @@ channels: - conda-forge - defaults dependencies: + - docker-compose - python >=3.10,<3.12 - numpy>=1.26.2 - cffi From bb475e3d679746a588ac58bc2a138235d79a2a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 10:36:23 -0300 Subject: [PATCH 2/9] run pre-commit --- .idea/PySUS.iml | 2 +- .idea/misc.xml | 2 +- docs/source/index.rst | 1 - docs/source/kepler_config.json | 2 +- .../locale/pt/LC_MESSAGES/Chikungunya.po | 1 - docs/source/locale/pt/LC_MESSAGES/Dengue.po | 1 - .../locale/pt/LC_MESSAGES/Infodengue.po | 1 - docs/source/locale/pt/LC_MESSAGES/PNI.po | 1 - docs/source/locale/pt/LC_MESSAGES/SIM.po | 1 - docs/source/locale/pt/LC_MESSAGES/Zika.po | 1 - .../locale/pt/LC_MESSAGES/data-sources.po | 1 - docs/source/locale/pt/LC_MESSAGES/index.po | 1 - .../locale/pt_BR/LC_MESSAGES/Chikungunya.po | 1 - .../source/locale/pt_BR/LC_MESSAGES/Dengue.po | 1 - .../locale/pt_BR/LC_MESSAGES/Infodengue.po | 1 - docs/source/locale/pt_BR/LC_MESSAGES/PNI.po | 1 - docs/source/locale/pt_BR/LC_MESSAGES/SIM.po | 1 - docs/source/locale/pt_BR/LC_MESSAGES/Zika.po | 1 - .../locale/pt_BR/LC_MESSAGES/data-sources.po | 1 - docs/source/locale/pt_BR/LC_MESSAGES/index.po | 1 - docs/source/rio.html | 2 +- docs/source/tutorials/rj-municipalities.json | 2 +- docs/source/tutorials/tutorials.rst | 2 +- pysus/__init__.py | 3 +- pysus/data/__init__.py | 2 +- pysus/dataset/geocode_by_cities.json | 2 +- pysus/ftp/__init__.py | 13 +-- pysus/ftp/databases/ciha.py | 12 ++- pysus/ftp/databases/cnes.py | 6 +- pysus/ftp/databases/ibge_datasus.py | 27 +++--- pysus/ftp/databases/pni.py | 16 +-- pysus/ftp/databases/sia.py | 16 +-- pysus/ftp/databases/sih.py | 12 ++- pysus/ftp/databases/sim.py | 4 +- pysus/ftp/databases/sinan.py | 18 ++-- pysus/ftp/databases/sinasc.py | 4 +- pysus/ftp/databases/territory.py | 12 +-- pysus/online_data/CIHA.py | 5 +- pysus/online_data/CNES.py | 30 +++--- pysus/online_data/ESUS.py | 53 +++++----- pysus/online_data/IBGE.py | 97 +++++++++---------- pysus/online_data/Infodengue.py | 52 +++++----- pysus/online_data/Infogripe.py | 12 +-- pysus/online_data/PNI.py | 6 +- pysus/online_data/SIA.py | 5 +- pysus/online_data/SIH.py | 5 +- pysus/online_data/SIM.py | 3 +- pysus/online_data/SINAN.py | 3 +- pysus/online_data/SINASC.py | 1 - pysus/online_data/territory.py | 36 ++++--- pysus/online_data/vaccine.py | 73 +++++++------- pysus/preprocessing/ESUS.py | 16 ++- pysus/preprocessing/SIM.py | 30 ++++-- pysus/preprocessing/decoders.py | 82 +++++++++------- pysus/preprocessing/geodata.py | 5 +- pysus/preprocessing/sinan.py | 12 ++- pysus/tests/__init__.py | 2 +- pysus/tests/test_data/__init__.py | 2 +- pysus/tests/test_data/test_Infogripe.py | 6 +- pysus/tests/test_data/test_vaccine.py | 4 +- pysus/tests/test_decoders.py | 29 +++--- pysus/tests/test_esus.py | 2 +- pysus/tests/test_ftp/test_File.py | 16 ++- .../test_ftp/test_databases/test_CIHA.py | 96 +++++++++--------- .../test_ftp/test_databases/test_CNES.py | 94 +++++++++--------- .../test_databases/test_IBGEDATASUS.py | 29 +++--- .../tests/test_ftp/test_databases/test_PNI.py | 88 +++++++++-------- .../tests/test_ftp/test_databases/test_SIA.py | 96 +++++++++--------- .../tests/test_ftp/test_databases/test_SIH.py | 96 +++++++++--------- .../tests/test_ftp/test_databases/test_SIM.py | 94 ++++++++++-------- .../test_ftp/test_databases/test_SINAN.py | 78 ++++++++------- .../test_ftp/test_databases/test_SINASC.py | 88 +++++++++-------- .../test_ftp/test_databases/test_territory.py | 5 +- pysus/tests/test_ibge.py | 28 ++++-- pysus/tests/test_utilities.py | 3 +- pysus/utilities/brasil.py | 2 +- setup.cfg | 2 +- 77 files changed, 813 insertions(+), 749 deletions(-) diff --git a/.idea/PySUS.iml b/.idea/PySUS.iml index dfbfc20..a17c85b 100644 --- a/.idea/PySUS.iml +++ b/.idea/PySUS.iml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/.idea/misc.xml b/.idea/misc.xml index 8243cd1..a3544b6 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/docs/source/index.rst b/docs/source/index.rst index 49df12b..b1f9446 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -23,4 +23,3 @@ Indices and tables * :ref:`genindex` * :ref:`modindex` * :ref:`search` - diff --git a/docs/source/kepler_config.json b/docs/source/kepler_config.json index f258043..d1b49e5 100644 --- a/docs/source/kepler_config.json +++ b/docs/source/kepler_config.json @@ -1 +1 @@ -{"version": "v1", "config": {"visState": {"filters": [], "layers": [{"id": "ydiyslk", "type": "point", "config": {"dataId": "Casos de Zika em 2016", "label": "Casos de Zika", "color": [183, 136, 94], "columns": {"lat": "latitude", "lng": "longitude", "altitude": null}, "isVisible": true, "visConfig": {"radius": 10, "fixedRadius": false, "opacity": 0.8, "outline": false, "thickness": 2, "strokeColor": null, "colorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "strokeColorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "radiusRange": [1, 40], "filled": true}, "textLabel": [{"field": null, "color": [255, 255, 255], "size": 18, "offset": [0, 0], "anchor": "start", "alignment": "center"}]}, "visualChannels": {"colorField": null, "colorScale": "quantile", "strokeColorField": null, "strokeColorScale": "quantile", "sizeField": null, "sizeScale": "linear"}}, {"id": "icdqzjm", "type": "point", "config": {"dataId": "Casos de Dengue em 2016", "label": "Casos de Dengue", "color": [32, 103, 172], "columns": {"lat": "latitude", "lng": "longitude", "altitude": null}, "isVisible": true, "visConfig": {"radius": 10, "fixedRadius": false, "opacity": 0.8, "outline": false, "thickness": 2, "strokeColor": null, "colorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "strokeColorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "radiusRange": [0, 50], "filled": true}, "textLabel": [{"field": null, "color": [255, 255, 255], "size": 18, "offset": [0, 0], "anchor": "start", "alignment": "center"}]}, "visualChannels": {"colorField": null, "colorScale": "quantile", "strokeColorField": null, "strokeColorScale": "quantile", "sizeField": null, "sizeScale": "linear"}}, {"id": "u28x356", "type": "point", "config": {"dataId": "Casos de Chikungunya em 2016", "label": "Casos de Chikungunia", "color": [125, 194, 64], "columns": {"lat": "latitude", "lng": "longitude", "altitude": null}, "isVisible": true, "visConfig": {"radius": 10, "fixedRadius": false, "opacity": 0.8, "outline": false, "thickness": 2, "strokeColor": null, "colorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "strokeColorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "radiusRange": [0, 50], "filled": true}, "textLabel": [{"field": null, "color": [255, 255, 255], "size": 18, "offset": [0, 0], "anchor": "start", "alignment": "center"}]}, "visualChannels": {"colorField": null, "colorScale": "quantile", "strokeColorField": null, "strokeColorScale": "quantile", "sizeField": null, "sizeScale": "linear"}}], "interactionConfig": {"tooltip": {"fieldsToShow": {"Casos de Zika em 2016": ["ID_AGRAVO", "SEM_NOT", "NU_ANO", "ID_MUNICIP", "DT_SIN_PRI"], "Casos de Dengue em 2016": ["ID_AGRAVO", "SEM_NOT", "NU_ANO", "ID_MUNICIP", "DT_SIN_PRI"], "Casos de Chikungunya em 2016": ["ID_AGRAVO", "SEM_NOT", "NU_ANO", "ID_MUNICIP", "DT_SIN_PRI"]}, "enabled": true}, "brush": {"size": 0.5, "enabled": false}}, "layerBlending": "normal", "splitMaps": [], "animationConfig": {"currentTime": null, "speed": 1}}, "mapState": {"bearing": 24, "dragRotate": true, "latitude": -22.802329589865103, "longitude": -43.383896341999, "pitch": 50, "zoom": 9.379836309981588, "isSplit": false}, "mapStyle": {"styleType": "dark", "topLayerGroups": {}, "visibleLayerGroups": {"label": true, "road": true, "border": false, "building": true, "water": true, "land": true, "3d building": false}, "threeDBuildingColor": [9.665468314072013, 17.18305478057247, 31.1442867897876], "mapStyles": {}}}} \ No newline at end of file +{"version": "v1", "config": {"visState": {"filters": [], "layers": [{"id": "ydiyslk", "type": "point", "config": {"dataId": "Casos de Zika em 2016", "label": "Casos de Zika", "color": [183, 136, 94], "columns": {"lat": "latitude", "lng": "longitude", "altitude": null}, "isVisible": true, "visConfig": {"radius": 10, "fixedRadius": false, "opacity": 0.8, "outline": false, "thickness": 2, "strokeColor": null, "colorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "strokeColorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "radiusRange": [1, 40], "filled": true}, "textLabel": [{"field": null, "color": [255, 255, 255], "size": 18, "offset": [0, 0], "anchor": "start", "alignment": "center"}]}, "visualChannels": {"colorField": null, "colorScale": "quantile", "strokeColorField": null, "strokeColorScale": "quantile", "sizeField": null, "sizeScale": "linear"}}, {"id": "icdqzjm", "type": "point", "config": {"dataId": "Casos de Dengue em 2016", "label": "Casos de Dengue", "color": [32, 103, 172], "columns": {"lat": "latitude", "lng": "longitude", "altitude": null}, "isVisible": true, "visConfig": {"radius": 10, "fixedRadius": false, "opacity": 0.8, "outline": false, "thickness": 2, "strokeColor": null, "colorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "strokeColorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "radiusRange": [0, 50], "filled": true}, "textLabel": [{"field": null, "color": [255, 255, 255], "size": 18, "offset": [0, 0], "anchor": "start", "alignment": "center"}]}, "visualChannels": {"colorField": null, "colorScale": "quantile", "strokeColorField": null, "strokeColorScale": "quantile", "sizeField": null, "sizeScale": "linear"}}, {"id": "u28x356", "type": "point", "config": {"dataId": "Casos de Chikungunya em 2016", "label": "Casos de Chikungunia", "color": [125, 194, 64], "columns": {"lat": "latitude", "lng": "longitude", "altitude": null}, "isVisible": true, "visConfig": {"radius": 10, "fixedRadius": false, "opacity": 0.8, "outline": false, "thickness": 2, "strokeColor": null, "colorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "strokeColorRange": {"name": "Global Warming", "type": "sequential", "category": "Uber", "colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]}, "radiusRange": [0, 50], "filled": true}, "textLabel": [{"field": null, "color": [255, 255, 255], "size": 18, "offset": [0, 0], "anchor": "start", "alignment": "center"}]}, "visualChannels": {"colorField": null, "colorScale": "quantile", "strokeColorField": null, "strokeColorScale": "quantile", "sizeField": null, "sizeScale": "linear"}}], "interactionConfig": {"tooltip": {"fieldsToShow": {"Casos de Zika em 2016": ["ID_AGRAVO", "SEM_NOT", "NU_ANO", "ID_MUNICIP", "DT_SIN_PRI"], "Casos de Dengue em 2016": ["ID_AGRAVO", "SEM_NOT", "NU_ANO", "ID_MUNICIP", "DT_SIN_PRI"], "Casos de Chikungunya em 2016": ["ID_AGRAVO", "SEM_NOT", "NU_ANO", "ID_MUNICIP", "DT_SIN_PRI"]}, "enabled": true}, "brush": {"size": 0.5, "enabled": false}}, "layerBlending": "normal", "splitMaps": [], "animationConfig": {"currentTime": null, "speed": 1}}, "mapState": {"bearing": 24, "dragRotate": true, "latitude": -22.802329589865103, "longitude": -43.383896341999, "pitch": 50, "zoom": 9.379836309981588, "isSplit": false}, "mapStyle": {"styleType": "dark", "topLayerGroups": {}, "visibleLayerGroups": {"label": true, "road": true, "border": false, "building": true, "water": true, "land": true, "3d building": false}, "threeDBuildingColor": [9.665468314072013, 17.18305478057247, 31.1442867897876], "mapStyles": {}}}} diff --git a/docs/source/locale/pt/LC_MESSAGES/Chikungunya.po b/docs/source/locale/pt/LC_MESSAGES/Chikungunya.po index ae3a389..f9ee55c 100644 --- a/docs/source/locale/pt/LC_MESSAGES/Chikungunya.po +++ b/docs/source/locale/pt/LC_MESSAGES/Chikungunya.po @@ -22,4 +22,3 @@ msgstr "" #: ../../source/Chikungunya.ipynb:9 msgid "Analyzing Chikungunya data" msgstr "Analyzando dados de Chikungunya" - diff --git a/docs/source/locale/pt/LC_MESSAGES/Dengue.po b/docs/source/locale/pt/LC_MESSAGES/Dengue.po index 355c745..6addba5 100644 --- a/docs/source/locale/pt/LC_MESSAGES/Dengue.po +++ b/docs/source/locale/pt/LC_MESSAGES/Dengue.po @@ -65,4 +65,3 @@ msgid "" "Suponhamos agora que desejamos visualizar em um mapa os casos que " "ocorreram, por exemplo entre janeiro e março de 2015" msgstr "" - diff --git a/docs/source/locale/pt/LC_MESSAGES/Infodengue.po b/docs/source/locale/pt/LC_MESSAGES/Infodengue.po index a58c0ed..18d3405 100644 --- a/docs/source/locale/pt/LC_MESSAGES/Infodengue.po +++ b/docs/source/locale/pt/LC_MESSAGES/Infodengue.po @@ -94,4 +94,3 @@ msgstr "zika_rio_do_antônio_se01_04.csv" #: ../../source/Infodengue.ipynb:670 msgid "zika_rio_do_pires_se01_04.csv" msgstr "zika_rio_do_pires_se01_04.csv" - diff --git a/docs/source/locale/pt/LC_MESSAGES/PNI.po b/docs/source/locale/pt/LC_MESSAGES/PNI.po index 927117a..d252e4d 100644 --- a/docs/source/locale/pt/LC_MESSAGES/PNI.po +++ b/docs/source/locale/pt/LC_MESSAGES/PNI.po @@ -34,4 +34,3 @@ msgstr "" #: ../../source/PNI.ipynb:151 msgid "Then we can fetch data from a particular year:" msgstr "Em seguida, podemos extrair os dados de um ano específico:" - diff --git a/docs/source/locale/pt/LC_MESSAGES/SIM.po b/docs/source/locale/pt/LC_MESSAGES/SIM.po index 57f4697..517483a 100644 --- a/docs/source/locale/pt/LC_MESSAGES/SIM.po +++ b/docs/source/locale/pt/LC_MESSAGES/SIM.po @@ -34,4 +34,3 @@ msgstr "" #: ../../source/SIM.ipynb:822 msgid "Humanizing some of the encoded variables." msgstr "Humanizando algumas das variáveis codificadas." - diff --git a/docs/source/locale/pt/LC_MESSAGES/Zika.po b/docs/source/locale/pt/LC_MESSAGES/Zika.po index 8d7807a..ddb77ac 100644 --- a/docs/source/locale/pt/LC_MESSAGES/Zika.po +++ b/docs/source/locale/pt/LC_MESSAGES/Zika.po @@ -74,4 +74,3 @@ msgstr "" #: ../../source/Zika.ipynb:544 msgid "Usando Kepler.gl para visualização" msgstr "" - diff --git a/docs/source/locale/pt/LC_MESSAGES/data-sources.po b/docs/source/locale/pt/LC_MESSAGES/data-sources.po index 5a08baf..bb057e2 100644 --- a/docs/source/locale/pt/LC_MESSAGES/data-sources.po +++ b/docs/source/locale/pt/LC_MESSAGES/data-sources.po @@ -50,4 +50,3 @@ msgstr "SIH" #: ../../source/data-sources.rst:12 msgid "SIA" msgstr "SIA" - diff --git a/docs/source/locale/pt/LC_MESSAGES/index.po b/docs/source/locale/pt/LC_MESSAGES/index.po index e745c9e..5b573b8 100644 --- a/docs/source/locale/pt/LC_MESSAGES/index.po +++ b/docs/source/locale/pt/LC_MESSAGES/index.po @@ -104,4 +104,3 @@ msgstr ":ref:`modindex`" #: ../../source/index.rst:39 msgid ":ref:`search`" msgstr ":ref:`search`" - diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/Chikungunya.po b/docs/source/locale/pt_BR/LC_MESSAGES/Chikungunya.po index ae3a389..f9ee55c 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/Chikungunya.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/Chikungunya.po @@ -22,4 +22,3 @@ msgstr "" #: ../../source/Chikungunya.ipynb:9 msgid "Analyzing Chikungunya data" msgstr "Analyzando dados de Chikungunya" - diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/Dengue.po b/docs/source/locale/pt_BR/LC_MESSAGES/Dengue.po index 355c745..6addba5 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/Dengue.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/Dengue.po @@ -65,4 +65,3 @@ msgid "" "Suponhamos agora que desejamos visualizar em um mapa os casos que " "ocorreram, por exemplo entre janeiro e março de 2015" msgstr "" - diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/Infodengue.po b/docs/source/locale/pt_BR/LC_MESSAGES/Infodengue.po index a58c0ed..18d3405 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/Infodengue.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/Infodengue.po @@ -94,4 +94,3 @@ msgstr "zika_rio_do_antônio_se01_04.csv" #: ../../source/Infodengue.ipynb:670 msgid "zika_rio_do_pires_se01_04.csv" msgstr "zika_rio_do_pires_se01_04.csv" - diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/PNI.po b/docs/source/locale/pt_BR/LC_MESSAGES/PNI.po index 927117a..d252e4d 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/PNI.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/PNI.po @@ -34,4 +34,3 @@ msgstr "" #: ../../source/PNI.ipynb:151 msgid "Then we can fetch data from a particular year:" msgstr "Em seguida, podemos extrair os dados de um ano específico:" - diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/SIM.po b/docs/source/locale/pt_BR/LC_MESSAGES/SIM.po index 57f4697..517483a 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/SIM.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/SIM.po @@ -34,4 +34,3 @@ msgstr "" #: ../../source/SIM.ipynb:822 msgid "Humanizing some of the encoded variables." msgstr "Humanizando algumas das variáveis codificadas." - diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/Zika.po b/docs/source/locale/pt_BR/LC_MESSAGES/Zika.po index 8d7807a..ddb77ac 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/Zika.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/Zika.po @@ -74,4 +74,3 @@ msgstr "" #: ../../source/Zika.ipynb:544 msgid "Usando Kepler.gl para visualização" msgstr "" - diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/data-sources.po b/docs/source/locale/pt_BR/LC_MESSAGES/data-sources.po index 5a08baf..bb057e2 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/data-sources.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/data-sources.po @@ -50,4 +50,3 @@ msgstr "SIH" #: ../../source/data-sources.rst:12 msgid "SIA" msgstr "SIA" - diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/index.po b/docs/source/locale/pt_BR/LC_MESSAGES/index.po index e745c9e..5b573b8 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/index.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/index.po @@ -104,4 +104,3 @@ msgstr ":ref:`modindex`" #: ../../source/index.rst:39 msgid ":ref:`search`" msgstr ":ref:`search`" - diff --git a/docs/source/rio.html b/docs/source/rio.html index 0118c5d..60bedc7 100644 --- a/docs/source/rio.html +++ b/docs/source/rio.html @@ -165,4 +165,4 @@ - \ No newline at end of file + diff --git a/docs/source/tutorials/rj-municipalities.json b/docs/source/tutorials/rj-municipalities.json index cadb3cc..850d104 100644 --- a/docs/source/tutorials/rj-municipalities.json +++ b/docs/source/tutorials/rj-municipalities.json @@ -1 +1 @@ -{"type":"Topology","objects":{"municipalities":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"name":"ANGRA DOS REIS"},"id":"ANGRA DOS REIS","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105,106,107,108,109]]]},{"type":"Polygon","properties":{"name":"APERIBÉ"},"id":"APERIBÉ","arcs":[[110,111,112]]},{"type":"Polygon","properties":{"name":"ARARUAMA"},"id":"ARARUAMA","arcs":[[113,114,115,116,117,118,119,120,121]]},{"type":"Polygon","properties":{"name":"AREAL"},"id":"AREAL","arcs":[[122,123,124]]},{"type":"MultiPolygon","properties":{"name":"ARMAÇÃO DOS BÚZIOS"},"id":"ARMAÇÃO DOS BÚZIOS","arcs":[[[125]],[[126]],[[127,128]],[[129]]]},{"type":"MultiPolygon","properties":{"name":"ARRAIAL DO CABO"},"id":"ARRAIAL DO CABO","arcs":[[[130]],[[131]],[[132,133,134,-117,135]]]},{"type":"Polygon","properties":{"name":"BARRA DO PIRAÍ"},"id":"BARRA DO PIRAÍ","arcs":[[136,137,138,139,140,141,142]]},{"type":"Polygon","properties":{"name":"BARRA MANSA"},"id":"BARRA MANSA","arcs":[[143,144,145,146,147,148,149,150,-142]]},{"type":"Polygon","properties":{"name":"BELFORD ROXO"},"id":"BELFORD ROXO","arcs":[[151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212]]},{"type":"Polygon","properties":{"name":"BOM JARDIM"},"id":"BOM JARDIM","arcs":[[213,214,215,216]]},{"type":"Polygon","properties":{"name":"CABO FRIO"},"id":"CABO FRIO","arcs":[[217,-128,218,-134,219,-114,220]]},{"type":"Polygon","properties":{"name":"CACHOEIRAS DE MACACU"},"id":"CACHOEIRAS DE MACACU","arcs":[[221,222,223,224,225,226]]},{"type":"Polygon","properties":{"name":"CAMBUCI"},"id":"CAMBUCI","arcs":[[227,228,229,-111,230,231,232]]},{"type":"Polygon","properties":{"name":"CANTAGALO"},"id":"CANTAGALO","arcs":[[233,234,235,236,237,238,239,240]]},{"type":"Polygon","properties":{"name":"CARAPEBUS"},"id":"CARAPEBUS","arcs":[[241,242,243,244]]},{"type":"Polygon","properties":{"name":"CARDOSO MOREIRA"},"id":"CARDOSO MOREIRA","arcs":[[245,246,247,248,249]]},{"type":"Polygon","properties":{"name":"CARMO"},"id":"CARMO","arcs":[[250,251,252,253,-238]]},{"type":"Polygon","properties":{"name":"CASIMIRO DE ABREU"},"id":"CASIMIRO DE ABREU","arcs":[[254,255,256,-221,-122,257,258]]},{"type":"Polygon","properties":{"name":"COMENDADOR LEVY GASPARIAN"},"id":"COMENDADOR LEVY GASPARIAN","arcs":[[259,260,261]]},{"type":"Polygon","properties":{"name":"CONCEIÇÃO DE MACABU"},"id":"CONCEIÇÃO DE MACABU","arcs":[[262,263,-244,264,265,266]]},{"type":"Polygon","properties":{"name":"CORDEIRO"},"id":"CORDEIRO","arcs":[[267,-217,268,-236,269]]},{"type":"Polygon","properties":{"name":"DUAS BARRAS"},"id":"DUAS BARRAS","arcs":[[-237,-269,-216,270,271,-251]]},{"type":"Polygon","properties":{"name":"ENGENHEIRO PAULO DE FRONTIN"},"id":"ENGENHEIRO PAULO DE FRONTIN","arcs":[[272,273,274,275]]},{"type":"Polygon","properties":{"name":"GUAPIMIRIM"},"id":"GUAPIMIRIM","arcs":[[-225,276,277,278,279,280]]},{"type":"Polygon","properties":{"name":"IGUABA GRANDE"},"id":"IGUABA GRANDE","arcs":[[-136,-116,281]]},{"type":"Polygon","properties":{"name":"ITABORAÍ"},"id":"ITABORAÍ","arcs":[[282,283,284,285,-277,-224]]},{"type":"Polygon","properties":{"name":"ITALVA"},"id":"ITALVA","arcs":[[286,-249,287,-228,288]]},{"type":"Polygon","properties":{"name":"ITAOCARA"},"id":"ITAOCARA","arcs":[[289,-241,290,-112,-230,291]]},{"type":"Polygon","properties":{"name":"ITAPERUNA"},"id":"ITAPERUNA","arcs":[[292,293,294,295,-289,-233,296,297,298,299,300]]},{"type":"Polygon","properties":{"name":"ITATIAIA"},"id":"ITATIAIA","arcs":[[301,302]]},{"type":"Polygon","properties":{"name":"JAPERI"},"id":"JAPERI","arcs":[[303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322]]},{"type":"Polygon","properties":{"name":"LAJE DO MURIAÉ"},"id":"LAJE DO MURIAÉ","arcs":[[323,324,-299]]},{"type":"MultiPolygon","properties":{"name":"MACAÉ"},"id":"MACAÉ","arcs":[[[325]],[[326]],[[-243,327,328,-255,329,330,-265]]]},{"type":"Polygon","properties":{"name":"MACUCO"},"id":"MACUCO","arcs":[[331,332,-270,-235]]},{"type":"Polygon","properties":{"name":"MAGÉ"},"id":"MAGÉ","arcs":[[333,334,335,336,337,-279]]},{"type":"MultiPolygon","properties":{"name":"MANGARATIBA"},"id":"MANGARATIBA","arcs":[[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357,358]],[[359,360,-107,361]]]},{"type":"Polygon","properties":{"name":"MARICÁ"},"id":"MARICÁ","arcs":[[362,363,364,365,-284,366]]},{"type":"Polygon","properties":{"name":"MENDES"},"id":"MENDES","arcs":[[-274,367,368,-138,369]]},{"type":"Polygon","properties":{"name":"MIGUEL PEREIRA"},"id":"MIGUEL PEREIRA","arcs":[[370,371,372,-318,373,-276,374,375]]},{"type":"Polygon","properties":{"name":"MIRACEMA"},"id":"MIRACEMA","arcs":[[-298,376,377,378,-324]]},{"type":"Polygon","properties":{"name":"NATIVIDADE"},"id":"NATIVIDADE","arcs":[[379,-301,380,381,382]]},{"type":"MultiPolygon","properties":{"name":"NITERÓI"},"id":"NITERÓI","arcs":[[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[-365,390,391]],[[392]]]},{"type":"Polygon","properties":{"name":"NOVA FRIBURGO"},"id":"NOVA FRIBURGO","arcs":[[-215,393,-330,-259,394,-227,395,396,-271]]},{"type":"Polygon","properties":{"name":"PARACAMBI"},"id":"PARACAMBI","arcs":[[-317,397,398,399,400,401,402,403,404,-368,-273,-374]]},{"type":"Polygon","properties":{"name":"PARAÍBA DO SUL"},"id":"PARAÍBA DO SUL","arcs":[[-261,405,-124,406,407,408,409,410]]},{"type":"MultiPolygon","properties":{"name":"PARATY"},"id":"PARATY","arcs":[[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447,-109]]]},{"type":"Polygon","properties":{"name":"PATY DO ALFERES"},"id":"PATY DO ALFERES","arcs":[[448,-376,449,-408]]},{"type":"Polygon","properties":{"name":"PETRÓPOLIS"},"id":"PETRÓPOLIS","arcs":[[450,-280,-338,451,452,453,454,455,-371,-449,-407,-123,456]]},{"type":"Polygon","properties":{"name":"PINHEIRAL"},"id":"PINHEIRAL","arcs":[[457,458,-140]]},{"type":"Polygon","properties":{"name":"PIRAÍ"},"id":"PIRAÍ","arcs":[[-369,-405,459,460,461,462,-145,463,-458,-139]]},{"type":"Polygon","properties":{"name":"PORTO REAL"},"id":"PORTO REAL","arcs":[[-149,464,465]]},{"type":"Polygon","properties":{"name":"QUATIS"},"id":"QUATIS","arcs":[[-150,-466,466,467,468]]},{"type":"Polygon","properties":{"name":"QUEIMADOS"},"id":"QUEIMADOS","arcs":[[469,470,471,472,473,474,475,-311,476]]},{"type":"Polygon","properties":{"name":"QUISSAMÃ"},"id":"QUISSAMÃ","arcs":[[477,478,479,480,481,482,483,-245,-264,484]]},{"type":"Polygon","properties":{"name":"RESENDE"},"id":"RESENDE","arcs":[[-467,-465,-148,485,-302,486]]},{"type":"Polygon","properties":{"name":"RIO BONITO"},"id":"RIO BONITO","arcs":[[-120,487,488,-223,489]]},{"type":"Polygon","properties":{"name":"RIO CLARO"},"id":"RIO CLARO","arcs":[[490,-362,-106,491,-146,-463]]},{"type":"Polygon","properties":{"name":"RIO DAS FLORES"},"id":"RIO DAS FLORES","arcs":[[-410,492,493,494]]},{"type":"Polygon","properties":{"name":"RIO DAS OSTRAS"},"id":"RIO DAS OSTRAS","arcs":[[495,-256,-329]]},{"type":"Polygon","properties":{"name":"SANTA MARIA MADALENA"},"id":"SANTA MARIA MADALENA","arcs":[[496,-267,497,498,499]]},{"type":"Polygon","properties":{"name":"SANTO ANTÔNIO DE PÁDUA"},"id":"SANTO ANTÔNIO DE PÁDUA","arcs":[[-231,-113,-291,-240,500,-378,501]]},{"type":"Polygon","properties":{"name":"SÃO FIDÉLIS"},"id":"SÃO FIDÉLIS","arcs":[[-248,502,-500,503,-292,-229,-288]]},{"type":"MultiPolygon","properties":{"name":"SÃO GONÇALO"},"id":"SÃO GONÇALO","arcs":[[[504]],[[505]],[[506]],[[507]],[[-366,-392,508,-285]]]},{"type":"Polygon","properties":{"name":"SÃO JOÃO DA BARRA"},"id":"SÃO JOÃO DA BARRA","arcs":[[509,510,511,512,513,514,515,516,517]]},{"type":"Polygon","properties":{"name":"SÃO JOSÉ DE UBÁ"},"id":"SÃO JOSÉ DE UBÁ","arcs":[[-232,-502,-377,-297]]},{"type":"Polygon","properties":{"name":"SÃO JOSÉ DO VALE DO RIO PRETO"},"id":"SÃO JOSÉ DO VALE DO RIO PRETO","arcs":[[518,519,-457,520,521]]},{"type":"Polygon","properties":{"name":"SÃO PEDRO DA ALDEIA"},"id":"SÃO PEDRO DA ALDEIA","arcs":[[-133,-282,-115,-220]]},{"type":"Polygon","properties":{"name":"SÃO SEBASTIÃO DO ALTO"},"id":"SÃO SEBASTIÃO DO ALTO","arcs":[[-504,-499,522,-332,-234,-290]]},{"type":"Polygon","properties":{"name":"SAPUCAIA"},"id":"SAPUCAIA","arcs":[[523,-522,524,525,-253]]},{"type":"Polygon","properties":{"name":"SAQUAREMA"},"id":"SAQUAREMA","arcs":[[-119,526,-363,527,-488]]},{"type":"Polygon","properties":{"name":"SILVA JARDIM"},"id":"SILVA JARDIM","arcs":[[-121,-490,-222,-395,-258]]},{"type":"Polygon","properties":{"name":"SUMIDOURO"},"id":"SUMIDOURO","arcs":[[-252,-272,-397,528,-519,-524]]},{"type":"Polygon","properties":{"name":"TANGUÁ"},"id":"TANGUÁ","arcs":[[-528,-367,-283,-489]]},{"type":"Polygon","properties":{"name":"TERESÓPOLIS"},"id":"TERESÓPOLIS","arcs":[[-396,-226,-281,-451,-520,-529]]},{"type":"Polygon","properties":{"name":"TRAJANO DE MORAES"},"id":"TRAJANO DE MORAES","arcs":[[-498,-266,-331,-394,-214,-268,-333,-523]]},{"type":"Polygon","properties":{"name":"TRÊS RIOS"},"id":"TRÊS RIOS","arcs":[[-521,-125,-406,-260,529,-525]]},{"type":"Polygon","properties":{"name":"VALENÇA"},"id":"VALENÇA","arcs":[[-494,530,-143,-151,-469,531]]},{"type":"Polygon","properties":{"name":"VASSOURAS"},"id":"VASSOURAS","arcs":[[-409,-450,-375,-275,-370,-137,-531,-493]]},{"type":"Polygon","properties":{"name":"VOLTA REDONDA"},"id":"VOLTA REDONDA","arcs":[[-459,-464,-144,-141]]},{"type":"Polygon","properties":{"name":"SEROPÉDICA"},"id":"SEROPÉDICA","arcs":[[532,533,-403,534,535,-400,536,-398,-316,537,-314,538,-312,-476,539]]},{"type":"Polygon","properties":{"name":"SÃO JOÃO DE MERITI"},"id":"SÃO JOÃO DE MERITI","arcs":[[540,-168,541,542,543,544,545,546,547,548,549,550,-172,551,-170]]},{"type":"Polygon","properties":{"name":"NILÓPOLIS"},"id":"NILÓPOLIS","arcs":[[-550,552,553,554,555]]},{"type":"Polygon","properties":{"name":"DUQUE DE CAXIAS"},"id":"DUQUE DE CAXIAS","arcs":[[-372,-456,556,-454,557,-452,-337,558,-335,559,560,561,562,563,564,565,566,567,568,-542,569,-166,570,-164,571,-162,572,-160,573,574,-157,575,-155,576,-153,577,-213,578]]},{"type":"MultiPolygon","properties":{"name":"ITAGUAÍ"},"id":"ITAGUAÍ","arcs":[[[579,-360,-491,-462,580,-460,-404,-534,581]],[[582]],[[583]],[[584]],[[-358,585]],[[586]],[[587,588]]]},{"type":"Polygon","properties":{"name":"MESQUITA"},"id":"MESQUITA","arcs":[[-173,-551,-556,589,590]]},{"type":"Polygon","properties":{"name":"NOVA IGUAÇU"},"id":"NOVA IGUAÇU","arcs":[[-540,-475,591,-473,592,-471,593,-477,-310,594,-308,595,596,-305,597,-323,598,-321,599,-319,-373,-579,-212,600,-210,601,-208,602,-206,603,-204,604,-202,605,-200,606,-198,607,-196,608,-194,609,-192,610,-190,611,-188,612,-186,613,-184,614,-182,615,-180,616,-178,617,-176,618,-174,-591,619]]},{"type":"MultiPolygon","properties":{"name":"RIO DE JANEIRO"},"id":"RIO DE JANEIRO","arcs":[[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645]],[[646]],[[647]],[[-588,648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679,680,681,-563,682,-561,683,-582,-533,-620,-590,-555,684,-553,-549,685,-547,686,-545,687,-543,-569,688,-567]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]]]},{"type":"Polygon","properties":{"name":"BOM JESUS DO ITABAPOANA"},"id":"BOM JESUS DO ITABAPOANA","arcs":[[750,-295,751,-293,-380,752,753]]},{"type":"Polygon","properties":{"name":"CAMPOS DOS GOYTACAZES"},"id":"CAMPOS DOS GOYTACAZES","arcs":[[754,-514,755,-512,756,-510,757,-483,758,-481,759,-479,760,-485,-263,-497,-503,-247,761,-250,-287,-296,-751,762]]},{"type":"Polygon","properties":{"name":"PORCIÚNCULA"},"id":"PORCIÚNCULA","arcs":[[763,-382,764]]},{"type":"Polygon","properties":{"name":"SÃO FRANCISCO DE ITABAPOANA"},"id":"SÃO FRANCISCO DE ITABAPOANA","arcs":[[-517,765,-515,-755,766]]},{"type":"Polygon","properties":{"name":"VARRE-SAI"},"id":"VARRE-SAI","arcs":[[-753,-383,-764,767]]}]}},"arcs":[[[135434,60076],[121,-105],[19,-287],[-121,-153],[-234,-287],[-190,-29],[-172,-134],[-120,-19],[-184,0],[-165,191],[134,335],[133,230],[145,191],[140,57],[76,-67],[95,19],[44,67],[51,67],[76,-95],[51,95],[95,0],[6,-76]],[[166651,107093],[147,-117],[1600,29],[61,1],[967,168],[454,-163],[91,9],[975,106],[454,-201],[305,-378],[255,-314],[512,81],[185,-285],[232,-112],[-77,-354],[49,-1018],[-289,-709],[163,-338],[275,42],[487,419],[702,-154],[522,271],[1088,-427],[571,18],[292,-357],[-58,-404],[-191,-251],[242,-934],[112,-103],[643,636],[261,-89],[64,-341],[-205,-458],[-291,148],[-642,-615],[-7,-364],[-1322,-957],[-303,31],[-170,272],[382,746],[8,203],[-114,130],[-41,45],[-330,362],[-327,0],[-296,207],[-369,255],[-412,63],[-144,-363],[-114,-41],[-133,261],[-633,64],[-226,-184],[-271,56],[-380,-111],[-197,-335],[-373,-111],[7,-306],[97,-938],[275,-486],[531,-219],[182,-322],[383,-198],[269,155],[537,-91],[-91,348],[113,806],[92,146],[389,-18],[265,-443],[-8,-712],[200,-827],[347,-782],[213,-828],[274,-900],[402,-24],[233,-398],[482,-437],[122,10],[401,802],[220,109],[200,201],[116,-430],[292,-321],[522,-322],[362,219],[564,-23],[459,938],[536,-77],[306,223],[687,159],[591,382],[454,-122],[152,-1],[397,-4],[623,-287],[306,-526],[-130,-631],[-304,-1134],[-113,-13],[-340,-37],[-179,-303],[53,-361],[-106,-595],[58,-525],[699,-821],[195,-342],[32,-152],[32,-414],[-106,-374],[-121,-287],[42,-255],[-94,-385],[213,-459],[235,-303],[8,-18],[113,-260],[185,-199],[222,-168],[227,-231],[303,-221],[251,-49],[264,-24],[111,71],[29,153],[39,269],[74,56],[185,-48],[285,96],[138,80],[158,79],[281,146],[84,79],[173,161],[247,114],[39,18],[8,40],[102,486],[-322,79],[-314,219],[96,395],[-232,95],[-43,351],[254,223],[232,318],[211,-95],[190,-271],[-84,-303],[0,-258],[129,-40],[314,-52],[233,239],[274,462],[-253,446],[105,414],[233,318],[399,244],[254,96],[181,234],[84,302],[-213,447],[66,302],[-191,558],[106,95],[148,143],[274,192],[254,63],[359,207],[1003,475],[410,-145],[744,109],[734,306],[507,211],[738,306],[232,-627],[43,-450],[395,-475],[-14,-366],[-205,-231],[-574,-86],[-482,-414],[-5,-4],[-417,-747],[-359,-1089],[-467,-688],[-396,-1163],[-504,-657],[-400,-37],[-270,-550],[143,-529],[55,-1223],[318,-662],[374,-271],[398,167],[197,307],[289,-39],[28,-180],[-282,-742],[-763,-1049],[-333,-1345],[-495,-927],[107,-602],[305,-516],[283,-193],[665,663],[767,290],[757,1114],[275,-29],[346,-547],[778,898],[899,342],[219,463],[247,195],[310,735],[305,341],[387,-90],[69,-152],[9,-19],[-203,-1226],[-362,-546],[-70,-350],[319,-306],[-72,-165],[78,-150],[247,-169],[70,-570],[164,-367],[678,-744],[545,-251],[36,-182],[219,-195],[-16,-533],[148,-292],[1069,-61],[1314,284],[182,-68],[291,-498],[1089,-254],[91,-143],[14,-441],[-190,-573],[-517,-679],[-134,-583],[51,-616],[-121,-370],[-17,-14],[-352,-289],[-261,243],[-543,-243],[-577,-544],[-476,65],[-1237,-570],[-1093,-1365],[-312,-852],[-849,-652],[-261,-28],[-369,182],[-416,-163],[-593,389],[-475,-447],[-423,-57],[-602,-437],[-529,-16],[-10,83],[-11,90],[333,326],[268,883],[1555,1751],[-10,646],[-741,1819],[-584,809],[-856,726],[-1267,441],[-216,53],[-553,136],[-48,-176],[-504,-30],[-373,-326],[-644,77],[-2037,-1092],[-1178,-124],[-105,-556],[-256,-442],[-769,-479],[-15,395],[-318,-358],[-64,-742],[219,-149],[-634,-319],[-213,-275],[-361,-668],[-76,-373],[4,-193],[325,-297],[-739,-581],[-283,-51],[-56,190],[239,445],[-21,179],[-374,331],[-686,13],[-616,732],[-566,-152],[-1165,39],[-317,-122],[-729,-1080],[-218,-798],[-98,-1201],[153,-339],[340,-322],[607,-283],[418,-64],[276,122],[119,-92],[-97,-561],[191,-497],[-52,-371],[-260,-138],[-412,-571],[-704,-319],[-566,-60],[-390,-272],[-317,-431],[-63,-912],[-311,-365],[-630,-350],[-105,99],[-56,1042],[-171,290],[193,961],[-936,541],[-840,114],[-168,279],[-361,186],[-107,766],[-112,116],[-588,-312],[-184,-264],[-529,-234],[-1002,-59],[-284,-136],[-593,171],[-905,-749],[-475,-13],[-522,246],[-806,-544],[-204,-819],[-212,-211],[-234,153],[-205,-136],[-629,183],[-1407,-607],[-431,93],[-311,348],[-268,-124],[-488,-628],[-367,-178],[143,-478],[-81,-138],[-224,-188],[-439,-98],[-182,-120],[-306,-201],[-565,205],[-218,227],[-277,51],[-71,336],[-253,360],[93,1062],[268,155],[644,-125],[670,971],[-14,1426],[-284,814],[-366,519],[-410,243],[-1718,-1249],[-253,186],[-149,-278],[-247,-16],[-313,-393],[-528,-972],[-568,-317],[-34,22],[-92,60],[29,171],[651,773],[376,886],[267,1817],[-127,522],[-883,849],[-72,802],[-168,301],[-516,464],[-1153,562],[-1492,220],[-324,618],[-397,-174],[376,-157],[184,-243],[-283,-432],[-410,-31],[-191,706],[-382,206],[-1179,-54],[-2063,-426],[-2226,-976],[-1338,-1410],[-28,-53],[-388,-706],[-106,-967],[170,-369],[466,-19],[70,-158],[-320,-748],[-309,-719],[-189,-914],[-445,-964],[-249,-195],[-40,-412],[-279,-529],[-69,-433],[-1499,-1544],[-424,-763],[-267,-704],[-36,-711],[-397,-616],[-83,-382],[56,-366],[183,-1190],[-234,-1607],[-97,-108],[-227,157],[-396,-46],[-425,259],[-1764,-707],[-251,-391],[-740,-369],[699,1248],[333,291],[303,885],[644,403],[213,284],[20,201],[-34,192],[-384,202],[-910,-389],[-291,248],[-70,416],[-275,64],[-275,-173],[-276,46],[-233,-124],[-36,179],[261,470],[-100,361],[-119,-85],[-78,146],[137,2082],[239,623],[27,579],[290,648],[-15,208],[287,402],[19,26],[328,803],[244,599],[670,895],[85,924],[538,1031],[84,577],[-113,803],[-111,138],[-389,482],[281,1130],[-112,361],[-488,384],[-553,87],[-430,-788],[-118,-590],[-269,-529],[-730,115],[-284,-428],[-82,-405],[-600,-1208],[-601,-182],[-72,346],[78,152],[-148,903],[-164,260],[9,577],[-115,531],[-149,198],[-141,188],[-535,157],[-36,388],[177,1133],[-997,-457],[-396,-516],[-678,14],[-255,-484],[-20,-386],[-482,193],[-282,431],[-149,518],[107,727],[-122,102],[-459,-231],[-153,648],[-134,48],[97,817],[-147,276],[219,921],[804,1158],[1131,840],[388,764],[297,-21],[172,-354],[1236,64],[713,563],[445,707],[176,575],[474,408],[403,-111],[304,116],[382,-589],[268,11],[757,850],[47,542],[207,262],[389,274],[13,10],[233,429],[615,417],[129,32],[437,-454],[552,-132],[332,-384],[607,378],[585,-18],[248,-135],[509,249],[651,948],[536,1308],[419,1774],[-8,371],[-346,786],[-693,-81],[-56,166],[95,342],[12,42],[755,444],[332,853],[790,501],[285,-5],[514,-370],[206,-281],[77,-353],[135,-69],[312,409],[5,197],[-453,973],[-253,200],[-20,200],[302,910],[179,1059],[337,642],[86,382],[735,991],[305,690],[457,59],[1492,1060],[360,544],[20,403],[461,413],[64,-10],[64,-9],[140,-536],[-91,-739],[118,-1747],[-535,-1784],[-298,-1795],[56,-177],[481,-313],[509,123],[424,354],[135,-80],[-113,-1112],[56,-578],[311,-404],[291,44],[437,486],[684,-211],[327,1231],[-240,389],[104,518],[191,275],[551,184],[65,730],[157,306],[77,570],[49,-13],[531,-136],[360,225],[606,591],[171,328],[34,419],[-353,1240],[-304,470],[185,191],[288,3],[15,-187],[128,8],[819,484],[834,238],[552,-94],[479,350],[396,-221],[149,-353],[142,-1],[466,654],[-16,643],[94,328],[233,41],[332,59],[246,174],[292,-76],[592,315],[318,423],[296,2360],[-86,340],[-395,349],[-153,609],[-672,-165],[-769,159],[-488,-247],[-150,55],[-35,360],[194,191],[33,32],[707,93],[1370,579],[565,659],[141,-76],[975,210],[609,338],[338,415],[628,130],[106,384],[-266,572],[146,1015],[-69,574],[155,302],[552,251],[479,-382],[29,-381],[-431,-520],[185,-567]],[[126511,115612],[42,-111],[-61,-115],[-26,-75],[-22,-171],[-49,-83],[26,-46],[-24,-97],[-69,-71],[-47,-36],[32,-46],[-13,-111],[-93,-43],[-95,-75],[-81,-94],[-18,-57],[45,4],[47,-107],[50,-43],[68,-54],[-13,-100],[-45,-79],[-55,-50],[-57,-32],[-57,-93],[-97,-82],[-78,0],[-38,50],[-81,-36],[-66,65],[-55,93],[-52,60],[-50,33],[-21,125],[-45,39],[-45,79],[14,71],[40,47],[-2,114],[-5,161],[38,50],[41,97],[2,89],[-45,100],[26,68],[71,15],[0,57],[7,96],[52,101],[74,-11],[17,182],[23,140],[52,7],[50,-129],[-9,-164],[42,-4],[5,-64],[24,14],[0,57],[12,36],[21,18],[12,-54],[31,-11],[-7,79],[30,97],[88,60],[88,-14],[28,-39],[147,279],[67,7],[35,-93],[-21,-75],[95,-25]],[[121864,117672],[48,-79],[44,2],[14,-39],[38,23],[2,35],[-14,35],[0,23],[34,6],[21,-72],[5,-37],[-12,-43],[-20,-53],[4,-58],[-37,-125],[-44,-88],[-41,-72],[-58,-42],[-61,-19],[-53,-8],[-36,-2],[-24,-8],[-27,-13],[-17,15],[-14,44],[-34,-57],[-30,-13],[-56,5],[-58,27],[-23,64],[23,66],[24,53],[25,61],[18,53],[-7,99],[26,93],[49,66],[32,13],[25,19],[23,29],[-7,37],[26,61],[28,3],[37,40],[64,122],[54,0],[50,-16],[29,-82],[-40,-85],[-30,-83]],[[140233,118179],[7,-190],[-21,-179],[-84,-84],[-119,37],[-63,137],[18,153],[77,110],[49,-16],[56,48],[80,-16]],[[123134,118782],[-63,-73],[-45,-60],[-68,-23],[-40,-23],[-82,82],[-40,-23],[-1,-50],[3,-34],[2,-46],[-18,-12],[-17,0],[-5,33],[-4,-5],[-18,-25],[5,-20],[18,-12],[-4,-32],[-21,4],[-8,-28],[15,-4],[1,-23],[-21,-16],[7,-41],[-10,-43],[-22,-40],[-5,-44],[-12,-23],[-30,-18],[-26,13],[-39,24],[-20,26],[-28,44],[-14,41],[2,45],[-27,-5],[-21,17],[-5,-38],[-2,-77],[-6,-43],[-34,-1],[-33,66],[-22,77],[-99,19],[-71,40],[-13,104],[47,115],[107,100],[59,-3],[58,-25],[45,17],[103,64],[60,-3],[57,-32],[9,47],[67,53],[37,48],[80,67],[12,26],[48,67],[64,-4],[76,-15],[57,-175],[-45,-100]],[[130492,119091],[-43,-28],[-37,24],[-13,58],[-6,76],[8,58],[14,100],[38,7],[67,-72],[1,-90],[-8,-77],[-21,-56]],[[130244,119556],[-20,-51],[-31,-14],[-9,35],[-28,-33],[-12,28],[6,74],[29,98],[37,51],[56,37],[49,-14],[11,-51],[3,-49],[-34,0],[-17,-49],[-14,-44],[-26,-18]],[[146545,119784],[-24,-135],[33,-7],[21,48],[33,-17],[27,-38],[110,-13],[36,17],[16,-34],[47,-14],[63,-13],[60,-7],[27,24],[27,-31],[7,-57],[47,-10],[61,-55],[33,-23],[23,40],[-2,48],[87,-21],[9,-98],[31,-6],[41,-51],[49,-27],[106,-58],[60,-27],[27,-58],[38,-81],[30,-64],[6,-61],[-22,-27],[16,-51],[-12,-74],[70,-24],[0,-54],[-67,-123],[-41,-107],[7,-55],[20,-67],[-36,-82],[-92,-115],[-76,-20],[-76,-17],[-95,34],[-33,58],[-54,98],[-16,101],[-9,122],[-22,-88],[-59,-108],[-29,-102],[-47,21],[-38,50],[-2,78],[-84,74],[-73,-26],[-43,-65],[-70,-74],[-51,17],[-23,57],[-13,67],[-79,-23],[-11,-54],[34,-64],[-29,-54],[-39,-65],[-6,-78],[-42,-47],[-44,-24],[-38,17],[-42,10],[-61,-74],[-63,-80],[-105,-59],[-83,-91],[-88,-163],[4,-64],[-35,-24],[-50,-115],[-11,-54],[74,-14],[45,-33],[-18,-55],[-58,-23],[24,-17],[50,10],[37,-6],[-30,-28],[-16,-54],[11,-44],[47,-20],[43,6],[29,-37],[16,-68],[31,-105],[-12,-122],[-60,-75],[-78,-97],[-49,-12],[-32,-39],[-34,-7],[-56,75],[-69,61],[-43,20],[0,64],[5,105],[47,51],[-8,55],[-31,-28],[-49,17],[-11,85],[31,37],[25,-71],[47,51],[-7,78],[-47,71],[-54,67],[-49,105],[-2,58],[-27,88],[-9,81],[-2,88],[-18,85],[-62,27],[-72,-32],[-50,-22],[-55,-2],[-23,-10],[-75,-32],[-69,10],[-41,34],[-45,20],[-24,95],[-12,118],[-22,58],[11,139],[41,166],[83,148],[109,153],[50,61],[60,74],[50,75],[99,74],[175,75],[67,17],[29,3],[52,27],[29,14],[78,37],[45,27],[54,95],[79,44],[51,30],[50,105],[9,119],[29,77],[29,55],[20,-11],[72,51],[36,-10],[20,58],[148,88],[11,-21]],[[120834,119790],[83,-77],[22,-69],[39,-27],[65,-212],[210,-208],[104,-29],[95,-13],[26,-45],[-10,-64],[5,-96],[-107,-143],[-129,-133],[-115,75],[-122,80],[-409,-338],[-88,-115],[-109,35],[-66,77],[-133,-40],[-45,-103],[-144,-200],[-148,-74],[-169,19],[-53,82],[-47,396],[-60,135],[-145,0],[-42,229],[64,233],[364,303],[127,67],[62,-24],[114,16],[243,90],[178,117],[58,-5],[116,87],[166,-26]],[[130515,120176],[6,-68],[-25,-48],[-18,-58],[-34,-26],[-26,-18],[-28,4],[-9,-32],[-34,-19],[-37,12],[-31,0],[-10,25],[0,54],[4,41],[31,14],[-18,7],[-11,54],[24,35],[27,11],[-5,14],[26,16],[26,17],[17,-17],[30,-18],[43,39],[52,-39]],[[121281,120037],[-34,-22],[-22,16],[-47,41],[4,50],[50,115],[85,118],[84,66],[79,22],[80,-73],[-56,-89],[-55,-98],[-70,-95],[-73,-29],[-25,-22]],[[141522,120118],[-98,-26],[-101,90],[-7,184],[91,142],[122,85],[63,37],[56,-16],[63,-100],[14,-222],[-63,-79],[-70,0],[-70,-95]],[[123680,120710],[7,-56],[26,25],[49,55],[64,7],[23,51],[50,-16],[64,-21],[8,-47],[-17,-29],[2,-27],[32,-14],[13,-56],[-41,-59],[24,-72],[35,-47],[24,-68],[15,-119],[-38,-33],[36,-15],[70,-103],[24,-75],[12,-111],[-9,-107],[17,-82],[-4,-60],[-37,-59],[-32,-35],[-25,-44],[-22,-20],[-26,-43],[-12,-58],[0,-18],[-15,-43],[-1,-39],[-32,0],[-36,0],[-32,-33],[7,-64],[-31,-25],[-29,50],[-35,10],[-60,47],[-30,-57],[-20,-35],[-36,28],[-42,-16],[-38,10],[-52,6],[-37,-9],[-26,-60],[-72,-66],[-60,-76],[-52,-41],[-65,45],[-35,47],[-22,60],[33,59],[46,54],[24,70],[51,82],[13,45],[40,39],[18,45],[28,62],[-1,37],[-38,80],[-13,49],[21,74],[-8,21],[-4,55],[8,29],[31,47],[27,76],[21,37],[-25,29],[-56,-12],[-66,-58],[-37,-20],[-11,39],[11,102],[16,83],[-39,49],[-7,41],[11,27],[24,43],[-9,35],[-1,39],[20,12],[53,68],[48,58],[35,4],[25,33],[28,28],[33,11],[22,-31],[7,26],[-2,64],[15,52],[46,30],[30,-8],[33,-39],[18,-49]],[[142923,120724],[-49,-121],[35,-163],[59,-5],[45,-131],[4,-49],[-68,80],[2,-53],[-53,-21],[-73,31],[-70,-121],[-49,-126],[-52,-21],[-53,-16],[-38,-16],[-77,26],[-133,-165],[-43,-104],[-40,-100],[-60,-42],[-63,69],[-45,68],[24,100],[-45,64],[-66,68],[-53,79],[7,90],[60,74],[38,10],[14,121],[105,122],[77,42],[62,-48],[39,-63],[84,74],[42,37],[49,15],[-7,-73],[55,84],[56,100],[42,-16],[74,64],[52,179],[45,116],[28,89],[-21,85],[63,89],[161,-274],[-87,-84],[-77,-100],[0,-64]],[[146689,121277],[70,-98],[-5,-189],[-83,-190],[-31,-60],[-5,-48],[-81,-82],[-10,-46],[-16,-82],[-37,-21],[-20,-81],[-56,-81],[-71,-24],[-97,-23],[-29,47],[-63,3],[-72,-64],[-81,-58],[-69,-30],[-92,-14],[-23,-30],[-42,-27],[-68,-54],[-58,7],[-108,71],[-54,71],[0,61],[34,57],[-12,17],[-37,-30],[-65,-24],[-45,71],[-11,95],[38,68],[-61,47],[-49,85],[7,94],[-9,88],[44,88],[77,55],[38,37],[63,64],[27,-7],[40,-34],[45,-27],[58,17],[45,7],[14,-20],[13,-61],[47,-20],[25,-38],[25,-54],[51,-71],[47,-41],[36,-3],[61,47],[29,24],[38,10],[25,-10],[9,48],[22,33],[18,-10],[50,51],[31,88],[27,34],[40,37],[29,64],[57,11],[-34,27],[11,57],[43,51],[56,7],[4,-44],[16,-31],[-16,-40],[86,67],[20,41],[29,0],[-9,-54],[74,74]],[[119165,121089],[-21,-19],[-25,-37],[-28,8],[-35,30],[-28,-36],[-10,-13],[-23,22],[5,69],[32,81],[19,8],[29,21],[7,54],[18,5],[10,-37],[-3,-41],[30,-24],[39,-16],[-3,-64],[-13,-11]],[[141525,121388],[18,-89],[28,16],[91,31],[49,-52],[17,-69],[39,-153],[-74,-221],[-66,-49],[-25,-104],[-83,-40],[-15,-39],[-69,-26],[-91,-42],[-112,-85],[-49,6],[-101,47],[-28,111],[-42,89],[-11,106],[49,52],[49,32],[-7,47],[25,32],[59,-32],[-14,48],[63,153],[0,58],[45,52],[46,37],[59,-21],[39,21],[21,79],[-21,85],[24,100],[46,-11],[34,-74],[7,-95]],[[147970,122323],[-33,-35],[-65,-39],[39,-63],[-16,-84],[-28,-91],[-25,-70],[-61,-39],[-88,14],[-93,116],[-56,94],[-26,88],[5,53],[26,49],[44,-4],[39,11],[40,67],[105,10],[125,-38],[68,-39]],[[124625,123669],[-46,-10],[-53,55],[-36,24],[-60,15],[20,100],[4,120],[75,89],[17,95],[20,40],[59,-5],[23,-40],[-36,-159],[59,-69],[14,-81],[-37,-90],[-23,-84]],[[100944,124781],[13,-2],[42,62],[19,-17],[49,19],[13,-22],[-1,-60],[-3,-48],[-14,-40],[12,-15],[-3,-30],[-22,-40],[-38,-36],[-30,-45],[-34,-7],[-56,-31],[-17,12],[2,56],[-22,38],[-37,0],[-26,-7],[-22,-5],[1,-34],[-22,-3],[-27,20],[-12,44],[15,52],[26,44],[10,45],[3,49],[24,31],[29,19],[35,1],[47,51],[25,59],[36,-2],[17,-35],[9,-39],[-11,-32],[-16,-19],[-14,-33]],[[103668,125774],[-21,-85],[-31,-41],[-47,13],[-35,11],[-49,9],[-51,27],[-40,-22],[18,-130],[-25,-159],[-60,-80],[-48,-118],[-89,-225],[-59,-141],[-62,-110],[-54,-30],[-51,-113],[-46,-30],[-47,-5],[-99,24],[-100,-2],[-68,27],[-133,-11],[-118,-41],[-210,-105],[-154,-92],[-43,-54],[-24,-52],[-78,-99],[-15,-47],[22,-57],[46,11],[49,5],[-33,-47],[77,-5],[-4,-55],[8,-41],[40,-66],[18,-149],[-32,-119],[-61,-109],[-60,-69],[-37,16],[-23,-96],[-57,6],[-73,-58],[-51,-129],[-69,-146],[-64,15],[-38,-62],[-4,-78],[-42,-12],[-40,49],[-69,-108],[-52,-134],[-68,-200],[16,-59],[-63,-106],[-10,-67],[-36,-62],[41,-48],[21,-90],[18,-74],[-18,-114],[-21,-106],[32,19],[59,102],[63,-19],[12,-72],[-72,-148],[16,-51],[-15,-81],[-35,-46],[-64,-12],[-16,16],[-16,23],[-36,-27],[-15,-7],[-21,30],[-15,36],[-19,37],[-30,18],[-45,-30],[-17,37],[24,34],[12,48],[-16,35],[-60,-12],[0,-68],[-33,34],[-27,7],[-15,-25],[-56,-32],[-40,11],[-55,-31],[-34,-56],[-44,-32],[-43,-48],[-85,-57],[-42,-21],[6,-18],[-39,-5],[-158,-98],[-118,-66],[-84,-51],[-95,-73],[-97,-64],[-394,-297],[-102,-60],[-127,-86],[-217,-78],[-95,-26],[-26,-34],[-72,-9],[-94,3],[-86,29],[-79,-4],[-63,-19],[-63,-6],[-63,2],[-46,11],[-44,-27],[-51,2],[-26,32],[-23,62],[-23,48],[-6,36],[11,55],[-21,37],[-9,39],[9,68],[-32,39],[1,44],[-22,39],[-29,100],[-18,87],[3,69],[27,80],[50,14],[38,64],[82,93],[60,87],[8,41],[26,60],[39,16],[26,-7],[18,39],[31,2],[33,60],[48,59],[47,21],[31,75],[76,92],[54,41],[64,78],[74,59],[64,85],[47,43],[54,103],[22,91],[-14,83],[-3,100],[-34,94],[-27,32],[-38,2],[-57,-27],[-64,27],[-38,51],[-24,23],[-27,41],[-87,-9],[-57,-5],[-76,-25],[-50,11],[-5,39],[32,46],[41,78],[36,64],[19,-3],[33,83],[64,39],[30,9],[42,9],[14,57],[-38,34],[15,53],[38,23],[43,-9],[-8,-46],[-26,-50],[23,-32],[42,18],[41,27],[34,-36],[1,-60],[34,-27],[74,-30],[68,-55],[73,-73],[53,9],[51,62],[38,50],[70,35],[46,18],[33,34],[26,-20],[69,43],[73,7],[40,-32],[13,23],[-19,64],[-5,55],[21,23],[0,45],[43,42],[13,52],[70,172],[74,123],[44,46],[40,18],[16,66],[32,44],[58,-2],[23,-44],[12,-48],[25,12],[50,34],[58,7],[44,-30],[47,-41],[-20,-34],[-16,-48],[-10,-40],[-19,-15],[-12,-35],[30,-48],[52,-57],[87,-59],[66,-7],[44,23],[50,34],[51,23],[43,14],[24,-39],[47,-9],[59,41],[35,68],[41,53],[30,48],[50,71],[24,62],[41,50],[50,85],[53,45],[87,39],[74,7],[90,82],[37,21],[58,39],[56,25],[34,-11],[47,64],[45,29],[41,51],[48,18],[29,41],[26,21],[5,96],[27,73],[-11,43],[-6,80],[23,78],[45,78],[67,78],[59,29],[43,60],[38,16],[36,20],[44,71],[45,21],[6,25],[34,43],[51,53],[70,62],[40,0],[51,41],[50,14],[29,59],[29,66],[50,81],[63,118],[37,21],[33,62],[30,39],[46,41],[38,23],[60,87],[87,73],[62,36],[91,16],[149,58],[209,11],[75,-42],[62,-80],[-13,-88],[42,-22],[110,-31],[27,-85],[-38,-110],[-68,-33],[-52,0]],[[125891,126490],[36,-17],[60,41],[57,12],[28,-2],[19,-28],[17,-23],[47,32],[34,-6],[38,-26],[28,-9],[20,24],[23,11],[39,-13],[51,17],[21,-30],[61,-2],[-7,-58],[17,-54],[37,26],[40,-9],[21,2],[73,19],[24,-10],[36,-32],[12,-65],[7,-79],[-1,-223],[1,-88],[8,-64],[5,-60],[9,-86],[-14,-54],[-39,-71],[-31,-38],[-74,21],[-40,-2],[-33,-28],[-42,-34],[-47,26],[-14,49],[-23,43],[-26,-17],[-40,13],[-29,27],[-53,-2],[-53,35],[-54,-35],[-49,-51],[-60,-39],[-51,-32],[-59,-84],[-67,-154],[-65,-118],[-45,-4],[-57,-5],[-71,37],[-63,49],[-26,95],[9,218],[43,228],[-3,96],[0,90],[-6,88],[13,69],[-36,77],[-11,110],[16,90],[54,60],[15,66],[34,35],[62,83],[56,54],[37,-28],[16,-49],[-13,-41],[14,-32],[27,-11],[37,-30]],[[150395,127237],[14,-119],[62,111],[25,-90],[-34,-85],[-82,-4],[-53,-73],[11,-102],[40,-85],[62,-9],[22,-64],[-51,-85],[-53,-77],[-82,-64],[-65,47],[-29,98],[-11,119],[-6,137],[15,107],[31,81],[48,106],[45,34],[51,22],[40,-5]],[[139630,127270],[18,-21],[70,-54],[12,-86],[-40,-47],[-28,2],[-38,-9],[-5,-44],[-19,-35],[14,-29],[-6,-59],[-5,-63],[-31,-39],[-12,-72],[-34,-26],[-17,-44],[-40,-51],[-20,-49],[16,-2],[35,-27],[13,-32],[27,-56],[-21,-90],[-48,-41],[-51,-2],[-22,31],[-23,34],[-38,-7],[-24,16],[-11,34],[-13,11],[-59,-43],[-43,-27],[-29,-25],[-45,-13],[-18,-59],[-48,-22],[-33,-14],[-15,34],[-26,25],[-48,11],[-27,0],[-12,-50],[-33,57],[-11,52],[-18,13],[-30,16],[-9,25],[11,43],[25,9],[33,59],[5,38],[-15,14],[-23,25],[-3,90],[-3,52],[18,59],[26,56],[9,27],[-29,14],[8,36],[-2,50],[17,9],[16,-18],[3,52],[-1,43],[21,18],[15,29],[4,32],[5,25],[19,-7],[23,4],[23,0],[5,-22],[24,0],[15,-32],[22,-23],[44,-11],[43,39],[14,49],[24,66],[36,63],[51,-9],[-3,-38],[18,-3],[6,32],[18,5],[9,-16],[16,27],[36,16],[31,-5],[26,-22],[24,20],[37,-5],[8,-18],[15,12],[42,38],[48,14],[24,-14],[7,-45]],[[125025,127215],[-42,-9],[-12,39],[-8,52],[62,111],[57,34],[32,-51],[-17,-116],[-72,-60]],[[95128,127970],[-7,-86],[11,-49],[-17,-96],[-25,-25],[-29,-36],[-13,-36],[-71,-60],[-33,-44],[-26,-45],[-42,-22],[-40,-16],[-29,-3],[-36,23],[-11,-23],[7,-27],[-15,-33],[-40,-17],[-27,-1],[-26,-44],[-16,-29],[-39,-25],[-47,-25],[-42,-19],[-77,-108],[-56,-79],[-53,-75],[-99,-46],[-55,-12],[18,-44],[-9,-13],[-29,-36],[-12,44],[-19,-50],[-31,0],[-32,-11],[-28,6],[-29,-61],[-13,31],[-36,-72],[-15,-17],[-33,-2],[-7,30],[8,35],[-12,-13],[-56,-33],[-51,19],[-31,61],[-15,99],[13,74],[40,47],[-13,36],[-13,55],[2,41],[-2,42],[29,33],[39,0],[3,19],[26,36],[9,35],[33,20],[20,33],[-4,33],[0,44],[24,22],[2,36],[4,36],[38,19],[31,11],[-4,27],[20,14],[8,19],[27,28],[29,16],[33,55],[35,17],[7,22],[48,28],[27,5],[26,-8],[16,8],[-4,33],[13,36],[18,-8],[17,2],[-11,31],[31,-3],[33,-22],[-6,-52],[44,11],[37,22],[16,-9],[4,25],[42,8],[14,-19],[20,-11],[42,58],[50,50],[38,5],[18,-19],[35,-14],[33,-44],[25,-33],[31,-19],[37,-33],[44,41],[56,52],[-5,86],[14,2],[24,28],[20,-11],[30,-17],[32,33],[35,3],[5,-30]],[[149925,128052],[-85,-60],[-36,31],[-46,-39],[-2,81],[56,60],[26,25],[59,94],[39,-13],[60,-42],[-88,-82],[17,-55]],[[124633,128301],[40,-35],[59,30],[461,-103],[43,-47],[31,-43],[-31,-64],[-43,-73],[-3,-60],[-42,-99],[-74,-81],[-20,-56],[-85,-133],[-80,-69],[-71,-90],[-51,-17],[-123,30],[-88,9],[-65,-18],[-51,-38],[-32,0],[-31,21],[-26,65],[-59,30],[-23,43],[0,72],[-37,65],[11,60],[-42,26],[2,68],[40,47],[-3,35],[6,86],[9,98],[54,112],[42,26],[57,72],[63,31],[42,-35],[83,-26],[37,61]],[[155100,127772],[-105,-44],[-65,63],[-71,116],[59,152],[-33,145],[-46,67],[-51,73],[65,98],[219,232],[65,-44],[24,-125],[12,-179],[65,-107],[100,-35],[-41,-107],[-24,-134],[-106,-143],[-67,-28]],[[121570,128098],[-86,-102],[-86,19],[-62,56],[-61,27],[-68,-27],[-6,111],[-37,74],[-56,140],[31,130],[80,213],[56,74],[86,28],[98,-9],[43,-93],[-30,-93],[73,-9],[-10,-80],[53,-87],[-61,-74],[73,-58],[25,-54],[-49,-56],[-6,-130]],[[128652,128843],[73,-79],[-10,-51],[-22,-36],[29,-28],[-5,-136],[-17,-68],[-22,-8],[-15,-28],[-50,19],[-51,38],[-19,50],[10,63],[-23,11],[-29,38],[-1,35],[27,16],[18,8],[20,11],[11,31],[-29,3],[4,35],[24,27],[27,-13],[27,14],[23,48]],[[154078,128317],[-100,0],[-30,108],[-101,35],[-65,125],[36,197],[106,89],[125,18],[94,-116],[101,-36],[18,-134],[-36,-241],[-148,-45]],[[131719,126832],[-33,-493],[553,430],[9,-202],[109,-127],[277,139],[109,-228],[487,-63],[402,-266],[521,304],[-26,228],[294,253],[176,-291],[227,-25],[277,481],[-59,835],[17,266],[310,240],[353,-544],[394,-481],[411,139],[210,304],[646,-709],[537,-76],[177,-291],[0,-494],[-517,-63],[-163,127],[-92,-443],[84,-418],[293,51],[311,-431],[-185,-645],[-268,-697],[-244,-291],[17,-304],[243,-76],[588,330],[470,-203],[151,-532],[-378,-506],[-344,-468],[-308,84],[-229,283],[-243,-342],[-269,-570],[109,-430],[59,-456],[-101,-329],[168,-316],[-101,-317],[0,-620],[269,-253],[562,0],[277,-190],[185,-393],[-25,-430],[478,-25],[-84,-583],[-168,-418],[-109,-784],[-185,-595],[-461,12],[-311,271],[269,679],[-159,595],[-563,152],[-327,-13],[-319,-671],[-587,-430],[-428,-342],[-286,215],[-411,-304],[-92,-785],[-579,-405],[-277,140],[235,746],[-219,294],[93,605],[789,456],[218,13],[-8,316],[310,266],[403,38],[84,-203],[176,266],[143,671],[-286,380],[-335,494],[-470,139],[-9,493],[345,520],[310,379],[-59,304],[-260,253],[-193,228],[-156,75],[-255,1520],[-378,418],[-226,873],[-521,317],[-780,-355],[-411,-25],[-361,747],[-873,202],[-303,20],[-469,-437],[-411,-26],[-654,-392],[-470,0],[-219,367],[-50,304],[-163,38],[-424,-557],[-177,-190],[-612,127],[-562,253],[-227,506],[227,279],[25,379],[117,355],[546,456],[159,265],[176,203],[101,392],[327,89],[688,620],[487,380],[151,89],[-58,607],[436,798],[260,88],[327,241],[588,89],[243,-393],[8,-671],[-8,-405],[8,-266],[504,-405],[210,-278],[-185,-545]],[[150980,129609],[42,-68],[-22,-73],[0,-30],[88,1],[30,-82],[-65,4],[-56,-12],[-36,7],[-9,-67],[-37,-51],[-56,-48],[-29,-97],[-42,-26],[45,-60],[34,5],[34,-47],[34,-73],[-46,-76],[-42,4],[-82,55],[-62,47],[-54,13],[-31,43],[25,72],[-73,-17],[-37,73],[37,98],[45,30],[54,72],[-62,-30],[2,77],[65,107],[46,38],[37,103],[-51,-13],[-26,51],[68,64],[54,59],[36,111],[108,39],[82,-26],[-51,-102],[25,-115],[-22,-60]],[[103967,130175],[3,-31],[40,6],[8,-12],[12,-29],[20,-25],[32,-3],[-5,-30],[11,-2],[15,-3],[7,-29],[-29,-37],[7,-19],[7,-33],[-23,-10],[-21,-10],[-14,-24],[-28,-38],[-4,-56],[-13,-29],[-17,-1],[-20,-12],[-32,-21],[-17,-19],[-23,-16],[-17,-31],[4,-51],[-5,-19],[-16,-7],[-15,5],[-15,-10],[4,-31],[-6,-23],[-29,4],[-18,31],[-38,-15],[-12,-44],[-11,-35],[-18,-12],[5,-76],[-24,-32],[-34,-16],[-22,-25],[-45,-5],[-28,15],[-22,23],[-20,-30],[-27,-3],[-12,-9],[13,-40],[40,-25],[-6,-20],[-9,-9],[-37,15],[-43,44],[-30,4],[-31,13],[-38,-20],[-36,-5],[-10,9],[13,32],[16,47],[-24,-7],[-27,16],[-4,35],[24,68],[21,13],[25,27],[54,83],[41,91],[35,46],[37,28],[15,48],[28,43],[5,61],[24,33],[33,45],[25,44],[23,38],[24,24],[29,4],[13,29],[31,20],[23,-17],[19,39],[15,-5],[3,-20],[-2,-22],[14,-3],[4,28],[-7,32],[25,9],[11,28],[66,24],[15,-16],[9,-25],[36,-7]],[[143372,130874],[32,-67],[-67,-116],[32,-40],[-32,-111],[-71,-27],[-53,-53],[-33,-94],[-52,-93],[-7,-125],[-47,-49],[-62,9],[-48,80],[-65,67],[6,89],[57,-27],[41,13],[15,139],[47,98],[26,102],[62,27],[36,138],[62,22],[53,-4],[68,22]],[[112989,130635],[54,-163],[22,29],[37,-13],[19,-36],[-11,-57],[-70,-97],[-8,-80],[19,-115],[30,-45],[-14,-85],[35,-37],[-32,-48],[-40,-74],[-35,-81],[-38,-73],[-38,-122],[22,-57],[-38,-36],[-29,-33],[-38,-61],[-41,-20],[-40,-45],[-40,-81],[-63,-70],[-15,-88],[-25,-37],[-52,-52],[-15,-74],[-31,-7],[-17,-78],[-38,-81],[-43,-61],[-33,-53],[14,-61],[-89,-203],[-73,-20],[-62,61],[-79,-75],[-20,-59],[-30,-17],[-37,10],[-19,-54],[-38,32],[-32,57],[-103,53],[-62,77],[-45,16],[-25,16],[3,78],[5,57],[49,85],[-54,20],[30,211],[105,268],[137,118],[143,37],[105,65],[102,16],[70,81],[86,163],[43,166],[-27,159],[-29,182],[24,199],[124,293],[51,49],[57,65],[64,89],[54,53],[43,-45],[67,-49],[52,-28],[21,-61],[-19,-73]],[[146729,131402],[32,-25],[46,55],[41,-37],[45,-62],[28,-128],[-73,-97],[-71,-64],[-26,6],[-22,38],[-47,-69],[15,-20],[4,-39],[-26,4],[-32,23],[-17,-23],[-30,33],[1,53],[34,64],[29,56],[32,13],[33,84],[-22,35],[-31,13],[10,69],[9,68],[39,-2],[-1,-48]],[[124417,131683],[74,-130],[55,-9],[96,-24],[55,-78],[16,-98],[-56,-274],[-92,-186],[-28,-148],[3,-186],[74,-9],[0,-126],[-31,-106],[-49,-93],[-55,-98],[-90,-111],[-68,-126],[1,-157],[-25,-117],[-40,-83],[19,-74],[-62,-149],[-102,-144],[-70,-42],[-53,5],[-95,-19],[-52,-69],[-53,-84],[-120,-111],[-55,14],[-59,-24],[-34,-23],[-67,23],[-83,5],[-28,0],[-25,46],[-70,70],[-28,47],[-3,97],[-90,-97],[-9,69],[28,102],[28,103],[-16,83],[19,84],[37,88],[40,37],[101,60],[37,89],[86,92],[10,56],[24,144],[22,139],[12,177],[31,144],[55,139],[50,139],[0,38],[-22,111],[-3,200],[6,153],[37,102],[15,51],[62,93],[-15,46],[73,70],[40,-19],[56,56],[120,70],[86,42],[126,27],[56,-37],[98,-60]],[[141686,131747],[26,-49],[30,67],[53,-27],[-3,-35],[-24,-54],[54,-49],[65,9],[47,-36],[83,-31],[29,27],[38,18],[30,-36],[-56,-36],[47,9],[53,-40],[48,-4],[47,-22],[47,17],[35,-40],[60,27],[41,49],[6,-40],[26,-62],[98,-23],[18,-84],[-21,-67],[-53,18],[-15,-76],[-36,-62],[24,-130],[-41,-49],[-47,-93],[-27,-31],[-103,-5],[-119,18],[-85,-22],[-108,-8],[-43,-50],[-145,40],[-73,31],[-71,98],[-86,22],[-32,58],[-39,174],[-94,161],[-65,-5],[-21,49],[18,85],[44,129],[92,147],[76,35],[62,40],[57,-26],[53,-36]],[[155338,131209],[-88,-134],[-101,-62],[-83,-72],[-35,36],[-18,134],[-101,-71],[-77,35],[-82,36],[-48,143],[77,107],[53,-63],[30,-151],[71,44],[118,36],[-29,107],[136,188],[106,98],[65,151],[125,99],[0,-438],[-119,-223]],[[115270,131992],[12,-17],[-3,-30],[15,-14],[17,0],[35,-35],[3,-19],[-2,-31],[-13,-25],[2,-6],[17,16],[10,-20],[-15,-11],[-2,-19],[11,4],[13,-12],[1,-30],[27,-37],[22,-29],[26,-10],[0,-36],[-32,-1],[-4,-19],[-37,-26],[-14,-10],[-19,-36],[-21,-12],[-25,-10],[-25,-3],[-13,-9],[-29,15],[-11,20],[-6,0],[-2,-9],[-22,-13],[-18,-4],[-18,16],[-2,16],[-10,-5],[-22,12],[-28,-9],[-17,16],[-6,30],[2,33],[5,31],[11,7],[14,30],[26,45],[-5,14],[-29,5],[-11,9],[-5,16],[2,25],[15,35],[5,63],[8,39],[11,20],[9,28],[20,16],[-12,2],[4,22],[18,22],[18,1],[11,-6],[5,-10],[-1,-22],[0,-18],[13,-5],[15,22],[2,16],[10,21],[11,20],[15,-3],[19,-21],[-1,-26],[0,-29]],[[147262,132241],[22,-9],[16,33],[12,-15],[28,-35],[11,-45],[30,-22],[36,-68],[15,-40],[-26,-42],[35,2],[9,29],[33,-51],[-20,-40],[23,-15],[32,50],[15,-17],[0,-18],[-28,-19],[12,-23],[23,3],[15,24],[13,-15],[-12,-32],[12,-17],[13,35],[15,-17],[9,-36],[21,26],[10,-10],[-4,-47],[20,-25],[32,-41],[3,-24],[-27,-7],[-13,29],[-26,-22],[-16,-62],[-31,-122],[-10,-68],[-27,-93],[-19,-73],[-19,-73],[-25,-56],[3,-59],[-19,-66],[-36,-42],[-40,-13],[-36,26],[-19,69],[13,79],[-27,153],[-20,84],[4,66],[27,35],[13,51],[-27,93],[2,93],[19,99],[6,58],[-54,20],[-28,39],[-49,16],[-16,53],[-3,55],[15,9],[-4,33],[6,40],[21,-13],[24,15],[3,42],[-12,29],[0,28],[21,3],[1,-27]],[[153954,132280],[0,-152],[0,-151],[-71,-36],[47,-98],[91,2],[28,-181],[53,-44],[-30,-125],[-89,-36],[-106,-89],[-71,35],[-41,99],[-60,-44],[-47,-153],[-59,-53],[-118,-89],[-89,-18],[-5,-138],[-54,-121],[-59,62],[-113,-89],[-65,80],[-47,116],[-113,99],[-83,62],[30,134],[24,152],[47,125],[83,142],[71,0],[207,-35],[189,-36],[65,-18],[6,-125],[83,89],[89,27],[-24,72],[53,116],[-106,169],[0,170],[136,62],[24,-53],[124,71]],[[157758,131789],[-77,-27],[-71,36],[-24,89],[71,99],[-23,107],[83,62],[23,125],[71,63],[77,-81],[-23,-232],[-107,-241]],[[142014,132843],[0,-120],[-27,-89],[-50,-85],[-68,-40],[-50,-45],[-56,-26],[-33,31],[-29,49],[20,76],[44,75],[51,58],[56,5],[-6,58],[38,22],[39,-54],[50,81],[21,4]],[[145183,134541],[67,-54],[0,-74],[-25,-68],[-50,-135],[-6,-66],[-52,-99],[-37,-120],[-41,-93],[-38,-21],[-33,-14],[-25,35],[-50,22],[-41,-15],[-40,24],[-14,76],[11,106],[32,43],[8,115],[32,128],[33,90],[31,49],[37,29],[62,-3],[37,31],[22,3],[-2,101],[55,9],[11,-94],[16,-5]],[[155818,134886],[47,-71],[83,0],[41,-72],[-18,-160],[-88,-90],[-48,81],[-25,153],[-117,-10],[-12,125],[71,98],[66,-54]],[[144630,134902],[-41,-66],[-53,26],[-22,26],[-50,0],[-1,43],[-43,35],[-20,12],[23,76],[46,56],[66,125],[50,86],[58,47],[11,-99],[-27,-122],[-5,-67],[10,-97],[-2,-81]],[[117916,135784],[4,-44],[-15,-37],[-12,-58],[-19,-5],[-43,43],[-14,43],[8,53],[17,20],[21,-21],[34,36],[19,-30]],[[117803,135906],[-21,-9],[-20,15],[4,32],[20,18],[39,-3],[-6,-42],[-16,-11]],[[117813,136160],[-27,0],[-3,16],[11,24],[26,1],[10,-21],[-17,-20]],[[157959,136457],[71,-36],[119,18],[100,-62],[53,-81],[-59,-151],[-94,-188],[-89,-27],[-113,-71],[-130,-80],[-83,-9],[-23,80],[-18,80],[-95,-160],[-65,27],[18,124],[12,99],[-30,80],[24,89],[59,107],[101,134],[136,54],[106,-27]],[[132438,137109],[19,-25],[13,-55],[-6,-49],[-47,-58],[-40,-61],[-31,-43],[-17,-44],[-36,-12],[-44,6],[-32,47],[-27,-16],[-26,12],[-8,83],[4,92],[29,37],[33,4],[21,20],[42,35],[68,11],[24,-4],[14,26],[47,-6]],[[132319,137247],[28,-15],[24,9],[28,-13],[-4,-41],[-15,-29],[-34,-16],[-40,6],[-27,25],[-4,24],[13,41],[31,9]],[[132143,137540],[-17,-41],[-16,2],[-21,33],[-34,-4],[-20,31],[31,45],[-3,62],[8,92],[44,25],[62,2],[71,16],[27,-43],[27,0],[12,-10],[-3,-25],[-32,-14],[-23,-41],[-34,-41],[-36,-18],[-17,-54],[-26,-17]],[[149392,137677],[-2,-36],[-33,-30],[-11,-61],[-20,-32],[-32,-7],[-15,28],[-14,80],[15,32],[31,-2],[19,66],[25,28],[34,2],[48,63],[28,-10],[-26,-78],[-18,-26],[-29,-17]],[[149439,137847],[-14,-16],[-28,12],[-24,-25],[-31,-13],[-1,24],[38,37],[39,45],[17,-27],[4,-37]],[[149651,137986],[-5,-28],[-17,4],[-12,26],[26,15],[8,-17]],[[149314,137821],[-28,-19],[-21,12],[1,74],[6,45],[20,48],[18,35],[27,-5],[18,-6],[2,-35],[-12,-37],[1,-52],[-32,-60]],[[149544,138125],[-6,-42],[-24,8],[-9,-6],[-17,-66],[-30,-10],[-22,-39],[-24,-16],[-7,31],[-20,-7],[6,33],[8,63],[9,64],[25,23],[46,4],[21,52],[31,-8],[15,-33],[-2,-51]],[[149427,138205],[-23,-7],[-17,5],[2,30],[21,37],[-10,36],[8,25],[27,-4],[17,-41],[-3,-68],[-22,-13]],[[149422,138424],[-21,-65],[-19,-52],[-12,-59],[-19,-11],[-7,21],[-15,-45],[-11,-78],[-23,5],[-4,63],[-2,47],[2,51],[27,7],[1,25],[24,23],[2,38],[19,25],[1,-27],[9,36],[3,51],[18,4],[21,-10],[6,-49]],[[147956,138663],[24,-33],[48,-1],[7,-61],[-8,-90],[-68,-134],[-76,-76],[-56,-58],[-34,-34],[-36,-23],[-33,-16],[13,-28],[-14,-25],[-20,-9],[21,-28],[3,-55],[22,38],[41,38],[-5,56],[18,15],[35,-10],[5,-30],[-14,-83],[-14,-12],[-33,-57],[-49,-66],[-28,-28],[9,-23],[20,11],[23,43],[30,-3],[38,3],[18,-41],[-10,-46],[-22,-33],[-29,23],[-30,-21],[-32,-16],[-22,13],[-25,17],[11,40],[-34,-5],[-23,17],[24,38],[4,59],[8,123],[-13,59],[-49,87],[-16,120],[3,49],[28,49],[-22,-11],[-17,34],[50,65],[35,22],[30,-5],[26,28],[16,31],[17,4],[11,24],[29,33],[32,36],[29,-21],[36,-3],[45,30],[23,-20]],[[128676,139038],[-4,-41],[25,16],[25,-6],[-3,-30],[37,4],[65,53],[33,4],[14,-27],[27,-44],[9,-57],[-19,-58],[-43,-53],[-23,-35],[-42,-30],[-30,-18],[-41,8],[-26,10],[-32,35],[-32,-13],[-37,29],[-21,42],[-37,-12],[-12,34],[3,51],[-26,30],[-36,15],[2,42],[27,31],[58,66],[77,39],[33,-65],[29,-20]],[[118834,140210],[22,-45],[-4,-24],[0,-31],[-14,-22],[-17,-16],[-27,4],[-3,-11],[-18,-1],[-16,15],[-17,9],[-17,9],[-2,20],[21,20],[-5,13],[1,15],[19,23],[23,17],[10,-14],[5,17],[39,2]],[[118739,140401],[14,-5],[8,0],[5,-37],[-10,-10],[7,-5],[24,8],[5,-9],[-1,-13],[11,-23],[-6,-18],[-23,-13],[-12,-30],[-13,13],[-16,20],[6,19],[-13,20],[-21,4],[-12,19],[13,22],[2,25],[11,10],[21,3]],[[118508,140645],[-7,-7],[-12,9],[-33,7],[-11,16],[3,40],[20,34],[31,39],[37,28],[21,-25],[-7,-29],[-21,-59],[-22,-32],[1,-21]],[[118752,143272],[-50,-17],[-35,2],[-31,30],[-29,31],[-14,54],[11,76],[4,68],[24,48],[22,65],[43,48],[67,94],[69,41],[73,22],[12,-40],[18,-17],[31,-31],[32,-34],[-17,-92],[-52,-78],[-10,-72],[-20,-63],[-29,-50],[-57,-44],[-62,-41]],[[124586,143949],[-59,-62],[-101,20],[-68,62],[-23,152],[41,34],[82,-55],[101,-55],[27,-96]],[[136682,144075],[-25,-26],[-72,4],[-68,-7],[-101,-11],[-53,-15],[-10,48],[12,17],[14,107],[37,72],[69,96],[53,23],[46,14],[43,-7],[43,-35],[26,-37],[11,-46],[-3,-76],[0,-48],[-8,-49],[-14,-24]],[[122505,143845],[77,-27],[146,179],[64,83],[156,-7],[109,-76],[50,-110],[-13,-172],[-124,-138],[-68,-103],[-91,-138],[-92,-124],[81,-142],[29,-92],[-37,-172],[-91,-62],[-155,14],[-82,137],[-69,165],[0,159],[0,124],[14,131],[-28,41],[-59,-14],[-68,55],[-73,69],[-60,-14],[-137,-48],[-82,28],[-23,89],[-105,83],[9,165],[92,310],[205,220],[174,69],[114,-48],[36,-117],[-64,-158],[64,-283],[101,-76]],[[123824,145498],[119,-62],[82,14],[91,-48],[114,-35],[160,-137],[4,-159],[-59,-158],[78,-90],[-14,-206],[-68,-145],[-133,-131],[-82,-48],[-18,96],[-37,35],[-86,0],[-83,27],[-91,14],[-91,0],[-123,48],[-133,49],[-82,103],[-41,165],[-18,117],[59,104],[27,89],[96,55],[128,117],[50,124],[151,62]],[[121217,145677],[46,-103],[78,-179],[96,-83],[210,152],[109,27],[101,7],[301,145],[73,-166],[-110,-192],[-32,-35],[-89,-167],[39,-81],[9,-110],[-50,-220],[-59,-145],[-69,-179],[-91,-62],[-137,-131],[-100,-34],[-169,0],[-151,-55],[-123,-41],[-69,27],[-86,152],[-14,110],[0,96],[23,124],[54,131],[-18,138],[-59,82],[-37,117],[46,179],[27,159],[23,96],[55,103],[-23,76],[-59,7],[-123,-7],[-174,41],[-132,152],[-105,69],[-41,48],[18,124],[-69,55],[-114,69],[-36,131],[45,165],[-22,158],[-41,110],[119,224],[158,90],[248,150],[218,45],[119,-150],[69,-55],[68,-56],[32,-213],[15,-169],[40,-106],[5,-303],[-28,-159],[-32,-220],[18,-138]],[[139470,147251],[40,-21],[33,-53],[19,-106],[-37,-130],[-25,-36],[5,-57],[60,-61],[-10,-36],[-65,35],[-7,-54],[-36,-52],[-60,-19],[-58,-28],[-36,7],[-80,38],[-28,64],[8,56],[-8,45],[-5,64],[6,109],[-1,60],[8,40],[32,33],[22,40],[44,10],[7,21],[45,26],[80,-2],[47,7]],[[134911,147649],[19,-44],[19,15],[51,-5],[27,-25],[-15,-9],[-23,-33],[0,-34],[24,-42],[-4,-23],[-20,2],[-29,4],[-29,-2],[-41,-13],[-21,-57],[-40,-61],[-35,-48],[-22,-24],[-10,-28],[-72,-99],[-65,-83],[-54,-91],[-47,-71],[-73,-114],[-33,-63],[-66,-74],[-111,-127],[-59,-45],[-99,-63],[-124,-47],[-106,10],[-31,29],[-12,71],[21,74],[53,45],[51,63],[6,40],[-13,2],[-32,-15],[-15,20],[17,30],[39,50],[43,40],[35,38],[21,44],[54,41],[12,59],[36,24],[33,67],[39,43],[65,70],[32,46],[39,41],[42,46],[13,4],[14,35],[28,15],[48,17],[5,31],[19,0],[0,-18],[13,-2],[39,3],[40,-12],[9,16],[86,65],[109,80],[31,26],[41,77],[26,0],[2,-11]],[[121615,147888],[118,-97],[-18,-103],[-32,-117],[-87,-35],[-82,55],[-105,-6],[-96,62],[-64,-7],[-132,-124],[-91,-21],[-69,0],[-59,34],[-27,131],[-5,124],[41,104],[87,13],[36,-69],[87,-6],[73,27],[151,28],[36,151],[46,-21],[123,-55],[69,-68]],[[137064,148951],[21,-18],[0,35],[23,3],[17,-35],[54,-26],[44,-87],[31,-23],[-17,-43],[-48,-81],[-140,-197],[11,-50],[-52,-124],[-10,-102],[-55,-152],[-25,-157],[-57,-107],[-4,-63],[-50,-61],[-140,-200],[-59,-26],[-37,-84],[-59,-72],[-41,-12],[-50,35],[-51,40],[-89,6],[-38,-29],[-42,3],[-138,-202],[-77,-61],[-82,-89],[-143,-201],[-48,-34],[-19,-26],[-10,-150],[-32,-47],[-48,-6],[-71,0],[-42,-3],[-106,-26],[-92,29],[-40,-12],[-19,44],[15,49],[-25,133],[-7,125],[-43,29],[45,133],[48,-9],[84,93],[23,63],[88,18],[87,-26],[69,-73],[72,58],[37,84],[0,84],[36,14],[2,-43],[25,12],[6,37],[15,21],[0,66],[31,72],[58,96],[17,122],[-39,95],[-10,68],[-36,-25],[-19,61],[23,67],[81,32],[54,5],[57,50],[63,2],[60,21],[44,46],[36,119],[70,69],[84,104],[77,84],[73,49],[51,41],[-38,49],[42,44],[48,40],[54,38],[25,92],[54,21],[103,66],[83,38],[51,8],[41,0],[15,-31]],[[142227,148999],[-73,-5],[-92,59],[-40,130],[33,45],[46,35],[-26,129],[33,95],[46,20],[96,249],[69,129],[66,95],[93,-20],[63,-90],[-33,-179],[-76,-174],[-76,-249],[-56,-140],[-73,-129]],[[122691,150134],[-1,-31],[4,-43],[8,-24],[11,-16],[5,-17],[-12,-15],[-8,-39],[-27,-1],[-25,-13],[-17,25],[-20,1],[-30,-33],[-20,-7],[-21,-21],[-28,-24],[-35,-40],[-34,-8],[-26,-7],[-24,4],[-5,33],[2,29],[-4,7],[-23,-3],[-20,21],[1,31],[16,26],[24,52],[3,29],[87,62],[40,3],[16,-28],[47,23],[15,19],[28,-7],[8,18],[20,9],[15,0],[20,25],[12,-4],[-2,-36]],[[123979,150759],[46,-117],[-5,-172],[60,-83],[91,-117],[13,-117],[46,-28],[64,-68],[169,103],[183,55],[109,-41],[82,27],[160,-62],[87,-103],[0,-138],[-64,-158],[-91,-131],[-10,-76],[41,-34],[197,62],[132,41],[78,55],[86,-34],[96,20],[82,-41],[96,-27],[28,-83],[-50,-69],[-192,-34],[-37,-90],[-104,-254],[-124,-145],[-50,-124],[-155,-110],[-190,-140],[-75,-81],[64,-75],[55,-111],[-12,-189],[-52,-86],[22,-83],[-44,-329],[-65,-132],[-73,-76],[-151,0],[-82,76],[-164,193],[-55,131],[55,179],[9,137],[14,234],[4,186],[-55,83],[-105,41],[-132,28],[-114,-55],[-69,-110],[-54,-83],[-32,-83],[23,-69],[-37,-151],[-68,-110],[-55,-138],[-32,-165],[-36,-97],[-97,-82],[-77,-117],[-110,-97],[-86,-20],[-60,41],[-36,83],[50,89],[9,179],[-41,62],[-50,227],[-55,145],[-59,138],[-66,35],[-99,-42],[-118,7],[-78,110],[-55,138],[23,130],[105,200],[91,28],[60,75],[50,97],[14,103],[-96,207],[-5,137],[105,221],[110,124],[182,48],[41,172],[96,96],[0,117],[46,186],[119,104],[54,-35],[142,104],[68,103],[87,76],[-27,-117],[36,34],[101,96],[68,-34]],[[139700,150759],[35,-156],[30,23],[43,-58],[-12,-49],[73,-95],[38,-55],[-2,-44],[-9,-46],[36,-58],[25,-6],[4,-72],[-13,-38],[-4,-49],[-19,-35],[-35,-2],[-21,20],[2,-93],[-21,-107],[-37,-78],[-96,-153],[-65,-67],[-61,-43],[-27,-38],[-56,-23],[-38,-15],[-35,24],[-4,49],[-3,49],[9,98],[-29,41],[-15,98],[-34,61],[-39,32],[-29,20],[-7,52],[-12,75],[-40,38],[-15,81],[71,165],[-68,81],[-26,6],[-8,26],[21,40],[52,32],[38,35],[44,49],[-4,78],[47,81],[67,9],[19,67],[21,55],[54,69],[67,58],[57,0],[56,-9],[-4,-72],[6,-29],[-27,-122]],[[138108,150215],[-21,-52],[-35,6],[-94,-58],[-15,-60],[-21,-41],[-37,6],[-40,-29],[-58,-23],[-49,4],[-20,-30],[-44,-29],[6,-35],[50,-70],[-60,-49],[-15,18],[-54,52],[-38,-6],[-60,-52],[-38,34],[-6,76],[18,55],[38,3],[17,-61],[44,3],[12,124],[36,87],[39,75],[2,73],[-2,101],[27,78],[-4,43],[25,76],[82,78],[86,136],[127,142],[178,179],[104,64],[113,11],[71,-63],[62,-18],[19,-43],[-48,-93],[-23,-92],[-35,-41],[-32,-64],[19,-40],[13,-35],[-27,-46],[-53,-84],[-98,-87],[-60,-81],[-59,-98],[-42,-44]],[[126728,151247],[-15,-31],[-33,20],[-43,-32],[-45,-17],[-25,10],[-1,37],[-3,49],[29,52],[60,10],[39,-31],[32,-31],[5,-36]],[[131013,151439],[-26,-194],[-82,-101],[-103,-15],[-139,-233],[-134,-93],[-139,-78],[-118,78],[36,202],[123,194],[98,116],[67,-54],[82,116],[-15,179],[123,116],[75,43],[100,-51],[52,-225]],[[142801,152385],[14,-54],[52,14],[50,-29],[-46,-75],[6,-65],[-102,-119],[-99,-30],[-89,41],[-116,-71],[-89,45],[-46,59],[69,70],[73,-50],[-30,70],[56,85],[106,60],[129,-20],[6,44],[56,25]],[[127425,152531],[53,-8],[31,-20],[40,-14],[43,-35],[33,-39],[36,-21],[40,-12],[21,-47],[15,-39],[-4,-41],[-14,-45],[11,-41],[-7,-77],[-32,-97],[-17,-59],[-20,-55],[-46,-68],[-48,-34],[-29,-25],[-63,-41],[-68,-41],[-50,-26],[-34,-43],[-45,-25],[-47,14],[-58,19],[-42,35],[-36,14],[-43,33],[-39,43],[-44,20],[-41,27],[-40,36],[-38,11],[-21,30],[-6,43],[19,51],[-4,35],[-15,31],[-4,-10],[-40,-6],[-35,26],[-14,35],[-13,55],[11,43],[30,45],[23,-6],[43,27],[46,-2],[42,20],[12,29],[-6,39],[17,16],[11,-12],[48,45],[5,32],[30,27],[42,23],[4,53],[11,16],[34,12],[32,-8],[38,10],[63,11],[34,-15],[38,9],[19,43],[13,10],[29,-27],[31,-4],[15,-25]],[[146012,153576],[63,-74],[78,40],[25,-24],[-90,-87],[24,-43],[-14,-47],[-64,-74],[-45,-34],[-76,-12],[-49,-34],[-47,22],[-49,46],[-31,37],[0,65],[37,46],[-31,34],[15,37],[47,-52],[8,28],[39,61],[47,56],[6,192],[19,3],[53,-3],[45,-19],[49,-40],[-63,-71],[4,-53]],[[120812,153526],[-59,-373],[0,-105],[-60,-195],[-198,-44],[-298,-15],[-119,-75],[-208,-90],[-257,-224],[-179,-180],[54,-191],[-14,-93],[-109,-149],[-169,-75],[-168,-75],[-248,-60],[-208,-89],[-218,15],[-119,104],[-119,165],[89,389],[-188,44],[0,210],[19,269],[-19,149],[148,285],[70,209],[277,194],[238,75],[188,30],[100,-45],[188,-75],[228,-149],[248,60],[42,135],[42,135],[40,126],[124,396],[128,90],[209,60],[228,-75],[138,-179],[109,-180],[70,-105],[20,-119],[-40,-180]],[[132582,154365],[66,-116],[65,-74],[13,-101],[-3,-101],[-5,-105],[-44,-97],[-28,-85],[-26,-62],[-59,-66],[-72,-132],[-46,-62],[-83,-89],[-84,-58],[-139,-74],[-103,-62],[-129,-58],[-80,-43],[-79,-27],[-65,-59],[-85,-42],[-59,8],[-54,-35],[-36,23],[26,78],[-8,54],[26,105],[28,101],[49,23],[31,62],[64,77],[41,109],[44,128],[46,101],[47,82],[26,50],[56,89],[103,194],[77,148],[77,70],[57,-8],[67,39],[77,77],[139,0],[62,-62]],[[146901,154455],[49,-45],[39,-124],[-23,-79],[-25,-58],[18,-30],[-16,-26],[-26,29],[-21,-34],[-53,-48],[-66,-10],[-65,21],[-25,68],[7,106],[16,85],[-16,50],[-31,8],[-2,42],[28,8],[9,27],[38,16],[51,-16],[12,23],[37,-10],[65,-3]],[[145446,154701],[29,-37],[64,7],[55,-31],[16,-44],[72,25],[22,-37],[-81,-77],[53,12],[2,-37],[-39,-56],[-39,-92],[-39,-47],[-100,-123],[-113,-121],[-76,-12],[-106,-40],[-84,-16],[-72,31],[-23,74],[11,167],[-9,46],[-32,28],[34,53],[11,25],[55,80],[31,37],[35,28],[79,49],[44,50],[55,-22],[98,34],[47,46]],[[133777,155588],[51,-26],[31,-37],[15,-39],[-3,-42],[-1,-49],[-5,-85],[-22,-72],[-23,-110],[-38,-78],[-34,-58],[-35,-57],[-42,-24],[-69,-3],[-56,52],[-29,54],[-30,12],[-15,31],[14,29],[-1,20],[-17,5],[-8,63],[7,37],[-11,36],[-23,33],[5,27],[19,-8],[16,7],[-6,23],[10,22],[6,32],[-20,10],[4,24],[18,16],[25,-3],[25,28],[38,31],[31,43],[39,26],[44,24],[46,-3],[44,9]],[[139507,156112],[12,-2],[23,9],[-2,-23],[15,-26],[-1,-32],[30,-10],[6,-17],[-16,-30],[6,-116],[-13,-43],[24,-2],[5,-44],[-18,-12],[-8,-18],[20,-2],[0,-49],[-22,-11],[-33,-24],[-23,-33],[-11,8],[-24,-10],[0,-27],[-19,-21],[-35,-26],[-25,-33],[-27,-17],[2,-38],[-13,-21],[15,-14],[-17,-23],[-15,0],[-13,17],[-21,-4],[-15,26],[-34,-19],[-38,8],[-41,36],[-30,-1],[-8,-15],[-27,-6],[-19,23],[2,51],[-2,57],[-2,47],[20,21],[35,55],[15,44],[26,77],[32,53],[58,86],[39,42],[61,89],[91,27],[16,22],[15,-7],[4,-22]],[[122423,156235],[63,-28],[68,15],[40,-21],[23,-31],[0,-52],[80,3],[26,40],[88,-56],[-29,-34],[33,10],[68,3],[26,-37],[-14,-40],[6,-54],[29,-17],[4,-47],[-53,-70],[-47,-56],[-50,-37],[-51,-12],[-61,3],[-35,-13],[-34,-3],[-49,19],[-45,-28],[-35,-28],[-35,-12],[-43,12],[-59,22],[-78,-6],[-53,28],[-27,37],[13,33],[41,37],[61,31],[27,40],[32,56],[10,31],[-43,-6],[-28,-41],[-37,-15],[-51,0],[-12,49],[47,50],[12,40],[49,68],[55,71],[68,46]],[[139381,156512],[-40,-57],[-37,-111],[-29,-30],[13,-15],[-7,-57],[-24,17],[-6,-35],[-31,-65],[-24,-45],[-33,-13],[-45,-65],[-75,-35],[-34,-37],[-12,-28],[-47,47],[-30,0],[-76,-10],[-10,-42],[-20,2],[-36,25],[-69,-10],[-31,-20],[-20,5],[0,58],[-22,17],[-3,38],[10,55],[-27,-2],[-5,22],[63,55],[69,61],[59,82],[27,38],[25,10],[10,15],[15,60],[27,48],[24,-3],[25,15],[15,41],[27,25],[0,60],[12,42],[36,73],[37,23],[20,42],[48,53],[22,48],[29,30],[50,-13],[29,-37],[16,-51],[22,-45],[30,-5],[58,-70],[-7,-105],[-18,-101]],[[144832,156448],[-7,-37],[-28,0],[16,-77],[-8,-90],[-176,-235],[-72,-87],[-37,-9],[-41,25],[15,28],[-226,250],[-22,68],[8,118],[33,117],[30,167],[17,90],[65,71],[68,71],[63,15],[82,9],[74,16],[55,-173],[56,-87],[12,-136],[-6,-96],[29,-18]],[[138372,157011],[0,-54],[-29,-4],[-20,-5],[-28,-164],[-29,-123],[-20,-141],[3,-72],[27,-37],[-6,-50],[3,-52],[-20,-14],[11,-9],[78,-102],[49,4],[1,-20],[10,7],[22,-34],[33,-43],[-18,-59],[-27,-44],[-36,-56],[-14,-62],[-35,-11],[-38,-11],[-14,-16],[-22,-16],[-28,9],[-17,-28],[-23,-24],[-39,0],[-39,-35],[-18,-93],[-18,-27],[-20,-2],[-26,20],[-36,2],[-20,-31],[-26,-23],[-1,-32],[12,-27],[6,-41],[-36,-66],[-26,-20],[-46,-1],[-39,-63],[-49,-46],[-58,-16],[-13,14],[38,68],[41,53],[43,72],[-8,60],[34,66],[43,45],[37,23],[9,65],[0,28],[-21,-7],[-39,-45],[-23,-5],[-21,23],[64,77],[-21,14],[-38,-26],[-39,-54],[-28,-9],[-24,20],[-23,-49],[-16,-7],[-12,31],[-48,-20],[-54,-34],[-57,-48],[-70,-66],[3,-29],[-12,-21],[-63,-68],[-56,-70],[-47,-55],[-65,-75],[-79,-68],[-75,-46],[-50,-43],[-67,-20],[-70,20],[-58,12],[-34,16],[-7,36],[-23,27],[19,48],[8,54],[-10,121],[-13,54],[-4,82],[5,91],[-34,43],[-23,37],[8,38],[-13,59],[-40,18],[-7,25],[9,50],[45,21],[0,50],[29,54],[14,82],[88,89],[97,82],[109,79],[61,21],[52,29],[33,42],[71,29],[74,43],[14,14],[40,39],[-9,25],[-3,47],[36,14],[5,-36],[-3,-28],[62,21],[14,29],[47,28],[67,25],[47,4],[33,18],[33,7],[69,14],[31,4],[33,21],[33,-28],[31,14],[33,39],[9,32],[26,33],[-21,21],[24,14],[26,7],[-3,33],[29,35],[38,-10],[26,32],[49,28],[62,-14],[59,32],[45,47],[38,-40],[17,-35]],[[124996,157411],[-75,-124],[-51,-54],[-72,7],[-62,62],[-95,-3],[-15,97],[18,174],[25,155],[8,78],[-28,62],[-3,62],[59,78],[29,81],[46,62],[13,59],[2,54],[98,58],[108,-4],[70,-42],[51,-8],[49,-117],[8,-73],[-15,-109],[22,-74],[13,-128],[-33,-81],[-52,-89],[-51,-59],[-67,-124]],[[136840,159710],[41,-11],[59,-61],[17,-71],[-68,-76],[-3,-41],[-40,-30],[1,-52],[-29,-34],[-15,-37],[-40,-69],[-22,-50],[9,-37],[-3,-105],[-2,-13],[-10,-72],[-21,-39],[-27,-50],[-49,-36],[-72,-31],[-60,-15],[-49,-13],[-54,-24],[-49,0],[-39,-26],[-24,-8],[-26,13],[25,37],[27,4],[17,58],[2,74],[30,52],[61,67],[20,17],[-11,28],[4,13],[-8,33],[-15,-22],[-31,4],[-12,37],[4,39],[26,49],[32,46],[40,28],[24,35],[33,34],[32,28],[28,33],[-1,28],[-39,0],[-51,-13],[-20,15],[-7,35],[18,28],[35,-5],[20,20],[18,32],[26,30],[14,26],[-3,50],[36,33],[30,21],[46,-13],[66,20],[43,13],[16,-26]],[[140939,159114],[-54,-18],[-34,18],[-117,-6],[-60,6],[-73,-15],[-46,3],[-54,-55],[-42,-72],[-30,-19],[-39,-45],[-64,-49],[-42,-33],[-58,-36],[-49,-22],[-46,6],[-46,28],[-8,36],[6,61],[10,48],[-14,28],[0,66],[12,106],[28,67],[-2,33],[4,73],[12,49],[32,27],[32,67],[55,57],[42,16],[54,42],[44,33],[10,58],[35,21],[36,100],[24,64],[8,60],[48,140],[6,130],[18,119],[26,103],[23,60],[26,25],[2,45],[-28,33],[-27,73],[10,100],[23,61],[6,76],[20,51],[-12,52],[2,54],[22,49],[-16,73],[-18,75],[16,119],[-34,57],[-19,58],[0,67],[17,78],[48,73],[84,67],[60,42],[133,6],[160,-90],[45,-53],[68,-81],[4,-77],[-23,-112],[11,-90],[4,-102],[-12,-124],[-29,-146],[-11,-114],[33,-153],[-12,-137],[-35,-120],[8,-53],[-8,-58],[-30,-42],[14,-10],[4,-35],[-21,-117],[9,-87],[-8,-94],[-42,-73],[8,-115],[24,-40],[6,-78],[-9,-92],[7,-96],[-22,-63],[-36,-67],[-35,-100],[-40,-64],[-34,-6]],[[139989,166727],[78,-258],[194,-78],[63,-34],[19,-58],[34,-14],[12,14],[65,-31],[7,14],[65,-61],[23,-22],[23,-72],[34,-66],[6,-52],[28,-5],[21,-23],[6,-67],[19,-22],[9,-38],[-2,-106],[-1,-72],[-16,-80],[-3,-112],[-21,-55],[-10,-75],[-27,-160],[8,-69],[-11,-101],[-29,-34],[-40,-118],[-51,-129],[-59,-118],[-19,-69],[-58,-78],[-26,-66],[-86,-60],[-46,-69],[-47,-69],[-59,-34],[-54,-38],[-34,-57],[-53,-72],[-15,-78],[-76,-83],[-50,-23],[-63,-27],[-6,-62],[-43,-40],[-59,-40],[-65,-17],[-53,2],[-23,-34],[7,-63],[-30,-3],[-72,3],[-50,-43],[-23,-41],[-44,3],[-62,-23],[-79,0],[-70,26],[-86,60],[-13,46],[-51,95],[-52,95],[-55,86],[-48,63],[-22,78],[-18,46],[-9,72],[-4,66],[-9,46],[30,20],[-19,20],[-15,40],[0,89],[15,86],[-25,61],[-26,100],[7,55],[25,43],[4,31],[-21,-2],[-19,60],[-15,54],[3,61],[-34,43],[-11,-14],[-7,-50],[-11,-14],[-17,32],[-30,20],[-65,20],[-46,49],[-13,34],[-4,55],[42,40],[27,81],[28,51],[27,41],[46,17],[55,26],[55,17],[44,0],[25,-43],[21,-43],[24,-43],[18,-32],[55,-3],[17,29],[32,14],[6,-46],[19,-3],[4,35],[-12,23],[39,54],[-48,-8],[-10,34],[67,12],[21,34],[-13,17],[11,26],[27,-37],[13,23],[31,43],[15,-20],[4,29],[24,20],[4,-26],[34,11],[48,15],[34,95],[17,63],[2,69],[-36,17],[-55,-46],[-40,9],[-42,14],[-2,55],[-6,45],[4,52],[29,-17],[34,37],[40,55],[67,31],[23,64],[-10,37],[-2,46],[57,57],[52,43],[70,46],[23,-8],[19,-40],[50,25],[45,64],[-32,40],[21,34],[17,-28],[17,54],[-2,60],[0,61],[12,37],[49,46],[63,12],[53,-18],[48,43],[-9,35],[-14,-3],[-6,43],[56,-6],[5,-54],[33,8],[-2,21],[21,11],[17,29],[55,-15]],[[137559,167543],[-68,-72],[-34,6],[-25,40],[28,72],[56,46],[36,-6],[7,-86]],[[138216,168356],[25,-32],[32,3],[6,-80],[-2,-78],[-7,-37],[-19,-80],[3,-95],[27,-150],[46,-83],[-21,-40],[-95,-75],[-58,-34],[-55,46],[-9,80],[-38,69],[-86,29],[-101,0],[-46,72],[6,86],[46,66],[40,54],[0,32],[32,26],[17,-12],[31,41],[175,126],[8,43],[43,23]],[[145330,201033],[287,42],[144,234],[161,458],[152,238],[174,-32],[742,-433],[402,-1092],[303,-216],[820,-121],[129,-352],[99,-1545],[387,-591],[272,-50],[620,938],[226,1275],[565,1319],[227,193],[606,235],[374,509],[962,101],[671,-642],[841,714],[177,-217],[347,-1148],[136,-81],[1026,-278],[194,46],[255,381],[395,-94],[898,-1113],[433,-125],[458,190],[516,434],[545,-137],[380,-410],[476,-729],[1361,-1168],[185,-406],[20,-44],[285,-627],[130,-144],[441,-147],[70,-831],[365,-1125],[32,-98],[191,-589],[101,-410],[97,-1133],[1074,-424],[62,-153],[207,-510],[168,-316],[261,-114],[727,634],[422,36],[157,-69],[258,-364],[41,-754],[-85,-368],[-185,-337],[-415,-449],[-445,-1406],[-179,-1062],[-316,-1308],[11,-228],[158,-711],[105,-2109],[-47,-1176],[-1125,-1579],[-106,-380],[169,-314],[714,-325],[283,-455],[21,-605],[-248,-584],[-648,-723],[-85,-234],[-177,-843],[98,-688],[417,-556],[1026,-413],[80,-110],[182,-436],[171,-251],[562,-309],[120,-630],[579,-410],[283,-670],[284,-63],[183,-289],[199,-836],[432,-439],[2152,-1152],[366,29],[222,64],[594,348],[771,220],[905,466],[1760,260],[1078,-252]],[[177249,168865],[124,-896],[65,-231],[109,-235],[86,-199],[91,-155],[77,-170],[107,-293],[52,-255],[166,-768],[91,-336],[223,-615],[122,-362],[23,-178],[-8,-133],[-85,-880],[-120,-1041],[-36,-1068],[168,-978],[34,-101],[152,-330],[181,-347],[122,-448],[107,-518],[338,-932],[127,-1025],[412,-2140],[285,-891],[330,-296],[200,-564],[118,-536],[24,-259],[19,-1003],[-11,-486],[-193,-303],[-67,-397],[59,-427],[343,-261],[369,-196],[256,-178],[268,-310],[402,-462],[5,-769],[7,-954],[179,-378],[107,-360],[126,-570],[180,-706],[71,-261],[96,-169],[132,-199],[90,-255],[48,-297],[2,-225],[2,-113],[-29,-151],[-41,-218],[-13,-313],[36,-166],[104,-344],[67,-348],[27,-87],[11,-82],[-5,-34],[-10,-66],[-14,-178],[24,-122],[73,-86],[124,-48],[180,-99],[147,-314],[75,-35],[43,-50],[55,-292],[186,-359],[239,-560],[12,-47],[-3,-275],[12,-184],[58,-120],[-38,-504],[-1,-16],[-21,-291],[-134,-88],[-233,-469],[-173,-116],[-140,-449],[-74,-163],[24,-290],[123,-351],[20,-212],[36,-393],[-53,-307],[-1,-114],[10,-75],[9,-76],[4,-106],[-9,-88],[-13,-324],[88,-375],[32,-236],[16,-71],[13,-44],[7,-26],[2,-41],[1,-41],[0,-33],[-2,-60],[-19,-122],[-24,-123],[-30,-227],[51,-167],[43,-86],[26,-86],[-6,-109],[-15,-77],[-33,-115],[-24,-82],[-48,-147],[-6,-13],[-58,-134],[-103,-194],[-46,-100],[-17,-79],[9,-93],[33,-118],[60,-106],[54,-118],[-10,-113],[19,-104],[-1,-77],[-18,-170],[-32,-83],[-15,-125],[21,-118],[8,-107],[6,-741]],[[184100,128535],[-276,20],[-126,-5],[-93,-27],[-117,-11],[-128,27],[-80,97],[-4,109],[-54,88],[-17,109],[-51,81],[-100,32],[-125,-111],[-198,-118],[-120,-99],[-120,-82],[-101,-80],[-103,-83],[-258,-221],[-270,-304],[-138,-221],[-168,-294],[-3,-5],[-108,-240],[-43,-168],[-5,-18],[90,-108],[117,-9],[35,-100],[-68,-68],[18,-199],[42,-172],[-63,-163],[6,-245],[-12,-226],[-72,-199],[48,-217],[114,-136],[222,-27],[150,-73],[252,109],[228,0],[188,-149],[-50,-258],[78,-245],[59,-124],[10,-370],[-165,-835],[-249,-503],[-954,-456],[-540,-312],[-97,-56],[-259,296],[-59,488],[-137,607],[-96,440],[-154,192],[-104,-123],[-202,-255],[-154,-220],[-125,-232],[-141,-323],[-68,-278],[119,-175],[80,-304],[130,-200],[13,-239],[-163,-279],[-317,-276],[-261,-149],[-111,278],[-171,110],[-273,168],[-203,-149],[-162,-187],[-99,-278],[-111,-155],[-219,-77],[-188,-46],[-210,-71],[-261,-64],[-240,110],[-142,220],[22,251],[47,271],[-77,304],[-2,9],[-84,308],[-51,252],[-9,290],[0,272],[5,368],[34,407],[120,400],[94,239],[141,304],[219,297],[111,188],[-55,226],[-189,116],[-73,245],[35,323],[-240,143],[-300,239],[-283,252],[-235,90],[-249,78],[-299,38],[-240,-122],[-321,-298],[94,-316],[-77,-317],[-552,-430],[-304,-115],[-656,-247],[-288,-426],[-1249,-787],[-348,-399],[-612,-651],[-252,-37],[-204,272],[-312,54],[-552,18],[-336,-561],[-192,-54],[-228,18],[-1316,-1707],[-297,-232],[-218,40],[-217,-440],[1013,-1383],[1494,-192],[6,-792],[-1394,240],[-1098,1458],[-191,253],[-270,-92],[-193,124],[-151,272],[-409,184],[-463,404],[-255,204],[-93,-136],[-193,-141],[-170,129],[-16,220],[-5,219],[125,244],[-19,184],[-246,104],[-136,337],[-86,252],[-25,394],[-193,161],[-124,110],[-159,-129],[-188,-220],[-163,-258],[-222,-58],[-227,180],[-24,445],[75,292],[201,581],[257,414],[86,374],[167,227],[244,103],[188,-97],[120,-116],[103,-220],[150,349],[193,252],[55,362],[43,452],[-30,258],[64,323],[176,310],[206,394],[124,349],[120,336],[94,336],[-56,162],[-145,135],[4,185],[148,332],[94,213],[109,246],[180,129],[243,43],[194,-140],[150,-19],[112,168],[88,244],[64,276],[2,224],[-49,222],[-47,64],[-121,-73],[-125,-50],[-100,20],[-47,110],[0,243],[14,147],[71,159],[95,127],[101,96],[63,63],[17,58],[-59,81],[-19,121],[27,155],[70,113],[121,93],[117,50],[153,-37],[76,-85],[60,-170],[41,-119],[65,-88],[70,-38],[58,17],[55,61],[47,90],[7,109],[-12,86],[-43,95],[-35,97],[-6,94],[25,126],[79,178],[27,152],[85,222],[119,265],[108,207],[195,252],[214,202],[159,88],[177,23],[197,-68],[167,-135],[120,-191],[50,-84],[57,-6],[92,67],[99,94],[79,155],[-6,216],[15,120],[70,120],[78,77],[32,55],[-63,193],[-38,211],[-84,171],[-18,150],[150,284],[176,84],[192,-38],[222,-29],[134,229],[13,304],[-5,316],[-47,362],[-206,473],[150,102],[-29,108],[-35,78],[-155,156],[-139,44],[-795,-550],[-186,-551],[-264,-268],[-209,-121],[-267,119],[-179,286],[-122,316],[-126,193],[-143,139],[-89,180],[-105,325],[-145,171],[-175,228],[-28,232],[-47,203],[-147,135],[-160,45],[-256,-93],[-211,-13],[-109,116],[-49,187],[-19,332],[-42,515],[-557,872],[-360,268],[-928,-288],[-827,500],[-342,807],[-180,280],[-61,-168],[-125,-384],[-312,-480],[-478,-204],[-318,-599],[-291,-632],[-366,-488],[-296,-238],[-90,-76],[-439,8],[-408,1284],[-399,555],[-363,164],[-503,-393],[-531,-10],[-106,-91],[-251,-211],[-297,-459],[-30,-159],[-15,-79],[-15,-79],[20,-55],[40,-161],[35,-238],[-33,-229],[-65,-176],[-126,-195],[-125,-150],[-117,-110],[-206,-193],[-108,-110],[-71,-99],[-35,-54],[-35,-54],[-45,-68],[-45,-69],[-14,-93],[-15,-93],[-6,-42],[-44,-106],[-100,-106],[-109,-116],[-39,-106],[-2,-46],[-2,-46],[-9,-53],[-5,-26],[-4,-26],[7,-56],[6,-56],[13,-105],[31,-98],[324,-311],[80,-137],[11,-88],[10,-88],[-14,-109],[-15,-108],[-77,-106],[-80,-124],[-125,-57],[-62,-28],[-63,-28],[-98,21],[-185,153],[-172,-56],[-127,14],[-134,119],[-31,197],[-56,187],[-85,51],[-128,0],[-60,134],[-38,0],[-38,-1],[-36,57],[-36,57],[-51,-2],[-51,-3],[-22,-23],[-21,-24],[-43,-47],[-55,-68],[-75,-64],[-75,-64],[-160,-199],[-129,-86],[-129,-87],[-175,-120],[-56,-84],[-55,-84],[-54,-91],[-27,-45],[-27,-46],[-39,-71],[-38,-72],[-31,-72],[-30,-73],[-41,-74],[-40,-75],[-39,-90],[-38,-91],[-14,-182],[32,-211],[151,-160],[115,-68],[13,-149],[-49,-182],[-51,-208],[-28,-403],[-69,-75],[-100,-1],[-100,-135],[-50,-68],[-51,-68],[-90,-5],[-105,77],[-104,119],[-62,-3],[-61,-3],[-119,-44],[-98,-72],[22,-253],[-24,-74],[-97,-33],[-132,-9],[-55,-9],[-55,-9],[-59,-89],[-138,-24],[-138,-24],[-191,-117],[-96,-59],[-96,-58],[-189,50],[-169,13],[-168,14],[-213,184],[-244,161],[-249,107],[-145,3],[-145,3],[-103,-2],[-104,-1],[-124,25],[-124,25],[-182,86],[-187,132],[-139,292],[-16,123],[-16,123],[8,128],[8,128],[110,223],[248,104],[250,-23],[122,190],[-39,519],[-5,161],[-4,161],[39,105],[35,138],[-4,125],[-55,204],[-54,204],[6,117],[6,118],[40,162],[63,109],[111,91],[113,40],[96,-13],[113,-59],[70,-69],[74,-135],[118,0],[143,125],[87,144],[48,132],[44,151],[4,134],[5,135],[17,76],[17,75],[57,118],[37,60],[19,29],[18,30],[15,52],[16,53],[33,77],[20,44],[21,43],[19,33],[20,33],[16,92],[16,92],[31,123],[10,71],[10,71],[19,87],[19,86],[7,92],[3,47],[4,46],[50,256],[-7,119],[-8,119],[-23,108],[-17,41],[-13,50],[-74,113],[-73,112],[-173,195],[-255,287],[-109,240],[3,268],[19,113],[19,112],[24,123],[-2,124],[-1,62],[-1,61],[-29,122],[-30,122],[-159,20],[-374,-47],[-73,-372],[-79,-238],[-50,-87],[-49,-87],[-36,-43],[-161,-426],[-114,-56],[-173,-35],[-101,-144],[-135,-115],[-135,-115],[-136,-22],[-189,39],[-96,72],[-97,73],[-139,36],[-158,-75],[-74,-134],[-73,-160],[-307,-211],[-206,-27],[-146,-32],[-330,-37],[-351,-195],[-85,-66],[-54,-76],[438,-469],[188,-449],[91,-208],[115,-352],[111,-479],[7,-356],[-214,-378],[-339,-189],[-280,111],[-74,294],[-74,295],[-77,276],[-77,277],[-82,337],[-70,217],[-11,211],[-38,69],[-126,-15],[-285,-293],[-48,-49],[-316,-286],[57,-86],[33,-127],[-2,-204],[-69,-193],[-100,-246],[-64,-116],[-173,-174],[-151,-11],[-217,92],[-215,208],[-115,189],[-84,77],[-92,0],[-184,-131],[-166,-208],[-84,-243],[3,-220],[169,-543],[230,-137],[170,-74],[148,-158],[41,-220],[-49,-191],[-117,-256],[-97,-177],[-87,-104],[-127,-85],[-164,-58],[-163,-38],[-67,5],[-66,6],[-93,16],[-94,15],[-60,21],[-60,21],[-104,97],[-35,100],[-17,50],[-17,50],[-95,189],[-181,67],[-47,-11],[-22,-9],[-22,-9],[-27,-18],[-28,-18],[-51,-65],[-26,-46],[-25,-46],[-31,-144],[2,-174],[17,-84],[-6,-46],[-2,-24],[-3,-23],[-8,-108],[-4,-54],[-2,-27],[-2,-27],[-55,-145],[-174,-127],[-184,-173],[-123,-186],[-104,-167],[-2,-3],[-155,-202],[-180,-138],[-142,-13],[-92,82],[-40,144],[11,170],[43,165],[-20,174],[-62,158],[-104,98],[-158,30],[-168,-16],[-195,-49],[-184,-82],[-107,-465],[-195,-376],[-160,-171],[-159,-172],[-144,-143],[-143,-143],[-103,-65],[-51,-33],[-52,-32],[-173,-229],[-49,-294],[3,-184],[3,-183],[-49,-139],[-24,-70],[-13,-34],[-12,-35],[-89,-74],[-45,-36],[-44,-37],[-141,-65],[-70,-33],[-71,-33],[-287,-57],[-51,2],[-52,2],[-25,1],[-26,1],[-51,2],[-201,33],[-200,139],[-189,212],[-92,237],[-6,220],[70,253],[125,180],[141,90],[211,33],[173,106],[76,130],[-22,205],[-22,71],[-22,71],[-29,82],[-28,82],[-36,120],[-17,60],[-18,61],[-38,106],[-19,53],[-18,53],[-26,84],[-26,83],[-26,109],[-25,108],[-2,6],[-26,93],[-26,93],[-106,147],[-84,106],[-80,67],[-99,63],[-108,41],[-83,20],[-94,6],[-91,-1],[-193,-175],[-116,-118],[-149,-131],[-109,-81],[-110,-82],[-146,-106],[-114,-33],[-109,14],[-66,53],[-66,88],[-25,84],[-26,84],[1,87],[2,88],[56,208],[136,368],[-19,273],[-71,147],[-140,135],[-157,86],[-133,82],[-127,-70],[-142,-141],[-89,-27],[-82,10],[-52,68],[-37,100],[-24,104],[-24,105],[-81,122],[-82,123],[82,277],[-100,221],[-32,601],[238,605],[245,-13],[303,840],[-16,358],[-614,-123],[-57,272],[270,469],[229,160],[246,235],[221,-49],[229,-420],[254,308],[169,545],[-236,110],[-204,409],[16,388],[214,416],[372,412],[-174,565],[312,527],[0,489],[299,357],[38,414],[386,368],[474,573],[350,151],[249,38],[324,56],[213,339],[119,438],[426,221],[371,192],[924,193],[393,-75],[399,-245],[50,-310],[162,-141],[75,-273],[86,-357],[388,-255],[131,-357],[393,9],[256,9],[268,47],[231,113],[187,170],[131,216],[6,254],[-44,254],[88,160],[13,199],[-369,121],[-125,320],[50,273],[-55,228],[-213,139],[-185,231],[31,474],[31,481],[29,451],[-62,217],[60,241],[121,105],[150,-45],[243,84],[201,134],[229,45],[175,198],[304,-13],[195,50],[200,-141],[43,-244],[-56,-283],[143,-160],[-12,-216],[75,-216],[162,-273],[187,-66],[69,226],[106,-10],[127,-79],[247,117],[203,19],[115,188],[72,146],[34,183],[94,155],[162,47],[196,203],[82,226],[43,197],[25,231],[10,179],[1,82],[37,70],[80,644],[-279,180],[-39,238],[86,238],[268,374],[239,360],[203,1319],[217,895],[120,164],[141,98],[522,285],[-111,159],[-168,148],[-39,319],[62,319],[110,284],[216,107],[39,331],[208,360],[223,138],[-2785,681],[-925,863],[-98,-319],[-114,-337],[-306,-302],[-415,-130],[-247,36],[-321,-231],[-290,-35],[-181,148],[-105,-89],[51,-302],[-102,-413],[-122,-432],[-47,-573],[-192,-574],[-290,-230],[-392,-195],[-247,307],[-4,378],[135,207],[-354,-71],[-259,320],[-172,514],[52,628],[-319,554],[28,473],[4,237],[-153,177],[-137,248],[4,195],[125,83],[364,237],[153,82],[114,12],[90,-254],[-23,248],[58,154],[228,266],[286,-106],[321,-101],[220,-18],[192,-147],[109,100],[106,308],[47,242],[-23,142],[-169,0],[-161,-12],[-301,100],[-208,207],[-102,225],[-110,307],[-7,391],[-157,29],[-43,136],[43,343],[113,402],[-35,171],[-180,225],[17,195],[5,195],[281,62],[450,479],[246,298],[178,177],[203,202],[208,77],[220,12],[242,-6],[251,95],[227,102],[200,110],[90,129],[99,66],[98,302],[60,249],[13,243],[51,222],[71,247],[74,204],[57,128],[69,111],[59,74],[50,164],[37,123],[47,66],[73,47],[-47,58],[-73,-83],[-81,28],[-73,-8],[-80,-17],[-70,-52],[-57,-60],[-66,-30],[-77,14],[-63,12],[-55,-9],[-51,-62],[-76,-52],[-75,-64],[-88,-4],[-62,-3],[-50,-70],[-58,-48],[-89,-6],[-78,23],[-85,24],[-77,26],[-43,116],[20,106],[38,61],[38,77],[3,103],[17,109],[22,103],[43,90],[43,47],[89,-9],[57,70],[-7,69],[34,53],[52,59],[50,2],[37,53],[41,74],[43,102],[17,216],[-29,88],[-7,95],[16,83],[26,69],[66,106],[53,106],[61,95],[34,54],[-244,-214],[-504,-442],[-261,59],[-105,453],[-248,-236],[-444,-217],[-104,611],[-196,216],[65,966],[-300,-335],[-72,79],[-72,78],[-366,-98],[-195,433],[-392,0],[-301,355],[-89,640],[57,372],[-197,497],[-318,348],[-128,27],[-290,-366],[-145,-513],[-365,-99],[-61,491],[-284,417],[-13,184],[-135,5],[-141,-328],[-255,31],[-113,-123],[-120,332],[-191,-271],[-523,-30],[-69,-151],[753,1],[360,-227],[-232,-630],[-23,-455],[-487,-630],[-418,490],[-171,-193],[-26,-367],[23,-664],[-371,-507],[-266,209],[-290,560],[-255,193],[-371,314],[-174,455],[-128,1085],[-2,449],[-523,-123],[50,-414],[-174,-175],[-195,292],[-551,67],[-296,-343],[76,-140],[531,-31],[107,-97],[408,89],[113,-141],[-28,-198],[-119,-372],[-289,-338],[-1083,-231],[-57,-167],[121,-565],[614,-312],[679,192],[255,-227],[21,-181],[-827,-586],[-253,98],[-425,-173],[-262,-640],[-699,-806],[-345,-196],[-144,-548],[480,-953],[-47,-402],[-193,-194],[249,-171],[0,-528],[100,105],[83,-335],[141,-47],[-64,-317],[150,-155],[346,-357],[126,74],[212,678],[-49,178],[-218,-219],[-57,156],[536,484],[100,520],[163,293],[41,179],[-92,153],[-268,86],[-1,178],[241,173],[1003,-497],[327,-354],[125,-331],[254,-163],[567,-48],[489,326],[805,-209],[62,-897],[-829,-687],[-203,-504],[22,-194],[317,-304],[-19,-578],[-424,-389],[-756,-408],[-474,-1015],[-488,265],[-113,543],[-291,-44],[-196,-848],[-792,-1225],[-784,-27],[-397,919],[-250,-213],[-89,-76],[-375,-599],[-318,-1052],[240,-503],[-53,-184],[-53,-183],[177,-341],[16,-372],[-501,-135],[-307,-879],[-127,-49],[-133,42],[-43,525],[-247,116],[-212,512],[-128,-32],[-417,-1445],[-410,-730],[-394,228],[6,986],[-128,63],[-196,-251],[-114,92],[566,1109],[1017,851],[558,1437],[43,280],[14,89],[-92,237],[-3,8],[-95,246],[-226,216],[-741,147],[-548,288],[-428,747],[-812,826],[-338,-1024],[-701,-453],[-386,-61],[-706,283],[-396,-293],[-308,504],[43,1078],[-354,-112],[-422,301],[-385,-468],[-200,-510],[-200,246],[-1042,-169],[-646,-50],[-455,298],[-151,560],[197,694],[622,1256],[689,-58],[-95,559],[243,685],[-283,613],[-367,245],[-403,-513],[-51,-580],[-23,5],[-162,-159],[-341,-282],[-86,30],[-73,75],[-79,45],[-74,-57],[-12,-181],[-79,-418],[-320,-360],[-682,-684],[-253,-356],[-242,-499],[-52,-349],[151,-268],[178,-70],[152,130],[132,-120],[49,-428],[-12,-25],[-11,-25],[81,-73],[-5,-416],[-270,-613],[-63,-300],[-62,-300],[-243,-83],[-107,100],[-240,716],[-128,33],[-162,318],[-126,-59],[-198,-764],[588,-961],[209,-573],[-432,-296],[-588,-157],[-157,572],[-932,-151],[-253,-169],[-228,77],[-181,-463],[-37,-118],[-22,-210],[8,-120],[22,-120],[45,-158],[54,-149],[-14,-53],[28,-52],[-38,-192],[-203,-1010],[-84,-519],[29,-301],[11,-107],[113,-502],[15,-110],[238,-323],[252,9],[123,288],[243,145],[262,55],[123,-330],[-38,-215],[-209,-186],[16,-316],[172,-106],[141,-402],[-20,-432],[-223,-266],[-292,-61],[-276,-122],[-220,-54],[-7,-384],[-142,-352],[-262,-325],[-122,-213],[-49,-212],[47,-147],[183,-89],[605,-26],[-94,-674],[-94,-674],[-266,-520],[-314,-213],[-317,-55],[-200,-394],[-345,-118],[-63,-355],[94,-449],[173,-355],[282,-71],[282,260],[361,166],[297,212],[298,95],[282,-47],[314,189],[313,142],[201,-172],[82,-585],[344,-172],[157,-357],[314,-322],[376,-237],[-47,-591],[-549,-946],[-454,-165],[-345,260],[-439,331],[-157,-402],[423,-355],[16,-520],[-140,-381],[-393,-305],[-376,378],[-141,539],[-276,72],[-257,193],[-345,-212],[-204,-284],[-298,-260],[-296,-443],[-378,-101],[-78,-379],[-141,-331],[62,-402],[-156,-307],[-251,-284],[47,-378],[-82,-370],[-232,-245],[330,-142],[188,-213],[125,-307],[298,-47],[251,-142],[130,-306],[-26,-464],[-26,-460],[105,-264],[-11,-422],[267,-118],[329,-47],[157,496],[141,473],[266,308],[345,-189],[78,-615],[345,23],[424,24],[203,-355],[-78,-473],[-235,-473],[-423,-94],[-409,-109],[-297,38],[-172,-308],[-298,-260],[-361,-260],[-47,-567],[-316,-462],[-514,-271],[-377,141],[-360,-140],[-471,235],[-235,449],[-486,119],[-94,591],[-62,520],[15,497],[-172,354],[-188,308],[-76,405],[29,493],[-282,237],[-236,23],[-219,-70],[-376,-190],[-376,24],[-314,-780],[-469,248],[-179,566],[250,419],[204,293],[9,517],[0,489],[19,322],[-325,461],[-240,181],[-232,-56],[-417,-167],[-361,-196],[-398,-126],[-538,-321],[-218,-49],[-236,650],[-185,703],[-213,26],[-174,186],[-139,108],[-68,180],[-197,-59],[-134,34],[-62,110],[-23,237],[-16,186],[-45,194],[-96,60],[-162,-26],[-211,-2],[-212,-99],[-168,-95],[-327,-123],[-147,-74],[-162,-167],[-176,-113],[-93,-55],[-94,-63],[-94,-110],[-85,-114],[21,-254],[-13,-176],[-10,-207],[-7,-151],[-29,-213],[-34,-151],[-55,-167],[-68,-201],[-80,-197],[-111,-218],[-92,-153],[-143,-239],[-19,-86],[14,-91],[21,-188],[14,-157],[-16,-114],[-75,-170],[-82,-141],[-85,-174],[-75,-131],[-81,-161],[-91,-152],[-42,-151],[-105,-177],[-54,-159],[-66,-148],[-91,-117],[-109,-76],[-111,-40],[-101,182],[-150,0],[-185,-167],[-142,-318],[-148,-353],[-124,-296],[-465,-152],[-108,-14],[-203,68],[-131,-102],[-153,-149],[-180,-150],[-135,-88],[-199,-68],[-139,0],[-68,-177],[-131,-170],[-171,-204],[-126,-218],[-59,-231],[9,-197],[-40,-272],[-97,-259],[-241,-47],[-167,-170],[-108,-68],[-77,7],[-47,43],[-52,48],[-104,473],[-112,177],[-189,442],[-104,218],[-171,156],[-190,190],[-202,34],[-257,-13],[-415,-41],[-214,-40],[-196,67],[-176,20],[-180,-47],[-185,-82],[-523,-346],[-274,-184],[-185,-41],[-90,36],[-45,19]],[[93682,130987],[-2,136],[-3,373],[-171,157],[-135,61],[-217,27],[-26,-3],[-20,-2],[-242,-29],[-161,19],[-33,4],[-72,9],[-279,91],[-244,156],[-140,156],[-112,225],[-86,326],[-49,347],[-9,312],[-59,177],[-81,177],[-104,122],[-153,61],[-189,0],[-208,-81],[-265,-258],[-181,-266],[-85,-244],[-72,-313],[-17,-80],[-40,-184],[-25,-117],[-63,-190],[-94,-136],[-163,-61],[-216,115],[-58,41],[-18,12],[-41,29],[-54,109],[-9,112],[-9,112],[-81,197],[-131,61],[-153,34],[-221,-54],[-158,-75],[-193,-61],[-136,-17],[-105,25],[-31,7],[-151,35],[-131,82],[-131,82],[-176,119],[-79,75],[-25,68],[-16,51],[20,29],[19,29],[117,102],[90,68],[20,88],[-7,102],[-63,102],[-135,37],[-99,-17],[-113,28],[-55,29],[-48,25],[-50,136],[24,55],[23,55],[84,135],[90,142],[63,198],[45,251],[23,129],[60,191],[39,122],[13,116],[-22,122],[-81,95],[-77,48],[-225,6],[-104,28],[-108,47],[-131,116],[-90,177],[27,122],[95,88],[125,36],[114,-36],[121,-74],[95,34],[113,95],[81,149],[21,97],[3,15],[21,92],[-4,30],[-14,106],[-63,136],[-190,140],[-189,139],[-63,102],[-50,115],[9,123],[55,129],[90,61],[248,27],[198,127],[198,159],[63,149],[6,40],[12,90],[5,176],[-32,177],[-56,44],[-56,45],[-122,-7],[-280,-245],[-121,-129],[-162,34],[-46,102],[19,109],[45,169],[58,130],[14,81],[-18,82],[-45,37],[-64,12],[-144,-25],[-108,17],[-63,102],[-36,129],[29,132],[32,140],[-11,132],[-32,143],[-34,177],[14,115],[27,70],[27,70],[81,34],[72,-44],[68,-119],[99,-249],[36,-91],[61,-116],[15,-173],[30,-163],[61,-133],[65,-92],[81,-47],[81,-4],[68,95],[90,191],[40,102],[-4,68],[-43,132],[-55,46],[-55,46],[-111,24],[-124,109],[-60,139],[-16,126],[2,143],[27,95],[72,57],[75,7],[90,-64],[56,-79],[59,-122],[58,-75],[84,-54],[73,-10],[53,-7],[67,17],[59,61],[11,95],[-13,116],[-45,136],[-50,81],[-289,371],[-11,15],[-142,179],[-38,136],[14,115],[24,99],[81,37],[57,-54],[49,-78],[33,-107],[168,-305],[135,-105],[65,-34],[68,44],[15,26],[26,45],[27,45],[58,180],[68,115],[67,116],[25,75],[-13,51],[-36,75],[-74,41],[-109,37],[-115,0],[-119,30],[-99,85],[-104,157],[-63,122],[-50,136],[-9,88],[30,89],[85,37],[113,-37],[255,-153],[202,-82],[66,-13],[58,30],[43,55],[29,125],[3,181],[2,180],[82,204],[33,131],[11,140],[1,5],[-18,100],[-57,72],[-108,5],[-96,-36],[-105,-82],[-234,-217],[-117,-27],[-102,22],[-48,77],[0,132],[75,176],[154,198],[73,115],[169,67],[99,113],[54,172],[18,186],[-84,95],[-117,18],[-228,-90],[-162,-40],[-142,-15],[-105,-13],[-150,81],[-87,132],[-54,176],[27,290],[57,194],[204,476],[298,706],[93,525],[-25,393],[-14,263],[-290,255],[-122,108],[-146,150],[-16,175],[282,372],[29,231],[-6,231],[-48,153],[-95,103],[-71,148],[-77,210],[-18,261],[-105,5],[-55,-25],[-51,-93],[-54,-71],[-105,-5],[-100,47],[-162,163],[-159,97],[-126,118],[-10,122],[51,149],[132,276],[14,128],[-37,169],[-55,98],[-84,61],[-72,56],[-64,77],[-49,107],[-86,579],[-25,164],[-66,77],[-113,43],[-126,-28],[-115,-118],[-89,-235],[-71,-271],[-85,-215],[-95,-175],[-112,-128],[-139,-61],[-122,36],[-65,128],[-44,148],[17,169],[65,169],[82,144],[53,148],[-13,143],[-37,149],[-89,107],[-105,87],[-115,-5],[-146,-10],[-180,-51],[-238,-39],[-220,39],[-177,25],[-183,39],[-47,82],[11,135],[33,359],[-2,205],[46,176],[80,204],[75,286],[17,437],[101,356],[181,308],[127,392],[131,457],[-21,417],[-78,291],[-161,154],[-198,152],[-132,30],[-189,114],[-211,161],[-116,192],[-5,268],[69,248],[27,245],[-9,429],[-9,277],[26,188],[-25,89],[-50,96],[-59,53],[-75,68],[-123,30],[-95,-30],[-74,-51],[-80,-118],[-67,-147],[-76,-68],[-220,56],[-445,331],[-288,229],[-278,298],[-93,167],[-237,296],[-129,106],[-83,-3],[-155,-25],[-257,30],[-203,147],[-164,71],[-81,86],[-67,91],[-130,76],[-99,101],[-44,108],[-107,268],[-20,144],[-45,89],[-7,93],[3,108],[11,57],[-4,127],[-15,137],[-12,73],[-31,51],[-57,29],[-101,-31],[-166,-91],[-103,-49],[-157,-130],[-228,-107],[-165,-75],[-213,-32],[-187,38],[-120,69],[-54,60],[-86,105],[-78,65],[-39,123],[-58,107],[-75,131],[-55,65],[-60,43],[-52,-3],[-77,-91],[-117,-143],[-60,-49],[-63,-69],[-74,-159],[-27,-83],[-63,-46],[-102,-29],[-60,42],[-49,16],[-82,-13],[-122,42],[-76,2],[-71,-20],[-60,-4],[-73,53],[-53,-2],[-74,-29],[-34,38],[-25,80],[-42,34],[-68,-23],[-148,-102],[-78,-83],[-43,-58],[-75,-38],[-147,18],[-142,9],[-80,9],[-97,-18],[-102,-58],[-73,5],[-173,194],[-120,214],[-122,169],[-105,119],[-91,51],[-119,16],[-122,6],[-105,0],[-97,-13],[-86,-29],[-56,-28],[-48,-23],[-77,-39],[-70,16],[-177,74],[-107,44],[-61,28],[-250,113],[-178,101],[-178,118],[-166,134],[-102,136],[-37,111],[-61,45],[-60,45],[-64,93],[-115,72],[-117,31],[-95,-5],[-111,36],[-97,76],[-128,207],[-133,268],[-78,259],[-188,149],[-112,146],[-42,110],[-15,37],[-51,147],[-85,199],[-80,98],[-45,145],[-34,120],[-34,107],[-43,58],[-59,32],[-79,15],[-99,-9],[-69,3],[-70,-65],[-34,-92],[-7,-89],[-9,-181],[-5,-69],[-31,-87],[-59,-13],[-80,-14],[-117,-7],[-288,41],[-217,45],[-100,31],[-85,-36],[-68,-74],[-88,-73],[-99,-107],[-93,-81],[-132,-44],[-82,-52],[-68,12],[-73,49],[-73,63],[-47,75],[-80,154],[-58,97],[-76,71],[-38,178],[-36,139],[-48,134],[-114,115],[-38,94],[2,128],[22,100],[24,106],[29,120],[-8,76],[-24,104],[-36,94],[-140,239],[-96,253],[-38,298],[-110,174],[-158,304],[-59,99],[-42,45],[16,103],[67,245],[-50,254],[-50,87],[-83,100],[-88,113],[-97,167],[-55,154],[28,208],[-11,201],[-5,198],[-48,113],[22,125],[-78,169],[-82,223],[-5,229],[-79,123],[-29,135],[-58,130],[-58,197],[-104,194],[-175,215],[-113,72],[-43,296],[-8,186],[89,436],[-15,149],[-44,137],[-68,230],[-20,89],[-51,108],[-51,36],[-71,89],[-70,44],[-7,60],[-42,61],[-140,148],[-129,75],[-95,100],[-62,18],[-35,46],[-21,78],[-6,108],[-54,115],[-59,62],[-98,30],[-95,-20],[-84,-45],[-80,-99],[-60,-147],[-71,-112],[-91,18],[-115,124],[-64,78],[-64,77],[-117,91],[-123,26],[-117,51],[-125,13]],[[63765,174530],[-90,36],[-74,7],[-60,16],[-53,79],[-62,92],[-42,140],[-38,53],[-1,3],[-4,54],[6,93],[1,15],[7,25],[27,113],[43,120],[173,398],[190,343],[82,192],[14,33],[13,14],[17,19],[110,180],[48,97],[122,246],[181,250],[128,218],[103,142],[4,6],[108,148],[26,37],[107,75],[130,72],[378,162],[141,33],[39,9],[61,-8],[43,-41],[64,-188],[38,-53],[83,-32],[130,11],[76,36],[41,53],[6,133],[11,63],[12,50],[39,21],[32,2],[33,3],[34,3],[30,9],[15,18],[17,50],[19,50],[20,34],[7,37],[15,24],[13,12],[63,58],[495,454],[119,239],[361,229],[169,105],[239,177],[272,316],[414,542],[299,460],[1047,1537],[430,734],[160,227],[526,745],[187,397],[117,292],[109,278],[174,296],[91,125],[50,56],[44,24],[42,-41],[119,-211],[110,-180],[120,-191],[105,-170],[101,-150],[337,-503],[331,-456],[301,-186],[176,-74],[87,20],[87,19],[219,173],[290,381],[215,298],[216,298],[478,792],[148,241],[207,246],[261,142],[248,128],[266,87],[317,181],[273,134],[296,22],[128,10],[120,-81],[58,-66],[132,-150],[112,-128],[174,-64],[138,55],[333,262],[423,496],[2,35],[44,36],[24,47],[37,7],[5,75],[38,10],[28,23],[23,47],[55,28],[16,88],[40,80],[35,36],[44,35],[27,54],[19,38],[19,80],[-12,61],[35,41],[43,-17],[37,26],[19,59],[31,16],[42,41],[46,77],[22,7],[45,12],[13,50],[3,78],[25,18],[43,19],[7,33],[12,81],[28,14],[61,9],[38,36],[42,37],[30,19],[31,0],[31,0],[46,-16],[46,-70],[30,-84],[52,-26],[39,-4],[47,7],[42,-45],[36,-216],[147,-110],[358,-376],[140,-301],[363,-990],[84,-65],[141,-25],[135,44],[148,129],[248,216],[118,104],[141,33],[348,-115],[336,-131],[226,-96],[57,-24],[70,-44],[35,-22],[196,-121],[87,-54],[115,-93],[116,-92],[232,-241],[384,-623],[190,-260],[216,-155],[198,16],[425,230],[445,262],[380,136],[138,50],[1171,393],[228,77],[72,22],[72,22],[51,109],[-19,185],[-213,503],[-145,459],[-50,219],[36,164],[210,655],[254,197],[280,513],[372,678],[434,634],[694,665],[378,330],[334,470],[195,218],[305,208],[91,165],[111,97],[132,69],[151,2],[151,2],[191,50],[122,149],[162,198],[413,318],[435,180],[407,37],[394,-98],[362,11],[181,142],[203,437],[268,536],[297,371],[181,146],[182,146],[499,124],[87,120],[-22,557],[-40,208],[33,333],[72,126],[399,175],[217,196],[326,612],[290,361],[268,634],[84,205],[184,156],[333,32],[319,99],[254,120],[217,164],[275,229],[533,471],[221,305],[87,93],[86,93],[196,66],[439,-319],[556,-160],[351,76],[790,537],[163,79],[169,11],[145,-60],[228,-284],[177,-336],[120,-439],[85,-181],[183,-207],[194,-77],[348,-87],[51,-60],[52,-60],[41,-128],[7,-214],[37,-415],[109,-371],[668,-1317],[-246,-189],[-217,-370],[-125,-353],[-293,-829],[-32,-454],[-29,-194],[-29,-194],[-62,-241],[-63,-241],[-69,-224],[-57,-267],[62,-123],[150,6],[330,14],[172,-8],[125,-35],[86,-120],[120,-231],[97,-226],[-22,-150],[-52,-211],[-167,-284],[-113,-396],[-77,-553],[3,-412],[110,-257],[158,-113],[302,-163],[974,-328],[136,-112],[52,-172],[51,-172],[23,-439],[-6,-293],[35,-310],[51,-284],[97,-189],[114,-258],[290,-519],[67,-162],[56,-146],[72,-284],[66,-155],[79,-95],[106,-60],[123,34],[291,211],[143,99],[63,43],[115,20],[116,19],[365,38],[184,19],[260,118],[359,191],[196,198],[117,249],[59,311],[52,279],[94,220],[140,155],[728,775],[128,146],[140,86],[140,69],[168,17],[280,0],[279,9],[537,43],[354,31],[131,12],[708,353],[239,189],[297,276],[457,499],[479,672],[331,413],[297,551],[125,517],[35,688],[-69,1171],[69,603],[131,224],[259,308],[222,279],[78,139],[387,687],[521,924],[458,812],[387,687],[474,371],[764,544],[485,139],[333,-108],[181,56],[195,121],[227,224],[491,241],[433,-165],[818,-571],[203,-102],[461,1],[80,-151],[-149,-651],[7,-881],[265,-545],[111,-108],[351,-181],[157,6],[293,12],[462,94],[371,198],[531,672],[160,43],[183,-26],[217,-103],[125,-112],[160,-215],[447,-866],[226,-236],[286,-104],[307,-46],[264,-61],[731,-505],[538,149],[393,-134],[843,87],[342,63],[288,112],[175,68],[342,319],[240,267],[375,411],[292,286],[571,396],[1119,517],[1352,835],[951,546],[871,443],[487,527],[539,-85],[415,124],[156,346],[8,819],[186,412],[290,63],[246,160],[224,-159],[815,-629],[24,-19],[364,-19],[352,259],[459,240],[298,444],[286,803],[95,91],[291,160],[343,-143],[222,-220],[118,-392],[264,-140],[124,166],[139,-97],[10,-216],[-33,-421],[-45,-143],[-92,-288],[34,-310],[80,-606],[-94,-767],[-172,-275],[-518,-550],[-1,-134],[87,-94],[129,-7],[127,68],[718,775],[396,980]],[[705560,676984],[35,-88],[22,-90],[0,-5],[19,-108],[4,-37],[2,-25],[-5,-34],[-5,-35],[-19,-131],[-29,-170],[-18,-105],[-18,-105],[-8,-72],[-3,-82],[7,-74],[-9,-145],[-15,-155],[-25,-106],[-33,-90],[-30,-70],[-44,-109],[-24,-94],[-38,-200],[0,-159],[18,-142],[24,-90],[48,-100],[57,-78],[28,-34],[33,-20],[39,-10],[44,10],[52,14],[87,21],[87,2],[88,-15],[20,-7],[107,-41],[118,-78],[153,-130],[143,-129],[146,-139],[158,-140],[136,-135],[103,-91],[104,-92],[146,-126],[6,-5],[94,-81],[67,-71],[68,-71],[56,-71],[64,-66],[81,-90],[64,-63],[48,-29],[44,-10],[59,-7],[39,5],[57,21],[69,16],[37,22],[39,17],[37,3],[29,-7],[34,-12],[21,-25],[27,-43],[24,-51],[30,-26],[36,-1],[35,36],[32,44],[35,28],[42,2],[63,-13],[44,-43],[40,-72],[34,-75],[55,-120],[37,-85],[53,-95],[54,-83],[69,-82],[55,-67],[69,-95],[56,-80],[68,-107],[96,-126],[83,-94],[77,-82],[77,-75],[82,-60],[81,-60],[117,-54],[141,-45],[148,-49],[134,-29],[120,-59],[79,-46],[90,-59],[69,-86],[21,-54],[36,-92],[28,-125],[3,-143],[-4,-107],[-7,-109],[-6,-108],[-6,-114],[3,-82],[3,-81],[15,-80],[47,-69],[50,-45],[50,-44],[78,-66],[62,-52],[30,-24],[30,-25],[73,-60],[49,-40],[67,-55],[63,-51],[39,-33],[11,-9],[92,-86],[68,-112],[35,-95],[18,-77],[17,-75],[19,-85],[2,-134],[7,-131],[14,-105],[30,-108],[35,-106],[42,-109],[64,-76],[89,-48],[79,15],[101,25],[122,56],[77,9],[97,-24],[68,-53],[63,-70],[63,-69],[59,-66],[65,-45],[55,-14],[77,-11],[73,36],[64,39],[57,74],[25,74],[26,90],[27,100],[30,108],[34,92],[24,65],[33,88],[34,79],[43,69],[59,54],[73,56],[78,30],[99,31],[74,25],[80,12],[79,12],[77,11],[101,25],[116,45],[68,27],[84,49],[69,32],[59,54],[58,54],[62,36],[62,36],[85,8],[86,-8],[63,-25],[57,-42],[54,-39],[72,-69],[69,-62],[75,-40],[104,-21],[64,-17],[67,-18],[89,-21],[72,-41],[59,-57],[48,-62],[44,-83],[29,-81],[25,-104],[16,-127],[14,-124],[9,-109],[8,-92],[10,-130],[9,-101],[7,-84],[6,-71],[19,-72],[57,-78],[59,-122],[24,-115],[28,-136],[24,-119],[18,-130],[19,-129],[14,-99],[14,-99],[35,-69],[45,-49],[46,-35],[56,-34],[48,-17],[64,27],[71,38],[68,29],[75,25],[76,0],[77,-17],[82,-26],[80,-54],[71,-54],[83,-60],[80,-37],[83,-16],[65,24],[62,43],[40,68],[55,55],[58,63],[63,14],[84,0],[58,-44],[29,-37],[52,-64],[45,-56],[66,-81],[60,-74],[48,-67],[49,-93],[50,-98],[44,-86],[44,-86],[41,-70],[69,-67],[57,-51],[63,-59],[88,-32],[65,-9],[60,33],[57,14],[56,-28],[52,-43],[46,-70],[55,-56],[86,-55],[60,-34],[61,-34],[60,-33],[60,-34],[78,-39],[69,-21],[67,-5],[67,-5],[56,3],[123,6],[105,18],[92,15],[118,19],[78,13],[93,4],[68,3],[62,2],[109,4],[99,4]],[[720540,664716],[-83,-147],[-84,-147],[-235,-307],[-204,-196],[-129,-141],[-38,-41],[-89,-140],[-61,-91],[-79,-68],[-209,-144],[-189,-126],[-104,-205],[-42,-178],[22,-139],[50,-195],[34,-257],[3,-261],[-15,-167],[-68,-201],[-121,-214],[-177,-260],[-134,-198],[-140,-107],[-90,-107],[-89,-144],[-175,-207],[-254,-301],[-160,-132],[-146,-185],[-142,-191],[-82,-190],[-2,-164],[55,-163],[134,-276],[234,-397],[35,-60],[18,-157],[-20,-74],[-21,-75],[-348,-401],[-1403,-1137],[-470,-476],[-475,-578],[-517,-607],[-205,-239],[-341,-236],[-214,-190],[-138,-163],[-144,-259],[-207,-256],[-264,-273],[-12,-15],[-189,-255],[-158,-188],[-92,-110],[-312,-224],[-379,-198],[-194,-98],[-243,-189],[-150,-95],[-235,-252],[-228,-475],[-136,-240],[-5,-9],[-292,-516],[-296,-348],[-421,-425],[-389,-476],[-582,-659],[-518,-441],[-128,-157],[-378,-39],[-138,-104],[-70,-200],[-159,-173],[-67,-103],[-38,-94],[-24,-251],[-134,-244],[-331,-348],[-229,-248],[-214,-258],[-142,-241],[-53,-91],[-53,-90],[-222,-437],[-132,-513],[-87,-395],[-31,-333],[-28,-275],[-29,-275],[-82,-395],[-133,-395],[-129,-403],[-190,-263],[-184,-279],[-252,-193],[-308,-171],[-287,-155],[-279,-110],[-358,-192],[-272,-162],[-251,-213],[-108,-134],[-54,-67],[-54,-67],[-262,-356],[-299,-267],[-445,-275],[-427,-131],[-323,-117],[-318,-108],[-126,-39],[-126,-39],[-195,55],[-180,178],[-246,472],[-282,535],[-261,503],[-400,643],[-527,741],[-206,308],[-234,314],[-268,410],[-224,338],[-314,458],[-129,126],[-88,35],[-129,-10],[-146,-15],[-152,-50],[-192,-99],[-185,-93],[-253,-116],[-366,-89],[-215,-35],[-102,11],[-167,17],[-145,49],[-123,43],[-264,104],[-383,184],[-162,100],[-161,109],[-251,199],[-109,65],[-155,110],[-188,154],[-283,306],[-126,192],[-218,268],[-96,85],[-122,20],[-300,-35],[-366,-75],[-277,-59],[-284,20],[-231,59],[-347,165],[-333,174],[-371,99]],[[689476,645508],[-148,230],[-148,230],[-52,63],[-90,126],[-19,28],[0,30],[-3,21],[29,44],[24,31],[4,36],[-1,30],[-20,34],[-30,90],[-13,75],[-36,67],[-45,50],[-48,35],[-49,-5],[-30,12],[-8,45],[25,44],[24,43],[53,67],[7,80],[-41,107],[-141,189],[-97,120],[-163,164],[-57,34],[-26,45],[-61,-17],[-76,59],[-67,53],[-41,81],[-29,58],[-14,37],[-6,27],[-9,41],[-27,77],[-24,37],[-31,11],[-55,8],[-31,0],[-27,3],[-21,3],[-19,19],[-23,16],[-54,27],[-50,-2],[-43,7],[-46,33],[-22,32],[-19,65],[3,42],[18,32],[47,43],[54,37],[39,23],[24,13],[39,19],[30,58],[28,56],[21,67],[21,84],[8,95],[16,83],[10,63],[-1,28],[0,30],[-7,40],[0,49],[20,62],[13,65],[0,42],[-12,71],[-14,79],[-9,86],[5,92],[2,42],[-2,90],[-2,89],[-14,57],[-39,43],[-39,42],[-94,119],[-94,120],[-71,87],[-39,36],[-8,48],[-4,65],[-7,22],[-23,6],[-34,-25],[-21,3],[-20,10],[-7,20],[-7,34],[-10,30],[-16,15],[-38,-8],[-53,36],[-35,41],[-54,76],[-81,99],[-47,83],[-31,77],[1,39],[-2,64],[-6,49],[-15,19],[-22,11],[-43,4],[-41,27],[-56,33],[-43,34],[-7,27],[-4,14],[-7,5],[-9,0],[-19,-13],[-8,2],[-7,8],[-7,1],[-9,-2],[-12,-6],[-12,-22],[-15,-24],[-17,-22],[-26,-10],[-17,27],[-23,24],[-16,19],[2,29],[20,23],[19,43],[4,36],[-9,18],[-16,30],[-8,32],[-10,18],[-12,2],[-18,2],[-25,-18],[-26,-7],[-26,10],[-23,33],[-35,60],[-55,64],[-9,37],[14,13],[-15,31],[-25,-22],[-18,8],[6,73],[-30,94],[-50,1],[-16,19],[12,45],[-22,-3],[-11,63],[-32,15],[-39,-25],[-27,24],[-21,5],[-16,-7],[-17,-20],[-23,3],[-13,27],[-19,-11],[-19,-11],[-27,3],[-8,23],[-5,18],[19,51],[20,74],[-1,34],[-27,8],[-25,25],[-21,50],[-44,63],[-19,57],[-23,35],[-37,7],[-40,-15],[-63,-48],[-23,7],[-23,6],[-33,47],[-26,0],[-40,-38],[-10,-31],[-21,8],[-19,40],[-32,19],[-38,12],[-28,-2],[-16,34],[-32,8],[-14,6],[-24,11],[-7,32],[5,23],[23,42],[11,60],[13,36],[-6,43],[-8,33],[-15,38],[-26,27],[-30,12],[-21,14],[-12,12],[1,20],[11,15],[26,1],[9,25],[-1,31],[20,16],[26,29],[8,51],[-9,43],[-38,72],[-49,62],[4,49],[0,54],[17,39],[13,30],[54,36],[27,48],[8,53],[34,18],[27,54],[56,52],[43,13],[40,42],[24,33],[9,41],[2,63],[-20,138],[-9,93],[-5,72],[-3,56],[5,52],[8,38],[28,54],[19,35],[38,51],[17,29],[22,69],[0,64],[2,48],[-6,54],[-22,64],[-2,43],[-8,40],[-22,13],[-10,21],[6,26],[6,32],[-1,57],[7,58],[14,55],[21,46],[34,86],[35,86],[19,60],[-1,84],[6,43],[12,82],[10,47],[10,81],[27,70],[38,62],[48,67],[28,79],[7,67],[-10,55],[-14,57],[-18,55],[-14,48],[-8,43],[-27,70],[-43,74],[-55,48],[-67,39],[-67,40],[-85,102],[-32,72],[-30,84],[-16,110],[0,103],[-30,93],[-35,61],[-22,42],[-16,22],[-11,35],[10,34],[11,33],[6,53],[0,48],[-14,57],[-34,41],[-38,24],[-55,33],[-24,23],[-13,30],[-5,66],[7,57],[-12,65],[-23,69],[-27,37],[-40,41],[-49,57],[-46,32],[-57,40],[-52,34],[-46,27],[-68,32],[-74,32],[-63,26],[-76,29],[-68,21],[-61,8],[-43,17],[-26,23],[-26,27],[-23,28],[-39,62],[-23,74],[4,36],[3,35],[6,38],[6,37],[-4,26],[-4,25],[-33,28],[-42,41],[-21,59],[-21,58],[-42,117],[-38,134],[-31,74],[-48,77],[-56,62],[-50,53],[-24,19],[-48,46],[-51,63],[-36,53],[-28,27],[-59,36],[-32,26],[-28,24],[-54,29],[-46,30],[-45,30],[-48,20],[-45,36],[-62,42],[-40,36],[-29,50],[-46,77],[-22,79],[-15,51],[-9,61],[3,58],[9,61],[15,58],[43,55],[19,17],[6,50],[-7,31],[-27,7],[-14,21],[-1,50],[14,23],[15,28],[-2,43],[-3,43],[2,64],[7,56],[-2,62],[6,90],[3,45],[17,51],[28,97],[4,81],[26,73],[2,91],[3,114],[11,58],[28,54],[17,43],[8,54],[1,42],[4,31],[11,18],[23,21],[34,13],[39,33],[34,11],[50,26],[55,45],[72,59],[62,57],[64,51],[58,26],[47,18],[46,6],[70,14],[46,29],[31,33],[10,59],[-7,75],[-24,95],[-3,60],[30,36],[24,-24],[15,-26],[34,21],[16,60],[19,60],[42,43],[59,60],[54,43],[48,29],[49,43],[58,40],[51,39],[46,45],[51,22],[63,21],[37,43],[28,113],[18,122],[-10,115],[-6,98],[6,98],[21,127],[27,57],[38,105],[45,67],[34,46],[34,40],[19,62],[35,86],[25,57],[14,37],[10,65],[-5,38],[25,19],[36,37],[17,30],[23,33],[13,12],[13,12],[43,-7],[-52,76],[30,11],[21,7],[6,-21],[-7,-25],[19,-9],[14,1],[34,17],[23,18],[35,2],[62,29],[60,45],[26,14],[89,70],[65,91],[28,59],[26,32],[34,9],[53,46],[31,35],[37,46],[32,38],[49,53],[36,21],[78,67],[44,43],[45,48],[35,65],[36,96],[34,62],[68,86],[92,117],[119,146],[120,146],[113,120],[74,79],[40,21],[30,34],[17,41],[8,53],[12,85],[14,32],[35,81],[62,119],[49,94],[82,123],[57,84],[42,82],[42,82],[34,81],[33,81],[44,112],[26,130],[6,158],[-4,147],[-3,96],[-6,166],[-11,203],[-153,1491],[78,-274],[51,-180],[103,-367],[843,-2977],[163,-575],[57,87],[68,73],[48,57],[86,103],[73,122],[71,105],[47,69],[12,40],[11,40],[7,69],[13,116],[-4,93],[-6,120],[15,75],[30,43],[75,62],[115,62],[99,60],[67,36],[84,5],[95,26],[101,12],[127,22],[122,-8],[135,-11],[103,-6],[92,-6],[51,-4],[58,16],[44,11],[53,25],[42,16],[62,5],[88,-14],[62,-31],[54,8],[46,9],[41,5],[52,0],[69,-13],[38,-9],[46,-15],[84,-33],[30,8],[21,30],[25,47],[8,85],[9,165],[2,56],[0,57],[4,21],[33,42],[46,52],[49,47],[58,46],[97,81],[89,75],[85,59],[75,56],[70,58],[37,50],[26,115],[6,39],[13,67],[13,75],[11,83],[13,36],[14,34],[19,30],[23,25],[30,28],[36,36],[29,24],[32,21],[62,32],[49,19],[37,15],[31,6],[42,7],[35,-9],[38,-2],[27,-2],[32,-12],[44,-9],[41,-13],[32,-12],[36,-13],[53,-14],[72,-11],[62,-3],[79,2],[83,8],[69,9],[82,16],[100,-11],[75,0],[155,-34],[40,7],[52,2],[23,20],[31,35],[34,73],[9,56],[6,94],[7,22],[7,45],[10,48],[9,22],[-1,14],[-13,25],[-5,21],[-6,27],[-2,28],[1,40],[3,67],[10,61],[28,77],[18,82],[1,68],[-3,46],[-22,52],[0,67],[17,52],[21,25],[25,27],[47,60],[23,42],[26,67],[23,63],[46,34],[34,10],[46,-5],[85,-23],[99,-43],[91,-34],[73,-28],[24,-9],[28,-13],[48,-7],[58,-6],[58,23],[77,68],[64,62],[55,79],[18,45],[9,90],[-5,135],[-16,111],[-26,163],[-8,136],[7,43],[3,22],[3,22],[10,43],[-7,55],[-25,48],[-4,64],[28,28],[17,25],[-8,30],[-10,35],[0,46],[31,71],[27,30],[36,20],[53,29],[50,43],[56,51],[71,-2],[75,-48],[45,-72],[7,-60],[9,-74],[2,-86],[15,-30],[22,-21],[36,-12],[64,-13],[66,26],[31,60],[20,35],[35,6],[31,21],[34,30],[27,43],[10,24],[10,19],[9,35],[17,39],[24,23],[34,-2],[22,0],[17,0],[10,10],[3,19],[-4,15],[-10,9],[-6,17],[1,28],[9,44],[11,21],[21,7],[8,-3],[12,2],[4,6],[8,10],[14,4],[10,8],[11,37],[18,17],[23,20],[29,62],[21,60],[33,40],[31,40],[55,66],[18,15],[17,15],[72,78],[42,36],[50,56],[45,69],[40,68],[29,33],[29,25],[40,37],[36,23],[39,10],[49,11],[33,7],[25,3],[45,13],[31,8],[25,8],[25,20],[28,17],[27,40],[11,40],[8,58],[-8,73],[-8,90],[-2,81],[8,48],[16,35],[28,17],[41,7],[49,-1],[40,-8],[12,3],[11,3],[10,7],[9,5],[15,23],[25,19],[1,23],[-13,26],[-2,48],[34,96],[42,70],[43,83],[37,83],[43,51],[65,30],[56,24],[36,21],[35,9],[9,17],[9,17],[12,74],[28,40],[5,31],[-10,26],[-13,15],[-4,18],[5,9],[19,19],[17,11],[21,16],[20,33],[23,17],[24,34],[28,27],[22,17],[20,15],[23,21],[22,37],[13,25],[10,15],[14,18],[27,7],[19,-6],[23,-7],[54,-7],[50,1],[35,15],[19,20],[21,49],[10,48],[9,42],[8,50],[8,35],[10,23],[11,13],[17,2],[10,-7],[10,-2],[23,17],[11,22],[7,21],[7,22],[14,12],[14,-1],[18,-12],[15,-16],[10,-3],[9,9],[12,15],[9,8],[13,6],[8,-8],[8,-12],[16,-10],[28,-7],[29,-8],[40,-7],[29,2],[28,-1],[25,-7],[30,2],[31,22],[35,16],[36,2],[36,-3],[30,-12],[34,-15],[29,-11],[24,-4],[19,11],[24,13],[29,17],[31,17],[20,13],[25,3],[14,-21],[18,-36],[16,-16],[23,6],[25,-11],[20,-20],[24,-6],[15,-6],[17,-32],[48,-38],[41,-9],[33,-7],[33,-7],[44,0],[54,-2],[48,-3],[28,-11],[30,-18],[40,-32],[41,-7],[52,-9],[42,-9],[15,14],[-3,27],[-15,28],[-11,34],[-13,72],[-10,48],[-13,43],[-13,39],[-10,35],[-10,35],[-13,27],[-10,9],[-10,7],[-8,-5],[-10,2],[-2,9],[-7,34],[-1,14],[-1,15],[4,21],[12,36],[10,13],[11,12],[16,13],[13,2],[9,6],[8,11],[2,16],[-1,16],[0,20],[4,17],[6,15],[8,7],[19,26],[2,9],[-2,9],[-14,8],[-13,9],[-23,21],[-12,35],[-12,29],[-9,51],[-17,36],[-15,58],[-10,62],[-13,15],[-21,-6],[-26,2],[7,34],[-8,23],[-16,18],[-4,90],[-9,83],[-5,51],[-8,45],[-4,35],[-6,32],[-16,33],[-17,17],[-19,14],[-19,2],[-15,20],[-27,10],[-30,41],[-14,40],[-2,27],[-1,30],[8,18],[11,-1],[13,8],[14,22],[7,30],[-1,36],[12,34],[17,46],[14,10],[28,11],[17,36],[-7,31],[6,21],[17,19],[0,25],[11,23],[41,7],[23,18],[3,45],[19,44],[21,16],[30,76],[10,34],[10,33],[0,54],[10,42],[17,11],[15,66],[11,66],[15,29],[36,5],[55,-4],[23,-7],[26,-5],[38,-16],[19,-24],[8,-40],[19,-23],[19,4],[27,35],[15,69],[-2,31],[-13,14],[-39,14],[-20,22],[-7,14],[-11,59],[16,19],[19,2],[27,-9],[35,-14],[74,-36],[71,-32],[31,-34],[21,-48],[8,-48],[-2,-54],[10,-30],[17,-25],[37,-30],[47,-54],[44,-62],[39,-95],[32,-89],[26,-69],[19,-68],[29,-77],[6,-31],[7,-31],[10,-11],[13,-2],[9,12],[25,58],[26,58],[4,30],[27,23],[20,-7],[20,19],[45,50],[29,24],[34,28],[27,7],[12,11],[16,43],[13,23],[36,15],[11,23],[0,58],[9,46],[8,46],[11,23],[11,3],[6,14],[7,15],[9,28],[4,26],[6,59],[1,43],[8,42],[10,51],[14,26],[11,17],[24,35],[30,40],[31,33],[20,24],[7,27],[2,31],[-9,9],[-10,8],[-10,7],[-4,32],[0,61],[5,35],[22,39],[16,55],[8,67],[-10,25],[12,39],[15,46],[30,31],[19,18],[36,36],[49,31],[19,2],[19,3],[34,-19],[48,-45],[39,-64],[22,-49],[10,-42],[12,-48],[17,-41],[18,-31],[25,-22],[16,-4],[16,-4],[67,-13],[66,-10],[20,16],[12,29],[10,36],[18,55],[21,24],[28,18],[34,15],[39,-1],[37,-4],[32,-16],[34,-14],[44,-32],[34,-18],[29,7],[50,42],[49,57],[16,24],[21,36],[26,16],[49,21],[59,22],[90,40],[50,15],[33,-5],[33,-5],[58,0],[28,-3],[30,5],[25,7],[24,29],[6,28],[10,16],[14,17],[18,6],[16,28],[16,25],[18,33],[26,37],[14,35],[18,16],[24,6],[42,-7],[48,-18],[28,-10],[31,-6],[53,-3],[59,-14],[26,-9],[20,-17],[18,-16],[24,-31],[46,-70],[51,-83],[19,-35],[42,-75],[40,-74],[27,-49],[13,-4],[14,-3],[17,0],[16,3],[28,9],[39,24],[19,9],[19,10],[20,14],[20,14],[24,42],[25,72],[6,48],[1,10],[2,10],[2,31],[17,15],[11,-2],[9,-2],[23,-12],[16,-16],[16,-15],[25,-19],[6,-5],[4,-4],[66,-55],[-4,-23],[-4,-23],[-1,-46],[0,-4],[9,-102],[1,-4],[13,-104],[20,-102],[18,-84],[2,-98],[-21,-85],[-28,-77],[-23,-81],[-15,-54],[-3,-10],[-19,-72],[-2,-69],[6,-57],[14,-70],[38,-99],[2,-4],[39,-81],[42,-69],[34,29],[31,28],[3,2],[52,45],[64,79],[37,53],[21,38],[19,56],[5,41],[25,80],[9,45],[5,45],[-4,37],[-10,56],[-3,55],[4,53],[19,52],[56,71],[52,63],[51,72],[5,8],[30,50],[35,74],[50,168],[80,-59],[62,-40],[71,-58],[27,-17],[28,-18],[66,-62],[13,-13],[3,-3],[67,-60],[47,-55],[2,-2],[44,-71],[52,-118],[37,-86],[37,-85],[44,-75],[40,-29],[52,-16],[71,-23],[55,-21],[56,-21]],[[688620,313247],[70,-211],[25,-77],[47,-142],[380,-1145],[324,-976],[510,-1538],[933,-2814],[178,-537],[829,-2502],[791,-2383],[995,-3003],[903,-2724],[798,-2407],[878,-2646],[698,-2106],[519,-1567],[2980,-8985],[232,-700],[449,-1050],[449,-1051]],[[701608,274683],[-4492,-5226],[-1538,-1790],[-381,-443],[-723,-841],[-974,-1134],[-889,-1033],[-37,-99],[-5362,-14086],[-4589,-12057],[-4,-10],[-52,-139],[-1265,-3324],[-89,-232],[-55,-144],[-894,-2350],[-774,-2034],[-9,-17],[-526,-532],[-1938,-1957],[-6967,-7035]],[[670050,220200],[206,-888],[2034,-8756],[251,-1079],[14,-61],[1154,-4967],[14,-58],[355,-1529],[-588,-690],[-296,-346],[-503,-589],[-1120,-1312],[709,-1240],[194,-338],[166,-291],[623,-1089],[346,-676],[7,-13],[1076,-1904],[-3,-110],[17,-89],[-5,-96],[83,-117]],[[674784,193962],[-3161,-3669],[-7969,-9764],[-293,-360],[-217,-265],[105,-73],[105,-74],[261,-269],[317,-531],[282,-605],[213,-568],[289,-815],[163,-629],[69,-384],[50,-283],[60,-341],[25,-663],[-2,-44],[-32,-709],[-66,-526],[-115,-493],[-1,-3],[-160,-535],[-214,-587],[-116,-223],[-116,-222],[-208,-249],[-209,-248],[-119,-194],[-211,-388],[-188,-228],[-226,-94],[-84,-19],[-292,-66],[-302,-29],[-297,97],[-122,-190],[-1,-2],[-12,-3],[-170,-53],[-326,123],[-76,-246],[-1,-1],[-91,-74],[-316,46],[-6,-478],[-1,-26],[0,-32],[-26,-1891],[-29,-2117]],[[660948,164965],[-775,63],[-2155,176],[-1693,138],[-267,22],[-916,70],[-8693,659],[-2311,122],[-1637,86],[-3383,-15],[-1452,-56]],[[637666,166230],[439,3703],[618,5225],[127,1073],[85,723],[-234,271],[-235,328],[-124,213],[-156,552],[-138,141],[-96,166],[-66,261],[-83,130],[-107,182],[-112,337],[-40,272],[-41,177],[-158,299],[-111,237],[-159,417],[-155,359],[-152,240],[-94,493],[-30,423],[13,500],[26,154],[43,268],[156,437],[45,129],[38,386],[17,261],[69,266],[128,319],[102,154],[76,115],[87,84],[80,51],[145,382],[65,258],[16,90],[11,66],[12,67],[5,30],[3,20],[2,12],[2,9],[83,478],[2,14],[0,2],[18,100],[42,246],[99,572],[4,23],[5,25],[125,728],[5,24],[4,25],[76,440],[18,102],[15,87],[15,86],[7,40],[3,21],[4,21],[10,59],[85,490],[9,53],[8,49],[94,542],[326,1883],[103,595],[379,2191],[15,89],[5,26],[3,20],[1,7],[17,96],[710,4103],[22,131],[6,35],[6,35],[15,82],[195,1128],[12,68],[3,22],[5,25],[9,55],[75,431],[19,114],[101,580],[24,139],[5,30],[5,27],[13,79],[342,1978],[-1724,497],[-43,13],[-5,1],[-5,2],[-22,6],[-2142,618],[-2264,654],[-8,2],[-14,4],[-12266,3541],[-2021,584]],[[620418,210628],[12,198],[117,1812],[497,7721],[11,174],[11,175],[606,9414],[9,136],[100,1553],[17,263],[844,13112]],[[622642,245186],[48,-65],[48,-65],[137,-183],[137,-184],[231,-323],[162,-210],[243,-122],[434,9],[276,27],[277,27],[223,31],[171,11],[162,-59],[166,-7],[212,-4],[342,-17],[52,-30],[335,-188],[378,-247],[224,-146],[521,-314],[295,-166],[129,-88],[139,-69],[116,-48],[69,-21],[376,196],[269,31],[157,52],[71,34],[139,73],[93,82],[87,90],[37,75],[27,103],[27,104],[69,147],[194,279],[615,998],[153,240],[148,172],[71,45],[105,31],[105,21],[136,-7],[139,-48],[114,-55],[83,-76],[79,-100],[228,-303],[256,-378],[100,-131],[156,-67],[122,19],[187,48],[105,110],[132,131],[119,83],[200,96],[206,186],[146,89],[164,110],[96,248],[633,2249],[89,262],[61,144],[113,148],[148,141],[173,107],[142,43],[161,-19],[126,-31],[187,-79],[168,-93],[126,-96],[105,-117],[91,-28],[91,31],[107,103],[92,121],[66,65],[1732,963],[240,140],[166,87],[101,14],[89,-28],[52,-19],[52,-18],[121,-93],[101,-121],[91,-113],[1349,-1287],[368,-350],[118,-100],[98,-66],[94,-32],[61,-5],[73,37],[46,43],[46,43],[286,337],[102,121],[381,408],[281,341],[100,142],[88,75],[204,175],[105,158],[89,208],[-6,525],[-44,233],[-33,225],[11,208],[-39,208],[53,213],[-20,179],[-11,250],[72,175],[91,64],[91,65],[218,121],[13,19],[5,8],[73,114],[116,67],[122,-100],[94,-113],[47,-162],[30,-150],[102,-21],[37,-54],[38,-54],[58,-221],[29,-9],[48,-16],[218,79],[47,17],[69,67],[16,79],[45,158],[99,179],[32,64],[308,602],[44,92],[41,58],[41,59],[97,106],[83,10],[135,13],[260,-42],[25,-3],[826,-98],[479,-111],[152,21],[148,124],[21,17],[684,750],[183,187],[71,154],[-11,163],[174,204],[174,29],[28,69],[-9,56],[69,37],[61,0],[86,-195],[41,-65],[39,25],[4,48],[48,37],[57,-18],[65,-57],[52,30],[47,60],[-43,50],[-18,64],[-29,69],[40,69],[166,75],[91,-42],[193,25],[92,13],[38,-54],[61,-5],[50,92],[48,106],[3,50],[56,44],[64,4],[44,81],[23,48],[54,25],[15,-27],[-5,-29],[34,-23],[21,10],[24,63],[35,25],[60,-18],[248,103],[39,56],[29,134],[74,225],[75,187],[18,110],[12,117],[165,435],[59,167],[8,34],[2,62],[-7,88],[-15,125],[-22,109],[-19,66],[-23,55],[-25,54],[-12,43],[2,63],[9,99],[5,89],[0,91],[-6,85],[-6,157],[-6,54],[-15,53],[-29,53],[-17,41],[-3,34],[4,85],[1,83],[-15,90],[-20,65],[-3,64],[35,99],[34,56],[54,85],[32,68],[20,93],[9,82],[-1,165],[14,44],[30,55],[39,90],[10,61],[-2,46],[10,42],[26,73],[24,74],[16,81],[15,111],[13,135],[64,94],[82,88],[55,6],[53,-9],[72,97],[80,88],[296,492],[368,598],[311,530],[68,155],[49,187],[55,263],[93,441],[335,1592],[190,1099],[1024,7407],[612,3742],[456,1501],[94,312],[103,251],[337,823],[150,367],[2195,3887],[1495,2135],[1670,1752],[636,611],[636,612],[704,647],[703,646],[1074,987],[716,575],[655,247],[164,26],[570,89],[693,61],[173,-24],[123,-33],[54,-33],[79,-66],[82,-48],[115,-51],[117,-39],[66,-30],[67,-78],[42,-90],[38,-92],[22,-114],[6,-129],[-12,-117],[-18,-75],[0,-66],[21,-68],[29,-43],[39,-24],[40,-24],[84,-42],[53,-21],[346,6],[513,-57],[159,-9],[90,-9],[57,-33],[26,-63],[26,-75],[44,-36],[59,-18],[80,42],[69,61],[42,86],[48,27],[31,-30],[31,-29],[37,-34],[52,12],[60,45],[101,39],[106,37],[81,14],[40,-39],[10,-72],[-8,-90],[-6,-87],[10,-90],[16,-105],[18,-90],[39,-75],[72,-114],[64,-41],[137,-10],[304,21],[68,39],[59,39],[52,54],[38,75],[67,162],[44,105],[56,27],[41,21],[54,-6],[43,-5],[35,32],[43,141],[26,126],[30,102],[36,93],[75,114],[120,138],[169,216],[97,66],[103,6],[88,-21],[147,-246],[56,-72],[28,-25],[25,-32],[36,-39],[32,-9],[32,30],[22,42],[-10,54],[-28,135],[12,239],[8,273],[16,141],[33,57],[66,33],[80,-27],[57,-99],[118,-60],[77,-27],[159,-18],[119,-45],[68,-72],[93,-156],[72,-143],[47,-59],[19,-13],[20,-12],[49,18],[56,78],[44,114],[24,100],[65,88],[96,21],[91,0],[60,57],[21,90],[28,210],[66,294],[-2,102],[-24,72],[-50,30],[-55,9],[-74,-45],[-250,-81],[-68,3],[-37,44],[15,85],[38,96],[58,117],[53,159],[64,33],[91,21],[151,33],[209,45],[300,66],[80,24],[48,48],[20,69],[-6,78],[-56,90],[-88,117],[-103,78],[-71,69],[-43,77],[-41,100],[-84,168],[-75,165],[-60,78],[-63,27],[-56,-18],[-70,-93],[-63,-18],[-34,-24],[-89,-18],[-64,63],[-60,66],[-55,21],[-46,-9],[-38,-126],[-39,-118],[-44,-41],[-60,42],[-40,78],[-4,93],[32,87],[40,60],[12,81],[20,66],[67,42],[78,42],[12,45],[-38,78],[-58,111],[-93,75],[-64,47],[-18,72],[20,96],[8,42],[51,67],[118,74],[92,141],[63,24],[32,-15],[12,-49],[-10,-134],[16,-138],[103,-96],[243,-48],[144,-16],[122,40],[88,90],[39,132],[16,174],[16,126],[56,78],[111,-6],[112,-30],[179,-18],[250,84],[191,132],[207,126],[123,108],[60,132],[71,114],[84,6],[155,-51],[127,-9],[123,60],[64,66],[8,138],[1,96],[-46,97],[-61,76],[-96,32],[-91,13],[-79,-29],[-54,-3],[-87,35],[-95,75],[-51,60],[-24,67],[-7,70],[-9,65],[0,54],[24,64],[71,0],[64,-3],[81,-26],[47,-11],[42,0],[30,46],[43,272],[5,177],[-14,81],[-27,140],[-103,450],[-40,257],[3,100],[1,54],[26,60],[9,20],[51,42],[47,-14],[59,-72],[46,-119],[23,-105],[16,-212],[36,-163],[34,-135],[46,-99],[46,-67],[57,-71],[35,-24],[35,-23],[13,-6],[15,-8],[12,-5],[29,-14],[80,-11],[103,33],[100,63],[190,213],[108,157],[72,66],[55,33],[59,23],[47,38],[78,14],[72,-11],[63,-34],[48,23],[72,49],[54,72],[44,72],[31,91],[51,77],[39,31],[48,1],[47,1],[77,0],[59,-41],[51,-58],[14,-77],[39,-169],[9,-81],[9,-81],[11,-172],[-18,-113],[-35,-138],[-16,-58],[-26,-85],[-16,-72],[5,-74],[18,-67],[55,-71],[35,-17],[29,0],[55,102],[106,108],[62,171],[22,119],[-5,93],[-22,114],[-48,143],[-16,91],[13,64],[36,66],[50,25],[64,-25],[91,-25],[81,-55],[84,-89],[93,-80],[35,-58],[11,-77],[-29,-94],[-57,-110],[0,-88],[13,-45],[38,6],[51,77],[52,144],[78,201],[147,290],[60,174],[24,196],[22,121],[9,122],[-2,160],[-29,140],[-73,152],[-44,80],[-44,97],[-33,105],[-20,118],[-9,105],[12,89],[39,74],[51,77],[49,43],[169,81],[104,56],[36,16],[35,17],[15,27],[10,57],[17,103],[26,144],[33,119],[49,110],[48,55],[71,17],[55,-14],[101,-39],[97,22],[151,75],[126,100],[156,123],[59,100],[51,83],[35,107],[11,99],[-11,108],[-30,130],[-40,74],[6,71],[47,62],[84,36],[57,-47],[38,-58],[32,-133],[98,-71],[66,-39],[66,-39],[51,-74],[44,-83],[33,-127],[15,-102],[45,-36],[48,11],[42,22],[17,66],[7,69],[26,94],[25,89],[50,90],[228,169],[172,94],[57,77],[27,72],[-3,63],[-52,97],[-33,41],[-54,14],[-46,-3],[-39,-49],[-9,-61],[-66,-146],[-71,-72],[-53,-3],[-30,104],[-19,73],[-28,83],[-38,46],[-29,47],[-17,78],[4,47],[18,77],[16,63],[17,72],[22,243],[13,132],[16,171],[20,149],[22,133],[46,55],[77,39],[71,36],[66,44],[35,80],[22,132],[29,86],[51,44],[83,36],[82,38],[47,53],[39,105],[22,96],[31,33],[60,47],[55,14],[31,-25],[35,-60],[38,-42],[46,-33],[71,-3],[34,-11],[34,-11],[62,-38],[39,-56],[22,-69],[2,-69],[36,-46],[59,-28],[42,39],[44,16],[38,-16],[22,-50],[-3,-73],[-17,-73],[15,-67],[31,-85],[50,-23],[54,15],[49,69],[26,96],[46,44],[66,138],[36,125],[15,143],[-2,138],[-9,108],[-9,63],[-15,119],[35,60],[33,25],[34,-41],[48,-102],[49,-102],[63,-36],[42,38],[42,58],[9,86],[-13,91],[-29,83],[-62,135],[-19,41],[6,57],[24,43],[36,14],[54,-21],[41,-62],[50,-144],[55,-60],[45,16],[46,69],[15,77],[-2,100],[-13,102],[-51,174],[-77,171],[-70,83],[-42,77],[-12,113],[11,91],[86,66],[128,61],[80,22],[48,-41],[53,-83],[45,-152],[33,-108],[44,-49],[31,25],[13,80],[-16,118],[-50,138],[-42,136],[-16,149],[14,132],[4,80],[53,102],[55,25],[64,22],[53,6],[71,5],[64,33],[39,53],[14,63],[-27,53],[-95,124],[-73,94],[-27,107],[-8,83],[7,72],[35,107],[7,83],[15,102],[40,86],[44,30],[35,-14],[44,-66],[36,-94],[92,-91],[60,-52],[81,-36],[33,33],[7,55],[-20,72],[-51,124],[-41,163],[-9,174],[-5,146],[31,290],[27,232],[6,231],[-9,166],[3,91],[39,88],[69,31],[79,38],[86,122],[14,52],[-23,44],[-66,20],[-62,-33],[-41,41],[-51,157],[-24,130],[-56,138],[-72,91],[-47,55],[-4,59],[9,49],[11,32],[24,20],[18,94],[2,77],[-55,89],[-35,47],[-14,19],[-13,58],[15,88],[38,99],[57,80],[64,58],[34,16],[57,26],[61,39],[38,24],[108,6],[59,-33],[33,-50],[5,-99],[-15,-108],[-1,-47],[6,-31],[5,-19],[23,-21],[19,-17],[93,72],[73,159],[66,75],[101,42],[69,-20],[20,-58],[63,-20],[30,-63],[64,50],[22,97],[-47,160],[-29,210],[-2,148],[210,111],[116,78],[116,78]],[[687492,312174],[102,29],[-88,101],[-84,91],[-58,79],[4,49],[30,45],[57,42],[178,85],[49,29],[56,11],[31,25],[19,50],[-2,82],[-32,52],[-57,7],[-49,28],[-32,52],[-31,116],[-2,59],[16,60],[22,67],[40,39],[35,-7],[36,6],[30,16],[108,139],[39,60],[-11,72],[-33,51],[-36,9],[-69,-21],[-64,-43],[-59,-7],[-43,42],[-3,65],[22,79],[77,73],[50,48],[63,31],[62,22],[69,-33],[99,-65],[124,-115],[110,-64],[99,-34],[84,29],[70,47],[77,45],[56,43],[37,-9],[27,-38],[18,-63],[7,-32],[-10,-47],[-60,-91],[-42,-47],[-30,-90],[-2,-101],[11,-47],[11,-48]],[[468160,445644],[-75,58],[-74,46],[-48,20],[-31,7],[-38,-3],[-29,-4],[-16,-5],[-10,-8],[-25,-29],[-11,-20],[-7,-17],[-3,-22],[4,-16],[11,-23],[6,-23],[2,-51],[-4,-55],[-8,-92],[-15,-145],[-12,-79],[-2,-14],[0,-3],[-7,-48],[-33,-86],[-63,-49],[-45,-86],[-45,-185],[-74,-315],[-72,-375],[-51,-279],[-51,-212],[-51,-190],[-43,-132],[-63,-88],[-56,-49],[-62,-26],[-72,20],[-36,44],[-28,33],[-5,7],[-4,4],[-55,39],[-144,72],[-149,40],[-109,14],[-48,-12],[-58,-69],[-40,-59],[-23,-68],[-14,-50],[-37,-139],[-27,-150],[-63,-197],[-87,-168],[-26,-32],[-24,-28],[-48,-43],[-87,-69],[-84,-4],[-74,27],[-64,45],[-87,52],[-83,24],[-72,12],[-27,-3],[-73,-10],[-77,-58],[-415,-360],[-6,-6],[-108,-84],[-250,-195],[-196,-153],[-61,-48],[-80,-55],[-146,-101],[-181,-125],[-199,-147],[-168,-144],[-175,-169],[-200,-161],[-2,-1],[-9,-8],[-146,-84],[-10,-6],[-180,-79],[-90,-43],[-309,-110],[-284,-109],[-136,-79],[-28,-16],[-187,-135],[-197,-166],[-45,-54],[-89,-106],[-65,-101],[-73,-173],[-75,-214],[-81,-166],[-154,-237],[-126,-168],[-92,-140],[-103,-160],[-101,-154],[0,-1],[-419,-646],[-57,-87],[-236,-364],[-894,-1375],[-11,-17],[-163,-251],[-70,-109],[-1175,-1790],[-659,-1004],[-40,-62],[12,-40],[3,-9],[6,-58],[2,-15],[1,-87],[145,-194],[82,-166],[39,-198],[1,-199],[2,-204],[0,-20],[-27,-518],[6,-157],[55,-142],[119,-217],[107,-232],[138,-239],[92,-171],[39,-134],[0,-236],[-19,-213],[-80,-263],[-107,-167],[-145,-160],[-82,-161],[-12,-164],[12,-250],[71,-385],[114,-411],[85,-252],[11,-31],[10,-25],[23,-63],[42,-79],[82,-121],[22,-68],[16,-80],[13,-93],[21,-99],[3,-145],[-14,-94],[1,-71],[14,-70],[90,-212],[24,-60],[33,-89],[28,-100],[7,-50],[2,-35],[-2,-48],[-15,-75],[-180,-303],[-19,-33],[-155,-270],[-152,-238],[-73,-86],[-96,-115],[-212,-253],[-245,-276],[-261,-119],[-98,33],[-87,-53],[-89,18],[-109,60],[-63,123],[-36,71],[-40,31],[-58,39],[-61,-2],[-153,-41],[-162,20],[-69,29],[-29,74],[-98,303],[-93,54],[-98,-10],[-92,-72],[-79,-49],[-79,-21],[-51,-420],[-67,-542],[-1,-272],[127,-599],[-11,-121],[-16,-162],[-60,-209],[-162,-631],[-243,-735],[-79,-107],[-73,-49],[-139,4],[-187,-53],[-112,-12],[-78,-62],[-49,-57],[-36,-148],[19,-172],[-27,-217],[-65,-201],[-38,-128],[19,-181],[62,-278],[-2,-426],[-21,-121],[-24,-135],[-89,-207],[-142,-242],[-119,-157],[-218,-191],[-35,-30],[-3,-2],[-32,-29],[-90,-79],[-176,-160],[-63,-21],[-59,34],[-136,149],[-70,41],[-84,51],[-199,22],[-23,2],[-177,68],[-110,62],[-89,108],[-78,130],[-54,71],[-53,37],[-67,13],[-91,3],[-65,7],[-146,16],[-176,58],[-12,6],[-104,48],[-86,41],[-135,67],[-114,62],[-115,45],[-82,23],[-195,62],[-66,27],[-44,39],[-76,86],[-148,281],[-60,113],[-36,106],[-32,162],[20,201],[-7,70],[-13,70],[-89,163],[-175,205],[-37,29],[-54,4],[-75,-23],[-97,-16],[-106,9],[-100,43],[-99,71],[-324,271],[-56,39],[-65,-8],[-41,-25],[-139,-466],[-180,-543],[-205,-621],[-91,-496],[-78,-336],[-51,-297],[-45,-157],[-105,-79],[-151,-53],[-274,-78],[-396,-28],[-473,0],[-139,-52],[-827,-314],[-60,-78],[-44,-56],[-4,-155],[-4,-154],[34,-116],[1,-4],[81,-269],[89,-397],[-5,-341],[-6,-341],[37,-317],[21,-365],[37,-238],[68,-222],[169,-262],[121,-226],[14,-28],[53,-99],[-15,-258],[-40,-223],[-43,-144],[-134,-31],[-182,31],[-243,265],[-185,-24],[-122,-16],[-54,-138],[-76,-194],[-149,-237],[-191,-117],[-337,-7],[-176,-134],[-143,-309],[-178,-432],[-83,-305],[6,-215],[217,-473],[78,-234],[-21,-235],[-98,-392],[-113,-405],[-408,-383],[-291,-73],[-311,-254],[-250,-344],[-145,-117],[-149,14],[-234,173],[-279,94],[-327,-55],[-186,-117],[-109,-133],[-235,-362],[-350,-356],[-305,-192],[-382,-141],[-313,-45],[-279,34],[-343,254],[-297,176],[-183,0],[-145,-47],[-182,-70],[-161,-152],[-128,52],[-132,49],[-37,13],[-183,68],[-324,122],[-13,5],[-112,23],[-83,-36],[-62,-94],[-43,-134],[-61,-287],[-72,-399],[-1,-6],[-4,-22],[-23,13],[-38,82],[-1804,3954]],[[434428,409784],[37,-5],[31,-5],[32,-8],[36,-3],[14,7],[13,13],[7,10],[8,14],[9,23],[2,9],[3,16],[0,2],[1,49],[0,92],[6,70],[17,43],[12,19],[2,4],[27,22],[20,22],[14,44],[5,21],[3,12],[9,19],[10,12],[10,13],[8,28],[15,29],[13,22],[10,10],[10,1],[82,10],[93,0],[15,0],[16,-6],[6,-3],[6,-2],[1,0],[21,-12],[14,0],[31,18],[20,17],[13,10],[13,5],[18,3],[5,1],[28,-17],[32,-9],[19,-20],[15,-11],[12,-13],[14,-10],[17,-14],[26,-13],[21,-6],[17,-5],[18,1],[14,13],[23,36],[19,13],[14,3],[20,5],[24,18],[13,17],[2,4],[4,7],[1,1],[3,5],[2,4],[9,15],[3,5],[13,33],[16,40],[11,45],[0,27],[-1,19],[-8,15],[-28,23],[-12,21],[-5,20],[1,17],[11,48],[30,102],[25,73],[11,28],[6,26],[6,23],[7,26],[0,18],[-2,21],[-9,34],[-10,27],[-19,34],[-22,27],[-26,26],[-14,10],[-15,12],[-50,30],[-25,12],[-31,8],[-41,1],[-32,-3],[-37,-6],[-39,-17],[-48,-27],[-55,-45],[-31,-29],[-24,-10],[-21,1],[-21,2],[-22,-3],[-22,-10],[-15,-8],[-17,-6],[-23,6],[-21,15],[-3,2],[-34,26],[-26,19],[-34,39],[-37,14],[-17,2],[-30,-9],[-45,5],[-46,15],[-52,27],[-66,31],[-45,33],[-29,28],[-20,22],[-13,20],[-22,20],[-14,16],[-14,21],[-4,26],[-4,16],[-6,7],[-11,4],[-27,0],[-31,-4],[-29,-1],[-29,5],[-25,8],[-16,14],[-14,16],[-8,20],[-9,30],[-4,24],[-3,29],[0,20],[8,21],[6,7],[3,3],[4,4],[1,2],[4,4],[29,35],[40,66],[25,59],[30,81],[23,75],[9,36],[7,46],[4,42],[0,6],[2,75],[4,90],[0,1],[5,41],[10,38],[35,102],[18,46],[2,5],[3,9],[1,4],[6,20],[13,44],[0,1],[4,23],[8,100],[4,22],[1,5],[6,27],[11,35],[36,89],[27,82],[24,75],[53,133],[20,63],[15,51],[7,31],[3,16],[-6,15],[-12,13],[-64,39],[-93,57],[-29,21],[-3,14],[3,14],[17,29],[41,44],[48,46],[69,84],[16,23],[0,31],[-31,86],[-79,146],[-20,29],[-3,30],[4,23],[20,30],[37,103],[10,34],[25,70],[24,48],[2,4],[30,45],[34,54],[34,47],[45,60],[72,113],[91,131],[62,73],[13,48],[12,89],[15,85],[17,60],[53,113],[46,144],[9,49],[-6,28],[-48,26],[-24,23],[-13,39],[-1,40],[6,96],[-7,50],[-10,74],[-3,82],[14,32],[-5,177],[-2,122],[4,70],[5,25],[9,48],[-1,44],[-2,108],[-1,96],[9,66],[13,46],[42,125],[14,67],[1,65],[12,80],[26,55],[21,81],[7,76],[-3,66],[-1,69],[9,69],[16,11],[11,5],[10,5],[2,19],[5,61],[3,84],[-5,84],[5,26],[10,24],[20,14],[50,20],[15,24],[3,23],[1,31],[-11,30],[-23,37],[-22,21],[-14,22],[-7,30],[3,74],[13,23],[23,11],[71,33],[73,1],[60,-6],[18,1],[8,15],[6,28],[0,20],[-7,32],[-11,42],[-10,45],[-5,39],[-1,29],[0,4],[8,38],[19,26],[18,20],[33,32],[13,20],[-1,39],[-15,50],[-22,43],[-21,44],[-16,33],[-8,31],[-6,42],[-6,52],[-5,95],[0,101],[11,76],[20,53],[16,49],[33,56],[34,59],[15,49],[1,33],[-5,20],[-17,15],[-47,37],[-13,15],[-2,19],[6,32],[35,62],[30,81],[24,61],[20,43],[1,35],[-5,30],[-25,24],[-38,19],[-28,16],[-10,17],[-4,25],[3,19],[11,10],[25,4],[47,1],[33,11],[29,25],[25,42],[22,53],[5,39],[1,28],[-8,27],[-18,14],[-53,8],[-23,13],[-7,14],[5,17],[8,22],[65,90],[77,100],[21,41],[11,28],[-4,26],[-9,37],[-69,80],[-45,27],[-27,47],[-24,30],[-4,36],[12,45],[10,50],[11,48],[16,53],[29,73],[6,39],[-6,44],[-23,46],[-13,32],[9,23],[16,18],[34,23],[26,38],[17,39],[18,40],[8,40],[17,42],[31,55],[29,19],[27,48],[31,25],[11,9],[5,5],[5,15],[-1,11],[0,21],[7,39],[7,39],[11,141],[3,37],[3,45],[-6,44],[-12,48],[-28,83],[-36,178],[-15,88],[4,39],[20,28],[6,62],[-10,54],[-17,71],[6,32],[35,16],[41,27],[32,20],[17,25],[0,32],[-12,23],[-22,28],[-30,15],[-34,21],[-21,46],[2,37],[17,27],[36,12],[37,8],[27,19],[0,39],[-20,17],[-40,3],[-55,-4],[-57,-24],[-59,-26],[-58,-2],[-51,12],[-40,15],[-17,19],[-8,34],[-4,50],[3,46],[5,43],[-10,39],[-19,34],[-36,43],[-65,85],[-15,24],[0,30],[18,36],[17,85],[9,19],[24,8],[17,20],[3,53],[11,23],[14,6],[16,15],[5,20],[5,30],[21,50],[8,19],[2,6],[4,8],[3,8],[3,6],[0,2],[26,84],[15,80],[14,57],[17,95],[1,46],[1,75],[3,114],[13,72],[18,50],[11,21],[11,26],[0,26],[1,32],[-5,82],[-7,50],[3,47],[4,69],[7,47],[15,14],[19,10],[24,-7],[24,0],[11,17],[19,35],[16,58],[22,26],[21,21],[35,33],[25,29],[2,3],[53,52],[2,2],[3,6],[11,25],[2,13],[3,19],[1,4],[0,2],[0,1],[1,5],[-5,248],[3,39],[11,24],[35,48],[27,45],[22,54],[2,58],[-10,42],[5,37],[18,45],[27,50],[25,55],[2,35],[-8,26],[-34,43],[-30,55],[-11,43],[-3,9],[-9,53],[-8,45],[-9,45],[-2,42],[-1,23],[3,23],[13,11],[23,1],[31,-5],[20,-14],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[13,-9],[99,-60],[44,0],[34,25],[17,38],[12,65],[-15,92],[-11,54],[-36,103],[-32,71],[-53,105],[-8,52],[14,39],[45,60],[44,84],[30,188],[4,114],[-11,137],[-25,164],[-19,135],[-23,77],[-7,119],[-16,67],[-3,70],[21,74],[13,83],[-9,72],[-33,70],[-44,58],[-13,51],[29,47],[50,53],[59,63],[46,26],[34,49],[0,49],[-11,54],[-14,54],[5,37],[-9,44],[-8,45],[8,43],[26,21],[48,12],[42,42],[10,65],[-9,49],[-9,59],[14,42],[42,14],[37,2],[20,44],[-13,42],[-27,23],[-44,14],[-11,26],[8,56],[36,75],[32,0],[22,25],[20,61],[6,109],[-3,91],[-14,53],[5,59],[21,52],[27,84],[-11,58],[-22,101],[5,83],[17,63],[34,49],[-5,50],[4,35],[28,11],[32,28],[58,60],[25,45],[8,53],[-1,49],[-15,35],[-19,29],[-21,13],[-17,25],[-9,36],[-20,49],[-30,-9],[-21,-36],[-28,-4],[-29,4],[-33,42],[-18,68],[-22,46],[-11,46],[-14,50],[-31,14],[-26,17],[-38,87],[-8,48],[9,93],[33,97],[28,90],[39,79],[24,44],[32,30],[66,91],[56,79],[73,66],[12,121],[25,47],[51,46],[54,33],[5,72],[-27,79],[0,54],[51,154],[68,112],[99,7],[30,23],[64,182],[33,161],[-6,126],[-44,137],[-37,77],[-3,45],[51,149],[54,107],[25,58],[-17,213],[11,99],[20,106],[-12,130],[-37,355],[-5,199],[25,482],[21,90],[30,60],[92,162],[79,147],[62,168],[9,84],[-4,60],[7,82],[41,49],[21,39],[42,28],[11,33],[20,61],[-9,44],[20,42],[29,33],[59,28],[66,30],[74,28],[214,67],[18,26],[-3,49],[-8,47],[-7,46],[37,33],[60,54],[0,60],[2,57],[37,20],[49,0],[36,-9],[41,16],[24,33],[15,95],[25,168],[26,117],[22,130],[14,115],[31,126],[52,79],[60,65],[59,68],[20,93],[6,98],[24,65],[41,117],[19,114],[8,163],[17,145],[27,150],[56,169],[-8,42],[-24,14],[-150,-53],[-144,-33],[-127,-23],[-65,11],[-40,47],[-34,79],[-52,145],[-44,102],[-43,145],[-40,175],[28,150],[54,134],[62,93],[75,57],[93,69],[42,94],[24,86],[-20,112],[-51,84],[-99,32],[-105,-7],[-111,7],[-76,73],[-35,93],[-22,135],[30,77],[72,91],[31,103],[-34,90],[-43,157],[15,182],[22,135],[-11,98],[-52,116],[-96,138],[-59,18],[-12,35],[17,22],[58,23],[51,16],[61,65],[116,70],[86,-4],[85,-38],[88,-35],[162,-44],[84,37],[88,108],[68,191],[84,238],[102,275],[-19,67],[-32,42],[4,42],[21,17],[63,51],[111,137],[68,87],[23,60],[5,68],[-17,89],[-39,160],[-31,178],[-28,345],[109,257],[111,232],[-13,247],[44,229],[80,270],[67,327],[47,273],[6,230],[-8,129],[-1,2],[-18,254],[3,310],[71,355],[38,94],[14,35],[24,103],[13,52],[1,3],[6,28],[1,5],[47,262],[19,185],[21,208],[14,358],[14,277],[10,119],[12,137],[44,318],[39,192],[45,323],[-3,94],[-25,91],[-52,61],[-82,47],[-66,1],[-88,-71],[-69,-94],[-43,-70],[-66,-47],[-120,-26],[-150,-22],[-102,-16],[-100,-37],[-109,-46],[-37,11],[-43,24],[-37,62],[-7,38],[-11,67],[-9,156],[-27,114],[-41,104],[-84,226],[-110,279],[-32,72],[-33,72],[-100,165],[-27,43],[-73,115],[-69,111],[-90,167],[-87,199],[-22,51],[-59,134],[-144,332]],[[437990,453456],[36,31],[28,25],[271,236],[25,19],[478,372],[174,88],[193,53],[154,-10],[184,-38],[208,-66],[218,-96],[193,-91],[225,-180],[250,-186],[118,-108],[85,-121],[68,-167],[47,-175],[130,-716],[58,-153],[67,-99],[182,-118],[471,-207],[570,-189],[427,-167],[232,-102],[94,-27],[49,0],[48,0],[218,32],[68,-8],[85,-29],[88,-84],[91,-91],[91,-73],[126,-62],[119,-49],[126,-56],[127,-57],[157,-81],[81,-40],[107,-54],[112,-38],[453,-72],[270,-22],[254,19],[239,79],[198,92],[10,6],[55,35],[16,10],[133,85],[207,199],[140,200],[109,218],[151,417],[63,62],[45,7],[53,7],[250,-103],[173,-88],[145,-95],[125,-113],[119,-132],[134,-145],[148,-130],[292,-272],[15,-15],[256,-251],[296,-453],[275,-517],[279,-490],[109,-108],[166,-118],[75,-22],[138,-39],[1007,-300],[316,-70],[356,-27],[314,5],[261,60],[251,72],[139,45],[135,44],[236,108],[139,108],[86,113],[64,156],[71,291],[61,328],[27,152],[59,208],[47,138],[135,310],[68,194],[22,250],[12,160],[9,196],[17,152],[18,112],[41,73],[93,86],[63,81],[44,59],[54,51],[50,27],[45,3],[71,-39],[34,-19],[127,-58],[166,-86],[203,-83],[166,-76],[163,-49],[121,-30],[169,-9],[11,-1],[55,2],[47,2],[193,33],[69,26],[56,21],[88,61],[99,75],[120,132],[16,51],[19,61],[4,14],[-10,178],[-25,226],[-42,330],[-24,213],[-14,229],[1,58],[1,81],[5,82],[24,191],[42,257],[19,125],[22,155],[16,119],[5,143],[14,150],[32,95],[51,92],[67,79],[152,114],[150,86],[166,50],[141,32],[117,23],[74,2],[127,-31],[132,-38],[100,-32],[129,-49],[187,-99],[174,-109],[79,-40],[90,-37],[96,24],[286,217],[254,169],[340,254],[407,274],[250,200],[151,168],[75,183],[72,221],[100,415],[85,371],[41,115],[53,77],[53,78],[71,64],[86,44],[139,37],[143,-5],[325,-22],[343,-48],[82,-16],[126,-7],[99,39],[53,32],[186,189],[143,291],[143,334],[164,334],[129,177],[125,149],[145,186],[170,122],[192,104],[171,48],[174,58],[176,1],[161,-5],[125,65],[96,172],[79,194],[92,113],[147,97],[157,54],[164,108],[129,97],[135,64],[150,0],[175,59],[168,162],[136,242],[150,275],[236,490],[89,167],[89,81],[58,-8],[41,-5],[90,-14],[250,-274],[125,-65],[58,10],[118,111],[71,67],[85,60],[108,75],[99,54],[48,30],[47,29],[159,58],[154,-4],[128,-38],[102,22],[102,21],[146,22],[129,5],[178,26],[242,81],[101,6],[89,17],[222,43],[164,106],[103,82],[86,70],[154,81],[178,54],[343,-16],[204,-33],[207,-102],[172,-163],[235,-255],[170,-185],[94,-119],[18,-99],[17,-99],[31,-55],[55,-21],[84,-46],[24,-34],[12,-17],[32,-76],[29,-43],[3,-46],[0,-102],[-27,-110],[-37,-79],[-34,-64],[-41,-57],[-68,-43],[-53,-27],[-75,-32],[-191,-70],[-229,-119],[-215,-117],[-73,-36],[-82,-4],[-121,11],[-138,8],[-25,-6],[-20,0],[-8,-17],[-1,-29],[33,-47],[23,-43],[2,-45],[-11,-52],[-18,-48],[1,-68],[0,-38],[16,-45],[20,-39],[57,-97],[38,-92],[12,-44],[10,-64],[-11,-55],[-20,-49],[-31,-60],[-69,-119],[-46,-87],[-19,-40],[-12,-56],[-18,-91],[-22,-265],[-12,-113],[-35,-86],[-75,-76],[-98,-100],[-56,-76],[-67,-54],[-80,-85],[-95,-144],[-91,-162],[-56,-238],[-24,-170],[-14,-179],[-11,-71],[-24,-43],[-30,-52],[-22,-91],[28,-121],[54,-163],[48,-124],[24,-147],[-20,-128],[-38,-118],[-93,-76],[-64,-27],[-64,-27],[-67,-4],[-76,37],[-132,86],[-175,113],[-92,63],[-65,43],[-50,19],[-93,-12],[-75,-27],[-91,-52],[-73,-99],[-48,-82],[-27,-47],[-72,-111],[-43,-65],[-102,-95],[-112,-78],[-184,-127],[-123,-78],[-89,-84],[-107,-138],[-239,-339],[-102,-186],[-82,-150],[-32,-36],[-15,-18],[-16,-18],[-62,-72],[-104,-108],[-213,-219],[-212,-225],[-155,-148],[-82,-142],[-45,-121],[-45,-130],[-46,-230],[-46,-217],[-58,-149],[-73,-85],[-130,-130],[-257,-212],[181,-501],[45,-126],[6,-16],[6,-17],[6,-15],[6,-17],[6,-16],[3,-9],[2,-6],[1816,-5026],[382,-1055],[39,-109]],[[749215,241760],[140,-33],[81,236],[108,-25],[66,-151],[59,-12],[115,66],[55,-90],[-21,-101],[-20,-102],[-113,-137],[-46,-44],[-45,-44],[-39,-105],[-39,-106],[-93,-99],[-159,-22],[-44,-6],[-142,175],[-83,176],[-105,52],[-167,-56],[-55,90],[-55,89],[-58,113],[36,119],[6,146],[-17,187],[-40,114],[39,135],[163,183],[62,69],[110,-13],[-26,-147],[31,-36],[143,-168],[7,-239],[146,-214]],[[767179,245268],[51,-47],[53,9],[33,-76],[15,-99],[49,-4],[6,-73],[-39,-43],[-12,-36],[-12,-37],[-36,-8],[-35,-9],[-66,-57],[-94,-82],[-77,-7],[-33,-3],[-73,7],[-33,5],[-33,5],[-108,123],[22,139],[11,39],[37,130],[57,99],[14,24],[68,60],[68,46],[47,27],[52,-70],[51,-46],[17,-16]],[[742797,209692],[-186,580],[-2103,2624],[-32,40],[-211,264],[-1249,1558],[-89,112],[-1265,1578],[-2505,3126],[-428,534],[-303,1148],[-975,3698],[-256,968],[-74,1677],[989,1988],[2144,4312],[215,431],[1484,2984],[795,1665],[150,315],[150,315],[13,26],[320,671],[45,94],[138,288],[231,485],[226,473],[36,76],[28,59],[29,60],[454,951],[281,589],[20,41],[19,41],[231,483],[433,907],[10,22],[68,141],[51,108],[51,106]],[[741732,245230],[44,-24],[68,-37],[7,-4],[68,-26],[5,-1],[48,-5],[9,3],[8,4],[27,15],[25,7],[10,7],[22,29],[12,11],[12,14],[10,21],[14,25],[15,35],[11,35],[3,17],[-3,25],[0,17],[-3,17],[-3,31],[-11,45],[-5,28],[-5,17],[-3,14],[-3,28],[2,27],[3,18],[12,14],[14,7],[15,-6],[12,-12],[11,-12],[28,-20],[27,-13],[25,-13],[25,-13],[25,-13],[30,-10],[12,-7],[5,-6],[30,-20],[48,-30],[15,-7],[20,-13],[20,-24],[13,-20],[12,-21],[23,-30],[20,-28],[3,-6],[12,-11],[23,-34],[38,-51],[20,-34],[28,-51],[33,-51],[21,-27],[27,-31],[31,-48],[25,-30],[23,-31],[30,-44],[25,-24],[40,-30],[30,-30],[36,-27],[37,-26],[105,-84],[36,-41],[12,-13],[36,-51],[37,-48],[33,-41],[56,-64],[27,-31],[43,-43],[8,-7],[20,-7],[22,-6],[45,-9],[32,8],[10,0],[19,8],[25,0],[13,-6],[17,-3],[35,-24],[15,-3],[18,-13],[12,-17],[15,-24],[18,-24],[30,-23],[35,-13],[37,-6],[18,-3],[17,-3],[45,-19],[28,-34],[32,-34],[11,-17],[25,-31],[25,-9],[47,-16],[30,-3],[22,8],[29,21],[27,11],[25,8],[25,11],[32,25],[17,18],[14,18],[17,25],[24,60],[21,70],[19,49],[12,24],[10,8],[10,17],[20,15],[24,11],[25,11],[19,14],[13,4],[15,-6],[10,-3],[27,-10],[35,-6],[7,0],[35,-9],[20,-7],[25,-16],[23,-9],[12,-4],[50,-20],[25,-10],[5,-3],[12,-10],[16,-12],[39,-31],[18,0],[24,11],[20,1],[7,0],[20,4],[35,19],[29,7],[27,12],[35,-3],[37,-9],[37,1],[40,-6],[17,4],[23,-10],[27,-9],[20,-3],[35,8],[52,1],[17,1],[10,-4],[20,-13],[20,-13],[13,-24],[15,-24],[23,-24],[27,-20],[18,-13],[15,-17],[43,-40],[17,-14],[20,-13],[5,0],[27,4],[67,16],[20,4],[37,15],[14,7],[17,18],[13,11],[17,11],[20,1],[19,7],[18,14],[36,43],[5,0],[37,33],[19,11],[20,-3],[13,-7],[7,-3],[13,0],[4,14],[8,11],[22,14],[17,18],[9,14],[5,18],[2,17],[0,52],[7,25],[4,14],[-2,21],[6,59],[7,17],[20,11],[7,4],[13,0],[10,-3],[22,1],[12,4],[13,0],[22,-10],[23,-16],[15,-7],[22,-17],[23,-9],[22,0],[22,8],[30,18],[17,7],[17,8],[34,22],[30,14],[7,-3],[8,-3],[15,-14],[10,-17],[5,1],[5,-21],[3,-17],[0,-18],[-7,-17],[-34,-22],[-17,-11],[-15,-7],[-10,3],[-13,3],[-7,3],[-7,0],[-5,-7],[-8,-14],[-4,-11],[2,-7],[8,-17],[3,-10],[-3,-11],[-9,-38],[-5,-4],[-17,-35],[-31,-53],[-20,-21],[-36,-40],[-27,-21],[-37,-22],[-52,-19],[-30,24],[-23,27],[-20,30],[-10,28],[-8,13],[-12,0],[-39,-29],[-23,-7],[-19,-8],[-20,-21],[-15,-8],[-9,-7],[-28,-8],[-14,-10],[-10,-15],[-7,-14],[-10,-24],[-14,-42],[-5,-7],[6,-52],[3,-18],[-2,-27],[-5,-14],[-17,-43],[-12,-21],[-4,-9],[-3,-8],[-2,-21],[-3,-18],[-2,-10],[1,-39],[-15,-15],[-12,-16],[-35,-9],[-33,1],[-6,0],[-31,11],[-16,24],[-27,4],[-2,-22],[2,-39],[-3,-27],[1,-37],[2,-13],[3,-14],[-3,-74],[-19,-63],[-20,-10],[-16,-11],[-4,-22],[4,-50],[18,-83],[15,-47],[5,-16],[135,-427],[245,-583],[112,-221],[111,-221],[162,-313],[245,-387],[242,-325],[190,-243],[117,-185],[93,-246],[88,-319],[109,-402],[53,-292],[121,-465],[147,-417],[86,-226],[102,-290],[51,-124],[61,-124],[65,-124],[89,-125],[82,-113],[65,-116],[64,-134],[153,-416],[132,-338],[132,-291],[319,-624],[64,-87],[48,-75],[0,-7],[8,-7],[10,-17],[10,-13],[10,-21],[10,-17],[34,-65],[35,-65],[38,-72],[11,-20],[33,-65],[10,-14],[43,-78],[21,-31],[72,-119],[248,-409],[57,-94],[59,-97],[135,-223],[23,-30],[15,-21],[38,-68],[30,-44],[26,-38],[17,-27],[28,-45],[41,-64],[33,-51],[119,-164],[50,-71],[21,-27],[53,-79],[45,-64],[64,-106],[61,-85],[48,-58],[38,-54],[68,-85],[48,-61],[12,-17],[16,-27],[25,-27],[35,-52],[56,-67],[28,-34],[423,-497],[76,-89],[25,-24],[45,-61],[33,-34],[45,-51],[51,-54],[58,-64],[38,-41],[48,-61],[55,-64],[38,-44],[38,-48],[15,-10],[17,-10],[8,-6],[25,-13],[22,-31],[63,-43],[33,-38],[55,-40],[43,-33],[40,-34],[60,-53],[48,-44],[90,-74],[70,-60],[25,-24],[123,-97],[146,-110],[20,-10],[15,-9],[15,-8],[102,-80],[48,-31],[40,-26],[115,-73],[32,-16],[331,-176],[116,-62],[13,-6],[60,-19],[60,-29],[72,-26],[62,-26],[50,-12],[42,-13],[65,-15],[47,-13],[73,-40],[50,-22],[42,-20],[37,-13],[58,-16],[47,-12],[15,-7],[50,-29],[72,-26],[35,-9],[20,-7],[25,-9],[19,7],[55,-9],[40,-16],[72,-26],[25,-2],[70,-12],[67,-5],[22,-10],[45,1],[5,0],[19,-2],[20,-3],[20,-3],[21,-3],[278,-23],[13,-1],[35,-3],[13,-1],[5,1],[5,2],[44,5],[38,-6],[34,-2],[23,7],[39,2],[69,12],[35,4],[17,1],[70,5],[17,1],[62,9],[74,19],[10,4],[61,16],[47,15],[69,23],[40,18],[88,31],[47,15],[40,18],[36,22],[72,44],[24,22],[17,7],[52,43],[49,40],[51,43],[66,61],[39,32],[20,22],[32,35],[51,61],[14,21],[22,32],[22,28],[2,7],[24,43],[20,39],[12,17],[41,33],[27,35],[12,35],[12,14],[17,8],[27,22],[10,10],[15,11],[27,18],[19,11],[5,0],[15,1],[13,7],[29,11],[27,22],[20,14],[14,11],[5,7],[25,22],[14,14],[20,22],[17,18],[5,7],[17,14],[32,39],[29,36],[9,17],[32,53],[12,15],[43,81],[10,14],[27,56],[16,39],[22,49],[19,39],[2,10],[4,7],[4,7],[4,8],[8,7],[10,13],[29,40],[3,20],[7,10],[8,10],[12,19],[13,16],[7,14],[10,31],[58,85],[14,28],[12,28],[15,35],[3,9],[4,9],[0,3],[6,11],[6,14],[10,21],[9,25],[10,24],[16,42],[10,32],[9,31],[5,14],[5,7],[9,25],[3,17],[2,11],[2,38],[-13,21],[-12,6],[-6,14],[-18,55],[-5,38],[-13,31],[0,14],[0,7],[-3,31],[2,10],[14,32],[17,32],[15,28],[9,24],[7,15],[15,35],[9,24],[3,18],[4,14],[10,42],[4,17],[10,42],[4,25],[10,31],[4,35],[7,42],[4,28],[5,24],[19,87],[9,25],[9,35],[5,35],[4,59],[3,129],[1,100],[0,18],[0,7],[2,10],[-3,10],[-2,11],[-3,7],[-2,6],[-21,24],[-20,10],[-12,14],[0,10],[5,4],[14,3],[10,1],[-2,17],[-8,10],[-8,10],[-12,10],[-13,7],[-15,7],[-17,9],[-5,4],[-1,31],[-1,59],[-1,90],[2,14],[0,38],[7,49],[-1,63],[1,45],[5,42],[-1,69],[-1,17],[0,25],[2,52],[-6,48],[-4,87],[0,21],[-3,20],[-3,28],[-8,73],[-14,69],[-10,38],[0,17],[-16,45],[-15,34],[-8,28],[-10,34],[-14,66],[-13,37],[-31,69],[-2,10],[-18,45],[-8,14],[-15,10],[-13,23],[-10,7],[-12,-14],[5,17],[-5,7],[-25,24],[-13,3],[-49,9],[-30,2],[-23,3],[-22,0],[-5,-4],[-27,-15],[-5,-3],[-7,-1],[-5,7],[-5,7],[-5,0],[-12,-7],[-5,-11],[-8,-4],[-14,-4],[-5,7],[-1,7],[-2,21],[-10,10],[-18,0],[-57,-6],[-39,3],[-30,2],[-22,7],[-10,-1],[-25,-18],[-25,6],[-12,4],[-13,6],[-7,0],[-42,-19],[-20,-7],[-12,-1],[-8,4],[-7,3],[-5,17],[2,11],[2,7],[22,21],[5,7],[25,32],[12,14],[-1,25],[3,7],[4,17],[17,25],[17,25],[40,32],[4,11],[0,10],[-5,31],[-1,25],[-10,34],[-3,10],[3,11],[12,28],[2,31],[-3,14],[5,21],[9,11],[20,21],[10,18],[14,4],[15,0],[35,15],[17,28],[9,21],[2,14],[-10,28],[10,21],[29,42],[2,39],[2,7],[5,14],[-3,24],[2,14],[20,28],[4,18],[0,17],[5,4],[0,17],[7,18],[20,11],[32,4],[27,-3],[45,-9],[20,-13],[13,-27],[7,-18],[5,-3],[10,-7],[5,1],[17,7],[15,25],[12,28],[10,11],[24,7],[5,-3],[25,4],[17,8],[17,17],[8,11],[17,11],[27,11],[25,-3],[25,-2],[24,0],[15,-3],[28,-2],[24,7],[12,8],[13,-3],[8,-11],[5,-13],[5,-25],[3,-17],[15,-20],[12,-10],[38,-23],[30,-31],[20,-6],[5,-4],[8,-13],[0,-11],[5,-10],[17,-6],[15,-14],[8,-20],[13,-38],[3,-11],[2,-6],[23,-17],[30,-24],[60,-29],[55,-33],[60,-33],[70,-33],[82,-32],[12,0],[30,-9],[38,-13],[39,-13],[10,1],[33,-6],[27,0],[79,-8],[42,5],[30,1],[47,12],[15,7],[27,8],[32,11],[7,4],[10,7],[27,25],[10,14],[14,32],[12,49],[-1,14],[0,62],[2,21],[-3,14],[-5,17],[-5,7],[-13,24],[-8,24],[-3,28],[0,20],[5,28],[9,35],[19,36],[10,17],[14,28],[5,4],[8,0],[10,-17],[3,-14],[-3,-10],[-12,-32],[-9,-17],[0,-11],[7,-6],[10,-18],[10,4],[10,7],[10,11],[7,4],[10,0],[5,-7],[3,-10],[3,-14],[0,-14],[-10,-31],[-12,-25],[-4,-10],[-10,-25],[-2,-21],[5,-17],[13,-21],[10,-13],[15,-21],[15,-11],[15,-12],[14,-7],[22,-11],[6,-2],[5,-3],[35,-2],[32,4],[25,15],[20,14],[4,5],[5,6],[5,21],[2,14],[-4,22],[-4,23],[4,38],[15,25],[7,14],[54,60],[5,4],[17,18],[15,7],[22,18],[59,30],[17,4],[12,7],[52,40],[9,7],[18,14],[95,83],[29,46],[2,7],[0,10],[17,39],[5,11],[16,49],[7,28],[0,7],[-8,34],[-15,24],[-8,10],[-5,3],[-5,14],[-2,18],[-1,6],[8,25],[14,32],[12,10],[5,11],[10,25],[9,38],[5,17],[-6,28],[-15,41],[-13,31],[-68,78],[-12,12],[-11,12],[-15,24],[0,17],[2,17],[-3,25],[2,17],[5,11],[10,28],[14,21],[22,21],[24,29],[12,21],[24,60],[5,17],[2,14],[0,14],[5,18],[5,17],[6,31],[0,21],[-5,11],[-5,13],[-3,14],[0,14],[4,38],[0,7],[2,28],[-12,7],[-3,10],[-2,14],[4,14],[3,10],[-1,32],[2,10],[5,21],[2,10],[10,22],[7,7],[8,0],[14,14],[3,14],[0,7],[-1,7],[0,11],[3,7],[7,17],[10,14],[21,39],[5,18],[2,20],[-3,18],[-2,24],[-1,10],[8,18],[9,11],[20,4],[8,-7],[5,-7],[10,-24],[8,-10],[5,-7],[10,0],[4,1],[18,7],[32,22],[17,11],[17,25],[34,56],[17,25],[53,92],[7,14],[17,21],[19,22],[17,24],[25,25],[7,-3],[5,-10],[3,-10],[5,-4],[5,7],[0,11],[0,10],[4,21],[10,35],[4,24],[12,36],[5,10],[22,39],[9,14],[15,11],[15,11],[19,7],[15,8],[5,3],[5,4],[7,4],[5,0],[15,4],[12,0],[13,11],[19,0],[15,15],[17,14],[12,11],[18,14],[14,8],[5,0],[3,-7],[7,-10],[5,-4],[13,-10],[12,-3],[11,-10],[27,-44],[16,-34],[5,-38],[27,-107],[6,-66],[3,-42],[0,-34],[10,-14],[8,-17],[3,-10],[-3,-18],[-4,-21],[3,-17],[0,-17],[3,-25],[-5,-24],[-2,-31],[3,-25],[5,-17],[-2,-35],[-4,-45],[-2,-17],[3,-49],[5,-38],[6,-14],[0,-38],[8,-13],[25,-27],[25,-14],[5,1],[25,-3],[10,7],[9,25],[5,7],[7,3],[10,1],[10,-10],[8,-25],[25,1],[20,4],[19,15],[17,11],[30,11],[15,0],[5,-3],[5,-7],[5,-17],[8,-21],[-2,-21],[0,-13],[15,-3],[15,-3],[14,10],[6,-17],[0,-17],[-3,-7],[8,0],[14,25],[8,7],[-5,-18],[-7,-24],[0,-7],[-2,-17],[10,-4],[5,-3],[5,-10],[5,-21],[6,-38],[0,-7],[-3,-7],[3,-31],[1,-10],[-2,-49],[0,-14],[-5,-11],[-12,-14],[-14,-31],[-3,-14],[-2,-18],[0,-14],[-12,-21],[-7,-4],[-22,-18],[-8,-3],[-12,3],[-5,10],[-5,7],[-10,0],[-7,-8],[-5,-24],[-4,-31],[3,-32],[2,-24],[11,-31],[10,-24],[15,-37],[16,-35],[-8,-82],[150,-102],[63,-45],[68,-34],[70,-45],[64,-45],[56,-23],[59,-34],[38,-11],[37,-22],[52,-23],[213,-84],[85,2],[67,-26],[55,-16],[270,-78],[116,-6],[133,16],[141,8],[126,21],[87,16],[79,20],[41,22],[99,38],[49,25],[30,19],[44,22],[51,26],[42,22],[15,10],[12,-5],[6,6],[45,49],[24,16],[17,30],[24,34],[15,26],[22,33],[18,18],[8,18],[13,3],[16,23],[102,94],[25,17],[27,26],[20,16],[36,31],[21,18],[38,46],[17,24],[11,22],[11,27],[8,37],[4,45],[2,25],[3,33],[0,37],[-4,37],[-5,47],[-4,34],[-7,58],[8,44],[3,46],[14,36],[15,56],[20,41],[17,30],[6,28],[16,28],[43,64],[40,42],[57,58],[65,73],[21,23],[26,46],[33,46],[147,208],[39,55],[21,35],[57,127],[35,87],[10,107],[6,85],[9,93],[5,70],[5,56],[-25,41],[-30,9],[-27,-21],[-5,-7],[-7,-8],[2,-10],[-3,0],[-4,0],[-13,20],[10,8],[5,-7],[39,39],[7,25],[-10,20],[-15,24],[-35,37],[-5,4],[-13,-15],[-16,-35],[-20,-14],[-12,-1],[-27,-63],[13,-10],[-15,-28],[-27,30],[14,25],[10,-10],[27,60],[-8,10],[-53,71],[-39,-53],[5,-9],[0,-2],[-5,-6],[-15,20],[7,11],[6,-11],[36,57],[-5,7],[-8,3],[-17,20],[-33,51],[0,7],[-5,7],[-6,31],[-2,7],[-1,14],[0,21],[5,28],[2,17],[4,25],[10,21],[10,-4],[5,-3],[10,18],[7,21],[7,14],[12,18],[20,11],[32,8],[34,-3],[33,-2],[30,-7],[15,-13],[22,-24],[13,1],[14,14],[24,39],[17,46],[17,63],[18,90],[9,56],[2,45],[0,11],[-6,27],[0,14],[-3,38],[-19,139],[-3,38],[-6,17],[-25,55],[-36,54],[-30,45],[-25,30],[-13,-4],[-38,51],[-20,17],[-10,-4],[-10,17],[-10,10],[-27,6],[-10,4],[-25,-15],[-41,-22],[-57,-22],[-32,-19],[-29,-28],[-56,-54],[-25,-1],[-18,7],[-12,6],[-8,14],[-12,3],[-13,0],[-12,10],[-10,6],[-15,0],[0,7],[7,7],[0,7],[-5,10],[0,10],[17,25],[12,21],[17,39],[12,28],[7,7],[12,11],[7,11],[3,24],[-1,18],[-2,10],[-3,10],[0,7],[7,0],[5,4],[5,14],[0,21],[4,24],[12,18],[15,28],[5,14],[26,39],[47,43],[17,4],[7,0],[10,-10],[1,-7],[14,-3],[13,1],[10,3],[-1,14],[-7,14],[-3,21],[0,14],[14,35],[17,38],[22,32],[24,36],[11,16],[21,-8],[10,7],[14,21],[20,15],[10,14],[7,7],[36,60],[29,50],[10,7],[27,25],[7,24],[2,7],[2,56],[0,35],[2,21],[-3,45],[4,31],[4,45],[5,11],[-8,27],[-43,48],[-25,20],[-5,7],[-5,10],[-3,21],[2,24],[3,7],[10,14],[2,11],[-3,10],[-20,58],[-16,14],[-12,-1],[-27,-21],[-32,-22],[-15,0],[-2,10],[2,7],[2,10],[5,18],[-5,3],[-12,7],[-10,10],[2,17],[2,18],[12,18],[17,17],[17,8],[10,17],[12,22],[7,14],[15,11],[20,14],[27,15],[49,46],[39,22],[19,18],[22,25],[15,15],[25,14],[19,8],[23,-3],[22,-6],[20,7],[14,14],[15,18],[15,18],[17,14],[17,1],[20,-3],[27,-10],[23,-9],[17,7],[30,11],[17,-3],[8,-24],[15,-30],[18,-21],[10,-6],[12,-14],[13,-31],[23,-48],[23,-9],[22,-10],[37,-3],[18,-3],[20,-9],[7,-18],[6,-24],[-3,-21],[3,-10],[10,-14],[51,-64],[13,-45],[8,-65],[-1,-56],[7,-17],[13,-14],[15,11],[9,11],[10,-3],[5,-18],[34,-117],[21,-37],[17,-17],[23,-10],[17,-6],[13,-3],[19,4],[22,18],[20,0],[23,-9],[15,-21],[13,-20],[5,-12],[0,-19],[0,-18],[-2,-17],[3,-14],[5,-7],[22,-13],[10,0],[10,-6],[47,-9],[50,-6],[82,-4],[59,-5],[30,0],[17,8],[45,12],[19,7],[25,4],[20,4],[29,19],[22,31],[12,11],[52,-2],[13,-3],[35,5],[4,0],[18,7],[24,15],[32,18],[10,4],[10,7],[22,11],[29,18],[25,15],[17,14],[29,29],[27,29],[20,21],[7,7],[37,40],[24,31],[22,39],[19,63],[2,18],[7,31],[-1,45],[2,14],[0,11],[-13,24],[-7,10],[-8,7],[-39,5],[-20,-4],[-5,0],[-8,7],[-10,13],[-10,0],[-5,0],[-2,7],[-3,14],[2,7],[0,7],[10,21],[9,21],[5,17],[0,7],[-3,18],[-15,37],[-8,17],[-8,31],[3,11],[9,42],[0,17],[29,39],[2,7],[20,22],[24,25],[14,28],[18,14],[9,21],[5,14],[4,49],[0,21],[-8,45],[-8,27],[-3,21],[-3,14],[-5,10],[-5,17],[-20,31],[-8,3],[-10,-3],[-12,-8],[-20,-4],[-27,-1],[-10,14],[-13,24],[-5,17],[-10,21],[-20,3],[-20,-8],[-7,7],[-5,7],[-8,24],[-8,38],[2,17],[14,42],[10,21],[17,25],[7,14],[17,18],[20,18],[2,7],[-7,10],[-8,14],[-3,7],[-2,13],[2,14],[10,11],[15,-6],[61,26],[13,4],[59,26],[24,14],[42,22],[15,4],[20,1],[14,0],[18,-17],[25,-34],[8,-10],[10,-3],[17,18],[7,7],[15,21],[26,36],[15,18],[12,14],[23,-3],[9,4],[13,11],[41,53],[7,10],[10,11],[24,25],[37,12],[26,-7],[14,-3],[10,1],[20,-7],[-2,-20],[-12,-53],[-9,-45],[-19,-70],[3,-7],[29,22],[22,18],[52,36],[12,7],[12,0],[33,-2],[24,-6],[31,-45],[13,-23],[15,-31],[5,-14],[6,-48],[3,-25],[0,-34],[33,-55],[8,-7],[12,-20],[11,-34],[5,-28],[1,-24],[7,-12],[38,-25],[12,-24],[3,-7],[5,0],[13,-24],[2,-10],[8,-17],[5,-17],[6,-25],[2,-10],[3,-28],[1,-27],[-3,-18],[-6,-45],[2,-24],[3,-14],[8,-38],[5,-10],[3,-7],[7,0],[17,14],[15,15],[7,10],[12,15],[5,3],[10,0],[13,-3],[25,-41],[10,-27],[1,-35],[0,-24],[-9,-49],[-9,-35],[-10,-11],[-5,-3],[-12,-1],[-20,7],[-8,3],[-12,-4],[-37,3],[-15,-11],[-7,-11],[-7,-24],[-12,-25],[-2,-18],[-2,-34],[0,-14],[3,-17],[8,-42],[5,-14],[5,-13],[15,-38],[3,-10],[3,-11],[20,-17],[22,-23],[5,-3],[10,0],[10,11],[2,7],[15,38],[9,21],[10,11],[12,4],[15,-10],[8,-10],[5,-25],[1,-27],[2,-11],[8,-27],[3,-17],[8,-24],[-2,-21],[0,-18],[-20,-35],[-9,-21],[-15,-28],[-2,-18],[-2,-31],[5,-14],[1,-10],[17,-14],[8,1],[7,7],[7,3],[49,44],[10,7],[22,18],[24,21],[15,11],[17,18],[27,29],[32,39],[5,3],[4,7],[10,11],[7,4],[15,7],[27,11],[10,-3],[10,1],[13,-10],[20,-24],[3,-24],[5,-7],[3,-28],[-5,-7],[-15,-18],[3,-7],[10,-6],[10,7],[14,7],[15,8],[13,-3],[9,0],[10,-3],[10,-3],[5,-7],[18,-21],[3,-6],[7,-18],[1,-20],[-2,-39],[-5,-17],[3,-31],[3,-31],[-5,-28],[-4,-28],[0,-11],[10,-24],[10,-10],[10,-10],[4,-38],[5,-14],[5,-41],[-2,-21],[0,-24],[1,-21],[-2,-18],[-8,-17],[-16,-35],[-10,-8],[-5,-3],[-15,-15],[-19,-7],[-15,-4],[-25,6],[-25,6],[-35,10],[-20,3],[-15,3],[-24,-15],[-17,-7],[-13,-11],[-12,-18],[-19,-25],[-20,-25],[-12,-10],[-5,-7],[-7,-25],[-2,-17],[-5,-11],[-22,-18],[-17,-14],[-17,-11],[-13,6],[-12,24],[-8,0],[0,-10],[6,-21],[15,-41],[3,-11],[3,-17],[8,-38],[-3,-24],[-1,-38],[5,-42],[3,-17],[3,-14],[5,-21],[0,-7],[-7,-31],[-10,-25],[-4,-10],[-18,-8],[-32,-1],[-20,0],[-20,6],[-7,-4],[-5,-14],[-11,-49],[-17,-56],[-9,-31],[-17,-32],[-5,-7],[-10,-14],[-4,-11],[-3,-7],[-2,-17],[-22,-35],[-12,-29],[-5,-7],[-22,-11],[-12,7],[-5,10],[-6,21],[0,17],[-7,14],[-8,10],[-8,3],[-5,4],[-14,-8],[-10,-17],[-2,-8],[-8,-14],[-12,0],[-7,7],[-8,20],[4,53],[2,34],[-5,14],[-8,-11],[-2,-10],[-7,-32],[-7,-45],[-6,-31],[-7,-32],[-3,-24],[1,-35],[-2,-35],[-2,-17],[-5,-17],[-12,-43],[-4,-20],[-3,-18],[-3,-31],[-10,-42],[7,-7],[10,4],[7,4],[3,-11],[3,-24],[5,-24],[-2,-31],[-5,-11],[-9,0],[-5,-25],[-5,4],[0,-14],[0,-14],[1,-7],[0,-17],[-9,-46],[-5,-31],[-2,-42],[0,-17],[3,-14],[-4,-38],[-2,-21],[-5,-11],[-7,-14],[-3,-11],[8,-10],[0,-7],[-7,-48],[-2,-7],[-5,-28],[-4,-18],[-7,-21],[-8,-11],[-7,-7],[-10,-3],[-15,-1],[-19,-7],[-10,-18],[-5,-11],[-5,-14],[-4,-14],[-2,-24],[-3,-14],[-7,-4],[-10,-3],[-12,-8],[-17,-7],[-8,-7],[-5,-11],[-4,-10],[-5,3],[-1,10],[3,11],[4,35],[-2,13],[-5,0],[-8,-7],[-5,-4],[-14,-21],[-20,-11],[-12,-21],[-12,-7],[-5,-18],[-5,-14],[-4,-17],[-5,-7],[-8,-4],[-7,3],[-12,0],[-5,-7],[-5,-7],[-5,-18],[-2,-17],[-17,-32],[-10,-14],[-12,-28],[-4,-21],[-5,-21],[-9,-21],[-5,-18],[-2,-14],[-3,-14],[1,-10],[-3,-21],[1,-10],[0,-25],[0,-14],[-2,-14],[-2,-21],[-3,-20],[-2,-14],[1,-32],[-3,-10],[3,-17],[0,-11],[-2,-7],[-5,-14],[-2,-17],[5,-10],[0,-11],[-5,-7],[-9,-11],[-3,-7],[1,-21],[2,-6],[-2,-18],[-2,-17],[-5,-7],[-10,-8],[-5,-7],[-2,-10],[7,-7],[-2,-10],[-2,-7],[-8,-11],[-7,-18],[-5,-10],[-2,-11],[-2,-14],[-2,-17],[-5,-14],[-7,-21],[-5,-14],[-7,-21],[-5,-18],[-5,-10],[-4,-4],[-5,0],[-3,-7],[0,-10],[6,-14],[0,-14],[2,-14],[-2,-17],[0,-11],[1,-17],[-3,-14],[-2,-21],[-2,-17],[-2,-14],[-3,-11],[-4,-3],[-3,7],[-3,6],[-4,-7],[-5,-7],[-8,-14],[-4,-10],[-3,-7],[-2,-14],[3,-14],[2,-10],[8,-7],[3,-11],[-3,-10],[3,-7],[5,-3],[7,0],[13,0],[7,-3],[5,-3],[-2,-7],[0,-11],[7,1],[5,3],[8,4],[0,-7],[-8,-14],[-4,-4],[-8,-14],[-4,-10],[-5,-8],[-8,-10],[-2,-7],[-12,-21],[-7,-7],[-5,-8],[-10,-3],[-5,3],[-8,3],[-2,7],[-5,14],[-3,7],[-5,-11],[-5,-3],[-5,6],[-2,7],[-5,-7],[-10,-11],[-7,-10],[-5,-4],[-5,0],[-5,0],[5,-3],[5,-7],[-12,-4],[-12,-4],[-8,-7],[-5,-7],[-2,-21],[-2,-17],[3,-14],[2,-11],[3,-9],[3,-9],[0,-47],[-2,-18],[0,-21],[-2,-31],[-2,-17],[-2,-18],[-4,-34],[0,-8],[5,-3],[2,-7],[-7,-10],[0,-7],[0,-7],[3,-18],[3,-17],[-3,-17],[0,-7],[-2,-18],[-2,-10],[0,-17],[0,-18],[1,-14],[0,-10],[5,-10],[5,-7],[7,0],[10,0],[3,-7],[0,-17],[3,-17],[0,-14],[-2,-14],[-5,-11],[-5,-10],[-9,-11],[-5,-7],[-15,-11],[-7,-10],[-3,-7],[0,-7],[5,-7],[5,-3],[8,0],[2,-7],[-4,-4],[-5,-7],[-3,-10],[-2,-11],[-2,-14],[-2,-21],[-3,-14],[1,-10],[0,-10],[5,-4],[10,-3],[10,-3],[15,0],[14,1],[10,4],[5,3],[5,7],[0,7],[2,11],[3,10],[4,11],[3,7],[5,0],[2,-7],[3,-14],[-2,-7],[-3,-17],[1,-14],[0,-17],[2,-11],[11,-20],[5,-7],[5,3],[2,8],[2,10],[5,11],[3,-7],[0,-7],[-3,-11],[1,-7],[5,-3],[2,7],[0,10],[2,11],[2,7],[5,0],[1,-17],[0,-21],[0,-14],[-2,-17],[0,-14],[-2,-14],[-2,-18],[0,-17],[-2,-11],[-3,-20],[-4,-28],[-5,-25],[-4,-21],[-2,-21],[-3,-17],[0,-7],[6,-7],[2,-7],[0,-7],[0,-10],[1,-14],[5,-17],[5,-14],[13,-13],[15,-17],[15,-14],[17,-13],[10,-10],[15,-17],[13,-10],[35,-37],[8,-4],[5,-10],[7,-3],[8,-3],[7,0],[10,4],[8,0],[7,-3],[3,-7],[5,-7],[0,-7],[0,-7],[-2,-14],[0,-7],[0,-7],[2,-7],[10,-10],[13,-6],[12,-14],[16,-13],[10,-7],[12,-13],[8,-7],[10,-3],[12,-3],[10,-7],[8,-3],[7,-10],[13,-14],[7,-10],[10,-10],[5,-7],[8,-3],[7,-4],[10,1],[13,0],[5,-3],[15,-21],[20,-41],[3,-31],[5,-10],[3,-7],[11,-7],[24,-13],[20,-10],[10,-6],[15,-10],[17,-10],[18,-10],[30,-10],[25,-9],[20,-10],[37,-20],[23,-6],[22,-10],[32,-13],[15,-6],[8,-7],[35,-9],[17,-7],[13,-3],[15,-3],[24,-6],[20,-3],[15,-7],[23,-6],[22,-3],[15,4],[10,4],[9,7],[12,25],[13,18],[7,14],[7,17],[5,7],[5,8],[7,10],[5,11],[5,10],[9,14],[10,18],[5,7],[7,7],[7,4],[10,7],[8,7],[4,11],[3,7],[2,17],[5,7],[7,4],[5,4],[5,7],[7,11],[7,10],[5,7],[10,18],[10,14],[9,11],[10,10],[5,8],[5,7],[0,7],[2,14],[0,10],[2,7],[10,18],[7,24],[12,28],[7,14],[7,14],[8,15],[4,10],[10,14],[7,11],[8,7],[9,14],[3,7],[0,11],[4,10],[5,7],[3,7],[7,7],[2,11],[3,7],[-3,7],[-5,7],[-5,6],[-3,7],[3,14],[-1,7],[5,11],[5,10],[5,11],[0,7],[2,10],[0,14],[0,11],[-5,6],[-3,11],[-3,10],[0,10],[3,7],[4,8],[5,10],[3,7],[-1,7],[3,7],[2,11],[3,7],[9,3],[8,7],[7,8],[5,10],[5,7],[2,7],[5,14],[-1,21],[3,18],[-1,17],[0,21],[2,7],[3,10],[5,7],[7,4],[7,0],[5,4],[5,7],[3,7],[7,11],[5,10],[5,7],[9,7],[20,8],[10,11],[10,10],[9,18],[10,11],[10,10],[10,4],[12,1],[12,0],[10,-3],[5,-7],[3,-7],[2,-11],[1,-3],[-3,-10],[3,-11],[0,-10],[5,-3],[5,0],[5,7],[7,7],[12,11],[8,7],[12,11],[10,7],[10,7],[9,1],[8,-4],[7,-6],[8,-11],[5,-13],[0,-14],[1,-14],[-3,-11],[-4,-10],[-5,-18],[-3,-10],[-2,-11],[-2,-13],[-2,-11],[-3,-10],[-2,-14],[3,-11],[2,-10],[5,-14],[8,-7],[7,-3],[5,4],[8,4],[7,10],[7,14],[5,7],[10,8],[5,0],[2,-11],[1,-10],[0,-7],[2,-10],[3,-7],[0,-14],[0,-10],[3,-7],[5,-7],[7,-3],[5,0],[3,10],[2,14],[5,7],[5,7],[7,11],[10,4],[6,-1],[6,-2],[8,-11],[7,-3],[8,0],[10,1],[12,-3],[7,0],[3,-10],[0,-11],[-2,-10],[0,-7],[0,-11],[3,-20],[3,-25],[2,-10],[6,-7],[5,-3],[9,0],[10,0],[8,1],[5,-14],[3,-14],[5,-14],[2,-13],[3,-11],[3,-10],[7,-7],[5,0],[5,-6],[-2,-14],[0,-14],[3,-7],[7,-7],[8,-17],[3,-10],[2,-14],[3,-7],[7,-7],[10,1],[5,-4],[8,-3],[5,-7],[5,-10],[3,-17],[2,-14],[1,-14],[0,-10],[5,-4],[5,-7],[5,1],[0,-7],[5,-11],[-5,-14],[-4,-10],[-3,-7],[8,-3],[4,7],[3,7],[4,3],[6,4],[2,-10],[0,-7],[5,-7],[10,0],[5,7],[10,14],[15,18],[9,14],[7,11],[12,28],[5,11],[8,7],[9,4],[10,7],[8,3],[5,1],[5,-7],[2,-7],[3,-7],[0,-7],[-2,-17],[0,-11],[-3,-10],[-4,-7],[-3,-7],[-10,-8],[-4,-3],[-5,-7],[-3,-7],[-5,0],[-4,-4],[2,-7],[5,-7],[3,-10],[-3,-7],[-4,-14],[-3,-11],[-2,-13],[0,-2],[-1,-2],[-1,-7],[-7,-18],[-8,-14],[-7,-10],[-5,-7],[-2,-7],[-2,-11],[0,-7],[2,-7],[5,-3],[5,-3],[20,0],[7,1],[8,-4],[7,-3],[3,-10],[5,-7],[5,-3],[8,0],[7,0],[5,7],[7,7],[15,15],[14,14],[10,11],[15,14],[10,11],[7,10],[7,7],[7,15],[3,10],[7,18],[7,7],[3,10],[4,11],[5,7],[0,7],[5,3],[5,-3],[5,-14],[5,-10],[8,0],[2,7],[2,7],[0,11],[0,7],[3,10],[2,7],[5,4],[2,-7],[5,-7],[5,-3],[5,0],[13,11],[9,10],[5,8],[10,3],[8,-3],[5,-10],[5,-10],[5,-7],[5,-7],[5,-7],[5,-10],[3,-10],[2,-11],[0,-10],[3,-11],[0,-17],[1,-14],[0,-10],[5,-7],[5,-7],[5,4],[5,0],[5,-7],[0,-14],[-2,-21],[-2,-17],[-3,-14],[-2,-17],[-5,-7],[-7,-8],[-7,-7],[-5,-3],[-8,-11],[-7,-7],[-7,-7],[-8,-1],[-4,-10],[2,-7],[10,-10],[10,-7],[5,-3],[5,-10],[-4,-28],[0,-7],[0,-18],[0,-17],[-4,-10],[-5,-11],[-10,-14],[-7,-4],[-13,0],[-9,-4],[-10,-4],[-10,-4],[-5,-7],[0,-7],[0,-10],[3,-7],[5,-10],[0,-11],[-2,-13],[0,-11],[3,-7],[7,0],[12,-3],[8,-3],[7,-7],[3,-17],[0,-7],[-7,-14],[-5,-14],[-9,-11],[-13,-17],[-4,-11],[-3,-7],[-4,-14],[-5,-17],[-2,-7],[0,-14],[0,-11],[0,-7],[7,-3],[5,0],[5,7],[10,11],[5,7],[2,-7],[-4,-10],[-3,-11],[-4,-10],[-3,-11],[-2,-14],[-10,-17],[-4,-18],[-8,-14],[0,-7],[1,-7],[7,-10],[8,-7],[0,-7],[0,-14],[-2,-14],[-5,-14],[-5,-14],[-7,-21],[-17,-31],[0,-7],[-4,-11],[-15,-39],[-14,-24],[-10,-18],[-2,-17],[-17,-43],[-9,-24],[-12,-25],[0,-21],[-2,-10],[-3,-7],[-2,-11],[-2,-10],[-3,-14],[3,-10],[3,-14],[2,-11],[1,-17],[0,-7],[2,-7],[1,-17],[-3,-17],[-2,-14],[-17,-43],[-2,-17],[3,-10],[12,-17],[5,-4],[8,1],[7,7],[12,17],[8,11],[27,15],[5,-10],[-2,-28],[-13,-1],[-10,-3],[-4,-1],[-3,-14],[-2,-24],[-5,-14],[-15,10],[-4,-7],[0,-10],[-5,-18],[-7,-11],[-5,-10],[-10,-18],[-9,-7],[-10,0],[-8,3],[-5,7],[-10,6],[-5,-3],[0,-7],[-7,-21],[-4,-25],[3,-34],[0,-18],[0,-20],[-5,-8],[-12,-21],[-5,-3],[-10,-1],[-10,7],[-2,7],[-5,0],[-10,-25],[-7,-24],[-12,-32],[-19,-35],[-7,-11],[-12,-11],[-23,-4],[0,7],[-2,7],[-9,-7],[-16,-1],[-10,-7],[-5,-10],[-9,-11],[-10,-7],[-17,-15],[-15,-7],[-15,-4],[-39,-29],[-15,-7],[0,-11],[23,-34],[38,-65],[13,-20],[13,-21],[20,-27],[13,-13],[7,-4],[12,-3],[10,-6],[6,-7],[15,-24],[2,-10],[3,-31],[-2,-32],[-9,-21],[-10,-45],[1,-18],[8,-31],[0,-17],[-7,-11],[-14,-49],[-5,-38],[-2,-10],[-15,-36],[-19,-49],[-4,-24],[-7,-25],[-12,-49],[-5,-10],[-9,-35],[-2,-11],[-10,-21],[-15,-21],[-9,-7],[-5,-4],[-5,-17],[-2,-11],[-7,-24],[0,-11],[-5,-7],[-7,-24],[-7,-32],[-7,-10],[-8,-8],[-22,-7],[-10,-4],[-44,-15],[-40,-8],[-52,2],[-12,3],[-5,3],[-3,10],[-2,7],[0,11],[-3,17],[-5,10],[-5,7],[-17,-14],[-13,-15],[-19,-42],[-5,-14],[-7,-21],[-14,-21],[-7,-25],[0,-17],[-4,-31],[-10,-18],[-10,-11],[-14,-7],[-18,6],[-23,10],[-22,-1],[-12,-10],[-27,-36],[-10,-7],[-26,-32],[-8,-7],[-17,-11],[-10,-14],[-39,-33],[-36,-29],[-13,-7],[-19,-14],[-10,-15],[-2,-10],[-12,-21],[-15,-11],[-10,-11],[-17,-28],[-12,-14],[-7,6],[-3,21],[2,11],[-3,17],[-10,10],[-5,-4],[-26,-46],[-12,-14],[-22,-18],[-18,0],[-27,-1],[-37,6],[-13,6],[-12,0],[-5,3],[-5,10],[5,8],[9,17],[0,18],[-10,13],[-69,-16],[-5,0],[-10,-4],[-15,-4],[-10,7],[-5,14],[4,55],[-31,86],[-13,45],[-11,52],[-12,24],[-16,37],[-11,49],[0,17],[0,14],[16,108],[-1,28],[-15,34],[-28,48],[-15,17],[-35,33],[-8,11],[-5,6],[-8,31],[-3,21],[-5,14],[-8,14],[-10,17],[-10,3],[-9,-14],[-7,-25],[-5,-28],[-2,-14],[-10,-10],[-10,-8],[-75,-109],[-22,-25],[-21,-43],[-3,-7],[-26,-49],[-25,-43],[-50,-112],[-14,-46],[-24,-73],[-41,-74],[-21,-63],[-14,-43],[-24,-49],[-44,-81],[-17,-35],[-4,-39],[-9,-45],[-19,-70],[-24,-67],[-16,-73],[-5,-21],[11,-20],[5,-7],[50,-23],[44,-6],[8,-6],[8,-14],[2,-21],[1,-24],[10,-14],[5,-3],[7,-14],[1,-34],[-2,-46],[-13,-108],[-14,-49],[-21,-87],[-2,-28],[6,-44],[3,-42],[-8,-18],[-12,-14],[-24,-25],[-22,-25],[-15,-18],[-9,-18],[-7,-38],[-5,-14],[-17,-28],[-12,-8],[-5,0],[-23,6],[-20,28],[-22,27],[-23,16],[-35,13],[-25,0],[-7,3],[-13,6],[-7,4],[-10,3],[-4,-6],[-1,-1],[-13,-7],[-19,-32],[-12,-11],[-10,0],[-15,-1],[-22,-1],[-15,3],[-30,27],[-10,4],[-7,3],[-13,6],[-10,10],[-7,4],[-15,-8],[-13,3],[-20,7],[-17,17],[-17,-4],[-23,13],[-25,30],[-20,35],[-11,27],[3,10],[7,15],[2,10],[-8,10],[-5,7],[-12,7],[-15,-1],[-27,-4],[-10,0],[-3,24],[4,52],[21,139],[18,81],[22,60],[11,38],[7,25],[12,31],[7,28],[2,35],[23,112],[12,56],[21,52],[68,120],[31,64],[7,17],[3,11],[-5,17],[-8,14],[-13,10],[-10,10],[-5,7],[0,14],[2,13],[5,18],[2,7],[0,7],[-5,3],[-5,4],[-12,6],[-3,7],[-3,24],[-5,35],[-5,7],[-8,6],[-7,4],[-8,-4],[-7,-7],[-12,-4],[-13,0],[-12,-1],[-8,7],[-2,14],[-1,41],[0,14],[-5,24],[1,39],[15,52],[21,81],[7,21],[2,20],[0,11],[2,7],[2,7],[8,14],[2,11],[7,24],[0,21],[-8,24],[-8,10],[-2,10],[-3,11],[-2,7],[-11,20],[-17,17],[-5,7],[-15,10],[-8,6],[-15,4],[-10,6],[-10,7],[-12,6],[-10,4],[-10,3],[-8,3],[-9,-11],[-10,-14],[-12,-4],[-8,-3],[-5,-1],[-12,7],[-8,10],[-8,17],[-2,14],[-5,17],[-8,11],[-8,6],[-22,7],[-7,-4],[-10,-11],[-7,-17],[-8,-11],[-9,-7],[-5,-4],[-8,-7],[-2,-11],[0,-6],[-5,-8],[-4,-7],[-8,-7],[-5,-7],[-7,-4],[-7,0],[-10,-7],[-5,-7],[-5,-11],[-7,-14],[-2,-10],[0,-11],[-3,-7],[-4,-14],[-3,-10],[-2,-14],[-2,-14],[0,-4],[-2,-17],[0,-10],[0,-18],[0,-21],[0,-10],[-4,-24],[-21,-126],[-15,-122],[-14,-84],[-16,-38],[-44,-78],[-21,-46],[-13,-21],[-2,-14],[11,-34],[5,-31],[3,-56],[-2,-38],[1,-24],[-5,-21],[-14,-22],[-35,-15],[-17,-10],[-20,-18],[-9,-28],[-9,-35],[-15,-36],[-2,-24],[3,-21],[0,-14],[-2,-10],[-15,-21],[-7,-14],[-5,-8],[-10,-3],[-22,-1],[-15,-4],[-7,-4],[-5,-3],[-7,-4],[-5,0],[-5,7],[-5,7],[-6,13],[-5,4],[-10,-1],[-17,-7],[-22,-8],[-20,0],[-12,-8],[-10,-10],[-5,-14],[-2,-14],[5,-17],[13,-17],[8,-25],[19,-96],[20,-17],[15,-10],[7,-10],[5,-7],[3,-7],[3,-10],[-3,-18],[1,-20],[0,-14],[-2,-11],[-5,-14],[-5,0],[-8,10],[-12,3],[-12,-7],[-10,-4],[-8,-3],[-7,-4],[-13,10],[-5,7],[-43,51],[-42,37],[-25,13],[-5,3],[-10,-4],[-5,-7],[-5,-14],[-2,-10],[0,-14],[3,-11],[7,-10],[11,-10],[10,-7],[15,-6],[7,-7],[8,-6],[2,-11],[0,-7],[0,-10],[6,-17],[5,-18],[5,-24],[3,-17],[5,-38],[-2,-24],[-4,-21],[-5,-7],[-7,-4],[-8,3],[-17,7],[-5,3],[-5,0],[-5,0],[0,-7],[8,-42],[26,-65],[15,-48],[11,-38],[3,-31],[-2,-25],[-15,-14],[-20,-4],[-17,0],[-8,-1],[-7,-3],[-2,-11],[2,-7],[10,-13],[18,-14],[17,-13],[13,-7],[7,-6],[1,-14],[-3,-11],[-2,-14],[-5,-3],[-7,-4],[-5,-4],[0,-6],[7,3],[20,8],[20,0],[20,1],[20,-3],[10,-3],[15,-10],[12,-14],[13,-20],[25,-38],[0,-6],[0,-7],[-2,-11],[-10,0],[-10,3],[-5,-4],[5,-10],[18,-20],[12,-3],[8,-7],[3,-14],[12,-10],[23,-24],[20,-23],[10,-21],[8,-27],[6,-31],[12,-35],[3,-14],[10,-24],[6,-13],[5,-17],[5,-14],[5,-10],[3,-7],[4,14],[3,7],[5,-17],[3,-7],[7,-14],[8,-14],[12,-13],[13,-17],[10,-31],[6,-24],[-2,-18],[-7,-24],[-17,-39],[0,-21],[1,-66],[5,-24],[38,-44],[10,-17],[6,-17],[5,-24],[6,-45],[8,-35],[2,-24],[1,-14],[0,-10],[1,-7],[-4,-4],[-2,-7],[-10,-7],[-12,-4],[-17,3],[-28,3],[-22,-1],[-25,6],[-20,17],[-8,14],[-5,10],[-7,3],[-5,-3],[2,-11],[18,-20],[18,-20],[8,-28],[-2,-28],[-7,-24],[-5,-31],[0,-21],[-14,-32],[-20,-7],[-12,-1],[-12,6],[-8,4],[-5,-7],[-5,-7],[-7,-4],[-8,-4],[-2,-7],[5,-6],[8,-7],[5,-10],[0,-7],[-16,-88],[-7,-38],[-43,-81],[-10,-21],[-7,-7],[-8,-1],[-15,0],[-12,-7],[-15,-15],[-9,-17],[-5,-7],[0,-14],[0,-7],[5,-10],[6,-14],[0,-7],[0,-7],[-10,-11],[-27,-35],[5,-14],[8,-7],[8,-13],[0,-11],[2,-7],[3,-13],[3,-11],[5,0],[7,11],[10,11],[10,3],[9,1],[23,-7],[7,-6],[26,-38],[15,-20],[18,-48],[13,-38],[0,-28],[-2,-31],[-9,-45],[-7,-35],[-19,-43],[-41,-60],[-32,-56],[-21,-32],[-18,-15],[-7,0],[-10,-11],[-5,-7],[-2,-7],[-33,-84],[-15,-32],[3,-6],[12,-17],[21,-28],[5,-20],[12,-7],[18,-3],[7,7],[13,1],[5,-11],[8,-69],[4,-97],[-7,-24],[-7,-8],[-8,-7],[-4,-7],[-3,-10],[5,-7],[25,-6],[18,-10],[20,-17],[10,-20],[15,-31],[8,-17],[20,-17],[23,-13],[12,-7],[8,-14],[2,-17],[3,-17],[3,-24],[-12,-32],[-17,-49],[-2,-28],[-7,-28],[-9,-35],[-9,-29],[-5,-23],[-10,-28],[-9,-25],[-14,-39],[-5,-21],[-12,-35],[-7,-24],[0,-7],[5,-7],[8,-17],[3,-14],[-3,-10],[-7,-4],[-3,10],[-5,7],[-7,3],[-5,-7],[-5,-10],[-5,-14],[-2,-14],[5,-14],[13,-10],[7,-14],[11,-17],[5,-13],[0,-7],[-7,-11],[-8,-4],[-17,-7],[-22,3],[-23,-1],[-15,0],[-14,-4],[-10,-1],[-10,4],[-13,6],[-15,20],[-7,11],[-3,17],[-1,21],[0,28],[-3,10],[-5,10],[-2,14],[-6,24],[-10,31],[-10,24],[-6,28],[0,20],[0,7],[-5,0],[-5,-7],[-10,-7],[-12,-7],[-17,-18],[-22,-15],[-13,-4],[-9,0],[-13,3],[-10,10],[-12,3],[-10,4],[-10,-4],[-13,6],[-7,14],[-13,17],[-10,7],[-12,6],[-10,7],[-11,10],[-5,14],[-7,24],[-16,45],[-8,31],[-13,65],[-1,21],[0,19],[-3,12],[-5,14],[-5,7],[-2,-7],[5,-14],[3,-14],[-5,-35],[-2,-10],[-2,-14],[-8,-18],[-12,-14],[-9,-7],[-10,-8],[-8,4],[-7,3],[-1,21],[-2,7],[-10,-11],[0,-14],[-2,-10],[-5,-11],[-7,-7],[-10,0],[-10,-1],[-5,0],[-10,-7],[-7,-4],[-5,4],[-8,6],[-7,17],[-5,14],[-3,14],[-8,24],[0,17],[-3,11],[-5,0],[-2,-7],[-5,-11],[-5,-4],[-5,0],[-7,-3],[-1,76],[-1,28],[-12,6],[-5,0],[-8,-7],[-9,-14],[-15,-25],[-24,-49],[-5,-11],[-14,-28],[-17,-25],[-19,-25],[-25,-25],[-12,-7],[-18,3],[-7,3],[-10,10],[-3,7],[-2,14],[-1,24],[-3,31],[0,28],[-1,77],[-24,96],[-13,66],[-6,58],[-3,7],[-2,-7],[-3,-7],[-7,-7],[-5,0],[-7,3],[-5,7],[0,7],[2,10],[2,35],[-1,45],[0,12],[2,16],[0,24],[0,7],[0,7],[-5,0],[-5,4],[-8,3],[-2,10],[-1,35],[0,7],[0,7],[-5,10],[-8,7],[-5,3],[0,7],[0,7],[2,7],[3,7],[0,7],[-10,10],[-5,3],[-3,7],[0,11],[-3,17],[2,21],[0,17],[0,24],[-4,52],[-3,45],[-3,18],[-2,10],[2,7],[5,11],[5,10],[-1,24],[-2,7],[-3,7],[-2,7],[-8,7],[-12,3],[-5,-25],[0,-7],[-10,-10],[-9,-11],[-5,-14],[-2,-7],[-5,-4],[-13,14],[-2,7],[2,21],[0,7],[-5,3],[-15,-14],[-8,6],[-28,52],[-5,13],[-5,21],[-10,34],[-21,38],[-5,10],[-5,4],[-7,-1],[-8,0],[-7,3],[-5,4],[-5,0],[-10,3],[-5,-7],[-12,-8],[-13,-3],[-15,-4],[-15,6],[-20,24],[-10,31],[-10,24],[-3,45],[-1,7],[0,21],[5,24],[4,18],[0,6],[0,18],[-10,13],[-8,14],[-10,7],[-7,6],[-5,11],[-3,7],[-3,10],[3,7],[5,7],[9,21],[12,21],[15,32],[7,24],[2,8],[0,6],[-7,-3],[-15,-28],[-36,-57],[-15,-28],[-4,-4],[-8,7],[-5,10],[-3,10],[0,18],[0,28],[4,31],[2,38],[-3,38],[2,7],[3,11],[-1,7],[-2,24],[-1,21],[-2,14],[-8,17],[0,14],[-3,6],[2,11],[3,7],[7,18],[2,10],[3,17],[-3,14],[-8,28],[-8,38],[-3,27],[0,25],[2,31],[2,21],[5,17],[2,14],[10,11],[-1,17],[-2,11],[2,14],[5,10],[2,7],[5,11],[7,14],[10,7],[7,18],[5,14],[2,14],[2,14],[-2,17],[7,11],[10,3],[10,11],[4,14],[3,11],[-1,20],[0,18],[-8,17],[-12,27],[-13,28],[-20,23],[-18,24],[-25,20],[-33,31],[-32,26],[-16,14],[-17,10],[-25,9],[-22,10],[-28,13],[-15,7],[-35,2],[-19,0],[-25,-5],[-45,-4],[-22,-1],[-15,3],[-64,5],[-15,0],[-25,-5],[-15,0],[-22,-4],[-7,-4],[-13,0],[-29,-8],[-37,-15],[-23,-4],[-14,-11],[-25,-11],[-5,-7],[-14,-8],[-5,-3],[-40,-29],[-61,-47],[-7,0],[-10,-11],[-29,-22],[-37,-36],[-12,-7],[-25,-25],[-5,-3],[-44,-36],[-44,-40],[-41,-43],[-10,-11],[-10,-10],[-7,-14],[-163,-224],[-28,-60],[-10,-24],[-12,-32],[-9,-18],[-19,-56],[-10,-24],[-24,-63],[-30,-105],[-17,-63],[-7,-46],[-7,-24],[-2,-7],[-14,-74],[-2,-7],[0,-10],[-2,-17],[-5,-32],[1,-55],[0,-25],[4,-45],[5,-62],[1,-24],[8,-49],[8,-41],[3,-10],[10,-45],[8,-24],[3,-7],[18,-66],[10,-34],[13,-45],[16,-62],[13,-45],[8,-27],[13,-34],[13,-38],[23,-69],[5,-3],[23,-58],[29,-59],[7,-20],[6,-14],[2,-7],[13,-17],[38,-41],[20,-23],[15,-3],[12,7],[24,22],[42,18],[17,11],[8,-3],[10,-17],[18,-14],[5,-3],[7,-10],[28,-27],[30,-30],[8,-11],[35,-30],[20,-13],[32,-17],[23,-13],[15,-6],[20,-7],[20,-6],[49,-9],[15,0],[13,1],[27,8],[19,7],[8,0],[5,11],[5,7],[4,17],[-3,39],[0,27],[4,25],[7,24],[13,18],[2,10],[2,8],[0,6],[7,21],[5,25],[7,49],[7,21],[-3,14],[0,10],[-5,10],[1,5],[1,6],[5,0],[7,-3],[5,3],[5,4],[5,10],[7,1],[8,0],[8,-4],[7,-6],[10,0],[2,8],[5,13],[5,11],[7,-7],[-2,-21],[-2,-14],[-2,-14],[-5,-10],[-5,-7],[-7,-11],[-13,-11],[-4,-10],[0,-18],[-2,-14],[0,-7],[24,11],[8,-10],[15,-17],[8,-13],[12,-28],[11,-41],[0,-14],[3,-35],[5,-20],[16,-10],[17,0],[15,4],[12,-3],[13,-3],[17,-13],[15,-24],[16,-31],[12,-17],[18,-6],[10,-7],[5,-3],[7,-11],[8,-48],[4,-73],[6,-62],[3,-42],[8,-20],[0,-18],[-5,-14],[-4,-14],[0,-14],[10,-13],[10,7],[22,15],[27,21],[10,8],[29,4],[15,0],[18,-13],[10,-7],[15,-6],[7,-10],[13,-17],[20,-45],[8,-24],[5,-21],[1,-41],[-5,-28],[-7,-25],[1,-14],[0,-27],[0,-14],[-9,-35],[-2,-14],[-15,-32],[-43,-84],[-27,-29],[-17,-14],[-15,-18],[-4,-18],[-12,-28],[-3,-14],[13,-10],[5,4],[7,0],[8,-3],[5,-4],[5,-3],[5,-7],[42,-16],[23,-10],[12,8],[12,24],[12,18],[7,4],[13,0],[12,14],[7,18],[8,4],[24,0],[13,1],[10,4],[9,3],[10,1],[5,3],[10,-3],[10,-7],[8,1],[5,0],[7,3],[5,1],[7,-4],[8,1],[7,0],[15,-10],[8,-7],[12,-10],[8,-14],[5,-10],[8,-20],[5,-14],[5,-21],[10,-20],[13,-14],[8,-7],[12,-3],[12,-3],[11,-13],[5,-11],[0,-17],[-2,-14],[0,-24],[0,-25],[1,-31],[0,-24],[-2,-31],[1,-25],[5,-27],[3,-18],[5,-17],[3,-21],[2,-10],[5,-3],[5,0],[8,-3],[7,-11],[6,-13],[5,-14],[10,-14],[15,-13],[13,-14],[5,-6],[5,-11],[2,-10],[1,-17],[2,-21],[8,-31],[8,-24],[5,-21],[3,-14],[5,-24],[6,-24],[7,-17],[3,-21],[0,-14],[-4,-10],[-5,-11],[-5,-14],[-5,-10],[-5,-11],[-7,0],[-20,-1],[-20,3],[-5,3],[-5,11],[-10,6],[-5,11],[-3,13],[-5,7],[-5,4],[-2,-7],[-2,-7],[-3,-18],[3,-24],[0,-17],[1,-21],[-2,-32],[3,-27],[0,-21],[3,-14],[2,-14],[1,-14],[-3,-17],[-2,-10],[0,-28],[1,-18],[5,-45],[6,-20],[5,-17],[5,-21],[5,-7],[5,0],[10,4],[5,0],[10,0],[15,8],[7,0],[5,-7],[0,-10],[0,-18],[3,-17],[5,-15],[18,-33],[8,-10],[5,-3],[5,3],[2,11],[5,10],[7,1],[8,-11],[5,-10],[3,-10],[2,-7],[0,-10],[3,-11],[0,-13],[0,-18],[3,-10],[3,-25],[3,-17],[0,-17],[0,-28],[1,-21],[0,-17],[0,-21],[3,-21],[3,-17],[0,-17],[3,-18],[0,-17],[0,-10],[3,-14],[3,-24],[0,-14],[3,-21],[2,-17],[1,-11],[0,-17],[3,-14],[0,-14],[0,-14],[-2,-14],[0,-17],[-2,-16],[0,-8],[-2,-18],[-3,-17],[-2,-18],[-2,-14],[-2,-17],[-7,-18],[0,-6],[0,-11],[0,-14],[3,-7],[10,-17],[2,-7],[0,-10],[1,-7],[0,-14],[3,-21],[0,-17],[3,-21],[2,-13],[0,-11],[3,-17],[0,-11],[3,-8],[3,-16],[5,-13],[3,-14],[2,-7],[3,-7],[2,-10],[3,-11],[0,-14],[0,-13],[3,-14],[-2,-21],[0,-24],[1,-25],[0,-27],[-2,-25],[0,-21],[-2,-21],[-2,-13],[0,-14],[0,-11],[3,-10],[3,-14],[2,-17],[0,-7],[1,-17],[-3,-7],[1,-18],[-3,-7],[5,-24],[6,-7],[2,-7],[3,-13],[0,-14],[0,-25],[1,-17],[0,-31],[0,-25],[1,-13],[-8,-14],[-7,-11],[-5,-4],[-2,11],[0,7],[-1,13],[-2,11],[-3,17],[-3,28],[-3,20],[0,25],[0,7],[-5,-7],[-2,-11],[-5,-14],[-5,-10],[0,-14],[-2,-11],[-2,-14],[-3,-10],[-7,-11],[-5,-10],[-7,-8],[-7,-3],[-5,-4],[-10,10],[-5,7],[-3,7],[-5,17],[-5,17],[-6,17],[-2,18],[-3,14],[0,10],[-5,3],[-5,-10],[-2,-14],[-2,-18],[-3,-21],[-2,-10],[-2,-17],[-3,-11],[-4,-10],[-3,-7],[-7,-11],[-7,-11],[-5,-7],[-5,-10],[-10,-18],[-5,3],[-7,28],[-8,31],[-3,31],[-5,3],[-5,-3],[-8,-4],[-9,-7],[-17,-18],[-20,-18],[-10,-4],[-12,-4],[-13,4],[-9,-1],[-10,0],[-10,-4],[-10,-7],[-12,-11],[-15,-18],[-10,-17],[-5,13],[-5,-3],[-7,-11],[-7,-14],[-5,-14],[-9,-18],[-10,-17],[-7,-11],[-5,-10],[-8,-8],[-12,-14],[-12,-11],[-5,-7],[-2,-10],[8,-14],[5,-10],[5,-10],[2,-11],[3,-17],[0,-10],[-4,-18],[-3,-10],[-7,-1],[-8,0],[-10,0],[-7,7],[-5,6],[-5,11],[0,10],[-1,14],[-2,10],[-5,4],[-5,-4],[-7,-7],[-20,-15],[-7,-3],[-15,3],[-8,0],[-7,3],[-25,23],[-13,7],[-10,17],[0,10],[2,11],[0,10],[-13,28],[-20,51],[-11,42],[-5,20],[-6,52],[-5,24],[-6,59],[-1,49],[-3,41],[0,21],[12,32],[12,21],[9,11],[37,46],[5,14],[-3,7],[-15,3],[-12,-4],[-10,-11],[-7,0],[1,69],[5,32],[4,10],[10,25],[12,28],[14,46],[10,17],[12,18],[17,28],[9,21],[-7,-7],[-12,-21],[-7,-13],[-2,-2],[-20,-24],[-17,-11],[-8,-4],[-10,-7],[-9,-4],[-5,4],[-13,20],[-16,34],[-12,21],[-11,31],[-5,34],[-11,63],[-5,38],[2,7],[5,10],[7,14],[-1,35],[10,38],[49,30],[15,7],[17,14],[5,14],[4,18],[0,21],[0,7],[-5,20],[-6,18],[-15,55],[-8,41],[-13,7],[-7,-1],[-8,4],[-25,30],[-5,3],[-3,7],[0,11],[5,17],[2,7],[-20,41],[0,11],[-5,7],[-8,10],[-10,13],[-3,35],[-3,10],[-10,17],[-3,11],[0,10],[0,10],[-5,7],[-3,11],[-12,27],[-18,31],[-28,30],[-13,17],[-15,24],[-13,27],[-5,18],[-8,31],[-3,62],[-3,38],[-6,35],[-3,31],[0,14],[-8,27],[-10,38],[-3,14],[-8,38],[-7,10],[-13,7],[-5,6],[-13,35],[0,7],[-5,17],[-3,24],[-3,14],[-23,41],[-7,17],[-18,17],[-8,21],[-13,37],[0,21],[-3,21],[-5,28],[-8,17],[-17,16],[-8,21],[-18,20],[-20,31],[-8,14],[-5,10],[-5,-4],[-4,-17],[0,-14],[-10,-25],[-12,-21],[-7,0],[-6,28],[-3,41],[-5,10],[-7,14],[-3,7],[-15,27],[-9,27],[-16,-48],[-5,10],[-3,10],[-2,11],[-3,7],[-2,10],[-3,10],[-3,7],[-2,-10],[-5,-25],[-6,-35],[-5,-24],[-7,0],[-1,24],[0,31],[1,56],[4,62],[3,14],[5,6],[4,5],[17,32],[-7,3],[-12,-11],[-13,-7],[-5,3],[-5,4],[-12,10],[-11,-16],[-3,8],[-12,-5],[-9,15],[-11,33],[-12,-6],[-12,3],[-10,10],[-5,0],[-8,0],[-4,-4],[-13,-7],[-17,-14],[-10,-4],[-7,0],[-5,0],[-8,6],[-5,14],[-13,31],[-2,3],[-3,4],[-5,-11],[-2,-17],[-7,-46],[-4,-7],[-10,0],[-13,3],[-10,14],[-7,6],[-5,-3],[5,-21],[8,-27],[18,-59],[3,-21],[-5,-21],[-2,-14],[0,-20],[0,-11],[-2,-7],[-12,-35],[-21,-66],[-7,-21],[-8,-8],[-14,-24],[-22,-39],[-2,-14],[5,0],[12,-10],[4,-13],[-2,-60],[-3,-24],[-11,-56],[-12,-63],[1,-35],[3,-59],[-2,-34],[-2,-32],[3,-7],[10,-24],[0,-7],[-7,-31],[-6,-45],[-8,-14],[-7,-15],[-19,-31],[-19,-36],[-15,-24],[-12,-18],[-25,-33],[-19,-17],[-7,-14],[-5,-7],[-5,-18],[-2,-21],[0,-10],[-3,-80],[-3,-17],[-2,-25],[-10,-7],[-12,-4],[-17,0],[-10,-4],[-10,0],[-5,3],[-13,14],[-10,24],[-8,10],[-2,-6],[-2,-5],[-8,-10],[-28,-57],[-8,-14],[-9,-14],[-5,3],[-1,7],[0,7],[0,38],[0,14],[-8,0],[-17,-14],[-22,-15],[-22,-15],[-8,0],[-9,-4],[-47,-18],[-20,-15],[-12,-11],[-7,-3],[-8,0],[-5,3],[-5,3],[0,7],[-3,21],[-1,52],[-2,21],[-5,-11],[-2,-17],[-7,-25],[-10,-10],[-5,3],[-10,3],[-8,28],[-8,10],[-7,-18],[-5,-3],[-5,20],[-3,24],[-2,7],[-18,28],[-20,20],[-8,20],[-8,11],[-15,20],[-25,10],[-6,-3],[-13,-19],[-2,-28],[-5,-45],[2,-87],[0,-17],[-5,-7],[-5,-4],[-7,-3],[-7,-7],[-3,-11],[-4,-14],[0,-10],[-2,-21],[-5,0],[-6,10],[-2,24],[-1,17],[-5,4],[0,-7],[1,-14],[-3,-18],[-9,-10],[-5,0],[-10,-4],[-7,-7],[-8,-4],[-7,3],[-10,17],[-18,24],[-8,7],[-7,-7],[-15,-15],[-4,-21],[-6,-114],[-2,-59],[1,-28],[-17,-49],[-10,-11],[-19,-11],[-37,-15],[-10,-14],[-5,-21],[-4,-35],[-4,-49],[-15,-35],[-9,-10],[-5,-15],[-6,-73],[-7,-62],[-9,-25],[-10,-11],[-10,-17],[-4,-35],[-5,-45],[-2,-25],[-10,-26],[-6,-16],[-5,-28],[-2,-10],[-7,-11],[-10,-7],[-8,0],[-12,24],[-1,7],[-2,27],[-10,-14],[-5,-21],[-2,-17],[0,-21],[-7,-42],[-12,-21],[-4,-4],[-8,0],[-12,7],[-5,3],[-5,-7],[-15,-15],[-24,-18],[-18,-7],[-5,-7],[-4,-7],[-10,-28],[-17,-35],[-19,-29],[-17,-25],[-10,-24],[-11,-56],[-12,-18],[-8,-7],[-27,-11],[-12,-11],[-2,-10],[2,-14],[11,-45],[5,-21],[6,-45],[-4,-62],[-4,-46],[-7,-24],[-12,-32],[-5,-14],[0,-7],[0,-10],[10,0],[7,7],[8,4],[5,-7],[2,-10],[1,-17],[-5,-21],[-7,-21],[-5,-11],[-14,-39],[-15,-17],[-14,-8],[-13,3],[-5,4],[-2,7],[-13,17],[-26,47],[-5,7],[-10,17],[-7,10],[-16,21],[-7,10],[-5,10],[-8,17],[-5,18],[-8,13],[-8,17],[-5,11],[-5,10],[-5,7],[-5,10],[-7,3],[-5,0],[-5,-7],[-5,-11],[3,-20],[-3,-11],[-2,-14],[-5,-14],[-4,-31],[-7,-11],[-8,-3],[-7,13],[-8,14],[-10,13],[-10,14],[-8,0],[-5,-4],[-22,-14],[-9,-18],[-3,-10],[-4,-32],[3,-27],[10,-21],[15,-38],[6,-20],[0,-25],[-4,-28],[0,-31],[-2,-31],[-5,-11],[-7,-10],[-7,-8],[-18,-7],[-10,0],[-7,0],[-12,-1],[-5,3],[-8,4],[-7,6],[-3,7],[-5,0],[-7,-3],[0,-7],[-2,-14],[-3,-18],[-14,-11],[-13,-7],[-7,-4],[-10,4],[-5,3],[-10,7],[-5,6],[-8,7],[-10,27],[-5,25],[-1,17],[-2,14],[-3,17],[-13,10],[-9,0],[-10,0],[-15,-8],[-12,-4],[-8,0],[-15,-4],[-10,-4],[-7,-7],[-7,-7],[-5,-7],[-29,-22],[-32,-14],[-13,-4],[-7,6],[-13,4],[-7,-1],[-8,-3],[-10,3],[-17,-1],[-10,10],[-5,14],[-5,14],[-8,7],[-7,-1],[-8,0],[-12,3],[-13,7],[-7,7],[-10,6],[-5,-7],[-2,-14],[0,-21],[3,-41],[5,-21],[16,-48],[-5,-21],[-17,-25],[-10,3],[-5,21],[-5,24],[-8,52],[-6,28],[2,31],[2,28],[3,17],[9,32],[2,24],[2,21],[-3,28],[3,21],[-8,24],[-5,20],[-6,63],[-1,27],[-13,38],[-15,48],[-16,62],[-6,31],[5,15],[7,14],[8,0],[10,7],[4,14],[0,10],[0,18],[-3,17],[-5,31],[-1,42],[-7,17],[-10,3],[-10,-7],[-13,-4],[-10,0],[-7,13],[-3,11],[-2,14],[-8,13],[-5,11],[-5,6],[-5,0],[-8,-7],[-14,-7],[-8,-4],[-15,3],[-15,13],[-10,11],[-12,17],[-11,20],[-12,17],[-10,10],[-8,3],[-10,-3],[-7,-7],[-7,-11],[-7,-18],[-18,-11],[-12,4],[-8,6],[-5,7],[-2,14],[-3,17],[-3,10],[-5,11],[-5,10],[-7,7],[-8,6],[-7,0],[-10,0],[-7,-2],[-5,-16],[-8,-7],[-7,-21],[-2,-14],[-2,-14],[-8,-7],[-2,-7],[-8,-4],[-7,0],[-12,10],[-11,10],[-2,11],[-3,10],[-8,17],[-5,7],[-7,0],[-5,-4],[-10,-4],[-5,0],[-10,7],[-2,7],[-3,6],[2,11],[3,7],[7,7],[2,11],[0,17],[-8,17],[-12,21],[-10,24],[-11,24],[-7,13],[-13,21],[-8,13],[-5,18],[-6,55],[0,48],[-1,14],[5,18],[7,28],[7,10],[3,18],[-1,21],[7,28],[12,21],[15,11],[17,11],[22,7],[25,15],[12,14],[10,25],[2,24],[-3,10],[-15,21],[-25,23],[-25,24],[-33,23],[-17,14],[-16,17],[-10,20],[-5,28],[-8,27],[-3,42],[-3,7],[-10,17],[-15,3],[-37,-1],[-10,-8],[-12,-14],[-22,-18],[-10,-4],[-10,-3],[-12,3],[-17,3],[-23,9],[-40,31],[-8,10],[-12,-1],[-20,-4],[-17,10],[-5,4],[-10,6],[-20,0],[-7,-4],[-3,-7],[-24,-42],[-2,-11],[-5,-14],[0,-14],[0,-14],[3,-20],[18,-62],[11,-14],[22,-6],[37,-10],[23,-9],[47,-41],[11,-10],[2,-21],[0,-6],[1,-14],[-8,-21],[-11,-24],[-5,-12],[-32,-63],[-9,-25],[-5,-7],[-7,0],[-13,0],[-7,6],[-8,7],[-3,17],[-7,21],[-16,20],[-17,0],[-7,-7],[-17,-25],[-3,-7],[-7,-14],[-4,-18],[0,-10],[0,-24],[-4,-42],[0,-7],[-10,-28],[-9,-21],[-3,-7],[-4,-7],[-5,-4],[-5,-4],[-5,-3],[-12,-7],[-18,-1],[-27,-8],[-7,-3],[-20,13],[-18,20],[-3,11],[-10,44],[-6,25],[-8,44],[0,14],[-8,21],[-2,7],[-10,3],[-5,7],[0,10],[0,7],[-1,14],[-2,7],[-5,3],[-3,-7],[1,-14],[2,-17],[8,-14],[5,-10],[5,-31],[11,-69],[-1,-42],[-3,-10],[-10,-1],[-5,4],[-5,10],[-5,17],[-5,17],[-6,28],[-2,7],[-8,3],[-4,-7],[-8,-11],[-15,-3],[-9,-8],[-8,-10],[-2,-11],[0,-21],[6,-17],[5,-17],[0,-17],[0,-7],[-2,-14],[0,-7],[-5,-14],[-5,-7],[-5,-4],[-4,0],[-5,0],[-15,10],[-8,6],[-18,17],[-15,31],[-13,24],[-5,10],[-7,14],[-18,31],[-25,27],[-33,33],[-23,24],[-2,7],[-5,10],[-3,18],[-5,17],[-1,21],[-5,27],[-3,10],[-7,4],[-8,0],[-2,-7],[0,-7],[0,-14],[3,-11],[0,-7],[0,-7],[-5,-14],[-4,-14],[-10,-3],[-10,-1],[-8,0],[-7,3],[-3,7],[-5,14],[-5,10],[-5,11],[-5,6],[-10,7],[-17,-1],[-15,0],[-10,3],[-8,0],[-5,3],[-7,7],[-10,3],[-10,3],[-13,4],[-9,-1],[-5,-3],[-18,-1],[-17,13],[-8,11],[-7,3],[-5,-11],[2,-6],[6,-14],[15,-41],[3,-21],[-3,-7],[1,-21],[5,-31],[13,-21],[5,-6],[18,-17],[7,-10],[-2,-7],[-3,-7],[-2,-11],[10,-20],[8,-11],[3,-10],[10,-31],[0,-8],[0,-9],[-2,-52],[-2,-18],[-9,-35],[-5,-21],[-4,-24],[-3,-11],[-7,-14],[-12,-4],[-10,-10],[-10,-14],[-14,-22],[-5,-7],[-5,-3],[-5,-4],[-5,3],[-10,28],[-15,20],[-13,17],[-18,20],[-7,4],[-5,0],[-7,-15],[-10,-10],[-5,3],[-13,10],[-5,7],[-10,38],[-5,17],[-1,29],[2,13],[12,38],[2,21],[5,11],[27,59],[9,15],[10,10],[2,11],[-2,10],[-8,7],[-10,-7],[-27,-15],[-24,-4],[-25,3],[-23,6],[-20,6],[-12,7],[-18,13],[-5,10],[-6,10],[-4,11],[2,7],[0,7],[17,42],[17,32],[7,10],[8,4],[19,8],[10,10],[0,11],[-5,13],[-8,4],[-10,-1],[-12,-3],[-15,10],[-13,10],[-2,6],[2,7],[5,11],[17,35],[5,18],[2,17],[0,21],[-14,45],[-2,17],[2,28],[7,28],[7,24],[12,25],[2,14],[-10,17],[-43,39],[1,25],[0,6],[4,16],[9,17],[0,14],[0,14],[-5,14],[-1,17],[0,14],[14,46],[8,14],[17,14],[24,18],[17,11],[22,32],[8,7],[31,57],[2,14],[0,27],[-3,28],[-3,10],[-21,87],[-18,37],[-6,14],[-32,68],[-10,17],[-4,7],[-65,93],[-87,125],[-28,41],[-19,27],[-5,35],[-13,3],[-7,-4],[-13,-7],[-12,3],[-5,3],[-35,37],[-33,31],[-40,30],[-35,33],[-48,22],[-2,1],[-38,13],[-38,13],[-16,5],[-68,24],[-92,21],[-12,3],[-30,3],[-11,-2],[-11,-2],[-7,3],[-100,4],[-12,0],[-59,-5],[-5,-1],[-42,-8],[-102,-6],[-15,-4],[-32,-8],[-67,-12],[-19,-1],[-62,-12],[-47,-29],[-24,-11],[-15,-4],[-22,-8],[-18,-11],[-22,-11],[-24,-10],[-13,-14],[-12,-9],[-14,-10],[-10,-11],[-22,-8],[-10,0],[-30,-8],[-29,-15],[-40,-29],[-17,-14],[-37,-22],[-22,-18],[-41,-29],[-25,-14],[-29,-15],[-18,-8],[-37,-15],[-29,-11],[-22,-18],[-37,-29],[-25,-11],[-27,-11],[-19,-14],[-22,-12],[-10,-7],[-10,-7],[-27,-18],[-34,-29],[-22,-18],[-44,-32],[-17,-16],[-43,-40],[-16,-15],[-16,-15],[-16,-15],[-20,-14],[-14,-11],[-18,-11],[-22,-18],[-22,-15],[-31,-25],[-27,-18],[-23,-14],[-12,-11],[-12,-8],[-7,-3],[-15,-8],[-12,-10],[-20,-25],[-19,-25],[-10,-14],[-7,-14],[-5,-7],[-10,-18],[-14,-18],[-25,-28],[-36,-33],[-20,-14],[-7,-4],[-42,-39],[-29,-29],[-22,-18],[-15,-14],[-22,-22],[-17,-14],[-15,-14],[-17,-18],[-29,-22],[-27,-28],[-29,-33],[-30,-32],[-26,-25],[-15,-18],[-15,-17],[-22,-22],[-22,-32],[-14,-17],[-12,-15],[-65,-75],[-35,-49],[-15,-21],[-17,-22],[-4,-10],[0,-7],[5,-10],[5,-14],[8,-10],[7,-7],[10,-17],[5,-14],[8,-14],[8,-20],[2,-11],[3,-24],[3,-17],[3,-10],[2,-11],[-2,-21],[8,-6],[5,-11],[10,-6],[12,-7],[8,-7],[0,-10],[-2,-14],[-3,-10],[-4,-18],[-3,-10],[-4,-14],[-8,-18],[-2,-14],[0,-14],[1,-21],[0,-17],[-2,-17],[-3,-11],[-9,-21],[-7,-21],[-13,-18],[-4,-14],[-8,-10],[-7,-8],[-7,-3],[-5,-11],[-5,-7],[-7,-7],[-7,-18],[-5,-10],[-5,-11],[-2,-10],[-10,-14],[-5,-7],[-12,-15],[0,-7],[-7,-7],[-8,-7],[-7,7],[-8,27],[-10,7],[-7,-14],[2,-14],[1,-21],[-3,-10],[-2,-14],[0,-11],[-2,-14],[-2,-10],[-5,-7],[-5,-11],[-12,-14],[-5,-7],[-7,-11],[-5,-3],[-8,0],[-9,-8],[-5,-7],[-13,-4],[-7,-7],[-2,-7],[2,-7],[-5,0],[-5,0],[-5,10],[-5,4],[-2,6],[-23,10],[-7,7],[-8,17],[-5,17],[-5,4],[-5,0],[-5,-1],[-5,-3],[-5,0],[-10,-8],[-17,-11],[-7,-3],[-20,-11],[-10,-11],[-9,-11],[-5,-7],[-5,0],[-8,7],[-10,3],[-5,3],[-10,14],[-7,7],[-5,3],[-8,-11],[-7,-14],[-7,-7],[-10,0],[-8,7],[-7,6],[-13,3],[-5,-3],[-9,-7],[-5,-11],[-2,-17],[2,-14],[6,-21],[5,-17],[8,-21],[10,-17],[5,-14],[0,-10],[0,-17],[-2,-14],[-15,-25],[-12,-25],[-7,-10],[-10,-11],[-17,-14],[-32,-26],[-14,-7],[-30,-1],[-8,3],[-5,7],[-4,-3],[0,-14],[-3,-11],[-4,-10],[-10,-11],[-5,-7],[-10,-4],[-7,0],[-5,3],[-5,0],[-8,0],[-14,-11],[-30,3],[-10,-4],[-35,-11],[-4,-1],[-3,7],[0,7],[10,11],[-1,10],[-7,4],[-10,-8],[-7,0],[-5,0],[-5,3],[-8,7],[-7,-7],[-7,-18],[-12,-17],[-8,-4],[-7,-4],[-5,0],[-5,0],[-5,-4],[-5,-3],[-2,-11],[-3,-7],[-17,-14],[-9,-11],[-27,-18],[-20,-18],[-15,-11],[-24,-21],[-8,-4],[-12,-11],[-10,-14],[-9,-14],[-8,-7],[-16,-29],[-3,-7],[-12,-17],[-7,-4],[-10,-18],[-5,-7],[-15,-4],[-5,-7],[-14,-4],[-5,-3],[-10,-1],[-3,-7],[-9,-14],[-7,-17],[-12,-21],[-15,-22],[-12,-21],[-12,-21],[-17,-25],[-10,-18],[-14,-28],[-10,-14],[-11,-22],[-44,-87],[-12,-25],[-10,-21],[-7,-14],[-12,-14],[-8,-11],[-9,-14],[-8,-11],[-9,-14],[-8,-7],[-4,-11],[-22,-24],[-20,-22],[-17,-21],[-17,-28],[-29,-36],[-34,-46],[-11,-18],[-10,-19],[-19,-37],[-9,-19],[-84,-166],[-53,-104],[-17,-18],[-22,-25],[-21,-32],[-49,-91],[-28,-64],[-24,-56],[-27,-67],[-24,-53],[-38,-70],[-51,-81],[-41,-64],[-29,-67],[-17,-39],[-33,-67],[-119,-230],[-7,-13],[-89,-176],[-58,-113],[-82,-155],[-11,-45],[-29,-84],[-19,-43],[-5,-14],[-2,-28],[-21,-63],[-29,-77],[-25,-105],[-24,-73],[-14,-36],[-5,-31],[-12,-32],[-18,-22],[-1,-2],[-12,-25],[-34,-91],[-69,-204],[-31,-80],[-29,-50],[-41,-70],[-16,-43],[-9,-87],[-7,-62],[-4,-39],[-12,-42],[-38,-63],[-17,-32],[-5,-18],[-2,-34],[-6,-73],[-3,-14],[-4,-21],[-2,-21],[-3,-18],[-4,-17],[-10,-25],[-5,-10],[-4,-7],[-8,-14],[-7,-11],[-10,-7],[-5,-18],[-4,-17],[-12,-42],[-5,-28],[-4,-45],[-2,-53],[-1,-34],[-5,-28],[-9,-35],[-15,-39],[-15,-38],[-23,-57],[-19,-49],[-14,-35],[-22,-49],[-9,-35],[-15,-39],[-9,-38],[-12,-42],[-14,-46],[-14,-56],[-2,-31],[-4,-59],[1,-42],[-5,-49],[-2,-21],[-7,-27],[-5,-11],[-5,-11],[-7,-14],[-9,-21],[-7,-28],[-7,-31],[-5,-39],[-2,-34],[-4,-46],[-9,-48],[-12,-46],[-12,-42],[-14,-32],[-7,-21],[-7,-24],[-10,-21],[-2,-14],[-2,-7],[0,-11],[-2,-24],[-2,-35],[-2,-31],[-2,-28],[-7,-38],[-5,-39],[-4,-38],[-2,-28],[-5,-42],[-6,-34],[-3,-21],[-1,-56],[-2,-28],[-2,-42],[0,-27],[-4,-28],[-5,-35],[-4,-28],[-5,-28],[-2,-10],[0,-14],[1,-35],[-2,-31],[-5,-45],[-2,-35],[1,-31],[0,-49],[-1,-49],[-2,-34],[-2,-32],[-2,-24],[0,-21],[-7,-31],[-7,-32],[0,-14],[0,-21],[-1,-41],[-3,-21],[1,-7],[5,-14],[8,-38],[5,-24],[3,-21],[5,-31],[3,-21],[-2,-55],[1,-59],[-1,-56],[-2,-45],[0,-24],[3,-24],[6,-38],[5,-28],[13,-45],[5,-31],[3,-21],[5,-10],[13,-31],[11,-38],[10,-24],[5,-10],[5,-3],[7,-4],[8,4],[12,7],[17,22],[8,3],[7,1],[10,-4],[12,-3],[8,4],[5,4],[5,3],[7,7],[10,4],[5,0],[5,-3],[5,-17],[5,-7],[5,-10],[8,-14],[2,-10],[0,-7],[3,-7],[5,-10],[3,-7],[7,-21],[6,-10],[7,-7],[10,-6],[13,-4],[14,4],[10,-10],[6,-7],[5,-20],[2,-14],[1,-7],[-5,-11],[-5,-10],[0,-11],[0,-20],[1,-32],[3,-17],[0,-17],[10,-3],[-11,-30],[-6,-16],[3,-7],[7,-7],[5,-3],[15,-10],[18,-6],[22,-3],[8,-3],[12,-7],[5,-3],[5,-7],[8,-10],[5,-11],[0,-24],[3,-31],[3,-38],[0,-18],[11,-10],[7,1],[10,-7],[5,-7],[5,-7],[0,-10],[3,-7],[2,-7],[5,-3],[5,0],[13,0],[10,1],[10,-4],[7,1],[12,0],[8,0],[7,0],[10,-3],[8,-3],[5,0],[5,4],[9,7],[8,0],[5,4],[7,-10],[5,-11],[11,-13],[7,-3],[8,-4],[4,0],[8,4],[5,4],[7,10],[2,11],[3,14],[5,7],[7,4],[7,3],[15,1],[8,0],[10,-3],[9,0],[8,0],[5,11],[2,14],[7,14],[5,0],[12,4],[13,4],[15,0],[12,4],[7,0],[8,11],[2,10],[0,7],[7,11],[10,28],[7,17],[12,25],[12,7],[8,-3],[10,0],[12,4],[32,15],[15,7],[10,4],[4,7],[8,7],[10,8],[4,7],[3,7],[5,10],[7,7],[5,1],[5,-4],[5,-7],[5,1],[7,-4],[10,-3],[8,0],[7,-3],[5,-3],[-2,-7],[-5,-7],[-5,-4],[5,-3],[8,0],[5,-3],[7,-7],[8,-10],[7,-10],[5,3],[5,7],[5,-3],[3,-7],[2,-7],[-2,-10],[-5,-11],[-7,-10],[-7,-11],[2,-7],[3,-7],[2,-7],[5,0],[13,-3],[7,4],[7,7],[8,7],[10,4],[2,7],[7,18],[5,7],[5,3],[5,4],[5,-3],[2,-11],[1,-14],[7,-3],[5,4],[5,0],[7,0],[8,-10],[5,-14],[0,-10],[8,0],[7,0],[5,0],[5,-6],[5,0],[7,3],[5,1],[8,0],[5,-7],[5,-7],[0,-14],[-2,-10],[5,-10],[5,0],[5,-4],[5,-10],[8,-10],[2,-7],[0,-14],[1,-14],[2,-10],[6,-21],[7,-20],[5,-11],[3,-10],[3,-10],[0,-14],[2,-11],[6,-10],[-3,-14],[-2,-17],[3,-28],[0,-10],[-2,-14],[0,-11],[0,-24],[-4,-10],[-3,-11],[-7,-4],[-5,-3],[-7,-7],[-10,-1],[-10,-3],[-12,-8],[-10,0],[-23,-4],[-19,-1],[-10,-7],[-10,-7],[-5,-14],[-2,-18],[0,-17],[3,-7],[5,-10],[0,-14],[8,-17],[25,-20],[15,-17],[5,-4],[0,-13],[-2,-11],[3,-7],[2,-7],[5,-10],[13,-13],[5,-4],[7,-6],[3,-11],[5,-10],[-4,-35],[-3,-17],[-7,-21],[-7,-21],[-5,-11],[-2,-7],[-7,0],[-15,3],[-5,0],[-8,-4],[-4,-7],[-10,-11],[-8,-3],[-12,-1],[-7,3],[-10,7],[-33,-1],[-7,3],[-5,0],[-8,-3],[-4,-4],[-8,-14],[-5,-7],[-7,-7],[-7,-4],[-10,-4],[-5,0],[-2,-10],[27,-38],[11,-27],[2,-7],[0,-7],[3,-7],[8,-17],[2,-10],[6,-14],[2,-7],[3,-7],[2,-7],[-2,-7],[5,-27],[3,-18],[5,-10],[3,-10],[0,-18],[0,-14],[0,-10],[-2,-14],[-5,-14],[-9,-28],[-5,-7],[-2,-11],[-8,-14],[-9,-17],[-7,-21],[-5,-11],[-7,-11],[-3,-13],[-4,-18],[-7,-38],[-3,-14],[1,-18],[2,-13],[3,-7],[3,-11],[0,-20],[0,-14],[-2,-7],[0,-7],[-2,-11],[-3,-7],[0,-10],[1,-11],[2,-13],[-7,-32],[-7,-21],[-7,-17],[-5,-15],[-5,-3],[-5,-4],[-4,-7],[-3,-7],[-21,-49],[-5,-14],[-7,-11],[-10,-10],[-8,-8],[-7,0],[-5,7],[-6,35],[-2,10],[-5,7],[-5,3],[-5,3],[-8,0],[-5,-3],[-4,-15],[-3,-7],[-2,-7],[-5,-6],[-20,37],[-8,7],[-5,3],[-7,7],[-11,17],[-28,75],[-8,21],[-7,21],[-3,6],[-5,0],[-5,-7],[-5,-10],[-7,-1],[-5,4],[-3,7],[-7,17],[-8,13],[-10,14],[-7,-4],[0,-17],[3,-31],[3,-42],[3,-34],[3,-14],[2,-11],[1,-24],[2,-21],[1,-13],[2,-14],[0,-18],[8,-20],[0,-11],[1,-17],[-3,-14],[-2,-10],[-2,-7],[0,-11],[0,-21],[0,-7],[-4,-17],[-5,0],[-8,-4],[-10,7],[-7,10],[-6,10],[-5,4],[-5,-1],[-4,-7],[3,-34],[3,-28],[1,-90],[0,-35],[-2,-28],[0,-7],[1,-7],[2,-7],[-2,-20],[-2,-14],[-3,-11],[-1,-66],[0,-28],[-2,-45],[1,-24],[0,-17],[8,-11],[0,-10],[-3,-11],[1,-10],[-3,-14],[-4,-17],[0,-7],[2,-11],[-12,-17],[-12,-15],[-5,-3],[-10,-4],[-5,3],[-5,-3],[-9,-1],[-6,18],[0,20],[0,14],[-5,0],[-4,-49],[0,-10],[3,-35],[2,-17],[1,-17],[0,-18],[-5,-21],[-4,-17],[-15,-18],[-7,-4],[-27,-66],[-7,-18],[-7,-17],[-10,-4],[-20,6],[-25,3],[-5,3],[-12,-14],[-5,-4],[-5,-3],[-5,3],[-5,10],[-5,7],[-7,14],[-6,10],[-2,10],[-3,11],[5,10],[-3,25],[-3,34],[4,73],[2,14],[0,7],[0,7],[-5,-14],[-4,-7],[-3,-7],[-2,-7],[-5,-4],[-5,0],[-5,7],[-8,10],[-5,0],[-2,-7],[5,-28],[3,-24],[1,-24],[-3,-7],[-2,-11],[-2,-17],[-5,-4],[-5,4],[-5,3],[-10,17],[-6,7],[-2,10],[0,11],[9,14],[-5,20],[-2,7],[-1,21],[0,11],[0,24],[-11,20],[-5,7],[-5,17],[-2,11],[-3,17],[-1,31],[3,21],[-1,14],[0,7],[-2,10],[-3,11],[0,7],[5,3],[7,0],[8,4],[-1,7],[8,21],[7,25],[2,7],[-3,10],[-7,7],[-3,13],[-10,38],[-5,11],[-5,3],[-3,7],[0,7],[-8,6],[-5,0],[-5,14],[-7,7],[-15,-1],[-5,-3],[-5,3],[-5,7],[-3,17],[-5,38],[-1,11],[-2,13],[-3,21],[0,11],[-3,20],[-13,14],[-12,3],[-27,6],[-13,3],[-10,3],[-7,7],[-13,21],[-5,6],[-13,10],[-7,11],[-8,-1],[-9,-3],[-13,-8],[-7,-7],[-5,-3],[-2,-7],[-5,-14],[-7,-11],[-8,-11],[-7,-7],[-7,-11],[-5,-10],[-10,-14],[-2,-7],[-8,-4],[-4,0],[-5,0],[-3,-7],[-7,-11],[-5,-21],[-2,-14],[-2,-24],[0,-31],[3,-7],[-5,-25],[-2,-10],[1,-35],[0,-14],[0,-7],[-2,-14],[-5,-31],[-2,-10],[0,-7],[-3,-7],[-4,-11],[-5,-14],[-5,-7],[-2,-7],[-10,-18],[-7,-14],[-3,-7],[-4,-7],[-8,-7],[-7,-4],[-10,-7],[-7,-4],[-17,-11],[-5,0],[-5,-3],[-5,-4],[-18,17],[-5,7],[-10,6],[-7,0],[-8,3],[-5,7],[-15,24],[-5,10],[-5,11],[0,7],[-41,43],[-7,11],[-5,10],[-6,7],[-5,10],[-7,14],[-10,17],[-6,20],[-5,25],[-3,10],[0,28],[2,14],[-2,13],[-3,14],[2,14],[2,7],[-2,14],[-5,21],[-3,10],[-8,14],[-7,10],[-8,17],[-3,7],[-2,7],[-8,-1],[-5,4],[-7,10],[-3,17],[5,14],[2,14],[5,11],[-5,14],[-3,6],[-7,7],[-13,0],[-7,0],[-5,-8],[-7,-10],[-3,-14],[-4,-7],[-5,-14],[-5,-4],[-7,-14],[-8,-7],[-9,-11],[-8,-7],[-5,0],[-17,13],[-5,7],[-5,3],[0,-10],[0,-10],[0,-18],[-4,-21],[-3,-7],[-5,-7],[-12,0],[-15,6],[-7,4],[-8,-1],[-7,-3],[-8,3],[-5,7],[-2,7],[-6,13],[-5,18],[-2,6],[-3,7],[-5,4],[-7,-4],[-8,7],[-8,20],[-7,17],[-5,11],[-8,24],[0,7],[-5,6],[0,7],[4,11],[0,7],[-5,7],[-2,7],[2,7],[10,7],[5,3],[5,4],[7,4],[10,7],[5,0],[5,7],[-3,17],[2,8],[3,7],[9,7],[10,10],[5,8],[0,13],[-13,4],[-17,-1],[-15,0],[-7,3],[-5,7],[-3,10],[0,10],[-3,18],[-5,13],[-3,18],[0,14],[2,17],[2,14],[8,21],[12,25],[34,49],[4,11],[3,10],[0,14],[4,28],[2,14],[10,11],[12,14],[-15,17],[-10,10],[-7,7],[-6,7],[3,10],[2,7],[0,7],[-5,7],[-10,3],[-10,3],[-5,3],[-2,7],[-1,7],[-5,0],[-5,3],[-7,4],[-8,6],[-10,4],[-7,-1],[-10,10],[0,7],[7,4],[0,7],[-10,28],[-10,13],[-5,10],[-3,11],[5,17],[7,18],[5,7],[4,14],[3,10],[-5,11],[-15,-8],[-5,-3],[-15,-1],[-5,0],[-5,3],[-13,73],[-3,10],[-3,25],[-2,13],[-8,14],[-3,7],[-5,-4],[-5,-3],[-7,-4],[-5,3],[-5,11],[-3,6],[3,7],[7,8],[8,3],[4,4],[3,7],[2,14],[-3,10],[-7,-4],[-7,-7],[-8,-3],[-12,-4],[-7,0],[-20,2],[-10,4],[-8,-4],[-5,-4],[-4,-7],[-3,-10],[-10,-7],[-7,-8],[-5,0],[-5,-7],[-2,-7],[-2,-14],[-5,-10],[-5,-4],[-22,-25],[-7,-7],[-8,-11],[-7,-7],[-15,-14],[-17,-11],[-14,-18],[-5,-7],[-5,-4],[-5,0],[-3,11],[-7,3],[-3,17],[5,14],[0,14],[-3,7],[0,17],[4,21],[-7,14],[-5,3],[-8,0],[-12,-7],[-10,-7],[-5,3],[-15,13],[-7,11],[-5,3],[-10,-4],[-8,7],[-5,7],[0,17],[2,17],[0,11],[0,10],[-3,17],[-10,28],[0,10],[-5,7],[-6,7],[-12,20],[-5,11],[-13,10],[-15,3],[-10,-4],[-7,0],[-5,-11],[-7,-14],[-7,-28],[-2,-10],[-8,-11],[-7,-4],[-10,-3],[-12,-8],[-10,-3],[-5,3],[-8,3],[-5,3],[-5,-3],[-9,-4],[-13,-14],[-12,-18],[-8,-14],[-1,-3],[-3,-9],[-7,-6],[-1,-1],[-4,-6],[-2,-7],[-8,0],[-5,7],[-5,0],[-7,3],[-16,34],[-2,7],[-3,-7],[-2,-7],[0,-7],[-7,0],[-8,10],[-2,7],[-13,34],[-3,11],[-5,24],[-5,14],[-3,6],[-3,7],[3,21],[-1,7],[-2,10],[-8,11],[-7,6],[-8,18],[-8,17],[-7,10],[-8,0],[-10,-4],[-9,-11],[-10,-14],[-7,-7],[-20,-35],[-17,-25],[-9,-14],[-25,-29],[-12,-18],[-10,-10],[-2,-7],[-5,-11],[-12,-11],[-5,-3],[-7,3],[-6,21],[-5,3],[-10,7],[-10,-1],[-12,0],[-17,3],[-8,3],[-5,4],[-12,-11],[-12,-1],[-13,4],[-10,3],[-12,3],[-8,-4],[-10,-7],[-19,-8],[-15,-7],[-10,-4],[-7,-7],[-5,-3],[-5,-4],[-7,-4],[-8,-3],[-7,3],[-10,3],[-13,10],[-7,7],[-11,24],[-2,10],[0,11],[2,10],[5,7],[-30,-8],[-17,10],[-8,7],[-5,3],[-12,0],[-5,-4],[-8,0],[-5,0],[-4,0],[-8,-7],[-5,-4],[-2,-7],[-15,-11],[-12,-4],[-12,-4],[-8,0],[-10,-4],[-7,-7],[-5,-7],[-17,0],[-8,0],[-7,-1],[-15,10],[-5,0],[-8,-4],[-7,-7],[-2,-7],[-8,-3],[-5,-4],[-17,-7],[-27,-32],[-9,-8],[-10,-7],[-5,-4],[-7,-3],[-8,-4],[-5,0],[-12,10],[-13,17],[-15,20],[-3,7],[-10,14],[-5,7],[-10,6],[-15,7],[-10,3],[-10,3],[-12,0],[-10,-7],[-5,3],[-7,3],[-8,7],[-8,10],[-7,7],[-8,3],[-10,17],[-7,3],[-5,0],[-10,-7],[-2,-7],[-10,-7],[-13,3],[-7,0],[-13,10],[-25,34],[-13,17],[-7,10],[-18,-1],[-7,0],[-3,7],[3,14],[-10,0],[-12,-4],[-8,-7],[-7,-7],[-5,-4],[-5,-4],[-10,-7],[-10,-4],[-5,-3],[-7,-7],[-19,-25],[-13,-11],[-12,-7],[-7,-11],[-5,-4],[-5,-7],[-10,-10],[-9,-11],[-8,-11],[-4,-10],[-15,-15],[-10,0],[-5,0],[-5,-4],[-10,0],[-10,-4],[-5,-3],[1,-14],[-13,-7],[-2,6],[-8,18],[-5,20],[-5,11],[-5,3],[-5,-4],[-3,-7],[1,-17],[-5,-4],[-5,14],[-8,10],[-5,4],[-12,3],[-15,-4],[-23,-1],[-22,-1],[-22,-4],[-15,-14],[-12,-11],[-12,-14],[-22,-32],[-15,-21],[-17,-21],[-19,-25],[-17,-22],[-10,-21],[-2,-10],[2,-36],[12,-184],[4,-2],[17,4],[13,-17],[5,-10],[0,-7],[5,-14],[6,-24],[2,-14],[1,-10],[-3,-21],[-4,-7],[0,-7],[7,-10],[8,-14],[8,-21],[5,-17],[5,-24],[3,-24],[-2,-7],[-8,-11],[-14,-14],[-10,-14],[-2,-11],[-3,-21],[-2,-14],[0,-10],[1,-10],[-3,-11],[-2,-10],[5,-4],[10,-6],[10,-21],[10,-24],[18,-31],[8,-27],[3,-24],[-5,-28],[-2,-18],[-2,-21],[-7,-14],[-12,-21],[-13,-18],[-4,-3],[-10,-4],[-5,7],[-8,-4],[0,-10],[-4,-11],[-5,-10],[-7,-11],[-10,-11],[-2,-14],[-7,-28],[-3,-14],[0,-10],[3,-14],[5,-21],[-2,-17],[-5,-14],[-4,-7],[-3,-11],[-2,-7],[-5,-14],[-7,-7],[-10,-7],[-10,3],[-10,-7],[-12,-14],[-2,-11],[-5,-31],[-2,-18],[-2,-10],[-3,-7],[-5,-11],[-2,-7],[-7,-14],[-12,-17],[-10,-11],[-7,-7],[-13,-4],[-9,-11],[-13,-18],[-19,-24],[-20,-18],[-14,-11],[-5,-4],[-15,-7],[-15,-8],[-12,0],[-15,-4],[-12,3],[-10,0],[-20,-11],[-12,-7],[-17,-11],[-25,-22],[-10,-10],[-9,-11],[-15,-18],[-7,-7],[-40,-36],[-12,-11],[-7,-3],[-13,3],[-12,-1],[-13,10],[-2,11],[-3,7],[3,10],[-5,7],[-6,7],[-2,14],[0,7],[-3,20],[-3,7],[-5,10],[-2,7],[-13,14],[-8,7],[-17,6],[-20,13],[-23,24],[-15,17],[-22,6],[-23,10],[-20,10],[-10,17],[-5,24],[5,17],[12,15],[10,14],[4,10],[10,8],[10,10],[2,7],[-5,4],[-10,-8],[-12,-7],[-7,-4],[-15,0],[-10,-7],[-10,0],[-12,-4],[-18,3],[-10,6],[-2,7],[2,14],[3,7],[-5,0],[-13,0],[-15,-1],[-17,7],[-33,13],[-17,13],[-23,24],[-12,17],[-5,6],[-16,21],[-2,7],[2,7],[-2,7],[-13,3],[-15,10],[-8,17],[-5,20],[5,21],[5,8],[4,14],[10,17],[5,14],[7,25],[0,10],[-5,10],[-13,0],[-10,-7],[-17,-11],[-29,-18],[-13,-8],[-14,-3],[-18,-4],[-17,-1],[-12,-4],[-8,3],[-7,0],[-10,0],[-15,-7],[-19,-18],[-13,-4],[-7,0],[-5,3],[-5,-4],[-8,0],[-7,-11],[0,-6],[-2,-7],[-5,-8],[-5,0],[-7,4],[-15,10],[-13,17],[-5,13],[-3,11],[-2,6],[-5,4],[-8,0],[-10,10],[-3,10],[-2,10],[-1,18],[0,7],[-2,10],[-5,0],[-3,-7],[-2,-7],[-5,-14],[-7,-14],[-10,-14],[-17,-18],[-14,-18],[-5,-4],[-8,4],[-7,-4],[-5,-11],[0,-7],[0,-7],[-7,-3],[-5,0],[-5,3],[-5,7],[-7,-4],[-10,0],[-4,-11],[-21,0],[-7,-1],[-5,-10],[-5,-4],[-8,0],[-5,0],[-7,0],[-5,-7],[-5,-14],[-7,-11],[-2,-11],[-12,-7],[-15,-4],[-8,7],[-7,14],[-5,3],[-3,-7],[-7,-4],[-5,0],[-8,10],[-8,21],[-10,21],[-5,10],[-12,-1],[-8,4],[-5,-7],[-4,-11],[-23,-11],[-7,-4],[-20,0],[-17,3],[-5,3],[-10,-4],[0,-14],[-2,-14],[-5,-7],[-5,4],[-7,3],[-5,-4],[-5,-10],[3,-11],[5,-10],[0,-14],[-17,-7],[-8,3],[-10,7],[-10,10],[0,-7],[-4,-21],[-3,-24],[3,-21],[-5,-4],[-14,-14],[-20,-15],[-5,4],[-8,7],[-12,-1],[-7,-7],[-3,-7],[-17,-32],[-12,-4],[-12,4],[-18,-8],[-7,3],[-8,7],[-10,3],[-7,0],[-10,-21],[-102,-7],[-35,-2],[-4,5],[-12,3],[-10,3],[-10,0],[-8,0],[-2,-7],[-5,-11],[-7,-4],[-15,-10],[-5,-11],[-2,-10],[-2,-11],[-2,-21],[-5,-21],[-2,-7],[-18,-4],[-10,3],[-15,3],[-20,3],[-19,-11],[-8,-3],[-4,-11],[-10,-11],[-7,-17],[-5,-14],[-5,-14],[-12,-25],[-10,-7],[-19,-15],[-22,-18],[-18,-3],[-5,3],[-4,-14],[-5,-14],[-5,-4],[-5,4],[-5,-4],[-7,-18],[0,-7],[-2,-17],[-5,-14],[-7,-7],[-8,-4],[-10,3],[-7,0],[-2,-10],[-10,-8],[-10,4],[-13,6],[-14,-7],[-15,-1],[-10,-3],[-10,-4],[-10,3],[-5,-4],[0,-17],[3,-7],[-10,-4],[-12,-7],[-7,-11],[-8,-10],[-5,-11],[-9,-14],[-5,-10],[3,-11],[5,-10],[2,-14],[-2,-10],[-12,-4],[-15,3],[-8,10],[-13,24],[-7,7],[-18,10],[-12,3],[-15,-1],[-7,-3],[-5,-7],[-2,-11],[2,-14],[5,-10],[8,-14],[5,-10],[-2,-10],[-8,-11],[-4,0],[-8,3],[-5,3],[-3,11],[0,10],[-7,10],[-13,10],[-17,0],[-28,6],[-15,10],[-8,8],[-9,19],[-8,7],[-7,7],[-8,0],[-7,-4],[-8,3],[-7,7],[-8,10],[-7,14],[-6,7],[-5,17],[0,21],[5,10],[0,7],[-3,7],[-5,3],[-7,-3],[-25,-8],[-17,-8],[-15,-10],[-5,-4],[-15,-14],[-58,-54],[-20,-28],[-17,-29],[-19,-35],[-22,-42],[-17,-29],[-7,-14],[-7,-10],[-5,-11],[0,-10],[0,-11],[-2,-7],[-5,4],[-5,7],[-5,-1],[-7,-14],[-2,-10],[0,-11],[2,-10],[3,-24],[-5,-4],[-2,-7],[-2,-17],[0,-25],[0,-10],[-2,-14],[-10,-14],[-7,-7],[-10,-4],[-2,-7],[2,-17],[-4,-11],[-13,-11],[-7,-3],[0,-18],[-4,-24],[0,-21],[5,-3],[15,4],[10,-3],[5,-4],[5,-10],[7,-17],[3,-18],[-2,-7],[-10,-7],[-5,-3],[-5,-7],[-2,-11],[8,-27],[-2,-21],[-3,-18],[-2,-17],[-5,-18],[-2,-14],[-4,-17],[0,-18],[-7,-17],[0,-21],[-5,-14],[-7,-11],[-5,-17],[-5,-7],[-5,-4],[-12,-7],[-2,-7],[-5,-7],[-5,0],[-5,3],[-5,-4],[-5,4],[-10,10],[-13,6],[-12,4],[-15,6],[-5,7],[0,7],[-13,3],[-5,7],[-2,10],[-8,14],[-3,10],[-2,7],[-5,0],[0,-18],[-2,-7],[0,-13],[-2,-18],[-12,-11],[-5,-10],[-8,-4],[-7,3],[-5,4],[-7,-4],[2,-14],[-7,-10],[-5,-4],[-12,3],[-10,10],[-5,0],[-10,-7],[-13,-7],[-15,6],[-19,-7],[-20,6],[-5,-4],[-10,0],[-12,-11],[-8,-7],[-12,-4],[-2,-10],[5,-4],[2,-10],[-7,-4],[-5,0],[-5,-7],[-12,0],[-5,-11],[3,-7],[0,-6],[-5,-4],[-10,-7],[-7,-1],[-18,-7],[-10,0],[-5,3],[-7,10],[-5,0],[0,-10],[-2,-11],[0,-10],[-5,-7],[-7,-4],[-3,21],[-5,17],[-10,10],[-8,0],[-2,-7],[-3,-7],[-7,-11],[-5,-17],[-4,-18],[-3,-10],[-4,-11],[-8,-14],[-7,-10],[-7,-15],[-10,-14],[-14,-18],[-5,-10],[-8,-11],[-7,-21],[-4,-10],[0,-11],[-12,-17],[-8,-1],[-5,-7],[-22,-18],[-15,-11],[-4,0],[-5,0],[-5,-7],[-8,-4],[-5,-7],[-9,-10],[-13,-11],[-7,-14],[-10,-7],[-14,-15],[-5,-7],[-2,-10],[-8,-21],[-12,-8],[-5,-10],[-2,-14],[-5,-11],[-2,-10],[0,-7],[10,-7],[8,-3],[2,-7],[3,-7],[-3,-10],[-9,-1],[-5,4],[-5,0],[-3,-7],[3,-11],[-2,-14],[-5,-21],[-5,-14],[-2,-10],[-2,-21],[-5,-28],[-7,-21],[0,-7],[-5,-14],[-4,-11],[-5,-3],[-5,-7],[-10,-14],[-2,-11],[-3,-7],[-5,-7],[-4,-4],[-8,11],[-8,13],[-10,17],[-7,7],[0,-7],[0,-7],[0,-10],[3,-14],[-3,-17],[1,-14],[0,-18],[3,-24],[-2,-17],[0,-7],[-8,-14],[-4,-4],[-5,3],[-5,-3],[-5,-4],[-5,3],[-5,7],[-5,0],[-5,0],[-8,-14],[3,-10],[3,-14],[-5,0],[-8,-1],[-7,-7],[-10,-10],[-5,-8],[-2,-10],[-5,-14],[-5,-4],[-4,-3],[-5,-7],[-7,-28],[0,-14],[-7,-7],[-10,-4],[-10,0],[-10,6],[-5,7],[-8,7],[-7,-4],[-8,-7],[-4,-4],[-8,-3],[-5,3],[-5,0],[-7,13],[0,7],[-6,11],[-5,17],[0,17],[-12,0],[-5,0],[-8,6],[-5,11],[2,17],[5,14],[5,4],[5,0],[0,14],[2,10],[10,11],[9,11],[3,7],[0,7],[-3,6],[-5,4],[-7,7],[-5,3],[-5,3],[-5,4],[-10,-1],[-8,0],[-10,0],[-7,3],[-5,7],[-3,14],[-3,10],[-5,14],[-7,13],[-16,21],[-12,20],[-8,17],[-5,7],[-3,10],[0,7],[5,18],[5,7],[7,14],[2,21],[-5,7],[-5,7],[-5,6],[-10,7],[-17,3],[-18,6],[-5,-3],[-5,-4],[-12,-7],[-7,3],[-8,-3],[-12,-11],[-17,-11],[-15,-11],[-15,-11],[-5,-3],[-12,-1],[-12,0],[-18,-8],[-17,-4],[-7,0],[-20,-14],[-10,-1],[-7,0],[-10,-3],[-7,-8],[-10,-3],[-10,-8],[-17,-7],[-10,-11],[-2,-35],[-5,0],[-10,0],[-7,0],[-5,3],[-10,3],[-8,4],[-7,-1],[-5,-3],[-12,-4],[-13,-11],[-14,-7],[-10,-4],[-10,0],[-8,3],[-12,7],[-5,13],[-6,14],[-7,-4],[-5,-3],[-10,-11],[-12,0],[-7,3],[-5,3],[-10,3],[-5,-3],[-13,-11],[-7,-4],[-5,-3],[-10,-7],[-5,-4],[-5,0],[-7,3],[-5,0],[-7,-11],[-8,-3],[-9,-8],[-13,-14],[-19,-18],[-3,-7],[-5,-3],[-5,3],[-7,3],[-5,4],[-15,-1],[-10,3],[-10,0],[-5,7],[-2,7],[-3,10],[-8,10],[0,7],[-2,7],[-5,0],[-10,0],[-12,-4],[-20,-4],[-8,0],[-24,-1],[-10,0],[-13,-4],[-17,-1],[-17,3],[-10,3],[-6,11],[-7,-4],[-5,0],[-5,-4],[-7,0],[-10,3],[-10,0],[-12,-4],[-15,-11],[-12,-7],[-13,-7],[-7,6],[-8,-3],[-14,-4],[-5,0],[-5,3],[-5,7],[-8,-4],[-7,0],[-15,-11],[-12,-18],[-8,-3],[-4,-11],[-8,-7],[-4,-7],[-5,-4],[-3,-7],[-2,-10],[-7,-21],[-7,-14],[-3,-11],[-5,-7],[-12,-11],[-12,0],[-5,-4],[-5,0],[-5,0],[-8,0],[-7,0],[-7,-1],[-8,0],[-10,3],[-15,7],[-7,7],[-5,10],[-8,14],[-8,3],[-5,10],[-5,7],[-2,-7],[0,-7],[5,-14],[3,-10],[-5,-7],[-12,-11],[-17,-14],[-13,13],[-7,0],[-10,0],[-8,-1],[-2,-10],[0,-11],[3,-24],[3,-14],[0,-13],[0,-18],[-7,-3],[-8,-4],[-9,-11],[-3,-14],[0,-7],[3,-10],[5,-10],[3,-14],[-3,-7],[-4,-7],[0,-11],[0,-7],[0,-13],[0,-11],[-2,-7],[-8,-4],[-2,-7],[0,-7],[-2,-10],[-5,-7],[-5,-14],[-7,0],[-10,3],[-13,6],[-10,11],[-10,10],[-7,3],[-10,3],[-5,-3],[-3,-8],[1,-6],[-3,-7],[-5,6],[-7,7],[-5,7],[-8,7],[-7,-1],[-5,4],[-8,-1],[-7,11],[-1,14],[-2,13],[-5,11],[-5,0],[-5,-1],[-15,-10],[-23,-12],[-11,-10],[-10,-8],[-15,-17],[-7,-18],[-15,-18],[-5,-3],[-4,-7],[-3,-11],[-10,-14],[-2,-10],[-2,-11],[-3,-7],[-4,-7],[-5,-14],[-7,-18],[-8,-10],[-12,-25],[-4,-14],[-5,-7],[-7,-14],[-10,-14],[-5,-4],[-5,-4],[-5,-7],[-5,-7],[-2,-14],[-2,-10],[-8,-7],[-5,-4],[-17,-11],[-5,0],[-4,-10],[7,-11],[-2,-7],[-10,-3],[-10,-18],[-7,-18],[-2,-10],[-10,-14],[-12,-18],[-7,-7],[-8,-11],[-7,-10],[-7,-15],[-10,-17],[-10,-18],[-12,-17],[-14,-15],[-13,-18],[-9,-14],[-10,-14],[-10,-17],[-9,-18],[-12,-14],[-27,-46],[-15,-25],[-12,-21],[-21,-32],[-8,-7],[-10,-7],[-9,-11],[-8,-11],[-4,-7],[-7,-3],[-6,-4],[-7,-4],[-8,-3],[-4,-8],[-40,-26],[-6,-7],[-56,-68],[-13,-13],[-54,-57],[-21,-24],[-44,-49],[-14,2],[-13,2],[-23,-1],[-25,-27],[-13,-5],[-13,-5],[-20,5],[-32,10],[-12,4],[-51,27],[-19,41],[-16,45]],[[755417,248297],[53,-161],[-59,-78],[-18,-86],[-141,-177],[49,-71],[49,-71],[-13,-171],[-8,-111],[-148,-248],[-35,-59],[-200,-34],[-43,-59],[-43,-58],[-97,31],[-86,38],[-127,198],[-211,42],[-38,102],[-38,102],[-120,89],[-166,-125],[-249,31],[-62,188],[123,196],[170,68],[153,111],[291,275],[131,-37],[135,49],[74,40],[292,158],[207,-62],[175,-110]],[[741910,144617],[-339,-704],[-396,-1045],[-495,-1236],[-579,-981],[-537,-810],[-354,-256],[-353,42],[-283,278],[-325,469],[-212,362],[-367,171],[-452,64],[-523,-128],[-608,-427],[-424,-128],[-127,-426],[120,-373],[120,-373],[0,-1578],[-297,-1386],[-749,-1962],[-947,-1577],[-339,831],[-283,1834],[-247,1195],[-106,511],[-43,916],[-212,981],[-127,427],[-240,575],[-376,1404],[-246,89],[14,341],[161,284],[136,164],[237,-126],[218,-530],[506,-496],[636,0],[456,238],[265,295],[59,530],[-50,1464],[50,863],[348,601],[398,112],[324,-450],[49,-225],[249,112],[192,349],[217,180],[-60,635],[373,450],[423,413],[156,233],[70,533],[-144,363],[17,1348],[255,762],[381,661],[615,373],[587,53],[834,-234],[579,-384],[353,-234],[608,-811],[891,-1258],[311,-661],[127,-831],[-57,-576],[-197,-586],[-241,-714]],[[737619,153436],[-190,-214],[-496,42],[-214,198],[-138,228],[-13,479],[158,613],[28,489],[34,385],[131,156],[538,-156],[510,-83],[613,-94],[49,-302],[-566,-977],[-255,-551],[-189,-213]],[[684340,187920],[270,76],[538,244],[351,343],[68,67],[114,111],[169,164],[330,323],[514,419],[539,186],[520,-137],[793,-340],[629,-214],[346,44],[346,43],[571,532],[45,41],[571,429],[878,-125],[406,-238],[114,-67],[694,-678],[388,-523],[560,-857],[366,-561],[409,-788],[664,-1681],[230,-581],[176,-446],[68,-177],[320,-539],[338,-451],[524,-570],[957,-946],[365,-362],[1024,-791],[1158,-1002],[1095,-818],[532,-279],[515,-222],[119,-73],[653,-399],[12,-5]],[[703619,177072],[403,-426],[538,-415],[803,-437],[503,-388],[59,-62],[383,-409],[39,-42],[396,-585],[3,-4],[53,-78],[509,-917],[1180,-1920],[877,-1292],[1321,-1598],[327,-356],[648,-659],[260,-152],[383,-76],[552,-57],[84,-9],[305,-8],[4744,-123],[9,-1],[7,0],[2081,-54],[20,0],[3,0],[4,-1],[4565,-118],[3,0],[2,0],[7,-1],[66,-1],[4,0],[920,-24],[263,-7]],[[725943,166852],[44,-291],[-1,-369],[149,-714],[20,-136],[107,-740],[268,-674],[99,-361],[4,-111],[5,-123],[4,-123],[-13,-131],[-42,-404],[35,-174],[92,-166],[74,-92],[74,-92],[158,102],[159,102],[231,178],[219,161],[421,170],[78,-204],[-146,-220],[-33,-229],[179,-144],[248,51],[185,127],[241,93],[270,34],[253,-25],[104,-207],[-155,-335],[-196,-280],[-264,-559],[264,-51],[202,0],[33,-330],[-219,-254],[-174,-195],[-101,-297],[11,-356],[203,-237],[5,-229],[-163,-118],[-146,-34],[-157,-127],[-101,-136],[-3,-140],[-3,-110],[16,-189],[70,-200],[166,-331],[3,-6],[370,-613],[19,-33],[309,-315],[14,-13],[66,-69],[287,-233],[77,104],[77,104],[141,258],[176,310],[287,508],[124,266],[124,266],[99,274],[146,259],[67,110],[67,111],[190,182],[284,336],[283,312],[245,105],[238,163],[245,58],[191,58],[366,4],[270,111],[263,178],[268,389],[252,-10],[175,114],[177,-38],[80,-191],[29,-317],[-80,-221],[-215,-40],[-248,-21],[-59,-344],[-146,-123],[-64,-159],[-105,-185],[-169,-26],[-269,-44],[-257,-150],[-94,-176],[25,-282],[-31,-379],[80,-206],[-4,-209],[-146,-167],[-134,-211],[-40,-365],[-7,-177],[92,-205],[299,-495],[74,-122],[61,-46],[47,97],[99,114],[140,123],[191,44],[101,89],[41,229],[-82,405],[240,168],[158,-62],[344,97],[146,-35],[351,149],[123,168],[140,-62],[105,-132],[321,-335],[275,-211],[87,-335],[199,-150],[76,-194],[-263,-511],[-105,-238],[-356,-344],[-304,-159],[-187,54],[-88,-106],[-327,141],[-309,-159],[-85,-214],[3,-130],[76,-114],[-66,-277],[1,-170],[-114,-740],[-98,-107],[-127,-45],[-133,36],[-102,115],[-153,283],[-206,486],[-191,279],[-374,272],[-403,23],[-131,48],[-131,49],[-247,191],[-64,64],[-64,64],[-91,147],[-180,110],[-333,-484],[-236,-618],[-64,-184],[71,-101],[310,-234],[263,-80],[251,-342],[76,25],[141,-79],[11,-265],[-119,-157],[-237,24],[-33,-132],[56,-1012],[-274,53],[-7,722],[-115,1],[-4,0],[-159,41],[-97,24],[-99,113],[58,157],[-136,70],[-112,-78],[-112,76],[-99,119],[-129,37],[-119,-51],[-170,-272],[-63,-164],[-141,-600],[-72,-424],[-27,-591],[14,-285],[70,-415],[114,-452],[45,-97],[9,-19],[171,14],[106,67],[244,154],[259,-204],[76,24],[55,17],[21,7],[194,60],[459,462],[81,-73],[57,-52],[165,-143],[131,-107],[257,172],[113,-255],[146,-154],[-23,-244],[-37,-184],[-93,-157],[-34,-185],[70,-166],[122,-72],[133,-19],[99,-122],[22,-206],[146,-325],[-90,-536],[-150,-364],[-26,-188],[-86,-146],[-158,-107],[-605,-412],[-84,-143],[-107,-548],[-7,-175],[64,-197],[35,-471],[-205,-723],[20,-185],[254,-586],[10,-245],[-45,-219],[-85,-150],[-106,-101],[-247,92],[-96,112],[-101,357],[-163,272],[-120,335],[43,377],[63,153],[65,581],[-121,65],[-127,-1],[-241,151],[-128,20],[-62,167],[93,331],[5,237],[66,369],[-51,223],[-1,351],[-42,163],[-76,152],[-136,-22],[-133,22],[-36,180],[0,178],[-22,90],[-21,89],[-253,443],[-136,67],[-196,247],[-538,46],[-134,80],[-143,15],[-111,70],[-129,-15],[-444,-316],[-191,-52],[-326,42],[-125,51],[-47,198],[-46,197],[-226,204],[-113,311],[-127,37],[-120,89],[-71,210],[-44,129],[-8,3],[-139,56],[-135,2],[-121,103],[-33,190],[62,174],[6,185],[-25,178],[-9,293],[100,125],[213,6],[153,-120],[52,177],[20,196],[-2,20],[-42,358],[-65,618],[-231,598],[-10,16],[-202,326],[-42,47],[-428,485],[-10,12],[-366,487],[-336,363],[-45,49],[-69,50],[-175,125],[-126,90],[-417,312],[-161,116],[-377,271],[-260,234],[-640,433],[-47,32],[-672,346],[-557,287],[-308,128],[-364,153],[-1607,674],[-774,325],[-586,154],[-1358,358],[-973,256],[-222,39],[-1518,267],[-1033,181],[-1271,223],[-150,26],[-417,57],[-2521,347],[-1366,187],[-468,64],[-300,42],[-472,64],[-669,92],[-24,4],[-494,66],[-1552,207],[-751,100],[-1430,191],[-2115,283],[-679,91],[-1450,193],[-18,3],[-287,36],[-289,36],[-285,36],[-199,25],[-183,23],[-66,8],[-184,23],[-157,20],[-121,15],[-114,15],[-85,10],[-106,14],[-169,21],[-557,70],[-435,54],[-578,73],[-754,95],[-221,28],[-358,45],[-594,74],[-488,62],[-659,83],[-184,23],[-447,56],[-590,74],[-12,2],[-12,1],[-696,88],[-110,13],[-295,37],[-365,41],[-720,80],[-160,17],[-771,86],[-1465,162],[-448,49],[-311,35],[-130,14],[-1095,122],[-589,65],[-404,44],[-1127,125],[-1259,140],[-234,26],[-1088,120],[-56,6],[-362,25],[-297,20],[-452,31],[-787,54],[-27,2],[-10,1],[-750,51],[-595,41],[-706,48],[-229,16],[-5,0],[-1364,93],[-690,48],[-640,43],[-663,46],[-77,5],[-654,50],[-29,2],[-673,51],[-86,6],[-522,40],[-612,46],[-312,24],[-754,57],[-148,11],[-719,55],[-938,71],[-463,35],[-691,52],[-1265,107],[-451,39],[-154,13]],[[674784,193962],[15,-104],[15,-103],[171,-1147],[417,-2804],[1915,2021],[855,125],[720,-95],[511,-197],[641,-500],[390,-547],[445,-949],[261,-856],[206,-500],[516,-363],[338,-79],[317,-74],[204,-4],[445,-10],[624,-13],[550,157]],[[290199,370669],[-201,-306],[-130,-197],[-118,-180],[-197,-313],[-21,-33],[-132,-264],[-163,-329],[-164,-170],[-198,-176],[-288,-310],[-116,-153],[-6,-23],[-9,-38],[-12,-50],[-28,-112],[0,-173],[0,-48],[2,-12],[45,-277],[132,-363],[132,-364],[-4,-299],[-77,-264],[-129,-170],[-272,-199],[-108,-94],[-102,-135],[-241,-627],[-225,-393],[-167,-311],[-53,-153],[-1,-2],[-1,-4],[-31,-91],[-31,-231],[12,-293],[39,-229],[-4,-111],[-62,-211],[-121,-200],[-199,-230],[-3,-4],[-264,-305],[-107,-106],[-107,-105],[-315,-205],[-348,-347],[-269,-352],[-110,-234],[-19,-404],[-78,-194],[-132,-123],[-215,-210],[-73,-71],[-124,-182],[-105,-311],[-90,-542],[-39,-233],[-80,-267],[-141,-430],[-159,-334],[-27,-34],[-109,-136],[-175,-76],[-199,-18],[-252,65],[-319,145],[-198,-5],[-152,-82],[-112,-82],[-243,-330],[-3,-4],[-3,-4],[40,-87],[22,-38],[22,-38],[24,-8],[18,-41],[18,-46],[14,-69],[11,-41],[17,-58],[28,-73],[5,-67],[19,-81],[24,-67],[16,-53],[27,-75],[18,-59],[13,-26],[7,-14],[6,-13],[9,-18],[8,-12],[33,-54],[21,-50],[1,-35],[-9,-20],[-30,-30],[-8,-30],[4,-30],[76,-52],[14,8],[9,0],[9,1],[10,-22],[1,-11],[1,-12],[2,-22],[24,-15],[35,3],[15,14],[18,28],[35,6],[35,21],[57,12],[88,17],[76,9],[71,28],[37,48],[85,30],[18,8],[48,25],[28,-4],[20,-28],[23,-15],[23,-17],[32,-2],[72,6],[54,-22],[85,-3],[90,63],[86,-55],[92,-65],[37,-31],[8,-11],[8,-11],[4,-25],[6,-35],[33,-73],[23,-46],[3,-51],[17,-28],[33,-1],[82,100],[11,74],[26,5],[16,-27],[42,-42],[81,-30],[68,21],[39,-15],[35,31],[7,35],[7,35],[11,110],[14,31],[25,8],[34,-8],[41,-23],[-6,-85],[19,-57],[10,-56],[16,-31],[39,0],[34,24],[27,64],[22,32],[13,21],[26,-2],[25,-1],[62,-38],[47,-43],[278,-436],[126,-57],[101,-139],[6,-33],[36,-195],[119,-318],[-50,-193],[-106,-116],[-69,-150],[7,-50],[26,-173],[140,-216],[230,-353],[135,-83],[102,2],[102,2],[102,2],[102,2],[134,-39],[269,69],[18,-7],[100,-39],[14,-15],[102,-115],[153,-33],[100,-135],[42,-222],[141,-401],[-6,-203],[-86,-350],[-7,-25],[-219,-282],[-69,-198],[-113,-117],[-177,-92],[-14,-46],[-43,-137],[74,-174],[74,-173],[11,-117],[10,-117],[200,-324],[111,-102],[319,16],[253,-165],[65,-4],[65,-4],[118,-85],[85,-163],[14,-86],[14,-86],[73,-33]],[[288384,349073],[-83,3],[-44,2],[-218,8],[-384,14],[-946,36],[-170,6],[-48,2],[-745,28],[-23,-424],[-105,-1917],[-32,-587],[-42,-781],[-77,-1404],[-320,-5866],[-122,-2237],[-148,-2709],[-127,-6578],[-2119,-5468],[-570,-313],[-345,179],[-218,75],[-346,-22],[-346,-218],[-269,-334],[-233,-200],[-352,-185],[-277,-21],[-47,-11],[-144,-34],[-87,15],[-105,45],[-74,51],[-57,58],[-37,-183],[-10,-45],[-74,-359],[-459,-2221],[-58,-281],[-730,-3529],[-6,-25],[-16,-77]],[[277771,313566],[-107,-76],[-67,-49],[-26,-6],[-22,-4],[-20,5],[-21,18],[-32,52],[-25,26],[-32,4],[-81,-47],[-30,-23],[-17,-39],[-31,3],[-29,-7],[-60,-31],[-58,-26],[-68,-27],[-59,-16],[-56,-23],[-51,-35],[-54,-39],[-44,-29],[-25,-21],[-17,-19],[-15,-16],[-5,-29],[-4,-19],[-14,-7],[-40,6],[-11,-20],[-31,-26],[-20,-29],[-2,-26],[-5,-22],[-14,-9],[-37,-24],[-13,-8],[-15,-6],[-12,4],[-13,4],[-40,-19],[-26,-34],[-26,-14],[-49,-14],[-39,-34],[-33,-12],[-95,11],[-71,-33],[-63,15],[-70,-31],[-29,-49],[-61,-49],[-45,17],[-57,14],[-52,-84],[-44,-24],[-55,70],[-63,66],[-46,42],[-54,-28],[-18,-70],[-53,-17],[-55,52],[-20,74],[26,108],[-33,67],[-44,24],[-56,-49],[-57,-49],[-30,-87],[-17,-58],[-48,-33],[-79,-11],[-60,-14],[-72,39],[-33,80],[-23,137],[-58,87],[-114,80],[-122,133],[-156,130],[-125,139],[-89,110],[-43,109],[-3,134],[6,213],[27,228],[39,288],[31,192],[11,72],[-6,60],[-29,108],[-50,35],[-125,34],[-101,-34],[-135,-119],[-106,-75],[-171,-64],[-85,-100],[-105,-238],[-122,-69],[-99,44],[-143,101],[-9,7],[-65,46],[-214,289],[-103,208],[-11,24],[-86,129],[-57,86],[-64,183],[-125,307],[82,130],[60,172],[36,179],[13,306],[-59,312],[-115,237],[-39,210],[-11,280],[43,281],[11,31],[66,197],[2,6],[75,218],[113,181],[124,177],[90,102],[94,106],[47,135],[46,136],[82,359],[16,239],[-59,165],[-82,178],[-67,75],[-87,94],[-101,32],[-138,14],[-194,18],[-96,40],[-62,121],[-30,107],[-10,107],[28,130],[89,118],[75,43],[75,43],[554,253],[277,173],[59,44],[151,111],[174,140],[147,150],[198,239],[81,134],[6,18],[35,93],[47,76],[6,9],[143,190],[60,94],[88,101],[2,2],[5,5],[23,26],[76,85],[96,118],[48,58],[16,23],[5,7],[113,155],[4,6],[64,89],[148,209],[187,218],[97,98],[85,85],[9,6],[125,84],[23,15],[105,77],[79,82],[51,105],[27,233],[11,408],[0,10],[4,361],[2,211],[-12,68],[-18,112],[-1,2],[-13,70],[-3,21],[-2,96],[-4,54],[-15,60],[-53,60],[-165,148],[-52,47],[-53,48],[-1,1],[-87,80],[-136,66],[-51,65],[-33,42],[-36,96],[-10,26],[-43,108],[-44,206],[-41,141],[-84,194],[-25,107],[-75,148],[-42,117],[-32,68],[-107,74],[-117,48],[-70,102],[-53,126],[-28,130],[-16,235],[24,305],[-57,165],[-103,-99],[-459,-445],[-384,-372],[-1141,-1103],[-80,-78],[-342,-330],[-19,-19],[-58,-25],[-138,129],[-88,79],[-42,6],[-20,3],[-21,3],[-96,-45],[-119,-30],[-72,13],[-63,8],[-77,50],[-73,44],[-17,11],[-205,153],[-126,51],[-128,28],[-95,-13],[-114,-16],[-45,2],[-44,2],[-60,58],[-36,79],[11,129],[11,171],[0,162],[-19,171],[-32,125],[-59,58],[-69,8],[-83,12],[-80,9],[-190,21],[-77,-17],[-89,8],[-55,-29],[-83,63],[-95,-13],[-149,31],[-86,-48],[-147,0],[-104,25],[-325,197],[-232,173],[-340,664],[-299,78],[-299,79],[-123,90],[-205,303],[-64,183],[-32,379],[-32,379],[-189,274],[-127,519],[-106,597],[-58,169],[-64,5],[-63,4],[-247,-184],[-44,-33],[-44,-33],[-329,-45],[-133,66],[-136,0],[-140,-82],[-133,-156],[-44,-178],[-15,-561],[-57,-193],[-106,-103],[-254,154],[-572,115],[-310,-64],[-122,-83],[-105,-133],[-21,-219],[22,-196],[-31,-747],[16,-372],[85,-170],[147,-62],[79,-154],[-162,-330],[-44,-176],[135,-878],[-14,-173],[-58,-194],[-189,-230],[-255,103],[-133,-64],[-66,-181],[-62,-410],[-276,-681],[-92,-358],[-92,-142],[-409,-145],[-544,-428],[-348,-403],[-296,89],[-98,-232],[-22,-201],[107,-720],[9,-261],[-18,-371],[-90,-138],[-394,194],[-405,131],[-11214,2933],[-132,34]],[[248310,325584],[-7728,2024],[-84,-412],[-89,-129],[-89,-128],[-253,-212],[-1287,-638],[-417,-45],[-480,42],[-424,-13],[-580,207],[-507,402],[-425,269],[-375,120],[-1003,-18],[-912,162],[-839,-116],[-715,84],[-623,262],[-322,176],[-117,63],[-401,45],[-460,-67],[-383,-139],[-329,-228],[-167,-116],[-884,-444],[-98,-12],[-174,45],[-303,182],[-468,327],[-339,257],[-681,767],[-222,255],[-184,255],[-202,367],[-136,377],[-58,419],[-42,331],[19,199],[83,443],[12,274],[-28,257],[-61,294],[-159,630],[-151,547],[-196,527],[-246,661],[-233,451],[-316,448],[-73,101],[-467,648],[-682,1038],[-97,182],[-34,64],[-134,213],[-341,550],[-157,197],[-220,144],[-107,131],[-99,202],[-61,214],[-66,233],[-62,109],[-62,60],[-89,87],[-322,231],[-212,124],[-60,2],[-109,3],[-225,-22],[-194,-69],[-313,-175],[-343,-222],[-460,-261],[-176,-105],[-136,-178],[-36,-129],[0,-176],[29,-230],[71,-573],[12,-87],[174,-1264],[1,-266],[-42,-334],[-45,-226],[-119,-284],[-195,-251],[-161,-145],[-123,-73],[-130,-23],[-8,3],[-150,54]],[[218211,334533],[-62,39],[-255,160],[-513,324],[-13,8],[-734,623],[-316,409],[-264,472],[-181,512],[-219,570],[-3,10],[-6,12],[-212,485],[-182,230],[-226,80],[-223,17],[-207,91],[-313,176],[-252,239],[-304,356],[-78,117],[-425,641],[-210,308],[-28,40],[-139,203],[-166,209],[-97,121],[-138,148],[-261,231],[-253,165],[-200,105],[39,97],[23,55],[40,96],[79,109],[43,48],[15,69],[3,20],[16,136],[-66,111],[-56,77],[-12,103],[27,143],[15,159],[14,65],[22,98],[151,216],[41,21],[29,13],[104,35],[13,55],[36,141],[5,21],[6,25],[32,142],[-22,74],[-25,80],[-96,74],[-116,280],[-77,188],[-115,245],[-3,4],[-130,230],[27,65],[62,231],[42,242],[-27,189],[-17,71],[-24,102],[-91,140],[-134,197],[-34,139],[-21,97],[-85,137],[-119,80],[-123,74],[-102,117],[-130,222],[-80,194],[-41,151],[-42,154],[-51,128],[-104,106],[-64,82],[-104,58],[-98,37],[-117,-9],[-70,48],[-55,63],[-43,-120],[-68,40],[-34,55],[56,111],[76,128],[29,71],[3,24],[-37,22],[-50,14],[-9,-74],[-18,-23],[-34,26],[-51,-10],[2,-75],[-20,-14],[-38,26],[-50,-2],[-3,-55],[-59,-4],[-59,73],[-60,-43],[-70,48],[-102,13],[-116,23],[-77,56],[-46,-94],[-42,-130],[-223,-41],[-126,-21],[-174,-16],[-108,17],[-104,65],[-89,84],[-92,206],[-41,110],[-63,72],[-41,152],[-55,66],[-48,105],[-11,59],[19,86],[31,58],[0,70],[-23,47],[30,59],[44,42],[32,87],[61,86],[137,97],[117,106],[96,111],[48,113],[50,58],[38,87],[52,62],[56,37],[11,83],[-11,54],[29,45],[53,-24],[51,10],[29,72],[111,32],[109,7],[56,14],[75,10],[84,42],[70,13],[49,119],[69,23],[24,95],[-9,66],[23,33],[72,-13],[28,75],[55,52],[51,-53],[122,95],[59,27],[70,36],[85,64],[30,163],[24,75],[-5,130],[20,84],[63,45],[54,-37],[24,8],[12,26],[8,70],[13,19],[27,-2],[6,21],[-7,87],[10,24],[56,13],[13,85],[11,21],[31,-9],[18,19],[4,27],[22,6],[6,-28],[16,-22],[23,28],[20,-2],[21,-56],[25,-17],[7,-5],[1,-2],[38,-68],[9,-36],[-4,-41],[16,-18],[21,18],[28,1],[23,-14],[29,24],[27,67],[7,117],[35,41],[45,30],[47,-20],[44,-27],[69,40],[78,-17],[90,1],[29,77],[120,-27],[17,39],[16,38],[-26,57],[-43,69],[34,79],[66,-3],[22,114],[-64,51],[-4,36],[6,38],[59,56],[37,101],[65,-16],[31,27],[5,44],[-38,114],[-16,54],[25,66],[-14,58],[34,20],[20,39],[-54,2],[11,67],[18,97],[47,0],[0,44],[-5,44],[28,83],[22,68],[37,-27],[37,79],[32,69],[-13,54],[31,80],[40,21],[161,-57],[40,23],[49,47],[33,51],[-6,74],[-12,25],[-12,25],[4,74],[64,3],[103,-33],[71,-17],[40,84],[18,121],[38,141],[36,27],[35,27],[63,-7],[66,-38],[45,42],[-30,41],[28,39],[49,10],[31,41],[36,6],[20,-33],[51,3],[111,0],[76,17],[45,-34],[42,-77],[47,-37],[47,-30],[49,13],[29,61],[42,27],[26,6],[26,7],[20,50],[-20,74],[35,48],[49,47],[14,77],[-45,37],[7,71],[-14,50],[36,34],[29,43],[-5,51],[-33,70],[-8,44],[-8,44],[-13,33],[-13,34],[13,60],[31,24],[31,-34],[41,-13],[33,44],[0,70],[-13,47],[-25,27],[10,96],[-41,190],[4,32],[5,32],[27,47],[-3,155],[27,40],[25,17],[73,10],[0,77],[22,30],[49,4],[52,-44],[71,-27],[56,66],[56,65],[140,501],[60,212],[61,211],[362,671],[373,470],[466,203],[312,225],[282,313],[297,93],[233,525],[-77,511],[203,263],[397,105],[827,459],[401,157],[666,483],[247,465],[212,280],[190,162],[218,250],[159,282],[1561,1478],[437,376],[714,759],[1102,1092],[282,317],[299,484],[431,454],[423,276],[183,407],[-564,360],[-214,3]],[[224808,369128],[-12867,5985],[-7356,3373],[147,442],[-174,443],[-32,833],[73,1217],[267,423],[72,724],[761,1295],[383,1727],[157,152],[294,895],[235,995],[1,685],[62,147],[940,562],[876,887],[-28,1790],[120,540],[637,1282],[262,1159],[331,1833],[339,676],[245,203],[168,202],[280,861],[338,388],[272,52],[98,88],[181,292],[264,-131],[470,469],[289,447],[667,734],[453,1244],[328,231],[243,463],[270,321],[478,431],[566,397],[283,506],[574,314],[586,996],[626,168],[808,1005],[772,366],[177,521],[704,808],[-323,901],[0,1390],[-204,742]],[[219921,411602],[349,459],[83,-77],[411,-690],[422,-533],[210,-347],[317,-905],[23,-946],[126,-474],[2121,-1732],[911,-3],[642,488],[419,-250],[282,304],[2260,-379],[693,294],[1223,-830],[750,-167],[501,333],[416,-523],[518,-42],[467,-621],[585,-2406],[-20,-1811],[-120,-262],[76,-2159],[-140,-394],[1093,-1284],[51,-646],[-214,-657],[216,-950],[-3,-691],[148,-294],[723,1489],[366,305],[791,-129],[480,-708],[1011,-971],[370,-114],[77,-1703],[192,-579],[711,622],[623,-605],[722,540],[452,-280],[330,497],[255,853],[296,181],[900,-959],[901,-1547],[31,-368],[-538,-191],[-182,-280],[274,-818],[-275,-954],[-552,237],[-457,487],[-121,66],[-150,-72],[-304,-941],[-534,-473],[-292,-563],[-1174,-1555],[-170,-534],[765,-604],[1095,-1311],[-113,-1149],[91,-592],[-135,-552],[73,-739],[6698,11314],[275,8],[959,716],[421,25],[247,225],[994,-352],[622,232],[616,904],[1158,351],[227,412],[99,595],[556,354],[165,807],[220,260],[133,-149],[126,362],[-162,1555],[191,1022],[593,778],[1216,418],[1378,989],[86,27],[812,-87],[523,199],[885,1148],[1407,1218],[485,1031],[554,671],[230,85],[1620,-345],[1428,-3264],[318,-1518],[-248,-233],[-7,-730],[-261,-22],[-1507,-2464],[8,-222],[303,-331],[-73,-1313],[-343,-1575],[264,-298],[-12,-76],[-49,-32],[8,-74],[-6,-79],[-44,-59],[-47,-55],[-72,-74],[-74,-44],[-69,-59],[-26,-58],[4,-53],[6,-120],[13,-76],[-25,-88],[-51,-182],[-38,-138],[-28,-123],[-17,-102],[-37,-72],[10,-98],[-176,-1463],[-79,-366],[-64,-292],[-65,-69],[-134,-124],[-105,-133],[-86,-74],[-20,-19],[-47,-43],[-62,-94],[-61,-176],[-178,-510],[-124,-285],[-45,-140],[-23,-51],[-35,-81],[-37,-132],[-26,-112],[-29,-64],[-60,-47],[-4,-85],[25,-70],[3,-10],[25,-101],[1,-7],[25,-87],[2,-9],[1,-1],[2,-7],[25,-92],[17,-76],[2,-91],[16,-74],[33,-55],[52,-65],[47,-88],[49,-105],[33,-76],[23,-65],[58,-53],[74,-38],[31,-56],[-10,-51],[-29,-78],[-6,-36],[37,-47],[10,-27],[-24,-85],[2,-27],[18,-62],[27,-82],[-3,-45],[-41,-59],[-39,-73],[-33,-69],[-59,-147],[-3,-6],[-38,-89],[-53,-81],[-68,-212],[-29,-147],[-5,-51],[-12,-56],[-92,-239],[-58,-147],[-52,-109],[-74,-83],[-72,-117],[-36,-43],[-7,-14],[-12,-25],[-11,-38],[-11,-94],[1,-122],[63,-186],[67,-127],[15,-29],[6,-11],[29,-43],[35,-52],[29,-41],[7,-6],[83,-68],[78,-26],[88,13],[58,31],[14,7],[44,36],[115,174],[39,58],[493,721],[116,170],[17,11],[193,129],[468,342],[468,341],[33,-3],[119,-11],[80,-149],[-28,-1033],[341,-548],[106,-660],[238,-547],[-233,-897],[199,-410],[34,-1621],[744,-288],[205,-330],[678,157],[409,-318],[191,291],[1,243],[-290,926],[388,1332],[-129,654],[-283,520],[44,437],[850,-421],[973,146],[735,812],[522,923],[384,413],[217,568],[404,158],[600,783],[242,424],[83,742],[806,681],[366,964],[-175,1117],[1027,1176],[408,-201],[508,-881],[406,-318],[17,-13],[309,-241],[443,92],[615,531],[784,-683],[-72,-607],[-361,-880],[150,-990],[128,-99],[416,215],[1068,-236],[402,240],[466,596],[890,22],[107,-110],[91,-756],[341,-378],[436,-1199],[523,-247],[578,100],[291,-1005],[-262,-923],[136,-854],[331,-812],[580,-603],[735,-1346],[637,-1691],[27,-995],[310,-570],[240,294],[305,-541],[756,-227],[70,-582],[418,-636],[42,-366],[446,-258],[230,-133],[52,-62],[115,12],[88,-15],[71,-35],[-14,-85],[-17,-79],[25,-50],[-1,-83],[12,-10],[13,-9],[25,44],[62,61],[89,29],[89,38],[40,-20],[70,-76],[62,-100],[50,-114],[31,-94],[32,-117],[12,-91],[26,-21],[16,-73],[27,0],[51,15],[19,-15],[-8,-56],[8,-67],[21,48],[37,-31],[32,-47],[9,-55],[26,-47],[7,-53],[-1,-50],[-1,-50],[-4,-85],[18,-17],[58,-18],[-15,-70],[0,-68],[31,-72],[48,-51],[43,-47],[35,-11],[55,-44],[11,-59],[49,-65],[111,-137]],[[224808,369128],[-10898,132],[-10490,127],[-1727,-610],[-670,-1797],[-1767,-2579],[-848,-643],[-297,-149],[-2343,-1170],[-1612,-806],[-5,-2],[-569,-285],[-9,-4],[-181,-91],[-878,-438],[-1391,-1118],[-856,-1356],[-785,-2355],[-1101,-3301],[-30,-89],[-671,-949],[-553,-3657],[-30,-195],[16,-1735],[2,-150],[43,-4710],[13,-1405],[-2,-15],[-1,-5],[-46,-369],[-73,-577],[-144,-1142],[-8,-63],[-56,-440],[-110,-872],[-1,-9],[-1,-10],[-108,-853],[-50,-399],[0,-18],[0,-77],[-19,-5712],[-8,-2224],[12,-15],[11,-15],[15,1],[16,2],[53,6],[33,-12],[11,-36],[20,-135],[14,-133],[-32,-121],[-7,-36],[7,-40],[123,-168],[70,-5],[23,-53],[38,-21],[36,15],[22,50],[85,24],[63,-22],[50,-33],[18,-34],[-4,-57],[-12,-87],[-18,-75],[18,-167],[43,-150],[14,-179],[10,-126],[24,-78],[19,-62],[5,-16],[51,-168],[16,-119],[52,-132],[-32,-126],[-66,-102],[11,-137],[11,-163],[-45,-125],[21,-60],[65,-187],[89,111],[94,27],[128,-3],[105,3],[137,125],[71,105],[2,13],[14,132],[85,55],[41,27],[47,-24],[4,-81],[49,-60],[70,-6],[56,-5],[31,-51],[-20,-111],[78,-110],[59,-83],[65,27],[116,-40],[96,-14],[68,18],[38,-59],[62,2],[65,-39],[38,14],[75,65],[35,29],[90,-13],[69,-41],[31,-121],[90,-108],[4,-41],[-26,-51],[42,-17],[43,-16],[72,-8],[30,-61],[42,-111],[33,-100],[22,-50],[59,-72],[102,-53],[46,-24],[146,-54],[66,47],[19,-9],[36,-56],[36,-84],[16,-63],[35,-25],[30,-48],[12,-34],[11,-45],[5,-48],[18,-49],[35,-69],[74,-105],[93,-132],[108,-133],[34,-43],[1,-1],[5,-6],[2,-2],[6,-9],[8,-12],[3,-4],[3,-4],[55,-79],[126,-181],[-86,-126],[-171,-249],[114,-230],[45,-84],[22,-26],[2,-2],[2,-1],[21,-25],[25,-30],[4,-13],[9,-31],[0,-2],[1,-3],[7,-25],[1,-14],[0,-33],[1,-26],[0,-13],[0,-28],[0,-29],[0,-7],[0,-6],[4,-53],[2,-147],[34,-215],[32,-221],[22,-136],[6,-93],[24,-72],[35,-43],[87,-111],[166,-175],[78,-69],[14,-12],[8,-7],[82,-72],[48,-36],[294,25],[13,1],[11,0],[103,1],[99,0],[22,1],[13,0],[10,0],[153,1],[324,56],[32,55],[28,48],[17,30],[247,-186],[59,32],[1,-9],[8,-53],[49,11],[30,6],[103,22],[15,3],[18,3],[288,61],[218,45],[7,1],[33,1],[39,3],[11,0],[17,1],[16,5],[91,25],[13,4],[10,3],[1,0],[57,16],[108,31],[20,6],[122,34],[17,5],[11,3],[13,5],[4,1],[5,2],[9,3],[35,13],[19,7],[87,32],[93,33],[436,159],[41,15],[102,37],[85,31],[35,9],[9,3],[9,3],[6,1],[10,3],[36,10],[304,86],[94,27],[266,74],[2,1],[32,9],[27,8],[116,32],[21,6],[288,81],[76,22],[2,0],[12,5],[24,8],[13,5],[24,8],[66,23],[5,2],[2,1],[8,2],[105,37],[4,1],[35,13],[7,2],[10,4],[100,34],[48,17],[5,2],[7,2],[2,1],[5,2],[49,23],[38,17],[11,5],[10,5],[83,38],[41,19],[5,3],[4,1],[8,4],[2,1],[77,36],[7,3],[7,4],[7,0],[1881,40],[31,12],[504,199],[184,73],[192,260],[34,47],[624,303],[54,27],[3,1],[27,0],[1678,-10],[494,746],[-6,-111],[6,-81],[16,-63],[35,-60],[37,-48],[77,-134],[30,-54],[29,-56],[17,-43],[8,-59],[4,-70],[0,-87],[1,-288],[3,-172],[-8,-591],[8,-214],[7,-142],[17,-92],[179,-430],[82,-167],[72,-147],[151,-385],[79,-214],[2,-59],[3,-69],[29,-106],[32,-90],[7,-87],[3,-116],[4,-95],[-12,-42],[-29,-16],[-70,-9],[-155,-62],[-135,-64],[-29,-18],[-27,-88],[-16,-118],[11,-224],[20,-199],[21,-200],[10,-64],[10,-64],[36,-72],[31,-22],[34,-25],[44,11],[123,159],[126,85],[109,13],[104,-3],[34,-59],[0,-79],[29,-109],[4,-72],[-21,-59],[-27,-28],[14,-60],[-2,-52],[28,-57],[14,-54],[-22,-26],[-37,26],[-16,-32],[28,-75],[5,-38],[-8,-106],[42,-96],[44,-67],[22,-5],[2,-29],[-26,-30],[12,-34],[44,-20],[64,-9],[24,52],[20,7],[45,-15],[10,-72],[-34,-98],[-51,-46],[-51,-140],[-9,-71],[-21,-7],[-23,-58],[3,-79],[-43,-28],[-20,-15],[-6,-66],[15,-69],[-34,-76],[-51,-75],[-35,-6],[-30,25],[-33,-3],[-36,-51],[-13,-19],[-53,-65],[-95,-57],[-106,-36],[-46,-77],[-39,-102],[-26,-102],[-24,-138],[-43,-122],[-24,-97],[11,-73],[53,-68],[77,-82],[28,-133],[-34,-92],[-12,-111],[32,-198],[92,-241],[179,-203],[187,-87],[78,-145],[-60,-154],[-144,-81],[-204,-226],[72,-277],[33,-48],[9,-71],[-16,-111],[-44,-107],[-42,-98],[2,-49],[36,-88],[37,-57],[5,-67],[-35,-80],[-90,-59],[-102,-54],[-46,-45],[-29,-68],[-31,-124],[-60,-84],[-99,-36],[-90,-52],[-99,-16],[-39,19],[-29,15],[-33,-30],[-24,-34],[-25,-52],[-24,-52],[-4,-50],[-3,-49],[-25,-70],[0,-36],[0,-17],[0,-18],[36,-149],[50,-127],[54,-120],[27,-47],[55,-18],[26,-23],[33,-54],[45,-111],[72,-91],[27,-81],[85,-136],[3,-63],[-8,-40],[-22,-33],[-84,-49],[-73,13],[-57,47],[-21,-11],[-5,-33],[-10,-66],[-20,-109],[-33,-79],[-15,-52],[26,-68],[16,-66],[39,-55],[57,-19],[66,-9],[60,-48],[18,-41],[11,-63],[-38,-86],[-39,-95],[-42,-87],[-46,-100],[-40,-60],[-29,-76],[-32,-84],[-38,-35],[-41,17],[-25,-47],[-27,8],[-37,6],[-27,-11],[-25,-48],[10,-62],[16,-87],[23,-95],[25,-63],[12,-40],[-32,-47],[-39,-45],[-45,-38],[-45,-10],[-32,-10],[-27,-57],[-42,-3],[-41,-32],[-12,-82],[28,-63],[10,-39],[-24,-56],[-35,-45],[-18,-80],[-53,-47],[-50,-13],[-46,-64],[-35,-13],[-80,15],[-20,-11],[-21,-11],[-38,-95],[-40,-153],[-26,-97],[-40,-75],[-61,-37],[-114,-25],[-32,-23],[-17,-67],[19,-65],[16,-28],[79,-60],[17,-65],[-31,-117],[-32,-10],[-56,55],[-83,57],[-69,-30],[-58,-60],[-2,-84],[13,-85],[57,-95],[-19,-78],[-163,-27],[-108,-50],[-60,-110],[-24,-90],[-12,-90],[-28,-57],[-8,-210],[-29,-125],[-19,-50],[-42,0],[-54,-7],[-34,-60],[0,-48],[-19,-8],[-16,-47],[-8,-22],[-24,-33],[34,-44],[6,-33],[-26,-97],[2,-100],[15,-70],[-3,-83],[-25,-22],[-2,-72],[-1,-118],[19,-62],[29,-78],[14,-52],[-14,-135],[36,-80],[12,-62],[-9,-113],[10,-35],[27,-17],[41,42],[32,15],[36,-10],[36,-10],[55,28],[55,40],[51,65],[48,-23],[60,-40],[28,-45],[-45,-32],[-22,-47],[37,-26],[36,-27],[80,57],[49,80],[34,43],[36,32],[53,-10],[41,-22],[20,-30],[-8,-63],[8,-82],[46,-49],[131,-9],[40,53],[-7,67],[-8,63],[19,79],[51,41],[23,85],[8,43],[96,96],[53,-7],[52,-28],[26,-15],[13,-32],[-25,-28],[-44,-37],[-22,-75],[-11,-97],[10,-40],[69,-36],[75,-9],[59,55],[28,65],[-4,72],[-32,45],[30,35],[49,13],[27,-55],[43,-98],[20,-60],[11,-85],[-13,-67],[15,-115],[-13,-75],[-42,-35],[-26,-50],[-63,-107],[-5,-83],[13,-80],[35,-36],[-5,-33],[3,-68],[37,-32],[38,15],[16,-48],[-13,-35],[28,-17],[0,-30],[-16,-40],[-48,-23],[-73,-25],[-33,0],[-36,-21],[-4,-20],[-8,-41],[-5,-97],[-30,-65],[-35,-38],[0,-100],[32,-67],[84,-33],[63,-27],[58,-40],[40,5],[51,9],[66,-34],[12,-40],[-10,-52],[-30,-14],[-26,-12],[-4,-2],[-26,-35],[-15,-57],[-53,-35],[-66,-65],[-33,-45],[-27,-85],[18,-95],[40,-133],[7,-117],[-12,-92],[-30,-78],[-56,-114],[-50,-38],[-37,3],[-17,-27],[-9,-56],[-49,-25],[-29,-41],[-29,-42],[-45,6],[-74,37],[-83,18],[-70,7],[-58,3],[-26,-50],[-8,-65],[54,-28],[73,-37],[35,-42],[18,-38],[3,-50],[-19,-50],[-53,-162],[-37,-83],[-64,-56],[-40,3],[-43,-48],[-37,-30],[-4,-29],[-2,-11],[-1,-22],[-1,-3],[-1,-31],[0,-6],[-6,-50],[-21,-75],[-12,-55],[-16,-32],[-35,-25],[-181,-35],[7,-74],[29,-92],[36,-51],[-18,-66],[-18,-87],[14,-96],[-48,-54],[-16,-129],[-79,-58],[3,-146],[0,-157],[4,-133],[30,-132],[9,-140],[-64,-122],[-51,-279],[-91,-85],[-38,-92],[10,-150],[13,-163],[31,-46],[-27,-138],[13,-168],[-38,-121],[59,-92],[-16,-58],[20,-47],[31,22],[132,-107],[97,-73],[34,-38],[66,-26],[68,-32],[18,-25],[-1,-31],[-22,-196],[-17,-33],[-17,-34],[26,-54],[49,-38],[67,-13],[62,27],[121,125],[54,-10],[74,-54],[36,-54],[-14,-118],[16,-48],[40,-37],[36,0],[52,-30],[24,-78],[47,-31],[20,-30],[14,-71],[-61,-71],[45,-27],[47,-10],[-12,-76],[26,-56],[51,13],[18,-33],[7,-64],[-9,-64],[-5,-81],[18,-108],[48,-12],[44,12],[47,25],[24,-12],[31,-73],[15,-67],[14,-110],[59,-204],[167,-303],[126,-186],[161,-175],[149,-113],[142,-50],[-6,-87],[-64,-69],[-140,-23],[-52,-37],[-54,-138],[-69,-44],[-163,-147],[-86,-95],[-28,-49],[-53,-6],[-54,85],[-55,-17],[-20,-102],[297,-2385],[239,-364],[-104,-85],[47,-223],[-126,-127],[108,-97],[-2,-340],[106,-150],[-191,-116],[4,-39],[53,-61],[36,-82],[28,-29],[36,-81],[0,-82],[-11,-121],[0,-51],[4,-46],[30,-51],[4,-27],[-18,-25],[-53,13],[-29,-8],[-27,-39],[12,-63],[15,-67],[34,-93],[4,-55],[-15,-23],[-42,-12],[-31,-21],[-6,-34],[11,-41],[65,-51],[70,-119],[-9,-58],[-61,-13],[-74,-21],[-93,-34],[-97,-65],[-31,-105],[34,-71],[-12,-68],[-33,-44],[-61,-67],[40,-63],[50,-23],[-2,-55],[9,-71],[33,27],[30,-4],[63,79],[73,55],[121,-96],[45,-72],[16,-95],[36,-121],[7,-117],[106,-133],[142,-617],[3,-94],[5,-76],[2,-46],[-13,-14],[18,-23],[22,-6],[15,-19],[12,-32],[-2,-28],[-10,-25],[-4,-27],[2,-30],[13,-19],[10,-27],[-1,-26],[-7,-54],[-10,-16],[-25,5],[-62,46],[-13,-8],[-6,-3],[2,-37],[12,-72],[15,-28],[8,-41],[1,-27],[10,-8],[0,-20],[-13,-13],[2,-13],[1,-10],[13,-12],[-3,-29],[9,-11],[29,15],[21,12],[12,-4],[-1,-12],[-21,-53],[-24,-16],[-34,-9],[-25,-1],[-30,-8],[-29,-13],[4,-46],[8,-29],[9,-32],[5,-33],[-1,-29],[-2,-21],[-13,-15],[-31,3],[-23,6],[-17,-20],[-24,0],[-31,-19],[-31,-22],[-52,-76],[-59,-70],[-38,-45],[-26,-28],[-24,-71],[-1,-36],[3,-21],[2,-11],[-6,-16],[-23,-16],[-35,-43],[-31,-92],[-18,-53],[-35,-50],[-11,-31],[6,-37],[8,-31],[29,-52],[37,-37],[35,-32],[20,-24],[8,-32],[25,-40],[8,-25],[1,-61],[-6,-67],[1,-84],[10,-69],[16,-90],[2,-65],[-6,-64],[-14,-26],[-23,-9],[-21,-7],[-10,-26],[2,-40],[21,-50],[36,-73],[25,-43],[4,-37],[4,-28],[-10,-44],[-12,-49],[1,-20],[17,-47],[9,-49],[-9,-40],[3,-36],[27,-66],[21,-53],[26,-31],[15,-36],[5,-61],[9,-62],[10,-28],[3,-19],[-2,-17],[-3,-27],[-16,-52],[-12,-35],[9,-34],[4,-26],[12,-26],[28,-19],[12,-42],[0,-52],[-8,-43],[-2,-48],[14,-49],[18,-48],[29,-58],[21,-50],[8,-55],[-5,-71],[-8,-60],[0,-38],[1,-52],[10,-48],[18,-43],[20,-24],[41,-10],[40,-14],[19,-11],[15,-20],[27,-10],[16,-27],[15,-35],[3,-6],[-3,-18],[-18,-31],[-15,-29],[0,-23],[-9,-36],[12,-25],[9,-24],[1,-44],[-16,-34],[-22,-29],[-24,-43],[-36,-38],[-17,-24],[-9,-36],[-3,-78],[20,-76],[34,-101],[52,-142],[35,-93],[29,-82],[25,-65],[48,-25],[38,-88],[65,-80]],[[204222,279542],[-482,-1830],[-82,-1310]],[[203658,276402],[-169,-508],[-1152,354],[-969,297],[-930,286],[-294,90],[-3742,1149],[-7558,-1687],[-305,-68],[-62,-14],[-13,-3],[39,-403],[47,-494],[156,-270],[-77,-230],[-191,-567],[-174,-515],[-160,-472],[-155,-460],[-119,-353],[-81,-241],[-56,-164],[-53,-159],[-59,-173],[-58,-172],[-149,-443],[-7,-21],[-17,-49],[-223,-660],[-219,-650],[-226,-670],[-183,-543],[-203,-602],[-137,-404],[-115,-341],[-203,-601],[-216,-786],[-75,-411],[-31,-92],[-54,-75],[-58,-29],[-50,-15],[-55,-30],[-37,-31],[-38,-59],[-35,-53]],[[185192,265060],[-208,184],[-80,90],[-45,90],[-2,94],[-2,94],[-1,76],[-1,76],[-5,259],[-661,743],[-55,62],[-52,200],[-17,772],[-657,1419],[-185,1042],[-389,1327],[-205,698],[-31,46],[-111,164],[-97,144],[-33,48],[-456,677],[-224,331],[-546,346],[-959,203],[-521,381],[-699,510],[-336,397],[-604,714],[-135,201],[-193,479],[-44,874],[252,647],[71,107],[160,244],[549,195],[214,204],[1,22],[56,782],[132,242],[157,289],[134,246],[-45,86],[-72,137],[-641,678],[-642,678],[-114,826],[-152,317],[-97,104],[-19,-1],[-803,-28],[-172,-6],[-412,-264],[-146,-14],[-305,99],[-1073,1085],[-99,100],[-56,56],[-114,115],[-149,236],[-62,485],[415,686],[100,165],[-344,1041],[-105,509],[26,274],[12,136],[13,137],[52,548],[-40,196],[-180,176],[-142,139],[-277,271],[-11,10],[-74,87],[-72,84],[-3,3],[-12,49],[0,58],[22,53],[15,51],[-57,176],[-15,46],[-14,25],[-5,7],[-7,23],[-8,22],[-6,18],[1,21],[-10,-11],[-10,-11],[-22,-19],[-30,-43],[-7,-57],[-12,-34],[-11,-33],[5,-40],[5,-39],[8,-63],[-22,-66],[-23,-41],[-24,-74],[-30,-68],[-27,-69],[-18,-81],[-25,-89],[-26,-106],[-27,-61],[-20,15],[-25,-5],[3,-40],[-38,12],[-187,-237],[-91,-116],[-1238,539],[-166,-61],[-80,-124],[-132,-933],[-122,-69],[-213,-121],[-282,-20],[-141,49],[-424,336],[-167,662],[-54,130],[-24,49],[-53,113],[-51,117],[-44,108],[-14,43],[-17,49],[-16,73],[-12,63],[-24,114],[-22,90],[-23,55],[-15,33],[-7,17],[-8,17],[-25,27],[-25,31],[-25,19],[-30,14],[-31,-4],[-31,0],[-29,10],[-29,9],[-29,24],[-18,24],[-12,22],[-15,29],[-16,29],[-6,21],[34,55],[30,48],[19,16],[18,16],[14,27],[0,7],[0,8],[-12,22],[-22,13],[-26,13],[-21,-8],[-15,-13],[-14,-12],[-25,7],[-21,13],[-13,16],[-12,16],[-12,11],[-7,21],[5,10],[10,21],[5,54],[-9,125],[-28,190],[-1,75],[-1,51],[13,72],[14,48],[30,86],[-12,86],[-19,76],[1,28],[16,30],[51,59],[18,40],[7,26],[-14,37],[-9,26],[-15,48],[-29,74],[-27,73],[-44,54],[-16,35],[-14,41],[15,30],[-38,46],[-29,58],[-32,104],[-49,188],[-20,43],[-35,17],[-34,64],[-8,78],[7,81],[28,74],[17,61],[-19,45],[-47,26],[-38,-15],[-51,15],[4,-69],[-9,-58],[-42,-71],[-35,-38],[-35,-38],[-31,-8],[-30,-7],[-72,-15],[-40,-30],[-33,-47],[-31,-63],[-70,-60],[-63,-39],[-59,-48],[-39,-65],[-26,-44],[-5,-66],[-11,-51],[-47,-52],[-6,-29],[-14,-88],[27,-21],[-2,-58],[-10,-46],[-47,-5],[-33,33],[-39,26],[-34,-22],[-26,-44],[-18,-24],[-32,-4],[-25,-18],[-25,-25],[-44,-52],[-24,-36],[-22,-33],[-31,-23],[-27,-20],[-57,-34],[-51,-24],[-29,-1],[-36,11],[-25,10],[-36,17],[-38,-8],[-32,-9],[-22,-66],[-45,-71],[-49,-112],[-30,-68],[-39,-50],[-61,22],[-88,13],[-34,-13],[-48,-12],[-40,-4],[-70,23],[-42,45],[-104,113],[-84,46],[-76,25],[-47,-2],[-40,-13],[-30,-18],[-27,-31],[-20,-42],[-31,-18],[-38,0],[-24,8],[-23,8],[-54,45],[-71,56],[-37,40],[-25,32],[-16,29],[-22,42],[-35,73],[-16,22],[-39,33],[-37,31],[-30,35],[-30,20],[-49,8],[-32,-4],[-39,-22],[-50,-63],[-80,-107],[-68,-83],[-94,-59],[-97,-98],[-57,-87],[-44,-81],[-74,-50],[-67,-31],[-131,10],[-106,3],[-37,0],[-27,15],[-27,15],[-71,46],[-141,122],[-205,187],[-161,198],[-48,114],[-33,79],[-40,131],[-67,102],[-115,96],[-116,15],[-57,0],[-64,0],[-159,0],[-158,-20],[-114,-20],[-111,-56],[-49,-48],[-49,-48],[-77,-152],[-30,-208],[26,-274],[95,-193],[6,-213],[-134,-203],[-108,-182],[-228,-375],[-209,-213],[-191,-102],[-37,-20],[-215,-10],[-612,352],[-329,155],[-249,147],[-249,147],[-329,304],[-236,365],[-53,183],[-21,68],[-20,69],[-90,111],[-66,123],[-55,171],[-98,92],[-148,218],[-70,238],[-95,122],[-17,70],[-13,51],[-13,158],[-17,65],[-47,-10],[-67,46],[-37,147],[-57,117],[-95,60],[-63,46],[-74,46],[-98,81],[-141,81],[-36,18],[-58,28],[-56,33],[-57,33],[-32,22],[-13,43],[-20,94],[3,137],[3,155],[10,47],[-8,42],[-10,24],[-27,19],[-20,50],[-7,76],[17,69],[-20,28],[-19,33],[22,23],[29,35],[5,51],[-6,42],[-4,30],[-14,23],[-28,29],[-12,18],[2,25],[13,34],[-2,26],[-19,42],[-3,28],[-9,21],[-12,17],[-17,11],[-41,27],[-147,-359],[-31,-76],[-76,-166],[-16,-37],[-2,-7],[-32,-40],[-31,-31],[-30,-29],[-13,-12],[-49,-32],[-55,-30],[-12,-6],[-21,-12],[-11,0],[-11,0],[-39,14],[-10,5],[-10,5],[-22,14],[-23,-3],[-40,-15],[-26,-14],[-2,-1],[-29,-28],[-8,-13],[-7,-12],[-2,-15],[-2,-16],[6,-44],[11,-50],[11,-29],[10,-30],[15,-56],[-26,-9],[-42,-26],[-19,-14],[-18,-14],[-16,-37],[-16,-38],[-20,-6],[-47,-3],[-33,3],[-10,-14],[-7,-18],[-17,-5],[-34,-10],[-31,-21],[-33,-9],[-27,13],[-34,18],[-28,10],[-39,28],[-40,40],[-29,61],[-47,49],[-71,17],[-63,-7],[-32,-41],[-27,-73],[-51,-69],[-48,-56],[-63,-55],[-78,-27],[-108,-22],[-200,-53],[-165,-60],[-114,-41],[-99,-51],[-78,-41],[-75,-25],[-79,5],[-99,26],[-150,-26],[-299,-182],[-380,-147],[-118,-97],[-70,-116],[-57,-208],[-41,-162],[21,-148],[70,-157],[57,-94],[61,-137],[10,-114],[-57,-278],[-78,-208],[-77,-168],[-70,-137],[-98,-111],[-118,-51],[-152,36],[-170,208],[-27,86],[-47,71],[-195,213],[-101,76],[-114,106],[-55,80],[-63,169],[-97,137],[-168,172],[-98,66],[-151,157],[-4,122],[64,45],[34,66],[-15,74],[-46,94],[-147,96],[-132,122],[-127,86],[-162,101],[-134,127],[-71,79],[-181,200],[-99,147],[-66,107],[-67,73],[39,183],[37,185],[25,202],[-5,224],[-25,195],[-41,139],[-40,89],[-14,14],[-15,14],[-35,4],[-35,3],[-49,-25],[-30,-43],[-27,-24],[-27,-24],[-30,-8],[-46,51],[-50,33],[-42,30],[-20,9],[-27,-6],[-104,-15],[-15,-5],[-14,-6],[-9,-12],[1,-27],[6,-34],[9,-51],[4,-26],[4,-27],[-4,-54],[-8,-32],[-16,-33],[-27,-13],[-57,-2],[-61,0],[-37,-5],[-34,-16],[-31,-35],[-52,10],[-33,-10],[-25,-17],[-27,-20],[-24,8],[-35,17],[-36,26],[-29,20],[-24,13],[-26,-4],[-24,-10],[-31,4],[-16,8],[-5,3],[-19,25],[-34,33],[-34,28],[-48,28],[-34,5],[-81,-12],[-101,71],[-80,71],[-114,-6],[-121,-30],[-94,-46],[-148,-62],[-135,-4],[-111,56],[-144,97],[-121,64],[-101,17],[-131,96],[-118,96],[-185,102],[-159,33],[-136,28],[-199,97],[-222,171],[-121,112],[-43,40],[-185,132],[-121,66],[-151,51],[-38,16],[-10,4],[-61,-18],[-24,-66],[-163,-451],[-80,-137],[-51,-38],[-76,-35],[-86,7],[-406,158],[-205,111],[-426,418],[-80,83],[-79,82],[-111,193],[-212,413],[-101,193],[-101,193],[-585,1206],[-47,63],[-46,63],[-424,371],[-262,102],[-172,10],[-168,-35],[-30,-6],[-138,-86],[-107,-167],[-48,-136],[-48,-135],[-140,-211],[-191,-157],[-219,-147],[-148,-31],[-154,-20],[-134,17],[-110,14],[-92,48],[-91,48],[-195,111],[-138,41],[-111,25],[-134,21],[-421,-31],[-67,-5],[-181,56],[-141,81],[-162,117],[-11,9],[-100,77],[-72,114],[-17,100],[-16,99]],[[139167,299449],[34,86],[35,71],[54,186],[2,158],[-37,200],[-121,126],[-145,98],[-211,207],[-88,70],[-52,78],[-6,66],[-6,67],[24,277],[16,81],[16,81],[56,52],[28,77],[-8,74],[-94,84],[-161,172],[-32,113],[32,231],[40,323],[-19,112],[-79,379],[-125,569],[-126,590],[-56,168],[-137,151],[-41,91],[-3,109],[39,175],[31,193],[68,328],[34,62],[402,158],[156,119],[93,119],[103,18],[95,-10],[81,-81],[112,-158],[137,-225],[89,-59],[114,7],[510,220],[100,16],[92,-57],[70,16],[633,713],[81,36],[93,-56],[212,-229],[398,-283],[414,-197],[498,-106],[106,35],[28,70],[29,71],[18,267],[-65,266],[-74,169],[-129,305],[-103,204],[-67,49],[-31,87],[-10,115],[31,82],[52,35],[144,0],[207,28],[137,-74],[98,-38],[70,-14],[74,24],[42,109],[37,260],[-35,102],[-252,221],[-25,70],[12,114],[65,163],[145,110],[200,164],[104,130],[42,147],[107,362],[56,77],[121,105],[86,116],[42,196],[-16,169],[-77,259],[-77,253],[-84,214],[-140,340],[-55,88],[-79,89],[-58,122],[-86,165],[-56,144],[-12,129],[-2,215],[-24,84],[-19,115],[25,186],[39,289],[78,553],[132,344],[101,126],[162,104],[418,61],[288,140],[115,96],[97,153],[50,203],[11,95],[-45,101],[-250,263],[-5,145],[24,165],[137,130],[73,164],[42,178],[-3,125],[-51,146],[11,127],[53,97],[40,82],[47,197],[-5,133],[-74,681],[-47,558],[-47,368],[-4,78],[-5,70],[37,312],[45,151],[-21,49],[-191,137],[-147,108],[-95,71],[-86,53],[-193,693],[-121,356],[-172,90],[-170,222],[-14,85],[-14,652],[7,72],[316,444],[70,109],[16,91],[79,1050],[-7,98],[-55,98],[-172,213],[-14,96],[23,154],[51,246],[5,211],[-38,154],[-204,386],[-219,344],[-302,295],[-112,147],[-28,147],[-33,141],[-88,470],[96,209],[161,167],[147,44],[417,-113],[161,-61],[88,35],[37,112],[0,119],[0,120],[-81,314],[-123,528],[-38,260],[-23,210],[7,249],[72,171],[220,199],[90,56],[90,55],[168,-7],[274,0],[159,21],[148,127],[70,217],[14,407],[23,295],[61,161],[98,218],[79,309],[4,281],[-130,322],[-363,766],[-84,357],[-30,337],[-9,520],[-5,207],[-11,242],[-21,126],[-31,92],[-72,60],[-318,97],[-273,169],[-125,140],[-123,192],[-534,171],[-202,104],[-192,169],[-136,156],[-90,181],[-164,483],[-69,109],[-186,137],[-54,120],[-14,136],[17,120],[67,140],[141,124],[127,84],[165,133],[61,178]],[[142410,336806],[51,1051],[-65,526],[-169,727],[-112,319],[-661,776],[-224,730],[9,398],[179,202],[198,142],[261,323],[37,614],[-100,354],[-281,519],[-339,-110],[-246,39],[-193,79],[-281,-110],[-193,204],[-366,307],[251,402],[217,221],[122,125],[63,205],[19,228],[139,231],[201,335],[180,146],[180,146],[191,14],[253,-46],[224,55],[193,-133],[219,15],[204,110],[96,-187],[270,-80],[161,-47],[229,47],[349,175],[100,242],[183,8],[135,-102],[141,-79],[130,-71],[105,-323],[152,-111],[83,-266],[166,47],[152,-71],[104,110],[78,106],[79,107],[5,188],[141,71],[193,205],[73,153],[73,154],[-16,338],[52,299],[157,79],[123,226],[57,211],[112,256],[143,-8],[76,157],[-75,326],[-27,205],[-34,260],[27,201],[75,185],[102,141],[60,132],[83,108],[58,79],[22,195],[-21,232],[234,562],[164,538],[15,192],[-5,134],[-21,177],[8,77],[4,39],[4,38],[81,71],[115,8],[78,15],[78,-19],[94,-4],[105,-9],[106,24],[16,-82],[68,-114],[68,27],[23,75],[17,97],[103,68],[110,114],[8,12],[53,73],[53,73],[103,23],[31,7],[66,4],[67,3],[13,2],[106,17],[9,1],[153,4],[27,11],[94,40],[122,78],[38,115],[14,41],[0,4],[16,103],[15,107],[76,157],[8,16],[16,22],[17,22],[212,82],[82,77],[28,26]],[[149635,352996],[38,-115],[43,-110],[59,-100],[87,-108],[4,-6],[32,-28],[33,-29],[33,-29],[53,-28],[82,-16],[26,-1],[105,-1],[154,13],[184,-25],[104,-14],[174,-42],[205,-60],[194,-66],[222,-152],[159,-180],[214,-455],[107,-257],[112,-210],[198,-257],[254,-162],[151,-185],[146,-204],[158,-309],[157,-309],[62,-163],[37,-95],[32,-129],[37,-154],[26,-162],[34,-161],[72,-218],[84,-179],[159,-240],[277,-263],[302,-204],[234,-113],[167,-24],[55,-28],[123,-62],[221,-170],[307,-315],[403,-515],[284,-363],[118,-151],[282,-378],[270,-299],[135,-143],[85,-54],[85,-54],[108,3],[107,3],[679,20],[108,-14],[6,0],[60,-72],[28,-156],[51,-60],[83,-143],[76,-204],[83,-215],[60,-210],[115,-221],[123,-114],[222,-90],[179,-25],[226,115],[172,30],[149,-24],[353,-72],[139,-96],[99,-113],[99,-192],[52,-149],[48,-246],[-15,-448],[-88,-545],[-16,-198],[34,-229],[68,-172],[91,-48],[147,-54],[127,6],[131,54],[162,-60],[191,-155],[154,-223],[100,-202],[4,-210],[-24,-197],[-36,-198],[8,-191],[46,-116],[168,-133],[224,-144],[153,-83],[162,-18],[191,24],[281,6],[268,3],[274,-48],[80,-15],[253,-48],[87,-12],[50,-6],[232,-42],[197,-48],[162,-75],[113,-66],[108,-65],[97,154],[59,94],[66,36],[80,-12],[92,-63],[78,6],[65,12],[29,24],[29,24],[37,78],[2,63],[1,93],[-1,130],[2,155],[29,75],[45,70],[75,90],[88,48],[79,18],[172,-55],[70,1],[101,18],[68,10],[60,-35],[44,-68],[97,-90],[64,-54],[86,-40],[23,-4],[105,-19],[67,-3],[70,10],[66,16],[115,74],[40,36],[20,60],[-16,160],[-26,213],[-31,190],[-3,103],[16,90],[47,177],[17,64],[7,115],[19,117],[65,125],[22,61],[13,67],[-2,60],[-34,57],[-44,53],[-22,57],[-9,50],[14,56],[80,103],[81,104],[44,89],[29,67],[4,73],[0,70],[16,67],[15,60],[44,50],[35,26],[40,-20],[44,-26],[73,16],[73,50],[64,64],[68,40],[45,10],[55,-50],[48,-37],[139,-60],[71,-40],[60,-56],[79,-27],[133,-17],[134,0],[95,25],[124,29],[135,30],[123,33],[73,10],[62,-24],[62,-23],[77,-66],[82,-100],[91,-106],[71,-125],[64,-113],[38,-93],[9,-89],[20,-93],[35,-81],[53,-53],[58,-17],[108,4],[115,10],[81,43],[19,18],[26,25],[16,75],[10,59],[-11,53],[-26,63],[-120,130],[-39,90],[-60,110],[-57,130],[-21,116],[-6,160],[0,107],[-33,129],[-43,168],[-28,107],[-8,185],[-5,63],[-22,40],[-66,47],[-55,30],[-9,43],[-58,30],[-57,-40],[-71,-40],[-59,-23],[-53,20],[-29,50],[-16,50],[-28,33],[12,17],[21,33],[42,27],[44,43],[55,20],[69,20],[42,23],[36,5],[34,-15],[40,-36],[49,-30],[40,-43],[40,-21],[37,-5],[38,5],[36,30],[45,80],[56,65],[37,28],[25,44],[23,88],[19,50],[33,50],[43,27],[19,28],[7,42],[-3,53],[-16,28],[-42,30],[-53,9],[-44,24],[-24,40],[-5,59],[-4,71],[-19,63],[-19,32],[-27,24],[-37,6],[-70,-3],[-71,-4],[-41,12],[-23,25],[-9,37],[3,36],[19,31],[38,63],[19,15],[18,12],[21,1],[44,22],[30,31],[29,38],[17,44],[16,50],[-1,26],[-8,24],[-29,28],[-27,36],[-14,22],[-5,22],[-2,36],[5,29],[11,26],[15,13],[15,6],[25,-1],[53,-6],[45,5],[38,18],[27,47],[27,30],[29,20],[36,18],[36,2],[23,-17],[32,-25],[37,-11],[32,-4],[27,19],[22,26],[14,55],[11,49],[27,41],[43,22],[44,8],[42,-2],[44,5],[39,22],[47,53],[30,27],[13,25],[-2,28],[-12,42],[-9,42],[-7,43],[5,52],[15,35],[33,44],[40,33],[18,34],[34,48],[62,67],[68,57],[33,35],[17,56],[-2,37],[0,31],[-20,34],[-33,20],[-151,26],[-98,20],[-11,27],[-2,30],[11,33],[38,70],[32,47],[57,66],[36,59],[24,73],[15,88],[15,97],[2,81],[-8,170],[-9,112],[5,33],[10,23],[22,30],[38,35],[43,17],[43,0],[35,8],[35,37],[36,61],[16,47],[4,53],[-2,40],[-13,40],[-27,22],[-25,7],[-43,-39],[-53,-17],[-56,-4],[-57,10],[-45,30],[-35,30],[-35,31],[-17,17],[-31,-5],[-30,-17],[-30,-23],[-29,-35],[-16,-22],[-32,-26],[-32,-9],[-67,12],[-49,-6],[-29,-9],[-39,-32],[-57,-51],[-53,-28],[-76,-27],[-77,-28],[-103,-32],[-31,5],[-26,15],[-30,40],[-21,43],[-23,60],[-3,42],[9,70],[5,65],[0,56],[-8,120],[-4,82],[4,88],[-3,55],[-8,36],[-32,64],[-9,17],[-7,43],[2,128],[-6,57],[-23,44],[-25,33],[-24,34],[-48,34],[-81,66],[-33,38],[-13,58],[-4,83],[4,76],[9,88],[10,66],[23,19],[44,25],[31,28],[19,62],[21,89],[14,37],[18,13],[9,33],[-7,26],[-24,25],[-27,16],[-32,4],[-91,-15],[-60,-23],[-54,-22],[-80,-18],[-85,-9],[-45,-13],[-63,-17],[-31,1],[-29,15],[-21,30],[-4,37],[0,44],[-15,238],[-4,133],[2,111],[15,123],[26,158],[25,71],[30,60],[40,68],[34,64],[12,45],[-4,31],[-15,22],[-42,24],[-101,87],[-75,73],[-26,46],[-8,27],[0,29],[8,37],[41,59],[53,50],[51,50],[57,35],[63,15],[21,5],[29,-3],[26,-13],[111,-139],[102,-103],[45,-36],[38,-10],[34,7],[70,47],[43,35],[23,34],[11,50],[3,51],[-5,98],[-2,95],[7,21],[35,50],[55,62],[26,13],[32,-9],[65,-50],[98,-103],[87,-80],[45,-33],[43,-34],[36,-19],[33,0],[23,11],[20,26],[9,41],[27,127],[33,143],[37,149],[67,196],[30,91],[17,84],[3,67],[-5,88],[-11,34],[-17,29],[-64,32],[-63,42],[-63,45],[-85,113],[-36,67],[-22,52],[-75,152],[-118,153],[-86,140],[-51,89],[-17,67],[-4,59],[1,122],[6,46],[23,28],[88,72],[56,60],[95,165],[89,153],[19,65],[3,63],[-13,73],[-13,38],[-8,56],[-2,52],[-15,43],[-15,37],[-31,66],[-14,31],[-13,25],[-16,16],[-20,9],[-72,3],[-18,19],[-13,27],[-11,76],[3,35],[9,45],[6,36],[-7,22],[-31,21],[-61,17],[-73,32],[-45,20],[-47,32],[-40,45],[-88,79],[-64,87],[-31,88],[-6,57],[3,47],[4,18],[8,23],[30,19],[116,79],[168,106],[114,63],[68,39],[49,17],[47,9],[45,-15],[39,-20],[41,0],[34,9],[51,30],[46,50],[22,39],[22,39],[31,29],[41,38],[28,50],[6,58],[-3,58],[-18,57],[-34,86],[-31,58],[-82,144],[-32,59],[-3,40],[-5,32],[-23,8],[-16,28],[-18,47],[-11,67],[3,47],[20,94],[16,87],[1,72],[2,48],[18,52],[1,36],[1,31],[8,39],[8,31],[22,19],[32,20],[32,42],[16,53],[-1,65],[-11,41],[-8,38],[-10,30],[-15,28],[-19,20],[-18,45],[-7,49],[-1,42],[-8,34],[-17,20],[-33,20],[-29,6],[-66,4],[-80,17],[-103,29],[-67,36],[-21,27],[-10,52],[6,50],[11,81],[-3,62],[-7,56],[-6,41],[-4,59],[3,56],[16,50],[23,37],[53,28],[40,30],[27,34],[18,42],[5,27],[4,23],[-3,63],[-10,45],[-19,31],[-37,34],[-31,52],[-18,51],[-10,45],[1,54],[10,57],[6,32],[17,36],[12,10],[23,-5],[22,-14],[17,-23],[15,-22],[10,-31],[16,-53],[16,-59],[14,-43],[21,-34],[26,-31],[35,-20],[30,-6],[30,13],[20,27],[13,49],[1,40],[-7,53],[-6,77],[-1,54],[-1,41],[11,48],[19,29],[21,19],[20,11],[26,-3],[35,-18],[39,-33],[39,-16],[29,1],[42,25],[42,50],[35,31],[28,15],[36,-3],[47,-7],[46,0],[24,9],[24,9],[37,30],[26,52],[20,24],[33,29],[33,16],[7,10],[8,11],[7,36],[-1,41],[-8,39],[-9,37],[-1,30],[-2,29],[-13,32],[-7,39],[1,15],[5,34],[18,37],[22,12],[37,2],[22,20],[22,-6],[28,-6],[24,12],[17,25],[8,36],[-3,39],[-18,48],[-24,38],[-37,48],[-21,1],[-27,-19],[-30,7],[-31,32],[-71,109],[-35,37],[-17,14],[-18,13],[-38,43],[-9,20],[0,23],[7,47],[20,47],[11,35],[-4,33],[-19,56],[-15,44],[-5,56],[9,87],[23,103],[13,26],[19,22],[28,23],[36,15],[36,16],[27,32],[18,35],[20,41],[9,34],[-1,25],[-10,25],[-24,24],[-29,35],[-27,44],[-9,36],[3,28],[5,25],[26,37],[30,43],[25,37],[17,75],[26,89],[52,64],[30,50],[38,16],[38,-16],[88,-40],[36,-8],[42,20],[45,66],[32,100],[24,79],[16,93],[-7,132],[-34,103],[-59,94],[-17,118],[1,86],[14,111],[-10,126],[-34,138],[-49,126],[-14,77],[8,81],[34,75],[12,56],[26,37],[38,21],[57,51],[80,75],[68,11],[67,63],[68,83],[74,52],[70,18],[95,-10],[92,-28],[123,-35],[45,-28],[52,8],[32,26],[12,55],[19,117],[3,102],[15,25],[44,16],[52,20],[30,35],[13,57],[4,97],[-34,98],[10,36],[47,44],[51,46],[34,46],[0,40],[-24,31],[-69,41],[-25,22],[-15,35],[-7,37],[7,29],[29,34],[51,20],[11,23],[9,36],[-3,36],[-15,48],[-36,52],[-29,39],[-64,44],[-53,9],[-36,-16],[-38,13],[-37,20],[-15,17],[-2,23],[0,27],[14,18],[23,24],[23,9],[26,13],[36,40],[21,24],[16,12],[7,1],[11,-1],[21,-1],[57,26],[42,31],[15,33],[3,48],[10,43],[30,39],[36,27],[40,40],[27,40],[18,37],[7,31],[-14,29],[-21,17],[-34,18],[-31,16],[-33,-6],[-40,-12],[-33,-29],[-22,-11],[-29,-3],[-21,2],[-21,7],[-12,17],[2,31],[4,51],[2,40],[-5,31],[-18,48],[-14,91],[-8,40],[-28,69],[-12,29],[-29,38],[-29,35],[-18,46],[-8,60],[-30,87],[-38,76],[-32,81],[-7,44],[-13,38],[-10,24],[-28,29],[-37,36],[-16,26],[2,36],[-5,44],[-24,62],[-24,62],[-14,91],[-17,56],[-9,43],[-19,40],[-24,43],[-9,31],[2,23],[27,29],[58,53],[49,42],[27,27],[22,34],[9,47],[-4,54],[4,60],[8,40],[15,30],[30,47],[37,42],[11,25],[6,36],[-6,40],[-10,33],[-19,32],[-30,23],[-26,18],[-23,49],[-12,45],[-7,28],[-10,74],[-9,68],[0,41],[5,25],[10,20],[23,6],[91,-32],[234,-79],[95,-30],[32,-3],[37,5],[19,2],[31,26],[27,29],[29,19],[29,15],[20,26],[3,29],[-1,54],[-19,116],[2,98],[8,73],[10,63],[8,38],[1,26],[-4,23],[-9,17],[-18,19],[-26,2],[-22,11],[-85,67],[-36,7],[-27,-7],[-29,6],[-19,31],[-17,25],[-2,40],[2,38],[13,26],[6,26],[13,23],[16,29],[14,27],[-1,33],[-10,24],[-16,9],[-21,4],[-26,14],[-16,23],[-6,29],[2,29],[16,29],[19,19],[27,5],[38,0],[27,4],[27,23],[13,30],[-4,39],[-5,60],[5,26],[18,38],[10,36],[-4,53],[-13,56],[-28,60],[-37,77],[-17,49],[-8,52],[2,54],[11,93],[13,63],[12,88],[2,103],[-8,113],[5,14],[13,10],[62,-7],[41,-5],[38,-9],[49,-15],[44,8],[32,13],[35,26],[32,12],[27,10],[29,25],[18,20],[37,41],[32,20],[23,12],[36,14],[55,13],[58,29],[36,18],[35,36],[29,39],[20,44],[6,33],[-1,37],[-11,50],[-80,189],[-30,57],[-20,41],[-21,38],[-25,36],[-8,12],[-22,48],[-5,26],[5,22],[11,24],[18,19],[42,3],[31,8],[33,20],[26,12],[29,-6],[30,-4],[38,1],[35,20],[37,16],[31,4],[28,-17],[37,-36],[41,-46],[26,-7],[25,23],[19,29],[15,30],[22,24],[35,16],[44,34],[27,26],[17,25],[12,38],[4,56],[4,27],[17,30],[50,81],[22,43],[9,37],[4,77],[-4,43],[-17,53],[-29,80],[-30,71],[-24,38],[-40,57],[-47,56],[-45,43],[-36,55],[-55,79],[-31,38],[-29,59],[-24,80],[-25,88],[-6,54],[8,39],[25,17],[30,23],[35,30],[32,40],[34,58],[46,78],[34,49],[10,26],[-10,27],[-31,59],[-22,38],[-11,29],[-3,27],[6,34],[17,43],[18,35],[25,20],[39,-5],[32,-1],[24,10],[21,23],[16,29],[6,30],[-6,28],[-21,47],[-14,50],[-5,29],[11,18],[3,15],[-3,23],[-7,38],[-7,44],[6,33],[14,21],[23,20],[20,9],[36,7],[53,5],[38,2],[34,-2],[32,-3],[27,-3],[49,-7],[28,4],[25,24],[22,33],[61,91],[24,42],[17,45],[5,39],[-15,70],[-20,48],[-24,42],[-26,27],[-20,7],[-31,3],[-33,0],[-25,2],[-16,12],[-23,20],[-62,72],[-66,75],[-21,40],[-18,31],[-8,33],[2,23],[11,27],[25,10],[32,0],[26,6],[20,19],[20,40],[7,43],[-2,47],[-8,37],[-17,38],[-24,30],[-26,17],[-18,-3],[-19,-30],[-21,-20],[-32,-6],[-30,-3],[-16,9],[-8,11],[-3,8],[-4,17],[-2,43],[6,37],[15,34],[6,30],[0,48],[-10,43],[-12,35],[1,25],[5,24],[13,36],[22,21],[22,21],[29,17],[26,14],[24,14],[20,19],[22,26],[5,34],[-2,37],[-7,32],[1,29],[11,22],[22,21],[32,15],[29,0],[19,-23],[29,-43],[19,-17],[26,-18],[27,-2],[28,14],[19,26],[8,38],[2,35],[-9,38],[-13,59],[-2,39],[6,39],[8,24],[28,25],[24,36],[12,34],[3,32],[-3,28],[-8,23],[-18,7],[-21,6],[-20,-3],[-24,-19],[-20,-18],[-38,-12],[-23,1],[-17,1],[-26,0],[-23,1],[-17,-9],[-46,-24],[-63,-33],[-30,-10],[-23,0],[-23,10],[-18,16],[-13,25],[3,38],[-1,42],[-4,27],[-7,24],[-19,31],[-25,27],[-19,11],[-22,11],[-41,-5],[-32,13],[-21,15],[-12,30],[-4,36],[0,38],[-5,28],[-14,39],[-19,47],[-12,23],[-12,10],[-17,5],[-16,2],[-29,-7],[-24,-6],[-18,1],[-19,11],[-16,16],[-14,20],[-11,27],[1,37],[6,20],[13,17],[23,14],[14,14],[22,22],[10,19],[20,36],[20,31],[24,22],[30,9],[39,0],[31,-8],[27,-19],[12,-22],[14,-20],[23,-10],[20,-12],[23,9],[10,8],[9,12],[2,14],[2,17],[-5,48],[0,47],[1,37],[9,29],[16,16],[27,10],[20,4],[36,-3],[23,6],[16,20],[12,29],[2,32],[-12,37],[-21,24],[-17,27],[-7,28],[-5,29],[-8,35],[0,25],[9,14],[16,9],[17,-1],[31,-36],[27,-30],[24,-16],[24,4],[49,55],[25,27],[12,13],[1,1],[15,5],[14,5],[38,19],[31,34],[15,33],[9,40],[4,31],[12,38],[12,27],[18,15],[17,10],[33,3],[30,-17],[18,-22],[14,-7],[15,3],[16,-1],[17,9],[51,32],[37,27],[29,17],[26,2],[26,1],[31,20],[17,29],[23,40],[23,40],[20,52],[14,39],[14,39],[4,29],[4,28],[-3,31],[9,16],[32,13],[43,8],[35,4],[15,2],[11,17],[25,-6],[14,-17],[9,-34],[9,-33],[3,-44],[-9,-41],[-9,-53],[7,-7],[13,0],[10,27],[13,5],[17,17],[4,11],[8,23],[26,26],[20,14],[36,17],[31,6],[37,0],[28,-24],[22,-6],[23,34],[26,26],[32,10],[29,-6],[30,-4],[21,-11],[17,8],[3,32],[-20,33],[5,20],[28,16],[24,-10],[21,-22],[23,-53],[16,-40],[4,-44],[-8,-35],[3,-23],[21,-11],[18,8],[10,25],[12,73],[-8,80],[-11,39],[-2,28],[11,28],[16,4],[29,6],[97,-23],[51,-39],[30,-23],[41,-9],[29,-5],[14,13],[11,33],[-13,58],[-3,38],[16,37],[34,43],[18,10],[19,0],[27,-20],[34,-40],[21,-56],[12,-53],[12,-33],[16,-11],[29,4],[39,-10],[29,5],[34,25],[36,38],[21,43],[17,40],[11,8],[17,-16],[22,1],[14,29],[11,42],[14,48],[13,51],[32,31],[68,34],[58,9],[108,1],[66,10],[27,9],[30,23],[29,10],[40,-2],[33,-13],[20,2],[34,20],[18,-3],[63,-41],[44,-26],[29,-9],[28,0],[18,25],[14,14],[18,-2],[15,-7],[17,-23],[5,-28],[-4,-36],[10,-22],[13,5],[9,28],[4,40],[2,46],[13,33],[18,6],[16,-20],[17,-32],[11,-34],[-4,-31],[-11,-35],[-2,-24],[19,-19],[27,6],[22,36],[18,56],[20,41],[22,43],[16,36],[22,11],[20,-14],[5,-41],[3,-55],[18,-43],[15,-27],[24,-17],[18,14],[19,22],[13,34],[11,67],[12,112],[-1,99],[5,57],[9,43],[19,32],[35,21],[36,3],[47,-23],[27,-4],[36,20],[32,13],[32,-5],[15,13],[27,38],[25,22],[9,-8],[3,-62],[-6,-37],[-23,-26],[4,-18],[59,-28],[22,-6],[7,-29],[12,-32],[7,-7],[23,10],[15,-12],[18,2],[18,10],[15,20],[5,39],[12,58],[-3,17],[-4,19],[-4,17],[-11,13],[-18,30],[-20,45],[-11,46],[-15,50],[-6,53],[-14,46],[14,30],[23,15],[6,23],[15,-10],[24,5],[14,34],[17,14],[14,13],[20,-3],[8,-15],[13,35],[19,-2],[10,-25],[0,-27],[18,-14],[17,-4],[25,8],[34,66],[27,31],[27,18],[41,8],[39,2],[27,0],[21,15],[28,14],[15,-14],[26,-13],[23,23],[30,-1],[22,-5],[9,-17],[-1,-14],[-16,-29],[-5,-18],[7,-25],[10,-12],[16,1],[13,11],[2,33],[10,30],[20,12],[19,-3],[7,-10],[2,-27],[6,-25],[18,-11],[27,-4],[25,-23],[31,-39],[34,-53],[31,-50],[37,-36],[17,-27],[9,-27],[11,-13],[23,2],[19,-12],[24,-16],[20,14],[30,28],[39,50],[34,53],[37,46],[20,12],[56,-4],[80,-6],[75,4],[28,6],[23,11],[23,34],[30,29],[30,40],[28,30],[35,20],[52,21],[30,6],[28,10],[23,12],[16,-11],[16,-11],[14,0],[13,32],[15,32],[33,79],[19,72],[13,60],[9,89],[17,74],[33,106],[19,50],[29,62],[32,47],[108,129],[76,81],[68,73],[44,22],[86,5],[56,1],[43,5],[28,15],[19,-9],[36,-44],[29,-13],[24,6],[35,14],[37,-5],[55,-17],[98,20],[69,53],[80,15],[72,-46],[61,46],[79,161],[66,137],[52,40],[65,-2],[162,-25],[85,-10],[53,20],[47,166],[27,149],[24,35],[27,24],[44,-21],[62,-12],[42,-6],[71,-3],[58,-2],[44,-58],[30,-60],[40,0],[15,32],[-9,57],[2,49],[42,34],[7,57],[47,56],[37,18],[61,30],[70,11],[74,-41],[65,-13],[37,54],[35,52],[97,-9],[43,29],[57,-20],[42,34],[56,-48],[41,-26],[41,-27],[40,-62],[52,-46],[58,-29],[92,-17],[59,-9],[48,-28],[54,-72],[78,-60],[67,-46],[85,-30],[82,-28],[72,-57],[63,-54],[32,-14],[33,5],[17,27],[10,58],[4,35],[15,18],[29,-7],[40,-20],[28,-8],[23,-1],[21,-4],[17,11],[9,39],[12,17],[24,-2],[17,8],[9,32],[5,40],[10,35],[12,29],[20,10],[78,4],[100,18],[94,-3],[34,16],[14,-6],[15,-10],[18,-5],[10,16],[6,67],[38,90],[21,27],[32,16],[43,7],[32,23],[29,3],[36,-7],[35,-8],[29,6],[8,19],[39,5],[16,33],[16,88],[6,18],[22,0],[56,-13],[34,-9],[22,6],[25,18],[5,28],[-11,37],[5,16],[30,15],[34,10],[18,0],[29,-8],[37,-25],[27,-38],[11,-7],[22,17],[19,10],[12,-11],[0,-26],[21,-28],[32,-8],[32,-30],[31,-38],[27,-40],[40,-26],[31,9],[24,23],[30,12],[28,-2],[53,-46],[18,-28],[11,-43],[20,-40],[22,-24],[17,-26],[8,-28],[4,-32],[8,-9],[9,7],[3,40],[2,33],[5,24],[12,14],[12,-4],[13,-10],[6,-49],[-4,-39],[3,-49],[19,-29],[32,-4],[30,14],[15,-26],[16,-35],[19,-2],[4,20],[2,35],[-17,45],[-7,46],[1,42],[25,43],[39,32],[48,18],[79,3],[63,-3],[54,20],[55,6],[49,-11],[30,8],[25,39],[57,84],[1,62],[-4,59],[-14,38],[-1,30],[4,22],[-18,38],[-14,11],[-13,11],[-16,33],[1,40],[0,43],[20,-3],[18,16],[9,24],[7,17],[7,17],[18,10],[18,10],[38,14],[57,-17],[22,-23],[66,-6],[14,9],[5,17],[-35,158],[-3,80],[-1,42],[3,37],[13,15],[16,10],[17,21],[12,49],[-1,35],[-9,23],[-42,10],[-41,9],[-34,4],[-48,-13],[-52,-17],[-17,15],[-11,23],[-4,35],[7,38],[21,34],[29,8],[46,23],[8,30],[2,50],[-11,35],[-19,57],[-22,32],[-21,19],[-10,15],[-8,102],[3,8],[7,6],[11,-2],[26,10],[27,23],[2,22],[-7,22],[-24,20],[-23,26],[-11,42],[-14,99],[-19,175],[-4,157],[-15,38],[-40,65],[-22,71],[0,71],[3,132],[14,66],[13,32],[0,36],[-14,53],[-25,63],[-23,47],[-19,50],[-29,121],[-10,69],[-3,20],[-18,44],[-22,26],[-1,24],[11,17],[15,26],[-9,41],[-29,50],[-70,103],[-38,100],[-15,22],[-38,58],[-40,95],[-17,64],[-15,110],[-7,122],[-8,158],[-1,85],[5,118],[7,116],[-2,85],[-16,61],[-43,60],[-27,13],[-63,14],[-54,38],[-34,61],[2,44],[2,64],[-7,67],[-21,55],[-24,54],[-35,54],[-19,47],[-2,20],[-2,29],[17,133],[22,43],[3,33],[-14,42],[-3,41],[0,37],[17,31],[-5,35],[-20,43],[-22,9],[-19,23],[-19,-3],[-9,-22],[-32,3],[-38,24],[-50,61],[-56,48],[-67,40],[-78,62],[-37,49],[-6,29],[14,39],[19,34],[43,59],[40,59],[16,51],[-6,32],[-8,28],[-7,28],[-1,22],[4,24],[10,7],[11,0],[7,14],[4,45],[-3,39],[-4,23],[3,21],[7,36],[13,13],[14,33],[4,35],[-8,20],[-8,21],[-8,44],[-16,40],[-9,27],[-3,27],[9,8],[15,3],[4,25],[2,30],[1,26],[-11,29],[-24,27],[-13,22],[-4,25],[13,19],[22,10],[26,1],[17,10],[11,13],[0,18],[-7,14],[-6,14],[-15,29],[-7,34],[6,30],[5,64],[9,31],[13,15],[18,6],[4,24],[-6,21],[-14,15],[-27,2],[-13,11],[-20,31],[-14,28],[-9,46],[-8,39],[-13,14],[-13,17],[-2,15],[6,12],[-4,21],[-16,26],[-9,24],[8,22],[11,29],[18,24],[12,22],[-3,40],[-6,27],[-20,47],[-23,59],[-14,7],[-33,3],[-14,17],[2,24],[2,46],[0,51],[0,96],[-4,67],[-14,64],[-35,77],[-12,57],[-8,56],[1,37],[8,45],[4,32],[-6,26],[-37,73],[-29,43],[-38,37],[-31,48],[-13,43],[18,66],[24,101],[26,97],[6,63],[-21,41],[-41,33],[-25,35],[-17,70],[1,80],[15,70],[-18,57],[-8,19],[-6,43],[4,34],[18,35],[3,24],[3,38],[-5,34],[-13,29],[-3,17],[6,15],[20,25],[24,38],[1,52],[-8,23],[-18,18],[-38,17],[-18,14],[-35,55],[-31,48],[-16,25],[-14,16],[-16,9],[-10,6],[-4,24],[-9,12],[-15,10],[-15,4],[-10,9],[-18,6],[-19,6],[-6,17],[0,44],[-16,50],[0,37],[4,52],[1,68],[-11,44],[-17,22],[-22,11],[-17,22],[-14,47],[-1,31],[9,49],[21,70],[2,23],[2,24],[-13,24],[-18,11],[-12,19],[-6,36],[-9,28],[0,31],[-2,31],[-5,19],[4,25],[9,17],[-2,14],[-12,15],[-12,12],[-19,19],[-34,17],[-17,27],[-39,49],[-20,51],[-2,68],[22,56],[48,76],[31,62],[21,54],[30,83],[8,97],[1,100],[9,80],[7,73],[-1,46],[-18,65],[-32,43],[-147,67],[-66,48],[-46,73],[-54,70],[-21,76],[-10,104],[1,76],[-14,62],[-15,62],[-39,110],[-7,23],[-4,12],[10,40],[14,29],[24,66],[13,67],[4,81],[-6,59],[-17,80],[-10,65],[-6,89],[-12,68],[-17,72],[-20,47],[-34,86],[-33,20],[-33,28],[-9,38],[3,69],[-14,31],[-41,13],[-35,22],[-25,39],[-12,87],[-12,78],[-16,84],[-15,75],[-12,97],[-13,95],[-5,51],[-29,64],[-23,62],[-46,62],[-70,54],[-25,80],[-29,57],[-43,52],[-37,43],[-21,35],[-9,35],[28,86],[15,46],[-2,59],[-7,34],[-23,29],[-25,47],[-11,46],[-3,44],[-19,28],[-15,22],[-11,23],[-11,22],[-2,28],[5,18],[12,12],[16,0],[12,9],[-4,22],[-5,18],[-14,21],[-17,11],[-32,14],[-30,31],[-22,41],[-16,36],[-16,57],[-11,59],[1,61],[19,44],[10,44],[-21,61],[0,16],[0,15],[4,7],[4,7],[14,5],[23,8],[41,17],[27,17],[24,9],[26,-3],[25,-12],[28,2],[20,14],[20,45],[15,21],[19,5],[29,10],[34,-1],[21,15],[6,32],[2,28],[7,18],[22,16],[27,-4],[28,-3],[23,-15],[28,-17],[25,-16],[26,-8],[38,0],[28,1],[17,-13],[17,-13],[23,-12],[26,-1],[19,20],[10,27],[19,8],[19,-12],[23,-8],[16,11],[28,-10],[17,10],[22,21],[25,22],[28,27],[24,11],[21,-8],[9,-22],[21,-24],[28,-4],[30,17],[33,30],[34,17],[31,-4],[16,-2],[16,-3],[33,8],[20,8],[20,8],[47,40],[48,40],[43,26],[14,6],[68,27],[42,6],[58,3],[19,2],[10,1],[4,1],[14,11],[5,5],[5,6],[2,3],[18,29],[15,18],[14,18],[42,33],[120,130],[112,122],[3,2],[2,5],[35,51],[10,15],[45,37],[29,25],[4,4],[4,3],[45,17],[40,78],[39,78],[36,86],[71,13],[680,676],[95,-156],[164,-291],[129,-334],[178,-247],[222,-173],[307,-172],[278,4],[286,-3],[214,-31],[295,-85]],[[188564,398143],[49,-91],[49,-90],[271,-399],[297,-399],[250,-223],[114,-116],[171,-183],[148,-130],[99,-136],[97,-204],[158,-304],[81,-206],[66,-213],[80,-98],[130,7],[197,188],[196,188],[152,16],[140,-5],[130,28],[75,105],[77,49],[77,49],[110,-37],[4,12],[11,40],[67,0],[128,0],[43,2],[167,6],[205,-15],[175,-128],[141,-232],[396,69],[395,68],[318,-273],[876,-212],[187,503],[592,1587],[424,856],[487,531],[625,216],[665,129],[1062,-213],[1021,329],[581,-89],[1148,-415],[263,41],[740,517],[826,898],[495,275],[926,1004],[324,300],[1076,582],[1731,638],[409,294],[506,738],[229,156],[778,-283],[1335,757],[1514,375],[394,552],[333,968],[777,885],[954,550],[636,674],[1922,536],[777,988],[956,618],[108,137],[273,522],[143,170]],[[397434,254553],[9,-20],[15,-32]],[[397458,254501],[28,-48],[24,-33],[19,-26],[61,-74],[84,-67],[98,-40],[104,-22],[102,-4],[35,-2],[158,-3],[112,-9],[106,-38],[91,-53],[76,-67],[131,-143],[125,-158],[137,-172],[173,-217],[169,-216],[-75,-221],[-245,-714],[-12,-35]],[[398959,252139],[-266,-778]],[[398693,251361],[-3,-10],[-263,-798],[-13,-40],[-260,-790],[-1,-5],[-7,-22],[-134,-405],[-36,-111]],[[397976,249180],[-11,-34],[-12,-34]],[[397953,249112],[-12,-37],[-14,-44],[-12,-34],[-14,-43],[0,-2]],[[397901,248952],[-2,-6],[-11,-32]],[[397888,248914],[-126,-384],[-7,-20],[-40,-123]],[[397715,248387],[-8,-24],[-2,-5],[-101,-251],[-59,-115],[-14,-88],[-34,-97]],[[397497,247807],[-20,-62]],[[397477,247745],[-43,-135],[-30,-95],[-127,-877],[-65,-445],[0,-4],[-1,-4],[-67,-682],[0,-3],[-45,-441],[-8,-467],[0,-9],[0,-4],[0,-12],[-2,-1596],[0,-56],[0,-11],[0,-2],[0,-11],[-1,-427],[-59,-1389],[-8,-200],[-1,-1],[0,-11],[0,-11]],[[397020,240852],[-2,-27],[-7,-174],[0,-8],[-6,-133]],[[397005,240510],[-10,-305],[-7,-217],[-6,-178],[-12,-340],[0,-3]],[[396970,239467],[-68,-2034]],[[396902,237433],[0,-58],[-1,-19],[0,-2],[0,-1],[0,-19]],[[396901,237334],[-3,-195],[-25,-1877]],[[396873,235262],[-500,-161]],[[396373,235101],[-223,-72],[-410,-134]],[[395740,234895],[-24,-10],[-127,-53],[-253,-111],[-213,-92],[-216,-60],[-1265,-349],[-396,-117],[-973,-289],[-565,-167]],[[391708,233647],[-7,-2],[-417,-110]],[[391284,233535],[-523,-139],[-50,-13],[-498,-132],[-3,0],[-756,-224],[-952,-283],[-27,-8],[-14,-2],[-209,-39],[-110,-28],[-351,-89],[-158,-40],[-51,-16],[-220,-70],[-189,-59],[-251,-80],[-288,-90],[-241,-76],[-183,-58],[-48,4],[-57,30],[-72,10],[-60,-6],[-81,-27],[-19,-11],[-36,-19],[-70,-7],[-64,1],[-55,-11],[-73,-38],[-40,-37],[-36,-28],[-406,-136],[-12,-4],[-78,-26],[-310,-78],[-184,-47],[-274,-84],[-42,-13],[-335,-117],[-44,-16],[-51,-2],[-41,6],[-43,13],[-73,-1],[-86,-20],[-237,-56],[-296,-70],[-246,-58],[-80,-29],[-9,-6],[-49,-36],[-53,-62],[-10,-12],[-364,-476],[-338,-458],[-189,-253],[-221,-333],[-67,-91],[-67,-132],[-12,-25],[-72,-139],[-65,-103],[-151,-237],[-19,-23],[-35,-43],[-70,-84],[-10,-12],[-37,-47],[-89,-112],[-35,-56],[-92,-142],[-242,-415],[-130,-171],[-132,-108],[-42,-51],[-42,-51],[-408,-597]],[[379611,226937],[-828,874],[-453,477],[-8,8],[-2,3],[-762,801],[-1031,1096],[-325,342],[-54,58]],[[376148,230596],[-11,11],[-146,145],[-8,8],[-9,9],[-82,84],[-64,65],[-5,5],[-90,87],[-37,35],[-51,47],[-162,151],[-96,82],[-96,83],[-63,50],[-50,41],[-67,55],[-40,32],[-181,133],[-75,55],[0,97],[7,167],[16,149],[36,210],[96,523],[85,459],[0,3],[20,108],[37,200],[43,229],[6,33],[6,34],[11,60]],[[375178,234046],[19,105],[2,9]],[[375199,234160],[3,17],[33,180],[22,117],[47,255],[10,53]],[[375314,234782],[1,6]],[[375315,234788],[0,2],[27,169],[5,37],[3,23],[2,16],[3,20],[0,2]],[[375355,235057],[4,33]],[[375359,235090],[4,33],[0,2],[1,71],[0,2],[-2,45],[-2,46],[-15,77],[0,2],[-40,123],[-4,13],[-18,57],[-5,17],[-24,73],[-9,31],[-6,18],[-9,26],[-18,54],[-1,2],[-11,33],[-2,4],[-28,78],[-3,6],[-26,68],[-30,47],[-39,54],[-11,13],[-31,34],[-4,4],[-46,46],[-22,22],[-43,35],[-24,18],[-13,8],[-50,32],[-2,1],[-76,41],[-14,9],[-26,14],[-61,35],[-18,10],[-44,23],[-63,33],[-8,5],[-10,5],[-70,40],[-40,23],[-20,11],[-147,89],[-1,1],[-25,14],[-232,128],[-157,92],[-111,65],[-92,66],[-21,15],[-4,3],[-108,100],[-57,72],[-75,114],[-13,20],[-54,85],[-40,72],[-41,71],[-22,49],[-4,7],[-16,34],[-28,71],[-28,84],[-9,28],[-4,10],[-32,98]],[[373055,237922],[-22,65]],[[373033,237987],[-8,28],[-31,103]],[[372994,238118],[-2,8]],[[372992,238126],[-33,89],[-10,28],[-46,127],[-13,35],[-7,20],[-13,34],[-62,170],[-4,13],[-5,12],[-6,17],[-3,8],[-36,101],[-51,142],[-22,62],[-5,13],[-42,123],[-11,31],[-39,112],[-9,27],[-17,49],[-37,106],[-21,51],[-88,209],[-14,35],[-82,229],[-14,38],[-24,68],[-3,13],[-6,18],[-53,181],[-11,38],[-63,218],[-25,86],[-2,7],[-7,26],[-30,115],[-8,31],[-60,231],[-5,23],[-15,58],[-45,177],[-3,9],[-14,59],[-3,11],[-65,259],[-59,236],[-1,4],[-73,290],[-27,101],[-47,179],[-36,137],[-27,101],[-19,71],[-61,231],[-30,118],[-11,45],[-64,248],[-60,237],[-21,83]],[[371324,243716],[-2,6]],[[371322,243722],[0,1],[0,2],[-4,15],[-5,19],[-2,8],[-10,39],[-78,304],[-2,10],[-12,48],[-46,180],[-8,29],[-72,261],[-99,362],[-6,24],[-17,60],[-42,157],[-7,25],[-23,83],[-23,86],[-35,133],[-4,12],[-2,8],[-3,12],[-3,12],[-9,33],[-24,90],[-14,52],[-7,24],[-11,38],[-2,8],[-52,181],[-32,94],[-55,161],[-5,15],[-11,31],[-55,143],[-54,144],[-11,28],[-1,1]],[[370476,246655],[0,2]],[[370476,246657],[-64,156],[-173,422],[-26,62],[83,73],[142,126],[100,88],[32,29],[3,3],[5,4],[71,63],[34,31],[30,42],[1,2],[19,40],[20,56],[59,154],[15,40],[15,39],[7,20],[50,130],[22,52],[1,3],[46,64],[6,9],[3,4],[55,78],[156,185],[41,49]],[[371229,248681],[18,22],[19,21]],[[371266,248724],[1,3],[29,47],[44,93],[1,2],[76,200],[4,9],[6,15],[1,4]],[[371428,249097],[1,2]],[[371429,249099],[2,5],[8,23],[32,86],[60,160],[8,21]],[[371539,249394],[21,58],[68,180]],[[371628,249632],[138,362],[23,61],[3,7],[9,23],[6,17],[24,59],[29,70],[5,14],[1,1],[26,76],[44,124],[14,84],[8,84],[2,48],[4,64]],[[371964,250726],[0,5]],[[371964,250731],[-3,92],[-5,46],[-14,63],[-9,36],[-12,41],[-29,79],[109,38],[16,6],[82,28],[448,157],[-7,247],[-6,270],[106,35],[461,154],[76,35],[43,20],[3,1],[99,69],[-58,172],[-26,68],[161,111],[75,52],[28,19],[-2,102],[0,8],[-5,58],[-6,59],[-17,65],[-11,31],[-2,8],[-6,16],[-8,24],[-35,106],[-10,31],[-22,63],[-56,170],[-11,27],[-10,27],[-71,190],[-15,41],[-25,67],[-9,24],[-6,14],[-22,58],[4,5],[43,65],[22,42],[89,216],[2,4],[1,2],[36,80],[10,23],[4,9],[0,1]],[[373364,254206],[1,2]],[[373365,254208],[1,1],[4,9],[2,4],[24,50],[13,27],[17,24],[7,10],[1,1],[2,3],[2,3],[1,1]],[[373439,254341],[36,51]],[[373475,254392],[38,54],[29,43],[74,109],[29,40],[20,29],[109,155],[51,72],[2,3],[6,8],[3,3],[5,8],[4,6],[4,5],[4,6],[5,7],[4,6],[3,4],[7,10],[9,13],[2,3],[7,9],[1,2],[1,1],[2,4],[1,0],[0,1]],[[373895,254993],[5,6]],[[373900,254999],[7,10],[22,30],[25,34],[2,3],[20,27],[7,9],[25,35],[1,1],[2,3],[2,2],[3,4],[1,2],[21,21],[32,22],[8,3],[98,38],[110,40],[11,6],[2,1],[30,17],[2,2],[36,52],[28,46],[31,51],[21,35],[22,23],[17,14],[15,8],[6,3],[26,18],[37,23],[37,25],[28,31],[24,51],[16,47],[7,42],[7,41],[-1,66],[-1,55],[6,50],[10,54],[12,29],[12,29],[22,40],[29,32],[54,50],[53,38],[26,14],[9,5],[38,9],[43,6],[46,-4],[44,-19],[107,-48],[7,-3],[129,-57],[81,-37],[5,-2],[50,-16],[32,-7],[22,-6],[41,-2],[106,6],[72,8],[28,6],[21,5],[13,5],[48,20],[60,40],[19,13],[6,4],[32,39],[34,49],[75,143],[32,63],[93,176],[6,11],[7,12],[40,75],[22,35],[22,36],[17,26],[6,27],[1,10],[2,26],[-6,70],[0,6],[-11,70],[-22,146],[-8,65],[0,101],[11,145],[1,64],[4,65],[11,39],[11,28],[24,63],[30,63],[16,27],[14,23],[1,1],[4,7]],[[376407,257913],[1,2]],[[376408,257915],[11,17],[21,34],[15,23]],[[376455,257989],[2,4]],[[376457,257993],[1,2],[6,10],[56,94],[16,36],[28,65],[8,18]],[[376572,258218],[6,19]],[[376578,258237],[3,12],[4,12],[16,52],[3,10],[5,16],[26,47],[48,39],[23,22],[2,7],[9,20],[14,53],[12,61],[4,53],[7,42],[3,9],[24,60],[8,20],[3,8],[2,5],[18,40],[19,22],[9,9],[12,11],[3,3],[35,14],[37,7],[43,9],[37,6],[41,0],[16,-4],[17,-4],[60,-22],[88,-40],[80,-18],[50,-26],[3,-2],[20,-8],[36,-14],[26,-11],[4,-1],[4,-2],[12,-4],[3,-2],[2,0]],[[377469,258748],[1,-1]],[[377470,258747],[1,0]],[[377471,258747],[1,-1]],[[377472,258746],[4,-1],[32,-6],[16,-4],[63,-13],[7,-2],[51,-19],[30,-10],[39,-22],[22,-25],[23,-26],[31,-30],[32,-27],[6,-6],[43,-24],[32,-16],[46,-14],[19,-1],[22,-2],[5,0],[49,7],[30,4],[45,-6],[29,-7],[97,-45],[17,-2],[17,-2],[6,3],[29,13],[138,83],[19,12],[35,21],[32,20],[55,33],[26,14],[31,18],[14,7],[20,11],[14,8],[155,86],[3,1],[153,73],[14,5],[50,15],[39,13],[11,2],[82,18],[50,10],[42,10],[203,39],[17,3],[17,3],[27,16],[58,49],[65,52],[53,26],[100,55],[89,41],[32,20],[40,41],[35,39],[35,52],[29,45],[23,54],[6,27],[5,53],[2,17],[-4,98],[6,30],[16,40],[12,32],[59,108],[28,48],[37,49],[25,27],[42,32],[37,17],[40,4],[37,-14],[54,-26],[80,-35],[106,-47],[119,-60],[21,-10],[32,-1],[32,-12],[33,-6],[3,-1],[38,-1],[59,-1],[3,0],[81,14],[42,7],[37,15],[10,3],[9,4],[12,5],[10,4],[4,2],[4,2],[49,20],[4,2],[1,0],[40,16],[13,6],[19,7],[27,11],[157,64],[3,1],[67,30],[4,2],[9,6],[38,22],[48,22],[42,10],[26,3],[40,5],[19,2],[18,13],[41,44],[174,258],[33,47],[32,47],[31,39],[20,9],[23,2],[26,-7],[12,-5],[6,-25],[-4,-33],[-5,-49],[-8,-52],[-4,-51],[7,-64],[15,-86],[13,-51],[16,-47],[21,-45],[19,-23],[35,-46],[85,-82],[88,-78],[56,-40],[49,-36],[61,-22],[56,-8],[41,0],[56,16],[43,27],[33,33],[24,35],[16,36],[48,106],[27,73],[31,53],[24,26],[46,51],[50,41],[35,40],[36,41],[18,23],[23,51],[85,238],[23,58],[55,140],[17,42],[17,28],[18,29],[31,32],[24,16],[12,5],[13,5],[45,-2],[48,-10],[78,-28],[40,-18],[13,-13],[12,-12],[12,-34],[-2,-24],[-1,-23],[-15,-43],[-20,-35],[-20,-36],[-47,-59],[-20,-26],[-33,-36],[-8,-8],[-10,-47],[-15,-27],[-14,-28],[-13,-53],[1,-28],[2,-28],[6,-47],[14,-18],[15,-19],[61,-34],[80,-21],[16,-3],[22,2],[63,8],[80,38],[40,21],[39,15],[43,11],[78,-4],[69,0],[41,-3],[21,-1],[45,-10],[31,-17],[56,-48],[54,-80],[12,-25],[11,-26],[115,-349],[34,-91],[46,-104],[53,-79],[45,-62],[48,-45],[49,-34],[49,-19],[47,-18],[67,-1],[78,7],[63,7],[34,-2],[75,-21],[123,-23],[21,-12],[27,-14],[21,-25],[21,-24],[35,-41],[93,-135],[29,-38],[43,-44],[44,-44],[73,-24],[33,-2],[80,-4],[89,5],[62,18],[35,13],[26,3],[45,-2],[90,12],[55,12],[36,14],[55,86],[59,108],[41,119],[56,181],[28,91],[105,303],[43,127],[45,162],[25,106],[14,34],[49,118],[29,96],[14,72],[14,90],[11,98],[5,74],[4,51],[19,224],[13,179],[6,106],[15,134],[5,40],[8,54],[6,23],[19,68],[12,31],[13,32],[40,79],[50,76],[182,218],[65,77],[106,141],[40,54],[18,1],[21,11],[25,47]],[[387699,262431],[81,-123],[152,-159],[186,-213],[83,-113],[86,-121],[70,-116],[34,-38],[34,-38],[94,-97],[125,-175],[60,-94],[141,-168],[107,-128],[37,-45],[131,-184],[77,-107],[253,-324],[414,-556],[561,-735],[564,-752],[138,-191],[22,-30],[27,-23],[33,-29],[33,-28],[92,-90],[104,-91],[119,-86],[88,-54],[70,-43],[153,-79],[129,-73],[76,-42],[119,-39],[77,-6],[35,-2],[88,27],[92,63],[212,181],[99,120],[109,99],[152,90],[174,101],[67,51],[23,17],[66,67],[9,9],[4,4],[2,2],[3,6],[73,112],[70,147],[88,173],[30,48],[59,97],[44,59],[46,45],[51,39],[52,34],[16,5],[44,16],[63,0],[59,-25],[129,-49],[118,-40],[104,-71],[318,-266],[186,-158],[142,-107],[105,-53],[73,-19],[16,-1],[80,-7],[57,11],[84,25],[103,61],[320,192],[54,32],[85,50],[282,166],[150,80],[118,44],[129,15],[79,-2],[64,-7],[80,-44],[81,-52],[50,-53],[59,-72],[74,-124],[60,-109],[74,-150],[109,-259],[76,-193],[51,-160],[23,-110],[18,-116],[2,-64],[1,-64],[2,-56],[2,-56],[2,-728],[4,-230],[-6,-170],[-22,-154],[-3,-13],[-30,-139],[-74,-204],[-45,-113],[-50,-175],[-24,-91],[-18,-97],[-6,-54],[0,-91],[11,-94],[0,-7],[19,-72],[16,-50],[3,-5]],[[660314,481148],[187,84],[161,19],[159,-35],[162,-73],[151,-88],[152,-128],[191,-171],[176,-201],[215,-246],[310,-331],[190,-217],[218,-305],[318,-449],[154,-236],[118,-189],[94,-105],[119,-83],[123,-53],[107,-46],[128,-58],[98,-58],[69,-96],[59,-105],[64,-116],[31,-151],[92,-545],[331,-1713],[21,-105],[0,-271],[-41,-271],[-149,-276],[-106,-196],[-130,-209],[-67,-162],[12,-177],[65,-272],[62,-418],[0,-526],[-62,-573],[-56,-379],[-98,-348],[-159,-278],[-256,-171],[-287,-69],[-390,26],[-232,66],[-153,93],[-209,139],[-483,496],[-123,85],[-221,93],[-195,69],[-118,0],[-97,-92],[-139,-217],[-33,-37],[-33,-37],[-88,-34],[-138,-51],[-190,-69],[-66,-74],[-47,-62],[-35,-123],[-29,-186],[-56,-116],[-92,-132],[-39,-158],[-13,-263],[3,-345],[12,-289],[-22,-167],[-29,-143],[-77,-229],[-87,-251],[-125,-310],[-159,-430],[-93,-417],[-26,-258],[-20,-214],[1,-226],[23,-199],[35,-147],[100,-182],[149,-240],[172,-178],[161,-89],[93,-62],[53,-77],[29,-155],[30,-186],[-12,-398],[-11,-340],[8,-229],[38,-104],[139,-194],[159,-143],[72,-44],[64,-87],[21,-56],[15,-81],[-14,-118],[-18,-83],[-203,-563],[-114,-314],[-42,-218],[11,-254],[19,-198],[45,-180],[133,-529],[63,-248],[23,-181],[-15,-265],[-1,-209],[26,-171],[38,-166],[59,-85],[84,-77],[60,-55],[241,-158],[166,-108],[90,-78],[82,-124],[12,-21],[60,-110],[79,-166],[117,-217],[128,-70],[159,-116],[130,-131],[145,-202],[74,-100],[27,-85],[4,-85],[5,-83],[-18,-84],[-2,-108],[24,-100],[65,-93],[95,-86],[10,-100],[-15,-186],[-8,-125],[0,-126],[36,-132],[46,-116],[70,-65],[120,-66],[90,-78],[90,-131],[89,-182],[54,-147],[75,-170],[46,-170],[2,-120],[-43,-105],[-82,-156],[-21,-165],[8,-170],[38,-151],[61,-180],[124,-335],[190,-533],[131,-294],[46,-109],[25,-108],[0,-209],[-15,-263],[-8,-143],[-20,-194],[-44,-189],[-61,-255],[-77,-248],[-149,-360],[-206,-397],[-179,-242],[-83,-113],[-494,-552],[79,-343],[5,-328],[-183,-569],[-36,-557],[170,-296],[58,-54],[174,-160],[185,-342],[51,-182],[-21,-248],[5,-344],[47,-383],[164,-433],[299,-326],[419,-46],[554,-108],[349,-16],[169,101],[87,-116],[164,-232],[287,-310],[216,-278],[228,-527],[232,-374],[157,-386],[212,-278],[217,-89],[298,-9],[119,-45],[100,-38],[82,-310],[113,-110],[47,-47],[292,-108],[371,46],[205,74],[241,88],[86,32],[61,41],[273,183],[312,255],[257,318],[195,224],[179,8],[134,-93],[56,-215],[15,-219],[-10,-286],[-16,-989],[56,-209],[135,-210],[189,-294],[45,-68],[196,-301],[276,-343],[175,-163],[142,-108],[175,-6],[207,102],[204,214],[210,170],[128,78],[164,15],[216,15],[184,-108],[185,-178],[164,-278],[210,-403],[195,-143],[237,-78],[338,-111],[190,-171],[93,-198],[30,-289],[-36,-477],[10,-273],[50,-167],[124,-94],[123,-95],[174,-94],[98,-53],[185,-124],[210,-248],[64,-250],[-7,-223],[-126,-228],[-110,-134],[-76,-4],[-104,-4],[-141,39],[-112,30],[-96,-94],[-66,-103],[-101,-184],[-192,57],[-143,-16],[-77,-62],[-111,-220],[-146,-151],[-159,-54],[-184,-62],[-252,-165],[-230,18],[-154,85],[-123,-54],[-67,-155],[-72,-302],[-164,-170],[-160,-55],[-260,40],[-117,51],[-102,106],[-125,183],[-190,62],[-215,-16],[-144,-46],[-61,-116],[-47,-178],[31,-309],[31,-202],[128,-270],[113,-140],[118,-139],[154,-209],[97,-170],[46,-472],[11,-224],[-5,-209],[-73,-200],[-56,-152],[-16,-162],[27,-90],[102,-131],[149,-101],[77,-155],[46,-147],[5,-270],[-20,-171],[-170,-363],[-162,-225],[-180,-90],[-253,-126],[-139,-49],[-112,-52],[-67,-124],[-133,-240],[-82,-85],[-106,-157],[-24,-73],[-48,-144],[-63,-144],[-31,-116],[-25,-108],[15,-163],[67,-170],[102,-186],[77,-147],[195,-309],[133,-240],[47,-155],[-36,-147],[-88,-93],[-148,-154],[-185,-140],[-220,-46],[-267,23],[-136,-15],[-100,-12],[-1,0],[-150,-51],[-188,-77],[-297,-139],[-272,-217],[-112,-161],[-92,-125],[-56,-195],[-35,-423],[-18,-225],[-36,-387],[-107,-279],[-134,-201],[-123,-201],[-128,-317],[-113,-255],[-113,-155],[-190,-84],[-292,30],[-313,139],[-75,5],[-273,18],[-288,-31],[-272,-108],[-266,-271],[-164,-340],[-156,-466],[-101,-207],[-124,-127],[-86,-75],[-136,-75],[-177,-33],[-282,-70],[-205,-61],[-190,-62],[-159,-62],[-138,-70],[-236,-46],[-216,-116],[-277,-240],[-256,-256],[-231,-224],[-297,-278],[-395,-387],[-257,-418],[-159,-194],[-169,-332],[-113,-263],[-147,-412],[-186,-268],[-109,-94],[-122,-103],[-122,-139],[-143,-215],[-136,-242],[-110,-260],[-143,-309],[-121,-258],[-68,-229],[-33,-270],[-3,-130],[36,-166],[51,-186],[95,-178],[163,-211],[88,-70],[85,-74],[107,-42],[157,1],[272,70],[318,201],[139,-4],[122,-9],[89,-18],[95,-89],[205,-197],[218,-152],[101,-112],[34,-170],[-29,-207],[-67,-211],[-56,-161],[-79,-186],[-67,-236]],[[662022,413164],[-41,-17],[-43,-17],[-42,-17],[-188,-76],[-236,-96],[-78,-31],[-15,-12],[-270,-213],[-124,-98],[-301,-228],[-25,-19],[-371,-285],[-119,-91],[-41,-4],[-121,-12],[-57,-5],[-72,-7],[-34,-3],[-25,3],[-40,5],[-85,11],[-91,12],[-128,3],[-49,1],[-27,0],[-76,2],[-74,2],[-38,5],[-101,14],[-8,4],[-97,43],[-60,27],[-25,11],[-21,17],[-69,53],[-35,27],[-75,58],[-153,135],[-47,6],[-123,14],[-190,37],[-25,5],[-11,5],[-40,16],[-44,19],[-27,11],[-17,7],[-6,6],[-10,8],[-13,12],[-14,12],[-14,12],[-71,62],[-44,38],[-19,17],[-3,3],[-120,49],[-60,25],[-23,4],[-115,20],[-39,7],[-21,-4],[-118,-18],[-28,-5],[-2,0],[-84,-52],[-15,-9],[-22,-14],[-38,-24],[-3,-2],[-12,-7],[-8,-5],[-2,-2],[-2,-1],[-1,0],[-717,-752],[-281,-242],[-869,-277],[-249,-108],[-333,-247],[-429,-245],[-755,-214],[-426,-230],[-316,-16],[-178,29],[-509,160],[-171,-42],[-480,-307],[-374,-125],[-283,140],[-317,89],[-121,-19],[-176,-112],[-607,-44],[-332,-182],[-256,-236],[-169,-219],[-171,-353],[-125,-116],[-531,-288],[-311,-328],[-515,-386],[-36,-27],[-72,-36],[-71,-35],[-141,2],[-105,123],[-663,1032],[-277,360],[-161,310],[-81,65],[-45,1],[-277,11],[-503,-235],[-630,-385],[-260,-109],[-3461,3476],[-1351,1359],[-3163,3179],[-3945,3967],[-812,816],[-1323,1331],[-6029,6066],[-130,129],[-3944,3900],[-24,24],[-54,54],[-5508,5450],[-13,17],[-2,334],[-59,281],[-55,261],[24,242],[163,12],[239,-35],[227,430],[127,481],[5,483],[-132,706],[-7,263],[42,308],[231,796],[0,441],[-148,490],[-854,1096],[-586,1172],[-121,349],[-104,143],[-248,-43],[-41,29],[-237,164],[-874,789],[-134,314],[-23,548],[58,436],[1,451],[-102,399],[-72,727],[-5,54],[-3689,4748],[-3133,3926],[-3213,4027]],[[601334,463615],[3247,2494],[842,647],[92,70],[1025,787],[670,515],[10,8],[3,2],[3,2],[3,3],[84,64],[2,2],[3,2],[1,1],[3,2],[31,24],[6,5],[83,63],[30,24],[11,7],[7,6],[8,6],[0,1],[5,3],[33,25],[188,142],[84,63],[1402,1060],[2707,2046],[3505,2649],[822,621],[312,181],[353,379],[-41,238],[-530,426],[-376,460],[-239,897],[-191,1275],[-402,1010],[6,434],[-147,528],[-71,395],[104,439],[181,241],[216,288],[430,138],[368,-81],[382,-284],[516,-237],[912,-24],[1080,-939],[671,-250],[346,-39],[200,45],[260,-229],[324,-192],[356,191],[330,-159],[298,-372],[22,-722],[317,-11],[297,-190],[353,-162],[260,-239],[397,-156],[381,360],[319,133],[262,595],[127,481],[141,173],[240,-13],[417,290],[297,820],[290,208],[275,-104],[679,-24],[225,-178],[35,-232],[-140,-517],[50,-408],[76,-105],[460,688],[230,269],[178,20],[157,-33],[173,-112],[443,-147],[1060,-80],[276,-75],[312,-272],[274,-671],[239,-227],[736,-111],[290,130],[220,323],[232,-43],[374,-425],[538,33],[310,-71],[291,110],[274,46],[545,-735],[21,-780],[42,-546],[-28,-614],[22,-441],[212,-217],[354,-4],[310,-189],[678,-58],[452,649],[467,499],[536,317],[497,145],[367,561],[98,683],[275,1122],[277,846],[274,145],[191,-20],[183,56],[241,206],[304,173],[361,270],[713,154],[297,-743],[290,67],[607,604],[311,235],[304,52],[529,227],[610,516],[302,110],[617,359],[549,652],[419,390],[219,300],[290,315]],[[647015,484375],[7,-823],[69,-492],[446,-1049],[100,-772],[177,-76],[289,17],[-66,-294],[-253,-242],[-65,-410],[-60,-1178],[41,-788],[-36,-786],[353,-163],[312,-19],[424,168],[340,289],[259,-396],[382,-325],[411,259],[317,249],[261,601],[298,332],[318,-164],[226,89],[298,465],[585,469],[156,522],[22,692],[-85,496],[211,353],[403,132],[283,328],[304,56],[233,-236],[162,151],[374,1105],[404,214],[205,-176],[345,-376],[254,-394],[319,-584],[156,-844],[42,-494],[175,-262],[326,56],[389,-184],[397,-341],[408,-527],[439,-424],[269,-809],[283,-133],[397,66],[261,277],[190,366],[189,648],[87,705],[206,934],[61,490],[1,5]],[[736884,295588],[-311,-20],[-37,-644],[-66,-149],[-152,-435],[-69,-345],[-75,-709],[-49,-462],[-7,-64],[-84,-824],[-7,-100],[-30,-420],[-28,-291],[-106,-1678],[-1,-18],[-102,-2006],[-83,-1971],[-52,-1253],[-46,-1156],[-11,-262],[12,-1840],[8,-1323],[48,-1584],[39,-900],[42,-900],[39,-839],[22,-465],[70,-1505],[1,-22],[138,-1678],[73,-882],[119,-1445],[58,-709],[64,-766],[119,-1426],[36,-437],[1,-12],[45,-511],[44,-503],[414,-4584],[137,-1202],[195,-1713],[426,-2184],[193,-817],[317,-1340],[260,-1101],[224,-754],[399,-1280],[209,-669],[99,-282],[115,-329],[499,-1367],[220,-460],[124,-209],[280,-476],[273,-331],[286,-283],[88,-73],[99,-94],[329,-256]],[[742797,209692],[-44,-15],[-83,-27],[-150,-191],[-351,-668],[-208,-348],[-17,-30],[-341,-609],[-107,-203],[-273,-526],[-293,-663],[-212,-505],[-271,-704],[-295,-837],[-301,-893],[-384,-1353],[-132,-487],[-198,-731],[-315,-1364],[-115,-538],[-172,-1229],[-103,-787],[30,-976],[1,-18],[46,-404],[-2,-196],[83,-554],[113,-517],[3,-15],[44,-127],[161,-458],[398,-774],[83,-107],[260,-188],[226,259],[241,-129],[86,352],[184,-18],[111,371],[172,18],[-62,-519],[-221,-723],[-283,-149],[-311,178],[-291,80],[-156,-52],[-34,-200],[-46,-395],[67,-325],[120,-386],[252,-163],[479,283],[-72,-587],[4,-450],[-445,137],[-54,146],[-149,-101],[-207,-19],[-106,196],[-83,-124],[-8,-377],[-1,-42],[-218,-397],[-193,-365],[31,-279],[-404,-44],[-132,-137],[-206,-286],[-142,-337],[-246,-959],[-277,-373],[-154,-4],[-277,154],[-148,-65],[-8,-8],[-125,-135],[-411,-341],[-296,-81],[-299,-156],[-98,-123],[-253,-210],[-497,-984],[-20,-248],[20,-424],[-148,-266],[-260,-63],[-142,103],[-205,213],[-84,158],[-29,184],[-120,403],[-15,197],[38,424],[-12,18],[-81,125],[-135,-2],[-276,-88],[-140,-105],[-135,-42],[-141,45],[-129,331],[-183,232],[-46,13],[-223,66],[-140,-23],[-142,-77],[-110,-121],[-127,-142],[-81,-90],[-220,-318],[-260,-261],[-355,-262],[-225,-165],[-120,-120],[-374,-375],[-93,-93],[-79,-109],[-337,-470],[-260,-362],[-149,-209],[-115,-159],[-114,-185],[-84,-134],[-162,-325],[-85,-171],[-120,-365],[-53,-125],[-115,-270],[-185,-317],[-148,-331],[-296,-408],[-109,-349],[-168,-536],[-119,-302],[-21,-55],[-154,-553],[-72,-260],[-192,-500],[-84,-422],[13,-640],[-136,-575],[-188,-551],[-120,-1225],[-86,-456],[-206,-1085],[-119,-1010],[-167,-830],[-31,-155],[1,-194],[112,-626],[14,-174],[14,-174],[-34,-401],[35,-384],[-92,-366],[0,-181],[49,-192],[22,-452],[84,-568]],[[703619,177072],[1145,-470],[397,-104],[401,-53],[342,153],[316,411],[7,11],[975,1717],[8,14],[124,306],[124,305],[45,165],[253,936],[24,88],[30,111],[131,740],[32,179],[64,1178],[63,1178],[190,1055],[86,730],[-14,713],[-85,738],[-97,495],[-53,269],[-408,1328],[-227,551],[-197,1131],[39,350],[39,350],[217,537],[197,234],[496,589],[558,490],[324,411],[455,440],[381,281],[331,88],[652,-221],[624,-318],[252,-128],[522,-457],[404,-184],[317,29],[460,215],[290,182],[175,140],[175,140],[101,81],[39,44],[330,372],[465,389],[509,81],[580,-215],[382,-395],[204,-475],[282,-277],[262,-185],[241,-267],[226,-136],[593,-356],[144,-55],[825,-309],[74,9],[343,42],[404,264],[280,443],[263,487],[277,372],[480,295],[326,-343],[5,-5],[7,-10],[204,-263],[171,-222],[1,-2],[63,-81],[4,-5],[21,-28],[2,-2],[352,-350],[11,-14],[366,-466],[239,-131],[306,347],[287,234],[313,42],[380,87],[357,1613],[64,290],[264,-272],[5,0],[200,1796],[4,31],[5,48],[2,16],[49,455],[3,26],[14,126],[6,54],[1,5],[0,7],[3,20],[7,64],[1,9],[53,478],[35,314],[0,1],[0,7],[1,1],[1,10],[4,37],[1,11],[1,7],[31,278],[12,109],[23,204],[8,73],[11,103],[0,2],[1,3],[1,15],[45,415],[24,143],[24,143],[52,326],[9,48],[107,555],[3,13],[0,4],[26,190],[67,492],[27,155],[26,153],[0,1],[76,464],[13,80],[4,23],[7,44],[107,654],[2,10],[62,380],[1,5],[3,19],[35,215],[149,916],[4,19],[0,4],[1,3],[4,26],[3,16],[228,1391],[13,78],[64,398],[562,3467],[9,4],[1184,7210],[2,17],[148,901],[127,235],[132,637],[34,209],[19,990],[-342,292],[-78,112],[-12,26],[-2,3],[-532,1087],[-42,86],[-47,97],[-43,88],[-43,87],[-46,95],[-45,91],[-42,87],[-47,95],[-46,94],[-44,91],[-15,30],[-23,47],[-3,6],[-46,94],[-43,88],[-47,97],[-45,90],[-41,85],[-43,88],[-22,45],[-10,20],[-10,21],[-22,44],[-21,44],[-22,44],[-23,47],[-19,40],[-23,47],[-22,45],[-23,46],[-10,20],[-12,25],[-5,10],[-169,346],[-33,67],[-8,18],[-23,46],[-219,448],[-209,426],[-62,128],[-8,16],[-127,260],[-135,275],[-394,806],[-385,787],[-372,760],[-330,676],[-697,1424],[-16,33],[-252,515],[-405,828],[-318,649],[-329,673],[-305,624],[-344,702],[-317,649],[-321,657],[-367,749],[-29,60],[-280,572],[-295,603],[-247,505],[-46,94],[-39,79],[-54,111],[-11,24],[-100,203],[-39,80],[-5,9],[-1,3],[-1,3],[-8,15],[-13,27],[-100,205],[-87,177],[-54,110],[-10,22],[-11,22],[-13,25],[-36,76],[-191,390],[-14,28],[-213,436],[-14,29],[-85,173],[-3,5],[-10,22],[-14,29],[-22,45],[-711,1452],[-399,815],[-8,17],[-633,1294],[-240,491],[-466,953],[-772,1578],[-978,1999],[-142,290],[-2520,4831],[-535,1023],[-365,701],[-5022,9625],[-9,15],[-1274,2444],[-1977,3788],[-6,11],[-86,192],[-1234,2760]],[[688620,313247],[75,-19],[71,47],[80,85],[55,87],[40,50],[66,94],[40,49],[40,22],[63,38],[63,3],[117,7],[-106,508],[107,435],[212,147],[78,465],[182,369],[254,287],[440,-311],[162,-184],[458,-339],[193,-239],[267,47],[112,433],[144,49],[260,-207],[367,-186],[319,100],[133,326],[-97,402],[142,210],[238,-220],[171,-250],[226,253],[261,380],[373,-113],[383,-344],[148,-212],[327,-323],[155,150],[62,416],[360,-219],[297,-112],[383,-351],[140,-240],[-7,-274],[-147,-371],[70,-354],[-56,-146],[-212,185],[-277,-20],[7,-638],[326,-930],[-8,-292],[72,-245],[184,-17],[380,171],[249,201],[155,543],[219,601],[212,307],[205,70],[211,-126],[164,123],[0,516],[41,444],[93,242],[217,103],[248,-331],[178,-7],[27,-1],[72,68],[68,109],[6,61],[7,61],[-9,129],[-36,129],[-99,252],[-108,176],[-108,156],[-108,177],[-75,104],[-8,124],[-8,125],[-17,272],[-57,129],[-56,95],[-81,99],[-90,58],[-347,183],[-65,3],[-149,-152],[-67,-31],[-72,24],[-57,71],[-42,112],[-39,143],[2,132],[4,33],[12,103],[45,167],[41,98],[78,68],[85,33],[143,55],[98,8],[35,3],[115,-38],[108,-51],[426,-296],[238,-118],[284,-136],[117,-40],[86,30],[47,58],[52,64],[38,65],[25,149],[13,153],[-4,94],[29,89],[43,45],[31,30],[66,7],[78,-55],[106,-78],[212,-186],[279,-235],[194,-108],[133,-68],[110,-38],[106,-54],[43,-71],[29,-102],[11,-170],[32,-190],[49,-225],[77,-278],[99,-177],[126,-136],[99,-74],[26,-34],[26,-34],[52,-68],[31,-109],[-20,-217],[-20,-218],[-14,-598],[5,-244],[27,-265],[84,-379],[105,-280],[2,-92],[-38,-78],[-72,-112],[-338,-153],[-117,-68],[-183,-136],[-72,-78],[-20,-82],[2,-95],[43,-74],[133,-119],[423,-394],[165,-133],[216,-109],[491,-296],[576,-36],[126,0],[311,608],[104,227],[99,255],[144,323],[81,61],[99,-68],[108,-170],[81,-183],[77,-238],[106,-401],[65,-408],[3,-170],[-8,-190],[-36,-200],[-105,-530],[-108,-408],[-86,-190],[-144,-211],[-158,-135],[-157,-136],[-147,-62],[-61,-26],[-99,-41],[-45,-123],[15,-155],[1,0],[97,-103],[208,-30],[116,-17],[212,-41],[153,-68],[116,-100],[10,-9],[140,-238],[144,-118],[13,-11],[347,-136],[93,-34],[108,-40],[204,45],[41,9],[174,97],[81,60],[164,122],[139,34],[176,-41],[187,-155],[250,-171],[185,-129],[198,-55],[142,46],[191,90],[205,224],[94,133],[93,132],[144,320],[122,339],[140,1026],[69,211],[70,61],[88,47],[119,-20],[174,-170],[234,-367],[159,-339],[170,-458],[172,-271],[135,-62],[70,17],[70,17],[113,131],[153,259],[180,471],[72,195],[108,111],[181,92],[192,11],[458,-86],[304,-119],[61,-24],[230,-211],[135,-224],[108,-347],[34,-318],[-27,-312],[-155,-520],[-80,-158],[-182,-366],[-221,-387],[-97,-304],[-17,-208],[60,-185],[173,-187],[299,-211],[211,-98],[167,-61],[267,-24],[161,23],[252,36],[318,250],[235,484],[95,289],[53,160],[87,142],[43,2],[107,5],[229,-150],[127,-212],[122,-313],[67,-448],[5,-492],[37,-260],[173,-248],[167,-96],[320,24],[31,2],[211,132],[264,307],[463,776],[385,856],[226,694],[100,73],[137,-24],[247,-235],[320,-268],[226,-41],[412,122],[163,58],[136,47],[247,-40],[196,-183],[178,-669],[89,-654],[102,-288],[242,-40],[54,59],[156,168],[215,398],[23,387],[9,148],[-80,374],[-33,251],[6,325],[48,836],[-8,199],[-8,199],[-125,352],[-318,494],[-109,204],[-31,223],[32,250],[84,149],[45,81],[209,53],[26,-10],[193,-75],[327,-362],[471,-448],[290,-227],[153,-76],[346,-39],[305,53],[388,243],[341,336],[181,103],[153,-41],[162,-150],[161,-267],[272,-453],[531,-745],[163,-357],[103,-327],[80,-255],[130,-192],[192,-178],[231,7],[288,138],[133,172],[76,98],[131,276],[78,303],[79,736],[2,22],[137,1149],[114,448],[270,144],[275,10],[109,4],[296,-198],[227,-500],[270,-1171],[43,-280],[106,-706],[17,-632],[35,-553],[246,-238],[214,-100],[167,18],[44,5],[1003,736],[422,287],[128,-13],[207,-23],[77,-384],[34,-169],[-321,-2474],[137,-207],[137,-206],[303,-265],[285,-139],[253,172],[55,38],[260,314],[92,136],[9,13],[250,368],[169,404],[78,575],[64,378],[38,225],[177,187],[255,-47],[277,-228],[210,-351],[87,-144],[61,-180],[60,-181],[149,-1425],[41,-159],[224,-882],[203,-547],[132,-355],[95,-266],[49,-138],[272,-302],[182,-52],[183,101],[44,130],[44,130],[39,410],[46,478],[169,360],[164,241],[291,387],[15,15],[188,186],[85,329],[18,370],[95,456],[245,304],[240,85],[279,-48],[355,-723],[373,-343],[37,-34],[269,-485],[102,-291],[-9,-396],[-161,-551],[-77,-262],[-302,-918],[-244,-945],[-96,-372],[-124,-331],[-132,-352],[-12,-31],[-32,-92],[-54,-153],[-108,-387],[-31,-326],[67,-517],[86,-265],[1,-1],[59,-125],[7,-16],[153,-143],[15,-14],[152,-93],[72,-31],[72,-32],[135,37],[158,83],[158,84],[117,-48],[58,-108],[23,-123],[18,-258],[-39,-208],[-141,-199],[-149,-177],[-139,-75]],[[594543,350641],[-40,-81],[-39,-81],[-55,-208],[-7,-173],[121,-674],[34,-436],[44,-175],[-37,-182],[-140,-217],[-248,-207],[-190,-290],[-10,-278],[52,-247],[139,-257],[221,-319],[113,-362],[-35,-182],[-128,-56],[-268,29],[-729,-19],[-328,-132],[-207,-147],[-137,-45],[-358,24],[-178,78],[-148,114],[-133,6],[-419,-150],[-141,-142],[-147,-313],[-30,-201],[14,-207],[191,-858],[5,-334],[-38,-503],[-51,-238],[-134,-363],[-573,-1127],[-50,-172],[-21,-385],[150,-600],[206,-608],[90,-406],[-14,-227],[-86,-160],[-507,-333],[-249,-75],[-394,-185],[-311,-196],[-92,-129],[-149,-399],[-184,-259],[-281,-535],[-311,-770],[-404,-607],[-127,-260],[-90,-332],[-44,-282],[71,-446],[61,-170],[476,-931],[-8,-175],[-389,-1080],[-90,-155],[-284,-492],[-552,-1227],[-309,-501],[5,-495],[-176,-631],[-319,-559],[-168,-428],[-80,-843],[-336,-1354],[-15,-631],[-71,-475],[-395,-343],[-496,-229],[-396,30],[-63,-335],[409,-405],[110,-618],[-206,-812],[-180,-711],[-641,-922],[-390,-714],[-304,-428],[-1250,-983],[2573,-8017],[2889,-8996],[2,-6],[6,-17],[2,-6],[1,-3],[23,-73],[111,-344],[4138,-12874]],[[591420,287369],[-211,-496],[-382,-462],[-340,-118],[-283,-317],[-550,-906],[-178,189],[-488,522],[-28,29],[-323,274],[-417,-61],[-418,-62],[-354,-150],[-564,-176],[-565,-176],[-319,-341],[-381,-604],[-453,-291],[-362,-55],[-309,-525],[-246,-146],[-292,-608],[-239,-654],[-362,-514],[-311,-162],[-387,-277],[-311,-289],[-348,-485],[-330,-591],[-163,-496],[-336,-453],[-358,-239],[-340,-463],[-360,-312],[-451,-232],[-346,-242],[-184,-536],[-77,-537],[-206,-733],[-348,-279],[-783,-308],[-297,-562],[-345,-539],[-390,-406],[-592,-408],[-360,-7],[-355,348],[-225,277],[-770,951],[-441,952],[-374,484],[-401,385],[-305,395],[-274,486],[245,530],[-62,410],[-340,183],[-402,88],[-488,-247],[-508,-323],[-706,691],[-454,-13],[-331,75],[-326,454],[-275,258],[-298,686],[-181,241],[-74,98],[-192,-28],[-217,-32],[-832,384],[-565,77],[-427,-58],[-594,-166],[-415,111],[-312,-155],[-401,-145],[-335,-644],[-343,-477],[-455,-222],[-528,-103],[-461,-11],[-1017,228],[-496,-17],[-458,-158],[-324,-427],[-376,59],[-346,-108],[-494,-79],[7,-450],[-115,-627],[152,-357],[437,446],[402,8],[79,-317],[-200,-342],[-204,-260],[-213,-508],[-112,-662],[27,-591],[87,-402],[27,-353],[-593,-910],[-255,7],[-375,-285],[-344,70],[-242,-483],[-247,-382],[-233,-776],[226,-496],[27,-209],[-309,-115],[-403,-35],[-388,-250],[-249,-528],[-310,-279],[-200,-418],[-670,-1055],[-324,-197],[-736,190],[-339,-190],[-211,-271],[-207,-488],[-339,-380],[-509,-501],[-783,-623],[-383,-70],[-1229,131],[-735,-443],[-438,-162],[-326,-444],[-203,-367],[-381,-437],[-340,-630],[-346,-254],[-389,-52],[-363,-147],[-154,-151],[-154,-151]],[[545720,262407],[-2103,3668],[-445,776],[-1853,3232],[-39,67],[-161,281],[-76,133],[-10,18],[-44,76],[-208,363],[-51,84],[-3032,5056],[-2263,3773],[-27,42],[-28,41],[-78,119],[-359,542],[-438,622],[-343,495],[-66,38],[-60,-1],[-39,-9],[-329,-300],[-178,-171],[-524,-481],[-416,-366],[-212,-172],[-78,-54],[-86,-46],[-68,-25],[-65,7],[-62,23],[-92,59],[-49,45],[-49,45],[-872,916],[-136,146],[-61,-25],[-60,-25],[-54,-9],[-229,-20],[-126,-31],[-159,-39],[-221,-63],[-222,-64],[-192,-58],[-193,-58],[-105,-21],[-393,-81],[-60,-13],[-665,-143],[-478,-133],[-458,-113],[-429,-117],[-250,-39],[-794,-197],[-114,-36],[-115,-36],[-159,-35],[-129,0],[-157,44],[-599,172],[-158,25],[-668,141],[-473,108],[-305,64],[-184,10],[-227,56],[-287,72],[-616,128],[-524,115],[-756,150],[-132,30],[-150,-71],[-123,-111],[-55,-50],[-216,-169],[-313,-260],[-429,-302],[-583,-405],[-687,-440],[-791,-357],[-541,-199],[-449,-200],[-491,-180],[-347,-35],[-400,65],[-302,11],[-6,0],[-51,-4],[-366,-29],[-26,-2],[-322,-112],[-679,-224],[-1103,-364],[-310,-103],[-194,-99],[-37,-19],[-411,-330],[-534,-429],[-1056,-803],[-1215,-604],[-225,-112],[-933,-475],[-697,-347],[-875,-436],[-272,-118],[-122,-12],[-122,-13],[-262,-2],[-145,-1]],[[504189,273867],[194,90],[1,0],[3,3],[4,4],[88,80],[109,99],[203,387],[30,117],[110,426],[1200,4654],[121,388],[21,210],[-476,2446],[-444,2236],[-75,305],[-64,106],[-1145,1284],[-567,597],[-97,113],[-46,198],[15,291],[74,546],[491,3655],[138,886],[110,704],[84,879],[47,115],[462,386],[1183,775],[2791,2019],[227,95],[64,49],[150,72],[160,226],[455,1703],[337,1155],[96,355],[45,314],[116,178],[219,267],[1144,1185],[576,643],[1180,1013],[249,254],[163,145],[449,236],[178,337],[135,906],[-86,621],[-264,614],[-512,1193],[-247,574],[-137,423],[-218,447],[-420,369],[-421,369],[-184,387],[-71,629],[-373,567],[-127,117],[-559,516],[-559,516],[-282,261],[-466,280],[-297,298],[-148,734],[-71,669],[15,296],[10,208],[-140,709],[-132,397],[-233,334],[-524,361],[-99,363],[92,823],[-133,458],[-8,232],[-128,257],[-132,811],[-38,471],[22,648],[91,469],[57,556],[-64,312],[-478,511],[-249,60],[-206,376],[-389,593],[-70,349],[49,316],[143,114],[354,149],[261,171],[344,384],[127,211],[191,54],[135,209],[149,114],[141,223],[99,82],[120,266],[162,71],[157,129],[-36,205],[-120,69],[35,179],[-78,720],[78,288],[35,370],[-34,397],[-157,397],[-323,377],[-256,573],[-20,44],[-44,97],[-162,85],[-134,-178],[-156,-91],[-239,61],[-106,177],[41,302],[-125,206],[-257,73],[-246,-35],[-219,142],[-242,74],[-233,3],[-466,233],[-269,344],[-896,956],[-169,287],[-172,749],[-217,760],[-138,70],[-139,70],[-70,146],[-7,174],[-57,185],[-260,515],[-50,415],[-227,501],[-118,117],[-171,605],[-206,277],[-63,479],[-99,262],[-177,322],[-388,429],[-502,909],[-352,430],[-171,409],[-20,601],[-93,353],[-171,1200],[65,510],[-21,432],[78,490],[156,522],[84,884],[127,694],[248,730],[288,546],[242,247],[989,419],[205,149],[206,149]],[[502952,350775],[428,-264],[205,-112],[90,-28],[91,-29],[338,295],[233,68],[203,23],[195,-113],[541,-477],[346,-453],[361,57],[215,-40],[216,-40],[351,-227],[390,80],[369,272],[105,57],[391,-159],[34,179],[132,21],[99,239],[0,745],[122,137],[210,89],[546,131],[311,121],[225,139],[162,175],[156,289],[262,662],[269,377],[561,511],[217,150],[295,31],[291,-149],[276,-205],[147,-11],[72,83],[119,230],[16,317],[-94,448],[-118,176],[-163,77],[-137,142],[-84,180],[65,238],[106,237],[430,626],[395,434],[390,261],[234,268],[142,503],[-10,540],[-139,1090],[-15,313],[28,215],[156,146],[325,136],[319,248],[558,823],[177,176],[41,41],[129,51],[445,-16],[195,31],[171,68],[338,225],[340,149],[69,-6],[36,-4],[184,-18],[292,-114],[352,-53],[184,80],[177,144],[67,83],[66,83],[51,173],[13,257],[-21,350],[-128,952],[22,276],[106,431],[86,197],[40,175],[-55,155],[-120,70],[-126,134],[-94,223],[79,182],[91,113],[86,107],[763,273],[255,146],[367,332],[959,721],[59,4],[232,19],[255,238],[169,-18],[248,-311],[374,-284],[333,-116],[224,-35],[677,44],[1126,178],[326,116],[269,208],[579,881],[615,491],[233,379],[190,194],[318,189],[1137,426],[35,14],[347,44],[199,26],[113,113],[69,196],[10,478],[5,214],[155,475],[29,249],[-21,255],[-2,19],[-171,577],[-201,677],[-114,659],[-23,418],[-68,167],[-277,222],[-127,45],[-155,-6],[-163,72],[-56,169],[-14,309],[107,507],[90,201],[149,138],[326,157],[798,178],[713,46],[597,154],[195,98],[135,130],[120,204],[43,213],[-86,682],[-1,335],[86,433],[7,241],[-91,317],[-253,606],[-9,202],[63,167],[93,116],[14,2],[18,2],[7,1],[10,1],[2,1],[11,1],[41,6],[277,36],[333,-49],[278,72],[138,74],[454,-15],[148,53],[137,111],[341,389],[269,21],[255,-86],[156,-135],[183,-319],[162,-202],[156,-76],[241,-24],[403,66],[150,-29],[316,-150],[485,-368],[406,-503],[281,-265],[277,21],[451,180],[292,-7],[500,-171],[714,-568],[227,-295],[164,-141],[337,42],[135,65],[133,144],[591,913],[238,444],[261,853],[76,156],[143,162],[121,87],[274,101],[149,14],[884,-188],[141,5],[247,196],[319,515],[293,349],[357,224],[374,315],[382,-131],[232,-140],[142,-44],[128,17],[139,73],[361,379],[198,290],[141,363],[234,171],[234,381],[203,509],[220,1339],[8,180],[-112,473],[-2,205],[43,315],[205,326],[417,309],[325,168],[388,388],[183,101],[361,92],[401,226],[475,204],[331,239],[263,133],[108,-61]],[[549961,388890],[25,-189],[93,-123],[133,-100],[137,-53],[147,42],[282,149],[197,237],[115,89],[126,-7],[135,-58],[240,-188],[198,-262],[135,-124],[135,-57],[472,5],[126,-116],[94,-146],[120,-377],[76,-138],[664,-644],[491,-341],[98,-138],[140,-860],[8,-197],[-57,-488],[-176,-740],[-91,-645],[-129,-420],[-22,-230],[97,-746],[103,-790],[-141,-746],[35,-175],[118,-117],[137,28],[394,314],[162,64],[559,65],[176,-8],[254,-223],[92,-124],[72,-184],[-1,-206],[29,-178],[71,-147],[524,-304],[374,-50],[650,351],[104,-101],[-6,-207],[-128,-420],[8,-197],[76,-177],[120,-117],[120,-65],[109,-120],[92,-370],[-1,-181],[-70,-165],[-242,-336],[-14,-196],[35,-195],[149,-316],[151,-188],[175,-116],[394,37],[299,-78],[450,-336],[482,-674],[261,-278],[565,-143],[232,-139],[200,-10],[495,85],[126,64],[234,203],[269,297],[743,655],[325,167],[126,34],[389,16],[105,5],[813,-83],[394,82],[285,139],[367,326],[253,450],[233,273],[122,68],[270,-14],[197,-9],[308,-108],[291,-244],[346,-70],[241,-97],[156,-145],[113,-210],[42,-280],[-34,-194],[-221,-352],[-63,-163],[-119,-580],[-8,-185],[120,-59],[368,68],[133,-126],[65,-243],[289,-520],[142,-149],[140,-55],[614,-82],[631,131],[614,194],[325,194],[509,508],[453,174],[487,-100],[564,8],[227,71],[396,189],[702,450],[329,30],[283,115],[311,217],[234,339],[225,239],[600,394],[681,294],[429,335],[291,270],[269,369],[635,723],[99,174],[115,398],[85,830],[219,862],[271,754],[205,325],[164,260],[165,161],[182,108],[851,268],[611,428],[168,82],[626,183],[408,234],[176,168],[129,185],[75,201],[144,844],[190,450],[220,232],[283,409],[430,871],[226,386],[256,544],[168,270],[454,547],[233,127],[127,-8],[107,-98],[175,-298],[240,-246],[431,-227],[700,-283],[227,-66],[331,-36],[354,-203],[325,-85],[457,160],[158,-22],[318,-110],[656,71],[245,-109],[15,-6],[15,-7],[10,-13],[56,-67],[99,-121],[73,-88],[43,-52],[97,-117],[55,-68],[168,-132],[157,-15],[148,60],[127,-21],[72,-145],[12,-23],[-20,-217],[-64,-250],[-254,-559],[-51,-194],[99,-369],[284,-285],[301,-120],[137,27],[161,-45],[149,-371],[51,-418],[69,-184],[15,-176],[57,-223],[99,-277],[309,-538],[104,-58],[364,-204],[27,-168],[-102,-60],[-11,-6],[-141,43],[-127,-66],[-104,-102],[-98,-273],[-63,-176],[-33,-91],[-27,-78],[-17,-34],[-3,-6],[-8,-15],[-234,-478],[-57,-116],[-19,-196],[21,-196],[100,-106],[201,-46],[192,5],[45,-36],[11,-10],[19,-16],[7,-5],[160,-132],[34,-71],[35,-70],[63,-470],[200,-842],[183,-397],[382,-551],[78,-149],[50,-194],[-8,-177],[-65,-159],[-99,-142],[-422,-438],[-44,-192],[77,-959],[-61,-174],[-150,-121],[-253,-138],[-136,-126],[-63,-167],[-49,-408],[-155,-427],[-122,-627],[-54,-864],[-156,-715],[-17,-451],[31,-759],[44,-309],[48,-333],[-7,-220],[-36,-172],[-240,-534],[-170,-496],[-36,-185],[14,-241],[64,-189],[122,-93],[146,2],[251,293],[244,162],[254,-21],[113,-159],[-21,-344],[-69,-315],[-248,-535],[-256,-936],[-61,-919],[-128,-1093],[27,-441],[-98,-353],[-88,-107],[-257,-312],[-356,-577],[-141,-316],[-382,-535],[-84,-181],[-161,-716],[-113,-208],[-161,-181],[-178,-318],[-278,-313],[-394,-178],[-113,-108],[-262,-427],[-141,-176],[-114,-121],[-269,-165],[-253,-259],[-200,-268],[-428,-574],[-115,-214],[-64,-194],[21,-196],[116,-121],[543,-56],[296,-184],[79,-177],[7,-187],[-87,-487],[-55,-758],[29,-288],[148,-448],[126,-168],[128,-82],[262,37],[262,38],[306,143],[385,180],[297,240],[288,429],[137,-6],[254,-332],[155,-121],[189,-71],[320,-29],[269,56],[141,-125],[34,-216],[-126,-310],[49,-176],[314,-227],[556,-303],[383,-254],[748,-259],[90,-155],[0,-229],[-126,-307],[-382,-259]],[[791034,755843],[510,-961],[7811,-9433],[114,-138],[9362,-11307],[-318,-115],[-52,-19],[-3589,-1304],[-4438,-1612]],[[800434,730954],[-12327,-4187],[-133,-45],[-8159,-2600],[-133,-200],[62,-170],[44,-120],[18,-50],[232,-489],[186,-89],[66,-367],[229,-266],[105,-116],[186,-252],[296,-121],[157,-279],[122,-201],[81,-194],[185,-89],[154,-184],[56,-383],[-78,-367],[-187,-285],[5,-408],[-183,-275],[-420,-250],[-265,-401],[-11,-333],[-18,-394],[150,-374],[13,-332],[-134,-502],[-248,-199],[-483,-572],[-157,-489],[-67,-295],[52,-554],[46,-309],[93,-902],[-99,-601],[-8,-446],[-442,-402],[-484,-174],[-305,-98],[-141,-83],[-293,-116],[-325,-200],[-130,-264],[-35,-522],[-42,-253],[-18,-395],[-264,-287],[-156,-330],[-393,-237],[-195,-625],[-131,-306],[-111,-484],[-287,-250],[-212,-236],[-255,-157],[-268,-43],[-106,-100],[-243,-198],[-122,-384],[73,-253],[16,-247],[-175,-252],[-190,-82],[-193,218],[-161,132],[-188,-250],[-124,-373],[-100,-253],[-120,-211],[-120,-149],[-266,-328],[-33,-189],[-11,-65],[-144,-467],[-331,-329],[-344,-356],[-232,-367],[-67,-550],[-165,-367],[-242,-477],[-234,-508],[-327,-48],[-392,-452],[-611,-430],[-240,-337],[-237,-314],[-361,-587],[-254,-317],[-177,-401],[-216,-213],[-217,-559],[-98,-329],[-135,-306],[-64,-428],[-88,-484],[-45,-350],[22,-317],[-199,-150],[-188,-251],[-11,-233],[67,-467],[110,-584],[133,-784],[11,-334],[44,-167],[-145,-732],[-220,-352],[-232,-885],[243,-333],[233,-384],[254,-33],[77,-217],[-199,-284],[-243,-100],[-343,-200],[-189,-231],[-244,-88],[-360,-294],[-468,-405],[-453,-300],[-354,-100],[-520,42],[-431,-60],[-389,-1],[-310,92],[-473,210],[-388,167],[-243,134],[-376,667],[-464,350],[-266,117],[-365,33],[-531,34],[-193,-25],[-21,-3],[-173,-22],[-321,-284],[-94,-83],[-314,-276],[-307,-305],[-236,-220],[-553,-401],[-106,-70],[-584,-385],[-17,-12],[-565,-534],[-575,-500],[-28,-30],[-31,-32],[-438,-455],[-564,-251],[-679,-54],[-472,-346],[-685,-517],[-458,-615],[-163,-218],[-183,-247],[-271,-254],[-148,-132],[-15,-14],[-9,-8],[-369,-514],[-435,-777],[-40,31],[-9,7],[-121,-211],[-202,-330],[-216,-240],[-199,-199]],[[750887,679876],[-2406,-2289],[-4138,-3864],[-4363,-4520],[-202,-172],[-2961,-2522],[-40,-34],[-259,-221],[-3325,-2506],[-479,-190],[-284,-43],[-376,156],[-322,266],[-477,606],[-139,172],[-107,133],[-59,264],[-27,225],[-257,1201],[-76,250],[-145,126],[-291,261],[-450,282],[-457,219],[-484,83],[-416,-10],[-366,-157],[-259,-226],[-274,-171],[-380,-9],[-484,-124],[-500,-209],[-606,-248],[-259,-78],[-122,-62],[-96,-131],[-88,-232],[-111,-197],[-82,-72],[-79,-43],[-160,6],[-82,29],[-243,86],[-185,77],[-144,59],[-183,167],[-159,31],[-221,-114],[-517,-309],[-258,-154],[-132,-91],[-118,-128],[-142,-154],[-135,-162],[-194,-136],[-225,4],[-235,33],[-198,-48],[-189,-79],[-381,-191]],[[705560,676984],[634,-5],[634,-5],[331,1103],[359,-215],[942,217],[2219,3822],[367,554],[226,587],[814,1014],[577,477],[-62,911],[212,1333],[247,272],[1256,379],[398,316],[423,581],[44,1141],[337,233],[610,1098],[986,1234],[653,1796],[664,1183],[127,777],[545,884],[614,1509],[1179,1046],[521,1892],[236,724],[226,697],[121,371],[-22,345],[-96,401],[-104,289],[-110,323],[-81,217],[-23,228],[26,217],[85,229],[52,200],[-52,256],[-229,345],[-184,122],[-225,153],[-41,326],[59,423],[148,242],[782,938],[531,601],[462,418],[232,272],[177,33],[280,-133],[46,-15],[161,-52],[221,56],[279,388],[393,1058],[169,568],[133,501],[99,133],[217,88],[252,102],[229,378],[236,657],[280,389],[443,323],[384,334],[280,267],[539,67],[578,25],[591,180],[591,179],[566,463],[516,917],[267,203],[396,90],[390,191],[251,379],[126,400],[228,512],[152,171],[151,96],[398,-11],[369,61],[369,62],[199,11],[229,89],[214,334],[162,367],[109,470],[89,387],[61,263],[61,263],[79,342],[173,309],[152,147],[221,212]],[[735716,721709],[88,87],[138,178],[189,132],[189,132],[193,109],[161,26],[112,33],[179,142],[18,16],[124,113],[160,181],[78,92],[114,231],[37,139],[102,172],[134,227],[110,85],[120,70],[138,-47],[205,7],[206,56],[180,136],[113,85],[119,147],[100,123],[99,122],[156,205],[133,142],[385,441],[151,215],[127,165],[120,155],[206,237],[207,222],[231,187],[232,199],[281,262],[198,224],[140,225],[125,142],[117,146],[88,82],[139,135],[143,175],[131,75],[117,202],[85,148],[47,191],[-70,228],[-94,59],[-170,50],[-260,168],[-155,151],[-53,129],[37,231],[51,149],[104,293],[106,218],[122,253],[158,221],[198,277],[162,248],[106,162],[163,365],[94,267],[137,327],[254,339],[212,267],[190,198],[210,159],[195,356],[162,176],[111,121],[81,158],[78,208],[53,240],[83,420],[57,290],[40,198],[73,368],[80,271],[80,270],[124,236],[123,236],[27,200],[19,139],[-29,247],[7,268],[85,267],[140,366],[271,425],[153,169],[184,56],[162,-56],[144,-113],[165,-129],[106,-115],[116,-59],[103,76],[76,122],[51,247],[41,224],[-52,438],[-320,2692],[173,244],[107,152],[149,214],[149,152],[330,251],[263,200],[314,238],[276,210],[209,200],[133,127],[133,127],[226,249],[220,242],[156,220],[95,133],[30,40],[10,15],[138,274],[93,185],[167,431],[162,399],[204,-17],[114,-10],[132,64],[180,149],[150,68],[79,-20],[127,103],[96,59],[129,105],[74,159],[72,102],[92,86],[123,85],[81,66],[131,99],[197,141],[155,110],[234,188],[159,109],[271,178],[223,132],[228,229],[263,261],[211,192],[165,98],[125,75],[114,144],[75,96],[85,98],[155,76],[125,30],[96,7],[107,3],[201,36],[173,142],[42,142],[42,142],[300,539],[42,75],[17,30],[326,586],[482,539],[501,630],[619,410],[411,557],[289,373],[339,376],[308,445],[214,419],[99,270],[46,251],[124,435],[105,366],[267,558],[395,293],[414,274],[-20,616],[-225,610],[-223,459],[-228,240],[-59,122],[-54,212],[72,652],[57,416],[43,284],[-2,62],[-24,508],[31,218],[76,171],[55,92],[87,73],[88,26],[68,27],[131,-43],[92,-83],[37,99],[65,30],[86,-20],[120,-59],[85,-53],[88,-49],[98,-13],[116,19],[86,31],[142,81],[150,132],[94,139],[20,128],[6,126],[66,201],[97,119],[91,16],[85,-10],[99,-46],[106,-79],[170,64],[96,182],[210,195],[72,115],[130,209],[93,92],[208,204],[225,-7],[274,-152],[143,-137],[168,58],[168,325],[129,398],[48,238],[-29,246],[38,310],[44,188],[76,181],[163,101],[105,22],[168,-15],[201,8],[307,79],[307,203],[182,281],[76,185],[77,184],[68,222],[42,139],[86,199],[87,199],[143,209],[194,130],[194,123],[158,65],[259,81],[168,136],[201,94],[242,164],[338,118],[273,202],[215,282],[134,340],[106,347],[38,151],[82,318],[21,385],[12,215],[-48,268],[-80,211],[-150,179],[-57,137],[29,195],[151,246],[151,246],[172,180],[163,210],[187,282],[249,267],[230,289],[185,293],[155,358],[91,332],[-26,282],[31,253],[90,346],[128,208],[222,306],[182,224],[154,137],[153,181],[187,101],[239,58],[149,-65],[182,50],[158,87],[236,116],[334,88],[235,27],[134,109],[220,79],[197,-43],[143,-87],[222,17],[215,163],[220,225],[167,205],[250,315],[263,275],[273,217],[340,245],[364,138],[230,101],[225,94],[211,14],[182,-79],[197,-65],[215,-87],[304,112],[190,235],[230,426],[258,398],[235,412],[96,260],[124,282],[34,245],[-24,232],[96,253],[148,108],[149,108],[233,44],[186,73],[175,129],[168,123],[167,123],[252,104],[72,239],[52,177],[84,73],[120,93],[116,47],[138,55],[100,-47],[101,-47],[235,244]],[[782034,783664],[332,-101],[4063,-10100],[1236,-3073],[4026,-10009],[-249,-287],[-119,-431],[-191,-430],[-83,-574],[-83,-449],[-72,-825],[140,-1542]],[[692521,579380],[-33,-24],[-25,-7],[-28,-7],[-54,2],[-50,-3],[-61,-9],[-131,-56],[-38,-43],[-21,-36],[-5,-90],[8,-98],[39,-111],[42,-11],[73,118],[54,0],[42,-51],[34,-122],[15,-119],[-52,-159],[39,-128],[67,-101],[14,-174],[-81,-199],[-56,-148],[-22,-216],[-64,-120],[-81,-96],[-66,-34],[-98,22],[-196,0],[-76,-7],[-166,-118],[-37,-137],[22,-63],[95,-59],[27,-74],[-29,-151],[-96,-145],[-80,-62],[-67,-44],[-39,-90],[-71,-44],[-63,15],[-86,63],[-76,-37],[-37,-56],[-66,-103],[-70,-32],[-99,76],[-69,222],[-91,219],[-46,128],[-51,74],[-30,30],[-105,-15],[-81,-103],[-147,-11],[-81,-45],[-66,-3],[-173,-199],[-159,-105],[-97,-9],[-97,-70],[-185,-89],[-45,-72],[-210,-282],[-522,-646],[-166,-277],[-37,-109],[-8,-62],[2,-145],[22,-174],[82,-62],[72,-7],[66,-69],[41,-407],[-28,-105],[-68,-7],[-48,-46],[-24,-92],[2,-49],[68,-49],[39,-66],[-37,-85],[-63,-37],[-20,-105],[13,-85],[61,-36],[-13,-135],[-43,-69],[-96,-108],[-81,39],[-26,69],[26,95],[48,99],[-19,115],[-57,72],[-89,33],[-148,-52],[-118,-37],[-58,-20],[-44,-35],[-59,0],[-15,59],[13,72],[39,69],[109,302],[-28,76],[-24,23],[-48,0],[-39,-59],[-48,-43],[-42,0],[-41,49],[-65,86],[-24,32],[-40,23],[-98,-39],[-31,17],[-64,111],[-42,44],[-43,-8],[-35,-69],[26,-180],[-25,-94],[-69,-58],[-72,20],[-119,82],[-72,82],[-124,10],[-103,-29],[-86,-26],[-3,-66],[-78,-138],[-98,-109],[-79,0],[-67,0],[-31,-70],[3,-91],[43,-55],[35,9],[39,46],[44,56],[74,-3],[42,-14],[19,37],[45,79],[41,39],[51,-6],[50,-18],[50,-19],[33,-65],[13,-122],[-31,-64],[-76,-66],[-90,-130],[-23,-35],[-27,-31],[20,-31],[-8,-48],[-26,-15],[-56,39],[-25,-21],[-46,-94],[-88,-185],[-58,-20],[-52,21],[-28,36],[-40,0],[-62,-60],[-102,-109],[-90,-163],[-43,-84],[-90,-76],[-146,-221],[-75,-207],[-93,-59],[-30,3],[-6,61],[34,57],[-16,18],[-26,-27],[-70,-51],[-181,-167],[-256,-130],[-152,-111],[-72,-61],[-33,-130],[-70,-87],[-28,-142],[-79,-111],[-53,2],[-20,21],[12,63],[-14,43],[-68,-9],[-32,42],[-84,30],[-64,7],[-60,99],[-22,136],[-18,142],[-33,212],[0,145],[-34,45],[-44,24],[-58,27],[-82,-27],[-20,-51],[-28,-86],[-80,-23],[-46,27],[-24,58],[-78,12],[-58,21],[-10,-33],[5,-66],[-39,-29],[-10,58],[-23,12],[-56,-39],[-236,-151],[-44,21],[-30,61],[-46,130],[-112,166],[-95,9],[-16,22],[-72,96],[-80,145],[4,172],[-24,139],[-60,42],[-74,-18],[-52,-51],[-54,-148],[-47,-132],[-177,-340],[-47,-248],[-46,-21],[-74,-24],[-92,-54],[-100,-70],[-128,9],[-48,8],[-5,1],[-43,6],[-55,-33],[-26,-45],[4,-172],[42,-206],[45,-154],[22,-148],[-85,-154],[-24,-160],[-38,-63],[-122,-143],[-68,-36],[-54,27],[-88,-151],[-94,-142],[-82,-57],[-27,-46],[19,-99],[21,-58],[-13,-148],[-6,-79],[16,-72],[40,-27],[92,54],[82,39],[68,-51],[82,-66],[118,-55],[68,-3],[61,21],[64,31],[60,-28],[30,-69],[-6,-55],[-48,-24],[-86,33],[-87,10],[-56,3],[-30,-70],[-34,-97],[-10,-87],[52,-49],[84,25],[52,-20],[87,-17],[66,6],[64,55],[48,6],[30,-70],[-14,-87],[-46,-67],[-102,-286],[-48,-161],[-6,-94],[-41,-76],[-68,-33],[-110,-18],[-42,-48],[-20,-45],[10,-61],[86,-115],[14,-105],[-30,-342],[-64,-272],[-20,-84],[-30,-35],[-36,7],[-32,76],[-64,27],[-82,-15],[-56,-109],[-40,-39],[-60,15],[-81,100],[-170,96],[-90,31],[-54,57],[-26,-6],[-40,-142],[-102,-148],[-62,-230],[-83,-263],[22,-323],[38,-33],[67,-154],[114,-127],[46,-84],[138,-61],[182,-52],[52,-33],[97,-115],[-64,-408],[-61,-190],[-98,-414],[-96,-203],[-104,-129],[-242,-194],[-129,-48],[-94,3],[-84,-39],[-82,-118],[-40,-157],[-7,-62],[63,-174],[64,-172],[58,-284],[-32,-197],[-70,-181],[-96,-117],[-120,-226],[-20,-120],[-20,-120],[-36,-179],[-29,-90],[-82,-177],[-47,-45],[-82,-66],[-83,-142],[-126,-93],[-120,-88],[-76,-55],[-165,-97],[-71,-95],[14,-253],[34,-182],[15,-45],[45,-29],[63,27],[146,147],[147,41],[166,41],[74,38],[44,73],[49,56],[100,-43],[108,-57],[116,-38],[151,-138],[92,-14],[54,-18],[118,-70],[132,-47],[96,4],[80,-29],[118,4],[84,-50],[24,-56],[23,-260],[16,-317],[96,-322],[80,-262],[-15,-70],[-95,-120],[-90,-86],[-187,-177],[-48,-113],[-3,-81],[42,-32],[79,-95],[92,-111],[64,-57],[75,-15],[125,-14],[24,-54],[25,-129],[-9,-206],[9,-175],[26,-196],[63,-50],[111,-156],[211,-190],[107,-107],[97,-181],[-4,-66],[-44,-56],[-87,-25],[-75,-7],[-108,30],[-90,72],[-138,115],[-42,53],[-46,13],[-110,-20],[-46,20],[-42,36],[-92,80],[-118,45],[-92,-7],[-24,-45],[-25,-46],[-56,8],[-96,162],[-72,52],[-121,23],[-96,29],[-140,89],[-178,142],[-114,113],[-96,-16],[-23,7],[-75,-88],[-112,-81],[-89,-14],[-190,2],[-57,-56],[-87,-134],[-86,-79],[-100,-120],[-32,-93],[-10,-131],[-30,-175],[-87,-375],[-66,-195],[-59,-129],[-90,-65],[-239,-152],[-91,-124],[-119,-209],[-57,-160],[-55,-175],[-240,-450],[-32,-131],[8,-113],[42,-123],[42,-124],[6,-269],[-2,-309],[-40,-169],[-23,-197],[59,-117],[88,-111],[86,-161],[-2,-183],[-34,-102],[-41,-91],[-33,-27],[-73,-11],[-69,23],[-111,38],[-50,-29],[-52,-55],[-48,-88],[-77,-106],[-36,-84],[12,-70],[36,-118],[-9,-161],[-90,-298],[12,-73],[15,-95],[38,-120],[-39,-113],[-60,-163],[-8,-86],[-30,-65],[-31,-25],[-36,20],[-41,100],[-24,58],[-16,-9],[33,-113],[-15,-41],[-33,14],[-22,23],[5,95],[-19,47],[-15,73],[-38,-9],[-79,-48],[-54,-11],[-14,-52],[-9,-43],[-40,-5],[-30,138],[-50,52],[-75,3],[-63,-41],[-37,-73],[1,-90],[15,-70],[-75,-86],[-100,-131],[-78,-64],[-126,-70],[-75,-140],[-99,-111],[-77,-25],[-40,11],[-41,-31],[-52,-80],[-1,-6],[-2,-6],[-5,-31],[17,-38],[19,-42],[11,-298],[-15,-83],[0,-86],[-27,-43],[-35,-95],[-33,-62],[-37,-49],[-3,-48],[-27,-59],[-20,9],[-16,-25],[6,-54],[16,-36],[3,-45],[-43,-77],[13,-68],[23,-45],[36,-21],[31,43],[35,41],[37,-25],[-1,-29],[-2,-30],[-21,-61],[-15,-68],[-36,-2],[-45,-63],[-19,-141],[16,-77],[32,-86],[-11,-61],[-25,-34],[-24,3],[-17,-21],[-12,-22],[12,-138],[-19,-64],[-11,-108],[21,-30],[2,-41],[-17,-49],[-24,-3],[-30,14],[-37,2],[-2,-38],[3,-59],[-12,9],[-17,17],[-22,-8],[-49,45],[-33,-9],[-21,-36],[-41,-62],[-19,-8],[-18,22],[-24,16],[-6,-20],[-6,-20],[-26,-37],[5,-44],[4,-44],[35,-68],[-15,-32],[18,-45],[24,-4],[9,34],[34,-9],[30,-30],[23,-47],[-155,-301],[-48,-213],[-24,-16],[-4,-41],[16,-56],[27,-45],[-22,-55],[-32,-34],[-24,-52],[-30,-41],[-63,-88],[9,-120],[-128,-142],[-37,-120],[98,-186],[15,-140],[-40,-54],[-76,-32],[-98,-27],[-39,-43],[-1,-79],[53,-117],[56,-89],[2,-82],[-33,-106],[-45,-154],[12,-138],[27,-172],[-21,-52],[-34,11],[-245,134],[-18,-52],[-17,-50],[-22,-3],[-23,0],[-34,50],[-20,39],[-10,18],[-21,47],[-51,34],[-66,0],[-27,-1],[-8,-19],[18,-16],[-4,-32],[-14,-18],[-18,5],[-15,9],[-34,16],[-8,-27],[23,-80],[-23,0],[2,-27],[16,-31],[-6,-32],[-40,-7],[-32,-38],[15,-86],[-27,-21],[-28,-4],[-29,-37],[8,-72],[-25,-13],[-26,9],[-36,-12],[-63,-31],[-29,22],[-12,113],[-21,75],[-20,35],[-27,-8],[-19,34],[-1,70],[-17,46],[-36,-10],[-27,14],[14,-59],[-12,-18],[-17,10],[-9,40],[-7,0],[-18,-23],[-24,-40],[15,-61],[-18,-37],[-35,-27],[0,-32],[0,-71],[-36,-17],[6,-45],[17,-45],[-21,-57],[-29,-23],[-18,3],[-13,-80],[9,-24],[37,-19],[38,-20],[40,-79],[46,-36],[8,-30],[6,-54],[18,-7],[11,23],[36,20],[61,-27],[75,-104],[29,-63],[-8,-100],[-60,-278],[2,-89],[12,-113],[-9,-68],[12,-72],[25,-26],[17,-38],[-5,-47],[-10,-72],[18,-55],[30,2],[16,44],[6,-14],[8,-68],[-24,-38],[-48,-21],[-48,-81],[-35,-70],[-39,-109],[-21,-52],[23,-52],[-14,-13],[-30,-1],[-19,-31],[7,-25],[-12,-23],[-27,18],[-22,-20],[-152,-195],[-42,-70],[-30,-32],[-28,-6],[-33,38],[-83,-20],[-34,-30],[-5,-65],[27,-48],[48,-111],[12,-29],[-6,-73],[26,-13],[30,-9],[57,-84],[78,-93],[49,-43],[59,-36],[72,-106],[40,-111],[14,-84],[-23,-23],[-18,-16],[0,-142],[-7,-96],[52,-91],[171,-334],[140,-228],[117,-128],[27,-22],[61,-18],[32,23],[117,143],[33,4],[39,-54],[12,-75],[4,-93],[-36,-38],[-147,-154],[-33,-52],[-36,-25],[-27,43],[-42,32],[-34,-27],[1,-37],[12,-56],[-27,-3],[-34,-13],[4,-43],[30,-27],[10,-59],[13,-54],[-18,-34],[-32,6],[-27,64],[-24,2],[-3,-18],[21,-59],[-22,-11],[-42,4],[-27,-9],[-20,-27],[-10,-27],[-29,-11],[11,-43],[-27,-5],[-5,32],[-13,7],[-14,-32],[-21,0],[-22,-9],[-3,-30],[3,-65],[-2,-39],[15,-40],[-13,-19],[4,-40],[-13,-53],[-12,-54],[-30,-29],[-17,-25],[0,-50],[-25,-16],[13,-58],[-15,-43],[-21,11],[-16,-14],[18,-47],[-32,4],[-21,39],[-15,27],[-2,72],[-23,8],[-23,8],[-31,-27],[-20,-23],[-16,19],[-29,-12],[2,-72],[-11,-34],[-6,-88],[43,-37],[32,19],[36,-32],[21,-32],[2,-29],[-12,-39],[-2,-55],[12,-22],[23,6],[21,-37],[-14,-25],[-45,11],[-3,-29],[8,-28],[15,-61],[12,-63],[21,-120],[22,-70],[33,-11],[28,20],[10,-9],[6,-41],[19,-47],[20,-23],[33,16],[48,-18],[10,-23],[35,-34],[24,7],[12,34],[34,32],[29,-4],[15,-17],[-3,-25],[3,-52],[6,-34],[22,-9],[8,27],[0,46],[36,22],[44,-3],[6,1],[8,-45],[21,-18],[29,13],[52,-22],[8,-30],[18,-13],[10,-3],[24,28],[15,-28],[-3,-31],[-18,-39],[-36,-81],[-30,-98],[-6,-70],[-36,-18],[-39,32],[-22,-18],[1,-59],[-12,-34],[-25,7],[-8,-61],[23,-32],[46,29],[45,-138],[-10,-47],[-20,-15],[-42,-33],[-36,34],[-40,-18],[-30,-35],[-114,-40],[-38,-67],[-46,-55],[-59,-38],[-54,7],[-16,45],[-34,15],[-35,-13],[-23,-34],[-40,25],[-29,7],[-25,-30],[-11,-29],[-1,-36],[9,-98],[2,-88]],[[673217,535763],[2,-28],[-5,-27],[0,-1],[-8,-37],[-12,-48],[-3,-9],[-11,-43],[-19,-37],[-38,-25],[-26,-36],[-27,-48],[-24,-48],[-21,-23],[-76,-86],[-77,-69],[-46,-67],[-19,-34],[0,-39],[-6,-62],[14,-33],[34,-46],[22,-9],[14,-32],[0,-31],[16,-19],[18,-8],[22,11],[31,-3],[40,-44],[0,-5],[13,-44],[-3,-34],[-22,-37],[-25,-4],[-19,-36],[1,-33],[-8,-30],[-14,-26],[-20,-10],[-7,2],[-27,9],[-28,23],[-38,20],[-34,16],[-27,8],[-35,1],[-26,-1],[-16,0],[-18,-4],[-17,-20],[-14,-16],[-14,-15],[-14,-15],[-16,-12],[-28,1],[-14,-3],[-19,-15],[-11,-23],[5,-15],[6,-22],[-1,-19],[-1,-19],[-6,-39],[-15,-40],[-5,-8],[-5,-12],[-6,-12],[-6,-6],[-22,-23],[-36,1],[-30,26],[-22,7],[-31,-14],[-13,-25],[-34,-16],[-37,-4],[-28,-4],[-19,-13],[-8,-7],[-37,-7],[-45,-9],[-21,-1],[-16,8],[-15,10],[-12,51],[1,29],[11,34],[-1,47],[-11,33],[-13,12],[-14,11],[-22,4],[-25,-2],[-26,-18],[-31,-23],[-8,-9],[-5,-5],[-13,-13],[-22,-20],[-26,-25],[-29,0],[-41,-9],[-38,-17],[-32,-23],[-33,-28],[-6,-3],[-16,-7],[-29,6],[-24,10],[-14,20],[-9,35],[-10,33],[-12,30],[-1,4],[-24,12],[-13,1],[-13,-18],[-3,-38],[-9,-37],[-6,-37],[-5,-32],[-16,-25],[-17,-25],[-27,14],[-20,17],[-19,17],[-9,8],[-22,21],[-19,18],[-22,4],[-18,-12],[-7,-17],[7,-31],[13,-45],[22,-39],[12,-33],[13,-27],[2,-29],[-11,-36],[-28,-30],[-28,-39],[-22,-23],[-5,-5],[-35,-36],[-41,-34],[-33,-27],[-19,-22],[-14,-19],[-13,-31],[-23,-53],[-38,-106],[-24,-90],[-38,-88],[-3,-4],[-38,-52],[-24,-38],[-18,-50],[-5,-28],[-10,-54],[-15,-90],[-15,-77],[-16,-57],[-19,-58],[-21,-63],[-15,-61],[-1,-47],[7,-31],[12,-16],[27,-36],[3,-9],[4,-8],[7,-17],[8,-35],[0,-45],[-6,-24],[-24,-39],[-18,-39],[-14,-41],[-8,-47],[-8,-54],[-14,-75],[-5,-50],[-15,-49],[-27,-67],[-28,-40],[-28,-30],[-39,-29],[-46,-22],[-54,-25],[-40,-27],[-13,-15],[-14,-15],[-35,-33],[-50,-64],[-39,-68],[-47,-86],[-28,-59],[-17,-45],[-22,-67],[-7,-28],[-3,-38],[-3,-38],[-6,-163],[2,-62],[5,-79],[8,-65],[8,-48],[11,-42],[19,-32],[12,-28],[4,-32],[-4,-40],[-9,-56],[-8,-27],[-22,-26],[-27,-18],[-21,-8],[-22,-11],[-12,-20],[-10,-28],[-22,-47],[-28,-93],[-17,-131],[-18,-112],[-20,-61],[-22,-26],[-18,-31],[-10,-38],[-17,-92],[-2,-39],[-14,-48],[-25,-56],[-23,-39],[-43,-63],[-125,-177],[-80,-110],[-54,-86],[-96,73],[-49,58],[-39,82],[-30,82],[-29,61],[-39,58],[-48,63],[-57,71],[-56,26],[-59,15],[-59,7],[-58,37],[-39,-3],[-30,-18],[-36,17],[-55,19],[-31,49],[-22,57],[-39,31],[-32,-19],[-39,0],[-42,23],[-75,31],[-85,40],[-32,11],[-38,13],[-77,38],[-67,4],[-67,9],[-98,57],[-69,67],[-66,66],[-70,51],[-58,28],[-45,21],[-65,36],[-19,21],[-5,37],[-7,17],[-18,2],[-24,-3],[-21,26],[-6,38],[4,35],[6,32],[17,1],[11,16],[4,29],[-3,37],[-23,55],[-35,18],[-47,5],[-46,0],[-39,-5],[-66,-26],[-45,-40],[-91,0],[-88,38],[-91,66],[-87,94],[-87,112],[-11,30],[-47,123],[-25,161],[-37,28],[-110,14],[-100,-28],[-113,0],[-131,-9],[-169,-13],[-166,-48],[-147,-29],[-63,43],[-56,-9],[-88,-87],[-379,-371],[-147,-137],[-94,-119],[-41,-75],[-41,-76],[-94,-132],[-203,-142],[-132,38],[-62,42],[-63,43],[-93,27],[-124,-30],[-165,18],[-191,65],[-207,133],[-25,35],[-25,36],[-3,103],[15,142],[-22,175],[-100,265],[-31,113],[-31,114],[-60,231],[-61,95],[-80,61],[-75,43],[-94,9],[-97,59],[-25,50],[-72,123],[-85,189],[-69,132],[-42,37],[-43,37],[-131,96],[-169,109],[-238,151],[-355,233],[-35,23],[-165,108],[-70,-137],[-47,-80],[-24,2],[-7,-29],[-11,-28],[-7,-35],[54,-33],[3,-30],[3,-29],[-32,-42],[-64,-20],[-20,-31],[17,-63],[-25,-64],[-44,-57],[-45,12],[-33,-28],[0,-63],[-5,-32],[-30,-19],[-43,-23],[-58,-15],[-102,33],[-71,-3],[-64,51],[-58,82],[-88,95],[-56,85],[-56,31],[-124,-7],[-56,28],[-80,135],[-13,99],[-42,87],[-28,45],[-22,123],[-12,121],[-29,139],[-33,85],[-25,104],[-12,116],[-35,85],[-45,42],[-71,26],[-81,57],[-77,57],[-13,52],[0,47],[-32,14],[-22,66],[-52,5],[-86,40],[-10,52],[-23,64],[-67,61],[-74,59],[-31,74],[-58,101],[-27,45],[-30,52],[-51,40],[-82,81],[-22,14],[-44,33],[-44,33],[-68,43],[-98,28],[-75,-14],[-91,-43],[-131,-165],[-57,-260],[19,-199],[60,-165],[87,-255],[98,-265],[37,-151],[28,-151],[7,-218],[4,-239],[-10,-320],[-4,-102],[-4,-284],[-2,-189],[-47,-90],[-97,-89],[-57,-39],[-65,-32],[-88,71],[-91,123],[-34,118],[-16,56],[-16,57],[-25,170],[41,137],[72,100],[129,174],[106,142],[42,157],[5,108],[-25,123],[-75,89],[-85,62],[-131,75],[-107,43],[-110,-28],[-106,-81],[-56,-35],[-57,-36],[-147,-89],[-88,-95],[-50,-75],[-34,-95],[-41,-222],[-38,-217],[-20,-62],[-20,-61],[-88,-95],[-75,-38],[-107,29],[-160,94],[-106,47],[-128,-18],[-163,-24],[-113,-52],[-91,-95],[-47,-66],[-44,-132],[-19,-95],[13,-179],[222,-1186],[94,-492],[27,-165],[27,-166],[-4,-170],[-8,-53],[-17,-103],[-59,-108],[-57,-59],[-56,-59],[-116,-57],[-113,-66],[-78,-52],[-85,-109],[-68,-213],[-132,-515],[-138,-548],[-50,-184],[-41,-36],[-40,-35],[-170,-99],[-69,-95],[-38,-82],[-39,-81],[-26,-139],[16,-76],[15,-75],[69,-95],[-6,-95],[-69,-118],[-53,-85],[-50,-80],[-47,-90],[-47,-146],[-72,-118],[-72,-147],[-3,-83],[-4,-82],[-9,-175],[16,-189],[34,-133],[-19,-70],[-62,-48],[-57,66],[-12,93],[-13,92],[-69,104],[-93,158],[-48,158],[-59,170],[-62,143],[-44,53],[-45,87],[-53,64],[-45,62],[-13,11],[-15,1],[-16,-6],[-25,0],[-30,20],[-14,14],[-18,1]],[[654145,526577],[-3979,-1349],[-3056,-674],[-2262,-500],[-12,-3],[-1080,-238],[-20,-4],[-41,-10],[-336,-74],[-768,-169],[-1537,214],[-251,35],[-83,11],[-10,1],[-117,17],[-2,0],[-3,0],[-539,75],[-216,30],[-2563,357],[-10,-448],[-68,-554],[-186,-364],[-353,-181],[-507,-64],[-276,-350],[-240,-479],[-268,-342],[-193,-451],[52,-1170],[-93,-519],[-381,-388],[-333,68],[-369,16],[-252,-218],[-79,-452],[-199,-435],[-329,-78],[-306,-364],[-105,-485],[-58,-474],[-252,-314],[-137,-390],[228,-1144],[-199,-1063],[-324,-389],[-362,-223],[-947,-393],[-267,-305],[-221,-627],[-266,-411],[-171,-452],[-136,-96],[-125,-88],[-98,-482],[-16,-165],[-17,-165]],[[629407,509857],[-6775,14213],[-5,10],[-115,242],[-10100,21212],[-1865,3922],[-39,81],[-20,42],[-157,330],[-2560,5383],[-1100,2532],[-5,12],[-186,427],[-1223,2269]],[[605257,560532],[242,295],[22,-10],[16,25],[52,43],[8,6],[44,50],[30,25],[85,4],[92,18],[54,-16],[24,0],[12,51],[20,6],[20,-27],[3,-61],[26,-22],[38,-12],[26,7],[25,-3],[20,-4],[15,16],[29,-7],[32,-7],[28,-2],[1,-41],[23,-2],[14,65],[29,43],[29,16],[40,31],[55,118],[42,36],[38,47],[23,88],[-4,63],[23,39],[-4,36],[-15,45],[0,39],[26,18],[23,10],[19,16],[6,49],[25,0],[33,-4],[15,-45],[4,-79],[-4,-45],[27,-40],[29,-27],[54,0],[33,28],[29,25],[86,22],[19,70],[23,2],[9,-27],[24,-3],[22,15],[21,79],[30,25],[56,14],[62,11],[52,16],[42,-16],[41,8],[102,71],[14,45],[36,93],[30,19],[31,-17],[23,27],[4,79],[21,23],[31,-8],[30,-13],[26,18],[42,39],[82,131],[19,69],[5,36],[10,100],[29,100],[32,15],[21,-32],[26,15],[17,35],[19,-4],[16,-68],[22,-22],[32,2],[16,45],[33,89],[27,45],[52,33],[30,-13],[32,-20],[14,-2],[5,45],[41,6],[32,-18],[46,15],[70,23],[84,-28],[49,-39],[29,-26],[23,4],[23,38],[27,-6],[31,-14],[24,41],[35,4],[21,10],[0,26],[-7,49],[20,33],[33,12],[27,-12],[6,-23],[12,-46],[27,4],[11,32],[3,37],[16,8],[11,-37],[30,7],[3,51],[9,34],[17,-4],[12,-66],[18,1],[1,17],[44,40],[21,-6],[15,-55],[11,-41],[20,-2],[70,81],[65,37],[71,2],[21,33],[21,71],[49,105],[23,33],[44,17],[42,-4],[23,52],[11,70],[5,79],[18,43],[29,21],[36,-11],[41,-12],[15,30],[11,74],[-52,13],[-13,3],[-2,47],[-3,87],[11,31],[21,-15],[10,-52],[2,-39],[25,-10],[8,28],[20,33],[18,-12],[10,16],[19,39],[-11,42],[-43,17],[-33,50],[-10,68],[-30,46],[6,21],[24,26],[42,59],[5,41],[-16,16],[-7,21],[14,34],[8,31],[-15,30],[10,49],[9,40],[22,31],[14,63],[-43,57],[7,27],[49,-2],[46,15],[21,38],[18,2],[12,-37],[21,10],[2,47],[23,2],[9,27],[11,-15],[14,-15],[13,26],[40,110],[28,15],[7,46],[7,46],[35,5],[44,-20],[25,-50],[18,-71],[101,-43],[30,-28],[82,28],[40,-2],[93,-4],[23,40],[23,17],[19,-38],[18,-51],[67,-13],[18,15],[29,26],[53,-14],[9,-18],[30,31],[10,3],[36,-10],[31,26],[45,-2],[29,2],[22,-18],[55,5],[17,22],[26,32],[19,-4],[18,-18],[24,-16],[12,34],[16,6],[18,-4],[49,-12],[29,35],[10,67],[3,68],[17,33],[20,13],[30,2],[15,22],[8,35],[9,18],[30,-10],[16,57],[14,22],[25,15],[28,-4],[34,77],[48,26],[5,65],[-20,51],[-48,24],[-22,50],[7,24],[18,24],[33,7],[55,81],[4,37],[-31,44],[-22,33],[0,20],[0,17],[18,-7],[30,-16],[51,-2],[13,33],[23,22],[33,63],[6,86],[19,65],[42,18],[42,-10],[7,-22],[17,-15],[35,15],[26,-27],[88,-91],[43,-80],[51,-55],[31,47],[22,-31],[25,-42],[21,10],[5,37],[5,82],[17,19],[27,-8],[37,-34],[26,-9],[11,21],[28,100],[26,48],[-7,68],[-1,40],[13,17],[31,1],[22,43],[20,8],[24,5],[23,22],[2,30],[-35,59],[9,13],[27,-40],[13,17],[-14,84],[21,28],[-4,65],[19,31],[23,-25],[26,13],[5,36],[-22,37],[7,43],[34,32],[21,-14],[22,-2],[22,33],[13,48],[-16,41],[12,35],[24,30],[15,33],[6,61],[23,71],[29,14],[42,-12],[5,21],[-13,16],[1,34],[6,27],[24,14],[22,-8],[6,18],[-5,43],[20,31],[58,34],[41,-57],[32,-30],[24,8],[33,53],[8,36],[19,17],[19,-8],[13,-31],[42,-41],[19,23],[-7,26],[-30,71],[9,21],[21,2],[31,-7],[38,41],[47,6],[16,-71],[26,-45],[57,-10],[12,25],[23,-6],[8,-74],[15,-16],[51,-8],[35,41],[18,59],[33,-13],[57,41],[32,18],[33,-2],[54,-57],[12,-85],[26,-33],[40,17],[27,-29],[30,-18],[-4,-29],[32,-16],[40,45],[15,30],[11,27],[30,-14],[12,-41],[-1,-45],[51,-43],[48,-4],[14,21],[38,-15],[13,-16],[12,-32],[14,-1],[21,-2],[-2,-54],[-2,-47],[33,-39],[19,-10],[17,12],[-5,53],[21,12],[8,-28],[-1,-43],[7,-63],[15,-18],[6,-37],[14,-17],[30,5],[13,30],[30,-8],[20,-18],[15,16],[-27,39],[4,40],[39,74],[18,-2],[17,-1],[16,-1],[6,-29],[15,-4],[5,27],[16,4],[33,-13],[44,23],[61,18],[35,43],[155,112],[8,40],[20,21],[3,45],[11,55],[28,12],[43,28],[21,-20],[17,-27],[30,27],[15,24],[24,5],[-1,40],[25,36],[17,-2],[17,-1],[-5,-25],[-6,-32],[22,-19],[29,2],[13,-14],[17,14],[29,11],[2,28],[-27,37],[-2,32],[31,21],[16,28],[9,41],[-52,91],[-36,69],[17,100],[29,29],[33,-8],[42,8],[21,12],[11,21],[14,-9],[13,-8],[20,-8],[47,33],[17,-13],[18,15],[18,63],[11,26],[104,78],[25,73],[27,51],[40,77],[22,-2],[32,-28],[22,-9],[42,70],[-14,41],[6,14],[27,-15],[19,-30],[27,8],[24,35],[27,14],[10,22],[-3,29],[42,55],[4,34],[3,29],[33,10],[10,-22],[15,-21],[6,-57],[42,-89],[6,-35],[-23,-6],[-7,-35],[22,-17],[6,4],[7,3],[6,14],[51,112],[11,23],[24,8],[11,-27],[-8,-36],[18,-10],[37,55],[-19,44],[-31,37],[-10,6],[-20,10],[8,49],[17,18],[21,2],[18,-36],[13,-14],[15,6],[45,61],[25,-6],[10,24],[20,0],[15,-28],[19,-4],[8,28],[-6,31],[6,61],[24,6],[39,0],[11,28],[16,35],[-8,20],[3,47],[-6,43],[16,63],[2,20],[-14,16],[-20,-16],[-31,-53],[-32,6],[-21,16],[14,50],[1,30],[-47,-41],[-26,33],[38,112],[37,65],[51,37],[20,224],[46,12],[7,30],[24,19],[54,-2],[5,42],[-12,47],[6,33],[43,45],[36,18],[-2,45],[-34,28],[-18,92],[19,23],[16,21],[46,-10],[49,17],[27,16],[40,-6],[37,79],[40,-6],[29,-49],[21,4],[39,23],[10,42],[-16,57],[33,37],[20,16],[17,-14],[55,39],[-11,24],[-54,25],[107,199],[167,308],[19,22],[59,-43],[26,31],[-3,30],[10,41],[46,59],[-16,46],[39,52],[23,-9],[35,31],[-7,48],[-4,35],[0,33],[20,6],[7,2],[3,-29],[1,-8],[35,-14],[39,21],[42,10],[22,8],[28,63],[41,24],[7,7],[-4,10],[-16,34],[4,23],[15,-4],[20,-31],[4,-6],[25,8],[-2,26],[-1,13],[19,45],[25,44],[34,-8],[12,20],[33,56],[23,57],[1,4],[1,1],[53,64],[-8,55],[30,45],[54,40],[55,64],[9,24],[0,2],[-10,31],[-1,3],[-7,43],[6,38],[9,16],[25,-18],[33,0],[10,8],[19,16],[5,31],[3,18],[15,17],[41,-10],[63,106],[34,57],[52,67],[44,56],[14,22],[22,2],[0,-29],[0,-11],[14,-18],[1,0],[25,4],[12,0],[13,1],[1,0],[22,15],[5,3],[21,15],[5,3],[7,6],[13,12],[7,1],[38,2],[13,1],[24,-25],[8,-1],[30,-5],[3,17],[4,17],[0,4],[29,9],[18,23],[24,20],[1,1],[21,-6],[22,-3],[13,-3],[8,-1],[4,9],[5,12],[3,6],[8,0],[9,0],[1,-1],[14,-37],[36,-5],[28,61],[51,45],[2,2],[9,25],[9,24],[7,20],[22,21],[30,32],[66,73],[35,38],[31,5],[-1,-13],[0,-6],[-1,-30],[18,-12],[1,0],[30,-4],[15,6],[15,7],[24,45],[14,25],[-1,16],[-1,11],[8,16],[15,-9],[14,-2],[9,-1],[88,23],[38,2],[9,40],[21,12],[70,38],[5,-3],[36,-27],[7,-6],[26,6],[6,17],[17,53],[5,16],[26,20],[8,-17],[16,-34],[28,5],[15,3],[3,5],[8,13],[7,44],[2,13],[14,-6],[10,-4],[23,20],[5,4],[1,-1],[17,-29],[20,4],[28,19],[8,40],[1,8],[5,-5],[19,-17],[22,-2],[9,42],[0,1],[17,33],[26,9],[10,-18],[6,-9],[49,5],[13,34],[6,16],[19,15],[28,-11],[25,-11],[20,27],[12,17],[59,30],[33,-5],[13,1],[31,3],[12,13],[23,25],[35,12],[17,6],[33,37],[33,-9],[31,18],[22,-5],[36,18],[40,38],[36,16],[61,-32],[32,-80],[4,-10],[3,2],[17,16],[26,-9],[10,-38],[17,-22],[22,14],[37,-45],[44,-52],[21,-23],[36,-40],[16,4],[36,9],[50,-67],[61,-40],[43,-72],[7,-14],[34,-69],[33,-41],[18,-22],[4,-4],[26,-59],[9,23],[-3,40],[-1,14],[6,63],[32,-3],[29,-31],[41,-59],[16,3],[13,107],[2,7],[4,20],[15,12],[8,-12],[6,-9],[6,2],[18,5],[2,15],[1,13],[0,3],[4,0],[21,1],[6,0],[1,4],[3,19],[4,24],[17,14],[8,-12],[12,-14],[6,0],[16,0],[5,13],[19,50],[29,2],[21,18],[4,11],[16,43],[3,9],[29,36],[9,-1],[17,-2],[2,0],[30,30],[21,-7],[14,-51],[67,-23],[5,-50],[5,-6],[34,7],[2,-18],[-33,-47],[29,-37],[14,-22],[6,-62],[19,-36],[45,-50],[0,-96],[1,-49],[24,-68],[50,-32],[42,-17],[-4,-36],[-9,-67],[44,-19],[25,-31],[-2,-43],[-39,-38],[-30,-22],[-16,-14],[1,-36],[29,-28],[1,-45],[-24,-21],[8,-18],[55,-5],[23,-15],[13,14],[-9,22],[0,49],[24,23],[25,-25],[14,-25],[99,10],[440,46],[71,68],[66,46],[126,82],[267,242],[79,85],[70,63],[22,-8],[26,11],[22,53],[51,30],[55,54],[40,6],[17,39],[11,40],[10,40],[-6,67],[3,61],[43,164],[40,195],[43,220],[17,65],[24,45],[0,56],[-13,46],[15,33],[13,3],[16,6],[0,27],[18,38],[-4,43],[5,49],[14,31],[20,11],[6,34],[-8,81],[18,52],[11,60],[20,2],[21,-19],[11,11],[14,15],[-2,49],[19,7],[36,11],[107,81],[101,38],[125,34],[79,29],[59,3],[65,38],[60,96],[64,52],[-7,38],[-8,38],[5,27],[46,34],[42,7],[57,38],[16,53],[99,66],[119,40],[106,81],[47,72],[13,45],[-12,42],[-78,42],[-73,48],[-113,157],[-43,65],[-63,186],[4,36],[7,50],[10,42],[-6,20],[-23,12],[-32,-9],[-22,31],[3,45],[25,52],[20,85],[-15,49],[-24,47],[-28,9],[-1,25],[9,32],[23,69],[18,50],[5,53],[-13,33],[11,39],[17,16],[-7,45],[-28,27],[-37,9],[-44,-20],[-17,15],[-9,42],[15,41],[16,14],[0,20],[-54,43],[-29,15],[-53,103],[-44,32],[-49,60],[-15,43],[-12,41],[-56,51],[-11,36],[-25,29],[-15,47],[-21,38],[-39,14],[-14,27],[-24,49],[-36,36],[-22,56],[-16,27],[-51,81],[-98,182],[-52,103],[-1,43],[-21,38],[-48,47],[-68,7],[-91,-25],[-140,-61],[-88,36],[-103,99],[-99,105],[-72,93],[-86,139],[-40,28],[-15,66],[5,159],[-20,47],[-67,68],[-29,-3],[-14,34],[-4,58],[-54,119],[-57,16],[-35,52],[-27,72],[-97,188],[-141,195],[-155,178],[-62,76],[-52,50],[-58,35],[-77,-51],[-48,-3],[-23,25],[-20,23],[-21,8],[-28,-17],[-54,-3],[-18,18],[-19,33],[-4,39],[-2,32],[9,27],[0,24],[-7,20],[-50,48],[-151,130],[-31,83],[-60,108],[-112,55],[-184,212],[-22,80],[20,140],[-24,76],[-53,4],[-81,-11],[-60,43],[-2,54],[0,101],[-32,127],[-43,10],[-93,-21],[-60,50],[-86,123],[-48,-18],[-68,53],[-39,156],[-50,0],[-72,-61],[-67,3],[-241,114],[-41,67],[-4,61],[-3,61],[12,109],[4,173],[-31,223],[-93,156],[-38,23],[-39,23],[-64,-18],[-84,-61],[-174,-86],[-63,-76],[-76,-7],[-29,129],[-81,220],[-84,101],[5,58],[53,65],[28,235],[115,137],[108,241],[9,174],[-57,202],[-218,515],[43,80],[70,7],[117,-87],[86,98],[134,119],[98,76],[37,43],[37,43],[48,11],[64,-25],[41,-108],[56,-33],[68,-11],[55,76],[32,72],[71,119],[50,7],[91,65],[74,11],[20,10],[40,19],[237,296],[39,249],[38,130],[45,54],[48,-8],[29,-130],[54,-35],[93,-68],[68,-33],[39,54],[47,-15],[30,-99],[30,13],[40,61],[67,11],[74,68],[67,-3],[27,147],[55,80],[43,54],[76,148],[24,126],[0,159],[10,79],[40,16],[43,89],[-20,50],[-51,36],[0,40],[38,25],[50,22],[50,-32],[58,-46],[91,28],[45,69],[33,17],[41,-43],[36,21],[53,40],[47,181],[65,25],[44,-23],[95,16],[76,75],[-48,105],[-69,256],[-57,209],[-108,-29],[-153,127],[-134,93],[-220,242],[-237,155],[-229,383],[-60,39],[-160,65],[-67,80],[-17,288],[-151,296],[-112,227],[-105,119],[19,80],[31,32],[7,61],[-33,73],[-43,86],[-15,58],[7,115],[36,91],[335,191],[61,-6],[4,-84],[-37,-108],[29,-24],[39,-31],[93,144],[69,62],[84,25],[79,-61],[63,-77],[78,44],[26,80],[-2,119],[-17,98],[46,86],[81,32],[120,98],[207,74],[223,88],[147,-3],[62,14],[152,169],[22,195],[-58,130],[-98,169],[-103,289],[-59,83],[-130,40],[-74,-80],[-65,13],[-64,52],[-74,80],[-57,155],[-199,415],[-115,57],[-102,11],[-84,-32],[-38,93],[7,69],[-84,79],[-55,-3],[-60,-33],[-48,90],[-21,65],[23,115],[-45,66],[-40,29],[-79,-58],[-46,43],[-78,25],[-77,8],[-45,21],[-53,-14],[-91,-98],[-88,-151],[-141,-141],[-88,1],[-85,162],[-2,119],[62,191],[174,63],[63,106],[24,134],[-58,350],[-90,231],[-125,277],[31,80],[122,140],[93,98],[-9,65],[-101,104],[-193,170],[-101,101],[-138,162],[-61,50],[-95,145],[-62,112],[-33,43],[-32,-14],[-19,-90],[-36,-22],[-50,18],[-19,68],[-14,87],[-18,207],[-1,9],[14,127],[-24,158],[-17,91],[-21,43],[-55,4],[-34,-69],[-79,-43],[-64,0],[-12,-36],[0,-69],[12,-159],[-77,-75],[-9,-80],[-15,-86],[-35,-33],[-123,-66],[-112,12],[-50,49],[-129,48],[-86,-3],[-96,-36],[-19,61],[24,72],[26,101],[-45,33],[-82,65],[-102,-18],[-86,90],[0,72],[-41,148],[-91,97],[-148,105],[-12,61],[-12,87],[-10,104],[7,192],[-19,173],[-50,54],[-174,68],[-182,105],[-122,170],[-191,292],[-29,122],[-12,123],[-91,137],[-17,206],[58,94],[45,7],[55,0],[48,65],[26,86],[-5,112],[-9,40],[-10,39],[-67,44],[-119,25],[-58,61],[-88,108],[-62,98],[-10,90],[50,29],[101,112],[-29,126],[-83,97],[-96,-68],[-101,151],[-193,228],[-134,108],[-36,126],[-132,235],[17,115],[46,-18],[79,-36],[105,-18],[91,-40],[108,53],[73,102],[19,148],[-57,134],[-76,47],[-168,93],[-201,195],[-373,480],[-100,101],[-72,126],[-31,112],[0,202],[-41,130],[-86,238],[-74,137],[-72,115],[-99,139],[111,287],[87,17],[162,117],[86,115],[144,101],[102,4],[113,-58],[45,-130],[62,-155],[39,-173],[21,21],[109,127],[199,239],[199,287],[122,94],[79,130],[67,101],[-31,36],[-24,15],[-24,14],[-12,101],[-88,155],[-84,34],[-43,179],[-48,224],[-67,267],[-36,205],[46,57],[67,-10],[81,-22],[60,15],[62,-11],[48,25],[9,72],[-72,233],[-14,92],[29,76],[131,21],[141,69],[199,238],[149,168],[136,88],[69,123],[60,151],[-5,98],[-29,83],[-79,86],[-143,228],[-72,165],[12,224],[19,289],[134,350]],[[618092,607959],[1059,663],[1626,1019],[2766,1629],[1035,-116],[1105,291],[1197,816],[1213,851],[641,419],[387,12],[726,466],[2961,1968],[816,465],[773,388],[333,816],[146,827],[649,606],[1383,664],[100,101],[742,750],[197,322],[620,612],[265,262],[127,125],[738,730],[309,245],[263,58],[839,206],[330,119],[368,283],[464,520],[216,224],[263,152],[325,150],[633,153],[332,-23],[325,-164],[355,-233],[139,-128],[271,-338],[224,-256],[214,-79],[171,-8],[387,112],[275,53],[178,-39],[227,-51],[363,-186],[471,-249],[377,-91],[419,83],[315,80],[312,-135],[274,-185],[297,-63],[286,-35],[293,70],[2115,1252],[149,89],[1337,792],[888,641],[425,303],[409,443],[263,338],[317,501],[355,664],[421,1241],[51,193],[108,221],[208,117],[134,-47],[284,-186],[231,11],[689,472],[1845,1440],[557,443],[587,431],[368,170],[455,210],[374,156],[394,117],[333,174],[424,268],[379,129],[440,128],[595,47],[620,65],[362,144],[173,111],[166,227],[186,326],[62,167],[49,99],[64,62],[181,82]],[[667210,634931],[50,21],[51,21],[115,44],[255,41],[301,128],[321,111],[320,110],[294,117],[171,166],[171,166],[114,111],[596,418],[500,563],[417,381],[331,280],[200,197],[133,95],[182,16],[185,-31],[175,-26],[205,35],[137,65],[109,115],[246,352],[177,257],[293,350],[238,346],[205,366],[95,248],[191,495],[194,403],[196,299],[161,145]],[[674539,641336],[55,-228],[2535,-10443],[5407,-22284],[957,-2882],[2513,-7570],[4,-9],[2676,-7654],[46,-131],[3789,-10755]],[[852432,435888],[-375,-117],[-120,-79],[-212,-211],[-487,-215],[-495,-343],[-396,-375],[-468,-122],[-451,-262],[-707,-336],[-149,-119],[-182,-58],[-362,-246],[-177,-64],[-444,-319],[-425,-219],[-316,-97],[-391,-269],[-112,-112],[-503,-244],[-146,-123],[-264,-105],[-260,-243],[-396,-209],[-106,-97],[-339,-128],[-489,-525],[-232,-133],[-123,-4],[-552,-165],[-591,-318],[-226,-166],[-299,-334],[-130,-146],[-157,-114],[-211,-79],[-135,-144],[-138,-93],[-2,-1],[-157,-32],[-282,-120],[-183,-140],[-516,-263],[-466,-333],[-165,-66],[-18,-19],[-89,-93],[-108,-60],[-2,-1],[-433,-242],[-474,-432],[-379,-270],[-565,-208],[-247,-137],[-702,-604],[-522,-321],[-1167,-718],[-394,-171],[-739,-579],[-486,-239],[-138,-39],[-121,-102],[-157,-58],[-119,-123],[-139,-65],[-137,-132],[-256,-159],[-289,-180],[-373,-175],[-390,-266],[-255,-92],[-813,-488],[-127,-199],[-458,-296],[-169,-160],[-721,-494],[-727,-395],[-603,-402],[-296,-149],[-136,-132],[-338,-137],[-162,-110],[-211,-252],[-135,-90],[-92,-127],[-136,-97],[-294,-125],[-110,-116],[-139,-72],[-233,-238],[-154,-51],[-107,-108],[-593,-309],[-926,-837],[-382,-224],[-247,-222],[-403,-216],[-637,-461],[-290,-158],[-246,-180],[-214,-238],[-124,-97],[-143,-51],[-255,-217],[-113,-142],[-1018,-745],[-332,-296],[-380,-268],[-388,-191],[-306,-443],[-240,-170],[-312,-298],[-211,-290],[-297,-255],[-232,-302],[-290,-288],[-771,-575],[-573,-534],[-153,-89]],[[814159,410181],[-50,134],[-49,133],[-36,546],[-58,345],[-162,646],[-20,387],[-50,219],[-220,248],[-156,81],[-141,172],[-56,359],[-107,250],[-20,383],[37,178],[-196,441],[-11,24],[-269,406],[-155,504],[-458,467],[-214,177],[-83,321],[-16,480],[-247,282],[-85,70],[-84,71],[-282,118],[-149,127],[-147,529],[-101,115],[-195,17],[-44,4],[-333,774],[-126,412],[-36,253],[-14,103],[14,201],[26,362],[10,135],[-10,218],[-11,219],[36,140],[7,28],[3,28],[23,193],[-27,117],[-218,228],[-165,275],[-34,401],[-136,296],[-48,104],[-2,8],[-55,288],[-14,222],[-15,221],[1,15],[15,243],[100,547],[259,242],[87,113],[9,11],[286,537],[13,1018],[-1992,3556],[-9619,17169],[-5260,9391]],[[793109,456483],[4522,6378],[34,48],[967,1354],[7204,9610],[28,3],[7108,9913]],[[812972,483789],[99,-36],[159,-58],[321,-116],[231,-84],[2035,-737],[904,-327],[2434,-882],[3297,-1195],[3826,-1386],[173,-62],[138,-50],[169,-62],[70,-25],[380,-138],[5605,-2030],[84,-31],[509,-184],[1961,-710],[2629,-953],[1071,-388],[391,19],[89,4],[170,5],[148,-28],[134,-47],[241,-163],[232,-238],[247,-294],[170,-246],[159,-116],[6,-5],[80,-58],[572,-60],[166,-49],[11,-3],[346,-196],[171,-118],[31,-22],[349,-242],[408,-187],[325,-154],[180,-196],[207,-252],[594,-1078],[489,-876],[539,-966],[49,-86],[250,-341],[808,-956],[192,-266],[482,-710],[231,-345],[65,-98],[81,-121],[72,-108],[10,-16],[203,-315],[176,-405],[35,-81],[55,-158],[68,-187],[99,-336],[174,-429],[43,-332],[23,-145],[14,-88],[498,-865],[2,-4],[23,-41],[20,-33],[5,-9],[0,-6],[104,-864],[16,-134],[84,-658],[62,-340],[20,-183],[1,-13],[-3,-145],[-21,-140],[-65,-443],[-10,-285],[-21,-201],[21,-219],[19,-108],[37,-154],[6,-98],[-15,-144],[-3,-143],[0,-35],[0,-1],[6,-101],[40,-52],[189,-219],[9,-75],[15,-72],[22,-67],[151,-100],[15,-41],[33,-87],[44,-105],[64,-87],[76,-86],[52,-83],[29,-89],[-11,-106],[-27,-82],[-10,-29],[-3,-47],[-8,-103],[22,-100],[33,-206],[-22,-183],[-70,-106],[-23,-73],[-10,-32],[-22,-122],[5,-173],[32,-155],[51,-89],[144,-117],[133,-122],[33,-58],[2,-5],[15,-25],[11,-19],[57,-99],[36,-47],[53,-68],[187,-241],[122,-200],[110,-83],[85,-100],[37,-106],[44,-217],[85,-178],[88,-105],[24,-67],[24,-67],[41,-233],[55,-133],[77,-84],[89,-39],[99,11],[92,45],[100,67],[118,44],[92,-22],[85,-72],[62,-123],[37,-150],[33,-150],[8,-167],[-26,-144],[-15,-117],[11,-111],[24,-103],[2,-8],[12,-52],[3,-14],[13,-53],[10,-44],[2,-10],[2,-7],[35,-143],[-15,-172],[-34,-162],[-2,-10],[-48,-195],[-44,-100],[-26,-161],[-33,-333],[-67,-351],[-43,-226],[-23,-124],[-4,-7],[-48,-98],[-70,-89],[-92,-61],[-103,-23],[-120,26],[-116,58],[-68,29],[-50,21],[-47,-9],[-100,-19],[-88,-56],[-34,-47],[-1,-2],[-1,-1],[-64,-94],[-7,-10],[-56,-79],[-84,-78],[-85,-44],[-132,-23],[-314,-146],[-24,-11],[-109,-55],[-97,-38],[-120,-28],[-166,17],[-92,-55],[-61,-88],[-5,-7],[-15,-22],[-50,-75],[-58,-124],[-58,-124],[-77,-122],[-107,-78],[-125,-44],[-155,-33],[-136,-23],[-111,-33],[-88,0],[-43,-22],[-42,-22],[-48,-73],[-44,-150],[26,-178],[84,-172],[81,-178],[126,-311],[96,-378],[99,-411],[107,-378],[43,-268],[6,-117],[7,-117],[3,-49],[57,-416],[68,-317],[125,-312],[75,-149],[81,-133],[54,-168],[30,-233],[29,-295],[5,-18],[2,-6],[3,-14],[5,-17],[3,-11],[32,-125],[5,-19],[1,-1],[0,-2],[20,-73],[26,-99],[19,-72],[5,-15],[39,-132],[23,-79],[30,-145],[11,-116],[3,-34],[3,-26],[12,-141],[33,-255],[74,-251],[92,-233],[52,-222],[14,-89],[15,-89],[26,-289],[-6,-96],[-12,-193],[-56,-200],[-136,-267],[-19,-50],[-47,-128],[-30,-189],[15,-228],[63,-200],[17,-31],[78,-141],[104,-111],[79,-71],[29,-27],[9,-8],[65,-39],[13,-8],[51,-31],[155,6],[148,94],[121,56],[136,-6],[122,-18],[26,-4],[147,-56],[155,-94],[124,-109],[34,-30],[48,-78],[48,-78],[23,-75],[36,-125],[490,-1863],[37,-139]],[[859015,662546],[-464,584],[-9,12]],[[858542,663142],[-720,468],[-754,1100],[-501,1271],[-1079,1430],[-156,407],[-88,418],[-203,406],[-351,412],[-357,275],[-567,519],[-346,210],[-208,127],[-632,398]],[[852580,670583],[-189,178],[-268,342],[-161,320],[-309,467],[-316,378],[-348,224],[-766,427],[-347,165],[1685,20567],[-182,-41],[-356,-244],[-330,-377],[-424,-340],[-410,-237],[-324,-9],[-206,-86],[-320,-53],[-322,-2],[-306,48],[-205,-83],[-649,-32],[-736,-173],[-133,-131],[-145,-42],[-323,-255],[-657,-229],[-253,-211],[-270,-133],[-170,5],[-75,-151],[-305,-133],[-133,-130],[-116,-211],[-359,-323],[-169,-96],[-86,-153],[-426,-458],[-308,-390],[-184,-149],[-254,-124],[-270,-190],[-297,-271],[-246,-129],[-550,-82],[-127,-62],[-568,-28],[-424,-132],[-119,-116],[-298,-684],[-98,-365],[-206,-357],[-120,-132],[-324,-244],[-417,-376],[-354,-138],[-656,-515],[-107,-114],[-346,-155],[-467,-263],[-658,-464],[-224,-157],[-141,-26],[-142,-26],[-148,42],[-452,-57],[-609,39],[-403,-99],[-133,-87],[-120,-122],[-126,-114],[-107,-227],[-182,-218],[-145,-95],[-465,-437],[-252,-246],[-352,-522],[-189,-284],[-179,-215],[-186,-82],[-407,-163],[-341,-124],[-270,-52],[-2,0],[-288,64]],[[829910,680683],[-1414,8167],[-2533,14625],[-37,212],[-1102,6360],[-2661,15368],[683,185],[246,66],[5675,1536],[3234,875],[813,-620],[1455,-1108],[1345,-1025],[1061,-809],[62,-47],[-30,276],[-17,127],[-10,127],[5,160],[11,99],[21,93],[39,160],[37,164],[52,229],[33,132],[53,157],[104,232],[137,279],[133,247],[184,356],[148,275],[303,569],[118,228],[191,340],[96,119],[538,562],[416,426],[42,44],[102,104],[256,296],[104,150],[383,516],[122,160],[119,177],[127,142],[123,67],[157,38],[190,69],[133,73],[116,105],[88,98],[98,122],[62,124],[77,163],[46,65],[64,84],[69,105],[114,157],[146,215],[73,154],[45,151],[15,157],[-2,145],[-44,177],[-66,180],[-48,146],[-11,139],[42,195],[60,162],[83,169],[59,186],[52,119],[81,142],[85,111],[146,183],[102,186],[83,174],[81,135],[92,114],[103,135],[115,171],[71,145],[38,134],[6,128],[-16,145],[-78,324],[-14,97],[-2,84],[4,91],[24,90],[65,112],[144,180],[41,37],[27,24],[65,37],[64,31],[251,123],[60,24],[43,17],[37,6],[51,2],[29,-8],[78,-21],[106,-54],[75,-34],[83,-19],[67,8],[46,8],[55,35],[68,52],[72,83],[65,92],[50,102],[34,62],[15,36],[19,40],[23,31],[57,61],[124,85],[111,57],[80,33],[53,32],[41,34],[54,43],[48,40],[19,31],[19,30],[43,90],[79,162],[55,118],[46,77],[85,88],[42,52],[52,46],[33,44],[36,84],[63,186],[50,113],[75,104],[98,102],[403,394],[415,419],[6,17],[-1,37],[-8,58],[0,31],[1,40],[3,31],[8,73],[5,20],[2,4],[4,11],[4,8],[13,14],[12,7],[20,11],[44,26],[32,18],[31,33],[68,102],[45,66],[43,64],[2,3],[97,77],[44,43],[62,83],[73,98],[36,49],[37,49],[108,141],[20,30],[118,175],[5,6],[179,270],[179,269],[177,258],[29,45],[132,208],[41,73],[61,114],[81,136],[133,218]],[[849076,744115],[2248,1261],[7618,3561],[15336,7171],[514,240],[194,91],[45,-94],[5,-12],[6,-13],[157,-362],[101,-271],[51,-137],[95,-376],[32,-223],[25,-232],[-49,-112],[-46,-64],[-36,-47],[-2,-77],[17,-60],[57,-80],[40,-67],[27,-41],[-27,-39],[-9,-86],[-29,-3],[-17,83],[-59,35],[-38,-25],[-11,-67],[18,-72],[-26,-27],[-9,-57],[36,-118],[51,-45],[-2,-64],[-66,-31],[-27,-35],[91,-83],[46,-61],[97,-16],[19,-59],[19,-59],[64,-91],[61,-231],[21,-123],[42,-55],[83,-41],[48,-96],[73,-8],[92,-116],[76,-54],[21,-57],[2,-93],[54,-13],[-5,-76],[12,-61],[24,-34],[50,3],[51,3],[34,-70],[40,14],[-6,-68],[6,-96],[48,-13],[83,33],[34,-39],[-11,-60],[-70,-125],[53,-83],[80,0],[71,41],[49,-33],[24,-84],[-2,-111],[38,-74],[38,39],[56,40],[60,74],[70,-25],[40,-77],[15,-70],[61,29],[38,86],[51,16],[46,-77],[51,-108],[67,19],[26,86],[18,107],[55,81],[95,-60],[89,-169],[110,-131],[-32,-44],[0,-51],[47,-35],[59,12],[95,31],[137,135],[80,-26],[43,-44],[35,-7],[34,42],[-17,92],[-18,67],[1,48],[43,-3],[27,38],[13,83],[51,6],[82,-25],[2,-70],[-55,-7],[-61,-25],[15,-48],[50,-19],[51,19],[53,-48],[57,-89],[57,-19],[15,51],[6,108],[17,96],[33,60],[39,-13],[16,-60],[57,-29],[58,3],[57,0],[19,-66],[26,-58],[26,-57],[47,-35],[2,-73],[-23,-32],[-36,3],[-32,-22],[2,-48],[38,-32],[36,10],[47,-13],[6,-35],[-19,-38],[-15,-48],[38,-29],[25,13],[41,41],[29,-3],[6,-60],[-12,-71],[59,-57],[59,-22],[70,-7],[43,-4],[38,-37],[37,-38],[17,-70],[11,-113],[33,-24],[23,-38],[0,-80],[-10,-54],[-36,-42],[-23,-63],[44,12],[38,16],[21,86],[28,55],[45,38],[50,-28],[126,-230],[24,-86],[4,-61],[10,-143],[0,-214],[-8,-203],[15,-99],[40,-61],[23,-111],[4,-99],[-27,-29],[-9,-66],[33,-80],[122,-102],[-7,-73],[-52,-96],[16,-67],[17,-67],[45,-79],[26,-54],[-29,-61],[-8,-73],[34,-26],[50,-19],[41,-54],[42,-70],[48,-115],[-42,-70],[19,-92],[51,-13],[42,80],[59,41],[127,-67],[44,-111],[-10,-86],[12,-61],[45,45],[38,-45],[1,-101],[51,-236],[68,-252],[80,-178],[30,-58],[16,-87],[-31,-75],[23,-83],[51,-22],[25,83],[17,136],[27,84],[64,-26],[32,-150],[-9,-73],[-48,-83],[74,-51],[65,41],[57,-35],[72,-86],[31,-39],[32,-40],[47,-99],[23,-105],[-49,-134],[-57,-54],[-29,-45],[42,-54],[44,-51],[15,-51],[-55,-92],[-55,-70],[-44,-115],[10,-105],[47,-102],[64,4],[-5,-103],[11,-92],[52,0],[45,121],[33,-44],[-6,-125],[57,-22],[83,-32],[33,-73],[40,-112],[41,-91],[57,18],[50,-80],[13,-95],[-17,-89],[42,-118],[42,27],[26,-49],[0,-134],[19,-131],[-9,-99],[-2,-101],[15,-71],[46,-54],[51,13],[59,-22],[72,-105],[80,-121],[114,-83],[85,-121],[46,-29],[61,3],[43,13],[44,-48],[55,-207],[66,-121],[69,-57],[51,-109],[135,-54],[86,10],[47,-26],[36,-70],[10,-97],[19,-65],[48,-45],[64,-22],[73,13],[41,-35],[36,-77],[32,-111],[42,-128],[21,-47],[21,-48],[28,-96],[-21,-162],[14,-93],[-10,-95],[44,-16],[19,113],[76,18],[47,-74],[23,-67],[-4,-89],[-19,-89],[-15,-67],[25,-32],[78,76],[121,87],[54,21],[34,-37],[11,-93],[11,-101],[4,-99],[38,-74],[-34,-92],[-38,-118],[4,-121],[21,-111],[64,-45],[61,-18],[146,-198],[4,-67],[-53,-93],[-13,-79],[-17,-147],[-6,-248],[-21,-217],[21,-143],[72,-198],[36,-3],[34,-16],[-11,-80],[-21,-63],[-46,-32],[-87,13],[-106,22],[-48,-32],[76,-146],[8,-77],[-67,-137],[-18,-52],[-14,-47],[15,-51],[78,-39],[-19,-123],[25,-124],[0,-144],[26,-54],[-19,-47],[-63,-32],[-13,-54],[35,-45],[70,-41],[61,-7],[53,-13],[55,-44],[88,-113],[29,-90],[22,-36],[-23,-56],[-61,-8],[-27,-60],[31,-32],[44,11],[15,-78],[-21,-70],[-6,-67],[55,-38],[42,-102],[40,-13],[30,-57],[-2,-77],[-81,-105],[-78,-108],[-67,-99],[-30,-51],[-29,-51],[-47,-89],[-38,-45],[-66,-72],[-33,-65],[10,-130],[66,-70],[158,-278],[61,-68],[32,-71],[9,-42],[14,-108],[-52,-58],[-76,-28],[-50,-82],[-25,-41],[-97,-161],[-6,-102],[38,-82],[13,-96],[9,-45],[10,-44],[31,-80],[34,-48],[40,-79],[45,-73],[48,-83],[7,-137],[10,-160],[24,-142],[-18,-115],[-61,-115],[-10,-195],[-64,-47],[-31,-78],[-13,-75],[-28,-24],[-29,-30],[2,-61],[38,-54],[49,-57],[50,31],[62,20],[65,-70],[152,-36],[19,-63],[-51,-67],[-99,-42],[-59,-101],[-17,-118],[40,-102],[17,-77],[-69,-92],[-13,-131],[-47,-76],[-80,-35],[-65,-19],[-81,-23],[-6,-92],[40,-83],[46,-59],[26,-110],[-32,-92],[-40,10],[-54,-4],[10,-66],[51,-48],[9,-49],[16,-79],[25,-60],[49,-43],[55,-91],[12,-76],[-14,-61],[-51,-9],[-28,-51],[11,-55],[60,-40],[84,-52],[127,-238],[157,-104],[113,-75],[61,19],[79,22],[75,-25],[55,-105],[15,-128],[50,-121],[62,-44],[80,-51],[48,-23],[106,26],[70,12],[0,83],[52,39],[51,19],[40,35],[30,86],[67,19],[66,-26],[21,-60],[61,-51],[63,9],[39,74],[35,35],[34,-64],[63,-63],[55,-48],[22,-71],[4,-92],[40,-32],[36,35],[46,48],[38,3],[7,-64],[-17,-54],[-64,-28],[-12,-48],[37,-38],[117,16],[36,-48],[61,-32],[38,6],[40,-16],[17,-66],[-25,-80],[71,-57],[42,28],[39,-70],[44,-60],[-2,-92],[15,-71],[40,-22],[48,16],[28,5],[36,-2],[27,-57],[-8,-70],[21,-70],[45,1],[79,5],[79,-45],[25,-83],[14,-80],[66,4],[36,-39],[0,-98],[17,-80],[42,-88],[36,-68],[0,-108],[53,-67],[50,-3],[32,-57],[70,-32],[40,70],[21,70],[38,60],[44,-54],[53,-60],[55,-26],[-21,-86],[27,-41],[62,-13],[-5,-83],[-33,-70],[19,-79],[-21,-39],[-36,-67],[48,-38],[47,-12],[46,-13],[0,-61],[-4,-86],[76,-35],[89,-60],[45,-21],[31,-68],[69,-74],[-4,-67],[8,-105],[51,-83],[40,-19],[41,-8],[31,-43],[2,-54],[-6,-57],[53,-49],[31,-75],[-2,-109],[-17,-136],[17,-131],[-8,-105],[25,-74],[2,-35],[-8,-57],[-28,-22],[-19,-42],[15,-47],[36,-61],[36,32],[29,29],[28,-48],[9,-78],[-26,-40],[-17,-67],[32,-64],[29,-38],[55,-60],[47,-32],[40,67],[32,20],[44,-20],[59,-4],[49,55],[27,89],[34,63],[31,-31],[13,-67],[19,-74],[40,-95],[42,-35],[79,3],[103,83],[0,48],[-19,60],[28,42],[33,3],[19,-48],[28,-80],[57,45],[57,48],[55,3],[37,-11],[34,-34],[47,-9],[34,35],[49,14],[44,-30],[43,-43],[18,-37],[8,-76],[7,-89],[25,-93],[46,-44],[28,-29],[-6,-67],[-47,-76],[0,-105],[-10,-137],[-13,-71],[-53,-35],[-25,-73],[-9,-115],[-4,-111],[-25,-73],[-40,-45],[-3,-54],[19,-57],[7,-23],[67,-22],[57,-22],[32,-134],[63,-150],[57,-143],[41,-162],[31,-83],[43,-71],[17,-66],[-5,-99],[25,-57],[49,-10],[51,42],[50,-13],[51,-7],[40,80],[61,-29],[45,39],[106,-102],[58,-45],[-8,-83],[-4,-76],[36,-48],[50,-35],[32,-29],[19,-54],[42,-44],[17,-51],[-19,-58],[-17,-92],[36,-105],[33,-40],[37,-65],[17,-128],[-2,-57],[-32,-51],[6,-51],[11,-38],[40,-112],[76,-83],[68,-60],[69,-17],[74,-37],[82,15],[55,-12],[53,45],[34,19],[44,-4],[24,-70],[4,-66],[25,-77],[59,-48],[66,-28],[12,47],[24,29],[31,-19],[2,-57],[34,-58],[49,-35],[19,-41],[-13,-45],[-19,-67],[-19,-67],[-2,-108],[9,-90],[-39,-130],[-34,-52],[-46,-65],[-13,-102],[13,-128],[44,-153],[41,-108],[819,-1124],[768,-1144],[174,-261],[78,-131],[38,-86],[36,-86],[21,-76],[12,-99],[3,-127],[8,-99],[23,-156],[30,-159],[21,-163],[21,-150],[11,-110],[19,-109],[19,-67],[27,-70],[49,-77],[76,-114],[48,-141],[44,-117],[47,-166],[13,-150],[-17,-400],[-73,-2965],[-20,-827],[23,-184],[59,-281],[91,-283],[35,-102],[30,-86],[66,-177],[640,-1595],[184,-374],[780,-1854],[294,-729],[59,-163],[52,-192],[23,-168],[55,-665],[32,-455],[7,-113],[1,-7],[28,-191],[35,-188],[54,-143],[93,-83],[57,-99],[40,-111],[24,-121],[46,-166],[87,-232],[129,-383],[92,-331],[85,-344],[162,-468],[32,-156],[17,-147],[-13,-149],[-40,-201],[-228,-816],[-152,-589],[-566,-2140],[-194,-749],[-44,-146],[-57,-93],[-66,-54],[-122,-45],[-1069,-242],[-126,-67],[-119,-127],[-131,-127],[-116,-51],[-95,-19],[-141,-35],[-79,-25],[-1418,-523],[-55,-51],[-51,-67],[-42,-105],[-43,-205],[-41,-133],[-41,-134],[-52,-89],[-241,-296],[-617,-500],[-200,-153],[-195,-159],[-175,-163],[-139,-146],[-57,-96],[-53,-143],[-17,-163],[-6,-411],[-30,-194],[-63,-140],[-139,-293],[-133,-239],[-182,-315],[-433,-880],[-277,-481],[-168,-299],[-163,-191],[-201,-233],[-90,-131],[-71,-127],[-217,-665],[-48,-89],[-74,-131],[-78,-86],[-86,-89],[-30,-102],[-51,-73],[-78,-99],[-146,-137],[-99,-83],[-118,-76],[-72,-45],[-61,-41],[-68,-23],[-118,19],[-78,26],[-55,29],[-53,-16],[-38,-45],[-48,-84],[-24,-116],[15,-324],[4,-255],[74,-1717],[23,-822],[-7,-168],[-12,-154],[-15,-121],[-35,-130],[-53,-142],[-59,-115],[-273,-724],[-36,-106],[-25,-90],[-10,-113],[0,-88],[12,-98],[28,-84],[49,-94],[98,-152],[31,-57],[27,-58],[7,-78],[-16,-104],[-175,-1102],[-22,-216],[-20,-150],[-32,-136],[-31,-109],[-32,-82],[-118,-167],[-32,-81],[-42,-64],[-43,-104],[-67,-88],[-192,-357],[-92,-173],[-34,-63],[-9,-42],[-25,-54],[-37,-71],[-97,-122],[-81,-79],[-93,-65],[-72,-50],[-48,-58],[-33,-74],[-44,-155],[-42,-96],[-46,-80],[-73,-99],[-85,-114],[-105,-171],[-76,-97],[-69,-54],[-68,-23],[-88,-8],[-65,0],[-107,27],[-105,21],[-124,29],[-77,11],[-86,-30],[-202,-62],[-95,-34],[-105,-79],[-152,-113],[-52,-12],[-74,7],[-128,32],[-51,4],[-50,-13],[-108,-48],[-651,-263],[-143,-63],[-46,-21],[-200,-77],[-99,-16],[-98,-5],[-112,0],[-569,21],[-175,-9],[-89,-20],[-70,-25],[-55,-28],[-44,-42],[-39,-64],[-104,-220],[-330,-567],[-35,-58],[-41,-63],[-31,-72],[-13,-98],[-1,-167],[-13,-129],[-6,-124],[19,-121],[25,-88],[8,-67],[-231,-319],[-54,-74],[-11370,-15720],[-4459,-6164],[-205,238],[-447,993],[-183,982],[-318,1315],[-605,979],[-413,841],[-625,885],[-370,398],[-369,397],[-793,1244],[-378,920],[-85,885],[-152,704],[-350,774],[-243,536]],[[605257,560532],[-301,-268],[-58,-1218],[-113,-287],[-1555,-228],[-1067,1020],[-801,427],[-357,1064],[-207,-5],[-126,-736],[-411,-595],[-1061,-600],[-233,-818],[-835,-764],[-69,-311],[251,-1171],[50,-1001],[-17,-1112],[-294,-1213],[-250,-573],[-290,-247],[-377,-77],[-588,751],[-511,-200],[-81,-295],[127,-985],[434,-660],[65,-325],[-381,-565],[-79,-373],[34,-1853],[-392,-1513],[-493,-676],[-7,-413],[640,-991],[-802,-328],[-389,-601],[-474,848],[-296,235],[-279,-77],[-205,-837],[8,-705],[-226,-503],[-44,-27],[-306,-187],[21,-266],[754,-877],[65,-411],[-121,-1154],[-366,-533],[27,-223],[1295,-57],[190,-227],[-369,-696],[28,-1427],[-116,-1042],[176,-443],[693,-843],[626,-1921],[-112,-605],[-928,-2337],[41,-62],[974,-347],[114,-187],[-469,-595],[8,-215],[301,-436],[4,-62],[37,-520],[-195,-418],[-298,-21],[-657,-273],[-284,-568],[-586,-161],[-332,205],[-163,506],[-735,285],[-148,-217],[17,-531],[83,-459],[-51,-617],[-233,-123],[-267,195],[-141,12],[-240,-362],[-178,-775],[-473,-780],[-912,-580],[-191,-317],[-70,-571],[-213,-319],[-84,-505],[-8,-1644]],[[589405,518015],[-11376,7159],[-5159,3191],[-153,95],[-39,24],[-16,10],[-96,59],[-13314,8571]],[[559252,537124],[-32,61],[-12,126],[-3,54],[-26,30],[-49,25],[-42,31],[-22,51],[-33,27],[-17,81],[6,56],[25,24],[48,38],[41,104],[57,130],[59,79],[36,83],[104,134],[74,122],[42,94],[83,128],[42,4],[93,-34],[125,-41],[109,-24],[51,26],[52,102],[42,94],[14,108],[-29,112],[-36,87],[-18,88],[-25,161],[-33,159],[12,106],[-95,57],[-50,35],[-84,-19],[-83,-38],[-94,8],[-50,-13],[-41,-63],[-84,19],[-75,8],[-74,73],[-85,44],[-99,102],[-32,94],[10,227],[-30,158],[55,305],[-28,161],[-107,177],[-146,296],[-249,409],[-17,271],[40,283],[320,475],[225,724],[22,754],[10,31],[15,44],[116,339],[453,111],[325,171],[465,161],[544,-202],[200,-181],[438,-51],[197,328],[127,817],[227,368],[408,356],[588,2135],[219,610],[275,452],[-41,549],[-257,555],[14,809],[751,927],[147,757],[-112,1137],[77,643],[772,793],[104,466],[163,372],[445,312],[219,621],[247,1108],[66,526],[28,222],[76,841],[7,928],[-247,951],[-309,759],[-316,769],[-270,524],[-325,123],[-320,122],[7,95],[85,1025],[190,409],[332,352],[198,256],[275,217],[379,218],[209,262],[105,538],[-86,518],[-86,380],[-138,190],[-96,208],[-86,214],[-43,231],[-98,222],[-184,167],[-203,371],[-178,602],[-80,563],[-30,215],[-4,21],[-98,543],[-4,21],[-12,121],[-49,469],[-22,239],[-41,456]],[[564907,573523],[43,23],[27,14],[1,1],[22,12],[41,22],[866,470],[85,47],[197,107],[194,105],[310,168],[198,107],[2,1],[7,3],[420,229],[3,2],[26,14],[1,0],[0,1],[153,83],[625,339],[571,310],[770,418],[284,155],[1,0],[1,0],[1533,345],[859,351],[1398,1179],[1297,1028],[119,94],[135,173],[558,267],[287,62],[786,228],[78,2],[366,199],[701,210],[890,369],[96,91],[418,394],[515,486],[16,16],[434,428],[148,171],[40,27],[40,28],[72,43],[134,69],[86,51],[66,46],[59,48],[50,38],[40,26],[73,44],[18,53],[-12,73],[-8,39],[-10,85],[-6,36],[1,109],[0,129],[-3,45],[0,70],[1,79],[3,96],[-11,134],[-12,130],[-3,174],[-6,85],[-13,46],[-17,44],[-21,32],[-29,6],[-20,45],[-26,51],[-3,45],[0,1],[9,35],[37,41],[81,55],[76,52],[123,98],[93,70],[87,38],[62,22],[50,1],[1,-1],[1,-1],[44,-37],[58,-29],[77,12],[73,27],[100,48],[105,30],[75,13],[101,40],[70,42],[96,82],[17,10],[184,113],[29,3],[29,11],[24,15],[120,77],[52,23],[46,32],[123,73],[116,66],[119,79],[83,64],[64,28],[66,35],[66,49],[62,37],[75,41],[78,39],[85,50],[118,71],[108,65],[60,46],[31,64],[34,80],[48,55],[126,101],[122,94],[56,54],[42,70],[86,65],[76,36],[79,68],[76,40],[84,56],[77,38],[95,34],[3,2],[114,75],[130,87],[2,0],[75,15],[51,-56],[54,-66],[2,0],[2,0],[59,-3],[102,44],[119,62],[133,58],[6,4],[112,68],[47,28],[92,60],[107,71],[116,76],[159,105],[164,108],[224,174],[223,207],[3,2],[17,14],[214,167],[2,1],[2,1],[3,2],[413,238],[142,82],[98,73],[201,152],[5,4],[1079,678],[1083,680],[2030,1274],[745,469],[52,32],[1,1],[716,543],[284,216],[35,26],[42,32],[1149,680],[125,72],[495,288],[1464,851],[1464,851],[2473,1613],[1376,897],[1907,1218],[2442,1422],[1148,720],[1073,756],[1508,969],[5360,3894],[902,565],[415,261],[291,183],[190,119]],[[682756,383826],[54,-78],[106,-151],[174,-251],[75,-96],[20,-179],[-31,-35],[-198,-233],[-332,-51],[-326,-113],[-557,-51],[-385,-176],[-337,-196],[-375,-27],[-381,-143],[-90,-150],[-65,-212],[8,-189],[111,-433],[-27,-187],[-140,-360],[-50,-340],[-58,-1341],[28,-188],[65,-196],[91,-164],[120,-54],[185,67],[153,126],[136,186],[228,403],[118,92],[156,-1],[139,-53],[242,-281],[113,-203],[106,-685],[326,-1030],[22,-254],[-43,-200],[-178,-356],[-375,-478],[-142,-121],[-260,-120],[-297,-80],[-297,-26],[-106,-151],[-48,-193],[-2,-365],[102,-170],[300,-263],[143,-51],[177,-9],[121,-120],[76,-254],[6,-194],[-141,-183],[-345,-201],[-281,-239],[-121,-143],[-100,-199],[-177,-872],[-127,-106],[-84,-135],[-28,-260],[-64,-225],[-225,-301],[-255,-461],[-156,-350],[-62,-251],[70,-416],[78,-145],[148,-158],[288,-196],[254,-35],[269,42],[454,343],[141,37],[156,-162],[21,-246],[-28,-806],[33,-188],[104,-125],[144,-104],[737,-54],[197,-67],[138,-103],[103,-126],[268,-535],[40,-225],[-167,-335],[-144,-395],[30,-523],[-36,-232],[-70,-254],[-197,-492],[-22,-183],[211,-837],[-42,-616],[374,-615],[99,-202],[138,-416],[84,-155],[114,-132],[272,-312],[361,-197],[177,-29],[195,35],[497,3],[574,-157],[122,-61],[350,-308],[232,-295],[148,-120],[476,-253],[396,-69],[415,96],[658,34],[487,145],[122,122],[294,892],[144,201],[176,145],[91,118],[459,847],[261,151],[377,85],[325,312],[190,495],[105,415],[98,188],[115,125],[284,-68],[367,-398],[175,-339],[416,-607],[446,-340],[558,-524],[142,-93],[127,-21],[78,248],[-84,731],[-1,660],[135,76],[324,-242],[177,-22],[199,122],[275,268],[374,218],[425,326],[219,82],[159,-14],[243,-85],[113,-166],[185,-894],[77,-262],[267,-558],[164,-177],[453,-70],[154,-99],[128,-21],[302,214],[102,613],[127,126],[153,38],[291,-24],[163,104],[114,363],[84,478],[346,840],[35,245],[-13,227],[-101,427],[14,274],[108,152],[275,84],[121,106],[41,226],[-50,232],[-111,267],[-59,238],[9,319],[177,146],[302,-26],[565,376],[165,38],[847,-218],[545,-203],[175,12],[135,62],[127,131],[48,196],[30,703],[126,600],[64,619],[162,366],[156,133],[220,17],[125,-53],[334,-3],[268,128],[240,215],[99,143],[155,433],[51,218],[176,131],[155,-120],[231,-248],[201,-144],[700,-201],[332,-35],[509,18],[345,-215],[354,-347],[134,-47],[522,20],[192,-21],[275,-92],[326,281],[119,49],[136,3],[48,-182],[-1,-247],[-84,-357],[42,-169],[115,-94],[127,-17],[56,-157],[51,-363],[-107,-354],[-178,-358],[-126,-337],[-185,-279],[-168,-350],[8,-224],[75,-156],[249,-221],[119,-345],[77,-147],[44,-168],[5,-266],[-25,-193],[-171,-525],[-183,-734],[-65,-638],[-49,-193],[-141,-299],[-120,-464],[-49,-620],[62,-391],[-6,-189],[-529,-836],[-65,-190],[-184,-848],[-256,-515],[-70,-193],[-19,-189],[23,-37],[61,-98],[494,-185],[278,-208],[153,-48],[135,50],[121,87],[191,-3],[325,-142],[375,-246],[890,-320],[408,-80],[566,126],[325,-107],[155,-18],[142,39],[489,296],[414,117],[220,322],[240,91],[291,503],[339,311],[91,145],[76,202],[44,211],[100,203],[587,623],[127,65],[148,19],[317,-84],[241,-134],[203,-194],[180,-170],[120,-192],[183,-475],[289,-500],[121,-79],[141,36],[267,196],[198,94],[425,19],[254,116],[85,159],[35,206],[-78,446],[-176,305],[-55,192],[-1,566],[-84,434],[-135,406],[-65,480],[0,300],[79,446],[239,535]],[[718536,363037],[525,-239],[197,-204],[360,-47],[207,-232],[281,-14],[276,187],[98,107],[198,87],[176,12],[523,-138],[1138,6],[347,-50],[92,-131],[206,-591],[331,-76],[84,-49],[242,-363],[219,-50],[147,70],[191,260],[126,34],[469,-173],[141,-207],[479,-183],[114,-174],[8,-221],[-144,-1056],[134,-15],[245,-24],[170,-8],[117,0],[117,30],[105,57],[101,103],[97,131],[138,226],[97,152],[98,95],[46,29],[47,29],[123,38],[164,16],[278,-11],[125,22],[121,38],[147,82],[378,280],[119,87],[95,33],[101,17],[89,2],[141,-30],[118,-36],[119,-36],[105,-18],[136,-3],[201,66],[354,188],[966,541],[404,224],[25,-177],[-222,-92],[-100,-46],[-87,-54],[-64,-43],[-70,-54],[-64,-49],[-88,-90],[-68,-100],[-58,-124],[-62,-155],[-13,-31],[-82,-248],[-81,-234],[-23,-199],[4,-174],[-15,-118],[-37,-220],[-31,-421],[-34,-426],[-7,-126],[48,-302],[35,-411],[-19,-163],[-101,-415],[-31,-102],[-100,-49],[-89,-53],[-68,-82],[-61,-82],[-30,-62],[-4,-106],[-6,-170],[-5,-171],[28,-460],[11,-272],[57,-182],[80,-108],[187,-260],[37,-79],[37,-78],[33,-114],[32,-111],[29,-46],[46,-86],[59,-92],[31,-41],[51,-62],[32,-41],[21,-81],[21,-87],[35,-151],[77,-319],[49,-232],[15,-92],[-1,-73],[-5,-66],[-16,-105],[-64,-312],[-9,-60],[-10,-41],[-23,-57],[-37,-82],[-61,-147],[-41,-95],[-61,-61],[-130,-83],[-58,-28],[-66,-4],[-43,12],[-267,89],[-75,8],[-29,-8],[-29,-7],[-32,-46],[-88,-158],[-36,-74],[-37,-90],[-42,-57],[-99,-89],[-109,-63],[-192,-77],[-342,-171],[-89,-65],[-61,-78],[-114,-141],[-102,-153],[-55,-65],[-51,-82],[-28,-81],[-24,-103],[-37,-58],[-30,-30],[-61,-57],[-16,-36],[-27,-86],[-19,-87],[-2,-43],[-3,-44],[6,-47],[12,-64],[10,-66],[3,-76],[1,-110],[0,-103],[9,-110],[15,-84],[38,-99],[67,-169],[55,-163],[32,-46],[34,-29],[36,-44],[21,-58],[13,-84],[8,-90],[-13,-97],[-18,-62],[-58,-211],[-16,-79],[-22,-62],[-39,-76],[-30,-78],[-35,-115],[2,-71],[36,-156],[27,-77],[13,-81],[19,-115],[14,-49],[19,-26],[108,-63],[25,-29],[19,-43],[10,-43],[1,-36],[2,-36],[-4,-110],[-4,-100],[10,-51],[24,-71],[22,-69],[7,-43],[1,-62],[1,-163],[-9,-151],[-17,-144],[-22,-99],[-35,-109],[-118,-282],[-87,-307],[-2,-22],[60,-28],[60,-27],[100,-56],[70,-69],[93,-112],[116,-115],[74,-66],[215,-180],[129,-112],[61,-76],[44,-65],[37,-76],[43,-122],[57,-157],[98,-191],[61,-125],[50,-154],[174,-638],[48,-118],[57,-98],[113,-112],[457,-432],[44,-64],[22,-43],[4,-49],[-122,-418],[-54,-322],[-53,-220],[-30,-141],[0,-76],[13,-52],[38,-43],[45,-21],[49,-35],[20,-37],[16,-61],[38,-76],[107,-128],[95,-145],[35,-64],[25,-65],[10,-52],[16,-44],[24,-39],[94,-95],[136,-245],[157,-322],[86,-169],[66,-91],[46,-49],[75,-59],[49,-35],[50,-10],[71,17],[166,59],[44,38],[45,64],[49,92],[40,100],[1247,-1203],[86,-83],[304,-300],[696,-687],[461,-688],[90,-134],[375,-556],[420,-622],[447,-662],[0,-213],[2,-183],[5,-54],[9,-55],[17,-44],[237,-317],[186,-257],[114,-159],[195,-260],[119,-125],[65,-51],[95,-74],[94,-96],[58,-87],[22,-92],[3,-62],[-44,-280],[-1,-4],[43,-135],[97,-108],[32,-46],[21,-40],[22,-40],[14,-49],[3,-9],[16,-58],[51,-235],[14,-61],[46,-221],[20,-175],[-1,-215],[-1,-16],[-8,-121],[-17,-180],[-16,-77],[-11,-49],[-12,-45],[-43,-89],[-59,-132],[-44,-94],[-27,-77],[-27,-113],[-29,-97],[-11,-61],[-4,-59],[4,-50],[5,-50],[10,-40],[26,-99],[33,-99],[39,-111],[38,-84],[45,-76],[77,-124],[39,-109],[9,-43],[9,-43],[19,-110],[13,-103],[-1,-94],[-9,-93],[-9,-66],[2,-75],[7,-43],[2,-14],[27,-114],[32,-117],[20,-71],[23,-55],[18,-31],[24,-35],[33,-42],[35,-41],[29,-65],[24,-58],[44,-165],[85,-290],[45,-139],[18,-73],[37,-108],[70,-135],[35,-128],[37,-166],[45,-196],[27,-165],[11,-87],[3,-152],[24,-235],[10,-125],[7,-110],[-12,-76],[-22,-70],[-10,-31],[-40,-95],[-11,-20],[-43,-74],[-77,-98],[-134,-157],[-58,-64],[-3,-4],[-60,-68],[-198,-241],[-20,-25],[-2,-3],[-161,-203],[-28,-47],[-20,-60],[-14,-59],[-4,-69],[7,-34],[7,-35],[24,-88],[44,-122],[14,-96],[22,-179],[15,-52],[23,-84],[-3,-90],[-23,-144],[-18,-68],[-59,-103],[-13,-69],[-7,-114],[-1,-82],[0,-15],[0,-111],[12,-179],[23,-119],[75,-255],[30,-111],[81,-298],[37,-138],[32,-118],[48,-126],[63,-144],[20,-46],[19,-44],[103,-234],[17,-170],[14,-195],[31,-214],[35,-209],[41,-408],[15,-189],[5,-59],[1,-5],[2,-25],[9,-106],[17,-257],[51,-732],[59,-821],[14,-181],[20,-347],[3,-95],[8,-289],[3,-135],[8,-98],[3,-9],[39,-138],[25,-56],[63,-140],[279,-479],[81,-139],[20,-43],[9,-59],[63,-400],[13,-156],[4,-79],[13,-293],[46,-367],[2,-11],[24,-171],[59,-307],[5,-89],[1,-16],[5,-88],[-10,-103],[-1,-11],[-13,-150],[-4,-166],[-1,-18],[13,-232],[30,-197],[57,-249],[33,-101],[9,-16],[37,-65],[74,-90],[70,-97],[47,-83],[30,-92],[13,-85],[2,-174],[1,-418],[0,-22],[10,-156],[23,-152],[3,-17],[24,-155],[47,-299],[10,-64],[628,-314]],[[740315,309309],[-518,-1986],[-240,-1088],[-159,-723],[-81,-366],[-15,-78],[-366,-1934],[-264,-1398],[-117,-621],[-136,-719],[-66,-498],[-134,-1015],[-22,-164],[-86,-657],[-59,-442],[-19,-251],[-24,-314],[-70,-356],[-79,-526],[-80,-419],[-21,-108],[-34,-176],[-128,-28],[-94,-74],[-105,-6],[-118,-51],[-129,71],[-154,-68],[-113,274]],[[687492,312174],[-152,170],[-117,69],[-125,50],[-43,33],[-5,80],[7,35],[3,19],[29,50],[-7,39],[50,59],[21,72],[53,65],[19,94],[-33,76],[-39,33],[-74,32],[-79,-7],[-96,36],[-91,54],[-84,87],[-72,130],[-69,159],[-15,210],[20,217],[43,227],[14,141],[-36,120],[-33,91],[-111,25],[-80,64],[-102,-6],[-127,89],[-63,224],[-80,89],[-111,32],[-165,-25],[-186,-103],[-239,-44],[-341,-81],[-165,2],[-165,2],[-85,77],[-4,108],[32,45],[33,45],[-18,44],[-119,-32],[-27,60],[27,75],[26,76],[67,26],[-4,76],[-127,71],[-85,76],[-101,96],[-178,6],[-118,147],[-72,-51],[-64,102],[-114,45],[-73,-64],[-143,160],[-59,-13],[-115,-6],[-114,134],[-68,76],[17,134],[34,39],[34,38],[59,179],[13,223],[38,166],[-38,160],[-62,56],[-2,104],[-93,-32],[-42,51],[-72,32],[13,76],[-85,90],[-110,13],[-86,8],[-79,55],[-47,-32],[-80,-6],[-38,64],[-51,-19],[-51,76],[-59,-51],[-51,-51],[-39,56],[-75,27],[-80,13],[-5,70],[-12,102],[42,74],[-21,54],[-43,26],[-46,-32],[-38,-90],[-76,-70],[-102,26],[-89,19],[-37,34],[-43,81],[-132,19],[-325,306],[-80,149],[-57,38],[-91,59],[-259,80],[-132,-25],[-165,-58],[-98,36],[-38,14],[-96,-24],[-115,-51],[-161,-90],[-135,-83],[-123,-51],[-237,-19],[-93,57],[-250,-25],[-423,-102],[-616,-422],[-41,-189],[-529,-300],[-587,111],[-142,233],[-212,63],[-170,-114],[-345,-379],[-290,-45],[-156,27],[-1011,-848],[-142,-27],[-120,-107],[-80,-141],[-80,-142],[-321,-217],[-197,-55],[-1056,144],[-81,7],[-93,19],[-63,-32],[-81,-26],[-148,-63],[-114,-71],[-123,-96],[-161,-70],[-157,26],[-139,115],[-74,144],[-74,124],[-85,243],[-44,218],[-113,235],[-29,128],[-17,172],[-64,434],[-80,396],[-57,150],[-58,201],[-4,154],[22,255],[-34,134],[-64,134],[-25,147],[-60,268],[-165,505],[22,191],[63,275],[-38,160],[-42,86],[0,54],[-47,95],[-46,36],[-125,119],[-91,88],[-32,42],[-9,83],[-17,77],[-46,38],[-46,24],[-32,7],[-45,50],[-28,36],[-26,29],[-28,4],[-30,-4],[-32,-29],[-65,-57],[-54,-63],[-17,-79],[-56,-58],[-69,32],[-52,55],[-40,92],[-42,61],[-48,3],[-42,-28],[-58,11],[-24,65],[2,42],[85,45],[33,37],[-2,70],[-50,68],[-10,56],[-18,100],[-16,88],[-36,58],[-70,47],[-24,92],[14,60],[29,76],[46,86],[-7,92],[3,66],[14,123],[-30,36],[-97,-15],[-7,42],[25,118],[-11,52],[-62,24],[-106,18],[-85,24],[-10,47],[-10,47],[37,60],[9,68],[-19,30],[-72,15],[-76,63],[-42,-24],[-43,-76],[-51,5],[-54,79],[-40,89],[4,70],[43,31],[59,-18],[55,-19],[50,26],[-25,108],[-47,38],[-80,-31],[-80,0],[-34,-45],[-41,-50],[-39,58],[-39,56],[-46,172],[-55,90],[-39,153],[-29,134],[-13,102],[-17,64],[-51,51],[-55,51],[-25,70],[-4,77],[-43,102],[-38,141],[-42,140],[-25,141],[25,121],[13,191],[0,128],[-38,262],[-77,166],[-118,107],[-55,97],[8,102],[43,77],[-26,141],[-17,108],[21,109],[115,89],[55,19],[76,-38],[135,38],[53,85],[41,177],[4,83],[-9,128],[-21,127],[4,192],[22,128],[-1,119],[-71,174],[33,384],[39,178],[-9,147],[34,77],[59,102],[51,83],[0,83],[-51,96],[-21,96],[25,115],[43,70],[68,102],[-17,153],[59,185],[127,45],[42,51],[-68,205],[17,153],[-50,191],[12,115],[51,58],[59,51],[83,177],[32,123],[17,128],[-13,115],[-51,185],[-30,90],[-33,101],[-26,141],[-25,166],[0,166],[-30,108],[-76,154],[-16,104],[-35,100],[-21,45],[21,146],[-21,132],[-12,47],[-31,2],[-33,40],[-54,-24],[-45,15],[-40,62],[-35,44],[-2,27],[16,7],[57,30],[0,39],[-10,52],[6,74],[24,27],[48,16],[48,32],[35,60],[-7,71],[24,55],[11,45],[-17,62],[-26,41],[-39,17],[-31,-19],[-11,-48],[-29,-89],[-14,-14],[-20,18],[-8,112],[11,72],[-5,52],[-18,19],[-21,-37],[-32,-32],[-19,18],[2,28],[3,89],[-16,45],[-26,0],[-13,-34],[-10,-109],[-18,-12],[-16,26],[-4,54],[-6,103],[-19,14],[-27,2],[-33,-32],[-38,-25],[-28,16],[-27,21],[-14,38],[-14,-2],[-23,-16],[-33,3],[-7,34],[-19,11],[-14,-27],[-9,7],[-8,38],[-26,26],[-69,-9],[-50,16],[-77,103],[-44,34],[-58,7],[-66,57],[-20,6],[-15,5],[-32,9],[-3,1],[-43,57],[-25,114],[25,62],[13,50],[-53,42],[-28,6],[-22,-25],[-10,-77],[-24,-1],[-43,-39],[-52,-2],[-18,45],[13,93],[-13,61],[-41,35],[-41,5],[-54,-14],[-26,22],[2,24],[10,29],[28,28],[39,18],[34,-4],[10,29],[-24,53],[-5,52],[20,72],[26,16],[-5,36],[-27,11],[-27,14],[-61,57],[5,49],[17,-1],[32,17],[24,29],[7,55],[-14,69],[-72,32],[-25,14],[-11,25],[6,41],[19,44],[26,27],[44,21],[41,0],[2,36],[-28,41],[0,55],[-22,1],[-19,2],[-85,188],[-29,77],[30,284],[51,37],[33,98],[-29,97],[-31,75],[43,25],[26,26],[24,91],[-6,41],[-24,25],[-30,12],[-59,-18],[-33,2],[-31,34],[-5,117],[-10,135],[-18,41],[-32,23],[-25,-5],[-20,-20],[-8,-66],[19,-97],[26,-172],[-3,-64],[-18,-36],[-35,-27],[-36,22],[-21,39],[-87,332],[-16,154],[-20,91],[10,66],[6,159],[-14,142],[27,52],[24,73],[-11,37],[-28,56],[1,36],[20,68],[21,21],[4,39],[14,23],[54,25],[36,20],[23,48],[8,28],[-7,16],[-22,-2],[-42,-51],[-43,0],[-21,30],[-7,108],[6,66],[-1,55],[5,92],[-16,13],[-32,39],[-5,55],[33,89],[30,17],[23,20],[4,30],[-4,50],[-7,32],[-21,2],[-14,-25],[-30,-36],[-28,20],[-8,47],[-6,20],[-20,0],[-12,36],[8,28],[36,30],[42,22],[35,39],[20,0],[20,-16],[17,0],[20,32],[-15,42],[-19,75],[-18,3],[-20,-17],[-36,-87],[-25,-22],[-41,15],[-10,33],[21,94],[10,45],[-14,44],[-28,7],[-23,-12],[-82,-47],[-32,-29],[-21,5],[-4,21],[5,59],[12,48],[42,23],[11,46],[-32,60],[-14,34],[-32,9],[-21,-7],[-10,-21],[15,-40],[17,-10],[13,-37],[-7,-29],[-19,-14],[-23,-2],[-29,20],[-28,16],[-53,12],[-11,14],[-5,22],[39,17],[30,43],[1,26],[-23,21],[-39,13],[-9,32],[25,39],[3,48],[-15,34],[-20,36],[-29,0],[-46,-45],[-16,-62],[-26,-35],[-18,7],[-23,53],[-18,167],[-20,60],[-23,6],[-18,-24],[-14,-40],[-11,-86],[-12,-67],[-24,-27],[-21,-49],[-26,-9],[-22,25],[-9,53],[15,144],[16,42],[14,38],[-6,42],[-22,16],[-28,-7],[-21,-21],[-46,-15],[-28,-30],[5,-26],[39,-22],[7,-37],[-7,-30],[-37,-4],[-23,22],[-36,17],[-53,2],[-81,71],[-38,43],[-23,-4],[-24,-32],[-22,-53],[-35,-62],[-23,0],[-8,-27],[-21,7],[-95,72],[-28,51],[8,57],[30,48],[30,16],[-9,48],[-20,24],[-31,8],[-65,12],[-23,27],[-61,39],[-49,-4],[-49,23],[-25,34],[1,14],[45,5],[33,4],[38,23],[13,71],[16,55],[-6,20],[-29,14],[-31,-16],[-25,-39],[-32,0],[-35,5],[-5,36],[15,33],[38,41],[38,36],[-4,128],[3,69],[53,43],[24,56],[46,7],[60,-16],[54,47],[35,60],[31,20],[4,39],[-77,104],[-23,-7],[-11,-32],[-20,-48],[-45,-1],[-58,14],[-10,32],[14,37],[-23,11],[-46,-2],[-42,-11],[-21,119],[38,34],[20,48],[-10,25],[-20,5],[-26,-11],[-31,-3],[-9,108],[-17,39],[-30,7],[-13,-25],[16,-37],[-25,-44],[11,-45],[-25,-21],[-36,2],[-29,8],[-12,33],[3,46],[-14,39],[-18,67],[4,26],[21,6],[67,9],[19,59],[13,35],[-13,23],[-49,32],[-10,36],[10,30],[-35,91],[-26,14],[-17,-25],[-12,-39],[-7,-101],[-21,-34],[-39,-23],[-41,-27],[-36,-37],[-50,-23],[-27,19],[-14,57],[-23,39],[-16,0],[-32,-32],[-54,-5],[-28,25],[-3,30],[24,50],[12,39],[-19,28],[-24,7],[-17,-17],[-16,-22],[-41,-49],[-47,-39],[-61,3],[-50,-31],[-110,77],[-10,55],[21,34],[-10,18],[-19,12],[-46,16],[-56,-28],[-24,14],[-45,32],[-34,55],[8,44],[0,36],[-38,44],[-22,55],[-14,-25],[0,-80],[-5,-83],[-39,-50],[-33,20],[4,31],[18,46],[11,64],[-26,8],[-51,-17],[-34,-38],[-20,25],[8,38],[-12,108],[-9,33],[14,11],[22,8],[24,-28],[20,-24],[20,19],[13,52],[15,39],[-11,36],[-50,-31],[-33,-11],[-36,3],[-64,22],[-45,22],[-17,33],[-6,71],[-16,37],[-31,24],[-7,75],[-28,52],[-33,-5],[-25,-42],[-23,-68],[-57,-34],[-41,28],[35,107],[20,119],[44,85],[13,75],[-18,63],[-57,-8],[-18,-77],[-20,-53],[-30,8],[-23,64],[-37,80],[-58,44],[7,66],[22,-22],[29,-25],[38,11],[6,69],[-6,58],[37,107],[-22,42],[-49,16],[-46,-55],[-33,-30],[-33,11],[0,55],[13,11],[13,11],[47,83],[35,35],[46,-19],[25,-39],[50,-33],[19,12],[10,24],[-4,72],[28,38],[1,36],[-22,17],[-49,11],[-41,31],[21,98],[-18,25],[-40,-77],[-68,-80],[-38,5],[-17,50],[-16,61],[2,93],[12,110],[-20,94],[31,85],[-11,39],[-76,63],[-31,53],[22,38],[14,28],[-5,36],[-70,11],[-8,14],[14,54],[4,61],[-11,36],[-4,47],[-42,11],[-11,-43],[-26,-15],[-56,19],[-18,41],[7,45],[35,13],[38,6],[3,76],[21,40],[0,60],[-17,50],[-14,22],[-33,-53],[-35,-49],[-16,-50],[-22,-58],[-50,0],[-54,-2],[-37,-17],[-14,30],[12,28],[22,14],[-7,30],[-17,63],[-13,90],[-23,45],[-57,44],[-15,-11],[-81,17],[-37,8],[-31,55],[-13,58],[-24,11],[-40,0],[-36,44],[-9,66],[0,61],[23,-3],[46,-3],[33,28],[27,77],[86,15],[4,26],[-9,33],[-41,9],[-21,30],[-39,88],[-42,6],[-53,-36],[-36,-17],[-26,22],[4,28],[38,14],[7,46],[-16,67],[20,16],[46,-16],[36,19],[9,58],[-20,33],[-33,8],[-63,-33],[-39,-50],[-45,0],[-35,44],[-22,72],[5,119],[11,49],[22,11],[50,-77],[9,-41],[18,-6],[16,11],[11,102],[37,74],[16,58],[-31,39],[-43,-11],[-35,0],[-37,-25],[-40,17],[-13,49],[-1,61],[16,30],[29,22],[2,39],[-55,74],[-4,29],[4,92],[-27,64],[-6,77],[19,52],[22,11],[38,-8],[29,-42],[33,14],[11,47],[5,74],[-40,64],[-47,66],[-61,25],[-58,-6],[-46,-38],[-28,-19],[-10,-6],[-21,38],[3,50],[31,58],[-9,25],[-79,57],[-95,-16],[-44,27],[-65,75],[-95,96],[-51,14],[-61,-25],[-58,-22],[-69,-27],[-46,-28],[-22,17],[-15,115],[-25,105],[-2,74],[-22,25],[-35,-8],[-43,-47],[-79,-58],[-51,-14],[-38,-33],[-13,-77],[16,-80],[-5,-74],[-9,-63],[-22,-61],[-95,-127],[-71,-82],[-95,-47],[-62,-97],[-148,-93],[-107,-128],[-112,-139],[-68,-61],[-125,-66],[-47,-6],[-47,6],[-16,7],[-10,18],[-15,63],[-4,48],[-14,49],[-23,55],[-31,12],[-22,-7],[-22,-19],[-37,0],[-31,16],[-23,63],[-18,57],[-73,47],[-100,56],[-73,43],[-23,25],[-59,36],[-44,12],[-38,34],[-23,-14],[-38,-5],[-31,7],[-26,21],[-31,48],[-21,72],[-8,48],[-22,55],[-14,65],[-98,141],[-43,31],[-42,27],[-39,5],[-19,-14],[-20,-13],[-13,5],[-9,21],[-10,31],[1,28],[0,49],[7,72],[2,59],[7,43],[9,49],[20,28],[20,9],[27,53],[22,68],[5,37],[-7,47],[-20,55],[-25,50],[-45,72],[-9,61],[3,33],[20,56],[30,47],[33,68],[13,47],[2,32],[-8,40],[-56,136],[-47,140],[-76,185],[-45,96],[-64,112],[-77,154],[-49,113],[-75,250],[-54,238],[0,217],[25,178],[40,130],[74,149],[59,96],[126,110],[115,48],[146,109],[39,83],[-17,272],[-16,160],[-15,58],[-27,29],[-13,23],[-14,30],[-6,28],[-4,24],[10,44],[22,48],[59,52],[212,237],[34,54],[48,140],[33,80],[106,219],[60,191],[65,167],[-12,36],[11,29],[29,23],[48,23],[104,97],[83,111],[91,137],[36,150],[23,174],[-10,341],[6,100],[22,49],[1,72],[9,66],[2,64],[-14,62],[7,38],[25,22],[40,1],[20,50],[10,67],[-9,129],[-46,122],[-9,58],[8,49],[23,35],[3,32],[-2,81],[26,51],[94,117],[38,58],[34,65],[19,62],[3,28],[4,27],[-26,96],[-22,59],[4,41],[4,46],[28,292],[31,211],[24,46],[47,35],[45,35],[43,46],[77,114],[87,104],[17,35],[1,54],[-45,147],[-2,147],[35,159],[14,36],[36,6],[11,30],[-32,60],[-8,44],[14,48],[30,14],[35,19],[18,21],[56,86],[57,86],[9,55],[-27,72],[20,44],[7,23],[-5,40],[-19,15],[-7,19],[10,21],[52,22],[58,8],[28,7],[11,22],[-5,30],[-23,26],[-2,31],[17,10],[58,-10],[16,31],[-3,87],[21,95],[-12,120],[-2,68],[13,19],[59,91],[41,60],[19,54],[-25,86],[-17,60],[27,67],[11,79],[10,79],[-27,198],[-31,226],[-22,92],[-31,89],[-14,48],[-10,59],[13,43],[17,54],[-6,48],[-25,73],[-72,67],[-76,47],[-61,61],[-42,111],[-26,127],[2,121],[28,95],[42,61],[32,42],[63,95],[65,70],[63,76],[106,44],[93,13],[80,-25],[80,-51],[50,-38],[68,-99],[82,-70],[43,-71],[54,-5],[97,28],[61,26],[53,28],[46,39],[30,101],[27,124],[40,121],[21,102],[30,105],[12,121],[9,159],[-17,222],[17,48],[23,22],[68,35],[61,80],[38,89],[16,92],[-9,48],[2,67],[16,30],[28,50],[105,94],[38,74],[38,124],[33,178],[19,127],[23,71],[8,13],[56,88],[114,72],[91,145],[56,91],[30,102],[126,105],[34,51],[10,66],[9,61],[57,67],[107,73],[83,86],[37,38],[15,54],[15,82],[55,134],[33,102],[0,78],[28,55],[67,51],[64,153],[35,194],[21,159],[3,216],[-9,207],[11,159],[29,119],[262,555],[73,245],[19,121],[7,168],[-7,156],[-4,76],[25,73],[59,99],[64,70],[109,137],[110,105],[105,98],[116,89],[95,112],[34,125],[-7,123],[-12,127],[12,76],[47,61],[92,106],[89,97],[87,92],[86,83],[112,137],[173,232],[118,140],[101,86],[146,121],[117,133],[137,146],[161,201],[231,305],[291,305],[232,248],[186,216],[-194,299],[-139,140],[-152,70],[-198,-6],[-392,-13],[-633,-6],[-190,-26],[-134,-31],[-98,-102]],[[664444,371200],[-265,-80],[-282,-10],[-422,-69],[-329,-13],[-312,165],[-118,166],[-93,356],[17,293],[95,448],[44,452],[-20,230],[-121,79],[-155,-13],[-247,195],[-296,163],[-285,297],[-140,344],[-121,110],[-47,185],[-16,200],[-90,150],[-71,196],[0,220],[105,115],[296,151],[84,180],[102,130],[261,114],[92,174],[121,101],[428,173],[128,119],[177,408],[113,191],[417,263],[85,156],[42,400],[-29,200],[30,184],[274,94],[120,163],[170,688],[446,563],[251,167],[278,78],[254,-28],[122,72],[90,119],[142,76],[268,439],[263,298],[83,149],[144,-36],[379,-215],[157,-24],[254,102],[92,130],[43,554],[240,532],[92,132],[147,81],[140,-19],[271,-114],[128,17],[227,198],[210,266],[78,151],[64,229],[99,1192],[55,170],[101,141],[120,74],[66,6],[67,5],[213,218],[126,85],[376,-202],[104,-113],[200,-312],[112,-93],[261,-17],[120,105],[72,172],[99,707],[113,111],[140,-30],[112,-78],[143,-44],[247,-31],[254,58],[374,221],[460,193],[389,264],[255,540],[114,87],[139,25],[311,-106],[157,-17],[154,43],[383,489],[267,100],[678,101],[306,-144],[309,6],[184,40],[150,101],[262,278],[148,98],[367,-148],[168,-33],[171,49],[263,216],[90,160],[-15,213],[-127,55],[-98,120],[-7,381],[-28,82],[-28,82],[-305,483],[-176,394],[-34,226],[6,181],[135,42],[120,-69],[353,-331],[544,-67],[119,-52],[572,-612],[64,-211],[84,-1053],[92,-485],[638,-412],[196,-88],[312,-93],[305,9],[105,-111],[64,-168],[64,-392],[57,-164],[451,-617],[473,-489],[78,-145],[15,-183],[-36,-199],[63,-188],[352,-185]],[[447407,511915],[-101,-37],[-21,-17],[-20,-17],[-41,-34],[-39,-28],[-85,-82],[-102,-93],[-26,-25],[-68,-65],[-108,-118],[-94,-74],[-41,-47],[-42,-46],[-64,-46],[-64,-45],[-50,-14],[-24,-10],[-63,-23],[-70,-48],[-101,-40],[-47,-39],[-47,-39],[-32,-42],[-57,-76],[-13,-17],[-43,-55],[-65,-55],[-31,-17],[-31,-17],[-63,-35],[-8,-3],[-29,-12],[-30,-12],[-17,-11],[-37,-24],[-26,-40],[-26,-40],[-36,-32],[-44,-77],[-23,-4],[-31,2],[-82,7],[-78,-19],[-42,-13],[-28,-9],[-30,-29],[-18,-73],[-25,-90],[-28,-36],[-50,13],[-51,12],[-47,7],[-37,3],[-63,-80],[-31,-56],[-16,-29],[-19,-171],[4,-99],[1,-44],[-11,-66],[-9,-51],[-2,-64],[-1,-42],[-10,-85],[-7,-60],[-31,-178],[-24,-106],[-37,-159],[-62,-138],[-16,-107],[-18,-86],[3,-59],[2,-47],[11,-107],[-8,-100],[-6,-68],[-40,-13],[-39,-33],[-31,-83],[8,-44],[9,-44],[-26,-59],[-30,-28],[-20,-48],[-41,-17],[-45,-37],[-22,-19],[-23,-19],[-52,-18],[-44,-32],[-28,-28],[-58,-56],[-46,-20],[-30,-13],[-30,-13],[-18,-8],[-18,-8],[-36,-16],[-25,-54],[11,-58],[43,-67],[32,-74],[6,-113],[-17,-74],[-49,-77],[-66,-55],[-31,-16],[-31,-16],[-77,48],[-70,98],[-20,28],[-49,69],[-148,249],[-73,42],[-77,22],[-76,23],[-108,-17],[-97,-45],[-1250,-588],[-56,-26],[-5745,-2699],[-3697,-1737],[-184,-87],[-1865,-876],[-40,-18],[-32,-16],[-1063,-499],[-2617,-1230],[-488,-229],[-15,-7],[-8,-9],[-25,-29],[-29,-35],[-62,-72],[-601,-701],[-37,-43],[-325,-379],[-200,-234],[-276,-322],[-449,-524],[-1566,-1827],[-530,-619],[-63,-73],[-2132,-2488],[-1592,-1858],[-1634,-1906],[-1875,-2188],[-4,-5]],[[414539,486065],[1220,17663],[-34,-26],[-32,-37],[-46,-94],[-47,-90],[-65,-95],[-64,-121],[-32,-100],[-34,-143],[-48,3],[-73,15],[-54,-9],[-68,-6],[-57,-14],[-85,-35],[-62,-34],[-57,-72],[-26,-62],[-15,-52],[-16,-53],[-58,-42],[-56,-33],[-63,-31],[-78,-36],[-78,-35],[-81,-46],[-72,-37],[-76,-16],[-108,-22],[-90,-19],[-52,-22],[-62,-26],[-48,-43],[-37,-60],[-47,-75],[-30,-61],[-29,-61],[-43,-67],[-43,-67],[-51,-80],[-48,-95],[-53,-80],[-59,-90],[-330,-502],[-125,-188],[-220,-332],[-98,-186],[-79,-149],[-34,-259],[-15,-224],[35,-484],[76,-575],[19,-326],[-37,-303],[-133,-302],[-216,-500],[-175,-249],[-271,-379],[-251,-234],[-148,-153],[-182,-50],[-88,-5],[-88,-5],[-111,16],[-108,84],[-108,83],[-150,117],[-150,117],[-123,118],[-124,117],[-95,90],[-150,132],[-129,50],[-133,30],[-120,23],[-170,-39],[-161,77],[-100,106],[-61,204],[0,153],[-1,153],[-1,103],[-1,204],[0,204],[-2,243],[-35,159],[-35,159],[-98,301],[-96,138],[-96,138],[-79,114],[-167,88],[-121,23],[-141,-8],[-145,-151],[-133,-185],[-133,-186],[-166,-113],[-250,-91],[-131,-34],[-108,38],[-123,38],[-93,58],[-92,59],[-128,38],[-76,-9],[-88,-27],[-127,-40],[-143,-54],[-72,-31],[-79,5],[-80,20],[-73,42],[-86,49],[-111,64],[-127,82],[-87,57],[-93,35],[-88,79],[-80,102],[-48,110],[-15,98],[-17,144],[12,99],[33,90],[32,91],[20,129],[-50,83],[-55,30],[-60,12],[-70,28],[-76,28],[-80,65],[-70,87],[-90,98],[-61,116],[-98,183],[-47,87],[-78,87],[-95,61],[-123,-15],[-116,-48],[-67,-63],[-62,-58],[-52,-49],[-114,-108],[-87,-82],[-81,-89],[-63,-116],[-86,-99],[-95,-79],[-93,4],[-78,79],[-40,91],[-105,140],[-95,65],[-101,37],[-113,0],[-85,-6],[-103,-17],[-110,-68],[-111,-68],[-154,-138],[-154,-137],[-107,-162],[-106,-161],[-98,-144],[-108,-102],[-105,-64],[-78,-4],[-78,57],[-87,114],[-87,115],[-82,149],[-98,118],[-77,68],[-81,41],[-105,39],[-120,-15],[-123,-4],[-133,-23],[-118,-4],[-113,15],[-110,31],[-53,14],[-88,34],[-70,65],[-56,77],[-55,77],[-75,103],[-85,83],[-60,38],[-83,44],[-116,62],[-54,41],[-38,76],[-38,132],[-20,105],[-23,138],[-23,124],[-39,109],[-43,123],[-41,92],[-41,93],[-48,110],[-86,121],[-78,83],[-117,61],[-106,41],[-108,42],[-108,38],[-112,34],[-123,30],[-101,23],[-105,-4],[-115,-15],[-88,-64],[-79,-108],[-79,-108],[-55,-76],[-63,-64],[-83,-8],[-80,35],[-73,56],[-53,57],[-106,79],[-107,79],[-93,69],[-53,39],[-80,59],[-70,69],[-58,64],[-85,57],[-93,75],[-103,110],[-105,110],[-80,106],[-67,68],[-52,92],[-50,87],[-43,164],[-28,106],[-18,65],[-18,64],[-25,90],[-25,89],[-37,131],[-36,129],[-47,123],[-48,128],[-61,114],[-61,114],[-41,93],[-41,91],[-75,98],[-64,83],[-49,63],[-93,119],[-72,76],[-72,76],[-65,68],[-72,76],[-79,81],[-80,80],[-94,96],[-93,45],[-85,31],[-125,22],[-86,4],[-85,4],[-137,6],[-110,-3],[-109,-3],[-166,-27],[-120,-41],[-101,-83],[-76,-93],[-69,-86],[-81,-98],[-57,-98],[-70,-140],[-38,-121],[-20,-106],[0,-159],[13,-101],[12,-101],[8,-36],[19,-94],[16,-76],[18,-85],[17,-85],[-13,-107],[-54,-82],[-49,-73],[-18,-116],[13,-70],[31,-79],[2,-91],[-28,-98],[-50,-68],[-65,-38],[-65,-34],[-83,-13],[-95,46],[-20,97],[-159,20205]],[[392444,523911],[49,-50],[90,-68],[115,-43],[74,-31],[95,-8],[214,88],[289,218],[78,17],[17,-105],[-78,-209],[-8,-137],[41,-204],[72,-169],[81,-149],[26,-49],[9,-16],[0,-81],[33,-334],[28,-273],[42,-240],[82,-167],[14,-22],[59,-95],[98,-149],[140,-185],[132,-99],[221,-19],[170,115],[200,309],[81,72],[94,-26],[461,-327],[1006,-306],[222,66],[388,394],[147,303],[5,192],[225,155],[89,73],[287,236],[127,251],[136,79],[505,297],[650,8],[621,-399],[323,-413],[10,-546],[-142,-472],[-181,-627],[10,-914],[124,-616],[2,-8],[6,-31],[-5,-216],[88,-110],[347,184],[685,111],[650,-17],[369,-629],[487,-527],[577,-125],[278,-509],[255,-67],[477,104],[334,73],[274,37],[156,126],[54,44],[269,907],[297,442],[447,288],[1171,429],[549,151],[515,142],[459,134],[132,162],[29,384],[363,401],[439,196],[203,-44],[110,-96],[103,-118],[97,-192],[98,-103],[132,30],[181,125],[166,59],[269,-65],[289,-1],[318,59],[220,28],[112,-36],[93,-74],[83,-95],[160,-105],[231,60],[179,289],[96,340],[185,301],[147,221],[308,258],[357,103],[254,15],[200,-81],[426,-317],[279,-528],[199,-379],[216,-192],[394,-23],[572,215],[403,250],[159,208],[223,537],[205,389],[298,334],[235,148],[279,0],[454,-182],[377,-475],[139,-328],[96,-156],[220,-357],[229,-177],[492,-95],[360,-246],[306,-473],[195,-419],[27,-266],[-42,-220],[-203,-260],[-39,-95],[-169,-400],[-114,-501],[-109,-1606],[93,-361],[230,-142],[471,105],[297,-73],[303,-251],[819,-1415],[38,-65],[48,-49],[4,-4],[245,-252],[712,-366],[228,-478],[247,-584],[140,-243],[255,-27],[217,101],[1078,504],[275,242],[702,616],[369,119],[376,-76],[299,86],[198,188],[35,47],[156,209],[491,984],[261,174],[285,-1],[135,-123],[-27,-187],[-141,-437],[75,-493],[-49,-142],[-34,-100],[-25,-73],[-246,-296],[-99,-120],[-178,-225],[-136,-391],[-73,-1171],[236,-594],[166,-129],[122,-96],[233,-9],[357,258],[489,449],[259,237],[514,96],[589,3],[382,217],[106,264],[119,296],[58,141],[86,214],[282,224],[691,348],[175,45],[360,92],[316,81],[612,157],[391,31],[417,260],[380,423],[122,412],[483,669],[192,404],[422,446],[455,239],[715,-150],[488,-126],[199,-51],[389,-696],[118,-410],[-501,-651],[82,-246],[82,-245],[1025,-455],[1078,-1045],[379,-211],[293,174],[824,539],[566,65],[307,-772],[422,-294],[488,110],[1307,1223],[249,214],[242,-13],[277,-159],[206,-47],[238,27],[127,146],[79,166],[77,67],[1,0],[37,32],[196,65],[173,55],[171,-55],[106,-135],[47,-161],[-38,-266],[-88,-352],[-132,-254],[-18,-70],[23,-67],[84,-223],[43,-162],[-13,-119],[-59,-168],[-107,-179],[-88,-77],[-121,-71],[-71,-22]],[[798514,492210],[44,-23],[65,-35],[110,6],[142,-62],[124,-87],[97,25],[78,135],[57,16],[139,-5],[147,-18],[189,10],[206,11],[419,114],[207,87],[156,7],[115,-63],[122,-104],[164,25],[234,111],[494,530],[106,143],[97,287],[16,160],[-28,121],[21,150],[39,260],[76,277],[0,118],[-37,125],[-3,149],[60,63],[102,-59],[147,-104],[73,-7],[193,86],[150,66],[106,132],[16,108],[-2,131],[-46,215],[-49,66],[-62,28],[-89,101],[-10,138],[46,87],[76,7],[76,-7],[78,-73],[67,-7],[37,70],[-26,114],[-46,87],[-59,55],[-65,-24],[-46,-31],[-36,31],[-17,87],[17,159],[68,101],[153,163],[100,97],[99,63],[81,27],[69,45],[9,125],[-12,94],[56,114],[66,56],[69,14],[100,127],[43,202],[57,212],[114,217],[93,161],[55,59],[28,-83],[7,-111],[14,-104],[39,-73],[78,17],[48,125],[30,212],[-8,123],[-26,78],[20,97],[53,52],[145,21],[120,-32],[145,4],[-10,146],[-18,76],[2,132],[62,38],[65,-76],[63,-119],[61,-65],[290,-87],[197,-76],[51,38],[21,56],[0,76],[16,90],[16,111],[46,45],[34,66],[14,87],[-7,93],[5,80],[21,83],[32,63],[23,52],[46,17],[99,-17],[62,-11],[27,111],[-16,56],[-44,28],[-50,-18],[-265,212],[-101,160],[19,93],[34,70],[81,10],[50,-7],[42,-7],[62,42],[32,100],[-7,118],[-53,97],[-39,49],[7,101],[55,20],[83,-20],[145,-7],[122,114],[-16,191],[-28,69],[-16,59],[18,49],[83,73],[177,149],[140,208],[114,261],[231,353],[276,395],[166,129],[119,128],[67,104],[174,114],[189,38],[1060,403],[336,225],[161,174],[91,202],[77,58],[60,73],[66,107],[145,476],[104,183],[82,98],[72,135],[92,152],[99,73],[64,0],[55,28],[48,52],[106,135],[143,104],[188,115],[154,14],[53,83],[60,90],[62,108],[71,128],[81,87],[87,142],[106,-35],[85,-55],[46,-90],[85,-45],[69,-11],[42,-90],[9,-177],[14,-225],[5,-252],[22,-102],[64,-198],[72,-114],[89,-98],[106,-41],[101,-4],[104,52],[69,101],[53,135],[-3,108],[-27,135],[-44,128],[-64,77],[-61,123],[1,57],[41,71],[217,68],[126,66],[147,121],[221,-142],[147,-35],[182,42],[177,62],[108,-27],[78,-56],[126,4],[56,48],[27,56],[23,86],[85,28],[42,-55],[-35,-143],[-30,-180],[10,-66],[34,-17],[34,21],[182,170],[21,86],[4,122],[37,86],[44,25],[39,-39],[21,-55],[41,-153],[41,-121],[17,-97],[-5,-66],[0,-94],[32,-73],[53,-17],[44,80],[64,100],[60,-72],[25,-129],[16,-142],[40,-162],[61,-247],[46,-153],[51,-146],[64,-79],[72,-56],[133,-87],[271,-31],[71,-10],[10,-2],[80,-12],[157,-73],[138,-128],[673,-802],[167,-141],[102,-74],[97,-10],[140,17],[83,-17],[145,-59],[85,-62],[64,-14],[48,52],[108,116],[304,62],[789,235],[74,59],[59,-28],[58,-38],[401,13],[233,-20],[115,-101],[150,4],[168,93],[50,139],[95,52],[103,-14],[99,-83],[136,-14],[82,45],[28,69],[14,91],[48,100],[191,79],[137,0],[226,-62],[378,-216],[197,-174],[7,-7],[120,-92]],[[822063,503341],[-16,-123],[-59,-59],[-101,4],[-116,39],[-118,-41],[-91,-130],[-150,-95],[-256,-122],[-148,-204],[-60,-191],[-8,-142],[-7,-188],[5,-216],[2,-171],[14,-74],[25,-133],[-20,-87],[-42,-102],[21,-189],[47,-55],[23,-100],[62,-81],[12,-136],[37,-142],[-12,-149],[-42,-130],[-45,-143],[-57,-111],[16,-217],[-45,-217],[-70,-272],[0,-161],[-41,-118],[-94,62],[-202,96],[-184,114],[-189,38],[-230,31],[-206,12],[-205,-25],[-82,-99],[-16,-105],[61,-198],[130,-219],[18,-29],[3,-123],[-69,-212],[-29,-85],[-98,-287],[-90,-223],[-50,-123],[-209,-341],[-185,-198],[-14,-15],[-221,-227],[-61,-62],[-316,-310],[-159,-103],[-29,-19],[-50,-33],[-22,-15],[-257,-183],[-11,-6],[-112,-68],[-4673,-12341]],[[793109,456483],[-13339,13104],[199,-2710],[870,-11861],[84,-1156],[-291,-296],[-126,-89],[-169,-32],[-320,-200],[-1187,-530],[-422,-365],[-306,-473],[-119,-106],[-199,-298],[-97,-345],[-108,-151],[-148,-92],[-176,-30],[-189,-235],[-58,-191],[-249,-239],[-125,-62],[-250,-263],[-146,-299],[-57,-211],[-242,-269],[-189,-284],[-242,-739],[-12,-383],[91,-625],[29,-453],[-14,-234],[-241,-787],[-70,-428],[-8,-202],[41,-162],[10,-194],[-108,-423],[-204,-362],[-149,-167],[-268,-540],[-63,-358],[-9,-1086],[-154,-544],[-198,-549],[-15,-213],[85,-646],[-170,-1434],[-189,-403],[-192,-288],[-71,-185],[-127,-138],[-226,-347],[-147,-317],[-108,-619],[156,-767],[8,-187],[-71,-390],[-190,-349],[-43,-202],[-71,-601],[8,-658],[-145,-903],[-110,-684],[-35,-676],[-106,-861],[-276,-750],[-113,-217],[-247,-778],[-101,-199],[-36,-235],[-61,-174],[-9,-200],[-40,-185],[-80,-166],[-211,-245],[-241,-156],[-54,-173],[27,-253],[71,-156],[62,-382],[-41,-540],[-13,-1094],[-37,-221],[-98,-318],[-37,-311],[-17,-147],[-61,-510],[-83,-391],[-107,-128],[-397,-160],[-522,-1497],[-116,-56],[-166,264],[-141,-6],[-352,360],[-150,52],[-248,-79],[-289,-8],[-383,73],[-176,-121],[-565,-39],[-275,-123],[-701,-562],[-180,-13],[-129,50],[-757,589],[-233,425],[-255,346],[-56,165],[-134,207],[-156,136],[-113,148],[-133,78],[-116,157],[-60,191],[-58,444],[91,826],[0,252],[-56,400],[339,348],[55,159],[-140,800],[-34,371],[-86,158],[-163,-1],[-162,-72],[-331,34],[-150,166],[-97,181],[-121,142],[-311,37],[-120,55],[-128,163],[-120,438],[-70,875],[5,1020],[-274,639],[-28,178],[-107,127],[-245,197],[-264,396],[-92,351],[-176,267],[-114,87],[-557,-96],[-261,23],[-539,322],[-296,114],[-162,26],[-235,206],[-146,424],[99,172],[903,700],[466,112],[142,78],[99,127],[92,382],[22,217],[-135,667],[-147,407],[-108,701],[-55,192],[-290,439],[-120,61],[-574,77],[-747,-11],[-242,-142],[-219,-280],[-141,-77],[-277,27],[-246,225],[-591,429],[-94,176],[-93,176],[-106,129],[-268,100],[-107,138],[-40,180],[-31,573],[-90,393],[-119,327],[-45,425],[-13,450],[22,435],[134,629],[51,841],[83,620],[332,1070],[170,350],[69,216],[-105,367],[72,168],[226,193],[259,413],[165,182],[153,-75],[405,570],[347,344],[159,49],[398,34],[104,120],[213,395],[47,192],[131,1261],[62,199],[127,256],[160,206],[45,58],[170,1315],[-34,675],[135,534],[216,365],[150,333],[199,653],[-29,505],[-403,308],[-296,410],[-134,47],[-728,-163],[-325,-158],[-643,-44],[-108,101],[-54,421],[-21,162],[48,400],[182,491],[306,501],[125,140],[277,515],[100,342],[-7,241],[-130,353],[-34,176],[14,365],[-29,192],[-91,120],[-240,133],[-184,321],[-48,189],[-178,380],[-274,464],[-157,235],[-282,256],[-332,-39],[-285,-223],[-444,-230],[-91,-142],[-149,-65],[-114,80],[-90,188],[-43,200],[-29,191],[-7,476],[150,1228],[-105,556],[-207,689],[-212,-70],[-212,-127],[-418,-91],[-266,-100],[-453,-52],[-481,14],[-303,-46],[-1140,-723],[-120,77],[-127,313],[-100,129],[-493,454],[-105,171],[-136,147],[-56,165],[-182,331],[-158,422],[-112,104],[-205,53],[-834,21],[-388,255],[-360,403],[-390,333],[-99,129],[-140,329],[-298,445],[-56,213],[-199,271],[-56,165],[-119,85],[-177,-323],[-227,-229],[-247,-170],[-282,-90],[-142,60],[-359,299],[-311,340],[-186,42],[-367,-239],[-330,-318],[-221,-254],[-92,-166],[-445,-431],[-432,-294],[-254,-123],[-516,-380],[-147,31],[-113,77],[-206,258],[-91,173],[-28,399],[71,442],[50,938],[125,664],[79,616],[69,1002],[-13,529],[-58,625],[-12,1432],[27,439],[0,869],[57,1164],[64,339]],[[742232,474792],[219,74],[396,204],[233,217],[722,310],[379,336],[106,130],[143,306],[56,184],[256,168],[12,216],[72,175],[120,98],[71,185],[128,1017],[146,436],[99,417],[71,158],[100,410],[148,384],[1,209],[-45,220],[-132,313],[-108,380],[-6,461],[-27,170],[-108,364],[-141,302],[-98,545],[19,194],[-20,182],[-77,165],[-107,370],[-169,320],[-149,171],[-21,199],[42,173],[113,62],[-28,185],[-64,170],[14,184],[52,219],[487,1005],[295,456],[22,261],[-42,180],[-93,150],[-336,96],[-285,267],[-99,255],[-43,230],[-8,225],[31,207],[96,213],[341,351],[7,226],[-112,185],[-156,82],[-56,175],[42,220],[64,164],[42,792],[-136,381],[-112,537],[-64,180],[-50,470],[1,197],[64,236],[56,964],[269,969],[134,209]],[[745009,495658],[254,266],[283,-24],[317,-98],[297,-43],[306,61],[146,78],[58,162],[205,251],[92,177],[224,165],[370,337],[274,440],[623,538],[508,104],[261,8],[263,124],[232,213],[49,81],[71,120],[44,186],[34,402],[57,211],[190,1140],[78,224],[155,316],[106,148],[475,373],[168,349],[86,454],[85,807],[92,204],[107,121],[133,45],[114,-138],[119,-354],[190,-327],[1046,-794],[390,-29],[366,299],[163,5],[106,-122],[0,-170],[-43,-213],[8,-180],[93,-147],[585,-287],[51,-158],[127,-65],[127,25],[147,-23],[30,-207],[-106,-227],[85,-138],[302,-21],[121,-78],[213,-256],[273,-197],[123,-23],[98,-123],[120,-71],[135,-20],[282,31],[333,-104],[133,5],[135,56],[105,-139],[232,-89],[94,-35],[706,489],[113,114],[197,296],[241,159],[98,106],[36,185],[0,181],[-71,156],[-104,138],[-9,201],[128,338],[105,124],[128,-34],[92,122],[-57,175],[-111,84],[54,167],[99,174],[-77,138],[148,307],[-69,206],[111,132],[262,56],[1,201],[71,141],[155,96],[35,167],[133,32],[130,82],[0,174],[118,99],[105,-78],[95,124],[56,-199],[34,-382],[141,-45],[396,128],[304,33],[155,279],[106,446],[84,200],[109,97],[310,68],[69,165],[262,56],[94,129],[42,175],[85,197],[133,8],[86,139],[-86,164],[50,164],[134,28],[85,159],[-25,161],[-11,74],[398,-63],[386,-203],[122,-3],[104,-91],[94,-171],[134,-94],[233,152],[69,-167],[0,-173],[94,-164],[146,-15],[142,-59],[121,3],[55,-182],[92,-147],[220,-248],[77,-172],[9,-201],[84,-137],[226,-238],[78,-6],[148,-10],[64,174],[142,239],[105,122],[101,190],[6,11],[141,263],[403,379],[133,55],[396,30],[317,-57],[412,-234],[197,-241],[22,-210],[-71,-192],[49,-165],[-51,-363],[71,-156],[134,-105],[-29,-181],[-90,-139],[141,-131],[530,-276],[107,-98],[134,-23],[120,31],[212,-284],[142,-408],[21,-580],[34,-174],[56,-118],[15,-31],[184,-31],[117,54],[86,39],[4,2],[8,4],[272,125],[141,-49],[-62,-471],[20,-206],[100,-121],[232,281],[150,-110],[-23,-211],[-155,-323],[502,-730],[91,-164],[136,-394],[93,-136],[416,-57],[140,-73],[149,-574],[451,-445],[156,-44],[268,9],[318,81],[270,240],[92,174],[140,131],[318,66],[630,-119],[423,-219],[283,-255],[78,-175],[21,-268],[-13,-210],[-72,-185],[-147,-101],[-128,-7],[-86,-184],[94,-119],[146,-434],[271,-151],[450,-175],[92,-137],[165,-111],[112,-122],[234,-308],[55,-174],[43,-674],[71,-156],[112,-138],[28,-198],[-6,-365],[133,-797],[86,-260],[276,-93],[126,-91],[28,-185],[-19,-183],[-66,-191],[2,-198],[204,-295],[404,-177],[126,1],[85,-144],[156,-392],[118,-588],[86,-157],[55,-233],[95,-224],[240,-257],[267,-127],[72,-161],[83,-436],[-14,-418],[-76,-619],[55,-198],[233,-179],[129,3],[325,159],[119,-7],[107,-101],[113,-199],[281,-159],[212,-66],[369,-3],[282,150],[84,129],[129,82],[98,120],[254,169],[134,31],[468,-44],[595,215],[323,-18],[134,-77],[453,-62],[162,28],[509,220],[325,80],[134,-26],[93,-136],[133,-5],[155,139],[135,-67],[120,-109],[566,93],[126,-75],[109,-495],[32,-147],[135,-67],[199,63],[396,259],[126,27],[545,300],[133,7],[382,230],[148,32],[121,26],[183,2],[121,-41],[295,411],[149,85],[135,-36],[128,75],[262,33],[226,318],[155,358],[168,299],[100,113],[282,171],[339,290],[92,133],[305,624],[105,329],[381,662],[43,165],[135,204],[241,251],[197,103],[127,28],[147,538],[135,56],[313,-19],[127,-59],[389,-4],[615,436],[133,-70],[133,-128],[532,1],[267,-86],[112,-108],[257,-152],[423,-140],[87,-159],[116,-317],[130,-94],[127,55],[113,104],[150,81]],[[666525,491090],[-87,15],[-58,4],[-6,0],[-19,-2],[-20,-3],[-24,-23],[-23,-24],[-29,-25],[-43,-37],[-50,-61],[-41,-41],[-44,-18],[-28,-24],[-11,-45],[-1,-126],[-8,-140],[-8,-32],[-9,-33],[-55,-52],[-86,-48],[-115,-50],[-368,-128],[-203,-63],[-61,-25],[-41,-31],[-79,-76],[-28,-37],[-24,-51],[-24,-55],[-18,-58],[-23,-76],[-22,-46],[-36,-36],[-46,-46],[-75,-70],[-66,-53],[-54,-26],[-57,-13],[-29,-24],[-22,-29],[-24,-52],[-26,-42],[-15,-26],[-26,-32],[-20,-29],[-49,-51],[-108,-173],[-42,-91],[-43,-92],[-25,-81],[-3,-95],[19,-69],[37,-59],[55,-44],[51,-15],[72,-16],[84,4],[87,24],[104,9],[59,-4],[75,-44],[52,-52],[46,-56],[54,-53],[37,-56],[27,-71],[20,-88],[36,-220],[16,-168],[-2,-115],[-10,-79],[-27,-64],[-23,-50],[-75,-92],[-75,-102],[-71,-95],[-45,-44],[-33,-46],[-6,-41],[4,-55],[-7,-53],[8,-87],[2,-77],[-6,-97],[-6,-64],[3,-44],[12,-45],[32,-60],[44,-44],[57,-37],[57,-35],[60,-71],[44,-68],[39,-52],[47,-84],[14,-38],[3,-97],[8,-146],[12,-115],[11,-101],[21,-71],[27,-39],[52,-42],[55,-37],[44,-10],[46,-21],[53,-60],[24,-56],[10,-49],[5,-69],[-3,-51],[-11,-44],[-11,-37],[-39,-58],[-56,-56],[-44,-50],[-77,-124],[-81,-73],[-97,-76],[-147,-116],[-95,-100],[-12,-36],[-1,-48],[5,-35],[10,-85],[12,-54],[22,-28],[50,-36],[51,3],[208,61],[396,124],[229,77],[35,22],[37,35],[18,50],[8,75],[-4,83],[-6,97],[-32,298],[-14,106],[-4,62],[14,47],[30,93],[40,71],[48,83],[28,54],[34,30],[47,7],[51,-37],[125,-88],[103,-68],[80,-105],[84,-105],[103,-63],[111,-39],[122,-17],[86,31],[67,23],[67,50],[65,18],[22,0],[22,-1],[41,-17],[41,-49],[30,-55],[20,-45],[14,-126],[33,-138],[37,-99],[37,-88],[51,-92],[61,-112],[22,-80],[0,-75],[-3,-172],[-49,-438],[15,-171],[13,-130],[13,-96],[26,-94],[85,-261],[8,-60],[3,-73],[3,-157],[14,-83],[63,-184],[20,-96],[8,-86],[-19,-135],[-32,-132],[-36,-96],[-60,-93],[-70,-124],[-7,-52],[27,-116],[80,-166],[159,-244],[171,-258],[156,-272],[58,-126],[35,-70],[10,-48],[5,-63],[-3,-72],[-26,-126],[-35,-93],[-50,-106],[-103,-186],[-31,-80],[-20,-94],[-53,-242],[-19,-69],[-39,-72],[-68,-81],[-83,-68],[-82,-30],[-61,-4],[-171,9],[-9,1],[-103,13],[-103,13],[-213,56],[-265,50],[-63,6],[-28,9],[-27,9],[-57,28],[-50,39],[-83,95],[-49,72],[-66,52],[-97,68],[-44,20],[-38,34],[-45,47],[-63,101],[-60,157],[-61,101],[-94,104],[-159,176],[-190,201],[-123,66],[-68,59],[-43,19],[-111,4],[-282,18],[-142,33],[-173,43],[-175,63],[-243,94],[-68,33],[-27,32],[-41,61],[-42,91],[-86,181],[-78,132],[-54,70],[-66,40],[-56,23],[-128,70],[-146,85],[-131,73],[-86,61],[-82,54],[-78,29],[-50,29],[-44,46],[-44,41],[-56,54],[-93,72],[-98,61],[-103,33],[-112,26],[-116,15],[-68,10],[-123,50],[-39,-6],[-58,-29],[-103,-17],[-60,2],[-46,7],[-48,22],[-59,48],[-77,33],[-120,23],[-78,25],[-63,-25],[-58,-54],[-37,-12],[-61,-1],[-28,-22],[-28,-58],[-27,-71],[-29,-69],[-17,-17],[-36,2],[-78,33],[-105,60],[-66,43],[-82,29],[-64,4],[-55,-10],[-28,-5],[-35,-18],[-29,-39],[-18,-41],[-21,-71],[-14,-70],[-37,-122],[-26,-60],[-14,-54],[-4,-44],[5,-22],[4,-23],[41,-62],[38,-56]],[[647015,484375],[-2,186],[-942,1211],[-95,122],[-1380,1774],[-9468,12172],[-82,106],[-2356,3031],[-659,1380],[-2624,5500]],[[654145,526577],[166,-934],[57,-323],[36,-199],[42,-241],[664,-5832],[664,-5831],[226,269],[182,189],[155,160],[190,131],[148,83],[251,138],[115,39],[172,58],[230,61],[242,6],[154,-18],[220,-50],[281,-72],[451,-162],[248,-137],[150,-171],[27,-31],[103,-174],[25,-110],[1,-251],[-38,-377],[-38,-377],[-40,-124],[24,-134],[-16,-180],[29,-204],[20,-80],[-7,-19],[-22,-66],[-12,-133],[8,-159],[16,-217],[9,-132],[50,-66],[6,-82],[35,-92],[50,-100],[71,-156],[48,-107],[21,-48],[0,-86],[11,-63],[23,-120],[50,-140],[6,-32],[-17,-53],[-23,-21],[-28,-135],[-14,-78],[-51,-40],[-73,-55],[-87,-89],[-86,-39],[-75,15],[-33,-46],[19,-88],[-6,-95],[-77,-97],[-71,-31],[-91,-97],[18,-58],[-26,-25],[-46,31],[-35,-18],[11,-50],[22,-36],[4,-43],[-31,-18],[-36,-24],[6,-61],[14,-61],[-38,-40],[-10,-29],[20,-47],[-10,-55],[-33,-30],[-38,18],[-50,-33],[-25,-46],[35,-93],[20,-75],[-45,-37],[-57,-48],[13,-92],[-14,-88],[28,-88],[-28,-119],[-61,-61],[-38,-85],[-4,-108],[-14,-88],[4,-112],[-11,-58],[5,-58],[-29,-58],[-28,-40],[0,-76],[55,9],[20,-30],[-14,-46],[-49,-55],[6,-82],[26,-162],[-2,-106],[39,-98],[-14,-46],[-53,-45],[-6,-67],[5,-31],[19,-128],[-8,-73],[-54,-28],[-49,0],[-21,-63],[9,-95],[51,-146],[-21,-80],[-95,-15],[-50,86],[-43,64],[-38,103],[-20,98],[-32,41],[-28,-31],[-41,-93],[-63,-59],[-49,-113],[-45,-42],[-37,-54],[-25,-7],[-26,19],[-39,-10],[-39,-41],[-18,-60],[-68,-46],[-47,-54],[-29,-84],[-38,-115],[-17,-48],[-18,-35],[-30,-14],[-32,-2],[-37,5],[-51,1],[-58,39],[-31,7],[-41,-6],[-28,-23],[-48,11],[-36,-11],[-25,-29],[-23,-15],[-9,-26],[-3,-65],[2,-74],[8,-62],[-3,-37],[-24,-19],[-19,-2],[-37,-41],[-25,-17],[-3,-27],[-13,-46],[-6,-29],[-13,-41],[-35,-54],[-25,-27],[-29,-24],[-36,-1],[-41,-39],[-48,-21],[-26,-17],[-32,-5],[-17,-39],[-32,-49],[-45,-41],[-46,-37],[-33,2],[-35,20],[-27,-13],[-13,-18],[-28,-18],[-19,-52],[-21,-52],[-28,-46],[-55,-48],[-54,-89],[-57,-76],[-46,-61],[-41,-41],[-22,-41],[-43,-47],[-22,-34],[-45,-93],[-34,-61],[-20,-36],[-2,-3],[3,-22],[13,-37],[31,-149],[20,-84],[20,-120],[28,-126],[14,-61],[14,-57],[12,-41],[22,-37],[10,-32],[-3,-47],[-1,-78],[12,-74],[16,-76],[25,-83],[14,-55],[24,-29],[13,-13],[-7,-29],[0,-38],[-1,-37],[12,-79],[3,-50],[3,-49],[3,-47],[17,-31],[-5,-27],[-24,-14],[4,-35],[-21,-47],[16,-31],[-18,-95],[13,-18],[-8,-34],[-5,-45],[-12,-43],[-4,-48],[5,-45],[-15,-62],[-12,-35],[-12,-34],[-5,-73],[-15,-47],[15,-30],[-9,-32],[-36,-26],[-30,0],[-26,-6],[-34,-25],[-31,-40],[-8,-45],[0,-54],[6,-56],[19,-37],[51,-38],[64,-100],[32,-47],[5,-36],[-2,-22],[-2,-22],[-8,-47],[-24,-32],[-19,-26],[0,-21],[4,-18],[-3,-13],[-26,-21],[-27,11],[-3,21],[-20,8],[-25,-11],[-38,-70],[-25,-46],[-1,-40],[-20,-1],[-31,0],[-5,-38],[3,-41],[3,-51],[3,-77],[-5,-49],[-23,-5],[-15,-19],[7,-39],[8,-47],[3,-41],[-14,-99],[-8,-93],[-16,-20],[-27,-22],[-14,-30],[8,-44],[7,-38],[33,-10],[9,-36],[-5,-7],[-6,-6],[-21,-8],[-5,-2],[-6,-28],[10,-48],[20,-49],[5,-14],[8,-28],[-4,-60],[-10,-54],[-8,-71],[-1,-65],[-15,-46],[-2,-46],[22,-33],[28,-32],[4,-43],[21,-4],[13,-19],[14,-19],[29,-34],[23,-34],[13,-27],[30,-15],[12,-35],[5,-41],[46,-16],[27,-41],[36,-23],[40,-10],[29,1],[20,23],[43,-26],[47,-59],[28,-54],[1,-74],[-2,-83],[-18,-100],[-20,-90],[3,-105],[24,-47],[2,-63],[-1,-44],[-17,-25],[-7,-48],[-8,-59],[14,-40],[-10,-43],[-1,-44],[16,-40],[8,-68],[-7,-25],[8,-41],[29,-55],[33,-43],[26,-38],[3,-45],[2,-51],[-2,-47],[25,-55],[32,-6],[46,21],[46,0],[29,-28],[16,-26],[31,-13],[25,-33],[22,-29],[22,-46],[-5,-87],[-16,-64],[-10,-12],[-6,-46],[16,-16],[6,-5],[7,-5],[34,-26],[97,-44],[32,10],[55,25],[33,16],[98,3],[46,1],[47,1],[77,-13],[34,-15],[23,-32],[3,-19],[3,-19],[-2,-72],[-13,-84],[0,-35],[2,-35],[9,-23],[67,-52],[71,-48],[57,-40],[34,-43],[47,-67],[31,-64],[27,-45],[23,-32],[60,-61],[88,-92],[59,-33],[24,-29],[22,-34],[20,-49],[29,-117],[27,-111],[5,-73],[-4,-75],[-15,-98],[-7,-51],[9,-63],[19,-104],[18,-62],[24,-43],[68,-134],[38,-59],[45,-28],[46,-24],[70,-29],[62,-17],[56,-1],[40,4],[72,48],[40,38],[26,30],[51,47],[28,13],[28,9],[24,1],[20,-13],[22,-25],[32,-39],[31,-33],[26,-9],[69,5],[57,0],[37,-6],[35,-18],[19,-20],[19,-29],[14,-61],[14,-63],[11,-77],[18,-43],[25,-41],[11,-49],[7,-73],[1,-95],[9,-73],[15,-42],[21,-39],[44,-34],[47,-27],[41,-16],[58,-16],[35,-18],[20,-16],[23,-10],[17,-10],[26,-3],[34,-1],[59,-5],[66,-2],[51,12],[52,10],[48,8],[89,22],[100,41],[52,11],[29,0],[27,-9],[23,-8],[13,2],[15,15],[17,30],[14,33],[8,8],[17,-4],[12,-6],[13,-4],[4,-9],[-4,-13],[-12,-29],[-10,-34],[-2,-27],[2,-31],[8,-21],[13,-14],[21,-4],[32,1],[21,-11],[21,-22],[32,-23],[26,-5],[61,6],[39,-4],[38,-9],[40,1],[18,9],[16,9],[21,-6],[17,-10],[12,-13],[8,-10],[4,-20],[13,-49],[10,-30],[13,-17],[18,-15],[51,-23],[16,-12],[5,-31],[-3,-40],[-15,-48],[-17,-75],[-2,-32],[6,-26],[71,-154],[17,-26],[21,-18],[24,-5],[52,16],[75,24],[34,-6],[32,-17],[28,-23],[44,-53],[29,-35],[19,-20],[24,-8],[66,-6],[35,-16],[32,-28],[34,-31],[26,-5],[50,-20],[65,-23],[29,-32],[29,-35],[27,-28],[29,-42],[36,-47],[74,-77],[62,-58],[42,-13],[56,-3],[76,12],[35,20],[38,-16],[48,-42],[44,-49],[63,-82],[62,-84],[16,-35],[6,-49],[10,-69],[12,-18],[32,-15],[38,-17],[16,-30],[40,-55],[27,-37],[11,-50],[20,-29],[53,-26],[68,-15],[56,0],[47,24],[45,51],[56,82],[35,73],[60,117],[19,23],[21,5],[34,-11],[41,-11],[34,0],[39,19],[41,18],[25,3],[28,-17],[24,-32],[59,-58],[54,-58],[79,-65],[68,-50],[30,-29],[30,-32],[28,-49],[20,-50],[13,-45],[25,-29],[50,-59],[20,-46],[9,-58],[12,-44],[20,-27],[34,-17],[48,-8],[53,-35],[51,-45],[40,-49],[34,-34],[16,-27],[7,-35],[-4,-32],[-16,-25],[-29,-26],[-17,-22],[-9,-25],[5,-33],[28,-35],[31,-35],[13,-43],[9,-32],[26,-23],[47,-30],[19,-32],[32,-52],[39,-41],[9,-35],[-5,-57],[5,-36],[29,-43],[24,-47],[30,-19],[62,2],[27,-9],[26,-15],[17,-36],[9,-35],[15,-33],[18,-52],[29,-46],[29,-33],[50,-20],[55,-12],[30,6],[22,27],[20,38],[33,68],[24,35],[29,25],[30,15],[30,4],[44,-8],[34,25],[43,24],[35,8],[59,10],[81,34],[160,55],[180,60],[47,19],[30,29],[122,164],[55,93],[56,49],[15,35],[20,58],[25,65],[50,71],[79,82],[56,49],[43,38],[59,56],[51,26],[68,23],[95,34],[65,15],[48,-8],[71,-9],[73,11],[-10,-163]],[[601334,463615],[-227,437],[-112,108],[-276,77],[-312,2],[-41,170],[42,182],[7,233],[-90,151],[-130,48],[-167,3],[-693,-230],[-793,-202],[-189,25],[-397,337],[-227,-10],[-155,-95],[-90,-128],[-142,-66],[-135,74],[-198,366],[-253,339],[-170,122],[-268,20],[-107,-93],[-99,-178],[-42,-189],[36,-201],[-22,-190],[-113,-114],[-608,144],[-438,6],[-197,-58],[-106,-110],[-324,-568],[-180,-537],[-571,-732],[-389,-295]],[[593158,462463],[-353,442],[-616,497],[-678,130],[-275,16],[-225,-106],[-414,-292],[-463,-256],[-389,-266],[-388,-143],[-157,28],[-161,126],[-136,322],[-36,204],[-62,885],[28,566],[-20,921],[-42,194],[-106,211],[-78,259],[35,212],[162,351],[36,202],[-120,702],[-156,370],[-277,142],[-85,145],[-20,193],[69,181],[156,222],[50,176],[-120,442],[-183,319],[-77,190],[-2,93],[-6,416],[50,394],[-22,176],[-113,83],[-268,116],[-446,-224],[-226,-72],[-163,-6],[-522,100],[-430,218],[-312,63],[-162,-78],[-199,-291],[-134,-92],[-961,-185],[-411,-2],[-162,31],[-133,68],[-390,359],[-352,378],[-539,278],[-134,-4],[-162,-95],[-296,-250],[-169,-82],[-1047,-116],[-790,21],[-108,126],[28,204],[65,171],[-15,196],[-100,144],[-204,158],[-49,38],[-94,131],[-259,362],[-698,536],[-80,135],[-56,176],[104,356],[163,225],[262,201],[1089,663],[127,133],[793,1295],[50,176],[0,178],[-292,805],[-127,351],[-147,709],[61,154],[228,355],[120,111],[157,82],[98,157],[7,400],[77,476],[198,305],[246,247],[277,606],[106,179],[176,497],[114,182],[156,3],[430,-280],[148,-2],[121,60],[453,-96],[125,13],[120,64],[274,445],[67,109],[50,196],[13,54],[65,451],[131,443],[87,149],[262,182],[170,65],[668,377],[166,185],[232,382],[57,171],[-15,179],[-55,165],[-206,382],[-416,603],[-334,279],[-438,194],[-361,83],[-187,-12],[-8,0],[-122,-8],[-296,110],[-318,209],[-431,-198],[-445,271],[-148,43],[-129,-47],[-106,-93],[-134,9],[-86,128],[-224,1043],[-220,582],[-162,671],[-64,417],[44,189],[132,341],[37,192],[20,358],[206,537],[125,112],[227,560],[128,92],[275,42],[284,187],[143,365],[137,1073],[94,295],[197,401],[154,-18],[213,-135],[105,-112],[177,-29],[149,35],[665,366],[283,294],[176,127],[142,35],[290,-65],[162,2],[112,99],[70,167],[117,776],[175,411],[119,56],[226,20],[221,293],[127,314],[266,45],[249,118],[106,130],[141,371],[122,139],[197,362],[161,221],[241,213],[303,425],[233,170],[162,28],[172,107],[76,144],[106,346],[0,178],[-56,202],[-112,118],[-65,189],[-183,592],[-14,214],[141,421],[261,369],[0,4],[8,178],[-56,206],[-218,302],[-453,325],[-129,141],[-78,207],[9,442],[-128,301],[-466,41],[-270,180],[-106,174],[-21,171],[7,408],[44,206],[98,233],[255,333],[283,146],[275,28],[452,112],[134,-58],[410,-330],[149,36],[84,180],[22,201],[77,164],[225,229],[214,117],[359,120],[127,116],[99,143],[157,388],[514,1041],[207,804],[8,127],[0,4],[19,323],[226,727],[114,525],[7,153],[6,153],[-33,392],[6,298],[92,403],[-15,231],[-55,164],[-354,367],[-347,244],[-424,223],[-366,273],[-248,254],[-318,108],[-141,12],[-247,-91],[-172,-158],[-154,-74],[-133,82],[-87,183],[-49,182],[-27,271],[26,256],[242,599],[49,227],[-1,526],[30,188],[99,168],[267,181],[99,177]],[[328543,308736],[-311,746],[-5895,14128],[-86,-162],[-684,-1276],[50,-365],[466,-1442],[141,-631],[85,-618],[-22,-646],[-70,-620],[-197,-770],[-333,-775],[-641,-1223],[-461,-1045],[-868,-826],[-431,-843],[-233,-855],[-101,-794],[0,-807],[-34,-700],[220,-2313],[113,-715],[-6159,-3879],[-103,-65],[-2648,-1667],[-126,-79],[-17,-11],[-142,-89],[-148,-93],[-114,-72],[-114,-72],[-26,18],[-1267,846],[-1110,741],[-1298,866],[-509,340],[-135,90],[-163,109],[-136,91],[-76,51],[-142,94],[-147,99],[-327,218],[-104,69],[157,291],[76,281],[145,96],[147,25],[65,138],[104,222],[98,32],[75,49],[64,145],[41,220],[38,131],[0,101],[-38,48],[-90,92],[-114,84],[-78,158],[-67,272],[99,255],[107,237],[-37,189],[-59,92],[-52,210],[-114,194],[-66,193],[-15,171],[73,167],[71,168],[60,78],[84,57],[103,58],[77,81],[119,81],[91,105],[60,48],[74,86],[0,131],[10,62],[-4,85],[-15,71],[-24,37],[13,42],[37,52],[34,42],[14,79],[-8,64],[-42,68],[-35,37],[-15,33],[9,42],[23,31],[34,22],[8,1],[38,5],[17,11],[28,20],[7,5],[40,28],[45,2],[7,-2],[39,-8],[8,-2],[34,-1],[34,-1],[69,29],[62,40],[43,38],[3,5],[50,82],[70,99],[69,86],[21,27],[35,49],[54,166],[17,54],[43,107],[49,118],[22,53],[77,199],[50,45],[69,8],[45,-30],[33,-20],[74,-47],[66,18],[62,47],[7,44],[0,53],[3,34],[4,62],[2,15],[13,119],[23,127],[22,27],[20,11],[8,1],[24,5],[46,103],[17,23],[14,17],[32,39],[7,10],[57,62],[33,40],[12,31],[-5,46],[-12,120],[-43,115],[-18,111],[2,64],[10,90],[-17,64],[-27,34],[-32,9],[-24,7],[-23,3],[-33,4],[-77,6],[-10,1],[-23,-1],[-42,-2],[-42,28],[-34,19],[-67,36],[-31,43],[-8,11],[-8,3],[-20,8],[-65,7],[-4,1],[-55,9],[-70,42],[-69,63],[-6,5],[-37,37],[-24,45],[-22,41],[-36,65],[-26,19],[-43,-19],[-47,-25],[-32,17],[-35,42],[-38,55],[-26,101],[-19,71],[-26,42],[-26,19],[-25,7],[-14,18],[-9,97],[0,3],[2,43],[-12,40],[-28,45],[-37,90],[-6,14],[-31,81],[-12,105],[-12,51],[-27,28],[-3,4],[-16,12],[-26,-14],[-26,-12],[-2,-1],[-20,-2],[-26,-4],[-77,9],[-58,9],[-7,2],[-65,16],[-21,-7],[-22,-6],[-35,-10],[-64,-9],[-10,-1],[-33,-4],[-12,-1],[-15,1],[-53,3],[-37,50],[-42,42],[-82,30],[-58,-41],[-58,-40],[-37,-72],[2,-83],[6,-43],[11,-61],[-35,-85],[-26,-40],[-47,-23],[-42,8],[-32,-40],[-4,-5],[-14,-25],[-6,-29],[12,-30],[9,-25],[29,-63],[31,-54],[7,-12],[43,-79],[39,-65],[17,-94],[0,-88],[-22,-52],[-44,-95],[-66,-69],[-62,-9],[-49,13],[-45,10],[-13,3],[-61,-19],[-64,-57],[-53,-14],[-47,23],[-54,59],[-42,22],[-61,-9],[-52,-51],[-26,-26],[-62,-90],[-29,-68],[-36,-86],[-8,-20],[-28,-67],[-30,-55],[-97,-185],[-120,-128],[-8,-9],[-50,-99],[19,-109],[62,-155],[81,-161],[-12,-84],[-56,-123],[-88,-52],[-92,-37],[-18,-15],[-52,-47],[-82,23],[-57,-63],[-74,-41],[-150,-23],[-67,-83],[-66,-83],[-71,-56],[-93,-123],[-91,-169],[-193,-211],[-121,-46],[-268,-104],[-304,-244],[-382,-321],[-120,-361],[-198,-159],[-514,-190],[-278,107],[-125,276],[-440,13],[-226,71],[-168,224],[-235,186],[-150,210],[-651,742]],[[298386,310406],[81,79],[132,167],[137,307],[19,32],[503,786],[17,41],[133,321],[-16,366],[-87,613],[-93,357],[-203,297],[264,281],[190,136],[247,15],[223,117],[191,178],[163,192],[387,508],[332,597],[118,199],[73,226],[64,213],[163,363],[87,282],[89,215],[23,57],[24,57],[90,239],[178,474],[205,490],[437,542],[26,247],[160,1526],[410,3899],[225,2138],[35,337],[4,33],[3,33],[10,93],[217,2068],[398,3789],[50,483],[416,3972],[317,2138],[500,3374],[568,3777],[23,258],[57,646],[16,343],[-74,383]],[[305918,348690],[4293,330],[4672,359],[17189,1322],[2696,-2232],[58,-35],[943,-5301],[4,-22],[21,-118],[1482,-8323],[232,-1303],[19,-108],[93,-352],[227,-860],[88,-335]],[[337935,331712],[-1873,-4584],[-57,-138],[-22,-55],[-572,-1399],[-521,-1276],[-572,-1399],[-1857,-4540],[-757,-1854],[-3161,-7731]],[[504189,273867],[-1142,-128],[12,-1577],[17,-2214],[17,-2179],[1,-110],[1,-135],[-2,-2],[-3,-4],[-8,-10],[-16,-20],[-847,-1036],[-194,-180],[-116,-100],[-132,-62],[-62,-13],[-37,-28],[-19,-29],[-23,-58],[-34,-132],[-23,-89],[-12,-87],[-11,-163],[-18,-157],[-69,-525],[4,-218],[41,-174],[-41,-187],[-66,-230],[-161,-336],[-165,-262],[-122,-155],[-85,-190],[-95,-184],[-45,-85],[-45,-86],[-306,-383],[-112,-74],[-352,-386],[-134,-178],[-161,-180],[-445,-274],[-293,-193],[-293,-193],[-273,-124],[-280,-175],[-281,-286],[-578,-797],[-35,-70],[-172,-343],[-43,-177],[27,-174],[178,-362],[238,-313],[133,-160],[51,-137],[11,-206],[-107,-261],[-330,-311],[-190,-112],[-231,6],[-388,130],[-131,12],[-112,-49],[-54,-162],[-54,-218],[-53,-298],[-149,-324],[-173,-417],[-173,-411],[-281,-734],[-99,-248],[-8,-20],[-116,-274],[-175,-55],[-176,-55],[-33,-32],[-238,-227],[-95,-179],[-27,-61],[-72,-164],[-78,-87],[-78,-88],[-120,-31],[-97,3],[-97,4],[-120,-33],[-32,-9],[-132,-84],[-48,-71],[-47,-72],[-75,-205],[-25,-311],[-4,-249],[-160,-84],[-30,-15],[-140,-31],[-42,0],[-129,0],[-35,0],[-102,-18],[-113,-20],[-6,-1],[-217,-49],[-153,-49],[-78,-50],[-62,-106],[-59,-176],[-143,-254],[-111,-136],[-124,-75],[-128,-6],[-91,62],[-206,131],[-95,0],[-70,-88],[21,-149],[108,-441],[94,-423],[4,-287],[-37,-187],[-111,-170],[-120,-191],[-37,-143],[-33,-194],[-33,-93],[-46,-25],[-45,-25],[-120,44],[-114,53],[-120,-15],[-112,-44],[-46,-118],[21,-175],[78,-224],[71,-261],[39,-226],[-7,-191],[-62,-299],[-66,-112],[-99,-50],[-103,37],[-82,94],[-62,143],[-124,361],[-67,172],[-98,171],[-136,217],[-174,169],[-123,86],[-116,7],[-78,-44],[-41,-93],[12,-168],[99,-405],[-4,-261],[-74,-218],[-128,-181],[-99,-180],[-79,-237],[-58,-348],[-57,-318],[-124,-299],[-161,-155],[-165,-56],[-187,-99],[-135,-131],[-107,-187],[-223,-318],[-198,-118],[-161,-19],[-144,81],[-75,256],[-20,367],[-78,405],[-108,354],[-153,305],[-84,75],[-85,75],[-99,24],[-177,-49],[-278,-184],[-180,-34],[-264,0],[-249,-93],[-597,-268],[-437,-127],[-413,-72],[-487,62],[-520,224],[-437,261],[-248,299],[-116,436],[-107,1207],[-132,436],[-404,747],[-528,710],[-372,386],[-256,124],[-255,124],[-611,287],[-470,62],[-463,-261],[-594,-673],[-412,-435],[-203,-381],[-53,-379],[72,-417],[118,-778],[-42,-423],[-181,-299],[-264,-162],[-334,19],[-335,19],[-561,211],[-313,-61],[-314,-61],[-545,-201],[-250,36]],[[473974,246785],[3,188],[-66,186],[-91,411],[-140,386],[-330,498],[-446,436],[-545,312],[-50,170],[43,176],[7,192],[-276,-42],[-142,109],[-184,519],[-27,216],[51,402],[-1,616],[-164,482],[-21,805],[70,596],[51,166],[211,265],[0,191],[197,301],[304,260],[142,35],[127,-52],[340,-263],[141,-34],[120,16],[397,-130],[126,9],[80,141],[-2,175],[-283,-12],[-296,66],[-241,276],[-183,310],[-389,450],[-218,323],[-340,411],[-78,155],[-20,203],[40,399],[-19,175],[-269,-116],[-78,152],[49,204],[342,671],[237,456],[121,224],[-726,705],[-407,33],[-390,-124],[-279,22],[-409,277],[-319,16],[-99,-249],[-162,-107],[-195,78],[-302,121]],[[468986,259642],[24,560],[-35,296],[-37,327],[4,306],[49,257],[52,145],[301,388],[185,188],[82,131],[37,89],[40,68],[143,138],[199,147],[87,58],[21,54],[0,58],[-14,133],[-18,74],[-14,73],[19,76],[71,71],[74,65],[20,74],[14,449],[-9,77],[-51,159],[-14,116],[11,447],[1,34],[6,18],[3,6],[9,17],[10,16],[23,6],[10,-1],[342,-52],[175,-16],[261,-19],[25,-1],[35,-10],[39,-12],[132,-17],[125,-16],[60,-8],[63,-6],[29,10],[30,20],[21,25],[21,25],[34,58],[31,111],[110,248],[163,304],[153,263],[16,28],[173,349],[86,175],[39,79],[47,95],[141,298],[223,475],[137,247],[2,4],[31,69],[2,5],[53,166],[3,9],[1,4],[50,206],[36,148],[67,275],[6,24],[1,4],[26,106],[274,1229],[3,16],[4,12],[20,82],[12,38],[8,20],[10,22],[4,3],[13,11],[19,14],[19,7],[20,8],[44,2],[2,0],[5,0],[42,3],[9,0],[409,16],[260,12],[280,20],[80,-1],[74,49],[55,116],[13,150],[21,235],[54,611],[32,454],[1,11],[1,13],[68,879],[67,1012],[29,366],[25,277],[4,48],[5,191],[-7,160],[-41,126],[-7,20],[-37,130],[-29,102],[6,43],[20,131],[125,636],[6,31],[23,80],[39,142],[20,72],[11,30],[3,8],[136,373],[223,572],[27,68],[320,819],[70,203],[132,379],[75,140],[44,60],[98,130],[47,60],[46,54],[5,6],[29,35],[50,60],[36,44],[49,58],[41,98],[15,106],[9,96],[33,134],[45,126],[36,102],[77,258],[29,45],[12,18],[25,17],[22,32],[19,28],[20,35],[19,35],[13,25],[21,45],[25,49],[19,39],[91,261],[-103,3814],[-12,447],[-1,35],[-65,2415],[-2,48],[-2,97],[-220,8127],[-42,1584],[-3,78],[-53,1980],[-56,2058],[-6,247],[-56,2058],[-12,435],[-87,3233],[-71,2637],[-39,1435],[-50,1858],[-1,33],[-5,193],[-1,29],[-2,86],[-3,85],[-45,1676],[-84,3102],[-58,2150],[-27,1007],[-3,132],[-34,1258],[-144,366],[-351,106],[-284,86],[-154,152],[-468,729],[-83,269],[14,569],[77,467],[254,826],[51,480],[-28,305],[-134,325],[-320,238],[-275,37],[-693,-128],[-232,82],[-128,172],[-35,199],[69,526],[290,1303],[113,343],[-28,1006],[8,1161],[-64,698],[-119,330],[-70,103],[-484,375],[-1200,1500],[-339,284],[-183,84],[-432,97],[-268,339],[-233,192],[-297,117],[-581,30],[-217,60],[-87,101],[-217,642],[-163,277],[-170,202],[-508,229],[-439,58],[-361,-60],[-212,-121],[-367,-379],[-197,-54],[-207,61],[-126,189],[-411,441],[-146,95],[-490,170],[-112,108],[-146,342],[-80,186],[-7,203],[-7,203]],[[464790,339740],[149,52],[466,-4],[120,32],[84,406],[121,217],[402,370],[100,157],[163,400],[26,208],[-61,462],[-66,151],[-401,609],[-64,360],[37,170],[5,22],[432,783],[34,246],[-49,420],[183,904],[79,240],[184,269],[818,603],[106,213],[22,180],[77,189],[121,152],[289,119],[85,125],[42,229],[-6,444],[170,261],[311,58],[439,-41],[182,19],[341,78],[127,71],[177,364],[112,778],[43,182],[77,144],[127,-69],[226,-750],[77,-147],[460,-227],[248,-282],[114,-372],[98,-213],[239,-218],[135,-58],[149,-13],[430,215],[377,329],[168,280],[458,1278],[263,423],[183,53]],[[474019,350611],[-52,-373],[-70,-345],[24,-475],[81,-389],[82,-389],[191,-384],[197,-172],[317,-43],[120,-111],[199,-288],[127,-66],[233,-68],[275,164],[121,-42],[155,-114],[135,-175],[140,-352],[64,-411],[112,-37],[71,17],[72,17],[170,2],[596,66],[384,329],[218,227],[143,227],[232,375],[339,180],[160,63],[161,63],[272,146],[466,318],[339,68],[368,68],[353,68],[173,-34],[218,-113],[19,-188],[19,-187],[197,-76],[66,-26],[140,37],[140,36],[234,-251],[162,-24],[544,81],[303,-168],[323,-11],[159,-14],[166,-59],[9,-4],[8,-2],[8,-3],[54,-13],[1,0],[4,-1],[73,-23],[120,13],[125,11],[73,6],[73,5],[108,-10],[60,-19],[70,-44],[158,-90],[131,-95],[106,-95],[154,-260],[132,-256],[77,-402],[49,-176],[114,-140],[132,-58],[386,33],[134,-30],[103,-88],[164,-499],[140,-628],[67,-151],[54,-117],[102,-45],[240,28],[282,131],[124,17],[210,-91],[245,-79],[188,-57],[240,11],[83,165],[75,209],[150,494],[72,300],[56,85],[86,45],[181,80],[210,215],[241,165],[195,374],[218,192],[177,46],[300,91],[124,5],[185,-176],[142,-136],[301,-215],[158,-17],[158,-17],[270,23],[293,113],[196,374],[113,318],[52,544],[38,635],[-150,497],[-86,399],[20,278],[10,25],[132,91],[345,158],[307,127],[138,-32],[138,-32],[308,78],[537,131],[245,210],[181,112],[44,-20],[44,-19],[81,-36],[267,-264],[377,-297],[154,-53],[159,-58],[94,37],[94,37],[132,125],[612,776],[256,386],[118,159],[453,612],[406,-46],[147,84],[274,155],[272,289],[248,278],[102,27],[103,28],[141,-95],[59,-128],[104,-231],[161,-600],[95,-283],[211,-147],[212,-31],[103,-15],[574,335],[47,4],[900,86],[248,173],[113,-119],[332,-650],[155,-121],[156,-36],[297,10],[213,-88]],[[670050,220200],[6045,2579],[794,339],[511,55],[1792,196],[1094,119],[1016,149],[324,69],[251,140],[64,36],[164,189],[96,220],[346,935],[186,348],[413,364],[69,-467],[15,-66],[18,-46],[29,-50],[73,-96],[296,-379],[476,-1351],[19,-53],[793,-2252],[-852,-996],[152,-661],[120,-150],[112,-140],[364,-456],[897,-1124],[-262,-383],[-501,-734],[206,-723],[158,-508],[88,-239],[88,-240],[2,-6],[42,-140],[72,-252],[214,-752],[65,-233],[2,-8],[56,-168],[6,-19],[29,-97],[11,-37],[13,-96],[46,-350],[1,-8],[20,-302],[21,-303],[2,-59],[9,-242],[6,-147],[10,-282],[-14,-379],[-7,-365],[-9,-477],[1228,-693],[2165,-1221],[395,-222],[140,-79],[-31,-67],[-58,-129],[-875,-1945],[-1267,-2817],[-498,-1107],[-128,-285],[-138,-307],[-1434,-3187],[-403,-898],[-9,-97],[-9,-97],[-16,-170],[-732,-7886],[-91,-975]],[[545720,262407],[-1300,-1507],[-79,-293],[-20,-213],[-157,-315],[-153,-3337],[-40,-1518],[184,-1074],[112,-243],[33,-127],[9,-118],[-5,-257],[11,-193],[25,-185],[24,-160],[-4,-111],[-9,-96],[-22,-141],[-61,-96],[-102,-111],[-124,-138],[-93,-86],[-114,-115],[-119,-100],[-47,-41],[-35,-75],[-9,-124],[-35,-77],[-128,-182],[-86,-80],[-88,-61],[-78,-44],[-44,-69],[-24,-64],[-22,-102],[49,-276],[-9,-107],[-56,-56],[-35,-36],[-55,-19],[-46,-19],[-41,-27],[-88,-152],[-101,-174],[-57,-64],[-53,-36],[-64,-25],[-58,-31],[-110,-69],[-114,-100],[-62,-57],[-35,-9],[-17,0],[-19,2],[-27,-9],[-35,-19],[-74,-54],[-41,-11],[-25,-17],[-55,-33],[-71,-7],[-80,22],[-78,18],[-74,28],[-46,34],[-27,25],[-27,8],[-30,17],[-12,33],[-13,29],[-21,-4],[-18,-49],[55,-56],[55,-56],[74,-63],[47,-21],[62,-12],[70,-8],[44,-12],[24,-17],[6,-23],[-1,-50],[-6,-23],[-12,-23],[-38,-59],[-25,-43],[-14,-32],[-4,-16],[-1,-18],[2,-22],[5,-20],[9,-21],[11,-17],[7,-7],[7,-7],[24,-10],[26,-8],[21,-6],[15,-8],[27,-16],[24,-19],[9,-15],[10,-42],[3,-25],[-3,-31],[-4,-50],[0,-54],[3,-52],[21,-169],[14,-156],[3,-101],[-4,-96],[-2,-50],[4,-37],[7,-17],[14,-22],[131,-113],[81,-95],[0,-144],[-5,-34],[-15,-32],[-26,-30],[-33,-22],[-34,-10],[-32,-11],[-32,-21],[-59,-32],[-62,-39],[-68,-47],[-47,-38],[-100,-104],[-75,-85],[-67,-81],[-41,-53],[-47,-61],[-45,-56],[-36,-47],[-24,-37],[-27,-49],[-88,-167],[-57,-110],[0,-2],[-8,-14],[-25,-47],[-3,-5],[-39,-63],[-27,-66],[-15,-63],[-7,-64],[-2,-19],[-6,-103],[2,-110],[8,-52],[-1,-66],[6,-63],[17,-52],[28,-48],[26,-45],[23,-47],[13,-29],[9,-49],[5,-87],[3,-101],[1,-38],[2,-66],[-3,-45],[-8,-55],[-30,-97],[-70,-236],[-104,-343],[-32,-103],[-21,-92],[-91,-527],[-85,-466],[-37,-204],[-4,-17],[-19,-107],[-6,-82],[2,-102],[7,-57],[22,-158],[101,-620],[9,-57],[9,-57],[9,-83],[3,-37],[1,-2],[2,-46],[0,-14],[1,-19],[2,-39],[0,-3],[-522,242],[-158,71],[-157,54],[-152,30],[-107,18],[-84,6],[-173,2],[-235,-10],[-836,-60],[-825,30],[-769,32],[-265,15],[-83,7],[-80,7],[-187,17],[-23,2],[-363,36],[-573,58],[-830,91],[-320,34],[-257,27],[-162,16],[-143,14],[-13,1],[-239,22],[-186,15],[-244,24],[-215,18],[-117,22],[-138,33],[-56,13],[-152,37],[-15,-24],[-14,-25],[-79,-131],[-44,-72],[-296,-492],[-38,-62],[58,-145],[-15,-24],[-107,61],[-176,-278],[-175,-279],[30,-67],[31,-67],[-22,-38],[-101,79],[-49,-82],[-281,-473],[-468,-778],[784,-963],[967,-1187],[16,-20],[-527,-204],[-399,-534],[-18,-24],[557,-1375],[231,165],[299,213],[210,149],[388,276],[727,517],[23,-61],[134,-343],[493,-1262],[26,17],[349,223],[14,9],[12,-109],[3,-25],[3,-25],[-6,-69],[-24,-58],[-41,-42],[-46,-38],[-47,-28],[-52,-54],[-29,-53],[-5,-27],[-5,-26],[6,-47],[21,-39],[21,-39],[44,-46],[31,-14],[13,-8],[14,-8],[2,-21],[21,-35],[31,0],[35,-1],[18,-7],[14,-49],[10,-50],[8,-34],[23,-28],[8,-22],[21,-40],[31,-34],[23,-32],[55,-45],[28,-22],[97,-83],[48,-53],[6,-32],[42,-48],[55,-59],[35,-37],[35,-38],[27,-35],[-95,-99],[-21,-18],[-56,-48],[-14,-35],[-28,-26],[-69,-18],[-60,-38],[-39,-36],[-21,-24],[-33,7],[-87,-54],[-101,-145],[-101,-145],[-84,-170],[-44,-91],[-6,-123],[6,-96],[41,-62],[63,-95],[47,-234],[34,-169],[-17,-77],[-20,-86],[-113,-502],[-16,-75],[-67,-303],[13,-77],[12,-77],[-15,-48],[-19,-21],[-7,-29],[-11,-48],[-12,-60],[3,-37],[25,-22],[15,-17],[15,-17],[16,-21],[16,-21],[17,-20],[0,-24],[-1,-24],[27,-53],[3,-28],[-7,-33],[-6,-33],[-11,-37],[-11,-36],[-48,-70],[-23,-27],[-28,2],[-47,24],[-9,1],[-10,1],[-12,-15],[-13,-15],[-26,-43],[-30,-30],[-18,-14],[-17,-33],[-27,-57],[-10,-31],[-12,-13],[-12,-13],[-28,-1],[-8,-16],[1,-33],[9,-45],[9,-44],[0,-21],[-5,-13],[-4,-14],[-28,-11],[-33,4],[-13,1],[-17,-26],[-2,-5],[-6,-23],[-6,-23],[24,-54],[9,-30],[-5,-32],[-18,-16],[-32,-8],[-16,-5],[-17,-5],[-15,-12],[-16,-11],[-14,-24],[0,-47],[-3,-29],[-10,-15],[-18,-7],[-1,-2],[-22,-21],[-40,-91],[124,-71],[124,-72],[347,-200],[69,-48],[11,-7],[11,-8],[11,-7],[69,-55],[48,-52],[86,-117],[162,-217],[36,-50],[70,-97],[115,-146],[52,-47],[55,-35],[43,-16],[42,-16],[117,-31],[85,-4],[17,-1],[18,0],[87,0],[109,1],[91,8],[0,-25],[1,-78],[4,-282],[8,-618],[-5,-121],[-13,-92],[-17,-75],[-18,-86],[-7,-73],[-6,-49],[0,-142],[-9,-71],[-20,-42],[-29,-61],[-48,-70],[-37,-39],[-44,-34],[-51,-26],[-36,-32],[-59,-31],[-137,-71],[-138,-72],[-25,-29],[-57,-73],[-89,-111],[-138,-194],[-29,-40],[-59,-153],[-190,-409],[-21,-56],[-19,-71],[-47,-139],[-102,-352],[-30,-99],[-75,-248],[-18,-69],[-11,-59],[-13,-73],[-5,-68],[-16,-70],[-23,-55],[-32,-68],[-54,-53],[-39,-14],[-39,6],[-48,28],[-46,43],[-43,45],[-33,15],[-78,35],[-111,34],[-41,12],[-42,12],[-18,5],[-24,5],[-23,4],[-39,-9],[-39,-21],[-48,-27],[-78,-61],[-121,-80],[-70,-59],[-11,-2],[-11,-2],[-26,-5],[-26,-6],[-43,7],[-40,18],[-49,19],[-39,10],[-51,20],[-40,28],[-46,37],[-76,48],[-80,51],[-67,35],[-29,14],[-28,13],[-43,6],[-34,-13],[-32,-18],[-37,-41],[-18,-27],[-34,-52],[-23,-54],[-23,-54],[-56,-130],[-48,-109],[-41,-128],[-45,-189],[-88,-300],[-53,-181],[-18,-35],[-18,-22],[-18,-16],[-14,-6],[21,-45],[33,-71],[11,-23],[55,-120],[44,-100],[10,-55],[3,-27],[4,-27],[-18,-229],[-2,-25],[-6,-75],[-1,-19],[-4,-47],[-2,-30],[-6,-94],[0,-21],[-1,-6],[0,-14],[-2,-63],[-4,-25],[-2,-17],[-12,-24],[-9,-10],[-9,-9],[-28,-9],[-3,-1],[-31,2],[-16,2],[-24,10],[-31,12],[-12,5],[-23,7],[-31,10],[-90,29],[-16,5],[-56,3],[-36,-13],[-23,-8],[-140,-70],[-236,-117],[-92,-46],[-46,-23],[-126,-63],[-21,-10],[-52,-26],[5,-24],[24,-104],[8,-35],[10,-54],[15,-85],[20,-103],[7,-53],[25,-93],[231,-601],[17,-49],[18,-48],[54,-105],[49,-78],[38,-55],[110,-94],[52,-65],[140,-204],[66,-102],[104,-137],[128,-131],[147,-123],[64,-43],[46,-22],[43,-10],[77,13],[37,4],[45,-11],[75,-8],[45,-2],[50,22],[182,129],[164,88],[32,17],[35,9],[65,-3],[33,-2],[29,-5],[68,-29],[32,-8],[64,-15],[332,-53],[23,-4],[6,-3],[21,-12],[207,-156],[47,-30],[33,-20],[120,-46],[24,-16],[40,-40],[26,-34],[29,-35],[23,-46],[34,-80],[89,-213],[47,-122],[19,-40],[19,-22],[18,-12],[16,-10],[20,-19],[17,-28],[16,-39],[10,-25],[14,-33],[24,-32],[33,-14],[49,-6],[42,7],[83,12],[31,-4],[21,-5],[107,-49],[143,-57],[96,-29],[63,-17],[75,-27],[94,-34],[63,-30],[32,-21],[91,-87],[26,-14],[32,-8],[34,5],[23,17],[72,47],[104,80],[55,50],[20,28],[10,31],[27,86],[13,46],[20,33],[20,31],[20,18],[31,8],[47,7],[37,2],[38,0],[58,4],[103,-4],[40,-10],[29,-10],[22,-22],[22,-22],[29,-47],[46,-57],[31,-26],[28,-3],[27,10],[48,22],[55,21],[99,30],[50,19],[46,23],[44,22],[41,41],[192,254],[28,46],[33,61],[41,74],[40,84],[38,72],[18,32],[16,17],[17,17],[95,73],[111,87],[73,41],[30,13],[24,2],[29,-7],[27,-8],[34,-17],[66,-33],[32,-24],[55,-49],[49,-38],[29,-18],[38,-15],[33,-10],[38,1],[60,0],[46,8],[66,23],[82,28],[71,34],[100,37],[64,15],[64,21],[84,4],[146,1],[40,6],[35,22],[158,108],[49,25],[52,14],[40,19],[66,40],[66,41],[43,7],[57,0],[155,-13],[80,10],[60,16],[64,35],[222,146],[50,32],[80,36],[57,4],[84,-9],[68,3],[44,5],[64,41],[97,63],[36,15],[49,12],[62,2],[64,9],[35,18],[134,115],[193,182],[24,8],[21,0],[27,-14],[28,-18],[52,-73],[29,-35],[23,-36],[37,-47],[30,-30],[33,-29],[16,-9],[16,-10],[37,-15],[34,-4],[27,11],[31,20],[27,46],[28,40],[75,60],[46,42],[73,109],[52,102],[52,76],[51,70],[52,74],[162,204],[172,-192],[80,-72],[80,-73],[60,-37],[79,-10],[106,17],[132,14],[74,-3],[38,-2],[20,-1],[24,-7],[66,-36],[140,-108],[54,-49],[76,-76],[417,-487],[60,-100],[31,-69],[19,-101],[12,-137],[6,-165],[2,-185],[5,-97],[10,-53],[7,-37],[17,-46],[21,-48],[16,-22],[16,-22],[37,-33],[43,-13],[60,-3],[59,-2],[66,6],[53,4],[229,24],[58,6],[42,-5],[30,-7],[20,-9],[155,-69],[250,-87],[255,-89],[67,-31],[79,-43],[91,-55],[80,-40],[97,-33],[97,-34],[70,-20],[81,-19],[119,-10],[77,-14],[84,-14],[43,-13],[40,-19],[37,-21],[32,-32],[54,-96],[40,-105],[55,-165],[48,-138],[24,-72],[24,-65],[46,-101],[45,-82],[38,-74],[43,-62],[38,-40],[43,-35],[46,-21],[42,-13],[61,-13],[65,-9],[80,-1],[67,5],[79,16],[90,33],[63,25],[52,29],[-21,-100],[-13,-82],[0,-74],[1,-70],[10,-54],[25,-93],[28,-66],[30,-71],[10,-37],[10,-49],[14,-43],[1,-30],[-14,-59],[-70,-248],[-58,-186],[-11,-56],[-7,-59],[2,-87],[-2,-42],[-2,-49],[-12,-53],[-22,-71],[-26,-67],[-58,-105],[-52,-94],[-49,-94],[-27,-48],[-15,-56],[-15,-51],[-10,-41],[-17,-34],[-22,-38],[-27,-35],[-26,-27],[-81,-3],[-47,-4],[-43,-7],[-49,-14],[-38,-26],[-35,-30],[-27,-33],[-28,-40],[-63,-88],[-32,-41],[-38,-37],[-39,-42],[-41,-20],[-30,-8],[-27,-22],[-18,-28],[-38,-54],[-32,-41],[-18,-25],[-35,-45],[-24,-33],[-14,-14],[-24,-21],[-15,-13],[-22,-2],[-11,2],[-19,4],[-20,21],[-70,66],[-14,13],[2,-14],[4,-15],[-1,-15],[-3,-9],[-7,-11],[-21,-31],[-15,-24],[-24,-40],[-43,-76],[-52,-84],[-45,-92],[-49,-114],[-44,-114],[-46,-105],[-56,-124],[-41,-80],[-55,-97],[-25,-42],[-60,-91],[-41,-70],[-13,-31],[-10,-40],[-21,-80],[-30,-88],[-41,-108],[-32,-91],[-15,-36],[-39,-129],[-18,-60],[-34,-77],[-28,-61],[-57,-95],[-43,-72],[-29,-53],[-33,-59],[-20,-69],[-21,-73],[-14,-46],[-19,-58],[-19,-52],[-9,-40],[-24,-120],[-12,-37],[-7,-17],[-12,-17],[-20,-24],[-19,-20],[-27,-18],[-49,-26],[-32,-14],[-23,-10],[-28,-13],[-18,-11],[-80,-55],[-86,-55],[-53,-31],[-40,-14],[-21,-37],[-29,-48],[-15,-31],[-12,-38],[-4,-36],[307,-1052],[656,-2245],[218,-123],[623,-121],[50,-80],[628,-450],[368,-622],[100,-102],[275,-176],[205,-58],[77,-186],[70,-310],[2,-216],[-52,-320],[51,-436],[311,-452]],[[548405,202542],[-290,-188],[-162,-185],[-122,-218],[-176,-493],[-134,-282],[-366,-434],[-446,-184],[-636,-29],[-282,-71],[-355,-157],[-267,-250],[-566,-812],[-206,-371],[-388,1],[-263,-56],[-197,-249],[-125,-71],[-151,21],[-238,215],[-291,0],[-184,198],[-147,212],[-107,409],[-85,158],[-261,305],[-248,385],[-319,284],[-98,155],[-43,66],[-103,351],[-55,137],[-93,83],[-126,46],[-258,-28],[-389,1],[-315,26],[-477,39],[-297,-25],[-167,-82],[-122,-92],[-131,-78],[-176,-124],[-478,-362],[-58,-37],[-77,-49],[-182,-117],[-436,-244],[-469,-333],[-271,-197],[-380,-297],[-133,-18],[-155,70],[-241,180],[-240,111],[-290,78],[-270,-28],[-524,-83],[-505,-181],[-766,-250],[-218,-75],[-493,-193],[-46,-58],[-46,-59],[-85,-303],[-67,-312],[-182,-177],[-146,-181],[-231,-183],[-168,-97],[-314,-209],[-219,-89],[-149,-60],[-185,-119],[-466,-301],[-851,-367],[-386,-98],[-319,15],[-241,-163],[-273,-254],[-685,-422],[-487,-237],[-22,-10],[-193,-94],[-412,-57],[-350,60],[-400,61],[-146,-41],[-146,-42],[-200,-147],[-246,-396],[-100,-109],[-418,-291],[-119,-174],[-99,-217],[-71,-257],[-13,-176],[49,-668],[-15,-221],[-76,-233],[-99,-152],[-593,-479],[-162,-65],[-113,-104],[-73,-88],[-48,-58],[-143,-104],[-115,-73],[-115,-73],[-363,-157],[-98,-42],[-410,-68],[-9,-2],[-3,0],[-1,0],[-233,-39],[-186,5],[-183,52],[-111,-16],[-52,-8],[-258,-141],[-169,-91],[-357,-238],[-311,-137],[-143,16],[-253,65],[-332,220],[-349,147],[-95,32],[-94,32],[-169,3],[-74,8],[-201,24],[-148,67],[-256,268],[-133,70],[-171,-14],[-157,78],[-277,239],[-145,43],[-184,-18],[-136,-117],[-136,-116],[-140,-46],[-139,-45],[-213,-218],[-401,-513],[-80,-52],[-81,-51],[-401,-52],[-358,110],[-160,76],[-136,109],[-474,669],[-210,217],[-163,107],[-163,-11],[-405,-295],[-174,-38],[-256,4],[-290,76],[-162,-48],[-126,-136],[-157,-92],[-127,41],[-197,260],[-227,456],[-156,124],[-148,16],[-246,186],[-282,118],[-313,74],[-132,-76]],[[509659,192383],[-207,796],[-1388,5333],[-902,3464],[-66,254],[-3,12],[-8,31],[-6,22],[-6,23],[-22,84],[-59,230],[-4,15],[-13,49],[-515,1980],[-51,193],[-3,14],[-31,120],[-45,171],[-159,613],[-113,431],[-65,250],[-639,2456],[-82,316],[-258,992],[-2,11],[-1,4],[-30,124],[-76,315],[-293,1222],[-28,120],[-6,23],[-13,-87],[-10,-31],[-14,-6],[-13,-6],[-3,-26],[-9,-20],[-25,-22],[-9,2],[-8,2],[-26,19],[-18,-5],[-18,-22],[-14,3],[-7,-22],[15,-60],[-1,-27],[-1,-27],[-7,-50],[-18,-29],[-17,-1],[-17,0],[-20,-29],[-13,-2],[-4,11],[-5,11],[-17,5],[-12,0],[-12,0],[-25,0],[-60,19],[-26,10],[-26,11],[-12,0],[-66,-2],[-15,10],[-15,9],[-15,-4],[-14,-5],[-14,-6],[-13,-7],[-10,23],[-20,4],[-20,5],[-61,-7],[-23,-3],[-15,6],[-90,31],[-125,-18],[-16,-3],[-55,45],[-81,11],[-21,-2],[-51,-6],[-54,13],[-3,1],[-9,2],[-4,2],[-4,1],[-43,13],[-42,24],[0,-23],[-27,-12],[-37,32],[-20,-19],[-14,10],[-13,10],[-48,16],[-18,-9],[-9,-5],[-9,-5],[-12,-1],[-53,-8],[-33,19],[-33,19],[-24,-13],[-78,16],[-66,2],[-35,13],[-73,29],[-42,-3],[-23,-16],[-47,-57],[-61,-86],[-52,-138],[-10,-94],[-5,-48],[-2,-12],[-13,-90],[-63,-118],[-35,-13],[-14,-19],[-13,-19],[-21,-76],[3,-51],[-30,-65],[-16,-47],[-4,-14],[-20,-60],[-32,-40],[-11,-5],[-32,-16],[-14,-6],[-14,-1],[-19,-2],[-20,-1],[-52,-4],[-29,-23],[-6,-4],[-46,14],[-12,3],[-53,11],[-43,43],[-6,-1],[-6,-1],[-11,-2],[-21,-39],[-37,-4],[-248,-29],[-31,-4],[-11,-1],[-27,-25],[-19,-13],[-39,-27],[-19,0],[-75,0],[-50,16],[-42,13],[-8,4],[-68,34],[-12,5],[-8,9],[-52,51],[-14,18],[-44,57],[-20,26],[-7,8],[-80,101],[-125,175],[-12,18],[-137,193],[-61,85],[-2,2],[-3,5],[-2,2],[-2,3],[-3,4],[-5,7],[-2,3],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-54,75],[-28,40],[-12,10],[-172,144],[-278,232],[-23,19],[-149,124],[-103,86],[-13,11],[-13,10],[-43,36],[-271,227],[-37,30],[-16,13],[-1234,1029],[-32,27],[-195,163],[-298,248],[-196,163],[-6,6],[-10,8],[-329,274],[-36,30],[-533,445],[-142,118],[-113,94],[-30,26],[-144,120],[-34,27],[12,129],[1,13],[1,13],[16,174],[1,11],[1,18],[11,114],[5,64],[1,13],[1,4],[1,14],[16,176],[1,13],[2,12],[2,19],[7,53],[18,73],[36,97],[39,77],[9,17],[30,60],[27,54],[28,75],[28,76],[38,116],[5,34],[12,88],[-2,45],[-3,68],[-1,30],[-5,110],[-3,76],[3,18],[2,11],[2,11],[0,4],[1,4],[5,28],[-4,20],[-4,21],[-3,15],[-61,165],[-29,148],[-23,189],[-1,48],[-4,284],[-12,69],[-11,69],[-35,73],[-10,21],[-11,22],[-23,49],[-99,193],[-9,18],[-9,18],[-26,51],[-15,27],[-45,84],[-28,52],[-40,74],[-16,30],[-143,266],[-132,245],[-11,20],[-7,13],[-4,7],[-2,5],[-5,8],[-35,62],[-40,71],[-60,105],[-26,46],[-16,27],[-38,81],[-21,44],[-24,99],[-6,25],[-20,129],[-1,8],[-8,45],[-5,32],[-6,41],[-12,74],[3,95],[0,12],[0,12],[13,143],[8,72],[13,120],[19,165],[1,12],[2,14],[0,3],[30,227],[34,157],[7,33],[1,6],[3,10],[5,25],[2,9],[1,4],[0,1],[2,10],[6,27],[1,5],[1,4],[16,52],[23,70],[7,21],[8,27],[11,32],[12,38],[7,27],[6,20],[14,53],[20,72],[18,65],[18,65],[47,172],[48,177],[6,20],[7,29],[16,73],[7,42],[6,43],[1,34],[0,12],[1,12],[-12,70],[-7,32],[-27,116],[-5,19],[-22,94],[-15,86],[-34,178],[-47,254],[-1,5],[-1,4],[-3,12],[-36,167],[-27,119],[-7,39],[-34,174],[-8,76],[0,2],[-2,43],[0,11],[4,39],[14,111],[14,92],[29,182],[2,15],[3,15],[-1,11],[-1,13],[-3,33],[-2,66],[-4,50],[-3,25],[-2,25],[-4,55],[-9,107],[-1,78],[0,79],[2,115],[3,92],[3,65],[1,24],[9,63],[25,61],[56,74],[40,48],[26,39],[26,38],[10,35],[0,30],[0,11],[-2,29],[-3,39],[0,64],[-1,73],[0,2],[0,2],[0,11],[0,1],[0,8],[0,2],[-1,9],[0,21],[-2,41],[0,12],[-4,71],[-1,16],[4,63],[10,23],[4,12],[26,33],[10,8],[24,21],[6,6],[23,28],[18,21],[15,28],[23,41],[3,6],[18,33],[1,2],[2,4],[1,1],[0,1],[1,1],[2,7],[6,17],[66,182],[2,9],[17,58],[26,91],[5,18],[10,34],[1,14],[2,15],[-3,37],[-2,11],[-1,12],[-23,32],[-11,20],[-12,21],[-24,42],[-25,53],[-6,22],[-6,22],[-12,43],[-36,77],[-72,157],[-11,24],[-6,13],[-33,71],[-5,10],[-2,6],[-3,6],[-5,10],[-1,2],[-1,3],[-6,14],[-5,10],[-2,4],[0,2],[-26,58],[-27,60],[-67,151],[-26,57],[-14,32],[-29,65],[-62,140],[-41,93],[-17,40],[-69,154],[-22,50],[-57,145],[-79,200],[-28,70],[-3,13],[-26,90],[-3,148],[-1,34],[7,208],[3,87],[-8,50],[-12,57],[-25,55],[-9,10],[-29,29],[-8,7],[-52,13],[-37,-1],[-37,0],[-56,-1],[-9,0],[-171,3],[-20,1],[-189,1],[-300,3],[-72,-1],[-179,-5],[-26,0],[-247,-6],[-125,-3],[-87,159],[-100,186],[-9,16],[-8,14],[-9,16],[-103,191],[-190,350],[-30,59],[-30,59],[-54,107],[-88,174],[-21,40],[-22,40],[-117,217],[-97,181],[-51,80],[-51,79],[-2,3],[-52,53],[-101,103],[-322,265],[-322,266],[-67,58],[-295,254],[-203,174],[-60,52],[-99,85],[-131,106],[-81,65],[-80,64],[-22,36],[-21,36],[-9,32],[-8,31],[-1,40],[0,9],[32,152],[18,87],[13,46],[1,12],[2,12],[-15,14],[-77,15],[-301,40],[-137,19],[-32,7],[-75,16],[-89,41],[-191,22],[-353,18],[-124,55],[-232,94],[-178,73],[-229,93],[-91,37],[-6,2],[-23,10],[-3,1],[-79,30],[-1141,433],[-454,176],[-106,58],[-107,57],[-1734,1321],[-429,346],[-132,135],[-110,133],[-97,104],[-121,101],[-148,76],[-59,8],[-61,-2],[-141,-72],[-106,10],[-156,19],[-102,30],[-69,29],[-64,65],[-42,95],[-27,74],[5,39],[41,61],[30,67],[39,176],[43,170],[8,33],[8,33],[17,90],[4,66],[-5,86],[-48,103],[-42,80],[-42,103],[-14,88],[-30,70],[-35,39],[-6,16],[-30,77],[23,46],[17,117],[-10,118],[-24,100],[-61,210],[-70,164],[-53,113],[-66,111],[-56,67],[-84,80],[-85,35],[-89,17],[-106,-7],[-144,-21],[-103,-20],[-124,2],[-54,14],[-55,15],[-97,54],[-50,65],[-75,132],[-56,166],[-12,97],[6,181],[10,87],[31,81],[51,84],[55,59],[87,52],[79,41],[125,35],[164,55],[101,35],[76,47],[80,88],[87,146],[59,127],[56,167],[19,115],[2,70],[1,69],[-26,123],[-33,75],[-49,48],[-46,42],[-47,17],[-65,18],[-119,39],[-66,34],[-69,42],[-60,73],[-98,159],[-99,206],[-96,121],[-87,69],[-73,28],[-85,35],[-101,15],[-262,-15],[-163,-40],[-108,-46],[-97,-51],[-71,-73],[-41,-121],[-12,-149],[18,-121],[37,-101],[62,-165],[175,-316],[29,-141],[-8,-145],[-36,-110],[-71,-86],[-111,-49],[-104,-7],[-130,32],[-136,48],[-205,8],[-362,6],[-270,65],[-249,112],[-175,114],[-507,460],[-183,63],[-128,-47],[-128,-48],[-152,-236],[-68,-292],[-37,-316],[-36,-521],[-40,-263],[-53,-175],[-132,-103],[-215,-50],[-251,-30],[-217,-131],[-337,-374],[-230,-215],[-100,-48],[-98,16],[-147,80],[-95,115],[-343,766],[-115,221],[-147,157],[-115,74],[-134,8],[-175,-34],[-198,-111],[-42,-51],[-42,-51],[-84,-103],[-243,-425],[-132,-292],[-71,-192],[-138,-466],[-135,-377],[-163,-283],[-126,-180],[-56,-81],[-61,-59],[-143,-137],[-189,-59],[-179,1],[-138,25],[-186,82]],[[472375,238599],[258,447],[-173,710],[-110,710],[163,308],[81,170],[85,131],[123,86],[124,-1],[275,298],[-33,846],[16,424],[-16,323],[-66,274],[-17,697],[9,573],[16,871],[8,337],[-8,485],[41,237],[66,174],[669,99],[88,-13]],[[840528,787514],[3617,-15607],[2790,-15723],[1827,-10298],[314,-1771]],[[829910,680683],[-3020,6526],[-2695,5821],[-5926,12802],[-2419,5225],[-173,223],[-5121,6609],[-76,98],[-5443,7025],[-3948,5096],[-89,115],[-142,184],[-124,160],[-138,178],[-84,108],[-45,57],[-21,28],[-12,16]],[[791034,755843],[408,-235],[261,-305],[262,180],[159,360],[257,142],[442,-3],[542,253],[229,37],[53,-284],[6,1],[129,22],[186,245],[401,1339],[536,391],[426,7],[209,1119],[132,356],[797,441],[333,469],[635,78],[137,338],[118,187],[94,47],[86,154],[112,151],[117,145],[131,126],[133,116],[76,89],[68,67],[47,4],[42,-67],[0,-102],[-3,-67],[23,-151],[56,-40],[71,13],[35,161],[33,53],[53,-5],[83,-62],[89,-57],[43,13],[9,80],[9,124],[90,128],[87,72],[107,115],[111,33],[27,8],[82,0],[65,-22],[33,98],[32,102],[65,17],[36,77],[123,57],[53,-26],[30,16],[35,122],[41,106],[53,63],[68,-5],[68,-4],[83,-14],[80,39],[58,64],[59,124],[59,98],[67,40],[57,-13],[41,-120],[62,-45],[98,14],[53,-14],[50,89],[94,89],[142,31],[56,134],[88,49],[83,178],[68,49],[91,-5],[106,5],[71,8],[28,69],[8,123],[44,173],[29,196],[304,405],[55,163],[-20,237],[0,196],[33,93],[100,23],[71,26],[51,106],[-25,144],[12,111],[53,40],[174,-76],[86,-62],[49,80],[66,49],[50,44],[18,62],[-21,116],[32,79],[-2,113],[33,60],[49,20],[-6,147],[-20,80],[38,17],[26,-26],[45,31],[14,67],[65,40],[53,32],[49,-41],[37,-49],[71,-31],[82,-5],[239,143],[59,58],[38,77],[3,42],[6,85],[18,120],[79,20],[63,-24],[98,30],[111,116],[85,187],[89,85],[94,-9],[77,9],[83,-111],[11,-107],[81,-148],[28,-79],[68,0],[59,58],[53,27],[68,-18],[24,44],[3,71],[-39,188],[12,66],[62,49],[65,89],[-9,76],[-18,84],[338,-102],[141,155],[140,608],[150,101],[276,-147],[65,-35],[154,-81],[141,-190],[25,-15],[56,-34],[22,-14],[643,-394],[586,-359],[154,-249],[436,-71],[378,53],[330,107],[436,-783],[425,-285],[10,32],[596,1950],[87,1051],[155,382],[112,105],[343,672],[668,699],[571,83],[433,179],[247,1376],[701,447],[247,238],[133,32],[298,-38],[402,66],[431,-484],[155,78],[292,723],[303,1478],[324,410],[204,121],[227,216],[205,114],[134,154],[696,379],[1247,337],[461,-588],[198,-705],[566,-734],[365,-188],[595,-198],[106,-95],[679,-1040],[1431,-1500],[221,-232],[134,28],[270,149],[262,288],[161,538],[-71,381],[-699,1014],[-437,901],[34,183],[316,558],[75,82],[75,83],[496,759],[164,-71],[259,-684],[735,-1065],[369,-93],[415,19],[261,-145],[318,-398],[461,-444],[494,1459],[120,83],[595,-1925],[366,-557],[353,-97],[623,-10],[989,-789],[127,21],[-184,1346],[206,963],[-14,254],[-165,915],[-386,783],[-58,191],[-140,1216],[-51,243],[-148,355],[-78,384],[115,298],[1051,-178],[571,504],[321,-298],[118,-35],[131,102],[350,1167],[488,646],[170,390],[44,230],[34,92],[150,392],[91,122],[1327,1102],[143,-36],[593,-309],[119,70],[524,776],[1031,38],[369,-66],[493,174],[1024,709],[286,349],[215,337],[170,453],[100,558],[31,267],[271,1347]],[[750991,624650],[-135,-80],[-118,-46],[-53,-17],[-65,8],[-72,20],[-95,25],[-82,39],[-51,41],[-34,52],[-16,59],[0,62],[16,73],[20,56],[25,66],[51,65],[24,36],[19,42],[-1,45],[-15,58],[-14,34],[17,41],[18,61],[-6,37],[-9,36],[5,48],[-19,37],[-20,23],[-39,2],[-37,-20],[-35,-12],[-37,-35],[-47,-68],[-31,-27],[-75,-66],[-86,-60],[-43,-13],[-30,7],[-40,13],[-64,22],[-57,31],[-38,35],[-29,44],[-14,42],[-14,42],[-8,68],[-32,58],[-15,56],[-28,45],[-55,74],[-62,98],[-46,51],[-74,25],[-49,65],[-71,90],[-79,76],[-45,67],[-56,49],[-29,59],[-45,56],[-45,38],[-85,125],[-74,118],[-54,125],[-33,164],[-26,121],[-15,99],[-35,78],[-9,116],[-10,30],[-33,39],[-12,48],[4,31],[-31,136],[-20,67],[-62,141],[-44,84],[-63,59],[-30,59],[-33,82],[-22,41],[-58,90],[-31,91],[-26,103],[-7,56],[12,81],[-2,37],[-91,72],[-80,30],[-131,25],[-52,15],[-97,68],[-55,24],[-59,26],[-72,81],[-79,59],[-102,79],[-69,104],[-41,99],[-49,89],[-25,42],[-32,70],[-33,12],[-55,-32],[-79,-107],[-63,-90],[-42,-32],[-81,-57],[-91,-18],[-116,-6],[-59,-7],[-31,-34],[-18,-48],[28,-266],[27,-244],[2,-72],[-14,-47],[-28,-70],[-35,-20],[-62,6],[-62,24],[-63,18],[-234,66],[-108,4],[-108,30],[-101,7],[-97,0],[-66,-7],[-82,-12],[-81,-46],[-38,-30],[-52,-16],[-62,1],[-80,17],[-58,27],[-80,29],[-71,10],[-53,-32],[-33,-54],[-23,-119],[-12,-150],[-5,-86],[-49,-119],[-27,-37],[-33,-34],[-44,-42],[-61,-92],[-12,-60],[-24,-63],[-35,-50],[-41,-43],[-31,-10],[-44,11],[-40,79],[-142,142],[-21,32],[-70,28],[-51,49],[-102,127],[-54,35],[-45,18],[-75,-2],[-70,-22],[-70,-44],[-45,-32],[-38,-133],[-47,-66],[-15,-77],[-29,-47],[-76,-30],[-97,7],[-117,60],[-51,73],[-62,158],[-27,64],[9,110],[-24,45],[-59,16],[-35,-6],[-36,-29],[-50,-20],[-98,-40],[-66,-39],[-74,-64],[-44,-48],[-44,-166],[-30,-71],[12,-267],[-60,-83],[-91,-36],[-89,27],[-70,-27],[-141,-91],[-130,10],[-82,89],[-75,41],[-232,-15],[-150,0],[-130,-13],[-64,-19],[-78,-36],[-39,-66],[-32,-168],[-9,-181],[7,-109],[68,-209],[111,-240],[52,-157],[52,-158],[-151,-322],[-65,-172],[-116,-126],[-157,-13],[-148,-42],[-138,7],[-105,18],[-141,66],[-138,87],[-138,137],[-49,54],[-28,86],[16,91],[31,75],[28,54],[100,108],[47,120],[16,120],[-33,129],[-158,319],[-110,167],[-68,201],[-7,151],[1,113],[25,107],[-20,86],[-12,109],[-38,31],[-56,13],[-165,-54],[-79,-5],[-133,39],[-113,47],[-88,43],[-130,52],[-92,9],[-85,-35],[-86,-102],[-81,-159],[-130,-296],[-91,-183],[0,-1],[-85,-188],[-50,-105],[-39,-116],[-40,-117],[-17,-38],[-26,-12],[-41,12],[-35,3],[-44,-9],[-21,-16],[-19,-33],[-21,-53],[-17,-53],[-24,-43],[-18,-9],[-19,-9],[-22,5],[-22,5],[-90,52],[-25,9],[-26,-4],[-59,-30],[-117,-61],[-58,-12],[-69,6],[-44,24],[-19,21],[-22,12],[-27,9],[-32,2],[-31,9],[-50,7],[-50,-6],[-28,-23],[-13,-32],[1,-27],[16,-34],[15,-24],[14,-52],[6,-78],[-1,-72],[-10,-58],[-9,-59],[14,-48],[15,-28],[29,-40],[13,-35],[1,-39],[-1,-36],[-31,-71],[-83,-134],[-43,-76],[-37,-27],[-32,15],[-24,22],[-118,205],[-15,21],[-26,4],[-43,-23],[-43,-7],[-62,27],[-64,30],[-49,43],[-9,26],[-13,28],[-26,13],[-40,21],[-80,89],[-36,20],[-29,-17],[-13,20],[0,11],[0,22],[-10,14],[-17,-6],[-16,-30],[-22,-9],[-24,10],[-15,43],[-22,5],[-19,-9],[0,-10],[-17,-7],[-14,-12],[-16,-2],[-13,7],[-12,30],[-47,24],[-20,4],[-14,-23],[-1,-21],[-14,-7],[-18,20],[-10,-13],[0,-20],[-10,-32],[-14,11],[-13,10],[-19,-12],[-15,-28],[-14,-40],[-17,10],[-27,23],[-17,15],[-25,2],[-27,-12],[-6,-19],[3,-39],[12,-31],[30,-25],[25,-15],[16,-31],[9,-46],[-6,-44],[-17,-57],[-31,-61],[-17,-30],[-18,-13],[-22,10],[-20,21],[-17,33],[-1,46],[3,35],[-14,30],[-18,22],[-24,8],[-21,-8],[-18,-19],[-16,-37],[-19,-44],[-36,-82],[-41,-43],[-32,-27],[-30,-14],[-32,1],[-38,26],[-56,42],[-60,31],[-38,0],[-48,-12],[-38,-37],[-28,-56],[-9,-32],[1,-59],[10,-42],[31,-51],[38,-57],[24,-47],[16,-76],[-5,-83],[-21,-59],[-22,-40],[-39,-34],[-32,-23],[-35,2],[-34,19],[-29,50],[-50,79],[-37,82],[-43,88],[-39,56],[-48,28],[-43,9],[-27,-3],[-16,-21],[-12,-22],[-2,-33],[12,-39],[10,-29],[11,-24],[18,-12],[22,-23],[14,-39],[27,-120],[51,-70],[52,-35],[31,-36],[53,-104],[41,-113],[28,-145],[-6,-85],[-11,-50],[-18,-24],[-18,-25],[-25,-23],[-36,-2],[-33,13],[-24,16],[-21,51],[-50,105],[-63,95],[-78,95],[-76,65],[-57,50],[-59,23],[-30,9],[-20,-11],[-12,-7],[-10,-29],[-3,-32],[84,-264],[13,-68],[-4,-64],[-12,-39],[-24,-28],[-46,-21],[-76,-4],[-130,12],[-167,-3],[-26,-10],[-11,-25],[-7,-33],[2,-30],[27,-85],[33,-58],[1,-42],[-14,-22],[-57,-16],[-64,-35],[-43,-24],[-46,-52],[-43,-98],[-20,-81],[-1,-56],[5,-35],[16,-45],[45,-80],[24,-67],[11,-72],[6,-69],[3,-81],[9,-137],[-2,-60],[-15,-41],[-28,-47],[-100,-93],[-42,-23],[-32,-19],[-32,-20],[-29,-8],[-18,-5],[-37,-9],[-28,-5],[-24,2],[-46,-6],[-51,7],[-56,19],[-45,42],[-88,98],[-400,428],[-158,230],[-43,31],[-39,13],[-34,3],[-41,3],[-60,-12],[-45,0],[-39,-17],[-21,-8],[-38,-32],[-40,-33],[-65,-25],[-64,-16],[-63,-32],[-13,-27],[-1,-15],[53,-44],[69,-78],[58,-104],[22,-69],[-1,-54],[-6,-33],[-26,-34],[-33,-8],[-45,21],[-52,66],[-18,31],[-18,16],[-22,-4],[-19,-24],[-58,-213],[-180,-329],[199,-366],[-44,-110],[-140,-59],[-89,-406],[-122,-228],[-201,-187],[-354,112],[-94,73],[-100,-35],[-111,-217],[-137,-29],[-90,93],[-139,91],[-85,-43],[16,-212],[-85,-146],[-148,-60],[-106,-134],[-127,-15],[-92,161],[-132,-40],[-33,-171],[72,-204],[8,-109],[-105,-126],[-78,-257],[120,-150],[25,-115],[-30,-75],[-145,-34],[-75,-121],[110,-136],[41,-86],[11,-123],[60,-238],[108,-163],[128,-62],[42,-72],[-17,-69],[-139,-14],[-120,-19],[-87,-56],[-16,-69],[57,-48],[78,-49],[58,-395],[67,-169],[123,11],[96,5],[92,-150],[-16,-743],[57,-171],[172,-94],[305,-225],[200,-96],[106,-261],[57,-108],[64,141],[67,27],[153,-139],[163,-249],[154,3],[94,-270],[9,-423],[-58,-203],[-20,-177],[-2,-182],[23,-163],[-158,-263],[8,-79],[165,-137],[65,-484],[-117,-200],[-101,-22],[-163,367],[-399,171],[-213,-195],[-269,61],[-339,396],[-149,-95],[-142,22],[-71,121],[25,278],[-62,70],[-94,-13],[-94,39],[9,68],[39,131],[-105,150],[-209,-121],[-112,-67],[-225,161],[-7,142],[73,163],[39,109],[-14,115],[-89,89],[-149,-193],[-131,-64],[-69,166],[-375,0],[-14,-129],[101,-141],[-42,-354],[-249,-77],[-246,-50],[-37,85],[147,388],[50,294],[-84,166],[-137,-95],[-476,-329],[-113,94],[0,355],[-121,46],[-97,-128],[-86,-180],[-142,-70],[-227,-495],[-98,-140],[-126,-75],[-261,-48],[-99,-172],[-113,-541],[-71,-153],[-199,-278],[-113,-97],[-86,-184],[-96,-133],[-123,-64],[-82,-140],[-58,-168],[63,-154],[-62,-389],[126,-85],[269,-12],[-29,-204],[-83,-136],[-601,-378],[-1,-198],[-120,-112],[-156,-17],[-111,-90],[-17,-196],[-54,-163],[-136,-5],[-85,-122],[44,-165],[84,-135],[-69,-170],[-120,-102],[-45,-169],[15,-357],[206,-251],[-86,-132],[-145,-33],[-251,46],[-42,360],[-219,216],[-7,173],[-184,243],[-7,200],[-255,424],[-119,103],[-112,-108],[-143,-53],[-127,10],[-227,235],[-84,-135],[-1,-214],[-113,-98],[-459,57],[-154,-75],[-29,-177],[33,-168],[-68,-147],[-113,87],[-127,-30],[-70,-155],[-22,-179],[-85,-149],[0,-365],[-44,-183],[-84,-139],[-62,-204],[-7,-362],[-75,-141],[-3,-8],[-250,-173],[-204,-234],[-184,-320],[-217,-234],[-99,-168],[-17,-186],[-76,-182],[-7,-359],[-84,-139],[-142,25],[-121,90],[-148,-5],[-42,-165],[120,-69],[57,-195],[-77,-340],[27,-222],[141,-408],[-62,-873],[98,-245],[41,-177],[-64,-396],[66,-167],[126,-3],[185,-76],[119,-114],[248,-107],[36,-190],[-179,-118],[-141,-36],[-34,-181],[-122,-71],[-125,24],[-142,-22],[-121,99],[-141,41],[-163,316],[-544,58],[-120,120],[-29,199],[-84,144],[-105,-103],[-121,-313],[-127,23],[-213,240],[-84,172],[-14,207],[62,348],[-48,165],[-248,144],[-232,-121],[-163,82],[-127,-65],[-79,-175],[29,-171],[-63,-147],[-255,-82],[-120,-98],[-57,-176],[1,-198],[-90,-102],[-29,-15],[-23,-19],[-50,-18],[-21,-9],[-9,-49],[-37,-17],[-26,-40],[-25,-33],[-36,-32],[-59,-31],[-67,-14],[-61,-10],[-57,-2],[-59,15],[-67,45],[-48,53],[-47,64],[-36,48],[-38,29],[-41,14],[-24,-3],[-23,-2],[-30,-41],[-16,-64],[-1,-69],[-8,-66],[-9,-76],[-29,-66],[-37,-50],[-47,-31],[-50,-1],[-46,34],[-21,43],[-15,53],[0,62],[0,77],[-17,60],[-29,48],[-33,48],[-37,27],[-42,29],[-36,13],[-44,5],[-38,-24],[-28,-45],[-48,-43],[-44,-7],[-53,10],[-38,15],[-47,17],[-49,9],[-57,-18],[-58,-26],[-51,-27],[-35,-19],[-45,-24],[-44,-32],[-56,-54],[-56,-39],[-46,-23],[-72,-16],[-39,6],[-41,6],[-53,29],[-37,42],[-32,21],[-42,17],[-31,-2],[-21,-5],[-23,-42],[-23,-69],[-27,-74],[-27,-60],[-22,-63],[-39,-80],[-45,-76],[-65,-110],[-54,-91],[-27,-46],[-28,-43],[-37,-42],[-37,-66],[-31,-91],[-47,-63],[-35,-27],[-28,12],[-25,41],[-22,69],[-16,93],[-11,111],[-13,164],[-13,109],[-26,97],[-35,86],[-26,58],[-29,38],[-45,40],[-35,23],[-43,19],[-41,17],[-37,-7],[-35,-28],[-27,-30],[-28,-49],[-22,-47],[1,-66],[11,-62],[34,-78],[38,-57],[18,-35],[5,-65],[-9,-56],[-22,-69],[-48,-30],[-67,4],[-53,-36],[-76,-94],[-47,-76],[-27,-84],[-1,-112],[15,-109],[26,-96],[51,-99],[52,-92],[20,-43],[30,-17],[45,-12],[60,-31],[38,-9],[35,1],[39,2],[50,19],[67,33],[60,21],[49,-18],[37,-18],[26,-24],[27,-21],[41,-55],[17,-23],[8,-27],[-4,-35],[-12,-76],[5,-90],[-19,-41],[7,-80],[-1,-37],[-3,-29],[-8,-30],[-28,-19],[-19,-6],[-24,-27],[-23,15],[-44,25],[-24,-39],[-20,-15],[-33,12],[-33,18],[-23,-1],[-33,-14],[-43,-39],[-26,-41],[-10,-22],[-25,-28],[-25,-13],[-19,-34],[-16,-48],[-25,-54],[-42,-74],[-10,-50],[2,-55],[10,-130],[0,-115],[-26,-200],[-13,-107],[-21,-162],[-80,90],[-56,54],[-76,59],[-47,34],[-59,18],[-59,-4],[-39,-9],[-39,-42],[-28,-56],[-11,-54],[4,-71],[26,-64],[40,-84],[35,-71],[45,-78],[36,-41],[21,-55],[-17,-158],[-27,-88],[-27,-88],[-33,-108],[-15,-87],[-9,-56],[-21,-111],[-37,-78],[-30,-60],[-21,-42],[-40,-44],[-41,-23],[-35,-7],[-56,10],[-39,-3],[-38,-14],[-34,-32],[-21,-41],[-40,-58],[-60,-35],[-46,-22],[-56,-26],[-35,-7],[-41,-2],[-28,12],[-43,27],[-32,27],[-41,20],[-39,16],[-51,3],[-65,-4],[-49,-12],[-39,-18],[-37,-45],[-24,-12],[-30,4],[-31,20],[-39,51],[-50,109],[-33,89],[-54,111],[-54,66],[-66,54],[-61,61],[-70,67],[-61,57],[-44,48],[-61,85],[-46,69],[-60,70],[-38,57],[-31,53],[-34,53],[-8,46],[4,38],[24,42],[23,51],[60,96],[37,80],[22,39],[37,89],[38,70],[33,42],[7,42],[-19,14],[-95,-18],[-76,6],[-48,13],[-48,38],[-32,45],[-37,1],[-28,-26],[-12,-52],[4,-42],[5,-56],[-29,-48],[-63,-30],[-52,23],[-27,48],[-28,51],[-43,53],[-41,12],[-38,3],[-37,-35],[-17,-39],[-2,-51],[7,-72],[-4,-98],[-35,-69],[-33,-27],[-48,-4],[-29,19],[-9,32],[9,39],[16,64],[-22,65],[-31,48],[-55,27],[-53,14],[-52,13],[-53,23],[-31,-1],[-17,-10],[-6,-43],[14,-50],[26,-50],[36,-67],[8,-54],[-4,-60],[-1,-104],[-4,-57],[-24,-39],[-35,-12],[-43,10],[-48,30],[-46,33],[-36,33],[-35,17],[-35,19],[-40,14],[-35,-12],[-21,-18],[-12,-44],[7,-42],[27,-54],[24,-39],[4,-46],[-10,-68],[-24,-72],[-51,-44],[-37,-34],[-26,-35],[-13,-54],[9,-45],[27,-30],[30,-12],[43,-17],[37,-16],[40,0],[38,19],[45,-1],[48,-33],[25,-32],[26,-31],[39,-57],[19,-61],[1,-69],[-24,-85],[-13,-80],[5,-66],[23,-50],[5,-48],[-11,-69],[-42,-78],[-53,-87],[-64,-68],[-75,-43],[-62,-40],[-60,-30],[-59,-24],[-50,-3],[-54,-1],[-60,-5],[-60,2],[-47,24],[-26,11],[-26,11],[-54,26],[-53,48],[-33,33],[-50,51],[-38,48],[-49,5],[-45,-39],[-9,-59],[2,-64],[4,-64],[15,-89],[14,-88],[25,-74],[18,-54],[29,-52],[16,-45],[21,-57],[19,-58],[17,-67],[5,-51],[4,-50],[5,-76],[4,-65],[4,-71],[-1,-85],[-13,-36],[-18,-23],[-27,14],[-33,57],[-26,64],[-36,41],[-36,6],[-25,-23],[-18,-25],[-16,-33],[-7,-45],[3,-46],[7,-39],[23,-42],[24,-22],[20,-29],[19,-22],[18,-29],[6,-36],[-12,-46],[-15,-28],[-19,-8],[-18,-8],[-44,-11],[-31,-16],[-64,-23],[-57,-28],[-58,-27],[-48,-44],[-38,-58],[-31,-56],[-13,-68],[-5,-157],[-3,-47],[1,-32],[7,-33],[20,-31],[9,-39],[-6,-27],[-15,-18],[-26,-24],[-51,-56],[-75,-44],[-65,-15],[-28,6],[-25,26],[-19,44],[-26,21],[-31,0],[-29,-6],[-27,-18],[-16,-20],[-12,-26],[-15,-21],[-25,-3],[-28,24],[-31,27],[-31,6],[-33,-7],[-27,-29],[-18,-27],[-16,-49],[0,-41],[3,-43],[3,-32],[11,-35],[15,-42],[39,-42],[25,-48],[29,-36],[18,-40],[12,-48],[11,-35],[26,-42],[18,-21],[11,-36],[6,-53],[-3,-40],[-14,-58],[-17,-43],[-16,-41],[-24,-42],[-31,-18],[-31,-1],[-22,-5],[-17,-18],[-13,-33],[-8,-51],[-12,-51],[-24,-29],[-39,-16],[-38,-5],[-37,-19],[-28,-2],[-22,9],[-20,3],[-25,-22],[-26,-18],[-28,-15],[-28,-32],[-42,-16],[-47,-53],[-36,-65],[-12,-30],[-10,-42],[-1,-48],[15,-27],[26,-1],[20,-30],[8,-38],[16,-33],[9,-36],[2,-38],[8,-43],[-4,-35],[-14,-15],[-3,-29],[-3,-29],[-10,-38],[-29,-32],[-43,-18],[-47,-15],[-61,-3],[-42,26],[-43,31],[-35,40],[-34,40],[-30,39],[-35,20],[-33,3],[-28,-20],[-21,-37],[-1,-59],[-9,-38],[-25,-7],[-29,-21],[-33,10],[-14,45],[-34,-21],[-22,30],[-32,-31],[-15,18],[-27,1],[-27,-12],[-24,-10],[-32,-26],[-31,-51],[-37,-18],[-29,23],[-35,13],[-24,23],[-15,24],[-22,7],[-30,-3],[-11,16],[-4,25],[-15,23],[-22,6],[-19,-20],[-17,15],[-12,24],[-8,30],[-19,39],[-15,33],[-5,36],[-5,53],[3,40],[-15,22],[-22,15],[-33,-6],[-27,-20],[-19,-23],[-20,-24],[-15,-40],[-6,-45],[0,-47],[7,-46],[-10,-51],[11,-38],[-3,-41],[2,-40],[3,-30],[-9,-26],[2,-17],[21,-11],[12,-23],[11,-22],[12,-35],[1,-33],[7,-29],[9,-13],[20,-29],[31,-28],[18,-42],[10,-32],[3,-45],[-13,-47],[-18,-46],[-30,-38],[-40,9],[-11,-16],[-44,-32],[-49,-3],[-37,-10],[-47,0],[-35,3],[-31,4],[-37,0],[-38,0],[-25,11],[-22,24],[-18,30],[-1,40],[7,33],[-2,37],[-16,30],[-16,46],[-10,48],[-7,58],[2,37],[3,36],[4,56],[-1,42],[-13,30],[1,39],[11,48],[9,39],[-6,41],[-26,50],[-3,43],[16,30],[2,39],[0,30],[-17,30],[-4,48],[17,38],[27,10],[10,36],[-7,30],[-28,13],[-14,46],[6,36],[15,24],[6,60],[6,72],[-6,30],[1,30],[3,28],[2,28],[-10,45],[-21,35],[-27,16],[-14,53],[-10,51],[-17,73],[-21,40],[-22,12],[-36,-29],[-49,-20],[-33,-3],[-44,3],[-41,-15],[-42,-31],[-31,-54],[-24,-62],[-28,-60],[-25,-26],[-36,-7],[-53,18],[-40,8],[-23,5],[-23,4],[-38,-11],[-32,-23],[-42,-34],[-38,-30],[-33,-33],[-28,-35],[-14,-10],[-21,-6],[-31,12],[-30,54],[-22,33],[-58,33],[-93,4],[-78,-36],[-61,-28],[-53,-24],[-47,-48],[-66,-80],[-49,-78],[-37,-56],[-25,-61],[-13,-41],[3,-37],[22,-29],[21,-3],[36,51],[36,32],[27,3],[40,-30],[38,-58],[22,-66],[14,-46],[6,-84],[1,-60],[0,-50],[-18,-59],[-33,-43],[-42,-5],[-30,20],[-20,26],[-5,57],[6,52],[-9,47],[-23,22],[-34,12],[-38,2],[-40,-3],[-32,-12],[-31,-33],[-26,-36],[-25,-46],[-25,-46],[-30,-77],[-30,-75],[-17,-65],[-21,-144],[-8,-110],[-16,-130],[-13,-146],[-7,-86],[-7,-67],[-13,-121],[-2,-42],[-3,-57],[25,15],[30,18],[21,2],[22,-15],[23,-27],[13,-33],[1,-38],[-11,-31],[-29,-47],[-25,-31],[-19,-47],[-13,-51],[-1,-62],[4,-69],[4,-71],[22,-48],[39,-52],[42,-42],[34,-24],[42,-20],[37,-40],[28,41],[28,41],[51,35],[65,50],[59,44],[61,23],[60,9],[60,8],[68,10],[62,-3],[68,-17],[72,-11],[43,-20],[34,-20],[39,-19],[58,-50],[10,-33],[-15,-22],[-22,-5],[-50,12],[-21,-6],[-18,-33],[1,-42],[8,-29],[26,-25],[39,-29],[34,-21],[31,-22],[24,-36],[23,-39],[23,-46],[10,-39],[5,-29],[-2,-24],[-7,-32],[-22,-33],[-43,-33],[-45,-47],[-37,-60],[-12,-66],[2,-53],[8,-51],[44,-60],[42,-27],[41,13],[41,13],[33,14],[28,-1],[27,-24],[15,-38],[6,-48],[1,-48],[-21,-42],[-22,-30],[-45,-58],[-28,-55],[-11,-64],[-6,-60],[4,-59],[4,-45],[6,-63],[12,-68],[22,-72],[17,-43],[16,-40],[24,-28],[23,-27],[14,-17],[26,-9],[15,-60],[24,-79],[23,-62],[39,-89],[41,-78],[31,-58],[27,-58],[30,-45],[24,-42],[31,-46],[34,-29],[32,-12],[42,-4],[31,-3],[35,24],[30,27],[37,51],[28,54],[17,40],[16,36],[21,19],[30,0],[28,-37],[32,-24],[35,-25],[34,4],[26,11],[13,28],[27,27],[25,25],[26,7],[21,-9],[11,-33],[-1,-45],[-17,-53],[-16,-49],[-17,-56],[-19,-43],[-13,-53],[-11,-45],[-10,-39],[2,-41],[9,-42],[21,-28],[26,-12],[24,0],[24,7],[23,30],[24,36],[30,57],[33,38],[42,37],[46,9],[48,-1],[58,-26],[62,-31],[37,-22],[24,-13],[26,-31],[18,-39],[4,-44],[-11,-45],[-20,-48],[-35,-32],[-34,-16],[-45,-14],[-46,-3],[-34,2],[-49,-11],[-44,-24],[-49,-27],[-39,-22],[-42,-2],[-43,2],[-27,-18],[-25,-33],[-8,-56],[12,-47],[17,-36],[31,-30],[29,-25],[24,-5],[27,3],[24,6],[24,-1],[44,-24],[30,-36],[24,-46],[14,-40],[2,-48],[-13,-95],[-38,-111],[-25,-72],[-21,-101],[-12,-90],[-36,-92],[-19,-82],[-38,-82],[-68,-94],[-36,-42],[-35,-42],[-32,-43],[-33,-43],[-35,-65],[-11,-57],[-6,-31],[8,-87],[23,-55],[18,-52],[24,-56],[22,-34],[31,-33],[36,-44],[34,-50],[25,-43],[26,-57],[19,-70],[13,-47],[25,-71],[25,-71],[21,-55],[24,-33],[35,-45],[47,-68],[26,-68],[8,-106],[4,-86],[-24,-42],[-26,-50],[-15,-69],[-6,-46],[12,-35],[29,-32],[20,-19],[12,-26],[19,-40],[13,-60],[-6,-60],[-15,-56],[-16,-23],[-16,-22],[-48,-16],[-45,-2],[-31,4],[-34,-18],[-31,-22],[-21,-45],[-6,-30],[-1,-47],[6,-49],[25,-43],[11,-46],[-10,-45],[-8,-30],[-14,-12],[-13,-12],[-111,15],[-27,43],[-43,17],[-40,22],[-52,0],[-63,-16],[-64,-17],[-66,0],[-46,-10],[-33,-18],[-25,-35],[-14,-22],[15,-24],[29,-35],[34,-33],[26,-32],[26,-31],[9,-78],[-2,-89],[-19,-110],[-12,-84],[-9,-123],[-17,-105],[-27,-84],[-30,-73],[-11,-46],[-29,-21],[-19,10],[-25,-12],[-34,-24],[-24,21],[-15,39],[6,47],[20,53],[3,57],[-13,55],[-16,48],[-20,39],[-44,27],[-34,-15],[-25,-22],[-37,-86],[-45,-72],[-49,-38],[-39,-25],[-44,1],[-44,0],[-50,16],[-37,19],[-27,28],[-22,46],[-6,36],[1,32],[21,32],[27,30],[11,16],[14,22],[24,33],[-18,38],[-21,38],[9,31],[31,92],[-9,69],[0,51],[3,54],[-9,49],[13,60],[13,39],[14,39],[4,22],[4,22],[-12,29],[-26,12],[-33,-15],[-34,-18],[-27,6],[-20,26],[-10,41],[-5,54],[-1,50],[-4,80],[-9,64],[-6,60],[-14,73],[-17,69],[-16,82],[-10,86],[-9,80],[-8,69],[-18,51],[-20,32],[-18,17],[-18,6],[-21,1],[-21,-9],[-15,-14],[-12,-32],[-5,-30],[0,-35],[1,-29],[5,-61],[5,-47],[2,-55],[-3,-68],[-11,-39],[-11,-38],[-13,-20],[-17,-22],[-18,-12],[-26,-8],[-20,-2],[-20,4],[-14,2],[-12,3],[-15,16],[-7,19],[-7,15],[-15,9],[-20,5],[-19,3],[-32,16],[-23,17],[-16,24],[-13,25],[-1,30],[6,28],[18,30],[23,16],[27,23],[14,18],[5,29],[0,33],[0,33],[-10,48],[-27,44],[-39,21],[-39,-24],[-18,-34],[-31,-1],[-21,29],[-4,28],[5,104],[2,99],[-20,78],[-24,37],[-35,8],[-33,-7],[-28,-36],[-46,-77],[-51,-48],[-34,-18],[-36,-6],[-22,4],[-31,23],[-12,33],[6,36],[19,26],[31,10],[19,19],[16,49],[3,66],[-13,80],[-33,74],[-33,56],[-36,30],[-50,2],[-47,-32],[-44,-46],[-62,-86],[-62,-34],[-35,8],[-22,37],[-2,53],[31,89],[33,93],[32,87],[27,86],[12,73],[-1,50],[-12,32],[-29,13],[-29,-6],[-33,-24],[-39,-23],[-50,-10],[-55,-21],[-67,-12],[-63,-20],[-46,-3],[-36,-4],[-32,-5],[-18,-26],[-7,-32],[-11,-56],[-4,-68],[-1,-58],[-5,-104],[0,-50],[1,-62],[-10,-42],[-25,-29],[-24,-13],[-36,-6],[-41,-11],[-27,-3],[-39,-8],[-31,-9],[-24,-12],[-22,-11],[-41,-23],[-53,-18],[-65,-28],[-54,-3],[-5,0],[-44,7],[-51,17],[-30,24],[-47,60],[-35,69],[-28,99],[-21,155],[-4,120],[-5,120],[-23,86],[-21,81],[-20,117],[-21,116],[4,71],[16,51],[22,68],[20,55],[29,90],[26,68],[24,58],[24,43],[25,45],[24,56],[13,31],[19,63],[10,31],[1,75],[-17,43],[-33,43],[-40,14],[-33,10],[-39,0],[-37,-7],[-27,-19],[-17,-12],[-19,-9],[-12,-6],[-12,4],[-8,10],[-16,9],[-17,0],[-21,-19],[-22,3],[-11,1],[-13,-4],[-13,17],[-16,9],[-20,3],[-16,2],[-14,1],[-14,-10],[-10,-16],[-22,-13],[-21,3],[-24,24],[-34,30],[-30,20],[-22,16],[-41,46],[-26,39],[-26,51],[-21,32],[-28,46],[-28,39],[-46,66],[-54,69],[-28,35],[-30,39],[-29,42],[-38,37],[-31,54],[-16,57],[-3,78],[-2,82],[-11,94],[-25,69],[-47,39],[-43,14],[-35,-12],[-28,-41],[-28,-71],[-21,-49],[-22,-48],[-23,-49],[-29,-76],[-23,-68],[-29,-79],[-24,-98],[-16,-76],[-9,-71],[-15,-74],[-14,-115],[-20,-96],[-8,-36],[-10,-33],[-5,-33],[-11,-53],[-12,-29],[-17,-8],[-17,2],[-16,24],[-18,30],[-15,49],[-22,29],[-37,30],[-34,14],[-37,1],[-42,0],[-39,-6],[-44,-14],[-50,-25],[-44,-18],[-51,-14],[-61,-11],[-55,7],[-46,2],[-35,-2],[-29,-17],[-13,-19],[-12,-18],[-26,-63],[-16,-68],[-19,-81],[-12,-77],[-7,-76],[2,-79],[2,-78],[6,-66],[4,-74],[-1,-80],[6,-104],[1,-72],[-8,-72],[-19,-84],[-14,-47],[-18,-41],[-47,-64],[-45,-41],[-28,-18],[-25,31],[1,33],[8,40],[23,39],[9,62],[-17,74],[-31,78],[-38,57],[-40,44],[-34,41],[-32,35],[-34,28],[-30,16],[-27,-10],[-27,-21],[-31,-51],[-26,-65],[-13,-33],[-16,-30],[-22,-5],[-28,5],[-19,-9],[-33,-31],[-29,-8],[-33,27],[-21,37],[-17,61],[-44,40],[-48,17],[-53,3],[-50,-20],[-43,-55],[-32,-61],[-9,-58],[7,-54],[17,-54],[25,-47],[25,-29],[34,-20],[31,-29],[28,-38],[21,-23],[15,-40],[4,-57],[-4,-61],[12,-57],[27,-29],[37,-14],[39,-2],[27,-6],[36,-14],[41,-19],[26,-18],[32,-34],[17,-51],[-1,-46],[-12,-43],[-19,-58],[-18,-52],[-10,-62],[1,-54],[17,-46],[24,-42],[30,-22],[43,-15],[40,12],[42,6],[36,-13],[37,-32],[32,-38],[19,-53],[12,-78],[-2,-28],[-1,-29],[-18,-47],[-26,-48],[-36,-34],[-34,-23],[-39,-22],[-47,-1],[-39,8],[-30,-4],[-19,-8],[-13,-16],[-6,-23],[-2,-29],[2,-31],[7,-24],[12,-21],[17,-22],[13,-17],[16,-18],[22,-25],[10,-27],[8,-48],[-2,-45],[-7,-35],[-18,-27],[-22,-17],[-28,-5],[-27,-9],[-22,-24],[-18,-42],[-6,-38],[2,-53],[12,-48],[24,-42],[24,-30],[42,-22],[48,-14],[38,-1],[37,-5],[37,-5],[25,-8],[21,-15],[14,-26],[5,-21],[-3,-23],[-7,-21],[-21,-28],[-27,-25],[-29,-28],[-16,-25],[-7,-26],[1,-45],[5,-29],[15,-44],[31,-23],[32,-8],[27,-3],[52,-8],[40,4],[42,-2],[43,3],[42,0],[45,-17],[38,-32],[28,-36],[21,-48],[8,-46],[-4,-57],[-20,-76],[-41,-97],[-32,-76],[-44,-78],[-30,-68],[-5,-57],[12,-47],[33,-35],[38,-3],[36,20],[26,49],[48,104],[55,55],[56,28],[52,-2],[64,-19],[23,-16],[23,-17],[32,-68],[5,-69],[-10,-58],[-11,-47],[-21,-77],[-9,-67],[6,-52],[35,-74],[25,-36],[33,-14],[46,7],[28,38],[11,46],[13,99],[29,80],[42,39],[40,15],[36,1],[26,-23],[17,-39],[4,-51],[-18,-55],[-28,-35],[-38,-23],[-35,-43],[-7,-63],[17,-38],[28,-33],[50,-14],[25,-7],[40,-5],[41,8],[61,11],[65,-4],[48,-20],[22,-50],[9,-63],[-24,-63],[-33,-27],[-43,-7],[-43,-4],[-41,-31],[-50,-73],[-55,-69],[-34,-56],[-40,-57],[-19,-36],[-4,-47],[19,-39],[25,-9],[37,16],[39,-15],[29,-21],[22,-38],[17,-43],[0,-102],[-5,-82],[-5,-69],[-6,-47],[-1,-42],[-11,-29],[-13,-31],[-20,-20],[-16,-6],[-8,-3],[-17,8],[-17,15],[-26,23],[-22,12],[-27,3],[-29,-6],[-29,-6],[-19,-5],[-18,-15],[-23,13],[-17,9],[-16,-4],[-20,-29],[-22,-2],[-25,3],[-23,15],[-30,13],[-45,1],[-32,-26],[-10,-63],[14,-63],[40,-47],[43,-46],[30,-36],[10,-47],[-12,-50],[-19,-47],[-26,-32],[-23,-11],[-26,11],[-27,23],[-27,3],[-59,-26],[-59,-43],[-62,-55],[-23,-27],[-23,-26],[-45,-53],[-50,-63],[-56,-53],[-50,-37],[-22,-25],[-7,-31],[5,-34],[15,-37],[37,-60],[48,-54],[33,1],[19,-27],[11,-44],[-8,-51],[-7,-38],[-21,-34],[-36,-24],[-44,-10],[-55,12],[-57,-8],[-36,-27],[-21,-78],[-30,-41],[-55,-5],[-56,34],[-40,42],[-24,44],[-13,44],[0,58],[25,50],[30,24],[15,68],[5,70],[-11,61],[-24,134],[-29,104],[-16,85],[-21,74],[-13,84],[-16,59],[-26,36],[-32,32],[-42,20],[-15,8],[-15,8],[-35,30],[-29,10],[-17,0],[-21,-13],[-21,-29],[-5,-41],[2,-42],[1,-51],[10,-66],[15,-73],[11,-122],[-10,-106],[-32,-139],[-23,-100],[-10,-95],[-9,-110],[-12,-83],[-22,-80],[-37,-68],[-11,-29],[-1,-63],[-15,-36],[4,-37],[-4,-46],[-15,-44],[-29,-120],[-17,-67],[-30,-80],[-39,-33],[-33,-10],[-47,3],[-35,24],[-39,44],[-33,45],[-11,44],[-25,25],[-25,25],[-12,42],[-35,25],[-43,5],[-36,4],[-11,29],[12,47],[-10,38],[-34,7],[-55,47],[-30,62],[-37,23],[-41,-5],[-36,40],[-19,27],[-35,10],[-36,-7],[-20,-34],[6,-54],[35,-56],[11,-70],[-17,-158],[-16,-71],[-55,-91],[-47,-57],[-47,-43],[-53,-48],[-49,-28],[-58,-13],[-58,12],[-17,31],[5,46],[30,29],[26,23],[47,28],[40,32],[14,54],[-9,65],[-22,51],[-32,60],[-50,29],[-43,2],[-40,-9],[-51,-38],[-68,-20],[-50,23],[-55,44],[-43,97],[-22,83],[-22,73],[-32,55],[-44,17],[-46,4],[-49,-26],[-63,-56],[-86,-111],[-51,-71],[-51,-70],[-68,-91],[-43,-78],[-24,-47],[-24,-33],[-27,-11],[-39,4],[-61,26],[-38,17],[-41,5],[-48,-15],[-32,-6],[-50,13],[-33,4],[-23,3],[-25,-26],[-27,-29],[-25,9],[-14,58],[-3,50],[-21,35],[-37,17],[-40,-1],[-33,40],[-39,30],[-33,19],[-56,-8],[-29,-35],[-36,-52],[-63,-51],[-64,-27],[-86,-12],[-67,2],[-52,15],[-52,-11],[-63,2],[-31,30],[-8,42],[7,32],[23,11],[39,-13],[37,1],[56,10],[54,17],[50,33],[44,69],[23,87],[17,81],[6,60],[-1,55],[-9,24],[-9,24],[-29,13],[-37,7],[-35,-14],[-31,-29],[-18,-30],[-25,-39],[-38,-32],[-36,8],[-53,-1],[-62,-14],[-57,13],[-53,47],[-51,43],[-46,33],[-44,17],[-40,-10],[-17,-42],[-1,-57],[20,-43],[25,-52],[4,-99],[-15,-74],[-24,-57],[-35,-60],[-44,-61],[-63,-59],[-41,-34],[-61,-36],[-39,23],[-12,39],[12,51],[51,45],[28,44],[27,64],[19,44],[11,49],[4,45],[-9,44],[-19,44],[-37,51],[-38,8],[-30,-16],[-29,-36],[-19,-69],[-5,-80],[-2,-92],[-15,-58],[-26,-31],[-34,-32],[-40,0],[-26,15],[-22,39],[-11,32],[-18,75],[3,66],[6,76],[-11,86],[-33,76],[-30,23],[-32,0],[-33,-20],[-48,-64],[-22,-65],[-11,-33],[-33,-20],[-25,17],[-24,25],[-33,-1],[-31,-24],[-24,-20],[-24,-21],[-43,-35],[-63,-41],[-76,-38],[-70,-14],[-43,5],[-9,12],[-10,13],[0,34],[29,61],[40,48],[23,48],[12,55],[-6,86],[-8,33],[-23,19],[-43,8],[-36,-23],[-34,-48],[-30,-113],[-32,-75],[-31,-24],[-51,-6],[-22,14],[-22,14],[-32,34],[-31,41],[-19,47],[2,81],[14,65],[3,34],[-17,45],[-34,33],[-22,26],[-38,2],[-25,-14],[-20,-34],[0,-36],[11,-40],[24,-33],[11,-29],[6,-34],[0,-26],[-10,-36],[-18,-22]],[[674539,641336],[216,59],[164,49],[230,50],[217,56],[156,37],[164,49],[311,88],[223,61],[180,49],[140,31],[139,19],[119,-19],[233,-7],[129,-39],[161,12],[126,116],[228,224],[323,271],[262,202],[245,315],[71,166],[57,136],[102,126],[136,105],[190,116],[103,52],[103,51],[90,45],[88,61],[109,75],[74,51],[106,79],[106,79],[88,66],[103,-28],[63,10],[74,35],[89,87],[136,67],[90,25],[97,15],[93,-20],[92,-42],[160,-89],[77,-3],[113,-8],[197,4],[175,7],[208,-6],[234,-2],[127,-10],[115,15],[122,40],[111,42],[123,70],[74,42],[73,42],[199,213],[308,279],[477,588],[234,225],[217,196],[271,164],[426,248],[351,147],[283,120],[143,23],[113,0],[90,-43],[162,-147],[154,-42],[136,4],[151,7],[281,7],[376,-129],[203,-149],[110,-182],[96,-227],[119,-154],[257,-169],[76,-30],[76,-45],[89,-45],[158,-35],[175,-35],[208,15],[231,75],[218,95],[191,64],[223,10]],[[750887,679876],[-20,-11809],[-11,-6851],[-33,-19636],[32,-3288],[30,-2966],[105,-10557],[0,-59],[1,-60]],[[775904,878062],[460,-693],[156,-1242],[127,-341],[211,-127],[756,-40],[275,-96],[359,-679],[180,-1396],[317,-1301],[71,-167],[402,-544],[370,-1009],[316,-427],[1768,-580],[265,-469],[-82,-459],[-97,-231],[-131,-157],[-7,-9],[-7,-8],[-197,-235],[-811,-648],[-199,-97],[-473,-340],[-339,-583],[-157,-1024],[-444,-729],[-335,-247],[-506,-518],[1,-242],[148,-966],[324,-310],[424,25],[969,-333],[476,210],[584,-66],[1342,318],[83,96],[79,335],[36,1082],[263,-45],[238,-492],[263,-30],[1193,1242],[466,316],[368,107],[531,-49],[152,-186],[257,-1662],[-22,-723],[-190,-609],[-255,-1169],[-28,-930],[135,-432],[28,-427],[-72,-253],[-572,-1044],[-614,-1008],[-35,-397],[296,-507],[-173,-1180],[3,-321],[1352,247],[814,-157],[286,-161],[221,-482],[600,-413],[948,-474],[1007,-224],[445,98],[200,-47],[397,-235],[149,-32],[1019,263],[759,-171],[447,-257],[523,-888],[748,-301],[213,-427],[-149,-1120],[-558,-2211],[22,-356],[474,-392],[-30,-573],[-254,-521],[-34,-168],[0,-371],[259,-288],[41,-66],[106,-169],[-18,-851],[-135,-930],[-22,-627],[374,-586],[292,-30],[1435,477],[522,465],[256,270],[202,297],[1427,1506],[617,186],[764,-105],[1009,125],[926,400],[1018,-17],[586,-336],[290,-490],[49,-356],[-282,-1227],[-42,-717],[222,-512],[369,-456],[489,-469],[1125,-322],[117,-207],[-428,-1421],[65,-557],[226,-1052],[20,-328],[-86,-358],[-697,-563],[-114,-739],[-441,-976],[-373,-183],[-112,-370],[-297,-182],[-516,-928],[-142,-417],[-106,-813],[211,-676],[247,-6],[963,256],[458,482],[86,350],[222,267],[134,-35]],[[805765,831359],[302,-398],[57,-75]],[[806124,830886],[81,-486],[2,-673],[-290,-884],[-161,-331],[-790,-1189],[-257,-852],[-565,-1408],[69,-581],[142,-299],[458,-203],[165,1],[431,-111],[735,-830],[282,9],[241,221],[331,758],[284,72],[819,-21],[1032,633],[126,123],[652,291],[177,-141],[105,-275],[-113,-836],[21,-166],[120,-355],[573,-841],[177,-2340],[34,-241],[156,-338],[69,-1191],[149,-462],[375,-334],[635,-232],[250,-156],[274,-1259],[389,63],[409,-52],[163,-58],[297,-387],[933,-2260],[203,-1181],[274,-614],[81,-551],[184,-542],[616,509],[351,596],[206,616],[474,290],[357,328],[100,452],[450,259],[1845,503],[1268,864],[741,195],[206,54],[749,415],[1293,-609],[601,-459],[325,-57],[389,301],[488,646],[571,-378],[100,-122],[289,-537],[354,-353],[177,-1362],[1279,-669],[100,-256],[-43,-317],[-396,-820],[104,-329],[-782,14],[-141,-70],[-100,-331],[-721,-299],[-129,-243],[122,-330],[268,-224],[412,-51],[275,-181],[395,-394],[486,-233],[616,38],[88,5],[87,5],[46,3],[330,20],[262,-120],[480,-721],[389,-421],[275,-415],[162,-428],[37,-230],[-107,-1702],[247,-422],[86,-147],[50,-18],[205,42],[232,10],[343,76],[289,9],[161,-114],[80,-134],[19,-112],[133,-152],[240,-130],[156,-20],[637,22],[131,-43],[163,-118],[179,-290],[129,-318],[66,-208],[13,-180],[-50,-257],[-82,-231],[-261,-565],[-94,-214],[-26,-228],[43,-307],[86,-227],[103,-231],[28,-65],[74,-166],[154,-327],[107,-243],[21,-38],[85,-250],[51,-285],[31,-284],[11,-155],[-2,-178],[-28,-146],[-18,-166],[31,-152],[60,-114],[85,-47],[135,-90],[119,-57],[85,-90],[101,-223],[151,-152],[132,-43],[157,38],[91,43],[47,-40],[47,-111],[38,-210],[35,-241],[46,-210],[70,-106],[79,-69],[132,-62],[185,-32],[195,-114],[252,-285],[135,-28],[102,-22],[99,-167],[148,-361],[214,-494],[157,-189],[220,-86],[276,-18],[86,-5],[189,-99],[194,-177],[164,-151],[15,-29],[35,-80],[11,-120],[-13,-39],[-153,-592],[-80,-442],[-39,-283],[-28,-369],[6,-242],[22,-228],[51,-213],[97,-304],[167,-389],[190,-380]],[[839920,789145],[-13,-54],[7,-69],[20,-97],[31,-86],[56,-102],[92,-166],[25,-56],[115,-252],[120,-295],[74,-193],[8,-28],[73,-233]],[[782034,783664],[-4783,11843],[-2,4],[-1156,2864],[-91,225],[-167,-98],[-163,-173],[-247,-285],[-298,-424],[-253,-332],[-310,-968],[-42,-535],[-153,-231],[-240,-211],[-287,-21],[-470,-347],[-402,-448],[-134,-462],[-201,-116],[-202,-115],[-402,-333],[-225,-224],[-225,-224],[-278,-58],[-182,0],[-283,-71],[-340,158],[-594,0],[-431,-87],[-446,-185],[-436,-456],[-339,-159],[-149,1],[-113,135],[-108,303],[-48,303],[-19,448],[163,304],[-38,376],[-272,250],[-370,126],[-316,14],[-345,72],[-355,44],[-192,-87],[-201,-231],[-201,-203],[-327,145],[-125,4],[-446,17],[-137,239],[-124,361],[-27,203],[-21,159],[-77,260],[-239,246],[-90,61],[-258,35],[-273,-150],[-243,-259],[-308,-33],[-218,-276],[-182,-260],[-153,-419],[-172,-297],[-189,-335],[-147,-438],[-309,-277],[-275,-315],[-345,-29],[-316,-116],[-412,43],[-297,188],[-404,300],[-100,156],[-55,516],[-64,295],[-65,295],[-64,184],[-119,120],[-116,143],[-115,83],[-86,62],[-278,159],[-326,101],[-307,87],[-188,-40],[-173,130],[-367,156],[-546,67],[-314,16],[-315,16],[-141,-42],[-212,-64],[-158,-181],[-259,-333],[-57,-390],[-192,-809],[-491,-880],[-245,-440],[-246,-440],[-302,-755],[-291,-450],[-150,-302],[-239,-405],[-355,-433],[-268,-318],[-211,-130],[-297,173],[-337,392],[-191,123],[-341,153],[-271,40],[-230,203],[-201,159],[-259,57],[-364,-130],[-326,-216],[-364,-102],[-326,15],[-413,-112],[-353,-177],[-96,-51],[-185,-98],[-6,-4],[-13,-6],[-76,-41],[-14,-7],[-115,-61],[-12,-7],[-355,-144],[-249,-145],[-220,-347],[-343,-336],[-158,82],[-11,6],[-169,104],[-24,13],[-20,11],[-214,120],[-278,188],[-312,248],[-33,27],[-92,90],[-234,228],[-186,235],[-303,112],[-277,101],[-537,58],[-360,14],[-349,4],[-632,-134],[-479,-173],[-345,-275],[-431,-567],[-537,-315],[-230,-58],[-474,-88],[-261,-45],[-120,79],[-185,278],[-303,105],[-183,-84],[-362,-331],[-105,-405],[-119,-674],[20,-380],[56,-206],[101,-315],[95,-463],[-95,-318],[-230,-289],[-654,98],[-190,90],[-249,-64],[-156,-34],[-275,-76],[-297,-462],[-326,-448],[-220,-390],[-17,-94],[-36,-192],[-119,-307],[-106,-275],[-100,-223],[-264,79],[-239,89],[-269,12],[-335,72],[-470,-101],[-465,-170],[-426,-260],[-268,-92],[-623,-215],[-440,-246],[-556,-58],[-5,2],[-407,143],[-412,159],[-498,87],[-42,-17],[-428,-171],[-412,-492],[-297,-448],[-297,-448],[-300,-548],[-192,-351],[-418,-763],[-249,-665],[-138,-386],[-188,-524],[-5,-287]],[[726438,777619],[-255,-247],[-281,-216],[-227,-173],[-145,-104],[-218,-131],[-213,-194],[-111,-139],[-134,-84],[-81,-22],[-22,-5],[-146,73],[-162,-54],[-181,-95],[-250,-119],[-198,-107],[-176,-123],[-103,-123],[-152,-155],[-81,-172],[-19,-186],[17,-119],[30,-154],[-5,-132],[-58,-166],[-32,-80],[-52,-39],[-28,-97],[-7,-118],[-55,-245],[-34,-245],[-261,-349],[-215,-153],[-153,-112],[-174,-47],[-179,111],[-192,135],[-189,60],[-243,51],[-157,60],[-177,-36],[-123,-128],[-369,-313],[-197,-95],[-153,-56],[-105,32],[-108,4],[-178,74],[-285,77],[-198,56],[-142,-44],[-132,-80],[-102,-59],[-97,-35],[-138,-49],[-202,-71],[-270,-2],[-299,252],[-121,127],[-89,80],[-79,75],[-82,48],[-30,9],[-116,37],[-117,73],[-79,55],[-134,-43],[-98,-28],[-131,12],[-124,36],[-129,-52],[-113,75],[-65,171],[-74,-566],[-74,-565],[-378,119],[-101,31],[-264,31],[-257,140],[-114,0],[-136,-47],[-185,-16],[-90,1],[-41,94],[0,99],[-63,187],[-103,147],[-147,95],[-164,79],[-389,60],[-224,44],[-195,0],[-250,35],[-131,50],[-124,38],[-182,4],[-228,47],[-193,52],[-224,83],[-181,119],[-150,115],[-158,167],[-129,76],[-134,79],[-153,16],[-150,83],[-51,104],[-52,103],[-84,143],[-84,143],[-34,107],[-58,75],[-63,28],[-82,-47],[-87,89],[-87,89],[-44,100],[-61,71],[-63,151],[-42,175],[63,174],[82,131],[131,147],[162,83],[161,83],[115,48],[240,100],[196,7]],[[711386,776807],[246,72],[126,71],[215,11],[186,71],[73,137],[25,193],[-109,236],[-91,154],[29,176],[69,165],[157,148],[106,259],[-4,269],[17,363],[12,275],[88,346],[109,99],[189,-6],[243,-212],[155,-84],[109,27],[29,104],[7,490],[55,209],[120,417],[110,385],[94,275],[31,283],[11,179],[-42,156],[-54,160],[-117,198],[-126,132],[-80,105],[-80,106],[-120,193],[-58,119],[-57,119],[-13,82],[7,119],[97,184],[202,251],[93,170],[50,199],[41,166],[85,143],[85,143],[33,140],[58,86],[107,46],[84,42],[118,-6],[124,-16],[303,-102],[76,-50],[41,7],[41,7],[31,-77],[59,-22],[58,14],[42,-27],[11,-135],[38,-127],[67,-104],[84,-66],[141,-88],[139,29],[137,63],[93,122],[106,501],[302,1543],[-67,130],[-71,77],[-127,77],[-73,143],[45,165],[139,259],[154,288],[68,190],[49,170],[-16,267],[-130,379],[-76,192],[-78,143],[-143,160],[-140,93],[-144,55],[-126,19],[-138,-9],[-95,125],[-3,9],[-58,143],[-10,24],[-23,137],[-70,412],[-87,275],[-69,99],[-81,63],[-191,6],[-173,5],[-177,-19],[-286,-19],[-196,-8],[-343,22],[-310,30],[-186,77],[-165,178],[-82,105],[-37,137],[-36,198],[33,303],[72,338],[137,332],[166,250],[138,176],[122,80],[46,-1],[69,-2],[91,-33],[70,-37],[145,-54],[93,9],[64,35],[936,971],[221,263],[47,80],[20,91],[12,79],[8,102],[0,176],[-1,102],[38,77],[13,107],[-50,148],[-16,173],[-4,108],[40,68],[40,143],[-12,160],[-17,145],[-58,121],[-109,432],[-25,224],[1,235],[18,254],[42,268],[102,316],[268,429],[158,365],[211,1035],[34,237],[21,152],[6,203],[-29,262],[-22,195],[-48,204],[-33,142],[-34,143],[40,291],[111,327],[26,256],[-2,156],[-2,53],[-169,549],[-126,300],[-89,159],[-60,132],[-104,129],[-119,77],[-140,83],[-197,19],[-74,94],[-10,105],[26,107],[58,142],[288,135],[279,148],[268,223],[96,173],[121,302],[218,597],[223,456],[125,187],[91,137],[101,101],[102,100],[125,121],[112,109],[112,135],[199,264],[58,61],[64,13],[113,-28],[98,-95],[53,-118],[53,-119],[80,-143],[113,-107],[195,-35],[148,33],[168,38],[260,59],[180,29],[69,11],[84,19],[77,-11],[91,-52],[127,-91],[81,-60],[105,47],[122,112],[144,336],[90,267],[81,239],[81,238],[158,668],[73,223],[88,179],[103,207],[85,124],[77,114],[132,110],[69,104],[33,126],[4,115],[-15,149],[-60,201],[-93,267],[-39,164],[-36,190],[-5,187],[40,275],[45,156],[64,160],[67,148],[86,135],[95,148],[145,55],[146,-19],[141,-49],[144,-59],[145,-29],[166,-77],[101,-47],[123,-88],[88,-69],[81,-64],[99,-68],[69,-49],[78,-14],[126,16],[173,23],[142,35],[135,86],[219,104],[248,184],[156,124],[237,192],[144,42],[208,126],[85,157],[77,69],[80,50],[11,7],[137,66],[182,93],[200,138],[243,225],[138,168],[104,77],[130,52],[109,44],[103,49],[151,77],[3,2],[175,67],[85,104],[86,105],[82,201],[57,212],[58,211],[111,278],[123,109],[121,49],[127,-29],[131,-91],[113,3],[86,35],[106,66],[58,83],[49,99],[4,103],[2,65],[1,19],[0,19],[-21,267],[41,200],[17,80],[32,190],[51,309],[-86,185],[-1387,1295],[-97,63],[-151,58],[-137,28],[-136,29],[-135,28],[-84,16],[-84,17],[-82,-16],[-68,-13],[-179,-34],[-175,-11],[-155,55],[-104,104],[-102,60],[-117,6],[-111,-3],[-98,44],[-117,129],[-78,54],[-78,53],[-106,12],[-99,8],[-71,8],[-85,17],[-70,-9],[-98,-16],[-102,-77],[-84,0],[-129,34],[-83,22],[-104,43],[-98,41],[-77,32],[-99,30],[-176,1],[-148,13],[-120,29],[-120,11],[-105,17],[-81,14],[-89,86],[-332,294],[-104,125],[-75,133],[-36,105],[-19,110],[-16,86],[9,130],[31,110],[42,113],[62,137],[73,128],[36,181],[35,178],[24,116],[18,136],[-3,141],[6,113],[-15,139],[-16,139],[-20,186],[-15,139],[-24,196],[-24,196],[4,153],[39,123],[42,114],[84,118],[88,37],[70,9],[112,-15],[132,-17],[181,-29],[137,29],[86,42],[86,42],[166,98],[132,108],[139,114],[184,151],[185,144],[82,65],[126,98],[78,95],[95,135],[70,170],[58,168],[-37,632],[33,230],[145,481],[-50,100],[-72,52],[-120,37],[-149,12],[-149,12],[-253,276],[50,565],[-16,130],[-114,143],[-190,95],[-269,63],[-244,122],[-93,70],[-37,151],[-67,350],[-16,329],[14,101],[140,285],[128,261],[150,303],[70,258],[47,177],[22,81],[29,208],[61,436],[32,231],[1,206],[2,227],[1,282],[2,282],[11,192],[17,259],[28,455],[-45,525],[-63,476],[-55,546],[-13,137],[-13,129],[-24,-39],[-51,-80],[-55,-161],[-20,-72],[-41,-142],[-76,-129],[-77,-130],[-97,-98],[-56,-31],[-46,3],[-65,49],[-95,-49],[-58,56],[-19,81],[-37,42],[-53,-11],[-84,53],[-62,109],[-65,59],[-47,45],[-109,-21],[-102,-49],[-120,-70],[-82,-59],[-104,-46],[-90,32],[-65,87],[-26,144],[23,154],[51,210],[82,175],[141,143],[137,161],[70,186],[92,206],[68,147],[51,171],[37,140],[-22,84],[-22,84],[14,114],[13,114],[64,171],[87,147],[79,185],[109,260],[121,256],[130,276],[130,276],[102,196],[87,158],[38,153],[56,144],[39,171],[-9,112],[-40,105],[-62,167],[-45,120],[-13,116],[25,112],[96,108],[101,109],[79,91],[79,31],[86,4],[100,-4],[60,81],[25,90],[26,165],[-7,200],[-37,167],[-91,182],[-106,133],[-121,123],[-160,108],[-162,63],[-191,53],[-199,-11],[-160,-8],[-202,-51],[-239,-81],[-264,-70],[-302,-69],[-453,-104],[-287,-51],[-337,32],[-257,26],[-206,24],[-188,22],[-254,-49],[-225,-14],[-225,29],[-364,55],[-268,7],[-449,124],[-248,5],[-208,3],[-131,20],[-177,26],[-105,-7],[-66,16],[-67,50],[-100,151],[-111,149],[-73,101],[-55,166],[-41,91],[-61,56],[-81,39],[-78,9],[-88,-2],[-67,-2],[-157,19],[-133,15],[-167,20],[-120,11],[-159,14],[-113,9],[-92,-42],[-70,-67],[-52,-66],[-65,-93],[-76,-215],[-40,-151],[-22,-152],[-25,-144],[15,-157],[11,-238],[-49,-199],[-41,-65],[-32,-105],[-15,-135],[0,-215],[-8,-180],[-63,-230],[-79,-206],[-47,-220],[-58,-254],[-85,-257],[-57,-119],[-46,-103],[-122,-79],[-135,-123],[-55,-80],[-21,-117],[8,-125],[-2,-103],[-41,-164],[-47,-107],[12,-174],[26,-209],[51,-350],[22,-238],[-6,-199],[-13,-256],[-22,-269],[-43,-270],[-102,-176],[-162,-142],[-204,-84],[-111,-9],[-123,81],[-76,85],[3,100],[-12,46],[-41,68],[-46,68],[-40,79],[-33,190],[-36,181],[-12,91],[-10,73],[-36,53],[-88,45],[-76,35],[-146,63],[-116,57],[-61,-6],[-94,-30],[-123,-40],[-91,-74],[-98,10],[-74,83],[-59,112],[-35,161],[-29,137],[-13,140],[-20,127],[-43,102],[-50,90],[-93,105],[-75,85],[-59,67],[-49,83],[-58,100],[-23,90],[-18,71],[-23,76],[-24,134],[-61,138],[-56,73],[-51,42],[-24,20],[-134,58],[-151,33],[-195,29],[-105,32],[-134,45],[-113,84],[-44,90],[-37,176],[-45,182],[-4,113],[-3,113],[-47,122],[-75,78],[-77,57],[-97,14],[-88,-45],[-77,-67],[-70,-87],[-67,-176],[-32,-116],[-35,-124],[-7,-167],[-16,-91],[2,-107],[-13,-160],[-9,-118],[-1,-15],[-12,-144],[-8,-138],[-21,-147],[-10,-137],[-8,-115],[-18,-87],[-34,-69],[-70,-71],[-58,-78],[-51,-69],[-10,-95],[50,-130],[104,-210],[111,-183],[94,-121],[68,-89],[52,-103],[28,-94],[-14,-101],[-28,-108],[-87,-135],[-121,-160],[-106,-109],[-137,-92],[-103,-74],[-70,-104],[-29,-170],[-28,-170],[-17,-479],[53,-504],[41,-306],[-5,-196],[-28,-108],[-79,-115],[-89,-69],[-89,-91],[-82,-38],[-142,44],[-156,101],[-164,147],[-170,100],[-110,0],[-66,-74],[-41,-133],[-31,-192],[-25,-291],[-39,-166],[-66,-208],[-103,-206],[-77,-191],[-20,-119],[-13,-160],[-3,-161],[-4,-161],[0,-271],[-41,-294],[15,-170],[82,-152],[98,-130],[123,-130],[170,-77],[233,-106],[234,-107],[188,-92],[188,-92],[116,-29],[75,-31],[32,-96],[-44,-199],[-68,-257],[-116,-278],[-173,-411],[-94,-398],[-129,-83],[-217,-50],[-218,-86],[-417,-77],[-185,-56],[-223,131],[-77,70],[-202,278],[-188,435],[-117,375],[-34,108],[-64,143],[-65,143],[-137,162],[-144,61],[-162,173],[-150,248],[-138,154],[-79,27],[-202,68],[-25,19],[-116,88],[-17,36],[-65,139],[-7,19],[-50,139],[-96,266],[-132,238],[-195,197],[-195,129],[-45,30],[-254,101],[-157,148],[-137,377],[-113,394],[-50,654],[5,90],[11,218],[60,105],[64,112],[201,203],[93,5],[93,5],[63,-31],[88,-41],[272,-4],[192,-64],[181,-145],[114,-122],[137,-48],[100,125],[26,175],[-90,452],[-63,507],[-94,288],[-137,219],[-159,257],[-153,199],[-232,298],[-215,172],[-135,115],[-90,74],[-35,172],[-28,180],[-9,311],[-8,246],[-90,152],[-180,298],[-138,157],[-120,137],[-99,19],[-52,63],[-48,199],[-35,159],[-35,160],[-67,115],[-68,115],[-64,169],[-43,113],[-124,174],[-162,228],[-92,113],[-118,147],[-142,140],[-194,134],[-151,91],[-95,76],[-50,131],[9,173],[29,185],[71,290],[28,358],[25,229],[21,191],[53,164],[83,72],[90,47],[154,13],[196,115],[149,50],[131,13],[92,52],[83,149],[77,217],[69,251],[-16,269],[-81,277],[-90,327],[-132,274],[-85,180],[-76,105],[-28,139],[19,110],[108,57],[163,18],[308,0],[189,45],[225,29],[192,-63],[136,-126],[117,-141],[99,-133],[101,-149],[42,-177],[3,-116],[33,-70],[78,-19],[95,-7],[128,57],[102,118],[68,204],[10,305],[30,267],[-33,410],[-5,311],[-42,131],[-125,146],[-218,147],[-310,274],[-255,233],[-222,102],[-341,167],[-272,105],[-186,80],[-160,74],[-149,49],[-205,-36],[-123,-71],[-130,-109],[-102,-88],[-157,-133],[-175,-150],[-101,-103],[-105,-84],[-98,-104],[-80,-49],[-95,15],[-128,112],[-89,74],[-36,83],[-2,129],[-54,80],[-96,142],[-117,89],[-130,98],[-100,76],[-120,121],[-223,144],[-291,125],[-179,76],[-317,201],[-273,175],[-186,149],[-211,163],[-151,117],[-120,39],[-131,24],[-199,36],[-175,-28],[-132,-21],[-201,-105],[-116,-131],[-189,-232],[-258,-379],[-102,-154],[-118,-110],[-135,-89],[-132,-112],[-134,-199],[-239,-328],[-147,-201],[-235,-321],[-345,-473],[-113,-172],[-61,-71],[-145,-197],[-161,-218],[-113,-170],[-139,-191],[-82,-71],[-150,-128],[-126,-109],[-116,-121],[-186,-324],[-53,-248],[-49,-165],[-71,-227],[-87,-76],[-76,50],[-34,125],[-25,162],[-20,201],[76,335],[66,209],[67,209],[61,157],[74,193],[116,237],[115,237],[71,196],[92,251],[33,141],[-40,133],[-115,57],[-124,21],[-162,-7],[-152,-27],[-166,40],[-139,31],[-73,63],[-78,78],[-41,86],[10,121],[82,153],[55,56],[116,232],[95,264],[30,134],[52,313],[15,285],[0,225],[16,212],[54,198],[72,89],[109,44],[107,12],[252,26],[243,-14],[255,-36],[147,-23],[135,-6],[92,83],[28,115],[-49,144],[-118,126],[-190,128],[-129,133],[-147,97],[-135,13],[-210,-32],[-201,-34],[-279,-62],[-159,-13],[-152,10],[-216,-47],[-256,-96],[-215,-58],[-154,-13],[-121,-55],[-56,-112],[-50,-176],[-26,-187],[-12,-114],[-20,-191],[-2,-383],[24,-186],[-47,-193],[-99,-196],[-116,-162],[-102,-144],[-120,-107],[-109,-86],[-29,-61],[-2,-83],[64,-136],[101,-267],[36,-345],[5,-374],[-55,-224],[-108,-246],[-22,-196],[-4,-267],[56,-313],[92,-168],[95,-104],[38,-230],[4,-201],[15,-134],[7,-243],[-7,-316],[-47,-308],[-102,-259],[-168,-225],[-161,-212],[-132,-157],[-137,-78],[-169,21],[-170,16],[-222,57],[-189,42],[-178,18],[-226,76],[-121,16],[-147,0],[-321,123],[-207,120],[-158,91],[-109,87],[-56,88],[-29,233],[-75,139],[-194,73],[-135,34],[-102,68],[-28,133],[3,217],[-19,206],[-26,81],[-65,42],[-75,56],[-62,96],[14,78],[83,81],[107,113],[83,117],[32,126],[0,158],[-75,114],[-168,172],[-88,91],[-88,89],[-87,90],[-70,221],[-26,224],[-19,158],[7,256],[0,196],[-29,118],[-64,125],[-112,68],[-134,42],[-134,43],[-133,43],[-97,89],[-49,128],[-14,186],[33,167],[106,144],[197,148],[142,100],[181,126],[135,107],[184,110],[58,89],[11,99],[-43,68],[-103,91],[-126,55],[-161,43],[-184,85],[-154,84],[-95,60],[-101,84],[-48,120],[-16,117],[27,165],[-11,167],[-55,95],[-55,94],[-117,73],[-117,73],[-113,23],[-70,14],[-98,-67],[-66,-173],[-28,-149],[-69,-200],[-76,-108],[-106,-65],[-48,-29],[-51,-56]],[[685356,847622],[-145,783],[-19,145],[25,101],[42,82],[582,389],[84,56],[62,80],[21,101],[91,588],[64,694],[-32,685],[-59,497],[29,322],[115,321],[94,199],[151,182],[231,186],[199,90],[186,17],[280,46],[288,125],[236,96],[300,203],[301,212],[179,144],[127,125],[256,396],[160,424],[80,217],[63,240],[207,1083],[106,580],[71,429],[44,197],[38,167],[87,130],[79,98],[202,176],[356,260],[117,64],[259,142],[1,0],[327,180],[391,881],[-63,331],[-378,899],[-107,334],[-4,167],[36,232],[86,205],[114,118],[153,92],[208,43],[71,81],[29,183],[-8,183],[-60,275],[-146,368],[508,1014],[-391,623],[-51,237],[1477,4657],[211,544],[86,144],[68,70],[92,58],[173,79],[213,10],[94,-5],[160,-24],[156,-62],[233,-80],[266,-138],[239,-154],[253,-183],[217,-164],[479,-395],[418,-308],[90,-15],[137,39],[176,125],[198,140],[67,35],[86,32],[91,-20],[90,-20],[672,-129],[403,-53],[188,-4],[217,-15],[243,44],[141,24],[111,43],[74,96],[3,7],[54,119],[598,2563],[257,1036],[188,754],[66,205],[76,174],[154,163],[198,203],[230,260],[191,337],[154,371],[25,396],[-57,395],[-77,231],[-441,723],[-63,260],[38,241],[89,202],[109,203],[204,183],[218,154],[274,39],[288,28],[492,85],[474,164],[331,89],[255,29],[313,48],[173,96],[230,222],[223,376],[83,159],[89,231],[13,163],[7,83],[0,376],[-100,409],[-168,397],[-167,397],[-53,287],[-23,216],[77,462],[134,270],[260,277],[186,91],[116,124],[73,62],[36,111],[76,193],[109,96],[128,10],[108,-68],[141,-29],[140,106],[243,723],[211,800],[187,358],[197,305],[204,233],[204,97],[178,133],[196,267],[156,221],[144,82],[153,20],[135,48],[89,120],[77,126],[60,159],[26,147],[14,178],[18,233],[3,309],[-6,202],[16,126],[32,106],[54,144],[83,212],[89,174],[154,212],[99,110],[112,87],[84,110],[31,97],[12,193],[-124,178],[-221,319],[-115,192],[-102,217],[-6,87],[22,87],[77,110],[214,198],[297,294],[268,381],[214,385],[102,255],[67,290],[24,142],[19,112],[1,136],[-8,197],[-23,299],[-54,246],[-80,246],[-96,144],[-198,121],[-142,162],[-49,132],[-13,164],[12,182],[13,112],[55,53],[95,-5],[125,-73],[89,-84],[237,-248],[283,-242],[146,-110],[231,-173],[212,-159],[99,-126],[41,-125],[40,-151],[24,-95],[29,-115],[64,-111],[77,-140],[64,-130],[57,-10],[48,29],[10,77],[-39,232],[-35,241],[-38,260],[-3,221],[25,217],[54,193],[138,145],[185,82],[208,72],[223,19],[227,-29],[294,-96],[1269,-421],[273,-51],[234,38],[223,144],[60,145],[56,169],[12,332],[-51,1542]],[[714675,897527],[205,-183],[198,-192],[127,-203],[50,-216],[50,-216],[277,-258],[395,-177],[1181,-13],[163,40],[680,-228],[1269,-752],[848,-25],[165,79],[247,210],[274,4],[488,-849],[332,-297],[397,-156],[621,-1029],[121,-275],[147,-503],[106,-238],[141,-606],[-147,-544],[162,-382],[488,-904],[127,-622],[-57,-1053],[289,-945],[80,-1401],[267,-480],[86,-227],[-29,-388],[183,-421],[458,-453],[213,-535],[-12,-373],[-342,-761],[-47,-224],[-35,-433],[148,-790],[274,-401],[589,-119],[409,101],[1378,935],[283,88],[353,-219],[379,-12],[131,21],[9,2],[35,5],[420,167],[106,-145],[50,-1155],[324,-894],[142,-134],[282,-80],[256,-246],[162,-315],[352,-389],[-174,-308],[-327,-62],[-220,-105],[-176,-424],[-41,-868],[-452,-1506],[-150,-221],[-297,-600],[-127,-461],[-68,-457],[197,-1889],[-143,-530],[-613,-420],[-305,-41],[-424,-147],[-403,-683],[-126,-392],[-268,-1318],[-934,-1546],[0,-415],[0,-258],[303,-791],[390,-853],[63,-211],[43,-432],[-16,-258],[-118,-684],[99,-594],[487,-842],[21,-24],[440,-524],[4,-5],[233,-278],[30,-914],[71,-406],[203,-358],[1012,-496],[494,-48],[955,322],[210,288],[376,-185],[57,367],[-410,2038],[84,351],[347,360],[247,469],[1060,748],[565,128],[291,-157],[303,-660],[234,-225],[267,-145],[694,82],[220,-22],[157,24],[1665,251],[1801,1065],[565,186],[1513,39],[226,-180],[247,-755],[-133,-1801],[141,-1486],[197,-366],[297,-90],[1882,-188],[365,-156],[227,-477],[49,-226],[192,-495],[409,-618],[605,-349],[249,-308],[78,-139],[318,-873],[553,-625],[401,-257],[325,-136],[474,-323],[263,-534],[69,-235],[672,-884],[445,-178],[727,-189],[341,-32],[508,-179],[826,-506],[735,-963],[289,-84],[57,1182],[572,609],[574,164],[155,272],[-36,572],[-282,710],[29,515],[564,1042],[771,2492],[430,39],[949,-152],[281,118],[142,322],[-120,451],[-565,588],[-299,511],[-394,398],[36,365],[509,240],[2,-3],[65,-95],[45,-66],[24,-35],[12,-17],[37,-55],[2,-3],[850,-1251],[277,-244],[757,-19],[266,-200],[255,-614],[398,-405],[784,445],[431,281],[471,370],[242,510],[15,414],[-135,391],[-16,425],[326,2725],[-70,1002],[168,608],[241,144],[128,31],[160,227],[533,756],[141,77],[523,-101],[346,-260],[98,-129],[907,-293],[784,96],[847,312],[289,156],[70,376],[72,161],[171,843],[218,535],[241,1793],[-119,729],[41,396],[352,781],[446,248],[1908,350],[487,570],[150,367],[472,486],[607,426],[926,1250],[658,374],[720,114],[383,190],[451,587],[552,864],[622,1787],[91,176]],[[87923,397816],[4,-58],[57,-178],[74,-160],[122,-265],[66,-144],[31,-67],[30,-67],[4,-10],[73,-193],[22,-58],[47,-111],[10,-23],[10,-92],[-26,-114],[-14,-59],[-11,-51],[-211,-172],[-255,-296],[-75,-89],[-47,-24],[-116,24],[-45,25],[-53,49],[-39,55],[-34,-3],[-43,-34],[-51,-9],[-51,52],[-45,59],[-28,34],[-163,-13],[-135,9],[-75,0],[-88,-21],[-73,-55],[-59,-53],[-45,-49],[-12,-61],[26,-83],[33,-71],[63,-71],[86,-27],[47,-19],[26,-15],[20,-21],[2,-44],[-36,-27],[-141,-22],[-53,-37],[-58,-72],[-121,-136],[-14,-96],[-16,-113],[-104,-95],[-39,-41],[-9,-52],[15,-611],[16,-89],[4,-90],[-56,-103],[-52,-93],[-48,-62],[-55,-89],[-39,-41],[-16,-33],[-2,-40],[21,-50],[50,-62],[8,-30],[-2,-77],[-6,-79],[-26,-84],[-64,-134],[-19,-50],[-13,-40],[3,-37],[45,-106],[43,-86],[39,-83],[43,-94],[49,-128],[62,-141],[32,-72],[20,-48],[7,-43],[-12,-50],[-40,-63],[-47,-71],[-16,-46],[-17,-51],[-12,-77],[6,-57],[23,-72],[45,-70],[43,-77],[15,-62],[10,-69],[-6,-69],[-14,-66],[-22,-69],[-28,-77],[-29,-117],[-16,-112],[0,-104],[6,-110],[12,-59],[42,-79],[35,-64],[31,-54],[21,-60],[10,-40],[0,-51],[-4,-50],[-35,-125],[-25,-83],[-20,-72],[8,-52],[26,-32],[43,-39],[38,-51],[16,-69],[0,-50],[4,-88],[-4,-75],[-5,-31],[-22,-25],[-32,-14],[-14,-25],[-4,-28],[3,-42],[21,-121],[40,-174],[27,-120],[6,-72],[13,-90],[-1,-60],[-9,-59],[-29,-58],[-33,-54],[-390,-324],[-22,-18],[-9,-36],[-8,-63],[-11,-138],[-16,-53],[-17,-53],[-30,-77],[-29,-77],[-21,-38],[-20,-31],[-29,-14],[-68,-14],[-54,-35],[-34,-37],[-24,-37],[-24,-52],[-11,-47],[-19,-42],[-19,-35],[-36,-53],[-33,-31],[-41,-2],[-24,-6],[-45,-37],[-34,-28],[-20,-6],[-18,14],[-26,24],[-16,19],[-23,0],[-9,-3],[-10,-3],[-5,-23],[15,-22],[6,-21],[-19,-16],[-19,-11],[-20,-32],[-1,-40],[16,-35],[14,-30],[4,-42],[0,-4],[11,-70],[1,-18],[-9,-26],[-22,-21],[-25,-24],[-30,-51],[-39,-94],[-39,-115],[-20,-77],[-11,-44],[-15,-56],[-5,-20],[-8,-21],[-82,-42],[-67,-39],[-34,-11],[-55,-14],[-13,-11],[-3,-23],[5,-40],[35,-84],[29,-89],[13,-86],[-1,-82],[-17,-57],[-39,-60],[-46,-43],[-45,-12],[-33,-2],[-15,-1],[-66,34],[-139,110],[-62,33],[-50,-10],[-52,8],[-9,-28],[12,-39],[27,-100],[24,-39],[19,-23],[7,-21],[-6,-27],[-10,-39],[-28,-19],[-60,-23],[-6,1],[-3,0],[-4,0],[-3,0],[-3,0],[-17,2],[-81,5],[-69,4],[-61,-21],[-68,-34],[-94,-27],[-26,6],[-32,15],[-26,34],[-80,107],[-58,85],[-32,49],[-8,66],[-8,58],[-15,33],[-26,17],[-22,12],[-24,-12],[-42,-34],[-190,-143],[-79,-148],[-80,-149],[-99,-141],[-27,-12],[-19,18],[-22,49],[-28,73],[-40,185],[-45,163],[-15,66],[-24,70],[-28,47],[-34,28],[-44,11],[-40,4],[-36,-9],[-31,-14],[-17,-21],[-9,-23],[-9,-70],[-2,-72],[-16,-54],[-26,-55],[-32,-41],[-107,-34],[-129,-28],[-8,2],[-8,1],[-44,76],[-35,64],[-32,52],[-49,63],[-56,60],[-30,23],[-55,6],[-60,11],[-55,32],[-35,37],[-75,126],[-2,3],[-68,105],[-30,43],[-47,26],[-49,106],[-5,51],[-13,25],[-32,35],[-6,43],[-10,19],[-8,37],[-15,26],[3,93],[5,64],[-7,34],[-125,78],[-72,76],[-81,112],[-97,98],[-107,112],[-209,291],[-90,80],[-85,124],[-70,122],[-45,78],[-23,69],[-78,139],[-40,43],[-110,49],[-38,41],[-29,92],[-34,84],[-37,26],[-57,-3],[-57,-4],[-58,-4],[-36,1],[-51,30],[-57,26],[-40,12],[-24,23],[-48,-14],[-38,-29],[-50,-8],[-56,-21],[-37,-20],[-28,-31],[-23,-27],[-24,-41],[-18,-33],[-5,-64],[3,-62],[6,-59],[11,-59],[-2,-49],[-5,-35],[-9,-52],[-13,-46],[-12,-22],[-16,-11],[-38,-2],[-79,19],[-34,14],[-38,3],[-44,7],[-17,-5],[-9,-10],[-12,-35],[-9,-45],[-7,-71],[-9,-53],[-9,-70],[-10,-34],[-18,-44],[-37,-67],[-31,-63],[-9,-39],[-7,-56],[0,-45],[10,-137],[2,-43],[-1,-38],[-7,-30],[-14,-34],[-10,-9],[-9,-9],[-26,-9],[-67,23],[-127,110],[-59,48],[-78,40],[-53,26],[-30,7],[-21,-11],[-20,-18],[-40,-43],[-75,-62],[-17,-3],[-14,8],[-14,8],[-19,39],[-26,30],[2,65],[-16,68],[-21,36],[-47,36],[-67,-2],[-48,9],[-48,9],[-72,-8],[-71,13],[-131,5],[-23,9],[-20,8],[-2,1],[-5,3],[-36,19],[-27,6],[-13,3],[-13,4],[-13,-1],[-12,-1],[-25,-1],[-33,-6],[-28,-26],[-106,-69],[-11,-7],[-6,-3],[-24,-32],[-1,-9],[-2,-9],[-3,-18],[-6,-34],[-13,-47],[-23,-13],[-110,-68],[-109,-73],[-74,-30],[-32,-25],[-38,-3],[-23,12],[-26,19],[-31,-8],[-12,-16],[-3,-28],[-11,-34],[-30,-23],[-81,-56],[-35,-21],[-32,-15],[-19,-41],[-12,-14],[-17,-20],[-9,-11],[-23,-23],[-51,-17],[-21,-18],[-7,-13],[2,-21],[41,-48],[10,-24],[-3,-65],[-6,-55],[-11,-66],[-35,-76],[-37,-43],[-118,-56],[-71,2],[-35,-24],[-45,-60],[-6,-18],[6,-26],[15,-42],[22,-62],[11,-60],[3,-96],[-10,-72],[-8,-33],[-7,-31],[-49,-32],[-19,-9],[-18,-10],[-9,-22],[2,-52],[12,-21],[12,-14],[-1,-132],[-25,-45],[-19,-21],[-20,-100],[-15,-14],[-28,-4],[-32,-23],[-26,-29],[-13,-22],[-169,-224],[-36,-36],[-150,-90],[-53,-68],[-21,-71],[-35,-104],[-67,-106],[-45,-99],[-36,-96],[-41,-104],[4,-47],[-11,-28],[-16,-20],[-22,-25],[-13,-14],[-16,1],[-17,2],[-18,-19],[-28,-40],[-42,-32],[-11,-35],[-19,-15],[-97,-24],[-40,-19],[-21,-31],[-29,-45],[-20,-19],[-24,-5],[-73,29],[-83,31],[-56,33],[-63,0],[-105,-36],[-77,-51],[-95,-20],[-32,-101],[-86,-37],[-129,-73],[-142,-212],[-37,-14],[-74,28],[-49,16],[-34,-7],[-35,-16],[-59,-111],[-73,-62],[-114,-73],[-22,-15],[-129,-56],[-118,-206],[-69,-175],[-105,-107],[-114,-96],[-88,-141],[-54,-231],[-56,-169],[-139,-251],[-125,-153],[-62,-10],[-29,-26],[-28,-26],[-56,-127],[-17,-93],[-53,-220],[-86,-53],[-69,-82],[-78,-186],[-107,-95],[-73,-94],[-121,-203],[-131,-220],[-144,-88],[-269,-42],[-194,-226],[709,-4516],[125,37],[164,9],[165,8],[157,0],[217,17],[140,20],[105,-11],[69,-74],[42,-147],[261,-572],[202,-259],[28,-94],[9,-115],[64,-124],[73,-113],[30,-17],[23,-71],[22,-98],[0,-107],[-2,-215],[100,-183],[150,-200],[79,-40],[86,17],[76,-1],[103,-64],[129,6],[137,87],[99,48],[105,6],[80,45],[64,68],[52,39],[75,14],[71,-11],[93,45],[153,48],[118,45],[86,37],[122,8],[114,-8],[93,-79],[129,-147],[118,-39],[36,-47],[0,-66],[18,-48],[94,-96],[105,-141],[72,-76],[88,-47],[75,-1],[5,2],[100,43],[245,73],[136,-76],[136,-77],[1878,-1060],[1546,-872],[1064,-600],[4759,-2685],[62,-35],[690,-389],[134,-76],[2792,-1575],[80,-45],[79,-45],[7430,-4191],[80,-45],[179,-101],[2536,-1431],[134,-75],[2370,-1337],[-19,-54],[-18,-31],[-27,-11],[-23,-3],[-9,5],[-9,6],[0,2],[-10,33],[-24,30],[-13,18],[-23,19],[-28,2],[-13,0],[-21,4],[-20,3],[-4,1],[-40,-3],[-25,-10],[-42,-21],[-40,-27],[-15,-19],[-4,-18],[6,-17],[8,-7],[1,-5],[-3,-4],[-6,-4],[-5,-1],[-5,-2],[-34,-10],[-16,-6],[-9,-16],[-3,-12],[4,-11],[17,-13],[30,-21],[23,-20],[-21,-35],[18,-42],[-33,-35],[8,-84],[25,-25],[-23,-51],[1,-28],[-40,-59],[12,-65],[-11,-60],[-36,-49],[-59,-56],[-11,-60],[1,-86],[-1,-69],[-2,-48],[-1,-33],[14,-32],[26,-33],[27,-34],[16,-51],[6,-62],[-1,-77],[-9,-75],[-21,-66],[-22,-60],[-30,-136],[-3,-114],[9,-165],[7,-156],[16,-151],[5,-48],[13,-41],[7,-40],[30,-67],[61,-120],[97,-205],[42,-97],[53,-27],[97,-76],[57,-52],[38,-81],[19,-18],[20,-18],[42,-22],[43,-10],[47,4],[52,10],[52,9],[43,-3],[31,-41],[62,-14],[52,-40],[76,-29],[44,-55],[-7,-62],[41,-85],[58,-58],[32,-83],[39,-87],[42,-41],[41,16],[46,0],[28,-12],[7,-42],[6,-78],[0,-37],[16,-23],[18,-8],[3,3],[16,15],[32,-25],[4,-36],[0,-44],[17,-25],[7,-29],[0,-38],[-9,-41],[-11,-49],[5,-40],[33,-53],[36,-36],[31,-6],[6,-40],[26,-43],[31,-22],[56,22],[20,-27],[5,-26],[-23,-44],[11,-64],[6,-52],[6,-53],[7,-64],[11,-61],[32,-30],[37,-11],[13,-43],[-12,-40],[8,-43],[35,-58],[11,-45],[-22,-48],[-12,-42],[-3,-43],[19,-52],[58,-58],[15,-32],[-13,-32],[-34,-87],[-14,-37],[9,-49],[10,-27],[38,-67],[9,-45],[-14,-44],[-66,-117],[-6,-48],[17,-48],[45,-43],[83,-21],[100,4],[89,-45],[35,-60],[1,-74],[-12,-61],[-102,-204],[-2,-37],[21,-58],[9,-25],[10,-25],[-1,-15],[-1,-45],[10,-41],[32,-21],[1,-46],[-20,-53],[-26,-46],[-31,-41],[-1,-27],[22,-17],[4,-30],[2,-58],[-5,-13],[-16,-36],[-31,-5],[-36,15],[-24,-18],[-18,-20],[2,-17],[-20,-3],[-35,11],[-7,13],[-12,-11],[0,-50],[9,-26],[20,-6],[1,-52],[-42,-63],[-34,-156],[-57,-258],[-6,-28],[-1,-8],[-11,-48],[-27,-20],[-484,-217],[-382,-172],[-36,-15],[-21,-27],[-2,-6],[-13,-32],[-14,-57],[-14,-58],[-21,-101],[-22,-139],[-13,-102],[-15,-55],[-22,-33],[-24,-23],[-46,-27],[-23,22],[-43,-5],[-25,35],[-36,-10],[-7,37],[-22,15],[-15,-25],[-33,2],[-17,27],[-15,-20],[-18,-18],[-43,-6],[-10,-37],[-15,-12],[-22,20],[-25,31],[-19,-6],[-2,-39],[-16,-15],[-28,5],[-9,31],[4,24],[-26,4],[-11,-18],[-14,-15],[-29,-2],[-63,-1],[-51,-24],[-79,-60],[-47,-27],[-47,-32],[-54,8],[-60,-6],[-11,-69],[-34,-31],[-34,-30],[-17,-68],[5,-59],[20,-19],[33,-16],[3,-31],[19,-10],[6,-20],[-8,-12],[-20,-28],[-17,-68],[-55,-110],[-42,-50],[-86,-68],[-36,-20],[-36,-20],[-19,-29],[-3,-3],[-2,-3],[-9,-47],[0,-13],[1,-66],[9,-33],[8,-33],[14,-39],[18,-31],[-2,-42],[8,-37],[11,-66],[33,-93],[23,-19],[35,-41],[35,-60],[38,-65],[56,-155],[49,-62],[46,-85],[11,-132],[-17,-23],[-17,-24],[-36,-54],[-38,-108],[-23,-116],[-3,-144],[23,-77],[34,-50],[68,-31],[55,-66],[85,-293],[-421,-75],[-375,59],[-71,11],[-30,5],[-64,12],[-115,20],[-196,36],[-341,2],[-98,-1],[-339,-4],[-347,-47],[-142,-55],[-162,-63],[-53,-20],[-156,-58],[-21,-8],[-328,-202],[-462,-315],[-520,-257],[-643,-209],[-521,-194],[-329,-53],[-67,-11],[-146,-23],[-299,-76],[-134,-62],[-133,-180],[-72,-261],[-36,-333],[-85,-924],[72,-595],[62,-487],[99,-677],[39,-325],[8,-321],[-31,-233],[-87,-205],[-106,-117],[-138,-119],[-198,-81],[-35,-9],[-308,-73],[-241,-31],[-152,-58],[-38,-29],[-77,-61],[-3,-3],[-3,-2],[-13,-9],[-27,-19],[-129,-94],[-103,-104],[-82,-78],[-45,-75],[-22,-38],[-23,-38],[-97,-100],[-72,-33],[-72,-33],[-180,-15],[-143,25],[-144,25],[-283,88],[-89,28],[-546,185],[-139,47],[-176,44],[-141,34],[-138,35],[-37,5],[-2,1],[-1,0],[-7,1],[-2,0],[-2,1],[-2,0],[-2,0],[-2,1],[-3,0],[-2,0],[-2,1],[-2,0],[-2,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-11,1],[-7,2],[-59,9],[-91,-13],[-50,-35],[-50,-35],[-143,-146],[-5,-5],[-3,-3],[-6,-6],[-7,-7],[-65,-66],[-7,-7],[-54,-54],[-30,-31],[-111,-170],[-42,-72],[-8,-12],[-12,-20],[-22,-39],[-66,-233],[-35,-234],[-25,-172],[-47,-339],[-30,-150],[-31,-150],[-77,-267],[-95,-290],[-105,-234],[-123,-274],[-206,-321],[-295,-290],[-296,-186],[-386,-159],[-274,-108],[-309,-128],[-46,-20],[-141,-60],[-42,-24],[-128,-74],[-150,-148],[-6,-7],[-121,-128],[-36,-20],[-37,-21],[-125,-71],[-46,-21],[-46,-22],[-64,-19],[-31,-9],[-46,-14],[-82,0],[-57,65],[-57,106],[-145,464],[-51,126],[-50,125],[-42,82],[-42,81],[-48,43],[-47,42],[-116,74],[-113,-8],[-102,-19],[-72,-58],[-80,-82],[-56,-109],[-57,-110],[-101,-289],[-104,-216],[-191,-327],[-2,-4],[-529,-744],[-12,-17],[-350,-435],[-6,-5],[-318,-297],[-5,-14],[-3,-7],[-3,-6],[-215,-525],[-311,-309],[-318,-151],[-692,-459],[-848,-404],[-8,-4],[-41,-38],[-88,-83],[-271,-368],[-130,-175],[-183,-164],[-141,-206],[-468,-685],[-593,-968],[-424,-539],[-121,-209],[-126,-351],[77,-1092],[-43,-1078],[-182,-572],[7,-435],[49,-192],[324,-215],[341,-98],[375,112],[565,-67],[227,-80],[161,-113],[375,-128],[346,-248],[168,-215],[177,-404],[85,-466],[0,-432],[-55,-252],[-221,-438],[-345,-422],[-213,-207],[-212,-143],[-762,-341],[-283,-210],[-219,-369],[-840,-702],[-664,-652],[-644,-887],[-247,-515],[-128,-445],[-255,-1227],[-55,-1511],[-85,-1007],[-193,-898],[-134,-239],[-288,-510],[-135,-176],[-1406,-1304],[-489,-204],[-508,-62],[-1095,269],[-507,254],[-426,306],[-267,266],[-460,684],[-198,377],[-234,320],[-677,445],[-560,646],[-515,816],[-207,452],[-353,1068],[-119,611],[-205,538],[-240,872],[-361,852],[-537,1068],[-84,236],[-397,1593],[29,614],[177,1021],[6,1178],[-26,937],[-21,730],[54,996],[335,1305],[265,760],[265,759],[712,1524],[177,431],[127,355],[13,34],[-148,97],[-148,96],[-106,60],[-172,67],[-102,33],[-172,20],[-848,120],[-179,23],[-26,4],[-172,-20],[-115,36],[-73,64],[-71,70],[-53,80],[-26,76],[-24,93],[-22,60],[-34,54],[-41,30],[-51,40],[-69,16],[-69,47],[-65,17],[-49,59],[-24,64],[-27,86],[-20,77],[-35,70],[-46,54],[-24,9],[-34,-30],[-22,-86],[-39,-50],[-34,41],[-39,12],[-29,-37],[-57,47],[-47,90],[-15,90],[-24,36],[-89,64],[-77,46],[-113,44],[-64,26],[-37,23],[-69,-19],[-57,3],[-35,7],[-29,56],[-4,83],[2,84],[13,73],[13,68],[-8,38],[-24,29],[-25,15],[-27,-2],[-26,-25],[-21,-33],[-34,-25],[-18,1],[-32,20],[-31,37],[-27,113],[-32,77],[-39,17],[-30,-20],[-17,-27],[-10,-52],[1,-41],[-8,-32],[-20,-17],[-49,-11],[-78,5],[-52,15],[-41,28],[-40,35],[-35,61],[-20,16],[-15,1],[-27,14],[-25,55],[-43,31],[-44,5],[-50,13],[-42,19],[-39,61],[-37,80],[-39,69],[-56,89],[-20,20],[-23,-6],[-12,-16],[-23,-16],[-11,-1],[-40,-2],[-53,20],[-31,41],[-21,-6],[-44,-12],[-42,12],[-30,32],[-8,32],[-9,31],[-48,60],[-50,31],[-40,59],[-56,83],[-132,166],[-66,80],[-93,153],[-31,27],[-30,27],[-42,8],[-61,-8],[-68,47],[-29,6],[-43,5],[-38,27],[-26,11],[-38,137],[-24,61],[-37,32],[-180,115],[-105,68],[-22,5],[-38,-5],[-45,25],[-65,60],[-82,108],[-58,67],[-29,23],[-37,20],[-40,5],[-27,-5],[-28,-20],[-35,-33],[-18,-23],[-38,-14],[-37,-10],[-31,30],[-22,70],[-15,50],[1,50],[-4,52],[-27,68],[-37,67],[-25,44],[-38,44],[-26,1],[-27,-5],[-31,-7],[-23,23],[1,50],[7,56],[21,37],[40,75],[14,43],[-3,128],[9,72],[4,50],[-7,23],[-48,148],[-9,40],[-17,44],[-20,33],[-13,23],[-17,82],[-27,68],[-36,125],[-8,43],[-10,51],[-19,36],[-74,63],[-34,37],[-25,55],[-49,83],[-31,23],[-38,7],[-49,-2],[-64,-31],[-35,0],[-44,-10],[-24,-5],[-28,-17],[-25,-30],[0,-20],[-1,-27],[17,-38],[2,-27],[-4,-28],[-14,-23],[-34,-19],[-20,7],[-20,7],[-43,36],[-37,24],[-29,6],[-55,-1],[-82,-3],[-40,-15],[-24,39],[-27,28],[-1,33],[-6,30],[-38,37],[-24,11],[-20,55],[-79,132],[-83,138],[-10,27],[0,10],[0,20],[-20,36],[-26,10],[-14,13],[-5,10],[-11,19],[-38,72],[-69,104],[-39,64],[-32,43],[-87,98],[-38,42],[-45,36],[-49,24],[-49,10],[-100,41],[-187,140],[-226,165],[-162,160],[-58,70],[-27,48],[-17,43],[-22,50],[-17,47],[-21,53],[-19,59],[-8,33],[-19,68],[-34,80],[-46,87],[-96,150],[-63,91],[-221,275],[-53,65],[-5,6],[-39,41],[-22,23],[-45,43],[-20,11],[-25,11],[-28,-3],[-33,-2],[-54,10],[-14,7],[-6,16],[-8,8],[-13,2],[-42,5],[23,58],[42,63],[68,80],[62,65],[64,55],[82,82],[67,41],[95,110],[6,11],[44,73],[9,69],[1,56],[2,117],[0,12],[4,81],[31,88],[16,45],[-3,100],[25,50],[53,67],[33,39],[54,64],[3,3],[12,14],[36,42],[16,18],[28,49],[21,37],[9,28],[19,62],[1,10],[2,77],[-11,70],[-8,35],[-19,85],[13,153],[5,83],[4,83],[0,1],[2,51],[-2,35],[-39,96],[-36,187],[-3,34],[-4,34],[-12,40],[-9,45],[-16,38],[-6,8],[-7,8],[-13,16],[-13,16],[-13,16],[-55,55],[-45,55],[-41,51],[-49,117],[-23,37],[-24,38],[-6,16],[-28,74],[-51,144],[-40,70],[-10,22],[-10,21],[-21,42],[-43,99],[-21,64],[-11,34],[-48,158],[-17,135],[42,106],[71,90],[55,114],[51,59],[61,97],[53,47],[34,-4],[37,34],[16,41],[6,65],[33,37],[69,150],[106,126],[77,20],[44,77],[51,-17],[29,97],[33,43],[46,3],[84,-6],[68,60],[84,16],[71,30],[77,4],[66,23],[29,20],[29,20],[48,33],[25,27],[24,26],[59,60],[39,84],[41,16],[42,-23],[33,23],[22,114],[29,139],[35,130],[17,70],[16,70],[-17,63],[-69,80],[-50,62],[-9,12],[-80,46],[-64,20],[-51,17],[-24,46],[7,117],[-3,163],[-7,63],[-8,64],[-17,47],[-16,48],[-17,47],[-16,48],[-20,53],[6,60],[34,93],[11,21],[53,99],[61,106],[78,54],[2,80],[13,90],[73,23],[20,38],[10,19],[10,19],[129,403],[192,596],[312,967],[370,1148],[1627,5052],[1935,6008],[-5399,10338],[-703,7112]],[[58161,379321],[102,84],[101,85],[73,171],[-16,266],[-31,330],[-63,688],[75,481],[63,128],[63,128],[266,352],[187,158],[156,145],[137,97],[105,104],[202,145],[202,155],[240,123],[68,50],[46,14],[64,20],[43,59],[16,51],[53,11],[112,100],[57,-17],[80,9],[42,22],[34,69],[-11,138],[6,86],[83,200],[20,97],[35,79],[52,28],[66,24],[58,73],[70,118],[26,92],[39,60],[41,58],[41,38],[39,69],[37,76],[59,79],[57,34],[62,-20],[64,-18],[88,33],[68,54],[16,55],[7,47],[0,44],[15,50],[13,4],[42,16],[42,3],[26,34],[23,68],[10,95],[45,5],[8,46],[15,14],[15,-12],[19,57],[12,78],[2,76],[-28,107],[-19,110],[1,80],[-3,62],[-13,52],[-12,34],[14,41],[39,60],[12,25],[20,9],[100,167],[10,40],[3,22],[-12,43],[46,104],[18,110],[22,50],[57,183],[48,152],[94,218],[41,152],[73,186],[69,76],[78,83],[41,131],[55,131],[73,124],[41,204],[81,362],[33,129],[-18,77],[-37,101],[-65,129],[-82,89],[-91,59],[-53,21],[-29,59],[-32,79],[-15,71],[11,74],[69,187],[10,56],[35,6],[10,61],[28,31],[27,64],[28,28],[20,-1],[19,-2],[67,9],[96,-12],[82,-22],[108,-44],[37,18],[32,14],[24,52],[6,50],[-6,58],[13,63],[34,29],[71,-6],[65,2],[33,23],[41,70],[39,3],[75,-47],[39,23],[79,135],[61,12],[47,22],[57,0],[47,30],[37,53],[53,43],[55,0],[77,17],[159,53],[41,40],[73,65],[39,12],[61,19],[55,6],[38,34],[61,21],[43,34],[29,138],[38,68],[38,66],[22,38],[48,19],[53,3],[62,9],[24,31],[33,70],[34,111],[14,104],[0,83],[17,142],[49,86],[73,18],[118,25],[106,0],[106,-43],[77,-49],[37,18],[22,40],[-4,67],[39,237],[106,234],[86,68],[40,116],[106,92],[124,6],[25,-9],[24,-17],[33,0],[43,8],[31,15],[20,25],[13,28],[31,3],[53,-5],[113,-17],[34,22],[22,44],[0,37],[-6,51],[-13,66],[-12,66],[-11,69],[-7,29],[7,36],[-4,26],[-22,27],[-10,33],[7,56],[9,28],[19,20],[10,29],[5,48],[14,41],[31,70],[25,49],[6,41],[4,51],[12,41],[15,89],[26,60],[9,42],[18,117],[6,93],[47,176],[-3,30],[-15,48],[-11,81],[-11,36],[-23,37],[-32,102],[-23,91],[-17,52],[-17,40],[-25,46],[-32,37],[-12,51],[4,37],[10,19],[16,13],[35,16],[10,39],[14,11],[20,11],[6,20],[17,80],[8,55],[0,42],[-10,55],[0,60],[9,72],[4,58],[28,99],[23,44],[5,39],[-8,55],[-9,94],[-8,87],[-4,123],[-2,74],[1,28],[2,33],[15,54],[11,79],[17,39],[6,45],[17,23],[17,28],[2,15],[21,28],[16,37],[-10,73],[15,51],[25,80],[23,51],[17,15],[20,6],[67,17],[50,3],[43,5],[42,-28],[45,-38],[23,-17],[29,-9],[22,9],[19,29],[24,18],[20,-7],[30,-9],[19,26],[16,32],[4,116],[9,48],[21,65],[-3,62],[-22,78],[-12,94],[36,84],[39,37],[52,11],[30,33],[75,147],[62,100],[68,62],[58,17],[44,53],[43,100],[28,72],[5,39],[26,48],[75,32],[107,30],[95,43],[10,54],[122,21],[44,76],[75,54],[106,13],[123,-30],[93,-51],[90,-28],[90,-28],[77,-28],[86,-32],[13,-8],[71,-43],[76,-45],[89,-46],[65,-19],[43,8],[14,32],[9,68],[-6,97],[9,105],[22,102],[48,105],[36,69],[13,21],[30,47],[49,66],[37,32],[37,30],[30,55],[34,55],[54,95],[62,91],[86,115],[27,34],[16,49],[13,82],[12,120],[12,35],[16,20],[15,20],[19,6],[18,6],[47,-11],[33,-2],[32,-2],[50,-8],[46,-24],[33,-29],[32,-28],[36,-23],[39,-3],[55,30],[47,57],[43,32],[20,56],[-2,63],[-11,81],[4,65],[28,33],[60,71],[87,86],[107,95],[58,25],[76,12],[49,-3],[28,-7],[45,-23],[71,15],[56,11],[39,-17],[25,30],[15,43],[60,25],[69,34],[57,20],[52,1],[67,-9],[76,-3],[53,2],[44,0],[23,26],[23,-5],[45,-100],[6,-23],[21,-3],[34,-11],[26,-15],[40,-58],[32,-59],[45,-41],[32,-28],[45,-24],[39,-16],[39,12],[52,10],[48,49],[57,80],[39,70],[34,79],[20,38],[24,56],[18,43],[65,15],[52,48],[32,-2],[27,-9],[42,15],[30,34],[50,0],[26,-19],[52,-35],[12,-5],[96,-36],[47,-6],[61,-19],[65,-28],[77,-12],[31,8],[33,27],[29,34],[21,46],[9,48],[5,77],[7,95],[7,66],[21,46],[30,39],[48,53],[9,37],[8,34],[19,22],[24,7],[33,-8],[35,-1],[35,0],[30,-17],[106,-15],[49,-9],[56,9],[29,12],[36,32],[25,59],[12,63],[21,97],[13,30],[20,22],[14,11],[14,12],[42,11],[36,7],[50,-30],[60,-31],[113,-56],[64,-27],[57,-2],[64,25],[86,54],[61,61],[24,23],[25,12],[24,11],[78,43],[51,42],[54,78],[27,45],[18,26],[37,19],[28,-2],[26,-31],[29,-9],[43,6],[47,3],[59,8],[32,16],[41,33],[35,46],[98,167],[59,129],[21,42],[10,29],[14,46],[35,62],[34,46],[31,30],[165,165],[72,40],[93,69],[61,55],[17,8],[27,11],[39,9],[34,8],[60,9],[49,-10],[38,-10],[85,-17],[93,-5],[116,5],[21,-17],[16,-20],[23,-129],[-3,-28],[-4,-49],[-22,-92],[-29,-83],[-45,-112],[-83,-137],[-6,-9],[-103,-191],[-4,-8],[-84,-198],[-29,-169],[11,-30],[10,-31],[38,-65],[60,-24],[40,-65],[98,-45],[118,-142],[106,-105],[56,-72],[56,-72],[45,-104],[57,-176],[12,-55],[63,-9],[49,15],[88,88],[57,60],[132,144],[74,59],[93,55],[84,80],[73,80],[102,138],[51,80],[37,24],[48,-6],[31,-190],[24,-127],[33,-61],[51,-163],[4,-752],[-12,-295],[37,-90],[38,-46],[49,19],[71,52],[37,3],[71,22],[72,76],[55,31],[46,12],[60,71],[34,77],[49,9],[137,105],[47,38],[58,20],[33,43],[63,52],[57,13],[98,24],[130,-55],[104,-80],[84,-80],[11,-6],[13,9],[3,31],[26,86],[22,123],[62,128],[79,96],[154,136],[96,45],[175,74],[151,37],[41,8],[40,7],[66,13],[53,18],[30,49],[19,71],[-33,77],[-41,86],[23,163],[38,21],[88,-9],[41,-22],[87,-61],[43,15],[41,-33],[13,-52],[15,-62],[112,-132],[161,-218],[51,-86],[43,-203],[-11,-22],[-24,25],[-42,-34],[-74,-49],[-22,-22],[-37,-86],[-51,-64],[-26,-160],[24,-74],[33,-58],[8,-2],[49,-10],[57,-16],[53,-15],[41,-28],[67,-86],[49,-52],[34,-31],[53,40],[46,94],[17,69],[7,77],[12,71],[32,49],[45,-35],[102,-5],[119,-93],[77,-27],[118,-13],[66,-3],[114,-685],[-30,-81],[-16,-52],[-9,-42],[-17,-34],[-28,-30],[-9,-45],[-23,-137],[10,-32],[118,-218],[73,-157],[34,-59],[35,-59],[82,-129],[160,-218],[53,-83],[22,-13],[21,-6],[19,11],[25,41],[19,90],[-3,69],[-5,77],[-26,127],[-5,78],[5,62],[10,55],[21,25],[22,20],[25,14],[46,6],[29,9],[25,32],[29,19],[28,20],[94,84],[46,26],[16,5],[31,9],[77,17],[90,-5],[68,28],[98,72],[74,59],[55,35],[110,64],[33,13],[49,4],[31,-9],[48,-46],[63,-48],[90,-59],[58,-40],[23,-30],[26,-10],[22,23],[29,45],[45,69],[39,77],[22,82],[4,89],[64,223],[21,43],[26,46],[17,20],[20,11],[21,11],[32,7],[33,-1],[39,-22],[42,-32],[16,-13],[16,-13],[19,-44],[25,-400],[23,-82],[28,-56],[32,-36],[25,-14],[35,-4],[58,37],[19,18],[16,37],[13,12],[28,2],[15,8],[6,11],[0,30],[19,11],[31,31],[20,28],[6,28],[5,8],[9,2],[16,0],[24,39],[6,28],[5,11],[12,6],[13,6],[14,7],[54,55],[33,32],[31,43],[66,116],[51,121],[53,117],[63,166],[6,43],[3,95],[29,36],[19,52],[24,23],[35,3],[34,-16],[31,-30],[42,-63],[39,-30],[52,-47],[64,-63],[40,-43],[43,-40],[57,-51],[46,-29],[33,-9],[39,5],[18,-3],[28,-8],[36,1],[24,25],[13,49],[1,52],[-6,51],[-15,22],[-32,36],[-20,74],[-9,52],[-5,30],[-18,15],[-12,46],[-5,48],[-26,78],[-54,98],[-49,119],[-13,83],[-7,40],[5,26],[16,-1],[19,13],[6,52],[23,74],[50,121],[24,43],[23,14],[47,57],[30,98],[63,90],[41,63],[24,36],[18,8],[38,-10],[20,4],[7,26],[14,15],[91,43],[647,176],[33,12],[18,-8],[20,-13],[16,-25],[2,-143],[-20,-56],[-25,-62],[-24,-32],[-17,-13],[-31,-61],[-21,-45],[-2,-59],[17,-27],[52,-103],[15,-23],[18,6],[25,-2],[91,-32],[44,-27],[24,-28],[-10,-205],[-10,-33],[-21,-24],[-20,-19],[-9,-23],[-18,-112],[-12,-47],[-26,-58],[-5,-64],[11,-31],[23,-15],[43,-19],[64,-6],[62,-5],[53,-5],[30,-1],[7,-19],[12,-43],[9,-19],[13,-14],[63,-25],[29,-20],[33,-46],[53,-52],[42,-48],[24,-31],[13,-78],[-14,-21],[-34,-28],[-31,-40],[-10,-22],[-14,-49],[-32,-110],[-103,-651],[-15,-24],[-17,-20],[-22,-14],[-17,-7],[-7,-47],[-12,-30],[-27,-39],[-27,-28],[-58,-54],[-157,-117],[-33,-12],[-22,-29],[-2,-62],[8,-29],[27,-16],[30,-24],[28,-19],[19,33],[27,14],[37,2],[28,4],[28,-19],[38,0],[55,-28],[72,-19],[49,-23],[50,1],[18,0]],[[343897,274394],[43,-12],[589,-167]],[[344529,274215],[195,-81],[74,-85],[-44,-101],[-37,-98],[-147,-194],[-18,-24],[-85,-84],[-57,-56],[-154,-190],[-166,-257],[-223,-450],[-73,-194],[-73,-125],[-86,-123],[-69,-83],[-84,-53],[-80,-21],[-93,-110],[-139,-120],[-26,-41],[-26,-47],[-34,-157],[-6,-100],[-12,-110],[-27,-120],[-73,-257],[-54,-154],[-73,-98],[-34,-130],[-151,-1050],[-17,-157],[-40,-197],[-22,-156],[-75,-133]],[[342500,268859],[-150,-259],[-4,-7]],[[342346,268593],[-13,-12],[-47,-44]],[[342286,268537],[-110,-10],[-233,228],[-59,-15],[-54,-23],[-25,-62],[-60,-95],[-63,-76],[-66,-52],[-40,-12],[-35,-64],[-69,-76],[-69,-85],[-51,-45],[-125,-192],[-51,-33]],[[341176,267925],[-16,3],[-53,11]],[[341107,267939],[-135,157],[-120,80],[-55,12],[-50,-47],[-43,-78],[-44,-95],[-39,-112],[-71,-107],[-52,-50],[-47,-75],[-104,-78],[-44,-25],[-27,-125],[-55,-194],[-80,-269],[-49,-121],[-58,-103],[-47,-58],[-86,3],[-120,-24],[-66,-38],[-63,-49],[-63,-70],[-25,-95],[9,-112],[33,-91],[46,-108],[22,-83],[-13,-95],[-9,-79],[-60,-62],[-71,4],[-56,10],[-31,-28],[-30,-35],[-15,-59],[6,-75],[-16,-69],[-26,-46],[-48,-41],[-45,-1],[-33,14],[-65,77],[-45,15],[-35,-3],[-41,-26],[-38,-44],[-26,-57],[-5,-73],[9,-53],[11,-36],[65,-122],[12,-33],[18,-64],[11,-68],[-5,-87]],[[339093,264848],[11,-53],[97,-82],[55,-45],[31,-32],[23,-43],[24,-43],[9,-94],[11,-113],[-20,-134],[-6,-61],[-2,-15],[7,-87],[60,-183],[86,-170],[23,-90],[3,-102],[-9,-126],[-22,-168],[-22,-133],[-10,-121],[-17,-341],[-2,-111],[-13,-49],[-27,-56],[-83,-83],[-95,-75],[-44,-85],[-11,-45],[-3,-172],[16,-145],[24,-166],[6,-106],[-12,-107],[-5,-42],[-24,-78],[-29,-83],[-5,-82],[51,-179],[34,-158],[-37,-27],[-69,-21],[-387,-212],[-83,-28],[-37,-30],[-230,-134],[-137,-67],[-39,1],[-76,34],[-24,21],[-42,37],[-37,11],[-137,59],[-390,172],[-130,61],[-39,18],[-104,40],[-46,6],[-39,-2],[-59,-27],[-60,-37],[-41,-36],[-118,-98],[-138,-83],[-66,-48],[-70,-12],[-44,26],[-44,46],[-33,24],[-41,39],[-36,22],[-55,-5],[-146,-50],[-82,-21],[-44,8],[-41,25],[-102,63],[-92,51],[-55,10],[-100,-22],[-233,-46],[-52,-7],[-7,-1],[-72,49],[-198,197],[-15,13],[-53,-1],[-142,-78],[-67,-51],[-138,-73],[-34,-17],[-27,-28],[-169,-201],[-86,-100],[-202,-233],[-125,-165],[-54,-64],[-22,-26],[-22,-9],[-22,-8],[-23,-8],[-22,-8],[-93,25],[-116,29],[-79,17],[-90,-4],[-56,-5],[-27,-2],[-78,-10],[-99,-7],[-338,-17],[-164,-14],[-93,8],[-86,-7],[-80,-15],[-57,-12],[-101,-22],[-112,-21],[-120,-47],[0,-1],[-82,-32],[-118,-72],[-56,-41],[-81,-44],[-121,-52],[-69,-28],[-27,28],[-12,11],[-24,25],[-1,2],[-33,32],[-2,3],[-80,81],[-863,854],[-340,340],[-644,644],[-486,486],[-251,291],[-95,-151],[-599,-945],[-34,-52],[-417,-656],[-397,-625],[-120,-202],[-75,-73],[-72,-36],[-99,-3],[-256,52],[-22,5],[-489,72],[-376,38],[-134,16],[-89,-21],[-53,-35],[-14,-10],[-43,-78],[-22,-56],[-14,-94],[-3,-126],[-35,-149],[-26,-132],[-44,-220],[-165,-833],[-66,-343],[-19,-110],[-33,-98],[-41,-77],[-36,-48],[-133,-72],[-85,-37],[-51,-11],[-12,-6],[-32,-16],[-80,-110],[-69,-119],[-211,-365],[-241,-425],[-148,-292],[-25,-50],[-37,-29],[-229,-414],[-57,-116],[-51,-106],[-36,-98],[-32,-97],[-4,-114],[-2,-346],[0,-57],[0,-27],[-11,-492],[-11,-192],[-13,-136],[-24,-97],[-37,-69],[-94,-85],[-31,-61],[-36,-60],[-31,-78],[-40,-44],[-49,-92],[-46,-73],[-90,-114],[-103,-196],[-51,-62],[-109,-139],[-81,-167],[-53,-35],[-63,-89],[-46,-107],[-89,-130],[-64,-113],[-74,-114],[-107,-161],[-535,-826],[-59,-89],[-566,-866],[-76,-106],[-70,-159],[-54,-154],[-22,-153],[-11,-223],[16,-212],[53,-243],[85,-276],[-1286,417],[-1332,433]],[[318156,248902],[26,120],[73,122],[127,405],[108,192],[24,44],[44,87],[78,156],[0,213],[-29,280],[-147,413],[-164,375],[-23,59],[-15,40],[-193,498],[-20,339],[-63,339],[-113,243],[-131,237],[-98,129],[-158,155],[-94,164],[-94,207],[-106,167],[-174,419],[-79,187],[-13,88],[-30,197],[-58,466],[-44,390],[-112,440],[-60,360],[14,189],[-29,193],[-37,184],[-84,147],[49,105],[10,146],[-29,284],[-132,214],[15,279],[82,316],[-8,214],[-24,176],[-65,149],[-45,103],[-57,133],[-27,63],[-134,321],[-5,13],[-136,301],[-129,117],[-75,138],[-36,174],[24,228],[29,243],[-117,309],[-127,214],[-130,259],[-36,193],[-64,179],[-76,110],[-2,8],[-31,179],[0,2],[-12,27],[-1,1],[-50,113],[-21,49],[-14,35],[-17,43],[-25,64],[-44,113],[-4,11],[-6,17],[-73,208],[-3,11],[-97,355],[-50,247],[-102,227],[-1,6],[-16,215],[-9,151],[30,97],[4,14],[3,7],[0,2],[46,106],[162,221],[100,85],[100,85],[218,239],[97,298],[10,30],[68,210],[104,304],[38,76],[102,198],[76,243],[35,131],[-8,161],[-25,145],[3,149],[24,67],[25,66],[80,108],[74,54],[88,178],[60,157],[38,93],[55,79],[124,61],[50,-8],[110,-18],[116,-3],[187,-17],[225,-41],[153,-5],[409,9],[263,62],[280,63],[321,115],[289,226],[49,124],[39,97],[58,147],[63,192],[-11,60],[-33,179],[-16,234],[66,184]],[[319010,269473],[162,313],[1,1],[35,68],[4,7],[1,2]],[[319213,269864],[14,27]],[[319227,269891],[18,37],[36,72]],[[319281,270000],[16,31],[2,5],[118,239],[139,802],[-14,415],[-35,162],[-28,129],[-81,469],[-5,30],[-155,435],[-6,15],[-123,306],[-14,30],[-274,580],[-239,512],[-210,313],[-180,268],[-211,347],[-15,25],[-227,364],[-35,57],[-148,143],[-162,-32],[-100,-22],[-86,-16],[-229,-163],[-238,-200],[-79,-52],[-79,-51],[-43,-1],[-127,-2],[-280,-69],[-10,-3],[-340,-217],[-230,-120],[-125,-31],[-125,-32],[-3,-1],[-185,-82],[-208,-231],[-216,-382],[-156,-336],[-74,-244],[-62,-177],[-27,-76],[-156,-207],[-20,-25],[-222,-233],[-285,-183],[-320,-169],[-229,-96],[-5,-2],[-3,-1],[-274,-135],[-108,-31],[-25,2],[-60,5],[-9,6],[-127,79],[-135,175],[-122,227],[-69,203],[-31,142],[0,6],[2,115],[-24,109],[-84,61],[-164,14],[-95,-67],[-72,-3],[-58,43],[-20,15],[-102,146],[-1,1],[-111,152],[-114,94],[-173,143],[-117,91],[-71,17],[-82,-3],[-116,-30],[-165,-34],[-83,4],[-87,61],[-73,82],[-66,157],[-1,5],[-28,123],[-22,149],[-8,18],[-66,138],[-65,112],[-137,254]],[[309969,274867],[31,128],[38,922],[1,18],[5,170],[13,240],[5,140],[37,154],[116,480],[31,192],[32,171],[16,278],[14,241],[0,45],[0,107],[-1,137],[20,222],[15,166],[35,243],[17,117],[15,96],[-14,121],[23,94],[25,99],[46,283],[81,306],[24,153],[21,224],[9,297],[36,108],[50,72],[21,161],[-7,147],[-20,46],[-19,46],[-10,84],[18,63],[24,74],[-10,124],[-11,125],[-43,171],[-32,203],[-35,265],[-25,79],[12,104],[29,111],[37,121],[32,77],[34,119],[72,167],[22,50],[115,266],[129,243],[22,91],[-18,76],[-12,90],[-2,87],[27,107],[42,127],[44,107],[37,101],[59,86],[63,76],[66,92],[60,100],[32,80],[98,172],[-20,76],[-21,78],[-33,63],[-35,59],[-26,55],[-35,4],[-19,42],[-20,82],[-6,92],[15,223],[15,82],[13,108],[24,141],[28,135],[42,121],[69,113],[94,141],[291,365],[73,149],[437,480],[134,164],[141,-251]],[[312722,287651],[1520,-1402],[3028,-2792],[330,-304],[4129,-3807],[52,-49],[445,-410]],[[322226,278887],[126,270],[60,85],[55,89],[36,88],[68,129],[50,43],[24,76],[583,1123],[82,135],[98,105],[198,108],[211,75],[398,176],[61,4],[44,14],[47,32],[15,32],[95,53],[160,36],[71,26],[325,164],[90,18],[97,86],[87,40],[58,134],[45,76],[56,26],[98,105],[20,70],[39,13],[213,321],[143,138],[3,55],[59,18],[18,20],[9,77],[54,-15],[56,23],[4,123],[23,29],[37,14],[24,32],[705,915],[157,165],[570,751],[122,142],[86,150],[123,91],[42,98],[59,53],[251,285],[63,86],[35,106],[44,0],[46,18],[19,31],[-3,34],[33,46],[430,523],[21,63],[68,35],[41,101],[128,86],[12,65],[81,56],[138,222],[56,15],[41,67],[38,48],[57,12],[11,34],[51,14],[63,-2],[17,44],[29,7],[22,-29],[25,-39],[28,-3],[33,48],[24,42],[40,16],[9,-9],[19,-18],[36,-2],[31,25],[28,3],[42,-19],[35,-21],[39,1],[34,1]],[[330345,287510],[32,9]],[[330377,287519],[48,-2],[74,15],[31,-20],[41,1],[32,12],[28,-2],[56,27],[37,-21],[43,-9],[75,22],[77,-12],[140,40],[93,42],[80,18],[93,47]],[[331325,287677],[22,48]],[[331347,287725],[323,198],[3,1],[4,1],[15,3],[18,5],[23,18],[25,23],[51,3],[68,76],[101,36],[22,29],[9,9],[47,49],[54,21],[61,11],[130,89],[155,66],[134,86],[57,29],[43,23],[15,12],[108,91],[45,38],[203,111],[70,38],[86,47],[6,4],[44,33],[66,50],[54,-9],[53,20],[59,50],[47,81],[69,74],[39,135],[34,61],[83,218],[26,28],[33,8],[161,134],[166,186],[25,-6],[32,54],[50,7],[67,80],[45,64],[58,18],[33,64],[55,5],[36,43],[37,43],[11,63],[6,29],[20,12],[40,13],[31,58],[46,8],[45,58],[54,14],[158,180],[70,30],[56,82],[63,9],[64,54],[46,77],[50,12],[73,99],[148,132],[77,86],[41,36],[-2,95],[18,63],[59,10],[64,-15],[38,-8],[8,-117],[-8,-173],[-8,-1040],[-1,-144],[0,-23],[-4,-547],[-3,-566],[-3,-958],[4,-311],[1,-36],[3,-53],[16,-237],[3,-40],[123,-445],[25,-87],[112,-404],[21,-118],[-2,-94],[-24,-93],[-59,-90],[-142,-82],[-205,-56],[-121,-30],[-117,-79],[-188,-163],[-192,-223],[-78,-163],[-23,-153],[0,-187],[31,-269],[5,-94],[-49,-550],[-13,-100],[-24,-97],[-138,-270],[-39,-85],[-32,-94],[-11,-88],[18,-115],[45,-99],[84,-186],[28,-78],[11,-65],[8,-214],[28,-114],[33,-43],[32,-44],[40,-70],[16,-26],[6,-12],[95,-85],[104,-61],[123,22],[250,35],[398,11],[115,-19],[830,-814],[772,106],[170,8],[218,-54],[218,-54],[134,-97],[134,-160],[102,-157],[14,-522],[10,-76],[166,-256],[97,-259],[870,-1996],[180,-399],[56,-167],[0,-127],[-11,-106],[-28,-88],[-30,-84],[-187,-300],[-52,-162],[-43,-262],[-9,-85],[-6,-58],[11,-54],[16,-63],[21,-60],[46,-63],[54,-60],[72,-56],[167,-64],[346,-133],[291,-169],[161,-105],[56,-60],[46,-77],[62,-154],[126,-298],[93,-272],[33,-125],[25,-113],[19,-69],[19,-63],[45,-44],[44,-15],[50,-10],[87,25],[423,255],[726,269],[216,153],[100,102],[105,52],[85,26],[56,8],[150,-30],[368,-128]],[[711386,776807],[-120,181],[-44,104],[-44,109],[-65,177],[-95,143],[-120,176],[-102,143],[-139,155],[-132,151],[-158,282],[-78,189],[-66,160],[-92,223],[-74,105],[-114,163],[-70,101],[-134,85],[-185,66],[-348,-76],[-349,-76],[-172,-37],[-524,-115],[-335,-73],[-167,-36],[-167,-36],[-117,-109],[-164,62],[-230,173],[-222,235],[-95,64],[-95,65],[-91,70],[-145,110],[-75,16],[-196,42],[-91,63],[-90,63],[-90,63],[-88,89],[-79,82],[-84,85],[-49,82],[-159,195],[-146,211],[-146,211],[-65,95],[-134,196],[-95,169],[-95,170],[-220,381],[-60,228],[-90,342],[-90,343],[-69,423],[-70,424],[-32,445],[-99,384],[-180,111],[-141,1],[-167,2],[-331,21],[-283,17],[-17,58],[34,225],[148,1183],[17,151],[-2,50],[-11,50],[-21,33],[-32,32],[-218,133],[-228,135],[-229,122],[-491,260],[-186,130],[-39,148],[126,294],[96,186],[64,226],[29,241],[49,253],[22,298],[84,360],[72,278],[42,156],[24,141],[-44,138],[-61,156],[-86,218],[-94,242],[-57,145],[-108,182],[-65,45],[-91,63],[-98,-30],[-99,-29],[-96,-90],[-96,-89],[-109,-121],[-109,-120],[-129,-141],[-133,-104],[-253,-197],[-101,-78],[-133,-97],[-138,-156],[-118,-44],[-143,15],[-123,148],[-59,89],[-72,63],[-123,90],[-145,-78],[-67,26],[-71,81],[-64,56],[-64,33],[-79,38],[-103,52],[-158,137],[-29,119],[29,215],[47,242],[47,107],[25,200],[-25,190],[-40,67],[-103,71],[-227,30],[-236,-23],[-187,-59],[-148,-67],[-172,-74],[-158,-60],[-192,-141],[-236,-200],[-210,-278],[-125,-206],[-64,-107],[-64,-197],[-25,-104],[-54,-96],[-69,-97],[-133,-141],[-130,-164],[-239,-118],[-227,-113],[-347,-107],[-305,-215],[-160,-78],[-136,-11],[-120,15],[-104,-15],[-120,-67],[-123,-197],[19,-223],[47,-197],[69,-245],[69,-271],[2,-264],[-21,-195],[-56,-151],[-156,-85],[-195,-59],[-202,-119],[-204,-100],[-91,-45],[-95,45],[-95,253],[-78,172],[-80,221],[-49,197],[-101,104],[-93,71],[-121,133],[-126,149],[-115,33],[-148,-22],[-209,-26],[-161,56],[-209,145],[-202,104],[-201,85],[-237,71],[-143,40],[-147,30],[-138,8],[-133,-82],[-94,-112],[-82,-101],[-206,-311],[-179,-76],[-170,35],[-222,190],[-64,163],[-74,115],[-88,90],[-116,71],[-111,44],[-118,-4],[-232,-37],[-189,-41],[-217,-74],[-207,-93],[-194,-128],[-165,-108],[-170,-136],[-168,-37],[-104,42],[-136,55],[-178,126],[-327,215],[-148,106],[-138,39],[-89,15],[-103,-63],[-133,-130],[-153,-71],[-177,-40],[-128,3],[-190,-7],[-140,-63],[-121,-130],[-106,-145],[-103,-93],[-116,-67],[-101,-26],[-133,50],[-101,39],[-96,-11],[-93,-67],[-25,-59],[-7,-48],[82,-119],[58,-115],[-43,-233],[-100,-343],[-107,-343],[-167,-455],[-94,-161],[-161,-131],[-140,-182],[-596,-1387],[-126,-294],[-123,-134],[-99,-44],[-131,0],[-142,81],[-81,15],[-62,-81],[-101,-134],[-184,-212],[-212,-178],[-172,-152],[-180,-153],[-93,-52],[-92,-52],[-137,-32],[-166,-62],[-112,-89],[-134,-114],[-132,-91],[-131,-78],[-125,-114],[-97,-53],[-129,-90],[-108,-74],[-117,-73],[-170,-19],[-83,-48],[-71,-69],[-69,-52],[-100,-74],[-158,-164],[-103,-54],[-153,-80],[-118,-59],[-119,-60],[-67,-64],[-76,-70],[-110,-48],[-114,-96],[-59,-125],[-66,-106],[-73,-129],[-83,-180],[-46,-184],[-1,-176],[-15,-173],[-11,-170],[-43,-162],[-45,-114],[-84,-68]],[[678000,779482],[-307,449],[-217,458],[-128,284],[-90,270],[-92,338],[-86,395],[-74,390],[-45,227],[-140,742],[-45,77],[-96,77],[-520,212],[-80,72],[-61,121],[-61,168],[-76,111],[-74,92],[-102,43],[-217,92],[-310,132],[-157,89],[-65,46],[-75,60],[-82,80],[-44,84],[-34,135],[-8,296],[-5,253],[-16,318],[-124,588],[-64,347],[6,299],[41,269],[68,88],[122,71],[122,71],[174,98],[61,34],[83,130],[58,116],[110,234],[33,161],[111,944],[48,213],[102,212],[179,154],[180,120],[110,66],[214,64],[122,135],[102,251],[89,308],[71,280],[38,472],[-13,732],[-19,463],[-83,414],[-42,174],[-35,193],[23,159],[28,178],[109,207],[64,179],[10,187],[-32,261],[-48,323],[-71,269],[-12,62],[9,68],[13,49],[169,457],[64,184],[102,308],[71,313],[48,463],[6,197],[-16,232],[-32,197],[-41,246],[-68,275],[-79,414],[-42,299],[-13,433],[3,531],[29,665],[10,274],[19,154],[38,159],[71,212],[79,155],[141,139],[163,135],[176,179],[82,256],[96,370],[147,386],[128,240],[22,35],[93,149],[141,231],[274,366],[352,414],[275,357],[191,161],[179,22],[192,-29],[236,-77],[243,-96],[504,-97],[186,20],[83,38],[140,126],[211,308],[199,308],[133,318],[52,386],[35,409],[86,391],[98,208],[401,531],[696,1236],[1201,1909],[169,144],[195,183],[313,174],[379,155],[338,254],[247,173],[77,54],[710,877],[127,241],[7,230],[-13,290],[-115,376],[-195,294],[-214,477],[-262,742],[-364,1089],[-122,530],[-73,339],[44,380],[87,255],[217,202],[217,77],[176,122],[86,119],[39,280],[121,221],[153,154],[173,174],[185,250],[128,328],[115,424],[25,366],[-89,270],[-217,463],[-185,376],[-71,144],[-64,97],[-103,286],[-76,350],[0,385],[-63,232],[-109,86],[-153,97],[-154,38],[-166,29],[-172,10],[-173,-97],[-57,-115],[-102,-155],[-73,-354],[-62,-224],[-147,-186],[-191,-55],[-246,72],[-137,83],[-307,530],[-530,973],[-54,176],[-10,36],[-64,270],[18,261],[53,306],[95,281],[128,270],[115,221],[79,150],[36,202],[-10,169],[-41,130],[-109,207],[-121,193],[-77,101],[-109,68],[-64,48],[-61,139],[13,193],[10,236],[23,98],[73,83],[29,84],[48,145],[28,125],[42,241],[13,178],[63,516],[48,414],[39,208],[50,176],[48,88],[97,131],[63,53],[71,-19],[83,-15],[60,34],[96,120],[64,65],[64,65],[86,3],[87,2],[124,34],[128,111],[192,178],[169,183],[169,212],[77,106],[57,145],[23,125],[-7,116],[-64,202],[-785,1345],[-268,685],[-115,368],[-83,230],[-84,230],[-134,173],[-166,145],[-281,183],[-128,183],[-64,202],[-45,323],[0,388],[7,388],[-32,120],[-70,164],[-71,97],[-54,24],[-99,-38],[-157,-25],[-115,58],[-134,149],[-64,188],[-51,217],[-95,708],[-68,699],[-83,390],[-191,617],[-42,306],[66,304],[161,364],[788,881],[133,104],[183,37],[365,173],[170,156],[163,171],[63,241],[-4,357],[-16,679],[-16,362],[-2,197],[24,150],[35,86],[61,82],[140,135],[186,154],[212,156],[206,196],[224,188],[401,350],[107,151],[32,169],[-10,217],[-41,196],[-63,257],[-57,156],[-72,138],[-75,142],[-39,130],[-14,120]],[[811997,370548],[178,-230],[77,-270],[188,-245],[64,-136],[63,-135],[82,-320],[168,-188],[68,-157],[-62,-181],[48,-171],[-133,-180],[-314,-176],[-114,-208],[-222,-37],[-217,-115],[-181,-9],[65,-425],[264,-572],[157,-272],[-2,-198],[91,-321],[154,-151],[146,-454],[-2,-142],[-408,-427],[-263,-120],[-291,92],[-83,178],[-17,226],[-220,105],[-171,5],[-222,-51],[-179,145],[-218,273],[-199,161],[-187,357],[-169,505],[-138,287],[-18,120],[-19,120],[137,420],[44,324],[-113,609],[54,296],[174,-181],[140,-61],[222,66],[244,206],[240,643],[268,557],[59,260],[192,38],[211,-6],[234,192],[130,-46]],[[814904,372946],[52,-132],[-3,-190],[-122,-134],[-207,-93],[-13,-140],[51,-100],[123,-52],[-132,-211],[-21,-264],[-75,-361],[76,-286],[-236,-60],[-241,-2],[-102,-179],[-341,17],[-85,175],[-21,206],[-85,242],[-134,143],[-77,155],[124,87],[259,-30],[39,352],[-22,92],[-146,37],[-186,169],[-75,134],[-22,132],[37,131],[125,80],[431,-15],[219,85],[52,-34],[272,141],[168,17],[167,16],[151,-128]],[[814159,410181],[-1259,-1134],[-211,-223],[-120,-127],[-29,-30],[-71,-75],[-361,-524],[-2,-3],[-296,-318],[-465,-355],[-78,-77],[-154,-152],[-199,-300],[-101,-106],[-258,-275],[-145,-185],[-198,-234],[-198,-235],[-258,-311],[-142,-171],[-383,-461],[-169,-194],[-169,-121],[-114,-142],[-211,-260],[-180,-151],[-81,-68],[-277,-176],[-307,-330],[-32,-35],[-163,-346],[-105,-103],[-410,-630],[-140,-176],[-305,-485],[-287,-295],[-39,-40],[-71,-146],[-238,-323],[-73,-156],[-224,-274],[-117,-225],[-132,-152],[-209,-239],[-46,-53],[-203,-234],[-538,-800],[-684,-792],[-79,-160],[-148,-105],[-198,-312],[-347,-407],[-241,-283],[-126,-209],[-170,-166],[-219,-297],[-748,-714],[-98,-179],[-378,-497],[-1029,-799],[-797,-355],[-116,-89],[-91,-123],[-255,-178],[-106,-139],[-402,-160],[-465,-318],[-114,-78],[-120,-139],[-145,-69],[-139,-124],[-248,-99],[-245,-147],[-69,-80],[-67,-66],[-163,-231],[-533,-745],[-117,-153],[-127,-70],[-261,-308],[-559,-575],[-98,-185],[-322,-325],[-73,-84],[-114,-188],[-89,-147],[-101,-275],[-26,-40],[-95,-144],[-115,-341],[-34,-102],[-329,-522],[-32,-51],[-90,-231],[-171,-176],[-183,-348],[-120,-450],[-78,-122],[-21,-33],[-9,-28],[-91,-303],[-41,-558],[-106,-512],[-114,-985],[29,-1252],[-21,-357],[16,-7],[40,-18],[77,-35],[94,-123],[81,-156],[81,-156],[80,-41],[152,-77],[54,-56],[126,-131],[245,-256],[128,-19],[141,298],[92,123],[132,103],[129,-2],[112,-83],[106,-166],[85,-433],[6,-191],[-133,-339],[-44,-230],[-82,-152],[-249,-117],[-139,-301],[-94,-206],[-254,-775],[-41,-445],[41,-565],[99,-343],[66,-35],[289,673],[36,-27],[482,-356],[-142,-353],[-42,-176],[90,-193],[10,-79],[-108,-212],[-66,7],[-38,-262],[68,-205],[42,-73],[-38,-61],[4,-77],[30,-16],[8,-99],[-48,-55],[-51,36],[-30,99],[55,54],[-10,55],[-70,48],[29,83],[-31,201],[-126,35],[-291,36],[-251,-143],[-226,-160],[-515,-372],[-479,-416],[-300,-227],[-242,-177],[-73,-54],[-375,-294],[-287,-238],[-491,-370],[-318,-268],[-143,-144],[-305,-314],[-280,-256],[-218,-189],[-259,-206],[-114,-97],[-151,-119],[-100,-96],[-65,-64],[-293,-358],[-115,-176],[-43,-79],[-59,-142],[21,-88],[28,-40],[-9,-16],[-38,46],[-2,38],[-15,6],[-31,29],[-87,-61],[-117,-154],[-55,-128],[-21,-66],[33,-68],[24,-16],[-19,-65],[-44,-12],[43,-75],[-58,-101],[-72,87],[-88,-131],[-137,-167],[87,-217],[-36,-103],[-115,67],[-31,61],[-64,90],[-97,-49],[-104,-7],[-599,-492],[-110,-120],[-24,-26],[-157,-76],[-106,-117],[-153,-110],[-213,-248],[-98,-53],[-35,-19],[-271,-236],[-10,-11],[-307,-328],[-114,-85],[-132,-28],[-269,-214],[-156,-178],[-48,-40],[-321,-265],[-28,-32],[-84,-99],[-250,-185],[-670,-497],[-48,-22],[-79,-37],[-494,-448],[-627,-572]],[[781433,365318],[-104,269],[-145,377],[-120,409],[-206,355],[-77,251],[-430,572],[-226,217],[-312,158],[-149,125],[-292,135],[-166,36],[-259,3],[-180,2],[-382,-52],[-1123,4],[-549,-127],[-452,-303],[-452,-303],[-419,11],[-221,75],[-320,110],[-457,66],[-607,-9],[-574,-57],[-408,-112],[-130,9],[-66,14],[-70,-34],[-128,-89],[-66,2],[-87,44],[-96,63],[-70,43],[-92,63],[-60,8],[-65,-49],[-9,-55],[9,-92],[28,-136],[12,-104],[-9,-65],[-40,-79],[-37,-63],[-37,-95],[-32,-106],[-45,-163],[-78,-153],[-66,-76],[-33,11],[-31,30],[-18,49],[-38,54],[-41,28],[-24,-20],[-27,-100],[40,-256],[-2,-125],[-24,-55],[-57,-32],[-49,-85],[-18,-57],[11,-41],[25,-38],[56,-38],[62,-27],[27,-36],[5,-46],[-20,-54],[-63,-82],[-81,-87],[-135,-93],[-44,-5],[-103,33],[-148,50],[-55,4],[-46,-57],[1,-67],[5,-124],[-2,-95],[-40,-76],[-133,-101],[-23,-48],[-2,-42],[-2,-43],[-42,-41],[-19,-1],[-4,0],[-15,-1],[-13,0],[-14,-1],[-142,-7],[-1364,-185],[-256,-51],[-188,-39],[-52,-11],[-212,-14],[-55,7],[-149,20],[-111,27],[-54,13],[-197,45],[-721,183],[-359,74],[-170,36],[-55,14],[-312,79],[-219,45],[-235,220],[-113,175],[-130,290],[-167,358],[-160,175],[-181,86],[-113,0],[-329,20],[-349,-8],[-264,-8],[-311,20],[-502,367],[-445,387],[-281,228],[-223,221],[-15,15],[-354,550],[-378,607],[-302,497],[-184,220],[-348,130],[-370,142],[-270,123],[-121,118],[-122,220],[-86,191],[-135,322],[-257,513],[-167,354],[-73,167],[-59,167],[-134,84],[-128,67],[-260,126],[-210,114],[-289,151],[-281,151],[-200,106],[-275,138],[-505,257],[-278,126],[-219,126],[-297,184],[-305,150],[-113,-110],[-276,-101],[-1220,-408],[-586,-191],[-421,130],[-500,192],[-205,122],[-223,237],[-225,190],[-151,62],[-414,84],[-617,423],[-487,486],[-98,148],[-23,373],[29,219],[99,120],[37,229],[-15,380],[128,505],[103,166],[243,556],[204,800],[92,174],[113,346],[86,618],[20,722],[-42,145],[-41,146],[-19,66],[-110,87],[-327,43],[-431,-219],[-211,-201],[-196,-288],[-44,-400],[78,-1001],[-43,-200],[-488,-528],[-104,-332],[-37,-427],[16,-415],[155,-1426],[-2,-184],[-55,-164],[-241,-128],[-281,-100],[-857,-176],[-144,10],[-130,59],[-85,136],[-100,532],[-91,201],[-105,105],[-21,189],[5,202],[43,171],[-14,193],[-142,60],[-422,11],[-257,-100],[-280,17],[-271,69],[-127,102],[-281,61],[-298,-26],[-265,111],[-693,159],[-352,-157],[-633,-539],[-586,-30],[-630,-152],[-390,-261],[-84,-154],[-205,-243],[-233,-210],[-112,-191],[-133,-401],[-108,-164],[-148,-350],[-235,-364],[-120,-105],[-148,-54],[-457,25],[-595,-172],[-284,-21],[-586,-198],[-380,-284],[-135,60],[-99,167],[-374,259],[-277,-27],[-120,-140],[-539,-456],[-139,-45],[-120,-91],[-345,-124],[-143,59],[-92,140],[-523,-81],[-1641,1077],[-58,38],[-204,133],[-2421,1589],[-1315,863],[-126,47],[-141,-29],[-249,-221],[-226,-544],[-135,-148],[-148,-115],[-78,-116],[-265,-95],[-111,-203],[-213,-44],[-187,-32],[-192,-184],[-211,-284],[-269,-462],[-211,-551],[-134,-128],[-108,-285],[-161,-216],[-439,-379],[-70,-236],[-38,-197],[-58,-160],[-145,-22],[-254,-72],[-218,-66],[-319,37],[-217,14],[-159,-80],[-169,-320],[-159,-87],[-159,-29],[-134,-255],[-276,-160],[-210,-218],[-115,-251],[-140,-462],[-51,-226],[-12,-167],[-162,-677],[-106,-342],[-105,-305],[-161,-244],[-194,-224],[-177,-219],[-205,-91],[-190,-110],[-197,-346],[-266,-279],[-226,-195],[-294,-194],[-253,-158],[-250,-213],[-197,-225],[-145,-225],[-121,-206],[-234,-231],[-246,-140],[-130,-387],[-37,-475],[-113,-544]],[[682756,383826],[-48,389],[-33,268],[-60,271],[-59,271],[-51,229],[-54,246],[-143,684],[-235,520],[-103,365],[-258,483],[-213,274],[-117,69],[-187,274],[-161,352],[-86,741],[87,870],[-36,669],[-158,639],[-84,185],[-522,763],[-49,186],[-135,1191],[-79,199],[-99,147],[-691,673],[-234,88],[-309,177],[-346,342],[-200,248],[-197,320],[-197,163],[-129,-3],[-549,-275],[-186,1],[-140,63],[-225,256],[-64,212],[-36,426],[-100,147],[-536,331],[-326,98],[-120,79],[-367,534],[-283,299],[-170,134],[-310,141],[-352,44],[-326,115],[-417,368],[-580,706],[-346,297],[-220,86],[-147,5],[-138,-88],[-126,-136],[-183,-111],[-83,161],[-255,215],[-234,362],[-338,430],[-398,340],[-338,500],[-161,150],[-157,45],[-658,-143],[-196,41],[-115,114],[-177,414],[-47,227],[-14,508],[-199,367],[-120,62],[-129,14],[-147,-39],[-149,4],[-84,131],[-34,173],[70,169],[126,92],[268,22],[137,134],[162,372],[281,372],[155,64],[468,3],[416,399],[758,529],[459,60],[112,50],[49,169],[65,482],[55,159],[206,217],[98,379]],[[671175,407599],[248,392],[55,764],[122,614],[71,899],[-136,754],[50,381],[219,638],[29,280],[57,227],[422,743],[411,515],[790,655],[333,511],[129,259],[189,252],[141,-131],[227,-344],[686,-524],[169,-10],[121,124],[83,903],[319,717],[298,1391],[125,413],[348,921],[495,1006],[203,265],[540,522],[1178,922],[871,937],[189,335],[234,547],[109,169],[229,246],[240,317],[72,182],[147,849],[170,417],[418,530],[684,684],[970,1079],[255,482],[141,39],[125,-21],[136,52],[367,713],[169,830],[318,477],[615,511],[424,158],[446,31],[452,-64],[339,6],[685,228],[516,557],[178,654],[55,740],[303,944],[311,805],[347,779],[411,348],[388,462],[361,492],[432,1327],[224,457],[453,9],[345,228],[518,343],[393,316],[419,393],[8,25],[196,618],[282,130],[206,209],[106,323],[64,563],[142,640],[218,177],[849,92],[395,149],[409,416],[631,716],[474,373],[380,-35],[395,-288],[226,-245],[213,-168],[926,397],[268,18],[375,-103],[460,-558],[204,-322],[261,-125],[384,52],[245,-90],[418,-34],[246,198],[128,178],[199,390],[154,201],[545,-231],[290,120],[784,1290],[319,178],[297,-129],[282,-51],[155,280],[318,379],[184,-181],[191,-553],[268,-306],[445,45],[198,-50],[276,112],[494,1162],[402,273],[630,109],[671,922],[412,328],[159,-33],[305,-63],[367,-76],[325,158],[72,342],[-108,641],[21,582],[-146,455],[-353,457],[-198,487],[-163,566],[154,415],[298,200],[261,329],[77,523],[-183,650],[-247,393],[-339,301],[-225,611],[4,11],[171,605],[347,655],[862,1035],[119,679],[51,507],[417,851],[11,52],[143,685],[186,388],[768,141],[376,475],[508,386],[622,511],[565,522],[306,221],[960,-489],[467,60],[1017,302],[493,385],[291,147],[544,5],[424,199],[792,653],[219,61],[290,-269],[246,-348],[354,-122],[389,220],[466,109],[247,-210],[472,46],[1444,242],[425,189],[480,343],[287,126],[319,96],[396,204],[360,114],[565,113],[475,226],[332,586],[354,1328],[642,1035],[467,1010],[557,269],[510,502],[586,446],[885,371],[472,-38],[480,199],[615,767],[347,123],[326,226],[494,1518],[360,325],[572,393],[270,249],[133,45],[128,113],[267,125],[763,461],[120,177],[170,165],[128,219],[143,146],[84,147],[127,132],[112,244],[327,394],[224,188],[432,238],[544,217],[416,109],[14,-2],[313,-46],[197,-153],[296,-326],[261,-377],[341,-902],[91,-153],[36,-201],[83,-153],[79,-228]],[[673217,535763],[124,-129],[43,1],[21,1],[21,0],[20,-18],[34,-24],[16,-15],[17,-28],[10,-16],[7,-12],[17,-18],[19,-17],[23,-3],[43,-3],[35,-2],[36,-18],[23,-18],[13,-29],[2,-4],[6,-22],[-2,-13],[-1,-13],[-23,-63],[-1,-6],[-6,-23],[-8,-29],[-1,-4],[-11,-60],[-3,-40],[9,-45],[19,-57],[2,-3],[27,-29],[48,-32],[40,-10],[16,2],[15,1],[38,13],[14,10],[20,16],[9,13],[13,18],[19,15],[31,17],[28,1],[72,-9],[65,-16],[27,-6],[8,-2],[32,-25],[65,-7],[26,-5],[8,-3],[31,12],[15,0],[15,-18],[7,-12],[16,-28],[7,-12],[43,-46],[4,-5],[21,-18],[19,-16],[28,-4],[39,-5],[66,0],[76,9],[47,21],[49,31],[32,39],[31,65],[18,21],[18,21],[20,19],[21,18],[47,74],[4,7],[14,98],[110,72],[126,55],[8,3],[74,45],[104,67],[38,99],[9,14],[39,62],[41,0],[55,-10],[22,-4],[101,-22],[72,18],[53,-5],[50,-80],[81,-117],[53,-107],[42,-83],[37,-11],[38,-31],[25,-16],[12,-54],[7,-10],[19,-30],[35,-31],[70,-16],[36,-25],[38,-31],[43,-54],[40,-16],[5,-2],[34,-19],[6,-3],[28,-49],[-5,-43],[-22,-65],[6,-47],[5,-12],[13,-35],[34,-27],[22,-5],[21,-6],[36,-18],[38,-45],[26,-71],[26,-61],[24,-74],[33,-98],[2,-10],[18,-68],[2,-40],[1,-39],[-29,-150],[-26,-107],[-13,-84],[12,-37],[2,-14],[8,-58],[-33,-148],[-13,-59],[-34,-156],[-13,-138],[3,-65],[12,-59],[16,-84],[-7,-126],[-33,-109],[-52,-114],[-3,-5],[-3,-4],[-84,-126],[-122,-112],[-95,-74],[-57,-73],[-13,-15],[-13,-14],[-54,-41],[543,-1166],[298,-641],[6,-14],[175,-272],[156,-349],[140,-183],[136,-26],[127,-75],[76,-167],[249,-18],[141,-165],[198,-201],[142,-305],[173,-311],[170,-286],[87,-153],[6,-12],[45,-158],[-20,-68],[-45,-152],[-24,-238],[-25,-170],[12,-159],[-72,-244],[-73,-164],[-57,-147],[0,-201],[-16,-116],[-93,-11],[-275,-31],[-72,-104],[-16,-158],[0,-214],[-21,-231],[-89,-281],[-24,-195],[-12,-219],[-40,-165],[-101,-280],[-73,-183],[-23,-140],[13,-232],[46,-147],[40,-171],[-8,-71],[-28,-262],[-9,-81],[142,-507],[821,-636],[274,-12]],[[679217,521647],[-56,-327],[-112,-288],[-172,-247],[-706,-96],[-593,-1518],[-283,-556],[-820,-1343],[-206,-688],[-493,-1139],[-303,-899],[155,-485],[-190,-129],[-298,190],[-856,1493],[-302,326],[-561,-16],[-621,-520],[-448,-138],[-24,-91],[-94,-219],[-116,-92],[-211,-6],[-145,-12],[-120,-118],[-113,-33],[-151,-44],[-133,-104],[-65,-61],[-24,-177],[-57,-97],[65,-86],[85,-67],[64,-24],[53,-98],[65,-128],[72,-36],[73,67],[65,42],[93,-12],[141,-73],[501,-293],[536,-563],[517,-99],[439,-376],[-19,-237],[-2,-23],[-28,-364],[-318,-655],[-235,-618],[-224,-455],[-332,-284],[-61,-79],[-192,-246],[-200,-313],[-98,-95],[-46,-37],[-39,-115],[-62,-253],[-46,-110],[-113,-153],[-134,-115],[-155,-89],[-172,-36],[-41,3],[-129,12],[-278,27],[-295,101],[-156,46],[-127,-3],[-174,-55],[-220,-55],[-148,-46],[-151,-37],[-99,-30],[-91,-82],[-85,-58],[-55,-9],[-101,42],[-131,16],[-45,-22],[-66,-46],[-115,-155],[-72,-122],[-22,-76],[2,-49],[24,-192],[0,-67],[-10,-82],[-33,-92],[-48,-109],[-26,-52],[-43,-76],[-24,-31],[-28,-40],[-168,-216],[-160,-299],[-97,-228],[-24,-86],[8,-70],[20,-58],[114,-64],[129,-79],[206,-110],[236,-149],[75,-46],[30,-52],[0,-57],[-36,-107],[-30,-98],[-2,-58],[7,-119],[25,-109],[67,-70],[20,-52],[4,-119],[-26,-143],[-7,-79],[27,-107],[6,-83],[-48,-185],[-77,-205],[-89,-179],[-28,-60],[-8,-89],[-17,-199],[-40,-138],[-8,-72],[40,-165],[35,-189],[9,-55],[7,-42],[-15,-64],[-18,-52],[-62,-125],[-57,-125],[-93,-220],[-32,-88],[-32,-101],[-23,-100],[0,-86],[27,-79],[48,-85],[63,-76],[66,-92],[-6,-94],[-36,-165],[-4,-19],[-30,-127],[-6,-134],[32,-153],[-6,-119],[-45,-100],[-51,-77],[-48,-33],[-72,27],[-83,95],[-146,165],[-371,451],[-93,76],[-91,9],[-95,-43],[-67,-76],[-75,-201],[-50,-192],[-24,-168],[0,-119],[38,-157],[58,-175],[41,-177],[0,-95],[0,-17],[-28,-80],[-51,-30],[-139,3],[-105,-27],[-114,-71],[-127,-85],[-115,-76],[-95,-110],[-91,-52],[-141,-91],[-81,-89],[-30,-82],[0,-100],[48,-220],[21,-112],[19,-107],[31,-122],[8,-162],[-10,-143],[-77,-195],[-110,-162],[-44,-109],[-1,-32],[-1,-32],[43,-61],[43,-60],[73,-69],[102,-36],[97,-46],[75,-88],[83,-156],[74,-186],[67,-185],[39,-43],[62,-21],[55,-58],[60,-92],[61,-167],[60,-226],[29,-152],[22,-290],[16,-256],[39,-73],[60,-52],[36,-97],[15,-172],[28,-328],[61,-286],[22,-193],[-6,-122],[-29,-113],[-56,-109],[-138,-199],[-99,-173],[-52,-67],[-37,-43],[-38,-43],[-48,-155],[-36,-84],[-88,-120],[-93,-116],[-45,-55],[-35,-95],[-27,-118],[-32,-110],[10,-137],[41,-168],[52,-140],[130,-303],[39,-92],[11,-56],[-1,-57],[-17,-62],[-27,-45],[-56,-69],[-75,-57],[-104,-36],[-76,2],[-79,7]],[[468986,259642],[-1007,-369],[-1023,-6],[-733,458],[-828,247],[-815,67],[-63,953],[-721,-362],[-493,382],[101,591],[-6,68],[-25,284],[-146,277],[-568,543],[-358,336],[-83,132],[-225,216],[-546,273],[-98,107],[-135,-116],[-1012,286],[-627,42],[-57,4],[-360,69],[-158,45],[-118,34],[-141,-101],[-120,-86],[-43,-257],[57,-373],[-223,-215],[-71,-229],[-275,14],[-233,-7],[-275,-79],[-361,-623],[133,-508],[-1406,136],[-294,14],[-195,-21],[-261,-51],[-328,-136],[-299,-207],[-351,-401],[-114,-394],[-52,-459],[14,-265],[142,-415],[-261,-129],[-228,64],[-128,-444],[-45,-568],[-215,-113],[-495,357],[-93,68],[-384,0],[-935,-599],[-176,-232],[-131,-173],[-256,-406],[-64,-386],[0,-444],[-13,-676],[208,-433],[61,-127],[-64,-347],[-115,-367],[0,-309],[-51,-251],[-192,-328],[-308,-329],[-499,-347],[-115,-155],[-179,-231],[-3,-208],[-271,-380],[-14,-537],[-323,-286],[-333,14],[-261,-50],[19,-351],[-1250,-154],[-719,-89],[-480,578],[-234,257],[-151,167],[-836,703],[-548,246],[-754,167],[-605,49],[-187,41],[-740,-123],[-962,-234],[-116,-31],[-601,-159],[-630,-238],[-170,-64],[-466,-457],[-207,-435],[-340,-313],[-496,-357],[-673,-525],[-176,-106],[-157,-95],[-792,-657],[-322,-259],[-833,-557],[-556,-266],[-770,-377],[-1056,259],[-794,-44],[-485,-26],[-848,-414],[-256,-2],[-98,-109],[-275,0],[-119,-102],[-107,-144],[-232,-166],[-596,-286],[-295,-13],[-290,46],[-426,-32],[-280,139],[-122,104],[-395,39],[-135,72],[-283,-55],[-156,-282],[-256,-463]],[[426047,246070],[-323,29],[-212,259],[-144,175],[-21,25],[-306,120],[-387,85],[-32,32],[-262,264],[-97,272],[10,1570],[51,583],[-3,31],[-84,676],[31,412],[-67,389],[15,262],[36,617],[152,371],[214,289],[219,108],[115,57],[119,156],[60,123],[5,37],[17,128],[-30,145],[-50,167],[-18,58],[22,189],[24,47],[241,475],[85,169],[99,195],[267,488],[113,208],[16,29],[62,253],[31,342],[-1,32],[-5,294],[-15,53],[-51,187],[-186,196],[-227,155],[-33,83],[38,96],[114,233],[103,148],[10,178],[5,86],[-180,342],[-273,164],[-72,132],[56,155],[196,117],[165,148],[103,225],[67,319],[23,295],[23,295],[-15,381],[-31,288],[-175,194],[-229,75],[-77,25],[-29,9],[-139,179],[12,425],[3,96],[-37,310],[-1,8],[-16,129],[-64,535],[-16,129],[-18,112],[-19,111],[1,149],[0,148],[0,79],[31,288],[-8,124],[-7,124],[-124,200],[-74,119],[-600,951],[-47,75],[-170,327],[-155,169],[-36,39],[-150,103],[-69,76],[-90,219],[-49,86],[-33,255],[39,123],[279,357],[126,161],[855,1769],[99,204],[31,64],[37,507],[290,4052],[2,29],[2,19],[69,1098],[14,47],[32,107],[7,24],[7,11],[97,142],[27,35],[66,88],[482,1120],[88,204],[76,189],[84,210],[30,74],[49,123],[6,14],[3,6],[7,19],[8,20],[19,48],[74,184],[4,10],[25,62],[179,446],[225,505],[152,248],[25,41],[21,16],[41,32],[121,96],[174,126],[43,31],[115,119],[168,293],[13,23],[298,522],[28,49],[111,202],[233,425],[76,139],[2,4],[16,17],[1,1],[6,7],[2,3],[42,47],[13,17],[120,160],[40,54],[410,547],[19,26],[131,176],[5,8],[45,61],[3,3],[23,13],[31,16],[10,5],[12,7],[16,1],[77,3],[19,-6],[231,-62],[109,-2],[95,61],[66,72],[16,28],[6,12],[2,3],[7,14],[5,9],[5,10],[68,245],[88,234],[106,177],[114,199],[92,220],[91,220],[62,94],[2,1],[67,12],[38,16],[111,45],[47,21],[1,1],[53,24],[68,98],[33,123],[11,128],[-16,115],[-23,64],[-26,76],[-82,181],[-12,32],[4,30],[4,30],[-23,76],[6,66],[51,74],[27,46],[109,188],[2,6],[33,127],[14,52],[19,119],[-55,202],[-18,135],[8,103],[4,20],[14,66],[34,157],[1,4],[16,80],[13,59],[-22,185],[-20,80],[-8,31],[-68,144],[-98,140],[-73,138],[-77,123],[-52,73],[-60,67],[-52,42],[-62,22],[-136,60],[-134,57],[-114,88],[-24,66],[-79,306],[-1,2],[-8,31],[-3,12],[-3,15],[-3,10],[-2,6],[-100,337],[-36,173],[0,119],[5,65],[4,64],[22,134],[48,197]],[[430086,288876],[70,198],[17,52]],[[430173,289126],[7,67],[-2,62],[-18,84],[-71,97],[-11,15],[-1,5],[-11,30],[-60,175],[-292,847],[-38,110],[-266,769],[-4,13],[-5,14],[-347,1007],[-35,101],[-10,28],[-8,24],[-20,57],[-566,1640],[-1,4],[-22,63],[-2899,8402],[-3,7],[-1865,5405],[-295,855]],[[423330,309007],[3877,378],[2915,284],[556,54],[2201,1482],[441,297],[479,322],[34,23],[280,188],[1486,1000],[1863,1255],[156,90],[220,129],[35,20],[40,33],[460,377],[81,66],[502,411],[340,59],[339,58],[29,25],[234,205],[262,231],[316,409],[251,326],[404,442],[288,78],[165,90],[116,148],[155,288],[165,178],[168,15],[111,-153],[176,0],[270,215],[305,111],[203,-59],[4,-1],[3,-2],[309,227],[154,199],[107,137],[223,232],[18,9],[167,88],[29,0],[212,-8],[65,4],[9,0],[8,1],[13,0],[11,1],[15,1],[9,0],[4,0],[10,1],[16,1],[13,0],[3,0],[1,0],[7,1],[38,1],[29,0],[107,3],[174,14],[10,5],[540,287],[81,44],[22,11],[3,1],[85,31],[374,138],[280,180],[285,186],[326,119],[271,268],[332,85],[487,2],[250,-221],[103,-56],[163,134],[276,648],[253,355],[192,197],[199,157],[4,1],[270,59],[768,166],[384,-368],[197,-350],[182,-447],[149,-242],[403,-171],[551,-25],[333,60],[305,100],[120,276],[139,114],[532,420],[566,1077],[359,481],[353,244],[402,404],[291,700],[219,456],[228,216],[351,332],[1096,364],[367,485],[280,497],[103,461],[770,591],[508,562],[481,414],[536,241],[234,479],[259,214],[-86,473],[178,472],[335,701],[571,512],[170,206],[211,182],[67,504],[-79,900],[-120,632],[-157,467],[-368,931],[-705,789],[-226,365],[-202,254],[-575,387],[-45,44],[-9,9],[-53,53],[-8,180],[284,498],[142,370],[149,134],[295,-55],[281,25],[178,69],[453,340],[629,108],[982,-155],[382,128],[148,148],[312,162],[105,106],[268,428]],[[191545,124956],[-41,-154],[-276,-104],[-84,136],[-136,39],[-98,-129],[-175,88],[-69,196],[34,261],[225,419],[178,104],[247,353],[225,-265],[-58,-551],[42,-342],[-14,-51]],[[185951,125991],[-179,-370],[-119,-113],[-136,79],[-91,194],[-127,105],[-148,-27],[-85,156],[-8,216],[78,285],[263,474],[161,629],[23,-35],[63,-95],[296,-1276],[9,-222]],[[193247,125362],[-39,-3],[-141,96],[-66,179],[28,539],[-19,51],[-100,260],[1,271],[70,153],[339,443],[-72,445],[-6,36],[135,-60],[69,-151],[114,-134],[291,-99],[438,-63],[120,-115],[42,-391],[296,-267],[16,-472],[-192,-248],[-156,-110],[-571,-177],[-326,-164],[-271,-19]],[[238441,131684],[-283,-109],[-125,64],[-114,143],[-29,169],[21,177],[86,176],[21,184],[-86,184],[86,169],[141,68],[126,-84],[44,-205],[224,-195],[86,-163],[35,-209],[-7,-210],[-78,-144],[-148,-15]],[[198239,132378],[-27,-17],[-205,47],[-35,77],[-17,38],[-18,39],[59,200],[99,176],[117,163],[179,-118],[18,-12],[-15,-159],[-24,-175],[-32,-128],[-3,-14],[-18,-70],[-78,-47]],[[260672,124463],[1422,-10592],[-129,-27],[-711,-150],[-73,-15],[-573,-62],[-64,-11],[-64,-11],[-624,-107],[-237,-41],[-198,-44],[-1357,-299],[-224,-50],[-1124,-159],[-628,-194],[-1005,-105],[-693,-187],[-791,-260],[-545,-179],[-520,-104],[-477,-159],[-698,-176],[-193,-30],[-534,-80],[-1311,-325],[-110,-27],[-933,-298],[-361,-31],[-416,-101],[-594,-211],[-34,-7],[-750,-150],[-1879,-549],[-255,-24],[-658,-337],[-261,-42],[-670,-242],[-375,-35],[-692,-141],[-801,-313],[-867,-164],[-43,-9],[-315,-87],[-400,-111],[-571,-198],[-568,-119],[-345,-108],[-349,-147],[-500,-212],[-1766,-746],[-536,-332],[-233,-221],[-234,-156],[-50,-187],[-78,-144],[9,-181],[-109,-106],[-12,-12],[-129,-5],[-139,48],[-113,116],[-136,25],[-206,-261],[-233,-190],[-103,-145],[-283,-75],[-135,-92],[-705,-1126],[-129,29],[-359,-336],[-290,31],[-270,-87],[-177,-346],[-403,-508],[-112,-96],[-155,-36],[-410,-11],[-127,94],[-136,36],[-281,-95],[-239,251],[-305,61],[-248,138],[-276,52],[-120,-93],[-119,40],[0,195],[54,159],[15,204],[-85,153],[-380,194],[-70,158],[-15,551],[-70,158],[-135,66],[-141,-7],[-473,292],[-136,-20],[-514,322],[-150,13],[-170,-383],[-140,11],[-403,164],[-20,191],[218,232],[91,170],[-55,204],[-122,51],[-142,-13],[-118,-81],[-135,8],[-120,129],[-22,397],[73,939],[-112,1266],[-53,601],[15,303],[163,485],[43,231],[-57,207],[-242,258],[-217,360],[-143,165],[-310,228],[-99,200],[155,328],[219,322],[242,578],[268,423],[268,663],[255,380],[133,75],[136,-87],[92,-492],[218,-336],[184,-44],[148,20],[460,212],[232,297],[213,-179],[133,119],[713,1232],[65,202],[85,138],[120,135],[134,54],[156,-74],[156,4],[111,124],[71,229],[332,426],[72,206],[91,924],[-21,690],[127,928],[-65,165],[-104,103],[-41,179],[77,151],[573,-63],[113,-71],[89,-149],[-82,-149],[0,-199],[401,-267],[170,-66],[297,28],[143,92],[530,555],[246,348],[133,370],[247,1192],[362,984],[354,695],[373,506],[341,659],[530,293],[677,247],[368,260],[559,-194],[125,43],[418,300],[156,310],[133,-21],[212,-217],[120,-6],[127,105],[128,29],[269,-54],[269,190],[323,450],[242,177],[91,139],[127,46],[126,-91],[142,-302],[101,-131],[353,-340],[120,-465],[107,-742],[183,-730],[83,-177],[326,-442],[416,-317],[454,-269],[474,-219],[811,-294],[347,-193],[605,-521],[87,-75],[934,-1108],[253,-185],[503,-114],[330,18],[329,17],[283,15],[279,15],[176,-32],[439,-81],[305,39],[565,-148],[1773,-946],[155,-143],[291,-270],[1291,-1374],[108,-115],[551,-468],[80,-56],[345,-240],[508,-263],[1172,-242],[171,13],[345,26],[513,130],[96,24],[407,71],[731,127],[134,57],[79,62],[522,404],[282,280],[367,467],[531,1175],[62,202],[157,951],[71,2351],[-233,1717],[-297,928],[-284,699],[-100,446],[-90,163],[-133,128],[-340,174],[-453,306],[-1039,878],[-594,742],[-176,320],[-295,688],[-193,276],[-381,248],[-614,254],[-234,248],[-126,78],[-98,42],[-482,207],[-672,660],[-381,214],[-581,455],[-353,550],[-283,686],[-290,428],[-318,588],[106,130],[249,-148],[184,-250],[163,-327],[190,-713],[198,-344],[134,-331],[114,-140],[883,-506],[473,-455],[190,-273],[412,-163],[252,-165],[261,-53],[389,-330],[185,-110],[118,-43],[576,-213],[323,-120],[1052,-904],[453,-338],[135,-86],[135,-87],[410,-90],[310,-170],[564,-453],[574,-584],[2795,-1709],[362,-221]],[[240463,132448],[-361,-387],[-119,-18],[-150,62],[-240,-85],[-56,152],[36,408],[49,169],[310,376],[85,379],[70,150],[100,130],[127,66],[148,14],[92,-155],[-65,-551],[73,-357],[-30,-202],[-69,-151]],[[239062,139225],[-219,-666],[-77,-398],[-83,-128],[-368,-247],[-149,34],[-70,418],[-178,330],[71,367],[-72,150],[-118,-90],[-128,29],[-56,173],[55,156],[297,282],[291,200],[177,-66],[90,-112],[255,-82],[241,-138],[41,-212]],[[238053,140169],[-99,-116],[-99,182],[-106,343],[56,163],[128,88],[84,152],[35,195],[122,159],[127,-67],[64,-179],[-101,-133],[-70,-188],[-71,-428],[-70,-171]],[[218294,141419],[-50,-591],[-49,-179],[-106,-116],[-64,-154],[-22,-173],[37,-594],[85,-170],[289,-113],[133,-125],[86,-218],[-8,-248],[-176,-274],[-507,-349],[-156,-70],[-242,70],[-253,-160],[-242,-301],[-252,-175],[-227,-261],[-439,435],[-113,89],[-127,6],[-120,98],[-28,179],[-198,270],[-55,176],[6,261],[50,204],[-128,170],[-121,88],[-104,-106],[-377,-584],[-219,-552],[-189,-299],[-122,-364],[-133,-9],[-128,426],[-105,152],[-303,98],[-150,116],[-190,432],[-276,190],[-127,156],[-71,182],[-14,174],[72,380],[76,210],[14,210],[-77,158],[85,151],[220,186],[417,618],[162,98],[175,-21],[275,-184],[256,7],[276,99],[571,375],[275,77],[137,98],[422,64],[120,135],[143,323],[91,121],[134,12],[148,121],[205,280],[162,46],[234,196],[261,-496],[-20,-459],[63,-165],[433,-148],[112,-103],[63,-176]],[[249537,144901],[-509,-1317],[-192,-49],[-148,82],[-340,-217],[-69,144],[218,566],[72,308],[35,340],[83,131],[248,147],[93,248],[438,495],[107,-38],[-36,-840]],[[247316,145657],[-33,-631],[-109,-727],[102,-343],[-735,-1119],[-368,-210],[-249,-201],[-104,-209],[-191,-193],[-169,-308],[-375,-319],[-36,-368],[-170,-530],[-92,-567],[-198,-255],[-311,-607],[-149,-58],[-99,-105],[-182,-302],[-35,-189],[161,-588],[-7,-608],[-168,-266],[-114,-110],[-127,-46],[-460,-565],[-71,-370],[-99,-160],[-127,2],[-134,86],[-56,187],[21,221],[246,555],[101,335],[27,592],[-126,548],[-306,87],[-146,-10],[-122,101],[-78,171],[-98,615],[22,612],[-36,381],[100,400],[13,221],[-141,837],[14,214],[122,371],[169,249],[290,-82],[359,181],[310,250],[247,345],[42,950],[248,384],[170,465],[190,334],[108,346],[246,291],[255,-76],[325,-541],[247,-207],[425,55],[318,362],[239,352],[292,175],[318,61],[294,-466]],[[215637,145189],[-113,-85],[-121,43],[-225,226],[-170,258],[-190,85],[71,367],[175,339],[367,322],[150,45],[97,-125],[234,-561],[27,-391],[-82,-193],[-220,-330]],[[246371,146298],[-488,-81],[-176,42],[-129,138],[9,176],[56,205],[310,526],[149,110],[558,173],[89,-100],[88,-99],[50,-308],[-100,-297],[-416,-485]],[[249535,149481],[114,-195],[99,-285],[-78,-339],[-388,-336],[-164,-208],[-97,-238],[-364,-9],[-364,-9],[-296,150],[-142,295],[69,860],[192,299],[814,-11],[373,107],[232,-81]],[[238788,157110],[346,-108],[332,108],[126,-184],[36,-319],[-19,-256],[-745,259],[-309,-19],[-78,109],[20,194],[291,216]],[[234891,162804],[-213,-438],[-153,167],[-34,224],[136,304],[-163,176],[87,146],[272,14],[205,-66],[-137,-527]],[[235864,162778],[-237,-90],[-181,90],[-72,247],[98,222],[281,251],[375,65],[-60,-451],[-204,-334]],[[246575,162788],[-189,-101],[-24,334],[101,770],[198,218],[119,248],[289,240],[423,30],[242,283],[29,17],[66,39],[31,18],[-40,-494],[-86,-316],[-255,-491],[-517,-398],[-387,-397]],[[255580,169387],[76,-5118],[0,-38],[33,-2186],[0,-18],[7,-476]],[[255696,161551],[-358,-51],[-198,-128],[-338,-441],[-92,-255],[-23,-191],[-155,-282],[-317,-366],[-227,-94],[-171,-163],[-190,-433],[-43,-433],[-160,-316],[-382,-318],[-311,-197],[-228,-324],[-205,-122],[-239,204],[-387,-113],[-470,-68],[-881,-12],[-516,160],[-636,897],[190,330],[318,314],[135,428],[-282,257],[120,252],[281,95],[311,691],[7,423],[-56,413],[-310,683],[-369,469],[-459,231],[-367,-161],[-283,189],[1,531],[40,54],[185,246],[85,114],[29,420],[-57,341],[64,473],[-269,567],[29,459],[76,333],[566,-190],[352,6],[347,324],[206,113],[260,422],[79,370],[163,276],[481,369],[205,24],[40,5],[207,24],[402,-283],[213,-428],[438,-359],[405,158],[320,-214],[187,116],[-143,473],[50,632],[254,552],[304,-57],[375,-249],[474,-37],[134,-443],[148,-371],[205,380],[79,294],[134,813],[107,10]],[[241855,184874],[34,-217],[34,-223],[30,-196],[453,-1507],[382,-203],[587,-41],[1213,-369],[420,9],[460,96],[54,11],[212,743],[198,416],[347,465],[1011,507],[636,958],[564,410],[411,135],[396,-209],[386,-282],[405,-144],[261,39],[1131,391],[776,341],[1132,930],[389,-227],[276,-543],[323,-110],[495,-1],[403,-462],[69,-17],[115,-28],[30,-4068],[2,-213],[74,-9945]],[[255564,171320],[-189,50],[-311,94],[-346,-121],[-346,281],[-192,-207],[-187,-149],[-186,-149],[-237,-39],[-192,-31],[-239,94],[-337,-188],[-60,-316],[-153,-326],[-1285,-504],[-82,-32],[-506,-415],[61,-324],[-166,-156],[-72,-69],[-548,-258],[-20,-9],[-364,-201],[-461,-268],[-112,-23],[-130,-27],[-964,193],[-426,13],[-427,244],[-298,77],[-248,-141],[-362,141],[-408,-251],[-654,174],[-409,258],[-486,-155],[-377,51],[-323,181],[-588,-206],[-793,-335],[-461,-77],[-475,61],[-156,209],[-8,8],[-478,417],[-373,212],[-463,264],[-45,14],[-338,108],[-90,33],[-278,102],[-267,-66],[10,-461],[-235,147],[-11,7],[-499,87],[-37,-484],[-581,-413],[-312,-323],[-215,-221],[-422,-442],[-543,-185],[-707,-727],[-649,332],[-217,360],[-14,22],[-341,232],[-524,108],[-661,137],[-538,141],[-442,-182],[-383,-208],[-339,-73],[-205,-171],[-132,-241],[-42,-77],[-239,-361],[-398,-52],[-148,-64],[-273,-102],[-345,35],[-303,-267],[-137,-386],[237,-476],[-110,-621],[-619,-348],[-571,-292],[-182,-93],[-755,-99],[-830,-121],[-404,54],[-163,-27],[-486,-81],[-400,-103],[-399,-301],[-268,-162],[-587,-631],[-192,-368],[84,-290],[81,28],[120,-61],[133,-146],[2,-174],[0,-28],[-84,-230],[-191,-265],[-58,-202],[-36,-85],[-85,-217],[-135,-285],[-190,63],[-20,169],[-419,-115],[-124,-34],[-578,-346],[-73,-535],[-151,-180],[-209,-127],[-448,-385],[-22,-26],[-223,-258],[-73,-291],[-141,-668],[31,-425],[63,-181],[213,-71],[350,-94],[104,-204],[-47,-323],[-163,-248],[-238,-169],[-251,-71],[-234,-63],[-118,178],[-65,236],[-107,30],[-109,31],[-376,-138],[-546,-453],[-217,-165],[103,-361],[-182,-120],[-205,-772],[-5,-294],[-234,-874],[35,-437],[107,-353],[-97,-584],[-11,-1493],[134,-1121],[-76,-27],[-751,-270],[-354,-128],[-922,-429],[-660,-549],[-700,-139],[-1001,342],[-411,326],[-461,398],[-409,-52],[-467,378],[18,542],[5,128],[216,429],[13,641],[255,642],[330,915],[717,395],[108,334],[313,61],[176,145],[330,739],[211,506],[70,291],[72,302],[159,369],[200,103],[139,141],[122,125],[50,194],[19,72],[51,198],[0,334],[-106,227],[-115,244],[-195,233],[-273,335],[-165,215],[-131,283],[-51,404],[86,326],[193,232],[74,249],[171,197],[301,258],[182,137],[126,-9],[187,-17],[131,120],[46,224],[4,39],[59,519],[-39,363],[-18,169],[-26,96],[-61,227],[-10,38],[-173,344],[-78,153],[-295,438],[-240,275],[-179,227],[-218,275],[-24,30],[-3,4],[-389,503],[-279,300],[-115,48],[-50,21],[-148,-77],[-302,-181],[-233,-31],[-399,49],[-187,-163],[-126,-164],[-56,-283],[120,-118],[-109,-268],[-455,34],[-47,-3],[-232,-14],[-256,9],[-154,-301],[-126,-143],[-409,-140],[-51,-275],[45,-249],[-79,-215],[-74,-223],[-154,-352],[-296,-86],[-250,35],[-439,43],[-62,-138],[-46,-137],[-301,-198],[-125,-77],[-114,35],[-416,-43],[-318,-61],[-245,-68],[-251,-129],[-250,-146],[-148,-163],[-68,-120],[-50,-214],[-81,-27],[-290,-300],[-228,-318],[-211,-335],[-148,-283],[-113,-300],[-35,-249],[-28,-129],[-34,-198],[-211,-180],[-11,-317],[40,-181],[171,-111],[-35,-490],[-125,-300],[-108,-361],[-74,-292],[46,-274],[142,-26],[131,-215],[-40,-309],[131,-343],[114,-326],[210,5],[279,-194],[199,206],[222,8],[-11,-223],[-120,-240],[91,-292],[-142,-378],[13,-46],[44,-160],[137,-91],[68,-261],[-103,-472],[-165,-198],[-142,-17],[-154,-146],[-119,-154],[-40,-129],[-34,-129],[-7,-175],[155,-10],[137,-81],[0,-481],[-61,-237],[-80,-316],[-233,-433],[-269,-502],[-156,-639],[-152,-176],[-38,-345],[58,-87],[113,-20],[18,-315],[-19,-204],[-128,-81],[-85,-193],[-162,-571],[-30,-314],[113,-351],[-35,-263],[-42,-206],[-70,-153],[-56,-222],[-207,-349],[-120,68],[-14,187],[-78,178],[-162,98],[-152,49],[-342,-64],[-204,-12],[-93,-55],[-114,-105],[-137,-169],[-162,-113],[-130,-120],[-107,-35],[-40,-36],[-88,-10],[-78,35],[-71,-20],[-79,-60],[-133,-15],[-174,40],[-146,15],[-137,-60],[-176,-151],[-207,-166],[-106,-130],[-113,-216],[-58,-160],[-2,-6],[-37,-126],[-16,-104],[23,-122],[76,-180],[74,-176],[183,-262],[3,-231],[3,-226],[0,-201],[17,-160],[70,-131],[-3,-236],[-67,-302],[-83,-236],[40,-216],[-66,-117],[-192,-513],[-291,-437],[-83,-351],[-162,-135],[-43,-148],[-163,-317],[-239,-96],[-160,-24],[-123,9],[-133,121],[-69,-58],[-22,-133],[-46,-79],[-137,18],[-97,-142],[-155,-274],[83,-69],[0,-122],[-33,-302],[-77,-348],[-75,-79],[-63,-126],[66,-234],[-92,-230],[-69,-206],[-94,-128],[-138,-29],[-160,57],[-238,14],[-220,-403],[-52,-162],[-122,-261],[-234,-516],[-304,-586],[-126,-268],[-139,-283],[-141,-313],[-324,-238],[-341,-88],[-324,-125],[-290,-330],[-449,-147],[-522,37],[-552,-325],[-852,-924],[120,-416],[4,-304],[-172,-149],[-348,18],[-218,-177],[7,-343],[-173,-96],[-1237,-217],[-588,-253],[-286,-330],[-306,-63],[-350,-33],[-252,-118],[-282,-144],[-394,-214],[-170,87],[-162,163],[-150,145],[-96,-18],[-210,-136],[-63,-8],[-153,-19],[-301,-136],[-150,-245],[-96,-552],[-162,-582],[-12,-43],[-78,-616],[-217,-117],[-389,235],[144,317],[-97,269],[58,339],[-120,247],[-63,304],[-264,352],[-13,406],[-275,347],[-323,207],[-399,142],[-202,492],[-312,-82],[-192,-198],[-400,-307],[-249,-191],[-177,-13]],[[177249,168865],[504,508],[712,29],[941,430],[486,76],[100,-107],[85,-212],[211,-317],[186,-134],[353,-60],[112,-62],[220,-278],[168,-396],[106,140],[191,474],[193,786],[247,699],[61,318],[-7,256],[-125,527],[155,810],[-163,651],[-37,291],[29,480],[91,226],[815,1099],[131,480],[158,580],[345,776],[708,1395],[247,598],[212,769],[113,66],[77,-562],[72,-207],[147,-250],[185,-144],[169,-46],[453,41],[438,247],[192,182],[175,346],[410,1081],[107,348],[183,855],[120,292],[495,814],[459,942],[333,407],[443,388],[180,248],[289,502],[77,206],[40,381],[-47,170],[4,229],[201,456],[1979,1675],[797,417],[317,87],[525,28],[192,148],[359,428],[113,178],[213,645],[132,183],[476,493],[571,940],[91,209],[149,515],[26,426],[-54,891],[100,387],[240,427],[132,131],[368,206],[601,225],[142,-75],[77,-811],[135,-381],[113,-165],[134,-358],[127,-121],[473,-276],[433,-570],[867,-815],[128,-235],[170,-632],[91,-177],[369,-504],[458,-424],[304,-778],[1032,-794],[276,-409],[381,-424],[694,-1043],[142,-45],[137,43],[428,346],[940,940],[240,192],[332,167],[182,28],[347,-78],[382,53],[729,208],[345,-5],[834,-257],[996,-423],[233,-3],[297,84],[924,376],[1061,351],[935,144],[127,-56],[114,-144],[174,-371],[249,-416],[323,-423],[305,-321],[325,-158],[565,-60],[461,121],[249,205],[302,419],[403,460],[400,243],[545,133],[297,182],[135,137],[234,354],[431,380],[508,795],[254,236],[418,249],[988,329],[278,156],[113,130],[251,593],[115,412],[395,813],[417,711],[432,558],[366,243],[264,93],[83,122],[99,358],[114,114],[146,51],[327,388],[261,103],[299,285],[99,93],[342,401],[53,62],[229,317],[107,316],[111,269],[22,173],[-33,133],[-48,124],[-46,180],[3,199],[69,247],[156,419],[143,262],[165,319],[309,741],[72,43],[1,1],[154,92],[234,12],[167,-23],[340,-148],[294,-114],[204,-183],[167,-285],[53,-279],[-265,-826],[-1,-117],[-2,-117],[223,-232],[220,-198],[302,-421],[287,-239],[21,-17],[263,-316],[185,-118],[164,-254],[209,-264],[149,-181],[171,-125],[145,-164],[89,-227],[141,-183],[103,-140],[117,-176],[57,-203],[26,-224],[353,-1112],[178,-546],[173,-545],[89,-245],[306,-568],[489,-384],[206,-302],[36,-422],[-39,-1510],[364,-449],[459,-206],[283,-279],[303,-503],[197,-479],[65,-470],[-22,-444],[134,-406],[529,-399],[354,-80],[341,193],[458,-66],[629,-596],[466,13],[432,-100],[2105,661],[355,17],[1315,-213],[345,-196]],[[566895,195663],[-39,-144],[-83,-224],[-67,-198],[-134,-395],[-128,-231],[-97,-176],[-609,-813],[-755,-812],[-105,-168],[-227,-520],[-100,-137],[-261,-216],[-217,-392],[-171,-233],[-240,-251],[-424,-325],[-184,-277],[-289,-608],[-423,-1104],[-53,-241],[-27,-124],[267,-1697],[100,-356],[27,-95],[135,-539],[91,-443],[63,-314],[27,-246],[-108,-246],[-186,-225],[-249,-321],[-70,-161],[-43,-98],[-4,-225],[41,-289],[291,-704],[20,-89],[91,-406],[27,-293],[-2,-83],[-11,-470],[-5,-145],[-1,-34],[0,-2],[-3,-112],[25,-107],[22,-91],[48,-198],[27,-334],[68,-454],[173,-261],[86,-126],[128,-125],[95,-73],[78,-35],[36,2],[35,2],[50,-8],[30,-35],[11,-44],[-34,-93],[-89,-105],[-105,-84],[-78,-26],[-61,-19],[-48,-39],[-29,-31],[-12,-13],[-56,-14],[-96,12],[-51,7],[-27,4],[-16,-23],[-15,-22],[-8,-50],[14,-49],[-19,-44],[-40,-58],[-132,-171],[-115,-74],[-44,-58],[-224,-317],[-239,-358],[-60,-114],[-20,-147],[18,-158],[86,-112],[118,-37],[120,33],[114,60],[179,149],[296,196],[107,4],[92,-40],[145,-109],[163,-219],[158,-204],[263,-246],[254,-107],[280,-117],[233,107],[269,56],[221,6],[204,103],[335,102],[202,74],[103,47],[40,39],[25,38],[19,80],[10,74],[7,49],[35,90],[33,28],[38,15],[59,14],[62,42],[65,60],[31,40],[15,20],[24,42],[16,47],[41,80],[28,52],[86,115],[144,74],[83,126],[178,194],[132,115],[149,184],[230,129],[170,0],[106,85],[169,164],[163,144],[167,69],[109,-18],[114,-39],[151,-86],[151,-40],[148,-40],[117,-40],[102,-97],[110,-125],[64,-189],[32,-84],[116,-64],[87,-11],[68,-74],[83,-86],[83,-51],[102,-80],[110,-74],[94,-86],[114,-120],[136,-80],[121,-97],[110,-165],[139,-205],[174,-291],[159,-263],[369,-626],[372,-634],[372,-560],[16,-117],[16,-51],[25,-41],[53,-31],[15,-23],[12,-18],[36,-75],[25,-70],[28,-107],[24,-116],[26,-73],[31,-45],[31,-34],[23,-37],[19,-101],[45,-106],[73,-106],[172,-75],[67,-34],[64,-143],[135,-109],[141,-86],[142,-58],[100,-75],[58,-105],[15,-135],[37,-307],[3,-233],[16,-321],[-149,-2356],[-72,-1135],[-8,-127],[-106,-147],[74,-250],[85,-32],[9,-29],[-51,-67],[33,-96],[79,-32],[13,-30],[-45,-66],[17,-121],[58,-39],[3,-28],[-50,-54],[18,-110],[64,-53],[4,-23],[-54,-72],[9,-98],[80,-71],[15,-121],[34,-279]],[[573768,165912],[-1857,-433],[-4085,-1041],[-611,-164],[-2165,-648],[-863,-311],[-197,-71],[-856,-340],[-569,-301],[-321,-226],[-326,-266],[-208,-170],[-81,-130],[-23,-218],[-45,-157],[-72,-280],[-41,-252],[15,-179],[125,-135],[91,-69],[19,-145],[-92,-114],[-30,-277],[-105,-160],[50,-191],[58,-184],[59,-184],[-1,-190],[-1,-190],[-101,-311],[-87,-108],[0,-191],[-35,-321],[-10,-49],[-19,-70],[-19,-49],[-24,-56],[-29,-52],[-32,-46],[-49,-60],[-46,-46],[-41,-164],[-139,-199],[-142,-72],[-149,-55],[-162,-37],[-135,-177],[-213,-123],[-122,-34],[-122,-34],[-109,-259],[-154,-157],[-163,-89],[-153,14],[-217,68],[-141,27],[-140,14],[-104,20],[-131,116],[-109,232],[-217,567],[-38,84],[-98,216],[-298,170],[-312,116],[-215,65],[-102,31],[-320,97],[-8,2],[-328,99],[-896,92],[-1863,133],[-867,24],[-430,-3],[-1738,6],[-1027,-23],[-769,-18],[-1034,-123],[-458,-55],[-566,-67],[-116,-19],[-804,-129],[-1421,-229],[-414,-67],[-497,-45],[-1064,-98],[-80,-2],[-691,-15],[-147,-4],[-781,-35],[-25,-1],[-639,-93],[-823,-121],[-448,-65],[-932,-114],[-7,0],[-733,-69],[-393,-17],[-1570,-71],[-32,-3],[-2159,-157],[-903,-66],[-1696,-150],[-1674,-109],[-923,-61],[-4,0],[-20,-2],[-840,-53],[-31,-3],[-679,-65],[-918,-82],[-458,-37],[-507,-40],[-406,-32],[-1117,-150],[-466,-65],[-1655,-222],[-1140,-136],[-1759,-161],[-820,-73],[-847,-107],[-1636,-192],[-755,-102],[-1819,-325],[-50,-9],[-590,-108],[-554,-124],[-552,-110],[-729,-221],[-689,-243],[-1139,-405],[-971,-359],[-896,-324],[-637,-262],[-1221,-601],[-515,-210],[-468,-138],[-502,-85],[-417,-31],[-130,-10],[-211,-10],[-324,-14],[-250,-11],[-295,-9],[-383,27],[-511,33],[-236,12],[-117,6],[-354,25],[-155,17],[-236,25],[-747,134],[-203,31],[-857,159],[-891,200],[-923,203],[-454,101],[-285,54],[-1093,212],[-935,149],[-129,20],[-1400,193],[-17,2],[-754,77],[-1115,114],[-173,18],[-1568,101],[-1376,60],[-96,2],[-1405,36],[-798,20],[-39,1],[-460,32],[-684,10],[-772,-23],[-587,-65],[-74,-3],[-273,-15],[-313,-18],[-472,-28],[-505,-32],[-477,-32],[-201,-28],[-274,-32],[-365,-68],[-211,-44],[-120,-25],[-198,-37],[-97,-27],[-237,-115],[-113,-129],[-18,-87],[61,-82],[39,-133],[-8,-76],[-65,-75],[-140,-161],[-56,-61],[-33,-65],[-38,-108],[-41,-145],[-5,-188],[71,-223],[36,-157],[35,-96],[31,-176],[5,-188],[-56,-84]],[[477101,150408],[-458,456],[-279,326],[-168,180],[-142,146],[-135,107],[-114,111],[-181,138],[-96,92],[-171,184],[-111,104],[-84,107],[-361,376],[-351,622],[-56,175],[-40,174],[-18,189],[23,178],[51,184],[38,107],[66,115],[152,284],[163,322],[46,173],[66,406],[2,35],[6,76],[1,2],[0,3],[0,28],[1,32],[1,40],[0,6],[1,24],[-15,176],[-10,111],[0,176],[10,129],[34,77],[118,123],[118,123],[113,131],[146,155],[66,75],[84,94],[66,52],[81,57],[191,126],[439,259],[615,345],[327,310],[31,29],[134,303],[14,79],[74,416],[3,17],[1,2],[2,11],[57,232],[63,255],[2,7],[1,4],[1,5],[1,6],[1,4],[2,6],[1,5],[1,4],[1,4],[1,5],[1,4],[1,4],[1,5],[2,5],[1,3],[30,56],[219,403],[493,376],[413,280],[338,385],[23,29],[421,522],[201,289],[19,26],[127,171],[41,70],[56,95],[155,294],[176,312],[64,133],[60,85],[59,85],[121,45],[292,92],[187,53],[166,30],[167,29],[182,80],[161,130],[193,201],[357,371],[132,189],[105,207],[84,192],[76,230],[31,60],[82,160],[115,179],[219,247],[456,377],[457,486],[279,349],[165,247],[109,340],[22,159],[5,43],[-1,24],[-10,206],[0,2],[0,3],[0,2],[-1,3],[0,2],[0,3],[0,2],[0,3],[0,3],[0,2],[-1,2],[0,3],[0,1],[0,2],[0,3],[0,3],[0,2],[0,3],[0,3],[-1,2],[0,3],[0,2],[0,2],[0,3],[0,3],[0,3],[-1,3],[0,2],[0,2],[0,2],[0,1],[0,4],[0,3],[0,5],[-4,100],[0,8],[-13,80],[-26,172],[-33,122],[-10,37],[-11,40],[-10,37],[-13,51],[-20,135],[-7,55],[-1,7],[27,232],[70,174],[34,32],[122,111],[46,28],[97,61],[53,32],[50,32],[80,49],[66,41],[33,21],[64,39],[87,91],[10,10],[66,69],[31,33],[39,40],[41,78],[36,69],[70,132],[8,15],[133,253],[136,257],[148,138],[202,147],[93,68],[1,1],[110,85],[69,52],[91,128],[56,264],[0,1],[0,1],[1,2],[0,3],[2,8],[1,4],[20,83],[5,21],[10,42],[7,30],[2,8],[1,4],[11,50],[30,140],[0,1],[41,204],[11,48],[7,30],[9,38],[32,78],[23,26],[50,57],[47,38],[45,36],[43,35],[45,37],[17,14],[41,33],[35,29],[17,14],[50,40],[45,38],[65,53],[55,46],[75,51],[49,34],[11,8],[5,3],[1,1],[8,5],[80,58],[109,78],[99,73],[71,52],[21,15],[18,13],[7,6],[3,2],[6,5],[7,4],[4,3],[3,2],[1,1],[1,1],[2,1],[2,2],[3,2],[2,1],[2,2],[2,1],[2,1],[2,2],[2,1],[3,3],[3,1],[3,3],[1,0],[3,2],[4,3],[2,2],[4,2],[4,3],[4,4],[4,2],[3,2],[3,3],[3,2],[9,6],[3,2],[4,3],[4,3],[3,2],[4,3],[2,1],[2,2],[4,3],[3,2],[3,2],[3,2],[2,2],[3,1],[3,3],[3,1],[3,2],[4,3],[4,3],[3,3],[4,2],[4,3],[4,3],[2,2],[3,2],[3,2],[4,2],[3,2],[2,2],[3,2],[2,2],[4,2],[3,3],[4,3],[3,2],[4,3],[5,3],[4,3],[5,3],[5,4],[5,4],[5,3],[6,4],[4,4],[4,2],[2,1],[2,2],[1,1],[5,3],[20,14],[1,1],[140,96],[87,60],[4,2],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[8,6],[1,1],[1,0],[1,1],[1,0],[1,1],[4,3],[6,4],[5,3],[3,2],[15,10],[12,8],[12,8],[11,7],[11,7],[22,15],[60,39],[84,56],[26,17],[49,28],[180,102],[34,23],[146,101],[138,95],[116,63],[116,63],[121,66],[98,59],[109,66],[79,48],[75,45],[34,21],[1,1],[70,48],[99,68],[97,66],[65,46],[30,20],[55,38],[29,20],[20,14],[27,19],[4,2],[89,56],[101,64],[59,37],[11,6],[174,110],[61,53],[92,79],[93,80],[63,54],[46,40],[28,24],[317,367],[206,248],[183,239],[115,266],[49,146],[24,175],[23,299],[15,230],[-9,183],[-235,1588]],[[492228,179606],[-1,10],[-3,21],[-259,1847],[-120,856],[1914,791],[205,85],[211,87],[712,312],[36,18],[426,203],[370,209],[266,161],[288,144],[218,119],[235,159],[180,144],[249,183],[93,64],[41,28],[147,97],[103,68],[459,356],[216,176],[164,193],[298,349],[119,125],[99,131],[38,35],[189,167],[50,27],[82,43],[318,-8],[214,-111],[160,-33],[139,81],[124,72],[256,149],[295,-47],[285,39],[459,161],[208,157],[462,350],[135,68],[599,328],[197,72],[253,-40],[115,18],[86,55],[226,244],[75,27],[67,-35],[109,-102],[294,-271],[114,-110],[109,-37],[116,37],[173,142],[252,226],[286,182],[146,32],[131,14],[101,32],[85,64],[198,369],[167,421],[142,353],[277,480],[377,485],[125,160],[210,205],[213,175],[222,110],[273,91],[251,64],[295,75],[402,120],[197,168],[110,144],[110,145],[248,248]],[[548405,202542],[190,-28],[230,-179],[215,-168],[1066,-1399],[198,-386],[79,-610],[91,-124],[270,-108],[261,-48],[121,-128],[282,-633],[596,-755],[426,-323],[166,-82],[245,1],[139,47],[181,62],[59,20],[561,319],[991,101],[493,127],[530,299],[298,284],[212,300],[127,81],[121,-69],[25,-376],[-11,-549],[43,-324],[138,-447],[284,-531],[100,-135],[121,-118],[320,-168],[25,-13],[56,-29],[339,-117],[346,29],[210,153],[320,340],[248,172],[254,130],[257,71],[184,24],[311,5],[295,-62],[318,-225],[181,-67],[174,52],[457,226],[505,186],[400,82],[251,-39],[533,-182],[650,-186],[469,-175],[215,-62],[254,-120],[242,-153],[348,-318],[294,-269],[272,-93],[349,-77],[292,-69],[273,-46]],[[298386,310406],[-272,-153],[-384,-249],[-339,-190],[-245,-185],[-195,-152],[-118,-141],[-198,-394],[-289,-283],[-416,118],[-347,265],[-310,-12],[-291,-267],[-85,-194],[-253,-291],[-241,-345],[-85,-430],[-302,-262],[-313,-150],[-247,-410],[-162,-691],[-248,-188],[-296,-28],[-136,-369],[-373,-426],[147,-466],[-295,-340],[-772,-138],[-111,-264],[90,-461],[-210,-209],[-249,59],[-480,-629],[-241,-139],[-140,-274],[-241,-133],[-120,-127],[-226,-159],[-220,-254],[-247,-167],[-262,-522],[-114,-405],[-105,-137],[-394,-294],[-481,-564],[-283,-133],[-105,-92],[-72,-144],[-366,-415],[-425,-688],[-171,-51],[-119,-97],[-185,-326],[-189,-254],[-134,-81],[-298,101],[-120,-76],[-218,-254],[-157,-76],[-276,1],[-98,-112],[-55,-201],[-14,-361],[-127,-138],[-65,-154],[-16,-180],[30,-203],[226,-653],[85,-472],[57,-540],[0,-593],[-29,-232],[-112,-384],[-143,-65]],[[284191,292483],[-191,595],[-170,834],[-176,374],[-191,267],[-6,188],[57,193],[105,123],[65,151],[-85,163],[-234,269],[-57,193],[-13,177],[28,178],[92,135],[127,95],[56,169],[7,409],[65,201],[211,294],[57,153],[140,716],[79,175],[134,143],[66,159],[14,32],[53,127],[1,185],[-42,195],[-100,268],[-507,428],[-107,202],[-453,681],[-113,624],[-277,237],[-154,321],[-14,424],[98,471],[16,390],[111,846],[3,213],[-71,373],[-177,326],[-50,208],[-1,212],[78,344],[70,178],[107,133],[84,162],[171,575],[-8,397],[-98,334],[-129,97],[-126,39],[-248,347],[-360,226],[-432,144],[-155,140],[-49,187],[-7,187],[-43,213],[-163,392],[-69,600],[-78,167],[-113,131],[-141,309],[-114,444],[-119,650],[-184,727],[-305,999],[-21,180],[-65,155],[-97,114],[-113,-131],[-21,-416],[-71,-175],[-128,-29],[-162,77],[-99,148],[-290,202],[-98,176],[-92,454],[-107,165],[-156,-8],[-197,-272],[-20,-191],[-93,-146],[-255,-143],[-262,-277],[-38,-39]],[[288384,349073],[50,-2],[151,-5],[47,-38],[19,-47],[-25,-107],[11,-34],[27,-10],[58,-21],[58,28],[59,-29],[10,-4],[10,-5],[15,-107],[10,-144],[10,-84],[71,-63],[56,-53],[33,-82],[27,-31],[50,-16],[77,-31],[63,-50],[101,-4],[123,-130],[4,-4],[104,-41],[125,-22],[112,-44],[91,-88],[81,-94],[45,-53],[45,-53],[4,-44],[4,-44],[-31,-63],[-113,-52],[-53,2],[-27,-132],[-25,-69],[-2,-97],[10,-113],[-4,-75],[0,-69],[-43,-35],[-11,-100],[-21,-50],[-69,-30],[-70,21],[-62,-43],[-48,-26],[-50,18],[2,41],[-23,28],[-29,-31],[-20,-59],[-3,-7],[-4,-32],[0,-2],[44,-21],[-5,-76],[77,-352],[110,-263],[75,-213],[25,-195],[44,-200],[56,-91],[12,-50],[-31,-88],[23,-78],[71,-44],[10,-7],[15,-65],[-15,-98],[-48,-117],[97,-192],[5,-10],[133,-132],[104,-60],[14,-11],[112,-88],[57,-10],[22,-22],[68,-89],[25,-6],[24,-6],[6,-12],[25,-48],[31,-60],[44,-128],[36,-55],[69,0],[79,3],[59,42],[63,46],[57,5],[27,-43],[20,-86],[34,-23],[18,-62],[-23,-25],[32,-40],[38,-62],[39,-81],[50,-118],[12,-130],[30,-102],[57,-116],[40,-81],[34,-52],[27,-111],[39,-36],[63,-195],[21,-108],[-6,-114],[-36,-103],[5,-35],[3,-13],[2,-14],[7,-42],[74,-101],[52,-90],[31,-126],[24,-173],[-33,-41],[0,-56],[45,-28],[36,-26],[60,-21],[21,-60],[4,-60],[58,-28],[67,-41],[45,-47],[3,-14],[2,-15],[2,-12],[10,-62],[31,-126],[6,-90],[-12,-110],[-2,-119],[41,-104],[-35,-78],[46,-100],[85,-16],[63,55],[103,81],[60,63],[69,43],[56,-36],[52,-68],[63,6],[10,-4],[112,-46],[65,-63],[41,-75],[119,-116],[35,-66],[19,-169],[39,-80],[81,-74],[110,49],[71,-49],[135,0],[48,53],[50,110],[66,13],[40,12],[28,30],[3,66],[26,111],[33,25],[39,10],[28,-11],[36,45],[52,85],[2,33],[-8,37],[19,53],[20,70],[39,75],[37,56],[27,93],[34,97],[17,22],[23,2],[44,58],[36,37],[52,32],[26,28],[24,119],[17,124],[24,47],[34,36],[32,0],[13,20],[16,53],[-8,54],[12,32],[19,26],[18,32],[20,69],[19,19],[34,13],[39,22],[21,-6],[74,-47],[42,-3],[28,-4],[20,19],[34,44],[30,82],[56,89],[60,86],[54,78],[4,28],[4,44],[28,9],[31,21],[18,59],[24,99],[36,99],[22,72],[11,95],[1,78],[7,60],[2,39],[24,51],[49,142],[9,71],[-1,47],[11,44],[29,28],[37,27],[128,202],[88,210],[15,124],[90,200],[133,293],[94,188],[79,152],[33,123],[19,46],[29,27],[40,20],[54,30],[63,52],[99,84],[38,26],[15,34],[37,68],[47,84],[54,67],[40,11],[29,30],[24,71],[0,85],[-10,67],[0,2],[9,53],[31,49],[15,88],[32,110],[26,78],[31,68],[27,50],[65,85],[41,50],[47,17],[42,55],[104,148],[26,107],[5,96],[2,37],[17,58],[34,69],[29,34],[30,17],[45,70],[21,48],[8,56],[15,26],[24,43],[11,78],[-22,82],[-23,49],[1,54],[49,55],[14,64],[1,84],[-2,74],[56,66],[47,54],[62,41],[37,116],[36,116],[60,177],[38,86],[34,72],[43,165],[73,192],[640,1456],[51,155],[23,109],[20,125],[8,76],[-2,66],[25,73],[75,217],[26,-6],[43,-21],[44,-36],[39,-13],[38,-21],[35,-27],[40,-44],[27,-40],[23,-64],[4,-59],[-4,-42],[5,-36],[30,-8],[27,-24],[24,-12],[21,-17],[23,-63],[22,-22],[47,-46],[47,-46],[64,-39],[77,-42],[59,-8],[60,-15],[37,-53],[40,-74],[39,-73],[58,-60],[67,-57],[25,-27],[9,-47],[-9,-59],[4,-67],[45,-99],[-25,-68],[-76,-57],[-108,-38],[-58,-25],[-23,-70],[23,-88],[71,-57],[43,-125],[50,-167],[54,-55],[30,-38],[38,-21],[38,-8],[21,-30],[24,-42],[28,-34],[28,-57],[17,-57],[24,-59],[30,-44],[31,-36],[40,-8],[61,21],[69,25],[48,19],[65,-8],[72,-22],[62,-38],[56,-65],[36,-67],[11,-45],[12,-50],[3,-53],[11,-99],[36,-73],[22,-67],[8,-84],[31,-51],[47,-34],[74,-23],[55,0],[51,30],[35,61],[-1,57],[44,53],[71,36],[74,103],[61,82],[24,68],[20,97],[48,11],[36,-1],[10,22],[4,108],[6,39],[13,61],[28,19],[29,20],[31,23],[19,52],[19,79],[10,78],[89,107],[39,60],[19,10],[48,-13],[61,-55],[42,-33],[56,-26],[36,2],[45,-33],[37,-24],[32,-54],[67,-19],[59,-41],[36,19],[31,26],[64,84],[34,46],[31,43],[58,36],[13,19],[15,40],[-4,45],[28,48],[33,20],[12,-16],[15,-21],[42,2],[23,-25],[30,-72],[40,-63],[74,-40],[81,-38],[62,-17],[65,-19],[27,3],[59,45],[54,67],[86,115],[71,79],[45,58],[24,28],[19,15],[194,78],[29,10],[21,0],[22,-19],[18,-17],[5,-26],[13,-12],[40,0],[61,-8],[59,-14],[46,-8],[29,-26],[23,-44],[18,-68],[20,-88],[56,-100],[36,-106],[29,-47],[48,-74],[49,-55],[37,-41],[25,-33],[19,-45],[20,-60],[25,-32],[29,-15],[27,1],[50,23],[53,54],[40,24],[54,-7],[24,-10],[30,-12],[45,-24],[35,-32],[28,-33],[27,-30],[15,-24],[11,-14],[12,-22],[9,-8],[5,-18],[9,-21],[10,-47],[12,-35],[17,-13],[18,5],[29,1],[35,7],[49,11],[58,-2],[35,-29],[27,-29],[74,-75],[95,-76],[52,-50],[28,-30],[38,-30],[54,-38],[37,-14],[55,-12],[165,13],[157,224],[50,474],[15,462]],[[386423,351951],[40,-155],[107,-186],[91,-115],[120,-64],[207,-15],[119,18],[71,11],[131,-14],[305,-69],[64,32],[64,32],[168,403],[23,188],[61,191],[109,171],[126,-7],[269,-129],[149,5],[579,159],[812,453],[176,45],[129,-52],[125,-118],[142,-10],[126,40],[349,312],[155,8],[98,-110],[78,-623],[70,-195],[106,-133],[134,-49],[419,-54],[196,39],[328,429],[140,66],[679,-448],[54,-35],[680,-447],[628,-232],[311,-165],[799,172],[571,-24],[114,-84],[227,-430],[22,-179],[70,-199],[296,-456],[248,-247],[319,-126],[451,-13],[388,-133],[573,1],[444,222],[439,516],[332,303],[346,192],[207,37],[804,-307],[522,7],[129,-93],[148,-325],[120,-115],[119,91],[263,467],[360,425],[643,934],[162,136],[176,44],[178,-37],[40,-106],[109,-286],[170,-449],[360,-554],[402,-983],[134,-49],[416,-34],[341,61],[133,-35],[290,-286],[92,-155],[50,-386],[-40,-334],[-10,-88],[-92,-334],[-310,-469],[-143,-363],[-113,-117],[-134,-45],[-197,28],[-948,211],[-135,-20],[-133,-105],[-79,-155],[-26,-355],[-127,-417],[-312,-694],[-71,-254],[-35,-520],[-24,-95],[-24,-96],[-45,-175],[-104,-178],[-523,-390],[-114,-155],[-55,-180],[78,-150],[119,-115],[396,165],[267,4],[843,-291],[84,-183]],[[405161,342775],[-29,-458],[-191,-755],[-411,-931],[-111,-388],[-219,-466],[-665,-794],[-105,-285],[-163,-300],[-594,-682],[-240,-195],[-92,-345],[-219,-268],[-226,-176],[-516,-626],[-84,-340],[-23,-225],[-161,-283],[-290,39],[-254,-69],[-249,-178],[-361,-447],[-839,-1315],[-232,-499],[-122,-420],[-1031,-1782],[-171,-695],[-402,-611],[-1024,-615],[84,-570],[382,-545],[56,-507],[-175,-545],[-292,-405],[-267,-99],[-305,141],[-347,89],[-167,-259],[-403,-276],[-764,-92],[-649,103],[-163,-60],[-262,-23],[-516,-338],[-530,-251],[-403,-22],[-375,-140],[-388,-200],[-645,290],[-281,-267],[-770,-1138],[-700,34],[-359,-62],[-716,-351],[-402,94],[-212,263],[-205,476],[-155,807],[-296,309],[-659,429],[-332,-235],[-452,-537],[-181,-164],[-136,-124],[-263,-1307],[-402,-419],[-246,-521],[-455,-469],[-819,-269],[-318,-432],[-847,44],[-537,358],[-332,43],[-495,-145],[-453,-256],[-854,-861],[-326,-224]],[[377805,320033],[-430,-18],[-369,-115],[-310,-383],[-402,-126],[-157,-285],[-352,-237],[-191,297],[-113,646],[-397,122],[-354,-452],[-587,-654],[-151,-7],[-249,-12],[-263,245],[-351,-20],[-256,536],[-982,835],[-412,50],[-663,215],[-437,458],[-264,498],[-451,291],[-473,-46],[-480,-228],[-439,213],[-1195,1260],[-225,-66],[-1809,-1276],[-580,-485],[-282,-393],[-169,-640],[-305,-475],[-288,-326],[-235,-369],[-134,-280],[-346,-120],[-411,93],[-374,-597],[-226,-485],[-28,-516],[-65,-530],[-140,-175],[-432,447],[-310,830],[-388,273],[-899,-610],[-1086,-1007],[-405,-228],[-358,-326],[-278,-537],[-196,-533],[-44,-310],[-310,-190],[-326,-262],[-223,303],[-286,-12],[-481,-192],[-63,-698],[-212,-78],[-403,-361],[-438,-129],[-339,-358],[35,-1360],[-49,-498],[-269,-228],[-260,-323],[-306,-253],[-92,-588],[-139,-386],[-328,-282],[-394,-39],[-374,-160],[-525,-1238],[-160,-516],[-256,-475],[-141,-49],[-142,-50],[-728,-406],[-324,235],[-170,563],[-550,-12],[-304,131],[-242,665],[-344,433],[-509,-526],[-439,94],[-353,-34],[-416,477],[-779,342],[-383,111],[-296,-354],[-121,-505],[-260,-701],[-162,-63],[-171,277],[-402,414],[-587,950],[-515,194],[-177,-676],[168,-586],[-528,-934],[-1293,-698],[-235,172],[-225,680],[-586,355],[-282,589],[-411,427],[-311,-41],[-121,-1132],[16,-419],[-149,-2095],[-459,-784],[-600,-253],[-150,363],[9,719],[-295,-19],[-462,-30],[-375,-327],[-311,21],[-304,73],[-240,-208],[-346,-20],[-247,-65],[-367,-494],[-382,-198],[-587,183],[-261,-326],[-368,-286],[-284,185],[-197,-176],[-410,-677],[-191,-642],[63,-617],[-487,-753],[64,-577],[-64,-454],[-267,-667],[-354,-459],[-390,-425],[-1023,-428],[-390,-472],[-459,-356],[-509,-323],[-416,-989],[-113,-916],[-481,-501],[-346,-263],[-376,-372],[-550,-153],[-601,-336],[-332,-416],[-424,-378],[-467,-588],[-232,-704],[-235,-317],[-359,-165],[-262,-601],[-149,-692],[-261,-234],[8,-3850],[7,-3850],[64,-1276]],[[312722,287651],[2259,2191],[919,1360],[345,430],[383,-21],[466,267],[488,1342],[543,744],[440,433],[1442,1856],[579,569],[849,675],[359,504],[917,842],[1550,1776],[714,905],[792,1220],[530,753],[218,384],[549,674],[453,663],[905,1773],[248,552],[22,745],[-149,448]],[[337935,331712],[282,-1495],[202,-1076],[310,-1646],[15,-79],[653,-3469],[35,-186],[57,-302],[37,-194],[85,680],[1171,9365],[1439,10923],[1036,7863],[154,88],[233,282],[289,175],[312,-11],[248,199],[741,1031],[100,622],[-84,544],[345,373],[387,-213],[405,-61],[79,57],[344,248],[417,-14],[488,-454],[402,-584],[657,-505],[156,35],[178,456],[332,289],[146,350],[525,695],[396,401],[245,202],[242,503],[63,417],[105,390],[186,183],[283,95],[69,308],[466,378],[1,428],[71,452],[162,180],[-402,461],[-235,-13],[-252,45],[-340,443],[40,627],[101,466],[319,113],[198,297],[253,79],[305,170],[283,317],[366,194],[318,89],[310,136],[149,87],[220,213],[127,42],[260,-56],[149,305],[233,184],[86,127],[84,126],[253,189],[122,241]],[[355347,364517],[107,-155],[81,-89],[38,-42],[43,-48],[4058,-2912],[435,-312],[1051,-755],[1298,-933],[1742,-1251],[14,-10],[12,-9],[940,-675],[234,-169],[67,-48],[471,-338],[1265,-909],[739,-531],[88,-112],[6,-8],[11,-13],[1,-2],[10,-13],[27,-34],[52,-47],[52,-41],[38,-30],[6,-5],[19,-15],[225,-212],[6,-5],[11,-10],[12,-9],[111,-92],[47,-29],[109,-43],[29,-24],[58,-57],[99,-101],[55,-42],[53,-45],[24,-28],[3,-15],[0,-2],[-3,-26],[-14,-34],[-69,-91],[-8,-9],[-2,-4],[-33,-42],[-54,-71],[-70,-126],[-122,-160],[-64,-50],[-16,-13],[-2,-1],[-43,-36],[-44,-36],[-74,-82],[-104,-133],[-74,-97],[-81,-97],[-37,-44],[-73,-104],[-46,-102],[-10,-51],[-1,-23],[0,-23],[18,-81],[16,-59],[13,-32],[12,-33],[27,-210],[1,-9],[6,-116],[-16,-73],[32,-116],[47,-90],[48,-90],[54,-112],[59,-105],[12,-23],[57,-112],[19,-89],[20,-90],[1,-87],[-5,-67],[22,-50],[26,-24],[26,-25],[43,-32],[15,-34],[7,-19],[32,-50],[16,-56],[43,-30],[58,-24],[65,-48],[36,-42],[42,-80],[30,-70],[26,-90],[32,-104],[39,-88],[27,-53],[2,-4],[45,-71],[31,-49],[31,-50],[5,-3],[32,-26],[37,-4],[46,9],[9,2],[27,8],[23,32],[20,67],[1,2],[17,64],[13,21],[31,6],[29,-6],[35,-1],[38,-4],[16,-9],[7,-20],[1,-12],[0,-2],[2,-14],[-6,-15],[-10,-23],[-21,-23],[-7,-9],[-47,-21],[-35,-52],[-39,-74],[-35,-110],[-14,-50],[18,-42],[54,-58],[3,-2],[43,-41],[30,-59],[-35,-65],[4,-80],[30,-138],[44,-155],[2,-5],[38,-78],[46,-47],[41,-75],[37,-93],[-16,-64],[-20,-72],[17,-30],[37,-13],[20,-8],[11,-5],[9,-24],[-31,-70],[-9,-42],[37,-11],[53,37],[42,91],[41,53],[44,38],[42,-22],[41,-40],[9,-45],[-16,-93],[4,-61],[-27,-54],[-46,0],[-21,-37],[-21,-80],[-55,-101],[-44,-78],[-35,-97],[-1,-1],[-35,-107],[-19,-101],[17,-32],[50,3],[5,-19],[-35,-80],[-39,-67],[-32,-111],[-37,-107],[-41,-96],[-46,-53],[-4,-6],[-50,-64],[-50,-109],[-44,-61],[-37,-35],[-42,-18],[-98,24],[-49,21],[-37,32],[-51,64],[-53,21],[-97,-5],[-85,24],[-62,-22],[-44,-13],[-13,-37],[-35,-208],[-23,-213],[-25,-223],[-42,-431],[-28,-283],[-14,-202],[38,-203],[113,-160],[103,-128],[113,-261],[141,-165],[152,-133],[82,-122],[50,-106],[81,-245],[78,-315],[67,-224],[64,-117],[56,-101],[64,-144],[247,32],[113,-85],[90,-229],[140,-27],[121,52],[126,102],[106,104],[72,24],[504,794],[162,123],[163,32],[127,11],[152,95],[516,373],[374,146],[219,66],[202,-7],[192,-154],[435,-187],[349,-32],[350,125],[154,97],[168,144],[320,195],[277,160],[245,93],[250,-33],[219,-57],[465,-195],[225,-40],[541,99],[314,115],[55,27],[135,66],[147,193],[45,88],[58,113],[11,22],[125,230],[19,35],[106,195],[120,88],[247,181],[31,18],[287,167],[220,111],[168,167],[194,86],[159,71],[77,53],[29,19],[29,20],[12,11],[105,103],[31,29],[9,12],[100,132],[80,65],[144,116],[33,9],[419,111],[104,11],[104,11],[113,47],[58,24],[213,91],[15,6],[15,7],[213,90],[349,144],[763,315],[243,100],[13,12],[177,160],[79,74],[10,11],[11,10],[247,235],[376,366],[102,207],[7,15],[57,77],[23,31],[34,46],[80,175],[27,58],[37,79],[4,10],[16,35],[46,99],[57,104],[10,18],[107,181],[80,134],[34,55],[83,133],[6,9],[29,47],[64,35],[44,1],[112,4],[168,-54],[23,-8],[72,-6],[125,-10],[50,63],[24,99],[-158,415],[-19,196],[23,213],[57,122],[95,29],[83,-29],[69,-100],[135,-119],[107,-21],[259,68],[248,169]],[[726438,777619],[-26,-948],[25,-490],[44,-498],[0,-238],[-59,-215],[-113,-275],[-162,-260],[-64,-208],[-29,-223],[-58,-462],[-58,-254],[-36,-175],[-227,-528],[-100,-282],[-105,-309],[-47,-207],[-6,-85],[-10,-173],[16,-276],[-6,-280],[3,-301],[-55,-219],[-53,-175],[-34,-170],[-27,-199],[-39,-151],[-18,-257],[-43,-279],[-41,-177],[-53,-224],[-12,-100],[9,-186],[63,-150],[90,-143],[73,-76],[108,-182],[172,-203],[94,-147],[132,-206],[130,-215],[130,-214],[150,-249],[169,-279],[139,-203],[229,-337],[190,-250],[152,-215],[172,-266],[147,-258],[150,-222],[174,-48],[81,-83],[95,-161],[3,-10],[60,-214],[-16,-183],[-42,-222],[-84,-254],[-42,-326],[-95,-230],[-163,-199],[-236,-460],[-200,-320],[-145,-182],[-110,-191],[-34,-305],[-12,-187],[32,-193],[88,-152],[76,-139],[92,-260],[63,-103],[138,-30],[72,-54],[-56,-151],[152,-170],[141,-72],[32,-151],[-16,-236],[-60,-187],[-165,-164],[-152,-103],[-161,-157],[-148,-151],[-144,-133],[-177,-231],[-152,-350],[-152,-350],[-68,-351],[-133,-236],[-140,-193],[-206,-185],[-267,-47],[-179,-71],[-121,-96],[-209,-345],[-93,-213],[-154,-351],[-206,-470],[-106,-614],[-90,-619],[-110,-405],[-90,-310],[-116,-381],[-84,-175],[-47,-214],[-74,-267],[-26,-424],[-16,-460],[-66,-400],[-129,-410],[-140,-497],[-108,-332],[-88,-327],[-117,-139],[-291,-44],[-370,-119],[-187,-163],[-187,-163],[-183,-218],[-140,-206],[-40,-193],[-69,-309],[-5,-259],[57,-204],[53,-184],[-36,-362],[-91,-155],[-90,-154],[-108,-157],[-71,-261],[79,-404],[-5,-154],[-23,-142],[-119,-175],[-186,-176],[-215,-302],[-93,-89],[-173,-298],[-124,-266],[-124,-398],[-60,-443],[14,-528]],[[720311,742810],[-211,-256],[-107,-108],[-224,-94],[-300,-41],[-265,-79],[-337,-107],[-99,-35],[-81,-47],[-117,-146],[-164,-291],[-164,-436],[-81,-209],[-173,-351],[-200,-376],[-287,-454],[-220,-351],[-255,-304],[-215,-175],[-227,-358],[-301,-756],[-143,-223],[-188,-155],[-271,-170],[-160,-124],[-178,-188],[-100,-105],[-114,-8],[-175,-83],[-76,-94],[-109,-165],[-57,-103],[-144,-39],[-89,51],[-62,103],[-71,90],[-93,182],[-73,170],[-87,199],[-106,157],[-94,153],[-138,99],[-246,94],[-174,35],[-180,4],[-177,-98],[-157,-185],[-117,-137],[-71,-189],[-57,-110],[-81,-20],[-55,-59],[11,-75],[66,-79],[10,-102],[-38,-100],[-38,-100],[-43,-81],[-43,-81],[-86,-43],[-123,32],[-104,-28],[-112,-100],[-89,-128],[-57,-104],[-84,-152],[-96,-177],[-86,-148],[-141,-174],[-86,-134],[-55,-118],[-138,-135],[-103,-19],[-103,-19],[-164,20],[-138,157],[-109,185],[-77,130],[-187,194],[-120,124],[-248,224],[-193,103],[-115,32],[-139,-3],[-181,-35],[-102,-49],[-120,-99],[-70,-94],[-94,-55],[-104,-16],[-146,47],[-115,32],[-84,-19],[-70,-87],[-101,-87],[-153,-23],[-192,-56],[-166,-66],[-165,-87],[-46,-47],[-74,-75],[-10,-145],[10,-142],[1,-114],[2,-146],[29,-236],[28,-237],[-13,-93],[-85,-210],[-37,-168],[-16,-357],[-25,-83],[-21,-67],[-47,-51],[-42,-35],[-32,-36],[-15,-98],[-23,-143],[-45,-293],[-84,-170],[-177,-23],[-94,-40],[-57,-126],[-31,-165],[-110,-503],[-182,-464],[-99,-103],[-167,-173],[-136,-133],[-120,-205],[-109,-228],[-77,-163],[-116,-160],[-101,-139],[-35,-34],[-61,-59],[-69,-63],[-77,-57],[-58,-69],[-59,-104],[-130,-269],[-71,-153],[-128,-189],[-83,-134],[-90,-147],[-45,-89],[-40,-108],[-41,-112],[-54,-128],[-53,-82],[-40,-43],[-40,-43],[-36,-30],[-47,-29],[-44,-20],[-54,-33],[-55,-40],[-42,-28],[-34,-36],[-32,-38],[-59,-38],[-46,-31],[-53,-41],[-30,-17],[-49,-27],[-52,-56],[-74,-47],[-44,-40],[-32,-27],[-51,-27],[-35,-5],[-60,14],[-35,18],[-25,-4],[-22,2],[-41,2],[-56,0],[-47,0],[-49,3],[-34,16],[-68,3],[-73,26],[-20,65],[-15,42],[-43,10],[-60,68],[-40,88],[-30,96],[-35,122],[-36,26],[-60,27],[-77,84],[-105,132],[-71,88],[-23,66],[-30,75],[-37,22],[-40,-3],[-16,-49],[-27,-15],[-62,33],[-87,53],[-95,30],[-46,4],[-138,11],[-82,56],[-82,57],[-77,64],[-78,49],[-47,37],[-70,50],[-52,14],[-45,22],[-55,15],[-59,-22],[-46,-8],[-66,-48],[-68,7],[-79,-34],[-72,-30],[-38,-37],[-40,-38],[-64,-56],[-87,-33],[-13,18],[-32,45],[-43,-15],[-57,15],[-45,-26],[-79,-38],[-45,-85],[-39,-82],[-54,20],[-15065,721],[-1323,64],[-7637,6042],[-1357,1074],[-10272,8128]],[[664414,744362],[213,63],[166,76],[134,126],[65,126],[-1,209],[-2,112],[-29,181],[-42,286],[-56,356],[-55,300],[-19,307],[193,1434],[2,311],[-14,230],[-14,244],[-60,230],[-102,231],[-106,139],[-114,165],[-215,345],[-46,147],[-47,258],[15,837],[27,551],[24,491],[46,151],[134,133],[176,51],[87,148],[75,205],[32,377],[5,412],[46,230],[74,189],[115,160],[121,154],[148,132],[795,831],[250,202],[194,153],[149,84],[111,42],[97,-21],[171,-91],[64,-52],[51,-45],[193,-282],[136,-338],[29,-306],[-78,-334],[13,-177],[92,-133],[432,-391],[260,-178],[277,-318],[46,-86],[-1,-81],[-143,-665],[20,-132],[101,-166],[88,-67],[144,-26],[192,75],[156,40],[191,9],[156,-49],[183,-35],[392,-54],[167,31],[127,72],[138,115],[151,169],[120,262],[65,155],[80,240],[58,85],[64,25],[2221,308],[265,89],[289,195],[294,329],[224,328],[206,516],[112,399],[77,436],[41,573],[18,399],[17,338],[27,360],[6,195],[-15,222],[-41,187],[-39,124],[-141,351],[-79,116],[-136,133],[-121,58],[-82,31],[-88,40],[-109,0],[-97,-22],[-159,-54],[-124,-22],[-183,-13],[-147,40],[-108,82],[-337,326],[-156,129],[-150,31],[-171,-13],[-197,-106],[-165,-103],[-144,9],[-203,89],[-267,163],[-95,59],[-95,155],[-241,634],[-69,244],[-16,153],[8,129],[21,129],[53,199],[65,120],[59,76],[85,58],[104,-12],[124,-24],[120,56],[134,106],[407,864],[92,187],[80,106],[125,54],[194,134],[163,135],[140,168],[317,405],[131,178],[121,150],[196,258],[29,57],[91,180],[42,146],[-18,142],[-84,195],[-115,195],[-7,12],[-59,90],[-177,270],[-70,324],[15,217],[42,193],[48,67],[134,184],[256,231],[124,101],[160,140],[654,497],[154,71],[501,-38],[263,58],[274,163],[516,774],[72,200],[-229,1102],[-6,272],[21,231],[37,200],[244,604],[-45,328],[-249,323],[-163,149],[-73,106],[-34,163],[-88,199],[-12,181],[54,194],[6,188],[-60,357],[-3,118],[17,51],[72,42],[142,47],[158,67],[150,121],[93,127],[65,116],[37,113],[15,89],[2,117],[17,148],[-23,82],[-16,87],[-64,63],[-1006,491],[-204,169],[-179,164],[-146,216],[-65,111],[-70,169],[-77,289],[-54,376],[5,202],[44,280],[110,279],[118,246],[51,67],[309,401],[339,366],[285,170],[705,476],[503,221],[166,74],[127,110],[118,74],[140,22],[189,49]],[[785671,914513],[4,-78],[5,-78],[-11,-116],[-11,-116],[-69,-221],[-130,-148],[-348,-156],[-26,-1042],[-228,-591],[213,-621],[-126,-334],[-426,-120],[-147,-84],[-204,-219],[-108,-142],[-276,-700],[-41,-192],[169,-1782],[-164,-610],[-520,-823],[-587,-1490],[-36,-244],[15,-764],[-64,-403],[-205,-339],[-269,-996],[-517,-1493],[-76,-145],[-403,-213],[-367,-466],[-95,-393],[-101,-419],[-258,-721],[-423,-840],[-193,-221],[-5,-6],[-715,-667],[-544,-961],[-637,-1786],[-358,-624],[-572,-1387],[-114,-1202],[-390,-996],[-69,-1207],[-35,-168],[-404,-203],[-379,-53],[-186,-72],[-673,-443],[-303,-345],[-275,-40],[-869,413],[-501,5],[-191,-106],[20,-182],[261,-200],[700,-8],[228,-167],[-9,-202],[-368,-312],[-117,-734],[196,-495],[218,-256],[143,-91],[196,-283],[51,-164],[-134,-331],[-446,-379],[-36,-191],[0,-767],[164,-743],[260,-402],[242,278],[508,466],[122,61],[550,31],[373,278],[-29,-371],[-238,-270],[-197,-526],[-7,-312],[62,-190],[310,-240],[446,48],[106,-361],[-99,-2268]],[[714675,897527],[-214,196],[-76,58],[-69,37],[-62,-6],[-61,-53],[-61,-53],[-108,-53],[-103,-5],[-140,82],[-112,140],[-70,134],[3,109],[61,185],[12,164],[-9,236],[-77,212],[-47,104],[-43,142],[-21,127],[-33,210],[-22,246],[-3,212],[50,351]],[[713470,900302],[412,-141],[53,-18],[253,-81],[209,-47],[316,12],[337,3],[102,1],[4,-1],[391,-64],[211,-9],[193,36],[283,145],[290,98],[198,40],[129,17],[124,-62],[129,-93],[139,-238],[81,-148],[96,-222],[126,-172],[144,-25],[190,89],[140,102],[80,38],[79,51],[86,6],[88,58],[89,57],[144,159],[218,258],[217,252],[173,159],[126,109],[186,108],[152,38],[207,58],[173,31],[241,-31],[207,-122],[330,-178],[270,-191],[295,-175],[292,-88],[418,70],[149,155],[502,793],[156,123],[221,98],[197,24],[236,-51],[161,-57],[194,-217],[78,22],[125,163],[110,172],[139,166],[127,153],[153,119],[248,142],[241,38],[371,108],[347,141],[363,165],[177,70],[245,128],[245,89],[418,70],[224,76],[507,101],[106,33],[229,72],[157,20],[96,5],[96,5],[517,57],[49,-105],[29,-86],[53,-100],[20,-76],[41,-65],[35,-46],[18,-5],[17,13],[23,72],[16,46],[13,67],[27,68],[21,36],[13,16],[26,33],[12,39],[18,62],[14,72],[24,89],[17,39],[40,27],[34,31],[42,49],[22,53],[22,82],[15,48],[24,37],[15,8],[47,-15],[38,-25],[41,3],[86,90],[46,38],[30,57],[12,40],[18,29],[19,30],[27,11],[23,-15],[17,-13],[42,-40],[37,-7],[58,80],[37,55],[15,51],[0,83],[13,53],[33,31],[33,-8],[27,-36],[5,-42],[-12,-57],[-7,-31],[-7,-38],[11,-35],[37,-26],[36,-28],[40,-43],[23,-29],[46,-35],[74,-97],[46,-33],[41,-44],[50,-62],[23,-20],[18,2],[19,8],[39,17],[26,13],[35,-18],[41,-70],[56,-76],[52,-61],[27,-80],[23,-75],[62,-92],[87,-12],[64,29],[55,24],[35,37],[34,50],[21,39],[47,109],[22,51],[18,25],[25,27],[44,49],[35,46],[25,53],[5,29],[0,18],[-2,22],[-2,16],[-2,8],[4,19],[6,11],[13,27],[9,36],[23,50],[27,16],[23,21],[10,33],[1,29],[-3,28],[-3,41],[5,10],[11,5],[19,26],[1,32],[-4,32],[-4,18],[-4,19],[4,21],[4,20],[16,8],[25,-5],[36,4],[12,19],[12,20],[21,48],[16,64],[41,50],[67,41],[79,71],[89,79],[160,166],[44,0],[36,-13],[359,-370],[125,-101],[76,-61],[50,-13],[51,16],[74,67],[63,61],[21,54],[0,67],[-19,95],[-91,172],[-76,140],[-44,134],[-23,160],[8,108],[28,130],[27,74],[36,38],[72,3],[84,-41],[45,-42],[61,-130],[55,-86],[78,-54],[40,-20],[32,23],[70,67],[67,22],[78,6],[55,-9],[49,-32],[8,-30],[6,-50],[-27,-41],[-38,-77],[-34,-108],[-23,-105],[-4,-83],[9,-103],[-13,-69],[-45,-60],[-25,-67],[-4,-96],[10,-124],[19,-140],[21,-67],[43,-42],[46,1],[27,19],[37,5],[63,-60],[74,-118],[327,1042],[127,468],[120,446],[23,239],[-12,277],[-112,424],[-72,293],[-59,217],[-23,121],[-7,108],[28,153],[89,153],[35,61],[119,183],[90,218],[45,127],[145,462],[59,258],[34,255],[7,179],[-38,172],[-66,210],[-17,175],[4,178],[9,112],[-20,162],[-33,80],[-159,248],[-124,246],[-224,401],[-110,179],[-180,368],[-204,460],[-118,223],[-19,102],[-19,102],[19,93],[25,127],[53,264],[228,796],[101,332],[114,414],[182,637],[55,357],[10,274],[46,423],[104,386],[-25,388],[-51,319],[-32,208],[-58,230],[-35,74],[-35,74],[-72,96],[-42,62],[-42,62],[-109,355],[-60,423],[-21,627],[-275,1172],[-68,200],[-113,424],[-43,134],[-8,217],[42,197],[85,147],[152,153],[169,38],[206,-26],[300,-121],[141,-70],[235,-90],[317,-31],[194,77],[313,184],[186,153],[125,45],[152,40],[154,-33],[181,-39],[93,26],[144,299],[219,644],[12,170],[-63,307],[-21,147],[30,127],[144,198],[223,178],[195,70],[244,-15],[115,22],[98,97],[392,350],[135,75],[176,69],[200,33],[177,70],[173,149],[144,87],[97,38],[143,-51],[76,-138],[84,-174],[136,-223],[85,-191],[99,-232],[61,-99],[80,-13],[148,6],[180,0],[141,0],[1283,10],[18,1],[9,0],[60,0],[79,1],[204,1],[3706,30],[200,1],[1517,-16],[-327,533],[-160,382],[-26,166],[-8,191],[67,236],[43,216],[-21,193],[-81,304],[-185,344],[-79,238],[-40,195],[9,217],[50,376],[72,287],[97,363],[241,764],[182,618],[33,223],[7,224],[-61,299],[-119,433],[-55,261],[0,70],[0,70],[20,191],[52,134],[72,96],[127,140],[232,140],[351,121],[278,51],[275,13],[198,-32],[279,-70],[241,-153],[135,-146],[114,-185],[93,-242],[55,-300],[21,-146],[-21,-198],[-146,-663],[871,-1555],[137,137],[72,108],[34,95],[23,90],[9,73],[10,48],[32,35],[32,-7],[38,58],[23,28],[42,64],[19,83],[15,92],[19,83],[27,67],[26,57],[52,70],[47,16],[32,48],[8,57],[29,-1],[45,-40],[44,19],[45,7],[48,-42],[32,3],[84,-32],[135,-12],[129,-16],[45,38],[44,6],[49,13],[4,80],[38,44],[63,35],[40,61],[49,64],[80,54],[23,44],[-27,109],[-25,67],[2,51],[19,36],[-7,50],[-6,73],[-13,76],[-6,51],[34,51],[-28,61],[30,38],[2,89],[-10,65],[-30,43],[-34,58],[-34,70],[-15,19],[13,73],[-6,81],[-36,-4],[-49,35],[-8,114],[-25,71],[0,121],[12,105],[11,86],[52,91],[72,103],[64,105],[59,67],[23,26],[32,25],[31,29],[34,6],[47,-25],[61,-13],[49,-7],[73,48],[70,23],[70,41],[38,65],[54,92],[69,118],[99,18],[50,48],[45,44],[-1,50],[8,68],[11,19],[20,39],[32,156],[10,48],[28,44],[18,-3],[62,0],[6,57],[21,64],[55,13],[63,3],[61,73],[45,77],[19,102],[-20,77],[-58,120],[-108,67],[-38,67],[-59,70],[-108,118],[161,291],[126,117],[115,48],[1482,136],[355,58],[342,51],[310,118],[229,108],[204,107],[170,129],[469,385]],[[757513,936291],[-73,-718],[-81,-441],[-106,-361],[-56,-178],[-57,-185],[-22,-161],[-71,-1154],[-70,-945],[-22,-410],[-64,-196],[-130,-238],[-128,-104],[-150,-44],[-133,-12],[-98,-3],[-57,-11],[-34,-52],[-104,-260],[-312,-1251],[-15,-115],[7,-104],[26,-114],[25,-113],[25,-112],[60,-92],[150,-134],[172,-141],[74,-81],[49,-201],[25,-208],[5,-623],[-5,-728],[64,-297],[64,-141],[225,-367],[536,-624],[351,-323],[147,-148],[99,-105],[59,-185],[84,-401],[128,-453],[207,-609],[187,-394],[299,-413],[139,-112],[216,-37],[241,-2],[256,52],[281,112],[413,133],[350,15],[275,-37],[168,-89],[147,-164],[158,-363],[323,-1166],[3,-9],[210,-501],[35,-84],[236,-423],[84,-86],[83,-85],[207,-82],[94,15],[216,82],[561,356],[497,275],[227,89],[152,-15],[202,-123],[158,-189],[211,-311],[109,-112],[113,-59],[187,-15],[197,15],[270,111],[965,438],[364,149],[202,29],[251,-113],[182,-95],[131,-77],[130,-130],[128,-119],[99,-77],[99,-76],[221,-52],[99,34],[191,126],[271,268],[115,137],[140,93],[173,59],[197,15],[236,148],[138,127],[137,178],[158,44],[226,8],[79,81],[79,82],[64,112],[34,289],[-39,431],[-39,430],[-11,285],[-57,288],[-14,278],[18,122],[64,83],[143,119],[231,192],[103,215],[49,312],[-15,341],[-128,401],[29,408],[-4,253],[-25,200],[-93,112],[-79,102],[-39,128],[-19,113],[45,281],[157,371],[395,661],[229,245],[162,118],[173,97],[114,-37],[384,-446],[423,-312],[210,-107],[253,-130],[265,-45],[177,-15],[241,60],[251,15],[344,15],[53,10],[52,10],[106,20],[16,-2],[216,-31],[208,-156],[900,-949],[117,53],[157,74],[314,148],[-17,88],[10,53],[21,36],[18,31],[32,6],[26,-15],[68,-21],[51,12],[21,24],[1,31],[19,21],[27,-10],[12,17],[4,39],[-19,25],[-6,27],[11,30],[24,16],[18,0],[71,31],[42,47],[23,97],[27,178],[34,126],[39,108],[99,150],[4,47],[-10,45],[7,31],[40,32],[15,22],[10,28],[4,61],[7,43],[22,71],[13,30],[28,58],[52,134],[1233,-318],[120,-170],[136,-101],[649,-185],[190,-82],[234,-160],[206,-193],[271,-349],[99,-155],[68,-186],[64,-371],[35,-253],[54,-460],[88,-663],[138,-473],[104,-253],[113,-141],[340,-178],[83,22],[94,75],[374,809],[128,104],[177,30],[177,52],[133,0],[74,-75],[98,-126],[89,-126],[39,-201],[25,-215],[-5,-230],[-74,-267],[-133,-164],[-157,-81],[-171,30],[-124,-93],[-35,-130],[-96,-535],[-34,-230],[-55,-171],[-71,-70],[-157,-75],[-120,-114],[-63,-90],[-58,-114],[-168,-558],[-103,-401],[-239,-946],[8,-120],[31,-81],[65,-120],[47,-78],[53,-83],[43,-32],[194,-148],[155,-119],[119,-63],[100,-56],[86,-126],[138,-278],[145,-294],[123,-334],[82,-148],[140,-156],[224,-178],[223,-133],[99,-57],[40,-70],[29,-112],[106,-544],[47,-102],[58,-50],[116,-43],[69,-26],[30,-20],[14,-53],[20,-94],[19,-130],[14,-68],[18,-33],[36,-12],[57,-14],[102,-15],[145,7],[103,-2],[94,6],[121,0],[119,-37],[160,-89],[111,-86],[127,-78],[87,-79],[78,-80],[73,-100],[27,-98]],[[459339,147141],[195,-176],[262,102],[203,33],[30,-236],[15,-118],[14,-118],[-265,-477],[-45,-80],[-331,-147],[-369,-220],[-428,-132],[-515,279],[-19,89],[-58,277],[48,55],[49,55],[97,110],[525,337],[592,367]],[[464757,148211],[14,-147],[-48,-205],[-49,-205],[-311,-250],[-658,-350],[-304,-163],[-185,88],[-29,206],[175,234],[-68,176],[-22,193],[103,226],[104,226],[141,-15],[141,-14],[155,102],[80,16],[81,17],[160,32],[161,32],[51,10],[50,10],[122,-36],[121,-37],[15,-146]],[[466692,148974],[-75,-16],[-14,110],[-15,110],[117,491],[29,123],[29,123],[58,245],[78,61],[78,61],[82,5],[83,5],[44,-125],[43,-124],[-58,-425],[-87,-308],[-22,-35],[-22,-35],[-71,-111],[-70,-112],[-103,-22],[-104,-21]],[[454646,158163],[-85,-66],[-85,-66],[-63,103],[-22,-11],[-70,-33],[-141,-124],[-102,-44],[-131,-52],[-127,103],[2,35],[8,236],[43,66],[42,66],[43,66],[42,66],[60,58],[179,173],[126,17],[126,16],[116,-44],[6,-76],[19,-225],[14,-69],[15,-70],[-7,-62],[-8,-63]],[[451238,160088],[40,-43],[40,-42],[25,-48],[24,-47],[-75,-30],[-76,-29],[-53,51],[-54,52],[-17,0],[-158,7],[5,28],[5,27],[10,55],[16,3],[113,22],[33,-13],[32,-12],[53,27],[20,10],[17,-18]],[[450216,189600],[33,-17],[73,3],[73,3],[71,-43],[24,-15],[15,-75],[16,-75],[26,-50],[27,-50],[-10,-30],[-9,-31],[-46,-156],[-21,-80],[-21,-81],[-67,-57],[-67,-58],[-191,-90],[-30,-14],[-145,64],[-164,172],[-112,58],[-83,115],[-94,46],[-31,15],[-88,-56],[-89,-57],[8,-138],[-179,-11],[-16,63],[-120,301],[-96,241],[-97,241],[111,52],[50,5],[263,24],[130,14],[130,15],[29,-10],[49,-15],[48,-16],[109,-34],[108,-35],[199,-46],[184,-92]],[[450872,195579],[-434,-1470],[-21,-68],[-45,-127],[-77,-23],[-76,-23],[-88,41],[-88,40],[-123,25],[-380,79],[-402,84],[-206,42],[-187,52],[-187,52],[-42,-58],[-4,-132],[-46,-179],[0,-196],[-71,-152],[-39,-84],[-73,-71],[-168,-165],[-219,-240],[-75,-82],[-73,-16],[-74,-15],[-247,-53],[-109,-22],[-16,-4],[-20,114],[-32,179],[-8,45],[35,83],[136,318],[22,58],[94,243],[33,86],[60,123],[121,247],[92,150],[53,86],[96,135],[29,11],[51,19],[21,7],[45,-14],[15,-5],[52,-16],[31,-10],[12,-15],[50,-60],[56,-67],[29,-35],[19,-23],[19,-23],[38,-46],[54,-127],[45,64],[-12,26],[-60,123],[-61,121],[23,45],[49,163],[26,36],[25,37],[79,13],[63,52],[21,17],[12,39],[11,40],[27,-2],[26,-2],[96,92],[-6,61],[-6,60],[29,68],[59,139],[103,168],[138,92],[80,28],[107,47],[84,5],[34,-69],[12,-60],[11,-61],[61,-75],[56,-11],[55,-12],[443,81],[27,8],[221,67],[66,13],[22,4],[40,69],[40,69],[20,3],[114,15],[21,19],[78,73],[61,17],[29,-17],[28,-17],[14,-41],[13,-40],[-50,-231],[-7,-34]],[[477101,150408],[-67,-19],[-82,-46],[-99,-24],[-115,-5],[-114,3],[-126,17],[-72,8],[-76,21],[-214,21],[-323,69],[-229,73],[-110,147],[-75,63],[-97,8],[-95,-39],[-142,-3],[-48,35],[-48,34],[-147,66],[-82,47],[-81,46],[-108,61],[-64,6],[-77,78],[-51,26],[-2,-65],[23,-109],[22,-109],[17,-145],[-3,-180],[-42,-164],[21,-76],[5,-74],[5,-75],[-14,-202],[26,-146],[24,-101],[13,-106],[-12,-79],[-22,-45],[-21,-46],[-4,-61],[45,-82],[18,-41],[12,-72],[-20,-28],[-23,-31],[-31,-15],[-31,-15],[-237,-71],[-149,-30],[-150,-30],[-200,-60],[-142,-13],[-111,25],[-59,35],[-37,46],[-36,46],[-59,65],[-109,92],[-48,45],[-54,121],[-16,74],[-58,260],[-22,230],[5,216],[-20,260],[-20,125],[9,141],[54,76],[54,76],[14,44],[-92,59],[-92,59],[-80,38],[-295,144],[-159,58],[-133,49],[-131,29],[-174,42],[-347,64],[-45,0],[-85,0],[-73,-68],[-11,-13],[-25,-29],[-24,-29],[20,-45],[21,-45],[-3,-21],[-10,-92],[-32,-55],[-9,-16],[-90,-13],[-11,-8],[-11,-7],[-12,-62],[-29,-7],[-29,-6],[-32,-52],[-18,-10],[-29,-17],[-90,4],[-9,10],[-77,74],[-77,117],[-18,51],[-57,162],[-66,106],[-168,-107],[-10,-6],[-43,-103],[-4,-10],[-70,-32],[1,-15],[7,-58],[-26,-53],[16,-89],[-4,-82],[-1,-23],[-83,-32],[-26,8],[-83,27],[-19,-87],[-9,-43],[-9,-44],[-15,-13],[-32,-26],[-26,-53],[-68,-40],[-54,25],[-21,-12],[-34,-4],[-60,-16],[-30,29],[-28,68],[-7,-6],[-51,-46],[-143,-239],[-15,-328],[0,-11],[-88,-161],[-14,-16],[-95,-104],[-229,-361],[-166,-126],[-10,-7],[-203,-96],[-22,-10],[-100,3],[-75,83],[-7,7],[-21,58],[-71,-19],[-53,3],[-67,-132],[-5,-10],[-108,-194],[-104,-33],[-18,-5],[-22,2],[-53,4],[-146,-206],[-124,-39],[-66,-113],[-54,-10],[7,97],[-56,3],[-23,32],[4,172],[2,74],[-16,-2],[-61,-8],[-71,61],[-13,143],[-2,358],[5,28],[74,463],[53,198],[4,16],[31,115],[86,110],[45,49],[154,25],[56,71],[7,38],[8,37],[32,9],[113,-6],[107,58],[182,330],[139,316],[174,252],[154,126],[165,61],[11,57],[63,334],[14,71],[-45,407],[-18,171],[-5,55],[-54,287],[-11,36],[-69,233],[-83,181],[-89,191],[-128,279],[-41,97],[-65,153],[-87,160],[-105,191],[-33,56],[-72,123],[-92,140],[-56,85],[-98,118],[-22,26],[-140,154],[-130,118],[-143,123],[-158,121],[-88,59],[-88,60],[-163,97],[-244,126],[-135,72],[-136,72],[-350,137],[-317,118],[-413,128],[-507,114],[-662,207],[-315,104],[-92,31],[-92,28],[-276,67],[-220,44],[-130,-16],[-101,39],[-90,45],[-40,141],[13,121],[83,91],[-40,155],[-39,91],[-48,56],[-46,37],[-93,-24],[-93,-25],[-73,0],[-33,13],[-7,36],[5,49],[-34,2],[-21,0],[-22,0],[-27,45],[-16,62],[6,16],[17,47],[29,51],[-12,46],[-38,4],[-38,3],[-126,63],[-188,61],[-377,97],[-51,29],[-51,29],[-151,0],[-270,46],[-84,15],[-355,58],[-50,37],[-40,10],[-41,4],[-113,10],[-177,17],[-36,10],[-91,67],[-224,1],[-67,1],[-76,43],[-322,12],[-163,64],[-68,4],[-68,3],[-136,7],[-259,84],[-328,52],[-113,18],[-114,16],[-94,42],[-154,9],[-157,13],[-435,43],[-91,8],[-90,15],[-154,37],[-135,3],[-267,4],[-72,5],[-40,2],[-90,6],[-22,1],[-58,-24],[-57,-25],[-40,-18],[-36,-41],[-15,-17],[-4,-83],[-8,-45],[-51,-82],[-50,-163],[-5,-17],[-157,-37],[-77,-50],[-176,-114],[-67,-23],[-8,-2],[-39,-11],[-28,-8],[-15,36],[-39,87],[-16,38],[12,65],[6,30],[6,32],[7,32],[11,60],[56,9],[21,3],[21,4],[43,6],[2,47],[2,47],[2,66],[1,29],[52,-1],[30,-1],[63,0],[16,73],[15,75],[11,53],[-22,40],[-46,82],[-4,9],[-25,44],[-31,56],[-9,16],[-23,41],[-6,10],[-25,20],[-14,11],[-33,27],[-75,59],[-22,18],[-49,40],[-48,41],[-87,-1],[-74,0],[-124,-1],[-17,0],[-47,-7],[-62,-10],[-108,-97],[-24,-23],[-79,-73],[-15,-25],[-39,-69],[-19,-34],[-20,-34],[-60,-41],[-25,-17],[-13,-27],[-21,-42],[-21,-43],[-66,-49],[-13,-9],[-25,-3],[-70,-10],[-126,-17],[-30,7],[-30,7],[-59,14],[-82,-8],[-83,-9],[-13,0],[-75,-4],[-64,37],[-28,26],[1,29],[2,29],[-3,39],[24,35],[33,45],[12,18],[13,90],[4,26],[-30,56],[-30,55],[-78,0],[-78,0],[-108,-37],[-109,-37],[-23,-7],[-63,-21],[-76,-24],[-18,-6],[-27,-4],[-95,-14],[-95,-15],[-93,-2],[-166,-4],[-73,-3],[-50,-2],[-33,48],[-33,47],[3,93],[-36,39],[-12,15],[-15,27],[-14,28],[-13,113],[-6,52],[4,34],[13,115],[9,16],[23,41],[38,67],[16,29],[-37,0],[-37,0],[-35,-23],[-41,-27],[-41,-26],[-72,-7],[-84,-7],[-84,-7],[-29,44],[-30,44],[-41,9],[-10,12],[-10,12],[-3,17],[-1,9],[-1,9],[-14,3],[-14,4],[-16,-7],[-16,-7],[-25,-12],[-26,-12],[-17,-39],[-27,-4],[-27,-3],[-40,9],[-40,9],[-56,14],[-57,13],[-4,46],[-12,131],[-2,30],[15,25],[46,73],[20,31],[88,53],[112,5],[55,2],[48,-4],[110,60],[69,37],[80,53],[80,52],[-2,137],[-10,29],[-9,29],[10,35],[-28,235],[-27,234],[-34,169],[-33,168],[-19,45],[-58,136],[-54,126],[-53,126],[-81,77],[-22,43],[-22,42],[-104,194],[-64,62],[-90,-30],[-64,-58],[-96,-42],[-58,-37],[-76,-26],[-97,-23],[-97,-23],[-20,-12],[-40,28],[-29,4],[-29,5],[-116,-67],[-55,-26],[-56,-25],[-141,22],[-125,31],[-201,-26],[-88,47],[-127,91],[-10,93],[27,98],[27,99],[-4,70],[-3,70],[46,104],[46,102],[-125,51],[-49,84],[11,36],[11,37],[92,54],[54,-18],[65,66],[20,28],[20,27],[46,-11],[46,-12],[48,21],[47,-28],[68,-2],[67,19],[66,20],[81,72],[29,50],[28,50],[103,155],[51,51],[51,50],[79,81],[51,81],[48,34],[47,34],[-15,58],[-18,32],[-18,33],[-4,67],[-59,42],[-31,79],[-1,135],[32,117],[33,118],[29,54],[29,55],[-4,88],[-69,185],[-7,18],[-52,140],[-19,49],[-20,50],[-38,61],[-37,62],[-70,107],[-40,31],[-41,32],[-139,51],[-35,-6],[-34,-6],[-117,-186],[-75,-52],[-75,-52],[-51,-24],[-66,-4],[-38,-30],[-67,-112],[-25,-28],[-25,-28],[-48,-35],[-80,-5],[-79,-6],[-77,-20],[-77,-20],[-55,5],[-26,-20],[-25,-20],[-25,-55],[-58,-14],[-30,7],[-30,7],[-45,58],[-36,14],[-37,14],[-126,-53],[-38,-6],[-39,-7],[-236,-32],[-120,-35],[-228,-67],[-222,-12],[-63,-17],[-386,-105],[-80,-22],[-259,-10],[-259,-11],[-57,18],[-174,56],[-63,95],[-67,-42],[-66,-42],[-158,63],[-116,46],[-119,48],[-293,117],[12,109],[12,108],[71,39],[73,72],[168,0],[60,11],[164,31],[84,-159],[161,-52],[126,-32],[133,84],[137,98],[137,97],[222,207],[87,74],[86,73],[114,83],[17,37],[17,37],[212,160],[47,61],[47,60],[39,93],[38,92],[48,76],[48,75],[19,51],[-13,53],[-70,54],[-49,112],[-25,43],[-24,43],[-33,41],[-32,40],[-20,70],[-20,69],[-6,102],[-3,51],[-3,51],[25,143],[134,205],[81,37],[81,37],[144,76],[93,50],[51,27],[156,91],[102,51],[34,39],[32,57],[32,25],[40,15],[42,-9],[18,49],[22,91],[22,92],[-3,141],[-82,30],[-75,40],[-40,31],[-4,33],[-4,34],[11,130],[38,22],[52,19],[27,32],[27,32],[4,58],[3,58],[-6,72],[-7,73],[-29,75],[-91,72],[-78,19],[-66,71],[-67,71],[-17,30],[-16,29],[-11,95],[9,64],[8,65],[71,66],[56,53],[24,57],[24,56],[46,54],[31,25],[-26,49],[-26,50],[-85,52],[-61,57],[-23,23],[-23,24],[-52,78],[-21,110],[13,95],[33,140],[37,56],[37,57],[74,68],[99,48],[127,55],[108,41],[108,41],[171,46],[137,28],[92,9],[79,8],[109,-19],[104,-66],[35,-78],[38,-79],[5,-61],[6,-60],[-1,-185],[3,-132],[-6,-129],[-9,-111],[-34,-147],[-31,-116],[-9,-118],[5,-87],[31,-128],[144,-212],[76,-137],[21,-60],[22,-61],[88,-99],[41,-42],[42,-42],[73,-127],[3,-52],[2,-52],[-9,-105],[-22,-63],[-21,-64],[3,-125],[15,-41],[33,-58],[30,-62],[6,-77],[20,-76],[20,-60],[19,-60],[33,-86],[65,-54],[70,-19],[65,-2],[91,33],[40,36],[26,30],[26,30],[76,79],[19,21],[18,22],[25,49],[-13,45],[-35,69],[-53,78],[-26,40],[-25,39],[-30,30],[17,25],[18,25],[44,47],[25,42],[34,49],[15,25],[15,25],[59,50],[54,36],[27,57],[-16,128],[-10,73],[27,56],[25,8],[24,7],[41,-65],[13,-64],[13,-64],[25,-76],[132,52],[76,51],[113,-112],[101,-145],[101,-145],[33,-60],[16,-31],[16,-30],[-4,-27],[-47,-99],[-49,-78],[-49,-81],[-7,-25],[-8,-24],[-9,-52],[-22,-40],[-47,-46],[-42,-67],[-42,-67],[-41,-165],[-67,-40],[-7,-7],[-54,-53],[-35,-1],[-28,-26],[-24,-59],[-14,-47],[-15,-48],[-12,-63],[5,-30],[5,-30],[11,-61],[36,-100],[36,-86],[37,-86],[38,-84],[38,-85],[52,-104],[55,-101],[59,-107],[61,-103],[54,-59],[54,-60],[68,-12],[57,33],[84,47],[26,46],[26,46],[63,99],[87,93],[101,103],[174,67],[52,-43],[66,-100],[43,-68],[25,-90],[6,-132],[-4,-108],[11,-59],[23,-13],[24,-13],[30,0],[20,28],[4,74],[-5,66],[-19,90],[-13,104],[7,104],[19,112],[34,105],[54,78],[37,50],[37,35],[82,51],[59,7],[60,7],[65,-51],[91,-91],[5,-14],[-8,-254],[-4,-146],[-1,-164],[2,-82],[2,-81],[132,-35],[114,-4],[65,19],[136,55],[56,21],[56,21],[114,72],[91,51],[87,69],[41,34],[41,34],[56,57],[84,89],[24,27],[23,26],[50,40],[17,16],[17,16],[57,109],[56,110],[74,144],[68,103],[23,18],[37,55],[37,55],[84,57],[76,58],[94,65],[59,116],[48,134],[47,133],[51,224],[9,77],[27,60],[24,91],[12,87],[12,87],[21,84],[20,112],[54,121],[19,41],[26,88],[12,42],[44,147],[59,148],[63,175],[26,130],[0,69],[66,172],[65,172],[15,63],[29,113],[58,277],[10,81],[10,89],[6,90],[3,42],[7,58],[7,57],[0,25],[0,24],[-30,29],[-30,29],[-48,40],[-13,30],[-12,29],[-13,214],[-5,74],[0,80],[22,42],[54,44],[82,8],[32,43],[17,70],[17,70],[40,70],[-9,254],[-12,253],[-8,191],[-17,307],[-7,118],[-15,91],[-55,328],[-42,63],[-60,38],[-6,64],[-7,65],[21,52],[4,89],[-17,49],[-18,49],[-21,6],[-21,6],[-26,-41],[-26,-41],[-62,55],[-54,106],[-19,38],[-7,75],[19,14],[19,14],[-65,3],[-23,-89],[-23,-90],[0,-56],[-81,47],[-77,41],[-100,44],[-36,24],[-99,67],[-51,19],[-22,72],[-21,-3],[2,-35],[2,-34],[27,-51],[31,-37],[-8,-41],[-25,11],[-25,12],[-13,40],[-14,41],[-13,69],[-62,0],[-63,0],[-62,12],[-63,13],[-20,79],[-19,78],[-9,32],[-8,31],[-79,-79],[-29,-47],[-104,-169],[-42,-70],[-61,-44],[-31,2],[-31,1],[-42,13],[-53,24],[-53,23],[-109,19],[-30,-9],[-30,-10],[-127,-100],[-350,-51],[-44,-6],[-124,-7],[-37,-3],[21,101],[21,101],[-96,41],[-55,-37],[-56,-36],[-93,-30],[-34,-11],[-50,7],[-22,8],[-22,7],[-25,-26],[-25,-27],[-27,-101],[-12,-39],[-13,-39],[-119,-7],[-46,29],[-47,28],[-21,20],[-21,21],[-80,3],[-81,3],[-33,-9],[-119,-32],[-81,-8],[-81,-7],[-117,6],[-31,91],[-12,38],[-11,38],[-2,75],[-94,50],[8,139],[9,119],[39,58],[40,59],[113,123],[82,-14],[59,51],[-19,66],[31,91],[32,91],[16,99],[-13,152],[-85,269],[-117,311],[-63,123],[-62,123],[-60,105],[-175,359],[-192,326],[-97,192],[-97,192],[-144,213],[-85,125],[-68,78],[-190,217],[-101,82],[-101,81],[-162,93],[-158,-1],[-97,-26],[-82,-116],[-98,-85],[-62,-91],[-64,-56],[-44,-1],[-63,-56],[-73,6],[-102,-63],[-34,5],[-35,5],[-79,9],[-72,57],[-72,56],[-92,44],[-86,34],[-174,54],[-97,7],[-110,-22],[-70,-37],[-70,-36],[-94,-91],[-94,-91],[-69,-138],[-46,-87],[0,-80],[-5,-52],[-6,-52],[19,-121],[30,-127],[12,-155],[-54,-96],[-91,-48],[-134,34],[-145,58],[-149,35],[-76,-3],[-141,-6],[-65,-3],[-119,-63],[-114,-63],[-77,-127],[-68,-156],[-35,-121],[-2,-34],[-2,-35],[-4,-117],[16,-34],[17,-35],[31,-63],[38,-48],[60,-12],[34,-22],[8,-70],[-54,-137],[-27,-60],[-59,-31],[-181,-139],[-52,-18],[-52,-19],[-27,-19],[-38,76],[-37,21],[-1,33],[-1,33],[18,79],[18,68],[28,121],[-46,173],[-16,69],[2,63],[28,26],[28,27],[85,32],[3,25],[2,26],[43,30],[50,-3],[21,42],[-6,36],[-6,35],[-31,73],[-94,31],[-97,57],[-97,56],[-94,69],[-244,186],[-267,428],[-22,19],[-21,18],[-17,87],[-17,86],[-55,111],[-80,64],[-107,91],[-103,123],[-156,291],[-52,103],[18,220],[35,259],[8,57],[13,93],[39,117],[25,223],[49,184],[49,184],[113,239],[-33,236],[-43,180],[-43,181],[-14,129],[8,50],[31,13],[31,13],[63,25],[134,72],[135,72],[290,142],[123,63],[123,63],[262,129],[99,47],[99,47],[223,104],[10,100],[9,101],[6,28],[62,-36],[132,-77],[78,-2],[79,-1],[145,-65],[48,-31],[57,-36],[87,12],[80,63],[139,108],[139,108],[63,34],[63,33],[27,57],[27,56],[41,139],[-10,24],[-30,16],[-30,10],[-84,-5],[-58,19],[-38,110],[-1,70],[12,143],[-4,184],[-4,184],[-36,34],[2,44],[27,22],[8,54],[7,53],[-10,27],[-11,27],[-21,12],[-21,13],[-68,-18],[-69,-17],[-31,-6],[-32,-6],[-56,40],[-79,-47],[-60,-77],[-17,-23],[-67,-51],[-107,9],[-152,13],[-112,10],[-40,3],[-32,558],[-9,159],[4,220],[19,330],[19,77],[20,77],[2,220],[-30,87],[-30,86],[-34,104],[-5,117],[-57,-18],[-22,-16],[-21,-17],[-21,-14],[-20,-14],[-78,-4],[-84,77],[-56,247],[-49,400],[-39,239],[-140,25],[-50,-40],[-124,-73],[-142,-35],[-51,-11],[-51,-12],[-138,-24],[-46,-8],[-62,19],[-9,17],[-9,17],[-91,214],[-41,96],[-58,159],[-13,131],[10,96],[10,96],[14,70],[69,273],[12,49],[28,109],[128,300],[29,69],[90,184],[123,249],[36,61],[153,257],[90,228],[22,55],[26,32],[75,192],[118,129],[44,9],[84,16],[150,54],[148,31],[179,50],[179,49],[15,-224],[136,-13],[137,-13],[186,-31],[64,-11],[148,-30],[148,-31],[160,-24],[159,-24],[77,-17],[188,-42],[14,-3],[145,-32],[202,-88],[89,-62],[90,-61],[72,-188],[71,-189],[77,-168],[143,-312],[47,-105],[58,-124],[57,-124],[-3,-20],[-29,-231],[13,-48],[38,-44],[24,-5],[75,-14],[32,18],[127,70],[53,31],[53,31],[69,36],[177,100],[54,25],[53,26],[114,62],[29,12],[92,36],[29,47],[15,75],[15,76],[8,85],[-6,88],[-11,103],[-14,123],[-36,142],[-85,110],[-106,85],[-7,6],[-27,53],[-5,10],[-20,-4],[-8,-6],[-26,-20],[-25,-12],[-24,-12],[-50,35],[-34,49],[-14,20],[-38,38],[-10,85],[-3,26],[-3,27],[-50,57],[-29,44],[-38,60],[-49,62],[-41,54],[-33,41],[-34,41],[-83,94],[-14,44],[1,14],[5,46],[50,89],[8,15],[10,1],[25,3],[11,5],[11,6],[31,-28],[116,-116],[86,-74],[31,-27],[75,-63],[92,-75],[10,2],[15,3],[15,-3],[25,11],[25,18],[13,2],[14,2],[18,-3],[13,-14],[14,-13],[25,-21],[15,4],[5,21],[-8,35],[-8,34],[-4,30],[-4,29],[0,18],[0,17],[22,32],[13,14],[5,14],[-18,35],[-10,13],[-10,14],[-6,-2],[-7,-2],[-14,-11],[-17,-7],[-16,-7],[-10,3],[-5,17],[5,7],[-3,14],[-2,14],[-5,21],[-5,8],[-5,9],[-8,7],[-12,-4],[-6,-9],[-7,-9],[-2,3],[-3,4],[8,16],[19,40],[-27,27],[-13,28],[-5,17],[-10,21],[-5,7],[-5,0],[-5,-1],[-13,-3],[-5,5],[-5,5],[-12,3],[-8,7],[-3,1],[-4,2],[-2,-11],[-5,-10],[-5,-17],[-8,-8],[-4,-3],[-4,5],[-4,5],[0,17],[2,7],[3,7],[4,18],[-14,6],[-7,4],[-6,3],[-12,3],[-5,-18],[-3,-17],[-2,-17],[-4,-11],[-3,-10],[-13,-8],[-10,0],[-12,7],[-3,10],[0,11],[0,10],[0,14],[2,21],[8,21],[4,26],[5,26],[5,21],[-3,25],[-2,20],[-5,21],[-6,21],[-13,15],[-27,29],[-13,10],[-14,10],[-23,14],[-22,10],[-25,14],[-10,5],[-10,14],[-20,27],[-28,28],[-20,31],[-8,10],[-15,31],[-10,31],[-5,6],[-13,24],[-32,48],[-10,-28],[0,-21],[-5,-24],[-7,-21],[-18,-1],[-23,18],[-59,45],[-17,11],[-50,33],[-65,-1],[-216,-2],[-64,-1],[-206,119],[-122,71],[-135,66],[-102,49],[-25,21],[-105,89],[-172,51],[-80,24],[-95,29],[-164,51],[-59,34],[-155,87],[6,111],[242,206],[156,121],[68,97],[139,199],[133,190],[100,142],[22,26],[69,77],[73,214],[80,126],[16,17],[110,116],[195,357],[110,86],[142,81],[3,5],[88,122],[77,98],[68,28],[134,150],[76,40],[146,41],[36,23],[36,23],[31,57],[61,110],[61,121],[61,46],[8,6],[12,0],[117,0],[90,8],[90,9],[42,-23],[42,-23],[38,-75],[4,-92],[-48,-110],[-48,-109],[10,-120],[2,-30],[-42,-103],[0,-93],[-6,-107],[-3,-44],[5,-10],[72,-50],[41,-37],[12,-19],[13,-19],[6,-29],[7,-30],[10,-48],[25,-48],[13,-24],[22,-27],[41,-45],[46,-2],[46,-2],[67,-2],[20,-34],[13,-40],[13,-40],[13,-76],[8,-87],[0,-100],[-14,-78],[8,-93],[14,-111],[-2,-119],[-4,-83],[-5,-84],[-12,-56],[-7,-28],[-24,-38],[-22,-46],[-30,-74],[-24,-63],[-13,-37],[-16,-52],[-9,-27],[-5,-28],[7,-45],[-22,-49],[-11,-8],[-11,-7],[-11,-30],[-11,-30],[-11,-42],[-11,-42],[1,-52],[10,-31],[20,-10],[20,-10],[20,-6],[5,7],[27,-17],[26,-69],[5,-48],[5,-49],[-3,-88],[-1,-34],[-11,-104],[-12,-95],[-9,-52],[-5,-47],[-5,-47],[-4,-77],[-7,-70],[-4,-86],[-12,-67],[-9,-23],[-8,-23],[-30,-74],[3,-24],[13,-73],[6,-93],[9,-40],[9,-40],[5,-27],[21,-118],[10,-52],[16,-94],[0,-28],[0,-28],[-4,-76],[-10,-45],[-14,-39],[-25,-36],[-17,-31],[-22,-43],[-13,-16],[-14,-16],[-5,-14],[14,-8],[14,-8],[32,-27],[42,-13],[20,25],[45,35],[13,8],[14,7],[32,25],[49,54],[40,25],[15,4],[27,18],[12,42],[2,13],[5,53],[10,63],[7,73],[14,74],[9,49],[9,30],[8,30],[5,38],[-5,41],[-2,21],[-1,21],[5,42],[17,32],[12,35],[2,45],[-10,21],[-3,19],[-2,19],[-8,38],[0,17],[0,18],[14,25],[8,14],[7,13],[-1,31],[-2,98],[-1,28],[-32,17],[-10,27],[0,35],[7,39],[10,5],[9,5],[23,8],[10,4],[7,48],[1,119],[2,21],[10,97],[9,39],[15,0],[9,20],[67,160],[7,17],[15,32],[-10,10],[-10,10],[-22,3],[-23,3],[-10,28],[2,34],[9,11],[8,11],[13,2],[13,2],[9,0],[8,9],[7,9],[-1,16],[-2,15],[-6,21],[-6,21],[-3,34],[-6,2],[-7,1],[-36,-26],[-8,-6],[-22,-11],[-8,9],[-7,8],[-8,38],[2,39],[39,42],[50,33],[-90,199],[-18,40],[-2,45],[-17,477],[-6,198],[-3,67],[-1,49],[-3,126],[-15,74],[-14,73],[-21,151],[-9,61],[-1,94],[67,89],[34,42],[22,46],[38,110],[-215,81],[-164,55],[74,181],[50,152],[20,60],[27,25],[28,25],[17,7],[25,-2],[38,-10],[13,-3],[14,-3],[44,45],[18,19],[58,-17],[38,-3],[37,-3],[53,50],[90,-22],[-100,110],[-89,76],[-25,21],[46,140],[157,-124],[92,-73],[35,-9],[61,19],[-97,444],[-26,100],[-11,42],[-82,134],[-74,153],[22,112],[59,35],[64,-75],[204,-199],[73,-70],[100,-71],[77,-54],[-2,239],[8,277],[5,163],[2,57],[2,57],[4,35],[27,226],[6,53],[25,80],[11,33],[64,101],[13,15],[102,123],[144,176],[11,15],[143,174],[60,66],[39,62],[101,139],[74,167],[71,110],[41,63],[58,120],[14,29],[93,211],[33,73]],[[454329,196892],[57,-80],[49,-69],[17,-24],[5,-6],[6,-9],[53,-74],[230,-310],[248,-334],[97,-132],[7,-8],[12,33],[192,-144],[11,-9],[54,22],[45,9],[16,-2],[27,-3],[27,-3],[62,-15],[48,-20],[38,-31],[48,-53],[13,-14],[12,-14],[48,-52],[48,-32],[12,-8],[76,-66],[51,-61],[7,-6],[10,-9],[9,-8],[51,-24],[36,-19],[18,-27],[4,-5],[19,-54],[66,-94],[40,-57],[37,-16],[3,0],[11,-1],[25,-2],[11,2],[4,1],[4,0],[21,4],[37,13],[22,13],[5,2],[25,14],[26,13],[8,-7],[3,-2],[69,-61],[67,-57],[3,-4],[10,-4],[50,-23],[11,-3],[16,-5],[43,-14],[77,-19],[69,-16],[30,-19],[12,-7],[52,-4],[41,-6],[30,-24],[31,-13],[42,-49],[59,-36],[38,-21],[37,-51],[29,-17],[47,-4],[62,11],[48,-5],[73,-14],[27,-5],[19,-4],[41,-14],[48,-36],[54,-75],[24,-16],[53,16],[19,10],[53,28],[66,37],[49,27],[57,20],[52,0],[78,-8],[67,-29],[58,-30],[119,-93],[64,-44],[27,-18],[77,-37],[6,-3],[51,-23],[46,-20],[17,-7],[13,-6],[62,-24],[92,-53],[9,-8],[146,-109],[26,-13],[62,-31],[94,-36],[41,-16],[13,-5],[90,-35],[141,-55],[225,-89],[179,-81],[28,-13],[42,-19],[216,-109],[87,-51],[36,-21],[42,-25],[163,-107],[161,-98],[74,-35],[54,-38],[34,-6],[44,12],[37,11],[52,4],[68,3],[61,5],[45,-9],[61,-37],[51,-29],[54,-25],[68,-17],[106,-24],[91,-26],[108,-12],[96,-7],[43,-7],[60,-11],[42,-17],[50,-43],[158,-134],[40,-16],[54,-21],[62,-10],[78,-4],[75,-4],[63,-37],[60,-66],[59,-53],[39,-31],[39,-56],[55,-62],[47,-43],[65,-56],[50,-43],[37,-46],[3,-3],[11,-13],[28,-30],[6,-7],[21,-36],[21,-36],[8,-15],[35,-83],[43,-56],[46,-53],[62,-54],[94,-91],[56,-57],[55,-35],[40,-26],[29,-42],[30,-48],[24,0],[49,16],[58,-7],[56,-51],[48,-16],[56,5],[115,11],[110,29],[72,23],[34,-12],[24,-38],[11,-63],[28,-36],[37,-18],[63,0],[70,36],[49,27],[37,-1],[32,-13],[47,-21],[93,-9],[101,-1],[85,-26],[106,-47],[139,-83],[105,-72],[132,-81],[108,-60],[94,-36],[105,-27],[115,7],[171,47],[92,20],[101,-9],[11,-2],[32,-6],[145,-30],[167,-49],[232,-98],[140,-56],[89,-38],[25,-21],[25,-20],[21,-20],[46,-44],[41,-79],[34,-76],[17,-38],[36,-91],[28,-71],[47,-94],[49,59],[32,-23],[55,-34],[56,-35],[41,-13],[42,-13],[12,-4],[55,-17],[28,0],[25,24],[210,267],[73,89],[54,41],[203,110],[135,67],[60,20],[88,-9],[16,-6],[17,-5],[33,-11],[19,-11],[57,-30],[82,-47],[187,-127],[156,-15],[28,-3],[150,-16],[106,-5],[91,-4],[100,5],[38,3],[28,1],[25,7],[23,7],[11,-52],[11,-33],[14,-23],[27,-16],[27,-16],[25,-9],[41,-11],[62,-11],[50,-3],[30,4],[40,21],[66,54],[3,3],[12,10],[12,6],[17,3],[24,0],[15,-2],[31,-9],[30,-13],[2,-1],[18,-9],[4,-6],[5,-6],[15,-43],[8,-7],[7,-8],[32,-35],[77,-79],[37,-33],[13,-11],[33,-30],[22,-34],[13,-34],[4,-11],[8,-21],[1,-4],[2,-4],[8,-38],[8,-36],[8,-33],[16,-67],[6,-33],[12,-60],[16,-59],[17,-47],[15,-21],[32,-35],[35,-17],[76,-30],[36,-14],[37,-17],[26,-23],[42,-37],[8,-7],[38,-33],[32,-28],[17,-24],[22,-35],[20,-39],[23,-50],[26,-41],[120,-89],[73,-54],[67,-50],[112,-82],[65,-36],[107,-64],[54,-34],[52,-38],[68,-51],[35,-35],[56,-49],[34,-9],[36,8],[49,24],[42,44],[5,5],[71,89],[56,74],[97,130],[32,37],[25,25],[31,22],[36,16],[66,29],[12,5],[16,7],[98,42],[132,52],[81,35],[10,4],[10,5],[93,43],[86,36],[22,6],[21,6],[50,3],[50,-5],[57,-12],[88,-40],[37,-19],[59,-30],[70,-38],[82,-47],[12,-7],[12,-7],[59,-37],[15,-14],[28,-29],[25,-37],[15,-34],[6,-13],[6,-14],[24,-56],[17,-42],[40,-91],[102,-189],[61,-111],[48,-88],[67,-121],[77,-133],[42,-69],[23,-37],[5,-9],[122,-199],[32,-57],[50,-70],[59,-69],[120,-127],[89,-86],[60,-49],[70,-58],[50,-39],[50,-39],[65,-56],[12,-10],[70,-63],[69,-75],[45,-55],[13,-15],[39,-53],[10,-14],[52,-79],[18,-30],[2,-4],[9,-16],[11,-17],[41,-84],[51,-108],[11,-22],[58,-126],[10,-22],[7,-16],[38,-78],[19,-36],[29,-55],[52,-80],[37,-52],[10,-14],[29,-40],[48,-56],[59,-76],[53,-70],[63,-85],[58,-73],[39,-49],[56,-54],[49,-43],[63,-40],[62,-29],[61,-24],[71,-21],[61,-22],[42,-23],[51,-39],[45,-44],[19,-29],[18,-28],[35,-60],[35,-55],[32,-53],[31,-46],[26,-35],[32,-33],[36,-32],[42,-26],[47,-19],[77,-24],[107,-30],[111,-28],[40,-11],[40,-11],[63,-21],[77,-37],[49,-30],[31,-23],[15,-12],[44,-49],[26,-37],[29,-43],[61,-107],[59,-107],[44,-89],[125,-265],[44,-90],[32,-66],[35,-66],[20,-36],[16,-30],[66,-125],[6,-11],[13,-24],[13,-23],[31,-56],[72,-104],[35,-50],[56,-58],[62,-57],[58,-29],[52,-15],[81,-16],[296,-84],[40,-11],[62,-3],[74,19],[43,13],[7,3],[8,2],[13,7],[50,28],[18,11],[86,46],[74,44],[91,64],[79,29],[126,17],[85,-2],[25,-1],[76,15],[112,26],[75,30],[25,15],[4,2],[30,17],[6,5],[50,38],[36,29],[7,5],[102,83],[153,129],[14,13],[85,69],[103,48],[96,52],[116,39],[76,10],[61,8],[99,22],[139,48],[77,42],[15,9],[72,60],[68,61],[199,140],[183,123],[84,74],[20,18],[89,45],[95,31],[39,-4],[143,-12],[14,-1],[352,-55],[153,-19],[76,-14],[51,-12],[10,-6],[48,-23],[4,-4],[47,-37],[16,-12],[41,-49],[21,-53],[25,-61],[52,-155],[50,-152],[22,-76],[26,-65],[10,-48],[4,-18],[10,-137],[38,-91],[35,-74],[46,-96],[53,-102],[48,-61],[40,-32],[64,-28],[64,-13],[32,-19],[9,-5],[42,-40],[43,-38],[13,-19],[13,-20],[3,-4],[20,-84],[25,-103],[17,-95],[7,-50],[1,-14],[6,-39],[10,-110],[9,-90],[1,-12],[5,-81],[14,-199],[17,-257],[7,-91],[31,-501],[23,-377],[23,-297],[3,-31],[14,-156],[14,-120],[13,-179],[13,-176],[13,-104],[13,-79],[16,-57],[18,-65],[4,-20],[14,-73],[12,-57],[19,-97],[34,-162],[49,-211],[12,-60],[8,-52],[3,-51],[-1,-26],[-1,-26],[-3,-55],[-12,-63],[-15,-46],[-28,-60],[-32,-68],[-26,-77],[-16,-60],[-6,-76],[4,-82],[17,-81],[27,-91],[9,-40],[6,-26],[1,-5],[46,-166],[12,-58],[12,-57],[11,-63],[-15,-122],[-41,-169],[-23,-107],[-6,-73],[11,-61],[19,-47],[64,-89],[70,-86],[28,-34],[80,-107],[56,-80],[30,-42],[77,-125],[18,-28],[16,-13],[12,-5],[12,-4],[69,25],[88,37],[54,28],[52,4],[48,-2],[49,-2],[103,2],[53,11],[63,31],[67,49],[33,4],[133,-23],[100,0],[57,12],[40,24],[42,72],[66,102],[47,81],[10,24],[9,24],[13,74],[11,111],[20,90],[37,92],[41,61],[44,55],[59,48],[60,59],[63,46],[47,47],[10,11],[146,-56],[108,-32],[106,-34],[27,-9],[312,-103],[82,-27],[100,-29],[9,-3],[85,-13],[17,0],[57,-1],[12,2],[56,9],[2,1],[76,29],[18,10],[43,24],[62,48],[332,286],[42,36],[109,94],[126,109],[59,51],[68,58],[85,76],[13,11],[65,58],[137,122],[194,148],[145,94],[443,279],[195,142],[256,200],[135,111],[99,71],[37,27],[109,54],[4,2],[106,48],[9,2],[9,3],[16,4],[7,2],[33,8],[88,20],[119,15],[453,27],[241,18],[97,11],[138,40],[118,36],[90,18],[19,4],[92,1],[49,-9],[49,-9],[158,-92]],[[451132,197448],[-8,-49],[-19,2],[-229,21],[-4,92],[65,64],[65,63],[168,52],[-12,-77],[-26,-168]],[[662022,413164],[26,7],[87,26],[89,26],[127,0],[7,0],[152,-59],[134,-60],[140,-84],[141,-127],[173,-119],[286,-118],[350,-170],[291,-109],[126,-140],[124,-200],[110,-179],[268,-550],[234,-574],[92,-133],[302,-233],[100,-174],[36,-389],[-91,-358],[5,-229],[114,-97],[403,156],[254,195],[126,-83],[254,-67],[130,-110],[-87,-405],[56,-206],[270,-124],[224,-164],[249,-814],[92,-137],[120,-55],[226,-23],[163,20],[226,114],[1271,1133],[135,73],[317,44],[228,-132],[380,-421],[191,-318],[143,-117],[359,-81]],[[664444,371200],[-105,-210],[-84,-191],[-131,-191],[-388,-381],[-495,-274],[-432,-159],[-219,-216],[-258,-38],[-360,-119],[-318,-250],[-393,-411],[-92,-150],[-70,-189],[-14,-456],[-200,-619],[-141,-241],[-120,-119],[-255,-166],[-121,-51],[-131,-4],[-453,112],[-153,65],[-257,171],[-127,27],[-85,-135],[-28,-376],[203,-434],[-127,-255],[-220,-171],[-218,-121],[-388,50],[-337,-101],[-279,-255],[-202,-330],[-182,-209],[-289,-194],[-191,-199],[-198,-73],[-110,-38],[-185,-51],[-312,-140],[-228,-254],[-347,-601],[-159,-391],[-143,-267],[-159,-128],[-237,39],[-312,343],[-203,382],[-244,-115],[-203,51],[-252,102],[-312,38],[-245,-63],[-174,-43],[-155,-97],[-122,-148],[-13,-119],[-33,-497],[-60,-254],[-106,-150],[-114,-142],[-169,-34],[-369,-68],[-670,-58],[-183,35],[-346,254],[-157,54],[-127,-31],[-111,-76],[-62,-196],[11,-364],[-77,-331],[-133,-165],[-110,-114],[-255,-36],[-217,86],[-321,140],[-384,25],[-342,80],[-118,62],[-93,139],[-90,213],[-120,636],[-95,215],[-117,169],[-158,140],[-161,-101],[-312,-382],[-379,-382],[-371,-368],[-312,-357],[-363,-229],[-371,-37],[-244,26],[-233,87],[-462,145],[-831,212],[-740,237],[-1009,307],[-1250,479],[-668,378],[-277,146],[-449,265],[-251,80],[-352,124],[-115,-26],[-85,-47],[-62,76],[-31,95],[-95,87],[-58,0],[-79,-69],[-145,-167],[-114,-38],[-35,9],[-34,112],[-52,53],[-216,-27],[-53,44],[-419,203],[-65,0],[-198,-320],[-133,-51],[-265,-14],[-116,-66],[-120,-123],[-222,-255],[-63,-109],[-69,-34],[-169,45],[-314,138],[-301,196],[-94,0],[-50,-16],[-49,-16],[-167,-140],[-86,-60],[-106,21],[-235,-74],[-168,-53],[-275,-156],[-289,-218],[-237,-310],[-271,-405],[-201,-438],[-63,-142],[-96,-69],[-167,-30],[-164,-14],[-356,-33],[-497,142],[-295,177],[-467,281],[-258,124],[-130,36],[-198,-7],[-212,-7],[-273,-22],[-332,-7],[-126,-80],[-84,-95],[-82,-98],[-104,-29],[-123,-11],[-50,-40],[-155,-18],[-79,69],[-326,-44],[-224,7],[-92,-40],[-77,-72],[-77,-10],[-92,-9],[-183,8],[-190,-47],[-210,-95],[-124,-18],[-66,14],[-138,-21],[-106,-48],[-212,-134],[-116,-193],[-94,-58],[-166,-37],[-241,-121],[-123,-115],[-36,-91],[-49,-80],[-62,-102],[-24,-21],[-66,-93],[-127,-15],[-22,-8],[-14,-4],[-210,-288],[-74,-155],[-73,-154],[-70,-51],[-121,65],[-427,44],[-152,-15],[-149,15],[-422,131],[-116,-44],[-205,-196],[-31,-80],[-99,-50],[-120,43],[-99,43],[-133,-3],[-120,-77],[-65,-83],[-20,-70],[-48,-40],[-159,-29],[-121,4],[-89,-7],[-89,-8],[-362,-116],[-197,-76],[-193,-37],[-169,48],[-217,178],[-121,69],[-66,3],[-66,4],[-118,-54],[-109,-91],[-122,-141],[-90,-238],[-77,-509],[-176,-818],[-147,-389],[-205,-455],[-3,-149],[70,-135],[24,-112],[-38,-150],[-94,-112],[-140,-44],[-164,15],[-150,-40],[-89,-98],[-106,-70],[-72,11],[-757,7],[-157,-40],[-453,-301],[-279,-160],[-238,-387],[-113,-439],[-38,-153],[-113,-345],[-198,-426],[-150,-69],[-147,44],[-176,80],[-212,10],[-263,-116],[-87,-11],[-130,84],[-159,33],[-140,-33],[-200,-124],[-106,22],[-149,36],[-176,4],[-22,84],[46,65],[84,47],[17,66],[-43,58],[-73,29],[-275,-113],[-118,-10],[-176,145],[-178,138],[-130,58],[-176,448],[-157,353],[-181,50],[-176,11],[-19,73],[99,173],[36,136],[26,488],[-38,112],[-82,88],[-77,-8],[-90,-40],[-132,-25],[-32,55],[140,265],[12,62],[-188,11],[-62,3],[-123,19],[-196,138],[-231,178],[-82,22],[-87,-47],[-294,-233],[-82,51],[-15,83],[17,255],[39,153],[99,102],[113,90],[-7,73],[-44,58],[-115,84],[-77,-4],[-126,-25],[-96,29],[-167,98],[-159,29],[-123,-65],[-34,41],[-40,148],[-114,542],[-111,313],[-87,120],[-98,73],[-159,109],[-136,51],[-48,0],[-176,0],[-287,18],[-123,87],[-84,4],[-72,-29],[-94,-40],[-140,36],[-73,-40],[-156,33],[-345,182],[-80,21],[-60,-18],[-77,-43],[-46,-62],[-130,-273],[-53,-40],[-53,76],[-80,95],[-96,101],[-41,-7],[-98,-74],[-305,-202],[-118,-65],[-171,25],[-126,103],[-139,115],[-82,-18],[-145,-244],[-205,-178],[-152,-40],[-169,109],[-135,84],[-130,156],[-296,251],[-109,139],[-75,-37],[-108,-91],[-142,-236],[-44,-33],[-82,-4],[-60,4],[-65,-4],[-109,62],[-68,-4],[-45,-32],[-77,-22],[-61,30],[-49,-26],[-99,-121],[-77,-161],[-50,-481],[-62,-387],[-34,-105],[-62,-102],[-97,-62],[-357,-65],[-43,-11],[-17,-91],[12,-178],[-2,-229],[-41,-193],[-321,-771],[-289,-408],[-326,-574],[-58,-117],[-89,-273],[-55,-61],[-58,32],[-99,51],[-96,-37],[-290,-476],[-223,-225],[-165,-307],[-195,-172],[-227,-18],[-132,-52],[-191,-339],[-173,-229],[-119,-294],[-292,-517],[-423,-741],[-254,-351],[-148,-71],[-918,-142],[-489,-161],[-238,-43],[-306,17],[-238,117],[-384,321],[-452,111],[-607,-10],[-304,207],[-226,253]],[[549961,388890],[296,188],[352,357],[312,481],[105,835],[-134,102],[-106,174],[-155,576],[-198,499],[-93,718],[-134,598],[45,166],[81,139],[65,203],[50,443],[-7,228],[-199,383],[-98,349],[15,408],[-79,358],[-296,390],[121,105],[550,-145],[401,184],[341,241],[318,454],[297,629],[87,113],[124,162],[149,364],[126,775],[-466,1521],[-232,263],[-826,1135],[-362,335],[-183,268],[-106,578],[5,462],[77,164],[242,160],[135,170],[133,321],[249,445],[155,336],[0,184],[-277,488],[-5,204],[197,277],[154,406],[107,178],[311,207],[127,167],[43,224],[7,502],[311,616],[93,243],[97,639],[43,681],[107,547],[76,191],[374,667],[206,271],[122,92],[500,89],[107,114],[70,128],[34,244],[-33,359],[-193,298],[-61,181],[-1,196],[55,262],[107,168],[132,138],[69,192],[68,223],[-27,334],[-127,213],[-211,358],[-121,244],[-165,284],[-180,266],[-764,946],[-95,194],[-21,129],[0,20],[0,14],[1,19],[0,19],[0,4],[1,49],[0,3],[8,173],[2,41],[16,251],[10,168],[4,62],[15,204],[2,25],[4,68],[3,35],[0,3],[1,13],[1,3],[2,26],[9,103],[55,614],[22,442],[38,703],[52,352],[31,170],[71,302],[198,321],[344,405],[51,200]],[[553295,422681],[106,162],[480,91],[12,2],[306,58],[263,133],[458,435],[332,531],[291,1109],[344,750],[20,21],[263,276],[277,371],[195,177],[475,322],[333,182],[213,227],[197,332],[141,89],[141,5],[249,-111],[140,14],[115,52],[267,121],[452,53],[120,61],[97,117],[448,753],[132,163],[15,18],[150,185],[133,335],[155,573],[79,189],[210,327],[282,220],[370,165],[150,121],[224,385],[45,58],[29,36],[3,3],[43,55],[74,92],[63,80],[12,15],[7,9],[18,23],[144,181],[276,288],[304,237],[304,110],[141,124],[63,156],[-90,996],[34,560],[333,1879],[35,197],[238,760],[249,528],[105,397],[-125,715],[34,236],[191,399],[708,879],[318,246],[400,154],[949,156],[147,67],[234,267],[63,143],[79,337],[55,579],[-7,181],[-42,175],[-70,148],[-240,197],[27,221],[86,163],[61,229],[25,703],[55,198],[98,156],[148,60],[652,-240],[113,-84],[226,-476],[240,-785],[218,-237],[134,-41],[277,53],[621,628],[127,85],[136,4],[585,-220],[127,144],[142,431],[156,317],[35,177],[1,216],[-42,177],[-143,365],[-106,122],[-263,161],[-154,52],[-275,190],[-22,176],[77,168],[142,86],[403,39],[368,254],[467,192],[494,475],[193,419],[-10,184],[-141,361],[-607,775],[-86,142],[-288,663],[-9,204],[85,170],[254,190],[79,189],[27,231],[-47,871],[0,2],[-100,910],[22,177],[55,160],[226,228],[135,49],[642,-211],[383,29],[226,72],[842,579],[139,25],[121,-36],[558,-485],[155,-31],[169,27],[219,-18],[136,-95],[104,-153],[292,-767],[197,-386],[129,-98],[126,-47],[297,-40],[361,-134],[363,-221],[425,-439],[975,-1006],[143,-101],[156,-35],[156,74],[262,274],[198,339],[113,103],[549,177],[129,96],[106,143],[78,473],[155,345],[404,356],[190,280],[10,16],[111,163],[373,275],[84,142],[57,372],[79,179],[227,287],[84,227],[20,214],[-14,183],[37,229],[127,212],[104,86],[127,30],[624,-44],[147,111],[85,162],[21,444],[127,344],[205,322],[184,169],[311,98],[609,-39],[154,67],[143,155],[91,180],[120,157],[155,73],[664,18],[163,-70],[163,-70],[175,-95],[631,-345],[352,-147],[141,5],[112,129],[165,286],[656,806],[126,57],[164,15],[311,-163],[213,-231],[254,-404],[99,-215],[127,-120],[148,-70],[275,25],[134,74],[264,302],[182,344],[21,245],[-36,245],[-78,215],[-97,137],[-58,161],[77,493],[73,168],[283,119],[297,410],[260,167],[260,68],[257,-21],[134,-57],[227,-261],[167,-337],[129,-141],[149,26],[26,51],[66,129],[27,235],[-28,500],[-156,500],[-333,457],[-98,341],[-1,194],[93,710],[0,233]],[[309969,274867],[-69,20],[-388,234],[-204,246],[-167,228],[-102,141],[-200,260],[-143,268],[-58,165],[-77,166],[-101,123],[-178,85],[-8,4],[-92,45],[-1,1],[-123,81],[-185,-44],[-409,-459],[-248,-136],[-241,-124],[-152,-132],[-134,-108],[-196,-65],[-239,29],[-164,115],[-129,144],[-120,-39],[-105,-76],[-94,-193],[-138,-115],[-242,5],[-242,102],[-30,12],[-307,117],[-499,237],[-85,41],[-316,148],[-326,72],[-126,0],[-3,0],[-153,-58],[-24,-7],[-73,-23],[-95,-28],[-79,87],[-21,188],[-67,171],[-129,153],[-240,214],[-225,142],[-165,142],[-70,200],[-64,118],[-55,74],[-74,47],[-118,-15],[-103,79],[-193,261],[-200,335],[-76,191],[-196,289],[-190,188],[-256,375],[-102,125],[-138,101],[-172,14],[-131,-55],[-179,-108],[-181,-147],[-86,-83],[-130,-99],[-58,-34],[-56,-30],[18,-148],[2,-12],[74,-565],[13,-99],[47,-202],[414,-951],[16,-138],[0,-123],[-48,-197],[-40,-103],[-67,-101],[-195,-298],[-14,-21],[-720,-1105],[-14,-22],[-176,-275],[-451,-704],[-410,-600],[-22,-34],[-82,-129],[-50,-78],[-9,-14],[-160,-250],[-108,-169],[-29,-46],[-21,-31],[-24,-37],[-71,-109],[-81,-122],[-2,-4],[-49,-76],[-161,-247],[-13,-22],[-4,-6],[-204,-312],[-301,-477],[-183,-281],[-272,-416],[-68,-103],[-26,-41],[-4,-5],[-328,-481],[-205,-297],[-691,-997],[-24,-34],[-148,-208],[-206,-290],[-69,-95],[-281,-392],[-48,-68],[-215,-299],[-15,-21],[-17,-23],[-11,-16],[-6,-9],[-17,-23],[-16,-22],[-7,-10],[-10,-13],[-14,-20],[-200,-276],[-246,-338],[-1,-1],[-10,-14],[-131,-232],[-72,-186],[-253,-737],[-18,-52],[-218,-641],[-160,-471],[-113,-199],[-124,-221],[-216,-334],[-23,-35],[-45,-68],[-54,-78],[-138,-135],[-267,-165],[-146,-84],[-194,-112],[-79,-62],[-96,-102],[-87,-122],[-38,-69],[-125,-226],[-9,-17],[-362,-687],[-119,-317],[-171,-563],[-91,-298],[-1,-5],[-26,-97],[-41,-153],[-3,-87],[-3,-103],[-2,-66],[1,-44],[15,-456],[5,-144],[-1,-44],[-7,-304],[0,-39],[0,-2],[0,-1]],[[289537,258894],[0,-2]],[[289537,258892],[0,-1]],[[289537,258891],[-1,-2]],[[289536,258889],[0,-2]],[[289536,258887],[0,-8],[0,-4],[-16,-472],[-39,-319],[-135,-255],[-195,-224],[-25,-57],[-106,-236],[-109,-475]],[[288911,256837],[-49,-12],[-123,-32],[-117,-30],[-415,-180],[19,-293],[-219,-339],[-177,-182],[-471,-199],[-207,29],[-280,110],[-306,180],[-240,83],[-503,4],[-365,255],[-497,844],[-345,945],[-190,824],[-170,341],[-51,162],[-287,28],[-1471,-211],[-135,-72],[-156,-412],[-43,-35],[-727,-408],[-113,-25],[-76,54],[-51,88],[-121,314],[-107,570],[-54,47],[-39,35],[-19,246]],[[280806,259566],[-707,299],[-416,235],[-136,-17],[-324,-167],[-198,1],[-302,191],[-142,158],[-191,92],[-340,97],[-219,14],[-488,-74],[-813,-266],[-592,-15],[-496,282],[-128,179],[-40,210],[-70,171],[-158,-25],[-231,-334],[-141,90],[-87,146],[-114,526],[-12,54],[-141,138],[-192,78],[-142,13],[-295,158],[-156,-8],[-262,-190],[-119,102],[-71,240],[111,549],[142,405],[114,651],[-61,120],[-67,69],[-184,193],[-267,77],[-70,429],[-136,28],[-297,-59],[-119,40],[-140,-17],[-93,170],[22,410],[70,377],[310,502],[49,368],[115,354],[5,833],[61,456],[60,457],[50,748],[-35,168],[-100,114],[-140,323],[-120,75],[-262,71],[-169,302],[-220,188],[-133,341],[-129,145],[-248,148],[-106,124],[-240,501],[-70,405],[-13,383],[21,173],[-21,173],[-79,136],[-151,6],[-153,-38],[-134,49],[-149,363],[-126,91],[-404,85],[-289,240],[-148,31],[-142,-41],[-310,-215],[-142,-40],[-141,58],[-148,171],[-79,195],[-112,456],[-107,161],[-351,293],[-328,644],[-142,563],[-134,309],[-19,190],[69,205],[108,133],[254,124],[345,304],[340,450],[121,62],[367,306],[281,133],[228,306],[483,482],[287,194],[133,27],[412,-47],[445,240],[330,227],[312,328],[212,411],[121,234],[112,137],[282,87],[156,85],[296,377],[312,479],[203,139],[454,68],[367,195],[275,250],[319,379],[282,266],[396,161],[112,93],[228,501],[112,107],[241,140],[133,-43],[151,28],[197,276],[177,332],[373,333],[128,167],[658,1190],[153,209],[269,279],[184,299],[22,455],[-7,643],[-35,555],[107,402],[175,331],[149,25],[282,-25],[120,36],[128,124],[347,647],[111,120],[122,-70],[262,-517],[125,-80],[113,61],[99,209],[43,244],[84,158],[121,60],[148,18],[198,255],[113,78],[184,-64],[93,-132],[127,-53],[269,71],[281,-118],[277,64],[437,442],[8,200],[-80,153],[0,196],[135,34],[164,-61],[126,9],[177,95],[107,93],[127,331],[281,81],[115,90],[133,225]],[[414539,486065],[21,-87],[1740,-7387],[204,-868],[7,-30],[390,-1655],[149,-860],[167,-965],[204,-823],[227,-302],[133,-179],[159,-213],[68,-90],[50,-67],[50,-67],[18,-24],[82,-108],[60,-80],[226,-299],[76,-101],[15,-19],[94,-126],[121,-160],[195,-259],[129,-172],[95,-126],[477,-635],[90,-119],[260,-353],[826,-1118],[1339,-1814],[1380,-1869],[209,-282],[27,-37],[683,-926],[29,-39],[1485,-2010],[1844,-2498],[12,-17],[1352,-1830],[167,-226],[95,-129],[224,-2637],[8,-92],[168,-1979],[344,-4065],[403,267],[663,439],[644,426],[1023,677],[4916,3256],[10,7],[7,4],[86,57]],[[434428,409784],[-45,-33],[-46,2],[-45,-51],[-39,-15],[-15,-25],[-4,-72],[-23,-31],[-39,-33],[-44,-36],[-63,-33],[-111,-19],[-35,6],[-51,47],[-29,66],[-23,98],[-37,52],[-16,39],[-19,7],[-26,-4],[-33,-18],[-34,-20],[-17,-22],[-13,-18],[-111,15],[-113,16],[-111,11],[-38,-7],[-25,-65],[-52,-48],[-90,-146],[-78,-18],[-111,14],[-21,26],[20,118],[-4,90],[-258,-22],[-20,-22],[-54,-134],[-31,-41],[-108,-39],[-64,-25],[-55,-40],[-30,-43],[-36,-54],[-22,-6],[-21,6],[-15,22],[-14,43],[-20,20],[-50,3],[-36,12],[-35,10],[-38,-14],[-41,-4],[-21,13],[-39,24],[-31,-15],[-13,-38],[9,-40],[0,-79],[-10,-68],[-16,-63],[-25,-45],[-44,-32],[-52,-3],[-38,4],[-40,12],[-42,-6],[-55,-8],[-72,-10],[-64,-8],[-62,6],[-65,0],[-47,14],[-40,30],[-37,24],[-62,2],[-45,14],[-42,4],[-51,-10],[-67,-21],[-41,-23],[-37,-21],[-42,-23],[-44,-14],[-57,5],[-39,-6],[-44,-18],[-38,-17],[-74,-31],[-94,-32],[-98,-25],[-88,-40],[-68,-27],[-53,-8],[-27,24],[-19,21],[-13,2],[-24,-7],[-43,-4],[-58,-20],[-59,-16],[-70,4],[-156,7],[-37,16],[-28,29],[-37,30],[-17,14],[-37,43],[-28,10],[-39,-4],[-25,-4],[-42,19],[-50,28],[-38,40],[-31,35],[-34,16],[-31,50],[-33,11],[-49,23],[-49,21],[-47,12],[-31,37],[-80,80],[-61,64],[-57,32],[-69,72],[-37,39],[-54,37],[-45,11],[-76,65],[-87,59],[-74,83],[-14,101],[-4,93],[-31,49],[-8,52],[-14,54],[-40,52],[-17,36],[-32,41],[-35,9],[-12,35],[-12,35],[19,56],[41,32],[47,16],[9,34],[-12,59],[-2,56],[-10,48],[-18,24],[-43,-3],[-37,30],[-54,26],[-36,56],[-53,11],[-39,-29],[-14,-80],[-33,-46],[-34,-66],[-14,-48],[-12,-22],[-27,27],[-5,48],[-14,43],[-30,24],[-38,-30],[-10,-56],[-11,-32],[-42,-24],[-50,38],[-39,-11],[-26,-11],[-34,44],[-47,18],[-46,10],[-15,-40],[13,-32],[-20,-40],[-31,-66],[-36,-51],[-17,-88],[1,-64],[-8,-51],[-32,-37],[-34,-21],[-28,24],[28,53],[18,77],[-9,46],[-32,8],[-19,-70],[-55,-8],[-58,40],[-39,46],[-64,61],[-37,11],[-32,-50],[-39,-20],[-26,-55],[47,-83],[2,-46],[-44,-34],[-27,-61],[31,-54],[1,-53],[-51,-16],[-90,45],[-18,1],[-26,2],[-26,-38],[-17,-69],[-16,-85],[-15,-77],[-59,-32],[-65,-56],[-69,29],[-60,-13],[-94,-158],[-71,-128],[-47,-134],[32,-39],[47,-16],[37,-35],[22,-56],[-15,-69],[-60,0],[-54,-35],[-16,-53],[-27,-56],[-49,-13],[-44,-58],[-6,-62],[-40,-27],[-55,-11],[-48,-10],[-42,-27],[-52,-59],[-40,-13],[7,-67],[-6,-77],[-5,-51],[-32,-10],[-1,-56],[7,-59],[8,-51],[6,-50],[-29,-13],[-43,46],[-48,28],[-9,72],[19,69],[-9,62],[-39,18],[-31,-50],[-23,-70],[1,-58],[-17,-54],[-21,-42],[-53,-13],[-69,-32],[-76,-11],[-76,0],[-85,35],[-50,21],[-12,-53],[-44,1],[-46,31],[-41,-2],[-44,-65],[-30,-43],[-43,-13],[-38,67],[-38,82],[-38,35],[-53,-61],[-38,-43],[-42,82],[-42,42],[-15,33],[-20,-13],[-20,-13],[-24,19],[-8,45],[-11,21],[-28,10],[-55,1],[-34,-7],[-12,-61],[-21,-59],[-26,-21],[-19,23],[-7,58],[-1,64],[-25,22],[-34,-11],[-18,-25],[-9,-36],[-23,-23],[-30,9],[-23,28],[-20,20],[-27,20],[-29,11],[-28,-4],[-26,24],[-33,20],[-34,17],[-50,-3],[-24,-43],[-2,-31],[-11,-35],[-20,-24],[-28,11],[-28,32],[-21,20],[-22,3],[-22,1],[-20,-21],[-31,6],[-22,-2],[-10,-28],[9,-38],[10,-29],[1,-3],[-10,-44],[-11,-54],[-24,-51],[-16,-45],[0,-39],[13,-38],[21,-40],[46,-48],[32,-40],[18,-36],[-5,-28],[-12,-52],[-20,-51],[-21,-43],[-75,-105],[-49,-65],[-83,-106],[-77,-81],[-67,-68],[-14,-41],[29,-60],[7,-88],[-13,-88],[-19,-126],[5,-120],[-14,-93],[-35,-69],[-32,-35],[-94,-40],[-88,-56],[-92,-24],[-96,9],[-32,23],[-65,49],[-51,108],[-48,110],[-32,96],[-16,77],[-35,67],[-48,5],[-49,-8],[-27,-74],[-30,-6],[-61,24],[-68,32],[-104,27],[-154,-3],[-51,-3],[-55,-80],[-62,-77],[-123,-69],[-101,-48],[-90,-64],[-135,-110],[-83,-106],[-35,-109],[-65,-123],[-76,-101],[-66,-72],[-77,-70],[-68,-42],[-35,42],[-58,54],[-62,-22],[-75,29],[-77,59],[-41,83],[-5,144],[55,186],[31,139],[15,64],[-27,28],[-35,12],[-67,0],[-36,-24],[-67,-56],[-46,40],[-23,40],[9,32],[85,45],[71,64],[33,64],[-9,54],[-46,74],[-76,51],[-153,128],[-29,64],[-46,24],[-1,61],[-52,94],[-83,112],[-35,136],[-43,104],[-35,82],[9,118],[-4,25],[-8,52],[-55,53],[-41,70],[37,87],[55,62],[115,37],[70,-58],[66,-54],[44,0],[43,56],[-9,88],[-30,51],[-50,37],[-51,21],[-37,78],[-43,104],[-68,69],[-80,8],[-57,-24],[-58,16],[-173,261],[-106,43],[-83,24],[-67,35],[-60,5],[-25,-3],[-25,27],[-34,-8],[-14,-64],[-72,-91],[-73,-88],[-79,-49],[-99,-61],[-582,-723],[-85,-46],[-95,-66],[-85,-108],[-88,-100],[-85,-136],[-46,-125],[-44,-154],[-15,-166],[-4,-167],[16,-146],[37,-130],[20,-111],[-15,-140],[2,-95],[25,-36],[-8,-59],[-37,-5],[-28,-54],[-32,-31],[26,-82],[-21,-110],[-52,-97],[-70,-126],[-122,-184],[-14,-95],[-53,-46],[-3,-50],[-3,-47],[-16,-22],[-17,-22],[-40,-15],[-24,-103],[7,-48],[-43,-59],[-95,-41],[-56,18],[-17,61],[-9,36],[-17,34],[-39,84],[-47,39],[-32,3],[24,38],[-5,31],[-50,15],[-103,-63],[-61,-53],[-16,-18],[-40,-42],[-47,-35],[-77,-56],[-49,-24],[-14,-9],[-30,-21],[-31,-38],[-17,-62],[-17,-26],[-53,-2],[-22,-18],[-13,-51],[-7,-14],[-22,-39],[-38,-12],[-79,-113],[-74,-92],[-53,-1],[-30,-25],[-12,-47],[-2,-48],[-17,-51],[-48,-9],[-55,-46],[-32,-20],[-61,-1],[-26,-29],[-24,-24],[-17,-35],[-26,-12],[-34,12],[-26,-14],[-33,-10],[-44,-139],[-59,-119],[-56,-52],[-60,-20],[-38,8],[-36,88],[-28,63],[-29,24],[-31,-7],[-30,-25],[-50,-3],[-45,-26],[-32,-62],[-14,-69],[-18,-78],[-22,-34],[-23,-10],[-40,20],[-34,35],[-28,-3],[-13,-44],[8,-56],[3,-3],[20,-25],[5,-47],[-35,-64],[-32,-37],[-39,-17],[-74,-71],[-126,-131],[-100,-109],[-21,-65],[-49,-16],[-12,-53],[-16,-23],[-30,-9],[-13,-39],[5,-61],[-2,-58],[-20,-54],[-46,-15],[-53,-25],[-44,-20],[-35,-51],[26,-47],[-6,-38],[-22,-34],[-34,16],[-41,3],[-33,-22],[-23,-16],[8,-20],[7,-22],[-16,-17],[-33,11],[1,-44],[-8,-60],[-22,-1],[-26,32],[-26,0],[-17,-23],[2,-44],[-4,-51],[-22,-37],[-44,-15],[-36,-8],[-27,-8],[-9,-11],[0,-30],[17,-35],[-9,-82],[-39,-109],[-10,-18],[-34,-67],[-19,-67],[5,-45],[0,-68],[-23,-78],[-48,-149],[-76,-402],[-16,-53],[-4,-47],[-26,-43],[-14,-43],[17,-63],[56,-77],[-8,-90],[43,-34],[38,-113],[78,-45],[34,34],[49,0],[49,-37],[20,-116],[71,-90],[94,-142],[55,-104],[71,-82],[45,-114],[52,-87],[26,-136],[25,-116],[13,-73],[22,-26],[50,-12],[34,2],[32,-10],[30,-26],[23,-17],[4,-31],[33,-27],[25,-48],[17,-31],[9,-23],[0,-22],[-9,-21],[-2,-27],[-11,-22],[-38,-49],[-73,-85],[-29,-19],[-29,-18],[-7,-13],[-76,-99],[-11,-67],[-14,-127],[-32,-179],[-10,-90],[-4,-35],[-1,-14],[-16,-208],[-1,-6],[-1,-16],[-29,-110],[-128,-164],[-30,-108],[15,-87],[41,-68],[66,-42],[92,-17],[28,-23],[11,-54],[-17,-73],[-55,-66],[-74,1],[-4,0],[-56,11],[-119,-39],[-77,22],[-63,45],[-45,-19],[-22,-94],[-17,-45],[-81,-8],[-9,-1],[-41,6],[-40,-45],[-37,28],[-52,58],[-26,6],[-13,-40],[-1,-1],[-34,-45],[-46,22],[-22,-2],[-18,-35],[-4,-67],[-25,-33],[-41,-8],[-42,20],[-20,-28],[-50,-5],[-56,34],[-41,65],[-55,121],[-89,195],[-31,112],[-26,40],[8,72],[-34,8],[-54,-3],[-36,57],[-20,-8],[-19,-7],[-56,-166],[-42,-19],[-24,-40],[-13,-36],[-8,-22],[-18,-50],[-11,-23],[-36,-81],[-23,-47],[-12,-24],[25,-136],[0,-398],[-1,-105],[-14,-124],[-27,-44],[-18,-78],[-39,-73],[0,-88],[47,-212],[30,-150],[17,-150],[-14,-61],[-84,-72],[-56,-102],[26,-135],[10,-136],[48,-34],[75,-37],[21,-36],[-2,-102],[-11,-201],[-8,-130],[-31,-76],[-81,-12],[-107,-22],[-129,-144],[-113,-136],[-217,-334],[-75,-22],[-66,19],[-78,26],[-73,14],[-52,-51],[-21,-102],[-34,-82],[-8,-19],[-23,-54],[6,-51],[38,-68],[0,-54],[-41,-65],[-47,-42],[-70,-25],[-46,-43],[3,-54],[34,-65],[36,-73],[2,-153],[-40,-169],[19,-68],[-92,-74],[-42,-48],[-45,-52],[-73,-82],[-24,-27],[-196,-439],[-13,-30],[-45,-63],[-19,-28],[-28,-34],[-58,20],[-37,-61],[-33,-156],[-65,-161],[-33,-34],[-53,-4],[-45,9],[-23,-30],[-23,-111],[-24,-169],[13,-139],[-9,-92],[-20,-52],[-41,-101],[0,-94],[8,-64],[-21,-89],[-31,-84],[-2,-69],[19,-67],[-32,-91],[-13,-34],[-95,-67],[-26,-103],[5,-166],[37,-103],[11,-125],[-26,-201],[-42,-158],[-35,-61],[-70,-39],[-53,3],[-28,-31],[-30,-78],[-22,-86],[-73,-86],[-28,-72],[-26,-25],[-15,-23],[-49,-25],[-37,-2],[-22,-23],[-24,-86],[-28,-83],[-33,-15],[-70,-2],[-94,-67],[-72,-158],[-29,-139],[-57,-200],[-27,-99],[-32,-115],[2,-64],[-11,-39],[-19,-70],[0,-66],[29,-59],[11,-66],[9,-94],[-3,-134],[-45,-112],[-55,-89],[-90,-82],[-82,-107],[1,-109],[-1,-175],[2,-77],[-4,-97],[-15,-93],[-50,-148],[-74,-214]],[[408537,385661],[-760,1698],[-1023,2286],[-179,398],[-36,81],[-64,143],[-60,133],[-60,136],[-58,127],[-2,6],[-9,20],[-46,103],[-43,95],[-49,110],[-265,593],[-120,267],[-149,332],[-151,337],[-140,314],[-44,97],[-18,40],[-6,15],[-16,36],[-3,6],[-3,7],[-3,7],[-1,1],[-1,2],[-1,3],[-1,2],[-22,50],[-2,4],[-18,40],[-6478,14377],[-14,29],[-86,193],[-1,1],[-113,251],[-17,38],[-1,1],[-3,7],[-1,3],[-1,2],[-11,19],[-1968,3471],[-1132,1995],[-174,306],[-537,947],[-106,187],[-556,980],[-1,2],[-148,260],[-1,3],[-22,39],[-18,32],[-70,122],[-45,80],[-24,42],[-38,68],[-36,62],[-37,66],[-41,72],[-39,70],[-36,63],[-39,69],[-40,69],[-36,64],[-38,68],[-67,118],[-60,106],[-60,105],[-68,120],[-55,97],[-1,2],[-8,14],[-15,25],[-11,20],[-12,22],[-12,21],[-8,14],[-66,117],[-29,50],[-28,50],[-17,29],[-21,39],[-23,39],[-21,37],[-24,42],[-12,21],[-38,68],[-57,101],[-52,91],[-55,97],[-55,97],[-56,98],[-53,95],[-52,90],[-55,98],[-1,2],[-52,91],[-29,52],[-35,62],[-31,53],[-28,50],[-27,47],[-30,54],[-32,55],[-32,57],[-33,58],[-31,56],[-13,23],[-1,1],[-3,5],[-5,10]],[[391802,419807],[-3638,6012],[-91,150],[-38,63],[-24,40],[-203,335],[-1749,2892],[-6413,10348],[-752,1284],[-396,1303]],[[378498,442234],[-613,3999],[-968,6316],[-4690,30595],[-359,2340],[-3,16],[-334,2184],[-1918,13102],[-219,1493]],[[369394,502279],[493,386],[383,159],[270,194],[328,298],[435,720],[199,193],[216,113],[250,51],[381,-56],[442,-143],[300,-32],[350,264],[223,92],[310,41],[218,148],[222,294],[108,320],[11,420],[13,367],[83,135],[382,320],[177,68],[188,-15],[267,-109],[207,-48],[239,104],[176,219],[-50,417],[129,284],[333,351],[751,967],[264,285],[225,98],[281,-27],[616,237],[340,304],[298,687],[123,242],[286,223],[188,204],[239,441],[303,379],[414,270],[908,749],[289,192],[1047,695],[138,346],[192,207],[61,66],[452,373],[62,51],[206,247],[206,246],[521,464],[309,100],[242,128],[251,475],[283,355],[707,647],[189,268],[75,560],[79,483],[-7,143],[-7,143],[-72,232],[-8,28],[66,417],[24,102],[127,543],[159,369],[53,122],[228,443],[166,133],[148,38],[415,-124],[187,-96],[291,-32],[19,11],[188,98],[164,342],[169,109],[245,28],[255,90],[59,44],[211,155],[211,0],[179,-132],[113,-105],[186,19],[261,147],[179,138],[79,71],[65,247],[17,217],[-26,210],[0,402],[-3,228],[-8,242],[83,256],[64,158],[82,99],[107,136],[143,76],[63,-12],[89,-51],[110,-273],[35,-88],[113,-208]],[[43351,3780],[-164,-110],[-148,93],[-150,124],[22,261],[531,493],[153,-123],[52,-200],[-123,-232],[-173,-306]],[[55186,4394],[-133,-32],[-122,106],[-29,176],[51,197],[70,168],[114,119],[183,72],[90,-107],[8,-9],[-27,-211],[-163,-303],[-42,-176]],[[81962,7745],[-22,-383],[-83,-182],[-87,-379],[-70,-160],[-105,-154],[-332,-308],[-191,-278],[-128,9],[-77,157],[283,706],[54,379],[-4,370],[46,170],[81,147],[127,-2],[120,-113],[287,143],[101,-122]],[[80980,38656],[-106,-19],[-71,223],[126,393],[121,240],[438,335],[198,84],[126,-37],[-155,-258],[-154,-165],[-383,-646],[-140,-150]],[[56069,49317],[-446,-153],[-133,27],[-84,139],[-14,191],[68,193],[149,81],[141,9],[411,-56],[69,-152],[-34,-171],[-127,-108]],[[64253,54471],[-650,-865],[-107,-102],[-134,-71],[-190,28],[-165,105],[-176,44],[-196,-8],[-511,-371],[-437,30],[-169,-74],[-234,-169],[-62,-153],[-107,-109],[-114,76],[-36,206],[64,164],[37,446],[83,138],[319,93],[97,380],[135,101],[158,-6],[283,-144],[147,48],[149,2],[252,-121],[278,-78],[162,-6],[274,99],[106,89],[227,748],[227,260],[106,168],[134,70],[261,-32],[113,-76],[133,-310],[235,-161],[-92,-228],[-446,-105],[-154,-106]],[[84633,55429],[-127,-52],[-114,82],[-63,176],[70,419],[163,443],[105,151],[424,96],[106,127],[79,-134],[-1,-200],[-62,-167],[-234,-213],[-154,-426],[-192,-302]],[[50506,57818],[-120,-107],[-394,28],[-77,199],[34,178],[-27,169],[-87,147],[-40,178],[12,218],[99,163],[523,54],[318,69],[1,-175],[-93,-414],[-27,-370],[-44,-196],[-78,-141]],[[78076,60606],[76,-192],[-105,-157],[-219,-225],[-128,-81],[-148,-20],[-63,70],[-64,70],[-30,172],[52,225],[120,42],[127,-41],[191,69],[191,68]],[[45850,62747],[-127,-104],[-112,114],[-127,47],[-31,179],[177,112],[130,-9],[98,-129],[-8,-210]],[[75728,63136],[58,-492],[126,-188],[128,-78],[451,-52],[92,-145],[135,-137],[141,71],[56,190],[269,529],[213,184],[112,-148],[-13,-207],[-183,-401],[-227,-258],[-77,-154],[-24,-249],[128,-325],[8,-181],[-57,-153],[-326,-177],[-323,-544],[-353,-179],[-108,-137],[-473,-955],[-296,-445],[-156,-125],[-261,-101],[-141,76],[-120,113],[-255,-29],[-144,28],[-153,-14],[-360,-355],[-93,-121],[-105,-439],[-8,-248],[50,-370],[-21,-194],[-380,-604],[-128,-139],[-129,-14],[-444,63],[-127,-108],[-206,-272],[-268,-137],[-156,-11],[-296,97],[-190,-34],[-389,-154],[-156,-14],[-298,73],[-275,-87],[-403,-70],[-741,-4],[-325,342],[-249,46],[-27,214],[177,373],[361,482],[261,209],[353,73],[148,92],[354,574],[360,344],[360,122],[389,271],[331,43],[516,-60],[403,219],[100,107],[149,330],[19,218],[86,203],[319,409],[75,151],[100,587],[72,181],[374,658],[64,158],[156,582],[184,326],[126,66],[136,-22],[105,140],[76,182],[121,86],[128,-30],[92,393],[225,233],[157,213],[267,-165],[218,-197],[135,-328]],[[78853,64363],[91,-348],[-21,-184],[-71,-185],[-29,-175],[-90,-152],[-144,-23],[-210,242],[-142,46],[-57,163],[-64,50],[-63,49],[-240,-234],[-127,-12],[-28,179],[127,95],[92,334],[-127,60],[-142,-57],[0,202],[221,240],[75,189],[101,149],[318,173],[140,40],[94,-139],[49,-164],[98,-121],[135,-54],[35,-175],[-21,-188]],[[80166,68556],[-430,-76],[-138,20],[-138,20],[-50,171],[113,357],[1,195],[-63,380],[6,182],[43,203],[76,196],[200,296],[260,143],[64,168],[100,149],[135,5],[125,-349],[42,-370],[52,-189],[-86,-388],[28,-186],[-23,-367],[-76,-236],[-241,-324]],[[58832,71810],[71,-155],[84,-353],[107,-104],[62,-204],[-19,-187],[-141,-442],[156,-566],[-58,-420],[-94,-129],[-126,-66],[-310,38],[-113,110],[14,399],[-100,167],[-21,180],[37,178],[239,536],[-8,175],[-231,147],[-57,161],[69,167],[98,135],[80,217],[140,-18],[121,34]],[[52563,72859],[-401,-248],[-106,93],[-31,268],[129,338],[58,266],[130,-39],[264,-81],[64,-354],[-107,-243]],[[57228,78742],[-134,-57],[-247,267],[-106,633],[63,153],[232,134],[72,164],[50,207],[163,310],[388,-158],[105,-111],[16,-184],[-44,-179],[-98,-211],[-268,-385],[-122,-436],[-70,-147]],[[52556,81571],[141,-132],[59,-160],[-1,-188],[-53,-45],[-52,-44],[-454,-30],[-219,-277],[-106,-356],[13,-174],[-48,-235],[-240,-368],[-403,-485],[-77,-213],[-57,-383],[7,-424],[-128,-465],[-56,-507],[-69,-232],[-106,-130],[-142,-60],[-313,-244],[-126,-63],[-115,117],[9,193],[332,1049],[-78,179],[-233,240],[-78,141],[-105,330],[-72,413],[-224,499],[-242,170],[8,194],[127,616],[49,375],[-29,423],[37,226],[133,78],[304,-63],[268,17],[285,149],[260,229],[197,258],[298,774],[121,76],[353,341],[141,63],[133,-9],[120,-68],[85,-130],[36,-175],[-34,-178],[42,-203],[-8,-371],[35,-172],[184,-430],[91,-136]],[[54352,90358],[-64,-43],[-64,22],[-63,22],[-93,132],[128,249],[233,178],[93,-132],[-44,-221],[-63,-163],[-63,-44]],[[51717,91214],[-122,-42],[-268,83],[-83,138],[-58,159],[70,109],[275,189],[150,262],[15,15],[184,189],[153,55],[158,-109],[-37,-143],[23,-218],[-45,-176],[-105,-106],[-73,-153],[-105,-140],[-132,-112]],[[53539,92677],[-142,-9],[-109,60],[-26,14],[-61,184],[34,177],[496,580],[62,-149],[22,-417],[-107,-126],[-63,-185],[-106,-129]],[[54175,98893],[297,-121],[121,66],[142,-2],[76,-133],[29,-201],[-65,-317],[-6,-29],[-93,-139],[-288,-238],[-101,-174],[-133,-94],[-290,-67],[-86,13],[-42,7],[-77,144],[21,246],[149,332],[-7,488],[64,160],[141,84],[148,-25]],[[53222,99918],[125,-77],[123,-330],[13,-188],[-120,-85],[-126,40],[-243,184],[-36,182],[15,225],[127,-6],[122,55]],[[51037,99475],[-88,-56],[-32,80],[42,165],[235,419],[147,157],[72,147],[27,171],[121,93],[127,-3],[79,-158],[-65,-160],[-212,-303],[-183,-267],[-162,-61],[-108,-224]],[[55072,103451],[-134,-2],[-121,288],[114,78],[141,150],[92,150],[128,121],[276,10],[141,68],[91,128],[114,-97],[-72,-284],[-98,-181],[-9,-8],[-239,-247],[-127,-90],[-297,-84]],[[52147,107570],[-92,-46],[-85,31],[0,89],[91,132],[51,176],[83,129],[39,140],[164,64],[203,0],[-77,-183],[-117,-102],[-106,-175],[-47,-165],[-107,-90]],[[74577,107145],[-91,-121],[-105,128],[126,231],[90,355],[191,381],[-6,192],[78,350],[203,-259],[86,-110],[14,-195],[-78,-371],[-233,-377],[-275,-204]],[[65750,114747],[7,-206],[199,-250],[-21,-204],[-184,-99],[-85,-159],[-113,-89],[-157,-51],[-98,135],[-1,227],[93,410],[-106,97],[-133,-16],[-44,186],[57,163],[100,163],[33,181],[94,139],[254,-12],[48,-181],[-14,-187],[71,-247]],[[64223,114845],[-83,-402],[-107,-167],[-126,-128],[-227,-573],[-120,-158],[-664,-636],[-163,34],[-120,109],[-119,-52],[-198,-244],[-135,-43],[-143,400],[72,377],[-20,184],[-108,111],[86,179],[141,84],[112,151],[212,537],[177,314],[42,447],[135,-36],[107,-152],[75,-179],[37,-203],[84,-140],[135,-22],[326,111],[161,121],[120,96],[313,375],[118,83],[100,-112],[-35,-168],[-185,-298]],[[73036,115362],[-86,-354],[-112,-103],[-197,285],[-113,89],[-114,-89],[-127,133],[176,273],[157,103],[80,78],[108,129],[162,82],[100,-292],[54,-177],[-88,-157]],[[74651,115852],[-94,-61],[-81,13],[-68,136],[-45,143],[99,116],[122,265],[103,47],[167,14],[68,-184],[0,-224],[-78,-103],[-94,-87],[-99,-75]],[[66576,118124],[36,-11],[156,20],[77,-165],[-49,-162],[-128,-156],[-76,-182],[-37,-175],[-113,-78],[-389,27],[-111,138],[-51,191],[313,595],[133,35],[239,-77]],[[68117,118815],[-127,-100],[-91,-128],[-126,78],[-100,122],[-93,-153],[63,-173],[-97,-149],[-228,182],[-48,189],[-7,205],[29,181],[105,353],[91,180],[143,77],[466,-110],[111,-100],[94,-156],[118,-120],[43,-182],[-83,-131],[-114,-61],[-149,-4]],[[71488,116773],[-275,-93],[-57,163],[79,224],[43,264],[-22,410],[34,233],[269,481],[932,660],[107,277],[254,197],[92,173],[135,146],[127,49],[86,-136],[-58,-208],[-133,-235],[-128,-145],[-290,-551],[-113,-93],[-269,-89],[-111,-120],[-100,-163],[-157,-378],[-177,-301],[-168,-581],[-100,-184]],[[85594,119323],[-216,-252],[-11,-12],[-127,-39],[-345,79],[-151,-27],[-139,-143],[-184,-604],[112,-151],[50,-171],[15,-204],[-51,-317],[-63,-184],[-148,-189],[-156,-14],[-133,143],[-129,30],[-98,-122],[-105,-268],[-85,-141],[-369,-263],[-127,-142],[-92,-485],[-210,-194],[-122,48],[-106,145],[-40,226],[-9,391],[78,141],[212,252],[147,377],[269,422],[114,371],[220,315],[54,217],[79,175],[269,255],[430,982],[212,239],[122,11],[150,-42],[330,-22],[127,-105],[255,-131],[162,-340],[-55,-181],[-136,-76]],[[83734,121004],[-111,-120],[-141,-12],[-284,111],[-135,-46],[-218,139],[113,99],[157,312],[105,92],[297,130],[127,1],[70,-92],[28,-36],[49,-199],[9,-182],[-66,-197]],[[87587,122769],[-241,-430],[-127,5],[-49,185],[164,553],[216,209],[150,40],[-113,-562]],[[93682,130987],[-280,88],[-487,170],[-378,109],[-365,0],[-338,-48],[-338,-95],[-287,-111],[-11,-5],[-360,-217],[-338,-218],[-892,-584],[-924,-605],[-1271,-898],[-447,-384],[-107,-92],[-699,-686],[-239,-272],[-72,-109],[-76,-38],[-5,-3],[-109,17],[-73,84],[-84,144],[-54,105],[-54,106],[-171,102],[-140,13],[-221,-47],[-230,-163],[-288,-191],[-361,-319],[-288,-374],[-167,-245],[-153,-360],[-51,-304],[-84,-240],[-99,-129],[-235,-150],[-167,-98],[-428,-4],[-156,-97],[-141,-32],[-132,-379],[-58,-158],[-94,-224],[-81,-159],[-70,-127],[-98,-156],[-90,-121],[-86,-78],[-106,-85],[-94,-55],[-95,-37],[-160,-20],[-187,10],[-196,34],[-191,7],[-149,-7],[-160,-27],[-180,-68],[-95,-31],[-59,-58],[-65,-71],[-99,-126],[-50,-92],[-31,-85],[-5,-64],[84,-58],[38,-75],[20,-98],[-22,-102],[-36,-123],[-34,-112],[-11,-143],[-18,-200],[-104,-422],[-42,-345],[-154,-179],[-187,-128],[-147,-89],[-142,-54],[-83,-95],[-111,-64],[-88,-8],[-38,11],[-96,-41],[-505,-299],[-198,-75],[-251,-105],[-18,-63],[16,-87],[126,-92],[145,-27],[157,14],[86,-62],[23,-88],[-42,-163],[-197,-95],[-280,-204],[-374,-102],[-279,-55],[-194,136],[-95,211],[-72,48],[-176,13],[-189,-204],[-432,-346],[-180,-259],[-150,-325],[-171,-225],[-40,-286],[22,-177],[-194,-210],[-201,-111],[-91,-19],[-114,-105],[-107,85],[-74,133],[-147,78],[-185,75],[-72,47],[-117,-7],[-97,62],[7,179],[22,201],[203,245],[2,177],[112,310],[75,254],[90,102],[221,163],[293,136],[291,60],[295,389],[144,360],[14,143],[-5,136],[18,224],[433,340],[171,224],[104,164],[49,122],[73,197],[13,109],[-17,159],[58,133],[-15,151],[78,128],[-77,204],[-86,258],[-126,191],[-135,-7],[-140,27],[-121,34],[-98,121],[-69,321],[-4,59],[-14,233],[-149,157],[-148,122],[-302,231],[-235,109],[-203,7],[-76,-55],[-16,-70],[-29,-134],[-144,-170],[-320,-442],[-185,-74],[-356,-68],[-338,-34],[-95,74],[-190,-45],[-8,-2],[-1,0],[-1,-1],[-3,0],[-6,-2],[-14,-3],[-137,-35],[-247,-301],[-200,-86],[-89,52],[-73,-18],[-171,-279],[-158,-177],[-157,39],[-91,308],[86,95],[-77,170],[-121,88],[-135,61],[-136,68],[-133,7],[-11,0],[-117,-34],[-45,-115],[18,-131],[10,-74],[-96,-298],[-15,-227],[-2,-33],[-65,-62],[-66,-63],[-131,-125],[-151,-277],[-79,25],[9,123],[41,149],[13,184],[-36,217],[-29,137],[-30,137],[77,454],[7,169],[68,116],[96,163],[-36,157],[-80,137],[-19,33],[-387,374],[-239,197],[-249,81],[-192,-24],[-73,-10],[-323,-109],[-20,-6],[-428,-211],[-567,-360],[-559,-456],[-631,-646],[-289,-190],[-301,-195],[-248,-97],[-1059,-558],[-230,-75],[-108,-6],[-158,-238],[-162,-95],[-55,95],[5,74],[113,143],[63,238],[108,360],[49,286],[-67,177],[-140,258],[-103,82],[-134,30],[-355,174],[-93,23],[-48,-1],[-28,32],[-55,-14],[-173,-44],[-128,-47],[-77,-72],[-74,-105],[-115,-58],[-81,95],[-52,72],[-5,149],[-9,187],[-55,14],[-105,109],[-81,13],[-119,-71],[-118,-123],[-268,-295],[-23,-24],[-139,-136],[-86,-133],[-40,-54],[-5,-48],[30,-27],[29,-27],[38,-102],[21,-313],[-16,-105],[-29,-163],[56,-160],[-45,-262],[-9,-112],[76,-241],[57,-89],[-5,-88],[-54,-105],[-223,-269],[-160,-126],[-88,-187],[-38,-159],[-126,-55],[-66,17],[-31,-102],[-3,-107],[-49,-63],[-63,-47],[-81,-24],[-35,61],[-80,14],[-59,51],[-72,98],[-25,-64],[-47,-28],[-25,38],[-47,122],[-90,116],[-93,95],[-94,61],[-198,4],[-88,57],[-51,100],[30,125],[0,136],[-42,81],[-110,148],[-32,46],[0,1],[-14,19],[-16,113],[-238,207],[-100,-69],[-94,-26],[-80,-6],[-56,-4],[16,-58],[-25,-55],[-36,-23],[-113,-84],[-74,-86],[-31,-131],[-243,-234],[-35,-33],[-110,-105],[-9,-82],[-36,-133],[32,-74],[-3,-96],[-58,-91],[49,-99],[-119,-92],[-118,44],[37,228],[22,61],[-31,116],[-68,146],[-76,126],[-298,299],[-133,105],[-92,31],[-197,-106],[-73,-19],[-69,-13],[-121,-25],[-103,12],[-74,-12],[-65,-48],[-36,-15],[-45,-15],[-35,-12],[-74,-5],[-98,-25],[-18,-4],[-1,0],[-66,-21],[-49,-30],[-46,-54],[-46,-113],[-55,-194],[-34,-102],[-34,-103],[1,-102],[-11,-24],[-12,-24],[-50,-43],[-293,-256],[-360,-299],[-338,-415],[-415,-577],[-658,-1041],[-133,-304],[-74,-185],[-27,-304],[45,-152],[72,14],[221,61],[225,-272],[183,-177],[81,-147],[-2,-145],[-59,-41],[-281,-79],[-75,-63],[-36,-130],[-81,-319],[-5,-238],[172,-20],[148,-28],[91,-156],[-37,-150],[-102,-202],[-438,-328],[-406,-183],[-221,-41],[-257,-55],[-40,82],[149,136],[40,116],[-90,129],[-113,61],[-162,41],[-180,-27],[-140,-48],[-144,-129],[-104,-177],[-586,-1394],[-38,-139],[-38,-139],[-20,-164],[-8,-58],[-13,-105],[-13,-231],[40,-92],[41,-91],[31,-89],[63,-4],[167,-43],[140,47],[97,-69],[110,-12],[63,-68],[-22,-123],[-112,-204],[-114,-258],[-256,-252],[-254,-216],[-161,-49],[-97,-88],[-97,-88],[-257,-136],[-126,-55],[81,-510],[95,-603],[49,-614],[59,-149],[297,81],[95,-81],[104,-177],[-36,-156],[-99,-238],[31,-136],[106,-276],[16,-159],[-54,-218],[-104,-50],[-198,9],[-144,198],[-50,278],[-68,62],[-126,-34],[-103,-102],[-131,-184],[-203,-462],[-333,-866],[-217,-725],[-207,-897],[-121,-1106],[-28,-186],[14,-150],[51,-165],[52,-164],[266,-1316],[-9,-109],[-9,-108],[-64,-170],[-99,-151],[-230,-263],[-66,-273],[-272,-911],[-58,-196],[-112,-287],[-167,-727],[-18,-175],[-49,-486],[-39,-375],[-39,-375],[9,-458],[10,-531],[57,-248],[56,-247],[56,-125],[61,-182],[35,-44],[31,-12],[29,-53],[55,-155],[15,-62],[16,-21],[31,4],[179,133],[137,65],[57,34],[4,62],[27,25],[117,22],[120,75],[201,124],[116,26],[119,-12],[94,-31],[95,-31],[153,-122],[135,-190],[59,-150],[104,-57],[171,-58],[176,-170],[171,-123],[41,-176],[-1,-74],[0,-341],[-161,-603],[-113,-193],[-6,-79],[-6,-80],[-321,-422],[-419,-552],[-112,-100],[-195,-176],[-1472,-1320],[360,-345],[-261,-1064],[128,-1486],[42,-71],[25,-77],[336,-539],[114,-173],[293,-143],[320,53],[165,-320],[-45,-199],[-586,-502],[-11,-1250],[-416,113],[-113,-501],[213,-334],[58,-91],[-51,-176],[-524,-494],[-337,-180],[-927,196],[-372,-300],[-231,-596],[116,-1987],[-481,-416],[-34,-188],[332,-397],[-157,-526],[792,-1032],[644,352],[557,-3],[124,-111],[180,-490],[-29,-181],[-231,-106],[-100,-370],[100,-554],[189,-394],[-155,-286],[-707,-122],[-217,-519],[-136,-82],[-669,855],[-284,270],[-136,-19],[-501,-909],[-488,-589],[-63,-644],[0,-11],[4,-275],[-5,-232],[28,-318],[-10,-24],[-145,-354],[-140,-182],[-812,379],[-226,-335],[-162,-450],[27,-256],[599,-950],[129,19],[741,995],[770,38],[438,-212],[0,-56],[0,-165],[-854,-1475],[-396,-252],[-501,337],[-333,-211],[-29,-349],[291,-428],[-61,-786],[-717,-275],[-322,421],[-209,-33],[-281,-425],[-126,-569],[-89,-405],[-137,-620],[5,-1041],[585,-958],[840,-1572],[3,-53],[155,-270],[275,359],[-49,-463],[-50,-463],[148,-343],[532,249],[282,-130],[-176,-1300],[175,-257],[536,-278],[-224,-355],[262,-397],[111,-740],[-188,-99],[-728,-117],[-235,-481],[58,-157],[374,-221],[346,-543],[56,-576],[-225,-615],[-200,-547],[-401,-1095],[28,-725],[218,-252],[849,-89],[530,279],[210,-65],[850,190],[435,239],[101,19],[310,57],[566,-149],[375,294],[375,1867],[192,525],[380,567],[304,902],[426,106],[579,-340],[197,-278],[282,-71],[433,505],[219,477],[1434,920],[566,858],[133,612],[-163,310],[-431,32],[-183,306],[-261,-63],[-21,334],[763,352],[571,590],[86,-370],[134,22],[190,257],[423,1666],[404,248],[156,-30],[76,-467],[-117,-849],[162,-267],[226,126],[203,880],[241,221],[150,-1],[572,-739],[148,-32],[346,338],[303,809],[127,794],[8,485],[-176,736],[505,1168],[463,2427],[282,675],[432,374],[1116,92],[331,260],[383,542],[246,12],[-192,-745],[-26,-775],[-375,-655],[249,-483],[12,-363],[-149,-456],[240,-518],[573,-203],[410,246],[806,127],[514,-324],[906,299],[404,-229],[854,-154],[-14,-544],[108,-347],[-271,-708],[141,-567],[531,-107],[184,-311],[727,-553],[920,481],[219,-63],[105,-212],[15,-862],[-376,-223],[-782,112],[-539,-347],[-310,-395],[-326,-979],[-445,-699],[-71,-250],[248,-510],[120,-59],[325,345],[100,-108],[57,-365],[-241,-1402],[105,-822],[-283,-664],[-699,-450],[-1239,664],[-159,499],[325,507],[-22,187],[-106,339],[-312,413],[-1005,83],[-448,-695],[-254,-6],[182,1221],[218,338],[163,571],[480,588],[44,406],[-136,23],[-224,-426],[-502,-333],[-219,-758],[-1423,-1153],[-759,-1240],[-463,-351],[-267,69],[-72,159],[-95,1484],[-781,-209],[-429,1098],[-722,-16],[-439,328],[-128,-24],[-49,-167],[184,-553],[-28,-549],[644,-684],[198,-630],[-9,-339],[-118,-406],[-890,-824],[-254,-696],[20,-381],[156,-29],[1081,632],[231,752],[158,148],[627,-487],[58,-592],[-71,-188],[-530,-347],[-772,-1222],[-975,-624],[-298,-496],[-358,-284],[-778,27],[-170,287],[58,458],[-78,450],[-609,447],[-140,-153],[-251,-1237],[-483,-857],[-561,-688],[51,-405],[254,-291],[651,392],[458,3],[171,-36],[-44,-366],[-686,-716],[-541,-181],[-772,215],[-190,283],[-140,539],[-112,-78],[-179,-314],[-270,-188],[-125,-369],[60,-177],[864,-411],[368,-407],[155,-142],[-14,-122],[-129,-123],[-76,-215],[-143,-79],[-220,71],[-143,-115],[-191,-237],[-233,-374],[-136,-328],[-241,-255],[-229,-86],[-229,-130],[-410,-352],[-372,-302],[-167,79],[-176,79],[-181,7],[-110,14],[-96,-86],[-6,-59],[169,-56],[85,-50],[6,-80],[4,-64],[253,-238],[152,89],[115,-24],[243,309],[9,4],[497,212],[209,36],[148,72],[358,-187],[167,-108],[214,-75],[220,3],[185,14],[268,209],[138,159],[-33,158],[-48,194],[81,108],[129,14],[86,80],[100,7],[67,-43],[-34,-123],[38,-151],[89,-30],[226,167],[186,50],[215,130],[95,122],[177,345],[9,137],[-100,345],[-29,461],[143,108],[129,-87],[186,-172],[179,-75],[79,104],[38,172],[-38,259],[90,285],[385,132],[424,-117],[35,-149],[-124,-230],[-166,-201],[-229,-288],[-47,-193],[-101,-102],[-34,-187],[101,-295],[119,43],[152,187],[158,252],[162,115],[310,0],[339,36],[281,-65],[110,101],[190,432],[43,316],[105,151],[283,271],[85,578],[525,1303],[148,134],[268,-350],[452,180],[213,201],[444,1008],[367,361],[1023,192],[163,-328],[299,-98],[267,137],[284,379],[1061,203],[218,42],[42,-516],[277,-776],[846,-997],[403,-141],[131,27],[131,28],[235,451],[811,881],[417,89],[2,-2],[216,-243],[261,-1],[659,877],[832,599],[445,153],[404,-205],[168,-313],[-11,-321],[-510,-609],[-184,-553],[-488,-458],[-149,-662],[-268,-604],[-268,41],[-282,-409],[-659,-458],[-168,-228],[-341,-323],[-12,-90],[-7,-133],[40,-97],[96,-130],[81,-56],[5,-142],[-53,-109],[22,-68],[-41,-89],[0,-86],[24,-126],[-43,-126],[-84,-94],[-152,-158],[-60,-129],[-78,-69],[-89,-93],[-50,-151],[-50,-155],[-71,-165],[-160,-256],[-107,-201],[-167,-288],[-132,-244],[-395,-544],[-67,-151],[-36,-198],[-11,-217],[-63,-110],[-107,-79],[-155,-65],[-36,-54],[-14,-104],[14,-234],[22,-227],[21,-183],[-27,-77],[46,-171],[77,-144],[19,-54],[-24,-94],[-38,-82],[-82,-11],[-97,-22],[-74,-93],[-100,-130],[-84,-133],[-19,-88],[-19,-87],[10,-328],[-10,-288],[-5,-428],[3,-266],[-60,-227],[-65,-165],[-95,-80],[-59,-86],[-61,-139],[-230,-285],[-112,-94],[-84,-25],[-43,-83],[-71,-54],[-183,-137],[-89,8],[-45,-58],[-22,-111],[-45,-148],[-3,-147],[74,-267],[70,-147],[0,-90],[-127,-363],[-79,-115],[-38,-116],[55,-50],[5,-104],[-9,-249],[-29,-168],[-52,-40],[-36,-151],[-50,-45],[-55,-193],[-60,-64],[-100,43],[-143,-32],[-74,-69],[-17,-57],[15,-77],[-20,-17],[-41,35],[-28,-21],[-143,-151],[-97,-169],[-115,-104],[-36,-137],[-55,-108],[-74,-122],[-64,-101],[-64,-154],[-15,-148],[-7,-57],[-74,-36],[-71,-29],[-98,-140],[-64,-72],[-84,-195],[-119,-230],[-172,-216],[-67,-7],[-31,-93],[22,-94],[69,-137],[-5,-53],[-86,-166],[2,-144],[-52,-219],[-45,-87],[-7,-187],[33,-132],[-9,-58],[-143,-141],[-124,-122],[-119,42],[-127,91],[-79,-11],[-102,0],[-53,-89],[-81,-66],[-76,12],[-112,-33],[-110,-65],[-95,-133],[-93,-190],[-37,-102],[-94,-64],[-77,-90],[-31,-72],[-33,-187],[-57,-208],[-110,-241],[-133,-148],[-46,-104],[-31,-151],[37,-154],[75,-210],[101,-172],[81,-108],[100,-79],[14,-137],[81,14],[19,-43],[48,0],[36,58],[62,324],[71,50],[115,54],[66,68],[167,-241],[139,-162],[143,-75],[176,-54],[160,-4],[117,-72],[71,15],[93,-76],[55,-201],[36,-166],[5,-111],[-31,-155],[-182,-183],[5,-83],[29,-130],[55,-86],[74,-13],[83,17],[100,61],[96,0],[126,155],[143,115],[57,-4],[60,68],[69,-32],[5,-122],[-3,-209],[-35,-194],[-86,-144],[-55,-158],[-43,-220],[-33,-413],[-81,-184],[-10,-122],[86,29],[100,18],[91,43],[105,-18],[112,-47],[59,-58],[65,54],[81,26],[190,-51],[39,-25],[45,47],[102,61],[53,4],[77,-62],[80,-46],[74,-65],[34,50],[33,76],[72,-51],[52,87],[86,72],[59,-7],[65,21],[81,36],[137,6],[109,-42],[71,-47],[43,-25],[29,-133],[50,-61],[40,-54],[50,29],[38,100],[41,26],[62,61],[91,72],[52,82],[36,116],[26,100],[-48,76],[-9,97],[2,108],[31,111],[67,123],[45,57],[7,72],[-28,65],[-131,126],[-117,115],[-129,143],[-182,146],[-174,105],[-158,134],[-64,128],[-84,192],[-53,206],[-1,1],[0,2],[-49,104],[-51,65],[-51,66],[-82,34],[-102,74],[-115,96],[-117,123],[-72,81],[-43,81],[2,74],[10,108],[0,104],[-30,73],[2,100],[-28,108],[-61,50],[-41,93],[-95,131],[-115,181],[-61,100],[-77,31],[-76,58],[-10,131],[20,146],[77,89],[94,73],[95,143],[51,177],[123,212],[69,112],[120,201],[122,27],[146,65],[128,81],[76,27],[52,-46],[17,-74],[-66,-80],[-69,-143],[-100,-181],[-71,-147],[-31,-131],[64,-118],[74,-86],[95,-8],[156,12],[253,0],[186,-70],[59,-46],[-8,-100],[74,-58],[126,-44],[112,-14],[89,81],[115,107],[133,232],[29,96],[148,278],[89,116],[-3,92],[126,247],[69,54],[5,104],[5,135],[51,73],[93,47],[60,243],[118,142],[74,73],[49,35],[43,-46],[61,31],[41,92],[19,110],[96,152],[154,189],[94,82],[41,184],[61,66],[74,85],[72,88],[18,162],[64,120],[20,100],[44,162],[2,119],[26,104],[28,108],[-41,143],[-60,114],[-27,90],[15,127],[64,101],[67,92],[92,12],[69,73],[52,152],[11,188],[16,281],[-38,154],[-26,112],[13,61],[59,43],[83,48],[32,110],[-15,111],[27,136],[59,181],[82,185],[105,131],[87,85],[25,162],[18,185],[-25,138],[-16,78],[0,150],[59,23],[64,46],[77,-46],[53,-35],[39,27],[5,104],[13,86],[38,78],[46,95],[25,111],[74,108],[82,81],[123,70],[125,88],[21,139],[-26,127],[69,197],[38,131],[13,185],[49,208],[97,116],[99,166],[115,185],[62,173],[-33,185],[-31,178],[51,200],[115,166],[6,110],[-34,229],[-8,96],[27,86],[42,130],[36,143],[-64,166],[-54,204],[-5,212],[46,112],[103,123],[150,73],[82,112],[539,386],[129,609],[721,555],[1278,369],[764,494],[536,998],[696,214],[1114,1407],[91,768],[-156,1156],[-48,168],[-389,113],[-27,382],[528,675],[71,301],[687,132],[303,376],[452,154],[404,-39],[372,187],[156,-10],[248,-286],[917,205],[659,-257],[749,129],[276,-216],[411,-55],[626,593],[319,676],[560,225],[70,-169],[692,56],[659,959],[701,239],[208,-272],[-43,-945],[-352,-608],[-1632,-1581],[-254,-689],[-920,-945],[-1052,-1725],[-319,-1336],[100,-159],[516,156],[98,-132],[-161,-536],[97,-645],[-113,-723],[-819,-960],[-232,-467],[-353,-289],[-127,-1478],[-845,-936],[118,-823],[387,-869],[728,-921],[543,224],[502,563],[133,-73],[187,-578],[598,-509],[572,250],[369,-269],[217,312],[257,8],[339,-600],[685,212],[782,-534],[1394,637],[226,223],[440,70],[112,-113],[-171,-534],[276,-34],[86,-431],[226,-169],[635,164],[799,755],[107,380],[912,1658],[628,-184],[495,-560],[-112,-524],[1574,-583],[862,-890],[120,-1228],[262,60],[507,-197],[164,-298],[-6,-547],[273,-150],[234,220],[304,-364],[-260,-1088],[-192,-306],[50,-173],[361,-198],[360,194],[566,-597],[697,-2245],[807,-259],[1003,512],[657,-977],[6,-927],[-232,-144],[-659,-1225],[-485,-131],[-403,-448],[-114,305],[185,511],[-226,1301],[-149,48],[-304,-333],[-253,98],[-151,1486],[-663,-39],[-1950,607],[-184,258],[-182,883],[-933,-16],[-114,-137],[-114,-899],[-565,-226],[-453,-480],[-409,-54],[-114,-498],[-967,-1928],[-191,-872],[183,-241],[-169,-478],[91,-555],[-155,-306],[-352,-39],[-134,1095],[-248,-6],[-256,-95],[-584,-757],[-502,-100],[-242,-461],[-13,-410],[-360,-177],[-339,1154],[-870,-9],[-98,-132],[112,-317],[-284,-313],[8,-535],[-396,-482],[-201,-662],[-716,-389],[91,-305],[-44,-347],[409,-227],[147,-599],[-916,-888],[-281,-1595],[-296,-373],[910,-1274],[120,-1334],[-234,-369],[-367,-1111],[-1153,-1816],[-974,-2326],[-147,-588],[-242,-207],[-671,-1203],[-637,-796],[-280,-846],[-390,-523],[-213,-499],[-606,-463],[-100,-373],[-1518,-1070],[-489,329],[-226,499],[-550,517],[-771,-264],[-545,-646],[-212,-525],[-339,-328],[-177,-1212],[-211,-341],[-572,395],[-85,638],[-127,318],[120,1216],[-205,1547],[190,725],[241,2143],[-325,331],[-834,-455],[-409,544],[-658,-643],[-106,-346],[-497,-330],[362,1547],[-176,314],[-241,126],[-176,716],[79,1350],[-95,178],[-130,15],[-92,-69],[-153,-16],[-98,23],[-159,-91],[1,184],[82,170],[5,161],[-169,178],[-220,139],[-224,15],[-164,-46],[-97,-162],[-97,46],[-87,-8],[-102,-231],[-51,-293],[-46,-270],[-52,-316],[-146,-820],[-48,-437],[-380,-1263],[-50,-166],[-101,-321],[-179,-247],[-159,-254],[-265,-173],[-205,3],[-165,-158],[-152,-27],[-136,106],[-89,141],[-30,116],[-15,179],[35,260],[151,-98],[135,183],[98,239],[81,216],[-71,116],[36,262],[143,509],[250,493],[298,325],[142,68],[56,259],[163,273],[31,216],[-102,507],[-5,295],[46,270],[-82,208],[41,208],[112,270],[-25,224],[-74,111],[-75,112],[-378,386],[-444,462],[-450,355],[-552,409],[-481,300],[-270,154],[-210,54],[-118,-84],[-97,-316],[-184,-162],[-127,-101],[-138,-61],[-105,-175],[-57,-95],[-99,15],[-97,-115],[-87,-33],[-77,117],[-174,78],[-122,23],[-138,-124],[-169,-169],[-230,-340],[-107,-177],[-69,-357],[2,-283],[-47,-166],[-126,-81],[-57,-269],[-148,-201],[-108,-293],[-114,-306],[-3,-133],[-214,-170],[-189,-154],[-159,-116],[-57,-65],[-66,111],[-204,-246],[-123,-39],[-153,8],[-112,77],[-46,116],[-41,108],[-133,30],[-46,54],[-31,155],[-66,7],[-97,-61],[-98,54],[0,123],[21,139],[-36,192],[-77,116],[-76,100],[-113,1],[-71,130],[-33,66],[-34,66],[-153,69],[-143,85],[-107,-16],[-138,-61],[-113,-124],[-138,-254],[-82,-301],[-51,-293],[67,-254],[173,-409],[-51,-239],[0,-162],[73,-211],[135,-110],[145,-10],[123,92],[127,16],[60,-77],[63,-147],[189,-77],[143,69],[72,-31],[36,-231],[-99,-364],[-157,-145],[-153,0],[-108,131],[-86,47],[-193,-150],[-53,165],[-30,147],[-108,38],[-153,-124],[-41,62],[-10,170],[-97,31],[-215,-116],[-97,31],[-107,54],[-154,-108],[-148,54],[-209,0],[-470,36],[-67,72],[-15,193],[-108,54],[-240,-93],[-189,-8],[-133,170],[-112,116],[-92,192],[-108,139],[-119,66],[-24,212],[61,262],[0,278],[67,100],[102,123],[72,123],[-41,147],[-62,23],[-117,54],[-187,-79],[-54,38],[21,188],[118,138],[30,293],[-15,262],[-46,270],[-36,147],[-107,169],[-199,155],[-63,-116],[-55,-100],[-1,-3],[-2,-4],[-52,-105],[-144,-157],[0,-1],[-235,-247],[-230,-223],[-144,-16],[-153,-169],[-138,23],[-214,69],[-167,40],[-63,-40],[-62,-50],[-36,-112],[31,-293],[-46,-254],[-74,-224],[-197,-247],[-102,-208],[20,-401],[82,-300],[21,-332],[-21,-200],[-66,-157],[97,-59],[199,46],[138,100],[159,23],[35,-308],[26,-193],[-128,-193],[-59,-117],[-60,-186],[-203,-506],[-286,-254],[-235,-239],[-220,-293],[-133,-16],[-25,117],[311,747],[26,238],[102,278],[-10,193],[-87,170],[-107,69],[-251,-67],[-66,-18],[-337,-77],[-302,-92],[-143,30],[-143,62],[-63,142],[17,274],[5,324],[-36,278],[-10,262],[-41,85],[-276,-16],[-138,39],[-169,177],[-204,93],[-169,92],[-235,39],[-169,-46],[-237,-194],[-222,-69],[-164,31],[-158,62],[5,254],[-31,270],[-41,147],[-102,246],[-51,139],[-169,131],[-217,31],[-276,-8],[-215,-115],[-189,-216],[-61,-154],[60,-201],[83,-247],[-77,-231],[-203,-203],[-112,38],[-63,188],[-143,154],[-118,47],[-122,7],[-179,-77],[-210,-115],[-128,-8],[-127,-62],[-200,-239],[-244,-171],[30,140],[-97,8],[-123,23],[-148,-38],[-210,-131],[-240,-147],[-276,-162],[-429,-223],[-404,-424],[-460,-679],[-169,-339],[-122,-301],[-87,-216],[-46,-262],[-27,-307],[42,-333],[72,-69],[306,-77],[419,-124],[0,-100],[-217,-394],[-89,-161],[-118,-224],[-25,-293],[-164,-154],[-194,232],[-108,54],[-41,230],[-132,63],[-57,285],[-158,-62],[-128,93],[-10,192],[87,85],[-102,178],[-123,46],[-118,15],[-276,-69],[-184,-131],[-92,31],[-102,-101],[-172,-203],[-267,-429],[-220,-478],[-184,-501],[-31,-231],[66,-214],[62,-133],[-107,-301],[5,-292],[37,-200],[147,-348],[184,-139],[276,-278],[255,-401],[287,-262],[112,-139],[-72,-239],[92,-84],[195,-70],[179,16],[184,15],[66,-69],[-449,-341],[-233,-176],[-310,-23],[-245,200],[-264,307],[-359,418],[-266,232],[-399,92],[-419,15],[-305,407],[-31,72],[-200,470],[-290,678],[-15,37],[-305,463],[-305,464],[-828,771],[-169,193],[-169,193],[-35,35],[-501,512],[-340,351],[-228,212],[-127,85],[-257,176],[-214,86],[-27,19],[-117,81],[-224,154],[-322,216],[-250,247],[-184,455],[-72,478],[-37,480],[-16,189],[-85,472],[-92,416],[-194,447],[-107,255],[-108,254],[-235,-46],[-296,-167],[-348,74],[-347,155],[-675,555],[-531,478],[-317,92],[-479,-182],[-523,-34],[-313,61],[-156,31],[-157,30],[-152,288],[113,389],[113,389],[204,771],[-51,509],[-133,539],[-265,509],[-368,339],[-399,404],[-184,337],[-13,363],[231,420],[194,644],[79,731],[17,268],[74,652],[36,210],[99,189],[157,302],[24,70],[12,38],[10,112],[-42,316],[-40,129],[-27,87],[-100,216],[-191,151],[-177,86],[-232,91],[-181,95],[-183,59],[-210,187],[-257,172],[-343,418],[-266,424],[-225,894],[-85,759],[29,366],[0,5],[12,156],[182,489],[162,302],[59,363],[-112,548],[-184,332],[-279,233],[-438,366],[-914,585],[-919,632],[-893,613],[-1121,1047],[-373,760],[-85,458],[90,1073],[-36,93],[-51,135],[-178,-34],[-295,-220],[-776,-581],[-106,-106],[-858,-858],[-763,-601],[-333,-176],[-544,-129],[-611,-418],[-257,0],[-258,0],[-192,383],[74,684],[285,1098],[482,1555],[110,331],[-3,72],[-2,72],[-43,194],[-74,122],[-74,123],[-91,126],[-233,327],[-243,284],[-140,186],[-141,114],[-168,92],[-88,138],[-21,215],[114,858],[115,602],[0,248],[0,248],[-115,396],[-186,245],[-300,180],[-205,122],[-334,108],[-315,72],[-195,100],[-191,223],[-248,339],[-210,194],[-239,194],[-267,288],[-176,180],[-62,122],[-20,193],[64,323],[185,369],[283,357],[265,427],[172,439],[86,511],[-3,13],[-3,14],[-28,124],[-95,129],[-140,53],[-812,-184],[-250,44],[-51,9],[-197,121],[-119,130],[-143,165],[-267,303],[-296,273],[-200,367],[-124,259],[-143,184],[-206,110],[-157,65],[-145,123],[-145,122],[-172,187],[-208,208],[-217,123],[-386,86],[-358,51],[-314,29],[-382,-22],[-232,-25],[-48,-6],[-43,-6],[-79,-7],[-61,-6],[-250,-32],[-269,-22],[-283,-27],[-156,-22],[-725,-236],[-515,-81],[-311,-33],[-301,103],[-98,68],[-244,167],[-97,106],[-256,282],[-286,388],[-86,144],[-86,144],[-394,624],[-402,645],[-44,947],[-272,961],[-335,504],[-653,241],[-640,66],[-72,876],[-247,790],[-349,1030],[-189,833],[99,802],[337,1083],[385,566],[284,450],[612,545],[298,630],[327,1022],[-857,883],[77,1048],[-137,1333],[139,611],[134,192],[1400,1296],[405,793],[37,50],[83,101],[46,50],[-98,124],[-86,108],[-178,152],[-100,250],[-30,232],[65,179],[119,152],[272,357],[18,70],[89,332],[126,743],[-80,1006],[-66,314],[-63,302],[50,302],[271,340],[188,239],[4,107],[50,157],[204,201],[192,-56],[67,-82],[167,-38],[529,19],[121,25],[154,176],[50,221],[67,75],[209,63],[867,25],[350,-6],[146,-38],[133,164],[138,182],[67,164],[58,226],[50,107],[50,101],[59,138],[108,189],[87,88],[51,50],[91,101],[150,138],[663,-75],[171,106],[130,252],[75,283],[16,82],[-229,233],[0,94],[96,94],[246,38],[292,-157],[79,82],[71,62],[167,76],[371,-195],[162,245],[121,208],[109,94],[151,49],[203,64],[33,13],[5,314],[-9,535],[-104,459],[321,516],[284,365],[287,12],[221,0],[125,-19],[67,48],[67,47],[133,233],[109,-44],[150,-246],[41,-170],[9,-31],[12,-44],[425,-38],[280,32],[196,50],[267,113],[87,65],[134,99],[279,371],[192,459],[104,226],[96,101],[75,63],[321,465],[204,0],[200,-75],[92,-120],[171,-213],[171,12],[92,69],[96,69],[325,680],[65,200],[39,122],[-8,275],[13,231],[7,132],[9,153],[83,214],[63,189],[58,-7],[117,120],[44,169],[19,70],[-30,968],[-129,284],[-100,358],[-109,601],[-14,76],[-19,103],[-187,843],[-150,547],[-92,170],[-113,314],[-137,164],[-25,295],[246,485],[62,132],[67,214],[133,144],[271,107],[217,95],[242,19],[246,37],[217,-113],[38,-28],[79,-60],[325,69],[254,214],[38,409],[-21,201],[-4,189],[37,201],[4,145],[-62,157],[-142,126],[-165,159],[-227,218],[-38,88],[-66,151],[-84,210],[-95,237],[1,121],[3,149],[-37,149],[-5,21],[2,12],[48,403],[56,142],[19,47],[146,82],[159,63],[204,157],[200,258],[117,251],[87,189],[138,239],[54,50],[50,107],[54,195],[38,271],[-17,276],[-83,290],[-100,327],[-59,239],[-37,251],[0,239],[16,208],[17,132],[50,283],[84,220],[129,258],[158,233],[196,31],[146,183],[113,182],[171,497],[96,264],[-5,264],[-83,177],[-113,119],[-246,327],[-158,189],[-225,25],[-154,-31],[-171,100],[-34,13],[-24,67],[-88,241],[-117,409],[-33,308],[-30,277],[-12,257],[8,214],[42,101],[150,164],[317,302],[104,207],[4,132],[0,139],[25,132],[50,157],[15,19],[15,19],[150,88],[204,182],[125,138],[271,302],[275,327],[59,63],[91,290],[25,220],[17,226],[-19,44],[-18,44],[-217,132],[-175,-56],[-146,-63],[-38,6],[-142,76],[-146,69],[-37,44],[-96,182],[25,170],[129,189],[205,220],[71,163],[8,277],[-4,264],[-134,183],[-75,151],[-33,170],[-33,339],[-5,283],[-66,101],[-226,182],[-145,44],[-126,13],[-145,0],[-467,-76],[-297,-75],[-125,-88],[-75,88],[46,560],[205,1251],[-25,101],[0,145],[8,144],[108,283],[138,221],[104,301],[159,246],[258,277],[104,144],[6,10],[103,185],[50,302],[55,201],[28,101],[63,182],[79,302],[17,340],[12,415],[54,447],[25,151],[96,390],[63,302],[29,176],[87,452],[21,82],[-4,183],[-58,220],[-84,170],[-154,195],[-162,144],[-184,189],[-34,37],[-58,64],[-125,213],[159,229],[216,312],[59,63],[171,195],[117,82],[171,-38],[175,-50],[75,50],[69,129],[39,73],[371,75],[60,51],[86,75],[146,245],[71,283],[-46,315],[-37,207],[-12,25],[-36,76],[-28,56],[-18,25],[-55,74],[-181,241],[-162,63],[-55,157],[-12,277],[4,340],[-54,270],[-71,157],[-28,68],[-80,196],[-13,32],[-138,182],[-68,157],[-77,176],[-80,183],[246,340],[199,388],[14,27],[104,176],[150,182],[242,189],[417,484],[108,70],[125,75],[246,76],[176,-101],[133,-484],[104,522],[63,126],[137,132],[117,451],[100,391],[9,277],[16,189],[-4,327],[-54,233],[-163,698],[-87,182],[-142,340],[-4,258],[108,144],[113,195],[50,258],[33,214],[154,434],[117,384],[50,201],[-58,239],[-154,233],[-101,277],[-62,333],[25,340],[104,289],[200,145],[280,18],[150,63],[162,202],[142,295],[104,214],[134,302],[62,138],[38,114],[42,289],[133,340],[-8,239],[0,131],[0,89],[-17,44],[-63,163],[-104,202],[-75,138],[-108,208],[-159,289],[-10,18],[-2,5],[-25,46],[-79,138],[-55,227],[95,162],[92,157],[34,58],[79,105],[63,103],[2,10],[27,179],[13,182],[0,239],[0,384],[37,81],[92,158],[75,201],[17,75],[87,202],[100,157],[184,308],[54,63],[67,138],[108,139],[125,207],[58,199],[34,116],[29,195],[9,182],[-55,183],[-91,163],[-113,201],[-91,100],[-30,32],[-258,328],[-42,62],[-292,145],[-271,88],[-138,-44],[-95,-88],[-84,-50],[-175,170],[-129,245],[-34,151],[65,403],[2,12],[-15,197],[-14,168],[-71,314],[-125,189],[-113,101],[-87,119],[-104,157],[-63,214],[-12,63],[-63,283],[25,339],[28,55],[77,153],[67,132],[68,310],[40,167],[46,57],[106,-1],[325,5],[136,-11],[80,87],[151,83],[180,40],[221,126],[179,228],[199,429],[88,31],[460,168],[29,302],[30,216],[-68,188],[9,173],[-17,30],[-70,123],[-3,78],[99,135],[50,69],[51,171],[-24,227],[7,124],[-57,210],[-15,104],[-47,90],[-83,85],[-26,26],[-20,139],[-35,228],[33,140],[49,191],[66,122],[62,154],[13,150],[46,288],[22,152],[64,286],[90,226],[156,161],[196,61],[192,-20],[167,-145],[151,-174],[102,-91],[139,-49],[199,95],[89,44],[49,158],[140,488],[138,181],[125,148],[119,146],[183,118],[191,109],[254,57],[118,20],[208,-25],[228,-25],[99,0],[146,9],[197,61],[110,87],[161,53],[99,-33],[164,-73],[200,-210],[169,-226],[130,-242],[27,-195],[119,-274],[26,-52],[128,20],[138,70],[93,109],[170,44],[131,4],[143,-28],[263,-155],[119,-92],[95,-67],[115,-69],[140,-62],[81,-73],[77,-96],[258,-260],[142,-58],[144,50],[247,146],[113,229],[193,269],[89,278],[259,289],[199,273],[154,84],[211,-44],[206,-111],[220,-162],[224,-179],[178,29],[165,329],[40,159],[26,169],[-53,200],[-178,169],[-224,239],[-119,179],[-7,149],[-39,319],[0,388],[138,189],[311,189],[125,90],[205,100],[85,99],[146,70],[151,40],[172,40],[132,69],[86,175],[79,160],[35,151],[27,108],[35,83],[46,38],[57,12],[38,25],[20,30],[17,58],[20,139],[-38,444],[16,108],[29,111],[8,94],[-8,144],[-48,185],[-4,60],[8,83],[-14,78],[-28,69],[-95,110],[-30,77],[2,61],[42,67],[3,33],[-2,14],[-1,13],[-10,17],[-10,11],[-34,17],[-45,18],[-101,54],[-16,18],[-34,52],[-23,39],[-141,299],[-51,126],[-22,92],[0,124],[48,69],[84,77],[97,88],[55,111],[28,51],[29,73],[-3,98],[-22,99],[13,68],[39,37],[21,55],[10,61],[21,37],[44,37],[16,35],[0,191],[30,133],[30,56],[55,46],[43,67],[21,91],[4,46],[-14,28],[0,24],[22,7],[20,-5],[11,-25],[9,-14],[12,20],[-7,35],[6,23],[22,6],[13,18],[-7,26],[-12,5],[-6,21],[-4,26],[29,6],[15,17],[-11,30],[-12,25],[0,42],[18,31],[74,34],[25,116],[29,92],[3,96],[7,92],[-7,87],[-41,77],[-117,125],[-84,94],[-47,77],[-16,53],[-3,62],[10,59],[44,118],[27,120],[0,147],[24,69],[35,44],[85,61],[127,64],[85,144],[112,86],[107,36],[317,73],[89,50],[47,77],[30,116],[-10,136],[-56,166],[0,110],[43,161],[2,196],[37,97],[162,135],[34,45],[24,53],[25,88],[14,90],[2,15],[0,328],[0,10],[0,2],[15,50],[36,55],[24,12],[21,10],[83,6],[8,0],[93,-11],[43,9],[43,8],[124,44],[117,3],[17,10],[8,4],[32,-1],[146,-4],[129,19],[26,4],[119,33],[92,53],[148,150],[32,17],[36,63],[72,79],[7,7],[83,17],[45,-8],[230,116],[350,21],[47,30],[135,50],[371,247],[115,103],[13,18],[256,347],[164,144],[272,95],[137,72],[42,28],[61,41],[85,59],[136,64],[61,52],[62,89],[29,75],[24,221],[27,108],[10,18],[10,18],[69,75],[190,39],[92,7],[121,46],[203,258],[21,58],[64,112],[58,228],[148,221],[176,117],[108,111],[30,83],[61,119],[160,194],[81,52],[180,78],[101,169],[110,152],[59,45],[89,41],[58,1],[73,-45],[101,-146],[79,-52],[62,6],[49,25],[62,50],[45,61],[24,11],[234,484],[42,119],[25,127],[22,58],[30,36],[122,95],[81,116],[43,141],[24,238],[86,301],[44,117],[37,71],[46,37],[47,19],[40,-25],[59,-69],[34,-13],[116,8],[194,59],[58,-6],[116,-60],[92,-108],[63,-149],[16,-102],[-29,-177],[8,-53],[25,-32],[40,-3],[124,72],[115,6],[22,-6],[22,-5],[128,-66],[127,0],[128,86],[93,2],[91,-43],[58,-66],[119,-353],[155,-226],[149,-321],[184,-281],[42,-108],[10,-201],[10,-47],[19,-57],[40,-65],[159,-2],[81,17],[83,36],[128,83],[139,144],[51,69],[39,86],[22,86],[21,362],[16,108],[29,105],[55,138],[174,123],[240,-41],[589,231],[166,9],[121,-42],[139,-118],[168,-298],[284,-405],[116,-89],[375,-173],[130,-96],[127,-151],[154,-47],[90,-52],[63,-80],[71,-141],[111,-132],[82,14],[65,44],[75,116],[53,166],[2,114],[-16,121],[-78,329],[-34,238],[-2,110],[19,205],[26,124],[20,64],[80,152],[121,158],[158,268],[89,95],[71,47],[237,95],[148,39],[85,-3],[81,-71],[76,11],[39,47],[32,78],[31,163],[15,345],[34,163],[146,172],[104,164],[44,127],[7,193],[16,58],[186,288],[59,-2],[51,-27],[183,-215],[43,-11],[56,85],[31,114],[-8,110],[19,133],[56,191],[90,235],[83,125],[99,182],[47,128],[57,265],[30,94],[53,122],[53,86],[0,14],[63,83],[75,185],[25,117],[18,165],[24,97],[41,114],[69,133],[142,194],[146,249],[71,28],[58,5],[37,-11],[40,-30],[172,-226],[115,-132],[46,-69],[16,-42],[18,-96],[-4,-94],[-160,-230],[-32,-72],[-1,-42],[31,-58],[71,-66],[34,-66],[22,-113],[3,-166],[29,-63],[95,-56],[115,-46],[160,-33],[153,-49],[111,-69],[65,-85],[56,-252],[39,-80],[54,-74],[71,-72],[95,-69],[105,-5],[115,11],[65,-29],[54,-75],[151,-320],[95,-152],[176,-127],[76,-110],[79,-83],[148,-71],[115,-77],[99,-47],[255,-59],[319,-110],[214,-93],[85,-13],[45,-6],[131,152],[110,199],[104,236],[75,218],[57,195],[19,51],[39,100],[102,189],[363,415],[79,53],[165,1],[47,19],[49,9],[82,47],[177,166],[63,83],[48,97],[116,152],[344,311],[320,239],[177,180],[54,39],[77,26],[43,8],[214,-8],[42,14],[45,36],[22,31],[23,69],[-8,83],[-36,138],[-2,53],[10,44],[26,58],[27,33],[73,25],[84,6],[150,-77],[89,6],[55,36],[64,64],[245,103],[146,95],[184,163],[78,108],[89,177],[97,122],[231,76],[75,47],[52,50],[108,177],[14,30],[75,169],[57,122],[0,52]],[[408537,385661],[-156,-33],[-72,-17],[-69,-14],[-407,-25],[-256,204],[-734,-126],[-417,-645],[-142,-133],[-149,-97],[-303,21],[-126,-39],[-106,-114],[-164,-273],[-382,-332],[-218,-329],[-488,-449],[-64,-194],[-13,-269],[-100,-379],[-85,-170],[-134,-149],[-748,-615],[-79,-145],[-156,-638],[-69,-144],[-185,-159],[-304,-121],[-616,-157],[-401,-180],[-468,-361],[-316,-442],[-268,-287],[-495,-678],[-205,-393],[-93,-1674],[-50,-473],[-126,-392],[-254,-316],[-226,-221],[-355,-151],[-275,-312],[-254,-117],[-310,4],[-269,-464],[-56,-160],[87,-625],[16,-351],[-62,-602],[-167,-831],[-100,-229],[-127,-187],[-136,-96],[-932,-245],[-381,-243],[-199,-372],[-64,-390],[9,-410],[-36,-178],[-79,-206],[-253,-460],[-214,-292],[-89,-186],[-24,-208],[51,-368],[-1,-227],[-163,-443],[27,-269],[100,-118],[157,-177],[-109,-162],[-341,-150],[-437,18],[-275,-130],[-464,-291],[-250,-55],[-279,-3],[-439,52],[-163,83],[-579,-8],[-318,-96],[-427,-43],[-349,-113],[-156,-56],[-156,2],[-233,-249],[-209,-100],[-272,-129],[-128,-60],[-339,-71],[-127,-122],[-92,-194],[-147,-754],[-15,-279],[84,-471],[-43,-279],[-90,-182],[-121,-159],[-133,-72],[-293,18],[-231,-70],[-212,-162],[-166,-155],[-485,-703],[-147,-314],[-91,-252],[-58,-423],[-91,-201],[-113,-114],[-156,-66],[-467,-638],[-133,-263],[-50,-235],[7,-276],[153,-529],[412,-1039],[14,-117],[10,-165],[-10,-226],[-14,-208],[-69,-147],[-107,-122],[-102,-75],[-88,-18],[-86,7],[-71,-3],[-85,26],[-45,30],[-100,76],[-110,144],[-173,147],[-119,53],[-95,22],[-112,-30],[-59,-45],[-55,-97],[-28,-140],[0,-122],[45,-143],[40,-72],[88,-133],[81,-168],[175,-370],[124,-61],[205,-39],[190,-14],[169,-51],[136,-33],[189,-27],[81,-47],[86,-111],[64,-129],[33,-111],[2,-115],[-27,-830],[105,-504],[75,-376]],[[355347,364517],[-135,498],[-48,176],[-199,275],[-133,-20],[-262,-155],[-134,48],[-354,432],[-198,299],[-289,671],[-156,546],[-170,415],[-488,745],[-443,539],[-398,1370],[-565,838],[149,340],[162,279],[99,277],[84,104],[212,472],[396,734],[51,903],[572,1531],[213,254],[160,12],[171,143],[552,748],[239,273],[156,395],[42,189],[303,628],[326,467],[289,296],[369,264],[290,25],[119,46],[2,223],[-121,138],[-71,172],[0,206],[56,306],[120,366],[71,657],[57,152],[-37,192],[-684,612],[-291,60],[-141,97],[-50,215],[-126,141],[-177,-75],[-148,-8],[-142,167],[-56,163],[-98,141],[-135,125],[-86,179],[-14,372],[-62,207],[-177,314],[-15,201],[-149,346],[-8,37],[-14,60],[-19,83],[-8,212],[66,565],[-3,239],[-112,599],[21,684],[-36,178],[-103,152],[-65,225],[28,438],[-15,190],[-226,890],[1,582],[-65,206],[-97,69],[-588,707],[-127,200],[-71,233],[-13,379],[56,560],[6,456],[-120,1417],[-186,749],[-145,760],[-318,470],[-43,228],[-21,313],[27,390],[-42,192],[-311,-220],[-133,42],[-141,96],[-263,-35],[-239,-318],[-318,-219],[-149,57],[-106,292],[42,254],[72,188],[40,323],[-14,105],[-14,105],[-189,423],[-8,73],[-15,144],[404,1354],[1230,4124],[430,1441],[630,218],[159,55],[8164,2833],[240,83],[3998,1388],[55,20],[13882,4823],[36,13],[3229,1122],[33,12],[4919,1722],[1802,630],[670,234],[499,175],[781,274],[559,195],[213,75]],[[485578,423771],[-61,0],[-98,69],[-71,181],[-119,152],[-142,112],[-121,39],[-157,-84],[-238,-315],[-242,-537],[-90,-307],[-136,-663],[-91,-153],[-185,-111],[-111,-179],[-59,-256],[-75,-828],[62,-716],[9,-591],[-102,-465],[-85,-224],[-231,-396],[-156,-146],[-440,-304],[-648,-335],[-169,-21],[-297,-102],[-141,-130],[-333,-124],[-310,-218],[-156,-194],[-106,-246],[-30,-188],[-281,-672],[-219,-216],[-254,-156],[-205,-244],[-289,-202],[-156,-44],[-128,21],[-488,526],[-128,-13],[-685,-343],[-135,-109],[-92,-184],[-48,-169],[-218,-271],[-340,-171],[-212,-67],[-291,-162],[-127,-174],[0,-195],[106,-95],[78,-146],[64,-148],[43,-198],[77,-156],[531,-302],[105,-113],[85,-155],[121,-416],[27,-513],[-21,-269],[-100,-452],[-295,-454],[-121,-118],[-416,-271],[-150,-162],[-175,-301],[-128,-150],[-112,-87],[-15,-11],[-128,-99],[-6,-5],[-756,-705],[-361,-392],[-276,-356],[-119,-80],[-135,-24],[-827,-8],[-417,-66],[-232,-175],[-22,-32],[-149,-217],[-283,-175],[-501,-640],[-126,-162],[-185,-63],[-183,8],[-8,0],[-177,-18],[-128,-61],[-238,-181],[-268,-311],[-200,-437],[-382,-439],[-63,-129],[-57,-137],[54,-288],[-24,-226],[-30,-149],[-60,-121],[-161,-109],[-126,-1],[-80,-57],[5,-81],[54,-136],[51,-130],[0,-145],[-132,-325],[-29,-72],[-168,-631],[-36,-703],[-53,-307],[-168,-253],[-84,-121],[-23,-131],[6,-144],[125,-73],[221,46],[287,-145],[299,-144],[267,-274],[202,-87],[148,-139],[134,-59],[310,-54],[496,43],[244,136],[340,290],[203,-18],[57,-320],[9,-55],[2,-12],[27,-178],[87,-146],[120,-118],[147,-299],[163,-104],[254,-244],[51,-214],[-72,-189],[-112,-179],[-30,-180],[59,-187],[203,-981],[-21,-413],[22,-221],[55,-155],[120,-73],[157,-28],[360,36],[198,-22],[14,-1],[289,-87],[99,-141],[-112,-128],[-127,-30],[-277,38],[-133,-61],[-114,-149],[-169,-533],[-119,-197],[-249,-214],[-354,-145],[-169,-116],[-309,-393],[-23,-222],[105,-130],[316,100],[37,12],[13,4],[209,100],[129,-3],[367,-6],[29,-21],[217,-160],[131,-207],[72,-235],[12,-225],[69,-337],[5,-28],[105,-230],[48,-370],[3,-262],[-18,-545],[27,-152],[3,-15],[1,-5],[5,-28],[39,-193],[84,-322],[13,-51],[318,-359],[169,-140],[170,-89],[30,-20],[125,-88],[17,-6],[78,-30],[28,-7],[191,-48],[218,-107],[41,-99],[-32,-156],[-166,-179],[-409,-195],[-227,-246],[-266,-611],[-144,-495],[-196,-518],[-8,-172],[-56,-204],[-101,-113],[-320,23],[-263,115],[-161,-9],[-258,-418],[-424,-845],[-95,-261],[-77,-276],[-15,-52],[-4,-13],[0,-2],[0,-1],[-1,-3],[-35,-125],[-55,-195],[-76,-271],[-42,-226],[-18,-230],[114,-242],[120,-159],[234,-212],[-2,-192],[-141,-339],[-28,-366],[135,-311],[134,-141],[288,-121],[165,-107],[105,-118],[28,-143],[28,-143],[100,-506],[7,-180],[-135,-634],[-281,-736],[-175,-926],[-45,-237],[-89,-288],[-245,-541],[-302,-524],[0,-185],[92,-229],[210,-172],[427,-176],[278,-76],[272,-68],[235,-120],[58,-128],[-15,-171],[-123,-415],[-98,-433],[-102,-618],[-65,-487],[23,-870],[-292,-432],[-37,-55],[-119,-176],[-37,-55],[-35,-63],[-92,-164],[-417,-361],[-192,-207],[-141,-196],[-85,-261],[-134,-753],[-168,-424],[-115,-453],[-41,-513],[-15,-176],[-21,-102],[-22,-102],[-133,-454],[-289,-803],[-16,-357],[106,-92],[276,-109],[419,-44],[289,-87],[212,-198],[246,-313],[198,-616],[14,-201],[-21,-176],[-121,-194],[-119,-94],[-362,-143],[-161,-132],[-99,-144],[-21,-214],[197,-452],[25,-202],[74,-605],[150,-1020],[12,-168],[-21,-132],[-44,-116],[-127,-287],[-77,-201],[-25,-104],[25,-92],[56,-97],[95,-83],[118,-128],[63,-62],[119,-115],[320,-373],[113,-64],[126,-58],[226,-34],[205,-9],[130,27],[107,-12],[77,-51],[16,-123],[8,-280],[53,-446],[40,-184],[69,-164],[129,-208],[186,-256],[330,-164],[426,-167],[99,-79],[45,-140],[-33,-141],[-91,-94],[-91,-95],[-77,-86],[-61,-177],[-4,-16],[-81,-312],[-4,-14],[-12,-41],[-291,-979],[-203,-665],[-40,-349],[-17,-323],[146,-519],[45,-324],[8,-464],[-3,-286],[2,-168],[-14,-172],[-26,-117],[-43,-110],[-60,-86]],[[423330,309007],[-2310,-1354],[-467,-273],[-2802,-1642],[-716,-420],[-84,-49],[-37,-22],[-346,-203],[-229,-133],[-107,-63],[-22,-13],[-26,-15],[-180,-105],[-31,-19],[-120,-70],[-112,384],[-87,298],[-10,35],[-66,226],[-1280,4389],[550,1944]],[[414848,311902],[80,282],[1355,4785]],[[416283,316969],[716,2531],[940,3629],[1285,649],[943,669],[470,334],[522,-68],[375,-264],[234,-288],[198,-1045],[146,-245],[256,-290],[291,-207],[302,-38],[283,377]],[[423244,322713],[41,117],[108,308]],[[423393,323138],[-283,818],[0,623],[178,380],[542,-83],[16,21],[174,235],[229,183],[-140,180],[-38,49],[-585,144],[-207,540],[-34,613],[-14,11],[-276,217],[-282,-432],[-89,-75],[-245,-205],[-282,-185],[-304,-397],[-402,295],[-128,652],[-120,303],[-226,354],[-80,29],[-10,4],[-178,67],[-137,277],[-138,277],[-347,1438],[-142,13],[-246,-230],[-334,186],[-77,191],[-121,508],[-358,358],[-877,515],[-29,28],[-1252,1196],[-1108,1058],[-5025,4633],[-150,138],[-5107,4710]],[[468160,445644],[107,-111],[74,-54],[44,-36],[22,-63],[45,-54],[82,-52],[178,11],[203,62],[41,20],[294,139],[240,27],[194,59],[149,121],[150,199],[272,455],[171,330],[116,126],[57,15],[44,12],[37,-44],[20,-24],[70,-237],[41,-139],[24,-79],[60,-203],[62,-136],[93,-81],[176,-4],[144,40],[167,68],[120,77],[128,180],[115,202],[352,565],[50,166],[69,122],[132,140],[116,108],[200,80],[217,-21],[208,-55],[6,-20],[32,-102],[56,-140],[166,-268],[242,-374],[78,-156],[200,-386],[147,-311],[139,-320],[139,-328],[19,-61],[26,-101],[7,-17],[13,-48],[34,-78],[15,-46],[10,-56],[1,-46],[9,-102],[8,-43],[7,-41],[6,-31],[9,-31],[8,-22],[13,-28],[26,-42],[27,-30],[21,-43],[20,-49],[27,-69],[31,-75],[11,-57],[8,-74],[10,-40],[6,-15],[29,-20],[25,-18],[44,-4],[55,-6],[12,-18],[-7,-52],[14,-85],[16,-105],[23,-91],[10,-76],[53,-73],[36,-79],[28,-62],[9,-36],[9,-29],[-26,-20],[18,-62],[30,-61],[2,-56],[1,-75],[22,-68],[46,-81],[46,-69],[45,-48],[33,-51],[84,-98],[43,-51],[27,-32],[-9,-46],[13,-25],[40,2],[31,-22],[9,-28],[5,-30],[-9,-30],[-26,-9],[-8,-40],[20,-58],[53,-55],[53,-64],[32,-43],[30,-62],[42,-57],[17,-54],[-32,-22],[-32,40],[-29,-18],[43,-73],[12,-54],[-46,-16],[-19,-39],[3,-34],[40,12],[34,-20],[19,-42],[-30,-79],[-30,-73],[-17,-58],[2,-23],[19,-11],[21,36],[20,54],[14,-28],[-2,-52],[18,-29],[-42,-510],[98,-322],[135,-249],[-52,-320],[141,-114],[209,-53],[79,-5],[314,-21],[192,105],[135,137],[69,302],[261,97],[78,160],[34,225],[122,242],[180,156],[324,2],[333,98],[226,-114],[198,-159],[286,-291],[34,-102],[810,-725],[486,-588],[288,-168],[330,-358],[159,-84],[194,-15],[123,-351],[60,-327],[16,-284],[-167,-1018],[-7,-204],[27,-254],[65,-237],[69,-99],[280,-114],[134,-241],[226,-667],[134,-277],[120,-135],[52,-206],[-48,-427],[17,-108],[46,-79],[175,-87],[108,-12],[82,-171],[117,-85],[66,-85],[46,-312],[75,-140],[93,-104],[676,-407],[127,-309],[168,-323],[85,-266],[121,-259],[163,-265],[53,-226],[214,-96],[152,-120],[174,-205],[4,-2],[258,-162],[177,-254],[60,-278],[-5,-194],[73,-55],[44,-140],[41,-601],[223,-700],[59,-284],[-125,-788],[61,-550],[-81,-744],[-172,-278],[-88,-307],[-147,-352],[-116,-615]],[[248310,325584],[-515,-762],[-6395,-9467],[-4104,-6075],[-6733,5648],[-37,-319],[-163,-475],[-98,-530],[-77,-171],[-60,-90],[-189,-125],[-106,-117],[-218,-555],[-169,-262],[-247,-267],[-149,-41],[-71,-86],[-121,-364],[-48,-231],[-228,-570],[-203,-358],[-106,-270],[-30,-3],[-68,-119],[-79,-65],[33,-900],[-89,-509],[-58,-592],[-78,-387],[-35,-662],[4,-154],[3,-154],[-29,-205],[-104,-296],[-73,-207],[-42,-261],[-174,-647],[-12,-764],[-132,-232],[-43,-173],[-97,-210],[-21,-227],[218,-1234],[-9,-6],[-420,-232],[-368,-194],[-278,-115],[-920,-381],[-805,-299],[-740,-303],[-238,-85],[-158,-36],[-339,-33],[-26,-3],[-569,-69],[-107,-3],[-28,0],[-47,0],[-85,19],[-68,18],[-81,33],[-70,54],[-6,6],[-57,57],[-9,11],[-67,86],[-38,50],[-19,24],[-668,1085],[-136,219],[-88,96],[-73,82],[-8,9],[-99,65],[-164,97],[-150,67],[-99,24],[-114,11],[-141,-10],[-95,-25],[-268,-71],[-39,-11],[-538,-149],[-178,-54],[-210,-63],[-151,-45],[-122,-8],[-74,-5],[-15,-1],[-386,-14],[-334,-13],[-10,0],[-266,-11],[-21,-1],[-185,-7],[-549,-22],[-74,-3],[-11,-1],[-145,-20],[-96,-32],[-112,-38],[-221,-69],[-248,-77],[-24,-8],[-329,-106],[-545,-176],[-230,-75],[-27,-8],[-238,-76],[-784,-249],[-73,-24],[-162,-52],[-390,-126],[-159,-51],[-469,-152],[-150,-71],[-169,-92],[-746,-477],[-485,-305],[-243,-190],[-310,-287],[-889,-781],[-285,-260]],[[209020,298134],[664,2504],[769,2897],[2398,9032],[-97,124],[-61,259],[0,264],[58,129],[64,54],[118,-26],[124,5],[78,-61],[45,-58],[32,-31],[46,-13],[57,-16],[80,-17],[80,-17],[93,-78],[207,26],[172,49],[73,-24],[95,-100],[118,-102],[60,10],[94,62],[35,19],[46,-11],[93,-8],[130,11],[47,43],[55,43],[41,46],[32,84],[52,132],[59,204],[46,25],[34,21],[58,5],[94,-35],[95,-29],[85,-3],[93,3],[54,38],[32,51],[73,91],[89,121],[40,52],[52,32],[35,70],[54,207],[10,29],[29,46],[70,52],[75,38],[135,8],[75,19],[82,70],[59,72],[36,54],[18,76],[21,70],[-10,69],[-34,76],[-38,186],[-75,234],[-48,130],[20,70],[-16,78],[-36,94],[-68,54],[10,61],[26,87],[43,92],[-1,102],[-40,97],[16,62],[23,97],[-20,91],[12,148],[-26,95],[0,99],[37,186],[6,121],[-39,313],[5,113],[21,148],[90,156],[166,133],[90,71],[60,22],[59,16],[59,32],[96,78],[81,6],[47,26],[65,38],[23,34],[4,64],[5,29],[29,-6],[85,-67],[92,-26],[80,10],[19,23],[-2,33],[-1,2],[-1,25],[-1,26],[19,48],[27,40],[81,-2],[49,18],[179,114],[182,21],[172,130],[10,107],[-110,264],[32,167],[-65,210],[-78,194],[-164,183],[-129,-16],[-86,90],[40,99],[35,140],[-3,140],[-4,97],[-93,91],[-159,114],[-51,75],[-47,215],[-10,189],[7,145],[-60,95],[-14,127],[2,139],[118,33],[62,-37],[99,-17],[86,113],[71,81],[-4,129],[-71,135],[-83,60],[-46,96],[18,81],[46,34],[46,35],[90,-5],[143,183],[50,299],[97,138],[17,91],[-7,83],[29,19],[73,79],[-5,88],[-25,141],[43,54],[64,43],[121,528],[50,220],[40,130],[25,102],[-33,372],[54,124],[32,-81],[57,-16],[25,97],[-89,231],[-46,103],[10,118],[105,84],[102,-9],[48,84],[47,83],[27,139],[103,2],[65,21],[17,97],[-74,254],[7,85],[67,27],[58,65],[-43,140],[-61,215],[13,150],[69,39],[-14,102],[61,97],[3,113],[-51,237],[23,97],[32,92],[-32,98],[-79,96],[57,108],[-68,291],[-50,176],[-22,81],[18,160],[72,331],[54,162],[14,221],[0,134],[86,200],[25,199],[57,372],[53,431],[-10,242],[-54,102],[-175,27],[-168,11],[-22,10],[-106,44],[-97,38],[-125,134],[-50,310],[-44,96],[-94,153],[-90,145],[9,58],[9,31],[7,20],[6,20],[-1,39],[7,22],[17,32],[9,37],[-7,39],[-14,26],[-31,36],[-20,17],[-21,11],[-16,0],[-16,-5],[-26,-18],[-29,-13],[-27,7],[-20,17],[-1,2],[-15,26],[-5,46],[-7,59],[3,62],[8,44],[28,79],[-1,67],[0,106],[1,61],[7,130],[14,157],[16,135],[20,43],[38,25],[55,-11],[21,10],[23,5],[47,44],[48,68],[36,60],[28,78],[13,65],[0,3],[5,51],[4,39],[-2,12],[0,2],[-6,33],[-20,74],[-39,196],[-20,119],[-31,183]],[[280806,259566],[-123,-150],[-243,-162],[-306,-98],[-104,-96],[-93,-166],[-36,-182],[-175,-281],[-64,-194],[-121,-67],[-219,-202],[-135,-71],[-100,-130],[-118,-89],[-120,-170],[-55,-183],[-200,-236],[-69,-198],[-447,-405],[-147,-32],[-213,-216],[-283,-88],[-134,-105],[-78,-179],[-36,-226],[-97,-201],[-601,-499],[-240,-436],[-101,-128],[-302,-132],[-113,-168],[-113,-514],[-192,-296],[-68,-212],[-171,-270],[-397,-298],[-176,-7],[-92,118],[-148,21],[-251,-196],[-239,-110],[-139,-124],[-214,-291],[-253,-508],[-254,-278],[-99,-150]],[[272927,250961],[-76,-174],[-66,-425]],[[272785,250362],[-373,-642],[-134,-89],[-191,-251],[-128,-80],[-191,-296],[-270,77],[-246,-225],[-479,-807],[-333,-344],[-410,-556],[-460,-485],[-282,-414],[-212,-483],[-121,-86],[-111,-138],[-106,-316],[-8,-196],[175,-321],[122,-158],[64,-192],[0,-189],[-106,-168],[-249,-192],[-106,-414],[-78,-134],[-36,-178],[14,-480],[-49,-514],[50,-355],[219,-364],[49,-197],[14,-225],[-48,-234],[-247,-620],[-312,-516],[-177,-149],[-119,-143],[-63,-168],[91,-858],[-83,-769],[154,-198],[311,-227],[-58,-329],[-301,-271],[-328,-165],[-354,-273],[-239,-438],[-36,-531],[178,-473],[98,-515],[170,-625],[149,-219],[213,-422],[310,-409],[735,-153],[241,-441],[147,-411],[219,-458],[298,-263],[557,334],[580,-21],[311,187],[324,76],[212,-269],[255,-681],[184,-356],[467,-14],[438,-71],[735,-647],[-21,-313],[-275,-270],[-349,-232],[-210,-208],[-376,-492],[-403,-378],[-309,-173],[-692,129],[-156,-419],[0,-487],[121,-290],[282,-217],[35,-216],[-254,-836],[-445,-636],[-375,-265],[-369,-206],[-302,-368],[-198,-459],[-141,-413],[-417,-701],[-496,-177],[-304,-263],[0,-514],[-55,-395],[-347,-551],[-283,-257],[-303,-557],[-454,-160],[-464,-101],[-786,-524],[-854,-458],[-1125,-203],[-587,-144],[-558,-273],[-812,-845],[-432,-356],[-960,-71],[-616,-295],[-200,-273],[-138,-187],[-551,-361],[-1252,-437],[-282,-277],[-170,-373]],[[256942,213708],[-388,409],[-192,325],[-63,357],[-141,193],[-204,409],[-460,773],[-128,354],[14,286],[282,565],[79,158],[36,490],[-107,508],[-35,555],[-121,989],[-133,431],[-292,277],[-203,87],[-410,304],[-459,587],[-228,497],[-19,437],[90,238],[-70,532],[-120,395],[-35,419],[49,306],[227,745],[-99,344],[-447,89],[-458,176],[-198,1054],[119,446],[219,295],[300,125],[902,229],[186,120],[-270,485],[-219,158],[-204,460],[332,310],[-37,242],[-191,607],[1,483],[-85,407],[126,266],[624,529],[536,163],[41,336],[-400,610],[-326,354],[-107,356],[953,262],[115,353],[-141,543],[-106,229],[-383,118],[-445,17],[-318,96],[-509,-198],[-367,78],[-309,-15],[-413,170],[-620,699],[-171,77],[-190,-104],[-763,-45],[-340,58],[-167,320],[-286,693],[8,356],[-71,382],[93,122],[126,63],[156,4],[587,-164],[360,-254],[50,200],[-15,455],[-55,248],[-277,691],[-14,183],[70,144],[292,-27],[360,260],[126,2],[419,-183],[68,171],[-62,703],[-8,674],[-34,176],[-142,322],[-6,175],[161,552],[63,387],[-106,336],[58,181],[261,90],[777,426],[129,-163],[168,-388],[219,-216],[317,-26],[144,49],[302,210],[311,342],[227,179],[204,252],[116,77],[117,78],[121,8],[6,597],[-62,543],[28,187],[84,163],[128,16],[395,-299],[325,78],[269,201],[56,228],[-197,821],[0,404],[206,1569],[-16,215],[-155,417],[-22,245],[21,197],[276,743],[36,226],[-21,365],[-99,192],[-268,308],[-300,439],[-129,188],[-19,29],[-152,221],[-94,257],[36,483],[233,880],[423,570],[43,183],[16,392],[-150,498],[-106,112],[-135,15],[-316,-78],[-325,-17],[-616,66],[-361,-72],[-330,-254],[-156,-258],[-235,-629],[-269,-523],[-47,-213],[6,-617],[-85,-148],[-262,-230],[-262,-125],[-621,118],[-326,-141],[-114,30],[-46,12],[-156,41],[-488,277],[-284,10],[-390,-194],[-232,-224],[-791,-366],[-112,-86],[-205,-331],[-120,-386],[-99,-166],[-113,-121],[-127,-32],[-129,36],[-127,125],[-147,415],[-128,885],[42,502],[141,366],[35,192],[-98,135],[-430,59],[-115,116],[-162,735],[-151,413],[-231,632],[-161,313],[-92,400],[-198,287],[-217,67],[-52,17],[-303,-56],[-262,-107],[-227,-93],[-445,-29],[-206,-108],[-231,-296],[-127,-440],[-161,-429],[-207,-891],[-283,-706],[-134,-544],[-92,-149],[-263,-110],[-338,-279],[-283,-3],[-133,-126],[-191,-302],[-261,-148],[-142,50],[-219,225],[-120,61],[-806,-251],[-283,47],[-184,146],[-457,893],[-59,176],[-1,41],[-20,647],[-163,845],[-42,397],[86,430],[176,401],[291,459],[514,954],[51,168],[5,367],[-25,45],[-65,122],[-120,115],[-282,-6],[-205,269],[-137,101],[-76,150],[-93,373],[-31,42],[-195,265],[-91,197],[-94,380],[-54,419],[-184,354],[-383,309],[-309,444],[-353,280],[-313,444],[-146,3],[-271,-149],[-162,-293],[-120,-93],[-128,53],[-92,149],[-35,199],[-76,147],[-50,201],[190,834],[28,438],[-22,204],[-210,542],[-36,240],[-113,381],[21,433],[-50,517],[-44,1123],[-5,132],[-162,632],[-148,380],[-8,579],[-157,631],[-41,163],[41,223],[151,330],[26,170],[-118,89],[-115,157],[-127,63],[-134,-44],[-212,32],[-311,263],[-118,-18],[-136,-112],[-255,-315],[-140,-79],[-127,-8],[-611,413],[-130,1],[-164,-111],[-458,-519],[-342,-467],[-189,-601],[-140,-133],[-264,-42],[-133,-67],[-334,-319],[-309,-225],[-290,-363],[-261,-519],[-490,-480],[-336,-749],[-744,-857],[-192,-659],[-97,-191],[-531,-399],[-112,-148],[-155,-384],[-64,-486],[-9,-467],[-106,-171],[-120,-90],[-268,-91],[-263,-220],[-479,-89],[-415,-196],[-142,-27],[-326,-236],[-510,-188],[-656,79],[-156,82],[-375,328],[-393,70],[-425,159],[-487,620],[-285,361],[-493,795],[-607,759],[-242,382],[-169,112],[-219,318],[-22,194],[120,399],[17,148],[11,95],[1,223],[-50,159],[100,157],[149,86],[161,166],[212,290],[276,290],[71,171],[-9,222],[-64,200],[-414,829],[-73,415],[37,171],[142,346],[97,400],[615,987],[169,540],[171,272],[-6,381],[35,192],[90,138],[227,189],[227,275],[120,347],[8,190],[63,173],[92,149],[233,180],[98,164],[35,192],[-56,917],[-65,199],[-97,122],[-580,-170],[-128,89],[-141,403],[-57,608],[-416,795],[-381,1220],[-268,153],[-134,-47],[-236,-313],[-118,-73],[-320,2],[-134,-89],[-247,-530],[-120,-148],[-261,-52],[-28,-6],[-156,41],[-112,102],[-72,154],[112,347],[57,407],[-134,56],[-116,-32],[-18,-5],[-309,20],[-129,39],[-282,214],[-431,25],[-683,-60],[-137,-12],[-18,-11],[-257,-152],[-143,-24],[-942,56],[-33,2],[-594,-165],[-253,-161],[-135,-36],[-460,77],[-487,589],[-119,106],[-170,25],[-171,-62],[-592,-783],[-214,-613],[-96,-161],[-348,-244],[-121,-127],[-91,-163],[-204,-547],[-460,-598],[-311,-88],[-557,145],[-179,0],[-126,-63],[-523,-426],[-133,-56],[-185,-278],[-282,-133],[-113,-113],[-184,-572],[-269,-163],[-84,-169],[-205,-752],[-290,-6],[-141,-58],[-136,-832],[-55,-750],[0,-370],[42,-201],[-21,-181],[-71,-171],[-268,-148],[-628,-456],[-73,-148],[-5,-394],[113,-507],[98,-442],[105,-784],[-98,-137],[-474,-47],[-346,-269],[-105,-136],[-99,-225],[-36,-477],[105,-693],[100,-427],[78,-641],[121,-393],[170,-338],[231,-729],[0,-412],[-134,-311],[-126,-18],[-134,66],[-170,172],[-81,83],[-215,218],[-65,185],[-23,423],[-104,417],[-204,220],[-100,172],[-162,520],[-91,146],[-72,360],[-141,340],[-16,177],[-62,170],[-114,82],[-98,146],[-85,220],[14,472],[-43,586],[-69,144],[19,383],[-70,370],[-35,584],[98,112],[58,201],[-30,192],[36,185],[91,177],[116,124],[41,165],[-16,180],[37,175],[-7,188],[51,176],[-22,99],[-22,100],[-205,224],[-272,546],[-10,71],[0,7],[-2,36],[-3,53],[-1,58],[0,47],[-1,60],[0,10],[-1,14],[-1,18],[-1,31],[-7,51],[-22,72],[3,186],[157,543],[-1,383],[-47,235],[-25,123],[355,577],[99,363],[140,67],[114,115],[176,269],[128,57],[182,291],[57,156],[-6,380],[-2135,-568]],[[204222,279542],[3220,12477],[533,2067],[971,3761],[36,140],[19,73],[19,74]],[[142410,336806],[-2847,130],[-427,15],[-342,-189],[-235,95],[-183,149],[-291,59],[-131,-47],[-136,-106],[-78,-157],[-227,-111],[-193,-63],[-209,-82],[-190,194],[-193,207],[-125,220],[-63,221],[-139,188],[-103,56],[-285,471],[-172,253],[-26,12],[-26,12],[-42,51],[-26,86],[-13,75],[-3,71],[-13,82],[-23,48],[-24,78],[-54,59],[-73,88],[-60,144],[-96,103],[-48,59],[-16,79],[28,65],[25,100],[-34,67],[-72,41],[-38,41],[-23,95],[55,134],[-3,114],[-60,66],[-16,103],[-41,67],[-50,51],[-57,86],[0,83],[26,102],[-16,103],[-42,74],[-88,12],[-42,110],[10,122],[42,79],[0,134],[-34,165],[-57,106],[86,12],[75,146],[-13,118],[-75,51],[-84,59],[-75,59],[-55,-4],[-76,79],[-81,16],[-104,86],[-23,142],[-34,102],[-71,28],[-55,-52],[-51,-34],[-108,34],[-151,158],[-60,110],[99,71],[119,-6],[92,22],[92,-59],[70,23],[21,63],[21,71],[-31,98],[-71,-19],[-49,43],[-42,118],[-104,118],[-123,102],[-78,59],[-84,-55],[-21,-94],[-49,-4],[-52,75],[-12,16],[-67,94],[-3,104],[123,226],[60,107],[-7,106],[-40,53],[-39,53],[27,123],[-5,265],[35,91],[12,30],[33,85],[37,87],[20,63],[44,78],[11,166],[-52,118],[-78,63],[-97,55],[-59,28],[-26,13],[-56,105],[-10,121],[3,52],[-15,69],[-17,17],[-84,65],[-23,49],[5,82],[-2,5],[-35,90],[-25,103],[29,51],[-26,59],[-67,19],[-9,75],[16,114],[-34,52],[-47,7],[-61,-61],[-49,18],[-68,16],[-41,51],[-16,161],[-15,98],[-6,40],[-44,98],[-86,28],[-102,-8],[-63,-12],[-117,-94],[-123,-35],[-96,23],[-76,126],[-39,89],[-29,64],[-31,154],[-3,126],[34,67],[55,19],[29,32],[28,31],[19,79],[-21,43],[-34,12],[-96,5],[-34,62],[-14,118],[1,177],[15,118],[-49,47],[-53,-7],[-65,27],[-141,75],[-112,181],[-96,63],[-76,8],[-96,-40],[-175,67],[158,393],[15,35],[66,163],[245,735],[12,52],[104,472],[104,564],[134,366],[23,61],[19,34],[171,294],[34,58],[3,3],[87,87],[392,391],[838,455],[72,52],[496,350],[396,357],[232,210],[279,228],[62,51],[158,153],[251,244],[146,224],[146,225],[261,614],[75,307],[72,292],[93,380],[120,484],[453,1236],[30,154],[94,489],[-4,290],[-145,437],[-28,2658],[-49,4516],[671,-81],[113,-14],[138,-16],[69,-9],[68,-8],[60,-5],[92,-8],[87,-7],[157,-14],[100,-8],[438,26],[97,6],[181,-26],[341,-50],[203,-29],[521,-102],[276,-53],[36,-7],[322,-63],[419,-84],[588,-117],[387,-54],[48,-6],[366,40],[242,69],[441,248],[403,345],[469,585],[505,866],[438,1008],[465,663],[144,204],[321,458],[284,565]],[[146345,370873],[334,714],[247,605],[254,373],[280,187],[450,28],[311,-48],[783,-611],[268,-117],[302,-67],[541,16],[403,73],[449,-79],[308,-184],[251,-150],[819,-472],[58,-33],[565,-214],[593,-130],[561,-63],[1249,-118],[468,-108],[300,-167],[126,-151],[127,-153],[156,-511],[-25,-436],[-20,-761],[-241,-1187],[-295,-1131],[-381,-1372],[-202,-618],[-176,-383],[-318,-324],[-354,-340],[-183,-189],[-310,-319],[-92,-121],[-19,-21],[-33,-38],[-76,-88],[-171,-201],[-127,-149],[-2,-2],[-563,-658],[-24,-40],[-59,-98],[-548,-901],[-16,-28],[-313,-546],[-602,-1232],[-201,-508],[-793,-1542],[-218,-483],[-233,-633],[-158,-463],[-79,-250],[-54,-255],[-48,-252],[-27,-239],[-4,-209],[22,-289],[30,-191]],[[146345,370873],[-112,174],[-4,29],[7,27],[-5,15],[-14,2],[-23,-1],[-18,-26],[-17,-46],[-2,-39],[-1,-25],[-15,-27],[-37,-8],[-27,-16],[-23,10],[-8,-9],[-4,-25],[17,-43],[-1,-15],[-16,-9],[-29,-9],[-22,2],[-11,21],[4,24],[12,24],[26,56],[6,43],[-6,21],[-29,2],[-25,-17],[-16,-27],[-12,-19],[-1,-27],[10,-18],[-14,-24],[-31,-7],[-10,-26],[-24,4],[-3,-23],[28,-13],[3,-21],[-9,-24],[-40,-6],[0,-29],[-21,-6],[-26,11],[-14,37],[6,17],[18,1],[5,29],[-25,27],[-16,-6],[-17,-15],[-38,1],[-27,9],[-11,11],[7,29],[37,19],[12,17],[-4,30],[-22,18],[-34,-2],[-32,-16],[-36,-5],[-21,-3],[-26,10],[-36,-8],[-40,-5],[-19,0],[-31,20],[-25,10],[-19,6],[-11,-7],[-5,-32],[-15,8],[-13,13],[2,27],[9,20],[5,21],[-18,12],[-31,-4],[-30,-5],[-6,24],[6,15],[30,8],[13,18],[-8,22],[-20,-3],[-42,-25],[-19,12],[-12,48],[-16,4],[-12,38],[-16,-2],[-21,-34],[-9,22],[-17,-16],[4,-32],[-9,-34],[3,-29],[10,-9],[28,-20],[-9,-15],[-24,-6],[-27,-3],[-21,-49],[-26,-17],[-18,70],[10,37],[-13,12],[-16,2],[-7,-28],[-11,-4],[-21,47],[15,31],[26,3],[2,20],[-7,10],[-2,18],[-13,24],[-11,-10],[-11,-27],[-26,-14],[-10,12],[13,35],[25,31],[5,23],[-5,15],[-19,-1],[-16,15],[-15,16],[-21,-1],[3,-17],[2,-9],[-10,-8],[-34,4],[-34,3],[-6,13],[10,59],[-12,16],[-29,9],[2,21],[7,7],[7,8],[-13,47],[-28,35],[0,24],[42,36],[-23,62],[-12,25],[9,21],[17,-13],[11,27],[23,-14],[25,-45],[16,33],[1,35],[-14,40],[-13,35],[2,29],[-26,7],[-23,-6],[-28,-15],[2,28],[16,26],[-8,20],[-28,-3],[-29,-32],[-24,26],[-14,36],[-1,31],[-5,32],[-22,8],[-25,-6],[-31,-20],[-16,-24],[-1,-35],[16,-31],[16,-41],[-6,-18],[-32,-24],[-31,15],[-72,3],[-4,13],[-12,42],[-28,16],[17,33],[13,24],[-1,33],[-14,63],[16,29],[20,39],[5,43],[-13,52],[-18,84],[8,37],[19,50],[13,21],[41,8],[9,25],[9,32],[4,33],[-6,23],[-13,0],[-6,0],[-11,17],[-4,17],[-10,38],[-26,18],[-31,1],[-28,26],[-24,9],[-26,-5],[-44,18],[-35,29],[-35,25],[-34,37],[-28,36],[-32,35],[-21,13],[-25,8],[-24,0],[-18,-7],[-17,-16],[-72,-23],[-29,8],[-13,15],[-12,14],[-36,42],[-29,57],[-12,24],[-11,24],[-10,17],[-9,17],[-15,18],[-38,9],[-18,-13],[-33,-49],[-30,-48],[-37,-47],[-37,-30],[-27,4],[-21,16],[-3,29],[0,29],[6,24],[10,15],[22,28],[25,38],[9,23],[-1,36],[-6,19],[-22,38],[-31,38],[-34,35],[-25,15],[-29,2],[-17,-6],[-13,-20],[-10,-38],[-4,-30],[-12,-19],[-17,-8],[-14,-3],[-11,-11],[-9,-8],[-6,-16],[-14,-17],[-24,-7],[-24,-3],[-19,9],[-16,14],[-46,2],[-40,22],[-53,19],[-65,14],[-35,8],[-21,12],[-2,4],[-3,5],[-1,29],[7,29],[9,32],[-2,25],[-13,29],[-20,6],[-22,-3],[-19,-13],[-20,-30],[-4,-18],[-3,-18],[2,-49],[-15,-52],[-18,-62],[-24,-29],[-33,0],[-75,7],[-31,22],[-4,20],[-8,39],[-23,82],[-22,22],[-23,3],[-22,-18],[-7,-19],[-23,-17],[-37,2],[-32,5],[-20,22],[-33,58],[-20,40],[-4,38],[1,20],[-4,26],[-11,14],[-15,21],[-52,54],[-49,44],[-50,31],[-8,79],[-41,38],[-8,77],[-25,29],[-23,69],[-11,40],[-30,22],[-33,5],[-48,-17],[-28,31],[-12,184],[-23,158],[-22,81],[-30,33],[1,53],[-5,62],[-36,17],[5,67],[-25,50],[-21,50],[-2,64],[-1,84],[-75,163],[-68,58],[-98,66],[-100,5],[-71,45],[-41,62],[-16,98],[-16,55],[6,74],[-33,74],[-119,128],[-71,75],[-81,93],[-112,168],[-54,81],[-22,10],[-26,32],[-4,23],[-8,45],[-94,148],[-6,5],[-133,110],[-64,82],[-47,43],[-57,67],[-52,14],[-54,-14],[-45,33],[-31,67],[-21,100],[11,36],[26,22],[42,-29],[46,-50],[59,-19],[73,14],[60,37],[17,42],[10,45],[21,34],[44,-5],[49,-17],[76,-12],[59,30],[65,45],[33,34],[43,43],[17,11],[5,-2],[28,-7],[62,7],[3,0],[97,51],[41,57],[25,45],[5,63],[2,47],[16,40],[34,41],[16,20],[38,72],[24,30],[13,34],[44,-18],[35,6],[8,41],[-11,27],[-21,22],[-29,21],[-52,39],[-36,63],[-22,57],[-5,53],[-3,66],[-24,20],[-25,-7],[-23,-21],[-7,-6],[-1,-10],[-2,-13],[4,-16],[7,-23],[0,-12],[-2,-3],[-6,-5],[-10,-12],[-41,-12],[-40,4],[-71,32],[-57,13],[-29,18],[-51,44],[-44,42],[-33,42],[-44,109],[3,77],[8,52],[-15,53],[-18,28],[-80,172],[-77,193],[-27,141],[-18,165],[-9,91],[-35,5],[-44,7],[-24,-15],[-39,16],[-23,17],[-14,0],[-14,-2],[-8,-15],[-7,-22],[-23,-38],[-30,-32],[-33,-28],[-54,0],[-34,2],[-64,-26],[-95,-57],[-87,-62],[-29,-14],[-23,-7],[-30,32],[-31,56],[-9,62],[-10,84],[-19,91],[-17,62],[-32,45],[-31,7],[-20,9],[-20,8],[-31,28],[-22,42],[-50,35],[-57,103],[-73,76],[-38,84],[-26,85],[-23,27],[-9,43],[-15,48],[-17,60],[-8,129],[-19,24],[-46,28],[-60,-12],[-67,-7],[-58,38],[-10,72],[2,84],[-13,48],[-25,64],[-7,67],[-3,62],[16,26],[49,46],[59,29],[33,38],[38,43],[49,9],[26,-16],[11,-43],[56,-8],[26,-45],[63,0],[57,22],[29,62],[16,59],[39,71],[45,49],[95,26],[69,26],[53,67],[27,58],[15,57],[-7,43],[-54,91],[-86,134],[-59,118],[-58,166],[-30,96],[-18,86],[7,102],[18,102],[2,6],[24,91],[8,57],[-9,84],[-2,126],[-24,60],[-36,26],[-19,-6],[-21,15],[-2,20],[-4,41],[-19,21],[-22,-14],[-38,36],[-62,62],[-65,81],[-48,103],[-31,79],[3,135],[5,101],[-4,46],[-28,38],[-16,15],[-33,33],[-37,55],[-23,23],[-4,65],[-23,53],[8,33],[5,17],[4,17],[20,11],[20,10],[54,24],[38,9],[23,19],[11,22],[15,-26],[41,14],[62,7],[74,29],[63,14],[45,5],[13,36],[-16,36],[-24,57],[-19,50],[-8,41],[0,36],[21,24],[28,-31],[48,26],[39,17],[57,-16],[53,1],[61,31],[7,62],[23,41],[21,59],[16,98],[14,88],[-1,68],[-16,65],[-40,35],[-31,27],[-2,37],[12,55],[13,84],[8,45],[-3,40],[-14,41],[-13,27],[-19,15],[-25,48],[-10,50],[2,123],[10,49],[5,20],[14,71],[6,28],[3,16],[0,1],[1,3],[5,38],[-5,37],[-11,56],[-24,100],[-24,48],[-29,43],[-31,49],[-11,38],[-4,43],[0,40],[9,28],[12,28],[13,32],[12,93],[5,61],[3,55],[-8,47],[-1,3],[-65,200],[-16,40],[-17,41],[-13,33],[-33,20],[-15,52],[-3,70],[-7,52],[-24,43],[-54,110],[-13,76],[-19,48],[11,84],[8,91],[-2,62],[12,36],[31,35],[45,12],[76,32],[12,5],[72,23],[82,36],[70,75],[11,56],[-11,31],[-36,21],[-15,25],[5,26],[12,36],[29,53],[38,19],[43,-5],[77,18],[35,32],[14,60],[27,53],[35,42],[44,27],[11,13],[5,23],[-17,19],[28,35],[40,22],[49,7],[71,-12],[24,22],[27,38],[30,81],[43,41],[46,38],[62,-2],[127,-68],[41,-6],[14,26],[-14,40],[-27,44],[-8,35],[9,31],[26,12],[33,3],[14,-14],[13,-34],[20,-45],[31,-11],[34,-12],[22,-66],[21,-22],[21,-22],[21,-3],[28,-13],[19,-27],[19,-42],[17,-36],[22,-62],[11,-25],[12,-25],[33,-57],[38,-46],[62,-33],[68,-12],[79,43],[60,28],[57,-4],[51,-48],[17,2],[26,7],[19,32],[30,114],[21,80],[-10,68],[-26,72],[-14,72],[-22,86],[9,67],[51,86],[76,95],[63,119],[51,96],[73,153],[6,139],[-21,177],[-1,9],[-34,136],[-77,79],[-95,115],[-34,105],[-26,91],[-66,81],[-57,48],[-38,110],[-32,105],[-60,177],[41,72],[13,71],[-57,96],[-16,95],[28,129],[70,86],[57,53],[9,96],[26,81],[44,33],[53,46],[36,74],[3,92],[29,30],[34,83],[-20,85],[24,78],[44,24],[51,9],[57,0],[57,22],[44,74],[26,135],[33,105],[23,71],[-1,136],[-11,102],[-73,62],[-9,77],[48,96],[4,86],[-59,100],[-36,76],[-56,5],[-36,17],[-19,26],[-16,31],[5,74],[-37,53],[-58,31],[-27,36],[-23,55],[0,80],[0,6],[-33,14],[-8,53],[-38,33],[-35,62],[11,70],[-15,43],[-29,52],[4,45],[-13,26],[-15,12],[-28,22],[-11,65],[9,64],[19,98],[0,86],[8,96],[29,74],[20,21],[26,0],[37,-6],[17,-3],[30,0],[13,7],[10,43],[-3,36],[-9,93],[26,85],[67,37],[144,85],[40,63],[35,77],[9,100],[11,244],[34,95],[47,110],[55,125],[27,93],[7,85],[16,194],[-10,258],[-9,330],[-19,272],[9,192],[48,114],[62,127],[26,54],[88,122],[471,653],[214,113],[247,51],[171,-92],[127,-64],[335,-267],[268,-335],[227,-416],[197,-174],[209,-79],[313,197],[825,851],[307,318],[320,285],[493,249],[587,305],[431,197],[268,148],[326,138],[323,71],[277,76],[323,-22],[134,131],[275,702],[219,356],[126,203],[156,187],[156,187],[902,1475],[241,217],[194,-35],[394,-152],[241,-69],[209,69],[672,98],[268,-49],[247,-168],[216,-235],[216,-59],[274,-16],[242,-14],[161,-9],[156,85],[230,141],[216,39],[463,-30],[346,-49],[398,-79],[29,350],[43,660],[30,405],[42,525],[29,310],[6,320],[-137,1169],[2,78],[2,77],[21,116],[21,115],[95,242],[111,201],[120,123],[111,50],[216,47],[153,46],[444,544],[81,126],[54,108],[59,70],[54,36],[149,98],[203,138],[242,175],[364,209],[119,108],[69,52],[61,12],[75,15],[309,-34],[473,-121],[29,-20],[397,-549],[420,-571],[115,-265],[91,-251],[91,-414],[171,-649],[152,-370],[177,-256],[213,-186],[177,-85],[285,-54],[113,-19],[112,-20],[225,-64],[173,-74],[144,-118],[108,-208],[75,-319],[133,-310],[131,-202],[150,-47],[179,87],[154,5],[202,-50],[118,5],[127,104],[59,177],[94,93],[170,133],[160,55],[209,24],[98,74],[92,178],[58,112],[-10,74],[-82,74],[-131,131],[-152,106],[-205,145],[-117,67],[-40,33],[-45,66],[-8,44],[10,74],[-3,75],[-12,36],[-37,59],[-48,49],[-47,32],[-38,-3],[-18,-9],[-17,-18],[-15,-22],[-49,-7],[-65,7],[-75,30],[-56,29],[-64,69],[-65,25],[-50,51],[-30,55],[-10,66],[-31,44],[-39,3],[-40,-35],[-38,-12],[-44,32],[-49,30],[-47,19],[-75,54],[-61,40],[-94,101],[-70,49],[-61,17],[-62,5],[-59,-7],[-52,-20],[-50,-27],[-23,41],[-31,20],[-56,8],[-60,15],[-52,9],[-33,42],[-2,52],[5,65],[-26,19],[-45,-5],[-35,7],[-13,30],[-6,71],[-13,52],[-26,27],[-48,49],[-58,17],[-58,69],[-40,74],[-12,64],[-55,123],[-172,216],[-57,86],[-85,126],[-53,79],[-39,25],[-43,-3],[-36,-17],[-70,-30],[-18,37],[-28,15],[-32,27],[-51,84],[-34,79],[-10,70],[-4,29],[-21,29],[-21,22],[-99,47],[-294,98],[-267,69],[-62,15],[-59,37],[-28,34],[-18,66],[-8,67],[-34,52],[-26,98],[-21,69],[-20,44],[-21,47],[5,64],[-2,37],[-24,54],[-38,39],[-21,28],[-9,31],[-9,45],[-34,29],[-54,45],[-36,49],[-25,39],[-18,52],[-21,25],[-29,12],[-56,22],[-55,37],[-54,49],[-62,81],[-50,40],[-78,39],[-26,8],[-263,84],[-146,73],[-18,12],[-19,20],[-43,35],[-36,73],[-16,72],[-10,71],[3,64],[10,79],[30,54],[9,66],[10,45],[13,19],[51,0],[90,67],[81,71],[59,-2],[86,-2],[33,9],[33,40],[8,32],[9,38],[7,72],[21,27],[61,8],[57,8],[30,31],[38,12],[17,47],[-2,62],[-10,111],[5,108],[13,79],[24,40],[10,83],[-14,56],[-8,136],[14,41],[38,13],[21,44],[-5,79],[-18,111],[-26,122],[11,146],[-11,37],[-32,33],[-10,171],[18,116],[24,118],[5,177],[-7,91],[4,67],[7,71],[17,43],[19,48],[50,76],[21,116],[16,108],[21,101],[31,72],[3,87],[-15,49],[-48,46],[-24,73],[-5,62],[17,75],[16,104],[6,78],[1,25],[-19,154],[-9,161],[1,77],[24,96],[-23,47],[-37,24],[-8,42],[-8,42],[-7,91],[-11,92],[0,209],[-12,32],[-26,7],[-37,-2],[-41,54],[-18,59],[-6,134],[10,189],[7,49],[-10,54],[-23,54],[-6,61],[10,55],[-23,31],[-11,23],[-12,54],[0,57],[2,79],[-2,42],[-26,29],[-37,42],[-36,39],[-40,-5],[-32,-2],[-34,37],[-35,37],[-1,6],[-18,63],[-13,64],[-20,42],[-34,51],[-20,46],[-19,11],[-18,12],[-38,22],[-10,29],[-11,29],[41,69],[17,18],[40,-3],[55,3],[37,-8],[22,23],[37,105],[43,102],[61,90],[39,105],[50,58],[50,66],[-2,48],[-30,50],[-60,48],[-37,45],[-47,167],[-9,127],[-3,217],[-26,31],[-14,53],[31,84],[40,36],[55,26],[7,84],[24,50],[-16,104],[-54,143],[-39,151],[3,74],[-50,120],[-28,62],[4,31],[22,17],[18,36],[-6,121],[32,61],[35,82],[36,48],[-25,150],[-7,231],[21,246],[-29,197],[-29,116],[-19,89],[11,53],[-3,48],[-23,84],[-36,68],[-61,57],[-44,14],[-34,0],[-76,-47],[-160,-50],[-37,3],[-28,32],[4,30],[4,30],[48,54],[45,-3],[17,23],[47,46],[62,76],[42,27],[54,-5],[55,-5],[33,12],[13,38],[16,61],[2,49],[1,59],[-28,97],[-39,67],[-55,36],[-30,48],[-17,93],[-77,95],[-69,65],[-70,65],[-50,76],[-23,78],[-7,60],[5,85],[20,46],[22,39],[50,35],[33,51],[37,87],[-6,35],[-38,71],[-60,125]],[[160073,422462],[44,10],[63,58],[77,109],[91,66],[253,251],[59,80],[60,55],[83,109],[68,137],[60,143],[80,130],[290,336],[125,114],[77,82],[180,164],[151,138],[76,95],[77,103],[47,116],[44,123],[32,79],[64,91],[90,57],[76,69],[50,65],[88,86],[69,53],[52,18],[86,22],[81,5],[49,-13],[51,-43],[67,-63],[49,-61],[63,-88],[21,-47],[14,-82],[-16,-90],[-21,-90],[-15,-74],[3,-72],[16,-63],[31,-48],[37,-42],[46,-24],[59,-5],[64,23],[75,35],[58,21],[98,56],[49,8],[37,-30],[23,-53],[9,-60],[0,-72],[-14,-71],[-35,-112],[-35,-89],[-32,-72],[-32,-71],[-14,-82],[2,-90],[-14,-80],[-26,-180],[-42,-275],[-34,-278],[-12,-212],[5,-79],[21,-45],[44,-27],[49,-2],[51,0],[51,13],[170,177],[70,48],[79,10],[79,-13],[112,-43],[99,-73],[89,-72],[116,-68],[55,-16],[52,23],[70,117],[322,749],[59,90],[74,98],[95,114],[79,114],[47,100],[23,127],[21,146],[21,124],[33,48],[60,16],[56,-6],[53,-13],[37,-40],[12,-92],[23,-69],[49,-109],[68,-151],[69,-111],[81,-192],[62,-178],[53,-112],[60,-84],[89,-87],[86,-64],[86,-53],[60,-29],[63,-3],[75,69],[115,98],[86,95],[57,80],[37,82],[6,90],[15,126],[111,451],[100,278],[35,45],[59,19],[81,36],[137,98],[248,125],[265,95],[105,21],[89,35],[76,53],[86,105],[49,122],[24,127],[39,88],[36,31],[83,32],[70,-3],[114,51],[122,42],[50,-16],[144,-90],[141,-53],[75,0],[77,45],[79,51],[58,50],[18,58],[14,56],[2,55],[-36,175],[-78,217],[-32,177],[-12,180],[8,109],[18,127],[3,106],[-5,66],[11,48],[38,37],[58,-6],[50,21],[96,40],[77,26],[70,-10],[65,11],[58,46],[49,49],[30,69],[18,71],[-27,56],[-33,47],[3,40],[14,43],[2,42],[-19,37],[-58,13],[-172,188],[-74,82],[-57,90],[-31,31],[-89,-18],[-59,11],[-57,50],[-38,58],[-4,53],[29,26],[45,45],[37,49],[84,68],[63,36],[69,38],[89,22],[77,-3],[80,-36],[61,10],[65,34],[75,93],[42,51],[55,35],[42,17],[41,22],[45,40],[69,45],[60,32],[51,32],[73,49],[48,44],[39,43],[27,43],[25,31],[27,28],[24,14],[44,30],[86,71],[45,42],[30,42],[18,35],[21,27],[33,26],[43,21],[68,31],[24,17],[37,17],[67,27],[60,21],[57,31],[80,68],[78,77],[127,140],[118,124],[138,135],[62,80],[28,42],[21,85],[-4,119],[-7,130],[-5,100],[9,45],[32,40],[28,66],[30,99],[19,47],[37,34],[38,5],[11,-7],[45,-33],[39,1],[33,-16],[36,-63],[59,-6],[47,-13],[58,-22],[46,-18],[88,-154],[118,-134],[40,-16],[42,21],[49,13],[40,-5],[40,-11],[39,-26],[32,-53],[22,-69],[20,-82],[14,-80],[7,-103],[33,-122],[16,-60],[13,-99],[22,-166],[28,-172],[35,-119],[35,-119],[39,-88],[38,-58],[22,-7],[33,-12],[67,16],[59,40],[51,62],[19,35],[23,75],[6,40],[15,50],[42,61],[45,50],[52,51],[31,17],[30,-10],[41,-44],[40,-3],[65,8],[51,16],[56,26],[121,138],[70,87],[55,64],[84,79],[77,50],[42,6],[30,0],[21,-3],[26,-16],[39,-26],[49,-85],[77,-259],[19,-82],[39,-170],[63,-180],[35,-85],[21,-56],[30,-36],[48,-19],[45,3],[58,18],[58,62],[46,52],[25,77],[61,217],[101,418],[69,238],[38,98],[71,64],[38,79],[62,133],[30,82],[38,128],[26,136],[29,146],[14,119],[10,94],[23,69],[32,78],[48,50],[61,42],[72,44],[71,27],[71,31],[63,24],[63,5],[34,-13],[25,-55],[33,-47],[47,-35],[42,-23],[50,-3],[41,11],[25,32],[20,60],[28,34],[48,52],[108,111],[108,118],[65,113],[108,136],[99,85],[80,76],[68,76],[52,108],[68,121],[42,92],[28,129],[-9,120],[3,51],[3,52],[8,55],[26,29],[42,50],[120,42],[86,34],[87,29],[106,0],[132,7]],[[178091,433111],[17,-58],[524,-332],[83,6],[40,14],[40,14],[21,41],[22,41],[24,121],[26,47],[49,74],[102,104],[204,136],[175,109],[132,11],[227,-79],[150,-60],[123,-87],[82,-124],[110,-174],[222,-365],[108,-72],[115,0],[188,33],[236,12],[163,8],[97,-27],[68,-18],[88,39],[104,14],[100,-12],[128,-34],[117,-83],[65,-98],[28,-120],[12,-72],[23,-28],[31,-31],[41,-13],[50,-15],[51,-20],[29,-40],[11,-40],[20,-30],[18,-19],[26,-9],[38,-25],[24,-56],[10,-100],[15,-90],[25,-64],[53,-61],[40,-81],[45,-47],[422,-252],[399,-834],[50,-106],[732,-718],[210,-857],[288,170],[588,767],[354,66],[177,-196],[437,-942],[65,-1980],[-341,-364],[-529,-1492],[-707,-1094],[-432,-487],[-770,-449],[-212,-588],[-21,-404],[205,-729],[324,-208],[657,-33],[461,336],[410,-172],[295,-501],[843,-418],[515,-498],[686,-1269],[770,-208],[438,-482],[34,-521],[-457,-330],[-360,-649],[-177,-885],[1232,-1010],[-1149,-436],[-161,-896],[243,-187],[114,11],[100,-63],[118,-61],[64,-103],[-11,-129],[125,-221],[104,-81],[207,-1],[91,-10],[80,-75],[41,-81],[31,-145],[53,-226],[32,-307],[-14,-173],[-14,-178],[-50,-183],[-64,-161],[-32,-210],[35,-415],[-14,-291],[-21,-135],[-68,-129],[-115,-178],[-71,-183],[-114,-388],[-115,-393],[-46,-178],[-75,-118],[-104,-108],[-215,-124],[-484,-269],[-336,-286],[-139,-172],[-177,-209],[-295,-242],[-603,-497],[-89,-129],[-40,-183],[-7,-173],[11,-221],[50,-107],[93,-119],[154,-86],[228,-70],[188,-52],[105,-61],[89,-124],[68,-210],[53,-232],[222,-1168],[68,-119],[110,-49],[168,6],[241,48],[106,23],[103,-9],[113,-40],[117,-74],[122,-121],[77,-98],[59,-103],[62,-154],[78,-229],[49,-189],[41,-213],[37,-293],[4,-129],[-68,-421],[9,-269],[52,-161],[49,-181],[7,-75],[30,-56],[58,-80],[43,-80],[13,-105],[-1,-119],[20,-134],[28,-148],[74,-261],[-130,-391],[-40,-81],[-203,-191],[-112,-104],[-113,-105]],[[343257,250510],[164,-174]],[[343421,250336],[93,-121],[115,-131],[80,-100],[48,-57],[15,-15],[1,-25],[-70,-150],[-76,-150],[-373,-774],[-5,-11],[-125,-279],[-127,-271],[-31,-154],[-6,-167],[16,-152],[2,-11],[52,-125],[16,-27],[60,-98],[41,-32],[48,-37],[52,-56],[60,-64],[75,-66],[27,-23],[30,-40],[5,-6],[3,-4],[6,-9],[1,-1],[34,-45],[3,-23],[10,-98],[11,-118],[4,-194],[65,-202],[34,-84],[17,-112],[74,-115],[-20,-64],[-105,-115],[-309,-407],[-107,-71],[-89,-109],[-50,-95],[-46,-99],[-25,-154],[-14,-163],[-8,-229],[6,-107],[23,-249],[-4,-84],[-5,-82],[7,-75],[-7,-62],[3,-86],[-4,-124],[-19,-115],[-52,-156],[-29,-117],[-15,-59],[-2,-10],[-53,-205],[-2,-8],[-73,-294],[45,-12],[121,-33],[130,-52],[174,-68],[162,-65],[18,-7],[310,-119],[29,-12],[25,-10],[17,-6],[1,-1],[19,-6],[95,-35],[3,-1],[26,-10],[38,-14],[70,-26],[176,-68],[143,-65],[93,-42],[121,-49],[65,-27],[11,-4],[344,-134],[2,-1],[7,-3],[1,0],[2,-1],[10,-4],[20,-9],[5,-2],[4,-1],[4,-2],[5,-2],[3,-1],[9,-4],[5,-2],[5,-3],[113,-47],[12,-4],[26,-10],[38,-14],[34,-12],[-23,-97],[-21,-59],[-22,-59],[-41,-261],[-24,-125],[-56,-365],[-33,-159],[-38,-104],[-99,-223],[-65,-225],[-43,-202],[-32,-149],[-22,-110],[-17,-71],[-18,-94],[-24,-133],[-7,-172],[34,-144],[40,-224],[0,-152],[-1,-152],[-14,-227],[-59,-128],[-26,-44],[-37,-62],[-48,-90],[-5,-10],[-56,-74],[-43,-71],[-13,-154],[10,-147],[9,-92],[15,-135],[19,-251],[2,-110],[-57,-127],[-56,-41],[-58,-22],[-38,-12],[-25,-9],[-91,-21],[-103,-36],[-99,-55],[-82,-83],[-39,-40],[-113,-48],[-81,-20],[-72,-34],[-58,2],[-165,-56],[-55,-28],[-85,-128],[-45,-35],[-51,-26],[-42,-10],[-41,-9],[-47,-14],[-49,-26],[-43,-37],[-30,-44],[-32,-50],[-25,-41],[-20,-41],[-29,-26],[-34,-11],[-70,14],[-38,33],[-101,39],[-121,17],[-121,9],[-65,-9],[-63,-36],[-71,-61],[-84,-99],[-115,-131],[-142,-82],[-70,-53],[-21,-25],[-59,-68],[-31,-57],[-26,-50],[-37,-104],[-20,-173],[-13,-145],[-43,-177],[-32,-233],[-8,-80],[-7,-76],[-8,-80],[5,-136],[-64,45],[-1,149],[-11,236],[-9,145],[22,152],[33,101],[17,107],[-13,86],[-54,222],[-86,368],[-82,-60],[-56,-50],[-109,-25],[-94,12],[-76,110],[-90,89],[-76,25],[-140,-47],[-112,-73],[-133,-47],[-422,-14],[-106,0],[-186,-8],[-177,-27],[-167,-72],[-216,-275],[-139,-148],[-218,-304],[-144,-180],[-64,-68],[-66,-32],[-110,-14],[-105,41],[-162,55],[-23,8],[-203,90],[-9,4],[-39,16],[-213,87],[-263,106],[-28,11],[-84,32],[-8,3],[-69,26],[-5,4],[-169,114],[-240,156],[-247,187],[-184,186],[-139,126],[-25,95],[-50,239],[-33,172],[-68,129],[-58,61],[-108,30],[-30,3],[-11,1],[-5,0],[-81,-46],[-30,-29],[-80,-80],[-74,-73],[-100,-99],[-3,-3],[-51,-60],[-18,-22],[-102,-69],[-206,-169],[-192,-70],[-206,-74],[-192,-81],[-11,-4],[-162,-11],[-53,17],[-46,15],[-29,10],[-85,27],[-178,80],[-29,10],[-131,50],[-52,19],[-331,118],[-111,36],[-145,27],[-264,-57],[-185,-31],[-127,-19],[-74,-3],[-74,-4],[-206,-15],[-116,49],[-244,38],[-138,-8],[-181,-53],[-167,-28],[-161,-33],[-20,1],[-257,12],[-15,0],[-161,1],[-91,20],[-144,-32],[-6,-2],[-186,-43],[-100,-18],[-50,2],[-50,30],[-293,92],[-614,221],[-120,68],[-12,8],[-12,8],[-141,91],[-102,82],[-153,123],[-2,2],[-38,30],[-42,35],[-2,2],[-40,53],[-51,70],[-32,75],[-33,76],[-123,397],[-37,177],[-60,172],[-53,196],[-66,208],[-73,116],[-86,70],[-160,61],[-153,42],[-266,67],[-157,37],[-15,4],[-261,73],[-298,89],[-14,4],[-21,5],[-21,6],[-20,5],[-20,5],[-64,16],[-148,38],[-18,4],[-158,19],[-122,0],[-120,-32],[-4,-1],[-192,-83],[-203,-78],[-178,-134],[-172,-151],[-227,-182],[-238,-210],[-29,7],[-29,7],[-93,-182],[-78,-177],[-7,-15],[-34,-178],[-18,-119],[-1,-256],[-7,-339],[-15,-340],[-12,-270],[-6,-255],[-11,-372],[-29,-627],[-22,-239],[-7,-253],[-17,-111],[-9,-57],[-14,-201],[-16,-118],[-10,-10],[-9,-16],[-18,-28],[0,-132]],[[323996,233502],[0,-49]],[[323996,233453],[-6,-276],[-14,-101],[-35,-82],[-133,-319],[-59,-153],[-71,-179],[-81,-150],[-100,-115],[-5,-6],[-171,-234],[-243,-347],[-166,-216],[-285,-440],[-41,-56],[-218,-300],[-77,-107],[-18,-26],[-339,-491]],[[321934,229855],[-29,-43]],[[321905,229812],[-42,-81],[-7,-16],[-88,-108],[-123,-84],[-3,-1],[-122,-66],[-112,-87],[-129,-142],[-117,-163],[-60,-130],[-42,-121],[-2,-7],[-7,-60],[16,-138],[88,-391],[56,-185],[16,-45],[67,-232],[176,-573],[59,-193],[3,-10],[76,-233],[55,-159],[68,-222],[49,-199],[69,-283],[46,-177],[14,-198],[35,-336],[3,-65],[3,-66],[-22,-2],[-352,-33],[-1041,-131],[-136,-17],[-446,-20],[-348,-50],[-309,-40],[-141,-12]],[[319155,224736],[2,36],[1,30],[0,3],[13,318],[-20,384],[-62,384],[8,305],[110,289],[298,344],[169,199],[85,282],[33,212],[1,330],[-165,569],[-248,798],[-10,32],[-125,435],[-100,352],[-34,116],[-105,181],[-128,173],[-70,137],[-69,137],[-65,198],[-110,336],[-37,200],[2,330],[29,199],[51,78],[19,230],[-5,260],[-139,230],[-90,122],[-150,204],[-190,318],[-143,211],[-83,148],[-33,132],[-113,323],[-165,285],[-19,40],[-125,262],[-107,369],[-140,182],[-82,318],[-82,253],[3,317],[-28,217],[40,144],[14,545],[0,270],[86,274],[19,123],[-25,77],[-152,116],[-102,105],[-82,106],[-73,153],[-25,259],[14,160],[-31,282],[-40,210],[30,205],[49,207],[33,319],[33,423],[28,371],[-4,414],[8,191],[-32,191],[-63,218],[-36,316],[-8,271],[55,212],[106,185],[108,153],[16,127],[16,127],[76,148],[98,167],[209,257],[131,265],[64,328],[14,264],[22,387],[68,259],[46,296],[38,406],[1,7],[46,318],[32,455],[14,175],[54,150],[63,224],[16,170],[55,233],[57,246],[56,317],[35,332],[42,200]],[[339093,264848],[127,-84],[127,-85],[128,-97],[128,-98],[124,-96],[125,-95],[169,-130],[169,-129],[205,-157],[150,-102],[150,-102],[120,-94],[102,-65],[131,-67],[138,-30],[96,0],[96,1],[102,40],[148,55],[158,67],[255,108],[85,37],[147,29],[148,30],[213,-38],[194,-95],[187,-174],[114,-189],[124,-233],[116,-198],[90,-168],[53,-102],[125,-228],[166,-304],[84,-151],[83,-152],[150,-214],[61,-87],[128,-130],[25,-24],[12,-12],[38,-35],[12,-11],[61,-58],[75,-53],[102,-65],[197,-91],[170,-61],[58,-7],[168,-23],[686,-35],[111,-7],[98,-24],[116,-57],[389,-168],[185,-101],[223,-169],[411,-296],[40,-22],[81,-45],[21,-9],[68,-27],[80,-20],[22,-6],[109,-23],[232,0],[396,25],[474,20],[497,102],[163,31],[29,1],[175,8],[67,-3],[61,-2],[60,-5],[123,-20],[144,-25],[25,-7],[25,-6],[-2,-54],[-1,-16],[-1,-12],[-7,-18],[-73,-1],[-90,2],[-132,3],[-64,-25],[-26,-112],[-56,-226],[-20,-126],[-1,-78],[46,-92],[11,-83],[-10,-73],[-23,-61],[-31,-39],[-42,-21],[-11,0],[-211,-2],[-118,-86],[-125,-32],[-59,0],[-44,14],[-48,19],[-53,-2],[-53,-19],[-46,-32],[-41,-41],[-47,-47],[-15,-15],[-90,-58],[-178,-31],[-18,-4],[-50,-3],[-48,17],[-128,71],[-34,55],[-32,103],[-64,75],[-63,50],[-40,1],[-41,-15],[-85,-73],[-56,-78],[-71,-104],[-16,-23],[-95,-252],[-4,-11],[-12,-37],[-50,-97],[-29,-32],[-40,-20],[-83,-61],[-102,-91],[-47,-79],[-50,-102],[-73,-161],[-37,-90],[-66,-175],[-69,-119],[-47,-65],[-21,-6],[-43,-11],[-149,-8],[-23,-19],[-12,-10],[-46,-66],[-46,-111],[-36,-106],[-96,-74],[-49,-32],[-6,-4],[-24,-4],[-51,-7],[-17,-2],[-22,-3],[-27,-4],[-64,-9],[-11,-3],[-14,-4],[-17,-4],[-24,-7],[-2,0],[-67,-21],[-51,-41],[-75,-110],[-44,-68],[-8,0],[-48,-4],[-196,-66],[-34,-57],[-23,-74],[-44,-122],[-44,-61],[-48,-37],[-4,0],[-89,-6],[-101,17],[-55,20],[-80,-75],[-111,-102],[-108,-108],[-87,-108],[-56,-94],[-25,-81],[-26,-35],[-32,-41],[-59,-81],[-63,-50],[-124,-52],[-194,-63],[-108,-44],[-17,-19],[-10,-20],[8,-31],[43,-46],[46,-115],[8,-143],[8,-115],[2,-23],[13,-168],[7,-122],[-2,-21],[-1,-31],[-4,-25],[-17,-117],[-18,-128],[-22,-216],[-5,-105],[-5,-192],[15,-89],[10,-56],[18,-99],[4,-55],[2,-30],[-233,-226],[-335,-325],[-132,-110],[-40,-49],[-93,-51],[-250,-336],[-18,-25],[-77,-115],[-143,-242],[-91,-158],[-28,-50],[-192,-325],[-102,-172],[-70,-52],[53,-25],[17,-22],[0,-11],[1,-20],[2,-27],[75,-37],[117,-90],[180,-133],[210,-172]],[[924301,487144],[182,15]],[[924483,487159],[167,56],[116,36],[118,30],[108,8],[85,-15],[166,54],[83,62],[112,112],[119,120],[83,98],[38,103],[115,321],[157,121],[122,98],[91,76],[37,4],[37,5],[68,-18],[86,-58],[92,-112],[91,-174],[92,-156],[116,-232],[136,-152],[89,-82],[65,-65],[56,-53],[98,-38],[136,-42],[108,-4],[81,0],[83,31],[58,41],[283,141],[75,27],[94,49],[75,27],[98,23],[154,7],[101,-4],[286,42],[90,27],[196,15],[140,78],[405,162],[93,68]],[[929782,487996],[138,46]],[[929920,488042],[11,4],[151,102],[139,118],[121,91],[128,118],[124,55],[22,10],[187,52],[88,24],[134,49],[123,27],[81,11],[103,0],[154,-64],[164,-95],[161,-107],[134,-64],[93,-80],[25,-23],[48,-42],[46,-68],[40,-118],[35,-73],[58,-30],[22,-7],[69,-23],[124,-35],[103,-26],[19,1],[61,2],[6,1],[37,-2],[38,-2],[56,15],[45,84],[10,64],[8,80],[50,61],[46,33],[65,-14],[48,-53],[48,-61],[55,-27],[101,42],[114,57],[80,118],[43,61],[45,38],[51,-34],[35,-80],[10,-107],[-15,-148],[10,-114],[18,-137],[35,-91],[46,-61],[80,-46],[81,-19],[86,-3],[88,-4],[80,15],[104,68],[68,16],[76,49],[32,65],[111,331],[85,110],[49,61],[45,45],[23,-9],[23,-10],[45,-45],[3,-3],[47,-43],[36,8],[7,3],[43,23],[73,23],[76,-34],[29,-54],[1,-2],[66,-24],[88,-11],[51,28],[14,8],[3,2],[53,22],[17,8],[74,19],[93,-44],[35,-17],[98,-42],[69,19],[83,38],[73,-26],[60,-65],[66,-42],[88,-15],[88,-11],[89,34],[70,80],[71,102],[68,107],[35,106],[35,42],[48,0],[28,-38],[48,-103],[7,-22],[41,-130],[8,-67],[4,-39],[-17,-99],[-25,-84],[-13,-68],[10,-57],[38,-72],[22,-99],[24,-127],[2,-10],[25,-118],[37,-98],[3,-8],[71,-61],[60,7],[109,38],[113,12],[6,0],[85,5],[25,2],[10,0],[5,0],[94,4],[70,8],[11,-14],[19,-24],[94,-133],[-13,-126],[10,-114],[25,-118],[68,-133],[76,-92],[3,-3],[58,-107],[57,-121],[66,-221],[38,-175],[86,-163],[103,-145],[40,-13],[63,-21],[73,-4],[61,4],[78,34],[78,92],[73,121],[71,164],[28,125],[-9,27],[-5,17],[-7,21],[-4,12],[-5,16],[-3,10],[-2,5],[-2,8],[-2,5],[-5,16],[-4,14],[-3,10],[-1,3],[-1,2],[-1,3],[-1,2],[-1,4],[-2,84],[37,53],[43,4],[51,-38],[43,-61],[42,-80],[31,-106],[53,-38],[88,-16],[111,-7],[126,-8],[227,-57],[48,-34],[45,-65],[3,-42],[4,-49],[6,-72],[20,-61],[-2,-53],[-1,-54],[3,-87],[17,-49],[26,-27],[108,8],[70,28],[15,6],[86,45],[111,137],[106,130],[83,60],[86,0],[108,-38],[71,-26],[61,-19],[60,11],[28,61],[-10,72],[-23,57],[-38,73],[-43,49],[-65,65],[-33,57],[-30,57],[0,121],[22,88],[31,61],[25,99],[2,72],[-17,65],[-177,114],[-126,68],[-40,42],[-33,46],[-10,121],[15,122],[35,175],[-5,118],[-20,91],[-15,72],[-10,103],[15,110],[52,67],[34,51],[63,110],[78,38],[63,0],[66,-57],[42,-83],[21,-103],[50,-84],[50,-34],[69,-30],[63,-16],[68,-22],[30,-54],[-3,-41],[-25,-69],[-17,-76],[-21,-99],[3,-133],[12,-133],[38,-141],[46,-114],[75,-186],[51,-110],[14,-31],[36,-76],[51,-68],[55,-31],[55,15],[74,73],[40,72],[15,80],[-10,91],[-28,99],[-38,99],[-45,87],[-68,141],[-30,110],[7,114],[58,57],[51,-7],[40,-34],[88,-122],[68,-129],[73,-107],[66,-87],[50,-27],[43,0],[106,69],[78,79],[41,80],[-18,114],[-43,73],[-28,45],[-20,91],[15,65],[33,15],[40,-3],[89,38],[105,64],[69,15],[60,-22],[113,-19],[132,-19],[95,-38],[61,26],[60,53],[71,27],[73,4],[56,-27],[42,-57],[31,-53],[83,-63],[83,-9],[106,-8],[88,-8],[48,-106],[28,-99],[53,-91],[98,-50],[101,-30],[80,11],[79,69],[73,129],[60,152],[13,130],[-3,152],[-20,125],[18,107],[78,41],[73,-22],[24,1],[25,1],[24,1],[20,1],[18,1],[11,1],[7,0],[7,1],[5,0],[4,0],[4,0],[70,46],[61,90],[48,77],[7,91],[-17,57],[-31,46],[-35,84],[-10,72],[18,53],[50,38],[77,15],[40,-9],[39,-10],[96,-30],[43,-53],[20,-65],[-22,-68],[-23,-95],[-25,-107],[5,-80],[53,-76],[95,-45],[254,-43],[205,-79],[227,-42],[189,-91],[98,-61],[106,-23],[134,42],[113,65],[150,-14],[160,-13],[105,41],[205,69],[91,23],[66,-23],[40,-83],[0,-95],[-28,-118],[-22,-130],[-8,-106],[15,-80],[58,-30],[58,45],[41,69],[50,15],[60,-38],[48,-76],[189,-183],[285,-296],[104,-137],[53,-61],[53,-34],[113,-38],[194,-42],[151,-57],[71,-23],[78,-19],[73,19],[63,42],[46,84],[17,91],[15,125],[5,55],[5,56],[-10,114],[-27,99],[-33,79],[-204,369],[-79,103],[-50,148],[-18,103],[10,99],[56,68],[71,69],[60,57],[61,102],[47,156],[66,301],[48,372],[40,160],[78,190],[149,107],[93,49],[61,0],[43,-49],[43,-65],[45,-57],[48,-114],[70,-251],[71,-243],[50,-141],[46,-118],[43,-106],[55,-61],[88,-23],[68,38],[58,87],[68,111],[76,106],[305,236],[199,84],[106,26],[83,-30],[76,-57],[33,-57],[30,-99],[-10,-99],[-40,-88],[-38,-102],[-46,-149],[-60,-87],[-101,-95],[-68,-72],[-58,-80],[-25,-84],[7,-114],[116,-274],[91,-137],[66,-64],[85,4],[96,15],[174,80],[151,27],[106,11],[61,30],[48,53],[40,76],[10,103],[-25,133],[-48,571],[7,144],[28,118],[43,87],[66,57],[39,6],[39,6],[78,-38],[73,-88],[106,-201],[136,-377],[159,-608],[63,-152],[53,-69],[78,-30],[77,12],[24,3],[45,72],[28,103],[22,145],[-12,292],[17,229],[84,205],[68,114],[131,125],[154,126],[116,95],[73,65],[103,118],[50,117],[8,118],[-1,42]],[[953482,489209],[-2,42]],[[953480,489251],[-1,5],[-2,5],[-13,38],[-16,47],[-71,57],[-93,38],[-151,76],[-121,137],[-298,434],[-20,30],[-78,118],[-66,118],[-52,104],[-26,135],[-12,65],[-3,15],[4,54],[8,123],[11,89],[55,88],[80,78],[28,20],[124,87],[230,-27],[32,-26],[98,-83],[1206,-1020],[413,-349],[140,-118],[172,-116],[146,-262],[202,-494]],[[955406,488717],[-22,-310],[-146,-272],[-3073,-2965],[-412,-301],[-412,-301],[-2547,-2133],[-1984,-1585],[-1676,-947],[-248,-151],[-254,-220],[-332,-196],[-136,-131],[-626,-515],[-924,-725],[-2166,-1517],[-1348,-958],[-3034,-1874],[-4997,-2809],[-2509,-1256],[-1793,-958],[-1928,-922],[-3308,-1467],[-6050,-2515],[-545,-187],[-545,-186],[-749,-272],[-1546,-562],[-4579,-1918],[-1269,-459],[-1269,-460],[-969,-305],[-817,-325],[-2099,-821],[-2696,-941],[-174,-76],[-4033,-1756],[-1686,-677],[-2167,-849],[-1394,-546],[-5192,-2062],[-1555,-615],[-164,-65],[-786,-311],[-431,-170],[-818,-324],[-143,-57],[-1519,-600],[-2382,-980],[-289,-118],[-229,-95],[-124,-51],[-225,-92],[-325,-134],[-359,-148],[-365,-150],[-326,-134],[-50,-20],[-202,-89],[-240,-106],[-363,-159],[-333,-147],[-357,-157],[-284,-125],[-332,-146],[-118,-52],[-131,-57],[-951,-419],[-1123,-494],[-1053,-494],[-502,-218],[-566,-328],[-2,-1],[-512,-226],[-1356,-598],[-1273,-644],[-38,-19],[-40,-20],[-48,-25],[-145,-73],[-369,-187],[-265,-142],[-445,-238],[-582,-319],[-24,-13],[-1577,-865],[-87,-47],[-63,-35],[-212,-126],[-110,-65],[-13,-7],[-24,-15],[-12,-7],[-19,-11],[-1,-1],[-33,-19],[-125,-75],[-139,-83],[-127,-75],[-96,-57],[-95,-56],[-57,-34],[-10,-6],[-10,-6],[-12,-7],[-1,0],[-69,-41],[-17,-11],[-153,-91],[-101,-59],[-151,-90],[-195,-116],[-250,-148],[-153,-91],[-61,-36],[-44,-27],[-75,-44],[-19,-11],[-51,-31],[-32,-18],[-41,-25],[-298,-177],[-48,-28],[-36,-22],[-35,-20],[-30,-18],[-27,-16],[-45,-27],[-1,0],[-57,-34],[-226,-135],[-171,-101],[-459,-273],[-172,-102],[-956,-567],[-54,-33],[-759,-490],[-204,-132],[-852,-567],[-420,-286],[-47,-31],[-325,-252],[-70,-55],[-49,-37]],[[822063,503341],[109,-57],[107,-113],[75,-29],[106,34],[320,199],[152,-37],[115,-87],[111,-130],[107,-99],[110,-44],[161,75],[138,212],[112,135],[144,99],[164,56],[158,108],[167,59],[22,70],[43,41],[39,16],[23,59],[33,99],[30,45],[14,58],[-18,160],[13,87],[24,152],[-12,68],[-27,80],[-38,65],[-25,65],[4,56],[29,53],[23,14],[24,14],[53,-13],[86,-55],[45,19],[103,67],[152,44],[62,19],[76,80],[98,127],[91,133],[80,55],[70,22],[92,13],[62,-19],[47,-37],[24,-71],[35,-81],[87,-71],[76,-62],[57,-9],[101,-44],[57,-55],[82,-65],[107,-53],[74,-19],[88,19],[111,62],[99,111],[63,62],[91,34],[32,-7],[31,-8],[66,-81],[41,-28],[60,25],[63,50],[70,34],[105,22],[123,40],[28,9],[9,17],[10,51],[4,53],[12,26],[56,42],[82,37],[21,5],[152,38],[59,13],[41,12],[24,13],[33,17],[72,21],[117,11],[62,-14],[72,-15],[33,3],[31,14],[24,12],[22,24],[44,41],[103,91],[10,9],[66,37],[63,7],[52,-52],[32,-53],[48,-23],[149,63],[172,63],[86,50],[59,59],[49,7],[55,-77],[50,-26],[39,41],[109,139],[55,70],[85,63],[90,22],[72,77],[80,118],[66,87],[47,24],[59,-24],[60,-84],[25,-124],[2,-155],[14,-133],[47,-53],[45,13],[33,43],[25,40],[72,75],[43,62],[35,6],[10,-19],[68,-68],[49,-6],[123,19],[128,58],[113,75],[92,18],[76,-37],[64,-37],[59,-19],[95,31],[57,109],[27,90],[6,18],[33,44],[41,-10],[78,-30],[64,184],[-15,172],[58,157],[91,104],[170,72],[99,12],[81,-46],[155,0],[127,92],[72,28],[75,55],[8,92],[3,130],[37,82],[14,8],[61,35],[130,-16],[134,-16],[342,11],[83,-22],[137,-93],[98,-103],[57,-120],[29,-130],[-3,-126],[-11,-178],[3,-192],[26,-157],[101,-115],[56,-40],[77,-3],[69,81],[94,104],[86,22],[112,5],[137,-11],[119,44],[144,-38],[98,-104],[68,-109],[62,-54],[57,-38],[80,54],[-22,202],[7,163],[62,109],[43,54],[86,49],[91,22],[101,-65],[104,-169],[270,-283],[51,-55],[184,-146],[256,-175],[61,27],[98,229],[36,71],[61,0],[80,-6],[86,17],[76,43],[180,174],[76,49],[148,6],[16,-12],[114,-86],[58,-11],[205,65],[155,71],[47,27],[29,38],[41,48],[37,9],[81,-40],[119,54],[54,109],[11,120],[-33,108],[40,66],[100,66],[15,10],[138,-11],[83,-37],[310,-137],[30,9],[55,15],[88,25],[79,43],[87,104],[36,81],[47,196],[18,44],[31,44],[45,5],[98,-14],[4,0],[3,-1],[6,-1],[87,-8],[82,-4],[127,-15],[53,-17],[37,-22],[62,-76],[124,-222],[35,-56],[66,-32],[78,-37],[34,-35],[14,-26],[45,-188],[31,-88],[32,-57],[34,-49],[70,-32],[75,-5],[62,-5],[32,-41],[2,-31],[-4,-19],[-3,-20],[-49,-109],[-39,-68],[-51,-16],[-40,-19],[-14,-39],[9,-35],[102,-46],[124,-55],[280,-123],[218,-89],[32,19],[60,35],[54,119],[74,66],[98,37],[123,16],[115,21],[112,45],[57,4],[46,-8],[30,-61],[39,-132],[62,-40],[115,-26],[145,8],[158,21],[169,8],[99,-29],[112,-62],[55,-79],[75,-57],[200,-35],[168,57],[181,-7],[154,-29],[210,-42],[222,-74],[11,-3],[108,-36],[8,-3],[7,-2],[6,-2],[7,-3],[10,-3],[8,-3],[7,-2],[8,-3],[18,-5],[20,-7],[23,-8],[23,-7],[39,-13],[66,-22],[68,-20],[181,-53],[236,-68],[479,-141],[350,-100],[411,-118],[555,-160],[443,-127],[100,-29],[369,-94],[190,-77],[228,-94],[2,-1],[3,-1],[275,-83],[51,-16],[139,-42],[42,-13],[461,-127],[237,-13],[15,-1],[321,7],[312,57],[370,125],[3,1],[410,239],[457,382],[199,248],[75,94],[200,274],[65,108],[178,299],[139,267],[147,415],[87,245],[50,142],[10,27],[212,552],[15,40],[113,294],[50,127],[140,358],[143,363],[1035,2635],[420,1070],[599,1509],[296,746],[633,1644],[140,323],[116,260],[135,274],[112,211],[126,225],[149,239],[238,316],[135,183],[139,183],[126,119],[140,155],[158,133],[186,169],[205,147],[317,232],[471,267],[3185,1736],[2910,1689],[1107,601],[124,141],[168,147],[223,134],[229,161],[97,148],[70,155],[33,147],[60,323],[28,302],[42,120],[94,56],[130,-56],[135,21],[116,7],[98,21],[89,-42],[65,-113],[61,-154],[74,-155],[162,-133],[145,-169],[80,-105],[56,-85],[32,-98],[14,-140],[19,-197],[18,-148],[24,-112],[56,-49],[153,7],[140,105],[70,98],[51,127],[84,126],[112,99],[237,84],[84,56],[65,113],[75,119],[79,106],[84,154],[84,288],[-14,141],[-38,77],[-74,84],[14,162],[56,126],[14,141],[-24,246],[-27,183],[13,295],[10,210],[46,159],[51,120],[34,150],[26,175],[8,304],[12,133],[135,344],[66,96],[74,86],[74,137],[184,441],[94,239],[79,163],[28,141],[-25,116],[-63,115],[-62,73],[-43,90],[26,133],[34,64],[50,83],[91,202],[83,194],[119,197],[133,116],[68,62],[191,117],[96,77],[91,107],[85,95],[80,55],[107,43],[103,21],[110,-29],[125,-30],[136,8],[100,22],[90,8],[80,4],[91,-12],[99,-39],[62,-77],[46,-107],[39,-86],[34,-42],[63,-26],[68,8],[74,60],[48,86],[65,77],[91,43],[207,98],[318,141],[96,69],[80,73],[59,111],[60,128],[48,172],[26,175],[-15,107],[-19,116],[-26,138],[-3,225],[12,193],[59,441],[82,376],[43,232],[-3,226],[-28,341],[-17,254],[17,201],[45,125],[80,128],[96,64],[77,22],[61,-21],[123,-121],[78,-72],[78,-73],[80,-56],[65,-90],[252,-650],[63,-125],[86,-121],[100,-177],[151,-379],[134,-198],[166,-203],[180,-206],[188,-160],[169,-82],[131,-51],[92,-48],[114,-94],[129,-112],[79,-130],[20,-54],[20,-54],[46,-134],[4,-7],[42,-85],[51,-60],[73,-57],[257,-203],[195,-153],[7159,-5634],[12057,-9488],[970,-764],[2438,-1918],[9785,-7701],[8280,-6516],[324,-255],[52,-147],[57,-132],[39,-177],[18,-84],[91,-251],[125,-401],[228,-716],[198,-625],[70,-206],[102,-336],[176,-541],[45,-154],[137,-383],[32,-89],[12,-32],[48,-126],[4,-11],[56,-122],[3525,-7753],[110,-32],[107,-17],[20,-4]],[[139167,299449],[-52,-25],[-51,-24],[-151,106],[-151,117],[-165,111],[-119,22],[-116,-56],[-70,-120],[-16,-120],[42,-213],[-14,-137],[-40,-57],[-186,-183],[-105,-112],[-69,-63],[-35,-112],[1,-113],[2,-139],[97,-140],[99,-44],[145,-350],[116,-316],[74,-295],[71,-439],[-14,-226],[-45,-138],[-137,-131],[-82,-62],[-75,-10],[-88,89],[-258,348],[-181,249],[-72,84],[-98,24],[-147,-6],[-111,-77],[-34,-108],[15,-692],[14,-309],[-46,-175],[-112,-67],[-112,-67],[-78,-121],[-75,-350],[28,-336],[228,-447],[210,-398],[64,-175],[39,-195],[23,-145],[22,-62],[76,-116],[62,-98],[55,-128],[28,-116],[2,-82],[1,-125],[-16,-198],[-65,-399],[-33,-133],[-54,-222],[-100,-158],[-79,-70],[-141,-87],[-135,-7],[-154,-14],[-107,29],[-28,-4],[-27,-4],[-56,-24],[-51,-50],[-45,-89],[-82,-164],[-46,-168],[-42,-222],[-22,-207],[-29,-138],[-25,-63],[-28,-51],[-29,-39],[-44,-39],[-58,-30],[-38,-19],[-27,-23],[-25,-41],[-31,-46],[-18,-62],[-16,-101],[-16,-43],[-48,-63],[-190,-255],[-239,112],[-192,180],[-134,34],[-150,-20],[-119,46],[-119,45],[-162,120],[-132,143],[-67,130],[-53,141],[115,246],[26,56],[63,136],[160,558],[32,188],[-26,113],[-29,130],[-92,238],[-122,225],[-156,218],[-216,218],[-98,193],[-11,193],[8,112],[8,112],[77,183],[109,256],[95,263],[33,176],[16,158],[-16,508],[102,513],[168,814],[104,464],[23,228],[25,260],[10,424],[-10,141],[-7,128],[-9,13],[-12,4],[-17,5],[-23,10],[-22,9],[-35,32],[-26,29],[-76,138],[-79,132],[-29,42],[-59,37],[-48,17],[-61,11],[-56,-6],[-56,-6],[-92,-39],[-107,-63],[-90,-32],[-39,-52],[-48,-14],[-84,-90],[-130,-140],[-46,-77],[-57,-44],[-35,-60],[-77,-90],[-52,-62],[-2,-37],[-9,-41],[-23,-3],[-26,22],[19,69],[-13,46],[-38,17],[-65,23],[-50,51],[-55,50],[-112,22],[-4,31],[8,105],[-13,101],[-8,35],[-30,10],[-5,34],[-37,0],[-52,25],[-42,60],[-27,66],[-39,79],[-34,45],[-38,14],[-28,-10],[-16,-54],[-17,-52],[-18,-12],[-34,9],[-33,37],[-22,50],[22,47],[20,44],[33,39],[27,37],[-3,45],[-23,29],[-55,13],[-36,0],[-34,20],[-15,34],[10,42],[21,44],[1,47],[-8,39],[-13,30],[-41,20],[-54,-22],[-62,27],[-50,32],[-39,47],[-38,46],[-21,114],[4,111],[23,59],[32,46],[34,28],[34,49],[35,41],[30,36],[42,13],[71,24],[90,22],[59,15],[54,12],[55,-10],[43,15],[54,12],[68,17],[64,-22],[33,8],[11,13],[12,14],[6,47],[25,51],[2,52],[-14,37],[-6,54],[-7,55],[23,59],[28,15],[36,12],[27,27],[7,62],[2,71],[-2,44],[20,10],[26,-10],[8,-54],[-2,-71],[10,-50],[22,-22],[27,-10],[23,37],[-1,47],[3,54],[13,42],[36,18],[31,-3],[41,-15],[19,18],[14,35],[-10,46],[20,31],[37,1],[49,-17],[41,-5],[47,5],[28,17],[2,44],[-32,67],[-8,71],[-3,69],[-10,52],[2,45],[18,2],[21,-39],[46,-57],[44,-5],[51,-15],[29,8],[20,24],[-12,45],[-28,51],[7,24],[31,60],[26,54],[-11,42],[-23,-7],[-48,-32],[-57,10],[-47,12],[-20,37],[4,67],[18,61],[36,50],[39,86],[39,20],[52,-3],[25,-27],[29,-47],[21,-5],[20,22],[-20,42],[-42,72],[-10,37],[16,23],[53,38],[24,8],[31,-30],[23,-61],[31,-25],[25,-30],[24,-9],[18,23],[-3,63],[-15,32],[-21,32],[5,54],[16,32],[8,74],[-3,59],[-6,40],[0,23],[8,20],[47,68],[25,0],[34,-10],[14,17],[23,-5],[14,-27],[0,-25],[-22,-53],[-19,-22],[-17,-3],[-15,-33],[-6,-30],[4,-19],[4,-20],[14,-19],[22,-6],[20,3],[15,11],[5,14],[4,28],[9,27],[14,9],[8,23],[1,21],[-9,20],[1,35],[12,48],[16,22],[28,27],[17,37],[21,46],[22,22],[21,22],[27,9],[31,4],[23,-16],[4,-38],[14,-24],[18,-4],[30,28],[20,36],[16,7],[20,-6],[12,-21],[5,-79],[8,-65],[16,-36],[9,-6],[19,10],[73,142],[2,14],[-11,24],[-19,9],[-25,-4],[-24,-11],[-18,10],[-11,17],[0,39],[8,31],[14,24],[10,28],[-3,30],[8,21],[13,9],[13,-11],[12,-32],[9,-32],[7,-40],[10,-12],[18,2],[15,11],[6,22],[3,38],[-5,54],[10,30],[20,10],[15,15],[5,25],[1,34],[10,15],[14,9],[13,13],[8,21],[4,19],[-4,19],[-15,11],[-16,0],[-6,16],[2,21],[5,17],[-6,9],[-12,22],[1,17],[20,10],[7,19],[-1,32],[-14,28],[-13,30],[-24,-11],[-31,6],[-14,14],[-8,25],[-15,32],[-34,17],[-25,39],[-6,16],[-5,17],[-31,20],[-13,26],[-30,3],[-20,20],[-25,25],[-17,44],[-36,2],[-45,20],[-16,17],[3,26],[-4,37],[-18,35],[-15,26],[-32,-5],[-12,-14],[-35,-2],[-17,7],[-29,31],[-30,1],[-15,-10],[-37,2],[-32,18],[-22,31],[-29,16],[-48,21],[-31,16],[-18,53],[-15,63],[4,66],[-1,27],[0,31],[11,24],[24,24],[9,25],[-1,32],[-6,35],[-13,29],[-18,26],[-24,28],[-23,5],[-18,19],[-14,27],[-11,27],[-21,15],[-32,23],[-18,16],[-17,14],[-26,-4],[-22,-1],[-25,-11],[-18,-15],[-3,-26],[-25,-13],[-33,3],[-55,16],[-15,13],[-12,13],[-19,4],[-19,-20],[-20,-15],[-22,10],[-37,3],[-22,-2],[-12,-18],[-41,4],[-37,-15],[-32,-4],[-20,-14],[-29,8],[-20,-32],[-20,-11],[-6,-41],[-14,-37],[-6,-23],[-6,-22],[-20,-2],[-11,-19],[-5,-21],[11,-13],[-6,-12],[-17,2],[-6,-22],[-9,-3],[-12,-5],[-17,17],[-41,18],[-12,3],[-8,-12],[-14,1],[-10,-15],[-46,-2],[-29,-26],[-21,-2],[-23,15],[-17,14],[-32,3],[-41,12],[-54,33],[-38,18],[-48,-6],[-25,0],[-30,-36],[-11,-43],[9,-39],[14,-4],[12,-13],[-4,-20],[-6,-30],[-36,-56],[-24,-32],[4,-45],[-4,-17],[-14,-5],[-28,10],[-14,-8],[-15,-13],[-3,-17],[-3,-16],[-17,-11],[-55,-34],[-14,-38],[-20,-14],[-20,18],[-42,13],[-8,-26],[-18,-8],[-30,21],[-33,-8],[-18,-17],[-23,-28],[-49,-101],[-19,-50],[-26,-29],[-33,-10],[-72,25],[-57,14],[-36,25],[-46,47],[-9,23],[-9,24],[-18,83],[-36,72],[-36,37],[-39,-20],[-31,-32],[-15,25],[-15,52],[-34,2],[-47,22],[-26,25],[-17,59],[-21,69],[-31,64],[-31,30],[-28,34],[-8,50],[-23,39],[-28,27],[-36,47],[-29,-6],[-33,-24],[-93,8],[-51,-8],[-59,-23],[-60,-9],[-64,8],[-12,15],[3,44],[-15,86],[-28,59],[-35,35],[-7,27],[-13,62],[-46,59],[-62,27],[-72,-49],[-36,0],[-17,46],[12,37],[21,42],[0,52],[-16,57],[-23,37],[-17,12],[-44,10],[-23,18],[-21,36],[-16,40],[-34,39],[-23,12],[-56,5],[-30,19],[-38,8],[-25,-17],[-23,3],[-16,42],[-23,27],[-34,-15],[-12,57],[-18,59],[-18,37],[-16,6],[-20,-1],[-6,-30],[-26,-17],[-38,0],[-33,2],[-29,52],[-15,47],[-31,34],[-51,16],[-19,36],[-16,82],[-25,46],[-47,30],[-61,-17],[-50,17],[-40,59],[-45,52],[-84,89],[-85,84],[-93,91],[-85,81],[-65,72],[-39,44],[-53,10],[-49,-8],[-104,-5],[-126,35],[-35,-15],[-43,-37],[-38,17],[-43,0],[-85,-14],[-47,-46],[-54,-33],[-55,-24],[-31,0],[-32,0],[-49,7],[-90,-40],[-75,20],[-75,-40],[-65,13],[-76,24],[-111,18],[-99,-3],[-110,0],[-64,-24],[-91,-94],[-61,-30],[-71,-1],[-36,28],[-50,43],[-84,33],[-37,-9],[-32,-48],[-55,9],[-62,36],[-55,71],[-40,88],[-2,10],[-15,67],[-11,44],[-38,158],[-39,100],[-9,11],[-48,66],[-46,-27],[-46,-26],[-106,-121],[-57,-127],[-67,-378],[-6,-35],[-155,-555],[-23,-134],[-41,-242],[-49,-686],[-24,-352],[-63,-355],[-80,-248],[-177,-247],[-185,-70],[-273,0],[-170,6],[-171,7],[-248,-64],[-110,-121],[-38,-218],[-12,-340],[-63,-387],[-63,-235],[-114,-254],[-189,-368],[-173,-267],[-181,-171],[-189,-95],[-130,-26],[-169,32],[-193,76],[-178,67],[-94,4],[-94,4],[-143,-30],[-301,-111],[-26,-23],[-8,-160],[229,-275],[114,-130],[63,-38],[42,-19],[40,-6],[26,9],[37,-4],[52,-42],[200,-228],[100,-78],[142,-82],[48,-26],[22,-17],[21,-21],[13,-30],[19,-57],[1,-15],[1,-15],[-24,-5],[-19,-24],[-3,-33],[15,-95],[-4,-92],[-14,-108],[-22,-73],[-4,-72],[6,-122],[14,-263],[13,-67],[2,-60],[5,-62],[0,-60],[-5,-24],[-11,-24],[-31,-15],[-10,-26],[5,-50],[3,-21],[8,-58],[10,-67],[14,-42],[27,-23],[23,-27],[-7,-20],[-28,-27],[-21,-26],[-21,-25],[-20,-43],[-13,-111],[-30,-106],[-41,-103],[-2,-28],[-1,-28],[-6,-22],[-16,-12],[-11,-39],[-23,-17],[-20,-8],[-15,-21],[-6,-16],[-4,-39],[-5,-43],[-1,-10],[-7,-70],[5,-76],[22,-92],[15,-105],[12,-61],[1,-50],[-16,-56],[-6,-52],[3,-27],[3,-28],[10,-13],[10,-13],[10,-12],[9,-6],[41,-31],[46,-33],[61,-36],[51,-35],[19,-31],[20,-63],[32,-90],[34,-62],[57,-83],[64,-105],[90,-109],[112,-118],[44,-53],[43,-66],[36,-93],[44,-140],[0,-60],[7,-56],[41,-52],[179,-160],[166,-129],[92,-52],[41,-8],[61,-3],[43,11],[30,28],[41,72],[30,63],[26,43],[44,29],[53,22],[35,44],[16,15],[11,44],[27,25],[16,34],[26,6],[20,-21],[12,-25],[-2,-41],[-10,-137],[16,-30],[19,-6],[58,54],[28,15],[19,-12],[5,-19],[-4,-30],[-31,-34],[-28,-38],[-38,-60],[-10,-22],[0,-25],[21,-47],[12,-33],[5,-44],[2,-42],[-10,-63],[-15,-32],[-24,-25],[-35,-21],[-150,-71],[-89,-67],[-45,-49],[-80,-79],[-69,-50],[-78,-50],[-109,-88],[-59,-41],[-60,-68],[-21,-62],[-10,-67],[6,-73],[9,-55],[-2,-70],[-15,-46],[-40,-19],[-39,-2],[-40,19],[-64,37],[-120,101],[-44,54],[-43,40],[-40,-3],[-32,-38],[-18,-46],[-34,-64],[-34,-44],[-27,-13],[-37,18],[-30,-4],[-19,-39],[-24,-13],[-40,-9],[-18,-4],[-9,-27],[-12,-15],[-22,-24],[-11,-35],[-24,-16],[-32,-35],[-15,-36],[-6,-29],[-27,-29],[-15,-34],[-20,-80],[-14,-57],[-33,-71],[-75,-91],[-48,-79],[-16,-52],[-34,-13],[-32,-37],[-20,-20],[-20,-21],[-24,13],[0,46],[-8,76],[-14,33],[-55,86],[-5,7],[-21,33],[-12,18],[-13,19],[-9,13],[-6,10],[-6,8],[-68,70],[-44,30],[-31,8],[-41,6],[-43,32],[-69,68],[-88,89],[-63,90],[-52,59],[-27,3],[-95,-19],[-69,3],[-60,29],[-46,41],[-3,3],[-47,72],[-30,73],[-23,82],[-27,34],[-40,44],[-58,29],[-86,41],[-47,27],[-132,97],[-90,147],[-59,156],[-91,178],[-90,158],[-74,124],[-65,70],[-88,47],[-61,35],[-32,51],[-23,79],[-8,26],[-23,0],[-25,-2],[-30,13],[-9,32],[7,41],[-5,37],[-15,23],[-21,11],[-62,40],[-54,25],[-42,7],[-43,-3],[-42,7],[-70,33],[-42,1],[-29,13],[-15,44],[-66,84],[-57,57],[-36,27],[-36,27],[-46,6],[-50,10],[-38,3],[-49,-28],[-40,-32],[-59,-22],[-56,-19],[-32,28],[-26,64],[-43,25],[-68,13],[-48,12],[-44,0],[-51,23],[-69,31],[-61,10],[-70,-16],[-54,10],[-42,50],[-34,77],[-36,53],[-26,33],[-58,-17],[-65,-12],[-53,15],[-63,26],[-88,3],[-53,-35],[-61,-60],[-73,-64],[-57,-41],[-55,6],[-66,36],[-79,12],[-46,29],[-78,-7],[-53,-41],[-63,19],[-44,48],[-46,56],[-38,55],[-66,31],[-54,7],[-82,16],[-47,47],[-56,73],[-70,54],[-50,16],[-81,-3],[-78,63],[-71,58],[-23,57],[-27,58],[-60,24],[-38,35],[-53,37],[-57,8],[-204,6],[-95,16],[-72,-10],[-46,-70],[-65,-63],[-49,-43],[-54,-21],[-61,2],[-54,-13],[-43,-3],[-15,-5],[-18,-12],[-7,-24],[-6,-18],[-24,-14],[-33,-13],[-74,-25],[-58,-43],[-54,-46],[-40,-32],[-24,-20],[-36,-40],[-30,-41],[-38,-82],[-23,-56],[-24,-56],[-39,-104],[-35,-92],[-37,-129],[-36,-124],[-32,-73],[-25,-50],[-56,-75],[-464,-459],[-160,-203],[-130,-171],[-101,-114],[-119,-24],[-125,-21],[-223,38],[-187,139],[-115,28],[-115,-59],[-155,-222],[-240,-254],[-143,-133],[-98,-107],[-70,-106],[-50,-117],[-72,-258],[-38,-146],[-15,-164],[23,-280],[9,-114],[-43,-184],[-54,-165],[-59,-71],[-107,-75],[-110,-70],[-146,12],[-169,153],[-118,0],[-131,-51],[-197,-38],[-68,32],[-67,32],[-63,158],[-36,197],[-46,132],[-89,78],[-98,31],[-110,-44],[-210,-63],[-240,-83],[-202,-102],[-215,-158],[-101,-7],[-122,-126],[-54,-178],[-55,-159],[-11,-204],[-19,-70],[-19,-69],[-94,-38],[-404,-311],[-177,-57],[-155,19],[-169,29],[-97,-99],[-101,-323],[-50,-197],[-32,-73],[-31,-73],[-76,-51],[-129,-54],[-299,-194],[-339,108],[-567,180],[-543,540],[-324,148],[-337,-161],[-225,117],[-338,29],[-293,245],[-75,6],[-53,-27],[-39,-70],[-35,-19],[-58,-11],[-47,-5],[-79,35],[-50,35],[-56,48],[-44,76],[-62,167],[-44,142],[-18,31],[-39,6],[-23,9],[-9,27],[-13,67],[-21,13],[-88,14],[-31,9],[-31,8],[-27,4],[-16,22],[-16,47],[-27,40],[-34,11],[-29,7],[-28,30],[-11,33],[7,27],[44,22],[23,21],[14,25],[5,35],[-3,43],[-3,90],[-20,79],[-2,41],[1,46],[8,47],[11,79],[-30,96],[-50,80],[-53,31],[-19,35],[-16,44],[-3,54],[-2,27],[-27,64],[-17,41],[-18,40],[-18,79],[-15,90],[-5,35],[3,48],[11,71],[0,37],[-4,36],[-16,26],[-20,25],[-55,60],[-52,70],[-79,70],[-12,32],[2,85],[4,36],[-3,67],[-22,24],[-44,10],[-46,41],[-45,26],[-20,53],[-36,48],[-38,-6],[-36,25],[-6,67],[-4,60],[-8,109],[-29,103],[-21,63],[-12,38],[-15,53],[-9,14],[-15,2],[-51,-4],[-63,-4],[-38,7],[-38,19],[-21,-12],[-5,-9],[-3,-10],[3,-15],[1,-9],[-8,-13],[-20,-8],[-14,-7],[-15,-1],[-8,-12],[-2,-14],[6,-74],[-9,-73],[-19,-70],[-19,-57],[-20,7],[-47,50],[-41,10],[-9,-64],[-17,-60],[-61,6],[-40,13],[-30,-57],[-59,15],[-48,-19],[-46,-15],[0,-58],[0,-47],[-26,-28],[-25,-28],[-44,-84],[-36,-79],[-27,-54],[-84,-29],[-55,-6],[-31,-41],[-50,-67],[-28,-56],[-21,-32],[7,-55],[-16,-30],[-7,-71],[28,-46],[5,-70],[1,-66],[3,-69],[0,-46],[31,-103],[11,-57],[-3,-71],[-4,-63],[-3,-58],[-19,-51],[-45,-12],[-41,-26],[-12,-34],[2,-30],[12,-8],[19,27],[14,11],[22,-11],[13,-30],[7,-23],[21,-18],[58,-13],[34,22],[67,-19],[69,-2],[210,-72],[52,14],[27,-33],[40,-24],[43,25],[53,-10],[38,-24],[42,-23],[14,-68],[27,-20],[13,-29],[-7,-74],[-20,-46],[-28,-46],[-24,-30],[-16,-37],[7,-32],[38,3],[29,-15],[10,-32],[36,-19],[26,-11],[4,-23],[-21,-26],[-38,0],[-31,-9],[-13,-21],[13,-36],[-13,-32],[-68,-58],[-28,-34],[-20,-21],[-34,-6],[-24,-24],[-10,-36],[11,-19],[-25,-49],[-3,-30],[43,-13],[0,-36],[-16,-43],[-47,-21],[-42,2],[-31,-17],[-42,-74],[-38,-51],[-34,-28],[-31,1],[-26,1],[-19,-34],[-32,-30],[-36,-19],[-23,-2],[-24,-36],[-52,31],[-5,0],[-18,-2],[-36,-12],[-31,-60],[-32,-64],[5,-70],[-23,-62],[-8,-57],[24,-43],[19,-19],[15,-43],[16,-64],[-19,-76],[-33,-113],[-44,-83],[-25,-60],[-36,-29],[-40,-5],[-57,-34],[-28,-17],[-27,-39],[-12,-68],[-2,-6],[-10,-51],[-35,-76],[-52,-112],[-7,-6],[-55,-51],[-26,-43],[-16,-13],[-32,-2],[-25,-55],[-23,-32],[-17,-28],[-22,-25],[-43,-9],[-24,-12],[-14,-43],[-35,-56],[-26,-38],[-36,-17],[-23,-34],[-15,-34],[19,-17],[-1,-30],[-17,-19],[-25,21],[-32,33],[-25,-29],[-34,20],[-14,-15],[-10,-39],[-41,-19],[-41,-4],[-29,2],[-30,2],[-11,-22],[-10,-23],[7,-66],[42,-142],[57,-209],[21,-47],[34,-23],[33,14],[19,-12],[18,-26],[19,-45],[5,-51],[19,-19],[55,-40],[38,-28],[24,-23],[21,-49],[23,-41],[15,-43],[13,-72],[10,-64],[-4,-40],[-30,-24],[-41,2],[-49,-19],[-48,-74],[-63,-75],[-39,-40],[-61,-17],[-38,-1],[-27,-33],[-45,-32],[-24,-26],[-23,-32],[-35,-8],[-19,-29],[-3,-6],[-29,0],[-15,27],[12,36],[-2,17],[7,18],[21,14],[14,33],[25,34],[-8,24],[-11,22],[-12,1],[-31,-34],[-24,-12],[-22,10],[-21,-27],[-8,-11],[9,-26],[0,-49],[6,-32],[-10,-32],[-27,-22],[-24,1],[-28,-15],[-13,-19],[-16,4],[-2,19],[18,32],[1,16],[-11,6],[-14,0],[-10,18],[-12,-5],[-4,-16],[-29,-17],[-16,-15],[-18,5],[-18,5],[-3,-22],[1,-25],[16,-24],[12,-26],[-1,-24],[-18,-38],[-69,-110],[-45,0],[-31,-9],[-15,5],[-14,4],[-18,-52],[-45,-18],[-47,-11],[3,-36],[-16,-30],[-62,-20],[-2,-43],[-13,-56],[-15,-50],[9,-49],[1,-61],[20,-41],[46,2],[57,-22],[15,-66],[43,-88],[15,-115],[27,-29],[6,-74],[-3,-75],[-22,-38],[-42,-95],[-11,-31],[-9,-66],[-16,-56],[-43,-41],[-44,-2],[-30,-18],[-30,-32],[-79,-88],[-47,-59],[-43,-33],[-1,-45],[-20,-27],[-31,11],[-40,-30],[-23,-27],[-21,-57],[-21,-26],[-67,-32],[-51,-31],[-34,-20],[-51,-10],[-61,-40],[-54,-20],[-15,-73],[10,-38],[-19,-45],[-49,-2],[-5,-2],[-66,-19],[-46,-24],[-30,-28],[-30,-29],[-58,-74],[-30,-57],[-35,-66],[-29,-65],[-41,-29],[0,-25],[42,-45],[13,-90],[-4,-102],[-180,-397],[-123,-178],[-291,-422],[-215,-563],[-40,-148],[-144,-538],[-36,-253],[-60,-104],[-41,-89],[-5,-10],[-527,-1136],[-479,-604],[-134,6],[-52,3],[-173,9],[-185,293],[-85,727],[-91,306],[-186,632],[-224,452],[-201,122],[-85,74],[-36,150],[-10,156],[-37,674],[-39,403],[-74,109],[-172,44],[-195,-82],[-102,-204],[-140,-74],[-805,-228],[-78,-22],[-41,-9],[-131,-30],[-233,84],[-127,260],[-174,129],[-142,-82],[-169,55],[-240,172],[-243,99],[-237,24],[-100,-7],[-389,-28],[-373,-95],[-323,-201],[-284,-247],[-228,-315],[-50,-161],[-13,-182],[196,-421],[278,-542],[380,-1087],[25,-229],[-39,-181],[-126,-60],[-183,-17],[-278,200],[-373,410],[-265,382],[-272,544],[-108,285],[-50,363],[-19,372],[91,256],[332,812],[196,495],[127,267],[63,229],[44,334],[70,153],[164,124],[60,42],[60,43],[122,71],[167,99],[43,62],[66,38],[62,34],[32,42],[83,43],[26,29],[12,47],[35,19],[35,2],[31,34],[83,89],[42,-2],[33,24],[24,28],[30,21],[21,-16],[31,24],[11,32],[43,32],[30,5],[20,47],[13,25],[69,14],[39,70],[-15,74],[27,73],[-3,77],[32,40],[31,-30],[27,12],[37,49],[8,53],[23,45],[23,26],[13,58],[37,73],[44,6],[19,19],[3,38],[-21,25],[2,22],[-45,23],[-8,32],[6,49],[15,62],[30,52],[27,44],[21,12],[14,18],[40,80],[17,19],[18,13],[16,0],[16,16],[14,15],[11,4],[7,28],[-8,28],[-14,33],[-32,48],[-28,14],[-19,20],[-2,22],[8,19],[3,30],[6,33],[18,52],[13,8],[5,27],[10,25],[8,16],[16,7],[17,16],[31,82],[-4,2],[-4,2],[-36,5],[-14,-7],[-8,-4],[-3,-2],[-4,-2],[-29,-25],[-14,-19],[-10,-14],[-46,-40],[-46,-35],[-43,-28],[-33,-19],[-38,-16],[-40,-18],[-39,-2],[-45,-1],[-103,9],[-35,3],[-34,3],[-32,5],[-27,20],[-42,40],[-44,63],[-22,45],[-26,45],[-21,37],[-21,21],[-21,35],[-24,20],[-35,-1],[-49,-25],[-37,-14],[-55,-22],[-22,5],[-15,23],[-8,38],[5,19],[14,28],[5,26],[-7,38],[-7,42],[-11,29],[-17,10],[-40,14],[-12,27],[2,27],[13,16],[26,5],[20,24],[6,32],[-5,39],[-16,41],[-8,35],[4,35],[-10,26],[-29,35],[-69,72],[-37,49],[-29,39],[-13,28],[-9,26],[-15,39],[-7,24],[-6,41],[-5,16],[-4,16],[-25,61],[-29,59],[-22,35],[-34,33],[-41,27],[-49,4],[-30,20],[-22,28],[-16,12],[-24,18],[-20,4],[-21,-13],[-17,-26],[-31,-22],[-28,10],[-27,15],[-33,25],[-20,-4],[-25,-16],[-31,-5],[-32,-9],[-51,-56],[-58,-69],[-65,-77],[-41,-71],[-10,-22],[-9,-23],[-2,-39],[-5,-48],[3,-45],[-1,-41],[-8,-41],[-21,-47],[-24,-75],[-5,-47],[-11,-57],[-23,-62],[-36,-48],[-39,-48],[-54,-35],[-30,0],[-30,0],[-94,23],[-142,19],[-65,3],[-33,11],[-37,35],[-36,51],[-50,107],[-143,393],[-121,340],[-39,83],[-41,48],[-56,63],[-56,58],[-93,70],[-63,35],[-31,34],[-35,37],[-25,34],[-26,34],[-34,77],[-26,83],[1,65],[14,76],[-9,57],[-14,65],[11,57],[16,80],[15,64],[11,43],[-18,43],[-35,29],[-40,16],[-24,34],[-18,26],[-29,6],[-21,21],[-8,36],[-2,29],[3,29],[7,16],[17,8],[19,16],[4,19],[-3,25],[-23,7],[-24,17],[-29,1],[-32,-1],[-34,31],[-19,40],[-17,34],[-60,73],[-53,51],[-54,33],[-29,20],[-27,35],[-36,83],[-26,43],[-34,27],[-42,23],[-74,30],[-84,5],[-33,32],[-22,30],[-18,40],[-8,31],[-8,31],[-7,33],[-8,24],[-12,17],[-15,22],[-14,37],[-9,42],[-4,16],[-5,17],[-26,17],[-12,-1],[-11,-2],[-25,-24],[-26,-18],[-23,-1],[-29,10],[-13,0],[-14,0],[-18,1],[-16,-18],[-19,8],[-29,35],[-22,36],[-5,33],[3,47],[11,30],[16,21],[31,38],[6,32],[-5,47],[-13,106],[-13,92],[9,74],[0,45],[-4,69],[-15,76],[-11,65],[-10,51],[-15,56],[-9,36],[-15,19],[-29,4],[-48,-11],[-32,13],[-22,15],[-23,3],[-11,2],[-11,1],[-15,-2],[-15,-2],[-16,-8],[-13,-18],[-5,-31],[-7,-41],[-17,-20],[-21,-4],[-26,15],[-28,18],[-26,8],[-25,-5],[-18,-24],[-7,-23],[-10,-7],[-9,-6],[-19,16],[-16,18],[-37,48],[-34,38],[-39,35],[-42,12],[-43,12],[-57,45],[-25,55],[-25,28],[-25,28],[-17,23],[-17,23],[-40,38],[-25,43],[-12,41],[0,79],[-15,62],[-35,65],[-39,91],[-15,105],[20,127],[3,115],[-11,107],[-34,77],[-49,20],[-39,-25],[-70,-95],[-54,-100],[-28,-52],[-97,-143],[-71,-68],[-140,-86],[-123,-59],[-84,-82],[-30,-90],[3,-154],[6,-159],[-21,-155],[-27,-158],[-63,-160],[-103,-185],[-104,-305],[-104,-305],[-28,-62],[-45,-49],[-65,-32],[-63,0],[-57,16],[-78,27],[-56,-1],[-62,-16],[-37,-28],[-39,-60],[-34,-13],[-32,8],[-33,8],[-50,16],[-33,-8],[-27,-45],[-15,-43],[-2,-49],[6,-49],[28,-77],[-2,-57],[-14,-49],[-25,-33],[-31,-20],[-52,-12],[-92,12],[-39,-15],[-20,-26],[-17,-22],[-29,-2],[-27,1],[-47,13],[-45,-6],[-93,-28],[-43,8],[-40,23],[-41,35],[-33,28],[-45,17],[-34,3],[-25,3],[-56,-19],[-19,-6],[-20,-21],[-17,-24],[-8,-21],[-7,-32],[-6,-27],[-1,-23],[-3,-22],[-8,-15],[-17,-9],[-17,-8],[-19,-6],[-34,0],[-44,8],[-37,15],[-35,22],[-34,12],[-37,6],[-60,-8],[-52,-11],[-25,5],[-47,51],[-32,22],[-31,-4],[-33,-39],[-18,-12],[-21,14],[-25,37],[-19,18],[-23,-10],[-8,-36],[-7,-43],[-10,-3],[-17,-5],[-39,51],[-39,18],[-32,22],[-40,37],[-60,76],[-52,73],[-41,65],[-65,70],[-55,40],[-66,13],[-85,-2],[-44,8],[-69,30],[-51,51],[-218,322],[-838,1318],[-120,204],[-28,155],[-34,147],[-14,175],[-8,122],[-13,92],[-5,61],[9,112],[-7,90],[-18,127],[-9,89],[-3,57],[16,72],[1,59],[-9,53],[-17,102],[-12,63],[-3,81],[-31,-21],[-40,-1],[-37,-23],[-12,1],[-35,11],[-12,1],[-11,-7],[-19,-16],[-1,-27],[-9,-9],[-18,13],[-16,22],[-15,7],[-9,-1],[-4,0],[-7,-12],[-3,-11],[-4,-32],[-9,0],[-4,-10],[-4,-29],[-11,-4],[-7,-17],[-30,0],[-21,-19],[-33,31],[-17,12],[-19,22],[-31,4],[-17,-26],[-20,-25],[-17,-46],[-20,-49],[-30,-62],[-19,-73],[-58,-130],[-70,-137],[-26,-67],[-11,-64],[9,-71],[21,-51],[47,-60],[-10,-55],[-20,-62],[-50,-52],[-60,-31],[-30,-24],[-11,-58],[21,-104],[20,-103],[-20,-72],[-41,-104],[-25,-75],[9,-100],[-3,-90],[-22,-89],[-55,-42],[-69,-10],[-64,-14],[-21,-68],[-49,-63],[-51,-24],[-43,-58],[-11,-80],[-16,-127],[-25,-83],[-57,-112],[-39,-81],[-20,-92],[-4,-68],[12,-55],[-9,-48],[-32,-60],[-64,-65],[-73,-90],[-59,-89],[-41,-49],[-44,-70],[-36,-65],[-45,-100],[-61,-171],[-59,-194],[-32,-151],[-58,-226],[-57,-269],[-41,-153],[-47,-139],[-8,-120],[12,-63],[36,-68],[73,-96],[48,-75],[16,-43],[39,-139],[31,-95],[26,-58],[14,-40],[-5,-49],[-28,-64],[-50,-114],[-53,-87],[-24,-37],[-32,-16],[-43,-11],[-6,-105],[-14,-92],[-10,-57],[-30,-54],[-18,-27],[-8,-42],[3,-49],[-17,-35],[-28,-26],[-20,-153],[-42,-100],[-37,-53],[-44,-13],[-34,-46],[-8,-48],[-28,-64],[-23,-57],[-28,-22],[-22,-37],[-14,-27],[-9,-41],[-30,-47],[-33,-46],[-35,-51],[-43,-58],[-13,-40],[-4,-80],[-24,-55],[-19,-77],[-27,-80],[-27,-69],[-25,-94],[-27,-88],[-24,-87],[-33,-115],[-20,-83],[2,-49],[27,-88],[18,-77],[-1,-58],[-13,-51],[-39,-38],[-21,-35],[-15,-37],[6,-118],[24,-90],[26,-73],[20,-114],[21,-216],[7,-103],[-6,-30],[-3,-14],[-3,-15],[-31,-1],[-117,91],[-585,368],[-89,-24],[-71,3],[-79,62],[-53,100],[-52,155],[-71,128],[-50,43],[-51,43],[-150,75],[-153,73],[-183,14],[-33,-12],[-102,-33],[-105,-76],[-48,-21],[-57,35],[-70,113],[-131,231],[-116,221],[-48,151],[7,72],[57,114],[13,87],[10,65],[-7,141],[-7,176],[-62,757],[71,307],[14,110],[-30,72],[-52,86],[-89,80],[-146,130],[-162,124],[-74,83],[-105,131],[-187,241],[-77,124],[-47,74],[-47,74],[-43,118],[-19,99],[-11,131],[0,320],[24,117],[15,79],[2,9],[0,2],[1,1],[0,2],[1,2],[0,1],[0,1],[1,6],[20,98],[0,3],[1,2],[1,3],[0,3],[0,2],[1,2],[0,1],[1,3],[0,4],[1,2],[1,3],[0,2],[1,5],[0,3],[2,8],[18,109],[6,109],[-10,106],[-32,81],[-126,158],[-233,182],[-944,513],[-57,-18],[-31,-68],[-2,-58],[4,-73],[25,-100],[18,-116],[-15,-173],[-64,-256],[-66,-151],[-7,-75],[-3,-31],[-33,-72],[-73,-85],[-66,-143],[-35,-175],[-24,-109],[-34,-42],[-46,-67],[-38,-139],[-38,-172],[-58,-152],[-123,-182],[-162,-200],[-157,-172],[-162,-118],[-175,-58],[-168,-16],[-16,-2],[-446,-519],[-92,-107],[-37,-20],[-37,-20],[-87,9],[-118,58],[-56,21],[-81,-42],[-82,-31],[-50,-9],[-32,9],[-16,34],[-8,30],[-7,24],[-20,2],[-35,10],[-23,26],[-8,27],[-5,40],[-27,34],[-24,25],[-11,31],[-9,41],[-1,50],[17,64],[-1,27],[-9,18],[-14,18],[-33,-12],[-21,-3],[-21,11],[-19,41],[-17,34],[-16,5],[-8,-14],[-25,-10],[-17,3],[-19,7],[-17,16],[-10,36],[-9,46],[0,34],[0,35],[-6,29],[-16,19],[-14,18],[-46,31],[-36,29],[-26,27],[-16,50],[-25,41],[-21,13],[-60,23],[-48,30],[-43,25],[-31,32],[-17,37],[-18,36],[-22,65],[-25,81],[-14,53],[-10,65],[-9,36],[-22,27],[-49,15],[-72,9],[-42,22],[-26,25],[-13,32],[5,32],[19,24],[18,36],[1,34],[-17,19],[-38,29],[-44,44],[-42,41],[-41,44],[-47,100],[-1179,2616],[-71,72],[-78,-34],[-150,-215],[-113,-291],[-138,-154],[-134,-82],[-161,-1],[-184,-2],[-150,-63],[-180,-218],[-112,-137],[-97,-35],[-96,15],[-141,39],[-154,35],[-134,-56],[-284,-273],[-131,-104],[-135,-38],[-198,-9],[-1,0],[-122,0],[-3,1],[-141,51],[-312,184],[-449,256],[-94,20],[-123,-10],[-199,-58],[-7,1],[-77,9],[-93,42],[-218,154],[-7,7],[-41,41],[-48,48],[-64,108],[-345,579],[-12,14],[-117,136],[-120,76],[-267,115],[-41,30],[-41,29],[-45,75],[-61,184],[-66,197],[196,284],[59,540],[155,265],[269,25],[-48,337],[-314,1143],[120,1185],[-5,114],[-58,333],[-99,278],[-217,328],[-213,661],[-100,1701],[157,1196],[452,844],[359,290],[241,359],[6,1301],[-170,1038],[205,1762],[-105,417],[-71,524],[42,438],[241,578],[41,632],[-27,319],[-438,769],[-248,679],[-569,569],[-130,452],[-232,170],[-221,-453],[-211,-1206],[-144,-75],[-346,496],[-1002,595],[-406,-205],[-272,3],[-276,175],[-543,1268],[-348,-240],[-741,-778],[-524,-186],[-692,-1306],[-613,-762],[-488,-721],[-297,-122],[-340,61],[-283,452],[-78,545],[79,608],[240,845],[119,2912],[221,1003],[339,755],[841,705],[430,693],[0,14],[8,240],[-283,759],[-68,98],[-1300,1362],[-265,321],[-337,541],[-256,665],[-62,880],[-209,344],[-139,148],[-346,59],[-603,373],[-366,62],[-382,846],[-31,138],[28,363],[-206,269],[-156,102],[-201,250],[-408,6],[-261,242],[-178,-52],[-95,47],[-171,53],[-167,-24],[-139,-45],[-4,-2],[-20,9],[-120,327],[-40,784],[-407,782],[-210,402],[-161,311],[-180,66],[-96,35],[-5,11],[-22,45],[-57,124],[-89,5],[-50,-48],[-57,-81],[-57,-81],[-32,-39],[-78,-31],[-180,-73],[-207,-205],[-70,-70],[-56,23],[-102,112],[-151,107],[-82,29],[-66,-15],[-76,-86],[-54,-38],[-94,38],[-73,67],[-27,5],[-27,5],[-49,-59],[-84,1],[-69,-23],[-57,-62],[-57,-34],[-104,-24],[-79,-47],[-92,-67],[-82,-124],[-38,-186],[-34,-49],[-51,-75],[-111,-67],[-177,-71],[-152,28],[-132,53],[-98,43],[-67,24],[-44,-48],[-104,-219],[-60,-139],[-67,-87],[-294,272],[-12,417],[-12,414],[-5,170],[-190,334],[37,244],[529,-127],[395,303],[-4,111],[-15,389],[-236,634],[-118,319],[-10,212],[14,69],[25,123],[35,87],[48,117],[6,35],[184,491],[300,277],[277,256],[119,286],[61,146],[-207,174],[-62,290],[0,755],[-144,615],[-184,784],[-19,82],[-721,-30],[-75,42],[-241,135],[-5,36],[-15,74],[-16,56],[-28,30],[-35,21],[-52,10],[-94,2],[-106,-2],[-98,-5],[-102,-30],[-53,-13],[-20,8],[-27,23],[-25,9],[-27,-11],[-38,-28],[-37,-48],[-27,-27],[-27,-28],[-15,-15],[-23,-2],[-18,25],[-22,95],[-2,9],[-31,80],[-26,68],[-11,24],[-17,26],[-36,35],[-31,38],[-23,21],[-55,170],[5,34],[21,67],[11,64],[0,67],[-3,58],[-13,56],[-13,63],[-14,58],[-24,80],[-23,80],[-17,61],[-25,65],[-23,70],[-6,34],[-29,1163],[-28,101],[-91,331],[-45,165],[-212,73],[-10,7],[-29,41],[-19,30],[-21,23],[-17,20],[-28,18],[-27,12],[-27,-5],[-20,-6],[-19,142],[316,1482],[35,164],[-50,228],[-110,496],[-37,168],[-12,54],[82,420],[221,705],[275,414],[10,80],[13,36],[-6,17],[-9,23],[-5,51],[17,36],[-2,44],[4,68],[-1,50],[-17,81],[-36,84],[-22,41],[-22,40],[-10,45],[12,46],[26,50],[31,17],[59,2],[90,-39],[101,-22],[140,-3],[208,13],[106,-3],[76,13],[106,939],[-152,395],[-18,47],[-237,169],[-10,7],[29,896],[-70,258],[-396,355],[-15,5],[-9,-2],[-9,-6],[-40,-24],[-24,-15],[-2,0],[-52,-29],[-36,-10],[-36,-10],[-75,5],[-40,7],[-45,35],[-51,71],[-46,97],[-41,39],[-18,37],[-19,47],[10,143],[-2,91],[-16,52],[-40,254],[-24,239],[-21,167],[3,225],[-5,117],[-14,299],[-12,52],[-33,42],[-21,76],[-46,116],[-29,50],[-30,27],[-50,5],[-53,42],[-29,44],[-10,45],[141,120],[134,874],[21,70],[16,99],[12,91],[-6,49],[-33,148],[-13,58],[-17,205],[12,80],[-36,198],[-26,177],[-7,44],[-7,44],[-52,74],[-75,19],[-40,-4],[-7,12],[-274,69],[-689,753],[-39,213],[20,855],[-295,647],[-198,760],[148,335],[-23,377],[0,1],[9,56],[-4,42],[-2,24],[-7,64],[-26,64],[-5,60],[-23,29],[-39,-7],[-78,12],[-98,32],[-43,46],[-23,105],[-34,88],[-41,18],[-13,46],[-3,79],[3,84],[-28,74],[-160,249],[-56,86],[-22,60],[-2,7],[-11,54],[-46,79],[-92,66],[89,687],[11,21],[25,49],[1,25],[-26,45],[-52,32],[-41,127],[-98,134],[-249,344],[-630,867],[-124,263],[13,76],[18,84],[-25,32],[-24,32],[-98,23],[-545,1163],[-115,98],[-38,63],[-2,4],[-105,183],[-94,34],[-105,54],[-117,62],[-105,91],[-39,124],[-38,117],[-158,173],[-82,60],[-46,-3],[-14,30],[-83,50],[-1,2],[-60,99],[-143,152],[-130,39],[-128,45],[-98,19],[-29,0],[-332,201],[-1,1],[-107,84],[-53,43],[-270,647],[-22,114],[-68,163],[-41,36],[-146,349],[-225,11],[-739,1001],[-204,-90],[-524,-232],[-648,-286],[-2408,525],[-326,234],[-710,970],[-631,376],[-405,662],[-96,157],[-73,121],[-1004,251],[-1335,82],[-955,-257],[-688,42],[-1552,573],[-103,147],[-84,61],[-167,118],[-105,124],[-3,148],[-20,92],[-19,90],[-89,108],[-50,29],[-144,207],[-268,-36],[-193,-27],[-355,-180],[-78,-170],[-86,-157],[-105,-123],[-149,-144],[-147,-118],[-65,19],[-29,79],[-4,197],[-6,301],[16,171],[10,105],[69,262],[91,172],[59,10],[59,10],[228,20],[183,177],[164,197],[150,286],[157,395],[85,414],[0,1368],[68,372],[135,252],[35,45],[148,194],[202,323],[226,130],[376,136],[320,98],[168,194],[248,175],[257,204],[255,286],[236,502],[98,208],[46,169],[117,8],[229,-276],[400,-179],[374,-80],[354,59],[100,85],[99,85],[112,223],[319,524],[45,73],[838,817],[340,183],[272,23],[257,-142],[275,-281],[160,-108],[132,-24],[178,132],[141,143],[342,672],[204,240],[143,188],[174,197],[197,155],[741,585],[317,143],[533,69],[455,72],[12,2],[183,34],[160,104],[69,62],[54,49],[397,357],[134,69],[106,57],[126,61],[96,55],[69,39],[51,52],[65,118],[33,42],[81,2],[574,-140],[611,-150],[567,-99],[635,-142],[241,29],[275,143],[297,197],[350,379],[264,375],[399,779],[174,519],[90,266],[141,310],[268,325],[504,454],[425,562],[368,700],[269,511],[128,176],[153,141],[213,163],[188,145],[256,186],[272,169],[137,38],[147,-21],[144,-34],[183,-97],[128,-65],[149,-87],[114,-58],[225,-138],[1357,-1243],[874,-835],[393,-525],[316,-428],[201,-159],[220,-110],[162,10],[170,72],[177,114],[200,142],[115,34],[160,-131],[357,-338],[481,-436],[951,-420],[408,-97],[128,7],[197,118],[647,437],[135,25],[206,-48],[119,-83],[87,-186],[27,-187],[35,-317],[112,-166],[146,-111],[220,-55],[813,-184],[102,-23],[870,-214],[266,-44],[118,10],[119,124],[304,480],[60,78],[39,49],[82,62],[138,7],[224,-172],[825,-726],[168,-110],[187,-20],[149,90],[26,28],[649,676],[133,69],[151,-21],[43,-31],[99,-73],[169,-193],[119,-297],[65,-349],[297,-1867],[91,-131],[69,-34],[187,-70],[110,7],[109,6]],[[87923,397816],[28,13],[16,13],[17,23],[63,27],[58,19],[79,36],[29,9],[29,9],[23,10],[14,16],[29,16],[20,1],[5,16],[31,5],[42,8],[37,29],[24,10],[24,10],[76,70],[30,37],[25,44],[16,49],[17,55],[8,14],[15,10],[16,10],[15,22],[8,39],[15,30],[85,93],[52,37],[37,47],[64,53],[47,52],[40,45],[25,23],[42,4],[35,38],[18,0],[12,-26],[22,4],[17,20],[11,16],[36,8],[34,-21],[43,8],[37,-19],[17,-5],[9,-3],[21,8],[14,10],[67,-11],[92,-13],[42,-18],[49,-42],[66,-43],[59,-46],[28,-37],[41,-17],[41,-17],[31,-15],[64,-32],[64,-42],[96,-65],[42,-14],[42,-14],[47,-9],[40,11],[42,35],[40,9],[145,-19],[108,-23],[36,-7],[23,11],[33,33],[77,170],[48,151],[11,42],[9,54],[-3,79],[10,87],[13,44],[12,39],[4,38],[5,47],[50,124],[22,50],[31,42],[8,23],[9,23],[7,63],[7,73],[3,8],[37,103],[-37,-14],[-5,101],[11,101],[13,43],[37,143],[17,86],[101,589],[35,150],[1,5],[0,4],[4,44],[16,210],[7,90],[0,6],[5,34],[68,23],[56,4],[47,13],[33,27],[44,39],[38,31],[45,11],[54,16],[29,42],[32,97],[30,65],[32,69],[45,65],[6,8],[53,81],[49,60],[69,94],[17,16],[24,16],[59,6],[48,18],[2,1],[27,-1],[27,-1],[18,7],[58,24],[120,42],[109,77],[49,34],[62,44],[1,0],[41,41],[29,48],[22,18],[0,41],[-3,16],[15,3],[29,16],[20,47],[12,56],[18,60],[33,50],[16,94],[38,197],[89,98],[9,38],[21,24],[28,15],[86,-4],[57,2],[28,-14],[28,-15],[57,-3],[44,-33],[70,-5],[28,-12],[32,6],[12,-15],[12,-15],[18,10],[16,5],[28,-17],[80,-24],[39,-4],[39,30],[59,95],[27,57],[18,19],[2,52],[13,33],[45,87],[21,67],[19,40],[16,40],[28,28],[42,14],[41,15],[78,19],[72,22],[31,25],[37,1],[23,44],[24,17],[18,55],[30,34],[50,52],[6,4],[20,15],[128,132],[38,39],[14,27],[-10,18],[-9,18],[9,44],[27,71],[42,100],[21,85],[23,77],[10,61],[11,62],[6,156],[20,10],[0,44],[6,63],[24,114],[20,118],[6,38],[69,214],[2,50],[5,28],[42,30],[37,158],[2,79],[14,65],[56,177],[34,73],[19,71],[4,37],[36,58],[60,68],[80,123],[63,123],[46,105],[84,165],[36,69],[14,13],[23,7],[12,-8],[13,-7],[36,-8],[30,-21],[38,-42],[28,-33],[43,-34],[57,-54],[32,-41],[8,-29],[9,-29],[16,-71],[34,-7],[23,15],[68,40],[39,46],[26,43],[24,82],[8,46],[6,66],[-10,66],[67,239],[26,9],[82,75],[33,-6],[26,13],[42,29],[161,215],[42,72],[20,43],[38,20],[39,9],[40,-27],[28,-30],[45,-11],[50,1],[66,-3],[61,9],[27,-2],[8,7],[8,7],[7,15],[6,24],[17,25],[19,19],[14,16],[20,61],[13,21],[8,10],[9,2],[22,3],[13,11],[16,30],[19,38],[18,26],[19,18],[21,12],[30,5],[59,66],[27,27],[34,9],[37,-2],[26,-25],[40,-59],[21,-30],[19,-34],[7,-23],[1,-1],[7,-22],[2,-36],[19,-113],[12,-40],[25,-26],[28,-27],[36,-25],[82,15],[34,-22],[65,-19],[142,-17],[7,-1],[135,-21],[55,-3],[42,3],[27,10],[30,32],[20,66],[16,67],[31,39],[15,50],[8,68],[11,53],[16,56],[26,15],[40,42],[35,59],[58,76],[42,49],[20,11],[28,12],[40,-6],[1,0],[6,0],[49,2],[74,1],[26,13],[55,79],[20,37],[80,79],[41,26],[42,4],[335,252],[60,30],[44,9],[50,2],[8,1],[30,3],[30,4],[38,10],[26,2],[56,4],[11,12],[11,11],[35,86],[51,151],[71,150],[31,57],[88,93],[135,275],[72,28],[90,33],[15,81],[-29,97],[-6,117],[-41,92],[-44,184],[28,83],[569,288],[377,118],[70,87],[70,130],[9,156],[24,240],[-12,66],[76,151],[113,94],[82,31],[60,-2],[60,-1],[119,-3],[205,157],[205,158],[59,66],[107,48],[111,30],[95,112],[100,116],[76,134],[90,103],[138,-5],[83,-29],[89,-66],[144,-50],[72,39],[27,128],[8,167],[-69,345],[15,91],[50,120],[70,131],[43,128],[3,119],[57,139],[111,268],[48,161],[48,72],[46,100],[62,62],[41,-14],[34,-31],[57,67],[38,103],[48,69],[63,39],[255,-201],[90,-66],[387,-139],[39,-14],[9,23],[1,3],[10,27],[4,125],[-39,198],[-30,181],[-36,169],[22,234],[-41,156],[-1,8],[-6,95],[489,370],[101,253],[290,504],[14,0],[45,3],[64,-28],[30,-30],[4,-4],[114,-2],[173,80],[203,120],[15,147],[46,142],[299,518],[152,221],[176,101],[290,146],[243,122],[65,-9],[12,-20],[12,-20],[19,-99],[20,-100],[23,-72],[39,-103],[26,-67],[24,-64],[15,-61],[42,-34],[61,-5],[48,-23],[68,-38],[68,-34],[83,14],[33,52],[32,51],[79,44],[342,17],[289,145],[78,97],[12,142],[-36,114],[-189,100],[-272,454],[-30,81],[-5,61],[-4,61],[-207,348],[-57,-42],[-68,31],[-26,58],[44,623],[232,372],[45,37],[39,25],[64,-11],[295,34],[174,372],[72,212],[136,320],[76,119],[3,144],[-70,146],[-50,61],[-36,184],[-133,58],[-50,34],[2,111],[-256,440],[-47,75],[-66,0],[-140,-3],[-102,-36],[-112,94],[-19,181],[47,242],[51,223],[63,175],[23,76],[23,77],[50,95],[134,41],[115,248],[68,100],[65,70],[-2,86],[37,64],[16,97],[0,106],[172,47],[75,-194],[61,13],[132,210],[93,49],[92,14],[61,120],[48,128],[-37,151],[-64,27],[-52,-25],[-33,-70],[-177,-33],[-31,114],[24,100],[169,239],[22,24],[65,74],[57,122],[59,203],[7,120],[61,465],[120,136],[74,30],[83,6],[46,-25],[150,39],[77,-8],[107,-87],[66,-97],[54,-89],[101,-25],[85,3],[92,-48],[50,-39],[96,-39],[55,59],[6,131],[-37,359],[57,25],[122,-62],[63,-167],[29,-147],[67,-72],[68,-28],[79,17],[74,2],[81,17],[89,78],[79,203],[24,56],[66,8],[96,100],[90,299],[67,157],[59,10],[59,10],[160,-66],[183,-70],[113,-95],[66,-103],[30,-146],[14,-171],[493,422],[398,434],[286,45],[422,-351],[158,-393],[-135,-430],[383,40],[135,238],[134,239],[69,267],[-9,595],[343,552],[172,276],[171,276],[239,-14],[10266,-5514],[243,-1073],[254,-729],[402,-282],[202,-484],[263,592],[438,985],[193,332],[711,213],[142,-11],[86,-60],[55,-35],[31,-132],[20,-41],[17,-229],[12,-37],[37,-8],[104,90],[110,87],[78,35],[98,29],[49,-3],[72,-45],[79,-116],[31,-27],[55,-21],[42,16],[37,63],[47,90],[39,90],[12,72],[10,92],[18,96],[54,126],[39,93],[70,67],[72,79],[37,58],[37,59],[45,100],[29,87],[8,101],[-4,52],[-35,61],[-31,75],[-53,140],[-73,249],[-76,206],[-75,170],[-19,93],[7,112],[12,46],[93,61],[175,164],[9,8],[5,6],[9,8],[4,3],[49,47],[70,29],[108,-12],[94,-12],[155,29],[87,29],[88,82],[54,35],[36,30],[35,66],[31,84],[38,206],[23,72],[48,55],[47,29],[47,24],[51,11],[25,-8],[12,-212],[17,-33],[26,-13],[38,-7],[56,-2],[47,18],[152,276],[48,123],[106,181],[91,132],[67,109],[40,55],[47,-8],[62,-13],[64,30],[80,81],[52,130],[65,85],[49,37],[49,2],[17,-21],[17,-21],[28,-138],[16,-55],[40,-37],[31,-104],[25,-23],[46,-30],[72,-26],[63,-13],[44,18],[40,96],[98,256],[13,43],[-6,45],[-33,82],[5,98],[11,124],[28,148],[-21,193],[-21,149],[-9,119],[7,87],[21,77],[35,38],[77,44],[9,37],[-17,29],[5,37],[29,27],[51,-3],[37,19],[32,37],[24,121],[36,69],[54,93],[42,69],[35,50],[44,37],[24,8],[23,8],[43,-8],[108,-111],[64,-42],[45,-6],[63,8],[60,13],[46,8],[38,-24],[35,-23],[4,-98],[-41,-74],[-24,-270],[17,-40],[21,-40],[21,-40],[64,-55],[52,53],[49,84],[41,45],[44,11],[36,-16],[39,-24],[47,-58],[67,-85],[37,-63],[39,-93],[96,-356],[5,-36],[-6,-29],[17,-71],[35,-103],[26,-40],[42,-24],[51,0],[60,27],[196,164],[79,90],[50,50],[50,11],[43,-6],[36,-26],[18,-64],[21,-129],[17,-80],[22,-76],[33,-75],[161,-188],[254,-229],[34,-34],[40,-36],[44,-2],[81,31],[107,53],[63,45],[16,53],[0,90],[-36,95],[-10,62],[20,47],[24,35],[34,2],[79,-10],[53,9],[54,25],[81,2],[63,24],[70,51],[51,63],[103,90],[119,72],[78,77],[21,29],[47,103],[88,193],[80,122],[64,82],[84,66],[54,50],[69,40],[80,13],[134,14],[75,6],[92,-14],[151,-42],[89,-25],[105,-26],[146,-77],[98,-63],[100,-64],[49,-2],[18,8],[59,29],[67,84],[34,89],[10,25],[45,40],[64,21],[49,-8],[37,-29],[61,-74],[63,-101],[74,-92],[52,-80],[22,-71],[-4,-93],[-26,-93],[-11,-116],[16,-220],[14,-143],[12,-100],[-21,-80],[-1,-63],[22,-74],[-5,-58],[-25,-88],[-17,-50],[7,-48],[14,-39],[31,-21],[85,-9],[79,-26],[75,-13],[77,-14],[92,-31],[63,-37],[51,-48],[49,-32],[82,-4],[81,20],[67,40],[33,45],[54,71],[264,222],[38,54],[18,62],[49,51],[66,35],[76,45],[93,39],[98,19],[120,-19],[110,-45],[88,-66],[40,-29],[63,24],[63,-10],[43,-6],[14,-31],[21,-27],[28,10],[35,14],[81,13],[133,26],[170,43],[91,13],[65,21],[48,37],[34,79],[83,170],[70,111],[383,387],[46,46],[112,112],[54,83],[61,47],[57,43],[31,53],[35,31],[69,24],[38,-3],[41,-37],[38,-63],[35,-80],[25,-95],[23,-116],[10,-117],[6,-100],[-7,-96],[-14,-79],[-35,-82],[-43,-48],[-52,-26],[-118,-6],[-77,-21],[-54,-63],[-37,-98],[-18,-98],[-7,-76],[-2,-14],[34,-106],[9,-153],[49,-159],[50,-106],[63,-92],[52,-75],[45,-63],[18,-77],[12,-98],[2,-98],[-21,-124],[-29,-102],[-17,-52],[4,-42],[5,-43],[30,-21],[52,27],[51,15],[56,19],[27,-19],[24,-26],[30,-58],[60,-40],[74,-27],[68,14],[49,40],[35,74],[39,161],[26,117],[18,71],[24,56],[49,58],[102,77],[72,74],[132,106],[84,66],[52,21],[53,11],[46,-11],[41,-39],[3,-93],[15,-82],[30,-24],[60,-4],[35,22],[39,19],[30,-29],[59,-37],[51,-40],[53,-21],[56,13],[37,48],[28,84],[-9,117],[-14,84],[2,72],[13,50],[31,47],[43,38],[20,82],[-9,357],[23,66],[22,67],[51,23],[60,40],[32,40],[31,108],[32,315],[12,125],[21,47],[21,48],[4,79],[17,45],[49,14],[134,8],[161,-6],[91,-2],[74,-32],[65,-45],[60,-56],[47,-53],[84,-71],[55,-11],[38,19],[30,40],[40,68],[41,75],[66,90],[69,71],[66,69],[46,63],[25,43],[54,90],[67,121],[60,122],[61,90],[75,56],[76,1],[66,2],[46,42],[67,66],[47,29],[70,5],[76,-16],[51,-55],[40,21],[36,-26],[56,-24],[89,10],[42,-26],[21,-45],[24,-122],[56,-115],[79,-86],[115,-69],[80,-42],[86,-24],[51,-17],[19,-7],[71,-37],[54,8],[40,45],[55,-13],[19,32],[82,1],[64,-57],[42,-34],[44,-27],[40,11],[69,97],[20,85],[29,48],[46,76],[43,1],[28,31],[44,135],[47,114],[42,48],[50,58],[86,151],[154,191],[107,92],[142,74],[94,28],[98,29],[68,20],[42,35],[44,60],[40,95],[53,85],[123,170],[126,182],[17,56],[9,71],[-16,104],[-151,466],[-101,156],[-48,90],[-35,111],[0,127],[205,271],[318,99],[92,-382],[214,233],[335,615],[261,215],[388,-741],[136,-948],[185,150],[191,498],[878,849],[250,-172],[362,136],[466,-76],[990,259],[607,-72],[457,-438],[866,-120],[193,-323],[9,-65],[9,-65],[14,-125],[26,-230],[9,-102],[9,-102],[1,-95],[2,-14],[9,-86],[17,-85],[29,-55],[45,-15],[53,28],[45,-5],[55,15],[38,37],[32,51],[35,100],[44,101],[44,137],[46,176],[24,109],[19,119],[11,97],[19,119],[195,493],[20,51],[14,13],[282,252],[195,-248],[64,-609],[13,-71],[7,-88],[0,-50],[-27,-61],[-46,-116],[-8,-19],[-46,-116],[-17,-74],[-7,-149],[49,-682],[16,-126],[-14,-96],[-2,-31],[-2,-31],[-7,-276],[3,-87],[2,-87],[18,-124],[28,-135],[15,-47],[55,-112],[37,-87],[28,-45],[33,-16],[27,-37],[54,-87],[62,-149],[45,-151],[23,-97],[23,-122],[5,-82],[-2,-64],[-73,-185],[-42,-101],[-27,-98],[4,-60],[0,-72],[-14,-138],[-32,-148],[-46,-132],[-91,-196],[-3,-53],[3,-63],[55,-218],[108,-270],[82,-178],[141,-250],[93,-156],[49,-122],[39,-127],[10,-93],[-12,-79],[-38,-122],[-59,-96],[-68,-79],[-103,-55],[-91,-45],[-43,-43],[-21,-47],[4,-69],[28,-82],[46,-143],[29,-127],[38,-173],[22,-169],[5,-177],[2,-151],[18,-157],[22,-193],[29,-174],[19,-91],[38,-72],[32,-34],[32,-35],[56,-24]],[[620418,210628],[-1323,-191],[-592,63],[-941,418],[-663,55],[-954,-419],[-989,-18],[-845,-746],[-61,-30],[-274,-135],[-61,-30],[-199,-97],[-128,-527],[-145,-401],[-325,-551],[-263,-237],[-329,-267],[-313,-179],[-264,50],[-173,109],[-334,286],[-427,-183],[-386,-10],[-409,-191],[-248,-156],[-289,26],[-466,268],[-347,-6],[-458,-73],[-327,-120],[-1407,1007],[-118,39],[-170,-29],[-168,-49],[-120,-20],[-211,101],[-109,72],[-216,117],[-232,133],[-171,84],[-128,61],[-115,27],[-92,-54],[-135,-130],[-240,-145],[-91,-2],[-90,-2],[-111,58],[-111,58],[-195,125],[-349,246],[-195,137],[-155,48],[-115,4],[-202,-44],[-237,-45],[-289,-72],[-127,7],[-121,107],[-105,156],[-373,620],[-267,483],[-264,854],[-4,14],[-209,677],[-121,391],[-805,2604],[-171,32],[-123,-121],[-314,-450],[-294,-258],[-299,-217],[-331,-258],[-304,-121],[-441,-105],[-482,-168],[-454,-226],[-155,-137],[-128,-48],[-282,56],[-376,41],[-57,12],[-297,-22],[-220,-95],[-171,-169],[-203,-89],[-293,-72],[-115,32],[-110,64],[-80,161],[-58,222],[-256,684],[-134,101],[-155,72],[-282,49],[-171,-137],[-248,-22],[-140,67],[-108,101],[-91,155],[-218,752],[-65,396],[-163,345],[-119,162],[-127,65],[-262,47],[-130,10],[-130,11],[-128,104],[-70,173],[-80,298],[-53,113],[-70,81],[-80,64],[-130,55],[-147,12],[-248,5],[-203,-68],[-262,-177],[-242,-113],[-289,-68],[-285,-77],[-478,-52],[-117,20],[-108,-2],[-212,-135],[-88,-64],[-88,-24],[-104,24],[-123,44],[-115,73],[-128,0],[-163,-45],[-147,-96],[-424,-326],[-216,-73],[-152,-177],[-155,-89],[-405,-165],[-177,-442],[-277,-306],[-361,-290],[-128,-154],[-249,-176],[-358,-254],[-417,-191],[-234,-252],[-119,-237],[-149,-218],[-424,-294],[-176,-78],[-54,-24],[-194,-87],[-142,-125],[-105,-164],[-57,-143],[14,-439],[-65,-212],[-297,-193],[-78,-130],[-55,-160],[-92,-127],[-198,-174],[-337,-185],[-453,-205],[-347,-137],[-451,-214],[-270,-217],[-234,-370],[-171,-395],[-190,-515],[-133,-302],[-307,-350],[-256,-238],[-216,-120],[-336,-121],[-96,-26],[-142,-39],[-205,-28],[-171,-44],[-154,-7],[-171,-93],[-197,-64],[-194,-135],[-226,-150],[-151,-121],[-156,-99],[-179,-128],[-227,-200],[-245,-192],[-226,-99],[-156,-250],[-151,-170],[-73,-191],[-68,-243],[-95,-342],[-203,-384],[-226,-257],[-170,-106],[-104,-171],[-66,-100],[-153,-107],[-149,-135],[-80,-135],[9,-100],[38,-114],[123,-156],[165,-342],[123,-356],[311,-491],[108,-178],[38,-156],[-19,-185],[-61,-192],[-161,-197],[-141,-195],[-128,-98],[-184,-261],[-117,-175],[-118,-178],[-177,-157],[-101,-81],[-195,-42],[-56,-11],[-85,-29],[-231,-7],[-226,-135],[-198,-192],[-232,-235]],[[571608,198693],[-139,1037],[-82,198],[-78,147],[-79,123],[-120,156],[-72,161],[11,103],[-34,119],[-50,157],[-50,140],[-61,87],[-90,85],[-120,60],[-90,24],[-61,-126],[-50,-212],[-50,-109],[-93,-34],[-22,-106],[-89,-92],[-56,-65],[-63,48],[-55,7],[-56,-113],[-75,-38],[-90,66],[-71,-71],[-125,-155],[-150,-120],[-167,131],[-105,-174],[-109,72],[-169,-38],[-74,-106],[-227,-5],[-249,-116],[-121,87],[-173,5],[-39,-155],[-212,-45],[-333,-202],[-212,-94],[-77,-11],[-65,-5],[-55,23],[-56,34],[-47,47],[-27,74],[-18,88],[15,94],[64,75],[27,46],[5,31],[-13,41],[-18,34],[-26,31],[-41,18],[-32,-4],[-30,-19],[-29,32],[-23,37],[-1,44],[-27,25],[-18,36],[-35,65],[-29,21],[-31,24],[-41,39],[-26,29],[-50,-12],[-36,10],[-44,29],[-39,7],[-96,-72],[-47,86],[-46,86],[-376,54],[-166,58],[-304,125],[-198,97],[-291,106],[-96,125],[-31,139],[22,127],[147,122],[160,170],[22,72],[30,100],[26,196],[40,196],[51,185],[60,129],[40,84],[58,104],[58,121],[30,29],[43,19],[132,64],[140,73],[124,127],[96,175],[153,372],[57,96],[91,238],[57,208],[45,129],[106,246],[14,99],[-1,91],[9,47],[20,31],[37,28],[32,14],[56,1],[90,8],[57,29],[33,31],[32,45],[7,76],[18,145],[14,85],[10,51],[26,40],[46,64],[53,41],[36,8],[47,28],[108,102],[41,37],[72,82],[74,87],[20,43],[0,49],[8,24],[13,16],[9,10],[9,1],[24,5],[28,4],[39,24],[64,63],[75,105],[26,45],[10,40],[5,39],[5,39],[4,98],[7,160],[6,42],[14,38],[16,39],[25,53],[123,216],[32,66],[21,55],[2,7],[16,42],[11,46],[5,58],[-4,57],[-15,55],[-29,74],[-28,34],[-28,37],[-15,80],[3,68],[12,50],[13,33],[4,61],[2,64],[-8,151],[-11,121],[-14,117],[-4,33],[-11,29],[-18,22],[-21,28],[-12,28],[-9,59],[-15,53],[-10,41],[-20,33],[-22,49],[-11,26],[-14,5],[-18,7],[-29,19],[-30,49],[-22,30],[-27,23],[-6,16],[-6,19],[2,12],[5,28],[-2,27],[-8,30],[-11,7],[-24,16],[-28,23],[-40,11],[-25,9],[-38,-12],[-30,-32],[-25,-22],[-14,-43],[-26,-120],[-21,-63],[-18,-42],[-22,-44],[-25,-48],[-25,-43],[-22,-5],[-24,8],[-33,37],[-44,22],[-40,-2],[-30,-15],[-22,-34],[-43,-80],[-69,-132],[-46,-36],[-36,-10],[-35,1],[-32,-5],[-18,-3],[-6,-19],[-12,-12],[-26,2],[-22,-9],[-17,-38],[-50,-48],[-54,-27],[-59,-9],[-64,20],[-48,30],[-17,16],[-11,18],[-10,26],[-7,80],[14,116],[5,49],[5,50],[-6,25],[-32,12],[-39,7],[-30,10],[-16,19],[-25,12],[-33,4],[-25,27],[-5,28],[-6,10],[-9,3],[-12,4],[-26,28],[-34,38],[-49,38],[-18,16],[-3,25],[9,16],[118,206],[50,108],[37,100],[38,114],[4,46],[-7,35],[-15,28],[-20,22],[-39,-5],[-47,-36],[-127,-75],[-143,-68],[-101,-38],[-60,3],[-35,32],[-31,40],[-18,45],[-13,54],[-22,60],[-9,50],[-22,27],[-25,-2],[-44,-30],[-61,-57],[-20,-10],[-21,10],[-26,12],[-136,62],[-65,27],[-80,38],[-45,33],[-76,76],[-11,33],[1,25],[7,39],[20,43],[38,28],[44,8],[113,0],[48,23],[27,41],[1,60],[-23,62],[-26,59],[2,68],[3,24],[24,48],[32,15],[13,38],[0,54],[10,24],[24,24],[34,62],[34,34],[67,56],[55,23],[46,9],[44,-6],[112,-6],[35,23],[22,41],[18,50],[5,48],[-3,50],[-20,289],[-1,169],[1,55],[3,45],[-9,41],[-8,24],[-16,26],[-124,84],[-28,22],[-33,22],[-21,14],[-19,23],[-12,51],[2,59],[19,31],[27,22],[33,7],[39,-15],[27,4],[20,11],[17,20],[7,25],[1,46],[-4,26],[-10,37],[-23,40],[-37,42],[-33,18],[-33,6],[-35,11],[-31,-21],[-35,-36],[-32,-7],[-41,38],[-18,1],[-21,-12],[-43,-37],[-56,-59],[-35,-10],[-36,6],[-35,25],[-35,24],[-27,28],[-15,55],[-12,56],[-7,23],[-16,15],[-45,0],[-51,17],[-33,-4],[-52,11],[-40,1],[-49,-10],[-21,-6],[-27,4],[-32,22],[-32,41],[-23,29],[-24,59],[-15,79],[-2,58],[-5,46],[-9,57],[3,23],[3,24],[-3,26],[-7,41],[-7,49],[-18,52],[-11,76],[-3,56],[6,79],[-1,38],[-14,41],[-32,77],[-7,70],[13,89],[12,71],[21,90],[30,80],[11,28],[5,29],[-2,35],[-9,56],[-7,29],[7,28],[17,22],[-8,28],[6,18],[13,17],[26,9],[16,44],[25,56],[30,84],[37,50],[52,23],[55,8],[85,15],[84,15],[108,18],[110,11],[51,8],[36,5],[49,39],[39,36],[29,50],[52,128],[39,112],[33,155],[56,305],[21,227],[6,164],[27,172],[16,79],[30,66],[36,42],[159,185],[70,102],[36,105],[17,85],[48,230],[35,61],[64,57],[79,53],[39,27],[22,24],[6,32],[-8,27],[-20,12],[-58,0],[-66,-35],[-78,-5],[-73,7],[-197,23],[-162,14],[-73,8],[-52,16],[-42,22],[-34,27],[-25,31],[-34,43],[-26,48],[-16,35],[-17,46],[-2,32],[-3,41],[0,113],[-1,51],[12,29],[30,0],[30,0],[59,26],[69,47],[82,33],[81,3],[117,-36],[97,-48],[61,-36],[59,-27],[58,-1],[44,30],[39,61],[58,21],[38,52],[65,-12],[63,-21],[40,-41],[64,1],[45,-14],[76,-23],[57,4],[33,16],[47,5],[56,28],[27,7],[24,-12],[40,-29],[40,-9],[38,14],[23,11],[50,-3],[49,-16],[20,1],[18,13],[57,6],[24,1],[18,-10],[17,-10],[41,-12],[29,1],[24,6],[9,6],[9,6],[12,-4],[17,-5],[28,-10],[20,6],[21,25],[17,23],[12,24],[11,25],[10,28],[9,28],[13,21],[13,23],[17,26],[6,29],[5,34],[-1,28],[-1,24],[-4,31],[-1,32],[-4,43],[-10,42],[-7,27],[-12,27],[-19,30],[-19,21],[-12,31],[-14,37],[-14,43],[-14,40],[-14,23],[-5,33],[-3,57],[-3,34],[-11,28],[-14,32],[-17,21],[-14,21],[-6,26],[-7,58],[-3,52],[3,37],[-8,24],[-20,30],[-28,31],[-57,32],[-58,-5],[-65,2],[-53,-21],[-47,-15],[-52,-8],[-44,-6],[-51,-9],[-33,-7],[-32,-2],[-32,18],[-27,16],[-34,20],[-23,4],[-16,18],[-60,68],[-70,78],[-23,38],[-4,27],[-27,31],[-31,20],[-32,5],[-37,-5],[-48,-14],[-55,-26],[-34,-5],[-42,8],[-43,7],[-36,-4],[-28,14],[-22,40],[-8,22],[-11,23],[-11,7],[-26,18],[-52,34],[-47,23],[-51,16],[-38,15],[-49,-1],[-48,17],[-60,23],[-44,-1],[-40,10],[-29,28],[-32,0],[-27,12],[-28,13],[-24,5],[-25,4],[-37,31],[-31,27],[-33,9],[-50,32],[-25,27],[-23,38],[-36,22],[-40,9],[-36,-3],[-27,-9],[-17,-24],[-12,-21],[-16,-18],[-29,-23],[-34,-12],[-36,-18],[-42,0],[-39,9],[-39,13],[-62,44],[-35,35],[-23,45],[-37,66],[-20,21],[-12,2],[-17,3],[-19,11],[-19,31],[-26,37],[-43,6],[-42,-6],[-69,-21],[-56,-19],[-50,-25],[-60,-30],[-12,-21],[-7,-36],[-24,-15],[-33,5],[-40,12],[-36,14],[-39,20],[-24,21],[-17,14],[-10,29],[-10,29],[-10,45],[2,50],[-12,29],[-25,15],[-23,27],[-26,1],[-40,3],[-72,3],[-12,-18],[-16,-48],[-17,-2],[-11,-11],[-10,-39],[-9,-33],[-15,-18],[-25,-9],[-14,31],[-17,16],[-31,10],[-26,-3],[-43,-5],[-29,4],[-30,4],[-30,-11],[-35,-3],[-40,1],[-37,7],[-30,9],[-25,-6],[-28,-7],[-19,-10],[-18,-21],[-6,-12],[-6,-13],[4,-174],[14,-21],[9,-15],[0,-28],[-7,-33],[-7,-11],[-6,-12],[-3,-19],[1,-42],[-18,-31],[-33,-18],[-28,-13],[-35,16],[-27,6],[-29,-15],[-19,-17],[-26,-4],[-36,6],[-40,27],[-57,5],[-43,23],[-44,7],[-20,-10],[-20,-22],[-17,-14],[-19,-2],[-16,-6],[-28,-24],[-45,-34],[-35,-24],[-21,-5],[-18,12],[-10,17],[-9,17],[-12,23],[-18,5],[-29,-7],[-15,-9],[-21,8],[-27,34],[-49,53],[-46,45],[-41,20],[-41,21],[-27,26],[-15,32],[-4,28],[-11,19],[-18,11],[-41,35],[-35,33],[-30,55],[-13,62],[0,48],[6,31],[12,16],[16,4],[14,22],[5,24],[9,29],[0,39],[-5,27],[-3,29],[7,32],[20,42],[15,22],[11,15],[10,18],[6,46],[19,92],[12,41],[5,11],[6,11],[3,10],[-2,11],[-6,17],[-6,17],[-13,15],[-18,4],[-24,6],[-47,10],[-54,6],[-39,-20],[-54,-52],[-28,-21],[-42,-13],[-48,-1],[-23,-5],[-33,-8],[-36,-6],[-29,7],[-28,16],[-47,17],[-35,11],[-36,-3],[-87,-8],[-64,-2],[-44,2],[-53,7],[-32,-8],[-12,0],[-17,-1],[-44,27],[-30,42],[-26,54],[-22,54],[-17,19],[-32,30],[-23,28],[-16,64],[-13,59],[-17,31],[-25,-17],[-28,-6],[-71,27],[-212,125],[-19,19],[-18,24],[-17,19],[-21,2],[-29,3],[-17,-12],[-15,-23],[-14,-40],[-8,-42],[-13,-29],[-19,-16],[-26,-8],[-27,-8],[-20,-3],[-23,10],[-12,19],[-2,25],[-1,23],[-6,17],[-19,6],[-21,-4],[-26,-12],[-35,0],[-30,6],[-22,7],[-23,10],[-14,12],[-6,19],[4,16],[8,27],[-8,25],[-10,16],[-19,14],[-50,3],[-36,16],[-43,28],[-19,18],[-15,22],[-29,38],[-14,21],[8,100],[1,47],[14,16],[7,20],[0,25],[-9,11],[-2,19],[11,38],[97,290],[212,479],[75,230],[55,184],[46,180],[24,150],[-2,63],[0,73],[-15,67],[-27,58],[-58,57],[-40,45],[-55,41],[-40,54],[-53,86],[-42,87],[-23,28],[-28,-1],[-29,-10],[-25,-8],[-26,13],[-23,16],[-44,50],[-20,43],[-4,90],[13,94],[9,164],[21,139],[26,122],[45,118],[64,74],[79,94],[62,73],[86,54],[104,43],[56,110],[17,68],[4,142],[-2,175],[-10,176],[4,105],[8,113],[15,99],[8,64],[45,88],[43,55],[38,38],[24,10],[70,-4],[52,-3],[71,-6],[50,7],[114,-22],[70,-12],[51,-10],[41,-17],[54,-14],[36,-11],[39,1],[44,22],[39,25],[33,38],[30,40],[23,38],[41,70],[19,53],[32,94],[33,79],[28,61],[52,78],[73,71],[34,14],[37,11],[27,10],[17,16],[17,27],[21,34],[13,30],[9,31],[17,44],[18,36],[12,30],[4,47],[8,48],[11,54],[19,32],[26,25],[36,54],[32,83],[21,51],[71,124],[48,80],[39,37],[47,11],[36,25],[48,51],[26,44],[36,48],[30,44],[46,60],[42,48],[62,65],[58,71],[45,55],[10,10],[32,33],[38,34],[34,31],[37,37],[46,39],[72,47],[63,51],[39,43],[9,34],[4,38],[-15,75],[-14,100],[-20,98],[-13,53],[-10,56],[-2,64],[-2,136],[-9,55],[-9,55],[-2,39],[13,43],[11,70],[9,71],[9,92],[0,83],[-5,74],[-8,84],[-16,76],[-18,93],[-21,68],[-17,47],[-35,68],[-58,48],[-65,27],[-75,21],[-65,3],[-76,-10],[-50,-36],[-28,-39],[-12,-45],[-35,-16],[-15,-18],[-14,-42],[-37,-27],[-44,5],[-59,12],[-57,19],[-61,13],[-59,31],[-37,29],[-44,0],[-75,-23],[-67,-13],[-61,-1],[-90,15],[-49,19],[-71,30],[-49,29],[-36,37],[-52,60],[-106,63],[-68,53],[-87,78],[-51,63],[-157,107],[-32,36],[-48,22],[-58,24],[-89,38],[-29,11],[-28,12],[-21,19],[-42,77],[-70,72],[-56,50],[-34,65],[-12,65],[-6,74],[8,61],[20,22],[14,36],[-2,38],[-15,58],[-24,25],[-20,12],[-18,-2],[-32,-6],[-19,-1],[-13,10],[-11,9],[-6,18],[1,24],[2,19],[-4,13],[-13,28],[-16,37],[-71,83],[-150,282],[-51,116],[-117,218],[-33,50],[-32,29],[-33,51],[-17,47],[-32,54],[-40,74],[-42,103],[-34,38],[-7,15],[-59,120],[-46,62],[-42,43],[-40,42],[-56,28],[-41,15],[-43,31],[-36,49],[-16,41],[-4,30],[2,48],[23,39],[32,36],[28,4],[35,-26],[38,4],[41,54],[34,49],[27,53],[17,24],[459,185],[132,70],[41,42],[39,47],[27,47],[16,37],[14,45],[8,41],[1,83],[-4,63],[-6,64],[-9,56],[-13,38],[-19,15],[-26,19],[-48,104],[-40,85],[-27,95],[-18,95],[-17,68],[-26,53],[-140,222],[-40,16],[-64,-14],[-95,-20],[-45,-10],[-57,13],[-49,53],[-27,39],[-28,38],[-41,16],[-41,16],[-102,79],[-51,71],[-40,84],[-57,120],[-137,221],[-120,158],[-132,139],[-86,71],[-254,113],[-60,72],[-22,40],[-10,40],[-6,49],[-3,44],[1,45],[-5,57],[-22,37],[-13,24],[-11,18],[-5,24],[14,221],[-5,85],[-14,117],[-23,77],[-17,49],[-10,208],[-7,65],[-17,72],[-2,65],[5,87],[3,72],[6,60],[9,40],[15,76],[15,127],[4,149],[2,103],[-4,75],[-9,174],[-14,143],[-6,41],[-8,33],[-24,44],[-26,47],[-15,95],[-27,75],[-17,32],[2,46],[-20,73],[-24,57],[-23,24],[-5,40],[2,68],[-30,133],[-25,99],[-24,123],[-10,102],[-2,82],[2,59],[9,46],[23,93],[58,233],[15,51],[14,32],[16,51],[3,47],[3,57],[-8,46],[-12,34],[-19,39],[-28,48],[-31,24],[-35,27],[-47,14],[-58,-3],[-35,-25],[-34,4],[-33,18],[-13,33],[-1,31],[-2,34],[9,43],[-2,35],[-44,63],[-79,239],[-38,83],[-54,91],[-34,89],[-78,241],[-62,139],[-28,75],[-16,92],[-16,112],[-5,79],[-11,75],[-9,96],[13,89],[-3,95],[-9,60],[-14,52],[-2,115],[10,108],[9,52],[20,44],[58,62],[9,40],[-4,167],[-33,436],[-7,115],[-21,133],[5,120],[-19,118],[-14,65],[-17,102],[-51,288],[-38,236],[-32,179],[-34,150],[-36,119],[-35,92],[-40,58],[-21,32],[-10,48],[-8,53],[-3,34],[-3,25],[-6,43],[-16,122],[-12,86],[-23,98],[-49,114],[-36,107],[-25,69],[-9,27],[-9,27],[-19,42],[-31,38],[-90,87],[-56,67],[-49,33],[-47,37],[-46,16],[-54,5],[-53,6],[-59,-24],[-24,-16],[-25,-16],[-70,-16],[-58,13],[-49,24],[-48,38],[-49,54],[-15,54],[0,73],[16,61],[15,56],[-1,32],[-1,28],[-37,50],[-28,39],[-8,10],[-32,75],[-16,78],[-29,50],[-102,171],[-56,93],[-51,64],[-53,60],[-11,12],[-11,12],[-9,4],[-10,-2],[-14,-10],[-16,-23],[-35,-64],[-26,-35],[-15,-58],[-10,-47],[-12,-15],[-12,-15],[-56,-1],[-107,47],[-162,46],[-120,27],[-84,0],[-112,15],[-71,34],[-32,17],[-5,8],[-1135,1850],[-7769,12671],[-96,158]],[[591420,287369],[566,126],[471,-217],[146,8],[328,15],[203,97],[193,129],[235,129],[299,134],[253,51],[59,-10],[45,-25],[41,-47],[82,-114],[59,-53],[71,-5],[96,-1],[106,13],[97,-20],[80,-121],[98,-114],[179,-88],[163,-219],[128,-163],[82,-88],[131,-55],[196,-24],[156,-13],[162,-36],[123,-374],[366,-265],[858,-89],[68,-132],[27,-54],[26,-19],[28,28],[54,-18],[30,-45],[44,-129],[513,-328],[332,-122],[339,60],[361,-71],[147,-256],[31,-17],[57,20],[30,-16],[23,-4],[36,-34],[31,-39],[7,-34],[17,-58],[22,-39],[9,-65],[7,-35],[16,-39],[13,-77],[22,-56],[22,-22],[68,20],[28,-8],[6,-30],[13,-124],[21,-207],[6,-20],[7,-19],[40,-22],[38,-23],[51,-36],[19,-12],[8,-24],[15,-42],[-8,-26],[13,-31],[0,-31],[15,2],[11,-26],[4,-41],[9,-22],[1,-21],[14,-10],[32,-9],[42,18],[74,37],[31,15],[23,-7],[16,-9],[7,-25],[5,-36],[3,-47],[28,-54],[13,-39],[7,-58],[7,-74],[17,-64],[36,-54],[79,-96],[118,-144],[172,-18435],[1,-191],[2,-142],[6,-436],[6,-384],[52,-3347],[84,-5330],[-3,-16],[-3,-17],[-3,-17],[-12,-9],[-18,-8],[-12,-6],[-12,-17],[-3,-35],[-4,-37],[-35,-115],[-22,-58],[-23,-122],[-11,-130],[-8,-109],[-14,-106],[-32,-92],[-55,-127],[-123,-245],[-100,-205],[-91,-141],[-60,-111],[-61,-118],[-30,-136],[-6,-39],[9,-42],[0,-56],[-13,-102],[-5,-64],[-18,-50],[-23,-22],[-4,-65],[-8,-93],[-27,-89],[4,-95],[-22,-60],[-15,-46],[7,-68],[-1,-74],[-9,-91],[-34,-123],[-54,-227],[6,-153],[28,-324],[-9,-28],[-14,-25],[-9,-7],[-9,-11],[-9,-15],[-15,-30],[-25,-73],[-20,-78],[-16,-66],[-8,-108],[8,-53],[20,-15],[3,-25],[-7,-43],[3,-46],[9,-17],[30,-23],[29,-50],[23,-46],[15,-15],[16,-15],[44,2],[46,-31],[19,-28],[25,-1],[28,3],[25,31],[7,2],[39,11],[239,2],[159,-21],[537,-32],[645,5],[1155,1],[1013,-817],[279,-59],[50,23],[50,23],[43,-4],[281,-22],[210,-10],[210,-10],[312,-20],[321,-65],[164,-144],[113,-130],[56,-190],[100,-339],[121,-373],[73,-56],[35,-127],[22,-189],[121,-131],[81,-35],[505,-152],[237,-22],[84,-74],[456,-74],[110,-91],[4,1],[417,40],[181,141],[520,396],[186,116],[339,255],[84,50],[69,41],[197,75],[181,173],[213,107],[197,0],[82,-74],[162,-102],[369,-220],[635,-363],[531,-116],[180,-256],[115,-16],[296,49],[448,25],[219,0],[154,54],[196,-62],[571,69],[315,344],[53,38],[196,141],[223,161],[864,559],[785,540],[501,302],[350,248],[137,33],[290,-50],[181,-198],[213,-578],[181,-693],[383,-834],[21,-280],[126,-198],[191,-146],[79,-26],[266,-53],[220,-100],[220,-100],[617,-209],[519,-161],[449,-198],[348,-279],[107,-166],[107,-166]],[[256942,213708],[-77,-569],[62,-790],[-92,-653],[-1121,-429],[-502,-802],[-772,-669],[-142,-1356],[-289,-525],[-57,-906],[-183,-179],[-345,63],[-377,-680],[-565,-133],[-204,-327],[-629,300],[-339,-32],[-615,597],[-352,-26],[-752,-631],[-536,-955],[-621,-597],[-136,-476],[553,-1339],[-65,-489],[86,-425],[220,-329],[-56,-478],[-483,-899],[-126,-650],[-1017,-1447],[-276,-1559],[-586,-555],[-523,-1129],[-898,-541],[-133,-1869],[-82,-452],[-873,-2002],[-737,-289],[-443,-824],[-1350,-549],[393,-2514],[-47,-720]],[[145330,201033],[106,482],[-2,404],[-114,459],[172,629],[244,335],[2026,2427],[81,78],[88,-21],[155,-188],[80,21],[30,81],[61,163],[127,256],[75,71],[325,-29],[390,86],[400,149],[621,432],[273,206],[183,234],[90,244],[67,89],[111,15],[97,-32],[96,-32],[287,-92],[405,-248],[108,-61],[108,-60],[151,-50],[131,7],[104,114],[89,85],[240,70],[239,69],[189,117],[151,-107],[84,43],[99,35],[75,-14],[52,-163],[14,-234],[-33,-220],[-99,-185],[-61,-227],[-56,-291],[-24,-149],[50,-29],[162,-255],[98,-83],[100,76],[89,29],[85,-100],[15,-114],[20,-154],[120,-143],[23,-184],[47,-58],[-18,-99],[-109,-118],[-47,-159],[38,-141],[118,-36],[230,199],[231,198],[461,362],[451,305],[154,96],[142,89],[227,179],[281,225],[76,22],[75,21],[61,-57],[80,-78],[104,-64],[150,6],[104,51],[75,106],[94,178],[61,135],[129,99],[130,99],[254,149],[273,142],[147,191],[20,86],[-30,22],[-60,43],[-63,56],[-66,49],[-94,71],[-132,121],[-38,113],[-4,142],[68,198],[92,143],[84,135],[108,92],[71,78],[82,89],[47,81],[-9,188],[8,146],[30,135],[13,330],[31,443],[33,142],[59,121],[40,106],[45,181],[70,298],[33,170],[21,174],[50,117],[56,80],[52,5],[85,11],[157,60],[47,18],[59,46],[13,29],[32,74],[49,273],[45,142],[28,117],[40,135],[31,89],[9,67],[2,76],[-10,66],[-20,69],[-43,101],[-20,98],[-17,126],[6,49],[27,44],[49,38],[54,50],[74,53],[67,51],[36,54],[27,131],[13,82],[32,104],[25,100],[20,83],[-4,83],[-17,64],[-20,107],[-21,126],[12,67],[38,121],[34,124],[26,117],[31,105],[28,111],[12,68],[4,24],[-6,32],[-7,29],[-28,32],[-51,3],[-21,15],[-23,37],[-9,51],[10,66],[11,78],[18,124],[8,186],[13,87],[23,98],[7,53],[18,60],[4,61],[-3,68],[-1,33],[18,28],[61,21],[50,52],[35,34],[35,33],[54,71],[46,85],[23,70],[40,95],[38,114],[30,76],[38,59],[33,14],[34,-11],[24,-62],[1,-62],[14,-14],[22,-48],[7,-44],[-12,-39],[-21,-43],[-6,-43],[16,-61],[-5,-56],[14,-44],[27,-12],[38,-18],[40,16],[46,12],[20,-23],[23,-57],[-9,-36],[-16,-65],[4,-71],[12,-56],[22,-23],[36,6],[71,47],[104,78],[51,30],[54,23],[59,9],[70,-19],[63,-34],[69,-27],[69,-14],[55,-25],[59,-11],[54,2],[46,18],[47,30],[22,28],[11,70],[14,87],[2,67],[0,80],[5,60],[13,34],[16,25],[23,12],[22,-21],[69,-4],[67,9],[55,-5],[41,30],[31,19],[46,2],[42,-12],[42,-32],[44,-32],[38,-20],[31,15],[28,14],[36,22],[40,1],[61,16],[38,44],[48,11],[90,23],[60,19],[36,22],[47,25],[41,37],[37,44],[55,23],[16,2],[12,-2],[14,13],[29,12],[34,-25],[26,13],[32,32],[30,58],[28,43],[49,42],[52,41],[62,41],[51,25],[41,26],[37,4],[31,-4],[33,-10],[40,-31],[40,-24],[41,-34],[56,-41],[32,-24],[31,-8],[28,13],[99,97],[114,133],[321,375],[29,758],[468,321],[200,480],[62,381],[-94,603],[41,197],[347,995],[28,257],[-38,231],[-454,1111],[-134,99],[-150,-13],[-1217,-1000],[-85,7],[-207,276],[-437,703],[-161,30],[-199,-71],[-85,-30],[-116,43],[-144,113],[-95,29],[-369,-150],[-125,30],[-70,113],[-71,114],[-39,91],[-58,209],[-31,223],[5,191],[62,336],[109,300],[617,1325],[-12,113],[-50,106],[-195,232],[-333,257],[-162,157],[-99,181],[13,127],[659,1446],[-4,163],[-29,194],[-112,200],[-902,683],[-27,223],[280,1213],[121,259],[218,268],[289,236],[266,-18],[349,37],[183,88],[66,200],[75,301],[-64,1456],[97,436],[208,341],[379,132],[402,-109],[108,-63],[104,44],[103,44],[654,927],[117,122],[43,13],[83,25],[127,-32],[511,-456],[110,-45],[154,0],[81,105],[45,149],[-6,153],[-83,128],[-402,447],[-75,83],[-24,69],[-21,598],[-52,60],[-305,355],[-43,137],[-38,118],[57,418],[179,308],[668,176],[1032,862],[763,1254],[170,1339],[488,1092],[467,512],[164,180],[58,27],[737,351],[269,-96],[665,356],[488,-113],[2285,-1786],[244,213],[292,-71],[141,170],[273,-99],[132,227],[99,189],[80,152],[234,-1],[245,114],[48,-20],[262,-108],[367,-128],[226,29],[-365,2046],[50,172],[259,887],[-70,49],[-802,575],[0,92],[2,326],[11,83],[8,54],[75,161],[-1,2],[0,1],[-274,808],[-90,266],[-26,119],[-26,120],[-51,238],[0,419],[93,440],[146,305],[37,59],[133,217],[179,192],[178,99],[442,107],[612,85],[143,17],[450,54],[487,135],[557,362],[480,369],[385,127],[471,-56],[470,397],[165,411],[164,412],[367,270],[447,305],[450,398],[53,48],[217,200],[188,354],[240,518],[80,199],[51,291],[-98,518],[-64,333],[-63,334],[-82,444],[-36,194],[-70,391],[-71,257],[-25,103],[-38,108],[-73,146],[-31,121],[-72,293],[-16,65],[-17,65],[-16,135],[21,134],[31,46],[30,47],[65,59],[167,120],[207,156],[202,191],[188,146],[428,249],[478,436],[152,155],[207,211],[5,5],[10,11],[9,10],[113,128],[97,133],[75,154],[23,213],[15,181],[5,83],[-8,68],[-19,87],[-16,78],[-26,80],[-23,72],[-34,93],[-49,88],[-34,64],[-35,59],[-47,64],[-24,55],[7,49],[7,30],[15,35],[33,38],[37,41],[30,25],[60,44],[67,46],[69,64],[57,50],[54,44],[39,53],[32,51],[32,72],[71,147],[53,121],[84,113],[104,114],[101,88],[8,7],[42,38],[50,44],[93,82],[251,221],[70,63],[70,63],[125,136],[77,91]],[[378498,442234],[-107,25],[-108,26],[-169,11],[-259,-39],[-218,-74],[-150,-82],[-151,-82],[-128,-83],[-429,-399],[-826,-712],[-256,-225],[-237,-187],[-353,-366],[-319,-306],[-202,-316],[-79,-67],[-137,-23],[-138,90],[-107,20],[-75,-20],[-62,-48],[-44,-84],[-3,-90],[47,-128],[173,-425],[218,-377],[40,-122],[-15,-135],[-115,-306],[-55,-145],[-183,-338],[-466,-679],[-279,-338],[-390,-503],[-298,-337],[-164,-93],[-51,-13],[-134,-119],[-60,-48],[-40,-45],[-122,-174],[-70,-84],[-60,-42],[-61,-107],[-84,-179],[-166,-228],[-154,-129],[-80,-28],[-3,-1],[-88,45],[-77,113],[-70,51],[-107,-7],[-104,97],[-86,161],[-19,116],[-90,138],[-102,45],[-117,126],[-37,264],[-106,231],[-65,290],[2,249],[66,197],[41,172],[-31,211],[-98,173],[-78,117],[-83,78],[-68,32],[-96,-9],[-149,32],[-158,145],[-196,206],[-277,114],[-159,8],[-122,-38],[-136,-165],[-51,0],[-128,107],[-113,180],[-73,122],[-14,109],[19,174],[-62,155],[-143,254],[-218,293],[-294,606],[-286,250],[-306,-8],[-176,-133],[-125,31],[-216,237],[-256,476],[-223,446],[-249,195],[-586,266],[-94,165],[-129,383],[-37,454],[-114,149],[-285,360],[-436,250],[-353,94],[-233,-86],[-254,8],[-270,55],[-363,-219],[-218,-47],[-243,61],[-172,158],[-151,39],[-368,-71],[-368,-201],[-472,-245],[-177,-172],[-114,-242],[0,-548],[208,-467],[119,-637],[208,-954],[25,-337],[-62,-352],[-145,-321],[-135,-814],[171,-548],[37,-164],[-11,-258],[-52,-235],[-129,-360],[-187,-751],[-171,-470],[-140,-243],[-187,-15],[-192,117],[-140,251],[-156,0],[-161,-204],[-81,-287],[-48,-480],[41,-242],[62,-760],[37,-626],[-68,-814],[-321,-829],[-327,-571],[-286,-478],[-269,-141],[-358,8],[-229,125],[-339,332],[-65,506],[-223,595],[-721,579],[-379,117],[-161,-31],[-119,-227],[-68,-55],[-124,86],[-78,172],[-171,24],[-301,-180],[-125,-24],[-394,415],[-353,376],[-228,188],[-493,140],[-613,29],[-66,3],[-223,109],[-79,96],[-30,311],[77,392],[42,273],[-88,298],[-197,172],[-628,-149],[-426,-180],[-191,-54],[-390,336],[-217,360],[-284,157],[-168,-152],[-181,-506],[-78,-415],[-151,-532],[-166,-313],[-243,-164],[-317,-697],[5,-305],[120,-391],[300,-564],[473,-892],[129,-266],[-26,-336],[-238,-462],[-139,-331],[-12,-248],[92,-504],[33,-248],[-11,-633],[14,-227],[12,-204],[47,-516],[5,-306],[-88,-469],[-104,-415],[-181,-501],[-223,-501],[-265,-1072],[-59,-157],[-216,-571],[-825,-2003],[-322,-470],[-233,-193],[-169,21],[-114,86],[-256,720],[-58,212],[-134,109],[-281,117],[-461,-46],[-509,125],[-576,62],[-383,94],[-343,368],[-171,321],[-296,305],[-762,329],[-369,242],[-316,102],[-1043,282],[-218,47],[-244,-115],[-254,-120],[-254,-117],[-145,15],[-114,119],[-16,398],[-47,180],[-85,34],[-85,34],[-151,73],[-271,236],[-118,139],[-327,188],[-244,55],[-100,-75],[-14,-11],[-114,-337],[-114,-133],[-187,-70],[-291,-305],[-238,-423],[-291,-313],[-436,-235],[-226,-196],[-189,-445],[-275,-509],[-166,-493],[-435,-626],[-483,-360],[-285,-431],[-388,-724],[-1,-3],[-166,-306],[26,-313],[-52,-391],[-26,-243],[57,-274],[5,-180],[-73,-234],[-265,-104],[-82,-12],[-131,72],[-221,-30],[-202,-25],[-29,0],[-38,1],[-18,1],[-86,2],[-316,-13],[-134,-25],[-140,-63],[-185,-144],[-58,-74],[-87,-111],[-40,-52],[-205,-237],[-216,-337],[-182,-242]],[[330879,414714],[-140,233],[-16,28],[-85,40],[-115,55],[-21,-15],[-12,9],[-22,37],[10,23],[-6,17],[-21,-7],[-10,22],[0,42],[-12,10],[-22,-10],[-38,64],[-48,39],[-46,37],[-65,76],[-39,25],[-60,35],[-53,-13],[-25,-26],[-52,3],[-48,8],[-115,2],[-45,51],[-41,22],[-70,-28],[-53,1],[-30,-6],[-27,-31],[-36,-38],[-66,-27],[-41,-4],[-26,10],[-12,48],[-5,33],[-1,29],[-179,247],[23,63],[147,401],[1246,1656],[719,1382],[-447,1019],[-85,725],[65,1181],[-574,357],[-601,130],[-189,383],[177,260],[310,40],[892,-274],[260,155],[64,153],[-177,579],[-544,455],[-594,823],[-291,51],[-1142,-468],[-326,428],[-15,741],[-988,-446],[-925,223],[-368,332],[-137,1056],[-352,685],[-42,435],[551,1025],[452,101],[763,1045],[-162,571],[-474,685],[-1059,-50],[-282,306],[-73,870],[71,418],[178,154],[-50,454],[361,1206],[-115,968],[284,75],[240,342],[-100,713],[30,1363],[-254,486],[-472,198],[-363,-178],[-890,841],[-487,251],[-1169,-30],[-395,-218],[-337,286],[-283,717],[-367,-124],[-450,574],[-434,647],[-206,819],[-184,734],[-9,34],[-125,501],[-3,11],[-2,7],[-5,21],[-102,406],[-380,1513],[-1,3],[0,2],[-1,2],[0,2],[0,1],[-2066,311],[-1106,166],[-834,315],[-325,363],[-374,1526],[-753,552],[-414,304],[-261,431],[13,341],[588,566],[142,2181],[301,827],[-156,105],[-97,426],[-247,141],[-277,666],[186,336],[6,380],[-354,262],[-534,-171],[-404,-209],[-226,271],[-13,16],[-14,17],[16,56],[37,120],[44,78],[38,64],[60,134],[13,76],[-16,39],[-45,17],[-45,18],[-45,36],[-25,26],[-73,82],[-15,70],[4,105],[12,137],[-17,56],[-28,24],[-39,18],[-66,-26],[-48,-12],[-58,34],[-28,56],[-12,58],[0,78],[-5,100],[-19,129],[2,39],[4,91],[-24,14],[-32,-12],[-98,-80],[-85,-60],[-70,-33],[-28,29],[-12,78],[-24,134],[2,238],[-45,126],[-2,62],[29,40],[114,48],[65,24],[61,6],[62,18],[31,44],[-21,63],[-3,105],[-30,59],[-54,73],[-60,109],[9,109],[-22,119],[-54,104],[-42,14],[-62,43],[-56,44],[-102,45],[-166,87],[-88,0],[-64,19],[-111,113],[-54,0],[-157,-46],[-96,-17],[-106,-1],[-31,95],[-26,101],[24,309],[30,160],[21,59],[-39,82],[-70,-5],[-76,7],[-45,51],[-14,38],[-118,27],[-65,25],[-11,66],[28,73],[-12,95],[-43,87],[-39,36],[-124,-32],[-87,-32],[-51,55],[0,91],[57,64],[63,54],[58,23],[24,68],[-27,46],[-82,32],[-51,50],[-45,23],[-40,-19],[-54,0],[-21,28],[-36,45],[-21,73],[12,96],[33,61],[10,71],[26,139],[35,80],[34,81],[38,59],[48,21],[47,20],[77,53],[134,84],[85,41],[59,18],[86,191],[98,189],[48,16],[122,2],[95,-13],[136,-25],[53,-51],[57,-15],[148,120],[104,73],[136,82],[115,25],[42,70],[48,30],[35,-27],[47,40],[69,33],[35,61],[45,48],[44,20],[56,9],[34,73],[12,112],[11,136],[12,112],[4,132],[-9,84],[-28,52],[-27,53],[-44,52],[-35,21],[-42,4],[-29,13],[-18,55],[30,30],[-9,52],[-9,55],[8,135],[-19,48],[-42,72],[-48,130],[-17,54],[11,55],[26,13],[42,-4],[38,0],[42,13],[39,3],[27,-34],[44,-50],[62,-1],[45,37],[-3,57],[-6,73],[-9,79],[-8,71],[23,150],[45,118],[31,55],[52,34],[33,18],[56,48],[62,18],[61,-4],[42,20],[92,93],[78,121],[64,64],[46,7],[80,27],[91,77],[105,117],[44,43],[5,38],[-20,21],[-36,16],[-17,16],[-36,45],[-27,7],[-42,16],[-70,46],[-39,41],[-32,37],[-15,58],[-6,80],[3,98],[-71,286],[-25,21],[-41,39],[-25,21],[-17,65],[0,100],[16,80],[20,70],[38,50],[33,53],[27,200],[-14,62],[-19,13],[-38,-20],[-41,2],[-49,18],[-29,48],[-39,82],[-70,50],[-49,57],[-5,111],[24,69],[42,70],[88,103],[118,156],[18,44],[9,34],[-12,48],[-249,282],[-162,38],[8,115],[0,2],[6,89],[2,29],[8,109],[921,13128],[-240,527],[-55,761],[125,872],[169,260],[242,231],[15,251],[-238,737],[-228,401],[-241,1040],[346,1522],[-227,1462],[-593,958],[-219,141],[-162,-29],[-161,-29],[20,69],[-40,11],[-31,28],[-36,16],[-21,32],[-45,68],[-20,28],[0,39],[23,57],[19,45],[-6,39],[-30,46],[-1,38],[5,33],[30,37],[8,45],[-10,49],[-28,39],[-33,49],[-17,31],[-21,8],[-27,39],[-24,50],[-44,31],[-42,-2],[-59,-3],[-47,85]],[[310591,492301],[41,134],[28,352],[17,148],[54,119],[56,68],[84,55],[304,85],[110,89],[56,68],[26,85],[19,162],[-19,165],[-40,238],[-62,174],[-47,153],[-3,165],[-10,191],[-32,264],[-56,540],[-26,239],[0,275],[8,198],[31,170],[54,157],[53,89],[76,95],[71,100],[64,72],[57,5],[76,8],[70,64],[45,55],[62,51],[165,13],[184,17],[304,-51],[247,-60],[230,-96],[162,-23],[115,30],[101,34],[245,102],[121,98],[76,97],[104,166],[99,157],[84,148],[90,204],[87,200],[68,161],[56,189],[42,210],[23,208],[34,276],[31,225],[33,183],[71,110],[62,42],[90,43],[199,64],[780,441],[310,98],[222,46],[121,0],[73,-17],[79,-68],[143,-199],[116,-132],[104,-68],[50,-4],[51,-5],[104,0],[113,-50],[80,-108],[83,-100],[126,-63],[96,-18],[124,-72],[127,-170],[124,-46],[140,25],[99,51],[90,8],[112,-42],[79,-47],[82,-85],[5,-135],[51,-56],[87,-29],[93,-39],[102,-144],[50,-178],[14,-204],[-8,-199],[-14,-174],[-45,-115],[-59,-68],[-71,-27],[-64,-20],[-31,-80],[28,-85],[48,-106],[92,-77],[105,34],[87,-27],[53,-28],[136,-87],[179,-91],[186,-77],[155,-131],[85,-121],[106,-126],[113,-76],[349,-191],[129,-102],[118,-123],[62,-170],[110,-314],[73,-123],[82,-93],[70,-47],[87,-4],[110,38],[245,161],[248,149],[205,136],[65,93],[51,127],[84,132],[127,89],[123,81],[116,38],[104,-26],[84,-67],[102,-102],[64,-94],[34,-123],[0,-157],[-14,-136],[-48,-76],[-98,-43],[-127,-59],[-96,-43],[-95,-67],[-76,-102],[-48,-106],[-17,-111],[23,-144],[78,-268],[186,-721],[25,-247],[26,-237],[33,-225],[20,-117],[67,-155],[77,-102],[73,-68],[112,-51],[79,-8],[59,55],[48,111],[13,114],[18,42],[62,81],[135,77],[206,38],[171,12],[132,77],[296,259],[96,38],[90,-21],[70,-60],[45,-55],[82,-17],[92,-8],[96,17],[118,89],[79,68],[48,148],[-11,107],[-57,198],[-59,307],[-8,259],[14,233],[51,255],[107,310],[90,454],[67,225],[40,365],[-23,267],[-70,149],[-68,102],[-45,76],[-17,145],[12,144],[45,110],[47,94],[79,110],[101,191],[110,145],[93,80],[124,30],[93,-21],[73,-43],[70,-114],[31,-141],[26,-254],[16,-123],[60,-47],[42,-55],[56,-47],[138,11],[235,-27],[137,-5],[94,52],[111,-22],[101,-68],[96,-68],[110,-5],[92,47],[65,98],[37,153],[34,220],[84,264],[107,314],[79,199],[121,242],[138,174],[185,289],[79,195],[45,166],[62,144],[84,119],[68,153],[48,157],[36,178],[3,157],[-34,123],[-42,157],[-39,107],[-17,209],[-8,211],[-40,365],[-65,272],[-45,199],[-19,170],[33,117],[96,155],[65,29],[90,26],[67,-21],[62,-64],[57,-94],[45,-101],[115,-157],[96,-141],[118,-106],[107,-55],[112,-25],[93,-17],[102,76],[87,98],[87,114],[93,200],[45,229],[3,187],[31,233],[76,242],[53,140],[87,162],[127,114],[76,54],[27,13],[77,35],[149,-12],[107,-30],[149,-34],[90,21],[93,64],[113,106],[104,102],[62,55],[76,81],[67,72],[51,85],[23,131],[39,548],[17,131],[42,98],[53,110],[68,56],[82,12],[93,-21],[73,-85],[78,-233],[27,-198],[27,-138],[82,-172],[76,-273],[25,-183],[56,-339],[31,-302],[9,-195],[-28,-139],[-51,-146],[-31,-263],[-178,-1371],[-28,-297],[-14,-242],[9,-221],[5,-182],[61,-581],[21,-294],[-17,-314],[3,-191],[3,-161],[22,-111],[31,-123],[37,-144],[-12,-166],[-22,-161],[14,-178],[14,-94],[45,-51],[73,-21],[120,43],[356,220],[65,26],[56,8],[67,-76],[845,-1142],[73,-157],[35,-140],[46,-149],[90,-170],[91,-127],[87,-119],[70,-93],[28,-162],[37,-161],[53,-182],[79,-166],[68,-89],[90,-55],[73,-30],[90,-13],[82,17],[73,55],[84,94],[76,127],[51,94],[59,72],[84,34],[99,0],[79,-64],[101,-13],[159,76],[80,52],[62,25],[68,-13],[70,-59],[35,-36],[35,-36],[59,-89],[57,-119],[76,-174],[87,-204],[65,-263],[123,-437],[29,-225],[30,-463],[40,-200],[53,-161],[59,-327],[21,-154],[-1,-139],[-25,-267],[-28,-246],[-14,-238],[8,-191],[39,-187],[88,-132],[121,-85],[138,-29],[168,8],[169,30],[157,6],[57,2],[140,4],[37,1],[135,17],[136,85],[70,68],[59,93],[11,102],[-14,123],[-36,178],[-74,200],[-28,144],[0,166],[48,169],[45,170],[79,157],[96,119],[123,55],[181,81],[137,115],[141,110],[110,34],[101,17],[110,-4],[90,8],[87,17],[141,111],[231,241],[126,94],[164,91],[222,84],[164,48],[36,11],[110,-18],[95,-8],[87,4],[90,13],[65,30],[62,46],[45,81],[24,123],[27,195],[67,153],[62,85],[65,38],[59,13],[82,-17],[59,-42],[53,-60],[68,-85],[132,-82],[115,-7],[76,21],[73,13],[71,21],[67,13],[71,51],[67,38],[68,9],[84,0],[85,-34],[76,-22],[84,5],[99,-9],[90,13],[115,47],[160,72],[127,76],[115,68],[135,77],[99,63],[90,43],[106,127],[111,174],[109,174],[133,234],[15,31],[61,121],[54,56],[81,89],[79,72],[92,19],[107,6],[88,9],[194,187],[267,154],[166,109],[138,4],[101,-30],[110,34],[169,90],[155,93],[143,144],[138,106],[73,102],[96,106],[90,64],[73,-34],[99,-59],[67,-17],[65,-13],[67,-30],[79,21],[62,30],[76,64],[59,98],[28,152],[40,123],[64,56],[71,51],[90,25],[56,21],[45,55],[56,17],[54,102],[7,111],[-37,79],[-12,65],[25,81],[84,119],[54,161],[87,153],[149,186],[93,153],[48,136],[23,94],[-9,186],[-21,267],[18,222],[20,152],[0,179],[0,203],[14,162],[42,148],[338,510],[45,110],[48,110],[50,111],[85,55],[79,4],[121,17],[112,-4],[90,0],[113,25],[73,26],[113,59],[98,56],[101,76],[68,86],[82,63],[76,67],[104,51],[112,60],[116,34],[67,13],[73,-30],[76,-51],[91,-109],[205,-180],[104,-114],[98,-51],[88,-17],[76,-56],[56,-67],[39,-22],[51,-42],[62,-38],[73,-34],[79,-64],[65,-59],[53,-107],[25,-55],[12,-195],[-14,-144],[-15,-119],[40,-145],[110,-165],[47,-123],[29,-132],[59,-93],[59,-55],[62,-94],[84,-170],[59,-135],[14,-102],[-39,-123],[-68,-136],[-18,-58],[13,-129],[48,-85],[19,-38],[45,-89],[54,-115],[17,-157],[22,-157],[20,-187],[-17,-165],[-14,-145],[-28,-127],[-57,-85],[-61,-89],[-93,-43],[-107,-8],[-56,-20],[-62,-129],[-86,-196],[-47,-149],[-5,-128],[31,-91],[92,-145],[116,-118],[177,-208],[177,-197],[172,-74],[166,11],[209,73],[160,85],[157,17],[155,-5],[124,-25],[110,98],[126,110],[133,115],[157,97],[132,55],[105,13],[76,-47],[48,-44],[429,-393],[128,-55],[107,38],[112,85],[121,81],[84,63],[101,25],[93,18],[130,-48],[101,-37],[138,-9],[161,51],[343,200],[166,40],[288,48],[213,61],[110,67],[118,60],[129,13],[175,-115],[138,-4],[131,77],[165,81],[75,67],[152,174],[118,157],[127,161],[427,340],[223,225],[127,127],[90,81],[73,42],[87,26],[110,-13],[90,-119],[329,-301],[138,-72],[118,-47],[141,-51],[146,-47],[175,-8],[174,51],[116,0],[107,-115],[104,-115],[118,-63],[129,-13],[149,-17],[240,-76],[133,-85],[58,-123],[124,-51],[129,-81],[133,-17],[213,42],[88,51],[132,17],[129,26],[147,55],[298,225],[82,89],[98,81],[599,225],[150,136],[129,131],[107,123],[312,765],[99,110],[90,55],[84,48],[116,84],[304,119],[126,29],[118,-17],[281,-130],[211,-104],[108,-33],[118,51],[121,102],[104,114],[87,140],[43,183],[-5,212],[10,174],[9,234],[33,165],[57,157],[101,85],[70,21],[113,56],[115,85],[279,326],[115,98],[124,17],[149,-13],[196,-23],[18,-2],[9,-2],[149,-28],[101,13],[152,97],[321,208],[14,11],[299,240]],[[781433,365318],[-933,-935],[-646,-657],[-497,-566],[-418,-566],[-144,-191],[-13,-204],[-131,-223],[-83,-27],[-39,73],[13,92],[-131,39],[-113,-26],[-127,-79],[-200,-224],[-532,-651],[-702,-914],[-607,-737],[-593,-974],[-759,-1324],[-21,-37],[-1936,-2789],[-58,-91],[-348,-549],[-54,-83],[-38,-60],[-25,-66],[-88,-222],[-105,-265],[-130,-506],[-61,-435],[-9,-407],[57,-454],[209,-612],[78,-184],[-349,-211],[-178,-59],[-92,-112],[-218,-204],[-218,-138],[-244,-704],[-249,-901],[-100,-480],[-70,-546],[-35,-296],[83,-198],[133,-63],[-98,-134],[-100,7],[-83,-66],[-26,-99],[48,-118],[-57,-138],[-70,-145],[-74,-86],[-13,-151],[83,-164],[113,-224],[53,-105],[30,-112],[113,-86],[144,27],[-114,-447],[-86,111],[-140,-39],[-35,-165],[-13,-171],[-213,-105],[-88,-224],[-30,-361],[0,-408],[-48,-237],[26,-158],[318,-276],[-43,-257],[-83,33],[-196,171],[-179,66],[-87,-86],[-105,-98],[-109,-119],[74,-243],[5,-250],[-102,-243],[-212,243],[-9,217],[-175,138],[-196,-20],[-357,-282],[-314,-277],[-293,-348],[-126,-508],[-379,113],[-157,-132],[-131,-447],[50,-202],[194,-337],[-148,-185],[-253,145],[-210,92],[-218,-171],[-235,-302],[-157,-356],[24,-189],[203,-297],[17,-158],[-192,-132],[-375,-53],[-288,27],[-270,-79],[-227,-26],[-326,-74],[-5,284],[-122,158],[-175,118],[-287,-26],[69,211],[-136,238],[-213,72],[-235,7],[-257,-46],[-257,-99],[-196,-138],[-323,-263],[-453,-506],[-57,-80],[-505,-702],[-561,-884],[-51,-80],[-76,-120],[-84,-152],[-33,-60],[-695,-1260],[-276,-499],[-580,-1052],[-81,-151],[-314,-589],[-129,-242],[-319,-597],[-660,-1240],[-608,-1188],[-155,-345],[-272,-609],[-26,-57],[-109,-246],[-70,-161],[-285,-659],[-86,-199],[-148,-362],[-9,-39],[-116,-495],[-6,-25],[-33,-102],[-46,-142],[-21,-98],[47,-119],[-95,-33],[-87,-190],[-60,-138],[-30,-69],[-15,-37],[-109,-302],[-66,-201],[-80,-247],[-72,-223],[9,-171],[143,-316],[-231,-13],[-253,-145],[-79,-193],[-47,-116],[144,-138],[-153,-132],[57,-224],[-61,-85],[-118,-20],[-122,-164],[-62,-194],[-153,-171],[-68,-76],[-201,171],[-166,105],[-122,-223],[-244,-224],[-15,-17],[-238,-286],[-353,-677],[-546,-1042],[-47,-280],[-96,-178],[-127,112],[-56,-36],[-192,23],[-393,131],[-7,20],[-41,105],[-17,92],[-70,66],[-257,0],[-48,-79],[-87,20],[-9,105],[113,513],[114,224],[-11,46],[-33,138],[-141,238],[-12,19],[-78,151],[-81,69],[-19,16],[-122,61],[-92,45],[-133,42],[-133,43],[-279,53],[-153,177],[5,310],[113,223],[126,53],[-5,29],[-27,129],[-90,174],[-126,125],[-87,56],[-81,53],[-196,52],[-166,2],[-148,2],[-115,-24],[-169,-36],[-116,-33],[-121,-36],[-260,-134],[-46,-24],[-390,-144],[-227,-135],[-239,-237],[-308,-164],[-8,-7],[-143,-110],[-189,-147],[-214,-194],[-205,-164],[-8,-6],[-6,-4],[-86,-60],[-28,-19],[-44,-59],[-39,20],[-76,26],[28,56],[28,115],[62,27],[6,49],[-26,49],[-35,62],[-37,30],[-68,20],[-91,-10],[-70,0],[-72,-36],[-79,-50],[-130,-134],[-212,-224],[-72,-76],[-401,-477],[-665,-937],[-582,-959],[-103,-169],[-143,-278],[-339,-660],[-351,-819],[-562,-1282],[-39,-89],[-176,-494],[-343,-964],[-105,-295],[-204,-637],[-206,-646],[-219,-745],[-184,-627],[-22,-79],[-131,-493],[-236,-889]],[[763084,577872],[1207,-2493],[167,-420],[136,-308],[119,-311],[-61,-241],[-151,-307],[-192,-336],[-142,-252],[-219,-243],[-187,-254],[-165,-280],[-138,-368],[-55,-135],[11,-239],[266,-605],[161,-102],[378,-66],[746,11],[191,-51],[333,-172],[608,-411],[388,-224],[351,-34],[384,-35],[132,-120],[132,-156],[315,-136],[366,44],[461,64],[164,-128],[241,-87],[217,183],[259,40],[223,-96],[219,-171],[196,22],[429,45],[141,-63],[103,-32],[243,203],[390,-20],[65,-23],[93,-33],[210,12],[196,-75],[225,-136],[176,-154],[335,-102],[307,88],[127,-12],[127,-148],[66,-299],[56,-141],[66,-59],[129,42],[101,102],[162,148],[127,95],[95,-79],[156,-16],[233,-36],[175,20],[223,-76],[105,-48],[376,-176],[212,-48],[297,4],[193,96],[143,4],[95,108],[191,52],[50,-36],[151,-38],[228,38],[82,60],[140,123],[167,8],[263,207],[460,365],[127,-164],[109,23],[140,-63],[106,92],[85,72],[113,263],[143,164],[252,208],[235,112],[265,135],[137,120],[168,65],[151,91],[114,72],[60,80],[75,20],[74,-48],[341,0],[101,96],[339,291],[152,14],[57,34],[164,120],[193,72],[157,144],[137,16],[64,123],[71,96],[98,-56],[101,52],[95,-24],[392,-227],[99,-35],[49,-53],[133,-36],[182,-72],[67,-80],[63,-76],[96,36],[120,71],[149,205],[22,120],[26,127],[58,72],[90,12],[77,-40],[72,-84],[69,-36],[55,84],[64,116],[74,80],[212,148],[161,80],[122,0],[124,16],[99,91],[126,36],[167,-4],[419,104],[198,-8],[162,132],[198,116],[145,33],[37,9],[99,64],[54,-1],[70,-49],[16,-188],[-36,-141],[-17,-250],[-10,-148],[52,-54],[159,-98],[236,-148],[215,-147],[355,-100],[788,-452],[313,8],[153,-35],[74,-76],[-2,-100],[-85,-164],[-151,-140],[-108,-48],[-104,96],[-63,104],[-82,-24],[-125,-122],[-63,-98],[-6,-96],[45,-55],[83,24],[63,4],[48,-52],[8,-124],[-59,-52],[-100,72],[-66,20],[-96,24],[-55,-56],[0,-148],[37,-140],[82,-48],[55,16],[32,72],[53,24],[117,-124],[0,-96],[-40,-131],[-16,-92],[32,-80],[70,-24],[73,8],[45,-48],[8,-148],[5,-140],[-26,-64],[-183,-3],[-42,-56],[34,-88],[58,-56],[188,64],[77,88],[95,40],[64,-52],[3,-132],[-45,-76],[-75,-32],[-58,-32],[-55,-128],[-67,-36],[8,-92],[80,-28],[61,0],[42,-16],[34,-63],[56,39],[3,100],[-6,96],[14,108],[77,6],[107,-105],[64,-145],[59,-8],[5,76],[11,72],[53,76],[42,71],[71,-15],[43,-44],[13,-160],[48,-52],[45,8],[26,-44],[-5,-67],[-19,-80],[35,-68],[74,4],[40,76],[-30,68],[-10,79],[18,80],[80,92],[-3,112],[64,16],[34,-44],[32,-56],[45,20],[-3,76],[-58,64],[-66,16],[-66,40],[8,84],[58,0],[50,-44],[56,-68],[103,16],[72,76],[55,131],[87,8],[117,56],[45,-135],[175,-208],[103,-68],[183,72],[98,-36],[71,-76],[-24,-132],[-98,-179],[-50,-84],[27,-84],[169,-108],[87,28],[29,120],[64,116],[93,-204],[-22,-132],[59,-76],[188,140],[84,200],[42,15],[29,-63],[-2,-224],[82,-160],[233,-159],[209,-33],[40,-51],[69,-12],[58,52],[117,151],[82,-36],[58,56],[-10,56],[12,56],[70,12],[95,100],[42,-32],[11,-152],[16,-112],[50,-39],[87,47],[136,16],[153,36],[122,-88],[106,-79],[111,20],[71,55],[35,64],[77,64],[63,-20],[88,52],[60,-52],[80,-24],[315,-243],[119,68],[133,111],[66,32],[74,-8],[206,-71],[64,27],[82,-27],[82,59],[85,108],[71,68],[61,0],[43,-88],[52,8],[14,72],[-11,60],[-66,124],[-13,60],[58,0],[85,-120],[45,-92],[76,-116],[88,-72],[95,-16],[66,76],[48,124],[58,132],[109,80],[228,20],[84,140],[90,24],[69,-48],[8,-84],[172,-68],[109,16],[98,-76],[84,-16],[40,-56],[64,-24],[37,68],[8,80],[47,44],[51,-28],[45,28],[55,64],[48,-36],[48,-156],[37,-72],[280,-132],[117,32],[159,72],[169,0],[143,44],[257,216],[111,44],[45,-40],[132,-176],[151,-40],[19,-80],[53,-16],[50,56],[32,136],[-32,56],[-45,68],[50,40],[125,8],[37,-56],[-13,-96],[-3,-104],[58,-16],[40,60],[89,159],[231,125],[125,36],[55,-112],[83,-80],[23,-64],[43,-24],[111,72],[156,-16],[135,-80],[61,-44],[74,-32],[51,84],[10,72],[3,108],[42,39],[93,-27],[80,-50],[39,-34],[-8,-76],[-85,-8],[-74,-64],[-58,-76],[0,-84],[146,-156],[103,0],[39,84],[80,192],[82,240],[79,84],[51,-40],[-3,-108],[0,-84],[32,-108],[55,-48],[45,36],[14,100],[34,60],[162,136],[137,155],[159,28],[45,-187],[35,-104],[71,-100],[64,60],[169,200],[72,-12],[50,-23],[45,23],[8,99],[37,160],[13,132],[74,92],[82,24],[48,-76],[-5,-156],[16,-104],[79,-8],[71,83],[51,33],[53,-84],[71,4],[-13,76],[21,92],[72,-48],[29,-84],[16,-116],[-3,-207],[94,-154],[54,-66],[90,-28],[88,40],[79,92],[32,88],[48,32],[29,-64],[8,-80],[2,-112],[59,-76],[76,48],[183,152],[72,208],[119,68],[57,21],[-2,82],[-26,68],[32,40],[113,-8],[30,-60],[26,-135],[61,43],[66,-20],[11,-75],[58,-56],[114,4],[32,-44],[82,-172],[53,-136],[95,0],[63,80],[75,92],[103,132],[116,-64],[159,16],[115,138],[211,653],[-19,139],[67,44],[66,-40],[47,-71],[75,43],[71,20],[77,-24],[0,-83],[-45,-48],[-40,-52],[8,-76],[40,-52],[71,-12],[72,-36],[63,-144],[135,16],[37,-68],[-16,-52],[-31,-80],[29,-55],[45,0],[92,-40],[-5,-80],[85,-56],[66,12],[106,140],[45,32],[24,-88],[13,-124],[24,-108],[56,0],[45,84],[52,44],[19,-88],[13,-92],[45,-116],[48,-64],[85,4],[68,68],[91,4],[42,-32],[24,-52],[69,-87],[100,63],[48,-87],[100,-152],[135,-48],[83,-60],[23,-140],[-10,-128],[10,-104],[29,-87],[-37,-92],[85,-92],[64,44],[127,156],[114,79],[137,32],[138,-28],[135,0],[188,28],[228,16],[119,-99],[82,-56],[26,-56],[-23,-64],[-69,-36],[-56,44],[-40,64],[-82,48],[-68,-4],[-30,-44],[14,-52],[23,-28],[-7,-60],[-40,-24],[-72,16],[-47,-16],[-35,-64],[-172,-435],[-32,-72],[-45,-4],[-37,52],[-34,40],[-50,-16],[-43,-52],[-58,-124],[-5,-204],[16,-156],[21,-115],[26,-72],[69,8],[48,-16],[55,-52],[8,-108],[-47,-148],[-104,-263],[-42,-192],[-11,-196],[51,-427],[-45,-268],[-37,-56],[-59,-24],[-214,-48],[-331,-147],[-48,-28],[-29,-40],[16,-56],[32,-20],[42,20],[45,28],[53,-20],[8,-80],[-26,-116],[-11,-112],[-8,-227],[-13,-160],[21,-80],[77,-76],[111,-32],[66,-12],[45,20],[45,-20],[11,-56],[-32,-44],[-40,-40],[6,-76],[58,-111],[2,-116],[-34,-120],[-85,-92],[-185,-116],[-124,-191],[-59,-8],[-61,40],[-29,83],[-47,16],[-24,-64],[29,-95],[13,-128],[-29,-92],[-66,-172],[-82,-212],[-130,-147],[-85,-168],[-193,-387],[-148,-316],[-111,-220],[-22,-108],[19,-103],[26,-368],[244,-1082],[156,-635],[40,-316],[21,-347],[-40,-432],[-39,-331],[-29,-196],[15,-228],[72,-243],[53,-212],[8,-255],[-32,-240],[-74,-324],[-238,-1230],[-75,-335],[-42,-244],[-40,-208],[-53,-207],[-84,-180],[-80,-176],[-95,-152],[-135,-195],[-156,-236],[-59,-84],[-63,-168],[-48,-327],[-84,-703],[-67,-427],[-18,-96],[-5,-116],[-19,-64],[-77,-619],[-116,-811],[-77,-655],[-45,-200],[-11,-131],[-10,-132],[63,-184],[130,-359],[101,-344],[153,-459],[238,-820],[151,-430],[755,-2405],[244,-735],[92,-359],[3,-164],[-53,-168],[-291,-315],[-498,-683],[-175,-172],[-423,-328],[-77,-79],[-77,-168],[-111,-240],[-93,-275],[-34,-188],[13,-172],[267,-1665],[138,-1031],[82,-607],[111,-395],[233,-751],[125,-448],[24,-127],[-117,-919],[-34,-164],[-202,-471],[-373,-835],[-209,-447],[-269,-606],[-94,-49],[-116,-232],[-8,-160],[-61,-155],[-72,-148],[-100,-100],[-318,-208],[-151,-32],[-222,-179],[-127,-96],[-575,-356],[-115,-72],[-115,-72],[-72,-26],[-61,-53],[-64,-52],[-10,-8],[-130,-76],[-68,-120],[-53,-184],[-98,-251],[-80,-364],[-53,-228],[-47,-183],[-40,-100],[-74,-124],[-72,-80],[3,-88],[-50,-108],[-21,-95],[-53,-100],[-64,-84],[-58,-8],[-13,-88],[31,-88],[19,-92],[-66,-148],[-27,-123],[45,-104],[-5,-156],[-58,-156],[-64,-139],[-108,27],[-93,60],[-106,-52],[-95,64],[5,136],[-127,24],[-29,108],[-78,-8],[-92,-132],[-47,-16],[-72,-52],[-85,12],[-50,60],[-93,-12],[-66,-148],[-127,-123],[-130,-16],[-169,-164],[-48,-120],[40,-160],[45,-140],[50,-183],[-23,-192],[-83,-200],[-188,-263],[-166,-140],[-106,-140],[-61,-24],[-117,-92],[-82,-112],[-63,-131],[-130,-132],[-140,-84],[-161,-60],[-154,40],[-75,92],[-53,216],[-39,111],[-58,68],[-69,64],[-80,24],[-69,-56],[-58,-144],[-63,-103],[-72,0],[-206,-132],[-35,-76],[-10,-92],[-8,-96],[-35,-80],[-2,-100],[29,-87],[-19,-120],[-53,0],[-47,-4],[-17,-108],[-39,-68],[-27,-88],[7,-145],[-62,-89],[-84,-166],[-353,-353],[-90,-38],[-212,-223],[-169,28],[-141,-164],[-230,48],[-79,-12],[-24,-48],[37,-68],[-77,-36],[-87,52],[-93,-32],[-56,-120],[-68,-44],[-64,12],[-50,-160],[-111,-55],[-47,-73],[-120,-175],[-167,-172],[-183,-112],[-140,-235],[-111,-88],[-122,-100],[-13,-88],[29,-128],[53,-104],[74,-91],[50,-144],[-2,-96],[-6,-108],[11,-56],[-8,-68],[-74,-92],[-186,-119],[-66,-116],[-55,-128],[-405,2225],[-69,-204],[-125,-180],[-47,-112],[-125,-56],[-209,-67],[-498,-112],[-519,-380],[-188,-263],[-66,-40],[-185,16],[-96,-64],[-105,-68],[-167,-228],[-35,-116],[-10,-131],[69,-252],[45,-240],[172,-403],[29,-212],[69,-160],[58,-151],[-45,-152],[-8,-188],[32,-128],[114,-223],[214,-172],[148,-224],[59,-88],[66,-91],[55,-20],[104,-12],[164,-28],[122,-52],[124,-96],[162,-184],[95,-299],[8,-132],[-6,-148],[51,-104],[130,-188],[84,-63],[151,-208],[117,-148],[108,-236],[80,-199],[53,-248],[-16,-256],[76,-243],[64,-252],[40,-303],[-125,-244],[8,-84],[-26,-32],[-29,4],[-29,-72],[-43,4],[-47,-8],[-45,-64],[-35,-52],[-32,-287],[51,-92],[47,-68],[-16,-152],[19,-60],[21,-211],[19,-372],[39,-112],[24,-23],[29,-56],[-8,-44],[27,-28],[-21,-36],[34,-52],[-8,-81],[-333,-299],[-98,-127],[-104,-60],[-119,-92],[-61,-136],[-39,-132],[13,-168],[-43,-95],[19,-76],[85,0],[87,-16],[37,-32],[58,-8],[109,-152],[58,-48],[45,-24],[48,16],[61,-36],[34,-144],[45,-32],[16,-60],[-18,-135],[0,-80],[60,-60],[85,-32],[66,60],[64,-28],[193,-44],[37,-44],[85,-323],[-5,-256],[58,-156],[93,-88],[235,-335],[109,-184],[24,-96],[143,-172],[-48,-187],[63,-168],[-10,-176],[-50,-120],[-133,-203],[-71,-288],[-66,-335],[-159,-667],[-93,-64],[-127,-276],[3,-104],[-38,-72],[48,-391],[8,-152],[-156,-507],[103,-196],[11,-152],[164,-191],[140,-60],[117,52],[82,-28],[50,-100],[42,-168],[75,-60],[153,20],[154,-231],[55,-160],[106,-144],[67,-29],[79,73],[74,-184],[61,36],[74,32],[34,-73],[48,-83],[21,-195],[65,-170],[55,-21],[32,-45],[-7,-118],[-18,-118],[36,-55],[90,-448],[51,-161],[50,-161],[12,-101],[-78,-319],[-81,-298],[-16,-201],[74,-181],[110,-114],[12,-115],[0,-100],[-49,-42],[-11,-73],[62,-34],[50,-122],[12,-142],[21,-125],[121,-194],[23,-198],[-29,-55],[0,-240],[-65,-107],[-80,-240],[-115,-294],[-9,-146],[-28,-177],[11,-281],[42,-38],[110,-222],[85,-208],[311,-649],[122,-170],[112,-62],[62,-73],[81,-142],[60,-108],[29,-87]],[[745009,495658],[-7268,5696],[-5,3],[-10,9],[-2284,1792],[-256,6],[-466,75],[-11099,-670],[-798,-48],[-937,-57],[-11,4],[-2,1],[-10,3],[-20,8],[-21,8],[-33,12],[-21,8],[-4,1],[-257,96],[-327,121],[-135,50],[-11,4],[-3234,1199],[-2,0],[-5,2],[-8860,3284],[78,295],[43,323],[128,426],[34,437],[85,333],[107,258],[4,496],[101,410],[91,566],[178,541],[41,312],[192,812],[-50,360],[-382,730],[-396,227],[-352,27],[-361,-53],[-333,-132],[-260,37],[-601,-154],[-317,93],[-278,18],[-260,-42],[-431,-152],[-338,-9],[-433,-77],[-559,-9],[-542,160],[-320,150],[-304,35],[-232,-178],[-290,-158],[-531,-449],[-537,10],[-323,-48],[-467,-316],[-334,-88],[-327,98],[-632,304],[-105,502],[-170,818],[0,2],[-2,10],[9,17],[168,309],[199,452],[6,14],[89,204],[37,84],[8,17],[8,13],[144,240],[145,239]],[[700361,515779],[345,436],[375,472],[426,393],[210,375],[65,344],[-213,417],[-189,544],[84,711],[-65,540],[-211,373],[-197,603],[119,526],[367,939],[467,54],[588,679],[410,756],[218,292],[241,73],[242,-28],[179,50],[178,49],[101,78],[96,352],[37,272],[56,137],[85,169],[204,278],[628,984],[60,446],[31,256],[42,337],[-24,382],[-145,410],[-79,246],[103,264],[204,240],[267,553],[105,20],[76,135],[60,300],[67,219],[36,401],[-48,319],[66,200],[248,447],[175,200],[127,-36],[66,-383],[121,-37],[123,155],[378,201],[139,209],[227,433],[311,342],[308,182],[851,-109],[214,-70],[312,-195],[78,82],[163,310],[103,401],[122,471],[198,294],[78,447],[109,273],[-12,355],[-103,237],[-362,437],[-145,337],[-109,492],[-145,137],[-166,21],[-511,-8],[-106,152],[-78,252],[-7,262],[77,177],[332,316],[321,386],[36,109],[36,110],[-85,255],[-198,333],[-31,195],[36,337],[212,875],[-115,73],[-169,37],[-43,208],[-24,292],[-38,163],[2,211],[205,218],[49,410],[199,191],[260,-18],[242,-93],[446,139],[328,-5],[189,-14],[564,-36],[79,-155],[169,-537],[177,-904],[294,-417],[97,-171],[132,-39],[97,46],[97,146],[78,218],[109,246],[259,547],[248,592],[519,820],[248,556],[-79,273],[121,428],[30,219],[79,428],[-115,246],[-211,146],[-205,-128],[-73,-446],[-199,-356],[-363,-346],[-163,28],[-250,141],[-317,733],[-31,210],[26,326],[-38,339],[-145,382],[-144,-45],[-157,-164],[-115,109],[-175,246],[-207,110],[-113,227],[0,246],[-192,382],[-2,183],[115,118],[290,228],[109,173],[138,402],[321,363],[-67,593],[36,136],[248,456],[30,273],[-84,100],[-151,55],[-326,-82],[-453,-228],[-375,110],[-435,-209],[-96,127],[21,121],[18,98],[263,263],[157,55],[72,155],[6,237],[-60,228],[-151,72],[-220,-62],[-118,72],[-151,81],[-169,164],[-127,301],[-193,483],[-399,893],[-70,189],[94,321],[218,264],[308,210],[519,282],[272,-9],[235,9],[193,-46],[85,-437],[36,-200],[127,-556],[-6,-182],[91,-191],[150,-62],[516,-211],[288,-101],[96,-146],[-126,-528],[5,-261],[56,-165],[295,-184],[362,-246],[220,-363],[162,-211],[210,-183],[42,-136],[-84,-182],[54,-137],[260,82],[320,36],[302,-182],[229,-97],[49,-21],[302,73],[217,127],[217,-82],[188,164],[78,228],[-163,155],[-66,182],[-182,255],[-163,319],[-175,455],[73,265],[296,246],[12,209],[-6,419],[278,465],[158,482],[204,283],[181,383],[-36,364],[-76,434],[88,304],[-61,100],[-229,9],[-97,119],[6,209],[260,337],[187,347],[-66,209],[-199,100],[-206,119],[-151,155],[-96,191],[-139,164],[-73,246],[43,209],[84,265],[145,82],[429,72],[82,72],[75,65],[127,64],[108,-128],[471,-73],[477,-346],[206,-382],[24,-210],[-181,-255],[59,-197],[104,-177],[121,0],[205,216],[199,149],[181,-173],[103,-264],[151,-128],[107,-74],[225,10],[206,246],[380,665],[217,365],[290,555],[236,529],[157,765],[99,370],[179,122],[392,346],[139,192],[74,267],[95,197],[151,383],[308,628],[184,541],[82,361],[338,875],[133,373],[14,23],[693,1071],[132,328],[91,382],[-42,310],[223,519],[224,419],[131,394],[140,180],[115,-18],[30,-118],[181,91],[275,304],[497,128],[400,330],[477,240],[127,346],[-54,619],[223,574],[187,675],[-54,154],[-133,219],[-14,201],[307,500],[86,110],[126,237],[18,110],[13,199],[-34,174],[5,174],[57,202],[121,148],[78,128],[10,279],[73,153],[689,1479],[181,342],[162,300],[50,138],[113,136],[39,8],[39,9],[135,-141],[405,-233],[180,68],[77,199],[0,180],[-55,192],[-1,192],[78,362],[14,193],[-70,156],[-120,62],[-542,-204],[-165,56],[-50,183],[176,681],[170,400],[398,266],[236,288],[225,102],[444,25],[360,255],[39,229],[-317,772],[1,202],[84,183],[108,151],[706,473],[24,31],[187,254],[26,40],[26,41],[207,321],[146,441],[28,101],[67,238],[122,277],[249,172],[167,78],[131,92],[248,483],[106,43],[528,15],[273,64],[188,48],[105,183],[-19,342],[-17,609],[91,221],[148,271],[289,472],[168,377],[28,129],[-35,83],[-244,64],[-147,18],[-250,130],[-324,78],[-78,155],[7,185],[98,171],[268,288],[150,95],[118,193],[308,478],[90,307],[218,394],[430,666],[62,289],[110,265],[164,147],[117,330],[82,194],[148,342],[102,206],[129,336],[105,100],[113,0],[317,-94],[70,53],[72,240],[105,373],[142,226],[83,92],[231,106],[164,135],[265,136],[219,224],[78,389],[144,547],[184,419],[238,229],[215,6],[75,74],[76,74],[114,125],[399,858],[168,277],[160,242],[297,589],[246,406],[199,254],[347,271],[192,306],[172,77],[215,80],[164,206],[36,444],[-54,91],[-123,410],[3,54],[9,140],[51,64],[60,75],[157,172],[168,64],[313,-17]],[[742394,600907],[219,-190],[1,-808],[-44,-408],[29,-194],[-22,-852],[23,-670],[84,-483],[133,-472],[81,-856],[125,-183],[93,-236],[154,-198],[50,-194],[76,-671],[142,-921],[-19,-223],[26,-427],[94,-488],[77,-217],[49,-609],[205,-415],[155,-556],[382,-597],[107,-104],[196,-552],[122,-174],[318,-351],[140,-87],[425,254],[218,-7],[99,-170],[-120,-150],[-21,-244],[97,-113],[122,38],[136,-88],[-85,-155],[-121,-103],[-62,-153],[-16,-200],[97,-198],[121,-95],[79,-166],[7,-252],[-78,-366],[36,-252],[98,-163],[142,-74],[-22,-347],[177,-260],[-72,-339],[86,-164],[21,-200],[-49,-175],[-185,-358],[-27,-218],[21,-278],[64,-173],[84,-131],[22,-261],[-14,-365],[113,-651],[85,-147],[42,-183],[88,-156],[125,-380],[20,-479],[157,-328],[507,-156],[71,-164],[-48,-451],[6,-372],[84,-192],[362,-404],[92,-147],[287,-286],[384,-579],[267,-285],[440,-695],[282,-322],[233,-449],[86,-287],[323,-668],[193,-473],[225,-191],[176,-56],[171,42],[431,283],[307,270],[59,53],[432,-117],[133,-136],[100,383],[156,-6],[309,-104],[72,-183],[-124,-431],[-30,-105],[273,-116],[157,-116],[-21,-245],[-66,-184],[-19,-194],[28,-181],[155,-78],[396,-114],[324,1],[368,-59],[849,-252],[144,33],[151,125],[256,106],[140,-66],[72,-146],[136,-74],[159,-2],[290,85],[270,-28],[473,-198],[339,-266],[135,-68],[316,-13],[306,51],[353,7],[197,-43],[785,0],[474,-109],[580,-56],[127,-95],[140,11],[177,306],[122,386],[218,514],[148,192],[148,192],[222,306],[105,410],[-37,532],[-38,336],[-111,523],[12,383],[-111,579],[-74,401],[-53,235],[-195,-11],[-315,-177],[-155,-168],[-297,-262],[-316,-177],[-204,-383],[-217,103],[-148,159],[-118,214],[-68,280],[56,290],[48,60],[131,164],[211,205],[155,-65],[446,-148],[259,55],[545,308],[241,326],[328,-9],[201,-131],[195,-65]],[[667210,634931],[-69,39],[-37,24],[-48,31],[-1,4],[-16,49],[-2,6],[0,62],[10,73],[-4,59],[-41,86],[-72,120],[-77,56],[-91,32],[-90,-7],[-89,-26],[-73,-31],[-75,-66],[-136,-115],[-156,-153],[-95,-110],[-30,-34],[-22,-24],[-59,-76],[-11,-16],[-23,-11],[-17,6],[-18,16],[-19,15],[-16,48],[-3,47],[3,56],[15,34],[40,53],[90,51],[86,77],[64,93],[35,145],[15,138],[20,132],[7,60],[15,46],[20,24],[20,7],[26,1],[40,-10],[60,27],[68,44],[41,28],[37,26],[62,66],[70,88],[49,137],[55,146],[26,153],[18,254],[10,83],[13,71],[25,48],[24,34],[31,12],[205,33],[46,31],[9,18],[12,67],[-11,60],[-17,46],[-50,66],[-50,50],[-49,53],[-62,91],[-33,36],[-32,9],[-33,-14],[-75,-74],[-27,-47],[-103,-174],[-48,-11],[-44,24],[-32,32],[-18,34],[-3,38],[8,44],[5,46],[-15,53],[-11,33],[0,25],[6,29],[27,31],[25,40],[37,75],[38,38],[22,8],[48,17],[20,13],[16,28],[6,36],[-9,36],[-35,47],[-100,108],[-148,125],[-3,2],[-127,85],[-136,51],[-52,28],[-35,22],[-28,51],[-39,85],[-35,45],[-4,28],[-5,29],[12,30],[-12,37],[-40,46],[-34,30],[-61,23],[-89,9],[-34,3],[-26,12],[-16,42],[-7,43],[8,40],[55,168],[28,82],[43,46],[12,31],[-1,33],[-5,175],[17,59],[49,90],[93,108],[41,59],[12,33],[9,46],[-6,52],[-34,204],[-12,116],[-2,76],[2,51],[14,63],[121,231],[32,19],[38,6],[23,-11],[50,-47],[73,-71],[119,-95],[18,-38],[24,-6],[32,36],[26,20],[37,9],[33,6],[42,19],[47,46],[42,60],[33,33],[140,177],[16,39],[4,52],[-1,81],[5,165],[-22,214],[-8,135],[9,167],[2,92],[6,76],[115,326],[10,64],[21,23],[28,7],[27,8],[51,64],[79,118],[50,61],[38,33],[45,12],[38,-1],[36,-3],[22,-5],[9,-19],[12,-23],[24,-32],[51,64],[31,47],[20,31],[3,29],[2,18],[1,12],[-13,25],[-24,43],[-49,69],[-29,28],[-39,22],[-52,18],[-42,21],[-72,69],[-70,65],[-33,58],[-17,82],[2,42],[21,42],[40,52],[43,61],[68,102],[12,18],[7,23],[6,22],[-1,20],[-1,20],[-9,27],[-8,27],[-42,76],[-111,236],[-154,378],[-120,164],[-185,244],[-373,631],[-68,80],[-93,71],[-25,19],[-102,125],[-36,43],[-87,194],[-22,116],[86,222],[145,115],[35,72],[7,105],[-10,123],[-6,141],[44,81],[40,72],[34,61],[4,98],[-24,78],[-72,123],[2,119],[-25,65],[-64,43],[-66,-47],[-60,-138],[-38,-17],[-21,19],[-44,51],[-135,81],[-71,143],[-24,170],[-4,215],[8,157],[-100,401],[-80,238],[-128,191],[-227,197],[-169,99],[-15,9],[-115,13],[-76,-28],[-89,-36],[-59,-96],[-93,-179],[-38,0],[-25,36],[-69,5],[-99,-88],[-199,-257],[-461,-565],[-62,-103],[-8,-43],[12,-48],[8,-37],[-10,-27],[-23,-8],[-54,41],[-23,-6],[-86,-93],[-15,-16],[-133,-115],[-83,-32],[-86,-13],[-93,-1],[-54,30],[-22,78],[7,98],[188,309],[75,78],[18,98],[-19,59],[-34,7],[-43,-45],[-36,-40],[-20,-22],[-26,20],[-17,30],[-15,63],[-17,101],[-60,165],[-75,62],[-68,0],[-44,-27],[-28,-24],[-38,17],[2,56],[-1,85],[12,142],[4,117],[10,71],[-15,51],[-29,34],[-70,-2],[-80,-17],[-60,-63],[-56,-98],[-39,-41],[-31,-9],[-43,-6],[-36,23],[-49,164],[12,70],[-24,55],[-44,7],[-42,64],[15,65],[16,117],[2,109],[8,62],[8,60],[12,46],[21,44],[43,54],[9,22],[9,21],[7,38],[-7,23],[-100,226],[-76,197],[-31,124],[-35,135],[-2,83],[32,61],[75,49],[61,7],[95,-22],[377,70],[67,64],[48,2],[67,-53],[72,-102],[64,-85],[40,-26],[20,30],[8,72],[119,233],[49,308],[-14,151],[-24,136],[-82,60],[-142,41],[-200,139],[-129,250],[18,117],[-41,138],[-72,60],[-66,23],[-68,-2],[-87,34],[-104,87],[-109,49],[-183,30],[-66,6],[-36,3],[-41,21],[-64,74],[-171,279],[-112,119],[-154,169],[-323,478],[-122,107],[-21,34],[-105,238],[-28,88],[-245,383],[-68,63],[-109,149],[-14,45],[-46,98],[-90,124],[-54,69],[-21,88],[-2,95],[-32,43],[-17,56],[-28,87],[-52,94],[-26,46],[-7,14],[-34,29],[-53,39],[-45,36],[-18,20],[-28,39],[-38,54],[-61,129],[-80,77],[-50,47],[-64,41],[-47,33],[-37,14],[-54,22],[-44,17],[-4,2],[-55,43],[-69,87],[-22,55],[-5,54],[-6,40],[1,63],[-27,24],[-39,18],[-36,46],[-49,23],[-36,9],[-38,34],[-55,53],[-35,55],[-20,36],[-22,58],[-49,102],[-40,111],[-30,65],[-15,63],[-13,69],[-25,51],[-34,24],[-7,5],[-73,56],[-46,11],[-48,-27],[-40,-45],[-51,-65],[-18,-56],[-19,-37],[-22,7],[-18,-20],[-12,-71],[-43,-36],[-94,-100],[-69,-100],[-93,-258],[-59,-139],[-86,-52],[-103,-54],[-71,-87],[-9,-11],[-96,-155],[-51,-41],[-149,12],[-68,-24],[-103,-138],[-78,-105],[-56,-146],[-14,-74],[-26,-60],[-40,-47],[-44,-22],[-22,7],[-14,40],[-5,34],[-32,153],[-11,126],[-14,159],[-5,138],[3,66],[15,81],[15,43],[29,74],[24,31],[11,21],[-2,10],[-3,5],[-3,5],[-10,5],[-4,1],[-38,2],[-32,-9],[-28,-17],[-32,-38],[-30,-57],[-5,-9],[-30,-56],[-17,-71],[-19,-157],[-9,-38],[-32,-54],[-31,-104],[-20,-54],[-18,-20],[-27,-5],[-34,3],[-28,-7],[-42,-28],[-112,-120],[-123,-160],[-34,-27],[-39,-14],[-38,29],[-53,111],[-51,55],[-84,63],[-123,144],[-129,169],[-145,142],[-65,102],[-80,91],[-70,133],[-44,92],[-38,69],[-42,45],[-58,39],[-68,28],[-48,20],[-31,0],[-47,-17],[-37,-25],[-36,-3],[-32,16],[-35,28],[-50,60],[-42,73],[-37,62],[-13,43],[8,35],[35,55],[72,83],[67,57],[16,34],[-2,45],[-31,76],[-37,62],[-27,36],[-30,31],[-24,-5],[-31,-15],[-22,-35],[-115,-316],[-109,-364],[1,-37],[4,-35],[23,-38],[17,-57],[6,-71],[-4,-102],[-8,-64],[-25,-79],[-71,-117],[-196,-281],[-136,-246],[-104,-120],[-99,-110],[-52,-80],[-36,-86],[-48,-119],[-21,-24],[-36,-16],[-15,-5],[-22,2],[-132,74],[-29,16],[-48,44],[-29,41],[-9,35],[-2,85],[21,230],[-2,89],[-8,65],[-26,53],[-88,108],[-34,42],[-30,25],[-28,6],[-32,-3],[-42,13],[-22,26],[-28,52],[-67,158],[-34,69],[-68,48],[-28,36],[-29,37],[-17,101],[2,71],[42,224],[12,43],[-9,38],[-24,34],[-43,23],[-56,21],[-46,-4],[-56,-43],[-76,-72],[-53,-89],[-37,-110],[-16,-48],[-45,-85],[-66,-67],[-42,-24],[-33,-11],[-39,-21],[-46,-37],[-98,-19],[-36,-19],[-39,22],[-83,1],[-42,-23],[-15,-8],[-78,-43],[-95,-87],[-40,-56],[-64,-78],[-50,-19],[-35,36],[-39,-36],[-28,-49],[-18,-70],[-13,-99],[-18,-73],[-43,-70],[-42,-47],[-56,-40],[-50,-11],[-6,-2],[-26,-7],[-4,-1],[-4,-1],[-7,-2],[-29,-27],[-9,-41],[-2,-74],[-7,-96],[-22,-43],[-21,-42],[-14,-42],[-50,2],[-73,46],[-54,62],[-50,47],[-38,-19],[-18,-35],[9,-42],[4,-56],[0,-9],[-7,-50],[-24,-45],[-114,-60],[-28,-15],[-64,-66],[-57,-43],[-78,-19],[-56,8],[-31,-32],[-37,-59],[-40,0],[-55,60],[-57,96],[-55,118],[-7,32],[13,30],[24,9],[20,12],[39,0],[30,-36],[6,-49],[55,-21],[38,35],[5,5],[3,2],[30,28],[42,72],[20,66],[1,58],[-27,50],[-36,47],[-42,11],[-63,-21],[-45,2],[-23,24],[-27,33],[-3,4],[-5,4],[-31,20],[-25,32],[-35,11],[-37,-17],[-27,-41],[0,-61],[-6,-84],[-19,-74],[-37,-68],[-54,-40],[-43,-30],[-48,-2],[-39,-5],[-27,7],[-38,-21],[-32,25],[-28,-13],[-19,35],[-1,57],[-11,78],[-29,37],[-53,19],[-48,2],[-39,-42],[-69,-79],[-14,-55],[-32,-47],[-45,-36],[-33,-24],[-27,-49],[6,-67],[16,-54],[-4,-94],[-23,-74],[-8,-14],[-27,-50],[-33,-28],[-47,-5],[-35,18],[-51,20],[-43,25],[-54,6],[-62,-6],[-35,-21],[-24,-6],[-16,14],[-12,23],[-18,19],[-18,18],[-13,25],[-3,30],[6,89],[7,62],[-15,126],[-1,22],[17,24],[45,51],[53,57],[62,40],[10,25],[-2,38],[-14,21],[-15,27],[-19,37],[-30,37],[-22,50],[-17,36],[-8,29],[-8,29],[3,33],[3,33],[-7,46],[-15,36],[-12,24],[-16,16],[-20,-3],[-15,-17],[-13,-66],[-12,-51],[-4,-13],[-15,-71],[-5,-14],[-18,-42],[-17,-11],[-18,1],[-3,0],[-18,23],[-16,22],[-9,13],[-3,25],[-4,26],[-10,41],[-19,16],[-20,18],[-25,23],[-24,4],[-28,-14],[-26,2],[-28,0],[-26,0],[-17,-18],[-28,-38],[-44,-59],[-38,-36],[-41,-26],[-34,-24],[-37,-22],[-24,6],[-40,35],[-36,48],[-29,53],[-23,70],[-11,79],[-9,87],[6,106],[-2,85],[-8,89],[0,20],[10,17],[19,19],[78,88],[17,35],[14,24],[28,48],[6,55],[14,39],[24,29],[27,26],[25,20],[22,37],[16,47],[5,37],[-12,51],[-48,100],[-20,41],[-22,66],[-22,47],[-72,212],[-21,70],[-20,67],[-19,60],[-31,44],[-40,31],[-43,21],[-59,45],[-36,40],[-53,93],[-58,117],[-31,100],[-36,107],[-41,78],[-33,42],[-37,39],[-93,85],[-59,36],[-25,14],[-27,19],[-31,21],[-25,36],[-5,7],[-20,29],[-11,32],[2,27],[13,71],[28,72],[116,172],[35,51],[37,26],[70,42],[50,49],[22,30],[12,46],[3,37],[-14,46],[-41,81],[-38,66],[-19,51],[0,35],[13,86],[21,93],[16,94],[2,31],[-9,37],[-25,62],[-27,48],[-36,42],[-33,38],[-29,41],[-70,88],[-15,25],[-3,9],[-13,47],[-14,35],[-20,25],[-37,9],[-52,-18],[-54,11],[-33,44],[-21,59],[-7,101],[9,187],[2,263],[38,204],[16,30],[36,76],[12,60],[8,81],[17,33],[33,49],[8,42],[0,37],[-20,36],[-35,73],[-49,67],[-159,165],[-51,57],[-12,20],[-8,44],[5,92],[4,54],[-7,49],[-31,180],[-20,119],[-20,73],[-28,27],[-31,14],[-38,-18],[-21,-24],[-25,-79],[-17,-45],[-3,-6],[-28,-31],[-79,-82],[-24,-38],[-18,-39],[-11,-47],[-7,-20],[-8,-19],[-17,-20],[-41,-46],[-42,-46],[-49,-55],[-507,-564],[-221,-273],[-90,-141],[-111,-64],[-63,-12],[-49,-52],[-142,-215],[-55,-59],[-64,-98],[-31,-94],[-50,-92],[-41,-51],[-27,-10],[-27,20],[-37,77],[-28,26],[-32,2],[-34,-21],[-9,-23],[-17,-4],[-21,30],[-24,50],[-42,62],[-117,84],[-84,39],[-82,23],[-105,32],[-85,16],[-110,6],[-117,32],[-127,49],[-114,24],[-69,23],[-155,17],[-141,6],[-167,-10],[-58,-17],[-24,-27],[-36,-28],[-41,-8],[-59,6],[-46,13],[-75,50],[-21,6],[-32,-12],[-20,-13],[-25,10],[-23,6],[-30,34],[-18,21],[-29,16],[-35,10],[-32,-9],[-25,-28],[-46,-78],[-1034,2231],[-98,212],[-74,253],[4,44],[13,154],[84,198],[141,202],[532,827],[94,208],[101,329],[85,313],[160,336],[114,178],[145,127],[114,106],[138,81],[97,56],[64,5],[178,-40],[199,-56],[117,-36],[148,-45],[98,-5],[124,35],[60,91],[41,117],[10,106],[-34,154],[-74,262],[-77,355],[-34,264],[16,266],[52,185],[50,66],[104,86],[168,76],[92,25],[103,-5],[138,-5],[69,8],[80,30],[35,66],[46,88],[66,184],[7,86],[-141,204],[-591,964],[-105,145],[-94,96],[-125,51],[-117,20],[-169,-60],[-225,-200],[-215,-242],[-116,-168],[-10,-15],[-136,-194],[-155,-180],[-206,-121],[-96,-36],[-57,45],[-52,182],[-5,453],[-21,276],[-23,450],[-24,99],[-97,107],[-130,34],[-293,-58],[-274,95],[6,198],[111,398],[209,378],[225,316],[130,99],[99,103],[42,93],[132,217],[165,295],[112,149],[62,96],[46,84],[42,129],[27,147],[32,203],[8,180],[13,214],[8,167],[0,846],[0,557],[35,455],[70,406],[98,309],[113,326],[75,206],[67,193],[51,111],[117,249],[256,471],[262,416],[185,289],[275,345],[229,254],[235,192],[128,152],[128,203],[147,477],[108,395],[146,537],[64,234],[137,403],[130,277],[545,1044],[376,669],[376,716],[65,89],[218,301],[417,456],[672,598],[578,558],[740,669],[664,567],[714,711],[638,558],[494,431],[246,218],[20,37],[5,39],[-143,408],[-87,231],[-57,127],[-175,243],[-249,314],[-97,153],[-17,111],[3,71],[67,137],[79,115],[39,57],[14,28],[20,69],[-46,243],[-68,199],[-243,278],[-20,12],[-18,12],[-19,11],[-47,26],[-92,25],[-148,-6],[-34,-2],[-106,33],[-67,71],[-59,107],[-21,76],[-6,109],[21,139],[45,99],[86,150],[106,129],[121,102],[105,99],[72,88],[132,172],[60,94],[73,117],[47,58],[29,18],[30,18],[89,15],[126,-8],[127,-23],[112,-50],[70,-61],[143,-96],[635,-5],[98,5],[40,23],[148,83],[480,416],[205,147],[138,66],[35,8],[100,22],[248,-10],[175,15],[212,71],[155,117],[191,213],[299,329],[336,396],[256,345],[154,294],[101,228],[64,248],[30,203],[21,244],[-24,116],[-57,188],[-225,324],[-20,78],[-4,50],[6,64],[13,73],[21,61],[29,45],[45,40],[42,25],[42,18],[41,-1],[19,-3],[19,-2],[37,-21],[30,-17],[38,-3],[44,17],[30,30],[41,79],[27,42],[43,34],[86,7],[56,-2],[30,48],[49,405],[18,196],[19,170],[60,218],[35,96],[79,112],[271,271],[69,109],[94,178],[76,167],[52,152],[20,91],[28,79],[19,35],[44,46],[62,56],[52,60],[52,76],[28,94],[4,92],[-5,65],[-15,125],[-25,156],[-107,562],[-11,51],[-62,192],[-31,96],[-742,2292],[3,61],[30,81],[54,15],[267,65],[228,40],[222,113],[90,117],[139,290],[73,114],[188,234],[127,122],[162,203],[225,284],[212,274],[141,167],[101,76],[90,15],[78,-30],[638,-416],[152,-116],[151,-117],[387,-407],[352,-326],[111,-104],[192,-147],[202,-101],[198,-56],[222,-56],[115,35],[80,41],[70,41],[67,117],[155,263],[198,424],[69,35],[57,112],[64,98],[41,107],[11,96],[4,89],[-19,86],[-37,127],[3,79],[24,56],[15,37],[44,71],[17,69],[-4,58],[-25,43],[-69,31],[-18,6],[-47,16],[-61,38],[-35,51],[-20,97],[9,72],[18,70],[20,48],[64,54],[50,53],[29,49],[15,55],[12,76],[13,63],[20,39],[58,42],[65,107],[25,33],[5,36],[-20,40],[17,49],[32,45],[23,53],[-8,36],[-34,61],[2,61],[28,43],[37,30],[46,17],[12,54],[-2,61],[27,36],[45,1],[15,54],[0,79],[14,51],[23,38],[34,22],[43,-27],[43,38],[14,46],[-15,48],[-28,65],[-8,79],[0,68],[0,89],[21,32],[9,42],[27,-21],[29,-17],[11,33],[-15,38],[-7,35],[22,3],[40,-8],[26,18],[20,7],[18,-7],[7,-61],[15,-18],[22,13],[18,-10],[6,-41],[43,0],[15,66],[17,74],[4,45],[-19,36],[-42,45],[-27,51],[-19,47],[-23,34],[-19,42],[-8,16],[-25,55],[-20,57],[-18,73],[14,8],[46,-15],[3,34],[-12,57],[31,8],[-2,50],[-22,39],[10,27],[22,-7],[59,-48],[22,3],[8,24],[30,92],[-5,33],[-28,10],[-7,33],[30,15],[46,68],[42,60],[17,47],[-11,56],[-2,68],[9,33],[47,64],[84,98],[-1,44],[-12,17],[-27,-5],[-34,20],[-13,39],[-8,36],[8,34],[37,77],[31,41],[8,30],[-16,38],[-27,35],[-5,28],[22,28],[27,10],[46,-8],[47,38],[23,31],[-1,38],[-1,58],[11,48],[23,21],[47,22],[46,-2],[50,-31],[36,-20],[38,20],[22,41],[17,96],[-3,27],[-1,13],[-21,14],[-19,0],[-41,-5],[-25,20],[0,43],[-6,40],[13,31],[54,38],[55,53],[46,47],[23,-1],[17,-14],[20,5],[13,28],[19,34],[13,38],[7,43],[3,57],[0,34],[-1,60],[-9,48],[-15,51],[-14,54],[4,51],[15,38],[5,36],[3,22],[10,16],[6,-4],[13,-8],[17,9],[20,19],[5,25],[-13,12],[-3,18],[8,14],[17,2],[29,-2],[29,11],[22,6],[21,21],[10,20],[-2,19],[4,16],[-3,21],[11,14],[9,-8],[2,-28],[2,-36],[15,-13],[12,0],[9,19],[5,23],[-3,39],[8,80],[6,28],[-3,30],[-13,14],[-16,1],[-16,-10],[-22,4],[-10,10],[-8,13],[-5,34],[5,27],[16,22],[29,19],[20,7],[38,-22],[49,-40],[17,-7],[19,18],[13,37],[-15,68],[-12,81],[-13,49],[-21,48],[24,50],[47,5],[44,28],[37,18],[17,33],[-4,46],[-20,42],[-26,35],[2,44],[31,31],[25,38],[-8,53],[-2,53],[8,45],[22,21],[29,-12],[22,21],[15,43],[10,38],[13,20],[18,7],[16,-13],[33,-39],[25,-1],[36,33],[23,45],[5,26],[-5,31],[-9,33],[0,28],[10,20],[23,12],[22,14],[27,1],[11,19],[1,32],[-6,22],[-16,35],[-34,39],[-18,28],[-33,6],[-25,0],[-6,26],[13,15],[34,7],[37,32],[37,32],[28,23],[45,2],[48,8],[31,5],[17,9],[31,23],[27,25],[22,38],[23,43],[8,20],[9,21],[22,58],[20,22],[15,27],[-3,26],[6,19],[9,4],[6,4],[22,21],[19,16],[27,5],[32,-6],[26,-19],[26,-16],[23,-13],[16,-25],[9,-38],[-5,-39],[10,-41],[19,-35],[29,-20],[31,-9],[26,5],[29,18],[15,15],[-2,19],[-11,33],[0,37],[0,8],[0,26],[9,50],[15,20],[14,11],[23,4],[12,-7],[6,-14],[-2,-40],[0,-40],[3,-53],[14,-51],[11,-17],[23,-16],[23,-17],[30,-16],[21,0],[6,8],[13,16],[7,23],[4,30],[-8,46],[8,14],[7,2],[14,14],[14,-8],[28,-30],[2,-14],[2,-14],[12,-7],[14,4],[14,5],[26,9],[11,8],[9,-10],[6,-12],[3,-7],[15,-3],[12,3],[16,21],[16,51],[14,60],[7,85],[3,46],[-4,67],[-4,42],[3,30],[3,30],[9,31],[22,38],[15,29],[14,28],[8,39],[5,24],[14,28],[17,22],[13,7],[12,7],[22,0],[14,-18],[16,-48],[2,-9],[9,-37],[11,-29],[17,-49],[31,-83],[39,-66],[45,-48],[46,-20],[36,-8],[29,10],[22,26],[16,30],[16,57],[10,67],[7,61],[2,55],[-4,85],[-1,72],[0,77],[7,36],[10,17],[21,35],[38,66],[35,74],[17,68],[15,76],[6,53],[-1,29],[-2,61],[8,49],[29,70],[33,80],[68,181],[74,260],[200,-53],[41,-11],[103,-22],[55,-11],[98,1],[86,13],[94,48],[87,91],[105,106],[166,154],[145,135],[129,96],[110,113],[56,107],[25,75],[52,146],[67,126],[85,139],[170,620],[165,600],[212,375],[34,102],[181,550],[257,731],[37,336],[-64,450],[-81,242],[-139,264],[-198,206],[-274,279],[-1656,1134],[-569,411],[-482,419],[-413,355],[-267,301],[-126,189],[-63,182],[-3,262],[-7,180],[47,285],[96,306],[161,327],[266,445],[242,293],[21,25],[47,56],[-26,84],[-226,91],[-199,158],[-133,187],[-19,26],[-68,238],[-68,300],[-115,0],[-261,-103],[-179,-16],[-215,-39],[-450,-103],[-356,87],[-234,173],[-227,269],[-534,539],[-624,496],[-460,277],[-514,213],[-891,349],[-57,22],[-112,58],[-55,29],[-84,79],[0,143],[-10,142],[167,395],[105,189],[225,617],[87,406],[91,455],[121,466],[203,396],[104,208],[75,162],[42,292],[45,866],[148,251],[426,251],[259,196],[19,223],[-74,304],[-334,450],[-165,358],[36,311],[237,365],[152,361],[222,447],[157,391],[148,251],[333,248],[249,228],[127,86],[110,90],[18,77],[-21,98],[-141,174],[-157,178],[-12,48],[-48,196],[-28,140],[43,121],[96,123],[207,104],[140,140],[65,224],[32,232],[28,193],[55,98],[93,70]],[[720311,742810],[55,-147],[136,-176],[130,-102],[212,-169],[177,-205],[203,-118],[252,-141],[324,-182],[322,-140],[466,-364],[34,-26],[109,-66],[95,44],[98,146],[164,174],[240,161],[228,146],[286,139],[455,201],[258,30],[709,312],[313,217],[152,139],[112,52],[153,-35],[153,-95],[189,-139],[173,25],[136,47],[101,16],[98,-45],[118,-130],[115,-100],[118,-56],[112,-100],[89,-104],[69,-117],[81,-69],[97,-161],[69,-91],[77,-27],[110,-11],[233,138],[89,13],[72,-65],[81,-35],[96,24],[107,59],[130,-51],[98,20],[123,31],[84,8],[86,44],[63,34],[77,18],[58,139],[35,182],[43,316],[8,182],[132,192],[154,74],[192,189],[302,298],[299,295],[207,203],[68,67],[180,29],[179,29],[85,54],[55,36],[101,31],[69,-14],[69,-14],[87,1],[122,1],[119,-34],[85,52],[82,103],[105,90],[148,84],[113,104],[112,104],[129,43],[86,-6],[84,-40],[62,-63],[39,-40],[77,-98],[76,-99],[98,-108],[136,-160],[107,-269],[108,-331],[63,-285],[101,-309],[52,-89],[60,-45],[73,-33],[100,-60],[121,-90],[114,-56],[77,-28],[79,13],[128,133],[171,43],[-51,-79],[-47,-84],[-15,-58],[-18,-45],[-22,-42],[-48,-100],[-21,-174],[-12,-73],[-12,-108],[33,-63],[61,-102],[814,-1824],[98,-366],[124,-468],[40,-147],[97,-364],[47,-418],[58,-511],[-44,-465],[-44,-464],[-123,-624],[-75,-327],[53,-377],[96,-273],[121,-185],[99,-95],[170,-146],[196,-168],[187,-161],[137,-117],[155,-156],[66,-133],[33,-206],[11,-206],[-62,-200],[-99,-242],[-119,-215],[-15,-111],[4,-167],[54,-304],[55,-308],[32,-181],[38,-213],[39,-213],[-4,-267],[-70,-217],[-150,-209],[-199,-189],[-192,-67],[-208,15],[-316,19],[-214,78],[-241,23],[-253,-70],[-248,-69],[-246,-207],[-170,-356],[-15,-735],[-127,-560],[-87,-252],[-220,-420],[-278,-532],[-190,-305],[-50,-433],[69,-434],[69,-433],[171,-379],[225,-192],[-152,-932],[126,-244],[310,-157],[226,-286],[311,-130],[396,-482],[321,-537],[432,-630],[11,-16]],[[852580,670583],[-183,-455],[-159,-356],[-251,-544],[-186,-203],[-226,-457],[-116,-155],[-116,4],[-311,30],[-363,-58],[-581,-433],[-135,68],[-254,102],[-145,5],[-180,-185],[-387,-398],[-322,-330],[-61,-102],[-61,-102],[14,-433],[-278,-1334],[-219,-2079],[-177,7],[-179,199],[-141,228],[-207,155],[-434,1],[-312,-441],[-499,-967],[-246,-42],[-601,992],[-211,208],[-354,-65],[-1172,-1918],[-42,-53],[-41,-52],[-209,-265],[-66,-512],[174,-607],[20,-257],[4,-46],[-189,-398],[-236,-456],[-226,-270],[-368,-256],[-698,156],[-301,-28],[-245,-213],[-180,-640],[-122,-882],[-208,-612],[-217,-640],[-198,-555],[-301,-341],[-349,-242],[-270,-83],[-210,-84],[-303,-4],[-415,85],[-745,-14],[-415,86],[-690,-408],[-941,-33],[-255,227],[-348,14],[-717,-213],[-330,-213],[-208,-655],[-217,-1067],[-292,-440],[-509,-342],[-560,-116],[-128,-26],[-925,185],[-518,-270],[-82,68],[-806,675],[-88,75],[-1116,26],[-1289,447],[-593,-219],[-701,-751],[-634,-1549],[-347,-1620],[-399,-1031],[-203,-848],[-383,-1078],[-115,-324],[-1112,-1619],[-345,-257],[-746,-176],[-512,-75],[-472,-286],[-937,-1121],[-800,-289],[-1220,-713],[-528,-737],[-1262,-287],[-139,-81],[-155,-342],[100,-1233],[-1661,-1744],[-484,768],[-114,22],[-138,-213],[-98,-627],[-777,-942],[-235,-550],[112,-817],[-32,-313],[-389,-541],[-292,-1105],[-500,-973],[37,-661],[386,-1545],[-195,-2009],[126,-1002],[-369,-576],[-543,-468],[-566,-1020],[154,-1060],[-44,-175],[-393,-362],[-307,-201],[-343,-347],[-793,-1508],[-44,-1],[-590,-12],[-154,184],[-539,360],[-1456,-1181],[-233,-256],[-191,-526],[-630,-400],[-471,-613],[-509,-1281],[-322,-173],[-393,49],[-330,815],[-247,-333],[-200,-409],[-361,-1448],[-903,-1336],[-610,-609],[-627,-2057],[-518,-459],[-168,-68],[-213,20],[-288,-302],[-23,-381],[207,-809],[328,-882],[463,-460],[265,-139],[124,-182],[-158,-315],[-188,-201],[-559,-271],[-397,-259],[-410,-240],[-29,4],[-567,76],[-1119,269],[-602,310],[-674,607],[-253,112],[-509,-300],[-287,-127],[-170,-69],[-86,-34],[-85,-34],[-325,-195],[-477,-150],[-377,210],[-384,409],[-126,370],[-72,209],[-73,210],[-170,573],[-260,505],[-457,220],[-1141,-114],[-355,24],[-298,80],[-284,-40],[-391,-110],[-708,-80],[-366,-84],[-91,-135],[0,-240],[404,-1258],[4,-25],[62,-404],[53,-799],[-265,-619],[-231,-469],[-265,-489],[-357,-490],[-656,-179],[-582,-160],[-305,-20],[-489,100],[-338,-70],[-212,-310],[-302,-1033],[-148,-1143],[-39,-489],[-146,-330],[-258,-140],[-245,-110],[-199,60],[-178,-40],[-157,-124],[-307,-505],[-522,-768],[-206,-260],[-226,-275],[-151,-424],[-249,-345],[-234,-254],[-371,-250],[-238,-519],[-179,-90],[-205,-208],[-165,-231],[-212,-110],[-344,60],[-437,-19],[-324,-230],[-258,-390],[-298,-319],[-272,-330],[-125,-429],[6,-310],[0,-239],[-40,-210],[-119,-190],[-185,-299],[-212,-150],[-86,-90],[-20,-259],[-66,-2287],[-53,-239],[-225,-230],[-245,-469],[-695,-440],[-357,-129],[-213,56],[-217,54],[-192,-30],[-278,-90],[-238,-140],[-252,-150],[-463,-649],[-344,-519],[-345,-519],[-297,-519],[-199,-200],[-218,-40],[-252,150],[-218,-120],[-258,-339],[-206,-360],[-238,-299],[-278,-430],[-304,-130],[-321,-229],[-328,-200],[-397,-30],[-311,-150],[-437,-99],[-423,-290],[-212,-290],[-199,-429],[-370,-367],[-179,-22],[-569,-420],[-252,-199],[-179,-110],[-231,10],[-232,-60],[-159,-220],[-152,-329],[-185,-250],[-212,-179],[-152,-550],[-106,-319],[-106,-100],[-331,-250],[-132,-219],[-53,-250],[-66,-150],[-78,-100],[-175,-47]],[[742394,600907],[238,395],[212,68],[232,63],[224,259],[183,364],[216,420],[313,552],[170,202],[183,236],[143,290],[269,528],[249,307],[207,164],[177,261],[73,446],[-28,490],[-34,388],[69,181],[458,354],[264,802],[76,374],[-126,916],[48,130],[330,328],[134,255],[12,254],[59,294],[117,232],[121,340],[94,353],[79,353],[67,398],[-129,367],[-85,361],[-5,421],[179,260],[382,347],[190,6],[166,-133],[66,-153],[211,-47],[41,-78],[267,-429],[143,-162],[123,-174],[133,-73],[165,37],[257,107],[279,226],[509,540],[504,300],[525,238],[123,110],[43,133],[137,282],[301,328],[23,123],[-90,159],[-51,318],[24,260],[117,376],[39,406],[-52,422],[-52,360],[-80,144],[-211,-12],[-85,172],[35,229],[83,189],[-40,326],[7,274],[-54,141],[-237,225],[-212,294],[-39,141],[-16,242],[35,306],[117,312],[-121,171],[-58,130],[-8,65],[112,81],[21,218],[40,405],[30,309],[103,375],[57,61],[57,60],[288,239],[248,-157],[124,114],[125,114],[310,431],[281,530],[129,368],[92,331],[56,241],[-4,168],[-48,109],[-56,72],[-112,84],[-131,-36],[-126,-95],[-257,-97],[-208,-49],[-235,12],[-281,37],[-96,12],[-71,21],[-107,39],[-46,27],[-42,53],[-32,48],[-52,34]],[[453084,200140],[-23,-4],[14,47],[-58,22],[26,60],[21,39],[27,69],[19,48],[18,13],[22,45],[44,15],[25,-19],[11,-26],[-10,-46],[41,-10],[10,-33],[-15,-54],[-40,-17],[-25,-28],[-27,-52],[-43,-37],[-37,-32]],[[454264,200680],[27,-100],[51,15],[-28,-112],[0,-71],[-45,-99],[0,-52],[-81,-194],[-34,-65],[-66,-56],[-50,-20],[-50,0],[-28,-19],[-49,-30],[-24,-33],[-53,-21],[-73,15],[-20,-28],[-38,-35],[-35,24],[-68,104],[-24,8],[-17,56],[11,52],[6,56],[3,63],[34,75],[29,50],[13,54],[1,30],[16,59],[21,62],[-2,45],[40,48],[0,52],[60,28],[40,32],[34,-6],[47,8],[63,24],[63,52],[87,11],[82,69],[42,-63],[15,-88]],[[452708,206431],[86,-62],[277,0],[169,-255],[28,-128],[124,-81],[83,-222],[32,-145],[87,-97],[138,34],[64,-194],[102,-166],[101,-118],[-42,-215],[-25,-212],[-7,-80],[-147,-291],[-51,-298],[33,-250],[-138,-347],[46,-278],[-88,-6],[-73,97],[-124,-101],[-125,-101],[60,-131],[-101,-97],[-110,117],[-79,-20],[-151,55],[-102,90],[-128,333],[-115,264],[-51,131],[-115,299],[-115,215],[-87,56],[92,125],[-74,222],[-129,256],[-96,139],[-77,13],[-26,5],[-127,-25],[-54,-103],[-171,138],[-119,220],[-132,243],[96,181],[61,255],[125,130],[68,70],[253,0],[169,127],[253,455],[193,-73],[239,-174]],[[456959,210146],[-41,-347],[-72,9],[-96,-136],[-122,-153],[-167,-55],[-156,54],[-126,-109],[-39,-136],[-39,-136],[54,-227],[18,-181],[-115,82],[-150,-109],[-48,-254],[-108,-145],[-126,-191],[-292,-198],[-127,-165],[-279,-362],[-42,-191],[-180,-254],[-229,-126],[-206,50],[-184,200],[38,85],[185,42],[27,19],[87,66],[78,111],[19,143],[105,140],[51,167],[58,161],[44,288],[74,358],[26,121],[-21,121],[19,104],[99,40],[99,84],[6,129],[51,105],[112,12],[85,102],[99,22],[181,93],[150,89],[93,185],[30,243],[136,355],[24,68],[80,225],[117,178],[186,38],[152,-98],[200,-183],[108,-185],[74,-348]],[[454329,196892],[30,90],[-16,127],[-18,135],[50,71],[92,55],[116,154],[267,612],[50,169],[69,145],[38,128],[1,6],[60,209],[3,254],[20,194],[-29,117],[-189,-297],[-122,-154],[-162,-144],[-195,-39],[-191,-6],[-117,300],[38,307],[62,212],[212,236],[-33,323],[29,203],[133,340],[89,273],[-10,208],[86,215],[69,95],[115,-20],[205,244],[215,216],[42,42],[189,-52],[187,23],[79,39],[69,100],[43,204],[10,174],[-33,209],[-13,92],[-10,67],[-23,164],[-40,180],[-95,497],[51,368],[275,602],[108,179],[205,183],[-62,259],[-90,158],[-84,-30],[-271,-97],[-71,176],[186,275],[-133,341],[-108,60],[-148,447],[270,184],[14,337],[33,220],[36,184],[43,169],[180,451],[189,226],[264,264],[297,244],[253,141],[14,8],[281,159],[88,75],[60,134],[70,417],[216,160],[106,-259],[61,-6],[214,94],[138,151],[92,159],[86,175],[376,29],[61,11],[196,34],[267,135],[172,79],[96,140],[55,79],[208,274],[195,259],[95,112],[86,101],[337,433],[179,222],[62,93],[49,110],[56,3],[16,15],[43,40],[340,478],[260,348],[119,269],[300,646],[165,339],[136,283],[86,273],[29,91],[129,164],[303,418],[20,19],[359,349],[304,398],[171,239],[99,164],[73,254],[-107,207],[-89,174],[-68,131],[-92,65],[-93,5],[-227,244],[-307,59],[-224,-20],[-7,-99],[-8,-67],[-8,-67],[-106,-105],[-201,25],[-123,26],[-161,118],[-128,204],[-73,40],[-60,-42],[-125,166],[-132,-24],[-75,-70],[-80,25],[-145,64],[-165,364],[-82,59],[-158,80],[-122,-25],[-73,-84],[-99,10],[-129,119],[-16,119],[-89,378],[-89,384],[-43,120],[49,143],[-3,174],[13,224],[-10,329],[-23,204],[-39,189],[-96,378],[-63,213],[-72,245],[-155,597],[30,74],[72,-20],[64,26],[25,114],[7,199],[10,249],[66,214],[85,149],[182,219],[69,119],[73,179],[56,244],[128,-15],[145,-5],[169,70],[122,35],[142,170],[19,24],[136,54],[89,125],[151,179],[208,214],[274,224],[214,159],[168,174],[212,184],[112,164],[39,150],[86,144],[106,149],[105,224],[59,259],[3,15],[34,149],[39,279],[10,283],[-23,448],[-33,323],[89,438],[-33,219],[-53,249],[-19,289],[-84,157],[-151,42],[2,16],[15,158],[83,31],[82,-31],[82,35],[0,189],[55,67],[87,-18],[50,-89],[46,-30],[89,30],[49,129],[43,120],[76,10],[92,84],[55,161],[67,197],[123,458],[136,479],[76,96],[61,77],[14,-13],[72,-67],[76,10],[244,150],[224,383],[535,383],[226,131],[111,131],[52,61],[86,24],[148,41],[171,89],[172,140],[105,84],[99,155],[86,129],[274,294],[406,273],[155,90],[382,273],[248,110],[300,60],[55,21],[21,8],[89,65],[283,418],[469,687],[57,93],[464,757],[274,329],[402,308],[109,20],[138,0],[126,-20],[92,18],[92,17],[119,80],[131,138],[11,11],[195,209],[174,179],[222,186],[192,239]],[[994238,559318],[-1562,-7],[-3154,-14],[-575,-3],[-239,-1],[-7823,-35],[-4971,-22],[-465,-2],[-5819,-26],[-2751,-12],[-9610,-43],[-269,-1],[-88,-1],[-55,62],[-39,62],[-29,80],[-52,140],[-105,308],[-62,179],[-5,16],[-173,500],[-671,1888],[-333,948],[-152,317],[-133,210],[-336,471],[-1031,1426],[-1301,1775],[-942,1284],[-600,819],[-243,355],[-182,292],[-85,236],[-241,776],[-526,1686],[-403,1291],[-224,718]],[[948989,574990],[-81,346],[-38,166]],[[948870,575502],[-21,239],[14,1152],[149,321],[57,188],[57,189],[478,194],[278,139],[221,237],[121,247],[31,202],[21,143]],[[950276,578753],[8,197]],[[950284,578950],[8,197],[648,7875],[19,231],[78,937],[373,4535],[77,930],[63,767],[-48,524],[-260,732],[-93,262],[-1058,3000],[-256,728],[-659,1882],[-54,154],[-530,1514],[-163,488],[-118,306],[-239,471],[-905,1587],[-120,211],[-1027,1788],[-969,1666],[-499,865],[-134,216],[-65,171],[-17,139],[9,142],[15,164],[51,287],[132,961],[359,2491],[330,2222],[254,1772],[107,750],[76,441],[34,199],[10,226],[17,217],[0,274],[-23,216],[-7,56],[-27,215],[-66,85],[-1598,2039],[-1426,1827],[-393,504],[-1725,2194],[-364,463],[-19,24],[-604,778],[-25,34],[406,415],[269,307],[133,152],[220,162],[718,461],[97,62],[851,-22],[464,-6],[471,37],[338,368],[293,374],[321,368],[554,692],[392,554],[259,673],[199,717],[246,601],[230,463],[322,509],[353,417],[354,240],[610,224],[460,343],[469,527],[435,574],[1058,1348],[601,584],[1105,972],[705,671],[399,624],[445,880],[481,955],[424,890],[168,792],[77,531],[116,306],[188,614],[583,862]],[[955267,648948],[555,996],[230,231],[291,208],[355,119],[449,30],[1287,-74],[564,-146],[671,-295],[613,-246],[122,-49],[645,-305],[366,-203],[539,-15],[645,218],[530,291],[520,464],[616,756],[260,856],[-87,1090],[-29,668],[-48,392],[-19,697],[15,106],[52,373],[145,364],[125,363],[116,842],[-117,830],[20,506],[231,639],[299,523],[414,407],[426,472],[249,301],[249,302],[347,554],[568,520],[597,218],[500,1264],[501,1278],[183,203],[217,320],[216,319],[135,392],[87,349],[1,6],[119,442],[224,334],[706,715],[349,411],[642,706],[387,359],[826,643],[584,456],[1212,944],[1020,870],[388,89],[526,-41],[46,-4],[238,25],[335,11],[347,-81],[480,90],[491,92],[1317,248],[873,-59],[114,-7],[126,-8],[11,-1],[82,-5],[252,-17],[163,-10],[173,-11],[16,-1],[763,-55],[16,-1],[487,66]],[[983231,672282],[408,-17],[87,19]],[[983726,672284],[224,51],[453,178],[539,456],[4,2],[365,135],[342,-422],[414,131],[342,734],[389,707]],[[986798,674256],[71,-565],[192,-320],[-24,-620],[-153,-330],[-191,-466],[-175,-578],[-144,-530],[-120,-591],[-104,-753],[-41,-1238],[-26,-229],[-138,-1194],[-164,-1795],[-100,-1363],[-104,-1409],[-54,-480],[-604,-5454],[-322,-2906],[-28,-247],[-129,-1167],[-100,-899],[-252,-2277],[-143,-1288],[-150,-1436],[-161,-1553],[-73,-1532],[-36,-754],[-26,-557],[-31,-663],[-58,-1225],[-46,-959],[-56,-1191],[-1,-32],[-40,-1148],[-24,-687],[-75,-2135],[38,-823],[76,-1623],[119,-2574],[199,-2307],[39,-459],[11,-128],[2,-25],[6,-63],[1,-12],[1,-8],[0,-9],[1,-12],[0,-2],[3,-32],[28,-337],[22,-269],[83,-1018],[210,-2560],[3068,-18569],[234,-1414],[500,-3029],[7,-44],[270,-1459],[1121,-6076],[916,-6214],[1008,-6841],[637,-4323],[45,-313],[494,-3413],[626,-3724],[362,-2147],[9,-48],[72,-345],[862,-4147]],[[542847,480101],[33,11],[79,27],[55,18],[168,56],[67,-27],[66,-28],[411,-962],[249,-224],[232,184],[225,-233],[291,-439],[249,-419]],[[544972,478065],[-130,-330],[-245,-303],[-268,-235],[-242,90],[-254,73],[-248,-25],[-86,43],[-161,79],[-346,-210],[-496,226],[-243,-27],[-387,-283],[-190,-54],[-213,72],[-114,58],[-113,-39],[-181,-308],[-17,-90],[-239,-534],[-54,-13],[-88,-98],[-126,-113],[-114,-89],[-46,-35],[-205,-164],[-146,-192],[-26,-271],[-17,-241],[-48,-256],[-30,-109],[-74,-115],[-55,-54],[-30,-36],[-6,-62],[-47,-19],[-44,-2],[-38,4],[-38,4],[-40,30],[-27,39],[-35,1],[-175,-55],[-134,34],[-107,199],[-31,-48],[-34,-19],[-39,-5],[-31,23],[-31,23],[-67,-2],[-44,-6],[-65,-27],[-71,-5],[-69,31],[-79,48],[-86,66],[-87,54],[-58,77],[-93,204],[-60,127],[-76,58],[-102,0],[-278,12],[-301,10],[-60,-131],[-11,-23],[-17,-44],[-73,-188],[-186,-359],[-151,-262],[-105,-106],[-128,-228],[-40,-51],[-81,-103],[-400,-335],[-171,-143],[-147,-356],[-106,-141],[-277,-193],[-304,-427],[-360,-293],[-284,-429],[-226,-211],[-77,-172],[-197,-294],[-326,-327],[-198,-290],[-120,-67],[-276,-66],[-167,-335],[-92,-184],[-135,-65],[-101,-103],[-169,-266],[-134,-75],[-234,-213],[-231,-123],[-115,-117],[-146,-77],[-291,-77],[-102,-113],[-236,-261],[-411,-599],[-176,-503],[-87,-128],[-61,-158],[0,-183],[-16,-59],[-92,-343],[-35,-834],[-64,-181],[-127,-163],[-142,-83],[-266,-10],[-80,-193],[-105,-110],[-411,-315],[-106,-144],[-296,-677],[-99,-123],[-261,-163],[-317,-460],[-128,-67],[-418,-40],[-361,-101],[-423,-37],[-494,-716],[-78,-392],[-106,-100],[-416,-86],[-142,-114],[-107,-137],[-261,-150],[-424,-71],[-113,-62],[-79,-145],[-48,-162],[-119,-91],[-271,-75],[-373,-196],[-92,-132],[-70,-168],[-551,-566],[-263,-119],[-106,-103],[-375,-175],[-120,-101],[-246,-449],[-128,-64],[-700,89],[-254,145],[-134,-44],[-135,24],[-204,215],[-126,52],[-420,-166],[-175,-332],[-79,-384],[-68,-151],[-116,-152],[-133,-52],[-135,28],[-133,-27],[-386,-186],[-158,-40],[-135,-103],[16,-303],[211,-348],[63,-177],[-7,-220],[-241,-501],[-310,-407],[-128,-112],[-126,-54],[-439,-387],[-275,-126],[-107,-131],[-107,-319],[-96,-139],[-368,-257],[-136,-38],[-387,159],[-214,-216],[-318,-484],[-119,-97],[-311,-148],[-120,-122],[-190,-276],[-128,-112],[-149,-32],[-253,104],[-98,-154],[-121,-101],[-318,33],[-149,-40],[-177,-171],[-156,-87],[-283,60],[-232,229],[-155,-16],[-128,94],[-43,392],[28,488],[-13,535],[-49,228],[-101,171],[-289,-2],[-403,-188],[-325,56],[-401,-173],[-376,-282],[-142,-35],[-335,2],[-88,0],[-71,-72],[-85,-86],[-403,-409],[-120,-73],[-594,-79],[-189,-611],[-173,-334],[67,-683],[-192,-596],[-68,-261],[-288,0],[-123,-200],[-114,-371],[-63,-549],[49,-523],[-20,-537],[-202,-669],[-267,-481],[-86,-624],[-3,-29],[-193,-886],[-378,-817],[-41,-157],[-109,-723],[-26,-95],[-123,-443],[-116,-292],[-57,-141],[-12,-228],[-15,-127],[-60,-269],[-41,-196],[-29,-116],[-94,-58],[-67,-51],[-3,-84],[12,-80],[41,-192],[53,-447],[-21,-244],[-73,-218],[-142,-258],[-144,-185],[-132,-108],[-47,-92],[-48,-207],[-36,-112],[-36,-111],[-91,-173],[-60,-109],[-110,104],[-18,12],[-20,15],[-13,9],[-20,11],[-26,15],[-62,35],[-62,35],[-68,16],[-68,15],[-162,-42],[-184,-77],[-134,-43],[-178,-25],[-142,54],[-105,40],[-584,530],[-94,55],[-272,64],[-433,31],[-551,-73],[-241,-95],[-149,-97],[-458,-406],[-655,-254],[-224,-120],[-223,-120],[-426,-663],[-125,-108],[-120,-63],[-263,-40],[-691,-303],[-106,-151],[-156,-388],[-92,-160],[-445,-206],[-86,-78],[-232,-210],[-537,-488],[-352,-168],[-243,-189],[-5,-182],[196,-343],[56,-172],[9,-177],[-78,-162],[-269,-144],[-221,-242],[-276,-395],[-104,-222],[-168,-507],[-113,-1010],[-87,-468],[-139,-264],[-135,-71],[-305,17],[-119,-53],[-559,-611],[-459,-823],[-312,-387],[-380,-627],[-228,-317],[-240,-175],[-240,-68],[-904,541],[-141,-1],[-734,-200],[-475,-281],[-289,-210],[-256,32],[-134,-96],[-99,-188],[-174,-677],[-135,-171],[-263,4],[-104,-178],[-14,-248],[126,-667],[-42,-337],[-135,-667],[-106,-157],[-226,-129],[-143,-7],[-515,194],[-142,13],[-127,-126],[-266,-530],[-110,0]],[[468160,445644],[87,41],[27,22],[22,7],[22,-12],[26,-30],[44,-28],[33,0],[130,69],[49,30],[22,26],[17,22],[16,55],[9,79],[4,50],[-2,29],[2,29],[-8,94],[6,51],[19,135],[25,131],[109,345],[233,688],[70,228],[14,113],[-36,416],[8,119],[36,189],[88,248],[276,752],[57,70],[57,69],[12,194],[25,171],[90,125],[128,114],[71,76],[4,202],[50,176],[100,92],[-4,116],[-50,94],[19,109],[81,80],[96,151],[100,63],[84,38],[108,-56],[101,6],[41,94],[4,133],[-143,241],[-122,247],[-39,104],[-44,92],[-165,355],[50,120],[213,107],[159,100],[121,152],[54,170],[12,145],[50,97],[21,142],[39,120],[74,25],[80,50],[62,145],[15,32],[95,220],[89,204],[104,139],[118,295],[63,174],[14,39],[76,206],[71,232],[61,206],[43,110],[61,155],[209,143],[153,266],[70,123],[64,79],[88,61],[155,188],[61,107],[48,152],[29,92],[14,87],[16,105],[24,139],[4,117],[-6,75],[2,75],[4,59],[22,96],[41,115],[45,130],[16,106],[21,92],[60,137],[49,29],[42,33],[48,50],[30,67],[22,38],[22,38],[40,52],[39,44],[52,57],[61,122],[36,56],[51,84],[45,79],[23,101],[48,143],[55,103],[76,105],[61,62],[61,5],[102,26],[65,4],[35,146],[-1,117],[-65,94],[-42,114],[-19,140],[0,153],[46,176],[44,121],[47,106],[85,24],[20,2],[62,8],[47,9],[71,93],[5,128],[46,95],[16,25],[15,24],[31,49],[41,62],[34,46],[57,21],[67,4],[21,101],[33,57],[59,8],[56,26],[9,68],[-60,177],[23,60],[45,22],[67,-21],[31,55],[-34,109],[-39,94],[-14,153],[31,136],[51,102],[23,12],[43,107],[32,73],[54,50],[62,91],[48,65],[50,58],[96,79],[62,127],[-9,145],[0,199],[51,204],[9,36],[73,274],[-12,186],[-1,55],[10,175],[76,132],[7,320],[-27,338],[44,151],[103,138],[70,85],[17,76],[29,294],[50,506],[14,41],[76,220],[13,152],[10,125],[30,172],[-8,237],[21,155],[99,369],[39,139],[13,7],[13,7],[167,0],[126,0],[59,30],[101,89],[33,27],[65,47],[37,26],[102,62],[110,25],[45,29],[219,137],[119,51],[87,-22],[59,-59],[22,-47],[15,-114],[15,-56],[24,-51],[51,-55],[39,-48],[146,-184],[65,-82],[87,-85],[62,-89],[90,-68],[25,-10],[74,-32],[93,-13],[68,5],[171,14],[329,-62],[324,76],[245,57],[190,-102],[352,-512],[131,-107],[390,170],[4303,1877],[965,420],[908,397],[338,147],[2519,1102],[151,66],[2089,927],[-61,78],[-87,144],[-61,115],[-38,169],[17,163],[14,109],[-47,164],[-46,109],[-73,78],[-64,119],[-29,52],[-89,134],[-92,134],[-35,52],[-109,116],[-46,86],[-26,55],[-36,62],[-72,54],[-38,140],[-45,141],[-36,47],[-94,33],[-26,114],[17,154],[-4,172],[-38,87],[-43,158],[-43,136],[-57,50],[-38,94],[-77,79],[-61,50],[-39,45],[-14,51],[-17,94],[-7,47],[-23,43],[-48,58],[-14,72],[-5,64],[-19,51],[-43,71],[-29,36],[-38,72],[-166,165],[-67,108],[-43,65],[-38,86],[-38,72],[-14,65],[-8,111],[0,90],[3,64],[16,89],[3,84],[4,106],[1,102],[9,79],[-14,108],[-29,93],[0,58],[19,65],[-9,86],[-22,67],[-23,51],[-29,51],[-31,53],[0,87],[10,79],[-10,57],[-14,43],[-18,91],[1,64],[2,54],[-23,71],[-29,115],[-14,166],[-10,273],[0,115],[0,107],[-57,259],[2,133],[3,47],[-23,52],[-15,34],[-34,50],[-23,120],[-29,128],[22,114],[45,55],[24,50],[23,122],[57,115],[34,122],[9,94],[-36,122],[-30,86],[-18,122],[-22,115],[-1,33],[7,63],[12,44],[12,40],[-5,79],[-15,63],[-24,74],[-13,35],[-24,108],[-47,93],[-62,100],[-45,77],[-17,32],[-62,86],[-29,108],[-28,108],[-88,227],[-55,38],[-59,83],[-93,405],[-17,72],[-37,89],[-24,184],[-14,167],[34,86],[43,20],[2,101],[20,55],[63,45],[48,133],[7,113],[10,106],[7,92],[2,73],[22,73],[6,51],[-2,66],[-59,128],[-52,50],[-37,94],[-55,84],[-38,57],[-25,38],[-30,33],[-33,89],[-44,50],[-58,26],[-34,13],[-37,56],[-12,49],[-25,74],[-76,123],[-16,27],[-56,67],[-55,55],[-30,56],[-35,137],[-5,19],[-48,95],[-59,222],[-88,174],[-46,144],[-18,61],[-37,78],[-27,40],[-27,39],[-44,67],[-38,70],[-37,81],[-47,32],[-52,43],[-33,124],[-22,144],[-33,181],[-16,80],[-2,60],[-2,33],[4,89],[-1,29],[-11,98],[-5,41],[-24,86],[13,81],[59,46],[22,17],[7,6],[72,35],[59,61],[45,46],[82,68],[15,16],[92,134],[13,131],[39,128],[47,133],[38,268],[-13,249],[-21,201],[-20,160],[29,162],[52,132],[59,118],[95,161],[70,118],[89,242]],[[488337,491315],[16,43],[51,73],[57,66],[82,108],[60,79],[-25,71],[15,79],[41,84],[65,56],[63,16],[55,-16],[48,-79],[1,-6],[39,-195],[5,-167],[10,-106],[50,-110],[29,-117],[37,-27],[58,-15],[103,3],[158,126],[123,91],[148,53],[171,-31],[119,42],[79,59],[54,89],[103,57],[143,64],[68,52],[60,89],[20,113],[3,103],[43,91],[65,125],[98,87],[118,31],[88,49],[71,32],[107,169],[83,102],[124,26],[178,88],[138,113],[98,129],[86,91],[85,57],[58,103],[50,106],[73,91],[141,57],[45,-54],[18,-83],[-48,-121],[-20,-84],[25,-197],[50,-102],[138,-152],[61,-110],[48,-246],[20,-250],[123,-255],[35,-41],[128,-87],[93,-118],[88,-182],[48,-87],[17,-201],[61,-224],[113,-144],[98,-64],[105,-91],[78,-61],[36,-91],[15,-118],[-33,-102],[-45,-57],[-57,-73],[-16,-105],[17,-102],[59,-99],[77,-76],[41,-105],[25,-63],[4,-5],[132,-239],[-49,-528],[85,-156],[119,-25],[246,165],[291,73],[459,-415],[290,-66],[127,26],[290,457],[156,148],[276,103],[141,-142],[296,-453],[148,-57],[311,76],[136,89],[120,-26],[190,-279],[134,-345],[100,-157],[142,-68],[62,-161],[89,-548],[159,-594],[190,-316],[255,-189],[92,-169],[184,-532],[126,-39],[134,28],[170,294],[691,429],[396,289],[489,490],[446,162],[274,277],[149,35],[226,-161],[248,-105],[232,-1115],[361,-1322],[22,-706],[64,-421],[63,-167],[247,-277],[146,-29],[284,6],[459,-294],[333,-268],[240,-283],[262,-38],[390,152],[302,203],[116,37],[111,36],[586,-102],[254,57],[339,280],[363,536],[267,195],[1005,1348],[112,109],[212,106],[253,126],[299,286],[226,494],[303,435],[233,143],[585,-97],[45,-7],[147,29],[349,-164],[102,-42],[101,19],[115,-19],[115,-45],[59,-38],[58,-68],[287,-328],[420,-350],[85,-26],[83,52],[32,86],[-70,245],[51,16],[19,42],[20,41],[70,90],[45,68],[19,93],[10,80],[-10,126],[-4,96],[25,116],[32,60],[43,-76],[59,19],[94,-64],[68,-109],[0,-110],[30,-141],[-47,-19],[-8,-123],[76,-212],[-55,-51],[72,-58],[-42,-64],[153,-97],[90,-122],[0,-186],[-94,-97],[21,-115],[-37,-153],[88,-220],[-31,-65],[146,-57],[124,-71],[94,-83],[128,-103],[12,-148],[51,-212],[138,-658],[97,-461],[-235,-212],[8,-179],[132,-351],[109,-151],[-27,-256],[-44,-199],[-52,-298],[146,-262],[176,-360],[32,-407],[-101,-466],[50,-198],[139,-351],[-163,-224],[-50,-568],[-25,-285],[-26,-284],[230,-443],[357,-63],[-72,-238],[284,-128],[-73,-250],[110,-194],[-266,-804],[-175,-901],[-294,-790],[-110,-208],[-18,-360],[-368,-749],[-413,-416],[-331,-429],[-138,-458],[-119,-623],[-87,-780],[-9,-59],[-125,-811],[46,-443],[-175,-801],[111,-363],[64,-388],[-61,-239],[-113,-732],[109,-264],[149,-290],[186,-281],[193,-310],[126,-231],[66,-171],[199,-300],[134,-288],[100,-214],[199,-350],[219,-221],[233,-261],[65,-145],[347,-356],[176,-264],[91,-123],[113,-70],[87,8],[300,138],[327,516],[255,-8],[152,108],[240,196],[171,274],[208,137],[166,40],[147,151],[166,-100],[212,-221],[173,-170],[160,-51],[226,101],[179,130],[133,351],[95,186],[178,115],[199,311],[140,230],[82,183],[144,270],[161,217],[135,190],[153,81],[179,203],[198,325],[108,244],[27,271],[62,162],[216,82],[188,95],[225,-55],[233,95],[216,27],[231,-191],[173,-53],[161,190],[198,122],[189,217],[89,162],[36,230],[72,380],[171,216],[179,176],[90,149],[-18,258],[162,217],[107,149],[99,297],[162,244],[170,176],[530,583],[157,29],[175,187],[249,-161],[443,-286],[197,-162],[162,-149],[233,-447],[171,-149],[66,-201],[192,-119],[137,-46],[152,122],[144,82],[189,-41],[134,176],[710,623],[466,1070],[-215,135],[-84,202],[-83,161],[-72,85],[-135,187],[-43,134],[-72,108],[-19,137],[61,126],[83,212],[64,171],[19,172],[-19,131],[103,598],[254,148],[314,-248],[220,177],[4,1],[3,0],[240,33],[60,63],[118,52],[75,40],[152,-52],[114,29],[173,8],[250,25],[354,425],[186,121],[177,73],[80,110],[33,194],[257,268],[137,201],[81,406],[32,316],[24,170],[266,207],[57,255],[16,292],[137,316],[306,352],[322,-121],[258,73],[129,146],[274,109],[233,97],[210,146],[89,207],[80,170],[-32,219],[0,170],[161,133],[169,13],[210,-37],[153,-15],[161,88],[282,49],[185,-73],[185,-25],[194,-85],[97,-133],[60,-150],[157,-106],[169,110],[282,316],[129,304],[8,364],[-24,151],[290,323],[168,133],[1,1],[435,219],[113,-316],[56,-210],[57,-167],[266,-122],[217,-24],[314,-12],[178,-97],[169,-61],[290,-170],[153,-292],[193,-425],[45,-276],[453,-201],[82,76],[97,83],[79,8],[100,45],[143,58],[101,52],[81,15],[425,258],[100,94],[71,70],[44,79],[77,504],[63,344],[39,161],[73,134],[123,185],[119,3],[133,-3],[86,9],[51,-27],[30,-91],[44,-40],[81,6],[123,79],[105,18],[126,37],[111,61],[68,82],[91,-37],[123,-28],[125,28],[122,-23],[55,99]],[[700361,515779],[-218,-91],[-120,246],[-72,586],[121,532],[-29,560],[-218,145],[-376,-127],[-220,-317],[-330,-588],[-320,-734],[-394,-240],[-389,-76],[-418,310],[-267,313],[-149,506],[-185,1181],[-127,420],[-196,276],[-185,430],[-76,668],[-227,440],[-304,924],[-241,329],[-388,220],[-467,36],[-304,101],[-389,538],[-340,379],[-34,39],[-867,380],[-38,192],[-100,63],[-234,37],[-621,122],[-493,-85],[-145,48],[-49,134],[-31,34],[-114,125],[-250,-25],[-138,-73],[-80,-341],[-65,-183],[-195,-115],[-152,201],[-154,85],[-492,-463],[-157,-290],[-337,-1399],[-192,-672],[-213,-1208],[-281,-440],[-586,-492],[-334,131],[-870,890],[-855,633],[-409,-20],[-557,-609],[-694,-317],[-495,5],[-445,96],[-183,445],[-368,343],[-331,16],[-332,149],[-248,4],[-312,145],[-205,356],[-175,391],[-333,487],[-417,324],[-489,-42],[-246,-200]],[[559252,537124],[72,-186],[38,-167],[10,-183],[-12,-170],[-17,-177],[-39,-245],[-62,-210],[-90,-147],[-96,-95],[-104,-111],[-82,-90],[-32,-69],[-17,-72],[23,-124],[31,-162],[-30,-231],[-72,-185],[-76,-106],[-270,-65],[-291,52],[-181,67],[-160,31],[-70,-29],[-53,-22],[-35,-116],[-13,-215],[-13,-215],[-48,-308],[-38,-165],[-105,-345],[-123,-421],[-43,-185],[-19,-181],[8,-220],[44,-294],[47,-242],[52,-252],[37,-200],[-3,-222],[6,-241],[14,-237],[48,-694],[34,-170],[44,-144],[48,-180],[-31,-134],[-238,-149],[-232,-123],[-116,-72],[-532,-366],[-109,-118],[-51,-139],[30,-144],[99,-242],[113,-118],[218,-113],[235,-103],[85,-62],[113,-108],[150,-344],[58,-180],[165,-1254],[167,-407],[22,-175],[-95,-78],[-222,-123],[-211,-165],[-88,-143],[-86,-143],[-48,-227],[-26,-178],[-7,-384],[-42,-188],[-201,-626],[-219,-669],[-70,-169],[-164,-138],[-280,25],[-219,28],[-154,-28],[-121,-42],[-108,-78],[-98,-197],[-32,-176],[-37,-116],[-80,-208],[-164,-134],[-151,-130],[-152,-130],[-107,-162],[-4,-3],[-2,-1],[-102,-67],[38,-584],[107,-669],[241,-188],[289,-240],[96,-283],[187,-479],[-234,-43],[-150,-161],[-130,-578],[-82,-817],[-243,-224],[-237,-175],[-287,-167],[-199,-25],[-171,59],[-204,99],[-237,134],[-287,-109],[-243,-75],[88,-249],[164,-315],[250,-593],[44,-266],[52,-165],[79,-121],[92,-207],[103,-44],[193,-21],[58,-204],[29,-177],[117,-117],[81,-113],[43,-101],[46,-123],[64,-91],[-25,-64],[-21,-59],[-71,-75],[-53,-11],[-89,-155],[-57,-123],[-96,-112],[-120,-150],[-148,-168],[59,-302],[-29,-201],[7,-649],[92,-661],[-27,-515],[-86,-433],[-21,-610],[-55,-1065],[-274,-282],[-101,-262],[-147,-343],[-240,-262],[-166,-218],[-29,-201],[50,-654],[-82,7],[-122,-40],[-105,-42],[-127,-58],[-99,-100],[-188,-167],[-302,-160],[-119,43],[-252,92],[-271,292],[-220,150],[-276,-17],[-210,25],[-166,200],[-149,158],[-259,17],[-210,50],[-154,83],[-166,166],[-193,75],[-188,1],[-12,19],[-275,455],[-187,191],[-205,142],[-215,175],[-287,166],[-193,9],[-320,-34],[-204,0],[-216,-66],[-204,-75],[-154,50],[-210,235],[-144,49],[-134,-3],[-79,-145],[-35,-175],[28,-192],[100,-116],[126,-5],[120,-73],[87,-186],[-28,-184],[-1,-10],[-129,-331],[11,-86],[10,-86],[177,-338],[56,-179],[192,-827],[78,-485],[55,-237],[276,-77],[272,-497],[142,-146],[96,-175],[129,-175],[77,-162],[91,-137],[22,-176],[-214,-900],[-20,-552],[41,-219],[483,-614],[153,-428],[1,-191],[-79,-340],[37,-403],[-28,-225],[-7,-845],[-2,-1316],[206,-525],[149,-147],[78,-165],[113,-85],[142,-331],[42,-374],[-23,-779],[23,-244],[141,-362],[-46,-510],[-90,-389],[-206,-253],[-104,-311],[-412,-253],[206,-486],[155,-506],[0,-700],[-65,-545],[-141,-350],[-374,-292],[-374,-78],[-413,-78],[-251,-172],[-270,-118],[-202,-118],[-318,-104],[-329,15],[-314,-141],[-332,-122],[-203,-41],[-133,-111],[-142,-170],[-87,-167],[-129,-100],[-127,-14],[-131,-21],[-134,109],[-231,37],[-196,58],[-5,2],[-579,-141],[-147,-170],[-231,-30],[-201,15],[-373,-44],[-247,-142],[-273,-169],[196,-400],[59,-238],[-57,-397],[-57,-397],[23,-419],[150,-177],[235,-237],[187,-208],[49,-710],[37,-264],[49,-358],[173,-130],[179,-81],[44,-270],[58,-354],[98,-106],[-38,-346],[-66,-345],[62,-309],[50,-283],[-6,-276]],[[488337,491315],[-3808,715],[-237,45],[-265,50],[-2618,492],[-831,156],[-753,100],[-1926,254],[-988,130],[16,23],[18,24],[3,7],[3,6],[80,189],[69,160],[72,169],[39,62],[33,24],[60,70],[34,124],[21,171],[-14,119],[-41,83],[-54,57],[-39,238],[14,295],[31,129],[41,47],[48,67],[27,238],[18,192],[-21,176],[-53,190],[-53,141],[-18,29],[-60,97],[12,66],[38,57],[69,5],[58,-36],[45,-36],[75,-26],[139,-3],[50,3],[65,-26],[93,-104],[27,26],[24,52],[38,41],[41,31],[55,52],[96,187],[121,206],[30,52],[59,112],[68,132],[52,108],[24,118],[55,84],[20,13],[21,13],[113,68],[83,77],[24,78],[9,83],[11,124],[-10,67],[32,71],[43,56],[72,86],[21,88],[-14,119],[-20,103],[9,116],[28,76],[-20,62],[-34,52],[-107,82],[-41,104],[-57,171],[-10,76],[-19,63],[-40,136],[-42,129],[5,44],[16,35],[19,57],[11,50],[3,46],[0,48],[-1,48],[-7,113],[-21,79],[-4,20],[-12,62],[-13,95],[-13,99],[-16,144],[-17,69],[-20,35],[-59,116],[-25,34],[-11,14],[-19,34],[5,26],[12,17],[13,17],[29,7],[17,-7],[10,22],[9,26],[-5,28],[-16,9],[-9,19],[-4,29],[0,31],[-23,82],[-8,67],[-13,22],[-29,157],[-23,63],[2,54],[19,28],[29,4],[29,-16],[25,0],[21,22],[21,38],[24,55],[16,45],[23,67],[6,98],[-3,28],[-3,28],[-17,35],[-25,25],[-12,48],[-9,66],[0,53],[9,45],[16,50],[7,47],[-3,14],[-10,43],[-17,57],[-5,27],[-8,47],[-5,49],[-13,25],[-27,19],[-11,22],[0,35],[0,28],[-8,38],[-20,86],[-34,119],[-21,98],[-19,123],[-17,101],[-17,82],[-27,37],[-29,26],[-67,19],[-12,34],[-6,73],[-9,79],[-21,68],[-27,74],[-34,63],[-10,53],[6,29],[0,3],[13,6],[23,0],[14,16],[7,35],[4,18],[4,19],[6,35],[21,22],[23,0],[21,3],[19,22],[5,35],[3,35],[11,69],[10,60],[46,92],[15,15],[37,32],[43,28],[43,29],[27,41],[28,63],[12,39],[42,131],[19,99],[60,141],[13,41],[17,31],[6,44],[14,22],[28,10],[33,36],[10,10],[15,11],[23,-16],[4,0],[21,3],[15,12],[17,29],[12,38],[6,44],[28,57],[37,38],[32,25],[51,5],[27,4],[72,13],[29,35],[21,34],[21,60],[3,37],[1,83],[19,35],[23,19],[29,11],[26,14],[35,41],[31,50],[17,33],[17,34],[15,91],[16,28],[27,16],[9,25],[0,26],[-29,29],[-26,28],[-23,31],[-11,33],[-9,21],[-19,12],[-17,19],[-8,32],[0,25],[12,25],[27,28],[24,23],[24,22],[21,33],[15,22],[8,30],[-1,67],[-1,15],[9,17],[9,18],[30,34],[35,23],[32,6],[50,29],[22,37],[8,46],[-6,43],[-23,58],[-26,37],[-38,86],[-10,20],[-11,43],[-14,26],[-42,35],[-1,31],[34,118],[-2,60],[-10,45],[-17,33],[-19,20],[-38,0],[-66,-8],[-33,-21],[-34,-25],[-12,-35],[-19,-15],[-26,-17],[-36,15],[-14,11],[10,38],[17,14],[-8,23],[-15,17],[-11,7],[-21,11],[-14,11],[-27,23],[-30,33],[-30,35],[-52,64],[-26,37],[-12,41],[-9,26],[-19,28],[-29,38],[-36,25],[-19,11],[-45,24],[-26,14],[-12,5],[-26,10],[-17,1],[-17,2],[-42,0],[-42,14],[-23,29],[-25,25],[-15,12],[-22,17],[-19,10],[-18,10],[-14,10],[-19,15],[-12,11],[-23,22],[-30,40],[-15,22],[-13,33],[-13,34],[-4,101],[8,51],[15,69],[16,26],[9,26],[12,34],[20,29],[40,35],[35,40],[4,26],[-8,80],[-14,57],[-17,64],[-15,75],[-63,183],[-38,176],[-57,155],[-78,195],[-48,138],[-22,46],[-23,95],[-21,69],[-27,58],[-27,48],[-36,144],[-31,23],[-24,-35],[-27,38],[0,71],[12,78],[9,75],[213,194],[188,173],[217,198],[125,235],[96,153],[194,307],[290,460],[198,152],[99,76],[294,538]],[[479869,512923],[306,-245],[480,-785],[250,-127],[527,-269],[80,-9],[380,-38],[467,238],[437,442],[11,11],[84,91],[69,64],[9,8],[8,9],[125,125],[136,-219],[11,368],[12,12],[116,117],[10,10],[11,11],[131,132],[115,117],[22,22],[92,93],[97,182],[98,183],[92,172],[19,71],[12,47],[5,19],[26,95],[22,83],[13,48],[5,20],[21,76],[17,63],[16,61],[13,48],[38,141],[29,110],[10,34],[9,35],[13,49],[13,49],[59,221],[132,234],[132,234],[326,281],[476,411],[207,179],[118,102],[477,411],[518,653],[259,327],[144,182],[115,145],[53,67],[53,67],[190,240],[191,240],[68,86],[139,175],[243,306],[121,154],[122,153],[66,83],[551,377],[508,82],[574,-384],[89,-59],[170,-113],[146,13],[209,20],[135,13],[105,10],[40,44],[77,85],[765,850],[367,284],[130,101],[906,702],[245,355],[27,40],[176,344],[349,681],[518,165],[834,265],[103,33],[442,234],[94,50],[183,96],[14,8],[68,45],[70,46],[51,35],[162,125],[884,688],[74,50],[394,336],[137,117],[103,65],[216,185],[54,46],[47,36],[30,22],[2,2],[472,297],[291,183],[315,198],[300,190],[261,164],[61,38],[121,77],[818,515],[355,220],[138,87],[131,86],[89,57],[392,246],[504,318],[129,82],[32,20],[323,203],[320,202],[132,83],[233,192],[157,130],[105,87],[122,301],[133,201],[501,345],[793,690],[264,230],[357,395],[276,345],[153,258],[36,347],[-10,72],[-34,20],[-26,-20],[-32,-46],[-73,-42],[-45,-29],[-19,6],[-20,7],[-43,47],[-68,48],[-67,9],[-52,55],[-67,147],[-21,64],[1,67],[25,82],[47,66],[24,24],[50,72],[67,117],[546,518],[193,188],[105,135],[61,127],[79,232],[87,229],[106,170],[1021,1031],[1135,1052],[503,472],[502,460],[689,591],[40,125],[-8,108],[-52,71],[-186,102],[-312,167],[-285,185],[-204,237],[-117,281],[-34,251],[10,277],[120,366],[276,327],[992,642],[999,543],[704,501],[970,614],[535,250],[296,70],[328,53],[246,77],[249,123],[261,134],[329,66],[106,47],[76,126],[55,185],[75,78],[139,83],[340,155],[427,132],[376,119],[289,119],[764,293],[385,213],[348,203],[182,-18],[91,-155],[194,-298],[174,-132],[467,263],[100,96],[1133,1194],[638,441],[1047,596],[1171,691],[649,186],[726,500],[571,431],[338,170],[229,10],[286,-58],[88,-202],[314,-255],[158,-48],[240,16],[959,537],[730,377],[1131,660],[1878,1180],[111,70],[447,159],[480,160],[1403,957],[1203,943],[711,546],[779,526],[972,426],[1059,601],[2014,1605],[4022,2419],[1915,1632],[58,50],[1103,939],[1559,1330],[442,377],[51,43],[1767,1368],[68,52],[42,33],[43,33],[26,20],[41,32],[30,23],[48,37],[43,33],[65,51],[38,29],[44,34],[38,30],[44,33],[36,28],[32,25],[82,64],[7,5],[119,87],[214,159],[52,36],[335,274],[65,50],[1309,1009],[765,658],[372,274],[394,291],[285,210],[1033,763],[725,606],[174,146],[532,444],[497,261],[8,4],[103,54],[408,215],[1107,486],[48,21],[418,183],[230,102],[11,4],[640,288],[647,190]],[[637666,166230],[-4427,-148],[-1169,81],[-1114,77],[-581,40],[-1564,108],[-1337,92],[-2,0],[-1358,26],[-1375,26],[-270,5],[-3888,-42],[-962,0],[-1149,-129],[-380,-42],[-1623,-385],[-679,-284],[-266,-36],[-678,-92],[-368,-100],[-406,4],[-317,151],[-183,87],[-62,25],[-495,203],[-263,45],[-482,83],[-253,9],[-558,19],[-235,-19],[-200,-16],[-292,-7],[-62,-133],[-12,-78],[-30,-202],[-123,-242],[-207,-128],[-227,-57],[-5,-1],[-221,-42],[-290,5],[-331,221],[-135,190],[-260,204],[-31,291],[84,171],[-103,156],[-176,76],[-324,138],[-498,82],[-191,32],[-916,85],[-344,33],[-1500,142],[-1458,138],[-598,8],[-1795,24],[-1094,14],[-127,2],[-389,9],[-1838,43],[-1031,23],[-81,2],[-1996,63],[-827,26],[-288,2],[-3756,21],[-995,5],[-2015,-108],[-1957,-105],[-2991,-142],[-4460,-521],[-3364,-546]],[[566895,195663],[176,24],[273,132],[425,282],[349,264],[300,189],[324,287],[189,146],[210,77],[312,45],[292,48],[557,-30],[386,43],[199,185],[721,1338]],[[553295,422681],[-58,169],[-20,182],[107,842],[-38,357],[-112,215],[-143,187],[-121,148],[-172,130],[-173,79],[-224,346],[-154,335],[-30,161],[6,168],[17,80],[30,73],[96,186],[161,226],[73,149],[136,454],[28,107],[39,152],[14,203],[-63,168],[-119,176],[-132,154],[-449,442],[-163,264],[-54,178],[-229,426],[-64,181],[-669,1038],[-44,159],[-36,393],[-112,115],[-149,50],[-126,93],[-261,339],[-291,164],[-374,153],[-220,272],[-127,328],[-338,400],[-170,-1],[-262,-109],[-126,-9],[-303,75],[-115,111],[-339,680],[-53,184],[-4,15],[-161,325],[-256,257],[-84,34],[-304,121],[-270,194],[-309,328],[-383,299],[-55,155],[56,156],[106,110],[615,282],[367,311],[233,284],[85,190],[113,357],[91,149],[271,172],[239,226],[142,322],[84,368],[91,139],[114,87],[84,146],[58,180],[-14,194],[-65,164],[-166,201],[-19,23],[-3,3],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-4,5],[-23,28],[-119,144],[-357,433],[-83,173],[-32,152],[2,221],[56,187],[107,96],[268,32],[290,-12],[119,49],[35,15],[241,325],[37,189],[-213,781],[-49,364],[70,1094],[114,637],[-12,122],[-1,6],[-7,73],[-80,138],[-134,109],[-418,460],[-141,85],[-339,44],[-296,126],[-120,111],[-100,154],[-78,409],[-487,910],[-169,390],[-43,163],[-69,126],[-22,42],[-235,312],[-106,217],[-84,525],[-84,925],[-86,394],[-15,180],[-56,172],[-140,126],[-438,-134],[-128,-10],[-121,39],[-99,137],[-112,347],[-113,208],[-340,399],[-105,245],[-29,544],[56,649],[-4,327],[91,283],[318,169],[217,6],[247,-139],[164,34],[114,142],[27,187],[-14,402],[43,579],[-163,351],[-57,197],[-3,46],[-1,12],[-9,142],[28,177],[297,448],[290,502],[196,399],[36,213],[-121,79],[-125,-6],[-192,60],[-93,171],[-26,175],[69,185],[14,193],[-78,156],[-233,205],[-118,186],[-66,202],[7,189],[136,571],[112,147],[241,230],[316,505],[122,324],[15,172],[-36,167],[-297,154],[-176,136],[-361,701],[-121,132],[-253,155],[-339,-49],[-305,202],[-247,268],[-162,401],[-496,626],[-78,160],[-50,193],[66,806],[-71,407],[-28,763],[34,564],[109,539],[32,155],[107,216],[310,360],[268,165],[411,134],[78,148],[57,187],[-57,473],[57,359],[84,203],[72,362],[98,188],[71,212],[83,659],[1,222],[-89,721],[40,583],[48,333],[65,222],[134,230],[225,258],[66,177],[26,291],[-26,219],[-2,17],[-69,191],[-16,197],[64,157],[129,-14],[97,133],[263,71],[119,91],[50,217],[-1,202],[-81,201],[-7,18],[-208,517],[-49,781],[-87,138],[-102,13]],[[447407,511915],[-70,-65],[-31,-68],[-19,-74],[3,-92],[10,-88],[14,-52],[27,-34],[78,-56],[69,-16],[167,13],[75,0],[49,-16],[45,-46],[33,-64],[29,-91],[-2,-101],[-41,-90],[-74,-63],[-48,-192],[-4,-285],[-18,-212],[-22,-219],[-48,-153],[-118,-85],[-80,-160],[-5,-93],[-13,-179],[40,-306],[92,-404],[132,-319],[110,-165],[144,-121],[155,-72],[57,-79],[53,-160],[-5,-126],[-17,-132],[-98,-145],[-162,-141],[-167,-212],[-186,-198],[-185,-198],[-116,-179],[-115,-178],[-255,-222],[-158,-172],[-75,-166],[26,-259],[71,-365],[-102,-351],[-233,-306],[-79,-185],[95,-243],[191,-268],[70,-139],[66,-379],[-48,-205],[-182,-233],[-614,-557],[-383,-510],[-453,-770],[-391,-658],[-409,-655],[-215,-246],[-378,-285],[-467,-219],[-382,-352],[-504,-597],[-676,-1072],[-120,109],[-32,-113],[-11,-118],[54,-130],[128,-312],[-52,-172],[-290,-259],[-57,-194],[156,-171],[251,-206],[453,-595],[25,-229],[325,157],[82,-135],[4,-582],[-15,-570],[-271,-905],[-132,-910],[66,-105],[394,-165],[580,-379],[138,-251],[88,-484],[139,-597],[6,-12],[7,-15],[3,-8],[89,-193],[18,-246],[-15,-176],[-19,-220],[-1,-16],[-2,-16],[-16,-187],[-83,-269],[-3,-162],[32,-113],[171,-608],[154,-216],[46,-430],[243,-474],[167,-577],[94,-260],[149,-47],[150,-102],[161,-323],[257,-463],[248,-469],[20,-37],[381,-460],[57,26],[281,-212],[951,780],[615,357],[502,681],[225,519],[15,802],[234,1539],[418,1005],[361,851],[-11,677],[78,651],[768,408],[350,784],[259,442],[545,211],[821,317],[757,240],[586,186],[766,-670],[1460,-502],[221,-100],[616,-278],[1131,-462],[664,56],[1004,619],[661,758],[609,425],[429,-221],[339,-477],[-79,-1208],[-23,-1856],[-9,-126],[133,-78],[232,16],[91,62],[214,147],[305,209],[1404,962],[790,681],[790,732],[367,350],[117,112],[633,603],[632,603],[835,1022],[922,1217],[477,632],[667,425],[440,569],[1230,1481],[190,271],[318,454],[129,904],[18,124],[37,406],[19,207],[-60,534],[-232,534],[-834,1040],[-403,906],[-134,303],[-69,922],[-93,1250],[-34,315],[-37,342],[169,392],[486,306],[1815,1040],[234,-49],[292,-396],[345,-170],[595,364],[251,522],[485,435],[312,264],[302,286],[1424,1264],[535,492],[881,664],[820,12],[408,-352]],[[330879,414714],[-1494,-1630],[-1374,-3341],[-1560,-2115],[-1279,-659],[-242,29],[-181,22],[-520,1085],[-99,153],[-496,429],[-574,211],[-491,-114],[-1299,-768],[-70,-42],[-1150,-1082],[-1605,-2764],[-532,-564],[-1171,470],[-1131,-296],[-742,423],[-630,889],[-221,17],[-189,-38],[-81,-16],[-328,-282],[-1146,-1592],[-988,-1042],[-736,-1337],[-46,-2204],[-41,-356],[-132,-732],[80,-510],[466,-511],[1003,-217],[289,-213],[148,-475],[-25,-814],[-155,-185],[-273,-534],[-6,-291],[-267,-266],[-1526,-261],[-233,-354],[-183,99],[-195,435],[-193,226],[-1,2],[-86,40],[-156,67],[-79,17],[-53,11],[-182,-80],[-164,-122],[-333,-753],[-61,-303],[-14,-69],[-161,-186],[-2,-412],[46,-171],[88,-374],[160,-223],[267,-393],[80,-486],[33,-689],[238,-821],[169,-491],[-651,-927],[-519,-746],[-422,164],[-751,340],[-282,71],[-359,-238],[-97,79],[-142,116],[-303,302],[-255,-254],[-315,191],[-134,82],[-378,-537],[-205,-939],[-63,-315],[58,-305],[266,-339],[197,-488],[78,-946],[-538,-833],[-5,-7],[-305,-678],[-28,-469],[17,-309],[-168,-346],[-687,-215],[-471,-462],[-97,-558],[-25,-146],[-5,-24],[-2,-15],[-2,-13],[-3,-12],[-1,-11],[-1,-4],[-4,-20],[0,-4],[-1,-4],[-67,-962],[-125,-421],[-172,-293],[-190,-240],[-216,-271],[-45,-25],[-225,-127],[-103,-68],[-364,-137],[-494,255],[-367,447],[-249,760],[-613,1265],[-1619,1564],[-552,-70],[-535,-153],[-386,-110],[-518,-148],[-206,-206],[-106,-82],[-143,-17],[-471,-106],[-74,-51],[-51,-92],[-30,-83],[-3,-128],[398,-631],[421,-714],[-68,-100],[-60,-89],[-89,-188],[-136,-364],[-27,-269],[88,-407],[-56,-110],[-151,-180],[-170,-209],[-69,-84],[-289,-368],[-232,-264],[-55,-63],[-139,-158],[-555,-1300],[-874,-1538],[-551,-824],[-13,-23],[-526,-964],[-174,-319],[-280,-70],[-195,70],[-154,44],[-93,-2],[-16,-3],[-20,-4],[-57,-10],[-182,-33]],[[178091,433111],[131,24],[73,40],[65,31],[47,19],[23,46],[23,47],[39,106],[42,127],[35,105],[31,81],[22,54],[26,50],[31,58],[56,66],[80,91],[158,213],[194,251],[133,153],[19,40],[8,38],[0,42],[-22,81],[-12,73],[-9,99],[-3,130],[2,79],[2,73],[14,74],[9,44],[16,77],[19,60],[35,71],[38,46],[42,34],[28,3],[16,-15],[18,-25],[26,-15],[31,1],[36,14],[39,29],[57,71],[74,109],[42,57],[27,21],[33,10],[35,3],[27,-12],[24,-29],[10,-47],[10,-34],[23,-32],[57,-67],[51,-52],[37,-29],[30,-19],[34,-2],[26,10],[23,33],[18,46],[8,51],[-5,41],[-18,53],[-34,98],[-30,67],[-31,66],[-14,72],[2,99],[14,94],[10,92],[-14,118],[-9,82],[-6,150],[-6,85],[-6,87],[-15,90],[-7,124],[8,97],[19,90],[35,85],[87,145],[41,45],[42,16],[42,-26],[28,-37],[5,-39],[-2,-58],[6,-28],[19,-12],[28,16],[106,108],[19,25],[113,148],[123,214],[120,182],[71,101],[59,63],[44,39],[33,0],[43,-5],[91,-71],[61,-34],[71,-29],[51,-31],[48,-50],[28,-48],[37,-65],[38,-37],[40,-42],[49,-82],[37,-97],[31,-100],[23,-71],[10,-65],[-10,-58],[-28,-71],[-6,-50],[8,-102],[3,-108],[9,-102],[22,-77],[35,-71],[42,-42],[42,-23],[64,-14],[35,25],[48,27],[109,27],[146,58],[356,89],[296,137],[120,47],[144,95],[185,97],[125,63],[55,55],[33,48],[13,76],[14,139],[19,114],[15,84],[41,80],[26,37],[30,3],[54,-50],[92,-110],[135,-147],[48,-100],[22,-138],[17,-162],[8,-81],[39,-118],[21,-71],[-2,-82],[-28,-73],[-38,-43],[-77,6],[-76,-31],[-70,-22],[-113,-42],[-68,-43],[-52,-60],[-28,-45],[-25,-99],[-18,-72],[10,-63],[37,-63],[43,-72],[46,-82],[122,-184],[114,-122],[61,-57],[67,-23],[86,-34],[104,-37],[112,10],[69,32],[75,31],[65,63],[31,45],[16,74],[-16,50],[-52,86],[-52,87],[-80,131],[-74,169],[-17,90],[0,62],[19,56],[33,45],[33,39],[48,71],[87,193],[65,144],[32,35],[44,18],[100,-6],[98,16],[119,-1],[207,36],[149,26],[83,15],[51,16],[60,51],[71,61],[107,144],[55,102],[42,116],[-6,32],[-11,39],[-32,47],[-33,14],[-57,10],[-23,19],[-5,39],[14,94],[12,85],[7,47],[-14,110],[-14,103],[11,115],[45,176],[50,98],[72,65],[84,24],[62,-13],[59,-40],[53,-92],[32,-55],[35,-62],[32,-69],[56,-47],[92,-48],[92,-68],[79,-60],[129,-132],[125,-133],[39,-45],[37,-36],[48,-28],[62,-22],[71,26],[61,28],[57,55],[45,86],[49,145],[38,195],[76,387],[16,83],[26,58],[34,20],[50,35],[51,34],[64,66],[111,141],[88,117],[50,106],[19,88],[-8,71],[-7,35],[-13,15],[-25,18],[-27,13],[-24,21],[-31,29],[-27,41],[-28,46],[-21,41],[-21,48],[-13,50],[-7,42],[-13,27],[-20,22],[-32,12],[-42,29],[-21,42],[-10,31],[-3,21],[7,19],[20,36],[33,76],[13,63],[13,62],[15,73],[16,43],[17,64],[2,53],[3,74],[-19,102],[-19,79],[-30,55],[-56,95],[-15,26],[-13,55],[3,36],[21,36],[48,52],[48,92],[173,696],[21,76],[50,75],[53,81],[116,110],[126,134],[92,128],[52,95],[20,68],[-2,79],[-2,184],[-2,189],[18,95],[38,79],[47,50],[58,23],[54,-10],[27,-42],[21,-48],[-3,-55],[-14,-94],[-16,-64],[12,-39],[28,-20],[44,28],[36,18],[44,-10],[61,-21],[52,-16],[58,18],[62,11],[72,5],[69,-13],[30,-16],[24,-34],[18,-67],[16,-61],[3,-82],[-7,-68],[-23,-61],[-34,-55],[-13,-37],[-7,-47],[17,-22],[34,11],[45,0],[42,-15],[33,-27],[35,-42],[38,-68],[35,-53],[23,-47],[35,-102],[42,-125],[10,-80],[7,-95],[-5,-71],[-6,-68],[11,-55],[28,-21],[50,-16],[63,-37],[64,-34],[53,-66],[29,-52],[32,-77],[14,-97],[11,-104],[16,-130],[28,-157],[23,-129],[35,-108],[29,-63],[30,-81],[33,-59],[54,-44],[52,-2],[35,36],[73,87],[80,129],[100,158],[73,147],[28,107],[8,82],[9,184],[16,105],[39,88],[67,98],[60,102],[82,140],[53,142],[51,139],[35,77],[36,44],[51,27],[44,-3],[38,-29],[71,-2],[71,20],[133,8],[179,-19],[127,6],[108,29],[101,37],[68,60],[75,105],[40,69],[19,79],[6,78],[-7,82],[-25,79],[-85,142],[-92,149],[-47,59],[-79,52],[-59,65],[-51,74],[-40,97],[-10,66],[12,47],[26,40],[42,36],[92,42],[58,35],[54,57],[36,42],[29,89],[78,132],[87,92],[59,63],[70,55],[78,13],[77,-15],[130,-27],[105,-28],[102,-46],[91,-41],[126,-53],[113,-39],[103,-40],[95,-75],[100,-127],[50,-60],[51,-61],[101,-94],[62,-82],[41,-34],[57,-8],[56,19],[43,57],[63,169],[45,134],[15,98],[-9,133],[-32,97],[-31,110],[-12,100],[7,105],[10,158],[23,105],[31,79],[44,58],[41,47],[68,21],[61,8],[58,-8],[137,-74],[79,-57],[85,-37],[93,-29],[113,5],[94,8],[113,0],[188,-62],[83,-15],[91,51],[78,108],[45,70],[65,68],[31,98],[28,144],[9,94],[-17,85],[-37,21],[-42,-4],[-45,-47],[-54,-13],[-61,17],[-57,30],[-28,71],[-39,43],[-48,111],[-20,102],[-42,51],[-48,0],[-53,34],[-40,76],[-50,110],[-9,119],[17,140],[-8,89],[-14,97],[11,167],[-9,152],[-19,183],[-20,178],[-31,140],[-31,102],[-62,55],[-59,39],[-84,-13],[-43,42],[-36,64],[-37,98],[-42,119],[-8,106],[-23,85],[-25,110],[-31,102],[8,106],[17,89],[37,81],[81,59],[299,200],[168,127],[158,191],[70,115],[14,72],[-8,64],[-31,25],[-48,38],[-42,13],[-42,38],[0,77],[19,97],[20,85],[40,30],[45,-13],[78,0],[76,26],[62,51],[45,63],[14,109],[-11,70],[-25,63],[-37,102],[-19,98],[-23,89],[7,136],[33,107],[13,41],[31,191],[12,264],[5,216],[-14,132],[-31,152],[-36,81],[-57,60],[-67,50],[-56,73],[-60,51],[-67,34],[-51,55],[-50,59],[-43,68],[-16,127],[2,111],[20,87],[0,87],[-20,93],[-25,102],[-11,94],[22,80],[37,64],[31,68],[62,0],[62,-17],[62,21],[67,38],[149,204],[54,51],[59,0],[67,-30],[74,-38],[56,-30],[60,32],[44,36],[53,-8],[57,-64],[49,-137],[117,-193],[59,-35],[65,-21],[47,-51],[26,-85],[-6,-93],[-31,-80],[-51,-56],[-50,-77],[-31,-85],[-17,-127],[8,-81],[34,-68],[56,-25],[71,4],[90,17],[96,17],[73,26],[157,80],[209,179],[84,97],[28,77],[70,72],[85,89],[87,81],[107,29],[82,13],[81,-38],[70,-68],[46,-85],[45,-59],[45,-2],[59,14],[62,60],[33,131],[-2,200],[87,131],[127,187],[104,217],[129,195],[127,234],[42,118],[34,153],[53,128],[62,93],[54,68],[64,21],[65,21],[79,-25],[98,-77],[121,-55],[113,-72],[138,-98],[107,-42],[107,34],[121,8],[95,43],[73,55],[54,115],[28,140],[-14,242],[-39,165],[15,204],[49,319],[40,97],[22,81],[23,89],[5,81],[-47,72],[-93,4],[-82,67],[-73,120],[-62,59],[-68,94],[-59,68],[-47,106],[-29,123],[20,131],[25,115],[51,85],[118,72],[130,98],[180,140],[104,80],[90,26],[104,51],[68,51],[53,72],[42,76],[9,92],[-9,91],[6,106],[14,115],[3,123],[8,106],[9,102],[41,61],[125,100],[56,64],[65,38],[59,-8],[84,-30],[73,-26],[51,-63],[45,-90],[39,-80],[34,-89],[62,-136],[59,-47],[59,-30],[49,-24],[35,-39],[49,-38],[62,-60],[47,-42],[59,-39],[48,-4],[59,-8],[43,-21],[50,-22],[68,-34],[65,-25],[61,-30],[88,17],[526,4],[233,77],[175,59],[96,38],[93,9],[73,4],[53,-8],[40,-22],[39,-51],[0,-67],[-11,-37],[-12,-36],[-59,-85],[-42,-106],[-48,-93],[-28,-106],[-42,-183],[-25,-127],[-15,-270],[8,-460],[38,-119],[53,-110],[51,-107],[81,-72],[62,-106],[34,-89],[3,-110],[70,-382],[17,-124],[11,-114],[14,-111],[10,-36],[10,-36],[23,-68],[47,-63],[48,-56],[85,-182],[70,-81],[24,-9],[3,-1],[63,-24],[76,-8],[54,55],[50,64],[17,76],[0,98],[0,93],[-3,89],[-14,77],[-31,114],[-25,106],[-11,98],[31,64],[25,72],[25,110],[34,128],[37,131],[31,123],[39,187],[28,153],[3,170],[0,148],[6,136],[45,123],[24,30],[74,89],[82,123],[73,98],[50,89],[34,149],[48,165],[39,170],[15,115],[25,72],[42,25],[56,-4],[57,-25],[62,-73],[81,-76],[62,4],[56,-25],[34,-9],[45,43],[56,80],[62,60],[86,76],[66,106],[48,98],[34,72],[45,30],[56,-17],[65,-47],[20,-97],[-9,-94],[23,-76],[48,-51],[98,-47],[96,-8],[93,29],[81,17],[87,34],[68,26],[84,-9],[62,-29],[73,0],[68,0],[55,6],[60,28],[57,38],[36,51],[4,29],[5,30],[-40,89],[-76,77],[-33,135],[-48,124],[-39,78],[-85,28],[-65,4],[-56,76],[-48,51],[-51,-17],[-47,0],[-20,64],[-23,72],[17,94],[68,38],[62,25],[25,85],[17,119],[42,115],[6,89],[22,59],[20,17],[20,17],[45,-13],[208,-46],[101,25],[135,51],[158,60],[143,114],[169,183],[68,110],[70,144],[37,141],[-26,106],[-50,152],[-23,145],[54,153],[56,123],[37,165],[30,149],[-8,148],[-14,124],[48,191],[20,169],[22,141],[118,178],[256,204],[73,76],[65,85],[130,131],[168,81],[105,21],[107,73],[157,131],[253,111],[231,110],[180,25],[158,-46],[87,-51],[20,-94],[74,-89],[148,-30],[35,13],[148,51],[51,68],[25,115],[8,140],[31,127],[57,98],[123,72],[150,68],[205,0],[174,-35],[122,-25],[137,-17],[85,-46],[135,12],[194,43],[200,-51],[115,-98],[124,-89],[37,18],[38,18],[49,96],[22,131],[6,102],[20,106],[70,90],[93,50],[82,56],[50,46],[54,43],[45,13],[28,-51],[34,-56],[67,-21],[85,-8],[59,-30],[70,-34],[76,-34],[73,-55],[31,-33],[79,-86],[77,-173],[95,-150],[62,-76],[36,-102],[17,-136],[25,-102],[28,-59],[57,-26],[142,60],[167,106],[118,76],[102,34],[84,51],[54,73],[48,135],[50,153],[48,132],[39,114],[37,64],[48,64],[53,21],[82,-17],[166,-119],[225,-195],[149,-132],[73,-46],[57,-34],[78,46],[85,77],[98,38],[90,51],[65,64],[28,135],[31,145],[-28,127],[-62,98],[-79,212],[0,166],[74,195],[121,573],[135,131],[132,170],[52,75],[58,121],[56,118],[67,153],[60,106],[61,60],[62,25],[54,-25],[65,-21],[87,12],[87,0],[79,13],[76,47],[48,106],[31,119],[73,76],[95,43],[74,34],[70,-13],[42,-85],[31,-153],[62,-97],[17,-26],[179,-142],[57,-66],[113,-51],[282,-84],[219,-26],[87,0],[54,42],[32,101],[29,171],[37,229],[8,157],[48,144],[147,125],[64,79],[88,81],[92,72],[82,21],[90,-8],[96,-60],[65,-97],[42,-72],[48,-43],[50,-25],[59,-9],[79,9],[76,76],[56,42],[88,30],[101,4],[63,-2],[64,-2],[106,-51],[62,-89],[26,-127],[33,-115],[78,-99],[89,-156],[60,-119],[101,-120],[128,-66],[102,-17],[112,-9],[149,22],[197,34],[166,39],[169,3],[279,4],[138,13],[70,-21],[39,-89],[54,-124],[70,-97],[73,-98],[9,-123],[17,-157],[62,-250],[73,-200],[248,-422],[75,-130],[31,-136],[16,-146],[21,-130],[25,-127],[28,-76],[51,-56],[59,-46],[68,17],[101,29],[132,-25],[154,-79],[114,-74],[73,-153],[48,-93],[39,-98],[62,-72],[73,4],[87,-38],[105,0],[84,-4],[87,-47],[93,-97],[68,-149],[122,-115],[63,-68],[85,34],[236,153],[225,162],[211,263],[62,123],[31,259],[0,157],[28,161],[88,217],[126,293],[124,195],[104,136],[113,178],[143,161],[124,115],[132,4],[186,-102],[37,-106],[50,-161],[64,-178],[38,-94],[61,-127],[144,-145],[132,-101],[118,-123],[93,-43],[90,0],[71,68],[36,85],[5,145],[-27,194],[-42,247],[-9,259],[20,220],[50,272],[46,149],[50,119],[110,93],[175,91],[95,41],[96,38],[81,21],[93,47],[107,110],[45,110],[6,115],[-9,102],[-8,132],[-14,144],[11,161],[56,111],[197,192],[170,129],[75,99],[56,59],[71,4],[90,-72],[203,-178],[236,-200],[270,-140],[276,-89],[250,-12],[428,114],[355,136],[137,93],[265,115],[93,59],[81,115],[40,127],[-23,140],[-72,74],[-51,37],[-116,151],[-50,65],[-82,13],[-99,43],[-92,72],[-71,68],[-36,72],[-17,102],[28,127],[67,72],[82,34],[107,60],[135,38],[118,42],[116,55],[137,102],[121,149],[102,85],[143,38],[121,34],[119,51],[132,85],[107,119],[107,123],[107,85],[332,97],[140,98],[144,140],[96,144],[45,140],[8,128],[76,114],[115,77],[155,8],[127,39],[118,42],[84,59],[38,69],[97,246],[121,267],[48,72],[65,38],[79,-8],[84,-38],[155,-34],[234,-26],[183,-106],[186,-201],[30,-32],[234,-47],[240,45],[115,23],[126,-34],[169,-161],[164,-96],[151,-138],[166,-182],[242,-124],[180,-17],[161,34],[132,145],[219,263],[172,178],[127,140],[104,132],[90,136],[79,157],[64,178],[34,94],[28,182],[3,178],[3,183],[11,123],[45,85],[110,76],[180,51],[135,43],[93,-9],[70,-85],[26,-93],[-20,-123],[-16,-124],[41,-37],[102,42],[112,76],[101,77],[144,161],[248,433],[140,327],[51,267],[3,136],[17,140],[59,140],[62,102],[92,34],[102,-12],[267,38],[24,1],[421,20],[239,76],[469,409],[300,261],[4,3],[142,143],[174,114],[163,55],[141,13],[128,-27],[10,-3],[121,-123],[163,-85],[312,-110],[271,-68],[109,25],[161,64],[709,565],[473,611],[306,399],[144,217],[178,130],[506,188],[312,216],[512,374],[386,161],[619,374],[231,61],[349,-14],[315,59],[304,115],[239,165],[388,357],[141,216],[146,179],[141,131],[146,43],[124,21],[146,-17],[155,-38],[386,21],[183,34],[540,344],[20,14],[10,7],[13,10],[17,12],[1,1],[91,66],[87,123],[65,111],[39,68],[34,93],[-3,98],[6,169],[25,149],[34,157],[45,102],[82,64],[84,68],[59,80],[65,72],[77,24],[69,20],[208,-9],[200,-30],[87,-56],[200,-7],[48,1],[149,2],[251,-30],[183,-59],[160,-64],[187,-64],[71,-24],[223,-14],[173,7],[396,15],[253,-5],[141,26],[123,64],[150,89],[50,59],[26,94],[11,182],[36,178],[29,196],[14,178],[-9,119],[-22,144],[-136,492],[-25,166],[-14,204],[-17,212],[-33,195],[-45,225],[-60,238],[-25,157],[-14,128],[-10,284],[-7,195],[-11,556],[8,429],[9,204],[45,118],[191,463],[54,94],[70,55],[51,21],[45,-38],[17,-123],[33,-170],[36,-151],[7,-104],[33,-55],[34,-25],[70,63],[96,64],[39,60],[65,46],[161,47],[174,38],[183,-30],[121,-63],[90,-85],[122,-258],[129,-273],[182,-318],[147,-280],[87,-119],[104,-94],[76,-34],[79,-21],[70,34],[51,68],[17,153],[-17,174],[-51,195],[-64,297],[-9,225],[28,238],[76,217],[65,72],[113,25],[190,52],[211,27],[109,-14],[111,-48],[299,-93],[220,-63],[146,-22],[112,-8],[99,38],[78,59],[92,55],[308,208],[110,81],[81,72],[79,94],[45,76],[32,127],[44,174],[65,234],[71,207],[140,243],[98,212],[82,136],[118,72],[79,17],[99,-47],[233,26],[194,-38],[203,-89],[110,-60],[33,-53],[34,-53],[366,-700],[90,-136],[65,-94],[67,-63],[68,-51],[96,-51],[123,-34],[108,-10],[58,35],[119,-4],[104,-26],[98,-33],[135,-9],[155,30],[118,38],[99,30],[28,-3],[62,-6],[126,-30],[88,-43],[67,-33],[222,-178],[54,-36],[82,-53],[115,-30],[124,8],[147,17],[106,60],[94,130],[83,260],[45,276],[7,153],[5,157],[56,123],[67,39],[87,32],[102,27],[228,-81],[165,-38],[128,-17],[54,22],[55,23],[107,48],[450,213],[112,103],[144,149],[117,196],[92,255],[121,365],[71,168],[14,33],[115,127],[109,192],[105,200],[119,96],[153,54],[270,25],[230,-98],[219,-47],[156,17],[303,73],[91,19],[207,42],[261,141],[215,209],[119,183],[109,176],[96,195],[46,94],[34,127],[31,170],[48,162],[123,203],[140,119],[121,59],[88,39],[88,-13],[132,-25],[149,-30],[127,-55],[296,-228],[115,-99],[92,-17],[93,21],[76,48],[102,34],[157,24],[145,51],[100,34],[265,169],[168,133],[51,63],[53,81],[40,93],[0,102],[-34,72],[-51,60],[-101,83],[-56,44],[-59,38],[-65,14],[-114,-55],[-114,-22],[-62,-9],[-76,51],[-95,72],[-41,93],[-10,60],[21,122],[176,132],[62,40],[138,91],[60,51],[9,8],[5,4],[92,78],[163,56],[163,29],[186,5],[422,-47],[298,-72],[192,-17],[270,-85],[239,-94],[189,-55],[177,-42],[177,17],[172,21],[160,59],[152,81],[166,242],[493,751],[64,136],[59,119],[51,81],[82,59],[118,81],[176,52],[136,63],[383,250],[133,96],[287,207],[157,113],[52,42],[74,60],[65,85],[62,63],[23,81],[4,90],[-33,279],[-8,196],[3,131],[34,179],[36,119],[42,106],[90,89],[167,97],[303,170],[163,65],[29,12],[171,85],[144,123],[172,182],[177,178],[110,102],[115,22],[82,-26],[33,-76],[0,-85],[3,-123],[-14,-70],[28,-96],[40,-85],[70,-17],[59,17],[87,30],[119,42],[219,124],[141,127],[59,89],[28,140],[-28,123],[-56,98],[-90,85],[-23,68],[-3,178],[17,123],[31,123],[39,136],[74,115],[81,106],[161,136],[177,131],[211,136],[189,68],[233,51],[169,-47],[169,-89],[134,-137],[219,-237],[145,-127],[135,-81],[152,-21],[73,26],[76,1],[93,-6],[101,-12],[93,-17],[70,4],[68,17],[48,76],[42,145],[8,131],[14,188],[52,225],[22,203],[-9,165],[-3,141],[-2,165],[22,153],[28,119],[76,80],[85,73],[104,114],[70,77],[71,34],[67,12],[51,-59],[39,-98],[48,-97],[67,-73],[60,-67],[28,-136],[14,-145],[-6,-220],[-31,-123],[-11,-124],[6,-157],[14,-208],[59,-225],[34,-169],[8,-158],[-45,-191],[-59,-229],[-14,-195],[-6,-217],[23,-259],[25,-309],[20,-166],[8,-195],[25,-166],[45,-161],[48,-157],[40,-98],[48,-72],[84,-13],[143,-17],[119,0],[104,0],[112,-34],[79,-34],[113,-152],[129,-111],[341,-134],[98,-36],[82,-87],[42,-70],[53,-51],[64,2],[63,-7],[127,-23],[85,-37],[49,-57],[28,-75],[4,-79],[-20,-174],[6,-186],[-12,-141],[-42,-84],[-81,-60],[-82,21],[-70,34],[-88,-38],[-241,-208],[-124,-59],[-240,-20],[-213,-86],[-88,-60],[-84,-59],[-68,-98],[-31,-89],[14,-123],[76,-136],[85,-119],[118,-225],[152,-144],[155,-145],[231,-101],[149,-17],[194,17],[231,29],[121,21],[126,-8],[85,-42],[59,-34],[62,-47],[36,-85],[6,-204],[56,-475],[90,-433],[135,-370],[110,-229],[62,-127],[77,-86],[78,-34],[155,-18],[157,-28],[414,72],[332,9],[188,4],[96,-34],[79,-46],[90,-68],[76,-73],[42,-106],[17,-174],[-8,-161],[-29,-102],[-95,-64],[-82,-68],[-73,-80],[-58,-58],[-74,-133],[-37,-108],[-28,-177],[-11,-174],[-14,-165],[8,-119],[25,-106],[43,-72],[64,-43],[88,-8],[112,51],[93,101],[87,73],[90,59],[107,34],[144,4],[95,-4],[85,-8],[65,-9],[61,-34],[57,-93],[53,-149],[59,-221],[43,-216],[45,-166],[42,-89],[45,-59],[34,-22],[25,-16],[81,-13],[68,63],[48,71],[65,40],[115,59],[200,106],[242,107],[98,4],[102,-21],[104,-30],[95,-34],[71,-60],[73,-93],[36,-136],[8,-154],[-33,-113],[-39,-115],[-14,-136],[31,-102],[53,-55],[85,-42],[87,25],[193,-4],[426,115],[141,97],[118,119],[115,200],[177,377],[141,306],[64,219],[57,227],[146,535],[113,250],[61,82],[85,118],[99,55],[98,21],[85,17],[140,64],[130,102],[110,123],[84,144],[87,157],[62,166],[37,212],[48,301],[76,412],[59,344],[59,242],[59,191],[65,127],[107,153],[239,225],[81,128],[59,123],[51,148],[82,115],[43,50],[38,43],[71,55],[62,26],[81,-34],[79,-115],[127,-97],[239,-81],[155,-34],[89,-50],[145,-136],[129,-179],[87,-42],[141,8],[109,14],[161,54],[332,81],[380,152],[101,73],[101,85],[96,76],[84,115],[71,123],[39,178],[6,276],[-6,208],[-36,229],[-51,251],[-68,195],[-67,131],[-14,128],[39,93],[100,88],[2,1],[106,60],[96,-15],[82,-32],[112,9],[58,31],[75,16],[115,12],[182,-86],[159,-120],[42,-68],[50,-108],[68,-140],[83,-82],[84,-147],[98,-157],[101,-98],[90,-38],[174,0],[135,8],[147,64],[140,76],[102,85],[56,60],[53,63],[62,47],[45,42],[65,5],[53,-26],[80,-43],[79,-16],[36,21],[64,48],[96,12],[93,21],[104,68],[107,72],[65,89],[87,178],[76,149],[73,174],[65,267],[25,276],[34,174],[62,196],[76,229],[79,157],[121,153],[138,89],[129,80],[146,30],[166,26],[127,-22],[84,-72],[82,-72],[79,-110],[50,-111],[37,-288],[48,-111],[93,-68],[95,-34],[79,9],[172,115],[163,42],[84,-9],[124,-107],[85,-24],[129,-30],[104,43],[88,51],[112,127],[124,140],[116,93],[112,136],[115,4],[82,-80],[59,-115],[22,-123],[3,-174],[-39,-157],[-87,-72],[-85,-26],[-65,-97],[-11,-119],[40,-111],[70,-72],[73,-42],[68,-21],[129,-26],[73,-85],[31,-174],[-39,-123],[-87,-64],[-33,-53],[-32,-116],[39,-247],[37,-173],[22,-153],[34,-92],[3,-104],[-37,-144],[-2,-153],[14,-221],[78,-301],[74,-183],[370,-915],[43,-68],[42,-69],[96,-119],[123,-122],[78,-34],[103,-48],[110,-157],[84,-149],[79,-199],[28,-212],[45,-204],[73,-349],[105,-335],[84,-229],[84,-178],[127,-166],[85,-68],[137,-4],[93,38],[99,115],[76,115],[610,1057],[142,333]],[[309311,193760],[-37,-56],[-27,-110],[1,-114],[-101,76],[-38,2],[-34,-17],[-74,-49],[-23,-23]],[[308978,193469],[-15,29],[-14,42],[-450,136],[-1089,645],[-8932,5295],[-39,24],[-197,116],[-69,41],[-1755,1040],[-46,28],[-1775,1052],[-564,335],[-3964,2349],[-3106,1842],[-54,32],[-115,59],[-74,57],[-59,61],[-73,41],[-197,158],[-203,117],[-271,161],[-49,53],[-71,13],[-35,46],[-41,31],[-39,25],[-48,58],[-34,79],[-19,54],[-18,54],[-33,77],[-21,100],[18,117],[14,330],[4,212],[-25,130],[-27,108],[-37,117],[-81,121],[-24,36],[-170,251],[-922,1370],[-84,53],[-69,42],[-201,15],[-696,-30],[-199,-40],[-145,10],[-138,67],[-62,89],[-748,874],[-137,178],[-121,-12],[-113,-104],[-255,-335],[-113,-74],[-138,0],[-101,37],[-101,134],[-328,910],[-97,317],[-101,159],[-178,287],[-154,299],[-211,116],[-169,140],[-72,75],[-74,78],[-617,918],[-152,-50],[-189,-64],[-245,108],[-304,351],[-25,242],[-26,281],[-88,132],[-55,59],[-55,60],[-229,257],[-593,659],[-242,269],[-119,131],[-52,165],[-52,164],[230,502],[4,328],[-94,171],[-93,170],[-75,148],[52,539],[-13,300],[-12,300],[19,328],[36,613],[-375,1499],[152,1026],[163,556],[837,710],[516,3626],[59,266],[100,221],[117,133],[199,85],[120,-15],[398,143],[535,264],[1055,262],[803,522],[363,103],[770,-204],[657,-75],[417,88],[550,622],[150,381],[13,186],[-42,304],[-148,512],[-127,963],[28,207],[282,738],[520,632],[236,345],[255,-82],[247,-154],[198,-57],[149,137],[76,532],[65,240],[-64,480],[-248,346],[-217,172],[-207,223],[-114,219],[-677,405],[-260,273],[13,186],[49,156],[50,70],[171,698],[82,135],[106,-21],[143,-134],[140,124],[87,159],[33,630],[-56,159],[-84,157],[-113,71],[-346,117],[-78,116],[148,766],[-8,211],[-134,303],[248,959],[20,187],[150,370],[-21,140],[14,158],[325,353],[232,128],[291,45],[170,126],[49,162],[-58,300],[-97,265],[120,673],[119,306],[151,80],[386,-5],[608,-233],[390,-86],[246,-18],[369,66],[394,408],[383,-8],[204,-56],[191,43],[451,-26],[84,83],[89,243],[238,440],[43,127],[261,443],[557,527],[305,848],[58,434],[26,718],[106,319],[292,463],[56,166],[19,314],[-49,136],[-239,329],[128,208],[394,261],[566,503],[219,381],[78,210],[30,167],[-15,143],[-186,389],[-324,316],[0,121],[44,241],[-25,89],[-4,16],[-105,120],[-828,623],[-474,95],[-522,262],[-411,387],[-311,412],[-189,192],[-149,152],[-157,71],[-248,-63]],[[289536,258887],[0,1],[0,1]],[[289536,258889],[1,1],[0,1]],[[289537,258892],[0,1],[0,1]],[[319281,270000],[-54,-109]],[[319213,269864],[-203,-391]],[[319155,224736],[25,-667],[0,-455],[41,-394],[203,-674],[190,-961],[434,-2194],[55,-276],[-59,-599],[-5,-352],[48,-320],[185,-520],[35,-196],[-13,-155],[-64,-88],[-11,-160],[-69,-1328],[-31,-232],[-11,-216],[48,-192],[53,-216],[106,-176],[111,-112],[149,-32],[100,-120],[64,-224],[-89,-37],[-90,-38],[141,-210],[286,-493],[291,-490],[228,-313],[180,-751],[104,-418],[394,-375],[228,-658],[-62,-615],[-119,-328],[-17,-49],[-3,-9],[-41,-218],[32,-499],[-348,-469],[-306,-279],[-331,-370],[-237,113],[-565,-517],[0,-1],[-161,-473],[-138,-637],[-232,-346],[-259,-294],[-399,-210],[-298,-293],[-97,-145],[-79,-105],[-120,-157],[-213,-130],[-63,-142],[-57,-149],[-443,-543],[-766,-811],[-303,-180],[-200,-119],[-1,-1],[-126,-167],[-300,-427],[-273,-300],[-482,-391],[-238,-130],[-304,-287],[-320,-302],[-329,-243],[-145,-107],[-435,-298],[-185,-58],[-361,58],[-1250,-511],[-1185,-346],[-497,-376],[-76,-419],[-2,-13],[-34,-199],[-116,-455],[-115,-455],[-193,-765],[-165,-656],[-38,-253],[-3,-12],[-1,-7],[-175,-1071],[25,-97],[48,-71]],[[395740,234895],[633,206]],[[396873,235262],[0,-8],[-4,-146],[0,-4],[-1,-15],[0,-16],[-3,-96],[0,-1],[-1,-64],[-70,-2616],[0,-22],[0,-2],[-1,-10],[-17,-665],[0,-1],[-3,-115],[-5,-224],[-15,-831],[-13,-660],[0,-1],[-8,-439],[-8,-376],[25,-898],[3,-91],[41,-1504],[10,-352],[6,-107],[59,-1054],[1,-55],[1,-22],[1,-16],[1,-60],[2,-58],[0,-2],[0,-5],[1,-20],[0,-9],[3,-73],[0,-15],[1,-20],[6,-207],[1,-13],[0,-1],[0,-2],[0,-14],[10,-302],[0,-9],[0,-5],[0,-10],[0,-21],[-4,-436],[-12,-229],[-1,-13],[0,-3],[-1,-12],[-1,-21],[-42,-771],[-1,-22],[-1,-17],[-2,-38],[-7,-128],[0,-11],[-1,-8],[0,-6],[0,-1],[-1,-14],[-19,-360],[-47,-571],[-1,-13],[-1,-3],[-1,-16],[-2,-28],[0,-4],[-23,-278],[-60,-724],[0,-7],[-1,-15],[-13,-213],[-22,-372],[-13,-221],[-58,-723],[-75,-937],[-13,-246],[-3,-43],[-10,-185]],[[396460,217316],[-191,-21],[-141,-16],[-412,-45],[-21,-3],[-132,-14],[-89,-7],[-645,-48],[-198,-13],[-492,-30],[-628,-72],[-696,-73],[-44,-4],[-224,-4],[-235,-30],[-47,-7],[-58,-8],[-157,-21],[-28,-4],[-13,-2],[-14,-2],[-25,43],[-26,43],[-12,12],[-54,51],[-27,16],[-50,29],[-92,28],[-71,20],[-46,12],[-27,8],[-17,3],[-165,31],[-70,12],[-129,24],[-112,38],[-39,13],[-38,13],[-108,37],[-190,70],[-49,13],[-49,12],[-15,-2],[-96,-10],[-93,-30],[-14,-3],[-76,-13],[-77,-13],[-121,-25],[-19,-4],[-10,-2],[-47,-9],[-33,-7],[-53,-4],[-40,7],[-41,7],[-63,11],[-81,14],[-53,-3],[-86,-22],[-84,-24],[-85,-25],[-3,-1],[-111,-33],[-60,-18],[-53,-26],[-46,-30],[-12,-7],[-51,-45],[-158,-171],[-106,-113],[-128,-137],[-6,-7],[-29,-31],[-5,-6],[-26,-7],[-43,8],[-22,4],[-132,25],[-154,28],[-173,32],[-43,8],[-100,19],[-55,10],[-88,11],[-54,6],[-50,0],[-27,-2],[-10,-1],[-35,-14],[-39,-20],[-62,-42],[-73,-49],[-6,-4],[-153,-115],[-83,-63],[-20,-15],[-6,-5],[-24,-14],[-6,-4],[-19,-11],[-24,-7],[-35,-11],[-3,-1],[-6,-1]],[[387073,216403],[-1,0],[-63,-11]],[[387009,216392],[-149,-15],[-71,-7],[-181,-35],[-72,-19],[-16,-5],[-65,-32],[-8,-8],[-9,-9],[-27,-29],[-5,-7],[-106,-146],[-18,-24],[-5,-8],[-63,-86],[-39,-53],[-72,-96],[-29,-40],[-63,-78],[-51,-62],[-20,-25],[-19,-26],[-60,-25],[-9,-3],[-53,-13],[-53,-12],[-49,-11],[-18,-5],[-21,-5],[-80,-22],[-38,-8],[-31,-7],[-43,-8],[-23,-10],[-17,-6],[-57,-41],[-17,-17],[-69,-71],[-65,-75],[-12,-13],[-51,-56],[-47,-46],[-58,-51],[-21,-27],[-20,-28],[-66,-131],[-21,-43],[-14,-29],[-9,-41],[-23,-241],[-17,-162],[-8,-60],[-22,-53],[-26,-45],[-9,-10],[-18,-19],[-12,-8],[-12,-9],[-16,-4],[-44,-6],[-177,20],[-21,3],[-152,23],[-226,49],[-21,5],[-23,-1],[-12,-7],[-15,-11]],[[384045,214242],[-1,-1],[-15,-17]],[[384029,214224],[-19,-24]],[[384010,214200],[-2,-1],[-1,-2]],[[384007,214197],[-39,-59],[-18,-18],[-10,-6],[-9,-5],[-36,-13],[-69,-15],[-24,-10],[-24,-9],[-48,-6],[-36,-8],[-44,-42],[-43,-41],[-51,-42],[-102,-78],[-7,-5],[-31,-11],[-11,-3],[-31,-9],[-61,-18],[-65,-17],[-6,-2],[-33,-21],[-40,-37],[-25,-28],[-42,-47],[-38,-35],[-35,-38],[-17,-20],[-13,-16],[-38,-71],[-29,-80],[-52,-145],[-4,-17],[-21,-79],[-23,-70],[-32,-57],[-28,-29],[-17,-12],[-17,-11],[-24,-6],[-76,-20],[-111,-29],[-134,-34],[-39,-17],[-59,-28],[-154,-106],[-47,-31],[-51,-33],[-30,-6],[-27,2],[-25,10],[-20,22],[-71,68],[-22,22],[-5,4],[-36,35],[-37,36],[-49,49],[-3,3],[-66,73],[-18,14],[-17,14],[-32,25],[-69,33],[-54,25],[-35,16],[-30,-2],[-29,-10],[-55,-41],[-26,-20]],[[381287,213035],[-121,203],[-52,86],[-201,337],[-375,627],[-314,526],[-170,285],[-225,349],[-125,196],[-540,840],[-7,11],[-310,530],[-59,100],[-65,111],[-105,179],[-112,190],[-17,29],[-21,35],[-59,101],[-266,452],[-218,367],[-119,194],[-337,555],[-17,28],[-331,544],[-12,19],[-354,599],[-471,797],[-5,7],[-26,44],[-55,94],[-38,64]],[[376160,221534],[92,77],[14,21],[57,20],[117,290],[47,113],[66,121],[112,67],[16,9],[99,55],[4,3],[30,24],[9,19],[76,147],[93,181],[8,30],[15,54],[13,46],[94,334],[27,97],[27,73],[43,118],[4,12],[6,14],[22,56],[24,62],[41,44],[39,40],[61,66],[17,18],[40,22],[32,17],[109,59],[134,73],[122,85],[29,20],[26,18],[53,67],[38,47],[73,127],[3,7],[83,207],[9,173],[33,274],[3,29],[21,44],[41,-6],[23,9],[6,2],[42,57],[138,221],[40,60],[106,159],[77,117],[18,26],[136,204],[76,115],[129,194],[58,87],[59,89],[2,3],[99,135],[23,31],[228,323],[27,38],[7,10],[24,33],[11,16]],[[391284,233535],[424,112]],[[381287,213035],[-27,-20],[-81,-59],[-98,-69],[-50,-26],[-53,-7],[-32,-8],[-47,-32],[-159,-107],[-50,-29],[-19,-7],[-20,-6],[-43,0],[-13,-2],[-27,-6],[-53,-19],[-54,-18],[-142,-58],[-3,-1],[-90,-35],[-111,-49],[-155,-83],[-109,-71],[-8,-5],[-116,-60],[-77,-46],[-27,-16],[-19,-12],[-105,-69],[-4,-3],[-172,-116],[-83,-38],[-83,-38],[-100,-46],[-2,-2],[-72,-44],[-14,-8],[-4,-3],[-89,-52],[-34,-19],[-138,-81],[-8,-6],[-78,-56],[-6,-5],[-65,-57],[-98,-78],[-103,-81],[-78,-62],[-44,-8],[-27,-5],[-117,-99],[-38,-32],[-33,-20],[-40,-56],[-44,-52],[-45,-47],[-63,-44],[-76,-84],[-13,-14],[-56,-37],[-42,-27],[-43,-28],[-83,-82],[-2,-2],[-55,-49],[-68,-61],[-174,-126],[-5,-3],[-61,-41],[-40,-27],[-7,-5],[-13,-8],[-30,-19],[-29,-27],[-25,-23],[-26,-34],[-26,-34],[-33,-12],[-29,-1],[-8,16],[-33,18],[-35,26],[-42,31],[-68,51],[-100,74],[-66,55],[-30,23],[-33,16],[-27,15],[-19,7],[-17,3],[-34,5],[-32,7],[-23,8],[-20,3],[-29,9],[-14,4],[-1,0],[-3,0],[-7,2],[-5,1],[-1,0],[-13,2],[-38,9],[-21,3],[-41,0],[-23,-4],[-9,-4],[-21,-9],[-24,-10],[-24,-14],[-32,-19],[-33,-28],[-61,-45],[-28,-13],[-24,-16],[-38,-17],[-25,-3],[-9,-1],[-56,-9],[-73,-17],[-37,-19],[-21,-17],[-13,-12],[-13,-10],[-4,-3],[-13,-10],[-12,-11],[-21,-8],[-24,-2],[-8,-1],[-29,-2],[-38,4],[-24,2],[-17,1],[-13,2],[-25,-4],[-56,-6],[-23,-8],[-14,-9],[-15,-8],[-12,-6],[-13,-9],[-25,-20],[-15,-11],[-22,-15],[-30,-15],[-29,-23],[-40,-30],[-39,-44],[-27,-45],[-18,-48],[-34,-97],[-13,-41],[-16,-50],[-30,-84],[-14,-48],[-9,-33],[-19,-51],[-22,-41],[-27,-48],[-15,-33],[-18,-41],[-22,-31],[-21,-32],[-38,-53],[-57,-96],[-45,-67],[-19,-51],[-10,-44],[-5,-44],[-1,-34],[-3,-60],[-1,-65],[-1,-44],[-7,-98],[-5,-42],[-12,-64],[-10,-28],[-15,-49],[-14,-57],[-8,-28],[-7,-32],[-21,-41],[-8,-15],[-7,-14],[-32,-81],[-6,-15],[-17,-39],[-12,-18],[-32,-46],[-12,-21],[-17,-29],[-15,-35],[-22,-50],[-13,-42],[-7,-18],[-15,-18],[-22,-24],[-10,-18],[-2,-11],[-17,-46],[-17,-35],[-9,-15],[-12,-19],[-16,-32],[-66,-133],[-30,-28],[-12,-21],[-37,-78],[-49,-54],[-29,-53],[-35,-60],[-22,-39],[-22,-46],[-17,-32],[-20,-29],[-83,-145],[-83,-296],[-17,-81],[-32,-156],[-113,-399],[-87,-207],[-40,-43],[-58,9],[-76,17],[-56,27],[-69,7],[-49,10],[-50,25],[-46,20],[-31,13],[-30,-15],[-39,-22],[-38,-48],[2,-33],[-23,-20],[-11,-22],[-70,-251],[-18,-62],[-20,-25],[-141,-533],[-78,-249],[-17,-93],[-25,-44],[-23,-27],[-39,-26],[-44,-41],[-32,-30],[-37,-22],[-26,-11],[-72,-40],[-3,-45],[-106,-9],[0,-46],[35,-24],[10,-42],[-25,21],[-66,-33],[-32,-21],[-62,-1],[-5,-43],[-32,-4],[10,-42],[-32,-4],[-29,25],[-79,-79],[-54,-54],[30,-13],[15,-42],[-23,-25],[-34,17],[-30,-8],[-29,-4],[-12,-45],[-25,24],[-49,-64],[-62,13],[-113,19],[-37,-14],[-66,-58],[-22,-46],[0,-98],[-62,-117],[-149,-220],[-1000,-588],[-719,-423],[-300,-181],[-4792,-2537],[-37,-20],[-326,388],[-661,788]],[[363109,200696],[-314,374],[-16,18]],[[362779,201088],[-632,733],[-201,232],[-671,777]],[[361275,202830],[8,11],[1,2],[6,8],[67,71],[78,89],[132,150],[96,79],[168,166],[179,213],[127,135],[115,102],[76,55],[60,68],[46,64],[112,111],[196,226],[242,243],[150,139],[192,223],[59,66],[37,46],[46,55],[49,68],[42,9],[21,18],[38,21],[93,98],[44,76],[66,105],[45,38],[48,80],[32,31],[50,1],[40,11],[52,56],[89,118],[30,18],[25,24],[42,0],[27,27],[62,30],[59,30],[50,25],[28,22],[18,36],[16,53],[9,31],[5,32],[7,61],[16,48],[28,25],[41,17],[28,13],[33,30],[76,76],[102,112],[66,74],[81,85],[79,76],[101,98],[49,75],[32,43],[33,90],[26,33],[35,54],[3,57],[21,40],[12,47],[23,97],[26,111],[30,68],[21,31],[20,15],[39,1],[53,2],[65,42],[75,49],[195,123],[42,27],[62,52],[75,54],[98,55],[60,39],[55,32],[60,35],[65,65],[45,38],[45,49],[30,45],[36,58],[27,52],[19,56],[22,66],[11,60],[17,53],[25,92],[48,152],[46,109],[46,142],[24,96],[37,93],[31,89],[34,87],[16,62],[25,67],[32,86],[33,83],[41,71],[25,55],[27,49],[33,33],[51,69],[20,40],[50,60],[56,92],[50,77],[58,65],[38,46],[31,56],[43,71],[38,38],[41,78],[40,75],[41,63],[43,71],[33,82],[22,84],[23,103],[8,78],[3,108],[7,80],[4,94],[2,115],[7,105],[6,87],[12,97],[10,71],[12,85],[18,89],[23,78],[24,71],[29,60],[45,51],[25,69],[47,58],[38,55],[44,82],[37,74],[40,51],[32,60],[28,62],[30,45],[37,53],[8,18],[17,24],[22,34],[22,62],[28,47],[15,44],[44,62],[38,67],[49,78],[45,69],[115,207],[67,117],[6,11],[7,11],[108,207],[3,5],[102,177],[30,53],[58,101],[111,181],[39,85],[31,68],[20,35],[33,60],[18,32],[74,99],[29,38],[22,29],[51,57],[38,52],[65,42],[2,1],[13,4],[14,4],[28,-5],[65,53],[28,15],[18,22],[38,13],[20,37],[41,17],[97,109],[18,13],[87,62],[8,6],[51,36],[28,20],[84,84],[93,78],[57,49],[35,31],[90,79],[252,220],[191,167],[8,6],[68,66],[46,27],[61,70],[59,80],[48,66],[5,49],[5,75],[33,179],[2,7],[11,95],[15,122],[34,141],[23,134],[51,102],[36,99],[51,51],[49,28],[20,12],[61,-9],[54,-60],[86,12],[69,69],[6,6],[5,2],[91,42],[93,35],[18,14],[41,33],[59,47],[66,54],[80,96],[82,77],[69,55],[69,70],[87,57],[98,85],[97,64],[114,40],[224,149],[41,27],[92,55],[276,278],[100,110],[197,215],[77,85],[252,285],[44,47],[236,253],[60,65],[124,135],[86,89],[212,193],[75,70],[34,31],[788,720],[97,89]],[[423393,323138],[-149,-425]],[[416283,316969],[-1435,-5067]],[[430173,289126],[-18,-52],[-69,-198]],[[426047,246070],[619,-593],[53,-207],[52,-542],[-46,-186],[-123,-499],[-200,-398],[-412,-605],[-201,-303],[-581,-669],[-101,-91],[-289,-259],[-761,-431],[-369,-175],[-623,-255],[-275,64],[-538,239],[-201,80],[-528,-271],[-296,-144],[-475,-318],[-349,-207],[-211,-16],[-187,11],[-42,2],[-43,2],[-82,-298],[-142,-514],[-232,-669],[-270,-72],[-480,-47],[-460,39],[-221,231],[-143,-5],[-58,-2],[49,-236],[30,-147],[269,-183],[428,-239],[306,-303],[-84,-366],[-262,-365],[-191,-283],[-321,-187],[-277,-153],[-174,-282],[-304,-188],[-76,-48],[-755,-318],[-423,-319],[-512,-279],[-364,-64],[-343,233],[-141,34],[64,-172],[168,-192],[273,-269],[58,-199],[-85,-326],[-327,-502],[-296,-327],[-95,183],[-216,64],[-190,159],[10,-390],[85,-430],[-602,327],[74,-375],[26,-374],[-100,-128],[-106,-103],[-137,103],[-269,152],[-227,255],[23,-128],[24,-127],[108,-187],[109,-188],[195,-310],[-47,-183],[-206,-184],[-37,-25],[-79,-55],[-80,-55],[-227,350],[-141,155],[-33,37],[-58,-96],[5,-223],[243,-414],[-37,-223],[-164,-88],[-253,24],[-243,104],[132,-462],[-5,-351],[-5,-11],[-90,-212],[-37,-143],[-201,-263],[-142,-311],[-135,-164],[-172,-131],[-158,-111],[-185,64],[-53,-184],[79,-238],[154,-231],[-53,-303],[-180,-239],[-190,-112],[-42,-191],[-85,-318],[-95,-351],[-274,-462],[-169,-271],[-201,-47],[148,-419],[148,-330],[222,-398],[116,-399],[137,-478],[-42,-270],[-226,-250],[-175,-340],[21,-478],[338,-48],[295,-207],[243,-366],[242,-69],[86,-250],[-64,-239],[-285,-16],[53,-302],[348,-191],[264,-654],[59,-1069],[15,-269],[-237,-1027],[-185,-749]],[[411311,217049],[-153,-16],[-291,-72],[-221,-47],[-439,-56],[-63,-303],[-63,-255],[-111,-247],[-79,-123],[-80,-124],[-79,-143]],[[409732,215663],[-95,-175]],[[409637,215488],[-158,-64],[-56,-4],[-156,-12],[-739,-64],[-34,-7],[-188,-40],[-112,-12],[-188,-20],[-51,-11],[-63,-13],[-59,-13],[-55,-11],[-153,-40],[-206,-287]],[[407419,214890],[-161,-428]],[[407258,214462],[-13,-34]],[[407245,214428],[-115,9]],[[407130,214437],[-237,18],[-23,3],[-304,30],[-309,339],[-327,374],[-279,510],[-238,207],[-217,-8],[-487,-184],[-91,44],[-92,44],[-72,109],[-34,51],[-1,5],[-3,14],[-51,225],[-24,106],[-84,406],[-132,168],[-40,17],[-56,26],[-116,52],[-360,-113],[-1,7],[-23,119],[-91,465],[2,166],[-118,200],[-282,194],[-1,1],[-18,12],[-27,19],[-24,16],[-3,2],[-20,14],[-19,13],[-47,32],[-336,201],[-19,2],[-150,17]],[[402376,218360],[-229,25],[-43,5]],[[402104,218390],[-443,-19],[-240,-2],[-213,-67],[-510,-151],[-184,-42],[-231,-66],[-252,-71],[-43,-14],[-407,-124],[-251,-80],[-22,-8],[-154,-21],[-26,0],[-2,0],[-99,-1],[-62,-1],[-79,-1],[-299,105],[-373,50],[-166,9],[-205,12],[-6,-4],[-195,-112],[-36,-21],[-50,-29],[-271,-265],[-316,-141],[-309,-33],[-157,18],[-43,5]],[[396873,235262],[28,2072]],[[396902,237433],[68,2033],[0,1]],[[397005,240510],[15,342]],[[397477,247745],[0,1],[20,61]],[[397715,248387],[173,527]],[[397888,248914],[13,38]],[[397953,249112],[23,68]],[[398693,251361],[0,1],[266,777]],[[397458,254501],[-24,52]],[[387699,262431],[-4,11],[-19,41],[-4,9],[-17,52],[-4,49],[2,12],[19,128],[64,271],[3,13],[3,11],[70,294],[-34,570],[-2,40],[-152,308],[-73,148],[-161,265],[-183,301],[-165,272],[-493,811],[-45,73],[-4,5],[-329,435],[-486,427],[-516,279],[-195,105],[-87,47],[-446,241],[-446,241],[-474,179],[-656,311],[-537,317],[-432,434],[-232,385],[-226,309],[-480,264],[-391,16],[-46,27],[-468,268],[-433,468],[-408,682],[-510,992],[-169,445],[-50,277],[-20,110],[-34,1017],[48,357],[98,356],[347,597],[577,994],[314,541],[53,90],[589,1014],[368,634],[123,212],[73,125],[7,13],[602,1037],[30,51],[1,2],[28,48],[21,36],[14,24],[50,87],[16,27],[50,87],[26,45],[47,80],[53,92],[28,47],[16,29],[26,44],[35,60],[46,79],[787,1357],[21,35],[29,50],[29,50],[55,94],[49,86],[31,53],[109,188],[21,310],[-106,425],[-32,276],[-31,276],[49,577],[93,420],[55,656],[-17,106],[-66,413],[-50,152],[-50,153],[-184,47],[-284,160],[-530,1092],[-589,805],[-51,70],[-509,265],[-1487,611],[-153,63],[-377,348],[-166,210],[-45,56],[-252,238],[-318,58],[-88,-96],[-54,-59],[-34,-37],[-105,-193],[-61,-114],[-106,-86],[-106,-86],[-1079,538],[-390,-96],[-333,408],[-211,678],[-149,825],[50,422],[-64,620],[-218,633],[-178,418],[-119,279],[-3,46],[-4,45],[-49,677],[-101,312],[17,553],[102,292],[38,109],[42,262],[22,141],[20,43],[71,155],[298,245],[387,527],[229,97],[89,37],[192,36],[116,68],[168,98],[169,98],[139,233],[139,232],[96,161],[299,65],[300,65],[156,94],[156,94],[283,401],[67,142],[175,371],[95,201],[164,347],[164,348],[16,32],[437,661],[98,147],[444,531],[369,248],[197,34],[163,406],[325,190],[281,410],[382,675],[44,360],[172,537],[52,454],[-33,504],[-220,662],[48,985],[-22,477],[-118,513],[-72,1016],[-133,377],[-255,278],[-255,278],[-56,577],[-204,209],[-374,614],[-199,148],[-156,197],[-289,167],[-197,228],[-623,390],[-319,311],[-171,191],[-340,379],[-96,108],[-276,164],[-255,276],[-162,265],[-437,207],[-117,156],[-118,157],[72,159],[71,160],[200,179],[796,712],[161,40],[37,2716]],[[278136,173410],[-191,203],[-149,-55],[-163,27],[-217,-41],[-262,27],[-154,-41],[-118,-177],[71,-126],[-57,-393],[-91,-390],[-113,-88],[-14,-328],[95,-116],[14,-171],[72,-68],[50,-512],[-81,-649],[-335,0],[-66,-97],[-265,76],[-430,144],[-195,-27],[-126,266],[-209,48],[-50,-185],[-298,53],[-186,-39],[-22,-137],[-23,-116],[-81,-164],[-100,-273],[-104,-82],[-109,48],[-140,41],[-159,-7],[-45,-102],[-90,-14],[-23,219],[-43,301],[120,218],[251,272],[122,49],[261,88],[145,-170],[389,13],[50,178],[199,690],[77,560],[18,368],[-159,55],[18,303],[19,242],[-72,-69],[-48,-46],[-141,-57],[-40,10],[-12,-17],[-378,-14],[-791,-460],[-465,-356],[-270,-157],[-361,-241],[-195,-236],[-2922,-3113],[-227,-283],[-387,-355],[-622,-206],[-1945,-160],[-43,160],[-4,230],[-169,224],[0,307],[-117,89],[-66,171],[-24,207],[24,153],[43,53],[19,112],[-31,124],[-90,260],[-333,153],[-59,66],[-61,-25],[-85,13],[-81,-29],[-102,16],[-93,82],[-57,72],[6,117],[-13,58],[-108,113],[-124,1],[-129,29],[-78,30],[-42,15],[-91,67],[-118,58],[-102,20],[-37,27],[-92,-19],[-101,-49],[-39,32],[-36,29],[-4,145],[63,159],[92,235],[47,87],[40,73],[68,173],[-25,173],[-16,110],[-28,30],[-62,67],[-55,84],[58,79],[45,5],[49,-4],[46,17],[37,31],[6,68],[-23,75],[-54,94],[-12,-22],[-44,58],[-41,48],[-77,104],[-79,100],[-34,12],[-31,10],[-32,4],[-113,-26],[-96,-15],[-1,0],[-37,2],[-32,1],[-2,0],[-5,0],[-2,0],[-121,45],[-109,61],[-14,37],[-33,94],[3,19],[16,86],[9,16],[55,98],[20,27],[49,67],[73,76],[76,49],[124,50],[119,32],[108,70],[80,43],[6,3],[112,66],[104,140],[86,59],[34,4],[65,7],[135,-70],[140,-81],[45,-12],[70,-17],[83,-21],[149,-2],[109,8],[57,23],[59,23],[38,5],[83,11],[220,81],[101,118],[25,14],[110,57],[43,163],[88,134],[304,334],[292,392],[316,449],[197,392],[-7,267],[-82,181],[152,249],[-139,95],[-108,325],[-266,96],[38,410],[171,249],[139,124],[304,0],[114,277],[-76,162],[127,296],[-107,8],[-12,42],[-57,192],[-30,-2],[-262,-20],[94,351],[-26,43],[-52,84],[-10,17],[-69,52],[-81,60],[-59,17],[-122,36],[-96,4],[-33,1],[-176,5],[-184,-5],[-156,15],[-98,32],[-56,18],[-85,8],[-94,8],[-30,-4],[-103,-12],[-144,-19],[-66,-93],[-36,-90],[-47,-49],[-71,-39],[-64,-31],[-111,-60],[-116,-98],[-56,-52],[-103,-77],[-94,-67],[-88,-73],[-37,-20],[-52,-29],[-89,-22],[-77,20],[-50,31],[-48,-33],[-81,82],[-60,49],[-82,97],[-101,48],[-157,61],[-142,73],[-94,31],[-51,17],[-86,37],[-13,3],[-251,42],[-111,50],[-341,123],[-52,-51],[-44,-6],[-81,-3],[-121,-8],[-81,-25],[-159,-20],[-98,-47],[-48,-46],[-98,-7],[-78,-14],[-96,-70],[-85,-95],[-23,-9],[-108,-41],[-133,-39],[-143,-58],[-85,-26],[-137,-53],[-144,-61],[-169,7],[-127,27],[-131,-3],[-100,-17],[-214,-103],[-122,-22],[131,-692],[61,-274],[24,-136],[-65,-36],[-35,139],[-39,220],[-48,201],[-31,-17],[-58,-19],[-96,-53],[-51,-14],[-104,234],[-26,87],[-40,20],[-38,19],[-22,-4],[-53,-10],[-35,-21],[-36,-21],[-101,-39],[-74,-40],[-45,-24],[-99,-64],[-91,-92],[-72,-98],[-52,-61],[-27,-143],[-106,-60],[-101,-56],[-86,-77],[-113,-81],[-46,-34],[-38,-28],[-74,-29],[-17,-7],[-85,13],[-32,30],[-118,-226],[-277,-383],[-226,-255],[-467,-651],[-316,-291],[21,-618],[-36,-627],[-92,-558],[-135,-383],[-27,-300],[-355,-929],[-140,-171],[-417,-488]],[[272785,250362],[66,424],[76,175]],[[308978,193469],[-108,-99],[-46,-74],[-73,84],[-30,27],[-46,11],[-54,-4],[-99,-97],[-54,-69],[-48,-48],[-61,43],[-34,75],[-13,150],[-3,53],[-18,80],[-26,48],[-34,51],[-58,63],[-85,-1],[-57,7],[-72,27],[-54,20],[-60,23],[-66,22],[-87,33],[-72,22],[-15,19],[-99,174],[-122,176],[-4,-5],[-189,-213],[-16,-18],[-53,-59],[-384,-248],[-208,-110],[-57,26],[-183,88],[-101,-13],[-89,-26],[-78,-32],[-101,-39],[-79,-8],[-73,8],[-98,-26],[-50,-35],[-88,-41],[-174,-30],[-19,-40],[-28,-61],[-35,-40],[-51,-35],[-31,-21],[-16,-6],[-35,0],[-57,1],[-53,13],[-19,12],[-44,13],[-13,11],[-35,11],[-37,28],[-44,39],[-60,1],[-61,24],[-47,48],[-27,41],[-29,37],[-34,36],[-35,22],[-39,13],[-38,19],[-41,1],[-42,-6],[-42,-15],[-38,-14],[-40,-8],[-41,-12],[-38,-9],[-40,-9],[-38,-11],[-42,-8],[-42,-4],[-39,-3],[-40,-8],[-42,-8],[-42,-7],[-37,-6],[-42,-5],[-38,-5],[-42,-8],[-41,-5],[-39,-6],[-39,-10],[-38,-1],[-42,-2],[-41,1],[-39,0],[-42,1],[-40,1],[-37,1],[-39,-1],[-38,-9],[-41,-25],[-37,-18],[-37,-11],[-35,-16],[-37,-17],[-38,-18],[-40,-19],[-38,-17],[-41,-19],[-35,-18],[-37,-16],[-42,-22],[-39,-14],[-35,-20],[-41,-23],[-39,-20],[-42,-16],[-42,-21],[-40,-19],[-34,-22],[-41,-18],[-37,-18],[-40,-22],[-37,-23],[-29,-34],[-25,-41],[-23,-43],[-24,-44],[-22,-49],[-18,-54],[-21,-49],[-21,-47],[-28,-45],[-33,-41],[-30,-31],[-32,-32],[-30,-30],[-33,-31],[-32,-32],[-37,-32],[-39,-31],[-32,-33],[-30,-32],[-38,-27],[-38,-19],[-45,-17],[-39,-21],[-40,-14],[-40,-17],[-39,-8],[-40,-4],[-38,-7],[-43,-2],[-38,-1],[-40,0],[-41,-1],[-43,-5],[-40,-16],[-42,-17],[-36,-17],[-35,-19],[-37,-20],[-28,-22],[-7,-6],[-35,-24],[-41,-21],[-41,-2],[-44,-1],[-43,3],[-38,18],[-32,36],[-29,38],[-33,34],[-32,33],[-31,31],[-34,31],[-34,23],[-37,23],[-21,7],[-13,9],[-10,11],[-40,15],[-36,16],[-38,23],[-37,21],[-34,22],[-39,22],[-33,23],[-34,24],[-34,29],[-35,25],[-37,33],[-32,34],[-32,29],[-34,27],[-35,23],[-38,22],[-38,17],[-39,7],[-38,7],[-41,1],[-38,-1],[-39,-7],[-38,-14],[-36,-18],[-41,-23],[-33,-25],[-33,-26],[-33,-30],[-29,-41],[-31,-46],[-32,-40],[-32,-46],[-25,-38],[-27,-41],[-29,-37],[-26,-43],[-27,-42],[-25,-40],[-34,-40],[-32,-35],[-34,-38],[-33,-33],[-40,-39],[-36,-28],[-40,-28],[-231,-866],[-8,-4],[-94,-51],[-14,-11],[-38,-38],[-64,-70],[-72,-80],[-107,-111],[-35,-36],[-26,-28],[-23,-28],[-20,-20],[-30,-28],[-37,-31],[-17,-11],[-18,-12],[-16,-8],[-30,-11],[-25,-10],[-41,-11],[-12,-4],[-44,0],[-34,2],[-63,9],[-79,24],[-103,27],[-72,21],[-137,39],[-67,19],[-96,26],[-60,11],[-35,1],[-120,-15],[-73,-21],[-63,-30],[-59,-34],[-45,-26],[-17,-9],[-18,-9],[-42,-13],[-18,-5],[-31,-3],[-30,-3],[-53,0],[-47,8],[-54,16],[-24,7],[-66,14],[-58,8],[-59,-1],[-26,-4],[-56,-15],[-60,-19],[-48,-18],[-52,-21],[-55,-23],[-77,-35],[-42,-19],[-45,-20],[-46,-20],[-30,-13],[-43,-23],[-25,-17],[-41,-28],[-35,-31],[-34,-40],[-62,-70],[-29,-32],[-52,-59],[-69,-79],[-68,-77],[-39,-47],[-78,-89],[-54,-65],[-29,-33],[-122,-140],[-44,-50],[-50,-55],[-255,-295],[-47,-55],[-126,-142],[-30,-34],[-18,-19],[-17,-17],[-26,-26],[-24,-27],[-26,-32],[-21,-28],[-23,-25],[-28,-27],[-13,-19],[-24,-24],[-18,-19],[-14,-16],[-35,-36],[-11,-11],[-17,-13],[-26,-42],[-3,-4],[-4,-3],[-13,-10],[-11,-8],[-10,-6],[-11,-11],[-89,-78],[-17,-12],[-13,-10],[-18,-12],[-34,-33],[-12,-5],[-3,0],[-4,0],[-9,0],[-7,1],[-11,3],[-15,7],[-12,4],[-9,3],[-8,4],[-8,4],[-10,1],[-13,1],[-7,1],[-12,3],[-14,0],[-5,0],[-5,1],[-14,5],[-9,2],[-13,2],[-11,3],[-14,6],[-15,3],[-14,3],[-17,4],[-13,4],[-14,4],[-16,8],[-14,3],[-9,-2],[-11,-3],[-5,-1],[-67,9],[-89,28],[-394,121],[-108,33],[-12,4],[-10,4],[-11,2],[-12,0],[-12,1],[-8,3],[-11,5],[-11,6],[-8,3],[-13,3],[-11,3],[-13,4],[-12,2],[-11,2],[-13,2],[-12,2],[-12,4],[-11,4],[-13,4],[-12,3],[-10,3],[-11,5],[-13,3],[-8,3],[-13,7],[-7,3],[-10,2],[-13,4],[-9,1],[-11,1],[-12,3],[-10,2],[-14,3],[-10,2],[-13,2],[-14,4],[-11,3],[-13,3],[-41,15],[-40,11],[-36,14],[-43,10],[-40,13],[-39,10],[-42,9],[-39,2],[-39,1],[-45,0],[-41,-5],[-41,-7],[-39,-4],[-39,-7],[-39,-7],[-41,-4],[-37,-3],[-40,-3],[-42,-4],[-38,-5],[-39,-4],[-37,-3],[-40,-4],[-42,-4],[-41,-5],[-41,-2],[-43,-3],[-38,-5],[-39,-11],[-37,-9],[-38,2],[-38,-4],[-41,-4],[-38,-3],[-41,-2],[-44,-4],[-41,-6],[-40,-6],[-40,-8],[-38,-11],[-39,-8],[-36,-15],[-36,-21],[-33,-26],[-33,-27],[-36,-28],[-34,-31],[-40,-35],[-34,-34],[-34,-22],[-16,-4],[-10,6],[-11,12],[-24,47],[-16,34],[-19,4],[-17,-5],[-26,-12],[-74,-68],[-54,-49],[-39,-25],[-84,-44],[-200,-219],[-408,-329],[-104,-132],[-47,-151],[-17,-126],[130,-793],[3,-131],[138,-890],[64,-280],[44,-305],[15,-227],[-23,-112],[-42,-68],[-61,-98],[-104,-98],[-477,-166],[-38,-29],[-20,-15],[-32,-25],[-62,-49],[-332,-115],[-193,-196],[-204,-124],[-96,-69],[-380,-271],[-1277,-984],[-532,-384],[-38,-15],[-162,-65],[-240,-52],[-30,53],[-21,26],[-33,33],[-11,7],[-24,16],[-18,13],[-19,15],[-37,22],[-7,0],[-19,0],[-90,18],[-31,7],[-2,4],[-16,26],[-6,11],[2,318],[0,160],[-18,62],[-16,24],[-56,21],[-19,-1],[-43,-16],[-30,-37],[-34,-29],[-39,-2],[-39,3],[-10,2],[-35,5],[-40,7],[-38,13],[-40,13],[-41,16],[-3,1],[-35,12],[-38,12],[-40,14],[-35,12],[-5,2],[-38,18],[-26,17],[-11,7],[-34,17],[-3,1],[-36,24],[-31,30],[-32,33],[-35,31],[-34,31],[-34,28],[-38,13],[-38,2],[-38,-9],[-40,-12],[-38,-15],[-37,-7],[-37,-5],[-37,-10],[-37,-9],[-37,-6],[-32,-2],[-3,-2],[-18,-9],[-3,1],[-48,-494],[-73,-512],[-21,-177],[-28,1],[-128,-15],[-52,-11],[-47,-9],[-42,-8],[-40,-7],[-46,-6],[-44,-8],[-39,-9],[-38,-8],[-40,-13],[-38,-10],[-44,-11],[-41,-11],[-41,-11],[-42,-8],[-43,-2],[-45,18],[-28,34],[-15,53],[-9,53],[-6,53],[-7,59],[-8,65],[-16,59],[-18,52],[-24,44],[-30,40],[-37,27],[-41,10],[-39,9],[-46,4],[-42,3],[-41,-1],[-41,-14],[-36,-33],[-27,-42],[-26,-42],[-24,-44],[-18,-47],[-19,-53],[-16,-47],[-15,-49],[-14,-59],[-7,-54],[-13,-49],[-20,-48],[-21,-53],[-23,-45],[-26,-38],[-27,-37],[-21,-46],[-5,-56],[-5,-56],[1,-59],[-8,-51],[-10,-58],[0,-52],[6,-58],[9,-57],[12,-51],[8,-51],[5,-55],[14,-54],[16,-54],[9,-53],[-15,-64],[-17,-50],[-25,-43],[-15,-55],[-24,-43],[-29,-37],[-32,-31],[-25,-41],[-26,-46],[-29,-43],[-28,-38],[-24,-40],[-30,-33],[-41,3],[-36,28],[-34,50],[-29,41],[-29,37],[-32,40],[-34,25],[-39,1],[-37,-12],[-34,-28],[-33,-36],[-28,-44],[-19,-56],[-8,-57],[1,-52],[6,-55],[9,-55],[24,-62],[25,-41],[34,-45],[27,-38],[27,-52],[16,-58],[8,-64],[2,-59],[0,-71],[-5,-52],[-10,-53],[-15,-52],[-17,-53],[-15,-53],[-18,-59],[-16,-47],[-19,-49],[-18,-46],[-29,-76],[-19,-49],[-24,-64],[-20,-45],[-39,-86],[-76,-14],[-41,6],[-36,21],[-13,8],[-36,90],[-22,60],[-12,41],[-8,44],[-1,119],[1,47],[-10,139],[1,26],[-7,63],[-14,98],[-10,36],[-25,43],[-15,49],[-51,70],[-38,58],[-34,39],[-28,23],[-50,63],[-32,29],[-51,35],[-93,29],[-39,18],[-29,27],[-53,13],[-61,1],[-49,12],[-35,-20],[-29,-20],[-40,-43],[-43,-51],[-52,-120],[-23,-55],[-11,-67],[1,-54],[-10,-59],[-39,-140],[-8,-31],[-19,-83],[1,-11],[-10,-42],[-17,-73],[-12,-44],[-21,-59],[-10,-66],[-1,-23],[11,-46],[-7,-26],[-18,-9],[-29,4],[-25,4],[-13,41],[-14,16],[-56,21],[-25,-4],[-47,-1],[-20,20],[-12,13],[-98,33],[-9,8],[-16,21],[-65,43],[-46,11],[-49,21],[-24,38],[-24,-7],[-47,-11],[-103,2],[-33,2],[-47,0],[-52,-30],[-72,-33],[-84,-26],[-37,-14],[-96,-54],[-12,-7],[-50,-39],[-46,-52],[-71,-101],[-4,-5],[-23,-55],[-7,-81],[-10,-62],[-25,-136],[-3,-16],[-16,-133],[-22,-164],[-2,-23],[-5,-91],[3,-79],[18,-88],[21,-141],[7,-53],[25,-90],[31,-126],[31,-90],[58,-113],[5,-5],[24,-20],[28,-12],[29,-20],[53,-12],[64,-5],[50,-20],[46,17],[88,34],[34,6],[77,-28],[25,-14],[32,-9],[19,-45],[30,-33],[41,-22],[29,-100],[18,-67],[4,-90],[-8,-68],[-7,-66],[-25,-137],[-9,-66],[-4,-85],[7,-146],[7,-55],[50,-145],[19,-30],[23,-23],[25,-53],[39,-59],[61,-113],[12,-30],[22,-58],[8,-42],[8,-40],[14,-151],[3,-34],[16,-346],[70,-305],[-135,-79],[-1001,-775],[-206,-199]],[[273595,171754],[-98,111],[-10,170],[226,281],[181,192],[275,229],[142,-74],[112,-140],[-33,-200],[-422,-325],[-373,-244]],[[260589,169942],[-157,79],[-105,88],[-67,123],[170,246],[229,102],[178,-199],[154,-167],[-195,-79],[-207,-193]],[[260355,162351],[-9,5],[-152,89],[68,374],[5,15],[82,288],[183,-171],[49,-139],[220,-124],[-106,-267],[-156,-62],[-184,-8]],[[255580,169387],[208,302],[286,753],[111,172],[446,-77],[417,-280],[417,-94],[403,302],[1356,209],[369,-216],[196,-502],[-168,-503],[23,-441],[-130,-550],[-437,-412],[-320,-380],[-62,-345],[-149,-347],[-430,-679],[-333,-528],[-276,-605],[-253,-895],[128,-273],[330,11],[241,-107],[8,-301],[-469,-823],[-27,-363],[122,-340],[224,-51],[438,490],[191,-102],[92,-200],[-56,-465],[-707,-533],[-42,-43],[-235,-241],[-535,-397],[-205,-19],[-29,435],[-98,176],[-249,1],[-226,98],[-247,203],[-19,11],[-188,113]],[[260865,158512],[-169,156],[112,138],[352,112],[276,208],[149,152],[35,239],[-354,274],[1,340],[156,255],[69,394],[-148,-14],[-288,-148],[-128,224],[-36,213],[43,388],[162,482],[270,238],[140,24],[376,440],[175,78],[482,-40],[-128,-283],[-183,-151],[-128,163],[-240,-273],[-71,-363],[28,-926],[79,-172],[163,-31],[727,20],[-198,-406],[-135,-386],[-49,-210],[42,-209],[-48,-262],[-135,-341],[-214,-155],[-225,-18],[-239,49],[-383,-146],[-338,-53]],[[311051,125244],[-295,-4031]],[[310756,121213],[-792,-92],[-331,-29],[-155,-36],[-487,-52],[-433,-39],[-737,-67],[-626,-91],[-580,-78],[-404,-26],[-569,-81],[-392,14],[-124,-8],[-137,2],[-148,15],[-143,-12],[-124,-19],[-183,-33],[-121,-7],[-134,-3],[-133,-8],[-171,-16],[-164,38],[-130,1],[-152,-12],[-218,-23],[-130,-38],[-112,-38],[-62,-20],[-84,-51],[-81,-72],[-119,-46],[-96,-26],[-105,-8],[-90,15],[-71,18],[-84,32],[-74,18],[-134,-3],[-108,-24],[-72,-13],[-59,-68],[-41,-65],[-81,-115],[-115,-52],[-159,19],[-83,72],[-86,84],[-68,56],[-77,13],[-100,1],[-96,-26],[-59,-34],[-81,-68],[-54,-60],[-52,-38],[-69,-8],[-62,1],[-46,10],[-78,18],[-102,14],[-105,32],[-127,40],[-96,18],[-121,-1],[-93,-17],[-112,-52],[-81,-72],[-91,-34],[-89,1],[-81,29],[-65,26],[-34,4],[-68,9],[-93,-46],[-94,-20],[-99,-26],[-90,-28],[-103,-38],[-124,-24],[-152,-24],[-140,-12],[-152,-47],[-84,-37],[-87,-40],[-109,-37],[-115,5],[-83,46],[-65,79],[-89,61],[-62,-4],[-87,-11],[-66,-60],[-78,-74],[-96,-67],[-53,-35],[-69,-42],[-59,15],[-74,9],[-108,23],[-97,15],[-133,-9],[-130,-24],[-75,-46],[-94,-74],[-93,-28],[-114,2],[-131,2],[-118,5],[-118,14],[-68,10],[-93,-3],[-93,-16],[-109,-33],[-84,-42],[-71,-24],[-69,-25],[-80,-20],[-81,1],[-93,6],[-112,0],[-89,27],[-81,41],[-62,23],[-62,13],[-62,-4],[-62,-11],[-84,-22],[-109,-46],[-111,-29],[-78,-20],[-112,-8],[-115,-2],[-74,-13],[-130,2],[-121,-6],[-128,-21],[-115,-20],[-74,-17],[-174,-10],[-143,-21],[-93,-15],[-74,-8],[-78,-25],[-96,-25],[-113,-29],[-133,-19],[-115,-19],[-106,-46],[-114,-15],[-84,-25],[-180,-16],[-128,-28],[-130,-46],[-118,-16],[-127,-25],[-137,-37],[-124,-20],[-131,-33],[-90,-25],[-84,-17],[-149,-32],[-87,-8],[-74,-12],[-62,-16],[-81,-16],[-38,-3],[-684,-227],[-709,-28],[-765,-135],[-933,-172],[-896,-155],[-1269,-91],[-1300,-77],[-970,-109],[-987,-68],[-624,-207],[-1241,-192],[-97,-42],[-412,-40],[-235,-21],[-993,-223],[-623,-164],[-354,-56],[-819,-208],[-1082,-307],[-1362,-205],[-142,-64],[-564,-79],[-797,-135],[-1693,-294],[-796,-218],[-383,-172],[-263,-65],[-752,-114],[-655,-166],[-203,8],[-361,-87],[-1443,-393],[-233,-44],[-903,-42],[-1030,-212],[-745,-81],[-367,-37],[-1453,10584],[1134,-910],[1428,-930],[1519,-772],[1677,-927],[1789,-737],[1699,-708],[1255,-293],[1506,-431],[1401,-233],[1448,-263],[1401,-43],[1290,-47],[667,42],[608,38],[1160,8],[992,147],[1023,74],[1325,107],[1722,56],[1316,103],[998,67],[815,52],[966,264],[74,36],[77,8],[75,25],[87,37],[115,12],[112,60],[102,50],[106,22],[102,11],[124,-2],[149,33],[103,29],[99,17],[81,14],[43,10],[94,23],[78,13],[136,16],[84,20],[84,25],[81,39],[74,18],[56,11],[69,25],[90,22],[105,15],[66,16],[62,25],[59,18],[59,17],[87,11],[71,13],[93,6],[109,17],[69,25],[96,8],[62,11],[65,51],[66,17],[74,16],[81,13],[102,21],[62,2],[109,0],[108,-3],[124,0],[131,7],[121,11],[93,15],[78,17],[87,30],[99,7],[90,11],[121,35],[93,20],[87,11],[53,4],[74,1],[97,-1],[121,-2],[174,51],[105,32],[84,12],[68,0],[53,11],[106,21],[112,20],[80,5],[81,11],[62,4],[81,8],[65,11],[109,26],[136,41],[103,38],[87,42],[81,51],[97,47],[99,32],[103,22],[89,15],[88,16],[99,17],[105,21],[94,14],[112,30],[121,3],[71,16],[118,31],[106,46],[115,17],[84,29],[149,-2],[89,-1],[85,21],[83,11],[106,46],[127,21],[149,7],[118,32],[103,3],[99,31],[90,23],[106,21],[93,30],[65,17],[50,2],[103,39],[130,42],[134,27],[136,26],[84,29],[87,16],[75,26],[96,23],[96,26],[81,2],[131,37],[84,23],[46,13],[87,48],[84,25],[109,32],[130,42],[113,60],[90,63],[115,38],[106,43],[68,16],[184,75],[115,47],[93,8],[127,41],[109,47],[155,45],[84,25],[94,37],[81,22],[99,15],[112,26],[146,36],[99,22],[93,20],[109,29],[96,38],[119,52],[139,55],[84,60],[104,84],[143,56],[112,37],[164,51],[90,43],[72,37],[78,48],[323,85],[295,162],[114,60],[96,-18],[221,80],[402,195],[697,342],[501,272],[194,98],[66,34],[78,44],[70,38],[110,35],[39,-24],[83,22],[23,-24],[10,-31],[45,43],[96,17],[21,23],[49,5],[105,-14],[21,-18],[35,-33],[95,-7],[108,26],[174,140],[85,50],[30,89],[53,25],[216,64],[99,-1],[66,-45],[57,-24],[68,40],[321,142],[267,126],[328,182],[275,165],[263,171]],[[361275,202830],[-1323,1235],[-528,493],[-1757,1641],[-381,355],[-911,4645],[-403,1186]],[[355972,212385],[-243,237],[-122,106],[-88,-2],[-130,-22],[-168,6],[-136,23],[-141,-31],[-85,25],[-84,26],[-181,101],[-151,80],[-63,94],[-10,223],[-13,173],[34,132],[35,129],[46,112],[56,96],[108,121],[85,92],[197,118],[22,153],[8,91],[28,252],[-19,243],[13,203],[22,215],[72,248],[90,204],[14,132],[60,195],[58,186],[49,84],[55,174],[63,314],[66,224],[51,339],[-53,159],[-31,92],[-44,12],[-45,12],[-109,2],[-148,-2],[-180,-11],[-104,153],[-113,123],[-96,136],[-152,154],[-103,91],[-273,248],[-141,227],[-173,269],[-75,50],[-106,132],[-47,127],[-12,175],[-49,82],[-49,127],[-48,31],[-59,44],[-76,60],[-153,42],[-182,7],[-79,216],[17,96],[-10,60],[2,153],[-19,121],[-25,222],[85,-9],[22,-2],[123,4],[71,52],[53,25],[102,10],[55,12],[102,13],[80,-10],[65,37],[95,59],[105,44],[96,32],[102,9],[89,21],[95,26],[95,-32],[137,6],[82,43],[93,39],[97,50],[85,48],[186,65],[92,30],[101,16],[101,8],[102,-3],[91,54],[98,48],[93,59],[96,10],[99,5],[175,12],[105,15],[90,34],[99,30],[90,35],[106,48],[95,41],[100,36],[89,30],[96,24],[13,-1],[107,-12],[103,8],[105,-35],[101,0],[104,18],[177,31],[97,-9],[91,10],[101,-7],[105,-34],[61,8],[104,75],[73,59],[10,9],[87,73],[95,57],[101,37],[103,43],[186,144],[123,112],[99,27],[108,10],[101,32],[108,33],[88,30],[271,107],[103,12],[91,-2],[100,-38],[92,1],[101,0],[184,37],[82,24],[98,46],[97,47],[91,73],[60,115],[7,140],[1,3],[26,70],[22,57],[32,123],[35,140],[11,53],[-6,141],[25,31],[64,108],[40,55],[-28,121],[-23,71],[0,21],[99,44],[94,48],[22,51],[23,129],[-31,119],[4,92],[81,7],[97,33],[31,20],[42,69],[1,132],[-12,39],[-26,42],[97,28],[99,-19],[103,-3],[102,-4],[53,5],[250,90],[99,-25],[31,-4],[64,-107],[11,-138],[22,-139],[40,-130],[63,-119],[92,-54],[100,-4],[4,0],[96,36],[24,29],[95,46],[92,49],[9,9],[72,71],[42,129],[-5,140],[-34,130],[10,138],[75,92],[98,29],[100,8],[85,69],[8,7],[10,9],[99,-19],[96,-41],[80,-31],[100,-7],[32,15],[81,83],[40,64],[13,19],[78,86],[73,95],[18,20],[50,9],[25,-18],[38,32],[21,39],[38,73],[2,4],[53,117],[58,112],[55,119],[51,124],[20,32],[92,34],[101,-10],[102,10],[97,29],[23,21],[25,38],[37,106],[33,51],[31,19],[46,52],[100,3],[99,3],[96,40],[20,8],[91,-2],[6,0],[1,0],[102,-4],[94,-44],[28,0],[168,145],[203,67],[9,4],[80,61],[4,4],[49,50],[33,34],[84,58],[5,3],[77,10],[29,4],[29,16],[80,44],[74,153],[67,49],[-4,131],[1,5],[1,4],[34,157],[6,129],[30,45],[35,19],[18,26],[15,7],[3,1],[19,0],[19,-19],[8,3],[56,17],[26,38],[13,19],[27,19],[23,-10],[13,-20],[17,-12],[4,-3],[8,5],[56,35],[51,38],[47,28],[75,-1],[90,49],[7,4],[21,14],[21,29],[17,7],[27,13],[1,0],[24,10],[135,46],[5,1],[24,3],[29,4],[30,4],[32,5],[-1,66],[-1,32],[2,1],[2,0],[1,1],[2,0],[9,3],[2,1],[1,0],[211,67],[16,5],[11,3],[18,7],[1,0],[18,8],[40,294],[12,1],[34,5],[163,152],[29,29],[407,410],[21,21],[41,42],[242,248],[74,76],[421,428],[2,3],[1,1],[358,230],[-48,134],[-31,80],[-12,29],[8,7],[336,310],[163,151],[45,41],[54,50],[11,10],[55,50],[141,131],[62,-119],[12,-22],[19,-37],[35,-65],[21,-41],[43,-44],[70,-33],[187,-42],[251,-66],[66,-18],[122,-38],[34,-11],[44,-10],[44,-9],[44,-7],[14,-2],[48,-1],[6,0],[64,14],[3,0],[52,29],[66,78],[39,46],[158,183],[28,34],[3,2],[89,96],[15,15],[79,85],[18,20],[129,138],[82,88],[89,95],[34,37],[1,1],[9,10],[27,30],[22,25],[78,89],[37,41],[47,25],[49,1],[52,-13],[1,-1],[21,-17],[27,-23],[32,-32],[9,-9],[23,-24],[8,-13],[16,-26],[30,-57],[31,-62],[80,-158],[15,-29],[47,-85],[92,-162],[37,-64],[11,-18],[0,-1],[48,-84],[1,-2],[1,-1],[4,-8],[2,-4],[23,-40],[1,-2],[0,-1],[1,-1],[28,-56],[43,-73],[5,-10],[6,-12],[9,-16],[17,-33],[7,-15],[49,-78],[92,-200],[41,-53],[44,-25],[65,-35],[58,-12],[12,-3],[119,8],[4,0],[292,-1],[4,0],[114,-6],[18,-1],[140,4],[10,0],[13,-1],[4,0],[6,0],[12,-1],[16,0],[55,-3],[22,-1],[3,1],[57,7],[4,1],[1,0],[34,6],[5,1],[38,12],[30,25],[6,5],[2,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[14,11],[12,11],[6,5],[17,13],[0,1],[3,2],[4,4],[4,3],[2,2],[1,0],[3,2],[1,1],[1,1],[0,1],[3,2],[2,2],[2,1],[3,3],[39,34],[35,41],[16,15],[9,9],[7,6],[34,27],[29,14],[32,8],[2,0],[2,1],[71,21],[35,7],[115,7],[1,0],[61,-10],[1,0],[65,-5],[21,-8],[31,-11],[1,-1],[2,0],[72,-27],[1,0],[5,-2],[3,-1],[24,-12],[12,-8],[32,-23],[60,-61],[27,-16],[21,-8],[37,0],[35,19]],[[321905,229812],[0,1],[29,42]],[[323996,233453],[0,48],[0,1]],[[343421,250336],[-163,174],[-1,0]],[[341107,267939],[69,-14]],[[342286,268537],[60,56]],[[342346,268593],[154,266]],[[344529,274215],[-632,179]],[[331347,287725],[-1,-3],[-1,-1],[-20,-44]],[[330377,287519],[-31,-9],[-1,0]],[[377472,258746],[0,1],[-1,0]],[[377470,258747],[-1,0],[0,1]],[[376578,258237],[-6,-18],[0,-1]],[[376457,257993],[0,-1],[-2,-3]],[[376408,257915],[-1,-1],[0,-1]],[[373900,254999],[-4,-5],[0,-1],[-1,0]],[[373475,254392],[-1,-1],[-35,-50]],[[373365,254208],[0,-1],[-1,-1]],[[371964,250731],[0,-4],[0,-1]],[[371628,249632],[-89,-238]],[[371429,249099],[0,-1],[-1,-1]],[[371266,248724],[-37,-43]],[[370476,246657],[0,-1],[0,-1]],[[371322,243722],[2,-5],[0,-1]],[[372992,238126],[0,-1],[2,-7]],[[373033,237987],[1,0],[21,-65]],[[375359,235090],[-4,-32],[0,-1]],[[375315,234788],[-1,-5],[0,-1]],[[375199,234160],[-21,-114]],[[355972,212385],[-8075,-2699],[-2236,-569],[-1296,-330],[-6029,-1533],[-1713,-872],[-189,-96],[-261,-133],[-284,-143],[-4951,-2520],[-645,-4828],[-151,-1116],[-326,-2429],[-28,36],[-13,16],[-13,16],[-44,39],[-42,59],[-71,100],[-79,109],[-7,10],[-71,108],[-36,59],[-34,55],[-57,114],[-56,80],[-53,57],[-79,80],[-59,41],[-52,33],[-86,41],[-28,-1],[-51,2],[-47,-7],[-105,-23],[-21,-17],[-63,-21],[-43,-20],[-101,-39],[-21,-6],[-37,-9],[-99,-27],[-122,-50],[-50,-21],[-50,-20],[-63,-32],[-73,-16],[-7,-3],[-102,-29],[-7,-3],[-63,-13],[-99,-41],[-52,-16],[-52,-24],[-15,-1],[-47,-4],[-19,4],[-23,1],[-56,-21],[-57,-18],[-27,-9],[-99,-36],[-105,-14],[-99,-33],[-101,-27],[-101,-26],[-101,-43],[-101,-28],[-81,-17],[-21,-4],[-107,-33],[-100,-37],[-41,-9],[-482,-154],[-120,-32],[-124,-52],[-309,-66],[-106,-35],[-494,-156],[-226,-64],[-117,-15],[-109,-50],[-129,-41],[-99,-13],[-158,-43],[-118,-37],[-80,-23],[-15,-5],[-55,-16],[-101,-24],[-98,-27],[-97,-32],[-118,-29],[-113,-27],[-101,-15],[-130,-17],[-100,-25],[-99,-26],[-141,-39],[-114,-32],[-97,-33],[-99,-17],[-99,-1],[-127,30],[-110,52],[-93,50],[-47,25],[-97,53],[-67,39],[-17,11],[-57,33],[-97,51],[-127,64],[-92,53],[-136,61],[-173,94],[-141,79],[-118,58],[-95,48],[-101,40],[-106,40],[-24,7],[-104,54],[-43,23],[-98,56],[-91,61],[-44,31],[-45,31],[-92,54],[-95,47],[-92,52],[-94,50],[-93,56],[-90,62],[-45,29],[-46,29],[-92,50],[-95,47],[-94,52],[-95,47],[-95,46],[-94,47],[-96,49],[-91,63],[-95,45],[-94,49],[-98,43],[-92,52],[-92,55],[-94,56],[-96,48],[-91,58],[-97,42],[-97,37],[-93,51],[-92,50],[-91,63],[-61,40],[-29,19],[-96,35],[-98,30],[-99,20],[-30,-6],[-69,-14],[-98,-29],[-94,-51],[-97,-29],[-95,-40],[-83,-77],[-89,-63],[-98,-32],[-99,-20],[-100,-25],[-103,-36],[-14,-6],[-83,-36],[-97,-39],[-99,-25],[-31,-9],[-82,-78],[-91,-66],[-86,-71],[-84,-76],[-80,-85],[-80,-84],[-2,-2],[-79,-84],[-79,-86],[-75,-92],[-77,-90],[-79,-85],[-78,-88],[-79,-87],[-84,-78],[-81,-83],[-80,-84],[-78,-87],[-82,-82],[-82,-80],[-78,-86],[-73,-95],[-76,-90],[-80,-83],[-78,-89],[-77,-91],[-77,-90],[-98,-91],[-64,-72],[-93,-51],[-98,-30],[-100,-17],[-98,-27],[-96,-43],[-95,-41],[-96,-40],[-96,-55],[-93,-54],[-88,-65],[-95,-45],[-95,-44],[-98,-31],[-95,-37],[-97,-32],[-97,-36],[-99,-38],[-96,-38],[-99,-11],[-34,0],[-66,-1],[-98,25],[-117,5],[-182,13],[-100,-3],[-100,3],[-58,6],[-111,-45],[-130,-38],[-142,8],[-71,33],[-65,38],[-28,28],[-161,118],[-337,300],[-98,28],[-96,-35],[-30,-46]],[[338403,110636],[-18,-104],[-28,-96],[-70,-45],[-74,12],[-74,22],[-73,43],[-74,25],[-28,97],[-68,-68],[-51,-76],[-30,-95],[-40,-94],[32,-98],[50,-68],[-8,-81],[38,-46],[-8,-78],[51,-67],[-24,-46],[-43,14],[-35,78],[-95,2],[-43,36],[-80,77],[-105,72],[-17,27],[-17,28],[-19,3],[-19,-17],[-25,-30],[-42,-32],[-65,-16],[-73,0],[-28,42],[4,56],[1,66],[-11,66],[12,54],[10,3],[27,-2],[21,10],[-3,29],[-2,46],[38,46],[31,18],[29,39],[42,14],[55,9],[25,41],[10,49],[22,34],[11,20],[30,65],[18,42],[20,64],[8,104],[53,86],[44,88],[30,111],[32,102],[67,50],[69,-50],[28,-100],[2,-107],[57,-74],[75,-2],[53,-78],[58,-70],[73,-32],[47,-83],[55,-77],[62,-58]],[[334782,113629],[32,-16],[6,4],[29,25],[8,-10],[-9,-34],[6,-13],[13,-41],[-12,-45],[-24,-35],[-33,-5],[-21,-4],[-28,-27],[-25,-33],[-22,35],[0,4],[-13,42],[-30,-21],[-34,2],[-32,8],[-19,37],[12,43],[17,40],[20,39],[20,25],[31,16],[33,8],[32,-2],[24,-6],[19,-36]],[[429803,113705],[7,-5],[8,-8],[7,-10],[4,-10],[4,-6],[8,-6],[10,-8],[8,-4],[5,-2],[6,0],[5,-1],[4,1],[4,2],[10,1],[8,-9],[10,-1],[15,2],[9,1],[12,1],[17,1],[6,0],[6,-1],[5,-1],[6,-5],[3,-6],[13,-6],[5,-2],[7,0],[9,-1],[8,-3],[9,-5],[3,-5],[5,-4],[4,-4],[6,-15],[9,2],[12,-9],[3,-7],[8,-14],[7,-3],[9,-1],[6,-9],[8,-9],[10,-13],[5,-15],[3,-11],[4,-18],[-8,-21],[-9,-11],[0,-12],[-3,-10],[-6,-12],[8,-31],[4,-25],[1,-9],[2,-9],[0,-13],[3,-8],[8,-16],[6,-9],[2,-3],[6,-2],[9,1],[11,-8],[4,0],[10,1],[9,-5],[4,-11],[3,-9],[2,-2],[4,3],[20,6],[24,4],[9,0],[8,0],[3,1],[8,5],[3,-2],[1,-7],[4,-18],[3,-8],[7,-10],[8,-1],[1,4],[2,4],[1,3],[-2,6],[-4,8],[-1,6],[2,3],[7,-1],[3,-5],[5,-6],[5,-4],[4,-6],[3,-9],[1,-8],[2,-8],[4,-5],[3,-5],[2,-7],[1,-6],[3,-9],[0,-5],[-1,-9],[-6,-2],[-4,5],[-3,5],[-3,4],[-10,8],[-8,1],[-2,1],[-3,3],[-4,0],[-4,-2],[-4,-3],[-5,-4],[-2,-1],[-4,-5],[-2,-4],[-5,-6],[-6,-9],[-9,-13],[-2,-5],[-2,-3],[-2,-2],[0,-4],[0,-7],[0,-3],[3,-4],[3,-2],[4,0],[2,-3],[3,-3],[4,-4],[6,-3],[4,-7],[9,-7],[3,-3],[7,-9],[6,-7],[5,-8],[9,-9],[7,-5],[7,-2],[6,-10],[-2,-2],[-4,-1],[-4,1],[-6,2],[-7,1],[-15,11],[-9,21],[-18,13],[-11,-3],[-7,-8],[-3,-6],[-7,-9],[-5,-5],[-6,-3],[-5,-1],[-8,0],[-4,-3],[-6,-3],[-3,-1],[-7,0],[-4,-2],[-4,3],[-11,11],[-6,5],[-8,0],[-4,0],[-21,-2],[-9,-11],[-9,-8],[-10,-7],[-8,-6],[-9,-5],[-5,-4],[-6,-6],[-6,-9],[-2,-3],[-1,-12],[-21,-27],[-34,-1],[-5,2],[-1,5],[1,6],[12,8],[12,9],[5,1],[6,3],[6,9],[1,16],[-7,15],[-5,12],[-5,8],[-11,6],[-6,4],[-8,0],[-4,-2],[-4,-2],[-2,-2],[-2,-5],[3,-4],[6,-6],[6,-15],[-1,-4],[-4,-4],[-7,-1],[-8,-1],[-11,0],[-10,0],[-7,2],[-3,2],[-1,30],[-4,13],[-4,6],[-2,3],[-7,-2],[-12,15],[-7,0],[-8,-2],[-8,3],[-3,8],[1,13],[-1,8],[-6,9],[-13,1],[-15,-2],[-11,2],[-2,3],[0,7],[-9,7],[-8,1],[-7,1],[-4,-2],[-6,-5],[-4,-1],[-3,1],[-1,9],[0,5],[-2,2],[-15,6],[-19,-2],[-4,9],[-3,4],[-9,0],[-3,9],[-5,2],[-6,0],[-10,-2],[-5,12],[-10,13],[-7,0],[-14,-3],[-5,3],[0,6],[-2,16],[-1,11],[-6,1],[-5,0],[-7,3],[-3,7],[-6,-1],[-2,1],[-10,14],[-1,26],[-3,-1],[-11,1],[-11,0],[-10,1],[-8,4],[-5,6],[-5,13],[0,26],[-1,11],[0,27],[-4,30],[-9,10],[-2,12],[-1,7],[6,14],[5,14],[-1,25],[3,31],[4,6],[3,8],[5,7],[2,6],[-1,5],[-1,0],[-3,0],[-6,6],[-4,10],[0,14],[-2,34],[4,9],[2,5],[4,1],[15,3],[5,1],[2,3],[4,0],[7,-3],[7,0],[10,3],[5,5],[-1,7],[1,19],[2,15],[-1,13],[-1,12],[4,8],[6,4],[4,-4],[7,-8],[8,-5],[10,-1],[10,2],[4,2],[1,5],[0,9],[4,9],[5,9],[6,3],[6,0],[4,0],[9,-3],[3,-3],[5,-10],[3,-1],[9,-5],[6,-6],[7,-7]],[[431138,115961],[-1,-9],[-1,-6],[-1,-6],[-3,-6],[3,-1],[7,1],[6,1],[5,7],[6,10],[9,2],[7,0],[3,0],[8,1],[4,2],[12,1],[13,2],[9,0],[6,-5],[9,-11],[2,-13],[3,-10],[2,-8],[4,-12],[3,-4],[3,-1],[6,-7],[0,-7],[-5,0],[-12,0],[-8,-1],[-7,-4],[-4,-5],[-4,-3],[-8,1],[-3,0],[-3,-1],[-3,-2],[-4,-2],[-11,2],[-4,4],[-6,7],[-2,-5],[1,-6],[5,-4],[5,-7],[0,-7],[5,-6],[6,-3],[5,-4],[10,-4],[11,0],[10,-1],[4,-2],[7,-3],[7,0],[6,1],[2,5],[1,4],[3,8],[8,0],[12,1],[10,-1],[3,5],[3,10],[4,-2],[8,-3],[18,-17],[4,-3],[8,-7],[6,-9],[-7,0],[-6,-2],[-7,0],[-6,0],[-1,-2],[7,-14],[5,-11],[7,-6],[4,-7],[3,-11],[7,-6],[8,-9],[11,-3],[13,0],[12,0],[12,-9],[4,-1],[18,-1],[3,-6],[6,-13],[5,-4],[5,-1],[2,-4],[2,-3],[10,-7],[8,-3],[7,1],[5,-3],[2,-8],[5,-8],[9,-1],[14,0],[12,1],[9,1],[15,0],[26,-8],[13,0],[6,0],[13,0],[16,-11],[6,-5],[4,-3],[7,-3],[10,-1],[12,-2],[11,-6],[7,-11],[7,-13],[5,-14],[3,-10],[2,-17],[-5,-22],[-1,-7],[-1,-7],[-4,-12],[-3,-10],[-7,-6],[-3,-9],[1,-9],[2,-8],[2,-4],[2,-8],[-1,-17],[-7,-5],[-5,-6],[-9,-6],[-7,-4],[-4,-7],[-5,-7],[-5,-8],[0,-9],[-5,-3],[-3,-1],[-4,-4],[-3,-2],[-5,-3],[2,-6],[4,-2],[4,-3],[4,-4],[5,-2],[6,-2],[14,-12],[9,-16],[4,-9],[6,-10],[9,-12],[7,-8],[4,-11],[16,-23],[7,-9],[7,-10],[6,-14],[3,-12],[7,-18],[8,-9],[8,-9],[17,-29],[8,-21],[5,-12],[5,-10],[4,-12],[3,-11],[4,-15],[2,-12],[1,-1],[7,-6],[3,-17],[-1,-25],[1,-15],[1,-9],[3,-9],[4,-5],[5,-6],[5,-9],[1,-7],[-1,-12],[4,2],[6,-7],[5,-6],[1,-13],[2,-6],[4,-5],[3,-6],[2,-5],[2,-4],[3,-5],[4,-7],[3,-7],[1,-7],[1,-6],[5,-4],[3,-6],[4,-8],[-2,-9],[0,-7],[2,-10],[4,-8],[8,-11],[6,-5],[2,-8],[1,-10],[2,-5],[8,-20],[11,-15],[12,-32],[9,-11],[4,-11],[5,-8],[2,-3],[1,-3],[4,-6],[4,-9],[5,-16],[2,-14],[2,-9],[4,-17],[2,-19],[1,-8],[-1,-7],[-1,-8],[1,-20],[0,-14],[1,-9],[4,-13],[2,-17],[2,-17],[1,-10],[1,-2],[-3,-6],[-1,-2],[1,-2],[0,-2],[2,-1],[2,-2],[1,-3],[0,-2],[3,-5],[0,-4],[-2,-2],[-5,0],[-1,-5],[5,-9],[1,-7],[1,-5],[0,-8],[0,-5],[-1,-3],[0,-3],[1,-5],[0,-12],[-1,-2],[0,-2],[-2,-4],[0,-3],[0,-5],[0,-6],[-3,-8],[-2,-4],[-1,-9],[1,-6],[0,-11],[0,-5],[-1,-5],[-1,-7],[-1,-7],[0,-4],[-3,-4],[-1,-4],[0,-4],[-1,-3],[-4,-3],[-4,-11],[-7,-20],[0,-8],[-5,-8],[-1,-5],[0,-7],[-7,-10],[-1,-4],[0,-7],[0,-5],[0,-9],[-2,-8],[-3,-12],[-3,-11],[-1,-4],[-2,-7],[-4,-6],[-2,-6],[-2,-4],[-4,-1],[-3,-3],[-1,-6],[0,-5],[1,-7],[-1,-2],[-3,-5],[-2,-4],[-1,-6],[-1,-3],[-4,-5],[-4,-7],[-2,-7],[0,-2],[-2,-1],[-3,0],[-1,-2],[1,-4],[0,-5],[-3,-5],[-3,-7],[-3,-4],[-2,-5],[-3,-2],[-3,-3],[-1,-6],[-7,-12],[-6,-11],[-2,-7],[-6,-12],[-8,-7],[-8,-10],[-8,-11],[-6,-10],[-6,-8],[-10,-7],[-11,-13],[-14,-21],[-6,-9],[-8,-11],[-4,-11],[-5,-8],[-7,-12],[-7,-8],[-7,-6],[-7,-1],[-6,-2],[-3,-6],[-5,-2],[-6,-3],[-6,-8],[-6,-1],[-8,0],[-6,-3],[-1,-6],[-10,-3],[-7,-12],[-4,-9],[-3,-11],[-4,-10],[-5,-8],[-7,-10],[1,-12],[7,-9],[4,-8],[4,0],[6,0],[5,-2],[6,-5],[1,-10],[0,-7],[5,-5],[6,-7],[3,4],[5,4],[7,4],[2,-7],[3,-5],[7,-10],[1,-9],[2,-10],[5,-13],[-1,-11],[2,-32],[-3,-21],[-6,-12],[-4,-13],[-15,-30],[-1,-5],[-4,-7],[-6,-10],[0,-8],[-1,-5],[-8,-25],[-10,-8],[-11,-4],[-6,-5],[-1,-10],[2,-14],[9,-13],[1,-12],[0,-13],[0,-6],[-5,-11],[-1,-9],[-9,-1],[-8,-2],[-14,-16],[0,-7],[-1,-11],[-2,-7],[-8,-7],[-9,-3],[-14,-2],[-10,-4],[-9,-2],[-18,4],[-13,15],[-4,5],[-7,17],[-4,-1],[-4,-8],[-6,2],[-3,6],[-5,15],[-8,3],[-12,0],[-11,0],[-8,-1],[-6,5],[-6,8],[-1,-2],[-9,-3],[-8,7],[-3,12],[1,22],[-2,19],[1,18],[-2,15],[-3,4],[-2,0],[-6,-5],[-12,6],[-4,9],[-7,8],[-6,4],[-6,3],[-5,0],[-3,0],[-6,2],[-12,16],[-4,-10],[-7,-5],[-4,-8],[-5,-14],[-18,-7],[0,18],[2,11],[8,12],[-4,2],[-19,5],[-13,0],[-20,6],[-9,15],[-16,21],[-46,13],[3,15],[-4,4],[-15,9],[-11,14],[-10,0],[-15,1],[-42,17],[-43,30],[-22,26],[-17,26],[-16,24],[-10,21],[-5,3],[-32,31],[-28,27],[-15,12],[-24,1],[-21,9],[-25,0],[-19,-2],[-25,-1],[-28,1],[-23,0],[-12,-5],[-8,-4],[-10,-8],[-16,4],[-12,7],[-13,1],[-13,-5],[-11,-4],[-14,-4],[-12,-1],[-6,9],[-6,10],[-17,3],[-11,-4],[-23,-6],[-10,0],[-4,4],[-13,0],[-16,7],[-18,11],[-5,2],[-10,-3],[-2,-4],[0,-10],[0,-6],[-24,1],[-14,-1],[-7,6],[-6,10],[-4,3],[-6,0],[-4,-1],[-13,7],[-12,1],[-9,4],[-8,1],[-11,-1],[-8,6],[-8,4],[-12,1],[-20,2],[-6,-2],[-13,4],[-20,13],[-16,11],[-8,8],[-9,5],[-12,8],[-12,9],[-24,45],[-12,17],[-15,19],[-12,21],[-3,5],[-9,9],[-33,35],[-7,10],[-7,15],[-9,10],[-12,16],[-16,18],[-6,8],[-9,13],[-7,7],[-9,7],[-9,6],[-11,5],[-9,10],[-19,20],[-8,11],[-27,28],[-15,38],[-12,33],[-14,54],[-11,44],[-1,19],[2,25],[0,22],[0,22],[9,52],[17,42],[20,79],[17,80],[4,55],[2,51],[1,13],[1,14],[3,13],[12,16],[4,10],[8,9],[7,13],[6,8],[2,13],[5,6],[5,0],[9,0],[7,1],[19,15],[9,10],[7,6],[10,10],[10,18],[3,11],[0,13],[0,13],[1,12],[2,9],[3,8],[3,5],[3,18],[1,5],[2,3],[2,4],[4,1],[4,0],[4,-1],[7,-1],[3,2],[5,8],[3,7],[2,3],[2,9],[0,4],[2,6],[7,13],[3,10],[6,7],[7,5],[6,4],[6,0],[2,-2],[3,-2],[4,4],[7,4],[7,3],[6,7],[3,-1],[6,-6],[5,0],[7,6],[7,10],[-1,17],[-3,5],[-1,6],[-1,11],[0,13],[-1,25],[7,10],[6,0],[2,2],[7,5],[14,16],[5,5],[4,8],[3,5],[5,10],[3,3],[9,9],[10,13],[6,1],[4,3],[7,4],[6,0],[10,1],[14,8],[2,0],[4,3],[5,4],[6,0],[3,1],[6,6],[6,2],[6,0],[6,1],[17,19],[1,4],[5,3],[6,1],[6,0],[6,1],[4,3],[5,8],[7,8],[5,2],[0,6],[3,10],[5,6],[3,3],[3,5],[7,4],[4,5],[3,10],[0,10],[6,11],[3,4],[5,9],[3,6],[5,7],[7,3],[7,5],[3,6],[1,10],[1,7],[3,8],[4,7],[4,7],[5,7],[5,5],[1,3],[6,6],[18,22],[23,24],[19,28],[3,6],[5,6],[3,5],[3,0],[3,0],[4,5],[5,3],[4,0],[4,0],[3,1],[6,3],[6,3],[5,7],[5,7],[7,3],[6,4],[8,7],[7,6],[4,1],[4,1],[5,0],[5,1],[5,1],[3,5],[9,6],[6,4],[6,4],[6,5],[6,4],[6,0],[10,0],[5,5],[5,3],[4,2],[4,3],[3,4],[4,3],[4,6],[7,3],[5,6],[4,5],[3,0],[3,2],[3,4],[4,8],[4,5],[7,2],[9,6],[12,10],[5,4],[8,4],[11,1],[8,0],[9,5],[15,7],[36,25],[8,10],[6,5],[13,3],[7,0],[7,-4],[2,-3],[8,-3],[1,1],[4,3],[9,2],[7,-1],[6,-3],[5,-1],[8,4],[7,8],[-1,11],[-4,15],[6,0],[5,2],[7,0],[6,-4],[2,-2],[5,-3],[5,-1],[14,12],[2,-8]],[[350580,118037],[32,-11],[26,-10],[11,-1],[11,0],[30,1],[7,-12],[3,-5],[-5,-4],[-8,-6],[-9,-7],[-16,-15],[-13,-26],[-8,-24],[-6,-17],[-8,-21],[-2,-5],[-15,-40],[-1,-10],[-10,-28],[6,-42],[12,-46],[-2,-30],[-5,-16],[0,-34],[-1,-1],[-9,-9],[-20,-9],[-10,-24],[-1,-3],[-1,-3],[10,-15],[7,-10],[10,-15],[3,-11],[10,-14],[6,-9],[2,-3],[3,-3],[10,-28],[11,-45],[26,-26],[9,-6],[21,-16],[2,0],[33,-14],[18,-4],[18,-4],[37,-9],[36,-5],[34,-4],[33,-5],[39,-6],[35,-4],[33,-10],[33,-11],[25,-11],[41,-10],[20,-19],[6,-35],[-2,-23],[-2,-26],[-8,-30],[-3,-12],[3,-11],[3,-13],[4,10],[16,12],[12,-5],[8,-12],[11,-15],[30,-19],[34,-5],[34,-3],[32,-21],[4,-14],[4,-13],[1,-17],[-6,-46],[15,-41],[27,-29],[14,-13],[13,-14],[27,-34],[10,-48],[2,-48],[0,-3],[-1,-10],[-3,-38],[0,-2],[-6,-27],[-4,-18],[-8,-21],[-9,-21],[-11,-17],[-12,-17],[-9,-7],[-21,-17],[-28,-26],[-32,-27],[-28,-23],[-2,-1],[-29,-21],[-5,-5],[-25,-21],[-30,-17],[-36,-12],[-7,-3],[-26,-12],[-40,-9],[-35,-6],[-18,-6],[-18,-5],[-34,-4],[-36,-5],[-34,-6],[-29,-4],[-6,0],[-34,0],[-35,0],[-22,0],[-16,0],[-34,0],[-8,0],[-32,-2],[-39,-2],[-35,-5],[-44,-5],[-36,-1],[-32,0],[-36,-2],[-36,-9],[-39,-19],[-34,-14],[-32,-2],[-34,3],[-32,6],[-39,9],[-35,6],[-33,4],[-2,0],[-35,4],[-36,5],[-33,6],[-38,9],[-36,8],[-34,13],[-9,7],[-8,7],[-10,16],[-7,19],[-3,9],[-4,3],[-3,4],[-24,26],[-2,1],[-30,24],[-2,2],[-4,6],[-22,24],[-10,17],[-10,18],[-11,44],[2,23],[2,22],[7,23],[7,23],[9,20],[8,21],[18,39],[9,21],[10,21],[4,7],[18,29],[25,35],[19,24],[7,9],[13,15],[12,15],[27,26],[29,20],[31,21],[32,23],[29,23],[5,8],[13,17],[20,28],[10,13],[28,25],[29,22],[18,5],[33,-9],[22,-6],[15,3],[-3,3],[-25,26],[-15,14],[0,39],[0,20],[0,31],[0,32],[0,10],[3,46],[6,32],[2,12],[0,4],[-2,4],[-2,2],[-10,17],[-15,13],[-11,6],[-11,5],[-4,1],[-15,6],[-15,5],[-18,6],[-18,6],[-20,6],[-12,4],[-16,8],[-38,18],[-17,12],[-3,7],[1,35],[11,26],[26,53],[14,22],[20,14],[7,3],[8,3],[21,12],[0,4],[-2,12],[0,11],[2,17],[3,12],[7,20],[6,7],[19,23],[28,27],[27,29],[26,31],[28,25],[29,25],[30,22],[28,21],[26,18],[13,0],[28,17],[58,16],[27,0],[32,-1],[36,7],[7,3],[3,-1],[3,-1],[6,-1]],[[350563,118381],[8,0],[28,7],[6,-9],[-7,-9],[-5,-1],[-5,0],[-11,-10],[-6,-15],[-10,-17],[-5,-7],[-10,-13],[-11,-16],[-7,-17],[-11,-19],[-21,-24],[-27,-29],[-18,-17],[-14,-12],[-19,-12],[-16,-11],[-18,-19],[-16,-20],[-25,-23],[-14,3],[-12,14],[-8,12],[-21,-4],[-26,-17],[-9,-12],[-9,-11],[-14,-18],[-3,-4],[-4,-3],[1,11],[4,10],[5,15],[1,4],[-9,17],[-9,6],[-7,1],[0,13],[8,25],[4,16],[6,19],[8,18],[20,34],[18,29],[4,5],[29,27],[12,5],[8,-12],[8,5],[6,9],[9,10],[22,17],[15,4],[14,-1],[13,7],[14,4],[4,-4],[9,-16],[10,-12],[11,15],[4,23],[5,22],[17,17],[13,5],[0,-5],[0,-4],[-1,-8],[-1,-11],[0,-13],[4,0],[18,27],[22,32],[9,4],[4,-6],[3,-7],[1,-13],[0,-6],[4,-5]],[[336270,118557],[-24,-2],[-15,36],[13,49],[11,41],[22,-4],[16,-32],[-1,-43],[-22,-45]],[[442775,118999],[5,-1],[6,1],[4,-2],[5,-4],[5,-3],[5,-2],[6,0],[4,-1],[6,-5],[4,-10],[4,-6],[4,-5],[4,-3],[4,-2],[5,-6],[3,-7],[2,-7],[3,-4],[4,-6],[5,-13],[4,-3],[5,-1],[2,-2],[4,-6],[4,-5],[4,-4],[7,-3],[3,-4],[5,-5],[3,-4],[4,-3],[3,1],[2,2],[1,0],[5,-3],[8,-2],[6,-3],[3,-5],[3,-2],[5,-3],[5,-2],[2,-1],[4,-1],[2,-1],[3,-5],[5,-4],[4,0],[1,-6],[1,-6],[1,-5],[1,-4],[3,-7],[0,-4],[2,-8],[3,-5],[5,-1],[16,0],[3,-1],[1,-2],[9,-3],[9,-8],[3,-4],[1,0],[3,0],[2,-3],[2,-6],[2,-1],[4,-1],[2,-5],[1,-5],[0,-8],[2,-5],[2,-5],[3,-6],[4,-8],[2,-6],[2,-3],[3,-6],[1,-17],[0,-10],[0,-12],[1,-9],[4,-13],[-3,-27],[-3,-7],[-4,-9],[-3,-6],[0,-5],[0,-11],[-4,-12],[0,-7],[6,-1],[3,-5],[-1,-6],[-2,-6],[1,-6],[3,-5],[3,-4],[2,-3],[2,2],[0,4],[0,5],[8,3],[2,0],[6,1],[10,3],[23,0],[2,-4],[1,-7],[2,-7],[2,-4],[4,-6],[4,-2],[2,6],[5,4],[8,2],[4,-5],[7,-4],[6,-5],[0,-2],[5,-9],[1,-15],[0,-11],[0,-14],[3,-4],[1,-2],[4,-6],[1,-5],[1,-6],[3,-2],[1,-5],[6,-12],[1,-42],[0,-3],[2,-2],[1,-1],[3,-5],[2,-6],[2,-6],[1,-8],[3,-7],[2,-4],[4,-6],[3,-6],[2,-2],[9,-3],[3,-3],[3,-5],[13,-6],[6,-2],[6,0],[4,-3],[6,-4],[4,-5],[3,-9],[3,-6],[3,-5],[3,-2],[2,-3],[3,-5],[22,2],[9,-4],[4,-8],[5,-5],[1,0],[5,3],[6,1],[6,1],[2,-2],[1,-3],[6,-10],[4,-8],[4,-5],[2,-4],[4,-2],[4,-5],[2,-5],[6,-2],[3,-1],[5,-1],[9,1],[2,-5],[2,-3],[4,-1],[6,-4],[3,-4],[3,-6],[3,-5],[4,-2],[5,-2],[8,0],[6,1],[7,3],[3,-1],[5,-3],[4,-5],[5,-3],[7,0],[8,-5],[7,-6],[3,-4],[2,-1],[2,-3],[1,-5],[3,-6],[0,-6],[-1,-6],[-1,-6],[-4,-4],[-2,-2],[0,-5],[3,-5],[4,-5],[-1,-6],[2,-6],[2,-4],[0,-5],[-1,-4],[0,-6],[2,-5],[3,-5],[0,-5],[-1,-7],[-1,-7],[0,-6],[9,-6],[4,-3],[2,-2],[8,-9],[8,5],[1,-1],[3,-7],[2,-5],[3,-3],[2,-1],[1,0],[5,0],[4,1],[4,5],[4,5],[1,1],[1,7],[2,5],[4,1],[2,-4],[2,-4],[3,-5],[4,-6],[2,-3],[5,-4],[5,-6],[1,-6],[1,-5],[2,-4],[4,-8],[3,-2],[6,0],[7,0],[3,-3],[7,-5],[3,0],[3,0],[4,1],[5,0],[7,3],[3,-2],[2,-6],[2,-3],[2,-2],[7,-4],[4,-2],[6,-3],[2,-1],[3,-6],[7,-15],[4,-8],[2,-2],[5,-5],[4,-1],[4,-1],[3,-2],[2,-1],[2,-1],[4,0],[2,-2],[1,-2],[4,-4],[3,-2],[6,-2],[2,-10],[0,-1],[6,-7],[1,-5],[2,-2],[6,-2],[5,-4],[6,-3],[6,-4],[3,-1],[4,-1],[6,0],[2,-1],[4,-2],[0,-1],[4,-2],[1,0],[5,-6],[2,-2],[3,-2],[4,-2],[2,-3],[3,-4],[2,-3],[2,-6],[0,-2],[5,-6],[4,-6],[4,-5],[3,-3],[3,-2],[1,-1],[3,-3],[5,-5],[6,-5],[1,-2],[2,-9],[2,-9],[4,-5],[3,-8],[1,-4],[2,-3],[3,-3],[5,-4],[3,-1],[3,0],[1,-1],[1,-1],[5,0],[2,0],[3,-3],[1,-2],[5,-3],[2,-4],[1,-5],[0,-4],[6,-2],[4,-2],[5,-5],[2,-3],[1,-1],[7,0],[13,-8],[9,-9],[3,-3],[5,-2],[1,-1],[7,0],[5,0],[2,0],[7,-10],[11,-12],[5,-6],[4,-4],[1,-1],[4,-2],[12,-15],[3,-3],[2,-5],[4,-8],[6,-6],[3,-4],[0,-2],[10,-13],[2,-6],[6,-2],[11,-2],[1,-1],[1,-1],[4,-5],[3,-3],[2,-4],[5,-5],[4,-2],[2,-4],[2,-4],[4,-6],[6,-3],[5,-4],[6,-5],[8,-2],[1,-1],[5,1],[12,-6],[6,-5],[5,-3],[5,-6],[3,-1],[9,-6],[2,-6],[1,-1],[4,-1],[5,-1],[6,-3],[7,-5],[3,-2],[5,-2],[3,-1],[5,-4],[2,-3],[4,-4],[5,-1],[1,-7],[-1,-7],[0,-6],[3,-6],[4,-4],[4,-2],[7,-4],[4,-3],[4,-7],[5,-9],[4,-6],[3,-3],[5,-1],[8,-8],[7,-2],[3,-4],[3,-8],[4,-7],[4,-6],[3,-4],[2,-6],[3,-6],[5,1],[7,-6],[1,-8],[1,-5],[3,-2],[1,-5],[2,-6],[4,-5],[2,-2],[5,-1],[5,-1],[4,-5],[3,-3],[6,-3],[4,-4],[6,-6],[1,-6],[0,-5],[2,-6],[11,-13],[7,-6],[2,-3],[5,0],[3,0],[2,-4],[4,-1],[8,-1],[7,0],[2,0],[4,-6],[4,-1],[2,-2],[3,-5],[3,-2],[3,-2],[3,-7],[0,-12],[0,-9],[-1,-4],[-1,-6],[0,-5],[0,-9],[0,-6],[-3,-7],[-1,-7],[5,-2],[5,0],[4,0],[1,-1],[2,-1],[6,-7],[7,-12],[2,-3],[8,-6],[2,0],[3,-4],[1,-5],[1,-9],[2,-7],[3,-7],[1,-6],[-1,-6],[-2,-7],[0,-5],[-5,-8],[-9,-9],[-1,-6],[2,-1],[5,-1],[2,-2],[3,-6],[7,-1],[4,-3],[2,-7],[0,-7],[0,-9],[1,-5],[5,-2],[5,0],[7,0],[4,-3],[2,-4],[0,-6],[1,-8],[3,-7],[7,-6],[5,-5],[5,-3],[2,-10],[0,-9],[0,-16],[2,-5],[3,-4],[3,-5],[4,-4],[0,-15],[-1,-8],[1,-14],[2,-4],[2,-7],[0,-5],[0,-5],[-1,-5],[3,-6],[4,-4],[3,-4],[6,-3],[5,0],[7,1],[6,0],[6,0],[5,-1],[4,-5],[4,-5],[2,-4],[3,-6],[3,-3],[5,-5],[4,-23],[2,-11],[1,-10],[6,-12],[4,-10],[5,-8],[1,-2],[5,-4],[5,-11],[1,-4],[3,-10],[3,-5],[2,-5],[5,-2],[2,-2],[9,-1],[5,0],[3,-1],[5,1],[5,1],[4,2],[3,2],[7,3],[4,-3],[2,-4],[0,-5],[0,-7],[0,-11],[-5,-13],[-1,-7],[-1,-4],[0,-4],[0,-5],[0,-4],[1,-2],[5,0],[4,-4],[1,-5],[1,-6],[3,-6],[1,-6],[0,-9],[-1,-23],[1,-4],[2,-3],[5,-6],[6,-8],[5,-9],[-3,-7],[-7,-6],[-7,-3],[-3,-9],[2,-9],[3,-5],[6,-11],[3,-13],[-4,-14],[-6,-4],[-10,2],[-12,5],[-14,-17],[-3,-1],[-4,-5],[-10,-7],[0,-21],[-7,-7],[-13,2],[-7,0],[-8,-5],[-7,-5],[-2,-5],[-5,-4],[-8,3],[-5,5],[-4,9],[-5,3],[-1,-5],[-2,-5],[-4,-6],[-7,-5],[-8,1],[-10,6],[-8,1],[-7,-2],[-4,0],[-11,4],[-5,8],[-10,0],[-9,0],[-8,3],[-9,9],[-6,-1],[-7,-5],[-7,-6],[-4,-2],[-9,-1],[-24,-1],[-6,2],[-12,7],[-10,0],[-8,-2],[-4,-7],[-3,-10],[-9,-5],[-6,6],[-9,3],[-7,3],[-2,-6],[-2,-7],[-8,-10],[-13,-1],[-9,1],[-5,4],[-12,7],[-5,4],[-3,0],[-7,2],[-4,0],[-4,-3],[-2,-3],[-7,-1],[-7,2],[-5,3],[-5,1],[-6,4],[-6,-1],[-8,1],[-4,5],[-7,3],[-9,0],[-3,-1],[-5,0],[-4,0],[-4,3],[-7,5],[-4,0],[-5,0],[-6,-3],[-2,-4],[-12,1],[-2,18],[-1,6],[-1,3],[-6,1],[-4,-1],[-8,0],[-5,3],[-3,2],[-1,0],[-11,-1],[-8,1],[-1,-1],[-5,-8],[-10,-3],[-14,3],[-7,4],[-6,1],[-8,0],[-8,-1],[-7,-6],[-6,-8],[-1,-6],[-2,-6],[-3,-6],[-4,-2],[-6,-3],[-9,-3],[-6,-1],[-8,2],[-6,0],[-6,0],[-6,2],[-7,2],[-2,-4],[-1,-6],[0,-2],[-6,-5],[-5,-5],[-10,-5],[-4,-2],[-15,0],[-7,1],[-6,0],[-10,-10],[-10,-1],[-12,5],[-20,16],[-16,-1],[-10,7],[-18,1],[-15,0],[-15,-1],[-9,7],[-9,9],[-39,9],[-23,0],[-27,-11],[-20,-12],[-5,-5],[-5,-7],[2,-6],[5,-8],[5,-6],[1,-16],[-1,-7],[-2,-7],[-9,-4],[-6,-3],[-13,-4],[-15,-1],[-12,3],[-13,0],[-11,0],[-23,-5],[-6,-2],[-5,-5],[-7,-4],[-6,1],[-6,2],[-8,6],[-6,2],[-3,-2],[-9,-4],[-2,-2],[-6,-1],[-15,-7],[-1,20],[-4,8],[-13,9],[-6,2],[-7,6],[-7,7],[-7,7],[-3,0],[-8,0],[-7,8],[-5,11],[-5,22],[-52,1],[-3,6],[-1,8],[0,7],[0,7],[1,5],[2,4],[2,2],[5,0],[2,1],[2,13],[-1,8],[-12,7],[-8,-1],[-3,6],[-2,6],[-1,6],[1,7],[0,8],[0,7],[-11,13],[-2,8],[-8,5],[-5,2],[-5,4],[-3,27],[0,9],[-2,8],[-5,4],[-7,5],[-7,2],[-2,4],[-37,-1],[-17,0],[-7,2],[-3,2],[-6,9],[-6,8],[-10,-1],[-7,0],[-7,-1],[-5,-2],[-2,-4],[1,-6],[0,-6],[2,-5],[0,-6],[-3,-5],[-5,-4],[-5,0],[-6,9],[0,5],[-1,6],[0,7],[-2,8],[-9,12],[-4,5],[-5,8],[-3,5],[-1,8],[-2,3],[-6,5],[-1,8],[0,14],[-1,3],[-3,3],[-3,1],[-1,-2],[-2,0],[-3,0],[-12,5],[-6,5],[-4,9],[-3,6],[-1,7],[1,7],[1,7],[-1,5],[-8,18],[-7,8],[-7,2],[-2,11],[3,3],[5,0],[4,1],[1,10],[-1,8],[-3,3],[-7,14],[-10,14],[-1,10],[-4,9],[-2,7],[0,12],[2,5],[3,7],[1,8],[-8,20],[-2,10],[-4,13],[-3,6],[-4,8],[-1,9],[3,4],[1,8],[-3,2],[-4,0],[-6,1],[-22,18],[-11,23],[-10,15],[-12,37],[-5,4],[-2,4],[-3,9],[-5,15],[-5,9],[-15,16],[-11,20],[-4,2],[-3,4],[-2,10],[-1,11],[1,16],[-1,8],[-2,7],[0,4],[-1,9],[10,37],[22,58],[7,1],[2,3],[2,6],[1,9],[1,5],[1,8],[4,7],[2,9],[2,6],[3,4],[6,16],[-1,9],[-1,4],[1,4],[3,7],[5,10],[3,1],[8,5],[8,5],[4,1],[2,3],[4,7],[6,6],[1,10],[0,10],[-3,8],[5,0],[4,2],[1,9],[-3,8],[-1,5],[-9,1],[-6,3],[-5,4],[-2,7],[-1,6],[0,18],[3,17],[2,4],[2,8],[-10,33],[-2,16],[3,8],[-4,5],[-8,7],[-6,12],[-6,35],[1,7],[-2,8],[-3,2],[-5,5],[-4,10],[-3,3],[-3,5],[-4,5],[-3,0],[-4,-2],[-2,3],[-2,6],[2,9],[1,11],[-1,3],[-1,4],[-5,3],[-2,0],[-2,-4],[-2,-5],[-4,-3],[-2,0],[-2,2],[-2,5],[-2,9],[-1,5],[-1,8],[0,8],[5,24],[2,5],[2,3],[4,4],[2,3],[6,-1],[3,-2],[5,-4],[8,-1],[5,3],[4,3],[5,2],[16,1],[7,0],[6,0],[7,0],[4,0],[4,1],[8,3],[6,3],[2,5],[1,15],[2,5],[0,11],[-2,6],[-1,7],[-3,10],[-2,8],[-13,14],[-6,7],[-2,8],[-3,0],[-5,-4],[-4,0],[-6,8],[-2,7],[1,16],[-1,5],[-4,13],[0,10],[-1,6],[-1,10],[1,7],[5,15],[1,12],[-4,7],[-2,0],[-5,1],[-5,-1],[-4,4],[-3,5],[-2,2],[-10,9],[-1,8],[-2,5],[-3,5],[-4,2],[-4,2],[-3,1],[-5,-1],[-4,1],[-2,3],[-12,13],[-2,2],[-14,15],[-5,3],[-4,6],[-2,5],[-3,2],[-7,7],[-4,20],[-3,9],[-3,11],[-2,5],[-1,13],[-1,11],[0,6],[0,8],[-1,4],[-1,2],[-13,9],[-11,7],[-4,3],[-4,5],[-4,5],[-7,5],[-4,3],[-2,0],[-3,4],[-2,8],[8,15],[5,8],[4,8],[4,7],[2,1],[6,6],[6,4],[2,0],[0,4],[1,2],[1,6],[1,4],[0,4],[-7,2],[-6,3],[-2,11],[-1,28],[1,13],[10,18],[4,4],[5,2],[6,1],[4,5],[4,6],[5,6],[3,6],[4,5],[3,3],[5,1],[5,0],[4,-1],[3,2],[1,8],[-1,5],[-2,2],[-4,4],[-1,7],[-1,2],[-7,5],[-7,3],[-11,-2],[-9,-2],[-6,0],[-4,0],[-3,-3],[-2,-3],[-4,-3],[-5,-3],[-4,-1],[-3,-3],[-27,-2],[-15,-1],[-9,2],[-7,2],[-4,1],[-3,2],[-4,4],[-11,12],[-4,7],[-4,6],[-7,9],[-3,4],[-4,3],[-3,9],[-12,1],[-7,-1],[-5,0],[-3,0],[-4,0],[-3,1],[0,2],[-2,3],[-1,6],[-4,4],[-2,1],[-7,-1],[-4,5],[-2,5],[-2,2],[-4,1],[-2,3],[0,2],[0,3],[-1,3],[-3,1],[-3,0],[-3,-1],[-4,-4],[-4,-2],[-3,-3],[-1,-2],[-2,-3],[-7,4],[-5,3],[-6,2],[-7,4],[-1,0],[0,3],[-6,1],[-3,0],[-5,-1],[-3,3],[-11,3],[-5,5],[-2,3],[-4,0],[-3,0],[-3,0],[-5,0],[-5,0],[-3,1],[-2,0],[-4,0],[-2,3],[-2,3],[-6,4],[-9,4],[-2,1],[-3,0],[-4,0],[-4,0],[-4,-1],[-5,0],[-4,2],[-6,4],[-3,2],[-7,2],[-3,5],[-7,0],[-7,5],[-1,1],[-3,2],[-3,1],[-2,2],[0,2],[-2,5],[-7,10],[-1,5],[0,6],[0,4],[-1,2],[-2,2],[-2,2],[-1,4],[-1,1],[-2,2],[-4,0],[-1,4],[0,2],[-2,3],[-5,0],[1,5],[1,13],[-1,3],[-1,3],[-3,2],[-3,1],[-2,2],[-4,2],[-2,4],[-1,2],[0,1],[0,5],[0,5],[-1,3],[-3,6],[-3,5],[0,4],[-2,4],[-2,3],[-2,4],[-3,2],[-6,3],[-1,2],[0,5],[-3,-1],[-3,0],[-2,12],[-1,6],[0,5],[0,3],[1,2],[2,2],[2,2],[1,0],[3,1],[0,1],[1,1],[2,0],[5,1],[3,1],[1,2],[3,3],[1,3],[2,6],[1,11],[0,1],[4,3],[2,8],[5,6],[4,7],[2,1],[3,6],[4,5],[2,4],[0,3],[0,4],[-1,7],[4,3],[2,1],[5,4],[11,4],[3,2],[2,2],[6,1],[4,0],[5,0],[5,0],[3,1],[1,1],[1,2],[2,1],[2,2],[1,2],[2,0],[3,0],[3,0],[2,5],[4,1],[4,1],[4,2],[2,0],[3,-1],[2,-1],[3,0],[3,0],[4,0],[2,0],[4,2],[3,1],[5,1],[5,1],[5,5],[2,1],[4,0],[3,2],[2,1],[4,4],[2,3],[1,5],[2,3],[4,2],[6,2],[4,4],[8,5],[5,3],[2,2],[1,4],[1,2],[3,1],[2,1],[2,3],[0,2],[0,3],[1,2],[1,1],[3,3],[3,3],[2,4],[0,4],[0,1],[-2,1],[0,3],[2,5],[3,4],[5,2],[6,2],[2,3],[6,2],[6,2],[6,-7],[8,-7],[2,-5],[2,-6],[0,-2],[4,-3],[2,-2],[4,2],[6,4],[2,2],[-1,2],[0,3],[-1,3],[2,1],[3,1],[3,-1],[3,-3],[4,-2],[3,-1],[3,1],[3,3],[5,2],[4,2],[5,6],[6,3],[4,2],[4,1],[8,1],[7,1],[9,1],[5,2],[3,-1],[5,-4],[9,-3]],[[336721,119006],[-11,-5],[-11,12],[4,23],[3,24],[15,-3],[8,-21],[-8,-30]],[[336617,118991],[16,-8],[-1,19],[-1,36],[14,20],[29,5],[17,-10],[2,-37],[1,-32],[-11,-26],[-15,-7],[-8,-23],[-22,-22],[-21,0],[-21,-24],[-34,-7],[-24,17],[-20,25],[-2,59],[15,25],[16,11],[3,17],[-1,23],[5,20],[15,17],[14,8],[14,-1],[12,-20],[2,-26],[2,-36],[-4,-16],[8,-7]],[[336645,119326],[15,-26],[-5,-63],[-32,-47],[-28,-11],[-21,-60],[-25,-43],[-62,-84],[-1,-27],[-35,-59],[-28,-78],[-53,-91],[-24,-25],[-27,21],[-21,6],[-30,-2],[-19,30],[-25,70],[4,47],[12,53],[5,82],[6,57],[42,134],[14,66],[37,42],[50,15],[70,-20],[59,-2],[52,17],[37,15],[33,-17]],[[337288,118942],[-41,-50],[-28,15],[-51,119],[-1,187],[26,183],[53,149],[58,47],[26,-17],[42,-94],[29,-106],[30,-88],[-24,-47],[-50,-32],[-54,-19],[19,-39],[-3,-73],[-31,-135]],[[336873,119303],[-37,-34],[-32,28],[0,54],[-1,94],[-22,75],[-74,111],[-16,96],[7,115],[43,206],[10,219],[16,49],[49,-22],[45,-65],[42,-129],[35,-205],[-9,-256],[-29,-195],[-27,-141]],[[337362,120668],[-16,-128],[-82,2],[-79,72],[-81,82],[-64,129],[-53,104],[-87,121],[-45,72],[9,26],[112,17],[121,-55],[158,-170],[61,-80],[46,-192]],[[351367,121395],[11,-27],[14,-3],[26,0],[13,-16],[13,-15],[3,-14],[6,-31],[-6,-59],[20,-32],[18,-40],[2,-13],[6,-35],[-14,-43],[-22,-34],[-31,-25],[-31,-21],[-32,-20],[-31,-20],[-33,-21],[-32,-18],[-6,-4],[-28,-18],[-30,-20],[-34,-26],[-31,-27],[-30,-18],[-17,-3],[-17,-2],[-33,15],[-4,49],[-7,22],[-6,21],[-13,32],[-3,9],[-3,53],[13,46],[4,5],[23,26],[27,25],[25,30],[-8,18],[-27,27],[-10,43],[17,41],[20,35],[24,35],[27,29],[29,24],[34,2],[32,-1],[34,-1],[32,6],[32,19],[20,-1],[14,-4]],[[336712,121814],[77,-11],[84,11],[52,0],[50,-1],[24,-7],[25,-26],[27,-71],[4,-52],[-4,-55],[-6,-62],[-2,-26],[-17,-11],[-31,-2],[-72,-2],[-124,-5],[-133,-32],[-43,-19],[-43,-22],[-35,6],[-18,2],[-12,5],[-9,6],[-6,6],[-7,7],[-9,4],[-9,3],[-1,10],[2,7],[6,13],[-13,20],[-23,11],[-23,17],[-24,8],[-10,-7],[-10,-11],[-11,-4],[-23,15],[-30,11],[-21,5],[-69,37],[-84,51],[-99,67],[-33,26],[-41,30],[-49,25],[-15,11],[-16,23],[-14,11],[-10,11],[-12,17],[-10,17],[-11,9],[-11,6],[-9,14],[-8,21],[-7,26],[-23,34],[-7,26],[3,18],[4,3],[11,0],[11,0],[11,4],[18,12],[16,11],[36,33],[38,7],[37,-19],[55,-51],[83,-62],[82,-38],[82,-21],[93,-16],[71,-2],[47,-2],[58,-11],[26,-13],[89,-34],[75,-22]],[[335800,122050],[-3,0],[-5,0],[-6,3],[-26,21],[-14,9],[-7,5],[-1,5],[5,8],[5,4],[7,0],[7,2],[4,6],[5,3],[10,6],[7,3],[34,-4],[21,-2],[20,-3],[11,-3],[-14,-9],[-18,-14],[-21,-18],[-9,-11],[-4,-8],[-8,-3]],[[335502,122539],[11,-2],[16,2],[43,5],[69,-10],[38,-21],[46,-30],[44,-35],[24,-32],[16,-43],[18,-61],[9,-27],[4,-21],[1,-14],[0,-10],[-3,-14],[-2,-3],[-6,-8],[-8,-5],[-5,2],[-12,1],[-55,-8],[-35,0],[-5,3],[-7,-1],[-8,-3],[-6,0],[-2,1],[-8,5],[-8,5],[-14,3],[-17,2],[-10,1],[-6,-2],[-6,-3],[-10,-1],[-14,7],[-4,1],[-3,5],[-3,8],[-5,4],[-5,-1],[-3,-4],[-8,4],[-4,4],[-6,5],[-5,4],[-3,4],[-1,5],[-2,8],[-4,5],[-8,4],[-8,4],[-4,5],[-6,9],[-2,7],[2,2],[3,1],[4,0],[5,4],[0,7],[-7,15],[-7,6],[-14,19],[-14,14],[-10,21],[-13,34],[-9,24],[-5,18],[-4,8],[-4,5],[-1,8],[3,17],[-2,17],[2,5],[11,4],[19,6],[23,7],[4,-1],[6,-5]],[[332327,124172],[-50,-32],[-110,51],[-115,109],[-65,169],[-81,79],[15,108],[52,4],[62,-37],[55,-3],[82,-68],[61,-111],[83,-144],[45,-55],[-34,-70]],[[331659,124402],[-17,-17],[-140,43],[-150,130],[-76,158],[-70,156],[-93,141],[-83,44],[-73,158],[27,63],[-11,118],[80,22],[70,-34],[157,-137],[163,-136],[60,-107],[61,-214],[64,-228],[31,-160]],[[330906,125378],[-3,-163],[-82,-29],[-148,91],[-236,-10],[-308,-52],[-221,-14],[-244,80],[-177,157],[36,67],[179,113],[196,69],[228,38],[298,-31],[290,-107],[124,-99],[68,-110]],[[329815,125714],[-72,-33],[-44,7],[-31,58],[23,42],[101,50],[50,-17],[13,-55],[-40,-52]],[[403321,127523],[-7,-13],[4,-12],[11,2],[8,12],[7,7],[8,1],[12,-15],[14,-1],[2,11],[4,11],[8,10],[11,2],[9,1],[8,-1],[12,-4],[11,-4],[10,-3],[12,-6],[6,-6],[10,-10],[13,-12],[8,-7],[12,-9],[5,-12],[0,-15],[-4,-11],[-6,-6],[-3,-11],[8,-8],[8,3],[1,11],[1,11],[8,8],[8,-4],[10,-7],[6,-8],[9,-10],[3,-11],[-4,-10],[-5,-12],[-10,-14],[-9,-9],[-6,-7],[-9,-11],[-9,-12],[-2,-15],[4,-23],[11,-10],[7,-7],[5,8],[8,4],[8,-5],[5,-10],[6,-7],[6,-8],[6,-9],[6,-8],[7,-8],[6,-6],[8,-11],[6,-8],[7,-13],[6,-15],[4,-13],[4,-18],[3,-12],[4,-15],[5,-9],[5,-16],[16,-17],[13,-1],[12,-3],[5,-11],[6,-11],[6,-14],[2,-14],[-6,-10],[-11,-6],[-9,-3],[-6,-6],[-9,4],[-1,12],[-5,14],[-10,3],[-8,-12],[1,-12],[1,-14],[1,-11],[2,-13],[2,-18],[2,-10],[4,-21],[-1,-15],[-2,-15],[-4,-11],[-7,-16],[-8,-19],[-7,-14],[-7,-7],[-11,-3],[-8,1],[-10,2],[-13,0],[-8,-6],[-8,-2],[-9,1],[-9,4],[-7,4],[-10,7],[-8,5],[-7,6],[-9,8],[-5,7],[-9,14],[-5,9],[-7,11],[-11,3],[-10,-4],[-10,-1],[-10,4],[-8,5],[-9,4],[-15,8],[-9,6],[-7,6],[-13,7],[-12,-7],[-7,-4],[-14,-6],[-10,-16],[-6,-14],[-12,-7],[-12,-5],[-13,1],[-10,2],[-17,9],[-11,8],[-8,10],[-10,10],[-10,11],[-9,7],[-8,9],[-10,9],[-12,9],[-12,11],[-11,5],[-14,6],[-10,4],[-15,4],[-17,5],[-11,0],[-14,0],[-15,-8],[-16,-11],[-8,-7],[-42,11],[-14,4],[-7,-15],[-3,-10],[-7,-17],[-3,-15],[-5,-10],[-5,-9],[-5,-12],[-7,-12],[-2,-8],[-11,-16],[-8,-11],[-5,-10],[-7,-14],[-8,-10],[-9,-12],[-12,-12],[-15,-15],[-11,-10],[-11,-10],[-10,-7],[-10,-9],[-11,-10],[-10,-6],[-15,-7],[-9,-5],[-15,-7],[-13,-8],[-11,-7],[-11,-6],[-10,-2],[-12,-3],[-11,-2],[-14,-1],[-13,-1],[-18,1],[-15,0],[-13,-3],[-12,-3],[-11,-5],[-9,-11],[-12,-9],[-12,-5],[-12,-6],[-11,0],[-11,0],[-10,0],[-12,0],[-8,0],[-15,0],[-12,-3],[-9,3],[-14,3],[-11,5],[-8,5],[-13,12],[-14,11],[-9,8],[-8,8],[-5,10],[-7,21],[-16,7],[-10,7],[-7,6],[-14,1],[-8,-5],[-9,-4],[-9,1],[-8,10],[0,12],[-2,15],[0,13],[1,12],[2,13],[3,11],[7,13],[11,7],[12,7],[15,17],[1,17],[4,10],[7,12],[11,2],[11,3],[13,8],[9,5],[10,4],[12,1],[11,0],[8,6],[0,11],[0,13],[-1,11],[1,14],[2,13],[3,15],[6,17],[5,10],[8,13],[6,9],[5,9],[12,15],[6,14],[7,13],[6,7],[11,14],[8,7],[7,10],[11,13],[10,14],[8,15],[6,10],[6,7],[9,8],[9,9],[12,10],[11,10],[8,7],[8,6],[10,8],[12,7],[13,4],[10,4],[9,1],[10,3],[7,6],[10,3],[16,3],[11,4],[4,1],[10,1],[10,4],[8,1],[12,3],[15,2],[8,-1],[8,0],[12,0],[11,1],[9,0],[8,0],[12,-1],[12,0],[10,0],[15,0],[12,0],[8,1],[18,0],[16,-2],[16,1],[8,0],[11,0],[8,-3],[5,-7],[5,-11],[7,-10],[11,-1],[5,11],[-3,11],[0,14],[8,5],[15,-2],[8,4],[1,14],[7,7],[9,2],[7,4],[10,1],[2,11],[5,10],[8,6],[13,3],[15,18],[10,9],[6,9],[11,8],[10,8],[5,11],[7,13],[7,6],[7,6],[8,7],[7,14],[12,13],[0,18],[6,7],[8,-3],[12,0],[11,22],[7,14],[7,10],[9,-1],[8,-3],[10,-7],[9,-5],[2,-10],[-1,-15]],[[333606,125205],[8,-41],[32,5],[13,-36],[-39,-92],[-14,-104],[16,-65],[49,-80],[17,-86],[-26,-31],[-99,12],[-76,-1],[-15,-3],[-18,-47],[-51,-35],[-109,-85],[-19,68],[-29,140],[-9,172],[-23,135],[-64,116],[-25,117],[-42,90],[-50,255],[-34,257],[-18,218],[-99,243],[-158,269],[-152,115],[-143,167],[-182,149],[-134,84],[-248,30],[-245,8],[-236,134],[-90,158],[-194,273],[-111,134],[-10,54],[218,139],[258,32],[174,-34],[217,-172],[350,-388],[316,-404],[255,-294],[162,-185],[245,-361],[149,-274],[50,-134],[34,-140],[110,-212],[81,-189],[8,-81]],[[430410,128273],[33,-4],[22,1],[14,0],[19,-7],[2,-12],[-1,-15],[-17,-21],[-1,-23],[1,-12],[6,-18],[4,-17],[3,-17],[-1,-32],[-9,-28],[-13,-15],[-13,-18],[-21,-8],[-9,-9],[-5,-15],[0,-15],[0,-14],[0,-13],[-7,-14],[-15,-13],[-17,-32],[-16,-10],[-20,-10],[-17,-18],[-17,-6],[-32,0],[-24,-4],[-12,-9],[-14,-11],[-14,-15],[2,-17],[2,-24],[0,-24],[-2,-24],[-9,-23],[-16,-14],[-7,-8],[-8,-19],[-16,-35],[-4,-17],[-6,-23],[-25,-32],[-38,-41],[-12,-23],[-23,-35],[-15,-17],[-23,-24],[-16,-15],[-6,-27],[-25,-33],[-44,-18],[-31,-1],[-32,2],[-30,-2],[-13,-15],[-7,-18],[-6,-18],[-16,-19],[-20,-16],[-12,-19],[-14,-36],[-9,-20],[-18,-15],[-13,-11],[-17,-15],[-5,-16],[-23,-24],[-11,-6],[-22,-18],[-15,-7],[-32,2],[-29,12],[-48,-1],[-7,-11],[-1,-16],[-15,-18],[-25,-12],[-22,-8],[-22,-2],[-28,15],[-10,8],[-17,3],[-21,2],[-11,-3],[-94,16],[-43,6],[-14,-3],[-13,-1],[-18,-6],[-10,-20],[-13,-23],[-17,-17],[-8,-9],[-15,-13],[-21,-19],[-32,-26],[-39,-13],[-24,-11],[-10,-14],[-5,-20],[0,-21],[1,-22],[-6,-24],[-12,-20],[-27,-21],[-26,-15],[0,-19],[1,-15],[-7,-28],[-16,-36],[-22,-19],[-19,-7],[-21,-8],[-30,-17],[-26,-12],[-29,-8],[-86,-30],[-11,-6],[-39,-16],[-18,-7],[-11,-4],[-11,-11],[-15,-12],[-14,-4],[-13,-8],[-18,-18],[-8,-16],[-7,-12],[-13,-18],[-14,-14],[-18,-17],[-14,-16],[-19,-35],[-19,-14],[-9,-10],[-11,-4],[-15,-10],[-2,-15],[-2,-15],[-3,-20],[-1,-16],[-4,-18],[1,-31],[-6,-3],[-9,0],[-24,-13],[-24,-18],[-11,-10],[-5,-9],[-8,-13],[-12,0],[-12,-2],[-19,0],[-29,-3],[-12,-4],[-9,-3],[-14,1],[-7,5],[-1,13],[-12,15],[-6,9],[-13,-1],[-21,0],[-13,-3],[-14,-12],[-6,8],[-15,4],[-24,1],[-28,-1],[-18,7],[-12,2],[-22,-1],[-21,-4],[-9,-11],[-25,-3],[-18,-1],[-20,9],[-18,12],[-9,-1],[-14,0],[-62,-3],[-11,-2],[-8,4],[-24,20],[-12,37],[-12,21],[-6,3],[-13,3],[-19,-1],[-29,-5],[-12,68],[2,18],[5,9],[27,50],[3,14],[23,43],[0,22],[0,28],[18,43],[6,9],[13,11],[14,17],[17,24],[10,20],[18,59],[7,14],[23,33],[8,14],[-1,14],[-5,-1],[-5,-4],[-7,-3],[-8,-4],[-1,-3],[-2,-4],[-6,0],[-6,-1],[-9,0],[-6,3],[-1,4],[0,8],[-2,18],[1,27],[-2,63],[1,15],[7,17],[14,15],[19,19],[10,25],[6,21],[11,33],[10,12],[9,7],[18,10],[15,4],[11,10],[41,10],[17,4],[38,10],[21,12],[18,11],[22,4],[22,15],[25,25],[15,6],[18,13],[12,8],[21,0],[17,0],[11,1],[13,-1],[11,-7],[0,-10],[1,-19],[4,-16],[5,-12],[8,-9],[14,-5],[7,-9],[15,-21],[16,-7],[12,-6],[23,0],[18,-12],[9,-12],[21,-1],[21,4],[20,7],[20,14],[35,-1],[11,-1],[21,4],[20,-7],[15,5],[10,18],[18,13],[23,18],[7,-9],[7,-14],[13,-6],[27,4],[3,79],[24,2],[13,0],[11,2],[7,3],[7,8],[17,12],[10,4],[9,9],[42,0],[76,1],[14,1],[10,12],[17,12],[15,5],[26,9],[27,18],[12,1],[35,1],[23,1],[22,-2],[10,7],[29,25],[10,9],[-1,15],[-2,9],[-7,16],[7,9],[17,17],[13,6],[13,1],[10,1],[12,4],[8,14],[25,18],[10,6],[13,11],[10,14],[15,17],[14,2],[8,0],[16,1],[23,-12],[12,-7],[10,-2],[16,-8],[6,-1],[13,-1],[14,1],[6,4],[10,14],[11,1],[2,1],[29,16],[20,0],[18,0],[8,5],[19,17],[20,19],[39,8],[9,6],[16,10],[17,6],[14,3],[17,7],[9,5],[11,11],[11,16],[2,17],[17,26],[9,11],[11,6],[22,7],[13,16],[12,21],[15,21],[18,45],[5,20],[5,12],[10,19],[2,28],[-2,23],[0,15],[11,13],[19,25],[12,15],[13,7],[16,11],[12,19],[23,24],[13,18],[18,16],[18,1],[12,-1],[11,-1],[11,15],[7,26],[20,21],[13,13],[15,9],[29,6],[9,3],[17,14],[25,12],[18,0],[13,1],[16,1],[6,-6],[13,-3],[5,3],[10,8],[8,16],[-1,6],[-3,9],[-4,12],[-3,32],[1,14],[4,23],[6,10],[7,5],[9,6],[11,11],[17,13],[21,11],[14,18],[17,7],[26,14],[13,3],[12,0],[14,0],[23,1],[36,1],[2,-7],[10,-11],[11,-3],[8,-4]],[[431006,128877],[0,-74],[-7,-24],[-1,-5],[-4,-7],[-4,-6],[-5,0],[-5,0],[-10,-1],[-7,-7],[-9,-4],[-7,-2],[-2,-2],[-2,-12],[-6,-5],[-8,-8],[0,-8],[-1,-10],[-2,-8],[-6,-8],[-17,-21],[-10,-27],[-4,-17],[-5,-10],[-7,-7],[-12,-7],[-11,-6],[-1,-11],[-12,-16],[-15,0],[-15,-25],[-26,-20],[-23,-4],[-4,-5],[0,-6],[0,-6],[-1,-11],[-2,-10],[-7,-5],[-8,0],[-10,0],[-10,0],[-8,-1],[-6,-4],[-5,-9],[-26,-21],[-22,-25],[-14,-7],[-22,0],[-7,0],[-2,9],[0,5],[6,8],[0,54],[1,27],[1,20],[4,13],[14,10],[9,4],[18,15],[7,14],[6,10],[1,9],[4,4],[6,16],[5,14],[12,1],[13,-2],[17,0],[16,8],[5,8],[8,6],[13,-2],[17,-1],[14,4],[12,9],[9,4],[13,10],[0,7],[0,14],[-3,9],[-1,9],[-4,8],[-5,6],[-14,21],[-11,15],[0,27],[0,12],[3,8],[10,3],[16,0],[12,-1],[3,-2],[6,-10],[8,-9],[1,7],[2,19],[8,12],[3,-2],[8,10],[-1,24],[3,11],[8,26],[3,22],[3,8],[13,22],[11,7],[1,2],[14,7],[10,22],[73,6],[0,-57],[-5,-4],[-9,-21],[1,-43]],[[431553,129545],[13,-4],[4,3],[5,0],[5,-4],[5,-7],[8,-12],[5,-13],[2,-10],[4,-14],[6,-10],[8,-12],[4,-10],[8,-14],[1,-10],[2,-24],[0,-16],[0,-18],[-1,-10],[-1,-3],[-7,-7],[-35,3],[-30,0],[-10,-1],[-14,0],[-2,4],[-1,4],[-10,14],[2,30],[-5,4],[-10,-5],[-12,-12],[-7,-8],[-4,-6],[-6,-9],[-1,-11],[-8,-20],[-6,-28],[-6,-7],[-6,-13],[-5,-10],[-11,-10],[-10,-11],[-13,0],[-14,-1],[-13,-6],[-3,-7],[-9,-9],[-30,0],[-16,7],[-4,1],[-29,-14],[-6,-4],[-37,0],[-12,11],[-1,7],[0,15],[0,10],[2,11],[5,4],[6,2],[4,9],[4,7],[8,6],[2,11],[21,34],[5,25],[5,10],[22,40],[6,10],[5,3],[11,5],[7,6],[10,12],[5,6],[8,8],[7,1],[7,6],[7,6],[10,15],[4,7],[5,3],[10,1],[3,1],[4,11],[7,4],[8,0],[15,2],[4,-1],[10,-5],[11,-6],[4,-5],[4,-6],[1,-13],[6,-8],[6,-2],[7,0],[13,0],[10,4],[0,7],[0,10],[1,11],[1,10],[4,5],[7,10],[1,0]],[[404640,129594],[5,-17],[13,-1],[8,14],[11,-1],[7,-9],[9,-15],[6,-12],[6,-14],[3,-13],[1,-18],[2,-17],[2,-17],[1,-19],[1,-20],[0,-18],[-2,-23],[-1,-15],[-2,-14],[-3,-16],[-7,-12],[-8,-11],[-8,-12],[-11,-14],[-8,-7],[-12,-9],[-7,-10],[-10,-8],[-9,-6],[-11,-8],[-10,-12],[-11,-16],[-8,-11],[-11,-11],[-10,-9],[-11,-12],[-7,-10],[1,-17],[6,-18],[5,-20],[2,-21],[2,-15],[0,-17],[-1,-17],[1,-18],[1,-16],[-12,-13],[-8,-12],[4,-13],[10,-11],[-5,-15],[-12,-18],[-9,-10],[-7,-11],[-8,-11],[-9,-13],[-6,-13],[-5,-16],[7,-11],[9,-11],[10,-7],[11,-10],[15,-4],[10,-4],[11,-1],[11,-4],[10,-5],[13,-8],[15,-6],[10,-6],[15,-5],[10,-2],[12,1],[10,0],[13,0],[8,-10],[3,-18],[10,-7],[12,4],[11,2],[6,-14],[7,-13],[9,-11],[8,-20],[4,-16],[7,-12],[-1,-19],[-8,-14],[2,-18],[-1,-15],[-7,-17],[-8,-13],[-9,-11],[-13,-8],[-15,-4],[-12,-5],[-9,-8],[-10,-7],[-8,-7],[-8,-17],[0,-16],[-1,-16],[-11,-10],[-11,1],[-14,5],[-10,2],[-9,6],[-11,4],[-15,0],[-11,-1],[-13,-2],[-12,-3],[-14,-7],[-10,-4],[-16,1],[-15,5],[-15,8],[-15,6],[-14,7],[-10,4],[-11,4],[-15,4],[-12,3],[-13,2],[-8,12],[-8,11],[-10,7],[-5,17],[8,10],[-3,15],[-11,-2],[-17,-6],[-9,6],[-11,0],[-11,-1],[-12,5],[-15,7],[-9,7],[-8,14],[-6,12],[2,15],[7,13],[8,12],[10,8],[11,6],[10,4],[10,10],[-6,13],[-12,-3],[-10,-3],[-11,2],[-9,7],[-3,17],[-2,17],[6,16],[5,14],[-8,12],[-11,-2],[-13,-5],[-14,-4],[-12,-2],[-10,-5],[-11,-4],[-13,-5],[-13,-6],[-10,-6],[-10,-6],[-11,-8],[-11,-7],[-13,-2],[-9,6],[-9,8],[-11,8],[-9,-12],[-14,-10],[-14,-1],[-13,6],[-8,8],[-11,11],[-8,8],[-6,11],[-1,15],[-6,17],[-8,10],[-7,10],[-8,9],[0,14],[0,10],[4,16],[4,17],[5,16],[4,13],[8,11],[8,12],[1,15],[-7,11],[1,16],[7,14],[10,12],[9,11],[8,10],[11,6],[8,15],[9,8],[-6,16],[-7,10],[-3,13],[6,13],[11,9],[5,16],[-6,13],[6,13],[7,11],[7,16],[1,14],[-1,14],[6,16],[8,10],[10,13],[9,14],[9,8],[7,10],[9,11],[12,9],[7,7],[9,11],[4,10],[-11,-5],[-10,-12],[-8,-9],[-9,-12],[-6,-9],[-13,-7],[-9,9],[-2,16],[9,8],[9,5],[6,13],[6,12],[9,6],[10,8],[9,6],[12,6],[11,2],[9,6],[7,13],[5,14],[10,10],[11,8],[10,5],[8,14],[10,12],[17,8],[10,10],[9,10],[11,11],[10,13],[9,13],[10,12],[11,13],[14,9],[11,8],[10,9],[11,9],[11,12],[11,7],[11,4],[9,7],[9,10],[9,6],[9,-6],[9,-10],[11,8],[8,12],[11,4],[11,-5],[11,-10],[14,-7],[14,-3],[12,-3],[12,0],[13,-4],[11,1],[-1,19],[8,14],[14,4],[12,-4],[9,-11],[7,-13]],[[311051,125244],[168,86],[181,142],[64,58],[19,94],[14,94],[64,69],[120,83],[120,78],[96,-12],[128,-61],[54,-80],[38,-67],[291,113],[110,32],[48,1],[202,108],[131,82],[55,69],[-23,97],[34,39],[114,31],[90,-9],[36,-9],[21,-31],[84,52],[75,56],[118,83],[13,26],[46,20],[19,45],[33,32],[55,2],[29,-1],[42,24],[94,24],[76,40],[64,30],[97,37],[64,38],[36,-6],[93,-51],[64,30],[51,49],[60,30],[71,44],[54,22],[63,7],[126,47],[88,52],[100,57],[42,34],[44,1],[70,55],[59,3],[46,1],[88,42],[74,18],[85,17],[85,1],[125,56],[70,13],[114,70],[67,32],[39,4],[132,21],[135,31],[74,11],[154,69],[354,180],[115,54],[55,14],[78,42],[33,1],[19,-21],[99,34],[62,15],[35,-14],[34,-11],[99,13],[76,-22],[33,27],[37,-7],[27,-37],[12,-54],[45,12],[26,28],[70,26],[71,34],[76,13],[23,98],[43,-27],[49,-5],[98,-3],[112,37],[124,33],[71,51],[74,15],[197,90],[281,119],[123,64],[85,9],[75,19],[105,19],[69,-15],[11,47],[29,4],[53,-1],[87,17],[58,22],[76,32],[96,15],[65,48],[91,20],[36,63],[107,37],[155,35],[127,23],[154,29],[67,-10],[115,7],[202,9],[174,-20],[227,-10],[156,19],[197,22],[192,9],[213,8],[77,37],[197,22],[133,29],[98,-5],[62,30],[101,17],[181,36],[73,14],[78,48],[93,21],[142,107],[163,77],[169,82],[190,77],[153,70],[125,93],[75,118],[72,42],[76,9],[68,-5],[96,-75],[155,-152],[157,-91],[130,-81],[108,-35],[156,-30],[109,-2],[200,-27],[190,-62],[180,-81],[201,-120],[196,-131],[210,-200],[106,-160],[99,-198],[30,-269],[17,-285],[13,-244],[-25,-39],[26,-15],[37,-94],[68,-254],[35,-137],[5,-72],[52,-110],[117,-176],[135,-131],[231,-151],[226,-187],[65,-54],[174,-83],[290,-110],[143,-27],[149,-82],[240,-168],[199,-103],[141,-90],[53,22],[50,-36],[76,3],[178,-74],[245,-124],[77,-45],[112,40],[45,-25],[74,-3],[113,31],[77,11],[165,0],[148,16],[134,-14],[157,-41],[91,-45],[67,-91],[29,-131],[71,-143],[107,-204],[114,-125],[119,-151],[64,-38],[44,-77],[19,-41],[36,16],[93,-65],[84,-16],[132,-46],[88,-76],[112,-65],[183,-103],[187,-103],[137,-43],[126,-59],[170,-62],[181,-58],[203,-46],[167,16],[54,-5],[134,-77],[250,-180],[181,-212],[102,-165],[62,-71],[35,-76],[38,-50],[77,-30],[95,-65],[77,-89],[113,-156],[79,-132],[71,-95],[74,-93],[80,-70],[63,-54],[46,-37],[36,-45],[33,-13],[40,-52],[37,-34],[41,-28],[31,-31],[61,-38],[24,-2],[21,-21],[49,-24],[38,-11],[36,-52],[26,-15],[46,-29],[19,-24],[121,-91],[19,-35],[24,-8],[34,-23],[22,-39],[42,-23],[91,-55],[85,-41],[86,-41],[86,-48],[49,-23],[66,-84],[62,-83],[27,-66],[56,-50],[23,-9],[46,-43],[21,-36],[6,-54],[23,-41],[23,-102],[11,-49],[0,-110],[17,-37],[16,-45],[-9,-45],[-10,-94],[-6,-130],[-3,-75],[3,-74],[19,-70],[22,-70],[-34,-48],[-66,-50],[-55,-48],[-83,-12],[-70,12],[-49,-8],[-42,-44],[-26,-52],[-3,-81],[-14,-73],[-44,-64],[-38,-26],[-7,-68],[-17,-40],[-21,-23],[-14,-49],[-11,-24],[3,-54],[-18,-44],[47,-33],[6,-19],[15,-19],[57,-107],[39,-76],[25,-96],[55,-56],[39,-64],[44,-14],[68,-56],[40,-5],[28,-85],[29,-105],[13,-97],[-30,-136],[-43,-145],[-83,-189],[-115,-11],[-88,-23],[-52,43],[-11,9],[-49,169],[-169,269],[-111,188],[-182,195],[-172,224],[-200,266],[-162,183],[-197,142],[-267,256],[-179,86],[-174,161],[-223,228],[-177,183],[-472,243],[-491,261],[-285,103],[-342,144],[-327,173],[-475,173],[-133,45],[-828,196],[-631,205],[-916,210],[-743,193],[-1288,164],[-493,117],[-613,56],[-853,39],[-1650,-8],[-1631,35],[-1431,-28],[-1626,-111],[-1914,-216],[-1839,-221],[-1678,-254],[-1832,-197],[-638,-82]],[[326850,129803],[124,-253],[-2,-130],[-235,-554],[-79,-5],[-355,421],[-456,308],[-282,66],[-255,-3],[-112,-39],[-140,68],[-48,207],[33,112],[194,113],[331,143],[500,-44],[369,-161],[173,-72],[240,-177]],[[431736,130489],[3,-4],[11,0],[3,-1],[5,-7],[8,-8],[2,-4],[1,-4],[1,-5],[1,-4],[2,-4],[7,-17],[4,-8],[3,-5],[1,-4],[0,-6],[1,-8],[-2,-6],[-2,-3],[-3,-1],[-3,-3],[-2,-6],[-1,-7],[-5,0],[-4,0],[-13,-8],[-11,-8],[-2,-4],[-5,-3],[-2,-5],[-2,-2],[-1,-7],[1,-14],[7,-4],[1,0],[4,0],[5,-4],[11,-13],[1,0],[4,0],[2,-2],[5,-5],[11,-8],[5,-3],[6,-3],[5,-9],[3,-6],[8,-13],[3,-9],[4,-9],[3,-7],[3,-6],[5,-2],[6,1],[6,-1],[4,-1],[4,-2],[5,-4],[8,0],[3,0],[8,0],[2,-1],[2,-7],[4,-3],[26,0],[3,-5],[2,-96],[2,-42],[-11,-15],[-5,-1],[-2,0],[-7,0],[-7,-6],[-6,-7],[-6,-9],[-6,-2],[-6,-1],[-3,-5],[-7,-6],[-8,-18],[1,-13],[-15,-16],[-3,-10],[-1,-8],[-1,-9],[-7,-1],[-4,-2],[-2,-7],[-3,0],[-6,-1],[-4,-2],[-6,-2],[-7,-2],[-9,0],[-45,-3],[-22,0],[-14,-7],[-8,-8],[-19,-7],[-23,1],[-13,-1],[-20,1],[-17,0],[-12,-6],[-6,-3],[-20,2],[-10,9],[-7,7],[-5,15],[-3,13],[0,16],[0,14],[0,10],[-2,13],[-3,9],[-1,10],[0,6],[-5,17],[-1,9],[0,6],[-3,14],[-2,9],[-1,15],[8,17],[2,8],[4,9],[10,22],[0,18],[0,15],[-2,10],[-9,3],[-10,1],[-5,3],[-3,13],[-2,6],[-6,7],[-3,8],[3,15],[1,18],[-3,21],[0,11],[3,7],[8,9],[1,0],[8,2],[11,6],[5,0],[8,4],[7,14],[8,8],[7,4],[3,9],[1,10],[0,11],[7,11],[10,10],[5,5],[6,10],[2,12],[5,14],[5,4],[7,3],[6,5],[7,13],[11,9],[8,9],[8,7],[6,6],[2,6],[13,1],[56,3],[7,-5]],[[410353,130522],[6,-2],[16,0],[9,0],[16,0],[13,-7],[14,-6],[11,-10],[10,-11],[11,-24],[1,-22],[-1,-13],[0,-13],[4,-8],[0,-21],[-2,-15],[-3,-8],[-1,-20],[28,-21],[10,-10],[15,-11],[16,-11],[32,-9],[14,-14],[13,-18],[14,-19],[2,-19],[3,-29],[5,-22],[2,-20],[1,-21],[0,-30],[-2,-18],[-1,-15],[-12,-4],[-12,0],[0,-18],[-6,-26],[-14,-10],[-22,-11],[-14,-7],[-5,-1],[-7,0],[-18,-1],[-3,-18],[-5,-14],[-8,-22],[-17,-31],[-13,-15],[-15,-12],[-13,-7],[-14,-6],[-11,-8],[-17,-8],[-23,-10],[-17,1],[-12,5],[-12,-2],[-10,-5],[-24,-15],[-10,-6],[-20,0],[-16,8],[-7,12],[-17,20],[-10,12],[-11,6],[-10,3],[-14,10],[-6,6],[-7,4],[-5,1],[-9,1],[-6,17],[-1,5],[-2,6],[-6,1],[-13,1],[-11,10],[-1,10],[-3,7],[-3,2],[-7,4],[-14,0],[-8,-1],[-6,5],[-1,8],[-5,6],[-7,0],[-6,-4],[-6,-4],[-8,-3],[-8,0],[-7,-6],[-8,-6],[-13,-2],[-3,-5],[0,-7],[-4,-8],[-14,-3],[-5,4],[-7,0],[-1,-6],[-3,-2],[-5,-1],[-8,-4],[-8,-4],[-10,-1],[-4,1],[-16,3],[-12,2],[-6,2],[-4,-2],[-2,-4],[-9,-3],[-5,2],[-7,0],[-10,-2],[-12,3],[-10,11],[-7,9],[-5,3],[-10,3],[-11,7],[-5,7],[-3,6],[-4,6],[-6,3],[-3,2],[-7,3],[-2,19],[-2,12],[4,7],[11,0],[18,5],[12,13],[7,10],[13,18],[73,75],[25,28],[17,8],[19,16],[11,18],[68,21],[27,5],[23,3],[23,4],[19,5],[12,3],[24,16],[17,10],[14,7],[16,7],[18,20],[0,13],[-14,37],[3,22],[0,8],[4,5],[6,6],[1,6],[-3,4],[-14,4],[-5,5],[-1,9],[2,10],[17,7],[1,-3],[4,-2],[18,-1],[15,2],[5,8],[4,13],[2,7],[9,8],[3,7],[2,10],[3,21],[13,8],[15,6],[13,4],[16,0]],[[328212,130775],[553,-1145],[356,-526],[510,-512],[543,-386],[550,-348],[334,-394],[334,-347],[232,-122],[355,-51],[246,-89],[231,-260],[277,-284],[144,-220],[23,-522],[79,-388],[92,-318],[39,-379],[168,-331],[94,-123],[130,-82],[-23,-51],[-222,-31],[-295,38],[-350,203],[-291,380],[-514,544],[-198,298],[-266,205],[-706,448],[-455,165],[-415,23],[-499,-132],[-524,90],[-903,238],[-416,235],[-185,326],[-79,360],[2,305],[50,404],[77,292],[-15,296],[48,297],[-22,249],[-35,250],[-217,760],[-68,277],[58,114],[146,-82],[154,4],[81,48],[482,465],[79,26],[98,-30],[133,-187]],[[327329,130489],[-116,-15],[-139,77],[-162,331],[-71,193],[26,121],[254,239],[254,63],[236,-70],[266,-182],[94,-156],[-36,-56],[-402,-371],[-204,-174]],[[429014,131780],[6,-6],[6,-4],[9,1],[11,0],[9,0],[5,-3],[6,-11],[11,-5],[6,-4],[7,-7],[5,-3],[2,1],[5,0],[7,-4],[9,-7],[16,-2],[6,-4],[11,-5],[4,0],[2,-3],[9,-7],[2,0],[7,1],[4,-2],[4,-4],[3,-4],[6,4],[6,-9],[34,0],[12,0],[4,0],[6,0],[5,-1],[3,-4],[2,-2],[4,-1],[4,-2],[5,-4],[4,-3],[8,-8],[6,-10],[11,0],[4,-2],[9,0],[2,-1],[6,-4],[3,-2],[8,0],[6,0],[4,-4],[5,-3],[5,-5],[4,-6],[10,-10],[4,-4],[2,-1],[3,-2],[4,-2],[5,1],[4,-1],[3,-2],[4,-3],[7,-5],[3,-4],[4,-3],[3,-2],[3,0],[2,0],[2,-5],[1,-1],[7,0],[5,0],[17,-5],[7,-8],[8,-11],[4,-7],[4,-7],[2,-5],[4,-5],[2,-7],[0,-7],[3,-10],[2,-5],[4,-8],[1,-8],[0,-10],[-1,-15],[-1,-11],[-10,-11],[-1,-12],[0,-14],[2,-9],[3,-8],[5,-15],[3,-35],[7,-20],[0,-22],[-2,-31],[-3,-9],[-2,-9],[0,-9],[1,-7],[-1,-8],[-5,-13],[-1,-9],[0,-8],[0,-8],[-7,-10],[-6,-7],[-2,-13],[-7,-7],[-6,-6],[-12,-10],[-6,-3],[-10,-1],[-10,1],[-11,0],[-8,-6],[-4,-5],[-19,0],[-2,-7],[-8,0],[-7,0],[-5,-2],[-3,-7],[-9,-4],[-5,-1],[-3,-6],[0,-6],[-1,-5],[-5,-6],[-5,-7],[-4,-8],[-4,-9],[-5,-6],[-5,-9],[-15,-12],[-25,0],[-8,6],[-10,4],[-4,-2],[-3,-6],[-7,-3],[-10,-1],[-8,-4],[-4,-5],[-14,-9],[-90,0],[-89,-6],[-5,12],[-19,-1],[-32,29],[-23,-2],[-15,0],[-12,0],[-14,-1],[-28,0],[-2,6],[-7,6],[-14,12],[-9,6],[-5,12],[-8,4],[-7,0],[-10,2],[-10,2],[-12,4],[-13,8],[-21,4],[-3,0],[-5,-3],[-2,-3],[-1,-3],[0,-5],[1,-7],[0,-5],[-4,-8],[-3,-4],[-4,-8],[-4,-3],[-9,0],[-15,-1],[-41,27],[-6,-1],[-12,5],[-19,21],[-9,3],[-4,3],[-5,6],[-25,-1],[-9,7],[-76,2],[-60,-4],[-15,11],[-27,14],[-8,4],[-10,6],[-15,11],[-15,4],[-15,3],[-21,4],[-4,4],[-16,7],[-9,3],[-12,-2],[-7,3],[-8,12],[-4,7],[-4,-2],[-17,5],[-5,13],[-19,11],[-7,14],[-16,27],[-26,52],[-6,17],[-3,11],[-8,22],[-1,15],[2,14],[-14,37],[-2,8],[-7,9],[-6,13],[-5,17],[-7,8],[-22,45],[33,28],[3,19],[3,0],[3,0],[5,-1],[4,6],[5,13],[6,2],[3,3],[2,8],[9,6],[4,4],[8,2],[7,5],[1,4],[2,5],[7,7],[6,3],[6,1],[9,0],[8,-1],[11,-7],[8,-3],[86,3],[13,0],[11,0],[13,2],[6,-3],[8,-7],[4,-1],[6,0],[5,-4],[8,-4],[5,0],[8,-6],[5,-2],[9,0],[15,0],[14,0],[3,-3],[2,-5],[3,-3],[8,0],[7,-1],[7,-5],[26,-1],[31,-2],[9,1],[11,6],[8,8],[5,5],[7,1],[2,2],[8,11],[5,5],[10,5],[7,13],[3,9],[5,9],[1,10],[3,10],[6,9],[8,24],[4,12],[3,2],[6,0],[4,4],[4,5],[71,3],[108,1],[59,-2],[41,2],[12,0],[9,1],[13,1],[14,1],[13,0],[15,-1]],[[431785,131794],[2,-4],[11,10],[9,1],[17,6],[10,3],[9,0],[14,2],[12,-2],[12,-4],[6,-6],[4,-4],[2,-2],[6,-9],[13,0],[10,-13],[5,-4],[7,-1],[6,0],[7,0],[11,-3],[3,-4],[6,-7],[6,-2],[2,-1],[6,-3],[2,-3],[4,-3],[7,0],[3,0],[5,0],[17,-11],[2,0],[4,0],[2,-3],[3,-3],[4,0],[9,0],[6,-6],[16,-24],[9,-15],[4,-8],[7,-17],[4,-15],[0,-15],[1,-19],[-2,-12],[-8,-11],[-8,-13],[-6,-9],[-2,-8],[-4,-7],[-10,-2],[-1,-44],[2,-55],[6,-25],[1,-10],[2,-7],[3,-5],[10,-2],[10,0],[14,1],[11,-5],[8,-4],[7,-4],[6,-8],[6,-11],[2,-7],[1,-9],[-1,-8],[-2,-9],[-5,-9],[-3,-8],[-4,-13],[-4,-17],[-1,-6],[-1,-5],[0,-5],[0,-6],[1,-4],[2,-3],[8,0],[3,-8],[2,-3],[4,0],[3,0],[2,0],[4,-1],[2,-1],[3,-3],[5,-2],[4,1],[7,-1],[2,-2],[3,-7],[5,-14],[0,-14],[-1,-9],[-9,-11],[-9,-5],[-11,-2],[-11,-35],[-2,-5],[-4,-6],[-3,-5],[1,-5],[-1,-7],[-2,-6],[-6,-5],[-5,-4],[-4,-2],[-8,-15],[-62,1],[-4,-4],[-8,-10],[-5,-4],[-10,-10],[-9,-12],[-2,-7],[0,-9],[-2,-7],[-6,-8],[-12,-9],[-11,-6],[-67,1],[-17,-1],[-7,-7],[-3,-6],[-7,-8],[-6,-5],[0,-7],[0,-4],[-9,-3],[-9,0],[-5,-6],[-12,-9],[-6,-8],[-4,-9],[-6,-9],[-12,-5],[-6,-1],[-6,-4],[-13,-2],[-6,1],[-5,6],[-8,-1],[-22,1],[-25,22],[-22,24],[-7,6],[-9,5],[-6,14],[-32,1],[-17,1],[-23,0],[-23,-2],[-4,1],[10,3],[28,9],[7,6],[-18,-1],[-16,1],[-13,0],[-14,-11],[-12,2],[-20,-13],[-32,-27],[-158,-1],[-67,-1],[-7,3],[-10,3],[-6,-1],[-13,-7],[-11,0],[-45,-3],[-1,1],[-7,11],[-14,-1],[-6,8],[-7,10],[-4,1],[-14,0],[-6,1],[-7,1],[-8,7],[-20,0],[-3,2],[-3,3],[-4,4],[-15,1],[-4,1],[-1,3],[-6,0],[-5,3],[-4,8],[-6,0],[-5,-2],[-6,-3],[-3,-4],[-6,-9],[-38,0],[-69,-3],[-10,-1],[-18,4],[-7,11],[-1,10],[-9,17],[1,65],[3,8],[3,3],[6,4],[3,0],[4,1],[5,1],[4,5],[4,5],[3,7],[4,6],[4,7],[5,4],[8,5],[7,16],[0,6],[1,5],[4,7],[5,3],[6,4],[6,19],[6,8],[10,11],[3,6],[5,4],[4,3],[4,4],[4,6],[2,9],[2,5],[6,4],[6,6],[6,14],[4,7],[2,3],[6,6],[2,5],[0,7],[3,5],[6,7],[5,4],[7,9],[7,4],[10,4],[2,2],[5,5],[7,0],[1,1],[5,6],[2,4],[4,1],[5,0],[4,-1],[3,0],[2,2],[6,6],[23,7],[6,3],[7,0],[7,3],[6,3],[7,4],[6,10],[1,-1],[3,-1],[10,3],[7,7],[6,14],[7,7],[8,7],[5,3],[6,6],[0,-1],[5,-1],[3,4],[5,4],[3,5],[11,16],[4,7],[8,12],[3,4],[8,9],[6,16],[0,6],[1,4],[13,9],[7,5],[4,6],[12,15],[7,8],[5,4],[7,2],[5,7],[2,4],[5,5],[11,11],[8,2],[2,2],[4,4],[2,2],[6,0],[6,1],[2,0],[4,2],[12,12],[1,4],[4,1],[6,-1],[6,0],[3,5],[2,3],[1,6],[6,3],[5,0],[4,1],[10,2],[7,0],[5,0],[5,1],[3,1],[5,9],[6,14],[16,5],[14,9],[14,22],[12,5],[13,7],[5,8],[10,8],[24,24],[10,6],[9,2],[12,2],[5,2],[12,6],[11,2],[19,-1],[9,1],[11,3],[15,21],[13,18],[93,3],[21,-16],[-25,-18],[-8,-8]],[[434201,132472],[-7,-16],[-8,1],[-7,2],[-2,3],[0,4],[1,5],[3,5],[2,2],[2,9],[-2,3],[0,6],[0,8],[1,4],[4,2],[4,5],[0,7],[2,9],[2,7],[3,4],[4,10],[0,6],[1,3],[17,2],[3,-4],[7,-10],[5,-7],[1,-7],[-2,-4],[-4,-13],[-7,-7],[-2,-10],[0,-6],[-5,-5],[-10,-7],[-6,-11]],[[433992,133307],[16,-1],[11,0],[14,-4],[23,-13],[11,-17],[2,-19],[-2,-10],[-2,-14],[-11,-12],[-11,-18],[-2,-8],[-4,-9],[-17,-26],[-10,-11],[-4,-7],[-6,-10],[-13,-14],[-8,-13],[-2,-11],[-1,-11],[0,-7],[4,-4],[9,6],[3,-3],[-4,-7],[-5,-7],[-6,-16],[12,-14],[2,-15],[6,-4],[8,4],[5,3],[10,12],[18,0],[4,0],[18,0],[12,-7],[7,-11],[8,-8],[14,-4],[13,-15],[4,-8],[1,-22],[-8,-18],[-8,-8],[-7,-2],[-5,-4],[-18,-26],[-8,-14],[-10,-17],[-8,-5],[-11,-1],[-5,1],[-4,0],[-5,0],[-8,-5],[-10,-12],[-7,-10],[-4,-6],[-3,-2],[-1,-5],[-4,-4],[-5,-1],[-4,7],[0,9],[0,3],[-6,-1],[-3,-1],[-6,0],[-2,6],[1,2],[1,6],[-2,1],[-11,-1],[3,7],[0,5],[1,7],[2,6],[1,5],[2,8],[2,8],[2,8],[8,15],[3,13],[3,9],[4,10],[3,10],[1,9],[-5,9],[-5,5],[-4,6],[-3,4],[-6,-1],[-5,-2],[-7,-7],[-10,-14],[-6,-5],[-7,-1],[-7,-5],[-1,-7],[-10,-8],[-12,-3],[-5,0],[-3,-3],[-4,-10],[-9,-12],[-8,-4],[-8,6],[-2,4],[0,-1],[-8,0],[-9,-3],[-8,-4],[-6,-4],[-4,-6],[-8,-8],[-4,1],[0,5],[-3,5],[-3,6],[0,6],[0,8],[1,8],[4,11],[1,8],[6,9],[6,7],[7,7],[22,14],[7,9],[8,11],[5,16],[2,25],[-4,16],[4,14],[11,11],[9,5],[13,1],[4,3],[-2,10],[-14,1],[-4,0],[1,11],[7,2],[7,2],[2,9],[-2,11],[-13,3],[-12,-10],[-9,-14],[-11,-9],[-9,2],[-7,8],[-12,3],[-8,2],[-4,7],[-3,7],[0,15],[6,25],[8,7],[5,8],[7,10],[12,14],[8,6],[5,-2],[5,0],[5,4],[19,15],[12,7],[0,12],[2,6],[11,11],[17,10],[9,3],[11,5],[13,9],[10,1],[11,0]],[[312618,141721],[4,-10],[16,0],[8,-5],[-2,-12],[-6,-8],[-19,-5],[-9,-11],[12,1],[4,-10],[0,-15],[-21,-11],[-15,-18],[-12,-17],[-16,-8],[-20,0],[-11,15],[-7,-3],[-6,10],[-5,4],[-6,4],[-3,2],[-11,15],[4,12],[-1,16],[9,10],[13,0],[18,0],[5,5],[-9,13],[-12,7],[-1,20],[8,3],[9,0],[7,7],[14,1],[11,0],[4,7],[-6,5],[-5,5],[0,13],[3,12],[7,1],[15,0],[9,10],[12,-8],[11,-7],[9,-17],[-1,-13],[-8,0],[0,-20]],[[312799,142241],[0,-10],[-24,-1],[-10,-7],[-4,-10],[4,-8],[7,-2],[0,-10],[-5,-21],[-7,-10],[-8,-10],[-19,-13],[-7,-22],[-7,-16],[-15,-7],[-34,-26],[-9,-20],[-34,-13],[-7,-15],[-25,-18],[-18,-15],[-12,-13],[-4,2],[0,18],[2,20],[-10,20],[-2,23],[-9,22],[7,15],[4,18],[12,18],[-15,4],[-33,10],[-9,-5],[2,-18],[2,-17],[-13,0],[-11,-16],[-12,-10],[-2,-7],[2,-8],[-18,-10],[-20,-3],[-25,-23],[-20,-13],[-5,15],[-4,23],[5,20],[13,10],[14,8],[4,10],[-13,10],[11,10],[0,13],[-4,15],[-14,10],[7,15],[18,5],[21,5],[20,-12],[13,10],[10,0],[11,-15],[6,-7],[39,-4],[27,-10],[9,7],[8,16],[7,20],[10,2],[6,18],[19,5],[17,8],[-4,18],[9,10],[11,-5],[5,-13],[23,13],[22,11],[23,5],[22,10],[27,-12],[13,-17]],[[303739,146791],[-44,-51],[-46,-59],[-29,-3],[-14,-1],[-20,-1],[-53,-52],[-38,-21],[-14,15],[4,24],[30,2],[21,19],[19,83],[52,58],[60,-24],[54,47],[12,-12],[6,-24]],[[434260,146828],[-12,-42],[-22,-10],[-17,29],[-16,-7],[-13,20],[9,38],[10,12],[9,12],[19,15],[35,7],[18,13],[18,41],[49,8],[48,-32],[-18,-58],[-54,-14],[-63,-32]],[[301769,147268],[3,-21],[-15,1],[-7,-20],[-13,-14],[-9,-19],[4,-22],[3,-23],[-12,-14],[-12,-14],[-17,-15],[-15,-14],[-7,-18],[-13,-12],[-15,-9],[-16,-7],[-15,-7],[-14,-11],[-15,-7],[-18,-10],[-14,-7],[-15,-6],[-15,-12],[-17,-6],[-14,-8],[-13,-13],[-14,-11],[-15,-9],[-14,-7],[-14,-8],[-17,-9],[-14,-10],[-14,-8],[-16,-9],[-17,-9],[-13,-9],[-16,-12],[-13,-12],[-14,-8],[-14,-8],[-19,-12],[-17,-1],[-15,0],[-16,-3],[-17,-6],[-16,-6],[-16,-10],[-15,-5],[-11,-19],[-13,-12],[-13,-12],[-13,-12],[-13,-11],[-15,-12],[-16,-8],[-16,-4],[-17,-8],[-16,-6],[-19,-4],[-15,-4],[-15,-4],[-14,-7],[-16,-10],[-19,-7],[-9,-3],[-15,-3],[-16,0],[-16,-4],[-16,-2],[-16,-2],[-15,0],[-16,2],[-16,-2],[-15,9],[-15,-2],[-17,3],[-15,8],[-11,15],[-9,18],[-10,18],[-1,22],[3,23],[9,19],[16,2],[16,0],[15,-14],[12,-14],[16,-8],[15,-3],[17,-2],[16,16],[4,33],[1,21],[6,19],[14,11],[14,8],[14,10],[15,14],[15,11],[10,16],[10,18],[13,11],[19,13],[15,7],[15,11],[14,12],[14,9],[13,13],[17,7],[18,3],[17,4],[17,5],[16,4],[15,3],[16,7],[14,7],[25,13],[21,13],[16,8],[15,7],[16,6],[16,9],[18,10],[13,10],[15,15],[17,12],[23,12],[16,5],[17,0],[15,-3],[14,9],[14,8],[15,6],[17,9],[17,10],[16,8],[16,10],[15,10],[14,10],[14,11],[15,1],[15,-3],[16,1],[7,18],[-8,7],[-3,4],[7,1],[8,-2],[17,-2],[14,-14],[17,-1],[17,-1],[15,-7],[15,-4],[21,-1],[14,10],[9,17],[5,20],[10,16],[16,-1],[3,-20]],[[443156,156272],[-6,-4],[-6,1],[-3,0],[-3,-4],[2,-9],[2,-6],[-1,-4],[-7,-10],[-20,-12],[-4,-3],[0,-8],[5,-4],[17,5],[23,-1],[14,0],[9,-3],[7,-6],[8,-10],[7,-20],[3,-12],[3,-15],[5,-33],[12,-18],[-1,-27],[-5,-18],[-8,-21],[-8,-12],[-7,-21],[-10,-18],[0,-24],[-6,-20],[-5,-14],[-1,-17],[1,-24],[0,-26],[-3,-22],[-7,-21],[0,-14],[-10,-33],[4,-20],[3,-13],[0,-23],[-7,-15],[0,-13],[-5,-9],[-8,-9],[-8,-5],[-6,4],[-3,8],[-3,27],[-1,10],[-1,14],[-2,6],[-5,-5],[0,-19],[-2,-28],[-4,-16],[-6,-14],[1,-31],[-4,-25],[-5,-3],[-3,-7],[-5,-20],[-11,-14],[-12,-21],[-12,-15],[-8,-22],[2,-13],[2,-18],[-1,-22],[-3,-21],[-1,-5],[-5,-22],[-5,-13],[-4,-19],[-6,-19],[-14,-14],[-8,-14],[-9,-10],[-8,-13],[-2,-11],[-18,-19],[-20,-21],[-20,-28],[-22,-20],[-12,-8],[-1,0],[-23,-26],[-25,-18],[-16,-8],[-20,-17],[-14,-13],[-14,-16],[-8,-8],[-14,-10],[-9,-14],[-3,-17],[7,-9],[3,-3],[4,-8],[5,-6],[9,-3],[14,-2],[14,2],[15,-1],[12,-5],[4,-5],[8,-16],[4,-10],[-3,-13],[1,-29],[0,-13],[-7,-19],[-6,-14],[-15,-26],[-2,-32],[-8,-15],[-2,-21],[-3,-9],[-7,-16],[-2,-14],[0,-12],[-4,-6],[-8,-8],[-14,-5],[-10,-3],[-19,-15],[-17,-15],[-15,-8],[-10,-8],[-11,-3],[-8,1],[-11,-12],[-10,-14],[-15,-8],[-9,-3],[-14,-2],[-7,1],[-10,-6],[-12,-12],[-14,-12],[-9,-8],[0,-1],[-8,-1],[-8,-7],[-8,-5],[-9,2],[-9,6],[-9,5],[-8,-4],[-10,-21],[-3,-21],[-8,-14],[-8,-3],[-17,-10],[-17,-8],[-8,-6],[-9,-14],[-8,-10],[-9,-14],[-3,-6],[-7,-9],[-5,-8],[-1,-17],[5,-19],[0,-14],[-2,-13],[-3,-7],[3,-8],[6,-4],[3,-17],[-3,-19],[0,-4],[-7,-6],[-5,0],[-6,-4],[-9,-9],[-11,3],[-6,8],[-3,3],[-5,-1],[-8,4],[-6,16],[3,26],[0,5],[0,5],[-2,6],[-5,6],[0,7],[-1,12],[-1,2],[-5,12],[-2,3],[0,20],[0,2],[-2,7],[-5,0],[-3,-6],[0,-7],[-3,-12],[-5,-10],[-5,-5],[-8,-12],[-1,-11],[-5,-9],[-5,-8],[-4,-6],[5,-8],[3,-4],[-1,-16],[-3,-13],[-5,-10],[-6,-2],[-5,-15],[-8,-11],[-11,-11],[-13,-8],[-6,-1],[1,5],[3,7],[6,9],[5,4],[2,3],[1,12],[-4,13],[-5,3],[-5,3],[-1,6],[5,19],[4,12],[1,7],[-1,4],[-5,1],[-8,-1],[-7,-2],[-9,-3],[-12,-7],[-14,-5],[-17,-7],[-5,0],[-5,3],[-6,5],[-1,7],[0,5],[2,4],[0,1],[3,7],[0,10],[-1,5],[-1,8],[-1,10],[7,7],[6,5],[13,14],[9,13],[7,7],[10,10],[15,15],[8,6],[5,16],[3,7],[8,2],[9,4],[2,1],[7,6],[5,14],[3,14],[5,6],[6,5],[4,3],[2,1],[13,15],[5,13],[7,3],[8,1],[3,1],[4,1],[7,3],[11,23],[54,52],[13,8],[10,1],[53,41],[22,5],[35,2],[15,7],[16,10],[17,16],[14,16],[-4,15],[-11,6],[-3,3],[17,29],[21,30],[24,28],[18,7],[13,1],[4,9],[7,18],[-3,8],[-9,9],[-10,0],[-14,3],[2,17],[2,10],[-9,13],[-15,6],[-15,4],[-16,5],[-20,-12],[-28,14],[-17,10],[-18,14],[-15,1],[-36,4],[-11,2],[-11,4],[-7,3],[-7,4],[-9,7],[-5,6],[-3,1],[-6,-1],[-10,4],[-9,11],[-15,15],[-5,7],[-6,4],[-8,0],[-11,10],[-8,2],[-7,-4],[-10,3],[-8,12],[-15,17],[-2,-1],[-5,11],[-9,17],[-9,4],[-7,5],[-6,16],[-9,12],[-10,12],[-7,9],[-6,23],[-1,20],[-1,13],[0,25],[0,25],[1,8],[2,13],[1,12],[2,23],[1,3],[9,37],[0,34],[6,19],[9,34],[9,33],[7,18],[2,25],[4,15],[3,8],[4,28],[7,15],[10,19],[5,11],[11,5],[12,14],[16,43],[9,22],[9,14],[12,12],[15,23],[20,36],[12,17],[9,13],[2,5],[16,26],[11,17],[7,24],[12,24],[9,16],[6,11],[10,16],[6,8],[9,14],[12,15],[8,6],[9,-1],[6,-2],[5,1],[4,6],[2,11],[2,5],[7,3],[7,7],[8,14],[4,23],[5,14],[4,0],[16,6],[5,2],[12,6],[11,7],[7,3],[11,6],[10,8],[9,4],[16,3],[13,5],[19,15],[9,8],[9,8],[8,5],[16,8],[11,7],[7,2],[4,1],[22,4],[16,3],[15,3],[13,4],[12,1],[10,-4],[14,-5],[8,-7],[11,-16],[7,-10],[12,-6],[14,0],[5,4],[1,6],[-1,8],[3,5],[17,3],[1,-1],[4,4],[14,6],[16,5],[11,0],[4,-2],[2,-5],[1,-6],[5,-5],[5,1],[5,4],[8,4],[15,2],[7,-1],[7,3],[5,12],[4,5],[10,8],[14,7],[11,5],[11,4],[14,3],[13,3],[10,2],[3,-7],[1,-5],[0,-9],[-2,-6]],[[443477,166811],[-8,-14],[-11,-11],[-16,-16],[-7,-10],[-5,-16],[0,-19],[3,-10],[11,-8],[3,-14],[-8,-20],[-27,-26],[-38,-35],[-34,-29],[-47,-21],[-33,-13],[-35,-15],[-27,-8],[-32,-5],[-36,-3],[-31,3],[-28,-2],[-22,-20],[-18,-18],[-13,-16],[-4,-15],[6,-15],[-5,-18],[-11,-12],[-21,-13],[-21,-17],[-19,-19],[-9,-15],[-12,-18],[-10,-2],[-22,-3],[-12,-2],[-10,5],[-3,17],[4,26],[16,18],[28,30],[43,64],[25,41],[34,35],[29,36],[88,79],[34,27],[5,22],[3,36],[10,9],[20,0],[26,8],[48,26],[41,14],[2,-8],[27,8],[39,10],[21,6],[17,5],[10,9],[13,8],[10,0],[11,-4],[7,-14],[1,-18]],[[430822,184915],[4,-11],[78,12],[-25,-145],[-6,-11],[-26,14],[-11,-22],[-16,-16],[-83,-66],[-28,-11],[-21,-22],[-36,-3],[-28,-13],[-52,-37],[4,-15],[-17,-10],[-6,12],[-35,-22],[-15,45],[-12,-2],[-12,-11],[-9,-13],[-15,-13],[-18,-3],[-10,-17],[-11,-6],[-12,2],[-10,7],[-34,-13],[-41,130],[7,22],[29,21],[15,5],[10,13],[10,9],[11,1],[10,-10],[131,52],[-2,37],[14,9],[16,-29],[65,51],[-11,28],[72,46],[3,-9],[5,-12],[4,0],[10,7],[43,19],[8,3],[18,1],[35,-4]],[[427419,185174],[1,-8],[2,1],[3,5],[3,0],[6,-2],[2,1],[3,4],[2,2],[5,-4],[2,-4],[2,1],[3,1],[4,2],[3,1],[5,-2],[3,-3],[3,-3],[6,-3],[8,1],[14,0],[7,0],[7,0],[4,2],[3,5],[8,5],[3,0],[8,-3],[7,-6],[7,1],[16,-2],[8,2],[8,0],[5,0],[9,-9],[3,-1],[5,0],[5,1],[4,4],[2,4],[1,4],[6,5],[5,3],[5,2],[3,0],[5,0],[2,-1],[0,-4],[-4,-6],[-4,-7],[-3,-7],[-1,-7],[3,-4],[2,-5],[1,-4],[5,0],[4,6],[5,-1],[0,-7],[-1,-2],[-6,-3],[-1,-9],[1,-2],[1,-1],[4,-3],[2,-4],[-1,-2],[-6,-4],[1,-4],[3,-3],[5,-3],[4,-2],[2,-4],[2,-6],[6,-3],[3,4],[3,3],[0,4],[2,9],[2,4],[2,-2],[0,-8],[0,-9],[0,-9],[1,-16],[-1,-16],[-2,-6],[-2,-9],[-1,-6],[3,-5],[0,-8],[-3,-7],[-1,-13],[0,-8],[-1,-8],[0,-7],[1,-15],[2,-9],[4,-6],[6,-3],[5,0],[7,-1],[10,-10],[8,-10],[6,-11],[7,-11],[7,-10],[5,-8],[7,-12],[4,-6],[5,-12],[3,-11],[1,-11],[2,-10],[2,-10],[7,-17],[5,-25],[6,-38],[10,-30],[8,-26],[5,-22],[0,-13],[3,-11],[6,-14],[9,-28],[5,-22],[7,-26],[5,-26],[6,-42],[3,-20],[2,-19],[6,-19],[4,-23],[4,-19],[0,-15],[4,-34],[2,-8],[5,-16],[1,-14],[1,-11],[3,-18],[3,-25],[2,-14],[1,-17],[3,-20],[-1,-39],[-146,-105],[-158,-113],[-35,-17],[-26,-21],[-12,-20],[-12,-42],[-8,-19],[-4,-25],[0,-16],[0,-44],[7,-75],[21,-162],[9,-54],[3,-49],[3,-27],[0,-63],[0,-21],[0,-17],[-1,-18],[-8,-42],[-1,-12],[-3,-12],[-1,-15],[-1,-7],[-4,-6],[-3,-10],[-3,-18],[-3,-13],[-11,-20],[-7,-8],[-7,-3],[-8,-2],[-9,0],[-8,-2],[-7,-1],[-12,4],[-11,13],[-3,12],[-9,14],[-5,8],[-1,7],[-5,12],[-4,3],[-6,5],[-5,12],[-4,12],[-1,11],[1,7],[-2,4],[-7,3],[-7,12],[-4,9],[-3,12],[-3,13],[-5,20],[-3,13],[-5,13],[-2,11],[-3,14],[-3,20],[2,39],[2,27],[3,8],[3,11],[1,24],[2,21],[2,22],[4,25],[3,11],[1,17],[5,11],[8,27],[5,16],[1,18],[3,17],[9,25],[3,22],[5,11],[5,15],[5,5],[4,9],[24,55],[6,15],[11,20],[7,20],[12,26],[8,18],[5,20],[4,18],[16,33],[6,4],[5,7],[7,10],[9,11],[6,10],[6,8],[7,9],[10,10],[-55,146],[-31,81],[-32,74],[-8,2],[-6,1],[-5,1],[-9,-1],[-6,-2],[-4,-6],[2,-5],[1,-7],[1,-6],[0,-5],[-5,-2],[-4,-4],[-4,1],[-4,5],[-7,10],[-7,13],[-14,38],[-2,12],[-1,9],[0,11],[0,13],[-4,26],[-8,31],[-9,20],[-2,0],[-3,-1],[-7,-2],[-3,-3],[-4,0],[-6,-1],[-6,1],[-6,2],[-5,4],[-1,5],[0,6],[0,1],[-6,4],[-5,12],[-6,6],[-4,1],[-3,3],[-3,6],[-2,8],[-5,8],[-12,13],[-7,30],[-2,21],[0,7],[-1,12],[-5,18],[-6,27],[-6,28],[-17,18],[-25,30],[-5,10],[-9,10],[-19,5],[-25,10],[-26,11],[-4,1],[-36,12],[-4,2],[-3,3],[-8,5],[-13,5],[-2,-1],[-6,0],[-5,-2],[-4,-1],[-5,2],[-3,4],[-4,2],[-6,7],[-7,2],[-5,0],[-9,3],[-9,10],[-4,10],[-5,6],[-5,8],[-9,31],[0,13],[0,9],[0,9],[2,14],[7,26],[18,46],[17,34],[21,26],[23,20],[32,18],[33,10],[41,6],[45,0],[64,-6],[62,-5],[8,0],[6,0],[6,0],[6,1],[2,3],[0,9],[1,3],[3,1],[4,0],[2,1],[1,2],[2,5],[-1,2],[-1,7],[0,3],[2,-1],[4,-6],[6,1],[4,4],[2,6],[2,3],[5,2],[2,0],[5,1],[2,3],[1,6],[0,2],[0,1],[1,4],[3,3],[5,2],[4,0],[5,0],[4,0],[4,3],[3,7],[0,9],[-1,6],[0,6],[2,3],[3,3],[6,-2],[0,-7],[-1,-6]],[[436321,186525],[224,-65],[4,20],[-9,3],[5,27],[43,-12],[-5,-21],[-10,3],[-3,-26],[120,-36],[-68,-261],[-130,-105],[-12,-7],[-15,-6],[-13,0],[-152,2],[-19,3],[-25,8],[-21,6],[-129,63],[-9,3],[-15,-2],[-13,-11],[-10,-17],[-20,-62],[-11,-35],[-12,-21],[-11,-17],[-14,-13],[-15,-5],[-20,-2],[-30,-2],[-21,-2],[-232,31],[-19,5],[-12,15],[-7,23],[-4,24],[1,25],[7,24],[16,20],[184,239],[-16,34],[-4,27],[3,26],[9,24],[16,18],[28,17],[39,23],[32,29],[26,19],[17,5],[21,1],[13,-3],[9,-13],[11,-23],[3,-7],[32,0],[2,32],[6,29],[13,22],[13,9],[8,0],[206,-52],[-5,-33]],[[436637,203595],[7,-99],[-9,-9],[-56,2],[-50,12],[-53,-15],[-60,-8],[-58,-17],[-51,-48],[-63,-32],[-39,50],[-15,140],[-27,50],[-80,60],[-18,58],[1,20],[-15,63],[-37,22],[-50,68],[-42,150],[3,189],[20,46],[96,1],[116,-74],[94,-22],[70,-221],[86,-102],[160,-109],[39,-79],[31,-96]],[[422083,204126],[65,-60],[29,2],[19,4],[28,0],[16,0],[10,-2],[3,-5],[21,-8],[14,-6],[7,-12],[26,-12],[24,-11],[39,-18],[32,-11],[42,0],[23,3],[30,17],[12,15],[3,12],[-1,9],[7,15],[10,9],[5,14],[2,12],[1,9],[5,7],[4,-1],[21,0],[14,0],[4,-10],[0,-9],[6,-4],[2,-2],[4,-4],[10,-8],[9,-4],[4,-11],[8,-6],[11,-10],[5,-4],[12,-2],[3,-9],[3,-4],[8,-2],[4,-5],[0,-1],[5,-9],[8,-2],[7,-4],[4,-8],[10,-7],[68,-90],[28,-40],[22,-47],[23,-36],[19,-46],[10,-23],[6,-17],[14,3],[14,2],[10,8],[5,4],[6,15],[2,13],[2,25],[-1,21],[0,31],[1,28],[3,19],[-4,17],[-11,9],[-8,13],[-14,5],[-20,10],[-25,16],[-7,9],[-14,0],[-8,2],[-13,7],[-16,5],[-17,0],[-20,-1],[-16,13],[-19,19],[-14,19],[-1,28],[4,33],[11,22],[19,26],[24,23],[20,6],[27,0],[25,-5],[23,-15],[21,-21],[20,-29],[16,-23],[19,-42],[18,-49],[17,-68],[24,-115],[24,-105],[15,-43],[3,-26],[0,-19],[0,-21],[5,-29],[10,-23],[12,-33],[20,-52],[56,-107],[26,-27],[32,-39],[33,-37],[18,-21],[31,-28],[36,-21],[31,-13],[34,1],[15,10],[19,13],[17,11],[27,26],[9,9],[21,0],[15,-8],[20,-10],[24,-1],[5,4],[13,0],[19,-3],[16,1],[10,3],[16,8],[0,7],[-1,7],[2,5],[6,3],[11,-2],[25,10],[4,5],[6,3],[3,2],[4,4],[7,0],[6,10],[4,5],[5,0],[6,3],[3,10],[-2,9],[1,8],[9,0],[1,-6],[-1,-13],[6,-4],[8,-3],[0,-11],[10,-4],[9,-7],[5,-8],[2,-5],[11,-4],[4,-4],[-3,-8],[-2,-13],[3,-4],[-1,-20],[3,-16],[0,-33],[2,-13],[5,-29],[5,-37],[7,-27],[9,-10],[13,-6],[9,-13],[7,-36],[5,-26],[4,-18],[-3,-19],[-2,-121],[5,-104],[6,-48],[9,-25],[18,-6],[14,0],[13,5],[8,0],[6,-8],[1,-8],[1,-17],[7,-17],[9,-13],[2,-13],[9,-22],[22,-39],[21,-21],[16,-12],[22,7],[11,9],[5,10],[2,10],[-5,7],[1,9],[3,5],[5,0],[9,0],[10,-6],[9,-8],[6,-6],[4,-8],[0,-15],[-3,-10],[-2,-7],[2,-3],[5,-1],[2,-1],[2,-5],[2,-3],[0,-2],[3,-1],[1,-6],[-2,-4],[1,-4],[0,-3],[-1,-5],[0,-7],[-3,-6],[-1,-11],[-1,-8],[0,-11],[0,-9],[0,-8],[-2,-4],[9,-9],[0,-6],[1,-11],[1,-9],[6,-6],[-2,-3],[1,-7],[-1,-6],[4,-8],[1,-5],[-2,-10],[2,-7],[0,-13],[2,-17],[-1,-28],[2,-16],[4,-23],[2,-16],[5,-44],[6,-11],[7,-11],[-2,-15],[0,-6],[-2,-9],[4,-3],[3,-21],[8,-6],[2,-17],[2,-5],[11,-25],[4,-3],[-1,-9],[3,-5],[4,-6],[8,0],[3,-2],[6,-7],[2,-5],[6,-11],[3,-13],[-1,-9],[4,-6],[-1,-5],[10,-22],[7,-17],[3,-12],[9,-19],[7,-11],[6,-15],[7,-8],[10,-7],[6,-2],[9,-7],[2,-6],[5,-2],[11,-8],[19,0],[5,3],[4,2],[6,0],[11,4],[2,7],[5,5],[8,0],[8,1],[12,0],[1,9],[7,4],[2,-4],[9,1],[4,-3],[2,-4],[6,-6],[8,5],[11,0],[5,-4],[1,-13],[-1,-10],[-1,-9],[-3,-15],[-1,-4],[-2,-7],[6,-10],[6,-14],[2,-4],[5,4],[10,4],[6,0],[5,-2],[10,2],[2,6],[12,0],[0,-6],[0,-8],[-1,-3],[6,0],[7,-6],[1,-6],[-1,-11],[-1,0],[10,-13],[10,-6],[4,0],[3,-4],[5,-11],[8,-1],[2,1],[8,-5],[2,-3],[0,-4],[1,-7],[5,-5],[5,3],[6,-1],[8,-4],[2,-9],[0,-10],[-4,-2],[-2,-1],[-3,-5],[-3,-11],[2,-9],[5,-5],[1,0],[7,-7],[0,-6],[0,-2],[0,-3],[1,-1],[1,-3],[0,-5],[-2,-4],[-1,-2],[3,-6],[2,-2],[1,0],[3,0],[6,-2],[4,-4],[5,-7],[3,-8],[0,-8],[7,-25],[0,-18],[3,-12],[6,-3],[6,-1],[8,-3],[0,-5],[10,-10],[2,-3],[4,-14],[0,-14],[-2,-6],[-3,-10],[2,-8],[2,-12],[-3,-4],[5,-8],[15,-4],[2,-17],[1,-13],[6,0],[9,-6],[2,-5],[-2,-8],[0,-8],[7,-12],[7,-2],[2,-5],[-3,-6],[-4,-1],[-2,-11],[1,-7],[-1,-4],[7,-5],[1,-6],[-2,-11],[-4,-4],[-4,-13],[2,-20],[3,-7],[4,2],[3,-4],[0,-5],[-1,-3],[6,-15],[4,1],[13,-17],[0,-16],[-2,-11],[2,-15],[-4,-3],[-5,0],[0,-12],[2,-5],[0,-9],[-5,-7],[6,-8],[-2,-8],[-4,-3],[-6,-3],[-5,-9],[-4,-2],[-4,-7],[-2,-8],[-1,-1],[-4,-4],[-2,0],[-4,-3],[-2,-8],[-3,-11],[-8,-5],[-11,-23],[-7,-8],[-20,-12],[-7,-7],[-8,-9],[-9,-15],[5,-6],[4,-5],[14,-1],[8,7],[9,-8],[-4,-16],[-1,-13],[-9,-1],[-20,2],[-5,4],[-3,5],[-4,20],[-3,5],[-8,0],[-9,-2],[-6,2],[-7,0],[-7,-3],[-12,-1],[-9,-11],[-7,-3],[-6,2],[-6,4],[-1,4],[-4,10],[-1,4],[-6,3],[-6,0],[-10,-1],[-9,-6],[-9,-3],[-8,0],[-8,1],[-10,-8],[-6,-10],[-8,-27],[-12,-28],[-15,-41],[-12,-54],[-14,-49],[-8,-47],[-6,-42],[-1,-23],[1,-5],[4,1],[4,0],[1,-3],[0,-7],[-1,-3],[1,-2],[2,-10],[4,-6],[-3,-16],[-5,-7],[-8,-3],[-4,-1],[-2,1],[-8,-5],[-4,-6],[3,-8],[-1,-7],[0,-5],[3,-8],[-1,-5],[1,-7],[-1,-11],[0,-4],[1,-6],[0,-8],[-2,-4],[-2,-5],[3,-8],[2,-7],[-5,-5],[-4,-1],[-2,-12],[-9,-31],[-4,-35],[-7,-25],[-5,-28],[-5,-18],[-5,-13],[1,-10],[2,-7],[3,-1],[3,2],[4,-2],[0,-4],[-2,-9],[1,-7],[-3,-10],[-1,-3],[6,-4],[9,0],[3,0],[7,-6],[5,-10],[0,-7],[-2,-3],[-7,-7],[-4,-1],[-8,0],[-7,-1],[-4,-4],[0,-4],[3,-11],[0,-7],[0,-7],[5,-4],[5,-2],[5,-7],[3,-2],[2,-9],[6,-3],[0,-7],[1,-4],[1,-4],[7,-21],[-2,-6],[0,-8],[5,-15],[-4,-6],[-7,2],[-5,8],[-3,3],[-6,-4],[-1,8],[-2,2],[-7,-6],[1,-8],[-3,-3],[-8,-1],[-6,4],[-1,3],[-7,-6],[-1,-6],[-5,-4],[-6,-18],[-8,0],[-3,-8],[-11,-8],[-2,1],[-5,-8],[-5,-5],[-7,-4],[-9,0],[-1,4],[-2,3],[-4,1],[-4,0],[-4,2],[-10,-3],[-8,1],[-3,3],[-9,5],[-1,13],[-1,16],[-3,8],[-11,16],[-5,4],[-3,8],[-10,4],[-11,4],[-4,0],[-13,3],[-31,1],[-56,2],[-72,-2],[-24,-6],[-9,-6],[-12,-4],[-3,0],[-8,4],[-6,-1],[-8,-5],[-12,0],[-5,6],[-4,4],[-11,3],[-11,0],[-7,3],[-5,0],[-8,-1],[-8,5],[-11,2],[-5,8],[-5,8],[-4,8],[-6,6],[-1,12],[6,16],[4,9],[-3,10],[4,5],[-4,7],[-3,2],[-6,18],[-4,8],[-9,19],[-10,14],[-15,25],[-8,10],[-8,9],[-4,5],[-5,5],[-2,7],[-2,7],[-3,6],[-2,4],[-1,6],[-2,5],[-3,5],[-4,3],[-4,7],[-5,4],[-3,4],[-3,7],[-2,11],[0,6],[-3,2],[-1,6],[1,5],[2,5],[-1,4],[1,4],[0,5],[-1,4],[-2,2],[-6,0],[-1,3],[-1,7],[1,3],[-5,2],[-1,7],[1,3],[-4,2],[-2,2],[-1,6],[1,4],[1,5],[-2,0],[-1,0],[-2,3],[-1,6],[2,9],[-6,4],[-2,5],[1,4],[-1,5],[-1,8],[-3,5],[-4,4],[-2,12],[0,7],[-5,8],[-4,10],[-2,9],[-3,6],[-1,9],[-5,8],[-3,7],[-2,13],[-3,13],[-2,5],[-1,21],[-1,10],[0,10],[-1,16],[-3,21],[3,20],[-3,27],[-1,18],[3,14],[5,17],[6,24],[3,24],[1,24],[1,16],[4,25],[1,37],[-1,40],[0,46],[1,38],[2,29],[4,28],[3,28],[1,18],[2,14],[4,19],[6,18],[9,14],[6,9],[5,12],[2,2],[16,13],[11,3],[7,5],[7,12],[7,9],[9,3],[16,0],[5,-4],[7,-2],[9,-12],[4,-8],[1,-18],[-2,-11],[-1,-10],[3,-12],[5,-5],[5,-3],[5,6],[1,5],[6,5],[2,2],[2,5],[3,4],[3,3],[5,2],[2,5],[2,2],[3,2],[5,2],[5,6],[6,7],[3,9],[3,14],[2,8],[3,7],[14,26],[4,5],[4,5],[1,9],[1,10],[3,12],[3,11],[3,8],[5,5],[2,3],[3,7],[5,4],[5,4],[9,2],[7,8],[7,4],[1,16],[4,4],[9,10],[3,2],[7,-2],[4,1],[4,9],[9,4],[6,0],[9,0],[4,3],[5,1],[2,4],[4,1],[5,3],[4,-2],[3,-3],[5,4],[2,2],[5,4],[2,7],[8,5],[5,2],[9,0],[4,1],[6,1],[1,2],[2,2],[5,3],[4,3],[3,7],[-1,6],[1,9],[1,5],[1,3],[-1,5],[0,8],[7,7],[0,8],[5,5],[-1,13],[2,12],[-1,6],[-1,17],[1,16],[0,11],[-5,10],[3,17],[-4,6],[-2,11],[2,11],[-1,5],[-1,7],[0,6],[0,12],[-1,6],[-1,8],[0,8],[-1,7],[0,9],[1,5],[-5,8],[0,7],[3,11],[-7,5],[-1,7],[-3,3],[-4,6],[-10,-1],[-2,-1],[-3,8],[2,8],[-4,8],[3,9],[-1,6],[1,4],[-4,8],[-5,12],[-3,12],[-4,5],[-3,4],[-5,4],[-5,6],[-8,4],[-2,7],[-1,19],[-5,2],[-2,5],[-5,7],[-3,0],[-2,7],[0,4],[-4,7],[-5,5],[-5,13],[-4,8],[-9,9],[-6,24],[-3,15],[-10,10],[-4,5],[-6,9],[-7,14],[-5,14],[-6,7],[-15,21],[0,7],[-7,1],[-5,9],[-8,6],[-8,7],[-5,4],[-1,11],[-2,8],[-6,12],[-9,12],[-6,6],[-8,1],[-10,9],[-4,14],[-4,8],[-4,3],[-13,5],[-8,21],[-6,10],[-4,5],[-7,2],[-17,2],[0,3],[-5,19],[-4,10],[-18,13],[-11,10],[-11,9],[-6,11],[-9,9],[-13,7],[-24,20],[-19,9],[-16,6],[-10,9],[-10,11],[-33,7],[-6,0],[-8,8],[-11,9],[-12,10],[-23,9],[-10,6],[-10,4],[-24,2],[-21,1],[-15,1],[-6,1],[-2,3],[-4,1],[-14,3],[-2,-1],[-4,-2],[-6,3],[-21,-8],[-8,1],[-9,7],[-13,6],[-6,4],[-3,1],[-10,2],[-2,5],[-11,0],[-22,0],[-19,5],[-9,10],[-22,4],[-12,4],[-14,6],[-10,3],[-8,3],[-3,-2],[-6,-6],[-10,0],[-16,0],[-5,5],[-23,0],[-42,-5],[-3,-1],[-10,-5],[-10,-8],[-13,0],[-1,-1],[-13,-7],[-11,-1],[-29,-20],[-14,-14],[-5,-8],[-6,-9],[-12,-12],[-9,-14],[-13,-7],[-18,-13],[-11,-6],[-18,1],[-6,-6],[-4,-10],[-2,-8],[-5,-3],[-8,-5],[-7,-4],[-24,-27],[-10,-3],[-17,-5],[-16,-11],[-9,-10],[-16,-6],[-13,-11],[-8,-8],[-12,-12],[-28,-24],[-11,-10],[-20,-14],[-10,-11],[-8,-10],[-35,-31],[-21,-25],[-20,-17],[-30,-25],[-13,-13],[-27,-25],[-28,-22],[-21,-14],[-19,-9],[-41,-21],[-43,-23],[-36,-16],[-25,-16],[-43,-19],[-24,-14],[-9,-5],[-11,-13],[-20,-4],[-11,0],[-13,1],[-15,0],[-20,-11],[-24,-3],[-13,-10],[-28,-14],[-16,-11],[-11,-12],[-7,-9],[-21,-27],[-9,-10],[-18,-17],[-27,-23],[-22,-27],[-29,-31],[-32,-34],[-17,-16],[-41,-56],[-21,-31],[-16,-35],[-10,-20],[-5,-26],[2,-5],[0,-6],[-1,-31],[2,-10],[0,-9],[2,-9],[6,-7],[6,-11],[1,-20],[1,-29],[-2,-6],[-5,-18],[-6,-6],[-7,0],[-11,0],[-10,0],[-12,5],[-3,-5],[-6,-7],[-3,-3],[-5,-13],[-12,-9],[-5,-10],[-14,-19],[-19,-34],[-23,-51],[-26,-61],[-33,-83],[-7,-27],[-2,-18],[1,-9],[4,-11],[0,-8],[-9,-4],[-3,-2],[-1,-3],[-8,-36],[-4,-29],[-1,-36],[-7,-30],[-8,-45],[-12,-80],[-5,-29],[-2,-38],[-5,-39],[-1,-17],[-2,-34],[1,-23],[0,-33],[-5,-37],[-4,-33],[-5,-53],[-1,-35],[-1,-43],[0,-28],[1,-21],[8,-34],[5,-18],[6,-17],[9,-26],[6,-18],[6,-22],[5,-22],[8,-37],[10,-34],[5,-17],[8,-26],[5,-14],[-1,-10],[11,-27],[10,-17],[11,-19],[10,-16],[15,-27],[10,-25],[13,-34],[11,-39],[7,-38],[3,-29],[4,-30],[5,-42],[11,-37],[9,-22],[12,-33],[5,-25],[9,-33],[6,-27],[7,-29],[8,-18],[10,-21],[7,-21],[7,-15],[18,-26],[9,-17],[10,-29],[18,-41],[9,-36],[11,-39],[17,-55],[13,-45],[9,-31],[8,-44],[13,-69],[25,-88],[30,-122],[21,-61],[19,-35],[23,-32],[11,-24],[20,-15],[37,-16],[13,-12],[15,-16],[19,-12],[16,-31],[20,-49],[34,-67],[25,-53],[35,-85],[39,-99],[36,-87],[13,-33],[14,-48],[19,-62],[22,-56],[22,-42],[20,-48],[40,-77],[21,-42],[12,-29],[14,-19],[24,-16],[13,-20],[16,-37],[28,-54],[17,-36],[32,-50],[42,-53],[58,-66],[24,-14],[20,-21],[17,-24],[34,-60],[34,-61],[15,-31],[9,-25],[16,-34],[19,-25],[17,-24],[26,-23],[33,-22],[35,-12],[32,-22],[14,-13],[20,-12],[27,-11],[32,-27],[31,-43],[38,-58],[35,-53],[29,-33],[22,-42],[25,-34],[22,-19],[7,-6],[37,-57],[41,-57],[40,-49],[22,-36],[19,-31],[21,-26],[29,-25],[33,-31],[23,-29],[32,-30],[30,-22],[41,-16],[32,-5],[23,-16],[18,-15],[23,-28],[28,-36],[35,-36],[31,-27],[24,-17],[23,-9],[19,-2],[23,-11],[29,-10],[29,-1],[31,-5],[26,2],[19,5],[30,12],[22,3],[20,0],[27,-8],[25,-15],[32,-4],[45,4],[6,9],[7,-3],[6,-1],[19,12],[23,5],[15,2],[20,8],[38,-1],[52,-3],[36,3],[36,10],[24,14],[20,13],[21,8],[30,2],[14,1],[32,0],[6,13],[10,3],[13,-4],[8,2],[11,-3],[4,-3],[22,-12],[33,-14],[11,-3],[11,-4],[15,-5],[27,-1],[15,0],[9,1],[8,4],[3,1],[5,0],[20,-2],[9,-3],[10,0],[15,0],[12,0],[15,-1],[17,0],[38,-6],[49,2],[34,7],[10,10],[14,5],[15,7],[7,6],[41,19],[10,3],[23,11],[20,14],[12,13],[17,13],[16,15],[65,48],[45,36],[34,37],[23,38],[11,11],[4,4],[8,17],[13,6],[14,12],[6,12],[20,28],[10,12],[11,10],[12,11],[17,11],[13,12],[8,18],[12,16],[10,11],[12,16],[10,20],[6,15],[13,15],[3,6],[17,24],[14,14],[11,13],[9,10],[-4,5],[-3,5],[2,14],[8,7],[6,2],[5,-3],[14,2],[10,5],[14,3],[10,5],[10,0],[14,-6],[7,-1],[20,-8],[13,-10],[5,-6],[2,-2],[3,1],[12,-5],[2,1],[19,-2],[14,-5],[15,-5],[11,3],[5,4],[10,-12],[6,-6],[9,-10],[17,-20],[6,-8],[14,-6],[4,-2],[26,-2],[9,-15],[22,-15],[-1,-9],[26,-25],[21,-17],[21,-25],[21,-15],[24,-25],[29,-40],[21,-28],[36,-55],[50,-58],[29,-28],[13,-13],[28,-27],[39,-29],[33,-12],[20,-6],[19,-2],[21,-2],[5,9],[16,4],[9,0],[9,8],[11,4],[12,9],[12,7],[12,0],[10,5],[8,9],[10,6],[10,-1],[14,8],[14,9],[9,9],[8,14],[10,11],[11,19],[11,26],[8,14],[9,18],[8,9],[38,12],[10,6],[14,13],[18,16],[8,9],[12,4],[18,8],[6,1],[15,7],[5,2],[16,9],[10,7],[10,-3],[12,4],[12,4],[25,7],[12,6],[12,0],[25,6],[29,18],[17,9],[14,5],[34,8],[10,5],[22,4],[33,2],[16,-2],[25,-3],[14,-2],[24,-14],[15,-15],[18,-22],[14,-6],[21,-15],[20,-9],[25,-9],[20,-18],[16,-32],[13,-19],[18,-20],[14,-14],[15,-6],[22,-14],[15,-13],[13,-15],[8,-19],[3,-27],[4,-27],[9,-20],[5,-18],[0,-27],[-4,-45],[-4,-46],[-18,-126],[-17,-65],[-10,-37],[-3,-10],[-2,-9],[5,1],[5,-2],[1,-5],[-1,-8],[-3,-7],[-3,-4],[-4,-2],[-3,-4],[-4,-5],[0,-4],[-2,-8],[2,-11],[-2,-4],[-1,-6],[2,-4],[0,-8],[6,-5],[1,-5],[0,-5],[2,-4],[1,-5],[-1,-6],[-1,-10],[-2,-11],[-2,-4],[-3,-8],[-3,-7],[-4,-9],[-2,-4],[-2,-5],[-1,-10],[5,-3],[9,-5],[2,-5],[3,-10],[-2,-13],[-4,-8],[-4,-8],[-1,-4],[-1,-6],[-7,-16],[-4,-9],[-2,-5],[-7,-17],[-3,-3],[-1,0],[-4,0],[-7,-1],[-4,-1],[-3,-4],[-5,-4],[-9,-22],[-4,-1],[-1,-9],[-1,-4],[-8,-3],[-6,-2],[-5,-12],[-3,-2],[-4,-3],[-7,-7],[-9,-4],[-3,2],[-4,1],[-10,-4],[-9,-3],[-8,1],[-5,-4],[-13,-1],[-7,-1],[-6,-5],[-3,-7],[-1,-7],[-3,-2],[-2,-8],[-4,-6],[-4,2],[-5,0],[-3,-2],[-10,-2],[-2,-1],[-6,-4],[-3,-2],[-5,-5],[-10,-3],[-7,2],[0,3],[1,8],[1,1],[2,5],[4,3],[3,4],[4,3],[0,5],[1,7],[-3,7],[-4,0],[-2,-2],[-3,-4],[-4,-1],[-6,0],[-8,-8],[-11,-1],[-1,-7],[-3,1],[-1,1],[-1,3],[0,5],[2,5],[1,3],[2,4],[2,3],[3,3],[3,5],[2,3],[0,6],[6,8],[-1,10],[2,8],[-4,3],[-5,-1],[-3,-4],[-8,-7],[-20,2],[-8,1],[-6,0],[-3,3],[-3,7],[-2,6],[-5,8],[-7,4],[-7,3],[-5,2],[-5,2],[-1,5],[-10,6],[-4,7],[1,6],[2,2],[5,3],[-11,19],[-5,4],[-3,6],[-2,2],[-5,6],[-7,6],[-9,9],[-17,9],[-19,10],[-11,13],[-32,16],[-11,11],[-10,2],[-4,-1],[-22,2],[-31,0],[-15,0],[-13,-10],[-23,-7],[-9,1],[-15,-7],[-11,-7],[-13,-16],[-6,-14],[-6,-8],[-11,-13],[-23,-15],[-33,54],[-72,-70],[-72,-76],[-10,-20],[-6,-16],[-9,-4],[-5,0],[-29,-13],[-12,-10],[-12,-2],[-18,-3],[-9,-6],[-18,-4],[-10,-4],[-12,-5],[-15,0],[-8,-1],[-14,-3],[-18,-4],[-9,0],[-9,0],[-4,0],[-4,2],[-7,5],[-6,1],[-5,5],[-17,6],[-13,13],[-5,9],[-3,13],[-7,11],[-1,4],[-11,22],[-2,12],[-8,22],[-9,17],[-9,15],[-8,23],[-14,15],[-18,24],[-29,27],[-12,13],[-24,26],[-20,30],[-19,15],[-32,17],[-26,4],[-22,4],[-28,0],[-23,-4],[-16,-2],[-21,-11],[-15,-10],[-7,-7],[-11,-5],[-11,-6],[-20,-11],[-9,-6],[-10,-8],[-15,-8],[-16,-15],[-5,-17],[-1,-6],[-11,-7],[-12,-4],[-7,-5],[-3,-8],[-16,-22],[-16,-13],[-19,-11],[-10,-8],[-12,0],[-16,-8],[-15,-2],[-6,-6],[-12,-5],[-10,-3],[-12,-6],[-9,-7],[-4,-2],[-7,-2],[-7,1],[-9,-6],[-27,-11],[-11,-11],[-11,-8],[-15,-4],[-17,-3],[-8,0],[-19,-9],[-13,-3],[-11,-3],[-11,-4],[-14,-9],[-14,-6],[-11,-7],[-21,-9],[-7,-3],[-18,-11],[-4,-3],[-50,-28],[-27,-12],[-37,-19],[-35,-22],[-33,-13],[-31,-21],[-16,-14],[-8,-11],[-13,-18],[-6,-15],[-10,-6],[-12,-1],[-6,-5],[-5,-2],[-13,-2],[-17,-12],[-21,-10],[-13,6],[-10,3],[-3,8],[-9,14],[-13,-3],[-8,-9],[-1,-13],[-11,-11],[-8,-6],[-2,-12],[-25,-2],[-14,-2],[-21,-13],[-24,-2],[-7,0],[-16,-5],[-10,-8],[-10,-2],[-4,0],[-24,-7],[-5,-2],[-24,-20],[-4,-11],[-5,-13],[-5,-14],[-8,-18],[-10,-18],[-14,-11],[-10,-14],[-11,-21],[-10,-5],[-8,-14],[-7,-16],[-6,-15],[1,-30],[4,-26],[7,-9],[6,-10],[7,-23],[2,4],[3,4],[14,1],[2,-5],[0,-13],[-2,-8],[-7,-9],[-2,-13],[6,-9],[8,-7],[20,-22],[4,-25],[7,-26],[15,-13],[10,-5],[16,-24],[11,-14],[17,-35],[11,-17],[6,-21],[5,-26],[8,-10],[9,-5],[13,-6],[10,-22],[3,-14],[3,-12],[6,-12],[8,-18],[7,-11],[10,-20],[19,-39],[13,-20],[8,-4],[21,-4],[8,-3],[12,-10],[7,-5],[8,-1],[12,1],[4,-2],[26,-6],[15,1],[16,4],[3,10],[4,6],[6,8],[7,5],[17,15],[2,13],[-2,14],[-6,22],[-1,16],[4,11],[5,21],[-1,8],[0,11],[5,31],[7,14],[13,11],[10,22],[8,11],[6,6],[5,16],[4,9],[3,6],[9,11],[14,10],[10,7],[7,13],[5,13],[15,13],[12,13],[0,11],[6,22],[0,13],[0,8],[4,19],[-3,18],[0,14],[3,17],[6,18],[9,17],[5,15],[8,16],[12,21],[4,12],[5,3],[7,13],[-3,10],[-2,9],[-3,5],[-1,8],[1,19],[6,16],[11,10],[13,11],[14,-2],[9,-8],[5,-12],[3,-15],[11,-6],[8,-19],[7,-11],[11,-18],[7,-11],[16,-30],[15,-37],[11,-17],[2,-22],[5,-33],[11,-39],[5,-32],[8,-34],[11,-6],[9,-3],[10,-10],[2,-15],[11,-4],[9,-10],[8,-17],[4,-19],[9,-22],[11,-7],[6,-8],[-4,-15],[-3,-9],[3,-5],[5,-4],[12,-1],[12,-19],[6,-29],[17,-41],[20,-30],[27,-19],[13,-13],[8,-20],[6,-7],[11,-13],[10,-11],[17,-10],[6,-15],[15,-12],[13,-3],[6,-4],[10,-23],[-2,-23],[-5,-3],[-9,-12],[-5,-14],[0,-12],[2,-42],[10,-26],[10,-43],[7,-15],[6,-14],[2,-13],[6,-27],[6,-16],[5,-16],[6,-22],[8,-18],[5,-12],[2,-29],[6,-20],[9,-44],[9,-26],[6,-16],[13,-47],[8,-42],[-1,-17],[6,-23],[14,-46],[9,-22],[12,-36],[14,-68],[13,-59],[14,-39],[10,-22],[5,-30],[4,-25],[1,-29],[1,-22],[-1,-20],[4,-32],[5,-17],[-1,-19],[2,-11],[6,-7],[2,-16],[-2,-10],[4,-11],[-1,-10],[0,-2],[6,-12],[0,-6],[4,-29],[7,-28],[6,-17],[4,-11],[0,-12],[-2,-7],[-6,-19],[4,-16],[4,-49],[-1,-23],[-7,-19],[0,-1],[-9,-34],[-2,-16],[2,-50],[4,-30],[7,-35],[8,-29],[-1,-44],[-15,-46],[-15,-55],[-1,-25],[5,-14],[-9,-31],[-3,-42],[-8,-49],[-9,-19],[4,-42],[6,-11],[-10,-33],[-1,-21],[-6,-48],[-4,-31],[-14,-50],[-24,-55],[-10,-47],[-1,-25],[2,-17],[-1,-26],[-19,-30],[-96,-87],[-18,6],[-18,-33],[-44,-42],[-11,-5],[-25,2],[1,-12],[-7,-18],[-15,-18],[3,-28],[-6,-22],[-16,-27],[-26,-19],[-34,-9],[-32,16],[-28,12],[-16,5],[-21,1],[-32,-3],[-37,8],[-27,17],[-38,27],[-28,2],[-35,6],[-36,1],[-6,-10],[22,-8],[5,-8],[-2,-20],[-9,-9],[-9,5],[-22,24],[0,7],[-9,3],[-8,11],[-20,4],[-5,7],[-2,8],[-6,5],[-5,7],[-22,8],[-38,6],[-20,-1],[-3,-3],[-2,-5],[-5,-16],[-7,-23],[-6,8],[-4,15],[-1,19],[-2,6],[-8,9],[-10,0],[-11,3],[-19,7],[-13,7],[-15,2],[-5,-6],[-5,-2],[-11,0],[-13,-3],[-28,-8],[-12,8],[-13,7],[-3,14],[1,6],[-5,13],[-18,9],[-2,4],[-19,12],[-23,6],[-16,9],[-32,5],[-10,-5],[-15,-4],[-12,8],[-27,9],[-19,17],[-25,0],[-12,8],[-7,10],[-10,4],[-5,7],[-31,35],[-15,14],[-13,-1],[-23,2],[-14,19],[-12,13],[-17,27],[-20,31],[-38,52],[-25,56],[-8,15],[-16,31],[-15,38],[-12,55],[-4,51],[-12,42],[-20,50],[-20,55],[-20,71],[-16,66],[-2,41],[-2,21],[-12,14],[-30,35],[-19,19],[-18,42],[-22,15],[-8,29],[-3,32],[-19,27],[-20,20],[-12,-4],[-13,-12],[1,-22],[-3,-24],[-5,-3],[-8,1],[-14,9],[-10,-3],[-8,6],[-7,6],[-9,-8],[-13,-18],[-19,-20],[-12,-13],[-35,-32],[-16,-12],[-18,-10],[-21,-11],[-15,-7],[-8,3],[-13,11],[-25,25],[-18,29],[-12,26],[-17,10],[-8,7],[-8,14],[-9,24],[-8,3],[-7,2],[-6,-6],[-20,-5],[-9,2],[-10,-9],[-16,-5],[-9,0],[-18,-8],[-10,-2],[-7,-7],[-14,-14],[-19,-11],[-16,-1],[-16,2],[-14,5],[-6,1],[-25,-1],[-8,9],[-13,9],[-8,22],[-10,22],[-35,0],[-24,-22],[-6,-31],[-19,-13],[-24,-26],[-33,-30],[-44,-11],[-34,-30],[-45,-25],[-19,-9],[-28,-12],[-25,-9],[-29,-3],[-25,-10],[-59,-7],[-39,-2],[-31,8],[-38,7],[-44,14],[-41,31],[-44,22],[-34,14],[-47,23],[-33,21],[-54,37],[-33,19],[-21,24],[-17,6],[-16,-10],[-43,-2],[-62,28],[-13,12],[-20,-4],[-55,23],[-87,37],[-29,13],[-44,9],[-125,60],[-89,32],[-53,11],[-31,18],[-15,11],[-26,-1],[-62,13],[-44,4],[-30,10],[-49,-5],[-39,-1],[-38,-16],[-28,-1],[-24,12],[-27,35],[-52,90],[-20,32],[-18,31],[-13,33],[-19,56],[-9,30],[-6,36],[1,47],[2,26],[2,32],[2,76],[-7,135],[-6,87],[-9,95],[-16,96],[-11,73],[-17,98],[-17,48],[-36,64],[-42,56],[-62,75],[-34,48],[-28,28],[-14,15],[-6,6],[-8,8],[-29,30],[-88,73],[-14,9],[-18,14],[-126,81],[-116,63],[-97,44],[-124,26],[-57,27],[-43,64],[-11,43],[-6,23],[-4,16],[-3,13],[-3,12],[-2,8],[-3,14],[-5,20],[-1,5],[-1,31],[6,15],[-4,16],[2,13],[11,23],[13,36],[12,16],[16,12],[15,15],[8,5],[44,30],[11,10],[28,24],[46,30],[8,26],[0,13],[1,16],[2,9],[5,12],[-2,0],[-11,-1],[-8,-12],[-4,-11],[-3,-3],[-5,6],[-4,15],[1,25],[7,10],[3,10],[2,20],[5,12],[4,19],[10,24],[6,18],[6,17],[6,16],[-3,31],[0,13],[-5,12],[0,46],[-7,24],[5,48],[-3,23],[0,27],[3,33],[1,21],[-3,23],[2,27],[6,17],[0,4],[4,53],[6,22],[3,14],[3,32],[1,25],[3,12],[5,22],[0,13],[-5,0],[-6,12],[-4,7],[-2,17],[-5,29],[1,29],[4,44],[0,22],[3,12],[-6,17],[-13,3],[-10,12],[-2,14],[1,10],[-8,17],[-9,2],[-4,11],[2,10],[-1,12],[-3,7],[-4,20],[3,3],[1,14],[-6,10],[-4,20],[2,8],[4,9],[-5,11],[7,11],[-3,10],[8,5],[-1,6],[-4,0],[-18,3],[-2,9],[0,9],[-6,7],[-3,8],[-2,14],[0,22],[7,8],[-1,9],[1,9],[0,12],[-4,20],[-5,24],[-14,14],[-5,7],[0,17],[7,16],[3,17],[-3,13],[-4,12],[-2,22],[4,32],[-8,26],[-5,16],[-8,9],[-7,14],[-1,11],[-3,14],[-7,23],[-7,17],[-6,18],[1,14],[-5,15],[-6,18],[-4,16],[-5,24],[0,16],[-1,15],[0,15],[2,15],[-5,25],[5,15],[-3,17],[1,19],[3,29],[0,19],[-3,15],[-13,13],[-8,10],[-12,17],[0,10],[0,14],[-2,9],[-6,16],[-7,30],[-3,9],[4,37],[4,16],[-11,29],[-9,3],[-10,17],[-1,17],[-1,20],[-9,11],[-8,6],[-12,13],[-5,14],[-14,22],[-3,9],[-5,12],[-2,6],[-8,26],[-10,22],[-4,10],[-6,8],[-8,20],[1,20],[4,22],[5,11],[10,10],[7,10],[18,13],[10,11],[-3,7],[6,23],[-1,18],[7,8],[10,7],[0,14],[-5,20],[-3,12],[-12,20],[-6,19],[-12,13],[-5,6],[-10,10],[-12,13],[-17,20],[-7,30],[-10,21],[-3,10],[-7,22],[-11,20],[-3,9],[-7,14],[-6,12],[-10,18],[-6,10],[-14,11],[-2,11],[-6,6],[-5,7],[-2,7],[-4,9],[-6,11],[-4,7],[-2,6],[-3,4],[-7,6],[-5,5],[-5,9],[-5,19],[-9,4],[-10,2],[-3,10],[-1,6],[-6,8],[-6,3],[-8,6],[-6,12],[-4,5],[-3,9],[-4,18],[-3,5],[-4,2],[-3,6],[1,8],[1,7],[-1,5],[-3,5],[-3,3],[-8,5],[-9,7],[-7,5],[-2,10],[0,11],[-9,8],[-5,11],[1,9],[0,4],[-6,7],[-3,7],[-4,11],[-6,14],[-6,12],[-9,19],[-2,10],[-10,27],[-10,26],[-6,16],[-10,30],[-10,36],[-7,30],[-7,26],[-5,21],[-8,54],[-9,30],[-8,34],[-3,21],[-11,58],[-4,18],[-5,18],[-13,43],[-5,18],[-6,24],[-9,33],[-10,20],[-17,24],[-15,28],[-12,25],[-8,25],[-4,18],[-7,15],[-9,19],[-15,22],[-10,13],[-6,18],[-7,32],[-20,25],[-6,16],[-6,12],[-6,16],[-1,18],[0,16],[-9,11],[-10,5],[-8,-6],[-7,10],[-3,8],[1,6],[0,12],[-4,13],[4,11],[-1,6],[-6,8],[0,13],[10,6],[1,11],[4,13],[5,16],[0,14],[4,9],[1,15],[5,6],[4,7],[-1,10],[5,6],[4,8],[7,12],[1,19],[3,13],[-1,16],[-4,8],[-2,16],[-1,16],[1,12],[3,23],[2,4],[-10,19],[-8,18],[-6,28],[-4,20],[-13,41],[-5,16],[-7,25],[-5,21],[-6,1],[-5,-9],[-7,-6],[-9,3],[-3,11],[-1,3],[-10,3],[-3,4],[-10,19],[-6,3],[-4,12],[-4,13],[-7,6],[-5,2],[-4,5],[-1,7],[-2,3],[-7,10],[-15,22],[-2,13],[1,8],[-1,8],[-4,6],[-6,10],[-3,12],[-5,13],[-2,12],[-9,6],[-10,0],[-7,2],[-6,3],[-9,8],[-4,17],[-4,14],[-5,15],[-8,15],[-7,16],[-4,15],[-9,10],[-7,4],[-15,0],[-6,13],[-1,12],[-5,13],[-11,17],[-6,15],[-7,20],[-8,10],[-7,11],[-5,9],[-8,18],[-8,14],[-11,16],[-6,10],[-26,32],[-6,6],[-10,10],[-16,15],[-22,23],[-14,18],[-4,13],[-2,9],[-3,9],[-3,10],[-2,10],[-2,9],[-3,10],[3,17],[5,9],[3,11],[5,18],[12,6],[10,3],[12,6],[8,14],[8,17],[8,19],[6,24],[3,28],[-6,17],[1,16],[5,10],[1,29],[0,10],[0,28],[-9,22],[-1,24],[-2,10],[-2,22],[1,14],[-2,27],[2,27],[8,24],[6,20],[9,18],[11,21],[4,13],[6,27],[10,14],[9,12],[5,5],[7,4],[14,5],[5,5],[6,8],[6,11],[9,19],[10,14],[7,12],[8,14],[3,13],[5,16],[8,31],[5,24],[-8,18],[-2,10],[1,19],[6,13],[5,8],[3,20],[1,26],[3,16],[-2,20],[0,19],[-4,7],[2,23],[-3,22],[-2,18],[-2,16],[7,23],[4,8],[4,33],[4,13],[4,20],[8,36],[13,91],[1,45],[0,28],[9,66],[-3,10],[0,33],[3,21],[4,20],[-1,31],[-1,41],[-6,25],[-3,33],[-1,30],[-5,17],[-6,51],[-2,23],[-6,11],[0,22],[1,12],[0,16],[-8,27],[-8,29],[-5,22],[-3,9],[-5,30],[-3,7],[-5,13],[-9,24],[-7,30],[-8,13],[-15,8],[-8,15],[-5,15],[-7,10],[-8,21],[-11,9],[-8,10],[-4,16],[-8,14],[-7,10],[-7,8],[-6,8],[-9,8],[-12,17],[-18,39],[-4,21],[-5,10],[-8,8],[-6,9],[-6,13],[-5,17],[-4,14],[-13,13],[-9,12],[-7,10],[-18,18],[-7,16],[-22,12],[-22,26],[-10,9],[-21,25],[-16,12],[-24,23],[-22,17],[-23,19],[-25,25],[-19,26],[-13,15],[-8,13],[-14,30],[-9,13],[-8,13],[-13,12],[-8,3],[-14,0],[-14,-1],[-25,-13],[-7,-10],[-12,-18],[-11,-16],[-10,-10],[-24,-18],[-22,-14],[-13,-6],[-15,0],[-17,4],[-11,11],[-14,11],[-7,21],[-5,23],[-4,21],[-4,17],[-7,18],[-2,17],[-6,47],[-1,40],[2,34],[3,41],[2,28],[5,15],[-3,13],[-3,11],[1,9],[3,11],[-3,18],[0,14],[-4,13],[-4,13],[-2,14],[9,10],[0,5],[6,21],[0,15],[0,12],[0,16],[5,19],[-1,14],[5,16],[2,8],[0,9],[0,20],[2,33],[-2,22],[4,14],[1,5],[1,5],[2,8],[10,18],[2,8],[5,18],[2,6],[4,14],[9,16],[5,5],[8,8],[4,8],[2,8],[6,14],[21,22],[5,20],[9,11],[4,11],[4,7],[4,9],[16,24],[7,28],[4,9],[4,8],[2,22],[-1,18],[1,7],[4,16],[9,21],[12,20],[13,3],[4,0],[11,2],[7,-5],[12,-5],[8,-2],[9,-1],[18,-3],[7,1],[15,1],[20,5],[9,5],[18,14],[10,14],[6,5],[9,0],[9,-1],[10,-1],[9,-2],[9,-3],[9,-6],[10,-20],[3,-21],[4,-11],[11,-26],[31,-45],[62,-79],[57,-63],[51,-53],[41,-29],[51,-33],[46,-20],[9,-11],[15,-19],[19,-5],[16,5],[20,0],[11,-3],[26,-7],[22,-12],[18,-20],[22,-27],[31,-42],[13,-17],[13,-32],[10,-26],[14,-20],[20,-28],[15,-15],[7,-15],[12,-27],[13,-26],[5,-20],[6,-9],[11,-11],[8,-6],[38,-17],[45,-11],[68,-21],[28,-10],[33,-2],[51,10],[22,8],[32,2],[27,11],[13,6],[34,7],[16,1],[37,1],[12,2],[23,1],[18,0],[7,0],[12,-4],[28,-14],[16,0],[11,2],[20,1],[23,1],[11,7],[6,2],[2,0],[1,-3],[15,6],[15,2],[15,9],[13,5],[11,6],[1,0],[12,5],[13,-1],[8,5],[11,2],[41,10],[11,6],[12,5],[22,8],[17,5],[9,1],[5,3],[24,12],[40,9],[14,1],[32,14],[21,2],[14,6],[6,1],[33,12],[19,5],[20,11],[24,10],[19,11],[10,6],[8,4],[6,5],[28,9],[12,3],[17,0],[14,5],[11,7],[21,0],[13,3],[9,7],[9,2],[20,7],[19,0],[16,5],[17,8],[23,1],[28,3],[10,1],[15,-6],[13,-1],[16,-16],[17,-13],[10,-9],[29,-24],[15,4],[14,2],[16,9],[9,7],[21,3],[20,3],[19,12],[12,7],[18,14],[13,24],[12,17],[35,35],[14,14],[29,28],[38,41],[15,19],[12,15],[10,17],[16,27],[29,60],[9,33],[6,22],[7,23],[6,35],[4,36],[-7,36],[-7,17],[-12,10],[-8,6],[-25,5],[-20,10],[-15,15],[-9,15],[-16,20],[-14,31],[-8,32],[-7,11],[-9,14],[-11,8],[-7,17],[-8,24],[0,29],[5,31],[10,36],[15,29],[22,25],[25,13],[29,6],[36,-4],[31,-17],[22,-18],[31,-29],[23,-32],[42,-58],[41,-53],[42,-57],[47,-53]],[[438128,207115],[-12,-30],[-30,-6],[-25,-2],[-17,16],[-28,-10],[-10,33],[10,8],[44,31],[51,4],[18,-39],[-1,-5]],[[415901,208567],[3,-11],[8,1],[9,-5],[5,3],[11,-6],[4,-1],[5,5],[10,-6],[2,-8],[1,-7],[8,-16],[12,1],[5,-2],[6,-11],[2,-9],[3,-14],[-5,-20],[-6,-9],[-10,-1],[-5,-3],[-3,2],[-6,2],[-5,10],[0,7],[-7,4],[2,15],[1,9],[-1,10],[-7,4],[-8,-9],[-3,4],[-4,13],[-15,4],[-5,6],[-4,7],[-6,7],[-6,7],[-2,9],[0,8],[11,0]],[[414925,208922],[1,-6],[8,-13],[0,-18],[8,-2],[10,3],[7,-8],[11,-4],[8,-6],[2,-7],[12,0],[12,-8],[15,-3],[3,-6],[2,-14],[12,-3],[7,5],[13,1],[4,11],[7,12],[13,5],[14,0],[17,-8],[6,-15],[0,-11],[1,-16],[2,-16],[-4,-9],[-4,-4],[-5,-7],[-2,-1],[-5,-18],[-2,-19],[5,-22],[14,-5],[6,2],[9,-9],[20,-13],[8,-22],[3,-20],[-5,-14],[-8,-5],[-10,-11],[-5,-8],[-2,-10],[2,-19],[-1,-14],[1,-14],[3,-14],[2,-8],[0,-21],[6,-11],[1,-3],[4,-20],[-1,-13],[1,-12],[2,-9],[-4,-7],[-4,-8],[0,-11],[2,-14],[2,-8],[-4,-16],[-3,-2],[1,-9],[0,-6],[-7,-11],[4,-12],[1,-7],[-1,-12],[-4,-11],[-6,-5],[-10,-8],[1,-8],[-1,-10],[-5,-27],[-9,-21],[-21,-39],[-6,-10],[-9,-10],[-11,-20],[-11,-8],[-25,-13],[-8,-3],[-21,-1],[-15,-3],[-31,-5],[-12,5],[-12,-1],[-16,6],[-12,2],[-8,1],[-17,4],[-7,2],[-18,7],[-13,6],[-15,5],[-11,0],[-8,-1],[-11,-5],[-13,-10],[-2,-5],[-5,-9],[-5,-3],[-3,0],[-3,6],[-6,3],[-6,2],[-18,-1],[-4,-3],[-20,-5],[-5,6],[-1,3],[0,5],[-2,12],[-3,12],[-11,17],[-8,8],[-10,8],[-13,7],[-6,2],[-5,11],[1,15],[9,22],[-6,13],[-4,6],[-6,3],[-6,4],[-6,15],[-5,4],[-8,-2],[-8,3],[-5,5],[-1,8],[1,9],[-1,5],[-8,6],[-3,6],[-8,9],[1,18],[6,6],[-6,14],[4,10],[-4,8],[0,20],[0,12],[-17,23],[-9,21],[0,11],[-3,6],[4,20],[-1,7],[-4,12],[-7,8],[1,11],[7,-1],[6,3],[-2,11],[-6,7],[-5,11],[3,11],[1,11],[-1,20],[-12,7],[-5,9],[-4,14],[1,9],[-3,9],[-3,6],[0,11],[1,8],[2,12],[7,8],[9,-3],[4,-3],[11,13],[8,4],[2,-3],[6,-1],[5,3],[0,3],[9,11],[11,8],[0,5],[0,13],[6,12],[6,14],[6,2],[11,-3],[6,-5],[4,3],[6,0],[9,0],[6,2],[5,7],[6,6],[3,2],[9,5],[15,-3],[9,5],[6,4],[2,6],[-1,9],[1,16],[3,15],[4,8],[1,-2],[9,0],[6,7],[15,-6],[10,-10],[-1,-11],[6,-5],[2,6],[2,9],[6,2],[6,4],[11,5],[4,-7],[7,-2],[5,12],[-2,5],[10,-1],[4,-10],[6,-2],[9,-5],[3,4],[1,6],[3,6],[1,10],[-1,10],[5,7],[1,2],[5,5],[3,7],[6,4],[14,0],[9,-5],[14,12],[12,4],[9,-4],[3,-3],[7,-5]],[[415704,209052],[7,-8],[13,2],[4,-8],[4,0],[8,5],[12,-6],[6,-3],[2,0],[12,8],[13,-4],[2,-8],[1,-17],[6,-2],[2,-1],[6,-14],[9,-9],[13,-2],[4,-9],[4,-6],[0,-11],[-2,-7],[8,-7],[3,-10],[2,1],[-1,-23],[1,-5],[9,-14],[13,-3],[5,-5],[-1,-19],[-4,-8],[7,-13],[5,-2],[4,-11],[2,-10],[-5,-10],[-7,-6],[-1,-15],[0,-5],[-3,-13],[-1,-11],[0,-19],[-1,-24],[9,4],[6,11],[18,-3],[-1,-21],[1,-11],[-11,-12],[-4,-10],[-8,4],[-10,4],[-7,-15],[8,-17],[2,-5],[-2,-11],[-8,-16],[-14,-4],[-4,7],[-5,4],[-13,2],[-12,-4],[-8,7],[-8,14],[-4,15],[-16,15],[-1,13],[-8,6],[-8,0],[-11,4],[-2,12],[12,11],[9,2],[0,6],[-5,9],[3,7],[6,11],[-7,6],[-4,3],[-11,10],[-3,10],[-3,10],[-3,10],[-4,2],[-10,9],[0,7],[-1,9],[-5,4],[-15,3],[-6,10],[-6,11],[-7,9],[-2,10],[-6,3],[-5,0],[-15,-1],[-7,3],[-6,6],[-3,11],[1,9],[-7,9],[-2,4],[2,17],[8,9],[2,15],[0,6],[1,16],[3,12],[4,11],[3,11],[-1,9],[7,5],[6,4],[8,14],[6,8],[12,-7],[11,-4]],[[439247,210896],[3,-1],[3,0],[9,1],[3,-1],[-2,-10],[2,-4],[3,-3],[-5,-8],[-7,-1],[-7,-1],[-5,-1],[-3,1],[-5,-4],[-1,-4],[5,-2],[5,-1],[4,-2],[8,-3],[3,-1],[3,0],[7,2],[2,3],[9,0],[2,-4],[3,2],[1,-3],[11,11],[4,-3],[3,-13],[-3,-5],[-3,-3],[-4,-1],[-6,3],[-2,-1],[-1,-3],[-1,-11],[-1,-5],[5,-9],[0,-10],[-3,-3],[-8,-6],[-2,0],[-3,-8],[3,-5],[4,-3],[3,1],[5,-1],[2,-5],[4,-1],[8,-2],[2,4],[3,3],[3,-1],[-2,-6],[-4,-4],[-2,-5],[1,-6],[-3,-3],[3,-5],[-1,-12],[-3,-4],[3,-8],[1,-6],[-9,-9],[-3,1],[-4,-9],[-1,-2],[6,-8],[1,-5],[-2,-9],[-3,-5],[-5,0],[-3,1],[-4,-1],[-5,0],[0,-6],[-3,-1],[-4,-4],[-5,-1],[-6,2],[-1,-6],[0,-6],[-4,-7],[-4,2],[-3,2],[-4,-2],[1,-7],[2,-5],[-2,-4],[-3,-6],[5,-2],[5,2],[5,2],[4,-4],[2,-1],[3,0],[12,-4],[2,-6],[-3,-8],[-5,-2],[-6,-3],[-1,-3],[-4,1],[-5,-10],[0,-8],[2,-7],[0,-10],[-4,-7],[-2,-6],[-14,-3],[-2,6],[4,5],[6,7],[1,8],[0,9],[-1,6],[-1,4],[-4,4],[-3,2],[-1,4],[-3,6],[1,7],[1,10],[-5,5],[-11,1],[-3,0],[-6,-1],[-7,-1],[-2,-3],[-2,-4],[-4,1],[-2,5],[-11,2],[-4,4],[-7,4],[-2,8],[-2,3],[-5,-6],[-6,-1],[-4,3],[-4,3],[-1,10],[2,7],[2,3],[-1,4],[-3,0],[-1,7],[1,16],[-1,14],[1,12],[8,7],[10,6],[11,15],[4,7],[4,7],[2,8],[2,7],[1,7],[4,10],[2,9],[1,7],[-4,6],[0,6],[2,9],[4,5],[0,3],[6,9],[4,3],[3,10],[1,6],[5,3],[7,0],[2,-3],[5,7],[1,5],[-4,3],[1,6],[7,6],[5,-2],[2,2],[0,4],[3,3],[6,1],[1,-1]],[[439373,214055],[1,-11],[11,-1],[6,3],[1,5],[3,4],[3,1],[9,-2],[1,-5],[-1,-5],[2,-3],[-2,-6],[2,-6],[6,1],[5,-6],[3,-1],[6,-1],[4,0],[11,-2],[16,-6],[11,-10],[11,-12],[6,-8],[3,-9],[7,-10],[8,-11],[5,-12],[5,-9],[8,-9],[2,-8],[4,-9],[0,-4],[1,-9],[4,-7],[6,-5],[2,2],[-1,4],[0,4],[0,4],[3,3],[6,1],[5,0],[3,-3],[0,-4],[0,-6],[-2,-7],[1,-4],[-1,-2],[-3,-2],[-3,-1],[-2,-5],[0,-2],[-1,-3],[1,-10],[3,4],[2,-4],[0,-8],[2,-1],[1,-4],[1,-9],[1,-7],[1,-1],[2,-7],[-1,-3],[4,-4],[2,-9],[2,-2],[-2,-9],[0,-10],[1,-10],[-2,-5],[0,-9],[3,-10],[-2,-9],[1,-7],[1,-8],[4,-11],[6,-17],[2,-5],[0,-13],[2,-4],[1,-14],[0,-10],[8,-10],[5,-3],[7,-2],[12,-5],[11,-5],[6,-8],[-1,-13],[-3,-12],[-5,-9],[-6,-9],[-7,-4],[-8,-2],[-8,-7],[-5,-5],[-5,-7],[-10,-22],[-10,-40],[-5,-46],[-2,-40],[-3,-17],[-2,-11],[0,-9],[-8,-31],[-4,-21],[-8,-48],[-2,-35],[2,-21],[-4,-10],[-4,-11],[-7,-72],[-6,-58],[-2,-25],[-1,-13],[3,-26],[5,-26],[9,-43],[9,-39],[6,-18],[15,-22],[8,-7],[2,5],[5,6],[3,0],[7,1],[1,2],[-1,4],[0,5],[1,2],[5,2],[3,-1],[4,1],[3,-3],[7,-6],[2,-1],[3,-1],[1,-6],[0,-3],[-3,-6],[-1,-1],[-3,0],[-4,-3],[-4,-1],[-3,-4],[-5,-4],[-4,-5],[0,-4],[9,2],[5,1],[4,-3],[9,-2],[3,-7],[0,-7],[2,-3],[6,3],[5,8],[5,5],[7,3],[0,6],[-1,1],[-7,1],[-4,2],[-4,5],[1,8],[2,3],[4,2],[0,4],[-2,3],[-6,0],[-2,1],[-1,3],[0,5],[1,6],[1,3],[4,2],[5,-1],[4,0],[5,-4],[1,-1],[-4,-4],[-2,-5],[2,-2],[0,-3],[-2,-10],[3,-3],[3,-11],[2,-2],[4,-2],[7,-3],[1,-6],[0,-3],[-1,-3],[-3,-3],[-1,-4],[1,-6],[1,-2],[3,3],[1,5],[3,3],[4,1],[1,4],[-2,3],[-2,3],[2,5],[2,0],[3,1],[3,-5],[0,-2],[3,0],[4,1],[3,-1],[3,-3],[0,-6],[-5,-1],[-3,0],[-5,-4],[-1,-8],[2,4],[3,0],[3,-1],[5,0],[8,-6],[5,-2],[-1,-11],[8,2],[9,-1],[7,-5],[-1,-13],[11,1],[12,-8],[0,8],[6,0],[12,1],[0,-8],[4,-5],[3,-6],[-2,-6],[-2,-2],[-3,0],[-3,1],[-1,0],[-3,-2],[-1,-6],[-5,-5],[-6,-2],[-10,6],[-2,0],[-14,0],[-12,2],[-6,5],[-4,2],[-2,3],[-10,3],[0,7],[-2,6],[-4,-6],[-6,-1],[-6,0],[-5,1],[-4,0],[-10,4],[-6,5],[-1,-11],[-6,-6],[-3,4],[-7,0],[-2,-6],[10,-6],[2,3],[3,-2],[0,-10],[-5,-4],[3,-8],[1,-6],[-1,-3],[-1,-3],[-5,2],[-5,3],[-8,0],[-5,-5],[-2,-8],[-1,-6],[1,-10],[5,-3],[3,-1],[5,0],[7,1],[11,-4],[9,-7],[3,-7],[-3,-10],[-3,-4],[-8,-1],[0,-3],[-1,-10],[9,-3],[1,-10],[-6,-2],[-6,-1],[-2,-7],[3,-2],[-12,-9],[-7,-1],[0,-13],[11,1],[-3,-9],[-6,-8],[-6,2],[-3,1],[-5,-1],[-2,-1],[-2,-5],[-10,-6],[-5,1],[-1,5],[-1,7],[-2,1],[-4,0],[0,-1],[1,-5],[0,-3],[-3,0],[0,-2],[-1,-2],[-2,-2],[-2,-2],[-6,-2],[-4,0],[-1,1],[-2,2],[-1,3],[1,5],[1,4],[2,5],[1,3],[0,3],[-3,5],[-3,4],[-2,3],[-3,0],[-4,-4],[-1,-5],[1,-5],[1,-5],[0,-7],[-3,-1],[-4,-1],[-8,-2],[-4,-2],[1,-4],[4,-1],[2,-3],[0,-3],[-3,-3],[-4,-1],[-5,-2],[-5,0],[-2,1],[-1,4],[1,5],[1,4],[-2,1],[-2,0],[-4,-3],[-2,2],[-5,-4],[-2,-1],[-5,-2],[-4,-3],[-5,-1],[-7,1],[-10,1],[-1,2],[-8,7],[-1,0],[-2,4],[0,2],[-1,5],[0,4],[-3,5],[-3,3],[-7,4],[-5,3],[-3,5],[-2,5],[-1,1],[-4,-2],[-4,-1],[-5,5],[0,5],[1,6],[4,3],[0,2],[-1,5],[-1,3],[-2,5],[-3,0],[-4,0],[-3,-5],[-1,1],[-4,3],[-2,-2],[-3,-1],[-1,-2],[1,-2],[1,-3],[3,-3],[3,-4],[0,-3],[-4,-1],[-3,0],[-2,-4],[-3,-4],[-3,0],[-2,0],[-2,0],[-4,-2],[-2,-1],[-1,3],[-1,3],[3,8],[3,-1],[2,-3],[3,2],[4,2],[-1,5],[-3,1],[-3,-2],[-3,1],[-1,3],[1,6],[2,2],[-1,5],[-2,2],[-5,-3],[-4,2],[-5,1],[-5,3],[-2,-5],[2,-4],[0,-3],[-2,-1],[-3,0],[-1,-1],[-2,-5],[1,-3],[0,-3],[-2,-2],[-2,-4],[-2,-1],[-3,-2],[-2,-1],[-2,2],[-3,3],[-2,1],[-2,-1],[-2,0],[-4,0],[-1,2],[0,4],[-5,4],[1,7],[2,3],[3,3],[-3,3],[-2,4],[-3,2],[0,6],[-3,-1],[-1,0],[-1,-4],[1,-4],[0,-3],[-2,-5],[-3,-2],[-4,0],[-4,2],[-1,3],[1,8],[2,2],[1,2],[0,3],[1,5],[3,6],[3,3],[2,1],[2,-1],[3,1],[2,2],[1,3],[2,2],[2,0],[2,7],[-1,3],[-2,5],[-2,5],[-11,4],[-6,-1],[-7,3],[-17,8],[-10,5],[-10,5],[-5,12],[0,6],[-2,7],[-4,7],[-14,16],[-7,8],[-10,-2],[0,-5],[-5,-1],[-5,1],[-3,2],[-1,1],[-4,1],[-4,0],[-8,-1],[-3,3],[-8,3],[-4,0],[-2,-1],[-5,-1],[-4,1],[-5,1],[-6,3],[-3,2],[-4,-1],[-5,1],[-7,2],[-4,2],[-3,3],[-14,3],[-2,-2],[-3,-2],[-7,0],[-8,0],[-6,4],[-4,2],[-4,2],[-6,0],[-3,-2],[-1,-2],[0,-3],[-2,-6],[-2,-1],[-3,0],[-4,1],[-1,5],[2,5],[1,3],[-1,6],[-1,3],[-4,3],[-7,2],[-4,2],[-7,1],[-2,0],[-1,-3],[-1,-3],[0,-3],[0,-7],[-2,-5],[-4,-2],[-4,2],[-3,3],[-3,0],[-3,0],[-4,2],[-2,2],[-3,-1],[-2,1],[-1,0],[-4,7],[-4,4],[-5,4],[2,3],[2,1],[4,4],[-1,3],[-3,3],[0,9],[-11,11],[-2,2],[-1,3],[-1,2],[-4,3],[-1,7],[3,5],[4,2],[-1,4],[0,5],[1,7],[-2,4],[-1,6],[0,3],[-4,3],[-4,4],[-5,-2],[-5,4],[-1,4],[-5,3],[-9,2],[-2,1],[-2,4],[-5,0],[-3,0],[-9,5],[-9,-1],[-6,0],[-5,-3],[-7,-1],[-14,0],[-9,5],[-11,0],[-3,5],[-5,3],[-3,6],[-2,1],[-6,3],[-7,3],[-3,11],[1,7],[0,6],[-2,6],[-1,-1],[-4,-6],[-2,-8],[-5,-7],[-8,0],[-3,2],[-2,4],[-4,1],[-3,2],[-7,0],[-3,6],[-2,6],[2,6],[-1,10],[0,6],[0,3],[-3,3],[-1,5],[-9,8],[-5,4],[-7,8],[-8,14],[-9,5],[-13,10],[-17,12],[-17,3],[-7,11],[-5,10],[-13,22],[-2,8],[-1,5],[-2,6],[-5,13],[-13,25],[-14,25],[-9,22],[-5,24],[-10,39],[-8,27],[-2,21],[-2,39],[-1,37],[3,14],[2,6],[4,9],[3,8],[4,1],[2,3],[2,8],[0,9],[3,15],[3,19],[1,14],[2,9],[8,37],[2,14],[2,5],[2,7],[0,4],[2,11],[0,8],[0,4],[-3,6],[-3,5],[-4,7],[-2,10],[0,11],[1,8],[-1,3],[3,13],[2,5],[5,8],[4,7],[3,1],[2,4],[2,6],[1,8],[4,5],[4,4],[3,4],[6,5],[3,4],[0,4],[6,6],[9,5],[-3,3],[1,1],[2,3],[4,0],[3,1],[4,4],[5,2],[8,7],[5,8],[3,3],[3,3],[4,2],[5,2],[3,4],[3,2],[7,7],[7,4],[6,1],[3,2],[4,1],[6,2],[7,4],[6,2],[7,1],[4,0],[3,3],[4,1],[12,2],[2,2],[5,0],[3,2],[8,0],[3,2],[1,2],[2,1],[7,5],[9,1],[5,0],[7,4],[2,0],[4,-1],[2,-1],[5,3],[4,0],[11,4],[3,0],[5,-2],[5,0],[8,1],[3,-1],[1,-4],[1,0],[12,-1],[18,-4],[12,-1],[9,-2],[7,-3],[6,-3],[2,2],[4,0],[11,0],[4,0],[7,-1],[2,3],[2,2],[8,-1],[4,2],[2,2],[13,1],[7,-1],[6,0],[21,3],[10,4],[2,2],[10,5],[6,5],[4,4],[10,8],[9,8],[18,11],[18,14],[14,12],[13,13],[11,11],[2,19],[0,33],[1,15],[-1,12],[3,7],[4,4],[3,5],[1,13],[7,8],[3,1],[6,4],[4,4],[6,3],[2,1],[9,3],[11,6],[16,0],[13,-6],[10,-2],[11,0],[14,0],[6,3],[5,7],[14,4],[21,0],[-1,-12]],[[449280,215635],[-121,-29],[-10,119],[-115,320],[212,451],[9,61],[92,71],[117,2],[81,-184],[-167,-206],[-85,-345],[24,-149],[-37,-111]],[[450860,216933],[-200,-295],[-445,224],[103,399],[89,73],[241,69],[135,-18],[108,-39],[24,-238],[-55,-175]],[[452868,217724],[-91,-103],[-43,35],[-75,13],[-81,-42],[-37,-74],[-25,-99],[-15,-37],[-14,-37],[-72,-155],[-106,-64],[-87,-64],[-62,17],[0,57],[10,91],[25,47],[31,108],[16,65],[0,43],[-12,39],[-6,44],[13,91],[84,-18],[185,-4],[116,144],[69,91],[50,90],[28,104],[41,104],[50,125],[84,-10],[50,-108],[96,-114],[46,-87],[-50,-99],[-44,-43],[-44,-43],[-71,-30],[-59,-77]],[[407130,214437],[15,-1],[8,-1],[6,0],[7,-1],[4,0],[33,-2],[10,-1],[15,-1],[17,-2]],[[407245,214428],[6,17],[7,17]],[[407258,214462],[6,15],[155,413]],[[409637,215488],[10,19],[85,156]],[[411311,217049],[65,-89],[33,-366],[-65,-1946],[-98,-79],[-17,-13],[-15,-12],[-80,-64],[39,-117],[42,-167],[12,-12],[8,-20],[12,-27],[11,-23],[13,-7],[10,-23],[9,-23],[6,-12],[2,-19],[0,-13],[4,-11],[5,-11],[5,-6],[1,-21],[5,-13],[17,-30],[11,-27],[6,-18],[14,-47],[9,-25],[6,-19],[11,-9],[7,-18],[6,-14],[3,-12],[6,-12],[1,-18],[3,-17],[6,-13],[7,-6],[6,-13],[-1,-6],[1,-10],[6,-8],[10,-4],[6,-4],[6,-19],[9,-5],[9,-7],[8,-6],[-10,-20],[8,-10],[2,-15],[4,-21],[3,-5],[0,-11],[0,-10],[5,-12],[9,-8],[2,-11],[-2,-7],[-6,-10],[-1,-4],[-2,-13],[7,-22],[4,-4],[6,-5],[-1,-11],[5,-4],[10,-6],[12,-4],[9,-17],[2,-8],[11,-11],[3,3],[5,5],[5,-5],[3,-7],[5,1],[6,-8],[3,-15],[0,-12],[4,-21],[-11,-9],[-1,-9],[-8,-36],[-10,-22],[-9,-33],[-1,-11],[1,-4],[0,-14],[4,-17],[5,-15],[-1,-15],[4,-16],[13,-43],[45,24],[5,-17],[-43,-25],[3,-9],[2,-4],[4,-8],[5,-3],[4,-4],[4,-7],[4,-6],[-1,-11],[-3,-7],[-3,-4],[7,-26],[36,-113],[8,-24],[9,-28],[3,-18],[2,-14],[3,-9],[5,-13],[3,-6],[5,-5],[6,-13],[1,-10],[6,-7],[2,-9],[5,-11],[1,-8],[0,-4],[0,-2],[4,-3],[-1,-11],[2,-3],[2,-1],[0,-7],[3,-4],[1,-6],[5,-10],[-1,-6],[2,-9],[5,-12],[2,-3],[7,-13],[3,-7],[4,-9],[8,-9],[3,-12],[-1,-5],[3,-6],[3,-6],[-3,-1],[-5,1],[0,-7],[2,-7],[2,-11],[3,-5],[4,-6],[4,-7],[0,-6],[2,-11],[2,-8],[2,-9],[-1,-6],[3,-3],[-2,-3],[2,-4],[2,-6],[0,-3],[0,-3],[-1,-5],[2,-1],[3,-4],[3,-4],[3,-3],[7,-7],[-3,-10],[3,-4],[2,-13],[3,-5],[3,-3],[4,-4],[2,-6],[-1,-5],[4,-4],[0,-5],[4,2],[6,1],[5,-6],[2,-1],[7,-4],[-1,-3],[2,-4],[5,7],[4,-5],[-2,-8],[3,-9],[6,4],[5,-7],[27,18],[8,-21],[17,7],[1,-7],[-68,-38],[8,-28],[-26,-17],[-6,-7],[3,-9],[3,-2],[3,2],[6,-13],[-2,-13],[3,-4],[3,-5],[3,-13],[0,-5],[1,-2],[4,-1],[4,-3],[-3,-6],[0,-4],[-2,-3],[2,-3],[7,-13],[4,-9],[7,-15],[3,0],[4,-2],[3,-3],[5,-8],[1,-6],[7,0],[1,-4],[-1,-4],[-1,-5],[5,-15],[-1,-8],[0,-5],[1,-5],[4,-7],[3,-6],[6,-8],[3,-6],[2,-8],[0,-9],[2,-5],[4,-5],[4,-11],[1,0],[0,-4],[0,-3],[4,-5],[3,-4],[2,-1],[4,-1],[0,-5],[2,-4],[5,-3],[4,-3],[4,-2],[27,-79],[22,-72],[4,-5],[2,-4],[1,-5],[0,-3],[-1,-3],[18,-59],[59,-187],[55,-171],[52,-169],[31,-98],[6,-19],[26,-85],[22,-72],[50,-156],[38,-124],[-3,-5],[9,-21],[3,-16],[1,-13],[16,-57],[7,-8],[0,-11],[4,-6],[7,-3],[1,-7],[-1,-8],[0,-8],[4,-8],[4,-4],[3,-6],[-2,-8],[5,-3],[2,-4],[1,-5],[4,-13],[3,-15],[2,-11],[5,-6],[3,-8],[0,-8],[4,-11],[7,-19],[8,-5],[-1,-9],[0,-6],[11,-34],[5,-2],[2,-13],[2,-8],[5,-5],[-1,-13],[0,-8],[5,-9],[2,-7],[7,-30],[11,-23],[0,-17],[4,-8],[5,-5],[9,-6],[4,-4],[-3,-11],[0,-5],[5,-12],[8,-6],[4,-5],[-3,-14],[-2,-8],[3,-8],[2,-3],[0,-10],[4,-6],[0,-18],[1,-8],[3,-17],[6,12],[12,1],[1,-12],[9,-3],[-1,-12],[-4,-6],[6,-10],[-11,-12],[2,-6],[-2,-5],[16,-56],[8,-22],[15,-3],[0,-12],[12,-9],[4,5],[5,6],[7,0],[1,-5],[0,-10],[-8,-11],[-3,-14],[1,-14],[-2,-10],[3,-12],[2,-11],[-2,-10],[5,-8],[7,-31],[21,-77],[22,-62],[22,-71],[6,-16],[5,-1],[4,-2],[3,-3],[6,-9],[3,-9],[1,-11],[-1,-8],[2,-9],[-2,-8],[0,-5],[2,-6],[1,-10],[20,-57],[4,0],[4,-5],[1,-14],[3,-7],[1,-7],[2,-6],[2,-6],[2,-3],[7,-9],[3,-13],[-1,-7],[11,-34],[6,-1],[3,-2],[3,-6],[2,-12],[-1,-9],[-1,-4],[17,-50],[8,-17],[13,-13],[-2,-7],[6,-4],[1,-10],[4,-6],[4,-2],[1,-12],[-1,-5],[9,-5],[-1,-15],[5,-8],[5,-10],[-3,-7],[12,-27],[3,-9],[4,2],[6,-3],[1,-5],[-1,-6],[0,-5],[-1,-3],[14,-32],[15,-34],[18,-41],[5,-1],[4,-4],[3,-8],[2,-5],[4,-6],[0,-10],[9,-23],[5,-13],[5,-3],[2,-6],[1,-4],[8,1],[3,-6],[-2,-7],[0,-7],[11,-10],[0,-10],[2,-5],[8,-2],[5,-11],[4,-8],[0,-7],[0,-10],[1,-7],[9,-17],[11,-1],[9,-2],[0,-13],[4,-12],[2,-6],[7,-19],[9,-10],[8,-4],[3,-10],[10,-5],[8,-6],[0,-13],[-4,-10],[3,-13],[-2,-4],[2,-11],[7,-4],[4,-3],[4,-11],[-2,-10],[1,-11],[6,-4],[6,-2],[2,-8],[5,-5],[3,-7],[-2,-7],[3,-9],[10,-15],[3,0],[4,-8],[4,-13],[17,-33],[41,-78],[11,-23],[4,-2],[6,-9],[5,-7],[6,-16],[6,-11],[4,6],[6,4],[2,-5],[2,-5],[11,-12],[7,1],[16,1],[5,3],[12,4],[10,3],[12,5],[13,3],[19,-2],[14,-5],[24,-12],[19,-18],[22,-24],[21,-36],[17,-36],[20,-45],[28,-55],[11,-25],[13,-18],[10,-15],[10,-17],[4,-15],[0,-12],[3,-14],[6,-21],[6,-5],[3,-9],[0,-10],[3,-10],[3,-13],[6,-2],[-1,-7],[-1,-5],[3,-6],[15,-41],[7,-25],[4,-13],[6,-6],[6,-1],[5,-10],[4,-1],[5,4],[7,0],[9,-5],[3,-6],[1,-4],[-1,-8],[2,-6],[-3,-11],[-3,-6],[-2,-5],[3,-9],[35,-47],[27,-36],[42,-56],[25,-38],[9,-2],[13,-3],[5,-17],[8,0],[7,1],[6,-3],[7,-16],[6,-8],[3,-16],[3,-6],[6,0],[6,-2],[6,-10],[4,-13],[2,-9],[3,-9],[27,-36],[50,-63],[47,-62],[52,-68],[54,-73],[62,-80],[49,-64],[58,-74],[22,-30],[14,10],[6,-8],[20,-23],[-3,-7],[2,-18],[12,-5],[6,-6],[1,-11],[0,-7],[35,-45],[50,-65],[35,-40],[13,-6],[9,-11],[5,-10],[26,-33],[5,-13],[13,-2],[30,-42],[50,-66],[68,-87],[43,-56],[50,-68],[37,-45],[-4,-6],[18,-27],[35,-49],[52,-68],[20,-24],[5,3],[6,-1],[3,-3],[1,-8],[4,-3],[3,-1],[2,-5],[1,-4],[2,-5],[4,-6],[4,-8],[13,-4],[3,0],[7,-7],[2,-5],[2,-5],[2,-12],[2,-6],[12,-20],[20,-29],[33,-46],[49,-64],[43,-55],[42,-52],[44,-64],[49,-65],[35,-44],[2,5],[6,6],[7,0],[5,-2],[6,2],[6,-10],[1,-7],[2,-6],[22,-31],[20,-28],[6,8],[7,-13],[-3,-6],[4,-6],[27,-37],[31,-46],[10,-21],[-9,-14],[10,-15],[2,6],[12,0],[4,-2],[11,-13],[4,-12],[1,-8],[2,-7],[14,5],[12,-15],[-5,-9],[4,-9],[1,-7],[-2,-6],[3,-8],[15,-27],[48,-91],[16,-30],[9,-4],[4,4],[6,-2],[3,-8],[5,-5],[1,-12],[0,-5],[1,-8],[3,-10],[10,-20],[5,-2],[5,-5],[0,-9],[0,-6],[5,-5],[5,-9],[4,0],[4,-6],[-1,-6],[-1,-5],[11,-27],[14,-33],[7,-33],[9,-36],[7,-43],[7,-48],[5,-46],[3,-73],[-1,-54],[-4,-61],[-5,-45],[-5,-41],[32,-8],[24,-5],[17,43],[59,134],[26,61],[4,9],[6,4],[8,0],[12,-3],[7,23],[17,-7],[-3,-22],[42,-24],[-8,-34],[-61,41],[-7,-1],[-12,-19],[-34,-85],[-33,-73],[-8,-21],[23,-14],[16,-21],[-3,-4],[6,-8],[3,4],[57,-67],[5,-5],[-1,-4],[4,-5],[4,4],[25,-27],[41,78],[28,55],[5,-5],[-35,-70],[-33,-64],[22,-26],[2,-5],[-1,-7],[-15,-48],[-17,-52],[-21,-78],[-14,-47],[-26,0],[-15,-4],[-12,-10],[-12,-17],[-7,-15],[-4,-12],[2,-6],[-3,-6],[35,-24],[14,37],[13,-4],[5,4],[6,-1],[4,-7],[2,-5],[6,-4],[4,-5],[7,4],[0,6],[3,4],[3,4],[2,6],[1,8],[2,7],[4,13],[3,12],[5,7],[3,12],[15,44],[1,8],[5,1],[4,4],[-3,5],[-2,8],[5,5],[-1,8],[5,4],[1,9],[2,5],[7,9],[5,16],[17,-10],[15,-9],[23,-14],[36,-21],[19,43],[9,-14],[-104,-263],[12,-10],[61,139],[40,99],[23,70],[14,44],[7,14],[9,17],[4,13],[3,7],[6,4],[6,-3],[5,-4],[0,-11],[-1,-6],[-2,-10],[-10,-31],[-3,-19],[-2,-13],[-1,-21],[8,-11],[7,-4],[2,-15],[-1,-16],[8,-3],[14,-6],[2,-3],[6,-11],[19,-10],[7,0],[4,-3],[4,-3],[12,-4],[8,-4],[9,0],[6,10],[9,-7],[0,-5],[4,-9],[3,-3],[9,1],[4,-5],[1,-8],[6,-4],[9,-3],[11,-8],[5,0],[11,1],[10,6],[0,4],[6,1],[36,66],[11,-3],[6,5],[5,-4],[-4,-10],[21,-18],[8,-2],[1,-5],[5,-6],[7,-7],[50,-51],[30,-26],[29,-24],[34,-23],[23,-19],[27,-20],[33,-19],[24,-12],[20,-15],[33,-16],[33,-23],[42,-22],[16,-9],[28,-24],[16,-11],[33,-25],[51,-32],[18,-11],[12,-10],[18,-20],[21,-13],[61,-38],[35,-21],[19,-8],[14,-5],[15,-14],[10,-9],[24,-10],[37,-11],[25,-11],[36,-9],[39,-29],[41,-21],[33,-13],[33,-7],[22,-10],[2,-18],[-6,-10],[14,-23],[10,39],[22,-10],[-40,-146],[46,-29],[-16,-52],[76,-51],[71,-43],[10,7],[7,4],[8,2],[1,4],[2,5],[6,6],[2,3],[11,19],[50,-33],[-6,-29],[2,-5],[1,-8],[1,-4],[8,-4],[11,-5],[24,-6],[7,1],[5,5],[4,6],[4,0],[3,54],[-10,3],[1,21],[36,-5],[-1,-22],[-11,2],[-3,-56],[4,-3],[0,-11],[4,0],[2,-1],[7,-3],[3,-2],[9,-2],[33,-8],[16,-3],[17,0],[11,0],[7,-5],[20,-3],[6,5],[12,-5],[5,-2],[8,4],[3,-2],[7,105],[42,-8],[-10,-100],[3,-2],[5,-2],[3,-6],[4,3],[5,42],[3,6],[-2,4],[0,3],[7,4],[1,-5],[6,0],[2,-1],[-1,-9],[1,-7],[-4,-15],[1,-13],[-1,-14],[6,-4],[6,-1],[7,-1],[0,-7],[3,-1],[2,3],[3,1],[8,-4],[21,-8],[8,-6],[9,2],[5,-1],[3,-7],[2,-5],[3,-9],[8,4],[6,3],[4,0],[4,-7],[4,-14],[-1,-4],[1,-9],[4,-6],[2,-9],[5,-8],[4,-6],[8,-9],[4,3],[6,-7],[2,-6],[3,-4],[0,-7],[1,-5],[4,-4],[4,-6],[1,-3],[8,-4],[7,-5],[3,-6],[9,-11],[2,-7],[2,-9],[6,-7],[11,-18],[2,-2],[9,-8],[4,-11],[4,-3],[7,0],[10,-5],[6,-3],[11,-9],[5,-5],[0,-16],[3,-5],[3,-12],[2,-4],[8,4],[11,5],[9,-2],[11,-5],[7,-3],[7,-16],[-1,-7],[2,-7],[2,-3],[4,0],[22,-11],[2,-2],[2,-3],[7,-10],[2,-1],[-1,-7],[2,-3],[6,-5],[2,-9],[10,-4],[3,-4],[1,-8],[3,-5],[2,-6],[2,-5],[0,-5],[5,-2],[2,-8],[2,-2],[8,-4],[-1,-4],[-2,-6],[3,-5],[4,-3],[3,-3],[6,-6],[3,-10],[1,-10],[4,-8],[1,-12],[0,-4],[8,-4],[1,-2],[7,-4],[-1,-9],[9,-6],[2,-3],[-1,-10],[1,-13],[8,-1],[8,-8],[6,-9],[3,-10],[-1,-4],[6,-6],[1,-7],[3,-3],[2,-5],[4,-3],[4,-7],[1,-6],[-1,-7],[5,-12],[-1,-5],[9,-5],[2,-5],[5,-4],[7,0],[2,1],[8,-4],[7,-4],[10,-6],[7,-10],[4,-3],[4,-2],[2,-6],[8,-2],[1,-1],[5,-3],[3,-6],[-2,-10],[-3,-5],[-3,-4],[-1,-17],[-1,-3],[-3,-7],[1,-15],[-5,-3],[0,-21],[-2,-7],[-3,-11],[3,-17],[4,-14],[1,-12],[5,-14],[6,-14],[8,-11],[8,-26],[7,-17],[3,-15],[2,-13],[1,-18],[1,-30],[2,-3],[2,-5],[8,-14],[2,-20],[6,-24],[2,-12],[5,-13],[3,-13],[3,-14],[0,-13],[7,-14],[1,-27],[4,-17],[2,-7],[2,-11],[3,-18],[2,-8],[-1,-17],[0,-11],[5,-17],[-1,-15],[6,-16],[5,-20],[5,-32],[5,-60],[3,-39],[4,-24],[8,-36],[3,-26],[-2,-16],[3,-12],[5,-20],[1,-13],[0,-14],[-3,-23],[6,-30],[-1,-16],[-1,-18],[0,-17],[1,-18],[3,-8],[4,-15],[-2,-7],[-2,-9],[2,-11],[-4,-20],[2,-16],[-4,-14],[4,-12],[2,-7],[7,-35],[7,-63],[9,-35],[6,-22],[1,-12],[2,-15],[2,-12],[3,-27],[1,-6],[-3,-9],[2,-10],[5,-1],[2,-10],[2,-9],[1,-20],[0,-11],[0,-12],[-1,-9],[0,-5],[1,-3],[4,-9],[2,-8],[5,-24],[5,-10],[-1,-11],[6,-15],[9,-15],[5,-6],[3,-3],[10,-6],[3,-2],[3,-10],[2,-6],[4,-14],[6,-6],[6,-4],[2,-6],[14,-24],[6,-8],[4,-11],[2,-7],[3,-7],[3,-12],[0,-5],[0,-7],[0,-7],[-4,-12],[0,-10],[0,-10],[-2,-18],[-4,-4],[-5,-29],[-4,-60],[-1,-85],[-39,-15],[3,-15],[44,11],[13,-7],[12,1],[23,3],[14,7],[16,-2],[32,-9],[8,-2],[9,-6],[8,-5],[4,-7],[6,-4],[5,-10],[6,-4],[12,-15],[4,-15],[3,-9],[6,-20],[3,-7],[11,-28],[6,-17],[0,-10],[12,-18],[2,-8],[2,-9],[4,-14],[2,-3],[9,-15],[6,-16],[6,-16],[5,-15],[22,-57],[4,-10],[1,-10],[4,-29],[3,-6],[12,-30],[5,-9],[4,-23],[15,-22],[1,-9],[3,-8],[6,-9],[16,-28],[6,-8],[3,-11],[3,-5],[1,-7],[0,-12],[2,-7],[-2,-17],[-2,-2],[-8,-5],[-2,-12],[10,5],[14,-1],[9,-18],[1,-10],[0,-13],[5,-2],[5,-5],[3,-7],[1,-8],[2,-17],[1,-3],[3,-7],[7,-3],[4,-10],[0,-4],[0,-14],[3,-3],[7,-10],[1,-6],[5,-8],[1,-9],[1,-8],[2,-6],[6,-6],[3,-17],[2,-9],[3,-11],[0,-7],[3,-11],[3,-9],[-1,-5],[6,-11],[2,-2],[6,-6],[0,-5],[11,-6],[-1,-6],[1,-6],[6,-3],[3,-7],[1,-4],[16,-33],[0,-7],[2,-4],[-2,-9],[6,-3],[1,-19],[-4,-11],[1,-16],[7,-7],[4,-11],[0,-6],[7,-10],[1,-10],[6,-7],[1,-4],[2,-10],[7,-21],[6,0],[-1,-13],[6,-4],[3,-16],[6,-3],[1,-12],[8,-12],[4,4],[12,3],[8,-14],[3,-11],[-5,-11],[-7,-10],[-11,-8],[-6,-9],[-10,-8],[-5,-1],[-14,-9],[3,-24],[-5,-19],[-17,-11],[6,-30],[9,8],[10,-4],[9,-11],[7,5],[3,-2],[13,7],[9,1],[5,-4],[6,-14],[1,-11],[7,-22],[3,-17],[2,-10],[2,-3],[8,-16],[5,-22],[1,-4],[4,-11],[2,-7],[-8,-3],[-7,0],[-6,2],[-5,1],[-10,0],[-12,0],[-3,-5],[-5,-8],[-4,-2],[-2,-10],[2,-6],[2,-2],[11,4],[6,-14],[4,-1],[5,-7],[-1,-11],[0,-7],[9,0],[4,10],[2,1],[8,2],[11,5],[7,8],[7,6],[3,-4],[-1,-2],[2,-2],[3,-4],[2,-12],[0,-6],[0,-7],[2,-1],[-1,-7],[3,-3],[1,-2],[2,-11],[0,-5],[2,-3],[1,-5],[4,-5],[2,-6],[0,-10],[3,-5],[5,-4],[0,-8],[0,-7],[0,-7],[0,-8],[3,-9],[3,-10],[7,-3],[1,-7],[0,-4],[3,-5],[1,-5],[0,-7],[1,-9],[2,-6],[2,-6],[1,-9],[2,-8],[2,-11],[1,-11],[9,-33],[6,-27],[8,-19],[7,-5],[2,-7],[0,-11],[-1,-9],[2,-5],[2,-3],[5,-6],[5,-7],[3,-14],[-2,-7],[3,-7],[2,-8],[2,-4],[6,-7],[0,-9],[-2,-6],[4,-9],[4,-4],[5,-3],[2,-5],[9,-12],[4,-6],[0,-8],[2,-5],[-1,-9],[-2,-6],[-4,-2],[0,-9],[3,-2],[2,-5],[2,-10],[3,-15],[2,-10],[4,-6],[2,-11],[2,-5],[9,-9],[1,-4],[0,-4],[3,-5],[4,-4],[2,-4],[-1,-8],[4,-14],[8,-11],[0,-3],[4,-7],[2,-4],[4,-9],[-1,-7],[-1,-9],[0,-10],[4,-6],[-2,-8],[1,-7],[7,-12],[0,-7],[-1,-12],[0,-6],[0,-7],[5,-4],[3,-5],[6,-3],[9,-13],[-1,-8],[2,-9],[2,-9],[-5,-10],[4,-8],[2,-14],[0,-5],[6,-12],[-1,-10],[3,-9],[3,-15],[-5,-11],[-2,-3],[-5,-4],[-11,-10],[-10,-6],[-6,-8],[10,-29],[17,8],[4,-2],[6,1],[2,-1],[5,-3],[8,-3],[2,3],[8,-3],[0,-8],[1,-8],[7,-4],[-2,-8],[1,-6],[8,-6],[-1,-7],[4,-17],[1,-3],[-3,-10],[3,-6],[3,-3],[2,-7],[2,-12],[4,-2],[2,-5],[3,-9],[0,-7],[3,-8],[2,-5],[9,-5],[2,-6],[0,-10],[5,-19],[-2,-4],[0,-8],[1,-9],[4,-6],[8,-11],[-4,-7],[3,-7],[6,-22],[5,-8],[-5,-8],[2,-8],[3,-2],[3,-7],[-1,-8],[-2,-7],[1,-12],[1,-6],[3,-6],[2,-8],[4,-4],[6,-6],[0,-10],[2,-7],[-6,-9],[2,-4],[5,-14],[5,-6],[5,-10],[6,-33],[-2,-11],[1,-13],[3,-5],[4,-2],[6,-7],[2,-11],[-4,-10],[4,-6],[-2,-10],[8,-32],[1,-9],[4,-12],[4,-14],[0,-5],[0,-9],[2,-4],[2,-14],[7,-14],[1,-16],[0,-8],[7,-3],[0,-13],[-2,-5],[1,-11],[4,-12],[1,-9],[4,-18],[1,-8],[-3,-14],[7,-12],[-3,-9],[2,-3],[1,-9],[2,-19],[0,-23],[3,-10],[0,-10],[5,-7],[6,-8],[2,-7],[1,-8],[0,-14],[6,-18],[0,-15],[-2,-10],[3,-18],[4,-5],[4,-2],[2,-4],[4,-7],[-2,-13],[5,-7],[8,-20],[0,-9],[0,-5],[4,-6],[0,-12],[-2,-7],[3,-10],[-4,-9],[3,-4],[3,-5],[-1,-5],[4,-7],[2,-9],[1,-3],[-4,-2],[1,-10],[1,-3],[4,-14],[-1,-12],[2,-8],[1,-9],[0,-3],[-1,-13],[-2,-4],[4,-3],[2,-6],[1,-5],[0,-8],[0,-5],[-1,-1],[7,-9],[-3,-12],[0,-3],[2,-12],[1,-11],[2,-4],[2,-5],[0,-5],[-2,-4],[1,-3],[0,-13],[1,-8],[-1,-5],[1,-5],[5,-9],[-1,-6],[2,-1],[9,-1],[8,-9],[0,-3],[0,-24],[1,-3],[-1,-14],[1,-13],[1,-21],[5,-7],[2,-5],[-1,-6],[-2,-7],[-2,-5],[2,-7],[2,-3],[3,-8],[0,-9],[-3,-25],[-5,3],[8,-9],[0,-4],[-3,-5],[2,-5],[3,-5],[7,-5],[1,-6],[-4,-8],[3,-13],[0,-5],[-2,-18],[-2,-3],[0,-6],[8,-7],[4,-7],[-3,-8],[2,-3],[1,-9],[-1,-8],[1,-8],[2,-4],[0,-8],[3,-2],[5,-4],[-3,-13],[-4,-4],[2,-9],[3,-4],[3,-5],[-1,-13],[-1,-2],[2,-10],[3,-11],[1,-8],[-2,-4],[-2,-4],[7,-6],[2,-10],[3,-7],[1,-18],[-4,-7],[-2,-4],[3,-20],[-4,-9],[11,-12],[0,-3],[-5,-4],[5,-16],[4,-8],[1,-6],[1,-7],[1,-4],[-3,-7],[0,-5],[2,-6],[1,-4],[-1,-8],[2,-4],[-4,-12],[2,-7],[1,-5],[0,-9],[3,-2],[2,-9],[-4,-9],[3,-11],[-6,-6],[9,-5],[-1,-6],[-2,-7],[1,-19],[0,-4],[2,-6],[0,-5],[3,-13],[-4,-12],[2,-6],[5,-5],[0,-12],[-2,-5],[3,-4],[3,-23],[0,-4],[-3,-8],[-1,-8],[0,-6],[2,-12],[2,-6],[3,-3],[2,-7],[1,-11],[2,-5],[-3,-7],[3,-3],[2,-13],[-3,-4],[0,-11],[3,-5],[2,-13],[0,-6],[-3,-3],[3,-9],[-2,-8],[1,-9],[0,-2],[6,-15],[-2,-8],[-3,-6],[1,-11],[3,-15],[0,-18],[2,-4],[4,-19],[-1,-5],[-7,-5],[7,-11],[1,-3],[8,-11],[0,-14],[1,-3],[0,-9],[7,-1],[3,-3],[0,-6],[-12,-11],[-1,-8],[1,-9],[2,-5],[2,-23],[2,-9],[-1,-8],[-7,-11],[4,-8],[8,-19],[-1,-4],[-3,-6],[6,-14],[3,-11],[1,-4],[3,-18],[2,-18],[-4,-9],[-1,-9],[2,-14],[0,-10],[0,-8],[1,-4],[1,-7],[4,-11],[-1,-12],[1,-16],[1,-7],[4,-8],[1,-10],[-2,-12],[1,-18],[6,-21],[4,-3],[-3,-15],[0,-8],[5,-12],[1,-3],[-2,-4],[1,-6],[1,-5],[7,-16],[6,-8],[1,-7],[1,-3],[-8,-17],[3,-5],[2,-10],[-2,-11],[4,-3],[3,-15],[2,-1],[10,-26],[4,-18],[9,-18],[0,-15],[5,-9],[4,-11],[6,-14],[5,-8],[4,-5],[0,-4],[4,-10],[4,-8],[2,-8],[5,-6],[0,-10],[6,-9],[0,-8],[-1,-16],[3,-2],[5,-20],[5,-5],[2,-5],[9,-7],[18,6],[10,-4],[5,-16],[3,-8],[4,-4],[10,-7],[4,-6],[0,-8],[2,-10],[2,-7],[2,-14],[6,-4],[7,-14],[7,-4],[1,-4],[8,-8],[3,-18],[13,-6],[9,-15],[1,-9],[9,-10],[7,-10],[12,-17],[10,-14],[20,-15],[4,-18],[13,-8],[5,-19],[8,-2],[5,-9],[12,0],[6,-2],[9,-16],[5,-5],[9,-12],[8,-3],[7,2],[4,-6],[5,0],[16,-7],[3,-11],[14,-4],[16,0],[3,1],[8,-3],[10,-5],[13,-3],[4,-1],[11,-15],[10,-17],[9,5],[12,8],[14,0],[3,-4],[3,-8],[9,6],[7,-3],[7,-3],[8,0],[6,11],[19,-2],[6,-2],[10,-5],[10,-2],[0,-17],[10,-2],[8,2],[11,-2],[4,-4],[5,-3],[3,-3],[16,-2],[10,-3],[9,-14],[13,-8],[4,-10],[8,0],[4,-3],[50,-47],[18,-27],[6,-5],[2,-9],[19,-23],[17,-27],[3,-4],[17,-29],[6,-7],[5,-12],[4,-10],[6,-2],[-1,-15],[3,-13],[8,-14],[-1,-2],[7,-17],[0,-8],[5,-13],[-3,-7],[5,-10],[-2,-11],[2,-11],[4,-2],[-4,-11],[1,-7],[-4,-6],[3,-7],[0,-3],[-3,-8],[2,-15],[-1,-7],[3,-8],[1,-23],[2,-5],[3,-13],[1,-6],[-2,-6],[0,-12],[-2,-2],[-3,6],[-4,12],[-1,3],[-2,4],[-3,5],[0,2],[-8,2],[-4,-1],[0,-5],[2,-5],[2,-4],[2,-7],[0,-3],[-1,-8],[0,-10],[3,-7],[1,-4],[2,-13],[2,-8],[11,-15],[0,-7],[-3,-11],[-19,-18],[-6,-15],[7,-22],[14,-48],[11,-36],[16,-73],[17,-77],[32,-149],[21,-86],[16,-79],[14,-90],[-6,-1],[11,-80],[10,-79],[12,-87],[0,-7],[6,-76],[7,-98],[-16,-101],[-4,-21],[-3,-19],[-4,-34],[-16,-33],[-3,-33],[-5,-7],[-4,-7],[-13,-38],[1,-16],[-5,-11],[-9,-23],[-2,-4],[-1,-6],[2,-6],[0,-4],[1,-7],[0,-7],[-2,-15],[-4,-14],[2,-12],[-10,-15],[-4,-6],[-10,-14],[0,-15],[-3,-12],[2,-11],[-4,-11],[-13,-24],[-2,-8],[-5,-10],[-12,-2],[77,-26],[42,-20],[7,-4],[6,-3],[28,-13],[6,-3],[7,-3],[21,-11],[6,1],[2,4],[5,7],[2,4],[2,5],[2,6],[1,9],[0,8],[0,6],[-1,7],[1,6],[0,9],[1,10],[-2,11],[0,5],[0,4],[-3,12],[2,1],[4,1],[4,3],[3,1],[3,2],[1,5],[-1,8],[3,-2],[0,6],[0,7],[0,5],[6,14],[3,5],[1,4],[3,5],[4,0],[7,-1],[3,-1],[6,2],[2,7],[0,9],[2,7],[2,7],[-2,14],[20,33],[18,19],[8,4],[6,4],[8,2],[7,2],[4,1],[9,2],[8,3],[9,12],[4,7],[3,12],[2,13],[4,8],[4,7],[6,9],[6,8],[20,3],[21,1],[9,6],[16,5],[12,11],[23,20],[2,9],[1,8],[11,9],[7,0],[7,-2],[3,3],[5,11],[5,12],[16,12],[4,1],[12,1],[4,5],[4,7],[5,4],[7,3],[17,0],[7,0],[11,7],[5,2],[3,3],[6,0],[6,0],[5,-4],[4,-4],[3,-1],[8,0],[6,-1],[7,-1],[3,1],[5,3],[2,7],[-1,11],[2,6],[10,4],[9,0],[2,-2],[6,1],[4,0],[8,-7],[6,-2],[12,5],[7,3],[1,-1],[6,-5],[1,0],[7,3],[5,-2],[7,-9],[10,-3],[10,2],[7,4],[8,0],[6,-5],[3,-3],[9,-1],[5,-5],[3,-5],[7,-3],[4,-6],[3,-2],[4,3],[3,0],[2,-8],[5,0],[5,2],[6,2],[9,0],[9,0],[4,0],[6,-8],[11,-10],[10,-10],[12,-11],[2,0],[5,0],[5,2],[10,2],[5,-3],[9,-6],[4,-3],[2,-2],[4,-1],[10,2],[6,2],[10,-1],[2,-5],[4,-7],[11,-10],[3,0],[3,-4],[2,-4],[2,-6],[2,-3],[5,-3],[5,-8],[5,-4],[5,0],[7,0],[7,0],[11,-5],[6,-7],[10,-5],[3,2],[8,-1],[3,-4],[3,-4],[5,-6],[7,-1],[2,-1],[11,1],[4,-7],[6,-4],[2,-4],[2,-5],[1,-1],[6,-1],[3,-6],[8,-7],[5,5],[3,2],[5,3],[5,-1],[3,-5],[3,-11],[-1,-9],[2,-6],[3,-6],[6,-1],[6,-3],[4,-2],[7,2],[6,5],[3,2],[9,0],[2,-1],[5,-3],[12,3],[5,2],[9,-1],[7,-2],[5,-2],[5,-3],[6,-1],[7,-3],[3,-1],[5,-3],[8,0],[8,-1],[4,-3],[4,-3],[6,2],[7,1],[9,-4],[5,-13],[3,-6],[8,-4],[2,-6],[0,-8],[3,-1],[5,6],[5,-1],[1,-8],[1,-7],[8,-1],[3,2],[1,4],[7,3],[7,1],[14,-6],[4,-4],[8,-12],[7,3],[9,7],[9,0],[7,1],[6,0],[2,-3],[4,-11],[3,0],[1,-4],[1,-4],[3,4],[8,-1],[4,-3],[5,-3],[1,-5],[-1,-7],[2,-7],[3,-1],[8,4],[7,3],[5,0],[8,2],[8,0],[5,-6],[4,-4],[3,0],[3,2],[5,6],[6,0],[5,-5],[3,-1],[8,-4],[11,-7],[3,-3],[1,1],[4,-2],[11,-14],[3,-10],[8,-8],[10,1],[6,1],[8,8],[6,2],[4,-5],[5,-9],[7,0],[9,0],[11,0],[11,0],[6,-3],[12,-7],[10,-4],[10,-5],[3,-2],[8,-8],[14,-21],[27,-75],[4,-16],[5,-16],[3,-30],[2,-23],[3,-15],[3,-10],[5,-15],[-3,-28],[-2,-16],[-1,-13],[1,-11],[3,-9],[6,-10],[3,-27],[1,-21],[-2,-25],[-1,-12],[-8,-10],[-5,-5],[-3,-10],[6,-13],[7,-5],[2,-9],[4,-13],[4,-8],[5,-5],[4,0],[9,1],[6,-5],[3,-10],[3,-7],[4,-2],[4,0],[5,0],[4,-7],[0,-9],[0,-11],[7,-12],[4,-11],[5,-1],[4,0],[5,1],[4,-6],[5,-12],[4,-13],[1,-11],[-1,-9],[-4,-6],[-7,-10],[0,-14],[1,-12],[1,-11],[-3,-8],[-4,-12],[-6,-13],[1,-15],[5,-13],[6,-13],[4,-6],[2,-6],[-1,-4],[-1,-3],[-8,-15],[2,-7],[4,-3],[4,0],[1,-12],[-3,-5],[-6,-4],[-4,-6],[-3,-7],[0,-5],[-3,-10],[-2,-8],[-1,-4],[-3,-8],[-7,-3],[-12,-4],[-14,-11],[-6,-15],[-5,-19],[-5,-11],[-9,-9],[0,-17],[-3,-25],[1,-17],[9,-16],[6,-11],[0,-17],[-6,-10],[-6,-8],[0,-11],[3,-13],[4,-4],[5,-18],[-1,-11],[-2,-8],[1,-12],[0,-8],[-1,-9],[0,-16],[4,-3],[7,-13],[-3,-6],[-4,-9],[-2,-11],[0,-12],[-7,-7],[-5,-6],[-3,-4],[-8,-11],[-17,-15],[-21,-19],[-2,-19],[16,-26],[34,-20],[21,-10],[23,-5],[10,-1],[1,3],[19,0],[19,0],[13,-18],[-1,-22],[-7,-13],[-12,-12],[-14,-4],[-11,-12],[-4,-18],[-2,-22],[-13,-16],[1,-15],[1,-17],[0,-19],[4,-17],[9,-15],[2,-15],[-4,-10],[0,-21],[-1,-22],[-5,-37],[-17,-65],[-3,-22],[-8,-19],[-13,-17],[-13,-8],[-8,-9],[-10,-7],[-5,-10],[-5,-8],[-5,-7],[-7,-2],[-6,-2],[-6,-7],[-8,-1],[-11,-10],[-5,-11],[-4,-5],[-6,-6],[-13,-9],[-14,-8],[-18,-15],[-12,-2],[-9,-3],[-11,-7],[-5,-6],[-11,-1],[-6,-1],[-4,-3],[-4,-11],[-5,-3],[-6,-2],[-4,-3],[-3,-4],[0,-6],[3,-6],[5,-9],[5,-6],[6,-5],[15,-3],[4,0],[7,1],[18,1],[4,0],[11,-5],[6,-12],[33,-14],[22,-3],[21,2],[36,12],[35,8],[37,3],[42,-36],[81,-77],[47,-54],[24,-56],[19,-29],[-7,-15],[0,-15],[13,-12],[7,0],[13,0],[12,-8],[16,-26],[16,-28],[8,-21],[-11,-53],[9,-29],[14,16],[-5,13],[121,101],[-55,112],[22,21],[51,-105],[38,3],[26,16],[-35,104],[48,21],[31,27],[-16,64],[-44,156],[-11,23],[-3,9],[-27,93],[74,40],[211,119],[100,58],[12,-39],[89,50],[-27,93],[26,15],[172,-585],[171,92],[-17,60],[-154,533],[29,15],[44,-152],[150,80],[109,69],[25,-12],[40,-4],[26,6],[23,16],[24,16],[17,-9],[29,19],[47,51],[32,27],[18,9],[4,1],[3,7],[23,13],[11,6],[6,1],[5,0],[5,-2],[4,-6],[12,-12],[10,-4],[4,7],[6,5],[0,-8],[0,-14],[20,-63],[71,-243],[17,-60],[17,-37],[5,-29],[-4,-44],[-5,-61],[-17,-61],[-20,-44],[-24,-27],[-29,-50],[-28,-41],[-25,-11],[-14,-22],[-15,-30],[-21,-45],[-30,-60],[-26,-49],[-12,-24],[-11,-30],[-14,-26],[-17,-29],[-23,-44],[-28,-39],[-25,-23],[-1,-15],[6,-9],[12,-10],[28,-22],[17,-21],[38,55],[30,89],[5,33],[13,11],[21,3],[6,0],[13,2],[6,5],[9,12],[2,9],[2,18],[12,9],[11,-15],[40,-35],[7,15],[12,-18],[31,-26],[73,-53],[25,-23],[60,153],[18,-13],[-60,-149],[28,-21],[-13,-33],[127,-94],[120,-77],[3,10],[5,13],[1,31],[0,19],[0,18],[3,18],[6,7],[6,12],[3,14],[-2,28],[-5,28],[0,21],[8,14],[8,9],[-4,82],[-6,22],[-4,14],[-2,35],[7,21],[17,22],[-38,91],[53,279],[59,71],[58,40],[122,68],[103,59],[89,48],[87,39],[23,5],[10,1],[18,-3],[99,-25],[131,-34],[39,-2],[10,28],[1,20],[22,17],[15,-3],[23,-18],[30,-2],[40,7],[31,18],[27,24],[-11,51],[29,36],[17,25],[1,64],[-1,16],[-9,13],[-21,24],[2,12],[-7,46],[-8,11],[-9,-11],[-71,93],[-57,63],[-38,52],[-7,9],[-6,-4],[-18,9],[-14,11],[-8,-3],[-10,-18],[-10,-5],[-8,13],[2,18],[17,29],[1,16],[-7,22],[-7,11],[-28,34],[49,78],[112,182],[36,-40],[46,52],[54,66],[50,79],[19,39],[18,54],[21,52],[19,45],[63,147],[44,100],[10,32],[19,49],[16,36],[31,47],[29,39],[23,33],[16,22],[21,40],[30,32],[39,39],[29,32],[6,21],[60,86],[4,11],[-8,11],[130,210],[102,-123],[209,-254],[124,-151],[68,-80],[31,-34],[0,-3],[-5,-8],[42,-48],[83,-103],[6,5],[63,-75],[17,-19],[1,-3],[1,-4],[0,-3],[-13,-22],[50,-60],[11,20],[5,0],[3,0],[440,-530],[105,-128],[-37,-55],[7,-11],[11,-17],[13,-31],[34,-94],[21,-21],[13,-22],[6,-31],[6,-47],[-3,-19],[-20,-47],[-8,-16],[-19,-27],[-6,-2],[-4,-6],[4,-11],[-5,-1],[1,-14],[-6,-18],[-9,-27],[-12,-15],[-4,-13],[-6,-18],[-7,-11],[-13,-13],[-9,-3],[-9,-7],[-6,-8],[-4,-11],[-5,-22],[-5,-56],[-1,-31],[6,-75],[3,-14],[15,-39],[9,-10],[8,-8],[8,-6],[10,-13],[2,-7],[2,-12],[0,-9],[-1,-5],[-3,-5],[0,-7],[2,-13],[0,-11],[-4,-7],[-6,-3],[-3,0],[-3,-6],[-2,-8],[-8,-22],[-6,-19],[-1,-22],[3,-36],[93,-107],[5,0],[309,496],[148,240],[57,-69],[-55,-88],[-167,-273],[-182,-291],[-189,-305],[-220,-358],[-123,-198],[-181,-292],[-184,-297],[-150,-240],[-287,-469],[-115,-184],[-6,7],[-25,-44],[6,-8],[-36,-51],[-6,4],[-25,-40],[7,-8],[-105,-167],[-48,57],[44,73],[-66,80],[-14,-24],[-122,-201],[-50,-78],[-76,-120],[-122,-202],[-914,-1476],[-27,-56],[1,-14],[-3,-12],[-4,-5],[-4,0],[-5,-44],[-11,-87],[1,-7],[20,-65],[1302,-4110],[5,-14],[16,-11],[71,-21],[36,-4],[48,-5],[39,2],[53,12],[56,18],[1507,928],[848,556],[1098,696],[86,-9],[1202,-31],[121,-56],[1032,-526],[678,-351],[643,-334],[48,-20],[74,-2],[73,33],[56,86],[292,1083],[5,10],[5,2],[7,-2],[176,-93],[4,-10],[0,-11],[-309,-1162],[2,-6],[5,-3],[53,16],[7,-39],[167,42],[54,2],[48,-8],[38,-10],[10,-5],[0,39],[103,4],[1,-52],[60,-1],[25,-11],[15,-14],[20,-41],[23,-59],[13,-80],[332,100],[-24,38],[-17,63],[0,38],[23,70],[12,-10],[21,74],[14,19],[11,3],[20,-9],[200,779],[1862,-884],[9,-8],[4,-11],[0,-12],[-20,-83],[-5,2],[-144,-589],[-12,-41],[-14,-26],[-14,-16],[-21,-12],[-642,-143],[-36,-4],[-16,4],[-13,5],[-185,89],[-32,-127],[172,-87],[-38,-135],[872,-420],[11,1],[40,29],[10,13],[213,871],[-6,28],[-29,132],[4,12],[9,6],[85,30],[113,44],[26,11],[9,-7],[56,-46],[14,-16],[1,-22],[-31,-60],[-53,-44],[-38,-16],[-144,-59],[-234,-958],[-923,444],[-927,445],[-37,63],[57,62],[-40,78],[-107,204],[-43,58],[0,52],[-16,20],[-21,0],[-307,-94],[33,-135],[36,-144],[30,-118],[15,-169],[18,-197],[-12,-2],[1,-7],[26,-96],[22,-65],[81,36],[25,-49],[-59,-58],[240,-521],[82,75],[127,-273],[70,61],[1,10],[-425,824],[36,35],[500,-958],[9,6],[50,-9],[6,5],[19,88],[19,-7],[-17,-88],[4,-10],[53,-7],[7,7],[18,79],[19,-10],[-24,-116],[-106,12],[-7,-7],[-2,-33],[41,-73],[-21,-18],[-41,68],[-88,-77],[122,-275],[129,104],[-4,8],[-71,117],[-11,9],[-8,6],[1,15],[7,8],[8,1],[47,-74],[55,66],[15,-23],[-15,-21],[-3,6],[-23,-28],[-2,3],[-17,-20],[32,-51],[12,-18],[17,21],[57,70],[14,-20],[-57,-69],[-18,-23],[53,-88],[25,29],[62,74],[19,-22],[-52,-59],[19,-28],[-12,-15],[-11,-14],[44,-74],[17,20],[62,70],[18,-29],[82,87],[14,-23],[-81,-88],[14,-25],[-48,-53],[-4,-5],[-17,-36],[15,-22],[42,27],[19,12],[12,-34],[96,55],[10,-25],[-89,-56],[-2,-2],[10,-35],[-74,-42],[2,-10],[103,4],[20,7],[1,-4],[23,-120],[30,-27],[112,-116],[167,-173],[89,-93],[15,21],[13,18],[10,-10],[-11,-18],[-15,-25],[84,-84],[18,8],[37,-17],[30,-22],[0,25],[62,3],[121,7],[152,10],[49,12],[0,31],[0,72],[15,-1],[2,-69],[1,-16],[66,6],[54,-5],[119,4],[104,1],[77,0],[136,20],[137,-4],[185,6],[268,28],[61,-6],[76,-53],[99,-91],[34,-53],[47,-105],[18,-98],[3,-186],[16,-326],[17,-369],[11,-282],[10,-274],[8,-244],[14,-246],[13,-312],[6,-210],[4,-168],[9,-122],[-6,-112],[-6,-44],[107,-61],[17,32],[17,10],[124,29],[-4,136],[0,15],[113,61],[9,-32],[-94,-53],[-1,-34],[185,47],[20,12],[47,14],[24,-9],[23,-28],[18,-10],[36,5],[127,32],[65,-12],[16,-44],[-1,-59],[-50,-155],[-109,-234],[-112,-268],[-127,-224],[-86,-187],[-106,-208],[-70,-131],[-28,-42],[-35,-15],[-30,-2],[-33,26],[-45,24],[-43,25],[-29,46],[-9,49],[-4,68],[-1,173],[-5,244],[11,113],[5,54],[12,62],[32,91],[31,95],[37,110],[40,135],[-109,62],[-62,-183],[-42,-125],[-43,-160],[-7,-150],[3,-231],[34,-395],[8,-94],[-13,-106],[-28,-50],[-86,-79],[-51,-36],[-30,-10],[-39,3],[-31,20],[-97,102],[-71,67],[-71,38],[-69,54],[-116,77],[-100,76],[-103,86],[-80,48],[-59,34],[-294,-618],[-92,-162],[-29,13],[-11,67],[50,74],[140,287],[121,285],[28,113],[-119,159],[-19,-81],[-105,50],[24,107],[-129,100],[-139,54],[-16,-56],[-38,14],[-44,72],[-99,19],[-35,-72],[-44,26],[7,34],[-91,32],[-76,8],[-22,0],[-20,-1],[-22,-6],[-34,-6],[-28,-1],[-15,-3],[-14,-6],[-10,2],[-3,8],[-18,-6],[1,-7],[-14,-15],[-34,-26],[-25,-23],[-25,-18],[-20,-6],[-20,-3],[-27,-11],[-11,-11],[-6,-24],[-11,-18],[-19,-12],[-25,-13],[-47,-42],[-51,-56],[-33,-46],[-30,-56],[-19,-26],[-31,-61],[-24,-41],[-27,-54],[-26,-81],[-21,-58],[-9,2],[-4,-22],[5,-5],[-2,-13],[-6,-30],[-25,-121],[-14,-124],[-3,-63],[-5,-102],[1,-23],[2,-87],[11,-111],[14,-82],[5,-28],[29,-118],[43,-131],[11,-31],[9,-24],[13,-11],[9,1],[10,-19],[-7,-17],[-3,-25],[7,-27],[26,-44],[34,-42],[40,-43],[61,-48],[69,-34],[41,-8],[50,-3],[77,9],[49,17],[10,-28],[41,25],[-5,16],[30,18],[85,63],[61,81],[42,79],[32,79],[18,76],[9,41],[-12,9],[7,66],[-1,64],[-8,63],[-10,61],[-20,65],[-37,109],[-29,85],[-23,56],[-11,46],[-2,30],[7,35],[9,22],[15,16],[24,4],[24,-7],[23,-21],[20,-28],[246,-513],[34,-87],[41,-137],[14,-83],[42,-2],[30,-2],[26,-10],[8,-42],[-33,-27],[-55,-32],[18,-192],[2,-138],[-8,-73],[5,-40],[-6,-34],[0,-23],[-2,-32],[-9,-40],[4,-23],[-7,-24],[-10,-22],[0,-24],[5,-28],[-3,-27],[-12,-22],[-5,-34],[-9,-42],[-4,-42],[-4,-36],[4,-26],[5,-15],[-2,-24],[-9,-19],[1,-54],[5,-38],[16,-28],[63,-47],[4,-3],[71,-42],[89,-47],[3,-25],[-12,-7],[-119,56],[-28,-13],[-57,-102],[-65,-162],[-130,-334],[-62,-194],[-46,-183],[-49,-159],[-29,-107],[-30,-78],[-41,-134],[-39,-117],[-49,-157],[-46,-163],[-29,-130],[-33,-145],[-41,-208],[-28,-162],[-42,-264],[-25,-162],[-24,-220],[-32,-337],[-5,-280],[2,-159],[4,-179],[4,-169],[9,-154],[6,-157],[6,-164],[4,-71],[13,-38],[22,-19],[60,-49],[59,-34],[64,-15],[47,-17],[69,-11],[60,-3],[29,-6],[16,-11],[6,-14],[-2,-13],[-17,-9],[-16,-3],[-42,10],[-59,7],[-17,-26],[20,-3],[34,0],[45,-11],[37,-15],[49,-50],[55,-84],[46,-89],[36,-81],[23,-60],[15,-62],[8,-102],[0,-84],[2,-65],[0,-40],[-1,-34],[2,-27],[3,-15],[0,-22],[-7,-32],[-5,-26],[-5,-41],[-5,-34],[1,-29],[-5,-32],[-10,-44],[-4,-30],[-20,-47],[-23,-60],[-24,-58],[-18,-37],[-11,-23],[-16,-25],[-24,-45],[-26,-51],[-32,-76],[-33,-82],[-65,-121],[-50,-93],[-41,-71],[-31,-60],[-34,-60],[-33,-55],[-32,-59],[-36,-52],[-28,-41],[-17,-45],[-23,-38],[-28,-30],[-42,-41],[-27,-30],[-35,-41],[-54,-70],[-42,-54],[-48,-52],[-47,-46],[-6,-22],[-13,-25],[-41,-49],[-52,-56],[-35,-43],[-54,-48],[-41,-38],[-51,-43],[-53,-57],[-15,-13],[-29,-30],[-25,-33],[-29,-34],[-33,-26],[-33,-11],[-64,-13],[-13,-7],[-22,-2],[-24,5],[-63,-4],[-45,5],[-40,5],[-28,0],[-29,11],[-28,15],[-32,12],[-30,15],[-23,16],[-16,8],[-17,15],[-11,13],[-12,14],[-12,9],[-9,16],[-15,9],[-13,10],[-4,11],[-18,9],[-15,11],[-38,38],[-33,17],[-23,29],[-27,15],[-7,11],[-15,5],[-12,9],[-8,21],[-27,16],[-40,29],[-28,9],[-41,8],[-18,1],[-15,-5],[-12,1],[-2,7],[4,16],[11,6],[5,4],[-1,14],[-10,6],[-12,4],[-23,33],[-4,13],[-14,13],[-41,-1],[-33,-24],[-30,0],[-7,1],[-6,0],[-19,-10],[-31,-30],[-42,-58],[-60,-85],[-65,-101],[-53,-106],[-43,-104],[-28,-91],[-36,-126],[-10,-40],[-15,-48],[-7,-60],[-4,-56],[-22,-86],[-19,-125],[1,-33],[-16,-119],[-5,-92],[-4,-107],[-1,-18],[-1,-49],[0,-29],[0,-45],[2,-54],[3,-56],[9,-74],[7,-37],[1,-7],[4,-16],[2,-17],[1,-17],[2,-14],[1,-10],[4,-23],[1,-10],[0,-10],[3,-13],[0,-14],[1,-14],[5,-16],[1,-5],[7,-15],[2,-16],[3,-16],[7,-12],[10,-20],[4,-4],[9,-5],[11,-11],[10,-13],[3,1],[4,1],[2,1],[11,-9],[25,-35],[4,-10],[6,-10],[9,-8],[5,-8],[7,0],[6,-1],[15,-4],[7,-1],[6,-5],[1,-5],[3,-3],[7,-4],[157,-29],[2,5],[3,37],[5,-2],[6,0],[17,-1],[4,0],[6,0],[2,1],[5,-3],[12,-4],[8,16],[9,-3],[8,0],[38,-23],[2,7],[67,-39],[4,8],[23,-13],[6,24],[6,-2],[48,-26],[15,1],[22,-5],[4,8],[184,-124],[128,-85],[-29,-66],[34,-23],[-4,-13],[1061,-677],[-58,-155],[384,-245],[9,-2],[4,7],[1,8],[4,9],[9,10],[5,11],[1,11],[3,12],[3,13],[10,12],[3,10],[-1,4],[-4,4],[-1,16],[2,8],[-1,8],[-77,48],[70,213],[166,-105],[5,-6],[3,-11],[16,-67],[1,-12],[3,-13],[3,-7],[1,-9],[7,-17],[2,-7],[-1,-8],[0,-9],[1,-6],[-6,-13],[39,-27],[52,60],[4,8],[6,6],[1,10],[10,12],[10,14],[12,16],[11,7],[19,16],[6,10],[4,2],[1,8],[0,7],[1,5],[0,15],[-2,8],[-3,6],[-2,7],[3,10],[8,9],[4,6],[9,0],[5,0],[8,-5],[3,-4],[5,-2],[7,0],[5,3],[270,312],[13,15],[19,26],[13,24],[7,10],[4,11],[6,12],[3,19],[3,17],[2,17],[3,19],[2,27],[2,13],[0,11],[2,12],[3,32],[-3,12],[-1,17],[-1,28],[5,13],[16,19],[6,8],[8,10],[8,15],[8,20],[27,24],[5,6],[7,2],[8,6],[8,12],[6,3],[6,4],[4,9],[8,10],[13,15],[16,18],[5,11],[8,11],[9,10],[8,10],[8,14],[8,6],[11,9],[10,20],[9,12],[17,22],[9,15],[8,8],[12,13],[14,17],[12,8],[9,6],[12,16],[10,12],[16,25],[11,10],[8,13],[5,6],[12,9],[8,12],[7,12],[8,13],[12,14],[15,19],[10,13],[6,8],[13,11],[9,14],[16,12],[7,12],[9,20],[21,26],[5,6],[7,13],[8,11],[16,27],[10,8],[11,12],[6,5],[7,7],[11,13],[7,8],[11,9],[9,19],[13,11],[9,9],[11,10],[15,9],[12,5],[13,4],[15,5],[14,8],[12,2],[12,2],[14,-5],[21,-3],[20,2],[12,-4],[10,-3],[14,-7],[10,-5],[14,-8],[15,-8],[9,-8],[8,-9],[16,-16],[11,-14],[7,-6],[13,-16],[5,-6],[12,-11],[10,-9],[11,-7],[8,2],[14,2],[11,4],[13,13],[20,17],[14,17],[6,16],[10,13],[12,8],[17,16],[11,13],[10,10],[20,22],[11,12],[15,21],[13,15],[11,13],[14,10],[12,19],[-4,5],[-2,6],[-3,12],[2,12],[-3,8],[-4,10],[-5,20],[-5,10],[-10,21],[-5,8],[-7,14],[-3,9],[-6,8],[-10,33],[-4,13],[-4,15],[-22,49],[-3,10],[-83,203],[-16,54],[-2,11],[-1,12],[-1,11],[-1,12],[-1,9],[-3,13],[0,9],[4,34],[0,8],[3,6],[2,12],[2,7],[2,6],[3,12],[12,37],[3,6],[3,7],[6,17],[6,10],[9,25],[10,23],[9,32],[9,21],[7,12],[6,7],[7,10],[6,11],[4,9],[8,22],[4,12],[7,19],[3,7],[3,5],[2,5],[3,11],[2,9],[3,10],[2,9],[2,5],[5,12],[8,21],[11,15],[5,5],[4,10],[5,10],[4,9],[5,7],[3,7],[5,12],[4,9],[4,21],[4,14],[3,6],[4,7],[2,9],[2,4],[10,15],[5,17],[6,14],[6,7],[4,8],[5,10],[10,13],[6,18],[4,11],[6,10],[5,7],[5,9],[3,11],[13,12],[15,28],[5,7],[4,5],[10,14],[5,7],[4,8],[7,8],[5,7],[6,10],[4,9],[12,11],[7,7],[3,8],[4,9],[10,7],[8,7],[7,7],[5,6],[16,16],[13,12],[10,8],[4,6],[5,6],[6,5],[5,5],[7,5],[8,5],[13,6],[10,3],[18,10],[5,3],[7,2],[11,2],[9,0],[15,1],[6,0],[6,0],[5,-2],[12,1],[12,0],[12,-1],[12,0],[0,-4],[6,-3],[19,1],[8,1],[8,2],[6,2],[9,0],[10,0],[8,2],[10,0],[6,-1],[9,-5],[7,-3],[9,0],[6,2],[7,1],[7,-2],[7,0],[9,1],[8,0],[5,-1],[10,-2],[3,-2],[10,-3],[10,-1],[5,-3],[8,0],[3,0],[9,-6],[9,-4],[14,0],[5,-3],[5,0],[5,-2],[4,-2],[5,-5],[5,-2],[10,0],[6,2],[11,3],[7,-1],[10,0],[5,-3],[7,-2],[10,-3],[6,-3],[11,-2],[8,-2],[3,-1],[9,-1],[6,-1],[5,-1],[6,-1],[7,1],[11,-5],[11,-1],[7,-2],[9,0],[7,-4],[13,0],[8,-3],[12,-1],[9,-2],[8,-4],[11,1],[6,-2],[4,-4],[5,-4],[3,-3],[10,-5],[7,-3],[7,-5],[11,-9],[6,-7],[4,-3],[6,-9],[10,-19],[5,-13],[12,-8],[15,-2],[13,5],[16,3],[19,3],[19,4],[12,6],[18,8],[14,7],[10,8],[14,1],[19,12],[8,4],[7,9],[22,20],[13,12],[20,14],[12,10],[9,17],[13,22],[14,15],[14,17],[-3,6],[-3,9],[0,14],[-2,16],[-3,15],[-3,13],[-2,13],[0,15],[0,23],[0,12],[-1,6],[4,10],[4,25],[0,4],[2,7],[1,8],[-7,2],[-4,-1],[-2,-2],[-5,1],[-1,11],[2,13],[6,14],[2,4],[0,9],[-3,6],[-3,6],[2,10],[2,7],[7,7],[5,1],[7,5],[1,12],[-1,5],[1,4],[0,6],[2,5],[0,5],[4,4],[3,3],[0,5],[1,4],[-1,6],[-2,8],[-2,10],[7,12],[-3,8],[-1,5],[2,4],[3,2],[3,2],[-1,11],[1,3],[2,7],[2,4],[-5,14],[-2,9],[3,5],[0,4],[3,3],[2,2],[1,5],[-9,7],[-2,3],[-3,6],[-5,12],[-2,6],[-1,7],[-5,8],[-2,4],[-1,4],[-2,7],[-2,4],[-2,6],[-6,15],[-2,3],[0,4],[-4,9],[-6,9],[-6,0],[-3,9],[-6,6],[-1,9],[0,8],[-1,7],[0,6],[-4,14],[1,9],[-6,8],[2,7],[-1,4],[-1,6],[1,7],[-1,6],[0,6],[2,12],[0,4],[1,4],[1,6],[-2,6],[3,8],[2,9],[3,6],[3,9],[7,6],[11,15],[5,5],[3,4],[8,5],[5,4],[6,9],[17,7],[3,2],[9,6],[8,2],[8,4],[7,5],[5,8],[5,8],[3,5],[14,16],[6,7],[5,7],[3,1],[8,6],[7,10],[7,8],[8,4],[6,4],[7,4],[14,6],[3,6],[6,2],[14,10],[10,3],[9,6],[10,5],[9,1],[5,5],[6,-1],[4,3],[4,9],[5,3],[7,0],[2,5],[12,9],[8,10],[9,7],[11,9],[14,8],[9,8],[11,11],[7,8],[3,7],[15,12],[21,12],[9,7],[7,9],[8,8],[5,5],[11,5],[6,4],[8,12],[2,7],[8,11],[13,11],[6,5],[4,7],[11,8],[11,14],[5,6],[7,6],[5,7],[6,8],[4,6],[4,8],[5,7],[5,7],[7,10],[5,3],[4,5],[6,4],[3,9],[3,8],[2,7],[3,7],[3,6],[3,7],[2,5],[1,5],[8,8],[5,9],[15,13],[7,9],[9,6],[15,5],[19,3],[14,5],[9,0],[6,4],[9,7],[17,0],[9,0],[11,2],[8,6],[16,1],[9,5],[12,9],[6,6],[18,7],[13,15],[9,5],[5,11],[11,9],[5,9],[2,9],[3,7],[9,8],[7,18],[10,8],[6,9],[6,10],[8,4],[4,7],[4,4],[0,7],[-2,5],[-3,3],[3,13],[4,12],[5,15],[9,6],[6,7],[1,6],[-2,9],[1,7],[1,18],[4,10],[14,14],[9,8],[14,7],[12,2],[10,7],[12,5],[14,4],[8,-4],[7,1],[3,5],[5,3],[4,4],[5,9],[10,3],[7,4],[8,3],[5,0],[7,-6],[9,-2],[2,-8],[3,-15],[5,-3],[6,3],[8,-4],[6,0],[11,-4],[3,-2],[6,-6],[3,-8],[3,-12],[-1,-11],[2,-7],[4,-6],[7,4],[6,2],[9,6],[4,4],[5,5],[6,4],[2,7],[7,1],[9,3],[4,5],[2,-1],[7,-3],[3,3],[3,9],[4,4],[7,3],[5,1],[6,-2],[2,-8],[1,-7],[1,-6],[15,15],[4,2],[5,5],[6,2],[5,1],[7,4],[7,4],[4,1],[4,5],[3,4],[6,7],[6,5],[6,2],[5,3],[14,7],[9,-1],[8,3],[6,0],[7,1],[7,1],[7,0],[6,-1],[8,5],[7,-4],[11,-3],[2,3],[9,-5],[6,-1],[6,-4],[3,-1],[4,-1],[2,-4],[5,-4],[4,-1],[3,-4],[1,-7],[3,2],[6,1],[3,0],[3,0],[3,-3],[4,-2],[4,4],[7,2],[4,0],[5,0],[4,-3],[7,-5],[5,1],[6,-2],[2,-4],[2,-8],[-3,-3],[-2,-8],[0,-7],[2,-8],[5,-2],[1,-3],[4,-3],[0,-6],[7,-4],[0,-6],[3,-7],[5,-3],[3,-5],[3,0],[3,0],[5,0],[2,-2],[0,-9],[-5,-10],[0,-5],[0,-9],[-3,-3],[-4,-4],[1,-3],[1,-5],[-2,-5],[-1,-6],[-4,-6],[-3,-5],[-6,-9],[-3,0],[-3,-3],[0,-7],[-3,-6],[-5,-4],[-4,-8],[-3,-5],[-2,-7],[-2,-5],[-3,-5],[-8,-6],[-8,-2],[-9,-4],[-5,-3],[-6,-7],[-14,-9],[-9,-1],[0,-7],[-2,-7],[-10,-11],[-8,-5],[-10,-1],[-4,-1],[-12,-1],[-5,0],[2,-10],[0,-6],[-2,-5],[-6,-5],[-9,-4],[-6,0],[-6,0],[-3,-5],[2,-5],[4,-4],[4,-3],[8,1],[4,0],[10,-2],[9,-1],[8,-4],[3,-4],[7,-3],[1,-5],[4,-2],[2,-1],[0,-4],[2,-3],[3,-2],[6,2],[2,-13],[2,-5],[2,-3],[1,-12],[0,-12],[-4,-2],[-4,-3],[2,-3],[4,3],[2,-2],[0,-6],[0,-4],[1,-4],[3,-2],[6,1],[3,3],[4,1],[5,1],[2,-2],[2,-10],[3,-5],[0,-4],[2,-7],[5,3],[0,5],[1,4],[4,-2],[3,1],[5,-2],[5,-8],[6,-7],[-2,-5],[-3,-4],[2,-3],[5,-16],[-4,-9],[-4,-6],[-2,-7],[10,-8],[2,-8],[3,-5],[7,2],[2,-9],[6,3],[1,4],[5,3],[1,6],[0,5],[3,6],[8,1],[5,-2],[15,-16],[3,1],[3,0],[6,-4],[3,-3],[4,-9],[0,-5],[-1,-6],[3,-6],[3,-5],[3,-4],[5,-6],[2,-8],[3,-10],[3,-6],[1,-6],[2,-11],[5,-6],[5,-5],[5,-11],[4,-8],[5,-9],[6,-8],[7,-3],[-2,10],[3,11],[8,1],[5,-6],[2,-12],[4,-12],[2,-9],[-7,-9],[1,-5],[4,-4],[1,-8],[5,-8],[2,-12],[-10,2],[-5,3],[1,-8],[-2,-5],[-1,-6],[-5,4],[-7,2],[-5,5],[-5,0],[-4,4],[-1,4],[-7,-3],[2,-7],[1,-9],[1,-4],[2,-6],[5,-3],[4,-7],[5,-5],[3,-7],[-4,-9],[-4,-2],[-4,-2],[-7,1],[-2,6],[-5,-2],[-7,-2],[-1,-3],[4,-3],[-4,-8],[-1,-5],[-3,-4],[-4,-4],[-2,-4],[2,-4],[-3,-4],[-1,-5],[6,-10],[0,-4],[-9,-7],[-3,-5],[-10,-1],[-8,-1],[-2,-5],[3,-1],[8,0],[4,-3],[4,-5],[1,-4],[6,-1],[3,-4],[-4,-7],[7,-9],[-6,-5],[-1,-4],[-3,-2],[-3,-3],[2,-7],[-4,-3],[-7,-4],[-5,-2],[-12,6],[-4,-1],[0,-10],[-4,-7],[-9,-5],[-7,-4],[3,-6],[0,-11],[-5,-3],[-3,-5],[0,-7],[-4,-1],[-2,-6],[-6,-2],[-4,-3],[0,-5],[-5,-3],[0,-4],[-2,-6],[-2,-5],[-6,-1],[-7,-3],[-3,-5],[-1,-7],[-10,-6],[-2,-5],[0,-6],[-4,-3],[1,-6],[-1,-9],[-1,-8],[2,-8],[-12,-11],[-7,-8],[-4,-8],[-9,1],[-6,5],[-4,8],[-4,5],[0,-16],[-1,-7],[2,-7],[3,-5],[0,-10],[2,-8],[4,-4],[2,-2],[3,-9],[2,-4],[3,-3],[1,-6],[-4,-2],[-5,-3],[3,-9],[-2,-7],[-6,-2],[-7,-2],[-7,-3],[-11,-3],[-3,2],[0,9],[-4,3],[-8,-4],[-6,-2],[-5,-3],[-3,-6],[-4,-6],[-5,-7],[0,-4],[-6,-6],[-1,-6],[-11,-7],[-3,-6],[-7,-4],[-19,-5],[-4,3],[-11,0],[-5,7],[-4,0],[-11,-8],[-2,-3],[-5,-3],[-7,0],[-6,-1],[-10,-2],[-6,-3],[-6,-2],[-9,-4],[-7,-6],[-5,0],[-6,5],[-6,-3],[-11,-4],[-5,-4],[-6,-3],[-7,-4],[-9,2],[-3,7],[-7,-4],[-10,-3],[-8,-3],[-9,-2],[-4,1],[-4,-3],[-7,-3],[-4,-3],[-7,-1],[-7,-2],[-7,-5],[-7,-1],[-3,-4],[-10,-4],[-5,-5],[-5,1],[-8,-5],[-9,-2],[-7,0],[-8,2],[-6,0],[-5,3],[-7,5],[-4,0],[-9,8],[-4,0],[-8,8],[-5,0],[0,-5],[-4,0],[-6,7],[-4,-1],[-5,5],[-9,5],[-3,-4],[-5,-3],[-12,6],[1,4],[-1,5],[-6,3],[-15,5],[-4,0],[-8,0],[-1,12],[-5,-1],[-9,-4],[-4,0],[-4,1],[-1,5],[-8,1],[-4,2],[-4,4],[-7,1],[-6,0],[-2,1],[-2,12],[2,6],[3,3],[1,4],[-1,6],[-4,1],[-5,0],[-3,0],[-6,0],[-4,-2],[-5,0],[-7,-3],[-4,-2],[-7,5],[-6,-5],[-6,-5],[-1,-7],[0,-9],[-8,-4],[-1,-4],[-9,0],[-4,0],[-2,-3],[-1,-8],[-7,-2],[-4,-3],[4,-12],[1,-12],[0,-9],[0,-14],[-1,-15],[-1,-13],[-1,-9],[0,-13],[1,-6],[-2,-6],[-2,-7],[-6,-1],[-4,-2],[-1,-4],[0,-9],[0,-9],[-2,-6],[-4,-7],[-4,-15],[-5,-6],[-5,-6],[-5,-7],[-5,-7],[-3,-7],[-4,-7],[-6,-4],[-7,-2],[-4,1],[-6,2],[-6,3],[-6,1],[-7,-2],[-4,-3],[-8,-3],[-2,-3],[-5,-15],[-4,-12],[-9,-17],[-1,-7],[-4,-7],[-5,-3],[0,-9],[3,-5],[2,-10],[-5,-6],[-2,-3],[3,-6],[-4,-7],[-5,-3],[-13,-9],[-2,-9],[2,-7],[-4,-12],[-10,-12],[-1,-8],[-2,-5],[-15,-4],[-7,-19],[-9,-17],[-15,-13],[-11,-14],[-12,-11],[-9,-5],[-5,-7],[-11,-5],[-10,-6],[-10,-5],[-9,-9],[-10,-15],[-8,-9],[-6,-8],[-19,-1],[0,-10],[-6,-7],[-17,-3],[-7,2],[-4,7],[-10,8],[-4,-20],[0,-14],[0,-18],[0,-47],[2,-28],[7,-35],[13,-43],[1,-20],[6,-25],[6,-31],[4,-44],[8,-41],[9,-32],[1,-37],[6,-44],[26,-143],[3,-30],[7,-46],[0,-39],[10,-34],[17,-91],[0,-63],[0,-46],[10,-37],[23,-67],[8,-27],[8,-31],[3,-36],[12,-36],[9,-36],[6,-28],[7,-40],[5,-24],[10,-33],[5,-22],[10,-19],[9,-26],[8,-18],[15,-24],[19,-20],[16,-17],[9,-4],[12,-1],[5,1],[10,4],[7,3],[10,5],[10,4],[13,0],[15,-15],[4,-6],[15,-3],[13,0],[8,-4],[3,-4],[9,0],[6,-3],[5,-10],[9,-9],[5,-6],[7,-7],[6,-2],[13,-10],[14,-18],[10,-9],[15,-11],[17,-6],[7,-4],[7,0],[7,-4],[5,-4],[10,-6],[17,-1],[7,-6],[9,-8],[10,-9],[8,-11],[13,-12],[13,-7],[2,-2],[3,-2],[4,-1],[5,-2],[6,-3],[2,-3],[4,-4],[4,-3],[3,1],[6,0],[5,3],[4,2],[4,0],[4,-4],[9,-6],[3,-2],[5,-1],[4,-4],[3,-3],[10,-2],[3,-2],[8,-3],[14,-8],[12,-5],[13,-12],[10,-10],[10,-9],[9,-5],[10,0],[9,0],[7,-4],[29,-11],[12,-2],[8,-4],[8,-7],[29,-17],[18,-5],[10,-6],[6,-2],[13,0],[15,-9],[6,-12],[11,-6],[7,-8],[28,-24],[10,-11],[15,-31],[3,0],[6,-14],[2,-11],[1,-6],[6,-3],[4,-6],[-2,-17],[2,-11],[2,-9],[3,-14],[-1,-12],[-4,-12],[7,-12],[6,-10],[6,-10],[2,-4],[4,-4],[3,-4],[3,-6],[8,-3],[3,-5],[4,-6],[5,-4],[5,-3],[5,1],[2,-6],[8,-3],[2,5],[3,1],[5,-9],[5,7],[3,2],[-1,10],[4,13],[1,4],[9,5],[6,1],[4,4],[2,8],[6,5],[4,2],[1,4],[1,8],[8,-3],[10,-1],[3,0],[10,-11],[3,-3],[7,-2],[2,-7],[-2,-8],[-3,-1],[-4,-1],[-7,-2],[-3,-3],[1,-3],[-3,-6],[2,-4],[7,-4],[3,4],[4,11],[6,-12],[2,-6],[0,-12],[-1,-5],[-2,-6],[-5,-9],[7,-1],[3,-1],[6,-3],[4,-5],[-1,-9],[0,-9],[4,-3],[2,0],[4,-2],[3,-6],[6,-4],[4,2],[3,5],[2,5],[5,3],[6,0],[5,-2],[3,-6],[5,-2],[5,-3],[0,-7],[2,-11],[-5,-7],[0,-6],[0,-7],[-3,-7],[-3,-5],[-5,-7],[-1,-5],[3,-3],[4,-5],[1,-8],[-4,-3],[-1,-8],[-1,-3],[-3,-1],[0,-7],[-2,-4],[-2,-2],[-2,-2],[-1,-4],[-4,-5],[5,-3],[3,-4],[-5,-12],[-4,-8],[-8,-5],[-2,-2],[-1,-8],[2,-7],[1,-5],[4,-5],[3,-5],[1,-7],[0,-6],[-6,-2],[-1,-4],[-2,-7],[-5,-4],[-3,-3],[-1,-6],[2,-5],[7,-4],[2,-4],[-4,-11],[-8,-2],[-6,1],[-2,-2],[0,-8],[-5,0],[-7,3],[-2,-14],[0,-9],[2,-6],[4,-8],[5,-7],[6,-5],[4,-6],[5,-8],[5,-6],[4,-7],[4,-7],[3,-6],[2,-5],[3,-7],[4,-6],[3,-6],[1,-11],[1,-7],[3,-6],[3,-4],[7,-8],[5,-6],[7,-3],[6,-11],[3,-4],[3,-4],[3,-6],[-1,-8],[-2,-4],[2,-5],[2,-6],[0,-9],[0,-8],[-5,-8],[-3,-13],[-2,-8],[3,-8],[6,-7],[9,-12],[8,-4],[8,-6],[8,-8],[10,-3],[8,-4],[4,-11],[9,-1],[7,-4],[4,-4],[6,-12],[6,-6],[3,-4],[5,-5],[8,-5],[8,-7],[4,-5],[2,-8],[1,-13],[1,-6],[-1,-10],[0,-4],[-5,-13],[-3,-4],[-4,-1],[-8,-4],[-3,-3],[-2,-6],[-2,-5],[-10,-9],[0,-5],[-7,-4],[-8,-7],[-1,-7],[0,-7],[-7,-2],[-3,-3],[-3,-6],[-3,-8],[0,-7],[-2,-6],[-4,-7],[0,-5],[1,-6],[-3,-9],[-10,-13],[-11,-7],[-13,-8],[-7,-5],[-9,-1],[-10,-2],[-5,2],[-3,5],[-8,1],[-4,-1],[-6,-4],[-4,-4],[-6,-3],[-5,0],[-14,0],[-6,0],[-4,-3],[-1,-6],[-2,-9],[1,-5],[1,-4],[-1,-8],[-2,-6],[-3,-3],[-8,-3],[-5,1],[-6,-4],[-4,-1],[-3,5],[-6,-4],[-5,-2],[-6,0],[-2,9],[-6,0],[-6,-6],[-2,-5],[-2,-4],[-3,-1],[-6,-1],[-5,-3],[-7,3],[-5,0],[-5,-5],[-7,-14],[-7,-5],[-4,2],[-12,3],[-6,-2],[-10,1],[-7,2],[-2,-5],[-6,-3],[-9,-2],[-9,1],[-8,4],[-11,9],[-6,3],[-4,8],[-1,4],[0,8],[-6,-1],[-5,-4],[-9,0],[-5,-3],[-6,-1],[-9,-3],[-12,-4],[-6,-4],[-13,-6],[-4,-2],[-11,-6],[-7,-7],[-16,-6],[-9,-1],[-10,2],[-7,7],[-1,8],[1,12],[-1,10],[-9,-1],[-6,1],[-11,-1],[-17,0],[0,5],[-3,4],[-4,-6],[-4,1],[0,-6],[0,-5],[-6,-10],[-3,-4],[1,-7],[-6,-5],[0,-3],[-1,-6],[-3,-1],[-5,0],[-6,-9],[-12,7],[-3,-1],[1,-4],[-3,1],[-4,-1],[-4,-2],[-3,-2],[1,-4],[0,-4],[-5,-7],[-3,-4],[-3,-8],[-5,-3],[-9,-1],[-7,3],[-3,-2],[-4,-3],[-3,0],[-1,-2],[-1,-4],[-2,-3],[-6,-2],[-7,2],[-3,3],[-2,3],[-5,3],[-5,-2],[-2,-6],[-4,-4],[-3,0],[-3,1],[-4,2],[-3,0],[-4,0],[-7,3],[-4,1],[-3,-2],[-3,-4],[0,-4],[-2,-3],[-4,-1],[-4,-1],[-5,1],[-2,-1],[-1,-4],[2,-2],[1,-4],[-2,-5],[-4,-3],[-6,1],[-3,1],[-6,2],[-2,4],[-4,1],[-1,-2],[0,-4],[-1,-4],[-4,2],[-2,1],[-6,-2],[-4,-3],[-1,-3],[-3,-3],[0,-5],[2,-6],[0,-5],[-4,-1],[-4,1],[-2,5],[0,6],[2,5],[0,7],[-4,0],[-2,-9],[-1,-4],[-9,-3],[4,-5],[-3,-7],[-9,-3],[-5,3],[-7,1],[0,-5],[-3,-1],[-4,-2],[-7,1],[-2,0],[-10,5],[-2,5],[1,4],[-1,4],[-4,0],[-5,0],[-3,-3],[-1,-6],[-4,5],[-4,-4],[3,-4],[-3,-6],[3,-3],[-1,-9],[-2,-3],[-1,-7],[-4,-4],[-3,-2],[3,-4],[1,-4],[2,-3],[0,-5],[-2,-5],[-1,-5],[0,-9],[-11,-21],[3,-2],[6,5],[3,6],[4,7],[2,1],[3,1],[2,-2],[4,-15],[1,-3],[-6,-8],[-6,-5],[-1,-5],[-14,-9],[-8,-7],[-2,-5],[-3,-1],[-11,0],[1,-4],[4,-3],[2,-4],[3,-7],[2,-5],[-3,-4],[-5,-4],[-7,1],[-6,2],[-8,4],[-3,1],[-5,1],[-6,4],[-3,4],[0,6],[2,6],[0,9],[2,5],[-7,-2],[5,16],[-1,7],[1,7],[0,5],[-1,6],[-10,7],[-6,-4],[-1,-7],[-5,-4],[-3,-4],[0,-6],[1,-7],[-3,-14],[3,-5],[3,-2],[3,-5],[1,-7],[-4,-2],[-5,-3],[-9,-1],[-7,1],[-5,8],[-11,-5],[-2,-7],[-3,-5],[0,-9],[0,-10],[1,-9],[-4,-6],[-7,7],[-17,5],[1,5],[9,2],[-6,7],[4,3],[-4,6],[-2,1],[-10,11],[-5,2],[-4,11],[-4,6],[-3,0],[-2,-6],[-1,-5],[-5,-10],[-7,-5],[-8,-8],[-12,-5],[-7,8],[-5,4],[-1,-5],[-5,-6],[2,-5],[-3,-9],[-4,-2],[-5,-3],[0,-5],[1,-4],[-2,-6],[-4,-2],[-3,-2],[-2,-6],[-1,-7],[1,-8],[-1,-9],[0,-9],[-1,-11],[1,-9],[-2,-8],[-7,-6],[-10,-2],[-10,-1],[-7,1],[-9,3],[-7,4],[-1,4],[-3,14],[-3,3],[-2,-6],[-4,-7],[-4,-9],[-1,-4],[-7,-5],[-3,-4],[-8,-3],[-6,-2],[-8,3],[-9,4],[-9,0],[-5,4],[-2,2],[-8,8],[-2,0],[-5,1],[-4,0],[-3,1],[-3,6],[-1,7],[0,7],[-1,5],[-1,7],[5,3],[2,8],[-4,4],[-4,-2],[-5,-1],[-5,-3],[-2,-4],[-4,-1],[-3,4],[-5,3],[-5,-3],[-3,-5],[-2,-6],[-1,-7],[-1,-6],[-1,-5],[1,-7],[-3,-11],[0,-5],[2,-6],[-5,-10],[-2,-4],[-6,-3],[-2,-8],[-4,-5],[-5,1],[-9,5],[-5,-2],[-7,4],[-3,-2],[-9,-2],[-7,2],[-5,-2],[-4,-8],[-7,-1],[-5,-4],[-5,1],[-7,4],[2,-9],[-3,-5],[0,-8],[-1,-5],[-2,-9],[-1,-7],[3,-5],[7,3],[0,5],[1,8],[0,9],[2,8],[6,2],[9,0],[3,-4],[8,1],[4,-2],[1,-6],[2,-4],[2,-5],[-1,-6],[-7,-6],[-7,-3],[-14,-1],[-4,-3],[5,-8],[-1,-9],[-6,-13],[-4,-10],[-3,-8],[-4,-8],[2,-6],[1,-9],[-1,-8],[0,-12],[3,-11],[10,0],[6,0],[5,-5],[6,-5],[6,-8],[4,-9],[-2,-7],[-3,-5],[-8,2],[-3,-3],[-8,-5],[-5,0],[-5,12],[1,9],[-1,10],[-5,0],[-4,0],[-3,-1],[-5,-5],[-10,-11],[-9,-5],[-3,-3],[-8,-1],[-5,1],[-5,7],[-1,6],[3,13],[-3,5],[-2,10],[0,7],[-4,0],[-4,0],[-5,2],[-1,5],[2,3],[-1,6],[0,10],[1,7],[-1,5],[-5,4],[-3,-3],[-6,-3],[0,-3],[1,-4],[1,-4],[-1,-5],[-4,-2],[-6,4],[1,6],[0,5],[-9,-7],[0,-8],[-1,-6],[-12,-4],[-5,0],[0,-7],[4,-6],[6,-6],[2,-4],[1,-9],[-1,-5],[-5,-8],[-6,-2],[-9,6],[-5,10],[-5,5],[-9,3],[-7,3],[-2,-11],[-5,-6],[-2,-4],[-2,-7],[-2,-4],[1,-3],[4,0],[4,-2],[3,-8],[4,-12],[1,-4],[0,-9],[0,-6],[0,-7],[1,-6],[-1,-8],[-3,-4],[-6,-2],[-4,3],[-19,51],[1,11],[-5,4],[-2,-5],[-1,-4],[0,-10],[-2,-5],[-2,-5],[-2,-2],[-6,-1],[-5,-2],[-1,-9],[-4,-4],[-1,-7],[-1,-6],[-5,0],[-3,-5],[-2,-5],[0,-5],[-10,3],[-8,4],[-9,10],[-3,7],[-2,7],[-2,7],[-3,10],[-4,0],[-4,-3],[-7,-5],[-5,-2],[-5,-1],[-9,3],[-4,0],[-4,2],[-2,11],[3,11],[-4,0],[-6,-5],[-4,-4],[-5,-1],[-4,0],[-10,1],[-6,1],[-4,4],[-1,7],[-1,8],[-2,10],[-6,4],[-3,-1],[-1,-8],[0,-5],[0,-5],[1,-6],[-1,-9],[-2,-7],[-7,-7],[-1,-6],[-7,-3],[-4,-4],[-5,-5],[-8,1],[-5,5],[1,5],[0,6],[-2,8],[0,6],[1,5],[3,11],[4,5],[3,4],[0,4],[-5,1],[-6,-5],[-16,-2],[-12,-3],[-16,-1],[-6,-4],[-10,-2],[-10,0],[-11,1],[-10,0],[-3,0],[-6,0],[-10,-1],[-14,-1],[-9,0],[-24,-5],[-12,-3],[-20,-4],[-12,-2],[-12,-2],[-10,-1],[-14,-1],[-17,0],[-16,-1],[-18,-2],[-14,0],[-9,0],[-23,3],[-15,-2],[-8,2],[-10,1],[-12,3],[-11,-3],[-15,-7],[-8,-6],[-11,-2],[-8,-4],[-5,-2],[-12,-7],[-7,-1],[-3,-4],[-3,-3],[-6,-3],[-3,-1],[-6,5],[-4,4],[-3,5],[-8,-1],[-10,-3],[-9,-3],[-15,-5],[-9,-2],[-25,0],[-13,4],[-10,0],[-18,2],[-10,0],[-12,2],[-16,1],[-13,2],[-9,0],[-11,1],[-7,4],[-13,10],[-5,9],[-4,4],[-6,5],[-12,13],[-6,4],[-9,4],[-2,3],[-4,5],[0,5],[-4,12],[-2,8],[0,5],[-1,9],[0,6],[-5,4],[-5,0],[-4,4],[-8,0],[-10,4],[-10,7],[-5,3],[-7,0],[-10,8],[-5,3],[-9,2],[-4,2],[-2,4],[-2,4],[-6,2],[-2,3],[-4,4],[-4,8],[-4,4],[-4,-1],[-6,-3],[-3,-2],[-4,-12],[-3,-5],[0,-6],[0,-7],[1,-6],[0,-9],[-14,-2],[-8,3],[-6,-3],[0,-5],[0,-6],[1,-5],[-1,-7],[-10,-10],[-4,1],[-4,1],[-6,2],[0,8],[2,8],[1,11],[-2,3],[-9,-8],[2,-4],[-2,-5],[-3,-2],[-5,-2],[-3,-5],[-1,-4],[-2,-3],[-4,-4],[-1,-4],[0,-6],[-2,-4],[-4,-3],[-3,-5],[-1,-6],[-3,-7],[0,-4],[1,-4],[5,-4],[2,-6],[5,-4],[4,1],[4,0],[3,-7],[-1,-5],[-6,-9],[0,-10],[-2,-7],[-7,0],[-5,3],[0,5],[-5,7],[-4,0],[-6,1],[-1,5],[1,11],[-2,4],[-6,0],[-3,6],[0,5],[-2,2],[-3,-6],[-3,-8],[-2,-6],[-6,-8],[-5,-7],[-2,-3],[-8,-15],[-3,-6],[-11,-9],[-5,-8],[-6,-9],[-5,-9],[-5,-7],[-5,-11],[-12,-15],[-15,-8],[-15,-8],[-5,-7],[-16,-2],[-21,-8],[-6,-4],[-9,-3],[-10,-7],[-7,-5],[-18,-2],[-14,-5],[-14,-7],[-8,-9],[-15,-9],[-21,-10],[-14,-7],[-13,0],[-17,-9],[-7,-4],[-6,-7],[-5,-5],[-9,-4],[-7,0],[-12,-2],[-9,-2],[-10,-2],[-10,0],[-12,-3],[-10,2],[-2,0],[-17,-6],[-13,-5],[-4,-13],[-11,-10],[-7,-7],[-10,-15],[-4,-6],[-2,-6],[-9,-12],[-7,-5],[-5,-3],[-8,-2],[-8,0],[-16,3],[-5,1],[-5,1],[-10,1],[-9,4],[-10,0],[-15,-3],[-5,-3],[-6,-6],[-5,-10],[-12,-7],[-5,-5],[-4,-1],[-7,0],[-3,-6],[-5,-4],[-13,3],[-4,-3],[-7,-10],[-4,-3],[-11,1],[-9,-2],[-16,-17],[-10,-56],[-19,-71],[-6,-9],[-2,-19],[2,-15],[-9,-8],[-7,-21],[-1,-16],[-4,-17],[1,-40],[-2,-15],[-1,-30],[-1,-9],[-6,-12],[-2,-18],[-1,-16],[-3,-22],[2,-16],[4,-19],[0,-16],[-5,-20],[-2,-13],[9,-11],[7,-17],[7,-10],[1,-19],[-1,-17],[0,-26],[-1,-22],[-1,-17],[-2,-13],[-1,-31],[0,-16],[7,-11],[4,-13],[3,-32],[0,-7],[0,-12],[3,-8],[7,-7],[3,-7],[-6,-11],[-5,-7],[3,-10],[4,-8],[3,-11],[5,-11],[2,-8],[1,-15],[3,-6],[8,0],[13,1],[11,-5],[10,-2],[11,-7],[5,-1],[8,-4],[9,-4],[8,-3],[10,-6],[9,-5],[8,-5],[9,-5],[10,-8],[17,1],[6,-3],[39,-15],[17,-5],[14,-6],[26,-8],[20,-6],[10,-3],[13,-9],[14,-15],[12,-21],[11,-26],[19,-30],[4,-2],[7,-4],[4,-3],[7,2],[4,5],[4,0],[3,5],[5,3],[7,-2],[0,-8],[-1,-10],[-3,-4],[-3,-5],[3,-5],[3,-8],[1,-8],[1,-4],[5,-4],[6,-5],[4,-2],[5,-11],[1,-8],[3,-4],[4,-6],[-1,-9],[6,-3],[4,0],[6,-1],[3,-4],[-1,-9],[-4,-5],[-4,-7],[-2,-4],[-6,-8],[-3,-7],[2,-10],[3,-10],[9,-6],[3,-7],[8,-4],[6,3],[4,9],[7,8],[11,8],[14,8],[14,8],[11,4],[7,3],[2,7],[3,5],[5,6],[5,2],[10,3],[11,3],[14,2],[8,-6],[13,3],[17,-3],[10,-6],[12,-4],[14,-6],[13,5],[13,-1],[6,-5],[18,0],[6,-1],[6,1],[10,-3],[6,0],[7,2],[4,1],[4,0],[6,-2],[3,-3],[5,-4],[5,4],[3,1],[4,0],[2,2],[4,6],[2,4],[0,4],[-3,9],[3,2],[3,0],[2,-2],[6,3],[-3,5],[0,8],[1,3],[-1,4],[-5,0],[-5,1],[-1,10],[3,8],[3,5],[4,4],[7,5],[7,2],[3,2],[5,8],[3,6],[2,2],[3,0],[6,-1],[6,-1],[5,-1],[5,-3],[4,-3],[3,-4],[0,-5],[-3,-7],[-11,-6],[3,-6],[1,-12],[1,-5],[2,-3],[1,-4],[4,-2],[3,0],[2,4],[3,6],[5,3],[2,4],[0,4],[-1,5],[2,5],[8,9],[4,3],[5,2],[6,-3],[6,-1],[4,-2],[-1,-20],[5,-6],[1,-6],[2,-6],[0,-6],[-3,-6],[0,-6],[7,-6],[6,-8],[7,3],[10,5],[7,-3],[14,-7],[16,-1],[15,-5],[7,-1],[8,0],[14,-4],[12,-3],[11,-7],[7,-12],[17,-16],[10,-5],[22,-3],[18,-9],[19,-12],[16,-11],[14,-12],[16,-16],[11,-9],[4,-10],[0,-7],[-10,-6],[-16,-3],[-17,-4],[-16,-9],[-22,-4],[-20,-11],[-35,-6],[-16,11],[-13,4],[-7,-9],[-1,-6],[3,-4],[2,-7],[5,-7],[7,-6],[7,-9],[5,-5],[6,-6],[13,-9],[13,-26],[5,-21],[4,-17],[10,-16],[5,-5],[9,-12],[12,-22],[4,-13],[5,-10],[8,-13],[7,-8],[7,-9],[6,-11],[9,-10],[6,-3],[8,-5],[15,-16],[23,-18],[7,-7],[7,-5],[9,-4],[6,-2],[7,-7],[4,-7],[5,-9],[7,-7],[2,-8],[5,-12],[5,-5],[9,-4],[2,-6],[6,-7],[4,-3],[5,-6],[3,-14],[-3,-11],[-6,-9],[-6,-7],[-7,-6],[-5,-5],[-6,-5],[-6,-5],[-6,-2],[-3,-3],[1,-11],[-2,-7],[-2,-3],[-3,0],[0,-9],[-11,-21],[-8,-7],[-7,-5],[-14,-8],[-5,-4],[-9,-6],[-8,0],[-9,-1],[-13,-5],[-8,-4],[-6,-5],[-10,-3],[-29,-10],[-3,-3],[-3,-4],[-5,-2],[-8,-5],[-6,-1],[-3,2],[-3,0],[-1,-6],[-4,-3],[-5,-2],[-5,-1],[-6,0],[-3,0],[-3,-5],[-7,0],[0,-5],[3,-4],[3,-7],[2,-11],[4,-9],[5,-5],[5,-8],[3,-9],[4,-5],[5,-2],[1,-6],[0,-5],[-3,-1],[-3,-1],[-3,-4],[-4,2],[-4,2],[-1,7],[-3,6],[-10,0],[1,-6],[-3,-6],[-2,-3],[-15,-1],[1,-3],[3,-3],[4,0],[3,-5],[13,-13],[13,0],[2,-3],[5,-11],[4,-4],[5,-4],[7,-4],[7,0],[7,0],[6,-6],[5,-8],[2,-9],[0,-5],[-2,-8],[-4,-3],[-7,-13],[-3,-2],[-3,-5],[-3,-2],[-8,0],[-2,-3],[1,-4],[3,-2],[5,0],[3,-2],[-1,-3],[-3,-5],[1,-6],[2,-3],[3,-1],[4,-4],[1,-4],[-2,-5],[-2,-3],[0,-4],[2,-4],[5,2],[2,6],[5,4],[5,-6],[4,-7],[4,-7],[3,-3],[2,-5],[2,-16],[5,-5],[2,-9],[0,-19],[-1,-5],[-6,0],[-8,2],[-4,-2],[-2,-7],[-1,-6],[0,-7],[0,-7],[0,-6],[-1,-4],[-4,-2],[-3,-3],[0,-5],[0,-5],[-4,-4],[-7,-4],[-6,-3],[-4,-1],[-7,0],[-2,-3],[0,-6],[-1,-8],[-1,-7],[-4,-7],[-13,-11],[-5,-1],[-5,-4],[-3,-4],[-3,-4],[-2,-2],[-5,-8],[-8,-20],[-3,-15],[-15,-17],[-9,-13],[-8,-12],[-18,-15],[-7,-3],[-3,-3],[-8,0],[-1,-5],[3,-2],[4,0],[3,-2],[-1,-4],[-1,-4],[3,-2],[3,0],[3,-1],[3,0],[13,0],[3,-4],[0,-8],[2,-9],[0,-5],[-2,-2],[-6,0],[-5,-1],[-3,-13],[1,-16],[-6,-19],[0,-12],[0,-5],[1,-7],[2,-8],[0,-20],[-2,-5],[-8,-7],[2,-8],[3,-4],[-1,-4],[-3,-3],[-1,-4],[0,-5],[3,-2],[7,-7],[3,-4],[5,-2],[9,-11],[7,-11],[6,-18],[6,-4],[3,-12],[1,-16],[2,-6],[4,-5],[5,-5],[6,-2],[4,-6],[2,-14],[1,-12],[0,-9],[-4,-11],[0,-7],[9,-9],[5,2],[3,0],[2,-8],[0,-8],[0,-6],[8,-13],[10,-13],[3,-7],[6,-1],[4,-2],[8,-9],[4,-7],[3,-3],[1,-4],[-3,-6],[-1,-6],[3,-2],[4,3],[8,0],[4,-7],[1,-4],[0,-7],[1,-10],[-1,-4],[6,-3],[4,0],[7,1],[5,-1],[7,-2],[3,1],[5,9],[7,4],[9,2],[4,-1],[3,-6],[2,-8],[1,-7],[0,-5],[-3,-7],[-4,-4],[-2,-4],[-10,-6],[-2,-11],[-9,-9],[-2,-4],[-5,2],[-3,-3],[0,-6],[1,-4],[1,-6],[-3,-2],[-3,-1],[-2,-6],[-1,-6],[-1,-6],[1,-8],[-2,-6],[1,-4],[24,1],[7,1],[10,1],[68,-4],[24,0],[24,-10],[17,-10],[19,-17],[15,-16],[4,-7],[4,-4],[2,-2],[7,0],[12,6],[9,-3],[13,-8],[3,-1],[5,-8],[0,-5],[-1,-11],[-7,-26],[0,-11],[5,-8],[4,-7],[2,-2],[4,-8],[1,-8],[1,-8],[-1,-16],[0,-9],[2,-6],[3,0],[6,-3],[1,-8],[0,-8],[1,-5],[2,-2],[1,-11],[4,-6],[7,-15],[5,-10],[0,-11],[-8,-16],[-9,-33],[-5,-2],[-8,-2],[-8,-4],[0,-7],[0,-5],[0,-5],[0,-5],[3,-5],[0,-4],[-7,-10],[-2,1],[-4,2],[0,-4],[2,-5],[-4,-10],[-2,-6],[-5,-7],[-4,-6],[0,-7],[2,-6],[0,-6],[-5,-2],[-6,-4],[-1,-6],[-5,-6],[-2,-11],[-3,-5],[-1,-6],[-3,-5],[-1,-4],[0,-5],[-3,-4],[-3,-2],[-2,-4],[0,-4],[1,-5],[-2,-4],[-3,-5],[0,-7],[-2,-9],[-5,-5],[-4,-5],[0,-6],[2,-7],[0,-5],[-5,-8],[-4,-11],[-5,-5],[-5,-2],[-2,-5],[2,-6],[-3,-11],[-3,-7],[-4,-3],[-11,-2],[-4,-9],[-6,-6],[0,-4],[0,-4],[0,-6],[-1,-8],[-5,-9],[-5,-22],[-10,-24],[-4,-4],[-7,-7],[-4,-4],[-4,-4],[-5,-5],[0,-6],[2,-2],[4,-6],[-2,-7],[-2,-3],[-4,-3],[-3,-6],[-6,-5],[0,-8],[-2,-4],[-3,2],[-6,-1],[0,-3],[2,-5],[-8,1],[-7,2],[-7,4],[-5,0],[-3,-11],[-9,-3],[-5,-2],[-5,-5],[-4,-6],[-9,-2],[-2,-4],[-4,-5],[-9,0],[-2,-4],[0,-8],[-2,-7],[-4,-6],[-7,-8],[-10,-8],[-3,-5],[-8,-9],[-7,-2],[-7,0],[-4,-4],[-4,-7],[-22,-14],[-3,-3],[-2,-4],[-3,-5],[-3,-1],[-4,-4],[-2,-3],[-10,0],[-5,-3],[-2,-6],[-6,-3],[-3,-3],[-3,-5],[-2,-5],[-7,-4],[-11,-3],[-8,-9],[-2,-5],[-14,-6],[-4,0],[-3,-6],[-1,-5],[-4,-4],[-10,-1],[-5,-2],[-2,-3],[-1,-4],[-7,0],[-6,1],[-6,1],[-8,-2],[-7,-3],[-4,-3],[-4,-5],[-2,-2],[-10,-4],[-14,-5],[-9,-1],[-10,-1],[-16,9],[-6,2],[-8,0],[-6,-3],[-5,-8],[0,-6],[1,-8],[1,-6],[0,-4],[-3,-2],[-8,-2],[-5,-2],[-8,2],[-11,1],[-1,-4],[-2,-4],[-4,-3],[-5,-2],[-4,-6],[-5,-4],[-3,-2],[-4,-1],[-5,1],[-7,3],[-2,-3],[-6,-1],[-8,-1],[-6,-3],[-4,-4],[-1,-5],[-3,-3],[-5,-1],[-7,1],[-3,-1],[-4,-5],[-4,-2],[-5,-1],[-6,0],[-8,3],[-9,0],[-8,-1],[-9,-1],[-14,0],[-13,-4],[-4,-3],[-3,-3],[-5,-4],[-5,1],[-4,1],[-4,2],[-6,2],[-3,0],[-6,1],[-3,-1],[-6,-2],[-4,-3],[-10,-2],[-2,-2],[-2,-6],[-5,-1],[-6,-1],[-4,-4],[-5,-1],[-3,0],[-2,1],[-5,-4],[-12,2],[-4,3],[-6,-1],[-3,-2],[-17,-6],[-2,-3],[-9,4],[-7,0],[-7,0],[-5,1],[-5,2],[-3,0],[-2,-2],[-5,-2],[-3,2],[-4,2],[-7,11],[-5,3],[-5,2],[-5,0],[-6,2],[-3,8],[-4,11],[-3,7],[-4,2],[-8,0],[-6,13],[-3,6],[-4,7],[-2,5],[-9,8],[-1,4],[-3,6],[-2,-1],[-2,-2],[-4,-2],[-5,-7],[-4,-2],[-6,-5],[-2,-5],[-7,-2],[-9,2],[-4,0],[-4,-1],[-4,-5],[-18,-2],[-7,5],[-18,7],[-12,-1],[-16,4],[-10,3],[-8,4],[-18,14],[-5,17],[-1,15],[0,17],[-3,8],[-25,6],[-11,1],[-13,7],[-3,2],[-9,8],[-4,12],[-6,11],[-10,9],[-12,7],[-9,9],[-2,4],[-8,10],[-12,2],[-11,0],[-21,3],[-29,19],[-7,8],[-7,9],[-8,8],[-10,7],[-7,11],[2,11],[-3,8],[-7,5],[-13,4],[-2,7],[0,3],[-1,6],[-13,1],[-5,2],[-10,13],[-2,5],[-3,7],[-3,12],[-2,20],[4,20],[-5,16],[-4,17],[-4,15],[-1,121],[0,30],[6,37],[22,56],[-60,88],[-32,10],[-32,5],[-34,0],[-41,-4],[-79,-12],[-27,-3],[-32,-8],[-14,-7],[-15,-7],[-38,-21],[-100,-52],[-138,-84],[-18,-8],[-20,-3],[-16,0],[-11,-4],[-26,-17],[-13,-26],[-13,-9],[-13,-10],[-68,-67],[-91,-54],[-30,-32],[-84,-71],[-66,-39],[-27,-29],[-31,-28],[-12,-9],[-31,-24],[-77,-74],[-29,-15],[-29,-11],[-24,-13],[-24,-20],[-24,-23],[-28,-49],[-9,-18],[-22,-16],[-21,-10],[-25,-16],[-23,-16],[-31,-31],[-30,-18],[-31,-14],[-18,-13],[-20,-21],[-29,-16],[-39,-27],[-18,-18],[-15,-17],[-19,-14],[-26,-7],[-19,-7],[-11,-12],[-7,-16],[-13,-14],[-24,-14],[-10,-13],[-12,-17],[-26,-9],[-17,-6],[-24,-24],[-9,-6],[-21,-17],[-15,-13],[-12,-9],[-13,-12],[-16,-20],[-11,-14],[-15,-7],[-8,-2],[-7,-9],[-10,-4],[-10,1],[-13,-2],[-18,-10],[-9,-12],[-3,-15],[-8,-8],[-16,-4],[-12,0],[-14,-1],[-10,0],[-15,-9],[-18,-16],[-3,-2],[-10,-6],[-16,-13],[-12,-10],[-9,-8],[-12,-3],[-9,-3],[-12,-4],[-9,-4],[-12,-7],[-3,-6],[-11,-5],[-7,-7],[-3,-9],[-9,-7],[-3,-1],[-5,0],[-6,0],[-9,-1],[-6,-4],[-11,-8],[-5,-3],[-5,-4],[-19,-4],[-15,0],[-14,0],[-15,-4],[-9,-8],[-42,-25],[-10,-11],[-11,-7],[-10,-5],[-13,-11],[-13,-9],[-13,-14],[-12,-11],[-11,-6],[-15,-11],[-23,-8],[-11,-5],[-11,-11],[-8,-7],[-6,-6],[-6,-6],[-8,-7],[-8,-4],[-6,-4],[-7,-11],[-6,-13],[-9,-15],[-5,-10],[-7,-10],[-9,-12],[-8,-8],[-10,-8],[-12,-4],[-11,-4],[-7,-6],[-13,-1],[-12,-11],[-10,-8],[-13,-14],[-12,-17],[-10,-7],[-9,-10],[-5,-2],[-11,-3],[-15,-8],[-9,-3],[-26,-24],[-23,-12],[-17,-5],[-8,-6],[-54,-33],[-8,-8],[-25,-15],[-11,-15],[-10,-10],[-5,-6],[-8,-16],[-10,-1],[-9,0],[-20,-2],[-10,-12],[-8,-12],[-11,-14],[-11,-9],[-15,-9],[-20,-6],[-32,-19],[-7,-2],[-10,-6],[-15,-6],[-18,-11],[-18,-16],[-18,-19],[-9,-18],[-9,-13],[-14,-10],[-17,-7],[-17,-14],[-27,-12],[-20,-21],[-16,-13],[-15,-19],[-15,-18],[-1,-16],[-12,-16],[-23,-12],[-28,-17],[-23,-28],[-24,-27],[-6,-7],[-9,-10],[-13,-16],[-13,-6],[-7,-4],[-6,-9],[-1,-8],[-7,-6],[-20,-12],[-18,-15],[-8,-13],[-21,-13],[-18,-8],[-15,-16],[-11,-15],[-12,-17],[-27,-25],[-51,-68],[-18,-16],[-16,-16],[-11,-10],[-7,-9],[-12,-11],[-16,-11],[-18,-8],[-17,-15],[-24,-20],[-16,-15],[-18,-27],[-6,-12],[-13,-23],[-19,-24],[-34,-32],[-20,-22],[-20,-16],[-18,-11],[-23,-13],[-19,-14],[-19,-21],[-7,-8],[-15,-26],[-7,-23],[-11,-32],[-11,-16],[-14,-15],[-5,-11],[-5,-6],[-9,-3],[-7,-3],[-5,-9],[-3,-13],[-9,-12],[-11,-6],[-19,-11],[-14,-13],[-12,-21],[-2,-22],[-17,-17],[-38,-34],[-22,-32],[-11,-11],[-13,-11],[-11,-13],[-9,-11],[-13,-14],[-11,-12],[-10,-15],[-12,-13],[-10,-17],[-12,-13],[-13,-18],[-10,-34],[-14,-22],[-11,-10],[-11,-8],[-8,-8],[-13,-12],[-18,-13],[-16,-10],[-20,-25],[-16,-27],[-8,-20],[-3,-19],[-8,-12],[-7,-12],[-4,-4],[-11,-9],[-14,-14],[-4,-15],[-3,-24],[-2,-17],[-8,-12],[-13,-8],[-15,-6],[-14,-6],[-7,-11],[-6,-21],[-15,-38],[-11,-11],[-3,-5],[-7,-10],[-7,-10],[-7,-11],[-8,-17],[-10,-25],[-8,-21],[-5,-20],[-12,-24],[-38,-72],[-9,-22],[-14,-18],[-15,-19],[-21,-21],[-10,-11],[-12,-21],[-18,-39],[-10,-25],[-13,-21],[-14,-45],[-10,-16],[-8,-14],[-19,-21],[-10,-23],[-20,-38],[-13,-32],[-6,-9],[-3,-1],[-2,-5],[-2,-3],[-4,-3],[-2,-1],[-7,-3],[-3,-2],[-2,-4],[-2,-6],[-2,-18],[-9,-8],[-10,-7],[-10,-24],[-12,-20],[-13,-13],[-8,-21],[-17,-55],[-12,-24],[-14,-34],[-13,-16],[-12,-16],[-8,-23],[-15,-29],[-17,-18],[-24,-28],[-14,-46],[-11,-37],[-5,-17],[-3,-12],[-6,-19],[-6,-13],[-7,-14],[-4,-18],[-6,-16],[-13,-14],[-6,-12],[-8,-18],[-11,-22],[-13,-21],[-15,-10],[-6,-11],[-10,-17],[-17,-27],[-13,-12],[-13,-8],[-8,-5],[-8,-9],[-8,-16],[-6,-18],[-17,-22],[-13,-10],[-3,-5],[-5,-11],[-1,-12],[-1,-16],[-7,-16],[-5,-18],[-10,-6],[-18,-7],[-11,-12],[-12,-21],[-6,-35],[-2,-23],[-9,-16],[-11,-4],[-14,-4],[-8,-5],[-7,-17],[-9,-26],[0,-18],[0,-16],[-13,-17],[-18,-31],[-7,-22],[-1,-13],[-1,-12],[-4,-13],[-6,-12],[-8,-15],[-7,-19],[-2,-15],[-3,-15],[-2,-18],[-2,-13],[-10,-18],[-5,-12],[0,-16],[0,-16],[-5,-4],[-6,-18],[-1,-13],[-3,-12],[-1,-7],[-7,-10],[-2,-5],[-5,-12],[-10,-18],[-9,-11],[-2,-9],[-4,-12],[-8,-25],[-14,-57],[-30,-94],[-17,-52],[-2,-14],[-5,-16],[-1,-9],[0,-8],[-1,-15],[0,-4],[-5,-18],[-5,-19],[0,-11],[-1,-8],[-3,-13],[-5,-19],[-3,-15],[-1,-16],[-2,-22],[-2,-23],[1,-16],[-5,-43],[-2,-15],[-4,-14],[-5,-17],[-1,-15],[0,-23],[3,-9],[0,-7],[-3,-6],[-1,-5],[-5,-19],[-4,-14],[-3,-9],[-4,-18],[0,-12],[-1,-12],[-2,-10],[-3,-25],[-2,-12],[0,-7],[0,-8],[0,-16],[-4,-19],[-1,-17],[0,-11],[-2,-10],[-2,-9],[-2,-9],[-2,-8],[-1,-12],[-3,-10],[0,-12],[-1,-25],[0,-14],[0,-16],[1,-13],[1,-12],[-1,-6],[0,-7],[-3,-18],[1,-13],[-1,-14],[0,-14],[0,-13],[-1,-15],[-10,-19],[0,-33],[1,-30],[1,-18],[1,-14],[1,-17],[0,-13],[1,-17],[0,-23],[0,-9],[-1,-8],[0,-11],[-2,-9],[-1,-4],[1,-9],[3,-10],[2,-10],[-2,-10],[-1,-14],[0,-12],[0,-16],[4,-31],[2,-22],[-1,-16],[-1,-12],[0,-15],[0,-13],[1,-15],[0,-13],[-1,-10],[-2,-39],[1,-24],[2,-21],[1,-18],[0,-20],[1,-19],[4,-17],[2,-16],[4,-7],[3,-4],[0,-11],[-1,-11],[1,-14],[5,-15],[4,-14],[2,-18],[4,-21],[5,-55],[0,-20],[0,-18],[2,-17],[1,-18],[2,-32],[3,-18],[2,-10],[2,-10],[3,-15],[4,-16],[2,-13],[12,-36],[2,-16],[2,-8],[3,-7],[2,-6],[1,-7],[0,-11],[-1,-17],[1,-11],[6,-10],[9,-6],[6,-4],[-1,-14],[1,-11],[2,-9],[5,-9],[5,-6],[3,-5],[6,-8],[3,-10],[1,-16],[4,-14],[7,-10],[12,-7],[13,-5],[17,-24],[1,-11],[2,-9],[4,-11],[7,-7],[7,-7],[6,-12],[15,-25],[13,-25],[4,-6],[4,-7],[4,-4],[5,-7],[5,-7],[10,-15],[20,-11],[13,5],[7,11],[9,12],[8,5],[11,-1],[16,-16],[9,-13],[8,-10],[6,-9],[7,-10],[13,-8],[17,9],[12,2],[8,2],[9,4],[5,7],[15,4],[13,10],[6,12],[10,1],[5,4],[8,7],[3,5],[4,-1],[3,-5],[6,-4],[3,1],[2,9],[4,3],[6,6],[6,7],[5,4],[7,1],[2,2],[8,0],[6,-1],[2,-2],[5,-4],[1,-1],[33,13],[2,2],[2,2],[4,1],[3,-1],[2,-1],[5,2],[6,2],[3,1],[8,1],[5,0],[4,0],[3,0],[3,3],[3,2],[2,-1],[6,-7],[1,1],[4,8],[6,10],[3,9],[12,7],[5,-2],[6,0],[9,1],[2,4],[3,4],[3,8],[6,7],[9,8],[5,-1],[9,0],[5,1],[4,3],[8,3],[6,-1],[5,-1],[5,-2],[8,0],[3,1],[8,5],[10,9],[19,13],[4,5],[8,4],[8,0],[12,0],[4,-3],[8,-7],[10,-3],[16,-9],[6,-9],[2,-6],[4,-5],[12,1],[8,5],[8,3],[9,0],[9,1],[15,1],[8,-3],[11,-10],[15,-6],[4,-1],[8,-2],[6,-2],[9,-1],[9,-2],[9,-1],[24,-2],[11,-3],[8,1],[9,1],[16,1],[12,-2],[5,-1],[8,-7],[20,-5],[25,0],[13,-1],[14,0],[8,0],[12,-3],[28,-5],[6,0],[5,1],[5,0],[3,-1],[4,-4],[5,-4],[7,-1],[3,-3],[3,-5],[6,-10],[6,-8],[3,-11],[-1,-15],[2,-5],[0,-4],[-1,-3],[-1,-2],[0,-7],[3,-4],[4,-1],[7,0],[7,1],[6,2],[10,3],[12,2],[13,0],[2,0],[8,-3],[9,-2],[4,-1],[6,-2],[5,-3],[4,-3],[1,-4],[-1,-5],[-1,-5],[-5,-1],[-2,-3],[1,-4],[2,-1],[4,0],[5,1],[2,-1],[0,-3],[-3,-6],[-3,-4],[-7,-10],[-2,-4],[-8,-4],[-3,-6],[1,-2],[5,0],[6,0],[1,-6],[-1,-6],[-3,-5],[-7,-17],[-6,-6],[-6,-3],[-6,-6],[-5,-9],[-2,-9],[-1,-9],[-5,-3],[-4,-6],[-10,-10],[-3,-3],[-7,-2],[-7,-3],[-2,-5],[-7,-2],[-10,1],[-14,-1],[-8,-4],[-1,-6],[0,-6],[2,-8],[-2,-4],[-6,-5],[-7,-2],[-5,3],[-15,3],[-5,-5],[-3,-1],[-12,2],[-8,-1],[-5,-5],[-11,-9],[-4,-1],[-9,-2],[-7,0],[-3,-3],[-1,-4],[1,-5],[-2,-4],[-7,-4],[-8,-2],[-10,-2],[-10,1],[-8,0],[-5,-1],[-6,-3],[-2,4],[0,7],[-2,6],[-7,-1],[-5,-5],[-4,0],[-5,7],[-4,4],[-9,3],[-10,1],[-7,5],[-4,4],[-8,4],[-6,1],[-9,-1],[-6,-5],[-1,-4],[-4,-7],[-4,-4],[-2,-5],[-8,-6],[-7,-1],[-6,5],[-15,2],[-13,1],[-11,-1],[-11,-1],[-9,-1],[-7,1],[-5,6],[-8,3],[-3,-1],[-9,-3],[-10,-3],[-8,-1],[-9,-1],[-8,1],[-9,2],[-8,3],[-8,3],[-4,-1],[-13,-4],[-9,-4],[-11,-3],[-2,-5],[-2,-5],[-2,-4],[-1,-3],[-10,-5],[-3,-3],[-3,-6],[-8,-1],[-8,-2],[-10,-11],[-12,-12],[-17,-6],[-11,-3],[-8,-5],[-7,-3],[-6,-3],[-5,-1],[-10,-1],[-2,-3],[-5,-5],[-17,-8],[-6,-8],[-2,-4],[-9,-3],[-7,-2],[-3,-3],[-8,-2],[-13,-1],[-8,0],[-5,-1],[-1,-2],[4,-5],[4,-4],[4,-1],[7,-2],[4,-5],[0,-4],[0,-1],[-3,-1],[-3,-6],[2,-5],[0,-4],[-4,-8],[-7,-4],[-7,-1],[-8,-4],[0,-9],[3,-1],[8,1],[8,1],[0,-3],[-1,-3],[-1,-3],[-1,-2],[3,-5],[7,0],[1,-3],[-3,-4],[-6,-7],[-2,-1],[-7,-1],[-8,0],[-1,-2],[0,-2],[0,-3],[0,-3],[-2,-1],[-4,1],[-7,1],[-2,-2],[-7,0],[-4,1],[-1,3],[-4,3],[-4,2],[-2,-1],[-12,2],[-6,-1],[-3,-3],[0,-4],[-1,-3],[-2,-3],[-4,-3],[-4,-3],[-3,-2],[0,-6],[-12,-9],[-11,-6],[-3,-2],[-7,-3],[-5,-1],[-3,-2],[-6,-6],[-4,-7],[-4,-5],[-5,-6],[0,-5],[-2,-6],[-2,-9],[-4,-9],[-1,-2],[-2,-2],[-7,-2],[-1,-3],[-2,-8],[-2,0],[-8,-2],[1,-10],[0,-5],[-2,-2],[-12,-5],[-9,-2],[-6,-8],[-14,-10],[-1,-12],[0,-9],[1,-8],[-6,-3],[-3,-2],[-4,-4],[0,-5],[0,-6],[-1,-1],[-3,-4],[-4,-3],[-2,-3],[-6,-3],[-4,-3],[-3,-4],[-2,-4],[-6,-4],[-1,1],[-2,1],[-3,-3],[0,-1],[-2,-1],[-1,-1],[-4,-1],[-2,-1],[-2,-2],[-4,-2],[-6,0],[-6,-2],[-3,-3],[0,-4],[-1,-2],[-1,-2],[-2,-1],[0,-2],[0,-4],[-6,-1],[-7,1],[-2,-3],[-2,-3],[0,-3],[-3,-3],[-5,0],[0,-5],[0,-6],[-3,-3],[-6,-3],[-2,-4],[-3,-4],[-1,-5],[0,-4],[-1,-2],[-4,-1],[-3,-1],[-3,-2],[-3,-4],[-7,-1],[-2,-1],[-3,-4],[-4,-4],[-4,0],[-4,3],[-2,-3],[-1,-4],[-3,0],[-5,5],[-5,1],[-4,-3],[-3,-3],[-6,-4],[-4,-2],[-4,-2],[-4,-1],[-9,3],[-3,4],[-3,7],[-2,5],[-6,5],[-3,0],[-5,-2],[-3,-3],[-3,-4],[-5,-5],[-4,-5],[-3,-4],[-7,-8],[-6,-13],[-11,-13],[-9,-12],[-8,-16],[-8,-7],[-7,-7],[-5,-11],[-4,-8],[-5,-5],[-10,-11],[-30,-32],[-4,-4],[-13,-5],[-14,-5],[-7,-1],[-10,-12],[-2,-12],[-3,-15],[-7,-20],[-6,-16],[-8,-15],[-4,-13],[-5,-14],[-10,-16],[-12,-12],[-8,-7],[-11,-10],[-50,-40],[-16,-12],[-29,-18],[-16,-26],[-34,-53],[-26,-40],[-20,-21],[-4,-9],[-7,-13],[-8,-17],[-6,-13],[-9,-25],[-15,-44],[-6,-14],[-6,-11],[-2,-8],[-1,-8],[-1,-9],[-1,-13],[-2,-23],[-2,-7],[-5,-5],[-3,-11],[2,-12],[0,-3],[0,-1],[1,-2],[6,-5],[1,-3],[-1,-6],[-7,-1],[-5,0],[-7,2],[-2,2],[-2,4],[-2,1],[-3,0],[-2,0],[-1,-2],[-3,-1],[-2,-2],[-2,-2],[-5,-2],[-3,-2],[-3,-3],[-4,-3],[-6,-1],[-6,-4],[-1,-6],[4,-6],[5,-6],[7,-6],[2,-7],[3,-6],[4,-7],[2,-2],[2,-8],[4,-7],[1,-6],[1,-6],[-1,-7],[-1,-3],[-2,-5],[-8,-3],[-8,-1],[0,-1],[-1,-4],[0,-4],[-1,-2],[-1,-1],[-2,-1],[-7,-4],[0,-5],[3,-5],[5,0],[0,-1],[11,-5],[13,-6],[15,-2],[7,-1],[6,-4],[5,-2],[6,-1],[5,-1],[4,-3],[8,-1],[8,-2],[6,-4],[5,-5],[4,-3],[3,-1],[9,-1],[7,0],[4,-1],[4,-3],[4,-2],[6,0],[7,0],[8,0],[11,-1],[5,-6],[4,-6],[11,-12],[2,-6],[7,-9],[8,-7],[3,-8],[0,-7],[4,-6],[4,-6],[1,-4],[0,-6],[2,-3],[1,-3],[1,-7],[1,-3],[2,-3],[2,-1],[1,-2],[1,-3],[0,-6],[3,-7],[-2,-5],[0,-3],[-4,-1],[-4,1],[-8,2],[-13,2],[-6,0],[-4,4],[-1,4],[0,3],[-7,3],[-5,3],[-6,0],[-5,-1],[-7,1],[-4,0],[-3,-1],[0,-7],[1,-4],[-1,-5],[0,-4],[-5,-3],[-9,1],[-8,3],[-19,5],[-26,4],[-8,-1],[-6,2],[-6,3],[-7,1],[-2,-2],[-4,-3],[-4,0],[-2,-3],[-1,-1],[-2,-6],[-1,-5],[-4,-4],[-8,2],[-3,6],[-5,1],[-7,-5],[0,-6],[-2,-12],[-4,-5],[-4,-4],[-5,0],[-2,-2],[-1,-5],[0,-6],[-3,-2],[-4,-5],[0,-4],[-3,-9],[-6,-2],[-7,-1],[0,-2],[1,-3],[2,-6],[-1,-6],[-11,-2],[-11,1],[-7,8],[-5,5],[-3,6],[-6,5],[-4,2],[-7,3],[-3,4],[-7,18],[-8,11],[-4,2],[-6,2],[-7,0],[-7,0],[-9,0],[-7,0],[-3,-3],[-2,-1],[-7,0],[-4,0],[-4,-4],[-6,0],[-5,0],[-6,-2],[-6,-6],[-3,-6],[1,-2],[8,-4],[6,0],[7,-4],[3,-4],[2,-7],[-1,-4],[-2,0],[-1,0],[-17,0],[-2,-3],[3,-3],[5,-3],[0,-3],[-5,-4],[-8,1],[-16,0],[-6,3],[-5,2],[-9,-2],[0,-7],[-3,-7],[-13,-2],[-1,10],[2,6],[0,6],[2,9],[7,5],[2,2],[1,5],[-4,1],[-8,7],[-4,11],[-9,1],[-10,0],[-10,0],[-7,-1],[-6,-2],[-5,0],[-5,-3],[0,-4],[1,-5],[1,-5],[-4,-4],[-3,-5],[-6,-2],[-5,0],[-11,0],[-8,2],[-2,7],[0,9],[0,8],[9,5],[6,-3],[6,2],[5,8],[2,8],[0,4],[0,7],[0,9],[-1,11],[-2,5],[-4,6],[-4,-1],[-1,-2],[0,-3],[-2,-6],[-5,-4],[-6,-4],[-6,-3],[-5,-1],[-5,-2],[1,-2],[0,-1],[0,-3],[0,-3],[-2,-2],[-6,1],[-1,1],[-5,0],[-4,0],[-3,1],[-2,4],[-2,6],[0,2],[-2,7],[0,7],[5,12],[3,6],[8,13],[4,5],[6,7],[6,6],[11,4],[4,1],[4,0],[3,0],[3,3],[3,5],[4,9],[1,1],[4,4],[3,1],[5,0],[4,0],[4,1],[2,7],[4,3],[5,1],[2,0],[3,-2],[4,1],[4,7],[2,4],[7,7],[2,2],[3,7],[4,5],[3,2],[2,4],[-1,13],[0,11],[2,1],[3,3],[-1,3],[-4,0],[-4,0],[-4,-3],[-1,-1],[-3,-3],[-3,-2],[-6,3],[-3,2],[-1,9],[0,10],[1,12],[0,9],[3,5],[6,7],[6,13],[9,8],[5,10],[-1,13],[-5,6],[-4,3],[0,9],[-1,8],[-4,-4],[-9,-2],[-1,6],[0,10],[4,9],[9,13],[12,7],[11,6],[6,10],[3,17],[4,10],[1,13],[-2,10],[-8,9],[-12,24],[0,32],[-3,13],[-7,12],[-8,9],[-21,33],[-11,17],[-35,32],[-12,13],[-5,5],[-11,4],[-23,5],[-16,11],[-26,17],[-64,45],[-24,8],[-32,30],[-16,13],[-16,16],[-26,4],[-18,-2],[-10,-3],[-14,1],[-10,4],[-6,6],[-7,-1],[-21,3],[-18,14],[-30,17],[-9,5],[-6,4],[-15,6],[-7,3],[-9,6],[-13,8],[-17,1],[-27,8],[-3,2],[-3,4],[-4,5],[-3,0],[-9,0],[-5,-1],[-9,1],[-10,6],[-11,8],[-10,10],[-7,-1],[-30,13],[-14,-1],[-10,2],[-10,3],[-9,5],[-5,2],[-10,7],[-19,2],[-15,7],[-11,10],[-16,1],[-7,1],[-25,3],[-27,16],[-12,5],[-18,5],[-13,0],[-22,-1],[-23,15],[-13,12],[-8,14],[-12,5],[-12,-1],[-11,0],[-17,0],[-8,0],[-21,0],[-18,0],[-16,1],[-22,1],[-17,5],[-13,5],[-10,4],[-12,9],[-30,7],[-19,7],[-1,0],[-28,-5],[-20,6],[-12,4],[-24,12],[-16,8],[-34,7],[-23,0],[-29,-6],[-37,-5],[-11,-1],[-19,0],[-11,-3],[-12,-2],[-11,2],[-5,3],[-4,4],[-6,2],[-15,-4],[-11,1],[-12,8],[-18,2],[-22,-1],[-11,0],[-26,6],[-55,7],[-13,-1],[-16,-1],[-14,3],[-5,4],[-21,4],[-9,-2],[-8,1],[-7,3],[-11,13],[-2,-1],[-13,1],[-6,-7],[-15,5],[-17,8],[-13,3],[-13,18],[-6,9],[-30,-2],[-22,3],[-19,9],[-8,6],[-13,1],[-30,3],[-14,-1],[-11,-1],[-29,-6],[-33,-4],[-22,4],[-20,3],[-21,0],[-14,-3],[-17,-4],[-14,-8],[-18,-7],[-29,-5],[-58,22],[-12,1],[-28,0],[-21,5],[-22,1],[-17,-4],[-8,-4],[-4,-2],[-20,-2],[-20,4],[-11,9],[-6,-2],[-14,-8],[-28,-5],[-21,2],[-24,-2],[-15,0],[-20,1],[-30,-2],[-10,0],[-25,0],[-13,4],[-25,25],[-26,24],[-25,4],[-25,-5],[-17,-5],[-26,-1],[-15,2],[-3,6],[-5,8],[-27,4],[-24,-4],[-20,-8],[-19,-6],[-20,6],[-3,2],[-4,2],[-22,19],[-17,1],[-11,0],[-15,0],[-16,-3],[-16,-3],[-18,-3],[-10,9],[-13,1],[-5,-11],[-9,-3],[-11,9],[-13,14],[-11,1],[-5,-6],[-4,-6],[-11,-1],[-10,-4],[-13,-4],[-3,5],[-15,8],[-10,2],[-11,-2],[-13,-8],[-10,-2],[-18,2],[-11,7],[-19,13],[-9,-2],[-16,-3],[-18,6],[-11,4],[-10,5],[-15,-1],[-4,-1],[-10,1],[-14,1],[-13,4],[-12,1],[-5,2],[-16,10],[-19,4],[-11,-1],[-10,-2],[-11,-7],[-11,-3],[-9,2],[-26,7],[-7,4],[-2,2],[-15,6],[-8,-5],[-10,-8],[-13,-8],[-16,-3],[-16,1],[-9,4],[-12,2],[-11,-2],[-12,0],[-9,0],[-13,-1],[-21,7],[-8,-2],[-14,-1],[-21,-2],[-10,0],[-12,3],[-28,4],[-6,2],[-5,2],[-10,0],[-11,0],[-11,-3],[-8,0],[-10,0],[-12,3],[-8,3],[-12,6],[-10,-1],[-8,-3],[-15,3],[-21,3],[-5,2],[-4,3],[-13,0],[-10,-2],[-7,-4],[-10,-3],[-7,-5],[-11,-2],[-20,-3],[-22,-1],[-18,1],[-22,5],[-18,0],[-25,0],[-23,9],[-16,7],[-16,2],[-4,-2],[-12,2],[-10,4],[-5,4],[-7,1],[-3,-1],[-10,-8],[-7,-6],[-22,-2],[-2,5],[-20,-2],[-3,-4],[-13,-3],[-13,15],[-12,1],[-4,0],[-7,-7],[-7,2],[-6,0],[-14,2],[-5,6],[-14,3],[-5,0],[-6,-2],[-14,-7],[-13,-3],[-7,1],[-11,7],[-11,2],[-3,2],[-1,-2],[-8,1],[-3,1],[-7,2],[-10,2],[-6,-4],[-21,-13],[-7,-9],[-5,-4],[-19,-11],[-14,4],[-4,9],[-12,3],[-25,2],[-14,5],[-11,4],[-18,0],[-28,-9],[-18,-9],[-20,-5],[-22,-3],[-24,-1],[-36,4],[-17,12],[-50,23],[-17,-6],[-30,-1],[-78,15],[-30,3],[-80,-10],[-15,-9],[-16,-3],[-22,-2],[-12,3],[-16,11],[-23,0],[-14,-10],[-14,-8],[-21,-3],[-51,-6],[-32,0],[-22,-1],[-21,2],[-37,7],[-22,-4],[-15,-4],[-24,-2],[-10,-2],[-19,1],[-17,2],[-4,-6],[-18,-1],[-45,6],[-8,-1],[-12,-5],[-22,0],[-27,14],[-30,4],[-23,6],[-10,2],[-9,1],[-7,-3],[-9,-7],[-9,-4],[-13,-1],[-13,3],[-16,1],[-8,1],[-13,1],[-9,0],[-12,-5],[-19,-2],[-30,-3],[-12,-5],[-10,-5],[-13,-6],[-14,0],[-12,0],[-14,0],[-11,-2],[-12,-2],[-19,1],[-21,-7],[-12,-14],[-12,-7],[-6,-1],[-23,0],[-16,-2],[-20,4],[-11,6],[-10,4],[-12,1],[-15,-2],[-13,-3],[-10,-1],[-15,-2],[-14,-1],[-14,-1],[-67,0],[-13,5],[-12,8],[-11,10],[-8,-1],[-11,1],[-3,3],[-8,4],[-19,5],[-15,1],[-12,-4],[-9,-7],[-6,-4],[-12,-1],[-12,0],[-12,-4],[-14,-5],[-10,-3],[-6,-1],[-12,-1],[-18,2],[-5,3],[-15,2],[-10,0],[-13,-3],[-10,-4],[-13,1],[-10,0],[-12,6],[-14,3],[-9,-1],[-6,-3],[-3,-1],[-6,0],[-9,1],[-8,1],[-9,3],[-8,-4],[-8,-1],[-9,0],[-2,2],[-26,1],[-6,0],[-11,0],[-8,2],[-13,0],[-13,-3],[-4,6],[-11,-3],[-13,-12],[-12,11],[-8,1],[-9,2],[-5,1],[-10,2],[-9,0],[-3,-1],[-6,2],[-3,-2],[-10,-5],[-11,3],[-6,-5],[-7,0],[-4,-4],[-5,-4],[-16,4],[-4,0],[-12,-2],[-15,1],[-9,6],[-8,2],[-7,-1],[-9,-4],[-9,-1],[-15,-7],[-9,4],[-12,-2],[-8,-5],[-8,1],[-3,4],[-6,-1],[-9,-7],[-10,-3],[-10,-1],[-12,0],[-14,0],[-9,0],[-15,-5],[-7,-11],[-11,-5],[-14,2],[-12,1],[-3,5],[-10,3],[-8,-8],[-11,-12],[-15,-2],[-19,8],[-10,8],[-8,0],[-16,-4],[-9,-6],[-17,-1],[-19,0],[-40,-18],[-6,-9],[-12,-7],[-10,-4],[-17,-5],[-13,-2],[-7,4],[-3,0],[-5,0],[-10,2],[-8,0],[-8,0],[-11,0],[-11,3],[-3,-3],[-5,-2],[-8,-9],[-7,-4],[-6,-4],[-5,-3],[-7,-2],[-4,2],[-7,1],[-7,3],[-8,0],[-11,0],[-11,-1],[-7,-7],[-6,-6],[-6,-7],[-5,-7],[-5,-3],[-11,-3],[-6,-2],[-8,2],[-7,3],[-4,2],[-4,0],[-4,0],[-6,-2],[-9,-4],[-8,-2],[-9,2],[-11,2],[-7,1],[-5,-4],[-3,-8],[-4,-5],[-8,-5],[-5,-2],[-8,-6],[-9,-2],[-2,-1],[-4,-1],[-3,0],[-3,-1],[-5,-3],[-5,0],[-5,0],[-4,-2],[-5,-3],[-5,-2],[-6,-1],[-6,-3],[-6,-2],[-3,-1],[-5,-1],[-9,0],[-7,-4],[-8,-6],[-9,-4],[-10,-2],[-6,1],[-5,0],[-5,-2],[-6,-4],[-5,-3],[-7,-4],[-5,-1],[-4,0],[-2,1],[-12,-5],[-5,1],[-9,2],[-7,3],[-3,3],[-1,4],[-3,6],[-7,-2],[-6,-3],[-7,-1],[-10,0],[-9,4],[-12,2],[-13,3],[-16,-2],[-5,-1],[-11,-2],[-11,-5],[-11,-12],[-11,-5],[-7,-2],[-14,-3],[-14,-1],[-13,2],[-18,0],[-11,-4],[-9,-3],[-12,-1],[-12,-11],[-11,-9],[-8,-3],[-18,-1],[-8,-2],[-9,-7],[-13,-7],[-5,-9],[-6,-8],[-14,-7],[-13,-1],[-16,-1],[-5,-1],[-8,-1],[-5,-4],[-5,-5],[-3,-16],[-8,-13],[-12,-1],[-2,2],[-4,4],[-5,3],[-2,4],[-13,4],[-11,3],[-10,-1],[-3,-2],[-4,-3],[-10,-11],[-12,-10],[-12,-5],[-8,-2],[-5,-2],[-11,-2],[-15,3],[-4,0],[-12,-1],[-6,-5],[-9,-9],[-12,-6],[-9,-2],[-10,0],[-6,-2],[-15,7],[-5,-1],[-8,-3],[-5,-4],[-9,-8],[-6,-14],[-10,-13],[-13,-2],[-14,-2],[-10,-2],[-10,0],[-6,-5],[-3,-10],[-2,-14],[-6,-13],[-7,-6],[-11,1],[-15,3],[-12,-5],[-9,-9],[-6,-6],[-3,-2],[-6,-5],[-6,-4],[-7,-3],[-8,1],[-7,2],[-4,0],[-8,-7],[-8,-7],[-6,-5],[-9,-3],[-7,-2],[-8,-3],[-7,-6],[-9,0],[-6,-5],[-6,-3],[-5,0],[-6,0],[-7,-4],[-7,-3],[-5,-3],[-9,-2],[-2,-11],[-3,-8],[-6,-7],[-3,-3],[-11,-2],[-4,-7],[-1,-6],[-2,-4],[-3,-3],[-7,-4],[-9,-5],[-7,-6],[-10,-8],[-7,-2],[-4,-2],[-3,-1],[-4,-2],[-1,-6],[-2,-11],[-3,-6],[-5,-5],[-5,-6],[-9,-7],[-14,-10],[-7,-5],[-2,-4],[-2,-6],[-3,-5],[-4,-4],[-1,-5],[1,-5],[1,-5],[2,-3],[0,-6],[1,-6],[1,-7],[5,-10],[6,-7],[4,-14],[-19,-30],[-1,-4],[-2,-1],[-1,-4],[-3,0],[-1,-3],[-7,-4],[-2,2],[-3,-4],[-1,-4],[-3,-1],[-3,2],[-4,0],[-2,-2],[0,-7],[5,-7],[7,-8],[9,-6],[2,-4],[4,-8],[2,-8],[3,-6],[3,-4],[4,-3],[1,-8],[-4,0],[-3,-7],[-2,-12],[6,-9],[4,-5],[7,-4],[7,-1],[4,-3],[5,-2],[8,0],[3,-2],[6,-9],[-2,-19],[-2,-5],[-3,-9],[-6,-3],[-7,-7],[-10,-1],[-7,-1],[3,-10],[4,-4],[6,-6],[0,-4],[-2,-4],[-5,-4],[-3,-5],[-7,-3],[-6,-2],[3,-6],[-1,-4],[-8,0],[-6,2],[-3,0],[-5,1],[-4,1],[0,-3],[2,-7],[-3,-5],[-9,-6],[-2,-1],[-5,-2],[1,-5],[-10,-1],[-6,3],[-4,1],[-6,-4],[-1,-3],[-3,-3],[-4,-1],[-17,2],[-13,12],[-1,0],[-7,0],[0,-3],[4,-2],[5,-4],[1,0],[1,-1],[2,-2],[5,-6],[-2,-4],[-11,-1],[-10,-5],[-10,-5],[-7,0],[-7,-1],[-8,-1],[-9,-1],[-4,0],[-5,3],[-4,0],[-6,-1],[-5,-2],[-5,1],[-5,1],[-13,-7],[-6,-2],[-9,1],[-8,-2],[-7,-3],[-5,-4],[-6,-5],[-9,-2],[-9,0],[-9,4],[-7,2],[-4,0],[-7,-2],[-3,0],[-4,3],[-4,0],[-3,-3],[-4,-4],[-2,-2],[-7,0],[-3,-4],[0,-3],[-2,-1],[0,-2],[1,-3],[1,-2],[0,-5],[3,-5],[4,-5],[4,-4],[4,-4],[6,-11],[3,-6],[5,-5],[5,-9],[12,-11],[5,-6],[6,-5],[5,-10],[-1,-6],[0,-7],[1,-4],[2,-7],[-11,-6],[-4,-4],[-5,-5],[-8,1],[-2,4],[-8,7],[-1,-5],[-4,-2],[-8,0],[-5,4],[-3,6],[-7,12],[-3,6],[-2,4],[-6,20],[-4,6],[-7,2],[-5,2],[-7,3],[-6,-1],[-7,-6],[2,-7],[-1,-3],[-6,-1],[-1,-6],[-8,-1],[-1,-9],[-2,-10],[-7,4],[-7,10],[-5,6],[-11,3],[-8,11],[-6,0],[-6,1],[-3,-4],[0,-8],[-3,-5],[-3,-5],[0,-9],[2,-4],[3,-5],[8,-5],[2,-8],[-9,-4],[0,-3],[-1,-5],[-7,-1],[-10,0],[-9,0],[-3,-4],[1,-3],[10,1],[3,-5],[3,-2],[13,-3],[1,-6],[-1,-11],[-7,-3],[-1,-5],[8,-9],[0,-9],[-11,7],[-4,2],[2,-6],[-6,-8],[-9,-8],[-13,-2],[-8,-6],[-6,-4],[-8,-1],[-1,-8],[0,-8],[-10,-1],[-5,1],[-13,5],[-7,6],[-9,10],[-8,5],[-7,0],[-4,-1],[-7,-6],[-8,-5],[-9,0],[-3,0],[-2,5],[-1,2],[-8,2],[-7,-1],[-4,2],[-8,5],[-2,-4],[0,-6],[1,-8],[3,-10],[-3,-1],[-3,6],[-7,2],[-5,-1],[-4,3],[-3,1],[-3,3],[-2,-3],[0,-1],[-4,1],[0,-4],[0,-7],[-1,-6],[-1,-4],[-3,1],[-3,1],[1,-5],[1,-2],[3,-4],[4,-4],[3,-5],[1,-5],[-3,-10],[-5,0],[-8,-2],[-9,-2],[-3,-1],[-9,0],[-3,3],[-5,2],[-2,-1],[-1,-1],[-4,-1],[-7,0],[-9,-1],[-7,1],[-8,7],[-3,5],[-3,6],[-1,5],[-2,4],[-9,4],[-3,0],[-11,5],[-4,6],[-7,1],[-6,-3],[-5,-2],[-2,-1],[-8,0],[-4,1],[-9,-1],[3,-6],[-1,-5],[-10,2],[-5,4],[-2,1],[-5,0],[-5,3],[-3,5],[-8,3],[-23,13],[-3,5],[-3,11],[-4,8],[-5,5],[-6,1],[-7,0],[-4,2],[-4,3],[-4,4],[-2,2],[-4,1],[-6,3],[-3,7],[-11,-3],[-10,-7],[-7,-5],[-9,-6],[-12,-5],[-6,-3],[-6,1],[-1,4],[-4,-3],[-6,-7],[-6,-6],[-12,-6],[-2,-3],[-6,-1],[-8,-2],[-4,-5],[-13,-36],[-1,-7],[-2,-4],[-5,-2],[-6,-3],[-7,0],[-7,1],[-4,-4],[-2,-7],[-1,-5],[-1,-5],[-1,-3],[1,-3],[3,-4],[-1,-3],[-3,-5],[-5,-2],[-2,2],[-1,5],[-1,4],[0,5],[-4,4],[0,2],[-1,4],[-2,-1],[-1,-3],[-1,-4],[1,-2],[0,-4],[-2,-1],[-8,2],[-5,-1],[-6,-3],[-1,-5],[-1,-3],[-9,-1],[-9,-6],[-20,-6],[0,-23],[-8,-24],[-13,-5],[-15,0],[-10,-5],[-6,-12],[-11,-15],[-3,-17],[-7,-10],[-17,-9],[0,-12],[-3,-10],[-17,-8],[-1,-7],[7,-16],[0,-17],[-18,-24],[-11,-12],[-3,-13],[-9,-18],[-9,-9],[-17,-13],[-7,-14],[-27,-34],[-9,-15],[0,-3],[-2,-5],[-12,-11],[-3,-5],[-1,-3],[-6,-9],[-2,-14],[0,-27],[4,-8],[2,-8],[3,-5],[5,-4],[5,1],[6,0],[10,-6],[3,-4],[1,-7],[0,-9],[2,-14],[-1,-10],[-5,-4],[-1,-12],[0,-8],[-2,-6],[-11,0],[-15,-9],[-6,5],[-1,9],[-1,12],[-9,3],[-18,-7],[-8,-9],[-22,-57],[-11,-15],[-4,-19],[-14,-28],[-5,-10],[2,-26],[-3,-23],[-11,-28],[-4,-14],[-3,-13],[1,-35],[-3,-8],[0,-11],[2,-15],[-4,-24],[-4,-12],[-4,-14],[0,-38],[5,-45],[4,-6],[3,-23],[23,-3],[24,-32],[13,-10],[19,-28],[8,-20],[24,-45],[14,-9],[18,2],[13,11],[8,-7],[2,5],[15,4],[6,15],[18,9],[2,-4],[0,-9],[-15,-20],[-6,-14],[5,-5],[4,0],[6,-3],[1,-10],[-3,-8],[-2,-7],[3,-14],[7,-3],[5,0],[8,-5],[4,-4],[-2,-13],[-6,-5],[-1,-19],[1,-10],[4,-2],[5,11],[19,18],[10,2],[13,-27],[13,-19],[3,-30],[0,-13],[2,-12],[13,-1],[6,-4],[1,-9],[-1,-19],[-8,-6],[0,-6],[-11,-45],[8,-14],[1,-4],[-2,-3],[-3,-2],[2,-7],[7,-2],[8,0],[0,-17],[2,-9],[-12,3],[-4,6],[-13,-1],[-5,-11],[-14,-22],[-1,-8],[-10,-7],[-7,-6],[-1,-8],[-1,-6],[-13,6],[0,5],[-1,7],[-1,3],[-9,0],[-4,0],[-8,-2],[-14,-1],[-4,-3],[-2,-6],[0,-11],[-17,-6],[-5,-5],[-8,-1],[-3,-3],[-12,-4],[-5,-5],[-14,-5],[-6,-4],[-11,3],[-14,7],[-12,-5],[-9,3],[-4,-1],[-4,-7],[-4,2],[-6,11],[-10,-4],[-7,-1],[-9,1],[-7,-1],[-6,-1],[-6,0],[-4,1],[-5,10],[-24,33],[-8,8],[0,11],[-8,12],[-3,9],[-20,16],[-17,2],[-4,14],[-9,-2],[-2,5],[-9,2],[-40,-14],[-33,-2],[-8,4],[-18,-1],[-8,-2],[-11,-16],[-1,-7],[-5,-2],[-10,1],[-21,-24],[-1,-28],[-3,-15],[-5,-10],[-4,-12],[2,-20],[-1,-12],[-3,-22],[-1,-13],[8,-34],[5,-11],[0,-14],[0,-11],[0,-8],[3,-4],[5,-5],[9,-5],[6,-11],[6,-16],[0,-19],[-8,-22],[-5,-9],[-9,-5],[-7,-5],[-3,-4],[0,-7],[-3,-4],[-4,-3],[0,-6],[0,-7],[1,-7],[1,-5],[-2,-3],[-5,-1],[-8,-1],[-13,-2],[-13,-1],[-15,-1],[-8,-5],[-8,-6],[-11,-5],[-8,-6],[-3,-9],[-7,-6],[-7,-1],[-9,-2],[-8,2],[-6,1],[-6,-1],[-8,-1],[-9,3],[-11,6],[-5,3],[-7,0],[-6,-2],[-5,-3],[-3,-4],[-3,-5],[-4,-5],[-5,-2],[-5,0],[-2,-5],[-4,-9],[-4,-1],[-10,3],[-7,-3],[-2,-9],[0,-8],[-2,-7],[0,-7],[-2,-1],[-4,-1],[0,-5],[-2,-7],[-1,-1],[-5,-4],[-5,-4],[-7,-4],[-4,-5],[2,-4],[5,-4],[5,-4],[5,-13],[-3,-6],[-7,-7],[-8,-5],[-7,-2],[-7,1],[-4,-2],[0,-6],[-2,-5],[-3,-8],[-1,-7],[-2,-5],[-4,-8],[-7,-1],[-11,0],[-2,0],[-5,-6],[2,-3],[2,-4],[1,-4],[-1,-5],[-16,-9],[-15,-6],[-4,-3],[-7,-4],[-6,0],[-8,-1],[-10,1],[-6,3],[-9,2],[-5,-2],[-3,-7],[-7,-8],[-4,-8],[-6,-3],[-4,-8],[-6,-4],[-3,3],[0,6],[-2,1],[-8,-6],[-5,-3],[-7,-5],[-8,-5],[0,-4],[-5,-5],[-10,-7],[-6,-6],[-7,-6],[-8,-6],[-10,-4],[-9,-4],[-5,-5],[-4,-3],[-5,-5],[-4,-3],[-4,-2],[-11,-7],[-6,-14],[-10,-9],[-6,-4],[-9,-4],[-10,-9],[-7,-7],[-10,1],[-5,2],[-4,0],[-3,-6],[0,-7],[-1,-1],[-2,-3],[-1,-6],[-2,-4],[-4,-6],[-18,-19],[-13,-9],[-20,-11],[-5,-3],[-7,-5],[-9,-3],[-8,-3],[-9,-5],[-5,-3],[-19,-11],[-3,-6],[-1,-5],[-3,-3],[-4,-2],[-5,-2],[-6,-1],[-5,-3],[-3,-5],[-2,-2],[-4,0],[-4,-1],[0,-3],[-2,-2],[-3,1],[-5,-1],[-4,-4],[-2,-4],[-1,-3],[-3,-3],[-1,-1],[-2,-2],[-1,-3],[-1,-1],[-6,-1],[-5,-1],[-8,0],[-1,1],[-4,-1],[-2,-1],[-5,3],[-6,2],[-3,0],[-4,-2],[-2,-2],[0,-4],[0,-4],[-7,-6],[-8,-4],[-5,-3],[-6,-5],[-10,-9],[-8,-9],[-7,-6],[-7,-3],[-5,-2],[-6,-4],[-6,-4],[-8,-4],[-3,-3],[3,-5],[1,-1],[4,-2],[3,-7],[0,-8],[-1,-4],[-4,-5],[1,-3],[3,-1],[7,-1],[2,-4],[-8,-3],[-9,0],[-8,-1],[-12,-2],[-5,3],[-2,3],[-10,-2],[-8,1],[-5,-5],[-4,-2],[-6,0],[-4,-1],[-1,-9],[-2,-7],[-5,-4],[-8,-6],[-5,-7],[-8,-7],[-6,-7],[-19,-11],[-20,-18],[-6,-4],[-6,-5],[-9,-9],[-6,-2],[-12,-6],[-12,-7],[-9,-1],[-6,4],[-11,-1],[-5,-11],[-6,-2],[-2,-4],[-4,-6],[-8,-4],[-1,-5],[-2,-6],[-1,-8],[-3,-3],[-4,2],[-3,-3],[-8,-2],[-9,3],[-4,2],[-4,4],[-10,5],[-3,0],[0,-4],[-1,-8],[-4,-4],[-2,-6],[-3,-2],[4,-10],[4,-3],[14,-3],[9,-8],[12,-6],[9,-11],[0,-13],[-2,-13],[-8,-5],[-16,-2],[-15,-2],[-12,-2],[-16,3],[-9,0],[-9,12],[-8,10],[-15,15],[-5,12],[-4,7],[-3,4],[-4,-2],[-4,5],[-5,6],[-4,2],[-6,-1],[-5,-2],[-10,-4],[-1,-7],[-4,-3],[-5,2],[-4,3],[-5,-3],[-1,-6],[1,-7],[0,-3],[-3,-5],[1,-9],[3,-4],[6,-7],[-1,-3],[-9,0],[-7,0],[-6,0],[0,-4],[-8,-2],[0,-4],[-1,-6],[-9,-11],[0,-9],[1,-4],[1,-6],[2,-4],[1,-5],[2,-4],[1,-6],[-3,-5],[-4,-4],[-7,0],[-5,2],[-4,7],[-1,4],[2,3],[-2,7],[-6,-1],[-3,-2],[-5,-4],[-7,1],[-1,3],[1,6],[-2,3],[-3,0],[-3,-1],[-3,0],[-3,3],[-2,0],[-3,-4],[0,-23],[-1,-32],[-4,-18],[-5,-41],[0,-12],[-1,-7],[1,-10],[2,-6],[6,-4],[1,-5],[-5,-7],[-4,-15],[-4,-8],[-14,-4],[-11,1],[-2,-4],[4,-5],[2,-2],[9,-1],[6,-4],[1,-4],[0,-23],[0,-6],[0,-9],[-3,-6],[-3,-6],[-2,-9],[-4,-4],[-10,-4],[-12,-3],[-11,-1],[-4,-4],[-1,-8],[2,-8],[6,-10],[9,-13],[11,-8],[5,-10],[0,-10],[0,-12],[-2,-8],[-4,-7],[0,-6],[-2,-12],[-2,-7],[-2,-3],[-3,-3],[-6,-7],[-5,-1],[-3,6],[-1,7],[1,6],[-2,5],[-6,6],[-5,-4],[-3,-2],[-1,-5],[1,-4],[1,-9],[-2,-3],[-2,0],[-3,-1],[-5,-2],[0,-6],[-4,-3],[-12,1],[-3,1],[-7,0],[-4,-4],[0,-4],[2,-5],[3,0],[2,-1],[1,-5],[-1,-5],[-3,-3],[-5,0],[-4,2],[-2,1],[-2,-5],[0,-4],[0,-3],[0,-6],[-1,-3],[-2,-4],[-3,-1],[-2,-6],[-1,-6],[1,-6],[-2,-5],[-4,-5],[-1,-4],[-1,-6],[-6,0],[-4,4],[-2,6],[0,3],[-2,3],[-1,1],[-2,-1],[-6,-4],[1,-3],[2,-5],[-1,-3],[1,-9],[-2,-13],[-5,-6],[-9,-6],[-7,-6],[-4,-5],[0,-9],[0,-9],[0,-8],[-12,-14],[-8,-6],[-7,-7],[-7,-2],[-7,-3],[-6,-4],[0,-6],[0,-5],[0,-7],[-5,-3],[-4,-1],[-8,0],[-8,1],[-8,-5],[-4,-5],[-9,-3],[-9,0],[-11,0],[-8,2],[-13,-2],[-11,-2],[-4,0],[-9,1],[-8,-1],[0,-7],[-7,-5],[-9,-5],[-7,-4],[-6,-5],[-8,0],[-11,3],[-13,3],[-6,-4],[-15,-1],[-14,2],[-7,-2],[-6,-5],[-7,-6],[-2,-10],[2,-10],[-3,-7],[-4,-5],[-8,0],[-4,-3],[-5,-2],[-3,1],[-6,13],[-5,4],[-11,-1],[-1,-6],[-1,-4],[-3,-6],[-8,-1],[-7,-2],[-10,-1],[-13,4],[-6,10],[-5,15],[0,18],[-1,9],[-5,6],[-7,3],[-17,1],[-2,0],[-7,-1],[-6,-1],[-15,-5],[-11,-3],[-8,0],[-3,1],[-9,-1],[-2,-3],[-6,0],[-12,0],[-4,-5],[-7,-6],[-6,-2],[-7,1],[-8,2],[-3,1],[-9,-2],[-4,-3],[-4,-2],[-1,-11],[6,-13],[-3,-9],[-13,-1],[-11,1],[-5,8],[-4,0],[-4,-5],[-2,-4],[-8,-2],[-6,0],[-6,-6],[-1,-7],[-2,-7],[-3,-8],[3,-5],[2,-3],[5,-5],[-1,-4],[-9,-1],[-4,0],[-10,1],[-10,0],[-16,-3],[-21,-13],[-7,-9],[-10,-15],[-17,-2],[-11,2],[-9,0],[-8,-8],[-11,-18],[-12,-18],[-9,-12],[-9,-12],[-4,-8],[1,-6],[0,-9],[-5,-2],[-8,0],[-11,2],[-16,0],[-13,0],[-14,0],[-28,-2],[-10,-1],[-6,-2],[-9,-1],[-11,2],[-15,-3],[-14,-4],[-18,-6],[-12,-1],[-12,1],[-21,0],[-26,-1],[-38,1],[-72,-2],[-13,1],[-13,-2],[-14,-1],[-9,0],[-17,-1],[-11,1],[-31,1],[-30,6],[-17,0],[-18,2],[-16,6],[-10,4],[-10,6],[-13,-1],[-12,0],[-20,5],[-13,3],[-8,6],[-2,9],[-2,1],[-12,1],[-8,2],[-9,5],[-8,5],[-16,8],[-11,10],[-6,4],[-7,0],[-13,1],[-6,2],[-11,7],[-6,9],[-8,7],[-8,0],[-13,-2],[-4,3],[-13,5],[-19,12],[-36,22],[-17,23],[-23,32],[-29,44],[-21,33],[-2,19],[-4,19],[-5,21],[-2,13],[-5,14],[-20,30],[-12,13],[-16,18],[-21,16],[-7,13],[-2,17],[6,8],[-2,3],[-10,1],[-11,2],[-10,8],[0,2],[8,5],[0,4],[-2,3],[-3,2],[-10,1],[-7,5],[-8,8],[-2,7],[-6,10],[-3,1],[-3,1],[-7,2],[-3,0],[-3,3],[-1,-1],[-13,7],[-8,3],[-8,2],[-7,8],[-7,8],[-3,5],[-8,0],[-10,1],[-9,7],[-15,0],[-3,0],[-13,-3],[-30,1],[-14,-2],[-8,-3],[-13,-1],[-13,8],[-10,12],[-8,5],[-10,-1],[-7,-2],[-14,0],[-10,3],[-6,5],[-18,1],[-1,-2],[-10,-4],[-11,-2],[-26,7],[-3,3],[-4,6],[-8,6],[-17,1],[-9,0],[-10,1],[-25,13],[-11,11],[-16,8],[-12,0],[-25,-4],[-26,3],[-31,5],[-10,4],[-11,2],[-5,0],[-8,-3],[-8,-7],[0,-5],[1,-8],[4,-11],[3,-7],[5,-8],[4,-11],[1,-9],[-1,-7],[-2,-5],[-4,-2],[-13,-1],[-3,-1],[-12,2],[-9,-1],[-10,0],[-8,-2],[-13,-1],[-8,0],[-20,7],[-20,15],[-48,58],[-17,17],[-23,5],[-58,22],[-26,8],[-17,10],[-12,5],[-18,4],[-13,1],[-10,0],[-12,2],[-41,17],[-6,2],[-20,5],[-17,2],[-18,2],[-15,5],[-13,5],[-8,17],[-12,2],[-18,9],[-31,22],[-15,28],[-12,14],[-13,2],[-14,2],[-4,-5],[0,-9],[-12,-3],[-13,11],[-15,14],[-17,9],[-17,13],[-19,2],[-6,-2],[-14,-6],[-17,-3],[-4,-7],[2,-10],[5,-6],[5,-11],[-2,-7],[-15,-6],[-14,-5],[-11,-1],[-3,-5],[-4,-6],[-10,-9],[-17,1],[-11,5],[-8,2],[-10,2],[-32,30],[-12,9],[-6,3],[-20,6],[-8,0],[-4,-2],[-8,-1],[-10,2],[-8,0],[-12,5],[-4,10],[-10,6],[-21,2],[-41,21],[-21,5],[-10,8],[-22,10],[-11,8],[-17,-10],[-1,-8],[-3,-15],[-13,-9],[-19,-14],[-17,-10],[-25,-12],[-31,-5],[-29,-13],[-13,-16],[-3,-22],[-13,-10],[-57,-12],[-78,-45],[-63,-29],[-75,-26],[-84,-28],[-80,-24],[-124,-10],[-53,-15],[-139,-41],[-107,-43],[-76,-24],[-103,-34],[-141,-13],[-125,-22],[-47,0],[-77,-2],[-69,2],[-49,2],[-61,-7],[-43,-11],[-63,-26],[-63,-4],[-94,-4],[-71,-1],[-43,-1],[-61,-7],[-55,0],[-44,-1],[-35,-6],[-57,-26],[-94,-7],[-110,-16],[-46,9],[-17,12],[-6,17],[-9,9],[-25,10],[-11,-1],[-11,5],[-12,4],[-7,0],[-4,0],[-7,-2],[-8,6],[-3,8],[-7,-6],[-13,-1],[-10,8],[-6,0],[-4,-1],[-4,-6],[-3,-3],[-7,1],[-7,5],[-8,5],[-5,2],[-11,1],[-6,0],[-4,-2],[-3,-3],[-9,-5],[-7,-5],[-6,-3],[-7,-4],[-5,-3],[-7,-2],[-6,-2],[-5,-4],[-4,-1],[-7,-1],[-6,0],[-7,-3],[-7,-3],[-14,-7],[-11,-6],[-13,-6],[-15,-2],[-18,-6],[-19,-6],[-30,-10],[-26,-5],[-30,-4],[-22,1],[-12,0],[-33,11],[-10,0],[-12,-2],[-7,3],[-4,-3],[-10,-12],[-1,2],[-5,3],[-6,-2],[-9,-3],[-14,-1],[-15,-4],[-36,-18],[-11,-4],[-7,-2],[-12,-4],[-10,-6],[-18,-9],[-14,-11],[-14,-12],[-8,-5],[-7,-3],[-10,-5],[-12,-4],[-15,-1],[-10,-1],[-8,0],[-10,1],[-13,-3],[-9,-3],[-8,-2],[-11,-2],[-6,-2],[-5,-1],[-5,-2],[-8,-2],[-3,-2],[-10,-4],[-15,-5],[-8,-1],[-10,-4],[-18,-7],[-5,-3],[-13,-4],[-7,-5],[-15,-6],[-15,-4],[-22,-6],[-5,-2],[-13,-3],[-7,-1],[-5,-2],[-3,-3],[-2,-2],[-4,-3],[-8,-5],[-9,-2],[-3,-3],[-10,-4],[-13,1],[-11,0],[-11,-4],[-12,-4],[-8,-2],[-6,-2],[-6,2],[-5,3],[-3,0],[-7,-3],[-6,-3],[-5,-1],[-1,-3],[-5,0],[-2,3],[-4,-1],[-5,-2],[-5,1],[-6,0],[-5,0],[-4,-1],[-4,-3],[-4,-2],[-2,0],[-2,-1],[-3,-1],[-4,1],[-2,0],[-2,-1],[-5,0],[-2,-4],[-6,-1],[-5,0],[-5,1],[-5,2],[-4,1],[-5,-2],[0,-3],[0,-3],[-1,-3],[-1,-2],[-4,-1],[-3,0],[-2,-4],[-3,-1],[-3,1],[-1,1],[-2,0],[-4,0],[-6,-1],[-6,0],[-5,-3],[-3,-3],[-5,-2],[-5,-2],[-5,-5],[-6,-5],[-7,-1],[-8,-4],[-4,-6],[-4,-5],[-4,-4],[-4,-3],[-4,-4],[-3,-2],[-4,-3],[-2,-3],[-8,-3],[-1,-1],[-5,-2],[-5,-4],[-2,-1],[-4,-5],[-6,-3],[-11,-12],[-10,-9],[-10,-10],[-10,-10],[-11,-8],[-9,-8],[-8,-9],[-6,-6],[-13,-13],[-14,-22],[-7,-5],[-10,-4],[-8,-4],[-9,-4],[-10,-2],[-12,0],[-5,-1],[-8,-4],[-9,1],[-6,1],[-6,0],[-16,0],[-2,1],[-9,0],[-5,0],[-9,-1],[-4,-4],[-7,-4],[-8,0],[-5,1],[-5,0],[-1,-1],[-3,-5],[-3,-2],[-2,0],[-6,-1],[-15,0],[-13,5],[-6,4],[-12,2],[-5,0],[-9,0],[-8,-4],[0,-1],[-2,0],[-6,-5],[-5,-5],[-7,-4],[-7,-5],[-8,-2],[-6,1],[-6,-5],[-3,-5],[-6,-6],[-3,-5],[-5,-5],[-6,-1],[-5,-2],[0,-4],[-1,-4],[-6,-1],[-3,1],[-2,-1],[-2,-4],[-1,0],[-5,-2],[-9,-2],[-6,-7],[-8,0],[-6,0],[-4,-3],[-4,-1],[-1,0],[-2,-3],[-4,-1],[-4,-1],[-3,-4],[-1,-4],[-5,-5],[-2,-5],[-1,-5],[-3,-4],[-1,-4],[-3,-4],[-1,-2],[-3,-2],[-4,-1],[-7,1],[-3,1],[-1,-3],[-3,-9],[-3,-9],[-5,-4],[-4,-5],[-4,-3],[-7,-4],[-9,-1],[-6,0],[-5,-1],[-9,-1],[-11,-5],[-4,-3],[-14,-5],[-2,-1],[-3,-1],[-2,-1],[-2,0],[-3,-1],[-2,-2],[0,-3],[-1,-4],[-1,0],[-7,0],[-1,-4],[1,-3],[-1,-3],[-3,-2],[-5,-1],[-3,2],[-5,2],[-3,0],[-5,-2],[-2,-1],[-4,-1],[-8,-9],[-7,-3],[-3,5],[-6,4],[-3,-2],[-5,-4],[-3,-4],[-3,-3],[-3,-3],[-2,-2],[-3,-2],[-4,-1],[-5,-1],[-4,0],[-2,-2],[-1,-2],[0,-4],[-3,0],[-2,1],[-2,0],[-2,-2],[0,-2],[0,-4],[-3,0],[-3,0],[-6,-5],[-5,-4],[-20,-3],[-31,0],[-30,-13],[-24,-11],[-32,-2],[-27,5],[-12,-3],[-9,-5],[-10,-2],[-10,-1],[-11,-4],[-8,0],[-8,-6],[-6,-10],[-11,-10],[-13,-2],[-64,3],[-16,-36],[-22,-44],[-11,-21],[-16,-14],[-12,12],[-14,-10],[-15,-23],[-14,-33],[-4,0],[-7,0],[-7,-1],[-6,-5],[-6,-5],[-5,-4],[-6,-1],[-2,0],[-7,-4],[-2,-7],[0,-12],[4,-15],[-1,-3],[-1,-4],[-3,0],[-1,1],[-3,0],[-3,-5],[-2,-7],[-1,-5],[-1,-4],[-1,-3],[-5,-2],[-9,1],[-3,0],[-3,-1],[-4,-10],[3,-9],[5,-10],[4,-10],[2,-18],[6,-25],[2,-22],[1,-21],[1,-18],[-1,-15],[-1,-19],[-1,-4],[-3,-16],[-3,-36],[0,-17],[1,-21],[-1,-44],[-1,-2],[-1,-12],[2,-11],[2,-13],[-2,-17],[0,-30],[1,-17],[-6,-14],[1,-8],[4,-12],[8,-8],[3,-5],[2,-5],[3,-5],[8,-7],[3,-7],[-3,-5],[-6,-6],[0,-13],[-7,-4],[-5,3],[-11,-2],[-1,-9],[-8,-4],[-2,-10],[-1,-5],[0,-15],[3,-3],[4,-9],[2,-6],[2,-8],[-1,-8],[3,-7],[-6,-11],[2,-9],[-1,-5],[-2,-5],[-5,0],[-8,-12],[1,-3],[0,-4],[-1,-5],[-4,-1],[-6,1],[-6,3],[-2,6],[-5,1],[-6,-1],[-6,9],[-1,5],[-2,4],[-4,4],[-8,-4],[-4,-6],[1,-3],[-4,-14],[1,-8],[-3,-8],[-7,-3],[-7,0],[-2,-10],[1,-9],[-1,-12],[-8,-6],[-7,2],[-10,4],[-3,3],[-4,10],[-12,-2],[-5,9],[-3,2],[-5,5],[-5,10],[-7,-9],[-5,-13],[-5,-18],[-8,-14],[-4,-8],[-7,-13],[-6,-10],[-4,-8],[-5,-4],[-9,-10],[-6,-6],[-6,-3],[-5,-6],[-7,-7],[-10,-13],[-7,-11],[-7,-28],[-11,-20],[-9,-17],[-3,-14],[1,-12],[3,-8],[-3,-10],[-5,-13],[-4,-14],[-11,-14],[-11,-22],[-8,-11],[-15,-16],[-7,-14],[-6,-9],[-7,-8],[-6,-7],[-8,-5],[-7,-5],[-13,-4],[-11,-4],[-14,-4],[-10,-4],[-13,-1],[-10,-1],[-12,-1],[-6,-5],[-18,-8],[-12,-4],[-8,-2],[-5,-3],[-4,-3],[-7,-2],[-14,1],[-4,7],[-5,0],[-14,-1],[-4,2],[-2,9],[1,10],[-2,10],[-5,13],[-4,-6],[-7,-11],[-4,-8],[-7,-12],[-8,-5],[-15,-5],[-10,3],[-12,8],[-7,11],[-1,5],[-8,30],[-6,11],[-3,13],[-15,4],[-9,4],[-6,8],[-3,11],[-2,3],[-12,5],[-10,2],[-12,2],[-9,1],[-14,-1],[-14,-6],[-19,9],[-5,5],[-7,0],[-8,-3],[-8,-2],[-8,2],[-7,11],[-3,12],[-3,8],[-7,1],[-13,2],[-18,1],[-23,-15],[-132,-102],[-16,-3],[-10,-15],[-12,-25],[-3,-11],[-9,-22],[-10,-10],[-6,-8],[-11,-8],[-11,-3],[-7,-1],[-10,-2],[-7,-15],[-2,-2],[-2,-9],[0,-6],[-2,-4],[-5,-2],[-4,-3],[-1,-4],[-1,-3],[-5,-1],[-2,1],[-4,-1],[-1,-1],[-3,3],[-2,-2],[-3,-3],[-2,-1],[-6,-1],[-7,-3],[-7,6],[-7,2],[-12,1],[-4,-9],[-5,-6],[-5,0],[-11,1],[-5,6],[-2,10],[-2,6],[-2,7],[-6,12],[-18,4],[-8,6],[-6,3],[-11,-7],[-15,-11],[-12,-12],[-21,-5],[-14,-11],[-11,-3],[-6,-3],[-8,-4],[-12,-2],[-31,-14],[-13,-10],[-26,-6],[-9,-8],[-12,-3],[-17,-15],[-10,-7],[-4,-12],[-3,-14],[-3,-10],[-7,-16],[-2,-3],[-1,-5],[-2,-5],[-1,-5],[0,-6],[-3,-11],[-5,-3],[-4,9],[1,4],[0,7],[-7,-2],[-4,-7],[-1,-4],[1,-12],[-2,-7],[3,-6],[1,-8],[-4,-14],[-2,-2],[-2,-6],[-4,-2],[-4,-5],[0,-9],[-3,-3],[-5,-3],[-4,1],[-1,5],[-4,2],[-9,-8],[-4,3],[-4,-1],[-3,-3],[-5,-8],[-4,3],[-2,3],[-9,-1],[-4,-3],[1,-5],[3,-5],[-4,-8],[-5,-7],[-4,-3],[-7,-2],[-4,-6],[-8,2],[-4,-2],[-6,-16],[-3,-7],[-1,-9],[6,0],[9,4],[4,-4],[-5,-18],[1,-3],[-2,-8],[-2,-4],[-1,-5],[2,-5],[2,-5],[-4,-8],[0,-5],[2,-5],[5,-5],[2,-6],[-2,-11],[-10,-6],[-4,-1],[-7,4],[-4,3],[-4,0],[-1,-3],[-2,-8],[-7,-8],[-10,2],[-5,2],[-4,-4],[-7,-6],[-7,-1],[-2,-1],[-5,11],[1,6],[3,10],[1,9],[-8,2],[-8,0],[-8,-4],[-4,3],[-5,-4],[-8,-9],[-7,-1],[-2,-4],[3,-13],[8,2],[13,-6],[4,-9],[6,-4],[1,-10],[1,-6],[4,0],[3,3],[3,6],[6,4],[8,-1],[3,-8],[1,-12],[-4,-9],[-6,-8],[-1,-4],[-9,-8],[-6,1],[-8,4],[-7,0],[-5,10],[-3,5],[-4,6],[0,7],[-5,4],[-2,6],[-3,5],[-6,3],[-10,-3],[-3,-6],[-1,-7],[-7,-12],[-7,-5],[-8,0],[-9,3],[-3,3],[-5,17],[-5,1],[-9,0],[-1,0],[-3,9],[-2,5],[2,12],[3,9],[1,8],[-9,0],[-4,-4],[-8,-6],[-6,-2],[-5,-5],[-1,-10],[-5,-3],[-4,0],[-3,-4],[5,-8],[1,-9],[1,-10],[-2,-7],[-9,-13],[-7,-6],[-3,-8],[6,-11],[-1,-9],[-6,-3],[-6,-2],[-2,-1],[-7,3],[-1,3],[-1,8],[-2,4],[0,7],[0,6],[-4,7],[-4,-3],[-5,-11],[0,-10],[1,-6],[-5,-17],[-6,-4],[-3,-5],[2,-8],[-1,-5],[-2,-14],[8,-4],[5,1],[5,-3],[3,-8],[-3,-9],[-6,-4],[-3,-2],[-6,2],[-2,0],[-3,8],[1,4],[-1,8],[-4,1],[-10,-9],[-7,0],[-11,-4],[-5,1],[-7,-5],[-9,-6],[-1,-2],[2,-6],[4,-2],[4,-7],[-3,-11],[-4,-10],[-4,-5],[-8,0],[0,-6],[-8,-6],[-3,-4],[-5,-8],[-8,0],[-5,-5],[-1,-10],[2,-6],[-1,-12],[-2,-11],[3,-9],[3,-4],[4,-3],[2,-3],[1,-9],[-2,-7],[-4,-5],[-6,1],[-4,10],[-3,0],[-14,-6],[-8,1],[-2,7],[-2,-3],[0,-6],[-8,-9],[-4,-7],[-3,-8],[-4,-2],[-9,5],[-3,-4],[-5,-11],[-5,1],[-9,9],[-5,10],[-1,8],[5,3],[6,2],[8,5],[5,0],[4,6],[2,8],[-1,6],[-6,2],[-2,5],[-6,5],[-9,5],[-3,0],[-10,0],[-5,-7],[-2,-11],[-8,-7],[-2,-8],[-8,-7],[-10,-2],[-8,3],[-6,10],[1,7],[-2,10],[-1,8],[-15,-9],[-9,-9],[-12,-8],[-11,3],[-8,-7],[-16,0],[-7,6],[-11,-9],[-12,-5],[-14,-10],[-15,-8],[-13,-15],[-14,-5],[-10,-1],[-8,-6],[-7,-16],[-8,3],[-5,0],[-18,-11],[-2,-7],[-12,-21],[-4,-11],[-1,-8],[1,-18],[7,-6],[6,-7],[5,-6],[3,-4],[3,-6],[-1,-11],[-6,-5],[-5,-4],[-6,-2],[-9,0],[-6,2],[-4,5],[-3,8],[-1,9],[2,9],[1,8],[0,7],[-3,1],[-7,0],[-1,10],[-6,0],[-6,-6],[-8,-5],[-3,-10],[3,-5],[3,-6],[3,-10],[1,-9],[0,-10],[-2,-10],[-3,-5],[-3,-4],[-8,-1],[-4,1],[-2,8],[1,11],[2,10],[3,8],[0,8],[0,6],[-3,6],[-20,-4],[-7,-3],[-2,-4],[-16,-6],[-7,-3],[-2,-12],[-5,-9],[-3,-8],[-5,-14],[-6,-4],[-5,-7],[-3,-11],[-4,-8],[-9,-11],[-1,-3],[-10,-5],[-6,-1],[-3,-3],[-4,-8],[-6,-4],[-1,-5],[-7,-5],[-4,-3],[-1,-12],[-5,-9],[-6,-2],[-4,-5],[-1,-9],[-7,-9],[-5,-1],[-4,-4],[-6,-6],[1,-2],[0,-10],[-4,-4],[-6,-4],[-3,-9],[-2,-1],[-9,-9],[-2,-9],[1,-6],[3,-7],[-3,-11],[-2,-2],[-3,-8],[-1,-7],[2,-2],[4,-5],[-1,-9],[-2,-5],[0,-7],[4,-5],[0,-7],[-5,-11],[-5,-4],[-6,-4],[-2,-9],[-3,-10],[3,-6],[4,-6],[-6,-9],[1,-6],[3,-15],[-2,-11],[0,-14],[-2,-12],[-4,-9],[-5,-6],[-9,-15],[-6,-12],[-7,-4],[-10,-12],[-6,-5],[-5,-1],[-7,0],[-9,3],[-3,6],[-8,3],[-5,-5],[-9,-4],[-4,8],[-10,-2],[-7,-5],[-5,-10],[-13,-8],[-6,-17],[-5,-17],[-7,-16],[-5,-6],[-4,-11],[1,-8],[0,-9],[-2,-13],[-8,-9],[-4,-9],[-6,-15],[-5,-8],[-6,-13],[0,-10],[0,-10],[-6,-13],[-8,-11],[-10,-18],[2,-12],[4,-10],[1,-16],[4,-14],[4,-7],[4,-6],[3,-10],[-1,-15],[3,-14],[5,-11],[1,-10],[-2,-19],[-4,-7],[-6,-14],[-4,-10],[-9,-10],[-3,-8],[-3,-8],[-9,-11],[-11,-4],[-9,-2],[-6,-1],[-5,-2],[-8,-13],[-9,-6],[-7,-4],[-6,-8],[-2,-15],[9,-14],[5,-5],[8,-4],[12,-4],[9,-4],[10,-8],[8,-13],[-1,-13],[6,-20],[1,-8],[0,-16],[2,-19],[3,-10],[7,-7],[7,-6],[6,-8],[3,-7],[5,-13],[3,-14],[0,-16],[2,-14],[-2,-23],[-1,-16],[8,-8],[6,-4],[3,-9],[2,-7],[-2,-13],[0,-6],[8,-10],[2,-18],[-7,-10],[-5,-5],[0,-13],[5,-9],[3,-7],[0,-11],[-4,-11],[-5,0],[-7,-4],[2,-9],[0,-20],[6,-3],[2,-10],[7,-10],[5,-9],[2,-9],[4,-15],[4,-8],[0,-8],[2,-13],[8,-13],[3,-19],[-3,-14],[-4,-8],[-3,-15],[9,-1],[6,-3],[7,-7],[7,-1],[6,-5],[4,-8],[1,-13],[2,-8],[0,-10],[0,-16],[6,-3],[7,-7],[2,-12],[-4,-8],[0,-4],[-1,-10],[-5,-9],[-2,-9],[2,-3],[1,-5],[-1,-10],[6,1],[4,-2],[4,0],[1,-8],[1,-7],[5,0],[4,-4],[2,-2],[2,-11],[3,-6],[9,-7],[4,-6],[1,-8],[-4,-6],[-5,-13],[2,-8],[0,-9],[-5,-13],[-6,-12],[-8,-10],[4,-18],[6,-3],[5,-8],[3,-6],[0,-5],[2,-4],[-1,-5],[-1,-5],[6,-1],[3,-1],[7,-5],[1,-11],[3,-4],[4,-4],[1,-6],[1,-11],[2,-10],[5,-5],[4,-17],[-3,-5],[8,0],[5,-13],[6,0],[5,-7],[0,-10],[0,-12],[-4,-10],[-4,-5],[3,-10],[-5,-5],[-4,-10],[0,-16],[-5,-6],[0,-6],[6,-8],[-2,-13],[-2,-6],[1,-9],[-2,-17],[1,-15],[3,-32],[4,-26],[0,-6],[-3,-15],[5,-3],[8,-3],[-1,-15],[-1,-12],[4,-5],[-1,-14],[4,-6],[8,7],[8,4],[10,-4],[16,1],[5,-5],[4,-4],[9,-10],[10,7],[3,-4],[9,-9],[2,-8],[5,-17],[6,1],[13,-1],[8,-5],[-2,-10],[8,-19],[6,8],[7,8],[3,4],[8,7],[9,-1],[12,-3],[10,-10],[5,-7],[4,-4],[6,-9],[3,-8],[-2,-8],[4,-14],[7,-8],[7,-10],[1,-19],[-4,-13],[3,-12],[-4,-15],[-2,-15],[-3,-7],[-5,-27],[-1,-9],[1,-11],[-4,-9],[-3,-5],[-1,-9],[-6,-3],[-5,-2],[-3,-6],[-1,-11],[-6,-8],[-6,-6],[-4,-9],[-1,-10],[-4,-14],[-8,-11],[1,-5],[4,-5],[0,-13],[-2,-13],[-5,-7],[-3,-12],[-7,-6],[-4,-7],[0,-9],[-2,-12],[-11,-20],[-1,-8],[-2,-16],[-5,-17],[-7,-11],[-7,-9],[-8,-11],[-5,-7],[1,-6],[-3,-15],[-6,-10],[-2,-14],[3,-9],[3,-11],[-2,-13],[-4,-16],[1,-14],[-1,-16],[-7,-7],[-9,-4],[-11,3],[-5,12],[-11,7],[-11,-9],[-4,-4],[-5,-6],[-5,-6],[-5,-5],[-6,-11],[-14,-9],[-9,-7],[-8,-1],[-6,1],[-3,13],[0,18],[-8,7],[0,9],[-18,16],[-7,16],[-2,20],[0,16],[-10,27],[-10,18],[-8,17],[-7,18],[-1,2],[-15,2],[-3,5],[-4,13],[-1,6],[-2,15],[-2,7],[-1,7],[0,14],[-1,8],[2,9],[2,6],[1,9],[0,7],[0,6],[-2,11],[-1,15],[1,20],[0,5],[2,6],[7,4],[7,2],[4,4],[0,5],[-3,7],[-3,10],[-1,8],[0,14],[-1,11],[-3,25],[0,11],[1,13],[-2,15],[-11,5],[-4,19],[-3,15],[-10,14],[-18,4],[-13,6],[-6,7],[-7,5],[-9,2],[-7,5],[-5,9],[1,7],[-3,12],[-5,15],[-7,9],[-11,1],[-10,-5],[-5,-8],[-4,-12],[-4,-14],[-5,-8],[-8,-7],[-10,-1],[-10,-5],[-10,-7],[-4,-10],[-12,-20],[-5,-3],[-10,-11],[-8,-8],[-7,-6],[-15,-5],[-9,0],[-9,-8],[-8,-9],[-12,-10],[-10,-2],[-7,-5],[-6,-8],[-8,-5],[-16,-10],[-8,-4],[-9,-4],[-11,-9],[-9,-4],[-28,-1],[-8,-6],[-10,-2],[-9,5],[-7,4],[-9,-5],[-12,1],[-8,5],[-16,6],[-9,0],[-11,-6],[-14,0],[-8,1],[-5,7],[-10,6],[-2,7],[-9,14],[-13,4],[-12,-1],[-6,6],[-5,15],[0,14],[-3,4],[-4,11],[-5,11],[-7,4],[-5,4],[-3,15],[-1,15],[-5,9],[-8,3],[-11,2],[-6,5],[-4,18],[2,19],[-1,13],[-6,9],[-7,1],[-8,1],[-9,0],[-8,-2],[-11,-6],[-9,0],[-7,8],[-2,19],[5,15],[6,16],[0,15],[-11,3],[-5,9],[-7,3],[-25,3],[-8,7],[-10,14],[-5,4],[-14,-11],[-15,-10],[-9,3],[-12,16],[-14,9],[-5,9],[-16,-4],[-14,10],[-8,5],[-11,-5],[-6,-4],[-15,-17],[-6,-13],[-7,-18],[-21,-4],[-8,0],[-20,-8],[-11,-12],[-4,-4],[0,-7],[4,-9],[-13,-18],[-6,-11],[-6,-12],[-3,-14],[-11,-12],[-5,-10],[-3,-12],[-8,-11],[-6,-4],[-5,-11],[-3,-17],[-6,-20],[-8,-7],[-14,3],[-2,5],[-8,-1],[-5,-3],[-9,-1],[-2,4],[-2,18],[1,9],[-3,11],[-5,0],[-8,-11],[-6,-9],[-9,-8],[-10,1],[-3,7],[-1,18],[5,18],[8,18],[7,13],[3,16],[-3,8],[-10,1],[-12,-8],[-13,-11],[-26,-34],[-5,-18],[-10,-23],[-6,-12],[-11,-15],[-1,-16],[-7,-9],[-4,-8],[-11,-7],[-6,-4],[-8,1],[-6,-3],[-9,-10],[-9,2],[-4,12],[-6,3],[-6,7],[0,10],[1,11],[0,13],[-7,7],[-2,5],[-4,5],[-7,-2],[-9,-7],[-6,2],[-8,0],[-4,-4],[-5,-5],[-2,-5],[0,-7],[0,-10],[-4,-6],[-7,-1],[-3,11],[-7,2],[-8,-10],[-5,-10],[-7,-6],[-3,-7],[-1,-10],[0,-10],[0,-10],[-3,-9],[-6,-15],[-6,-13],[-5,-7],[-6,-13],[-12,-20],[-12,-20],[-2,-12],[-10,-24],[-10,-21],[-15,-42],[-11,-18],[-7,-14],[-16,-14],[-13,-13],[-9,-10],[-15,-9],[-8,-5],[-20,-13],[-7,-12],[-8,-16],[-4,-13],[-2,-18],[-4,-18],[-5,-13],[-4,-25],[-8,-19],[-6,-7],[-6,-15],[-2,-14],[-8,-10],[-4,-3],[-8,-6],[-4,-12],[-1,-7],[2,-11],[-3,-8],[-8,-15],[-6,-7],[-8,-8],[-10,-3],[-11,0],[-9,1],[-13,15],[-10,5],[-11,1],[-11,-4],[-13,-13],[-9,-10],[-15,-8],[-8,-3],[-15,1],[-9,-1],[-14,-7],[-12,-16],[-5,-12],[-10,-14],[-12,-5],[-21,-4],[-14,5],[-9,8],[-6,10],[-5,7],[-5,5],[-4,3],[-58,-4],[-15,0],[-20,-2],[-21,-10],[-18,-9],[-19,-3],[-33,-3],[-17,-1],[-11,-4],[-10,-2],[-15,-3],[-12,0],[-37,0],[-18,12],[-36,15],[-12,4],[-9,3],[-26,0],[-17,0],[-22,3],[-23,5],[-21,4],[-17,9],[-9,3],[-16,14],[-10,12],[-171,137],[-42,29],[-49,37],[-12,2],[-10,11],[-9,14],[-4,18],[0,14],[3,21],[2,17],[2,17],[0,17],[0,17],[1,18],[-1,17],[-1,17],[-3,17],[-1,17],[0,18],[-5,16],[-12,3],[-12,2],[-12,1],[-13,1],[-12,0],[-13,-1],[-12,-1],[-12,-1],[-13,-1],[-12,-1],[-13,-2],[-12,-2],[-12,-2],[-12,-3],[-13,-3],[-12,-4],[-12,-4],[-12,-4],[-12,-4],[-12,-4],[-12,-4],[-12,-4],[-12,-5],[-12,-5],[-12,-6],[-11,-5],[-12,-6],[-12,-5],[-12,-5],[-12,-4],[-12,-3],[-13,-1],[-12,0],[-12,0],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,0],[-13,0],[-12,-1],[-12,-1],[-13,-1],[-12,-1],[-13,-1],[-12,0],[-12,-1],[-13,0],[-12,-1],[-13,0],[-12,0],[-12,-1],[-13,-2],[-12,-2],[-12,-2],[-13,-1],[-12,-1],[-13,-1],[-12,-1],[-12,-1],[-13,-1],[-12,-1],[-13,0],[-12,0],[-12,-1],[-13,0],[-12,0],[-12,-2],[-13,-2],[-12,-3],[-12,-3],[-12,-4],[-12,-4],[-12,-4],[-13,-4],[-12,-3],[-12,-4],[-12,-4],[-12,-5],[-12,-5],[-12,-5],[-11,-5],[-13,-3],[-12,-2],[-12,0],[-13,-2],[-12,-4],[-12,-4],[-8,-3],[-4,-2],[-12,-4],[-12,-5],[-12,-4],[-12,-3],[-12,-1],[-13,-1],[-12,0],[-13,-2],[-12,-1],[-12,-1],[-13,-1],[-12,-2],[-12,-1],[-13,-3],[-12,-4],[-12,-5],[-12,-5],[-12,-4],[-12,-4],[-12,-3],[-12,-3],[-12,-3],[-12,-4],[-12,-4],[-12,-5],[-12,-5],[-12,-4],[-13,-2],[-12,-2],[-12,0],[-13,0],[-12,1],[-13,1],[-12,0],[-12,2],[-13,1],[-12,2],[-12,1],[-13,1],[-12,1],[-13,1],[-12,0],[-12,1],[-13,1],[-12,2],[-13,1],[-12,1],[-12,1],[-13,0],[-12,1],[-13,1],[-12,1],[-12,1],[-13,0],[-12,1],[-13,1],[-12,1],[-12,0],[-13,-3],[-12,-4],[-12,-4],[-10,-8],[-12,-6],[-12,-4],[-12,-4],[-12,-1],[-12,-2],[-13,-3],[-12,-3],[-12,-4],[-12,-4],[-12,-3],[-13,-3],[-12,-4],[-11,-5],[-12,-4],[-13,-3],[-12,-2],[-12,-1],[-13,-1],[-12,1],[-13,-2],[-12,-2],[-12,-4],[-12,-3],[-13,-1],[-12,3],[-12,2],[-12,3],[-12,4],[-13,4],[-12,1],[-12,0],[-13,-2],[-12,-4],[-12,-4],[-12,-2],[-13,0],[-12,0],[-12,1],[-13,1],[-12,0],[-13,1],[-12,1],[-12,1],[-13,1],[-12,0],[-13,1],[-12,0],[-12,-3],[-12,-4],[-12,-3],[-13,0],[-12,1],[-13,0],[-12,1],[-12,1],[-13,0],[-12,1],[-13,1],[-12,1],[-12,0],[-13,1],[-12,1],[-13,1],[-12,0],[-12,1],[-13,1],[-12,1],[-13,0],[-12,1],[-12,0],[-13,1],[-12,1],[-13,1],[-12,1],[-12,2],[-13,3],[-12,3],[-12,4],[-12,5],[-11,6],[-12,6],[-12,6],[-11,6],[-12,5],[-12,4],[-12,5],[-12,5],[-12,3],[-12,3],[-13,4],[-12,4],[-11,6],[-12,5],[-12,4],[-12,4],[-12,5],[-12,3],[-13,2],[-12,2],[-12,3],[-12,5],[-12,2],[-13,3],[-12,3],[-3,1],[-9,3],[-12,6],[-11,7],[-12,6],[-11,7],[-12,6],[-12,5],[-12,4],[-12,4],[-12,4],[-12,4],[-12,4],[-12,5],[-11,6],[-12,7],[-12,5],[-12,5],[-11,6],[-12,5],[-12,4],[-12,3],[-13,3],[-12,4],[-12,5],[-12,4],[-12,4],[-12,4],[-12,5],[-12,5],[-12,5],[-11,5],[-13,3],[-12,2],[-12,1],[-13,0],[-12,1],[-13,1],[-12,1],[-12,1],[-13,3],[-12,4],[-12,4],[-11,6],[-12,5],[-12,6],[-12,6],[-11,6],[-12,6],[-12,5],[-11,7],[-12,6],[-7,4],[-4,3],[-11,8],[-11,7],[-15,9],[-8,3],[-7,7],[-5,3],[-7,5],[-15,10],[-10,11],[-12,3],[-13,2],[-12,3],[-12,3],[-12,5],[-12,5],[-11,7],[-12,7],[-11,6],[-11,7],[-12,6],[-12,3],[-13,3],[-11,6],[-12,7],[-11,7],[-12,6],[-11,6],[-12,4],[-13,1],[-12,2],[-12,5],[-12,5],[-12,6],[-11,6],[-11,8],[-11,9],[-11,9],[-10,9],[-12,6],[-12,4],[-12,3],[-12,3],[-12,4],[-3,1],[-9,5],[-10,10],[-11,9],[-11,8],[-11,7],[-11,8],[-11,8],[-11,9],[-11,6],[-12,5],[-12,7],[-11,7],[-11,7],[-12,5],[-13,1],[-12,2],[-12,1],[-13,1],[-12,0],[-13,0],[-12,0],[-12,1],[-13,0],[-12,0],[-13,0],[-12,1],[-12,1],[-13,1],[-12,1],[-12,2],[-13,1],[-12,2],[-13,2],[-12,2],[-12,3],[-12,3],[-12,4],[-12,6],[-11,8],[-11,7],[-12,6],[-12,6],[-11,6],[-12,5],[-12,6],[-12,6],[-11,7],[-11,7],[-11,7],[-12,7],[-11,7],[-11,8],[-11,9],[-11,6],[-12,6],[-13,1],[-12,2],[-12,1],[-13,2],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,3],[-12,3],[-12,4],[-12,4],[-12,2],[-13,1],[-12,1],[-13,1],[-12,1],[-12,2],[-12,4],[-12,6],[-12,7],[-11,7],[-11,7],[-12,6],[-12,5],[-12,4],[-12,3],[-12,5],[-11,6],[-12,6],[-12,5],[-12,5],[-12,6],[-11,5],[-12,6],[-12,6],[-12,4],[-12,2],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,3],[-12,4],[-12,5],[-12,3],[-16,9],[-12,8],[-10,6],[-14,7],[-12,3],[-12,5],[-12,6],[-11,6],[-12,6],[-11,8],[-11,8],[-11,9],[-11,8],[-11,8],[-11,6],[-12,4],[-12,4],[-12,5],[-12,4],[-13,2],[-12,-2],[-12,-2],[-6,0],[-7,1],[-12,0],[-13,0],[-12,0],[-12,0],[-13,0],[-12,1],[-13,0],[-12,1],[-12,1],[-13,2],[-12,2],[-12,2],[-13,2],[-12,2],[-12,4],[-12,4],[-12,4],[-23,10],[-24,12],[-12,5],[-12,4],[-12,4],[-12,4],[-12,5],[-12,6],[-11,8],[-11,8],[-11,8],[-11,7],[-12,4],[-12,4],[-12,5],[-12,5],[-12,5],[-12,5],[-12,4],[-12,3],[-15,3],[-3,1],[-7,0],[-12,1],[-13,1],[-12,2],[-12,1],[-13,3],[-12,4],[-12,6],[-12,3],[-12,3],[-3,1],[-9,2],[-12,3],[-12,5],[-12,5],[-12,5],[-12,4],[-12,4],[-12,3],[-13,3],[-12,2],[-12,2],[-13,2],[-12,1],[-12,-1],[-13,1],[-12,2],[-12,2],[-13,1],[-12,2],[-12,1],[-13,4],[-12,4],[-12,4],[-12,3],[-12,2],[-13,2],[-12,2],[-12,1],[-13,2],[-12,1],[-12,2],[-13,3],[-12,2],[-12,4],[-12,2],[-13,2],[-12,3],[-12,3],[-12,3],[-13,3],[-11,6],[-12,7],[-11,7],[-11,6],[-12,6],[-12,6],[-6,3],[-5,3],[-12,6],[-12,6],[-12,5],[-12,4],[-12,3],[-12,1],[-13,1],[-12,0],[-12,-3],[-13,-3],[-12,-4],[-12,-2],[-12,0],[-13,1],[-12,0],[-12,4],[-12,7],[-11,7],[-11,8],[-11,7],[-11,8],[-12,7],[-11,7],[-11,7],[-12,4],[-13,4],[-12,2],[-12,1],[-13,-1],[-12,0],[-12,1],[-13,2],[-12,1],[-12,2],[-13,1],[-12,1],[-27,-10],[-27,-4],[-12,2],[-13,2],[-12,0],[-12,0],[-13,0],[-12,4],[-12,4],[-12,2],[-12,2],[-13,2],[-12,1],[-13,1],[-12,1],[-12,1],[-13,2],[-12,1],[-12,3],[-13,3],[-12,3],[-12,4],[-12,3],[-12,4],[-12,5],[-12,4],[-12,5],[-12,5],[-12,6],[-11,6],[-12,5],[-12,4],[-12,4],[-13,2],[-12,2],[-12,2],[-13,1],[-12,1],[-12,1],[-13,2],[-12,1],[-12,1],[-13,1],[-12,1],[-13,2],[-12,2],[-12,3],[-12,4],[-12,5],[-12,4],[-12,2],[-13,1],[-12,1],[-13,1],[-12,0],[-12,-2],[-13,-2],[-12,0],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,0],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,2],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,2],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,2],[-13,2],[-12,4],[-12,4],[-11,6],[-12,8],[-10,9],[-11,9],[-10,9],[-11,7],[-12,8],[-11,7],[-11,7],[-12,5],[-12,3],[-13,0],[-12,-3],[-12,-3],[-13,-2],[-12,-3],[-12,-3],[-12,-3],[-12,-4],[-12,-5],[-12,-4],[-13,-2],[-12,0],[-12,0],[-13,1],[-12,1],[-12,1],[-13,2],[-12,1],[-13,0],[-18,-1],[-14,0],[-13,-2],[-12,1],[-13,1],[-10,5],[-9,6],[-1,1],[-7,4],[-24,4],[-24,10],[-24,7],[-25,5],[-25,3],[-24,4],[-25,4],[-25,2],[-24,2],[-25,2],[-25,3],[-25,3],[-24,3],[-25,3],[-25,3],[-24,5],[-25,8],[-23,12],[-24,10],[-24,9],[-24,7],[-25,2],[-24,2],[-25,1],[-25,1],[-25,0],[-24,-4],[-25,-5],[-25,-4],[-24,-5],[-25,-2],[-25,-2],[-25,-3],[-24,-4],[-25,-1],[-25,1],[-25,2],[-24,1],[-25,2],[-25,2],[-25,2],[-24,5],[-25,5],[-24,5],[-24,8],[-25,9],[-24,5],[-25,3],[-25,1],[-24,1],[-25,2],[-25,2],[-25,2],[-24,2],[-25,3],[-25,3],[-25,4],[-24,3],[-25,2],[-25,1],[-25,1],[-24,2],[-25,6],[-24,7],[-25,2],[-25,2],[-25,1],[-24,-1],[-25,-1],[-25,-1],[-25,-1],[-25,-1],[-24,1],[-25,1],[-25,2],[-25,5],[-24,8],[-24,6],[-25,4],[-24,6],[-25,6],[-24,5],[-24,1],[-24,-8],[-23,-13],[-24,-12],[-24,-5],[-25,0],[-25,1],[-25,1],[-25,3],[-24,6],[-25,5],[-24,1],[-25,1],[-25,0],[-25,1],[-25,0],[-25,0],[-24,-3],[-25,-2],[-25,-3],[-24,-6],[-24,-10],[-24,-7],[-25,-3],[-25,1],[-19,1],[-6,0],[-24,2],[-25,4],[-24,7],[-25,6],[-24,4],[-25,1],[-25,1],[-25,0],[-25,-1],[-24,-1],[-25,-1],[-13,0],[-12,0],[-25,1],[-25,0],[-24,4],[-25,1],[-25,0],[-25,1],[-25,1],[-24,1],[-25,0],[-25,1],[-25,0],[-25,1],[-25,0],[-24,1],[-25,1],[-25,1],[-25,1],[-25,2],[-24,3],[-25,2],[-25,2],[-25,0],[-24,0],[-25,-6],[-24,-7],[-25,-7],[-26,-1],[-25,0],[-25,0],[-25,0],[-25,0],[-24,-4],[-25,-6],[-25,-1],[-24,1],[-25,0],[-25,7],[-24,7],[-23,12],[-24,11],[-21,17],[-23,14],[-25,3],[-24,-7],[-24,-10],[-24,-5],[-25,-7],[-22,-9],[-2,0],[-24,-8],[-24,-6],[-25,-2],[-25,-1],[-25,0],[-25,-1],[-24,0],[-25,0],[-25,0],[-25,-2],[-24,-9],[-24,-10],[-24,-6],[-25,-2],[-25,0],[-24,2],[-25,3],[-25,5],[-24,7],[-24,6],[-25,3],[-25,1],[-25,3],[-24,6],[-25,2],[-25,-1],[-24,-2],[-25,-4],[-24,-8],[-23,-13],[-25,-7],[-24,-2],[-25,1],[-25,0],[-25,1],[-25,-1],[-24,-4],[-25,-4],[-25,-1],[-24,0],[-25,0],[-25,0],[-25,0],[-25,2],[-24,3],[-25,4],[-25,4],[-12,2],[-12,1],[-25,2],[-25,1],[-25,0],[-25,1],[-24,2],[-25,4],[-25,5],[-24,2],[-25,1],[-25,1],[-25,0],[-25,0],[-24,0],[-25,0],[-25,-7],[-24,-4],[-27,0],[-24,-8],[-25,-6],[-24,-6],[-25,-4],[-25,-3],[-24,-3],[-25,-2],[-25,-1],[-25,1],[-25,3],[-24,6],[-24,9],[-24,6],[-25,4],[-25,0],[-25,-3],[-24,-5],[-25,-6],[-24,-5],[-25,-5],[-25,-3],[-24,-2],[-25,-2],[-25,0],[-25,0],[-25,0],[-24,1],[-25,1],[-25,0],[-25,1],[-25,1],[-24,1],[-25,0],[-25,0],[-25,-4],[-24,-4],[-25,-1],[-25,-2],[-25,-4],[-24,2],[-25,4],[-25,0],[-25,-3],[-24,-6],[-25,1],[-25,4],[-24,3],[-25,1],[-25,-1],[-25,-3],[-24,-3],[-25,-1],[-25,-1],[-25,-1],[-24,-3],[-25,-8],[-24,-9],[-24,-5],[-25,-4],[-24,-4],[-25,-4],[-25,-2],[-25,0],[-25,0],[-24,-3],[-25,-5],[-25,-3],[-24,-2],[-25,-1],[-25,0],[-25,0],[-25,-2],[-24,-3],[-25,-2],[-25,0],[-25,1],[-25,0],[-24,-1],[-25,-3],[-15,3],[-30,5],[-15,1],[-10,-2],[-16,-5],[-14,-5],[-24,2],[-23,7],[-20,-1],[-13,0],[-12,0],[-14,2],[-9,0],[-13,-1],[-9,2],[-12,3],[-11,2],[-14,-3],[-18,0],[-14,0],[-12,2],[-6,0],[-7,1],[-14,2],[-12,0],[-14,2],[-13,1],[-13,2],[-14,1],[-13,0],[-13,0],[-14,0],[-13,-1],[-14,-2],[-14,-2],[-14,-4],[-13,-2],[-14,-4],[-13,-5],[-14,-3],[-12,-2],[-14,-1],[-12,-2],[-12,-3],[-6,0],[-7,-1],[-13,-2],[-12,-3],[-14,-1],[-13,-1],[-14,-1],[-15,-1],[-14,1],[-15,1],[-13,0],[-15,0],[-15,0],[-15,1],[-13,0],[-14,-3],[-12,-3],[-14,0],[-13,1],[-13,-2],[-13,-1],[-14,0],[-13,0],[-12,0],[-14,0],[-6,-1],[-8,0],[-14,0],[-15,0],[-13,0],[-13,0],[-12,-1],[-15,-2],[-13,-2],[-14,-2],[-13,-1],[-13,-2],[-14,-1],[-13,1],[-12,1],[-6,1],[-7,0],[-14,1],[-13,0],[-15,-1],[-14,-1],[-14,-1],[-14,-1],[-14,-1],[-14,0],[-13,2],[-13,1],[-14,1],[-15,-1],[-15,-1],[-13,0],[-13,-1],[-12,-5],[-13,-1],[-14,-3],[-14,-3],[-13,-2],[-15,-3],[-13,-1],[-15,-1],[-12,-2],[-13,-2],[-13,-1],[-13,-1],[-14,-1],[-14,0],[-14,-1],[-14,-2],[-12,-1],[-14,-1],[-13,-4],[-13,-1],[-12,0],[-13,1],[-13,0],[-14,0],[-14,-1],[-13,-2],[-14,-2],[-14,0],[-13,1],[-14,1],[-12,0],[-14,-1],[-14,-2],[-12,0],[-14,1],[-14,-1],[-13,-1],[-13,-2],[-13,-3],[-14,-3],[-13,-2],[-12,-1],[-14,1],[-14,1],[-13,-1],[-14,0],[-14,-1],[-13,-4],[-14,-2],[-13,-1],[-13,-2],[-12,0],[-13,1],[-13,1],[-13,-1],[-13,-3],[-13,-1],[-13,1],[-23,0],[-29,-1],[-18,-1],[-35,-2],[-35,-3],[-49,-4],[-48,-6],[-35,-12],[-34,-12],[-46,-10],[-20,-3],[-65,-12],[-85,-18],[-70,-15],[-26,-10],[-21,-8],[-14,-6],[-20,-3],[-16,-3],[-17,-1],[-13,-1],[-14,-2],[-14,-2],[-14,-2],[-14,-2],[-14,-2],[-13,-2],[-11,-2],[-2,-1],[-13,-1],[-13,-1],[-12,-1],[-4,0],[-11,-1],[-13,-2],[-15,-3],[-13,-2],[-13,-3],[-13,-3],[-13,-2],[-14,-3],[-14,-3],[-14,-3],[-12,-2],[-14,-2],[-13,-2],[-13,-1],[-13,-1],[-12,0],[-14,0],[-14,0],[-14,1],[-15,0],[-15,0],[-15,0],[-15,0],[-14,-2],[-14,-2],[-15,-4],[-15,-3],[-12,-1],[-13,0],[-15,-1],[-15,-1],[-13,0],[-13,-1],[-14,-2],[-12,-3],[-13,-3],[-14,-3],[-12,-1],[-15,-1],[-14,0],[-13,-2],[-13,-2],[-14,-2],[-13,-2],[-13,-2],[-13,-3],[-13,-2],[-14,-2],[-13,-2],[-13,-2],[-13,-3],[-14,-2],[-14,-3],[-15,-2],[-13,-3],[-15,-4],[-12,-3],[-13,-2],[-14,-2],[-12,-1],[-13,-2],[-14,-3],[-13,-3],[-13,-4],[-15,-2],[-13,-2],[-13,-2],[-13,-2],[-14,-1],[-13,-1],[-14,-2],[-15,-2],[-13,-3],[-14,-2],[-13,-2],[-14,-2],[-14,-1],[-13,-1],[-13,-2],[-13,-1],[-14,-2],[-13,-3],[-13,-1],[-14,-4],[-15,-5],[-12,-2],[-13,-4],[-12,-3],[-15,-1],[-14,-3],[-13,-2],[-14,-2],[-14,-1],[-14,-2],[-14,-2],[-13,-1],[-14,-1],[-12,-2],[-13,-2],[-23,-3],[-6,-1],[-12,0],[-14,-1],[-12,-1],[-14,-2],[-14,-1],[-14,0],[-13,0],[-14,0],[-14,-2],[-12,-1],[-15,-2],[-13,-2],[-13,-3],[-13,-4],[-13,-2],[-13,-4],[-1,0],[-11,-1],[-13,0],[-13,0],[-15,0],[-14,0],[-14,-1],[-14,-2],[-14,-2],[-14,-3],[-14,-3],[-13,-2],[-13,-4],[-14,-4],[-13,-2],[-13,-4],[-13,-4],[-13,-2],[-14,-2],[-13,-1],[-13,-6],[-13,0],[-14,-1],[-13,-2],[-14,-2],[-14,-3],[-12,-2],[-13,-2],[-12,-3],[-13,-2],[-12,-2],[-13,-3],[-15,-2],[-14,-3],[-14,-4],[-13,-3],[-13,-3],[-13,-3],[-14,-3],[-13,-2],[-14,-2],[-12,-2],[-13,-3],[-14,-2],[-14,-2],[-13,-1],[-14,0],[-13,-1],[-14,0],[-13,-1],[-13,-1],[-13,-2],[-14,-1],[-14,-3],[-13,-2],[-14,-3],[-14,-3],[-14,-3],[-14,-2],[-14,-2],[-13,-1],[-14,0],[-13,-1],[-13,-1],[-14,-3],[-12,-3],[-13,-3],[-13,-2],[-12,-2],[-14,-2],[-14,-1],[-13,-1],[-13,-2],[-14,-3],[-13,-2],[-14,-2],[-13,-3],[-9,-2],[-5,-2],[-15,-4],[-12,-4],[-12,-2],[-1,0],[-15,-3],[-14,-4],[-13,-3],[-13,-3],[-13,-4],[-14,-4],[-13,-2],[-13,-2],[-14,-1],[-13,-1],[-13,-1],[-13,-2],[-14,-1],[-12,-2],[-13,-3],[-15,-3],[-13,-2],[-15,-3],[-12,-2],[-13,-2],[-14,0],[-14,-1],[-12,-1],[-14,-2],[-13,-1],[-12,0],[-14,-1],[-14,-2],[-14,-2],[-15,-3],[-14,-1],[-13,0],[-15,0],[-15,0],[-15,0],[-14,0],[-13,-1],[-14,0],[-14,0],[-12,-2],[-25,-4],[-13,-2],[-13,-3],[-12,-2],[-14,-1],[-13,-2],[-14,-2],[-12,-2],[-14,-1],[-12,-2],[-13,-1],[-13,-2],[-12,-2],[-14,-2],[-14,-2],[-14,-2],[-14,-1],[-13,-1],[-14,-1],[-14,-2],[-13,-1],[-13,-1],[-12,-2],[-13,-1],[-13,-3],[-13,-3],[-14,-2],[-13,-1],[-14,-3],[-15,0],[-13,-1],[-12,-1],[-13,-1],[-14,-1],[-14,-3],[-13,-1],[-13,-2],[-13,-3],[-14,-1],[-14,0],[-12,-1],[-14,-1],[-15,-2],[-13,-2],[-13,-2],[-13,-2],[-13,-2],[-13,-3],[-13,-2],[-14,0],[-13,-1],[-14,-2],[-14,-1],[-14,-1],[-13,-1],[-14,-2],[-13,-2],[-13,-2],[-13,-3],[-12,-3],[-13,-3],[-13,-4],[-12,-3],[-13,-2],[-13,-3],[-14,-2],[-12,-1],[-13,-1],[-14,-1],[-13,-2],[-12,-1],[-13,-3],[-13,-1],[-13,-2],[-13,-3],[-12,-3],[-13,-3],[-13,-2],[-13,-3],[-14,-2],[-13,-2],[-14,-1],[-13,-2],[-13,-2],[-15,-2],[-14,-2],[-14,-2],[-14,0],[-13,0],[-13,0],[-12,-1],[-13,-2],[-13,-3],[-14,-3],[-14,-2],[-14,0],[-14,0],[-13,0],[-14,-1],[-14,-2],[-14,-2],[-14,-2],[-12,-2],[-14,-2],[-13,-2],[-13,-2],[-13,-2],[-13,-3],[-13,-1],[-13,-1],[-13,-2],[-13,-1],[-13,-4],[-13,-1],[-13,-2],[-14,-3],[-13,-3],[-13,-2],[-14,0],[-13,-2],[-14,-1],[-13,0],[-6,0],[-7,0],[-14,0],[-13,0],[-13,0],[-14,0],[-13,0],[-14,-3],[-12,-5],[-12,-1],[-13,-2],[-13,-1],[-12,-1],[-2,0],[-13,-1],[-13,0],[-13,0],[-12,0],[-14,0],[-12,0],[-13,1],[-13,3],[-13,1],[-13,1],[-14,5],[-13,1],[-13,0],[-21,0],[-11,-3],[-1,-1],[-13,-4],[-14,-3],[-12,-5],[-12,-6],[-21,-4],[-3,0],[-13,-1],[-14,0],[-13,-1],[-1,0],[-12,-3],[-13,-7],[-10,-10],[-12,-9],[-12,-5],[-13,0],[-14,-1],[-12,-2],[-13,-2],[-13,-2],[-13,0],[-13,-2],[-13,-2],[-13,-1],[-12,-4],[-13,-2],[-14,-1],[-13,-3],[-12,-4],[-13,-5],[-13,-4],[-13,-4],[-13,-3],[-13,-2],[-13,-2],[-12,0],[-13,-1],[-12,-1],[-13,-1],[-13,-1],[-12,0],[-14,2],[-13,0],[-14,0],[-13,-2],[-14,-3],[-12,-3],[-13,-3],[-13,-4],[-14,-4],[-13,-3],[-13,-3],[-14,-3],[-13,-4],[-13,-1],[-14,-3],[-13,-3],[-12,-1],[-10,-2],[-3,-1],[-13,-3],[-13,-3],[-14,-1],[-14,-1],[-14,0],[-13,-2],[-13,-2],[-13,-4],[-14,-3],[-14,-4],[-13,-4],[-13,-5],[-13,-7],[-12,-6],[-13,-7],[-11,-6],[-12,-5],[-13,-5],[-14,-3],[-13,-3],[-14,-2],[-13,-2],[-12,-1],[-13,-2],[-13,-2],[-14,-4],[-14,-5],[-12,-4],[-13,-5],[-13,-4],[-14,-4],[-13,-4],[-13,-3],[-11,-6],[-13,-4],[-13,-2],[-14,-3],[-12,-4],[-14,-4],[-14,-1],[-13,-2],[-13,-2],[-13,-3],[-15,-4],[-13,-3],[-13,-3],[-13,-2],[-12,-1],[-13,-2],[-13,-2],[-13,-2],[-14,-2],[-13,-2],[-14,-2],[-13,-2],[-13,-3],[-12,-4],[-13,-4],[-14,-1],[-14,-1],[-12,-2],[-13,-2],[-12,-3],[-15,-6],[-13,-6],[-13,-4],[-13,-3],[-13,-2],[-13,-2],[-13,-2],[-14,-3],[-13,-4],[-13,-3],[-12,-4],[-12,-4],[-13,-4],[-15,-4],[-13,-3],[-13,-4],[-13,-3],[-13,-2],[-14,-2],[-13,-2],[-13,-3],[-14,-3],[-15,-3],[-14,-2],[-13,-2],[-13,-2],[-12,-1],[-14,-1],[-13,-2],[-14,-2],[-12,-1],[-14,-1],[-14,-3],[-14,-2],[-14,-3],[-13,-2],[-14,-2],[-15,-4],[-12,-4],[-13,-5],[-13,-5],[-12,-3],[-14,-4],[-14,-4],[-13,-2],[-14,-4],[-14,-4],[-13,-4],[-13,-4],[-12,-5],[-12,-4],[-13,-5],[-13,-4],[-14,-3],[-12,-4],[-14,-3],[-12,-4],[-13,-3],[-13,-3],[-12,-1],[-13,-2],[-12,-1],[-8,-1],[-23,-5],[-27,-6],[-17,-8],[-13,-5],[-13,-5],[-12,-5],[-11,-3],[-18,-3],[-18,-5],[-13,-5],[-18,-9],[-27,-10],[-26,-1],[-17,-4],[-41,-6],[-29,-3],[-14,-2],[-23,-9],[-7,-2],[-14,-5],[-26,-1],[-20,-1],[-14,-4],[-20,-4],[-20,-5],[-14,-5],[-22,-5],[-11,-2],[-19,-5],[-17,-6],[-25,-2],[-13,-3],[-37,-7],[-26,-6],[-21,-5],[-27,-5],[-29,-7],[-44,-11],[-25,-3],[-33,-1],[-21,0],[-36,-1],[-23,-6],[-39,-11],[-28,-7],[-25,-5],[-25,-7],[-31,-5],[-13,-3],[-17,-3],[-20,-4],[-21,-4],[-24,-4],[-20,-4],[-17,-5],[-18,-5],[-18,-4],[-11,-4],[-15,-5],[-8,-3],[-18,-6],[-14,-1],[-9,0],[-15,-1],[-10,-5],[-12,-3],[-10,-2],[-8,-1],[-12,-1],[-10,-2],[-13,-3],[-11,-3],[-14,-2],[-8,-2],[-9,-3],[-8,-3],[-9,-3],[-6,-1],[-8,-1],[-8,-1],[-11,-3],[-9,-2],[-12,-1],[-11,-2],[-16,-4],[-17,-5],[-9,-1],[-14,-2],[-14,-6],[-16,-2],[-14,-4],[-14,-2],[-13,-4],[-13,-4],[-14,-3],[-12,-2],[-14,-4],[-12,-4],[-12,-3],[-13,-5],[-13,-5],[-12,-5],[-13,-6],[-14,-4],[-13,-1],[-13,-2],[-13,-3],[-12,-4],[-13,-5],[-13,-5],[-13,-4],[-14,-3],[-12,-2],[-14,-4],[-19,-3],[-25,-12],[-12,-7],[-12,-10],[-12,-8],[-12,-6],[-13,-5],[-12,-3],[-13,-3],[-13,-3],[-13,-3],[-13,-2],[-14,-2],[-13,-4],[-12,-5],[-14,-2],[-14,-4],[-13,-2],[-13,-2],[-12,-1],[-13,-2],[-12,-3],[-14,-3],[-13,-4],[-13,-4],[-13,-3],[-14,-3],[-13,-3],[-12,-3],[-12,-4],[-13,-1],[-13,-2],[-12,-2],[-14,-1],[-13,0],[-13,-2],[-13,-1],[-12,-1],[-13,-2],[-13,-3],[-13,-4],[-14,-4],[-12,-5],[-12,-5],[-13,-3],[-12,-2],[-13,-3],[-13,-2],[-12,-3],[-13,-3],[-14,-1],[-14,-2],[-13,-2],[-14,-2],[-12,-3],[-13,-4],[-12,-4],[-13,-4],[-12,-4],[-14,-6],[-13,-4],[-13,-3],[-13,-2],[-13,-2],[-13,0],[-13,-2],[-14,0],[-13,-1],[-13,-3],[-13,-3],[-13,-2],[-9,-1],[-4,-1],[-14,-3],[-13,-3],[-13,-2],[-13,-4],[-13,-3],[-14,-2],[-14,-3],[-4,-1],[-10,-3],[-12,-4],[-13,-4],[-9,-2],[-3,-1],[-13,-1],[-13,-1],[-14,-2],[-12,-2],[-13,-1],[-13,-1],[-13,-1],[-14,-2],[-14,-3],[-14,-2],[-13,-4],[-14,-3],[-13,-2],[-13,-3],[-13,-3],[-12,-3],[-13,-5],[-13,-2],[-13,-3],[-14,-4],[-12,-3],[-13,-4],[-13,-3],[-14,-4],[-13,-4],[-13,-4],[-13,-1],[-13,-2],[-13,-3],[-14,-3],[-13,-3],[-13,-3],[-13,-3],[-13,-1],[-14,-4],[-12,-4],[-12,-4],[-13,-5],[-12,-4],[-14,-4],[-12,-3],[-12,-4],[-13,-4],[-14,-3],[-13,-3],[-12,-3],[-14,-5],[-14,-4],[-12,-4],[-13,-3],[-15,-4],[-12,-2],[-13,-2],[-13,-2],[-12,-4],[-13,-4],[-13,-5],[-14,-5],[-12,-3],[-13,-3],[-13,-2],[-12,-2],[-14,-4],[-14,-3],[-14,-6],[-11,-5],[-11,-4],[-13,-3],[-13,-5],[-12,-4],[-13,-6],[-14,-4],[-12,-4],[-12,-3],[-14,-4],[-13,-5],[-12,-4],[-14,-4],[-12,-5],[-13,-4],[-14,-4],[-12,-3],[-13,-4],[-13,-3],[-13,-3],[-13,-3],[-12,-3],[-13,-3],[-14,-3],[-14,-4],[-13,-3],[-13,-4],[-12,-3],[-14,-5],[-14,-4],[-12,-4],[-13,-4],[-14,-5],[-13,-4],[-14,-5],[-14,-5],[-12,-4],[-13,-5],[-13,-4],[-12,-5],[-13,-4],[-14,-3],[-13,-4],[-12,-5],[-14,-5],[-13,-5],[-13,-4],[-13,-3],[-15,-4],[-14,-3],[-13,-3],[-12,-3],[-12,-3],[-13,-3],[-13,-2],[-15,-3],[-12,-4],[-12,-4],[-15,-5],[-12,-5],[-13,-4],[-13,-4],[-14,-4],[-13,-3],[-13,-4],[-12,-4],[-13,-6],[-12,-4],[-13,-3],[-14,-4],[-13,-4],[-14,-4],[-13,-4],[-13,-4],[-13,-5],[-12,-4],[-13,-5],[-14,-4],[-14,-6],[-15,-5],[-14,-5],[-13,-4],[-12,-4],[-14,-5],[-12,-5],[-13,-4],[-13,-6],[-13,-5],[-12,-6],[-12,-5],[-14,-4],[-13,-4],[-13,-5],[-12,-3],[-13,-4],[-12,-2],[-15,-4],[-14,-2],[-14,-3],[-15,-4],[-14,-3],[-14,-4],[-14,-4],[-13,-6],[-12,-5],[-13,-6],[-14,-6],[-13,-6],[-12,-6],[-12,-7],[-12,-7],[-13,-5],[-13,-4],[-13,-5],[-13,-5],[-12,-5],[-13,-4],[-10,-4],[-3,-1],[-13,-3],[-12,-4],[-14,-3],[-12,-4],[-13,-4],[-13,-2],[-13,-3],[-13,-3],[-13,-3],[-13,-2],[-13,-2],[-13,-4],[-12,-4],[-13,-4],[-14,-4],[-12,-4],[-8,-2],[-5,-1],[-12,-3],[-13,-4],[-12,-4],[-2,0],[-11,-3],[-12,-4],[-13,-4],[-13,-4],[-13,-6],[-12,-5],[-16,-4],[-17,-1],[-14,-4],[-13,-2],[-15,-5],[-11,-3],[-14,-2],[-12,-5],[-13,-5],[-14,-4],[-13,-4],[-13,-3],[-13,-3],[-13,-4],[-14,-2],[-13,-3],[-13,-5],[-13,-4],[-12,-6],[-12,-4],[-14,-3],[-13,-3],[-13,-3],[-14,-3],[-13,-4],[-14,-5],[-14,-6],[-14,-7],[-14,-7],[-13,-5],[-12,-4],[-15,-4],[-14,-4],[-13,-2],[-13,-2],[-13,-4],[-13,-3],[-14,-3],[-14,-3],[-16,0],[-27,-4],[-13,-3],[-12,-4],[-12,-4],[-14,-4],[-13,-4],[-13,-3],[-12,-2],[-13,-3],[-14,0],[-13,0],[-13,0],[-13,-1],[-13,-4],[-13,-4],[-12,-3],[-13,-4],[-13,-5],[-12,-3],[-14,-3],[-13,-4],[-13,-3],[-13,-4],[-14,-3],[-14,-4],[-13,-4],[-13,-3],[-14,-5],[-12,-3],[-12,-3],[-13,-4],[-13,-3],[-13,-2],[-13,-3],[-12,-4],[-13,-5],[-13,-5],[-12,-4],[-13,-3],[-13,-3],[-12,-3],[-14,-3],[-13,-2],[-14,-3],[-13,-2],[-13,-3],[-14,-4],[-13,-3],[-13,-3],[-12,-2],[-14,-3],[-13,-2],[-12,-3],[-13,-4],[-14,-5],[-12,-4],[-13,-5],[-13,-5],[-13,-4],[-13,-3],[-14,-3],[-14,-3],[-14,-3],[-13,-4],[-13,-3],[-13,-5],[-12,-3],[-13,-5],[-14,-4],[-12,-4],[-13,-2],[-10,-3],[-13,-4],[-16,-7],[-13,-6],[-10,-9],[-14,-7],[-15,-4],[-13,-4],[-12,2],[-15,-5],[-14,-2],[-12,-4],[-13,-3],[-13,-3],[-13,-3],[-11,-3],[-13,-3],[-13,-2],[-13,-3],[-13,-2],[-13,-2],[-13,-1],[-13,-2],[-12,2],[-13,0],[-13,1],[-13,2],[-13,6],[-12,9],[-8,2],[-10,-3],[-9,-2],[-12,-4],[-9,-6],[-11,-6],[-10,-5],[-11,0],[-7,-2],[-6,-6],[-10,0],[-12,-4],[-19,-8],[-20,-5],[-18,-7],[-13,-3],[-15,-1],[-18,-6],[-23,-9],[-11,-5],[-8,0],[-6,5],[-11,0],[-11,-2],[-6,-10],[-17,-9],[-27,-8],[-28,-9],[-27,-11],[-25,-5],[-19,0],[-20,-7],[-11,-8],[-16,-1],[-14,-1],[-18,-5],[-18,-10],[-16,-6],[-18,-1],[-26,-9],[-26,-11],[-35,-14],[-21,-9],[-4,-1],[-16,-5],[-24,-10],[-4,-2],[-26,-12],[-62,-39],[-54,-27],[-73,-4],[-54,-4],[-123,-54],[-102,-40],[-127,-31],[-71,-21],[-49,-27],[-65,-33],[-52,-36],[-87,-13],[-71,-4],[-54,-15],[-138,-43],[-170,-64],[-119,-39],[-258,-95],[-162,-66],[-160,-72],[-102,-22],[-184,-68],[-80,-41],[-54,-24],[-40,-39],[-47,-27],[-86,-1],[-73,-19],[-62,-27],[-108,-51],[-100,-45],[-37,-15],[-50,-18],[-50,-21],[-69,-31],[-56,-24],[-58,-36],[-104,-59],[-150,-49],[-137,-29],[-71,-27],[-52,-21],[-45,-31],[-3,-2],[-39,-44],[-33,-27],[-113,-39],[-79,-31],[-47,-12],[-36,-3],[-44,-21],[-74,-31],[-46,-21],[-44,-27],[-20,-20],[-42,-56],[-58,-30],[-56,-13],[-75,-15],[-77,-42],[-17,-9],[-54,-27],[-75,-13],[-60,-30],[-69,-27],[-47,-57],[-77,-68],[-66,-21],[-65,-21],[-58,-13],[-44,-9],[-62,-39],[-39,-59],[-61,-30],[-170,-70],[-86,-30],[-124,-63],[-104,-77],[-85,-69],[-108,-33],[-79,-25],[-37,-24],[-44,-29],[-69,-45],[-49,-53],[-86,-48],[-170,-64],[-56,-34],[-56,-34],[-81,-69],[-85,-77],[-120,-80],[-92,-83],[-78,-74],[-88,-69],[-26,-20],[-114,-127],[-81,-106],[-126,-154],[-128,-159],[-120,-197],[-88,-176],[-75,-231],[-24,-199],[1,-101],[13,3],[11,2],[10,0],[13,1],[11,1],[10,0],[12,0],[11,0],[11,-1],[10,-3],[10,0],[10,0],[13,-2],[11,-4],[10,-4],[11,-4],[10,-5],[10,-5],[9,-9],[7,-10],[7,-11],[8,-11],[6,-12],[8,-10],[8,-10],[8,-8],[9,-11],[3,-3],[7,-3],[7,-11],[8,-9],[9,-8],[7,-9],[6,-13],[5,-14],[5,-13],[6,-12],[7,-13],[5,-13],[5,-14],[5,-13],[6,-12],[5,-14],[4,-13],[4,-13],[6,-13],[0,-14],[9,-8],[8,-9],[3,-13],[1,-14],[-6,-12],[6,-12],[7,-9],[2,-14],[-2,-15],[8,-6],[4,-14],[3,-13],[5,-14],[6,-11],[7,-11],[3,-14],[4,-14],[2,-14],[-3,-14],[-4,-13],[-8,-10],[-7,-10],[8,-8],[10,-7],[8,-7],[11,-6],[10,-6],[6,-11],[9,-10],[10,-8],[10,-5],[5,-12],[7,-11],[8,-11],[6,-12],[5,-12],[5,-13],[9,-7],[6,-13],[1,-14],[6,-13],[6,-15],[7,-12],[4,-13],[1,-15],[1,-15],[1,-15],[0,-15],[0,-15],[0,-15],[-1,-14],[0,-17],[-1,-14],[-1,-15],[-3,-14],[-4,-12],[-6,-13],[-6,-12],[-7,-10],[-11,-5],[-11,-1],[-10,-8],[-7,-10],[-8,-8],[10,1],[11,1],[11,1],[10,0],[12,0],[10,-2],[10,-1],[10,1],[10,-2],[11,-3],[9,-7],[9,-9],[9,-7],[3,-13],[2,-11],[7,-11],[11,-11],[7,-11],[2,-14],[0,-15],[-3,-14],[-3,-14],[0,-15],[-1,-14],[-1,-14],[-1,-14],[-3,-15],[-5,-12],[-4,-12],[-5,-13],[-6,-12],[-7,-15],[-7,-12],[-7,-13],[-6,-11],[-7,-11],[-6,-12],[-7,-12],[-6,-12],[-6,-12],[-8,-10],[-8,-14],[-9,-8],[-8,-8],[-10,-3],[-10,-6],[-7,-11],[-5,-12],[-6,-11],[-10,-7],[-7,-10],[-7,-10],[-8,-9],[-6,-12],[-9,-7],[-11,-3],[-11,-2],[-11,-1],[-11,-1],[-12,-1],[-10,-1],[-11,-1],[-12,-1],[-11,-1],[-13,-2],[-11,-1],[-11,-1],[-12,-1],[-11,0],[-11,-1],[-11,-2],[-11,-1],[-4,-1],[-7,0],[-10,-2],[-12,2],[-11,3],[-10,3],[-12,0],[-11,2],[-10,4],[-10,2],[-11,2],[-10,1],[-11,0],[-11,1],[-10,1],[-10,0],[-11,-1],[-11,-1],[-10,3],[-9,6],[-8,9],[-8,11],[-9,9],[-8,10],[-11,3],[-10,-3],[-10,-4],[-10,-3],[-10,-1],[-13,-2],[-11,-2],[-11,-1],[-12,-2],[-11,-1],[-12,-1],[-10,-1],[-11,-2],[-11,1],[-10,1],[-9,5],[-9,7],[-9,6],[-9,7],[-9,8],[-9,7],[-9,9],[-9,8],[-5,14],[-6,10],[-3,15],[-2,15],[-1,16],[-1,15],[0,14],[3,13],[2,16],[5,12],[6,12],[6,13],[6,12],[7,11],[5,12],[9,9],[11,2],[9,8],[8,9],[9,8],[10,6],[11,3],[8,10],[5,11],[6,12],[-1,8],[-4,5],[-4,0],[-6,0],[-10,0],[-10,-2],[-12,-1],[-11,-2],[-11,-1],[-10,0],[-12,-1],[-11,0],[-10,1],[-10,3],[-11,2],[-11,-1],[-10,-1],[-11,1],[-11,-1],[-11,3],[-9,8],[-9,5],[-11,-1],[-11,1],[-9,5],[-10,5],[-11,10],[-8,7],[-7,12],[-7,11],[-8,8],[-11,1],[-11,2],[-10,4],[-10,7],[-8,8],[-9,9],[-9,8],[-9,7],[-7,10],[-8,11],[-9,9],[-6,11],[-5,12],[-7,12],[-7,10],[-5,13],[-2,14],[-1,15],[-1,14],[-1,15],[-1,15],[0,14],[1,15],[3,14],[1,14],[-1,15],[4,13],[5,14],[4,13],[-1,15],[0,14],[1,16],[4,14],[5,13],[7,15],[6,15],[7,13],[6,13],[7,14],[8,11],[6,12],[8,12],[8,11],[7,9],[10,8],[10,11],[9,11],[9,8],[8,11],[6,12],[7,11],[10,9],[10,7],[8,10],[6,12],[8,11],[7,11],[8,11],[6,12],[8,12],[9,6],[9,9],[10,5],[7,10],[10,9],[10,11],[10,6],[10,8],[8,9],[9,8],[11,3],[11,3],[2,14],[-3,14],[-2,14],[5,12],[-4,13],[-7,11],[-6,12],[-4,13],[-4,14],[-6,11],[-4,14],[-3,13],[-1,14],[-1,15],[1,14],[3,13],[5,15],[4,13],[5,13],[5,14],[7,10],[8,9],[8,9],[7,11],[8,9],[9,7],[10,6],[10,6],[11,4],[10,5],[10,3],[12,9],[-13,65],[-28,78],[-40,64],[-110,150],[-88,106],[-84,90],[-126,91],[-136,83],[-166,73],[-142,39],[-90,7],[-121,1],[-127,4],[-129,7],[-80,14],[-87,-22],[-56,-21],[-98,-22],[-77,-16],[-106,-19],[-98,-39],[-106,-25],[-73,-22],[-75,-18],[-102,-39],[-87,-40],[-52,-18],[-48,-12],[-41,-13],[-14,-36],[-16,-17],[-18,1],[-21,-5],[-22,-34],[-7,-10],[-13,2],[-8,5],[-5,13],[-1,41],[-3,8],[-26,8],[-29,5],[-16,-8],[-59,-30],[-65,-39],[-72,-26],[-69,-20],[-63,-22],[-50,-24],[-73,-23],[-91,-39],[-80,-31],[-77,-30],[-35,-15],[-87,-35],[-78,-37],[-56,-21],[-72,-38],[-79,-25],[-85,-27],[-59,-19],[-46,-16],[-59,-15],[-40,-15],[-39,-23],[-48,-19],[-33,-30],[-58,-29],[-71,-43],[-66,-18],[-53,-21],[-63,-29],[-55,-29],[-31,-18],[-72,-31],[-38,-14],[-53,-15],[-54,-18],[-45,-9],[-62,-16],[-68,-23],[-54,-7],[-76,-11],[-52,-20],[-54,-27],[-28,-23],[-38,-18],[-128,-44],[-99,-39],[-98,-42],[-49,-46],[-15,-48],[-10,-31],[-52,-36],[-88,-31],[-7,-15],[-10,-10],[-13,-3],[-12,-6],[-9,-13],[6,-38],[-8,-28],[-8,-14],[-13,0],[-11,10],[-13,-4],[-11,-9],[-13,-3],[-8,14],[7,14],[19,26],[9,12],[0,18],[-10,11],[-11,8],[-12,1],[-13,-4],[-12,-9],[-13,-1],[-13,0],[-13,0],[-13,3],[-11,-9],[-10,-12],[-11,-8],[-10,-11],[-8,-14],[-19,-26],[-19,-24],[-12,-8],[-13,0],[-4,18],[0,18],[-12,9],[-12,-10],[-19,-25],[-6,-16],[-20,-23],[8,-14],[11,-9],[13,4],[12,8],[7,-15],[1,-17],[13,-2],[1,-18],[-10,-13],[-11,-12],[-11,-10],[-12,-11],[-18,-27],[-27,-40],[-18,-25],[-8,-14],[-20,-27],[-11,-10],[-9,-12],[-8,-15],[-15,-28],[-6,-16],[-9,14],[1,18],[11,33],[17,48],[1,18],[-6,16],[-13,-2],[-24,-11],[-24,-14],[-26,-9],[-11,-5],[-13,-8],[-20,-23],[-10,-13],[-8,-14],[-9,-12],[-12,-8],[-13,-8],[-13,-13],[-10,-10],[-11,-8],[-16,-23],[-12,-5],[-13,1],[-5,-14],[-11,-13],[-7,-15],[-10,-12],[-10,-10],[-12,-5],[-25,-12],[-25,-12],[-13,-6],[-13,-2],[-12,-5],[9,-13],[1,-12],[-18,-8],[-18,-1],[-8,-1],[-12,-9],[-13,-2],[-6,16],[-4,16],[-9,13],[-7,-4],[-7,-16],[-7,-7],[-13,-10],[-11,-4],[-11,1],[-12,8],[-5,16],[-6,34],[-1,35],[11,34],[11,32],[11,33],[-10,11],[-12,0],[-12,8],[-5,16],[-3,17],[-15,28],[-13,0],[-12,-8],[-23,-17],[-24,-19],[-21,-20],[-6,-17],[-10,-12],[-22,-21],[-9,-12],[-9,-13],[-8,-15],[-15,-29],[-4,-17],[2,-36],[-4,-36],[-8,-34],[-7,-35],[-9,-13],[-10,-10],[-21,-22],[-8,-14],[13,-31],[11,-53],[1,-53],[-4,-36],[-15,-51],[-14,-30],[-15,-29],[-15,-28],[-25,-42],[-14,-32],[-14,-51],[-6,-53],[9,-32],[1,-35],[-5,-35],[-2,-37],[-11,-34],[-7,-16],[-17,-26],[-21,-23],[-9,-12],[-16,-29],[-19,-25],[-18,-25],[-19,-25],[3,-6],[8,-2],[-4,-18],[-14,-31],[-7,-15],[-16,-28],[-11,-16],[-8,-9],[10,-7],[9,-13],[-3,-40],[-13,-28],[-13,-18],[-12,-15],[-9,-9],[-16,1],[-7,-12],[-8,-16],[-13,-6],[-32,45],[-7,3],[-10,-15],[-10,-5],[-12,11],[-13,11],[-11,-3],[-24,-17],[-16,-8],[-17,5],[-17,14],[-4,18],[7,20],[15,11],[6,12],[-10,14],[-23,17],[-19,30],[-11,28],[-34,28],[-39,26],[-30,23],[-35,13],[-31,4],[-30,7],[-37,7],[-22,3],[-34,9],[-34,9],[-25,13],[-34,16],[-29,17],[-26,12],[-19,16],[-19,10],[-15,-5],[-22,-9],[-32,-21],[-34,-27],[-34,-27],[-36,-27],[-33,-32],[-28,-28],[-19,-16],[-31,-34],[-20,-27],[-24,-27],[-29,-25],[-32,-28],[-33,-22],[-30,-12],[-24,-13],[-6,-4],[-6,-3],[-37,-7],[-38,-13],[-31,-17],[-29,-14],[-30,-15],[-31,-22],[-22,-16],[-25,-20],[-24,-24],[-24,-22],[-25,-35],[-20,-23],[-24,-38],[-11,-20],[-10,-28],[-10,-31],[-14,-33],[-8,-20],[-15,-23],[0,-1],[-7,-4],[-7,-6],[-7,-5],[-7,-5],[-7,-5],[-9,-6],[-7,-6],[-7,-6],[-7,-4],[-8,-2],[-9,-3],[-7,-5],[-6,-8],[-5,-9],[-4,-9],[-5,-9],[-4,-10],[-4,-9],[-3,-9],[-1,-11],[-2,-11],[-4,-9],[-5,-9],[-6,-7],[-6,-8],[-5,-8],[-6,-8],[-4,-9],[-4,-9],[-4,-10],[-3,-10],[-3,-10],[-4,-10],[-3,-11],[-4,-10],[-4,-8],[-5,-9],[-2,-11],[1,-11],[5,-8],[5,-7],[5,-8],[5,-9],[4,-9],[3,-10],[4,-10],[4,-11],[3,-10],[3,-11],[3,-11],[2,-10],[2,-12],[2,-10],[2,-10],[2,-11],[1,-10],[1,-11],[0,-11],[0,-12],[-2,-10],[-2,-11],[4,-10],[6,-7],[5,-10],[5,-10],[2,-11],[6,-6],[6,-8],[5,-9],[1,-11],[-4,-10],[6,-7],[6,-8],[0,-11],[-5,-8],[-3,-10],[0,-11],[1,-10],[0,-12],[0,-10],[1,-10],[1,-12],[2,-10],[2,-10],[2,-11],[3,-10],[4,-10],[2,-10],[0,-11],[2,-11],[1,-11],[0,-11],[-1,-12],[4,-10],[5,-9],[1,-10],[-2,-10],[1,-10],[6,-5],[6,-8],[8,-3],[0,-11],[-1,-11],[5,-10],[4,-9],[7,-5],[0,-12],[0,-10],[-1,-11],[-4,-10],[-6,-7],[3,-9],[4,-10],[1,-11],[1,-11],[1,-11],[-2,-9],[-2,-11],[2,-10],[5,-10],[4,-9],[-5,-10],[-3,-9],[7,-1],[7,-5],[6,-7],[4,-10],[3,-10],[-2,-10],[-5,-8],[-7,-7],[-8,-5],[-7,-4],[-2,-12],[0,-10],[0,-11],[0,-12],[-3,-10],[1,-10],[3,-10],[2,-11],[-2,-11],[-7,4],[-5,10],[-7,5],[0,-11],[3,-10],[6,-8],[3,-10],[0,-11],[4,-10],[6,-6],[3,-10],[-5,-7],[-8,-4],[-5,-8],[-4,-10],[5,-10],[-6,-7],[-8,-1],[-8,-2],[-2,-10],[7,-5],[7,-6],[3,-10],[-6,-7],[-7,-6],[-7,-5],[-7,-7],[-1,-10],[-2,-12],[3,-10],[-1,-11],[-2,-10],[2,-11],[0,-12],[-3,-9],[-6,-8],[-7,2],[-6,-7],[-2,-11],[-4,-9],[-3,-10],[-3,-11],[-4,-8],[-5,-9],[-2,-11],[-6,-7],[-7,-5],[-2,-11],[-7,-7],[-6,-7],[-5,-9],[-5,-8],[-3,-10],[-4,-11],[-4,-10],[-5,-9],[-3,-10],[8,0],[6,-7],[5,-9],[1,-11],[0,-12],[-4,-9],[-7,-6],[-8,0],[-6,5],[-3,10],[-5,8],[-6,-7],[-6,-7],[-5,-8],[-1,-11],[-3,-10],[-5,-8],[-6,-8],[-6,-6],[-7,-5],[-5,-9],[-5,-8],[-6,-8],[-6,-7],[-5,-8],[-7,-7],[-8,-4],[-7,-4],[-8,-5],[-7,-5],[-7,-5],[-7,-5],[-6,-6],[-3,-10],[-3,-10],[0,-12],[2,-10],[2,-11],[-4,-9],[-8,-4],[-8,-1],[-7,4],[-7,1],[-5,-8],[-1,-11],[-4,-10],[-7,-3],[-8,-1],[-8,3],[-8,-1],[-5,-8],[1,-10],[4,-9],[2,-10],[-6,-8],[-8,0],[-7,4],[-8,0],[-7,-4],[-8,1],[-9,0],[-8,-1],[-8,-4],[-5,-7],[-7,-7],[-8,-3],[-7,3],[-6,8],[-6,7],[-7,-4],[-6,-6],[-7,-4],[-8,-3],[-8,-2],[-7,-2],[-8,-2],[-7,-2],[-9,-1],[-7,-4],[-4,-10],[3,-10],[6,-8],[6,-7],[7,-5],[8,-2],[6,-7],[-7,-3],[-7,3],[-8,4],[-5,7],[-7,-4],[-8,3],[-5,8],[-1,11],[-1,11],[-7,2],[-8,-3],[-6,-8],[-7,-6],[-8,1],[-7,-5],[1,-11],[-5,-9],[-6,8],[-7,1],[-8,1],[0,-11],[-6,-8],[-8,-2],[-7,-4],[-7,-4],[-7,-5],[-7,-6],[-8,-1],[-4,9],[-5,9],[-6,5],[-5,0],[3,-10],[1,-11],[0,-12],[-7,-6],[-7,-6],[-6,-7],[-2,-11],[-7,-7],[-8,-5],[-8,-3],[-7,-4],[-8,-2],[-2,10],[-4,10],[-8,3],[-7,-8],[-7,-5],[-7,-4],[0,-12],[-4,-9],[-7,-6],[-7,-5],[-7,-5],[-6,-6],[-7,-6],[-7,-6],[-7,-5],[-8,-5],[-8,-4],[-8,-2],[-8,-2],[-8,0],[-7,6],[-8,2],[-7,3],[-7,3],[-8,2],[-8,6],[-5,7],[-8,4],[-7,-3],[-7,-4],[-4,-1],[-7,0],[-7,1],[-8,1],[-9,2],[-6,6],[-5,8],[-2,4],[-3,3],[-7,6],[-6,9],[-7,4],[-8,3],[-8,4],[-8,0],[-9,-1],[-8,0],[-9,1],[-10,0],[-8,0],[-9,-1],[-10,0],[-10,-1],[-10,0],[-10,-1],[-8,-1],[-10,-1],[-9,-2],[-7,-4],[-8,-3],[-8,-2],[-10,-2],[-10,-2],[-9,-5],[-7,-7],[-7,-7],[-8,-6],[-9,-4],[-8,-3],[-9,-2],[-8,-2],[-9,0],[-9,1],[-7,2],[-8,1],[-9,1],[-9,-1],[-10,-1],[-8,-1],[-8,-1],[-8,-1],[-8,0],[-10,-1],[-8,-2],[-8,-2],[-9,-3],[-10,-3],[-8,-4],[-7,-3],[-8,-5],[-8,-5],[-8,-4],[-8,-3],[-10,-4],[-8,-2],[-11,-1],[-10,-3],[-9,-5],[-7,-5],[-9,-4],[-7,-3],[-8,-6],[-8,-3],[-9,-3],[-9,-3],[-8,-3],[-9,-4],[-8,-1],[-7,-1],[-9,-1],[-10,-2],[-10,-1],[-10,-1],[-7,-1],[-9,-1],[-11,-1],[-9,0],[-10,0],[-9,2],[-8,5],[-6,6],[-2,11],[-5,9],[-8,1],[-7,-3],[-8,-3],[-9,1],[-7,1],[-7,-4],[-6,-7],[-9,-2],[-9,3],[-6,8],[-3,10],[-5,9],[-7,4],[-9,1],[-8,-1],[-8,-1],[-9,0],[-9,-1],[-8,0],[-7,0],[-10,-1],[-11,-2],[-8,0],[-10,-2],[-10,-3],[-7,-7],[-7,-6],[-7,-4],[-8,-1],[-8,-2],[-7,-1],[-8,-1],[-7,-1],[-8,0],[-8,-1],[-8,0],[-9,-1],[-9,0],[-7,1],[-8,0],[-8,0],[-9,0],[-9,1],[-8,1],[-8,1],[-8,1],[-8,2],[-7,2],[-10,1],[-10,0],[-16,0],[-8,-1],[-9,-2],[-8,0],[-21,-2],[-3,-1],[-5,0],[-9,-1],[-7,-1],[-8,0],[-8,0],[-9,0],[-8,0],[-8,0],[-8,-2],[-11,-6],[-8,-6],[-7,-6],[-7,-3],[-10,-2],[-9,-3],[-10,-2],[-8,0],[-9,0],[-10,1],[-11,0],[-10,-1],[-8,1],[-8,2],[-7,4],[-10,5],[-8,1],[-10,-1],[-9,0],[-9,0],[-11,-1],[-8,-1],[-10,3],[-8,4],[-8,1],[-10,1],[-8,-2],[-8,-2],[-7,-4],[-8,-5],[-8,-4],[-8,-2],[-9,-2],[-9,-1],[-10,-1],[-9,-1],[-10,-1],[-10,1],[-9,0],[-7,0],[-11,2],[-10,2],[-9,2],[-9,1],[-10,0],[-8,0],[-10,1],[-9,1],[-10,1],[-13,-1],[-14,0],[-15,0],[-14,1],[-12,2],[-9,1],[-10,2],[-10,0],[-11,-2],[-8,-1],[-10,-1],[-10,-2],[-10,-1],[-10,-1],[-11,0],[-7,-1],[-8,-1],[-11,-1],[-9,1],[-7,2],[-8,4],[-8,4],[-9,3],[-10,1],[-9,0],[-8,1],[-8,-1],[-9,0],[-8,0],[-9,0],[-9,0],[-8,1],[-8,3],[-9,5],[-9,4],[-9,2],[-4,1],[-6,1],[-8,0],[-8,-1],[-10,-1],[-9,-2],[-9,-7],[-7,-6],[-7,-3],[-11,-3],[-8,-1],[-9,-2],[-9,-2],[-10,-1],[-8,0],[-8,-1],[-9,0],[-7,-2],[-10,-1],[-8,-2],[-10,-1],[-7,-2],[-9,-1],[-8,-2],[-10,-1],[-8,-2],[-22,-4],[-11,-1],[-11,-1],[-8,0],[-9,4],[-8,2],[-7,3],[-7,4],[-8,6],[-8,5],[-9,1],[-8,0],[-7,-1],[-9,-1],[-9,0],[-9,-1],[-8,0],[-8,2],[-10,3],[-9,-1],[-8,-2],[-8,0],[-9,-1],[-9,-3],[-10,-2],[-7,-5],[-7,-8],[-8,-5],[-9,-1],[-8,-3],[-8,-3],[-7,-1],[-9,0],[-8,0],[-7,-1],[-10,-1],[-9,-1],[-9,-1],[-9,-1],[-9,-1],[-3,1],[-4,0],[-8,6],[-7,4],[-7,6],[-7,5],[-9,3],[-2,0],[-7,0],[-8,-1],[-9,0],[-9,0],[-8,0],[-9,0],[-8,1],[-9,1],[-8,-1],[-10,-3],[-6,-5],[-8,-7],[-7,-4],[-9,-4],[-8,-5],[-9,-5],[-9,-2],[-8,-1],[-10,0],[-8,-1],[-8,-1],[-8,-1],[-9,0],[-9,-1],[-7,1],[-9,0],[-8,0],[-9,1],[-9,2],[-8,-1],[-8,1],[-8,1],[-9,-1],[-7,0],[-8,0],[-8,0],[-7,4],[-8,-2],[-9,2],[-7,-4],[-7,-6],[-8,-3],[-9,-2],[-8,-2],[-6,-7],[-9,-2],[-9,-3],[-7,3],[-8,3],[-7,0],[-8,1],[-7,-6],[-8,-2],[-8,1],[-7,2],[-9,-1],[-8,1],[-7,3],[-8,1],[-8,0],[-8,1],[-8,0],[-1,0],[-8,0],[-9,0],[-8,-1],[-22,-1],[-13,-4],[-13,-4],[-13,-3],[-13,-4],[-13,-5],[-13,-5],[-13,-4],[-14,-3],[-14,-3],[-13,-1],[-13,-1],[-13,-1],[-13,-1],[-13,-3],[-13,-3],[-13,-2],[-13,-3],[-12,-4],[-13,-3],[-12,-4],[-13,-3],[-14,-2],[-13,-3],[-14,-3],[-13,-3],[-13,-3],[-12,-4],[-12,-2],[-14,-2],[-13,-2],[-13,-2],[-14,-2],[-14,-2],[-13,-2],[-12,-1],[-14,-2],[-13,-2],[-13,-1],[-13,-2],[-13,-3],[-12,-5],[-13,-5],[-13,-4],[-12,-3],[-14,-4],[-13,-3],[-13,-4],[-12,-3],[-13,-4],[-14,-2],[-13,-4],[-12,-3],[-13,-3],[-13,-2],[-13,-3],[-14,-2],[-12,-2],[-15,-3],[-12,-2],[-14,-3],[-14,-2],[-14,-2],[-14,-3],[-13,-2],[-14,-3],[-12,-2],[-13,-3],[-13,-4],[-13,-3],[-12,-5],[-13,-3],[-13,-4],[-13,-3],[-12,-4],[-14,-4],[-13,-3],[-14,-4],[-13,-3],[-14,-3],[-13,-3],[-13,-3],[-14,-4],[-12,-3],[-14,-3],[-14,-3],[-14,-2],[-12,-2],[-13,-1],[-14,-2],[-12,-2],[-14,-2],[-14,-3],[-12,-3],[-14,-4],[-13,-4],[-12,-3],[-13,-2],[-13,-2],[-13,-1],[-13,-1],[-14,-1],[-14,0],[-14,-1],[-14,-1],[-14,-3],[-12,-4],[-13,-5],[-12,-4],[-14,-3],[-12,-2],[-13,-2],[-13,-2],[-13,-3],[-12,-3],[-14,-1],[-12,-3],[-13,-4],[-14,-3],[-12,-3],[-13,-4],[-12,-3],[-14,-3],[-12,-3],[-13,-2],[-13,0],[-14,0],[-2,0],[-4,0],[-8,-1],[-9,0],[-9,1],[-7,1],[-8,-1],[-9,-2],[-9,-1],[-7,-3],[-9,-2],[-8,-2],[-8,-3],[-8,-3],[-8,-4],[-8,-1],[-8,-2],[-26,-5],[-8,0],[-10,-1],[-8,-2],[-10,2],[-10,2],[-9,-3],[-10,-6],[-8,-3],[-9,-1],[-4,-2],[-5,-1],[-8,-1],[-8,-1],[-8,-5],[-9,-5],[-8,-2],[-9,-1],[-9,-1],[-8,-1],[-9,-1],[-11,-1],[-11,-2],[-8,-1],[-10,-1],[-9,-1],[-10,-1],[-10,-1],[-11,-2],[-4,0],[-5,-1],[-10,-1],[-10,-2],[-11,-2],[-8,-2],[-7,-2],[-10,-5],[-9,-2],[-8,-3],[-8,-4],[-9,-2],[-10,-2],[-9,1],[-9,3],[-8,3],[-8,6],[-10,0],[-11,-3],[-10,-3],[-8,-2],[-9,-4],[-7,-4],[-10,-4],[-8,-3],[-8,-6],[-9,-5],[-8,-2],[-8,-1],[-9,-3],[-8,-4],[-8,0],[-7,1],[-9,-3],[-7,-2],[-9,-1],[-9,-1],[-9,-1],[-10,0],[-8,-1],[-9,-2],[-9,-5],[-7,-5],[-7,-2],[-9,-4],[-7,-5],[-8,-4],[-10,-5],[-9,-6],[-10,-8],[-7,-3],[-7,-5],[-9,-8],[-8,-7],[-7,-6],[-10,-6],[-8,-1],[-7,6],[-8,3],[-6,-9],[-7,-8],[-7,-5],[-6,-7],[-7,-4],[-8,-1],[-9,-3],[-8,-1],[-8,-4],[-7,-7],[-1,-2],[-9,-5],[-10,-4],[-10,-5],[-9,-5],[-9,-4],[-7,-5],[-8,-5],[-7,-5],[-7,-5],[-7,-5],[-7,-4],[-7,-4],[-7,-5],[-8,-4],[-8,-4],[-9,0],[-9,-4],[-9,-3],[-8,-4],[-8,-5],[-7,-5],[-9,-6],[-7,-4],[-8,-6],[-8,-7],[-8,-5],[-8,-6],[-7,-6],[-8,-7],[-9,-6],[-9,-6],[-8,-5],[-11,-5],[-9,-8],[-9,-9],[-7,-6],[-6,-7],[-7,-5],[-7,-7],[-8,-7],[-7,-9],[-6,-7],[-6,-7],[-7,-10],[-5,-7],[-7,-7],[-6,-7],[-6,-7],[-5,-9],[-5,-8],[-6,-13],[-5,-13],[-6,-9],[-7,-9],[-7,-8],[-6,-7],[-6,-6],[-8,-9],[-8,-7],[-8,-7],[-6,-7],[-6,-7],[-7,-6],[-7,-7],[-7,-8],[-6,-7],[-7,-7],[-6,-7],[-7,-5],[-6,-6],[-7,-9],[-6,-8],[-6,-9],[-5,-8],[-6,-9],[-6,-10],[-6,-9],[-7,-11],[-6,-13],[-4,-10],[-4,-9],[-5,-12],[-4,-11],[-4,-10],[-3,-10],[-3,-11],[-3,-10],[-5,-11],[-3,-11],[-4,-10],[-4,-9],[-3,-12],[-2,-11],[-2,-11],[-3,-13],[-2,-10],[-2,-10],[-1,-13],[-1,-10],[0,-13],[-3,-25],[-3,-25],[-2,-35],[-2,-28],[-3,-42],[-2,-29],[16,-6],[18,0],[19,6],[20,19],[19,21],[22,14],[7,2],[31,-16],[25,-32],[19,-41],[20,-37],[19,-37],[20,-46],[16,-41],[18,-39],[21,-42],[4,-46],[-3,-54],[-10,-50],[-9,-46],[-9,-49],[-11,-45],[-18,-39],[-28,-33],[-17,-42],[-19,-41],[-22,-35],[-27,-33],[-20,-38],[-11,-45],[1,-46],[-4,-49],[-17,-41],[-15,-40],[-21,-39],[-23,-36],[-25,-33],[-28,-27],[-28,-25],[-23,-10],[-26,-27],[-21,-40],[-24,-35],[-27,-28],[-35,-28],[-32,-13],[-32,-14],[-35,-15],[-30,-17],[-35,-13],[-32,-8],[-40,-6],[-16,0],[-26,31],[-9,14],[-33,1],[-33,-2],[-34,0],[-34,-2],[-33,-6],[-27,-31],[-32,-14],[-35,-13],[-35,-11],[-35,-10],[-34,-2],[-35,5],[-25,11],[-13,-16],[-20,-39],[-19,-42],[-20,-37],[-24,-35],[-30,-36],[-27,-26],[-26,-28],[-28,-30],[-28,-30],[-22,-37],[-19,-42],[-18,-48],[-15,-45],[-25,-28],[-30,-32],[-28,-23],[-16,-31],[1,-22],[18,-44],[-7,-28],[-20,-17],[-24,-10],[-20,10],[-27,4],[-23,-8],[-28,-9],[-6,-21],[4,-19],[21,-37],[6,-45],[0,-50],[-12,-47],[-22,-37],[-24,-33],[-28,-26],[-32,-29],[-33,-6],[-36,-7],[-34,-12],[-31,-14],[-31,-12],[-14,-6],[-33,-16],[-33,-15],[-32,-8],[-34,10],[-32,14],[-29,25],[-24,19],[-31,13],[-35,-4],[-18,-8],[-32,9],[-32,11],[-44,12],[-32,10],[-34,10],[-32,7],[-33,-13],[-35,-18],[-30,-18],[-29,-25],[-35,-32],[-31,-27],[-32,-28],[-31,-28],[-32,-25],[-31,-27],[-37,-24],[-25,-34],[-27,-35],[-30,-21],[-9,-6],[-28,-25],[-30,-23],[-38,-12],[-16,-9],[0,-23],[-4,-19],[-30,-22],[-13,-37],[2,-32],[-10,-46],[-28,-25],[-30,-31],[-26,-26],[-37,-26],[-34,-9],[-35,-8],[-23,-3],[-30,-22],[-19,-37],[-21,-43],[-27,-43],[-20,-35],[-25,-40],[-22,-41],[-20,-38],[-20,-41],[-20,-43],[-19,-40],[-19,-48],[-21,-50],[-24,-60],[-18,-48],[-14,-49],[-15,-51],[-15,-60],[4,-41],[30,-19],[33,-13],[32,-12],[34,-12],[31,-14],[29,-20],[30,-22],[30,-22],[7,-8],[26,-29],[9,-29],[-2,-20],[19,5],[5,-3],[27,-27],[18,-27],[7,-39],[0,-15],[0,-16],[0,-53],[-2,-24],[3,-26],[7,-22],[6,-12],[5,-14],[1,-12],[7,-30],[21,-19],[29,2],[14,5],[20,12],[17,-3],[1,-22],[-6,-21],[-26,-18],[-29,-13],[-2,-23],[0,-22],[-18,-42],[-33,-26],[-30,-30],[-31,-28],[-32,-16],[-36,-12],[-31,-16],[-36,-18],[-33,0],[-34,0],[-35,-2],[-33,-8],[-31,-16],[-32,-16],[-34,-10],[-32,-15],[-25,-30],[-25,-33],[-26,-32],[-25,-39],[-24,-31],[-25,-37],[-24,-38],[-21,-36],[-23,-40],[-25,-47],[-22,-36],[-23,-35],[-20,-40],[-22,-42],[-21,-39],[-19,-44],[-13,-49],[-11,-55],[-7,-44],[-3,-47],[-14,-46],[-18,-46],[-12,-52],[-6,-52],[-1,-47],[21,-34],[24,-32],[11,-46],[2,-25],[-9,-48],[-8,-45],[-27,-35],[-25,-37],[-8,-46],[-21,-37],[-20,-35],[-19,-39],[-20,-43],[-15,-48],[-15,-47],[-18,-45],[-15,-42],[-6,-48],[8,-49],[4,-49],[2,-46],[-2,-48],[-8,-49],[-13,-47],[-12,-45],[10,-47],[16,-46],[11,-43],[13,-43],[18,-46],[16,-40],[20,-41],[19,-39],[26,-27],[31,-21],[33,-16],[34,-7],[34,-10],[30,-16],[34,-20],[38,-23],[33,-20],[32,-21],[31,-23],[32,-18],[32,-12],[32,-11],[37,-3],[8,5],[10,17],[9,0],[14,-13],[9,-21],[31,-19],[32,-12],[34,-12],[34,-6],[32,-10],[35,-16],[32,-27],[7,-28],[-1,-37],[2,-28],[11,-27],[17,-37],[4,-24],[-1,-21],[-16,-17],[-10,-2],[-12,6],[-16,6],[-13,-3],[-7,-3],[-15,-1],[-5,0],[-11,7],[-3,13],[-10,10],[-13,-3],[-28,-24],[-27,-27],[-29,-26],[-32,-27],[-28,-23],[-29,-27],[-31,-25],[-29,-27],[-31,-25],[-28,-26],[-31,-30],[-27,-28],[-28,-27],[-29,-26],[-14,-46],[-3,-12],[-28,-26],[-30,-25],[-18,-40],[-11,-44],[-21,-40],[-18,-40],[-11,-42],[-17,-44],[-24,-38],[-24,-32],[-22,-35],[-18,-41],[-25,-32],[-29,-25],[-29,-25],[-29,-26],[-30,-24],[-30,-19],[-32,-22],[-27,-31],[-30,-27],[-32,-16],[-34,-5],[-33,8],[-31,19],[-22,36],[-21,38],[-14,43],[0,47],[0,46],[3,49],[12,43],[13,44],[6,49],[4,46],[2,49],[5,47],[15,43],[27,26],[12,40],[-16,41],[-29,25],[-25,30],[-20,41],[-25,31],[-34,-17],[-32,9],[-22,39],[-27,29],[-7,50],[8,47],[-4,49],[-9,46],[-9,43],[12,46],[-2,45],[-20,36],[-34,13],[-34,1],[-38,-5],[-42,-13],[-34,-18],[-29,-18],[-33,-22],[-28,-25],[-32,-28],[-25,-30],[-27,-35],[-33,-30],[-32,-19],[-29,-20],[-31,-22],[-32,-25],[-33,-7],[-32,13],[-33,18],[-33,5],[-37,-5],[-34,-4],[-34,-14],[-33,-5],[-35,-2],[-33,2],[-34,2],[-38,2],[-34,0],[-37,-5],[-33,-1],[-33,-4],[-35,-6],[-32,-9],[-34,-16],[-33,-25],[-28,-37],[-31,-19],[-40,1],[-35,1],[-38,-5],[-43,-6],[-36,-1],[-33,-1],[-40,-4],[-32,-9],[-35,-15],[-33,-23],[-32,-23],[-32,-24],[-30,-27],[-28,-23],[-17,-23],[-10,-31],[-10,-19],[-12,-14],[-2,-3],[-27,-28],[-24,-31],[-27,-29],[-19,-38],[-18,-39],[-28,-30],[-28,-28],[-31,-24],[-32,-22],[-31,-19],[-31,-14],[-32,-21],[-29,-24],[-6,-2],[-26,-10],[-32,18],[-22,35],[-3,32],[-31,16],[-34,-3],[-35,4],[-33,-3],[-35,-6],[-32,-11],[-34,-7],[-35,-9],[-33,-2],[-33,6],[-15,30],[-6,24],[-12,-11],[-4,14],[0,25],[2,26],[0,52],[-11,43],[-22,39],[-26,30],[-5,-6],[-9,-44],[-2,-51],[-7,-27],[-23,-29],[-21,11],[-13,-5],[-22,-35],[-30,-24],[-33,4],[-10,45],[-4,45],[-15,23],[-19,-12],[-26,-4],[-8,-7],[-12,-43],[-9,-9],[-32,-16],[-32,16],[-29,26],[-18,39],[3,46],[1,47],[10,46],[2,45],[-8,47],[-9,48],[-15,48],[-11,45],[-2,46],[-3,48],[-15,40],[-17,40],[-21,36],[-8,11],[-34,7],[-37,2],[-33,7],[-33,34],[-5,8],[-11,9],[-7,-18],[-4,-14],[-14,-43],[-27,-28],[-28,-22],[-30,-25],[-24,-35],[-30,-27],[-30,-24],[-31,-26],[-34,-18],[-35,-15],[-34,-14],[-36,-9],[-33,-12],[-32,-10],[-35,-4],[-34,9],[-10,45],[-19,48],[-28,28],[-27,25],[-9,44],[0,48],[1,54],[-9,-17],[-14,-42],[-21,-43],[-28,-25],[-34,-4],[-39,2],[-35,1],[-37,15],[-29,22],[-32,20],[-31,20],[-6,10],[-19,38],[-28,1],[-30,-18],[-28,-10],[-23,18],[-18,39],[-8,19],[-13,11],[-10,16],[-15,2],[-9,17],[-3,11],[-2,9],[-1,9],[-5,-9],[-3,-9],[-15,-16],[-15,4],[-4,13],[-1,20],[6,16],[6,20],[3,11],[3,9],[4,9],[1,6],[-3,3],[-5,-6],[-3,-12],[-4,-20],[-7,-19],[-9,-17],[-13,-12],[-14,-7],[-15,-3],[-13,-9],[-16,1],[-14,-10],[-15,-2],[-7,11],[-15,3],[-10,16],[3,20],[14,12],[14,8],[3,22],[11,15],[4,3],[8,-1],[-2,17],[7,18],[9,18],[7,20],[10,17],[9,17],[12,13],[13,12],[12,12],[11,17],[10,16],[12,13],[10,16],[4,0],[11,-15],[16,0],[16,2],[15,-2],[8,16],[5,4],[9,18],[4,-3],[2,-7],[6,10],[14,1],[3,1],[5,13],[-12,10],[5,11],[1,8],[10,-7],[8,-13],[-4,-12],[8,-5],[12,9],[8,21],[0,6],[15,7],[50,10],[10,1],[-1,8],[14,11],[13,11],[14,7],[16,3],[16,3],[15,1],[15,0],[16,1],[15,-1],[17,0],[15,0],[15,0],[16,-1],[16,-1],[16,-1],[16,-1],[16,0],[16,-5],[14,-5],[12,-14],[8,-9],[15,5],[12,13],[12,13],[15,5],[15,4],[15,7],[16,2],[15,3],[15,8],[14,6],[2,14],[15,-3],[6,-6],[15,8],[14,7],[14,10],[13,9],[1,6],[15,8],[15,6],[15,5],[15,3],[16,3],[14,5],[15,4],[15,6],[14,6],[15,4],[15,8],[14,7],[15,3],[16,0],[15,-1],[15,-8],[10,-4],[11,15],[13,10],[12,13],[0,22],[1,21],[5,20],[6,20],[4,22],[0,23],[0,21],[0,22],[7,20],[3,21],[2,22],[0,21],[1,21],[3,20],[-9,18],[-2,21],[-1,21],[-4,20],[-3,21],[4,21],[7,19],[10,16],[10,16],[6,20],[4,20],[1,9],[-13,11],[12,3],[4,5],[1,21],[0,21],[-2,21],[-5,20],[-1,21],[7,19],[2,7],[-13,11],[-3,20],[2,12],[-2,22],[8,5],[5,20],[5,20],[4,21],[-7,19],[-8,18],[-9,17],[-11,7],[2,7],[6,0],[-8,18],[-7,20],[-1,15],[4,20],[8,18],[3,20],[0,13],[4,20],[5,21],[5,20],[4,20],[1,11],[-11,14],[-2,3],[-8,19],[-12,16],[-13,11],[-8,19],[-5,20],[-5,20],[-7,20],[-7,19],[-6,21],[-4,21],[-6,20],[-8,21],[-5,21],[-5,23],[-5,20],[-6,21],[-7,19],[-6,20],[-5,20],[-4,21],[-6,19],[-8,19],[-5,20],[-7,21],[-6,20],[-6,20],[-6,21],[-4,20],[-6,22],[-7,21],[-6,19],[-6,19],[-6,22],[-1,0],[-84,215],[-20,30],[-47,-6],[-38,34],[-13,36],[11,26],[49,3],[15,63],[38,66],[10,58],[-17,78],[46,58],[70,72],[35,31],[2,140],[20,59],[6,39],[22,58],[100,129],[142,114],[150,101],[0,3],[12,99],[13,76],[31,53],[6,42],[3,85],[17,89],[52,148],[42,104],[66,33],[74,66],[115,17],[43,32],[145,129],[101,192],[121,306],[153,237],[93,134],[119,184],[-72,95],[-89,213],[-71,140],[-80,38],[-3,151],[23,223],[51,252],[4,239],[-15,250],[31,93],[14,76],[10,147],[-197,70],[-93,29],[-59,84],[-29,80],[-45,162],[-28,158],[-68,123],[-78,52],[-65,-1],[-102,-36],[-125,58],[-117,26],[-148,12],[-155,34],[-122,33],[-152,76],[-109,82],[-50,89],[-37,114],[-39,56],[-68,55],[-93,22],[-105,-7],[-89,33],[-109,67],[-127,126],[-66,151],[-103,182],[-117,160],[-59,72],[-88,108],[-72,54],[-84,62],[-136,83],[-166,81],[-83,77],[-140,82],[-98,36],[-91,14],[-130,42],[-152,96],[-83,123],[-60,88],[4,56],[44,92],[17,58],[42,65],[45,-9],[53,15],[29,22],[71,-2],[24,52],[-19,68],[16,58],[23,23],[24,43],[-132,90],[-25,26],[3,74],[31,37],[-1,65],[-16,179],[-55,137],[-95,153],[-104,261],[-128,296],[-111,224],[-96,90],[-187,297],[-249,248],[-407,526],[-66,75],[-227,260],[-224,207],[-168,72],[-145,41],[-175,-33],[-193,-85],[-135,3],[-210,54],[-145,75],[-43,75],[-40,26],[-32,-27],[-77,11],[-291,229],[-263,271],[-341,362],[-124,196],[-141,259],[-35,73],[-300,616],[-286,649],[-205,573],[-83,250],[-49,195],[-73,163],[-15,136],[-10,127],[11,91],[43,53],[-19,98],[-64,171],[-248,96],[-299,121],[-244,125],[-267,7],[-242,-30],[-125,-4],[-105,80],[-70,155],[-70,69],[-140,140],[-369,146],[-153,67],[-189,83],[-312,279],[-239,195],[-78,63],[-297,257],[-380,327],[-12,11],[-215,299],[-214,222],[-86,90],[-274,309],[-94,39],[-41,34],[-24,20],[-36,29],[-137,160],[-217,330],[-168,377],[-18,36],[-88,179],[-118,314],[-88,236],[-40,105],[-29,226],[-62,234],[-18,55],[-49,148],[-5,17],[-26,20],[-68,54],[-33,27],[-293,-171],[-216,8],[-83,35],[-84,57],[-37,68],[-27,25],[-32,-3],[-39,17],[-120,63],[-181,110],[-112,139],[-100,87],[-62,37],[-37,13],[-12,29],[-4,9],[-51,13],[-56,-10],[-49,13],[-189,93],[-93,45],[-66,58],[-32,12],[-67,-17],[-128,21],[-55,64],[-41,36],[-8,39],[-23,7],[-44,-45],[-26,-12],[-99,7],[-40,-20],[-14,-50],[-56,-42],[-58,-48],[-36,11],[-25,8],[-42,4],[-129,-114],[-70,-13],[-51,21],[-154,188],[-133,67],[-132,13],[-4,-78],[-23,-4],[-63,-11],[-39,141],[-314,-291],[-127,4],[-319,694],[-67,29],[-51,88],[-477,782],[-178,-260],[-32,-27],[-36,68],[46,41],[207,287],[-81,98],[-106,71],[-41,42],[-107,-22],[-51,-67],[-59,0],[-20,100],[-34,36],[-58,-15],[-151,-313],[-127,61],[-93,-82],[-362,362],[-66,53],[-88,23],[-20,-21],[-17,-88],[-40,10],[-45,29],[-47,-21],[-44,-67],[-44,-80],[7,-89],[32,-64],[3,-49],[-50,-20],[-50,26],[23,87],[-20,54],[-134,-74],[-75,-95],[-11,-77],[7,-43],[0,-55],[-30,-11],[-73,-30],[-51,-23],[-59,-26],[-46,16],[20,42],[27,25],[56,36],[43,55],[28,52],[-63,-2],[-173,-24],[-157,-38],[-87,-114],[-15,-6],[-33,-10],[-13,-3],[-9,-1],[-13,5],[-14,1],[-13,-4],[-13,-10],[-12,-8],[-11,-10],[-12,-8],[-6,0],[-2,6],[-7,15],[-11,10],[-9,0],[-12,-6],[-11,-9],[-6,-5],[-4,2],[-3,4],[-6,16],[-3,20],[-2,18],[-3,18],[-3,18],[-4,18],[-1,18],[-2,20],[-2,18],[3,18],[8,17],[12,18],[5,8],[11,9],[8,15],[11,11],[4,4],[10,11],[12,13],[10,6],[13,9],[26,10],[14,0],[14,-4],[6,8],[7,16],[-4,3],[-14,1],[-14,-3],[-11,4],[-5,5],[-4,7],[-2,6],[8,32],[5,21],[16,100],[2,64],[-15,72],[-33,93],[-32,58],[-32,53],[-26,34],[-13,16],[-41,29],[-174,92],[-8,-9],[-13,-6],[-14,4],[-16,1],[-8,0],[-16,-3],[-9,8],[8,17],[5,10],[15,8],[15,9],[5,6],[1,6],[-1,9],[-6,17],[-7,14],[-7,18],[-6,16],[-8,16],[-7,15],[-6,15],[-8,17],[-8,16],[-8,13],[-9,13],[-10,16],[-9,16],[-5,15],[7,12],[4,15],[-9,23],[-7,12],[-6,14],[-10,24],[-11,24],[-12,27],[-21,46],[-28,62],[-17,35],[-29,34],[-17,21],[-13,21],[-15,24],[-5,6],[-3,5],[-1,6],[-3,28],[-24,203],[-20,95],[-24,78],[-34,87],[-50,149],[-35,137],[-30,92],[-37,100],[-25,46],[-25,46],[-6,6],[-23,39],[-17,42],[-19,40],[-20,41],[-24,47],[-19,41],[-21,47],[-19,45],[-19,46],[-20,37],[-23,50],[-15,47],[-23,41],[-24,42],[-22,43],[-17,39],[-18,40],[-13,52],[-28,88],[-21,41],[-20,44],[-19,47],[-23,43],[-15,42],[-15,47],[-20,46],[-20,45],[-17,43],[-21,43],[-24,42],[-22,34],[-26,48],[-23,39],[-23,32],[-49,69],[-31,24],[-35,-5],[-32,-23],[-29,-18],[-27,27],[-69,155],[-14,44],[-16,45],[-18,45],[-23,54],[-22,43],[-25,49],[-22,44],[-28,49],[-18,42],[-23,36],[-24,41],[-30,41],[-25,41],[-28,36],[-23,32],[-26,27],[-24,30],[-25,37],[-14,48],[-2,49],[8,45],[-12,44],[-32,21],[-31,23],[-29,31],[-27,40],[-32,24],[-33,6],[-32,25],[-19,45],[-2,46],[-17,43],[-30,33],[-31,25],[-30,31],[-28,32],[-34,0],[-32,7],[-31,26],[-35,53],[-27,42],[-25,37],[-23,43],[-27,47],[-26,24],[-33,37],[-26,31],[-29,30],[-26,28],[-31,28],[-31,29],[-29,22],[-30,26],[-28,29],[-32,29],[-38,28],[-29,25],[-31,24],[-29,21],[-31,27],[-26,31],[-26,33],[-24,33],[-25,40],[-21,37],[-27,33],[-26,32],[-29,32],[-27,35],[-29,23],[-29,32],[-28,31],[-25,28],[-32,23],[-32,16],[-30,16],[-28,30],[-18,43],[-20,42],[-30,29],[-30,39],[-23,33],[-28,41],[-29,28],[-27,26],[-30,19],[-29,26],[-31,24],[-31,14],[-32,16],[-29,29],[-30,32],[-26,34],[-26,30],[-27,27],[-36,33],[-36,33],[-43,39],[-31,30],[-30,19],[-31,24],[-28,32],[-30,27],[-29,25],[-24,24],[-46,43],[-33,36],[-31,34],[-30,33],[-33,32],[-33,27],[-25,40],[-18,46],[-32,27],[-33,30],[-58,32],[-36,21],[-55,29],[-32,28],[-31,34],[-28,37],[-39,9],[-43,-3],[-36,16],[-23,48],[-21,48],[-9,19],[-13,80],[-24,-35],[-35,-25],[-21,-9],[-17,-7],[-39,-15],[-37,-16],[-42,-16],[-38,-14],[-45,-1],[-40,-1],[-40,0],[-45,0],[-37,5],[-40,14],[-40,12],[-38,13],[-38,8],[-41,1],[-44,0],[-44,-1],[-47,0],[-6,-9],[-7,-4],[-13,-12],[-12,-16],[-12,-14],[-14,-8],[-17,-9],[-16,-8],[-14,-12],[-12,-14],[-13,-11],[-20,-7],[-11,0],[-15,-1],[-15,-9],[-15,-7],[-14,-9],[-51,-27],[-15,-7],[-15,2],[-15,3],[-20,14],[-6,6],[-14,9],[-14,10],[-17,4],[-14,2],[-16,0],[-15,-1],[-16,-2],[-15,-7],[-17,-7],[-15,-6],[-15,-8],[-16,-7],[-16,-9],[-20,-13],[-9,-5],[-14,-8],[-15,-8],[-14,-9],[-13,-10],[-31,-4],[-15,-3],[-15,-8],[-14,-9],[-15,-11],[-27,-10],[-4,-1],[-7,-3],[-22,-10],[-36,-16],[-24,-12],[-16,-8],[-13,-10],[-12,-15],[-14,-10],[-14,-9],[-15,-9],[-5,-2],[-13,-9],[-14,-9],[-14,-8],[-13,-11],[-10,-16],[-11,-16],[-9,-17],[-9,-17],[-5,-20],[-1,-21],[0,-23],[5,-20],[10,-17],[0,-21],[-10,-16],[-7,-19],[-10,-15],[-12,-15],[-13,-11],[-13,-11],[-13,-11],[-13,-12],[-12,-15],[-11,-16],[-11,-17],[-11,-15],[-12,-14],[-11,-15],[-11,-15],[-12,-12],[-14,-7],[-16,-2],[-13,-10],[-12,-13],[-12,-15],[-11,-15],[-10,-17],[-10,-17],[-9,-19],[-1,-22],[-3,-22],[-11,-16],[-11,-15],[-9,-17],[-9,-19],[-8,-19],[-8,-20],[-5,-20],[-7,-21],[-9,-17],[-11,-14],[-11,-14],[-10,-17],[-8,-17],[7,-8],[-8,-16],[-11,-16],[-12,-14],[-11,-15],[-11,-15],[-11,-15],[-11,-13],[-5,-12],[-2,-7],[-9,-18],[-14,-5],[-13,-13],[-10,-14],[-11,-14],[-9,-18],[-2,-22],[-9,-17],[-14,-7],[-15,-6],[-12,-13],[-13,-9],[-15,-6],[-15,-3],[-15,0],[-16,0],[-16,0],[-16,1],[-16,-3],[-16,-7],[-14,-9],[-15,-6],[-15,0],[-17,1],[-16,3],[-7,3],[-7,4],[-3,-7],[-13,-8],[-13,-13],[-6,-2],[-13,-12],[-13,-11],[-13,-11],[-13,-11],[-14,-10],[-15,-10],[-15,-2],[-15,-1],[-14,-9],[-15,-9],[-14,-9],[-14,-7],[-14,-7],[-16,-7],[-13,-7],[-15,-6],[-16,-4],[-15,-5],[-14,-7],[-15,-6],[-14,-9],[-12,-11],[-13,-13],[-14,-10],[-3,-3],[-4,-3],[-9,-10],[-18,-13],[-32,-29],[-58,-61],[-48,-55],[-28,-30],[-2,-2],[-13,-13],[-13,-13],[-13,-11],[-11,-12],[-13,-14],[-12,-12],[-13,-13],[-12,-14],[-12,-14],[-11,-16],[-7,-12],[-23,-40],[-8,-15],[-10,-18],[-10,-15],[-10,-17],[-8,-18],[-7,-18],[-3,-8],[-24,-50],[-9,-21],[-28,-65],[-9,-17],[-6,-19],[-3,-7],[-13,-36],[-17,-42],[-18,-40],[-17,-37],[-25,-61],[-22,-60],[-24,-50],[-35,-75],[-18,-41],[-23,-66],[-7,-28],[1,-126],[3,-18],[5,-169],[9,-56],[29,-130],[7,-22],[10,-46],[-1,-99],[-8,-101],[-5,-18],[-28,-47],[-14,-39],[-1,-44],[-6,-20],[-4,-21],[-19,-58],[-11,-41],[-12,-63],[-11,-86],[-13,-62],[-37,-43],[-6,-19],[-1,-15],[-11,16],[-14,-6],[-13,-15],[-9,-16],[-11,-16],[-8,-3],[-5,9],[4,8],[20,22],[7,20],[3,21],[0,23],[-4,22],[-97,263],[-11,35],[-5,15],[-11,16],[-12,41],[-7,20],[-5,9],[-9,18],[-7,17],[-10,17],[-10,28],[-3,6],[-4,3],[0,7],[5,14],[-4,24],[-7,19],[-11,15],[-9,17],[-165,365],[-22,32],[-19,38],[-51,90],[-25,49],[-19,40],[-19,31],[-17,25],[-6,15],[-31,59],[-17,29],[-9,18],[-188,327],[-35,47],[-9,17],[-9,19],[-8,17],[-34,49],[-6,8],[-18,32],[-5,5],[-1,5],[-1,22],[-5,21],[-12,15],[-11,15],[-13,14],[-6,20],[1,21],[6,20],[9,15],[-3,3],[-10,-15],[-12,-28],[-15,5],[-14,12],[-9,11],[-17,19],[-27,28],[-46,52],[-7,8],[-12,12],[-22,26],[-53,50],[-15,8],[-11,14],[-16,12],[-42,31],[-29,31],[-21,22],[-24,29],[-21,32],[-12,14],[-21,34],[-11,14],[-53,84],[-12,14],[-10,11],[-25,26],[-23,20],[-12,12],[-11,15],[-2,6],[-7,-1],[-18,-10],[-5,11],[-14,-9],[4,-10],[-14,-8],[-2,4],[-23,-15],[1,-4],[-25,-14],[-20,-33],[3,-8],[-24,-16],[-6,18],[-10,-2],[-14,-9],[-6,-16],[4,-11],[-14,-11],[7,-19],[-12,-10],[-13,-12],[-12,-14],[-11,-13],[-17,3],[-14,-4],[-13,-12],[-14,-9],[-14,-7],[-12,-13],[-15,1],[-23,27],[-15,-2],[-12,-15],[-5,-20],[-7,-19],[-10,-15],[-15,-4],[-8,-6],[-6,-2],[2,-6],[-11,4],[-43,-17],[-2,11],[-8,-4],[11,-59],[4,-23],[2,-4],[0,-9],[-6,-7],[-66,-40],[-79,-37],[-3,21],[-18,-6],[-1,15],[-66,-12],[0,10],[-29,-3],[-6,2],[-14,8],[-22,-5],[-10,9],[1,21],[-1,17],[-14,-6],[-15,-8],[-14,-10],[-14,-10],[-12,-12],[-11,-14],[-10,-16],[-10,-17],[-4,-21],[-1,-11],[8,-15],[11,-17],[1,-8],[-7,-7],[-2,-2],[-13,-9],[-10,5],[-4,14],[-4,8],[-1,4],[-13,-5],[-11,-4],[-1,-3],[-12,-5],[-15,-5],[-11,15],[-7,11],[4,23],[-13,9],[-15,0],[-15,-6],[-15,-8],[-9,-4],[1,-14],[-3,-8],[-3,-6],[4,-9],[3,-1],[1,-4],[0,-8],[-3,-11],[0,-9],[0,-6],[-2,-3],[-3,4],[-4,-5],[-3,-3],[-3,-1],[-4,-7],[0,-6],[-4,-5],[-4,-5],[-6,-2],[-6,-1],[-3,1],[-7,0],[-4,3],[-10,3],[-6,4],[-4,4],[-1,6],[3,11],[4,11],[4,11],[7,3],[3,0],[5,-1],[4,-7],[1,-9],[1,-9],[4,1],[6,7],[9,12],[1,5],[2,6],[5,10],[1,11],[1,7],[0,3],[1,5],[0,10],[-2,4],[-7,-4],[-5,-3],[-8,-12],[-11,12],[14,22],[-4,9],[-9,1],[-11,-1],[-7,7],[-12,31],[5,3],[-2,7],[-21,-13],[3,16],[-2,5],[9,7],[3,7],[8,5],[-4,6],[-6,10],[-7,19],[-12,13],[-15,1],[-2,-13],[1,-6],[-2,-6],[-3,-15],[-3,-10],[-4,-5],[-6,-1],[-6,2],[-4,1],[-7,5],[0,8],[0,11],[-4,17],[-2,9],[-4,11],[-1,8],[0,10],[11,19],[15,24],[7,12],[22,20],[12,5],[-14,127],[-203,412],[-83,129],[-7,16],[4,15],[20,7],[-3,26],[-61,195],[-141,439],[-14,41],[-24,69],[-67,191],[-20,57],[-63,172],[-405,1018],[-245,492],[-122,270],[-59,131],[-21,36],[-7,20],[-12,46],[-102,181],[-89,98],[-196,-222],[-33,72],[195,199],[-415,641],[-471,560],[-444,408],[-190,146],[-177,78],[-148,-69],[-173,-9],[-80,-80],[-5,11],[-11,-13],[-3,-3],[5,-10],[-30,-32],[-33,-37],[-60,-58],[-15,-15],[-12,-9],[-28,-20],[-41,-22],[-22,-13],[-54,-24],[-11,-3],[-9,-3],[-9,-2],[-14,-9],[-16,0],[-15,-2],[-16,0],[-16,-2],[-15,-3],[-16,-2],[-15,-2],[-15,-2],[-14,-6],[-15,-5],[-15,-6],[-14,-7],[-14,-9],[-14,-8],[-15,-9],[-13,-10],[-12,-12],[-12,-12],[-7,-19],[0,-6],[0,-16],[0,-21],[25,11],[29,22],[11,33],[15,8],[8,22],[8,-15],[3,-29],[-22,-68],[-28,-46],[-20,-75],[-22,-52],[-1,-66],[3,-21],[4,-20],[-2,-22],[-15,-3],[-14,-8],[-13,-9],[1,-5],[1,-9],[-15,1],[-8,-18],[-10,-16],[-1,-21],[2,-15],[-10,15],[-15,1],[-15,-6],[4,20],[-12,11],[-8,3],[-10,-14],[-3,-6],[-8,-18],[-17,-21],[-18,-35],[-18,-38],[2,-42],[-8,-15],[-9,-11],[-23,-52],[-19,-21],[-28,-19],[-9,-8],[-31,-40],[-19,-31],[-25,-22],[-22,-25],[-10,-18],[-17,-22],[-22,-24],[-17,-18],[-19,-15],[-21,-16],[-22,-2],[-5,14],[-20,23],[-5,17],[11,21],[16,23],[16,23],[23,29],[22,25],[25,25],[7,36],[18,37],[16,29],[9,16],[9,12],[25,30],[32,24],[24,14],[13,14],[14,-2],[29,12],[32,37],[19,20],[27,36],[30,41],[-44,51],[-51,39],[-26,0],[-15,1],[-13,-11],[-13,-10],[-8,-10],[-4,-7],[-4,-7],[-6,-6],[-10,-4],[-13,-2],[-12,-9],[-13,-2],[-5,17],[4,5],[6,7],[-2,21],[-11,7],[-8,-11],[-8,-19],[-15,-2],[-10,10],[0,18],[7,16],[7,17],[7,15],[9,18],[11,16],[4,17],[-1,20],[10,12],[-6,75],[-4,22],[-7,12],[-12,10],[-13,8],[-6,4],[-10,2],[-11,-6],[-11,-12],[-10,-12],[-7,-16],[-9,-15],[-11,-13],[-10,-6],[-7,-7],[-5,-5],[-14,1],[-13,-4],[-12,6],[-13,-5],[-13,-5],[-5,10],[5,8],[6,4],[-6,12],[9,1],[7,5],[4,11],[1,12],[-4,6],[-4,4],[-7,6],[-5,3],[-4,-10],[-7,-6],[-7,-13],[-13,1],[-9,12],[-7,15],[5,23],[11,9],[4,16],[-5,12],[-3,9],[8,20],[9,8],[13,12],[13,-1],[10,14],[5,18],[3,19],[1,12],[-10,2],[-4,8],[9,14],[10,12],[12,6],[16,3],[13,1],[10,1],[-6,-14],[7,-11],[14,3],[10,3],[1,-9],[8,-1],[10,2],[8,-13],[11,-11],[14,-11],[10,-10],[19,-9],[11,-7],[13,-6],[16,3],[8,11],[9,16],[6,10],[12,13],[13,12],[24,26],[58,57],[23,23],[12,5],[7,19],[9,17],[9,18],[10,15],[12,15],[10,15],[11,15],[5,21],[5,20],[2,21],[3,21],[2,21],[2,21],[2,21],[4,21],[0,21],[1,21],[2,21],[0,21],[-1,22],[-2,21],[-3,21],[-4,20],[-7,20],[-4,21],[-4,20],[-4,21],[-5,20],[-6,21],[-6,20],[-5,21],[-3,21],[-4,20],[-5,21],[-6,20],[-4,9],[-3,9],[-7,19],[-4,21],[-6,19],[-7,19],[-7,19],[-6,19],[-2,21],[-8,19],[-6,19],[-5,21],[-8,20],[-7,18],[-5,15],[-9,25],[-7,19],[-3,14],[-2,6],[-3,22],[-3,21],[-5,19],[-4,21],[-5,20],[-8,19],[-7,19],[-8,19],[-8,20],[-12,19],[-10,16],[-7,18],[-5,23],[-3,21],[0,16],[3,21],[11,11],[11,8],[11,8],[-5,15],[-7,16],[-27,0],[-39,6],[-40,4],[-39,10],[-37,31],[-31,34],[-32,51],[-28,48],[-25,40],[-19,48],[-21,51],[-20,50],[-20,51],[-19,56],[-22,62],[-24,67],[-21,48],[-30,46],[-31,32],[-39,32],[-36,41],[-23,41],[-32,62],[-27,59],[-19,47],[-21,45],[-26,55],[-24,47],[-19,46],[-19,44],[-28,48],[-37,47],[-41,43],[-32,34],[-30,39],[-28,37],[-25,41],[-26,50],[-22,55],[-19,55],[-18,56],[-17,48],[-21,54],[-28,46],[-36,41],[-40,53],[-29,43],[-27,41],[-29,38],[-31,35],[-33,33],[-38,40],[-35,43],[-35,44],[-28,35],[-28,38],[-28,35],[-40,45],[-42,43],[-45,43],[-44,40],[-37,32],[-35,30],[-37,29],[-39,29],[-49,39],[-32,31],[-29,32],[-35,41],[-30,36],[-32,35],[-37,39],[-33,32],[-33,38],[-35,30],[-35,31],[-31,29],[-33,36],[-34,28],[-37,35],[-36,31],[-45,41],[-40,35],[-40,34],[-37,33],[-32,30],[-37,42],[-30,39],[-29,35],[-33,41],[-36,42],[-30,39],[-39,48],[-29,37],[-29,36],[-33,40],[-29,32],[-49,46],[-44,35],[-47,34],[-41,35],[-39,35],[-55,54],[-40,37],[-43,35],[-37,28],[-32,29],[-41,44],[-30,31],[-34,25],[-33,25],[-35,22],[-37,28],[-61,37],[-50,32],[-41,28],[-43,29],[-44,23],[-40,23],[-43,27],[-62,43],[-44,40],[-38,37],[-37,31],[-40,29],[-58,46],[-44,39],[-47,36],[-34,26],[-35,26],[-35,21],[-35,24],[-47,38],[-44,37],[-35,34],[-33,32],[-31,30],[-41,34],[-32,27],[-33,28],[-44,40],[-37,31],[-53,49],[-42,44],[-39,39],[-38,35],[-40,39],[-51,53],[-33,34],[-39,38],[-34,37],[-38,36],[-40,37],[-32,34],[-31,36],[-31,32],[-32,33],[-33,33],[-31,34],[-32,37],[-32,39],[-32,39],[-44,59],[-29,37],[-27,36],[-40,46],[-43,43],[-43,43],[-29,33],[-29,39],[-34,47],[-33,44],[-36,43],[-35,36],[-37,42],[-36,42],[-37,40],[-55,58],[-29,33],[-28,37],[-45,74],[-28,50],[-24,39],[-25,46],[-25,47],[-34,57],[-29,45],[-30,50],[-31,53],[-29,54],[-37,74],[-25,60],[-19,55],[-17,58],[-17,54],[-15,52],[-10,56],[-2,52],[1,67],[8,54],[-49,52],[-62,65],[-86,-72],[-129,-75],[-221,7],[-317,183],[-524,696],[-321,605],[-353,479],[-966,759],[-718,487],[-983,436],[-780,545],[-246,719],[-62,360],[-1247,-364],[-2203,2053],[157,987],[-367,613],[-565,-305],[-715,-137],[-561,-437],[-344,901],[-254,410],[-217,137],[-887,1106],[333,690],[-202,214]],[[362779,201088],[330,-392]],[[384007,214197],[3,3]],[[384029,214224],[16,18]],[[387009,216392],[64,11]],[[402104,218390],[272,-30]],[[440530,218381],[5,-8],[3,0],[4,6],[3,9],[3,5],[5,1],[16,-7],[7,-21],[7,-10],[7,-7],[7,-10],[3,-29],[5,-7],[4,-3],[10,-9],[3,-15],[-4,-7],[-12,-4],[-5,-8],[-5,-14],[-7,-4],[-7,-10],[-4,-11],[-1,-8],[-7,0],[-18,-9],[-25,8],[-28,11],[-9,8],[-2,10],[1,11],[8,10],[3,14],[5,44],[9,41],[7,33],[7,5],[3,-7],[-1,-8]],[[437704,218430],[1,-3],[4,0],[6,1],[6,-3],[-2,5],[2,2],[3,-2],[2,-2],[2,-3],[2,0],[2,-1],[-1,-5],[-1,-3],[0,-1],[2,-3],[3,1],[4,0],[3,3],[1,0],[3,-3],[1,1],[5,0],[5,-1],[0,-2],[4,-5],[0,-3],[0,-5],[4,-4],[-1,-8],[1,-2],[4,-2],[3,-4],[-1,-3],[6,-3],[9,-1],[2,-4],[-4,-10],[-3,0],[-3,-2],[-1,-8],[2,-6],[0,-5],[1,-3],[1,-3],[-1,-8],[3,-7],[1,-1],[1,-6],[0,-2],[2,0],[3,-1],[2,-2],[0,-4],[-2,-2],[-2,0],[-3,-3],[0,-4],[4,-3],[-2,-3],[6,-1],[1,-1],[0,-2],[0,-3],[-3,-3],[-1,0],[0,-8],[-1,-2],[-2,0],[-2,-1],[-3,-4],[2,-4],[0,-8],[-3,-6],[-2,-1],[-2,0],[-3,-10],[-4,0],[-4,0],[-5,-1],[-3,-5],[2,-6],[-4,-1],[-1,-1],[1,-8],[2,-1],[-2,-4],[-3,-1],[-5,-6],[-3,-4],[-2,-10],[-2,-2],[-5,-2],[-3,-4],[-3,-10],[-1,-7],[-4,0],[-6,-2],[-10,-6],[-3,-6],[-3,-4],[-5,-4],[-3,-1],[-5,-5],[-8,-5],[-4,-7],[-5,3],[-4,0],[-6,1],[-4,-3],[-3,-1],[-2,0],[-3,1],[1,2],[-1,2],[0,2],[-4,1],[-4,-3],[-1,-4],[2,-2],[-1,-5],[-2,0],[-4,-4],[-3,-3],[-2,2],[-1,0],[-10,-2],[-4,2],[-1,4],[-3,-1],[-1,3],[-3,2],[-4,5],[-3,1],[-4,2],[-3,-1],[-3,-2],[-4,-1],[-5,-2],[-2,-3],[-1,-6],[1,-9],[2,-2],[4,-3],[4,-2],[1,-4],[2,-8],[-2,-2],[-3,-4],[-6,2],[-4,2],[-1,2],[-1,2],[-2,3],[-3,5],[0,4],[-2,6],[-1,6],[-2,3],[-12,7],[-3,4],[-1,6],[-2,8],[-4,7],[-2,6],[0,4],[0,9],[-3,8],[4,6],[1,0],[6,-1],[0,4],[3,7],[5,7],[5,4],[4,2],[6,6],[2,8],[2,5],[3,9],[2,7],[-2,4],[-2,6],[-3,4],[-2,3],[-1,4],[-2,0],[-2,7],[-3,11],[3,6],[5,1],[5,5],[2,6],[0,6],[-4,7],[-5,5],[-3,6],[1,6],[3,4],[8,7],[9,6],[2,0],[7,-1],[4,-2],[6,1],[6,4],[22,22],[2,10],[5,7],[9,6],[6,4],[4,3],[-1,6],[3,4],[4,4],[4,0],[3,4],[2,2],[7,4],[2,1],[4,2],[3,3],[2,3],[0,5],[0,2],[4,4],[2,1],[2,-4]],[[449300,218651],[-133,-43],[-12,91],[-13,74],[-12,100],[-12,78],[30,129],[36,50],[27,59],[64,-15],[30,-112],[31,-113],[90,-232],[-126,-66]],[[452150,219489],[-44,-69],[-65,-26],[-56,44],[-72,-51],[-127,-16],[-86,351],[534,267],[103,-354],[-137,-107],[-50,-39]],[[449873,219776],[-47,-94],[-41,-69],[-90,-21],[-90,-21],[-30,23],[-31,-62],[15,-35],[-24,-38],[-34,-23],[-13,56],[22,57],[-19,70],[-29,31],[-27,39],[-19,48],[31,17],[59,17],[69,56],[60,-53],[55,95],[65,25],[57,95],[61,-213]],[[441004,220402],[1,-5],[5,0],[2,0],[2,-2],[-1,-4],[0,-2],[3,-5],[0,-2],[2,-1],[4,-2],[1,-3],[-2,-3],[-3,-3],[-3,-6],[-1,0],[-3,-1],[-1,5],[-2,2],[-3,4],[1,2],[1,3],[-1,2],[0,3],[0,3],[-3,3],[-2,0],[-2,-3],[-1,-1],[-2,1],[-2,0],[1,4],[3,1],[0,4],[0,3],[3,2],[3,1]],[[441095,220414],[1,-2],[1,1],[1,-1],[2,-3],[1,-4],[-2,-4],[-4,-2],[-1,-2],[-2,-3],[-2,-1],[-5,-1],[-2,2],[-3,4],[-3,1],[-1,3],[0,2],[2,4],[5,1],[1,-1],[1,-1],[2,-4],[2,-3],[1,0],[1,3],[0,4],[-1,1],[-3,2],[0,3],[3,3],[3,0],[2,-2]],[[440974,220512],[2,-1],[3,0],[2,-2],[4,-2],[1,-3],[2,-3],[2,0],[0,-5],[1,-2],[-2,-4],[0,-3],[-1,-5],[-2,-2],[0,-3],[-1,-3],[-2,0],[-1,-1],[2,-4],[-2,-4],[-1,-1],[-3,-1],[0,-7],[0,-6],[-3,-4],[-3,-1],[0,4],[-1,3],[0,4],[0,1],[-2,0],[-2,0],[-1,3],[2,4],[0,2],[-3,2],[0,1],[-2,4],[-2,0],[-1,4],[1,5],[-2,1],[-4,-2],[-1,5],[1,4],[4,0],[0,3],[-2,4],[1,2],[3,3],[1,1],[1,7],[4,2],[2,1],[0,2],[1,3],[2,-1],[1,-3],[1,-2]],[[441240,220562],[-2,-1],[-4,1],[-1,1],[-4,2],[-1,2],[0,3],[-1,4],[4,2],[1,0],[1,1],[3,0],[3,-1],[2,-1],[1,-2],[0,-3],[0,-2],[1,-3],[-3,-3]],[[441216,220595],[0,4],[1,1],[1,0],[2,-1],[2,1],[2,-1],[3,2],[1,-4],[1,4],[-1,2],[1,1],[2,-2],[2,-1],[1,-2],[-1,-1],[0,-4],[1,-1],[1,-2],[2,3],[2,3],[5,0],[0,-3],[-2,-1],[-1,-2],[-4,-1],[-1,-2],[-5,2],[0,-1],[-2,-6],[1,-2],[-1,-2],[-2,-3],[-1,3],[-3,1],[-1,1],[-1,2],[0,1],[3,3],[2,1],[0,3],[-2,1],[-2,1],[-2,-1],[-2,2],[-2,-1],[0,2]],[[441258,220596],[-2,-2],[-3,0],[-1,0],[-4,1],[-1,3],[1,5],[3,2],[5,1],[3,1],[1,-4],[0,-4],[0,-2],[-2,-1]],[[441009,220624],[-2,-2],[-1,1],[-1,3],[-1,2],[1,2],[0,1],[1,1],[1,1],[2,0],[0,-2],[0,-3],[1,-2],[-1,-2]],[[441216,220595],[-2,-1],[-3,0],[-5,-4],[0,-6],[3,-3],[0,-3],[-3,-3],[-5,-1],[-7,2],[-4,5],[-3,-2],[-1,-11],[1,-1],[-4,-3],[1,-6],[2,-4],[1,-2],[-3,-5],[3,-7],[-1,-7],[-2,-3],[-5,4],[-1,4],[-4,-4],[-7,2],[-1,4],[-2,-6],[4,-2],[0,-5],[0,-4],[-6,-3],[-3,2],[-3,3],[-4,-2],[-4,-5],[-4,-1],[-4,-4],[-1,-1],[-4,-7],[-3,-1],[-1,-10],[-4,1],[-6,-3],[0,-1],[-3,-1],[-2,-1],[-1,-3],[-1,-4],[0,-8],[2,-1],[4,3],[5,3],[4,-1],[0,-5],[0,-7],[-3,0],[-3,1],[-5,1],[-3,-2],[-4,3],[-1,-10],[-1,-2],[1,0],[1,-6],[-5,0],[0,-1],[2,-9],[-2,-3],[-6,-6],[-3,0],[-3,2],[-5,-3],[-3,-3],[5,-3],[-3,-3],[-3,0],[-3,4],[-2,-2],[-1,-5],[-3,-3],[-4,-3],[-4,2],[0,1],[3,4],[-8,-2],[-9,-1],[-2,0],[-2,-2],[-1,-2],[-3,-2],[-2,-2],[0,-2],[1,-4],[2,-3],[3,-1],[4,-4],[0,-1],[-6,-4],[-2,1],[-3,-2],[-4,-1],[-2,1],[-1,0],[-3,0],[-2,-1],[1,5],[-1,2],[0,1],[3,6],[4,0],[3,1],[-2,9],[-2,-1],[-8,-3],[-3,2],[-7,-3],[-4,-1],[-1,5],[4,5],[-2,0],[-10,0],[-2,0],[-3,0],[-4,-2],[-3,-1],[-3,1],[-5,-3],[-2,0],[-2,-2],[-3,-1],[-6,-4],[-2,0],[-4,3],[-1,5],[2,5],[2,2],[2,5],[1,2],[1,4],[2,5],[3,-1],[1,-5],[0,-5],[1,-4],[2,0],[3,-1],[2,0],[2,2],[4,2],[2,2],[5,0],[2,2],[1,0],[4,-1],[1,2],[2,0],[5,2],[0,2],[3,2],[-4,0],[-2,1],[-2,-1],[-1,1],[-3,3],[0,3],[4,2],[4,1],[0,4],[-1,4],[1,4],[-1,3],[-1,8],[0,13],[-3,10],[0,6],[1,2],[-1,2],[-1,1],[-1,2],[-2,2],[0,4],[1,2],[-1,3],[-1,2],[0,2],[0,4],[0,5],[0,2],[1,3],[-1,1],[-1,2],[-1,3],[1,4],[-2,11],[2,12],[-2,11],[-1,13],[4,10],[3,3],[0,13],[2,9],[7,7],[0,8],[0,7],[2,8],[6,2],[4,4],[3,2],[8,7],[2,6],[1,5],[2,12],[-2,13],[1,14],[0,18],[-4,9],[-6,22],[-1,16],[-1,13],[0,16],[1,4],[-12,24],[-7,13],[0,8],[4,11],[8,3],[117,-9],[32,-95],[49,33],[-3,-49],[1,-28],[3,-27],[6,-22],[7,-20],[4,-7],[2,-3],[-2,-2],[-1,-2],[1,-4],[1,0],[4,3],[2,-1],[2,-2],[0,-2],[1,-2],[3,-1],[1,-2],[1,-3],[0,-2],[-1,-3],[-1,-1],[-4,-1],[-5,-2],[-2,-3],[-3,1],[-3,1],[-10,-3],[-18,-13],[3,-4],[3,-6]],[[441035,221379],[0,-4],[-3,-1],[-3,1],[-2,1],[-1,1],[-4,-4],[0,1],[-6,4],[0,7],[3,6],[4,-3],[8,-7],[4,-2]],[[441106,221414],[0,-2],[-1,-6],[0,-8],[3,-5],[-1,-4],[-2,-2],[-3,-4],[-4,-4],[-3,-2],[-5,-2],[-4,3],[-2,1],[-4,9],[-5,7],[1,8],[1,6],[6,5],[3,0],[4,0],[4,2],[7,0],[5,-2]],[[441084,221431],[-2,-6],[0,-2],[-4,-1],[-4,4],[-2,0],[-6,0],[-1,4],[-1,3],[3,6],[4,2],[4,0],[5,-1],[5,-5],[-1,-4]],[[441081,221446],[-3,0],[-3,0],[0,2],[1,3],[5,2],[1,-1],[0,-5],[-1,-1]],[[441046,221449],[2,-2],[2,0],[1,0],[2,-1],[3,-2],[0,-3],[-3,-3],[-3,0],[0,6],[-1,-1],[0,-8],[-2,-5],[-7,-2],[-5,1],[-2,4],[1,8],[-1,4],[1,8],[2,3],[3,-1],[4,-4],[3,-2]],[[441074,221449],[-6,-4],[-5,1],[-5,1],[-4,4],[-1,4],[1,8],[4,7],[7,2],[9,0],[1,-1],[2,-6],[0,-9],[0,-2],[-3,-5]],[[441089,221470],[-1,-2],[-2,1],[-1,0],[-2,1],[-2,2],[-1,1],[0,3],[0,2],[1,1],[1,1],[2,-3],[3,-1],[1,-1],[1,-3],[0,-2]],[[441014,221466],[-1,-2],[-1,2],[-3,2],[-3,1],[-2,3],[-1,2],[3,4],[1,1],[1,3],[2,1],[4,0],[2,-1],[0,-4],[0,-5],[-1,-4],[-1,-3]],[[441114,221500],[-3,-2],[-2,4],[1,4],[4,4],[4,1],[1,-2],[-1,-6],[-4,-3]],[[441034,221501],[-2,-7],[-3,0],[0,7],[1,5],[1,2],[0,3],[-2,6],[-2,2],[-1,5],[5,4],[5,3],[5,-1],[1,-6],[-3,-6],[1,-4],[-1,-3],[-1,-2],[-3,0],[0,-4],[-1,-4]],[[454227,221913],[3,-11],[0,-22],[-6,-13],[-19,-14],[-50,-38],[-6,-22],[1,-9],[6,-5],[14,-6],[8,-7],[4,-9],[-2,-7],[-16,-3],[-4,-5],[-13,-3],[-6,-1],[-6,-3],[-11,-11],[-11,-35],[-6,-8],[-24,4],[-16,14],[-5,1],[-14,-1],[-9,-11],[-6,-33],[4,-18],[4,-12],[7,-11],[13,-11],[10,-18],[4,-10],[4,-13],[2,-13],[5,-20],[3,-15],[3,-7],[15,-13],[7,-13],[5,-14],[7,-14],[-2,-13],[-12,-10],[-11,-1],[-16,-2],[-16,6],[-17,-13],[-5,-8],[-21,3],[-4,10],[-3,21],[-1,43],[-5,6],[-20,32],[-2,9],[-1,26],[4,6],[2,12],[-10,11],[-10,0],[-19,-2],[-11,2],[-5,6],[-9,11],[-8,10],[-10,20],[2,19],[8,38],[10,5],[19,11],[16,3],[7,10],[-7,11],[-17,0],[-21,4],[-11,5],[0,13],[0,19],[2,7],[9,16],[12,7],[6,6],[53,0],[8,1],[8,15],[5,8],[4,11],[10,-6],[12,0],[4,13],[-1,24],[6,18],[10,8],[12,7],[20,2],[17,-6],[11,1],[16,2],[6,9],[22,7],[17,1],[29,-5],[9,-9]],[[441923,222039],[-2,-2],[-1,1],[-2,1],[-1,-5],[0,-1],[-2,0],[-1,0],[-2,-3],[-1,-1],[-1,-2],[-4,-2],[-1,0],[-3,0],[-2,0],[-1,-1],[0,-2],[2,-1],[3,0],[2,-1],[0,-4],[0,-2],[-1,-1],[-2,0],[-3,-1],[-3,0],[-2,2],[-1,2],[0,2],[-2,0],[-1,1],[-2,1],[-1,1],[-1,4],[0,2],[1,2],[2,2],[1,0],[3,4],[0,3],[-1,1],[-2,2],[-1,1],[0,3],[1,2],[1,2],[0,3],[-1,1],[-1,2],[0,5],[1,5],[2,3],[3,0],[0,6],[0,2],[0,2],[2,2],[1,1],[2,1],[1,3],[0,4],[0,3],[0,3],[2,3],[4,2],[4,4],[3,2],[3,1],[2,-1],[2,-1],[1,0],[2,-2],[2,-4],[2,-2],[-1,-2],[-2,-3],[0,-4],[2,-1],[1,0],[3,-1],[2,-2],[0,-3],[-1,-2],[0,-3],[1,-1],[1,-1],[0,-4],[1,-2],[1,-1],[0,-1],[-2,-1],[0,-1],[-1,-3],[-1,-1],[-4,-1],[-1,-1],[-1,-4],[-1,-1],[-1,0],[-2,-3],[-1,0],[-2,-1],[2,-2],[1,-1],[1,0],[0,-3],[0,-3],[-1,-1]],[[453969,222068],[8,-23],[4,-7],[2,-24],[-4,-27],[-12,-22],[-30,-13],[-19,-7],[-21,-4],[-20,-10],[-12,-1],[-2,-13],[-20,-8],[-16,-14],[-1,-17],[6,-13],[12,-6],[4,-18],[-23,-4],[-27,0],[-13,-4],[-10,-16],[1,-9],[7,-14],[9,-2],[17,-2],[10,-10],[4,-15],[-6,-10],[-9,-2],[-15,2],[-3,8],[-14,16],[-2,-10],[-11,-17],[-23,-3],[-15,-4],[-7,-15],[0,-16],[5,-10],[12,-16],[10,-23],[-1,-27],[-10,-29],[-22,-18],[-16,-2],[-18,-9],[-10,-8],[-18,-35],[-10,-16],[-12,-2],[-6,9],[3,14],[6,14],[4,18],[-10,13],[-22,-2],[-7,-7],[-7,5],[-9,16],[-1,9],[-11,8],[-23,12],[-6,0],[-10,17],[0,10],[-1,21],[14,18],[56,27],[15,5],[31,6],[10,23],[-1,24],[4,38],[9,19],[22,14],[16,7],[14,20],[1,8],[15,20],[6,5],[12,20],[2,23],[14,20],[8,6],[39,20],[87,7],[14,3],[4,11],[-6,18],[-10,11],[-18,10],[-31,-1],[-9,15],[1,25],[6,13],[17,8],[12,-1],[19,-8],[21,-17],[16,-6],[20,-5],[11,-14]],[[454834,222204],[-32,-5],[-10,1],[-2,11],[10,37],[55,58],[46,96],[18,21],[21,15],[27,-15],[6,-32],[3,-38],[0,-25],[-12,-17],[-64,-76],[-19,-15],[-28,-14],[-19,-2]],[[442131,222452],[4,-1],[2,1],[3,-8],[0,-4],[-2,-8],[-3,-5],[1,-6],[-3,-2],[-3,-7],[0,-5],[1,-3],[1,-4],[1,-4],[1,-2],[2,-3],[4,-3],[3,0],[0,-2],[3,-8],[9,1],[4,-1],[3,-2],[5,0],[1,-2],[-1,-2],[2,-3],[4,-4],[3,-7],[0,-5],[-2,-1],[-2,0],[-1,-2],[0,-3],[0,-4],[-2,-4],[-5,-1],[-2,-2],[9,-2],[0,-3],[1,-2],[1,-2],[0,-8],[-6,-6],[-11,-1],[-24,-10],[0,-3],[3,-2],[4,2],[4,2],[6,2],[6,2],[7,3],[5,1],[3,-2],[1,-4],[3,-6],[1,0],[-1,-5],[-2,-7],[-7,0],[-6,-1],[-5,-3],[-5,-1],[-1,-4],[2,-2],[4,-1],[-2,-4],[-1,-2],[4,-1],[2,-2],[1,-3],[-1,-7],[-3,-2],[-4,-1],[0,-1],[-1,-2],[-3,-6],[-4,-3],[-6,-1],[-2,-7],[-4,-1],[-4,-1],[-1,-6],[-3,-5],[-2,2],[-3,0],[-3,-3],[-10,3],[2,-10],[-1,-4],[0,-1],[1,-3],[-2,-5],[-7,-1],[-3,2],[-2,4],[-3,-2],[-1,-6],[-4,-7],[3,-6],[3,-5],[0,-10],[-4,-4],[-4,-1],[-2,1],[-2,-4],[-3,0],[-4,0],[-5,-5],[-5,0],[1,-7],[-2,-5],[-7,0],[1,-6],[2,-2],[1,-1],[7,2],[2,-9],[3,-3],[3,-2],[0,-5],[-2,-5],[0,-8],[3,-7],[0,-3],[-1,-4],[1,-3],[2,-3],[3,-3],[7,5],[-4,6],[-1,8],[2,4],[4,1],[2,-2],[7,-8],[3,-8],[-3,-2],[-3,-2],[-3,0],[1,-7],[-1,-3],[1,-8],[3,-2],[-6,-1],[-3,2],[-5,-2],[-3,-2],[0,-3],[-2,-5],[-2,-4],[-4,-4],[3,-3],[1,-3],[2,-3],[1,-5],[3,-7],[-3,-14],[-1,-1],[0,-3],[-4,-6],[-4,-2],[-2,-6],[2,-4],[-1,-4],[-1,-4],[4,-4],[6,-5],[0,-7],[2,-15],[-2,-5],[-7,-1],[-6,1],[-7,-3],[-5,-1],[-3,-1],[-7,3],[-3,-2],[-3,-2],[-3,-7],[2,-2],[1,-2],[2,-8],[5,-2],[-1,-6],[-2,-5],[-2,-5],[-4,0],[-3,3],[-2,1],[-4,-3],[-4,3],[-3,4],[-3,4],[-2,5],[-2,3],[-5,4],[0,7],[-1,6],[-2,5],[0,4],[3,4],[1,4],[1,6],[-3,5],[0,3],[1,5],[0,5],[-2,17],[-1,2],[2,4],[3,4],[2,8],[-2,4],[1,4],[6,2],[5,2],[0,6],[-4,3],[-1,2],[-1,11],[4,7],[7,0],[1,4],[8,11],[1,11],[-1,9],[-6,4],[-7,-4],[-3,-3],[-7,-1],[-3,-2],[-4,0],[-3,-1],[-8,0],[-3,0],[-5,4],[0,5],[3,3],[6,4],[1,7],[0,4],[1,3],[3,3],[9,6],[0,7],[-1,8],[0,7],[5,4],[7,0],[-3,6],[-3,8],[2,7],[3,3],[2,5],[0,8],[3,5],[1,5],[-1,6],[3,12],[2,4],[4,1],[3,0],[5,-2],[5,5],[3,3],[0,2],[3,4],[1,5],[1,6],[1,13],[2,4],[4,4],[1,11],[-1,9],[-1,6],[0,6],[-2,5],[-1,2],[2,12],[-3,9],[-1,1],[-1,7],[4,6],[2,1],[0,11],[3,11],[-2,10],[4,8],[0,10],[0,7],[-2,7],[2,10],[3,2],[5,4],[0,2],[10,7],[4,4],[7,1],[9,5],[1,4],[4,2],[1,0],[6,0],[2,1],[10,10],[6,3],[2,-1]],[[442682,222601],[5,-5],[3,-4],[2,-3],[5,-2],[7,1],[7,0],[3,1],[1,4],[2,3],[1,4],[5,3],[2,-2],[3,-3],[1,-3],[2,-3],[2,-1],[4,1],[4,1],[5,-4],[4,-4],[7,-3],[4,-3],[8,-2],[6,-1],[4,-1],[5,-1],[4,-2],[3,-3],[5,-3],[3,-4],[4,-2],[6,-1],[4,-3],[3,-1],[2,-2],[4,-4],[2,-2],[4,-6],[1,-1],[1,-6],[2,-2],[1,-5],[2,-3],[3,-2],[1,0],[1,-4],[0,-6],[0,-8],[-4,-8],[-3,-6],[-4,-5],[-3,-3],[-3,-3],[-2,-3],[-1,-2],[1,-2],[1,-3],[1,-5],[2,-5],[1,-1],[4,0],[2,-1],[2,-1],[0,-1],[-1,-3],[-2,-2],[-2,-4],[-2,-2],[0,-2],[1,-2],[0,-2],[2,-2],[3,-1],[3,-1],[3,0],[4,0],[0,-1],[4,-1],[1,0],[1,-2],[1,-2],[0,-3],[0,-4],[-1,-1],[-1,-2],[-2,-2],[0,-5],[-2,-1],[-1,-2],[-1,-4],[0,-3],[0,-6],[1,0],[0,-3],[0,-4],[0,-3],[-2,1],[-3,-1],[-1,-1],[-9,1],[-8,0],[-8,-1],[-5,-7],[-5,-7],[-10,-3],[-4,4],[-10,3],[-7,0],[-4,2],[-5,5],[-7,7],[-5,4],[-5,3],[-6,0],[-5,-6],[-5,-4],[-7,0],[-3,3],[-4,4],[-6,2],[-7,-3],[-6,-6],[-4,-7],[-9,-8],[-8,-3],[-7,-2],[-6,0],[-7,3],[-4,3],[-1,4],[1,6],[2,9],[1,6],[2,5],[2,10],[-1,5],[-5,2],[-5,2],[-3,4],[-6,3],[-2,7],[-4,6],[-4,11],[-3,6],[-1,9],[-3,5],[-6,3],[-5,3],[-5,3],[-1,4],[-2,3],[0,4],[1,9],[1,11],[0,15],[0,8],[-1,6],[-2,15],[-1,5],[4,11],[1,8],[4,8],[4,7],[3,2],[7,2],[5,0],[6,-1],[7,3],[7,5],[7,6],[5,2],[7,2],[4,-2],[4,-5],[7,-7]],[[455430,222724],[17,-13],[2,-19],[-6,-13],[-5,-6],[-32,1],[-12,14],[-14,4],[-14,2],[-26,-18],[-24,-9],[-18,-25],[-9,-21],[-14,-33],[-19,-3],[-12,4],[-18,-2],[-13,-27],[-58,-103],[-21,-18],[-8,-1],[-13,13],[-3,11],[-11,35],[-6,13],[-8,15],[-5,12],[-15,28],[-7,10],[10,33],[8,16],[-2,22],[0,8],[12,22],[5,6],[15,17],[12,3],[11,3],[14,1],[19,-5],[21,-9],[12,-8],[13,1],[15,8],[5,9],[5,39],[4,15],[13,3],[8,-6],[18,-30],[15,6],[3,15],[0,23],[-1,27],[-1,19],[11,10],[16,16],[15,8],[5,-2],[17,-5],[14,-14],[6,-16],[14,-15],[11,-36],[10,-17],[19,-18]],[[442598,223461],[6,-1],[7,1],[4,-2],[5,-4],[7,-5],[7,-6],[5,-4],[5,-2],[4,-1],[8,0],[4,3],[3,5],[1,7],[-2,6],[1,8],[2,3],[8,0],[11,-3],[9,-3],[12,-3],[9,-3],[9,-3],[6,-2],[5,-1],[4,1],[6,3],[6,1],[2,0],[4,-4],[3,-7],[1,-8],[2,-12],[6,-12],[6,-11],[5,-10],[3,-10],[5,-4],[7,-7],[5,-6],[3,-4],[3,-8],[1,-4],[5,-8],[6,-5],[8,-7],[6,-3],[4,-4],[1,-5],[0,-7],[-2,-4],[-3,-2],[-1,0],[-3,-1],[-4,-3],[-5,-4],[-4,0],[-2,2],[-4,5],[-3,-1],[-3,-4],[-4,-6],[-6,-11],[-5,-8],[-10,-16],[-8,-14],[-9,-15],[-5,-11],[-6,-8],[-3,-4],[-5,-3],[-2,-7],[-5,-12],[-4,-7],[-5,-2],[-5,0],[-5,1],[-7,0],[-9,-4],[-10,-10],[-7,-9],[-9,-8],[-7,-1],[-3,-1],[-2,-10],[-5,-7],[-6,-5],[-7,-3],[-7,-3],[-5,-3],[-5,-7],[-3,-4],[-3,-7],[-3,-10],[-4,-10],[-2,-7],[-5,-4],[-4,-4],[-1,0],[-2,2],[-2,1],[0,5],[0,5],[-5,0],[-4,2],[-5,-2],[-6,-4],[-5,-3],[-5,-4],[-2,-4],[0,-4],[-4,-3],[-5,1],[-2,2],[-5,0],[-6,-2],[-6,-2],[-4,0],[-5,1],[-6,2],[-9,2],[-5,-1],[-5,-8],[-7,-4],[-7,0],[-5,2],[-7,2],[-4,0],[-5,-1],[-7,-7],[-8,-8],[-4,-6],[-5,-6],[-4,-6],[-4,-7],[-3,-7],[-5,-6],[-4,-5],[-7,-4],[-7,-3],[-9,-5],[-11,-3],[-4,-1],[-8,0],[-7,-3],[-6,-4],[-8,-5],[-6,-6],[-6,-6],[-6,-9],[-4,-6],[-5,-9],[-7,-5],[-7,-3],[-6,0],[-5,0],[-6,-1],[-8,-3],[-7,-5],[-8,-4],[-7,-1],[-9,1],[-7,6],[-5,6],[-8,11],[-7,6],[-6,6],[-9,8],[-6,7],[-10,10],[-11,9],[-10,8],[-14,10],[-9,9],[-10,7],[-7,6],[-7,5],[-5,6],[-8,11],[-6,10],[-4,11],[-4,12],[-4,14],[-2,10],[-3,5],[-5,6],[-6,6],[-3,9],[-1,8],[-1,10],[-2,9],[-1,1],[-5,4],[-1,4],[-1,9],[0,6],[-3,9],[-2,6],[-1,6],[0,10],[1,6],[2,5],[5,1],[5,1],[1,3],[2,4],[4,-1],[2,2],[1,4],[3,5],[3,3],[4,2],[6,4],[8,6],[4,7],[5,7],[8,11],[7,10],[7,9],[4,5],[4,-1],[4,-1],[7,-2],[6,1],[6,3],[15,9],[41,26],[-9,30],[-7,-4],[-2,8],[33,19],[2,-5],[-9,-7],[9,-29],[36,19],[1,-3],[5,1],[0,6],[4,1],[4,0],[2,4],[5,0],[4,-8],[6,-10],[7,1],[9,-1],[6,1],[15,4],[8,1],[6,1],[6,1],[8,2],[4,4],[4,9],[5,8],[3,5],[6,4],[4,-2],[1,-4],[3,-3],[3,3],[2,3],[2,3],[1,5],[2,6],[2,3],[2,3],[3,3],[2,1],[5,1],[3,2],[2,6],[1,8],[0,4],[-1,3],[-1,7],[1,6],[3,7],[3,4],[5,1],[10,0],[8,0],[9,0],[11,2],[2,-1],[8,0],[13,-1],[10,-3],[8,-3],[7,0],[5,1],[4,5],[4,7],[4,7],[3,5],[8,2],[8,1],[6,0],[6,0],[4,-5],[3,-4],[4,-8],[3,-1]],[[445581,224996],[4,-10],[4,-10],[6,-6],[8,1],[9,6],[7,2],[10,1],[9,2],[10,0],[9,-5],[7,-5],[6,-8],[4,-10],[3,-12],[2,-10],[4,-10],[5,-10],[5,-9],[4,-10],[6,-7],[7,3],[8,2],[8,0],[8,1],[9,2],[8,-7],[2,-10],[-1,-12],[-2,-10],[-4,-10],[-6,-10],[-9,-5],[-8,-2],[-8,0],[-1,1],[-6,7],[-8,6],[-7,-3],[2,-11],[3,-10],[-2,-14],[-3,-9],[-2,-12],[-2,-10],[-5,-8],[-7,-9],[-7,-9],[-8,-4],[-9,-3],[-10,-4],[-8,-3],[-8,-3],[-11,-2],[-12,-1],[-8,0],[-10,0],[-9,0],[-9,-1],[-8,-2],[-8,4],[-7,7],[-7,7],[-6,7],[0,11],[9,4],[8,1],[3,9],[-7,5],[-7,4],[-7,5],[-8,2],[-8,2],[-11,6],[-9,8],[-9,4],[-9,5],[-8,6],[-7,8],[-7,8],[-7,9],[-2,12],[7,5],[7,5],[8,4],[6,5],[-2,9],[-9,1],[-8,-2],[-8,-1],[-6,4],[4,9],[8,5],[7,2],[10,1],[7,2],[10,3],[8,6],[6,10],[-8,-1],[-8,-2],[-8,-2],[-9,-1],[-10,-3],[-7,-4],[-7,-5],[-7,7],[0,14],[3,12],[7,5],[7,3],[9,4],[7,4],[8,2],[8,3],[8,2],[10,3],[7,-6],[3,-12],[5,-9],[3,11],[0,12],[-2,12],[-7,3],[-5,9],[5,7],[9,2],[8,-3],[8,3],[8,6],[8,2],[12,1],[10,-1],[5,-8]],[[444915,225357],[-7,-21],[0,-5],[7,-7],[6,6],[11,-3],[-1,-10],[3,-12],[-1,-13],[-6,-13],[-9,-16],[-3,-15],[-4,-13],[-3,-11],[-2,-13],[0,-8],[5,-2],[9,-1],[6,-5],[1,-2],[0,-5],[-3,-3],[-3,0],[-2,0],[0,-2],[-1,0],[-3,-5],[-3,-7],[-12,-7],[-7,5],[1,29],[-8,12],[3,14],[6,14],[8,17],[7,13],[-6,27],[-19,-18],[-13,-1],[-2,-9],[-1,-15],[-4,-7],[-10,0],[-8,3],[-5,0],[-4,-5],[0,-10],[-1,-14],[-5,-3],[-7,2],[-8,7],[0,9],[-2,7],[-3,7],[-3,17],[-8,18],[2,10],[13,-1],[0,16],[4,4],[7,4],[4,16],[4,7],[7,2],[5,-1],[9,8],[7,-3],[21,23],[10,2],[9,5],[12,0],[3,-7],[-3,-11]],[[453807,227265],[23,-28],[19,-33],[5,-18],[9,-49],[2,-16],[2,-21],[12,-37],[8,-12],[5,-8],[1,-10],[2,-5],[1,-8],[3,-7],[4,-17],[3,-4],[3,0],[3,-1],[1,-5],[-1,-5],[-1,-2],[2,-6],[3,-1],[4,-1],[7,0],[2,-1],[1,-9],[-1,-2],[0,-7],[3,-2],[2,-3],[0,-7],[0,-13],[-4,-3],[-2,0],[-3,2],[-1,1],[-7,0],[-5,1],[-5,4],[-5,6],[-1,4],[-6,3],[-6,3],[-4,1],[-4,5],[-11,0],[-8,-5],[-5,-2],[-4,3],[0,-1],[0,-7],[0,-8],[-8,1],[-7,4],[-2,4],[0,8],[0,3],[-9,1],[-6,-1],[-3,0],[-3,1],[-4,2],[-5,2],[-4,0],[-7,-1],[-6,-1],[-4,-5],[-4,-5],[-5,-1],[-3,1],[-8,0],[-4,-3],[-2,-4],[-11,-11],[-4,-6],[-5,-4],[-2,-3],[0,-6],[0,-8],[2,-17],[1,-3],[3,-4],[2,-4],[-1,-4],[-3,-3],[-6,1],[-4,3],[-5,1],[-6,3],[-4,5],[-3,3],[-4,4],[-6,0],[-8,1],[-6,3],[-6,6],[-3,4],[-3,2],[-4,-2],[-3,-4],[-4,-2],[-6,-2],[-8,-5],[-3,-2],[-1,-4],[-3,-4],[-1,-2],[-2,-2],[-1,-3],[-2,-1],[-3,-1],[-2,0],[-2,1],[-2,3],[-12,10],[-36,64],[-73,129],[-45,101],[-34,2],[-6,14],[1,4],[5,4],[2,0],[16,13],[0,8],[1,5],[3,5],[4,4],[4,0],[2,-6],[32,16],[0,-17],[11,-25],[13,2],[0,5],[13,2],[0,-6],[14,1],[0,27],[-2,0],[-1,1],[-1,0],[-4,0],[-4,2],[-3,0],[-4,0],[-5,3],[-1,7],[0,4],[-3,4],[-3,0],[-7,0],[-2,1],[-3,6],[-2,4],[1,8],[5,3],[4,2],[6,4],[23,22],[6,12],[7,6],[8,4],[9,8],[18,6],[10,4],[29,10],[17,4],[14,-3],[87,-38],[63,-54]],[[445636,227540],[0,-5],[0,-5],[3,-4],[1,-3],[2,-8],[1,-10],[3,-7],[1,-8],[2,-4],[-1,-4],[0,-4],[0,-7],[-4,-8],[-3,-5],[-4,0],[-4,0],[-9,-1],[-4,-2],[-3,-15],[1,-8],[1,-6],[0,-8],[-2,-22],[-1,-6],[-3,-4],[-4,-8],[-5,-3],[-3,0],[-8,-1],[-1,-3],[0,-4],[0,-4],[0,-7],[1,-5],[2,-3],[2,-1],[5,-2],[2,-4],[0,-8],[1,-4],[0,-5],[-5,-3],[-2,-2],[3,-1],[6,-1],[5,0],[2,-3],[4,-6],[2,-7],[0,-4],[0,-5],[0,-7],[-1,-1],[-1,-1],[-4,-2],[-1,1],[-2,3],[-1,3],[0,4],[-1,6],[0,5],[-1,3],[-2,4],[-2,1],[-2,0],[-3,0],[-2,-2],[-3,-4],[-1,-4],[-4,-3],[-5,-3],[-3,-5],[0,-2],[0,-5],[-3,-3],[-5,-3],[-2,-2],[-6,4],[-1,2],[0,4],[1,2],[2,5],[1,2],[1,1],[4,4],[1,0],[1,3],[0,6],[1,4],[3,2],[3,1],[3,5],[0,35],[-1,3],[-2,1],[-5,0],[-8,-2],[-11,-7],[-9,-9],[-10,-5],[-6,-8],[-3,-2],[-12,-6],[-17,-2],[-9,-2],[-9,-13],[-4,-23],[0,-23],[3,-11],[6,-9],[7,-1],[16,0],[7,-5],[-1,-7],[-5,-9],[-3,-6],[-2,-11],[2,-40],[-5,-15],[-7,-12],[-2,-11],[0,-12],[2,-6],[3,-4],[0,-5],[-2,-4],[-1,-5],[-1,-6],[-1,-7],[-2,-11],[-1,-19],[-2,-4],[-2,-3],[-2,-2],[-2,-2],[-4,-1],[-3,-1],[-6,0],[-5,5],[-2,6],[0,7],[-1,9],[0,7],[-1,1],[-5,0],[-6,-1],[-3,-2],[-3,-2],[-6,-3],[-4,-2],[-20,0],[-6,7],[-5,2],[-1,5],[1,6],[1,1],[6,0],[4,-1],[5,1],[9,4],[7,14],[2,10],[3,5],[9,6],[9,6],[7,8],[3,12],[-4,10],[-15,20],[-9,15],[-2,4],[0,2],[0,2],[0,3],[-1,1],[-3,0],[-3,0],[-3,-1],[-5,1],[-3,2],[-3,1],[-1,0],[-2,-2],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-3],[-5,-2],[0,-1],[-4,-5],[-4,0],[-5,0],[-5,1],[-4,4],[-1,8],[0,9],[2,6],[2,5],[2,6],[-4,11],[-1,4],[-2,3],[-2,6],[0,6],[0,5],[-1,1],[-5,0],[-2,1],[-10,12],[-12,0],[-7,0],[-6,0],[-3,4],[-1,23],[1,4],[1,3],[2,0],[7,9],[1,4],[2,4],[0,1],[2,1],[3,0],[2,0],[1,4],[0,5],[1,2],[0,1],[1,5],[0,3],[0,5],[0,2],[3,7],[1,6],[4,8],[3,0],[5,0],[1,0],[3,3],[4,3],[3,3],[3,1],[0,2],[2,6],[3,7],[0,8],[2,4],[4,8],[2,4],[9,6],[2,-1],[5,-3],[3,-1],[3,-1],[2,1],[5,0],[1,-2],[3,-6],[1,0],[2,0],[2,0],[5,1],[2,2],[1,1],[3,2],[5,0],[5,0],[5,2],[8,17],[0,10],[1,7],[4,7],[7,13],[0,6],[1,3],[3,4],[2,3],[3,4],[7,3],[2,0],[5,5],[5,6],[5,1],[5,0],[4,0],[6,-2],[2,-2],[1,-4],[0,-4],[0,-5],[0,-9],[0,-4],[-2,-2],[-2,-3],[-3,-2],[-3,-2],[-1,0],[0,-6],[-4,-3],[-1,-1],[-2,-1],[-3,-1],[-1,-2],[-1,-3],[-5,-1],[-4,0],[-2,-2],[0,-4],[-1,-3],[0,-4],[1,-4],[1,-2],[5,-4],[0,-4],[-3,-2],[-7,0],[-6,-1],[-6,-6],[-1,-5],[-1,-20],[0,-17],[6,-10],[7,-8],[8,-5],[8,2],[11,11],[4,6],[7,8],[12,1],[5,-5],[2,-2],[2,-3],[2,-2],[4,1],[1,1],[2,2],[4,5],[1,3],[2,7],[0,3],[1,7],[0,5],[3,17],[4,16],[1,3],[5,21],[2,4],[3,4],[6,0],[5,0],[3,0],[2,0],[6,1],[3,4],[1,7],[0,6],[-3,5],[-2,3],[-4,9],[-1,0],[0,2],[-9,9],[-2,7],[-1,5],[0,9],[0,3],[1,6],[0,2],[0,1],[1,2],[1,1],[2,0],[2,0],[2,0],[4,-2],[3,-3],[1,-1],[5,2],[1,4],[1,3],[10,1],[4,-3],[1,-5]],[[444773,227607],[4,-9],[8,3],[8,3],[9,2],[8,0],[6,-8],[4,-10],[6,-7],[3,10],[6,6],[9,6],[9,0],[10,-2],[6,-5],[9,2],[6,8],[6,9],[8,-3],[6,-5],[4,-10],[-5,-8],[4,-9],[5,-11],[2,-12],[-3,-11],[-5,-10],[-6,-10],[1,-14],[10,6],[12,-1],[0,-11],[-4,-11],[-7,-13],[-6,-9],[-5,-8],[-2,-11],[5,-9],[4,-12],[4,-11],[6,-11],[7,-9],[5,-7],[8,-2],[7,7],[7,8],[7,6],[8,3],[7,-4],[9,-6],[12,1],[8,3],[8,1],[8,-1],[10,2],[7,0],[8,2],[7,4],[8,6],[7,7],[1,10],[-5,8],[-4,11],[1,14],[5,9],[8,4],[7,-1],[6,6],[7,8],[7,2],[6,-8],[3,11],[0,12],[8,7],[9,6],[8,-4],[3,-11],[2,-13],[4,-13],[0,-10],[-4,-13],[-1,-13],[8,0],[-3,-11],[1,-12],[8,-1],[1,10],[2,11],[3,10],[5,11],[8,3],[6,-8],[4,-10],[4,-9],[4,-12],[0,-13],[-5,-9],[-8,-5],[-6,-9],[4,-10],[4,-9],[2,-17],[-1,-13],[-1,-16],[5,-11],[6,-10],[7,-2],[9,3],[8,-5],[6,11],[6,7],[9,0],[9,-12],[4,-8],[9,-1],[7,-7],[-5,-9],[-4,-9],[-8,-8],[-8,-7],[-6,-12],[6,-6],[4,-11],[0,-11],[2,-20],[-6,-5],[-8,-3],[-7,0],[-8,-1],[-8,-3],[-8,0],[-12,2],[-8,-2],[-8,-5],[-8,-7],[-7,-7],[-7,-8],[-4,-10],[1,-10],[-7,-7],[-8,-6],[-8,-4],[-8,-3],[-8,-3],[-9,-2],[-8,2],[-8,-6],[0,-11],[3,-10],[-9,-7],[-8,-5],[-8,-6],[-8,-2],[-6,6],[-8,6],[3,12],[7,9],[7,6],[10,10],[6,8],[8,7],[7,7],[7,6],[7,8],[6,6],[6,6],[4,10],[-8,3],[-10,-4],[-7,-4],[-9,-6],[-7,-6],[-5,-9],[-5,-9],[-9,-7],[-6,5],[-8,-5],[-9,-4],[-5,8],[-2,11],[-4,15],[4,12],[-2,11],[-12,-7],[-5,-9],[-5,-11],[-7,1],[-6,10],[-8,-2],[-8,1],[-9,0],[-8,5],[5,8],[7,2],[9,2],[4,11],[-5,11],[-3,10],[3,12],[-6,11],[-6,9],[-4,11],[-8,6],[-8,1],[-9,-5],[-9,-1],[-9,-4],[-9,-4],[-5,-8],[-7,-9],[-2,-11],[-4,-11],[-4,-10],[-5,-9],[-8,-9],[-8,-1],[-8,-1],[-7,-8],[-5,-8],[-8,-9],[-7,-6],[-9,1],[-3,12],[-7,6],[-7,-3],[-9,-1],[-4,11],[7,8],[5,11],[3,12],[7,6],[5,9],[6,7],[8,5],[8,2],[10,1],[5,8],[4,9],[6,10],[-3,10],[-5,12],[-5,11],[-8,8],[-8,-5],[-7,-4],[-8,3],[-5,8],[3,11],[-2,11],[0,11],[-5,10],[-8,7],[-9,3],[-9,6],[-8,5],[-7,3],[-7,-5],[-9,-8],[-7,-7],[-12,-9],[-6,-10],[1,-12],[-6,-8],[-6,-7],[-7,-6],[-8,-4],[-10,3],[-1,-11],[-7,-5],[-11,4],[-5,8],[1,11],[-8,-3],[-6,-6],[-7,-4],[-8,3],[-9,1],[-7,4],[-4,10],[-2,13],[1,11],[1,12],[2,12],[3,11],[2,11],[1,13],[3,15],[1,11],[4,10],[7,6],[8,6],[2,12],[-6,7],[-6,4],[-8,-2],[-10,-3],[-9,1],[-5,9],[-3,10],[-1,11],[5,10],[8,-1],[7,-2],[10,-3],[11,3],[9,4],[8,-3],[5,8],[5,9],[5,8],[2,10],[3,11],[3,10],[4,10],[5,8],[8,2],[8,-1],[8,0],[8,-3],[9,-3],[4,8],[3,11],[6,5],[8,6],[10,2],[5,-9]],[[436829,227684],[2,-3],[6,1],[2,-5],[5,-5],[7,-17],[5,-9],[4,-7],[5,-7],[2,-7],[3,-5],[4,-6],[4,-10],[1,-4],[9,-10],[3,-2],[2,-2],[0,-4],[1,-3],[3,-4],[-3,-8],[2,-6],[2,-3],[3,-2],[1,-5],[1,-1],[1,-5],[0,-6],[0,-7],[2,-6],[5,-7],[8,-11],[10,-13],[10,-9],[7,-10],[4,-9],[4,-14],[4,-21],[4,-24],[3,-20],[6,-17],[6,-14],[5,-20],[10,-25],[11,-19],[5,-14],[5,-11],[5,-7],[3,-6],[3,-2],[3,-4],[3,-1],[5,-7],[-1,-7],[3,-5],[6,0],[4,-2],[-5,-2],[3,-7],[2,-3],[4,-4],[2,-2],[8,-5],[1,-8],[-3,-6],[3,-5],[2,0],[-1,-4],[3,-4],[-1,-5],[-3,-4],[1,-4],[-2,-7],[-4,-5],[-8,-2],[-1,4],[-3,2],[-3,-2],[0,-4],[-1,-5],[0,-5],[-5,-5],[-9,3],[-3,5],[-9,-2],[-2,1],[-6,-3],[0,-4],[0,-7],[-5,-3],[-11,7],[1,8],[-2,1],[-4,0],[-6,0],[-2,-5],[-4,2],[-5,1],[-7,-2],[-5,-1],[-3,1],[1,3],[-2,7],[-5,3],[-8,0],[-25,-2],[-16,-7],[-10,-4],[-7,-3],[-7,-2],[-7,-3],[-10,-4],[-16,-7],[-5,-1],[-11,-6],[-4,-1],[-14,-4],[-5,-1],[-3,-3],[-7,-4],[-6,-4],[-19,-11],[-12,-9],[-17,-16],[-20,-23],[-15,-29],[-15,-23],[-15,-35],[-12,-18],[-9,-20],[-10,-29],[-7,-20],[-10,-15],[-10,-9],[-4,-7],[-11,-34],[-4,-8],[-3,-13],[-1,-21],[-4,-18],[-3,-17],[1,-12],[-5,-46],[1,-9],[-1,-14],[3,-15],[0,-14],[1,-13],[-1,-9],[1,-12],[6,-20],[2,-6],[3,-9],[1,-10],[2,-11],[-3,-10],[-4,-15],[-3,-18],[-4,-20],[-7,-38],[-2,-46],[3,-41],[5,-34],[9,-41],[9,-30],[12,-29],[17,-34],[11,-24],[7,-18],[12,-28],[13,-28],[34,-62],[44,-64],[59,-81],[71,-75],[6,5],[14,-17],[-6,-7],[59,-61],[61,-52],[42,-30],[5,-2],[4,2],[4,3],[7,4],[2,1],[3,2],[3,-1],[4,0],[5,-4],[0,-4],[2,-3],[2,0],[2,0],[4,-3],[-1,-4],[1,-4],[2,-2],[1,-3],[-1,-7],[-9,-6],[-2,-2],[-3,-6],[0,-4],[1,-1],[2,-4],[-3,-6],[-3,-1],[-4,-3],[-1,-4],[1,-6],[0,-2],[-1,-6],[-4,-5],[-2,-2],[-5,-5],[-3,-3],[-4,-6],[-1,-1],[-3,-4],[-3,-9],[-1,-6],[-2,-14],[0,-6],[2,-5],[1,-4],[0,-7],[3,-6],[2,-3],[1,-1],[-2,-4],[-2,-1],[-1,-1],[0,-13],[-2,-6],[0,-6],[-4,-5],[-3,-1],[-1,-2],[-1,-3],[0,-8],[0,-8],[4,-13],[4,-11],[3,-16],[2,-6],[4,-7],[3,-6],[7,-18],[0,-23],[-1,-22],[0,-6],[0,-7],[0,-11],[2,-10],[3,-13],[1,-17],[5,-19],[5,-14],[2,-17],[4,-9],[6,-12],[5,-8],[12,-16],[12,-19],[12,-17],[8,-18],[4,-11],[3,-10],[2,-10],[5,-9],[2,-8],[5,-8],[2,-14],[8,-12],[11,-8],[9,-9],[16,-10],[14,-14],[9,-15],[4,-3],[28,-18],[32,-17],[44,-12],[28,-5],[48,-4],[64,-10],[26,-4],[27,-9],[20,-11],[5,-2],[8,-1],[13,1],[1,0],[4,1],[3,11],[1,3],[8,16],[5,8],[11,17],[2,5],[2,1],[2,3],[4,3],[2,5],[2,8],[5,7],[3,5],[2,3],[2,3],[3,2],[3,10],[2,3],[1,1],[2,4],[1,1],[5,4],[2,3],[3,2],[4,3],[3,5],[4,7],[3,2],[3,2],[5,8],[5,3],[1,10],[4,5],[4,5],[12,8],[4,8],[5,6],[6,6],[10,5],[9,4],[2,5],[6,6],[7,5],[7,3],[13,3],[10,0],[5,5],[2,5],[11,4],[11,1],[7,-4],[6,-3],[5,0],[7,0],[12,1],[6,0],[4,1],[4,2],[4,2],[20,1],[5,1],[3,5],[0,11],[-4,12],[-3,15],[-2,11],[-1,11],[-3,15],[-4,3],[-3,2],[-5,6],[-9,5],[-3,4],[-4,5],[-9,4],[-2,7],[-1,7],[-6,3],[-3,4],[-1,6],[-2,5],[-8,1],[-6,1],[-7,2],[-4,2],[-6,0],[-3,0],[-4,-3],[-4,-2],[-6,-3],[-3,-3],[-4,-6],[-7,1],[-4,-2],[-5,-3],[-3,-2],[-4,-12],[-1,-9],[-2,-12],[-1,-4],[-5,-4],[-21,3],[-3,0],[-2,0],[-7,1],[-1,3],[-5,1],[-3,4],[-7,2],[-1,3],[-5,3],[-6,-1],[-1,-4],[-1,-2],[-3,-1],[-4,1],[-3,5],[-7,-1],[-4,1],[-1,5],[-1,0],[-2,2],[0,3],[-6,3],[-1,0],[-5,0],[-4,-3],[-3,0],[-4,-1],[-3,1],[-3,2],[-5,0],[-4,1],[-5,2],[-2,4],[-1,6],[-6,3],[-1,3],[-1,2],[-1,7],[1,2],[1,5],[1,4],[1,2],[-1,5],[-1,0],[-5,2],[-2,5],[-1,5],[1,10],[1,1],[3,7],[0,3],[0,6],[1,3],[0,4],[-3,2],[-3,-1],[1,4],[-1,6],[-2,1],[-2,1],[0,4],[-1,2],[-3,1],[0,4],[1,5],[3,3],[3,1],[-1,6],[-3,2],[-2,1],[-1,3],[-1,8],[1,1],[2,2],[0,4],[-1,3],[0,4],[1,1],[2,1],[1,3],[-3,1],[-2,0],[-2,3],[0,2],[0,4],[-2,2],[0,2],[-1,4],[-2,0],[0,6],[-1,2],[-1,2],[-1,4],[2,9],[2,3],[2,2],[1,2],[0,3],[-5,5],[0,1],[-1,10],[1,2],[0,4],[1,4],[0,3],[-1,3],[-3,1],[-3,0],[-3,2],[-2,5],[1,5],[1,4],[1,1],[2,5],[-1,4],[2,3],[1,1],[1,5],[0,5],[-1,5],[-7,3],[-1,5],[0,1],[-3,4],[1,5],[-2,2],[-2,0],[-3,8],[1,2],[-2,4],[-4,0],[-2,4],[3,6],[0,1],[2,4],[-2,1],[-1,4],[2,2],[1,1],[1,8],[2,3],[0,2],[-1,0],[-2,6],[-3,2],[-3,-8],[-2,2],[0,5],[-6,2],[0,2],[7,4],[3,1],[2,0],[3,6],[2,2],[3,2],[3,2],[2,3],[4,2],[1,3],[0,5],[0,6],[0,4],[-1,0],[-1,1],[-1,-3],[-4,1],[-2,6],[1,5],[1,3],[4,2],[3,2],[1,3],[-2,5],[-2,2],[-1,5],[0,10],[0,8],[0,2],[1,6],[1,4],[4,2],[5,4],[4,2],[4,0],[2,2],[2,3],[-3,4],[0,6],[2,1],[3,-4],[4,0],[2,1],[2,2],[6,0],[1,-1],[4,2],[8,0],[5,0],[2,1],[2,1],[2,3],[3,2],[3,1],[1,3],[1,1],[2,3],[2,1],[4,0],[1,7],[2,1],[5,3],[2,0],[3,4],[3,1],[-2,4],[1,3],[3,8],[3,1],[5,1],[3,-2],[2,1],[-1,4],[1,3],[-2,1],[0,6],[0,4],[6,1],[-1,4],[2,2],[1,1],[3,-1],[1,3],[0,4],[4,3],[3,1],[2,0],[6,2],[1,2],[3,1],[5,1],[3,1],[5,4],[4,0],[9,3],[0,1],[7,0],[4,0],[6,0],[14,4],[21,6],[7,5],[3,1],[1,8],[1,2],[-1,5],[3,7],[-1,4],[1,3],[2,3],[4,1],[1,4],[2,2],[2,1],[0,5],[2,2],[2,6],[-1,1],[0,3],[-2,2],[-1,3],[2,6],[4,-3],[3,2],[-1,3],[3,9],[4,1],[6,5],[3,0],[-1,3],[2,4],[2,1],[0,1],[0,10],[1,1],[0,3],[1,5],[3,5],[3,3],[3,1],[3,3],[2,1],[3,5],[2,4],[1,2],[0,1],[-1,4],[-2,0],[-5,-4],[-2,-1],[0,3],[2,6],[3,0],[1,1],[0,7],[2,1],[4,-3],[1,3],[2,1],[1,-1],[1,-5],[2,-1],[5,5],[2,6],[2,4],[4,10],[3,-1],[2,6],[5,2],[3,4],[1,6],[4,5],[4,2],[3,4],[2,6],[5,4],[4,2],[3,0],[3,-1],[1,2],[4,1],[3,2],[1,4],[0,6],[1,6],[3,4],[3,2],[7,-1],[1,-1],[3,0],[2,6],[2,1],[2,0],[7,3],[3,3],[5,1],[4,5],[1,3],[0,6],[0,6],[1,4],[3,4],[2,0],[5,4],[4,-2],[4,0],[4,3],[1,6],[-1,6],[1,4],[6,1],[5,0],[5,2],[2,1],[3,0],[1,-1],[0,-2],[0,-6],[6,-1],[7,0],[2,1],[2,1],[3,2],[1,0],[14,6],[27,22],[21,18],[22,19],[18,17],[30,35],[25,32],[30,44],[25,73],[10,44],[2,6],[2,5],[2,6],[-1,3],[0,5],[2,10],[2,11],[-3,6],[-1,9],[2,5],[2,1],[0,10],[0,3],[-4,1],[-4,4],[-1,7],[-3,1],[-1,2],[-1,0],[-1,5],[-3,2],[-2,-1],[-3,3],[-1,2],[1,1],[-3,3],[0,3],[0,4],[-3,4],[-4,-1],[-5,4],[-3,4],[-2,4],[0,2],[-1,0],[-3,6],[0,1],[-1,3],[-3,2],[-2,-1],[-2,-3],[-2,1],[-5,3],[1,4],[0,1],[0,4],[-4,0],[-3,4],[-3,0],[-4,-3],[-1,5],[0,3],[-7,-2],[1,-5],[-1,-1],[-3,0],[-1,-3],[0,-7],[-3,-1],[-3,-1],[-1,-1],[-2,1],[-1,5],[-3,0],[-1,1],[0,2],[1,5],[0,3],[1,0],[2,4],[-7,5],[0,4],[-1,5],[-5,-2],[-3,-3],[-4,0],[-5,1],[-1,2],[0,5],[-1,3],[-4,4],[-1,1],[-2,2],[-4,-1],[-5,1],[-1,-2],[-3,-2],[-6,1],[1,5],[-1,2],[-4,1],[-1,4],[-1,2],[-1,2],[-2,3],[-1,1],[-1,2],[-2,1],[-2,1],[-2,4],[1,2],[0,2],[1,2],[-2,6],[1,2],[-2,3],[-1,1],[-2,5],[3,1],[1,-1],[3,7],[3,3],[2,2],[3,0],[-1,-1],[1,-2],[5,3],[2,2],[2,3],[0,3],[1,4],[6,5],[0,2],[-3,4],[4,5],[2,-1],[2,-3],[4,2],[2,5],[3,6],[-3,0],[-3,3],[0,9],[2,5],[4,1],[1,1],[1,6],[-1,2],[-1,5],[2,2],[-2,10],[1,6],[-1,1],[-2,0],[-1,5],[-1,2],[0,3],[5,3],[1,3],[0,1],[4,2],[0,2],[3,7],[-2,7],[2,7],[-1,1],[0,4],[3,0],[2,4],[1,9],[3,1],[2,2],[1,4],[-2,9],[-6,-2],[-3,-2],[-5,2],[3,5],[4,3],[3,6],[2,4],[0,5],[4,2],[-1,3],[2,3],[1,5],[2,4],[-1,7],[1,6],[-2,3],[0,3],[3,2],[1,0],[1,6],[1,5],[-2,2],[-1,6],[4,0],[1,1],[1,2],[-5,5],[0,4],[2,3],[-2,6],[-1,-1],[-5,-6],[-4,1],[-4,0],[-3,-2],[0,3],[0,4],[2,-1],[3,0],[2,1],[2,1],[2,1],[0,5],[4,3],[-2,5],[2,2],[3,3],[0,4],[-1,1],[-2,0],[-4,-1],[-1,1],[1,5],[1,0],[2,3],[1,2],[4,5],[1,1],[4,5],[1,1],[2,4],[1,1],[3,0],[1,-5],[-1,-3],[2,-3],[0,-2],[2,1],[3,2],[2,4],[1,2],[2,2],[2,4],[0,3],[0,1],[3,1],[2,0],[2,-1],[1,-2],[3,-3],[2,0],[3,3],[0,3],[1,1],[1,0],[4,-1],[2,-3],[1,-5],[-2,-3],[0,-3],[4,-2],[3,-2],[2,3],[5,6],[4,-1],[7,6],[0,2],[-1,11],[2,3],[2,3],[0,5],[1,4],[4,1],[5,1],[3,-2],[4,-2],[6,2],[0,1],[1,6],[4,2],[3,2],[3,0],[2,-2],[7,1],[4,2],[0,4],[2,3],[2,7],[2,5],[2,2],[0,4],[2,-1],[4,-1],[2,3],[6,0],[6,0],[3,1],[4,4],[-1,2],[-5,4],[0,5],[2,2],[4,0],[3,0],[4,3],[1,-1],[3,-1],[4,-3],[0,-3],[1,-2],[1,-1],[3,0],[4,3],[2,2],[4,2],[2,-1],[3,-3],[4,0],[5,-3],[4,3],[4,4],[2,2],[2,4],[2,-3],[6,0],[1,1],[3,2],[3,3],[2,3],[0,4],[0,3],[6,0],[4,-3],[4,-4],[3,1],[3,0],[1,2],[3,3],[3,0],[7,0],[4,-1],[2,2],[7,5],[4,8],[6,3],[4,-1],[3,0],[6,-2],[6,0],[5,-3],[7,5],[3,-1],[5,3],[1,3],[5,1],[6,2],[0,-1],[5,0],[2,1],[-1,5],[2,4],[2,1],[1,0],[2,-1],[0,-3],[-1,-3],[3,0],[0,1],[5,1],[2,-2],[2,0],[1,0],[2,-3],[3,1],[2,-1],[0,-3],[-4,-2],[-3,0],[-3,2],[-2,-4],[1,-8],[4,-2],[5,-2],[3,-4],[-4,-4],[6,-4],[7,-3],[5,-2],[5,-8],[4,-2],[12,2],[6,-2],[6,2],[9,0],[7,0],[3,-1],[6,-1],[6,-3],[3,0],[11,0],[8,-1],[9,0],[11,2],[4,2],[5,2],[7,0],[9,3],[6,3],[2,2],[3,2],[1,0],[3,1],[3,1],[2,3],[2,2],[3,1],[2,1],[2,6],[1,4],[5,4],[1,1],[3,6],[1,1],[1,6],[4,4],[2,3],[1,3],[0,2],[-1,4],[-1,3],[2,8],[1,1],[2,5],[-1,2],[-3,3],[0,3],[2,4],[4,-1],[5,2],[1,-1],[5,3],[4,3],[2,2],[1,1],[6,2],[7,-1],[5,0],[1,-1],[3,-2],[3,-4],[6,0],[2,-1],[4,-2],[1,-1],[1,-2],[5,-2],[4,1],[2,-2],[-3,-5],[1,-2],[5,4],[3,0],[6,-4],[-1,-4],[3,-4],[2,-3],[8,-1],[7,-3],[2,-3],[3,-2],[3,-3],[1,-2],[2,-7],[3,-3],[2,6],[5,2],[4,-2],[1,-2],[1,-6],[2,-3],[-2,1],[-1,-3],[-2,-1],[-1,-4],[1,-4],[-1,-2],[2,-3],[1,-3],[2,-3],[0,-4],[-1,-2],[-3,-1],[-2,-4],[0,-2],[2,-4],[0,-2],[-2,-1],[-1,-4],[-3,1],[-2,-1],[-2,-2],[-2,-6],[0,-4],[1,-3],[0,-7],[0,-4],[2,-1],[2,-1],[1,-4],[-1,-4],[0,-2],[1,-4],[2,-1],[1,-4],[0,-1],[3,-5],[1,-1],[3,0],[2,-2],[-1,-3],[-1,0],[-1,-2],[1,-1],[2,-2],[1,-3],[-1,-3],[-2,-1],[0,-1],[2,-10],[4,-9],[1,-4],[2,-5],[1,-6],[4,-6],[1,-5],[0,-2],[2,-3],[3,0],[1,3],[3,2],[2,-1],[-1,-5],[-2,-5],[1,-2],[0,-6],[4,-10],[12,-17],[14,-16],[17,-14],[25,-19],[23,-12],[20,-6],[23,-5],[37,0],[6,1],[5,1],[2,1],[5,5],[2,4],[3,2],[3,3],[3,5],[3,3],[4,4],[5,0],[5,7],[3,2],[6,0],[4,3],[3,0],[3,2],[5,-2],[6,3],[3,-3],[5,-3],[5,2],[1,-1],[4,-4],[3,-5],[4,1],[9,0],[5,-3],[3,-2],[1,-3],[6,-2],[1,2],[-3,3],[-2,4],[3,6],[0,1],[7,0],[1,0],[2,1],[2,0],[2,0],[2,-1],[2,-2],[2,-1],[3,1],[2,-2],[1,-3],[-2,-3],[-1,0],[0,-2],[1,-3],[-2,-5],[0,-2],[2,0],[4,-4],[-1,-3],[-5,0],[-3,3],[-3,-2],[1,-8],[2,-2],[4,-4],[2,-5],[2,-5],[2,-7],[5,-2],[2,-2],[3,3],[2,-1],[2,-2],[1,-6],[3,-2],[2,-2],[0,-4],[3,-7],[5,-2],[4,-2],[0,-5],[3,-5],[6,-7],[3,-3],[4,-5],[5,-12],[3,-6],[3,-5],[6,-3],[4,-4],[6,-1],[6,-1],[9,0],[8,0],[13,5],[14,3],[4,1],[5,3],[3,2],[4,0],[3,3],[0,2],[0,2],[2,2],[2,1],[2,0],[2,-2],[0,-1],[1,-1],[0,-3],[3,0],[8,1],[22,3],[16,3],[6,2],[7,2],[6,3],[12,3],[6,0],[4,2],[1,2],[5,0],[2,0],[7,4],[-1,3],[2,6],[5,1],[4,5],[-1,1],[0,6],[1,3],[2,2],[4,2],[2,-1],[1,-2],[0,-3],[-1,-4],[-4,-2],[3,-4],[2,0],[6,-3],[2,-3],[5,4],[2,4],[2,2],[7,1],[4,-4],[10,-1],[2,-3],[4,2],[10,0],[8,3],[4,2],[3,1],[6,0],[5,-1],[7,0],[3,2],[2,3],[1,4],[3,1],[5,2],[1,0],[4,0],[1,-1],[4,-2],[0,-2],[1,-2],[3,0],[1,3],[1,1],[3,1],[8,0],[5,-4],[5,0],[0,-2],[0,-3],[7,-4],[4,0],[8,0],[3,0],[3,0],[4,-3],[2,-4],[0,-8],[15,0],[3,4],[1,1],[5,1],[4,0],[5,-3],[2,0],[3,-5],[4,-2],[5,1],[3,0],[3,2],[5,-6],[-3,-7],[6,1],[7,-1],[12,2],[3,2],[-1,10],[-2,5],[3,1],[4,1],[4,2],[2,-3],[4,2],[2,0],[2,0],[4,1],[1,-2],[3,-3],[3,-5],[4,0],[4,4],[0,-6],[-3,-6],[1,-2],[3,0],[3,3],[3,-2],[-1,-7],[-3,-3],[-2,-3],[6,-2],[1,-7],[9,0],[3,5],[5,7],[1,1],[3,6],[1,4],[5,2],[3,0],[2,-3],[4,0],[2,0],[2,0],[2,-3],[-1,-5],[-1,-4],[-2,-6],[2,-3],[3,-2],[6,2],[5,-9],[3,-2],[8,0],[5,-9],[0,-10],[4,-9],[4,-8],[3,-5],[3,-2],[3,-2],[7,-2],[9,4],[3,3],[3,3],[10,9],[2,-7],[7,1],[4,2],[4,0],[3,-2],[3,-4],[-1,-6],[-1,-4],[3,-5],[4,1],[11,1],[15,13],[8,8],[3,6],[8,10],[8,0],[3,0],[13,1],[6,-11],[17,-3],[5,0],[5,3],[3,3],[8,3],[3,-1],[3,0],[15,-1],[6,0],[6,-1],[6,0],[17,0],[7,4],[8,0],[9,-3],[31,-8],[30,-14],[8,-3],[25,-7],[18,-6],[17,-8],[53,-27],[94,-48],[11,51],[142,-73],[-6,-27],[80,-39],[3,-4],[1,-7],[3,-10],[6,-8],[4,-1],[4,3],[1,2],[2,1],[1,1],[5,-4],[2,-5],[3,-5],[3,-3],[4,-4],[3,-3],[3,-4],[3,-3],[8,-5],[3,-1],[3,-3],[5,-3],[5,-5],[3,-1],[3,-5],[-1,-2],[1,-5],[3,-4],[4,4],[3,0],[1,-6],[1,-1],[0,-5],[1,-2],[3,1],[2,1],[0,-4],[3,-3],[2,3],[0,-1],[3,-1],[3,-1],[1,-1],[2,-8],[2,-4],[2,3],[1,-2],[3,-3],[5,-3],[1,-1],[2,3],[4,-2],[3,-7],[4,-5],[1,-2],[2,-5],[2,2],[1,-6],[4,-7],[4,0],[5,-6],[4,-3],[4,-7],[0,-6],[-1,-6],[2,-6],[1,-8],[3,-2],[3,-1],[0,-3],[0,-4],[-1,-5],[2,-3],[1,-1],[2,-5],[2,-5],[2,0],[2,-5],[1,-3],[0,-2],[0,-3],[2,-2],[2,-2],[1,-3],[-1,-3],[1,-2],[2,0],[2,-1],[1,-4],[1,-5],[1,-1],[1,-4],[0,-4],[2,-1],[1,0],[2,0],[0,-4],[-3,-3],[2,-4],[3,1],[1,0],[2,-2],[0,-2],[-1,-2],[1,-4],[0,-2],[2,-3],[-1,-3],[2,-2],[1,-4],[0,-3],[1,-3],[3,3],[2,-1],[3,-4],[5,-5],[0,-2],[0,-6],[0,-4],[-1,-7],[4,-1],[1,-2],[2,-1],[2,0],[1,-4],[0,-7],[0,-3],[-1,-7],[-3,-4],[-1,-1],[0,-6],[-3,-3],[-6,2],[0,3],[-3,-1],[-3,-3],[-1,-3],[2,-3],[3,-8],[-4,0],[-1,-3],[2,-4],[-2,-5],[-5,-3],[-1,-7],[-5,-3],[1,-6],[-3,-3],[-5,-7],[0,-3],[4,-4],[0,-7],[-3,-2],[-3,-8],[-3,-4],[3,-4],[-4,-3],[1,-4],[0,-4],[-2,-2],[0,-6],[-3,0],[-3,-1],[-1,-3],[-3,-3],[-3,1],[-1,0],[-6,-7],[-3,2],[-7,-8],[-1,-4],[1,-5],[-3,-5],[1,-2],[1,-4],[2,-3],[-2,-5],[-4,-3],[-3,2],[-4,-1],[-1,-4],[1,-4],[-2,-6],[-7,2],[-5,-1],[-2,-4],[0,-4],[-1,-5],[-5,-6],[-5,-4],[-6,-6],[-11,-24],[-4,-7],[-3,-18],[-2,-29],[-10,-51],[-2,-12],[-6,-29],[-4,-18],[0,-15],[-4,-20],[-6,-14],[-6,-16],[-3,-17],[-1,-13],[-1,-22],[-1,-29],[0,-8],[1,-15],[0,-22],[1,-12],[5,-10],[3,-6],[0,-17],[6,-20],[0,-3],[0,-11],[2,-7],[0,-9],[2,-9],[6,-7],[0,-7],[2,-7],[3,-4],[1,-8],[-1,-12],[6,-15],[2,-1],[1,-2],[-1,-6],[2,-1],[0,-1],[4,-2],[1,-4],[0,-5],[0,-4],[1,-4],[2,-3],[1,-3],[2,-1],[1,-1],[0,-1],[2,-1],[0,-3],[1,-1],[1,-1],[1,-2],[0,-2],[1,-4],[1,-2],[2,-1],[-1,-4],[0,-4],[1,-1],[2,-1],[0,-1],[0,-2],[0,-1],[0,-1],[2,-1],[0,-4],[2,-1],[1,-1],[1,-2],[0,-2],[-1,-2],[2,-2],[-1,-4],[0,-3],[1,-1],[2,-6],[2,-1],[1,-4],[2,-2],[0,-3],[1,-1],[4,-2],[0,-2],[2,-1],[0,-2],[2,-3],[1,0],[0,-6],[2,-5],[2,-5],[1,-3],[-1,0],[-2,-1],[-1,-2],[1,-1],[1,-3],[2,-1],[0,-1],[0,-2],[4,-1],[0,-1],[0,-4],[0,-3],[3,-4],[4,-7],[1,-3],[1,0],[1,-4],[1,-4],[2,-5],[-2,-6],[0,-7],[0,-1],[1,-5],[0,-5],[1,-6],[1,-6],[5,-6],[0,-7],[1,-24],[3,-10],[4,-27],[1,-11],[6,-19],[6,-18],[5,-13],[6,-22],[3,-15],[4,-21],[4,-16],[7,-45],[0,-9],[6,-15],[5,-8],[3,-7],[4,-6],[6,-5],[6,-7],[5,-4],[4,-2],[2,-3],[1,-2],[2,-1],[4,0],[7,-7],[5,-3],[4,-3],[4,-6],[6,-1],[2,-2],[7,-4],[10,-8],[2,-1],[4,-5],[8,-3],[5,-5],[3,-2],[6,-3],[4,-2],[3,-5],[2,-3],[3,-10],[8,-9],[3,-7],[1,-7],[2,-7],[1,-5],[0,-7],[4,-12],[5,-11],[2,-10],[2,-7],[0,-9],[1,-19],[2,-11],[3,-9],[2,-2],[2,-3],[0,-5],[-2,-6],[-2,-7],[1,-7],[1,-4],[1,-7],[-1,-5],[-2,-8],[5,-8],[-1,-5],[-1,-1],[5,-6],[-1,-9],[0,-3],[-1,-5],[-2,-3],[0,-5],[4,-3],[4,0],[3,-6],[2,-6],[-3,-7],[-2,-6],[-4,-5],[-2,-4],[-1,-4],[2,-2],[-1,-5],[-2,-5],[1,-5],[6,-7],[3,-2],[4,-2],[0,-4],[-4,-2],[-3,-3],[-1,-2],[1,-4],[1,-3],[2,-5],[-3,-1],[-5,-1],[1,-2],[2,-3],[3,-1],[4,2],[2,-3],[-1,-5],[4,-2],[2,1],[3,0],[1,1],[3,2],[1,2],[3,-2],[0,-3],[-1,-4],[-3,-3],[-2,0],[-2,3],[-2,-1],[-2,-6],[-4,-2],[-1,-2],[-2,-1],[-1,6],[-1,-1],[-1,-8],[-2,-5],[-1,-3],[-2,-5],[1,-3],[3,3],[5,-1],[0,-2],[0,-4],[-4,-4],[-4,-3],[0,-3],[-1,-5],[-2,-3],[-2,1],[-8,-1],[-2,-9],[-4,-10],[-6,-12],[-7,-11],[-8,-11],[-9,-11],[-5,-14],[-10,-22],[-19,-35],[-28,-44],[-43,-77],[-13,-32],[-2,-6],[-3,-7],[-5,-9],[-4,-17],[-4,-7],[-5,-15],[-4,-10],[-4,-13],[-2,-11],[-6,-17],[0,-12],[0,-8],[-4,-11],[0,-3],[-3,-4],[-3,-5],[-3,-10],[-1,-9],[-3,-9],[-3,-4],[-1,-9],[-3,-7],[1,-10],[-2,-8],[-3,-5],[0,-4],[6,-5],[0,-6],[8,-4],[5,-4],[6,-3],[1,-1],[1,-1],[4,-2],[3,-1],[3,-4],[5,-2],[1,-4],[1,-1],[5,-4],[2,-1],[0,-4],[4,-2],[0,-3],[-2,-8],[6,-4],[2,4],[2,-1],[3,-2],[4,-2],[-1,-2],[-1,-5],[0,-3],[-1,-4],[-1,-3],[0,-2],[0,-4],[1,-1],[3,-3],[1,-4],[2,-2],[1,1],[3,2],[2,-1],[2,-3],[3,-2],[-2,-6],[-3,0],[-1,-4],[0,-3],[-3,-6],[-1,-4],[-2,-5],[1,-6],[1,-2],[3,0],[2,2],[3,1],[2,-2],[0,-4],[-3,-4],[-3,-3],[-1,-1],[-2,5],[-2,2],[-3,-2],[1,-1],[-3,-8],[-4,-4],[-2,-12],[-3,-11],[-1,-6],[0,-11],[1,-2],[4,0],[4,0],[1,-8],[3,-2],[0,-1],[-2,-2],[-4,-3],[-2,-3],[1,-3],[5,0],[5,-2],[-2,-4],[-4,-5],[-4,1],[-1,-1],[-5,-1],[-2,-3],[-3,-1],[-5,0],[-1,0],[-3,-3],[-1,-5],[-1,-5],[-2,2],[-3,-1],[-2,-3],[-3,-4],[-1,-4],[0,-2],[0,-3],[2,0],[2,-4],[-2,-3],[-4,0],[0,4],[-4,4],[-3,1],[-5,-6],[-3,-6],[1,-5],[1,-2],[-3,-7],[-6,-1],[-4,3],[-6,0],[-8,-4],[-7,-6],[-6,-7],[-7,-5],[-9,-10],[-4,-8],[-3,-6],[-7,-7],[-12,-10],[-5,-4],[0,-4],[0,-3],[-1,-4],[-4,0],[-1,2],[-3,0],[-3,-4],[-5,-3],[-7,-9],[-3,-8],[-7,-10],[-3,-6],[-2,-3],[2,-3],[0,-4],[-4,-3],[-2,1],[-2,5],[0,-5],[-9,-11],[-1,-2],[-4,-6],[-2,-2],[-5,-8],[-2,-6],[1,-4],[1,-3],[1,-4],[-7,1],[-2,3],[-1,-1],[-2,-4],[3,-3],[-1,-9],[-3,-1],[0,-4],[5,-3],[0,-3],[-3,-4],[-5,-1],[-2,-2],[0,-4],[-5,-2],[-2,2],[-4,1],[-6,-10],[-5,-5],[-4,-6],[0,-9],[-2,-10],[-4,-14],[0,-6],[0,-8],[-2,-5],[-1,-5],[-7,-14],[0,-5],[-2,-11],[-3,-10],[-1,-7],[0,-10],[-3,-9],[-5,-7],[-1,-9],[-10,-5],[-2,-3],[-3,-8],[-2,-6],[-4,-1],[-8,-2],[-2,-7],[-1,-6],[-5,-4],[-5,-7],[-9,-2],[-4,-3],[-3,-6],[-7,-3],[-3,-6],[-1,-10],[-6,-5],[-5,-6],[-3,-6],[-5,-3],[-6,-7],[-4,-4],[-15,-1],[-8,-3],[-16,-6],[-8,0],[-6,-1],[-6,0],[-8,-1],[-8,-4],[-8,-7],[-6,-5],[-7,-4],[-26,-15],[-39,-21],[-43,-25],[-95,-47],[-36,-19],[-53,-27],[-54,-28],[-45,-27],[-43,-30],[-10,-7],[-13,-30],[-7,-8],[-2,-10],[-6,-15],[-2,-9],[-4,-12],[-5,-13],[-1,-18],[-6,-18],[-9,-18],[-2,-7],[-11,-18],[-3,-9],[-12,-20],[-4,-14],[-1,-14],[-1,-16],[0,-7],[-7,-17],[-5,-13],[-4,-4],[-1,-8],[-9,-10],[-11,-14],[-10,-7],[-14,0],[-11,-14],[-1,-4],[-1,-7],[-7,-1],[-11,3],[-5,4],[-14,-1],[-9,0],[-5,-5],[-7,-6],[-3,1],[-4,4],[-1,6],[-6,3],[-7,-1],[-8,-4],[-9,0],[-12,3],[-10,0],[-1,7],[0,8],[-4,2],[-2,1],[-7,-3],[-8,-2],[-5,-2],[-4,-4],[-1,-6],[-8,-9],[-3,-3],[-4,-5],[-2,-9],[-7,-7],[-12,-3],[-6,2],[-10,0],[-5,-3],[-7,-10],[-8,-13],[-8,-12],[-8,-11],[-8,-9],[-12,-5],[-27,-2],[-20,-1],[-40,-7],[-48,-16],[-40,-16],[-90,-48],[-22,-12],[-23,-15],[-15,-13],[-22,-20],[-11,-13],[-14,-13],[-20,-7],[-21,-10],[-18,-8],[-48,-21],[-33,-15],[-37,-22],[-16,-14],[-55,-31],[-52,-36],[-81,-59],[-71,-52],[-52,-40],[-35,-27],[-78,-53],[-56,-45],[-43,-36],[-49,-40],[-87,-72],[-60,-50],[-39,-36],[-68,-65],[-61,-62],[-50,-42],[-17,-16],[-20,-19],[-30,-20],[-40,-28],[-16,-15],[-25,-25],[-17,-18],[-21,-23],[-21,-26],[-16,-19],[-13,-12],[-29,-17],[-35,-19],[-50,-37],[-50,-51],[-37,-38],[-23,-29],[-49,-54],[-67,-84],[-153,-195],[-43,-57],[-19,-29],[-6,-9],[-3,-9],[-5,-16],[-8,-15],[-4,-5],[-2,-9],[-1,-6],[-8,-11],[-7,-7],[-3,-1],[-9,1],[-2,-1],[-13,-3],[-5,-2],[-6,-4],[-5,-6],[-6,-13],[-6,-15],[-18,-15],[-39,-46],[-34,-49],[-40,-60],[-32,-61],[-17,-43],[-17,-38],[-7,-16],[-11,-16],[-16,-22],[-15,-18],[-23,-42],[-22,-43],[-23,-55],[-11,-39],[-13,-35],[-4,-22],[-4,-18],[-7,-23],[-6,-21],[-8,-33],[-4,-17],[-3,-27],[-4,-19],[1,-19],[2,-18],[5,-9],[4,-8],[2,-12],[4,-12],[6,-6],[10,-11],[5,-6],[4,-10],[14,-18],[8,-11],[9,-4],[6,0],[6,-7],[3,-26],[5,-15],[-1,-9],[0,-6],[-2,-9],[-1,-13],[2,-6],[2,-5],[1,-4],[7,-2],[1,-20],[-11,-19],[-1,-19],[2,-8],[1,-4],[-2,-7],[-1,-6],[0,-9],[3,-4],[2,-7],[3,0],[2,-2],[3,0],[-2,-10],[-1,-2],[-3,-2],[-4,-1],[-3,-5],[0,-6],[0,-5],[0,-9],[11,-4],[-5,-25],[-4,-21],[-3,-11],[-4,-14],[-4,-10],[-3,-9],[-6,-5],[-8,-5],[-5,-5],[-3,-8],[-7,-5],[-5,-1],[-2,-4],[-3,-14],[0,-6],[1,-8],[2,-7],[2,-9],[0,-6],[-3,-3],[-2,1],[-8,2],[-5,0],[-8,-2],[-8,-11],[-7,-8],[-10,-10],[-9,-14],[-8,-19],[-6,-15],[-12,-26],[-13,-27],[-11,-16],[-14,-15],[-21,-24],[-30,-29],[-33,-27],[-34,-28],[-33,-18],[-26,-9],[-19,-1],[-16,0],[-17,0],[-14,0],[-12,-1],[-15,-3],[-12,-7],[-11,-9],[-13,-14],[-13,-21],[-21,-33],[-26,-41],[-22,-45],[-12,-32],[-2,-4],[0,-7],[0,-4],[-2,-6],[-5,-2],[-3,-2],[-2,-4],[-2,-2],[-4,-5],[-20,-40],[-34,-74],[-38,-81],[-5,-12],[-2,-11],[-2,-6],[-3,-13],[-1,-7],[-7,-42],[0,-6],[0,-6],[-3,-16],[-12,-38],[-3,-2],[-8,-14],[-7,-22],[-46,-127],[-10,-27],[-1,-3],[-2,-7],[-3,-8],[-1,-9],[0,-11],[0,-7],[2,-11],[0,-11],[-16,-18],[-13,-11],[-5,-18],[-10,-15],[-17,-14],[-20,3],[-17,-3],[-8,-4],[-10,-4],[-5,-3],[-9,-4],[-10,-4],[-10,-5],[-10,-2],[-10,-2],[-9,0],[-7,0],[-13,-4],[-7,0],[-8,-2],[-7,-3],[-13,-6],[-6,0],[-12,-6],[-7,-3],[-30,1],[-7,0],[-12,-1],[-9,0],[-12,-3],[-11,-1],[-9,0],[-10,0],[-14,0],[-9,3],[-10,0],[-9,0],[-5,-2],[-9,-5],[-6,-1],[-8,-4],[-8,-9],[-5,-8],[-5,-2],[-5,2],[-6,0],[-14,1],[-4,2],[0,5],[-4,5],[-6,4],[-6,1],[-5,-3],[-4,-4],[-3,-1],[-5,0],[-6,5],[-6,0],[-6,0],[-8,-2],[-4,0],[-6,6],[-4,5],[-2,3],[-6,3],[-6,0],[-32,-2],[-38,-3],[-23,-1],[-24,-11],[-14,-13],[-7,-14],[-9,-15],[-7,-8],[-10,-7],[-11,-7],[-7,-9],[-11,-18],[-5,-7],[-5,-7],[-12,-23],[-5,-12],[-2,-13],[-4,-15],[-2,-4],[-6,-11],[-2,-10],[-2,-16],[-1,-12],[-2,-15],[3,-2],[7,-2],[0,-4],[1,-6],[-3,-10],[-3,-4],[0,-6],[-5,-13],[2,-17],[2,-3],[-6,-14],[-6,-9],[2,-13],[0,-3],[-2,-14],[-1,-7],[-1,-12],[0,-9],[2,-10],[0,-16],[1,-11],[2,-2],[2,-7],[0,-9],[2,-4],[3,-8],[2,-10],[3,-17],[1,-10],[-1,-8],[0,-13],[0,-4],[3,-10],[2,-9],[2,-14],[1,-8],[5,-19],[-1,-13],[0,-14],[3,-7],[3,-15],[0,-10],[2,-9],[1,-11],[0,-7],[0,-13],[1,-7],[-1,-8],[1,-15],[3,-6],[1,-14],[-2,-9],[1,-10],[3,-12],[-1,-10],[2,-21],[1,-4],[0,-28],[1,-8],[0,-10],[2,-15],[3,-10],[0,-7],[0,-7],[1,-11],[2,-22],[3,-15],[1,-19],[1,-18],[0,-10],[3,-23],[2,-16],[1,-15],[2,-16],[2,-15],[1,-5],[4,-30],[1,-8],[1,-17],[2,-21],[3,-15],[3,-25],[1,-14],[1,-23],[0,-12],[2,-24],[3,-5],[4,1],[1,-10],[-1,-6],[-2,-5],[-2,-7],[2,-8],[1,-7],[3,-3],[1,-3],[2,-8],[4,-10],[1,-6],[1,-6],[-2,-10],[0,-7],[2,-5],[1,-8],[0,-5],[1,-13],[1,-10],[0,-8],[0,-8],[0,-5],[2,-11],[1,-9],[0,-16],[2,-13],[4,-16],[2,-7],[2,-10],[9,-6],[7,-2],[1,-10],[3,-8],[-1,-8],[10,-15],[4,-3],[8,-3],[3,-1],[7,-4],[6,-8],[0,-6],[2,-5],[3,-8],[3,-3],[1,-6],[4,-7],[2,-2],[2,-5],[15,-27],[3,-8],[4,-7],[2,-10],[4,-7],[5,-6],[5,-4],[4,-9],[5,-6],[7,-7],[1,-9],[3,-20],[-3,-9],[-9,-8],[-2,-11],[-2,-24],[-3,-20],[-2,-19],[-2,-31],[1,-33],[3,-48],[2,-58],[3,-52],[3,-36],[5,-47],[2,-51],[5,-47],[3,-23],[2,-16],[4,-11],[1,-14],[-2,-13],[0,-8],[1,-19],[-1,-10],[-3,-10],[-3,-7],[-5,-11],[-3,-5],[-6,-8],[-1,-37],[-4,-7],[-3,-25],[-4,-12],[-3,-4],[1,-34],[0,-9],[0,-140],[7,-126],[9,-132],[8,-155],[12,-112],[8,-71],[0,-20],[-1,-22],[-5,-92],[5,-52],[13,-67],[15,-54],[11,-25],[18,-19],[27,-17],[24,-8],[31,-10],[13,-3],[3,0],[2,-1],[1,-1],[3,0],[4,-3],[4,5],[4,-1],[3,3],[4,-3],[5,-3],[4,-3],[2,1],[2,-1],[3,0],[2,-7],[0,-2],[4,-3],[-1,-2],[0,-3],[0,-2],[-1,-4],[-1,-3],[1,-2],[-3,-4],[2,-6],[2,-3],[-1,-3],[-1,-3],[1,-2],[-1,-4],[2,-7],[4,1],[2,-2],[1,-6],[-2,-2],[6,-2],[-4,-12],[2,-2],[-2,-8],[-1,-1],[4,-7],[2,-2],[0,-6],[-2,-3],[0,-3],[1,-4],[-2,-5],[1,-4],[-2,-6],[1,-3],[7,-35],[19,-70],[24,-70],[14,-35],[15,-27],[16,-19],[20,27],[9,11],[9,11],[1,-2],[-1,-4],[-3,-5],[2,-7],[-1,-1],[-2,-3],[0,-2],[0,-2],[1,-3],[5,-11],[4,-2],[17,-15],[9,-7],[36,-28],[40,-27],[42,-27],[24,9],[17,-13],[36,-43],[11,-16],[26,-31],[-8,-13],[-14,-3],[0,-5],[-5,-2],[0,-10],[-2,-4],[-5,-5],[-5,-1],[-4,-6],[-3,-1],[-5,0],[-2,-3],[-3,2],[-3,-4],[0,-5],[-2,-2],[-15,-3],[-5,-1],[-3,1],[-4,-2],[-1,-2],[-9,-9],[-7,-3],[-18,-19],[-11,-20],[-5,-23],[-2,-17],[-2,-17],[-3,-7],[-7,-12],[-46,-47],[-54,-42],[-49,-49],[-20,-26],[-18,-25],[-13,-24],[-10,-23],[-6,-18],[-6,-24],[-2,-12],[4,-1],[-1,-13],[-5,-1],[-2,-38],[-1,-72],[0,-20],[0,-39],[1,-11],[2,-11],[2,-8],[1,-6],[1,-5],[1,-17],[0,-27],[7,0],[0,-7],[2,0],[0,-9],[-4,0],[0,-16],[7,-12],[1,-12],[-2,-5],[0,-2],[0,-3],[-1,-2],[-2,-1],[-1,-1],[-1,-3],[-1,-1],[-3,-1],[-1,-1],[-1,-1],[0,-7],[-1,-8],[1,-8],[-1,-3],[-3,-4],[-2,-5],[-1,-3],[2,-1],[2,-1],[0,-4],[-1,-2],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,-3],[0,-5],[-2,-5],[1,-2],[-3,-21],[-1,-30],[-3,-33],[-3,-58],[-2,-44],[0,-31],[1,-26],[4,-46],[6,-36],[4,-15],[4,-16],[4,-30],[5,-15],[4,-8],[4,-10],[0,-9],[0,-9],[0,-9],[2,-8],[2,-13],[13,-54],[22,-80],[13,-49],[4,-11],[2,-14],[3,-1],[2,-3],[3,-4],[2,-3],[1,-3],[1,-3],[-1,-4],[1,-2],[0,-2],[1,-3],[-1,-2],[0,-3],[1,-3],[2,0],[0,-1],[2,-2],[0,-2],[0,-2],[1,-2],[0,-1],[1,-6],[1,-1],[3,-4],[-1,-8],[4,-1],[1,-1],[1,-11],[2,-3],[2,-5],[2,-5],[1,-2],[4,-5],[1,-1],[2,-1],[1,-3],[0,-4],[2,-6],[1,-6],[11,-16],[5,3],[3,-2],[1,-2],[-1,-2],[-1,-2],[-2,-3],[8,-22],[15,-31],[10,-17],[14,-19],[15,-18],[31,-36],[23,-26],[11,-15],[9,-12],[14,-21],[8,-17],[8,-18],[10,-22],[8,-20],[16,-38],[5,-11],[9,-22],[6,-23],[7,-27],[2,-9],[8,-36],[4,-25],[1,-12],[2,-17],[2,-30],[0,-37],[-1,-18],[0,-25],[-1,-15],[-5,-24],[-5,-21],[-11,-25],[-12,-22],[-17,-20],[-9,-16],[-5,-10],[-8,-11],[-2,-12],[-1,-9],[3,-18],[8,1],[3,-22],[-5,-6],[11,-60],[42,-140],[14,-28],[18,-31],[79,-101],[6,-5],[8,10],[20,-26],[29,35],[46,-26],[24,78],[13,17],[31,-3],[8,28],[17,-8],[21,-9],[7,-19],[-10,-36],[11,-13],[134,-138],[27,-21],[26,-19],[17,-15],[54,-41],[19,-11],[13,-3],[19,1],[17,-1],[13,-3],[18,-5],[15,-8],[20,-15],[18,-14],[28,-22],[39,-30],[54,-39],[40,-26],[33,-20],[29,-14],[28,-14],[24,-15],[29,-25],[29,-21],[45,-29],[47,-28],[53,-25],[27,-8],[29,-9],[23,-8],[29,9],[37,26],[-1,35],[0,25],[4,8],[4,3],[24,-9],[16,-4],[7,1],[15,4],[8,8],[13,7],[9,10],[34,35],[52,44],[14,16],[9,7],[19,-3],[17,-7],[15,-1],[21,-8],[76,-16],[35,1],[195,35],[116,155],[25,40],[-3,4],[12,18],[3,-5],[23,31],[18,18],[201,139],[69,14],[100,-80],[0,-12],[144,-358],[6,-6],[0,-14],[1,-13],[9,-16],[21,-62],[29,-60],[4,-15],[51,-129],[2,-15],[47,-106],[3,-18],[1,-15],[4,-9],[2,-10],[-6,-10],[1,-9],[2,-12],[0,-5],[-1,-12],[-6,-18],[-3,-13],[-2,-16],[-10,-37],[-5,-3],[-4,2],[-15,22],[-5,3],[-7,0],[-56,-26],[-41,-1],[-16,-6],[-10,5],[-15,-6],[-6,-1],[-3,-2],[-19,4],[-6,-1],[-7,-2],[-36,-22],[-93,-72],[-21,-20],[-27,-32],[-14,-10],[-21,-22],[-18,-12],[-20,-17],[-9,-10],[-4,-3],[-6,-3],[-25,-11],[-7,-2],[-6,-3],[-66,-48],[-5,-6],[-2,-7],[-9,-20],[-6,-2],[-5,2],[-3,5],[-3,0],[-18,-12],[-36,-29],[-185,-117],[-3,0],[-31,20],[-13,-8],[-40,-53],[-6,-30],[-8,-24],[-133,-142],[-21,-74],[-14,-77],[-6,-65],[-8,-117],[7,-12],[3,-3],[5,-2],[3,-2],[22,-6],[5,-4],[43,-25],[6,-4],[2,-1],[18,-13],[14,-6],[28,-22],[3,-4],[0,-2],[-8,-21],[-3,-2],[-5,0],[-6,-4],[-5,-4],[-8,-13],[-7,-11],[-16,-39],[-2,-11],[-1,-9],[-6,-20],[-1,-12],[-4,-10],[-6,-3],[-5,-14],[-3,-10],[-4,-19],[-6,-40],[-13,-45],[5,-4],[-8,-25],[-3,1],[-10,-32],[5,-10],[-36,-134],[8,-8],[-6,-14],[-6,1],[-5,-9],[5,-4],[-17,-52],[-4,-2],[-10,0],[-3,1],[-6,-3],[-7,-4],[-5,-5],[-2,-4],[-2,-5],[-4,-16],[-5,-21],[-8,-15],[0,-9],[-3,-8],[0,-15],[-2,-4],[-1,-4],[-1,-13],[-1,-4],[-5,-13],[-5,-34],[-3,-7],[1,-10],[-4,-17],[-16,-89],[-1,-23],[13,-22],[13,-14],[4,-5],[9,-7],[18,-22],[5,-18],[1,-5],[-4,-27],[-3,-18],[-5,-9],[-3,-13],[-17,-45],[-51,-122],[-4,-12],[-3,-4],[-1,-4],[2,-8],[0,-4],[-6,-14],[-1,0],[0,-2],[-11,-22],[-4,-13],[-9,-20],[0,-6],[-1,-2],[-2,-4],[-4,-8],[-2,-4],[0,-10],[-1,-7],[-7,-15],[-6,-8],[-2,-4],[-8,-22],[-18,-38],[-4,-14],[-5,-18],[-6,-17],[-78,-185],[-4,-6],[-2,-6],[-6,-17],[-22,-53],[-2,-10],[-4,-15],[-8,-15],[-2,-2],[-3,-4],[-1,-7],[-36,-101],[-15,-39],[-11,-25],[-13,-35],[-10,-23],[-6,-9],[-25,-13],[-17,-5],[-7,1],[-13,10],[-2,-3],[-2,2],[-18,-15],[-6,-2],[-8,-1],[-5,-2],[-20,-1],[-8,1],[-17,4],[-14,-1],[-59,1],[-199,4],[-1,-44],[-2,-79],[-1,-6],[-2,-3],[-8,-5],[-8,0],[-9,3],[-18,0],[-10,-2],[-14,1],[-6,-1],[-2,1],[-2,11],[-2,3],[1,7],[-1,4],[1,13],[1,4],[-3,23],[2,25],[-5,18],[0,6],[-5,12],[0,12],[-237,19],[-2,2],[-2,1],[-21,0],[-2,2],[-8,1],[-28,4],[-12,-1],[-18,4],[-1,0],[-8,0],[-7,3],[-1,1],[-11,2],[-2,1],[-7,0],[-12,10],[-13,26],[-8,20],[0,10],[-4,9],[-19,67],[-9,20],[-2,10],[-2,5],[-9,25],[-6,7],[-5,19],[-5,5],[-6,9],[-6,16],[0,7],[-2,2],[-4,25],[-12,29],[3,11],[-5,24],[-3,5],[-1,11],[-13,39],[3,5],[-35,93],[13,9],[-5,16],[-15,-8],[-77,199],[-1,21],[6,21],[7,17],[3,13],[11,8],[11,2],[17,3],[11,6],[13,5],[9,1],[8,0],[11,4],[8,2],[10,3],[25,7],[6,2],[6,1],[10,6],[13,3],[40,11],[63,17],[44,18],[38,14],[10,5],[1,1],[2,1],[2,1],[13,7],[13,11],[5,12],[-2,2],[0,6],[6,11],[2,10],[-3,13],[-3,4],[1,3],[0,6],[0,7],[0,8],[0,8],[1,9],[0,9],[0,9],[0,8],[0,9],[-1,9],[-1,9],[2,7],[-5,16],[-1,5],[-1,7],[-1,9],[-1,8],[-1,3],[-1,7],[0,7],[-1,7],[0,7],[-1,6],[0,6],[-2,3],[-2,4],[-2,6],[0,6],[0,7],[-1,6],[0,2],[-1,5],[-1,6],[0,7],[0,1],[0,5],[0,6],[-1,6],[0,7],[-1,9],[-1,8],[0,8],[-1,8],[-1,9],[-1,8],[-1,8],[-1,7],[0,2],[-8,-1],[-7,32],[-1,4],[-1,4],[0,2],[4,4],[7,3],[10,3],[18,7],[5,4],[-2,3],[1,8],[0,6],[-1,3],[10,10],[1,1],[9,4],[-27,152],[28,11],[10,4],[0,1],[5,3],[-4,8],[-7,-2],[-2,4],[-1,10],[0,4],[-2,10],[2,8],[61,17],[1,3],[1,3],[1,4],[1,5],[1,6],[1,6],[1,6],[1,7],[1,7],[2,6],[-2,3],[1,5],[0,9],[0,8],[0,8],[0,3],[0,6],[1,3],[-1,5],[0,6],[2,10],[-1,6],[-2,8],[-5,7],[-1,4],[0,6],[-2,10],[0,11],[2,11],[-2,7],[-1,2],[-2,6],[-1,8],[0,4],[0,6],[2,10],[-1,10],[4,8],[3,13],[4,25],[0,23],[2,19],[4,67],[5,97],[1,19],[-1,2],[0,2],[0,7],[0,7],[-1,6],[-1,2],[1,2],[-1,2],[0,1],[-1,8],[0,3],[1,3],[2,9],[-1,8],[1,5],[2,6],[1,5],[-2,4],[-2,4],[0,2],[1,13],[-5,16],[-2,5],[-2,7],[-2,5],[-13,20],[-5,8],[-220,318],[-54,43],[-37,31],[-35,24],[-23,14],[-18,7],[-15,5],[-42,10],[-74,18],[-15,6],[-92,22],[-6,0],[-34,4],[-23,7],[-9,7],[-7,6],[-12,-3],[-95,-45],[0,-3],[-1,-3],[1,-4],[-2,-5],[-7,-8],[-3,-5],[-3,-4],[-3,-3],[-3,-4],[0,-4],[-1,-4],[-3,-5],[-16,-12],[-4,-4],[-6,-8],[-4,-6],[-10,-13],[-2,-4],[-2,-2],[-6,-7],[-8,-9],[-1,-2],[-1,-5],[-2,-8],[-1,-8],[-11,-19],[-3,-6],[0,-9],[-3,-12],[-10,-21],[-4,-6],[-5,-7],[-5,-9],[-3,-7],[-3,-12],[-4,-11],[-1,-8],[-5,-7],[-4,-8],[-5,-8],[-4,-7],[-4,-6],[-5,-8],[-5,-9],[-3,-7],[-2,-11],[-1,-7],[0,-6],[-1,-5],[-3,-13],[-9,-33],[-6,-13],[-7,-26],[-3,-19],[2,-3],[1,-5],[-1,-13],[-1,-8],[1,-6],[3,-5],[5,-6],[5,-9],[1,-10],[5,-15],[2,-4],[5,-4],[1,-4],[3,-12],[0,-10],[2,-8],[2,-4],[1,-5],[2,-4],[0,-7],[1,-10],[3,-7],[1,-8],[0,-13],[3,-5],[4,-3],[3,-4],[3,-3],[4,-12],[3,-7],[4,-4],[4,-9],[3,-16],[2,-11],[1,-14],[3,-6],[0,-7],[0,-6],[-2,-6],[-2,-6],[2,-7],[-3,-6],[3,-7],[-3,-8],[-2,-4],[-1,-16],[-1,-12],[1,-7],[-2,-11],[-2,-13],[3,-20],[2,-7],[3,-7],[2,-9],[2,-6],[6,-15],[3,-8],[2,-3],[1,-2],[2,-7],[1,-6],[3,-12],[4,-2],[5,-5],[6,-7],[2,-2],[3,-7],[5,-9],[5,-15],[4,-7],[2,-4],[3,-4],[-1,-8],[0,-6],[3,-7],[1,-10],[4,-3],[2,-3],[3,-4],[3,-5],[3,-7],[-2,-7],[2,-14],[1,-6],[3,-17],[6,-2],[3,-2],[3,-3],[-2,-10],[0,-6],[1,-5],[4,-4],[2,-3],[3,-4],[5,-2],[2,-2],[2,-7],[5,-5],[2,-1],[5,-8],[5,-4],[2,-3],[1,-2],[0,-3],[0,-7],[2,-5],[4,-4],[6,-2],[5,-3],[3,-2],[2,-2],[0,-2],[-1,-7],[1,-4],[4,-2],[2,-3],[3,-2],[4,-3],[3,-4],[-1,-4],[-4,-4],[1,-5],[2,-6],[-4,-9],[0,-5],[-8,-6],[-2,-4],[-2,-3],[-14,-5],[-5,-5],[-13,-2],[-5,-4],[0,-6],[-3,-6],[1,-4],[-4,-6],[1,-3],[-3,-13],[-2,-4],[-2,-7],[-13,-6],[-1,-3],[-15,0],[-2,-2],[-8,1],[-6,3],[-10,-6],[0,-13],[-1,-5],[-8,-5],[-12,-3],[-19,-1],[-12,-6],[-7,-6],[-5,-5],[5,-9],[-1,-4],[-2,-4],[-2,-2],[-6,-3],[-1,-2],[-5,3],[-3,-3],[-3,-2],[-3,1],[-3,0],[-1,-4],[0,-6],[-2,-6],[-4,-1],[-4,2],[-3,6],[-8,-5],[-13,-5],[-4,-3],[-8,-4],[-8,-4],[-1,0],[-9,2],[-7,4],[-4,4],[-10,-7],[-12,-4],[-2,-3],[-3,-3],[-3,-1],[-4,-2],[-4,-2],[-1,-5],[0,-4],[2,-4],[-1,-7],[-3,-8],[-6,-8],[-9,-8],[-8,1],[-8,-7],[-8,-2],[-4,3],[-7,3],[-10,1],[-6,0],[-7,-1],[-5,-3],[-23,-19],[-11,-18],[-4,-6],[-5,-7],[-7,-9],[-6,-12],[-7,-11],[-6,-18],[-4,-7],[-5,-7],[-5,-6],[-7,-8],[3,-28],[3,-24],[4,-8],[44,-70],[7,-1],[54,48],[5,-9],[-79,-66],[-52,-45],[-27,-23],[-10,-8],[-8,-5],[-3,1],[0,4],[-6,8],[-5,10],[-21,43],[-6,-5],[-11,-8],[-8,-7],[-13,-11],[-4,-3],[-9,-8],[-5,-9],[-3,-4],[-4,-6],[-3,-8],[-3,-8],[-2,-6],[2,-7],[-4,-12],[0,-14],[4,-12],[0,-5],[1,-6],[-1,-3],[-2,-4],[2,-8],[-1,-11],[9,-1],[-2,-7],[-1,-6],[1,-2],[2,-4],[1,-2],[-3,-5],[-2,-2],[-2,-2],[2,-5],[5,2],[4,1],[3,0],[3,-2],[3,-4],[-1,-5],[3,-6],[1,-3],[3,-2],[-1,-6],[3,-3],[-2,-8],[-1,-4],[1,-3],[-1,-8],[3,-5],[1,-5],[-6,-5],[-7,0],[-3,-4],[-2,-3],[0,-3],[4,-6],[-1,-5],[3,-2],[3,-5],[1,-5],[-1,-5],[-4,-4],[-3,-7],[-6,-5],[-4,-2],[-6,-3],[-9,0],[-2,0],[-3,3],[-5,3],[-2,-1],[-6,-5],[-2,-5],[-3,-5],[-8,-3],[-4,0],[-3,-2],[-2,-7],[-5,-3],[-4,-1],[-6,-2],[-5,1],[-5,0],[-7,-8],[-7,-4],[-3,-4],[-13,-5],[-14,-5],[-2,-4],[-3,-3],[-7,-4],[-11,-6],[-8,-5],[-9,-3],[-9,-4],[-2,-1],[-3,-2],[-6,-5],[-7,1],[-6,0],[-4,-4],[-13,-3],[-3,-4],[-3,-5],[-4,-3],[-7,-3],[-12,-6],[-1,-1],[-4,-4],[-7,-6],[-3,-2],[-3,-2],[-3,-2],[-4,-3],[-3,-4],[-9,5],[-4,1],[-13,-5],[-24,-14],[-10,-7],[-19,-10],[-8,-5],[-11,-11],[-8,-9],[-18,-13],[-1,-4],[-11,-11],[-6,-5],[-16,-12],[-12,-14],[-6,-7],[-4,-5],[-7,-7],[-3,-4],[0,-3],[-4,-9],[-6,-8],[-4,-9],[-3,-6],[-3,-4],[-1,-5],[-5,-10],[-3,-6],[2,-3],[-2,-7],[-2,-4],[-3,-4],[-3,-1],[-3,-4],[4,-4],[1,-5],[2,-2],[-1,-5],[1,-3],[-1,-4],[0,-7],[-9,-7],[-5,2],[-2,-7],[2,-2],[-2,-5],[-1,-4],[2,-2],[2,-4],[0,-9],[-1,-3],[0,-4],[-3,-5],[-2,-3],[0,-2],[1,-3],[2,1],[3,-2],[3,1],[1,1],[0,2],[1,3],[3,-2],[3,2],[1,0],[3,-3],[2,-1],[2,-3],[1,-5],[2,-3],[1,-2],[0,-5],[2,-1],[2,-3],[2,-1],[1,-2],[0,-3],[3,-4],[2,-3],[2,-3],[2,-3],[2,-3],[0,-4],[0,-5],[4,-1],[1,0],[3,-1],[2,-3],[2,-4],[-1,-3],[-2,-2],[-5,-1],[-3,-4],[4,-4],[4,-4],[4,-6],[4,-7],[-1,-16],[-1,-6],[-1,-6],[-1,-6],[-3,-4],[-1,-3],[2,-2],[3,-5],[-1,-4],[-2,-3],[-1,-1],[1,-4],[2,-3],[2,-3],[-1,-2],[-1,-2],[2,-3],[7,-2],[3,-2],[5,-2],[1,-2],[1,-3],[2,-6],[-1,-4],[-2,-3],[-1,-4],[-11,-1],[3,-7],[-3,-7],[-2,-5],[-4,-9],[-13,-5],[-5,-7],[-6,-6],[-7,-3],[-8,-4],[-7,-1],[-3,-2],[-12,-4],[-6,0],[-3,-3],[-7,-2],[-6,1],[-8,5],[-8,1],[-3,-1],[-7,1],[-9,-4],[-5,1],[-4,4],[-8,1],[-8,6],[-8,0],[-10,1],[-3,-5],[-2,-5],[-4,-6],[-1,-1],[1,-7],[-3,-6],[3,-3],[4,-4],[0,-4],[-6,-3],[-5,-1],[-6,1],[-1,-1],[3,-3],[8,1],[5,-3],[4,-2],[5,-3],[6,-4],[2,-5],[3,-9],[-1,-4],[-6,-3],[-15,1],[-17,5],[-14,2],[-1,1],[-17,-1],[-6,-1],[-5,-5],[-7,1],[-4,0],[-3,1],[-7,-1],[-3,-3],[-4,3],[-4,-4],[-5,2],[-3,-2],[-2,-3],[-6,0],[-4,-5],[-8,-7],[-4,-9],[-4,-5],[-2,-10],[-4,-4],[-8,-6],[1,-3],[-5,-7],[-3,-5],[-2,-8],[-2,-7],[-4,-5],[-6,-7],[-10,-4],[-2,-4],[-5,-5],[0,-7],[-11,-6],[-5,-6],[-9,-8],[-12,-2],[-7,-2],[-4,-12],[-15,-9],[-7,-11],[-9,-9],[-18,-15],[-2,-2],[-10,-9],[-6,-5],[-26,-13],[-4,-3],[-8,-5],[-14,-6],[-13,-6],[-15,-8],[-12,-4],[-6,-1],[-18,-9],[-11,-7],[-11,-8],[-11,-8],[-4,-4],[-17,-8],[-20,-14],[-23,-13],[-7,-6],[-8,-8],[-17,-13],[-17,-10],[-15,-7],[-5,-3],[-3,-4],[-10,-7],[-23,-13],[-5,-5],[-3,0],[-5,-6],[0,-6],[-1,-4],[-2,-5],[-1,-5],[-3,-4],[-2,-1],[-4,-4],[-7,0],[-2,1],[-2,-1],[-1,0],[-4,3],[-4,2],[-6,-5],[-4,-1],[-4,-5],[-4,-2],[-2,-1],[-1,-3],[-4,-1],[-4,-1],[-4,0],[-4,0],[-5,-2],[-3,-2],[-4,-1],[-6,-5],[-5,-1],[-7,0],[-12,-5],[-2,-1],[-7,-6],[-4,-3],[-8,0],[-3,-3],[-8,-4],[-7,-4],[-2,-2],[-8,-3],[-4,-3],[-6,-1],[-1,-4],[-3,1],[-5,1],[-2,-3],[-1,-3],[-2,-4],[-3,-2],[-7,-2],[-4,-3],[-1,-2],[-3,-2],[-2,-2],[0,-2],[-2,-4],[-4,-3],[-4,-10],[-2,-4],[-5,-8],[-2,-5],[-2,-4],[0,-4],[-6,-9],[-3,-5],[-1,-3],[-1,-5],[-4,-8],[-6,-12],[-1,-4],[-1,-4],[-3,-5],[-4,-8],[-1,-3],[-3,-5],[-4,-4],[-2,-1],[-1,-3],[-4,-5],[0,-2],[0,-2],[-3,-3],[-3,-2],[-2,-4],[-1,-2],[0,-3],[1,-3],[-1,-2],[-2,-3],[-1,-3],[1,-3],[1,-2],[1,-1],[-3,-2],[-3,-3],[1,-2],[3,-3],[-2,-3],[-1,-4],[0,-2],[0,-3],[0,-2],[-1,-2],[-2,-3],[1,-3],[1,-2],[3,-1],[2,-2],[3,1],[0,-1],[3,-2],[2,2],[0,-3],[2,-2],[3,1],[1,-3],[1,-6],[-1,-4],[0,-2],[1,-2],[-2,-3],[1,-3],[-5,-1],[0,-2],[-2,-2],[-1,1],[-3,-4],[1,-4],[-1,-3],[3,-3],[-6,-2],[0,-4],[-2,-1],[-2,0],[-3,-1],[-1,3],[0,2],[-2,1],[-4,7],[0,4],[-4,2],[1,3],[-4,1],[-5,3],[0,4],[-2,4],[-1,-1],[-4,-1],[-1,0],[-3,-2],[0,-2],[-2,-6],[0,-1],[-2,-2],[-1,-3],[-1,-3],[0,-4],[-1,-5],[-3,-2],[-1,-2],[1,-3],[-4,-2],[-1,0],[-4,-2],[-3,-2],[-2,0],[-2,-2],[-3,-1],[-4,-1],[1,-4],[0,-3],[-1,-3],[-5,-3],[-5,0],[-1,2],[0,3],[0,4],[1,1],[0,4],[-4,3],[-1,4],[-4,1],[-2,2],[-4,-1],[0,-2],[-1,-3],[4,-2],[1,-1],[2,-2],[1,-3],[-1,-3],[-4,-2],[-2,0],[-4,3],[-1,2],[2,6],[-6,1],[-2,3],[-5,3],[-4,1],[-2,0],[0,-1],[-3,2],[-2,3],[1,6],[-2,2],[-8,9],[-3,4],[-2,3],[-3,2],[-2,0],[-3,3],[-1,3],[-1,4],[1,3],[-3,6],[0,4],[-3,4],[-1,2],[-1,3],[-1,5],[0,5],[1,6],[1,9],[-1,3],[-2,5],[-1,3],[-3,5],[-2,11],[-1,7],[-4,4],[-2,7],[1,10],[2,4],[-1,3],[0,1],[-2,4],[-3,2],[-3,4],[-3,5],[-1,2],[-1,7],[4,3],[2,-1],[2,5],[2,1],[1,3],[2,2],[2,5],[-2,3],[0,1],[1,6],[-1,4],[0,4],[2,1],[1,4],[-3,1],[0,5],[5,0],[1,6],[0,1],[-2,1],[-1,3],[0,2],[-4,2],[-2,1],[-2,1],[-1,-1],[-2,-3],[-2,1],[-3,1],[-2,4],[2,5],[-1,8],[2,6],[-1,3],[2,3],[-4,4],[3,2],[3,2],[-1,6],[3,1],[2,3],[7,-2],[3,4],[4,-2],[0,-1],[5,-2],[1,0],[4,-4],[6,12],[9,22],[1,6],[-2,7],[1,4],[0,3],[-1,0],[-1,5],[-4,2],[-2,0],[-3,7],[0,6],[4,2],[-1,0],[0,3],[2,3],[1,3],[-2,3],[-2,2],[-1,0],[-2,3],[-2,5],[-1,4],[2,5],[1,3],[-1,4],[2,3],[3,2],[5,-1],[7,-2],[3,1],[2,1],[4,3],[1,3],[0,7],[2,3],[5,9],[2,8],[2,6],[-3,5],[-5,2],[-4,35],[5,3],[1,4],[2,0],[4,-1],[4,-5],[5,1],[6,9],[3,28],[8,57],[14,91],[12,73],[11,85],[14,77],[12,94],[10,79],[10,84],[-2,7],[-4,37],[-3,34],[-8,29],[-7,21],[-13,28],[-16,25],[-18,26],[-30,41],[-28,36],[-29,30],[-32,29],[-57,34],[-84,49],[-56,31],[-77,30],[-51,18],[-51,12],[-91,18],[-79,10],[-53,3],[-52,1],[-43,0],[-50,-2],[-22,0],[-27,-1],[-20,0],[-15,-1],[-20,-2],[-6,1],[-9,0],[-13,-3],[-5,-2],[-10,1],[-3,-1],[-9,1],[-3,0],[-5,-3],[2,-6],[4,-3],[4,-4],[-2,-6],[-7,-1],[-5,1],[-5,5],[-2,3],[0,4],[-6,2],[0,-4],[-3,-3],[-5,0],[-9,4],[-6,-3],[-9,1],[-7,3],[-2,2],[-2,11],[1,6],[-1,10],[-4,1],[-7,9],[-2,8],[-8,2],[-9,1],[-9,5],[-5,3],[-11,1],[-18,1],[-6,0],[-8,5],[-8,5],[-9,4],[-1,-3],[-4,-5],[-4,-1],[-7,-2],[-3,4],[-3,0],[-4,3],[-3,2],[1,4],[3,6],[4,2],[-6,6],[-2,2],[2,2],[-2,4],[1,7],[-2,7],[-3,0],[-3,5],[2,10],[0,3],[-3,1],[-3,4],[-3,1],[-3,-1],[-1,2],[-1,5],[-3,4],[-4,3],[-3,1],[-1,-3],[-4,-2],[-7,-1],[-2,8],[-1,4],[-1,4],[-5,3],[-2,9],[4,6],[2,1],[2,1],[2,-3],[3,-7],[3,-1],[2,3],[7,1],[4,2],[4,1],[1,1],[0,4],[4,5],[2,1],[2,3],[0,3],[2,9],[3,7],[5,4],[4,6],[1,2],[1,7],[1,4],[5,5],[2,-1],[1,3],[4,0],[3,3],[7,-3],[8,3],[2,1],[6,3],[8,-2],[4,3],[2,3],[0,4],[4,0],[4,-1],[5,-5],[3,-5],[2,-2],[7,1],[3,-1],[4,2],[6,1],[2,1],[15,0],[13,1],[6,0],[2,0],[10,1],[11,6],[7,1],[6,6],[4,4],[3,5],[2,6],[9,5],[2,7],[4,6],[2,8],[2,1],[2,4],[3,8],[3,9],[3,4],[7,8],[10,1],[4,3],[4,6],[4,4],[6,-1],[8,1],[7,8],[6,11],[2,5],[8,17],[6,3],[7,4],[12,9],[5,8],[30,22],[17,5],[47,39],[22,23],[15,22],[11,24],[11,13],[6,15],[-1,43],[0,63],[-6,54],[-5,72],[-5,84],[-4,45],[-2,32],[-7,47],[-14,74],[-21,94],[-26,101],[-31,105],[-226,619],[-37,90],[-18,50],[-12,54],[-4,40],[-1,72],[4,53],[-3,39],[-10,65],[-3,53],[-7,56],[-10,47],[-15,51],[-23,67],[-12,32],[-7,19],[-25,59],[-20,42],[-39,70],[-73,117],[-63,98],[-65,94],[-51,61],[-48,53],[-56,56],[-53,45],[-57,47],[-58,42],[-80,51],[-57,37],[-90,48],[-44,16],[-39,13],[-49,13],[-55,15],[-75,22],[-51,14],[-71,24],[-60,18],[-93,30],[-101,28],[-47,11],[-34,5],[-55,10],[-34,5],[-42,5],[-54,4],[-59,-2],[-43,-3],[-41,-6],[-32,-6],[-28,-3],[-47,-1],[-40,-5],[-38,-13],[-38,-10],[-32,-4],[-43,-10],[-52,-13],[-56,-14],[-106,-19],[-63,-19],[-69,-14],[-99,-21],[-44,-9],[-45,-14],[-41,-19],[-29,-16],[-29,-18],[-14,-10],[20,-102],[-84,-29],[-77,-24],[-21,122],[-26,-10],[-3,17],[-7,2],[-9,-4],[-17,-3],[-2,-1],[-105,-35],[-10,51],[-24,-4],[-30,-10],[-31,-16],[-32,-21],[-64,-36],[-60,-39],[-43,-29],[-90,-60],[-19,-14],[-7,-4],[-5,-2],[-2,-4],[-2,-7],[-2,-5],[-3,-4],[-7,4],[-4,4],[-4,-1],[-4,-3],[-5,-6],[-8,-2],[-5,2],[-6,3],[-7,-3],[-6,-1],[-2,1],[-4,1],[-7,4],[-1,9],[-1,6],[5,5],[-1,7],[-2,8],[-2,5],[1,5],[2,6],[2,2],[2,7],[7,10],[3,9],[0,6],[1,9],[2,7],[5,3],[2,10],[1,6],[-4,22],[-2,10],[-9,20],[-11,11],[-14,10],[-9,-21],[-11,8],[-12,10],[-12,2],[-5,-4],[-7,-5],[-9,-1],[-14,2],[-11,-4],[-3,0],[-5,-2],[-4,-1],[-5,-1],[-6,0],[-5,-1],[-3,0],[-8,0],[-5,2],[-4,3],[-6,-1],[-2,3],[-3,4],[-3,3],[-11,0],[-5,-2],[-7,-5],[-7,-6],[-9,-6],[-6,-1],[-10,1],[-10,2],[-6,-1],[-5,0],[-7,0],[-8,1],[-9,4],[-5,4],[-4,4],[-1,5],[-5,11],[-1,6],[-2,2],[-6,1],[-4,-1],[-6,-6],[-6,-2],[-9,-1],[-12,-1],[-8,5],[-7,4],[-9,5],[-8,4],[-7,0],[-6,2],[-4,3],[-2,0],[-7,0],[-4,2],[-7,3],[-9,0],[-7,4],[-8,3],[-16,7],[-3,3],[-4,2],[-2,4],[-7,4],[-3,4],[-4,7],[-4,7],[-3,9],[-9,10],[-6,4],[-4,1],[-3,0],[-8,-3],[-5,-2],[-11,-3],[-7,-1],[-5,-3],[-4,0],[-11,0],[-10,1],[-6,2],[-3,4],[-3,2],[-6,0],[-15,1],[-7,0],[-9,0],[-7,1],[-2,0],[-6,2],[-3,4],[-6,6],[-6,4],[-4,2],[-9,1],[-6,4],[-7,5],[-6,7],[-2,18],[0,15],[-2,11],[2,13],[2,19],[-2,3],[0,4],[0,7],[-5,6],[-8,24],[13,1],[-5,21],[-4,16],[1,13],[5,9],[6,3],[8,5],[1,10],[-8,4],[-7,19],[-2,16],[-20,0],[-2,37],[-1,8],[-8,3],[-3,2],[-5,2],[-6,9],[0,2],[4,11],[5,4],[6,4],[3,6],[1,7],[0,6],[-1,13],[4,8],[2,4],[0,4],[-6,6],[-3,3],[-4,0],[-5,4],[-1,9],[-4,9],[-12,-2],[-19,-3],[-38,10],[-37,4],[-44,-4],[-43,-9],[-66,-22],[-57,-23],[-64,-39],[-56,-29],[-13,-11],[-18,-2],[-24,7],[-15,-1],[-17,8],[-27,18],[-20,23],[-26,21],[-44,21],[-137,58],[-54,27],[-24,9],[-15,7],[-20,10],[-34,14],[-23,8],[-10,1],[-9,-2],[-5,-3],[-6,-5],[-11,-2],[-14,5],[-7,11],[-6,15],[-1,13],[1,10],[1,15],[9,14],[11,6],[16,-1],[11,-7],[9,-13],[3,-5],[3,-8],[2,-7],[43,-19],[12,-6],[37,-14],[11,-5],[4,-1],[4,-1],[17,-10],[16,-7],[34,-14],[34,-14],[40,-19],[25,-10],[34,-13],[52,-21],[3,19],[-1,6],[0,8],[6,5],[0,9],[-1,1],[1,7],[1,6],[3,4],[1,14],[2,17],[2,10],[2,11],[9,48],[2,11],[2,10],[-3,6],[4,8],[2,4],[10,59],[10,62],[6,30],[0,8],[10,-4],[2,9],[19,-6],[5,27],[2,9],[0,6],[1,6],[1,4],[1,9],[2,10],[2,5],[0,3],[-2,1],[8,39],[20,110],[21,130],[16,92],[-39,23],[-41,20],[-48,25],[-6,-8],[-4,2],[-5,3],[-5,5],[0,3],[-1,3],[-4,5],[-3,1],[-7,6],[-13,0],[-4,-3],[-7,-9],[-2,-3],[-5,-10],[-7,-16],[-3,-6],[-4,-11],[-3,-9],[-27,-84],[-32,-97],[-27,-80],[-24,-63],[-3,-6],[-1,-8],[-2,-13],[-2,-7],[-3,-3],[-10,-19],[-11,7],[-3,-1],[-3,1],[-2,4],[0,5],[0,4],[1,4],[-1,5],[1,8],[3,8],[8,11],[5,8],[4,9],[14,35],[16,55],[13,44],[3,13],[3,15],[3,10],[2,6],[5,5],[11,30],[-8,11],[7,29],[3,5],[1,10],[16,43],[-1,7],[3,10],[0,10],[-4,12],[-10,26],[-11,14],[-4,12],[-14,8],[-55,29],[-36,25],[-41,31],[-15,11],[-24,2],[-45,-9],[-88,-12],[-70,-7],[-32,-2],[-32,-1],[-17,-1],[-23,-6],[-14,-9],[-12,-17],[-20,-27],[-37,-24],[-61,-22],[-55,-21],[-35,-21],[-64,-52],[-60,-63],[-4,-3],[-4,-7],[-5,-6],[-2,-6],[-5,-5],[-10,-10],[-15,-15],[-17,-18],[-5,-6],[-24,-23],[-6,-7],[-7,-10],[-23,-21],[-25,-32],[-16,-8],[-23,-23],[-25,-32],[-26,-31],[-18,-24],[-17,-21],[-11,-17],[-14,-20],[-10,-15],[-9,-18],[-5,-15],[0,-10],[2,-21],[-9,-12],[-12,-11],[-10,-4],[-7,2],[-8,-3],[-13,-8],[0,-11],[-1,-13],[-3,-6],[-5,-3],[-16,-6],[-7,-3],[-5,-3],[-9,-10],[-8,0],[-9,5],[-8,-2],[-9,-7],[-9,-6],[-6,4],[-9,-13],[-9,5],[-13,9],[-2,8],[-2,8],[-8,5],[-16,2],[-9,8],[-17,12],[-2,9],[-7,7],[-8,10],[-10,12],[-8,19],[-4,9],[-3,2],[-6,8],[-3,13],[1,10],[3,25],[-1,10],[2,11],[-2,12],[-1,9],[-6,11],[-4,10],[-4,11],[-7,9],[-12,8],[-2,4],[-3,1],[-8,2],[-28,6],[-11,-2],[-26,0],[-12,-1],[-27,-9],[-7,-5],[-21,-10],[-22,-11],[-21,-13],[-12,-9],[-17,-9],[-29,-7],[-2,-2],[-7,-1],[-10,-1],[-8,0],[-9,5],[-10,0],[-11,3],[-6,5],[-3,5],[1,10],[-6,8],[-6,8],[-7,5],[-4,2],[-5,1],[-29,-16],[-23,-19],[-49,-47],[-37,-39],[-77,-75],[-29,-36],[-69,-68],[-19,-17],[-46,-35],[-10,-9],[-11,-13],[-10,-11],[-10,-14],[-14,-13],[-17,-18],[-8,-9],[-12,-14],[-15,-8],[-8,-5],[-15,-7],[-7,-8],[-26,-25],[-67,-56],[-57,-38],[-53,-34],[-195,-118],[-61,-39],[8,-22],[-9,-4],[-18,-12],[-9,-6],[-11,-11],[-10,-6],[-34,-24],[-27,-18],[-9,-8],[-15,-15],[-14,-14],[-8,-9],[-4,-7],[-2,-10],[-6,-7],[-3,-8],[1,-16],[0,-11],[2,-14],[1,-4],[-2,-14],[0,-6],[0,-9],[4,-12],[-1,-7],[3,-8],[2,-6],[0,-8],[2,-9],[2,-4],[4,-8],[-1,-9],[3,-9],[0,-9],[2,-8],[0,-7],[4,-7],[1,-8],[1,-4],[2,-6],[1,-3],[0,-13],[1,-8],[3,-8],[2,-6],[0,-4],[2,-11],[4,-14],[0,-2],[2,-6],[0,-3],[-1,-6],[1,-10],[1,-7],[3,-10],[2,-10],[2,-9],[1,-10],[2,-11],[2,-4],[1,-6],[2,-10],[3,-6],[1,-10],[2,-9],[1,-10],[-1,-17],[6,-30],[2,-6],[1,-5],[0,-9],[3,-8],[0,-8],[0,-7],[-2,-2],[-2,-6],[-3,-1],[-7,2],[-2,6],[-2,13],[-5,45],[-9,52],[-12,54],[-14,61],[-11,47],[-16,86],[-7,33],[-20,89],[-21,81],[-10,35],[-4,11],[-2,7],[-2,19],[-6,1],[-4,16],[-16,22],[11,13],[-7,15],[-13,9],[-16,9],[-23,11],[-27,10],[-8,1],[-19,0],[-22,0],[-28,8],[-54,10],[-42,1],[-10,-4],[-19,-5],[-24,-8],[-27,-9],[-38,-12],[-17,-8],[-11,-7],[-24,-15],[-18,-9],[-22,-5],[-3,-1],[-20,1],[-16,0],[-17,-5],[-7,-3],[-3,-6],[-6,-16],[0,-6],[-5,-16],[-3,-11],[-6,-9],[-10,-6],[-6,-2],[-10,-6],[-10,-5],[-6,-1],[-7,3],[-7,4],[-4,5],[-11,6],[-33,-8],[-83,-51],[-88,-56],[-105,-74],[-78,-54],[-38,-28],[-93,-74],[-50,-36],[-52,-41],[-70,-61],[-126,-117],[-13,-12],[-27,-25],[-64,-49],[-78,-73],[-95,-101],[-46,-54],[-48,-60],[-46,-54],[-35,-48],[-32,-40],[-21,-33],[-20,-28],[-6,-12],[-11,-13],[-7,-14],[-7,-12],[-6,-12],[-13,-16],[-8,-5],[-5,-7],[-3,-10],[-2,-7],[-5,-10],[-6,-7],[-3,0],[-2,4],[-1,8],[-5,3],[-10,-22],[-5,-16],[1,-9],[4,-10],[-3,-11],[-11,-8],[-4,1],[-7,-2],[-8,-1],[-17,-19],[-15,-20],[-16,-23],[-18,-34],[-26,-40],[-29,-41],[-31,-56],[-31,-54],[0,-15],[-5,-11],[0,-11],[-2,-9],[0,-8],[-4,-8],[-9,-3],[-9,2],[-9,0],[-13,0],[-12,-8],[-1,-8],[5,-4],[9,-9],[3,-2],[8,-5],[1,-4],[0,-8],[-4,-14],[-5,-8],[-2,-9],[-4,-12],[0,-7],[-2,-7],[-1,-3],[-3,-10],[-2,-7],[-1,-7],[-2,-6],[-3,-25],[-1,-6],[-4,-8],[3,-11],[-2,-9],[-1,-9],[2,-5],[1,-7],[-1,-8],[-6,-10],[-6,-15],[-9,-18],[-1,-5],[-2,-7],[-1,-8],[-3,-12],[2,-7],[-5,-13],[0,-12],[-4,-7],[-13,-1],[-8,-17],[-4,-3],[-3,-6],[-4,-8],[-5,-6],[-8,-12],[-7,-12],[-6,-9],[0,-11],[-5,-13],[-4,-12],[-8,-5],[-5,-9],[-11,-9],[-3,-13],[-7,-3],[5,-12],[-1,-9],[-6,-9],[-7,-5],[-5,-3],[-3,-6],[-6,-9],[-4,-4],[-7,12],[-2,-6],[-5,-9],[-9,-10],[-1,-7],[-6,-5],[-3,-6],[-4,-11],[-6,-7],[-4,-9],[-5,-5],[-4,-4],[-1,-3],[-2,-7],[-7,-5],[-7,-3],[-2,-4],[-6,-2],[-8,-9],[-5,-5],[-5,-2],[-4,-7],[-3,-9],[-12,-10],[-8,-6],[-6,-8],[-5,-8],[-8,-9],[-7,-6],[-11,-8],[-11,-15],[-9,-9],[-4,-4],[-8,-11],[-10,-12],[-5,-12],[-15,-15],[-7,-5],[-3,-7],[-7,-12],[-9,-10],[-6,-7],[-12,-10],[-7,-11],[-5,-11],[-16,-22],[-8,-14],[-6,-8],[-9,-14],[-15,-22],[-13,-24],[-3,-5],[-6,-6],[-7,-10],[-6,-10],[-6,-9],[-5,-8],[-6,-14],[-10,-17],[-4,-6],[-9,-25],[-9,-12],[-11,-13],[-6,-11],[-3,-6],[-4,-6],[-2,-3],[-6,-4],[-2,-7],[0,-11],[-9,-2],[-2,-7],[-5,-4],[-5,-4],[-2,-2],[-5,-11],[6,-6],[3,-7],[2,-7],[-4,-3],[-6,2],[-8,0],[-6,-6],[-4,-11],[-4,-5],[-5,-12],[-4,-6],[-9,-16],[-1,0],[-8,-15],[-1,-12],[-7,-14],[-2,-5],[-2,-7],[-3,-3],[0,-4],[-1,-5],[-6,-13],[-2,-7],[-2,-7],[-4,-6],[-2,-8],[-4,-9],[-5,-2],[-5,4],[-4,-1],[-2,-7],[-5,-7],[1,-3],[-1,-7],[-4,-8],[2,-3],[-4,-8],[-5,-10],[-2,-5],[-2,-10],[-6,-2],[-5,-1],[2,-5],[0,-5],[2,-5],[1,-4],[-2,-4],[-2,0],[-1,-1],[-4,-6],[-2,-1],[-3,1],[-4,6],[-3,3],[-2,3],[-2,-2],[1,-6],[-1,-5],[1,-8],[0,-4],[-1,-3],[-7,0],[-8,5],[-7,6],[-3,9],[-2,3],[-4,-2],[-4,-4],[-9,-9],[-1,-13],[-5,-6],[-5,-9],[-2,-7],[-5,-5],[-10,-13],[-2,-3],[-5,-9],[-3,-4],[-2,-8],[-7,-2],[-1,-11],[-2,-5],[-5,-7],[-10,-17],[-1,-5],[-4,-8],[-7,-6],[-4,-7],[-5,-13],[-6,-6],[-5,-9],[-3,-7],[-5,-9],[-1,-4],[-7,-10],[-1,-5],[-4,-8],[-3,-5],[-4,-9],[4,-4],[-17,-35],[-3,0],[-5,-1],[-6,-3],[-8,-8],[-8,-19],[-9,-15],[-9,-20],[-13,-24],[-4,-3],[-3,-8],[-2,-9],[-3,-8],[-4,-6],[-2,-7],[-3,-4],[-3,-7],[-4,-4],[-7,-10],[-4,-5],[-3,-6],[-3,-3],[0,-4],[-1,-7],[-3,-7],[0,-3],[-8,-5],[-1,-5],[-1,-1],[-2,-5],[-5,-10],[-2,-4],[0,-7],[-3,-5],[-3,-7],[-1,-5],[-5,-5],[-1,-4],[-1,-9],[-4,-10],[-3,-5],[-4,-6],[-1,-6],[-3,-5],[-2,-2],[-4,-7],[-1,-5],[-3,-5],[-2,-3],[-3,-11],[-4,-6],[-2,-9],[-3,-7],[-6,-7],[-1,-5],[0,-5],[-2,-10],[-3,2],[-2,-5],[-4,-6],[0,-5],[-3,-7],[-1,-2],[0,-6],[-4,-7],[-4,-6],[0,-8],[-5,-7],[-3,-6],[-1,-6],[-5,-10],[-4,-4],[-3,-4],[-2,-3],[-2,-10],[-4,-4],[-1,-6],[-2,-8],[-3,-10],[-5,-7],[-5,-15],[-3,-7],[-2,-5],[-4,-11],[-1,-5],[-5,-11],[-5,-6],[-2,-8],[-4,-4],[-4,-6],[1,-11],[-4,-8],[-4,-3],[-3,-8],[-4,-9],[-3,-5],[-1,-9],[-3,-6],[-3,-5],[-3,-9],[-4,-5],[-3,-6],[-5,-7],[1,-7],[-3,-7],[-4,-5],[-1,-5],[-2,-6],[-3,-5],[-2,-6],[-2,-6],[-3,-7],[-5,-7],[0,-4],[0,-5],[-4,-7],[-5,-9],[0,-7],[-7,-7],[-1,-5],[0,-4],[-4,-8],[-6,-3],[-2,-9],[0,-8],[-5,-5],[-2,-2],[-1,-4],[0,-5],[-6,-9],[-3,-10],[-6,-10],[-4,-8],[-3,-8],[-2,-4],[-3,-3],[-2,-8],[-1,-4],[-1,-3],[-1,-5],[-4,-7],[-5,-6],[-2,-9],[0,-11],[-7,-7],[-3,-7],[-3,-6],[-4,-4],[-3,-5],[0,-11],[-1,-5],[-4,-8],[-7,-15],[0,-3],[-1,-3],[-1,-5],[-1,-1],[-2,-1],[-2,-7],[-1,-8],[-5,-5],[-1,-10],[0,-3],[-4,-9],[-1,-5],[-2,-3],[-1,-4],[-1,-5],[-4,-5],[-1,-2],[0,-5],[-4,-11],[-4,-4],[-2,-9],[-4,-5],[-1,-4],[-3,-4],[0,-15],[-5,-7],[-9,-12],[-1,-8],[-7,-13],[-10,-7],[-2,-9],[-5,-16],[-6,-11],[-1,-11],[-7,-6],[-8,-13],[-6,-10],[-1,-4],[-4,-2],[0,-7],[-3,-8],[-5,-6],[1,-1],[-2,-11],[-4,-2],[-4,-3],[-1,-4],[0,-9],[-3,-4],[-5,-2],[-2,-6],[0,-10],[-1,-4],[-4,-3],[-3,-5],[-1,-5],[-2,-4],[-2,-2],[-1,-5],[-2,-5],[-1,-6],[-5,-6],[-2,-3],[-2,-2],[0,-4],[-2,-5],[-3,-2],[-1,-4],[-3,-5],[-2,-4],[1,-5],[-6,-5],[-3,-5],[-1,-2],[-2,-5],[-3,-3],[-2,-6],[-4,-3],[-2,-5],[0,-5],[-1,-3],[-3,-3],[-2,-5],[-1,-2],[-4,-7],[-2,-5],[-3,-2],[-2,-7],[-3,-4],[-6,-4],[-4,-5],[-1,-5],[-3,-4],[-4,-4],[-1,-5],[-4,-3],[-2,-4],[2,-11],[-7,-7],[-1,-2],[-3,-3],[-3,-4],[-2,-2],[-1,-4],[-3,-5],[-2,-5],[0,-3],[-1,-4],[-7,-4],[-1,-2],[-1,-3],[0,-4],[-3,-2],[-3,-4],[-7,-9],[-5,-8],[-1,-7],[-6,-13],[-6,-7],[-8,-10],[-5,-6],[-7,-10],[-4,-7],[-19,-11],[-10,-5],[-7,-3],[-6,-4],[-8,-3],[-80,-98],[-141,-148],[-67,-74],[-8,-7],[-9,-11],[-9,-7],[-9,0],[-12,0],[-13,-13],[-59,19],[-147,-13],[-68,10],[-37,8],[-74,27],[-5,-4],[-1,-2],[-3,-5],[-10,-4],[-9,1],[-18,7],[-8,-1],[-3,-8],[-10,-6],[-9,-8],[-1,-4],[-1,-10],[-3,-5],[-2,-6],[-10,-4],[-11,-3],[-10,-6],[-7,-1],[-3,-3],[-12,-9],[-7,-5],[-3,-1],[-8,-1],[-9,-3],[-7,1],[-5,3],[-4,-2],[-7,3],[-4,5],[-2,2],[-12,4],[-9,5],[-16,6],[-6,1],[-13,-4],[-56,27],[-1,27],[-6,45],[-8,32],[-12,36],[-9,20],[-15,23],[-15,17],[-13,4],[-15,3],[-8,4],[-16,8],[-11,2],[-5,-7],[-13,-3],[-12,1],[-11,1],[-11,1],[-6,1],[0,6],[-5,6],[-10,6],[-10,4],[-12,19],[-5,9],[-8,8],[-2,8],[-5,2],[-6,9],[-14,19],[-8,8],[-16,11],[-9,13],[-63,36],[-41,20],[-4,-2],[-4,-4],[-8,-1],[-6,5],[-11,9],[-2,2],[-12,-2],[-5,-7],[-2,-3],[-5,-3],[-3,-6],[-1,-8],[-3,-5],[-7,-7],[-3,5],[0,10],[3,9],[3,9],[4,11],[-3,10],[-4,12],[-6,11],[-12,9],[-8,8],[-12,11],[-17,11],[-25,16],[-9,5],[-15,4],[-11,7],[-9,6],[-4,1],[-9,-1],[-4,-2],[-13,5],[-6,4],[-6,4],[-10,4],[-5,2],[-4,6],[1,2],[1,9],[-5,17],[-1,2],[-7,8],[-7,8],[-16,10],[-13,9],[-24,11],[-17,9],[-38,25],[-54,27],[-33,16],[-33,17],[-37,14],[-36,18],[-9,3],[-8,4],[-7,7],[-17,8],[-20,13],[-4,3],[-4,2],[-8,8],[-11,8],[-4,3],[-11,1],[-17,13],[-6,6],[-3,7],[-4,9],[-5,3],[-13,6],[-4,4],[-20,15],[-110,116],[-9,2],[-9,3],[-11,10],[-28,16],[-12,8],[-14,10],[-14,7],[-13,5],[-7,7],[-16,0],[-3,5],[-10,14],[-15,12],[-5,7],[-5,13],[-7,15],[-16,20],[-36,35],[-33,37],[-34,43],[-32,36],[-21,25],[-16,28],[-3,2],[-4,5],[-6,6],[-7,3],[-10,-3],[-4,0],[-4,10],[0,6],[1,9],[4,6],[3,5],[-3,13],[-2,3],[-3,5],[-2,11],[-1,5],[-1,10],[0,2],[-3,10],[1,9],[1,12],[3,7],[-1,6],[-5,13],[-6,8],[-3,0],[1,18],[0,6],[0,12],[0,11],[-2,8],[3,18],[2,8],[11,18],[7,12],[6,21],[4,17],[1,10],[6,11],[5,14],[2,47],[10,18],[5,24],[0,11],[-2,11],[-9,29],[-16,17],[-75,82],[-74,55],[-42,8],[-46,-19],[-5,-4],[-10,-6],[-5,-6],[-8,-7],[-4,-2],[-12,-6],[-8,-1],[-15,2],[-11,6],[-10,6],[-16,7],[-6,2],[-10,10],[-20,15],[-32,27],[-12,18],[-19,18],[-25,31],[-8,7],[-4,3],[-4,7],[-3,6],[-7,6],[-10,5],[-14,-4],[-8,-12],[-4,-10],[-5,-8],[-1,-6],[-1,-6],[0,-7],[2,-9],[0,-6],[-2,-8],[0,-9],[2,-5],[2,-7],[8,-10],[3,-7],[6,-10],[2,-7],[3,-9],[0,-9],[-1,-10],[-1,-6],[-5,-5],[-5,-3],[-9,0],[-1,1],[-5,4],[-4,3],[-8,2],[-4,2],[-5,2],[-5,12],[-2,7],[-3,16],[0,7],[0,8],[-4,8],[-9,3],[-12,-2],[-7,0],[-36,-1],[-5,-3],[-1,-5],[-1,-5],[-1,-8],[-1,-8],[-3,-3],[-7,-2],[-6,1],[-3,3],[-1,7],[-2,10],[-1,6],[-2,9],[-14,7],[-20,5],[-14,2],[-7,-3],[-13,-1],[-8,-1],[-4,-2],[-10,2],[-2,6],[3,14],[5,9],[0,9],[-2,10],[-3,20],[-5,29],[-10,9],[-6,7],[-8,14],[-13,36],[-7,30],[1,32],[8,24],[3,16],[-1,2],[-2,10],[5,3],[-1,15],[2,11],[4,9],[0,5],[-2,1],[-1,0],[-1,2],[-2,10],[-2,5],[1,6],[2,8],[3,3],[1,7],[0,4],[-3,2],[-2,0],[-6,2],[-3,3],[-2,6],[1,8],[2,3],[-3,12],[-3,5],[-5,2],[-1,11],[2,3],[-7,7],[-3,5],[0,8],[-1,7],[1,12],[4,4],[6,6],[9,-1],[6,-1],[5,4],[5,0],[4,-1],[2,8],[-1,8],[-11,9],[-7,5],[-1,11],[6,18],[0,2],[3,9],[3,7],[3,4],[1,1],[5,1],[3,1],[2,8],[-4,6],[-3,3],[-4,5],[-3,-3],[-8,-3],[-4,4],[-4,7],[-2,10],[0,7],[6,7],[4,3],[3,5],[0,7],[-3,12],[-1,4],[-6,9],[-5,5],[-2,5],[1,8],[-1,1],[-3,12],[0,5],[-4,6],[-10,0],[-4,0],[-5,6],[-3,6],[-1,4],[1,16],[3,6],[6,4],[6,-1],[3,5],[-2,5],[0,6],[0,8],[4,5],[4,9],[-1,3],[-2,6],[-9,2],[-5,0],[-7,6],[-3,1],[-2,6],[-1,13],[0,6],[1,6],[2,10],[1,4],[3,6],[2,2],[4,0],[8,1],[4,-2],[5,-3],[2,-5],[5,-6],[-1,-12],[1,-5],[0,-11],[0,-8],[0,-5],[0,-6],[2,-4],[4,-3],[5,0],[4,2],[3,7],[0,6],[-3,12],[1,4],[0,9],[-1,9],[4,11],[2,5],[8,6],[2,6],[0,9],[-2,5],[0,6],[3,4],[6,2],[1,11],[1,6],[-1,6],[-5,4],[-12,0],[-4,0],[-5,-5],[-2,0],[-11,3],[-10,10],[-3,3],[-2,7],[-1,11],[1,11],[1,10],[4,3],[6,5],[5,4],[6,3],[6,5],[2,2],[5,6],[3,3],[4,4],[5,4],[8,6],[2,11],[8,9],[3,4],[2,2],[11,2],[7,-1],[3,0],[5,6],[1,3],[4,2],[4,0],[7,-1],[6,-5],[8,-4],[7,-10],[8,-7],[7,-4],[12,-1],[40,12],[14,8],[4,10],[-2,10],[7,8],[6,5],[7,5],[2,5],[1,9],[4,5],[2,15],[4,7],[11,2],[9,-4],[3,2],[2,4],[2,2],[7,5],[8,5],[3,4],[5,5],[10,2],[6,0],[8,1],[6,2],[8,2],[10,-5],[4,-7],[6,2],[8,6],[1,3],[-4,9],[0,11],[2,6],[4,0],[6,4],[6,0],[7,0],[7,2],[3,9],[3,8],[7,14],[4,6],[5,3],[10,1],[3,-3],[6,-1],[3,-3],[6,-5],[4,5],[0,10],[-7,6],[-4,2],[-3,10],[-2,3],[-8,3],[1,4],[-10,2],[-4,4],[-1,11],[-6,6],[-8,8],[-9,15],[-4,11],[-8,14],[-17,13],[-7,14],[-5,14],[-2,12],[-4,37],[-1,16],[-1,9],[-1,24],[0,8],[-1,9],[-3,15],[-1,16],[-1,23],[0,11],[4,17],[4,28],[2,9],[2,18],[3,15],[2,14],[4,14],[9,17],[6,12],[4,8],[2,10],[3,7],[5,8],[6,8],[10,6],[6,2],[10,2],[7,3],[3,3],[-1,2],[4,9],[4,8],[2,3],[2,7],[1,5],[2,4],[0,5],[2,14],[6,8],[2,1],[4,6],[0,4],[-1,14],[2,11],[0,11],[-2,7],[-4,1],[-6,-3],[-6,-7],[-4,-6],[-5,-6],[-6,-3],[-7,-2],[-5,-1],[-9,-6],[-8,-2],[-16,1],[-10,3],[-10,6],[-12,4],[-4,4],[-11,3],[-7,6],[-4,8],[-15,24],[-6,3],[-5,8],[-8,13],[-12,12],[-5,11],[-3,5],[-3,17],[-4,18],[-10,29],[-5,8],[-4,10],[-4,5],[-7,4],[-7,3],[-4,-1],[-13,-1],[-3,-1],[-7,-1],[-8,1],[-6,0],[-10,-1],[-7,4],[-1,9],[1,5],[-7,10],[-23,19],[-30,21],[-20,13],[-18,9],[-30,19],[-15,15],[-18,13],[-33,16],[-12,10],[-17,14],[-14,2],[-35,20],[-66,11],[-25,6],[-5,-2],[-8,0],[-24,-1],[-6,2],[-11,7],[-4,11],[-2,6],[-6,10],[-6,10],[-19,34],[-38,42],[-73,69],[-66,58],[-56,37],[-68,36],[-72,34],[-80,41],[-58,22],[-76,40],[-58,39],[-44,29],[-37,30],[-67,61],[-33,40],[-10,15],[-4,12],[1,11],[-8,12],[-11,-6],[-7,-1],[-15,5],[-36,54],[-17,26],[-34,44],[-26,24],[-25,18],[-28,27],[-17,14],[-28,18],[-16,13],[-20,6],[-4,7],[-35,15],[-33,22],[-32,13],[-29,17],[-15,14],[-13,9],[-82,73],[-37,31],[-30,28],[-21,21],[-11,20],[-4,30],[-9,17],[-24,37],[-20,24],[-17,18],[-19,15],[-16,20],[-16,27],[-10,20],[-9,14],[-22,20],[-18,13],[-31,36],[-29,36],[-54,42],[-53,39],[-34,30],[-25,21],[-42,35],[-50,45],[-33,34],[-27,33],[-18,24],[-9,17],[-7,9],[-23,43],[-13,32],[-13,24],[-51,159],[1,21],[-3,28],[-8,32],[-5,25],[-14,42],[-2,33],[-12,42],[-7,24],[-5,31],[-4,29],[-6,41],[-18,50],[-21,37],[-22,38],[-45,47],[-39,46],[-11,8],[-13,3],[-5,8],[-5,7],[-3,10],[-14,19],[-31,32],[-51,50],[-27,32],[-20,40],[-11,26],[-6,18],[-17,15],[-23,19],[-32,22],[-39,17],[-25,7],[-26,19],[-18,16],[-17,26],[-6,32],[-17,28],[-12,18],[-27,22],[-10,9],[-25,21],[-17,29],[-20,30],[-16,17],[-11,14],[-7,16],[-25,40],[-11,26],[-7,16],[-9,6],[-40,41],[-18,25],[-17,24],[-28,26],[-14,19],[-21,16],[-16,24],[-20,30],[-20,22],[-13,25],[-31,65],[-17,57],[-14,59],[-9,54],[-6,33],[-10,35],[-4,26],[1,25],[1,21],[-3,25],[0,28],[3,26],[-6,30],[-1,41],[-3,26],[1,22],[1,26],[9,25],[5,31],[5,18],[9,23],[2,17],[4,8],[4,15],[8,20],[13,13],[5,7],[7,10],[5,7],[11,24],[0,17],[4,23],[14,29],[0,10],[-3,11],[-4,9],[-1,3],[-2,10],[-9,5],[-9,0],[-7,6],[-1,11],[-3,8],[11,5],[3,-4],[0,-2],[7,-7],[3,-9],[4,-3],[17,-3],[16,7],[5,10],[12,19],[5,14],[12,9],[7,18],[8,17],[9,28],[20,41],[18,23],[14,43],[16,51],[14,29],[9,22],[16,17],[10,12],[6,15],[19,18],[16,9],[12,4],[15,0],[8,-6],[11,-6],[-4,10],[-11,15],[-3,5],[-3,12],[-5,19],[2,24],[11,31],[5,11],[17,52],[4,46],[0,50],[7,23],[18,22],[20,1],[8,-5],[15,-17],[8,-12],[17,-13],[11,6],[19,46],[-12,6],[-30,3],[-14,12],[-21,17],[-6,3],[-24,16],[-2,13],[0,38],[-1,36],[-2,33],[-1,14],[0,21],[10,22],[8,17],[7,15],[9,15],[9,18],[6,6],[14,1],[7,6],[0,17],[2,21],[3,25],[10,27],[6,16],[8,10],[16,12],[14,8],[9,10],[21,15],[6,7],[22,17],[12,26],[4,2],[29,31],[-1,-2],[16,4],[3,11],[2,17],[10,22],[4,7],[10,26],[8,17],[6,18],[5,6],[7,12],[21,37],[23,28],[17,34],[8,17],[4,10],[14,14],[4,7],[6,9],[6,9],[16,19],[12,14],[8,8],[7,7],[7,9],[6,4],[11,15],[9,1],[8,4],[5,9],[12,22],[7,16],[5,6],[9,6],[5,8],[5,17],[1,10],[-3,21],[-9,17],[-5,26],[-4,1],[-1,5],[2,7],[1,18],[3,19],[1,19],[6,28],[5,25],[7,15],[6,15],[3,5],[4,4],[-2,9],[3,12],[8,16],[7,13],[10,15],[3,13],[2,7],[6,5],[2,8],[9,7],[9,13],[7,4],[9,10],[5,0],[7,7],[4,3],[6,1],[1,9],[0,11],[2,15],[2,9],[5,16],[3,26],[3,13],[2,12],[3,8],[4,10],[5,27],[14,18],[8,18],[4,14],[7,10],[13,22],[9,22],[5,11],[9,17],[5,16],[-2,7],[-2,12],[2,8],[-2,6],[-2,9],[-2,8],[1,20],[-3,18],[0,17],[5,14],[2,5],[-1,4],[-1,12],[3,12],[3,7],[1,14],[5,7],[6,4],[14,11],[8,9],[15,11],[11,3],[9,0],[28,-19],[10,-8],[12,-4],[7,-5],[2,-2],[17,-5],[6,-2],[4,-3],[2,-8],[-1,-8],[3,-6],[12,-14],[0,-1],[10,-6],[3,1],[5,-1],[2,-10],[0,-4],[5,-9],[1,-2],[7,-1],[5,-6],[2,-7],[3,-7],[4,-6],[7,-6],[4,0],[4,0],[10,13],[-2,4],[-8,5],[-5,0],[-6,9],[-2,4],[-7,2],[-7,6],[-3,10],[-6,5],[-4,9],[-2,10],[-4,13],[-1,10],[-3,5],[-5,5],[-5,5],[-10,7],[-10,5],[-7,2],[-5,2],[-4,0],[-14,9],[-17,13],[-13,14],[-12,12],[-27,30],[-14,14],[-13,12],[-23,8],[-31,0],[-22,0],[-12,5],[-23,4],[-8,0],[-12,0],[-12,7],[-1,16],[8,10],[7,20],[10,4],[2,14],[5,5],[19,5],[6,9],[8,10],[7,1],[8,3],[3,5],[5,9],[8,10],[8,3],[12,10],[17,12],[8,-1],[9,2],[3,9],[5,9],[8,5],[14,9],[9,14],[3,8],[11,11],[4,13],[-1,12],[0,12],[4,18],[7,14],[-1,11],[3,7],[3,13],[0,16],[9,15],[10,10],[-1,10],[-7,0],[-11,7],[6,17],[12,-1],[2,0],[7,11],[-2,4],[3,9],[0,11],[3,14],[3,0],[3,2],[5,9],[2,10],[6,7],[8,5],[5,5],[9,13],[7,10],[8,7],[-1,7],[6,8],[7,2],[2,7],[4,10],[6,7],[-1,5],[4,3],[-1,8],[4,7],[7,5],[7,8],[9,0],[3,7],[2,11],[12,21],[5,6],[2,8],[3,14],[12,14],[6,2],[-1,5],[-5,3],[1,11],[7,8],[11,2],[8,3],[5,9],[0,6],[-1,7],[3,9],[5,8],[7,19],[8,18],[4,15],[11,25],[6,21],[3,23],[0,17],[6,14],[6,16],[4,19],[9,15],[12,10],[3,8],[-2,8],[0,11],[4,11],[8,10],[1,14],[1,7],[-2,22],[1,8],[3,6],[5,-2],[2,-5],[11,0],[7,5],[5,0],[8,1],[14,6],[-3,11],[-3,11],[3,2],[9,1],[13,0],[3,1],[-3,6],[4,17],[3,8],[9,9],[12,7],[11,5],[7,2],[9,13],[14,0],[2,6],[3,15],[18,7],[13,-1],[10,8],[14,1],[11,7],[3,14],[4,8],[16,3],[6,11],[6,16],[9,21],[10,14],[6,12],[14,17],[10,6],[7,16],[3,18],[8,26],[4,8],[-1,11],[8,13],[13,11],[-7,12],[5,13],[12,10],[4,15],[4,17],[5,19],[5,13],[-1,23],[3,18],[18,26],[15,28],[20,23],[6,18],[1,18],[3,22],[12,1],[5,2],[7,13],[12,12],[-5,11],[15,9],[6,-2],[2,10],[5,7],[13,4],[10,6],[2,8],[4,2],[1,14],[11,16],[20,-3],[8,2],[16,2],[1,7],[18,20],[14,3],[13,-2],[12,-7],[16,43],[18,30],[29,47],[-19,10],[6,20],[15,19],[1,22],[21,31],[-7,32],[20,29],[-4,16],[-8,40],[0,32],[10,24],[1,7],[-9,15],[-10,9],[-4,13],[5,19],[17,13],[12,13],[8,18],[3,31],[14,13],[14,-6],[30,35],[6,30],[13,10],[32,5],[7,10],[27,-4],[10,10],[10,10],[49,14],[28,-6],[12,3],[31,-12],[22,-5],[21,-13],[13,3],[13,5],[26,-5],[17,-14],[11,-10],[1,-14],[14,-4],[15,-28],[18,-29],[3,-25],[-1,-24],[0,-7],[5,-6],[10,-12],[12,-2],[13,6],[17,-1],[9,-5],[1,-9],[2,-17],[17,-3],[9,-12],[-4,-17],[4,-14],[6,-4],[3,-1],[17,-3],[14,0],[9,15],[19,1],[6,9],[13,-3],[12,-2],[8,-3],[17,-13],[3,-3],[3,-15],[28,10],[-2,10],[2,19],[10,4],[7,9],[2,13],[11,11],[4,8],[-5,6],[-14,9],[-3,9],[5,4],[11,6],[9,0],[11,3],[11,9],[10,11],[2,5],[-2,10],[0,12],[-4,7],[23,7],[3,-1],[12,2],[9,-19],[3,-10],[16,18],[-4,11],[6,11],[14,7],[12,-1],[6,-8],[8,6],[6,13],[3,8],[11,16],[30,17],[10,-9],[9,21],[3,3],[18,-9],[13,-1],[8,-3],[18,-4],[15,-9],[-3,-22],[14,-5],[11,-14],[14,7],[11,-15],[10,-10],[12,-3],[11,8],[13,8],[11,7],[8,0],[3,1],[0,8],[3,6],[6,3],[6,3],[5,4],[13,7],[7,8],[2,3],[5,7],[7,8],[8,10],[3,8],[6,7],[2,5],[-1,4],[-2,7],[-2,8],[3,5],[1,12],[3,17],[3,7],[19,3],[8,7],[0,13],[9,8],[7,-1],[11,-3],[22,-1],[2,1],[14,9],[4,4],[7,9],[5,14],[6,5],[-2,14],[9,6],[6,-6],[2,10],[0,3],[8,6],[11,8],[6,9],[1,12],[4,-1],[8,15],[-3,10],[-8,7],[5,15],[14,-3],[-1,17],[4,9],[5,3],[12,-4],[1,9],[0,7],[5,12],[-1,6],[5,10],[2,0],[9,21],[-1,7],[11,-2],[13,11],[-4,9],[9,4],[8,12],[8,4],[12,-6],[6,15],[3,2],[9,-3],[13,4],[5,-3],[8,-5],[1,11],[6,3],[12,3],[1,11],[-3,10],[2,13],[9,11],[14,-6],[4,0],[7,4],[13,1],[5,2],[10,5],[9,5],[11,6],[3,3],[11,9],[3,4],[5,7],[8,11],[8,-3],[3,1],[8,2],[3,7],[-3,7],[-1,10],[10,6],[11,-1],[6,1],[0,8],[9,15],[14,25],[14,0],[13,13],[3,10],[12,4],[7,7],[5,18],[8,9],[4,-1],[19,-5],[10,0],[0,-5],[4,-3],[1,-2],[9,-3],[0,-3],[4,-8],[-1,-4],[5,-4],[8,1],[1,-5],[4,-12],[10,-12],[7,-15],[5,-9],[5,9],[5,5],[7,3],[2,12],[5,6],[7,-1],[7,-5],[3,8],[6,2],[3,16],[-2,15],[-1,13],[2,18],[-8,2],[-3,9],[-1,12],[15,9],[18,-4],[4,14],[5,7],[-4,11],[5,13],[-4,14],[-6,7],[-4,10],[-9,0],[2,30],[9,-6],[-4,17],[-5,10],[3,7],[9,2],[3,23],[8,6],[3,15],[-3,18],[-4,7],[1,16],[10,9],[4,10],[-1,6],[16,1],[3,-1],[7,-8],[18,0],[3,3],[6,7],[3,6],[6,5],[5,10],[0,11],[9,9],[-12,7],[-4,5],[5,9],[9,-1],[2,-5],[2,3],[3,8],[1,12],[-8,13],[-2,7],[10,4],[1,16],[5,9],[8,2],[7,-2],[2,10],[3,9],[10,10],[9,7],[-3,8],[-1,12],[6,14],[5,8],[8,-5],[1,-2],[10,4],[6,15],[-3,24],[-6,12],[-1,7],[1,7],[-4,12],[3,16],[1,3],[7,-15],[0,-9],[1,4],[2,5],[6,1],[8,10],[5,14],[1,10],[7,14],[18,11],[8,1],[-1,11],[-1,5],[2,5],[7,6],[5,-5],[4,2],[8,9],[4,18],[2,12],[6,7],[-2,9],[1,11],[-2,8],[1,18],[-8,6],[-2,2],[1,13],[7,7],[-10,10],[-2,9],[12,9],[5,12],[13,9],[6,5],[4,14],[4,9],[14,2],[6,1],[11,5],[0,9],[3,12],[7,6],[3,4],[0,5],[9,14],[7,15],[10,-3],[3,-2],[9,7],[5,8],[5,0],[0,7],[1,12],[-3,12],[5,4],[4,2],[4,0],[11,-10],[2,4],[5,7],[14,1],[10,7],[6,-3],[6,1],[3,9],[3,9],[7,3],[10,0],[-1,6],[5,11],[10,-4],[0,8],[4,3],[7,-1],[4,-4],[5,6],[6,4],[7,4],[12,-3],[3,0],[3,3],[-4,9],[2,7],[3,8],[1,5],[7,8],[13,9],[8,5],[15,12],[19,2],[2,-2],[3,-6],[-3,-12],[-3,-8],[4,-11],[3,-3],[3,1],[5,9],[2,10],[6,13],[10,10],[2,1],[6,0],[6,7],[3,5],[7,5],[4,0],[12,1],[7,0],[4,6],[9,-3],[8,3],[12,2],[4,12],[16,0],[11,3],[3,6],[20,-3],[14,-7],[7,-5],[6,-4],[5,8],[4,2],[16,1],[6,-1],[5,6],[0,2],[12,6],[5,8],[9,1],[0,13],[18,-3],[7,3],[8,-1],[4,11],[1,16],[12,15],[9,4],[3,-4],[5,3],[2,10],[7,2],[10,0],[4,-9],[3,0],[10,0],[5,8],[7,4],[5,11],[8,5],[12,3],[4,7],[6,8],[-3,25],[4,6],[6,4],[6,10],[5,8],[6,-4],[4,-2],[-2,-4],[6,8],[5,1],[6,-2],[4,0],[6,1],[7,3],[8,-9],[7,6],[-2,8],[-2,6],[-1,10],[3,8],[-1,4],[-1,3],[-7,3],[-5,-4],[-5,-3],[-5,8],[-6,4],[0,16],[10,4],[4,-5],[5,-9],[7,-4],[9,-1],[4,-3],[8,-3],[-1,-13],[-3,-6],[6,-11],[5,11],[2,1],[9,2],[9,0],[2,-3],[3,-6],[5,-6],[-4,-10],[-7,-18],[9,1],[8,5],[5,-3],[9,4],[3,1],[8,1],[6,11],[10,-1],[10,-1],[5,5],[2,7],[4,5],[12,20],[10,1],[5,2],[15,0],[4,1],[16,-3],[1,-1],[4,-9],[1,-6],[3,-8],[3,-11],[0,-12],[4,-10],[9,-3],[10,3],[6,5],[6,-4],[0,-10],[-2,-11],[-5,-8],[2,-9],[5,-4],[8,3],[7,-4],[10,-1],[5,4],[2,0],[5,4],[1,8],[7,7],[9,-3],[6,-5],[2,-12],[10,-3],[3,9],[8,1],[11,4],[-3,14],[-2,12],[7,5],[2,4],[-3,8],[0,7],[7,5],[11,-3],[-1,10],[-2,15],[5,6],[8,0],[6,-2],[14,-8],[2,-7],[7,0],[4,-6],[3,-3],[9,-11],[10,0],[3,8],[-2,11],[10,6],[16,0],[12,4],[2,11],[6,4],[9,2],[7,7],[0,8],[3,7],[4,0],[12,2],[1,9],[6,-3],[7,-9],[5,-4],[-1,-7],[5,-3],[2,9],[2,3],[4,2],[6,2],[9,7],[2,5],[8,4],[3,0],[2,2],[7,-10],[3,-3],[3,2],[7,-1],[6,-3],[2,11],[9,2],[8,-2],[3,-4],[1,-8],[-3,-13],[-9,-9],[-5,-6],[-10,-4],[-6,-1],[-14,-2],[-6,0],[-2,-9],[10,-2],[12,-8],[7,0],[6,-6],[9,-7],[7,12],[3,-1],[5,1],[6,5],[7,-3],[4,-3],[2,0],[12,2],[-4,7],[11,13],[5,-4],[8,-8],[4,2],[0,2],[17,-1],[3,-9],[10,-2],[-3,13],[-1,6],[16,0],[4,7],[2,9],[-2,4],[-12,-1],[-2,3],[-3,9],[0,10],[3,3],[-1,7],[3,16],[4,6],[3,1],[6,4],[4,-1],[14,-5],[5,5],[12,1],[10,-3],[14,-1],[10,5],[15,-7],[4,-3],[3,-7],[15,-4],[4,-6],[11,-7],[6,-2],[9,-5],[5,4],[10,15],[10,1],[5,12],[7,10],[0,8],[8,4],[6,4],[11,11],[-1,5],[-1,10],[-3,14],[-2,11],[8,9],[9,6],[16,-7],[3,-15],[1,-3],[3,-10],[13,2],[9,5],[6,11],[3,21],[-5,9],[-6,2],[-11,4],[-5,5],[0,17],[-7,7],[5,19],[9,6],[6,5],[2,9],[1,7],[4,3],[8,3],[3,6],[6,12],[6,12],[8,5],[6,1],[2,8],[3,5],[9,3],[10,0],[5,-2],[12,7],[9,0],[8,1],[5,2],[-1,9],[2,12],[7,7],[7,-1],[8,-4],[5,-3],[4,2],[9,-4],[2,-2],[6,-1],[11,10],[13,-3],[4,0],[1,-3],[1,3],[4,7],[3,0],[8,-3],[2,-7],[-3,-4],[-3,-2],[-9,-2],[-4,1],[-4,-9],[0,-5],[4,-4],[-2,-16],[0,-5],[4,-20],[-1,-7],[10,-1],[7,0],[6,3],[5,6],[-3,9],[4,11],[6,1],[1,6],[-4,7],[-2,2],[-5,2],[-9,1],[-1,5],[4,3],[2,6],[9,5],[8,-5],[0,-7],[6,-6],[3,-3],[5,-1],[4,-2],[0,-2],[3,-6],[4,6],[10,4],[3,3],[3,8],[-3,4],[-6,-2],[-7,3],[-5,3],[-4,1],[-7,2],[-5,4],[1,11],[4,7],[2,4],[3,7],[-1,6],[0,5],[6,4],[4,0],[11,2],[11,4],[7,-3],[7,1],[9,-2],[7,8],[8,3],[4,-7],[10,3],[13,-1],[8,-4],[4,-1],[4,-2],[4,6],[6,6],[2,1],[3,1],[4,0],[3,-1],[5,0],[3,0],[6,-2],[5,-3],[9,-2],[5,4],[6,4],[3,4],[9,1],[6,-5],[5,0],[4,-2],[2,-2],[4,-6],[4,-2],[4,-1],[1,-7],[0,-4],[0,-7],[5,-1],[5,0],[5,1],[6,-2],[0,-1],[7,-3],[12,3],[8,-1],[13,1],[4,-2],[5,-1],[8,0],[10,3],[6,5],[6,3],[7,0],[3,-1],[1,-2],[2,-5],[4,-1],[1,0],[5,-2],[0,-6],[5,-1],[2,3],[7,4],[8,0],[3,-3],[2,-4],[1,-6],[1,-3],[3,-3],[3,-7],[4,0],[5,0],[6,2],[6,-1],[3,3],[4,6],[7,2],[4,0],[4,0],[11,1],[2,-3],[3,-5],[0,-3],[6,0],[3,0],[5,7],[2,6],[8,5],[3,1],[5,5],[5,1],[6,-1],[2,1],[3,-6],[9,-4],[2,-4],[12,-6],[4,5],[3,3],[8,0],[6,-2],[5,1],[1,6],[9,10],[5,2],[6,1],[12,1],[4,-3],[2,-3],[5,-6],[1,-7],[3,-3],[8,4],[2,0],[2,2],[7,1],[3,0],[4,-1],[5,3],[9,3],[6,-2],[2,-1],[8,-2],[1,-3],[2,-4],[1,-2],[0,-9],[4,-1],[8,-2],[1,-1],[6,0],[6,-2],[4,-2],[5,-2],[3,-1],[8,-6],[0,-6],[1,-8],[1,-9],[0,-4],[2,-6],[3,0],[3,6],[5,5],[10,0],[4,-1],[5,-6],[3,-3],[7,-1],[4,-1],[3,-2],[4,-3],[5,-8],[4,-6],[5,-4],[3,1],[9,1],[10,0],[4,-2],[2,-2],[4,-5],[3,-4],[-1,-4],[1,-2],[3,2],[8,0],[4,-4],[5,-4],[4,-6],[7,0],[4,-3],[6,-3],[4,-2],[3,1],[8,0],[15,-3],[10,-6],[7,-5],[5,-4],[2,-13],[5,-5],[2,-3],[3,-5],[6,-8],[2,-3],[5,-5],[5,-2],[4,0],[7,-2],[7,-6],[4,-1],[3,4],[7,-3],[7,-4],[13,-1],[3,-1],[2,-3],[1,-2],[3,-4],[4,-6],[2,-10],[-2,-9],[1,-8],[3,-7],[3,-2],[3,2],[6,8],[4,3],[4,2],[14,0],[4,-1],[5,-5],[3,-6],[0,-10],[-1,-4],[0,-8],[-1,-6],[0,-8],[7,-1],[5,3],[6,7],[3,9],[0,6],[3,3],[8,-1],[5,-2],[8,2],[6,5],[4,9],[2,7],[5,5],[7,1],[8,0],[9,4],[6,3],[8,0],[6,2],[4,4],[5,2],[9,-4],[3,-7],[3,-9],[1,-8],[7,-5],[7,-3],[7,1],[3,3],[3,9],[2,3],[15,0],[6,7],[3,1],[7,2],[10,4],[8,0],[9,-1],[11,0],[6,1],[11,1],[4,1],[18,1],[7,-1],[5,6],[4,8],[4,3],[7,2],[14,7],[7,-1],[13,1],[3,0],[3,-1],[7,0],[8,8],[7,5],[7,7],[1,2],[6,2],[12,1],[8,-6],[4,-5],[4,3],[12,2],[3,3],[14,0],[10,-6],[3,-2],[3,-7],[1,-11],[4,-3],[7,1],[8,0],[4,-5],[9,0],[8,-3],[8,-6],[5,-2],[5,-6],[9,-1],[8,1],[4,4],[8,7],[7,3],[6,2],[8,7],[8,7],[2,4],[0,14],[0,6],[1,9],[2,11],[1,12],[-3,6],[0,9],[-2,8],[0,7],[0,8],[-1,20],[-4,12],[-4,9],[-5,10],[-1,3],[-1,9],[-3,24],[-4,9],[0,9],[0,7],[-4,21],[-1,19],[-4,14],[1,14],[1,17],[-1,17],[4,10],[5,9],[9,17],[10,16],[6,13],[9,7],[13,6],[9,16],[6,9],[10,4],[6,6],[4,11],[2,6],[6,4],[5,5],[7,9],[3,9],[5,4],[7,3],[16,2],[4,9],[3,4],[2,3],[8,10],[2,10],[9,7],[10,2],[4,10],[3,7],[8,5],[10,2],[8,5],[4,3],[6,2],[1,3],[13,4],[8,8],[6,6],[14,7],[12,1],[7,-1],[5,0],[9,-4],[10,-5],[10,-1],[4,-1],[7,-6],[18,-7],[3,-4],[14,-8],[4,-2],[10,-9],[6,-5],[7,-7],[4,-6],[10,-5],[2,-1],[5,4],[0,10],[-9,17],[-6,11],[-3,12],[0,7],[-7,22],[-4,18],[-2,11],[-3,14],[1,13],[-1,7],[-1,7],[-2,7],[1,8],[2,11],[5,16],[2,10],[7,6],[7,8],[4,9],[8,5],[13,7],[7,7],[5,4],[15,3],[15,9],[10,10],[13,7],[9,0],[9,0],[12,0],[10,5],[7,1],[11,2],[9,2],[28,4],[7,-2],[10,-6],[8,1],[4,-1],[12,-2],[1,0],[18,0],[11,-5],[11,-3],[5,-6],[4,-2],[3,-2],[19,-5],[11,5],[20,12],[6,11],[14,7],[11,13],[12,15],[9,12],[8,10],[3,13],[3,11],[1,13],[3,13],[14,20],[6,6],[8,8],[3,6],[1,11],[5,5],[5,2],[5,2],[1,4],[7,2],[4,7],[8,9],[6,7],[5,4],[3,11],[8,11],[0,6],[1,8],[2,6],[2,2],[3,6],[2,5],[3,2],[6,4],[0,8],[3,6],[5,2],[2,8],[1,7],[12,0],[4,3],[2,5],[-1,11],[1,8],[5,9],[1,4],[0,5],[7,9],[3,2],[7,3],[7,2],[2,6],[3,12],[4,9],[12,14],[12,5],[7,2],[5,1],[3,8],[0,4],[5,10],[7,3],[14,1],[5,5],[4,5],[8,2],[8,5],[7,0],[5,-1],[4,3],[3,4],[5,10],[-3,12],[3,3],[5,2],[10,5],[3,1],[6,1],[3,-2],[2,0],[3,7],[3,2],[3,-1],[2,0],[2,-2],[3,-2],[2,2],[1,0],[19,7],[4,1],[3,0],[3,3],[8,1],[4,-3],[4,-3],[0,-6],[1,-5],[10,-1],[6,0],[5,0],[7,1],[9,0],[7,0],[5,-3],[8,4],[1,6],[5,5],[9,1],[4,-2],[5,-2],[3,-5],[2,-2],[7,6],[3,7],[1,10],[2,10],[4,13],[6,10],[4,10],[4,10],[22,53],[15,43],[7,35],[9,24],[5,15],[5,22],[4,33],[-3,25],[4,27],[-2,16],[3,12],[1,1],[3,10],[1,10],[-2,4],[1,35],[-4,15],[-2,18],[-1,8],[1,13],[6,11],[7,8],[7,5],[5,3],[11,17],[14,26],[8,19],[2,20],[-1,16],[-2,14],[-6,43],[0,15],[-1,10],[5,8],[2,6],[4,7],[4,9],[3,12],[3,8],[3,23],[0,29],[-4,13],[-3,11],[-4,11],[-8,7],[-4,13],[-3,20],[0,9],[1,14],[3,14],[-1,21],[0,10],[8,8],[2,10],[-33,148],[-4,15],[0,20],[-1,17],[-4,20],[-2,8],[-14,13],[-5,12],[-13,-2],[-6,28],[7,9],[-13,48],[-5,19],[-2,34],[-6,36],[-7,9],[-4,5],[-5,18],[5,17],[-1,10],[-1,6],[-7,5],[-5,1],[-8,2],[-7,6],[-7,10],[-4,7],[-7,5],[-19,13],[-7,8],[-12,6],[-5,1],[-15,5],[-12,5],[-10,4],[-21,16],[-44,10],[-49,-1],[-40,-13],[-26,-17],[-56,-36],[-20,-15],[-21,-20],[-16,-30],[-1,-30],[4,-31],[14,-13],[7,-24],[-3,-28],[-9,-5],[-9,0],[-16,1],[-21,0],[-20,7],[-13,13],[-19,16],[-9,33],[-7,29],[-22,21],[-8,14],[2,19],[13,10],[9,2],[13,4],[14,7],[15,1],[48,12],[18,2],[41,21],[20,15],[36,21],[51,31],[25,2],[4,2],[50,1],[20,-1],[24,-9],[23,-17],[14,-4],[14,-2],[11,0],[7,3],[5,4],[-2,8],[4,8],[3,1],[23,1],[4,0],[8,7],[17,1],[5,2],[8,4],[2,7],[5,5],[8,4],[3,1],[7,8],[14,9],[6,6],[10,4],[2,19],[3,4],[7,0],[3,9],[4,11],[-1,74],[49,0],[5,-15],[0,-9],[9,-4],[4,2],[0,8],[0,10],[5,4],[11,0],[6,0],[12,0],[0,-6],[3,-15],[6,-2],[15,-3],[6,-1],[3,-1],[5,2],[1,6],[3,5],[7,0],[6,1],[1,-2],[3,0],[0,-7],[1,-5],[4,0],[5,2],[16,1],[0,7],[8,23],[1,9],[4,8],[6,-4],[-1,-7],[4,-11],[0,-9],[6,-10],[2,0],[4,-3],[17,2],[7,-2],[5,-3],[3,3],[6,4],[24,1],[5,-12],[23,-2],[10,0],[12,-4],[2,2],[7,-7],[10,-6],[25,-19],[18,-7],[21,-3],[22,2],[7,6],[3,7],[-1,2],[-3,4],[1,6],[6,2],[4,-5],[-2,-8],[2,-3],[8,7],[3,5],[9,1],[3,-3],[11,-14],[5,1],[9,5],[2,-7],[0,-8],[3,-4],[9,-4],[5,-2],[8,3],[6,1],[9,-3],[1,-4],[6,-4],[7,-2],[13,-1],[8,0],[11,-4],[6,-5],[4,-3],[12,-7],[9,-5],[16,-10],[2,-3],[15,-10],[9,-4],[15,-3],[16,0],[13,-3],[14,-6],[26,-10],[9,0],[12,-1],[6,-1],[15,-3],[14,0],[11,6],[10,3],[12,2],[20,1],[36,0],[11,-4],[25,-4],[15,-8],[10,6],[14,7],[26,1],[20,-7],[33,1],[4,1],[19,4],[7,6],[13,11],[14,12],[14,12],[13,0],[11,-5],[6,-2],[7,-8],[11,-6],[14,-9],[17,-12],[24,-8],[38,-3],[17,1],[10,3],[18,0],[7,-2],[14,-7],[12,-12],[10,-6],[11,-5],[10,1],[9,-4],[7,-6],[27,-21],[13,-9],[10,-5],[23,-14],[13,-9],[22,-7],[14,1],[6,2],[8,0],[7,-4],[2,-5],[2,-3],[8,-7],[6,-2],[5,3],[2,6],[7,10],[8,-1],[4,0],[13,-7],[4,2],[13,2],[12,0],[6,-5],[5,0],[9,-4],[5,-10],[2,-8],[6,-5],[8,-4],[8,4],[7,5],[13,-1],[5,-3],[7,0],[9,1],[31,0],[13,-9],[5,-6],[16,-2],[7,-1],[8,0],[27,-1],[9,-2],[4,-4],[16,-4],[10,0],[7,5],[13,0],[11,1],[15,-9],[15,-8],[18,-5],[28,-2],[30,-1],[34,-11],[31,-18],[33,-27],[39,-34],[40,-34],[47,-38],[42,-30],[10,-5],[18,1],[42,-14],[17,-10],[27,-20],[36,-29],[34,-29],[27,-21],[53,-41],[77,-64],[75,-58],[73,-54],[53,-52],[79,-73],[71,-72],[44,-59],[49,-66],[45,-65],[40,-60],[32,-49],[27,-34],[29,-36],[32,-47],[49,-53],[42,-47],[6,-10],[5,-5],[7,-4],[3,1],[24,-13],[26,-27],[26,-37],[17,-22],[28,-35],[17,-15],[23,-24],[16,-25],[17,-7],[15,-6],[55,-28],[16,-2],[20,-8],[13,-6],[15,-10],[26,-16],[24,-17],[12,-11],[7,-8],[6,-16],[13,-12],[31,-24],[14,-10],[15,-12],[16,-14],[11,-7],[9,-3],[47,-29],[23,-22],[14,-15],[3,-9],[18,-28],[11,-28],[16,-18],[16,-16],[25,-35],[23,-31],[26,-33],[18,-30],[46,-85],[23,-51],[29,-67],[25,-54],[24,-50],[21,-35],[21,-31],[32,-45],[27,-47],[19,-49],[17,-36],[15,-28],[16,-3],[4,-9],[-4,-8],[-6,-9],[4,-6],[12,-30],[10,-18],[8,-16],[6,-10],[52,-97],[44,-77],[24,-43],[11,-16],[6,-1],[2,-4],[6,-18],[18,10],[17,-1],[12,-7],[15,-19],[93,-136],[95,-131],[24,-31],[5,0],[4,-4],[-1,-4],[0,-6],[3,-7],[4,-13],[8,-12],[3,-2],[3,-3],[6,-7],[2,-14],[1,-11],[1,-18],[3,-15],[10,-23],[4,-16],[23,-36],[26,-37],[51,-78],[26,-40],[86,-123],[49,-47],[15,-8],[7,-2],[6,-6],[2,-5],[4,-13],[3,-6],[7,-12],[4,-5],[2,-5],[2,-2],[12,-18],[5,-11],[8,-16],[3,-7],[2,-7],[6,-16],[3,-11],[3,-19],[2,-17],[1,-20],[5,-27],[3,-12],[37,-3],[-1,19],[0,8],[12,7],[8,0],[4,-2],[22,1],[12,2],[6,0],[15,-5],[25,0],[11,-7],[11,-5],[28,-11],[23,-13],[23,-12],[70,-48],[52,-28],[10,-6],[38,-20],[67,-37],[32,-14],[69,-29],[28,-4],[14,1],[5,5],[5,4],[7,-3],[2,-3],[11,-4],[12,0],[5,1],[8,1],[5,-2],[3,-2],[5,1],[3,0],[12,1],[18,6],[19,3],[3,4],[40,4],[16,7],[10,4],[30,5],[19,4],[39,6],[13,1],[19,7],[20,11],[13,7],[29,14],[26,17],[16,10],[15,17],[15,3],[4,9],[3,14],[6,11],[7,7],[9,1],[11,0],[8,2],[11,-7],[1,-11],[0,-16],[1,-12],[8,0],[5,11],[2,11],[0,14],[-1,11],[-4,17],[-6,11],[-4,18],[4,13],[9,20],[3,14],[15,7],[20,0],[7,5],[2,3],[4,7],[22,11],[9,6],[6,6],[10,0],[9,2],[13,0],[6,-1],[12,7],[5,2],[7,2],[8,9],[6,8],[5,9],[5,8],[14,8],[8,12],[14,7],[10,10],[14,11],[6,6],[5,6],[9,12],[11,11],[7,9],[14,20],[6,8],[8,6],[9,4],[17,11],[11,3],[16,8],[16,5],[7,1],[48,14],[34,12],[75,26],[135,48],[-3,31],[11,1],[1,-8],[25,0],[10,6],[3,-4],[18,-1],[48,13],[167,58],[65,13],[65,11],[48,1],[83,1],[60,-7],[40,-10],[65,-19],[48,-17],[37,-15],[33,-13],[3,7],[3,0],[3,-2],[2,-3],[-2,-6],[29,-15],[34,-19],[44,-32],[43,-33],[29,-23],[8,3],[6,1],[5,0],[5,2],[13,5],[3,3],[7,5],[6,4],[5,4],[9,5],[0,-5],[-2,-9],[-1,-6],[9,-1],[4,5],[5,-3],[1,-4],[6,-2],[2,-1],[4,-5],[8,0],[3,0],[1,-2],[2,-2],[2,2],[4,-4],[1,-4],[-2,-6],[0,-2],[2,0],[3,-2],[3,-2],[3,-4],[1,-6],[5,-1],[3,0],[4,1],[4,0],[2,-1],[4,-2],[2,-1],[1,1],[2,-5],[3,-5],[1,-5],[4,-4],[3,1],[9,0],[7,1],[7,-1],[7,0],[26,-4],[12,-6],[17,-6],[4,-10],[2,-8],[-2,-12],[4,-5],[15,-5],[11,-1],[5,-12],[8,-6],[10,-6],[10,-27],[9,-12],[7,-6],[13,-3],[11,-11],[5,-5],[8,-3],[9,-7],[10,-6],[16,-11],[18,-18],[8,-6],[12,-15],[6,-6],[7,-15],[11,-11],[21,-10],[13,-8],[24,-9],[4,3],[5,-8],[-4,-9],[6,-20],[15,-13],[12,-4],[11,0],[16,-2],[15,-5],[9,-1],[18,0],[13,0],[10,-2],[10,-4],[28,21],[37,37],[33,85],[15,38],[-4,4],[23,62],[7,-1],[7,26],[7,13],[15,19],[8,14],[0,11],[-1,18],[7,23],[8,8],[11,3],[10,-2],[21,-9],[21,-14],[9,-5],[-3,-17],[5,-4],[5,-8],[1,-4],[-1,-5],[-1,-4],[4,-6],[1,-7],[3,-4],[5,0],[4,-2],[4,-2],[3,-3],[4,-1],[4,-5],[-1,-3],[2,-1],[1,-3],[6,0],[2,-2],[0,-2],[4,-1],[8,-2],[6,-2],[7,-5],[2,-5],[6,-7],[9,0],[5,3],[13,-11],[-1,-4],[5,-4],[7,2],[10,0],[4,-3],[6,-6],[1,-8],[1,-7],[3,-4],[9,-5],[8,-4],[15,-1],[7,-2],[7,-8],[5,-3],[12,0],[4,-2],[10,-2],[20,-1],[8,0],[11,1],[5,3],[9,6],[7,7],[6,12],[13,11],[17,3],[6,-9],[-3,-12],[-1,-19],[3,-15],[3,-11],[8,-5],[9,27],[22,-15],[11,-15],[27,-11],[11,-14],[4,-11],[7,-16],[-3,-17],[0,-6],[6,0],[0,-17],[-10,-3],[0,-9],[9,-12],[0,-9],[-2,-11],[-3,-5],[-3,0],[-4,-1],[-1,-5],[-2,-7],[-3,-1],[-1,-6],[2,-3],[1,-5],[-2,-3],[4,-4],[2,-3],[-1,-5],[-1,0],[-5,0],[-2,-3],[-1,-6],[-3,-11],[1,-16],[0,-3],[-2,-8],[-3,-4],[-2,-8],[-3,-4],[3,-10],[2,-9],[-3,-6],[-5,2],[-2,-3],[-2,-9],[-2,-10],[-5,-7],[-2,-6],[-1,-7],[0,-5],[-1,-4],[-3,-3],[-2,-3],[-4,-5],[-2,-8],[-2,-8],[-5,-8],[-3,-8],[-1,-6],[-3,-5],[-2,-3],[-5,-5],[-3,-32],[-1,-7],[-1,-9],[9,-7],[-7,-30],[-16,8],[-3,-5],[-5,-7],[-5,2],[-10,0],[-5,4],[-7,0],[-3,-2],[-4,-4],[-11,-6],[-8,-5],[-10,2],[-8,4],[-3,9],[-5,4],[-8,2],[-5,4],[-12,0],[-7,1],[-6,5],[-10,2],[-32,4],[-23,-3],[-20,-12],[-3,-3],[-14,-24],[-9,-22],[-7,-22],[0,-8],[2,-4],[-2,-15],[-1,-22],[2,-16],[12,-36],[10,-10],[24,-12],[19,-3],[-7,18],[-17,19],[-7,14],[-3,15],[2,21],[7,9],[5,15],[10,12],[14,-1],[8,-8],[-5,-22],[-4,-12],[7,-10],[7,-5],[5,-3],[6,-6],[7,-7],[12,-9],[2,-16],[8,-7],[10,-4],[10,-11],[12,-3],[13,2],[13,-1],[5,2],[15,-2],[8,-6],[12,-5],[9,4],[14,1],[31,5],[4,4],[8,0],[17,5],[11,-1],[10,1],[9,-1],[13,4],[16,3],[10,19],[9,9],[7,15],[6,13],[6,9],[13,14],[7,16],[-4,13],[1,21],[-5,7],[-1,20],[1,4],[4,13],[9,12],[10,1],[14,5],[0,3],[4,5],[10,10],[12,5],[-1,6],[2,2],[7,1],[6,12],[3,2],[9,13],[12,5],[9,8],[4,4],[7,9],[9,7],[12,14],[5,16],[5,16],[3,13],[9,12],[5,5],[11,4],[7,5],[16,7],[12,0],[11,4],[12,10],[17,18],[10,14],[18,15],[8,7],[10,0],[13,0],[8,-1],[12,0],[8,14],[1,14],[8,16],[9,12],[17,16],[8,0],[15,1],[13,-3],[11,-4],[18,-5],[13,-11],[8,-18],[3,-14],[-4,-15],[-8,-8],[1,-24],[1,-10],[8,-5],[6,8],[11,20],[5,7],[6,10],[7,14],[6,17],[3,19],[-2,15],[1,18],[4,13],[11,17],[8,11],[8,9],[12,8],[16,0],[9,-4],[9,-5],[6,12],[4,5],[4,4],[15,23],[-1,13],[-1,9],[-1,19],[2,13],[4,9],[8,17],[5,23],[-12,28],[0,3],[6,15],[-3,4],[-7,-3],[-5,4],[-7,2],[-14,5],[-5,6],[-8,10],[-10,5],[-12,9],[-4,8],[0,24],[2,14],[-2,25],[0,14],[-3,18],[-6,18],[-5,18],[-6,24],[-18,40],[-3,45],[2,18],[1,24],[-6,23],[1,4],[-4,12],[-5,21],[0,11],[-4,5],[-3,13],[4,15],[-11,21],[1,10],[-14,36],[-5,55],[-6,7],[-8,23],[-8,17],[-3,16],[-5,16],[-9,25],[-3,30],[-6,18],[1,34],[1,20],[7,37],[7,17],[20,49],[16,42],[10,37],[10,23],[14,27],[13,22],[7,29],[4,38],[0,37],[-3,32],[-4,8],[-12,-2],[-5,1],[-3,4],[0,12],[5,7],[7,4],[-1,19],[-4,25],[-6,28],[1,33],[3,34],[4,29],[10,44],[11,46],[20,68],[9,38],[-11,9],[15,54],[13,9],[9,9],[18,31],[9,30],[8,30],[12,26],[24,66],[39,107],[19,46],[8,33],[8,24],[-1,12],[-1,12],[0,10],[-6,20],[-1,7],[-3,4],[-4,7],[-3,11],[1,18],[1,5],[-6,8],[0,7],[3,19],[-3,17],[-5,22],[-1,16],[-4,13],[-1,24],[-6,17],[-1,11],[2,4],[-12,13],[-6,7],[-5,9],[-6,8],[-13,10],[-31,1],[-5,2],[-5,3],[-14,-1],[-9,7],[-10,6],[-5,11],[-111,34],[-40,30],[-63,18],[-499,119],[7,48],[320,-81],[24,189],[-99,25],[17,127],[119,-27],[0,12],[7,15],[4,12],[4,6],[3,9],[0,8],[5,18],[4,12],[3,12],[6,18],[3,36],[0,21],[3,16],[-2,4],[-3,3],[0,14],[1,11],[1,10],[5,16],[6,7],[5,13],[1,11],[-2,9],[-5,6],[-5,5],[1,12],[1,26],[4,16],[12,91],[10,0],[3,57],[-1,19],[7,32],[3,26],[5,21],[2,21],[-1,19],[2,14],[2,22],[2,21],[2,24],[0,21],[3,26],[2,16],[3,8],[-1,8],[-12,2],[1,21],[23,-5],[3,10],[-8,5],[-12,6],[10,89],[14,3],[14,121],[3,17],[34,317],[-6,19],[-3,24],[1,14],[1,6],[9,22],[14,10],[21,0],[8,-2],[-1,13],[38,-6],[2,-13],[24,-6],[16,-9],[20,-8],[14,-13],[19,-18],[12,-15],[7,-13],[32,-11],[7,7],[6,1],[11,-3],[9,-4],[9,-4],[8,-2],[11,0],[10,-4],[26,-10],[15,-2],[14,-6],[20,-9],[10,-6],[9,-14],[11,-12],[14,-7],[14,-11],[8,-3],[6,-6],[7,-9],[3,-6],[14,-17],[8,-6],[-2,-15],[0,-6],[-2,-9],[1,-7],[2,-11],[4,-5],[2,-15],[5,-12],[4,-3],[11,-18],[1,-5],[7,-17],[8,-14],[1,-6],[7,-5],[3,-5],[3,-5],[5,-7],[6,-9],[6,-12],[3,-7],[5,-6],[3,-4],[6,-9],[11,-15],[7,-9],[7,-10],[4,-12],[5,-9],[17,-27],[11,-17],[6,-12],[3,-8],[5,-9],[9,-8],[11,-12],[8,-8],[12,-9],[11,-7],[14,-5],[20,-7],[16,-2],[20,-2],[40,-2],[30,4],[117,41],[4,5],[4,5],[10,8],[12,8],[5,5],[11,13],[2,4],[3,8],[2,4],[5,10],[8,6],[29,17],[30,25],[24,23],[22,25],[33,49],[25,38],[14,23],[16,22],[2,3],[-2,12],[4,7],[6,10],[11,10],[24,42],[14,36],[5,15],[5,19],[2,14],[-1,2],[-1,5],[0,6],[1,6],[2,3],[3,4],[6,4],[1,2],[5,7],[2,3],[2,3],[2,4],[0,2],[0,7],[0,5],[2,5],[3,3],[7,8],[9,8],[14,20],[15,30],[13,21],[15,31],[5,12],[6,13],[10,20],[11,24],[11,23],[6,19],[5,24],[0,7],[1,4],[0,3],[-1,6],[0,7],[1,6],[0,5],[2,8],[2,19],[1,5],[1,8],[0,7],[0,17],[0,15],[1,24],[2,27],[2,22],[5,23],[9,29],[8,21],[12,23],[13,25],[15,23],[1,2],[3,4],[0,2],[0,3],[1,1],[4,0],[9,11],[16,16],[15,13],[12,11],[4,4],[6,3],[2,3],[4,2],[2,1],[4,4],[1,1],[2,3],[0,2],[1,1],[2,2],[5,-1],[9,2],[6,4],[4,3],[4,3],[6,3],[5,3],[5,1],[3,2],[4,1],[4,0],[4,1],[10,0],[6,-1],[6,-3],[5,0],[6,-3],[7,-4],[8,-5],[9,-7],[11,-5],[10,-7],[5,-5],[7,-8],[8,-2],[4,-5],[8,-6],[1,-4],[2,-7],[12,-21],[2,-4],[2,-6],[5,-8],[3,-10],[3,-9],[3,-7],[5,-11],[4,-9],[4,-5],[2,-6],[2,-5],[9,-10],[2,-4],[1,-2],[2,-3],[6,-5],[2,-2],[1,-2],[-1,-6],[-1,-11],[-1,-4],[0,-9],[0,-3],[0,-11],[-1,-6],[-1,-3],[-3,-6],[0,-5],[0,-4],[-1,-5],[-2,-3],[-2,-4],[2,-9],[-2,-10],[0,-11],[1,-3],[1,-4],[-2,-6],[1,-5],[0,-3],[-1,-3],[1,-3],[3,-9],[0,-4],[1,-4],[2,-7],[3,-4],[1,-8],[-1,-2],[0,-3],[1,-2],[1,-2],[2,-4],[1,-2],[2,-3],[2,-6],[-1,-4],[0,-2],[-1,-2],[2,-3],[2,-5],[-1,-3],[1,-6],[1,-11],[2,-12],[2,-9],[5,-22],[1,-4],[1,-9],[5,-13],[4,-10],[6,-10],[5,-4],[5,-10],[3,-6],[4,-8],[5,-12],[10,-15],[2,-5],[1,-5],[2,-8],[3,-8],[1,-8],[2,-5],[2,-6],[0,-3],[1,-4],[4,-9],[3,-4],[1,-3],[2,-4],[0,-5],[0,-5],[-4,1],[-2,0],[-2,-1],[0,-10],[0,-2],[1,-6],[1,-3],[1,-3],[1,-6],[-2,-4],[0,-6],[-3,-10],[-2,-3],[-3,-5],[-3,-4],[-1,-2],[0,-2],[-5,-8],[-2,-3],[0,-3],[0,-1],[1,-3],[0,-3],[0,-3],[-4,-2],[-2,-1],[1,-2],[3,0],[6,-1],[5,0],[3,-3],[4,-1],[5,-4],[7,-4],[3,-2],[5,-2],[6,-5],[6,-6],[8,-4],[11,-1],[11,-1],[3,0],[4,1],[4,0],[2,0],[3,2],[3,0],[8,0],[3,-2],[2,-3],[3,-2],[2,-3],[3,-4],[1,-2],[24,-9],[60,-17],[41,-11],[43,-4],[11,0],[1,4],[5,0],[4,-1],[5,-1],[9,-2],[21,-4],[33,-2],[18,3],[1,0],[3,2],[1,2],[1,5],[0,2],[1,3],[5,0],[1,-1],[1,-1],[3,-2],[1,0],[1,-1],[1,0],[1,-3],[1,-1],[2,1],[1,-1],[4,1],[1,-1],[3,0],[3,2],[4,1],[2,1],[3,2],[1,2],[0,3],[2,0],[0,4],[2,2],[3,1],[3,1],[3,0],[2,-3],[3,-5],[2,-2],[9,0],[16,1],[27,6],[4,1],[2,1],[2,-1],[1,0],[1,1],[1,2],[10,2],[16,5],[29,11],[24,11],[25,13],[28,19],[5,3],[7,6],[5,0],[12,8],[18,17],[4,6],[1,5],[1,3],[5,1],[3,1],[4,1],[8,3],[14,9],[14,10],[37,30],[10,8],[47,40],[33,31],[29,32],[52,58],[38,49],[60,80],[50,71],[39,62],[46,85],[43,75],[26,50],[28,66],[23,56],[19,57],[9,37],[9,40],[11,24],[11,24],[6,12],[6,27],[7,37],[3,13],[2,19],[0,18],[0,18],[0,16],[-15,47],[-10,22],[-3,12],[-5,10],[-9,16],[-7,24],[-4,13],[-6,11],[-7,8],[-6,5],[-8,9],[-3,5],[-8,7],[-5,6],[-1,4],[-3,4],[-9,10],[-11,18],[-3,4],[-5,10],[-5,8],[-10,6],[0,2],[-7,7],[-2,6],[0,6],[-2,5],[-1,6],[-1,7],[0,3],[-2,6],[-3,5],[-2,0],[-3,2],[-3,3],[-1,6],[-3,6],[-2,0],[-3,1],[-3,11],[1,9],[-1,11],[1,5],[-1,3],[2,10],[2,6],[1,2],[0,13],[0,2],[1,5],[1,2],[-1,3],[0,5],[1,7],[0,4],[1,3],[0,4],[0,3],[0,5],[-1,3],[1,5],[-3,2],[0,3],[1,6],[-1,1],[0,6],[1,5],[1,5],[1,0],[1,1],[0,4],[2,2],[2,0],[3,0],[0,4],[0,2],[1,5],[2,2],[3,4],[2,2],[0,5],[3,3],[2,1],[2,1],[3,3],[2,4],[0,3],[0,3],[0,1],[-2,2],[-1,1],[1,3],[0,3],[0,1],[0,2],[1,2],[1,1],[2,3],[1,0],[3,0],[1,1],[4,7],[3,3],[0,2],[5,9],[5,4],[2,2],[4,4],[3,3],[2,4],[4,8],[4,4],[1,4],[3,3],[4,4],[0,1],[1,4],[0,1],[6,6],[0,1],[4,1],[2,2],[0,2],[1,7],[1,1],[2,0],[4,1],[1,1],[1,2],[-1,3],[-2,-1],[-2,1],[1,5],[2,7],[1,1],[2,0],[3,2],[1,1],[2,2],[1,1],[1,1],[1,0],[1,0],[1,-1],[2,-1],[1,-3],[2,0],[3,2],[0,1],[1,1],[1,1],[2,1],[1,0],[0,-3],[1,2],[2,1],[2,1],[1,-1],[1,-3],[2,-2],[3,4],[0,3],[2,3],[2,1],[1,2],[-2,4],[1,1],[1,2],[3,-1],[2,-4],[-2,-3],[1,-1],[3,-1],[3,2],[6,3],[0,2],[3,2],[1,3],[3,1],[2,1],[2,1],[1,-1],[3,2],[2,-1],[1,0],[2,1],[3,0],[2,-4],[2,1],[2,0],[2,-1],[0,-2],[0,-2],[2,0],[2,1],[2,4],[-1,2],[4,4],[3,1],[2,2],[3,4],[2,0],[3,4],[4,-1],[4,3],[3,1],[1,-1],[4,2],[3,2],[8,10],[1,2],[2,3],[1,1],[2,3],[4,7],[2,1],[2,4],[1,1],[0,5],[1,4],[1,1],[1,1],[2,1],[12,15],[21,35],[13,26],[8,14],[11,22],[8,25],[13,41],[18,70],[8,40],[4,20],[2,17],[1,17],[1,20],[0,16],[-2,10],[0,1],[-1,1],[-6,3],[-1,-1],[-1,-4],[-1,-1],[-1,-2],[-3,0],[-3,1],[0,4],[1,4],[1,2],[1,2],[1,2],[1,1],[-1,2],[0,2],[-1,3],[-1,0],[-5,1],[0,-1],[-1,-2],[-1,-3],[-1,-1],[-2,-1],[-1,1],[0,1],[0,3],[-1,2],[-1,2],[0,2],[-1,1],[-1,0],[-1,-2],[0,-1],[0,-2],[2,-3],[0,-2],[0,-1],[1,-2],[-1,-4],[-2,-3],[-1,-2],[-2,-1],[-1,-1],[-1,0],[-1,2],[-2,3],[-3,0],[-1,0],[-1,2],[0,2],[0,4],[-1,1],[-1,4],[-2,1],[0,2],[-1,3],[3,3],[5,0],[3,0],[1,1],[0,2],[-2,0],[-1,3],[0,3],[-2,-1],[-4,-4],[-2,-1],[-2,0],[-1,0],[-1,2],[1,6],[2,3],[0,1],[2,2],[2,1],[1,0],[1,-2],[3,2],[2,2],[2,2],[2,3],[4,0],[1,-3],[0,-4],[1,-1],[1,3],[1,2],[3,4],[1,1],[1,3],[0,3],[0,2],[-1,2],[-1,0],[-3,-1],[-2,-1],[-5,0],[-1,1],[0,3],[-1,3],[0,1],[3,4],[1,0],[2,0],[3,1],[4,0],[2,-1],[0,-2],[1,-3],[2,-1],[1,0],[1,4],[1,1],[-1,1],[-2,2],[0,3],[0,2],[3,2],[2,-2],[3,1],[1,2],[-1,1],[1,3],[1,1],[2,1],[0,3],[0,4],[2,2],[1,1],[2,3],[3,2],[1,0],[1,-2],[1,-3],[0,-2],[-1,-2],[0,-4],[0,-3],[0,-2],[1,-2],[2,-1],[1,0],[2,1],[1,4],[0,2],[0,4],[-1,0],[0,2],[2,4],[1,2],[2,2],[1,1],[1,2],[4,0],[1,-2],[2,-4],[-1,-1],[2,0],[1,0],[1,0],[2,-3],[1,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,-2],[1,-1],[1,0],[2,0],[2,0],[1,0],[2,2],[1,0],[2,-2],[1,-2],[0,-3],[-1,-1],[0,-1],[1,-2],[1,0],[1,2],[1,0],[1,-1],[0,-2],[0,-1],[-2,-1],[-1,0],[0,-1],[1,-2],[4,-2],[1,-2],[1,1],[1,1],[1,0],[3,0],[2,-2],[1,-1],[2,1],[1,2],[0,1],[0,1],[-1,0],[-1,1],[-1,2],[1,6],[3,1],[1,-1],[1,-2],[1,-1],[3,1],[1,2],[1,1],[2,0],[1,-1],[1,-3],[0,-2],[0,-2],[1,-1],[2,2],[2,0],[2,-1],[0,-1],[1,-1],[1,-2],[0,-2],[1,-2],[3,2],[1,0],[7,5],[1,1],[1,1],[0,1],[2,4],[1,1],[0,2],[-1,2],[-1,2],[0,2],[2,2],[0,2],[0,1],[0,1],[-1,2],[1,1],[0,1],[-2,0],[-1,2],[0,3],[2,1],[2,0],[1,-2],[0,-1],[0,-2],[2,-1],[2,-3],[2,-1],[4,2],[2,3],[1,2],[-1,2],[-2,2],[-2,1],[-1,1],[-1,2],[0,2],[0,2],[1,4],[1,0],[2,1],[1,0],[2,1],[1,1],[2,0],[1,1],[2,1],[1,-1],[2,1],[0,2],[-1,1],[-2,0],[0,2],[-2,3],[2,2],[2,2],[1,-2],[2,0],[2,-1],[0,-1],[2,-1],[1,1],[0,1],[2,1],[-1,5],[2,3],[0,2],[3,-1],[1,-2],[1,0],[1,2],[1,3],[2,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,3],[-1,4],[1,3],[1,1],[1,0],[2,0],[0,3],[1,1],[2,3],[2,0],[1,2],[0,1],[0,1],[-1,0],[-3,1],[0,2],[2,3],[1,1],[0,1],[1,3],[0,1],[1,0],[2,-1],[0,-1],[1,-2],[1,-1],[0,1],[2,1],[2,0],[3,-3],[0,1],[1,3],[-1,1],[-1,3],[1,2],[1,1],[3,1],[0,1],[-1,4],[1,2],[1,2],[2,0],[3,3],[1,1],[1,0],[2,-1],[0,-2],[2,-1],[1,0],[1,0],[1,-3],[1,-3],[3,-2],[3,0],[2,1],[1,2],[1,2],[1,1],[1,1],[-1,2],[-1,1],[-1,1],[-3,0],[-2,-1],[-1,1],[0,3],[1,1],[2,0],[1,0],[2,1],[2,1],[1,3],[1,1],[3,1],[0,1],[2,2],[1,0],[1,0],[1,-1],[1,-1],[1,1],[4,1],[2,0],[2,0],[2,-1],[0,-2],[1,-1],[1,-1],[3,1],[3,-1],[1,0],[2,-1],[1,-1],[3,0],[2,-1],[1,-1],[1,-2],[2,1],[1,1],[3,0],[1,-2],[2,0],[1,2],[1,0],[2,-4],[1,-2],[0,-2],[-1,-1],[1,-1],[1,-2],[1,-3],[0,-3],[0,-1],[1,-1],[1,-3],[0,-2],[0,-2],[0,-2],[1,-2],[1,2],[0,1],[1,1],[1,-1],[1,-1],[1,3],[0,2],[-2,2],[-1,3],[1,2],[1,0],[1,0],[2,3],[1,1],[2,1],[1,-2],[2,-3],[2,-1],[2,-4],[-1,-3],[0,-1],[-4,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-3],[2,0],[3,1],[1,-1],[1,-1],[1,-2],[2,-3],[1,-1],[4,0],[2,0],[2,1],[1,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[2,1],[1,0],[0,1],[2,-1],[1,-1],[0,-1],[0,-3],[1,-1],[1,-1],[1,2],[2,2],[1,2],[0,2],[0,1],[1,3],[1,2],[0,1],[-1,3],[0,1],[0,2],[0,3],[1,1],[0,3],[3,2],[1,1],[2,0],[1,-1],[3,-2],[1,0],[1,-3],[1,-1],[0,-2],[-1,-2],[-1,-2],[1,-3],[2,-1],[2,-1],[2,1],[1,2],[1,2],[2,1],[1,0],[0,1],[0,3],[1,3],[0,2],[0,1],[2,1],[2,2],[0,1],[2,2],[1,2],[2,4],[1,1],[0,1],[1,3],[-1,2],[0,1],[0,1],[2,1],[1,-1],[1,-1],[0,-3],[1,-1],[2,-1],[1,0],[1,-2],[2,-1],[1,1],[1,4],[-1,1],[0,3],[0,1],[2,2],[2,1],[0,2],[2,1],[1,0],[4,1],[1,1],[2,0],[1,1],[0,1],[1,1],[2,0],[0,2],[0,2],[2,1],[1,1],[1,0],[3,-1],[-1,-3],[2,-1],[1,-1],[2,0],[1,1],[0,2],[0,2],[1,0],[1,0],[1,2],[-1,0],[0,2],[1,2],[2,1],[1,1],[0,1],[1,1],[1,0],[1,-1],[0,-3],[1,-1],[1,-2],[0,-1],[2,0],[2,2],[0,1],[0,3],[1,1],[0,2],[-1,1],[-2,0],[-2,1],[0,1],[0,3],[1,0],[2,1],[2,-2],[2,0],[0,1],[1,1],[2,-1],[2,-2],[2,0],[1,0],[1,1],[2,1],[1,-2],[5,-1],[2,2],[6,1],[1,3],[1,1],[-1,1],[-3,0],[-3,1],[1,5],[1,5],[1,1],[1,1],[-1,4],[1,1],[1,2],[4,0],[1,-2],[0,-3],[-2,-1],[-2,0],[0,-4],[2,-2],[1,2],[2,2],[8,2],[1,-1],[4,0],[1,3],[1,3],[2,0],[2,-3],[0,-2],[0,-2],[-2,-3],[3,2],[2,5],[2,1],[3,1],[2,0],[2,-1],[1,-2],[-1,-3],[1,-4],[1,1],[7,0],[1,-1],[2,0],[2,3],[1,1],[0,2],[1,4],[1,3],[6,1],[3,-3],[1,2],[3,0],[3,-2],[1,-2],[3,-5],[1,-3],[3,-3],[16,9],[33,17],[25,4],[24,16],[16,22],[23,30],[30,36],[27,37],[23,35],[11,15],[7,10],[8,12],[8,12],[8,12],[4,7],[3,4],[4,7],[2,5],[3,5],[-2,6],[0,4],[2,3],[2,1],[4,1],[4,1],[6,4],[3,7],[5,4],[7,2],[7,6],[5,6],[5,9],[7,7],[5,5],[3,4],[4,5],[4,4],[4,4],[2,2],[3,2],[5,0]],[[439933,229835],[1,-6],[-2,-3],[1,0],[2,-4],[0,-1],[0,-5],[0,-2],[1,-2],[-1,-2],[-5,0],[0,1],[-2,0],[-4,-1],[-2,1],[-1,1],[-1,-1],[-1,-2],[-4,-2],[-1,-7],[-2,-2],[-1,1],[-3,0],[-1,-1],[-1,-2],[0,-8],[4,-8],[2,-5],[2,3],[-2,4],[0,3],[1,6],[4,-2],[1,0],[3,-7],[-2,-3],[3,-3],[2,1],[0,3],[0,2],[1,3],[-1,2],[1,4],[0,2],[1,5],[3,0],[1,-3],[2,-4],[2,-4],[-2,-3],[-3,-2],[1,-3],[2,-3],[3,-1],[1,6],[1,1],[0,7],[1,3],[2,1],[3,1],[2,1],[4,0],[2,-4],[-1,-3],[-5,-2],[-1,0],[-2,-1],[-3,-1],[-1,-3],[1,-3],[1,-1],[3,-2],[3,0],[1,2],[3,5],[1,3],[4,1],[2,0],[1,-2],[1,-2],[2,-3],[0,-3],[-1,0],[0,-3],[3,-2],[2,-1],[0,-6],[1,-3],[2,1],[4,-1],[4,-6],[-2,-3],[-2,-2],[0,-2],[2,-1],[1,-3],[0,-2],[1,-9],[1,-3],[2,-6],[6,-13],[13,-29],[7,-9],[17,-15],[6,0],[2,1],[3,-1],[2,-1],[0,-3],[3,-3],[5,-1],[7,-3],[6,-3],[10,-2],[7,-3],[14,-12],[6,-1],[3,0],[3,1],[12,2],[6,0],[4,-1],[3,-2],[7,1],[2,4],[9,0],[3,-4],[2,-6],[3,0],[1,4],[3,3],[4,-2],[0,-6],[-1,-2],[2,-5],[-3,-8],[0,-3],[0,-2],[3,-3],[0,-2],[3,-5],[2,-1],[3,-1],[5,-3],[5,-2],[5,0],[9,0],[6,3],[3,2],[3,6],[2,6],[1,7],[1,5],[4,7],[5,5],[2,1],[8,4],[2,0],[2,-1],[2,-3],[2,3],[0,4],[3,3],[4,2],[4,1],[2,1],[0,-1],[4,0],[8,0],[5,-1],[4,-3],[1,-3],[1,-4],[-1,-4],[-1,-3],[-3,-4],[0,-2],[1,-4],[-2,-3],[-1,0],[0,-5],[-1,-4],[-1,-1],[2,-8],[-1,-1],[3,0],[-2,-7],[-2,-4],[1,-3],[2,-2],[3,-1],[-2,-6],[-1,-3],[1,-2],[3,-6],[2,1],[3,3],[3,-1],[0,-2],[-1,-4],[-6,-3],[0,-6],[-2,-1],[-2,3],[-2,4],[-2,-1],[0,-4],[-4,-4],[-2,2],[-2,1],[-1,-2],[-4,-1],[-1,-1],[-3,-6],[0,-8],[1,-3],[2,-1],[3,1],[2,2],[4,4],[3,2],[10,1],[2,-2],[2,-3],[2,-5],[0,-4],[-2,-2],[-2,0],[-2,-5],[1,-8],[2,0],[-2,-6],[-4,0],[-2,-3],[-2,-7],[2,-11],[1,-4],[1,3],[1,2],[2,2],[1,-1],[3,-3],[-1,-3],[0,-2],[-3,0],[0,-3],[1,-3],[1,-2],[1,1],[3,2],[2,0],[2,-1],[1,-2],[-1,-2],[0,-2],[-2,0],[-3,-1],[2,-4],[2,-2],[1,-3],[0,-3],[0,-8],[1,-2],[-1,-5],[-1,-1],[-2,-1],[0,-2],[0,-8],[0,-1],[-1,-3],[-2,-2],[-2,-2],[-1,-3],[-1,-3],[-1,-2],[-2,-2],[-2,-3],[0,-4],[2,-5],[3,-7],[3,-3],[1,-4],[2,-3],[1,-1],[2,-3],[-1,-4],[3,-3],[0,-3],[1,-4],[5,-13],[1,-8],[-1,-3],[1,-5],[2,-4],[5,-14],[3,-5],[15,-21],[9,-13],[14,-21],[19,-25],[8,-13],[13,-25],[7,-16],[6,-12],[3,0],[6,-5],[2,-3],[3,-10],[5,-15],[13,-25],[7,-13],[3,-3],[4,0],[3,0],[4,-1],[12,-4],[4,-6],[16,-22],[18,-20],[12,-15],[3,-5],[1,-8],[1,-12],[0,-7],[6,-2],[7,-9],[20,-30],[20,-28],[22,-28],[27,-32],[6,2],[7,-3],[8,-11],[26,-31],[25,-25],[30,-31],[15,-14],[43,-35],[49,-35],[40,-23],[26,-12],[36,-14],[31,-10],[24,-7],[37,-9],[41,-6],[39,-4],[49,-6],[32,-3],[56,-2],[26,0],[42,1],[53,7],[22,4],[44,13],[50,18],[43,22],[50,32],[41,31],[29,28],[20,24],[10,16],[0,3],[1,6],[2,5],[5,5],[-1,3],[-2,4],[-1,3],[1,3],[1,3],[-2,6],[1,6],[-3,4],[-2,2],[-2,4],[0,13],[-2,4],[-2,4],[0,7],[1,6],[0,2],[-1,9],[-2,4],[-3,-3],[-2,2],[-1,6],[-1,2],[-1,2],[-1,6],[-2,12],[1,5],[1,2],[-2,4],[0,8],[-2,5],[0,2],[-2,5],[-1,5],[-1,4],[0,1],[-2,6],[-1,2],[-3,-2],[-7,3],[-2,1],[0,-6],[1,-1],[-2,-4],[-2,0],[-2,-6],[-1,-4],[-3,2],[-2,3],[-1,6],[-3,2],[-2,8],[1,9],[1,3],[7,0],[3,-2],[3,4],[-4,4],[-2,5],[2,5],[3,5],[1,5],[3,2],[2,3],[0,2],[-1,2],[0,3],[2,4],[6,2],[2,-2],[1,-5],[1,0],[2,0],[2,1],[2,1],[4,4],[0,5],[0,7],[0,5],[2,4],[3,8],[-1,5],[0,9],[2,8],[0,2],[-3,5],[1,3],[5,4],[1,3],[-1,3],[-3,8],[1,6],[1,5],[0,8],[3,9],[2,4],[6,11],[5,9],[8,10],[6,9],[12,9],[6,5],[19,10],[3,4],[10,10],[10,2],[5,1],[3,6],[10,6],[3,-2],[4,0],[7,-2],[5,-7],[-1,-4],[-1,-8],[-2,-4],[-7,0],[-4,-4],[0,-10],[3,-4],[3,-1],[5,-2],[4,-4],[4,-3],[9,-22],[3,-10],[0,-16],[0,-7],[3,-16],[1,-14],[-1,-3],[-6,-8],[-1,-8],[0,-12],[2,-12],[4,-8],[8,-10],[8,-2],[5,1],[5,0],[6,-6],[8,-7],[3,-8],[4,-11],[0,-12],[-1,-7],[0,-6],[2,-5],[-6,-9],[0,-7],[2,-7],[-2,-7],[-3,-4],[-1,-1],[-2,-6],[-4,-8],[-2,1],[-4,-11],[1,-5],[-1,-8],[5,-5],[3,1],[3,9],[13,-2],[5,-2],[2,-5],[3,-7],[3,0],[8,-10],[10,-2],[2,-2],[3,-11],[2,-5],[3,-14],[2,-12],[1,-5],[0,-7],[-1,-9],[5,-4],[1,-4],[10,-1],[5,-4],[2,-5],[0,-3],[-3,-6],[-1,-4],[2,-6],[4,0],[5,-3],[2,-6],[5,-3],[0,-7],[-2,-6],[-5,1],[-2,4],[-8,2],[-1,-6],[-5,-2],[-1,-13],[-1,-3],[0,-5],[3,-10],[3,-7],[-2,-13],[0,-8],[5,-6],[-3,-12],[2,-2],[3,-5],[1,-2],[9,-1],[4,-6],[1,-4],[-1,-3],[1,-5],[2,-1],[-1,-5],[0,-2],[1,-3],[5,-4],[1,1],[3,-1],[4,-2],[1,-6],[0,-4],[3,-2],[1,-3],[3,-5],[1,-6],[0,-10],[2,-17],[-1,-8],[0,-7],[3,-2],[1,-1],[6,-9],[4,-2],[3,-1],[8,-7],[0,-12],[-1,-3],[-2,-4],[-1,-2],[-2,-2],[-4,-2],[-5,-1],[-3,0],[2,-4],[3,-3],[-3,-7],[2,-4],[6,0],[2,-4],[1,-5],[-2,-3],[2,-1],[2,-5],[0,-3],[-2,-4],[4,-5],[2,-1],[0,-5],[1,-15],[-1,-4],[-2,-4],[4,-5],[0,-3],[-1,-5],[-1,-7],[-1,-2],[1,-8],[1,-7],[3,-2],[1,-4],[-1,-5],[2,-6],[3,-3],[-1,-8],[-2,-5],[-3,-1],[-1,-1],[-2,-8],[-2,-7],[0,-6],[-3,-4],[-2,-6],[1,-3],[0,-4],[-1,-1],[-2,-2],[-1,-6],[-2,-2],[-2,-2],[-2,-1],[-2,-8],[0,-5],[0,-7],[-2,-3],[-2,-2],[-3,-2],[-3,-6],[-2,-6],[-3,-4],[2,-4],[1,-3],[-1,-3],[-2,1],[-4,2],[-1,0],[-2,-2],[-2,-2],[-1,-1],[0,-1],[-2,-1],[-6,-3],[-2,-1],[-6,-1],[-2,-2],[-3,-1],[-2,-2],[-4,0],[-3,0],[-4,-4],[-3,-2],[-1,-1],[-3,0],[-1,0],[-3,-2],[-1,-2],[-1,-3],[-1,-5],[-2,-1],[-3,-2],[-4,-2],[-4,-3],[-6,-4],[-3,0],[-3,-3],[-2,-3],[-1,-2],[-3,-4],[-3,1],[-2,0],[-3,-1],[-3,-2],[-5,-1],[-4,-4],[-3,1],[-2,3],[-4,-1],[-6,0],[-2,0],[-6,-3],[-2,0],[-6,-5],[-9,-6],[-3,-8],[-2,-4],[-5,-3],[-6,-8],[-3,-4],[-2,-7],[1,-6],[2,-8],[-4,-4],[-1,-4],[-3,-3],[-3,0],[-3,-6],[-1,-7],[-2,-6],[-1,-2],[-6,-3],[1,-4],[0,-10],[-3,-3],[-5,-4],[3,-4],[-7,-5],[-2,-1],[-4,0],[-2,-1],[-3,-5],[-3,-1],[-2,-4],[-2,-2],[-1,-6],[-1,-3],[-4,-4],[-2,-1],[-4,-6],[0,-2],[-4,-11],[-3,-9],[-3,-11],[2,-8],[1,-3],[5,-5],[3,-4],[1,-3],[0,-7],[0,-3],[-1,-9],[-1,-4],[-5,-4],[-1,-2],[-2,-5],[-4,-3],[-1,0],[-2,-9],[2,-6],[-3,-4],[-4,-4],[-5,0],[-2,1],[-7,4],[-4,0],[-1,-4],[-3,-3],[-1,0],[-2,-8],[-2,-2],[-4,-1],[-3,-1],[-2,-4],[-5,-4],[-2,-3],[-1,-3],[-5,-2],[-2,2],[-3,-2],[-2,-1],[-3,-1],[-5,1],[-3,2],[-2,3],[-2,1],[-3,0],[-3,0],[-1,3],[-4,1],[-1,4],[0,4],[-3,2],[-7,1],[-2,1],[-4,1],[-3,1],[-2,-5],[1,-3],[2,-4],[-1,-6],[-2,-3],[1,-4],[0,-3],[-1,1],[-1,0],[-5,-2],[-2,-2],[-2,-1],[-4,2],[-3,-4],[-10,6],[-2,5],[-4,1],[-5,1],[-5,4],[-2,0],[-4,0],[-2,2],[-2,-2],[-2,-1],[-3,-2],[-1,-1],[-1,-1],[-6,-4],[-2,-2],[-7,-5],[-3,-4],[0,-7],[-1,-2],[-3,-3],[-4,0],[-1,1],[-5,-1],[-1,-2],[-3,-1],[-2,2],[-4,0],[-5,0],[-1,-3],[2,0],[2,-2],[0,-5],[0,-3],[-3,-3],[-2,0],[-2,0],[-2,0],[-2,1],[-2,4],[-1,2],[-1,1],[-1,3],[0,5],[-3,0],[-3,-2],[-1,-2],[1,-3],[0,-3],[-2,-1],[0,-4],[-2,-2],[-1,0],[-2,1],[0,3],[0,2],[-1,2],[-1,1],[-2,0],[-2,0],[-1,-1],[-2,-1],[-3,-2],[-2,-1],[-2,0],[-1,1],[-2,2],[-3,-1],[-7,0],[-4,0],[-5,2],[-4,2],[-4,0],[-2,-4],[-4,-1],[-3,0],[-3,-3],[-2,-3],[-2,-4],[-2,-4],[-3,-2],[-4,-4],[-6,0],[-5,-3],[-1,-1],[0,-9],[0,-3],[-1,-1],[-3,-3],[0,-1],[-3,-1],[-1,-2],[-1,-3],[-2,-1],[-3,-2],[-3,0],[0,-5],[-1,-2],[-3,-1],[-3,0],[-5,0],[-5,0],[-7,0],[-6,0],[-6,-4],[-6,-4],[-6,-2],[-8,-3],[-5,-1],[-7,0],[-9,0],[-25,-1],[-10,0],[-6,1],[-11,0],[-9,0],[-5,-1],[-3,2],[-3,2],[-8,6],[-4,4],[-1,4],[-3,3],[-5,4],[-4,0],[-3,0],[-10,2],[-5,5],[-10,11],[-4,5],[-12,8],[-14,13],[-5,5],[-9,4],[-8,1],[-8,-2],[-1,-3],[1,-5],[1,0],[1,-4],[0,-1],[-1,-2],[-2,-4],[1,-1],[3,-2],[-2,-6],[-2,-2],[-3,2],[0,4],[1,2],[-1,1],[-1,2],[-1,4],[0,2],[0,4],[1,4],[-3,0],[-4,1],[-1,-3],[-1,-3],[-2,-3],[-6,0],[-2,-2],[-1,-2],[0,-5],[-2,-4],[-2,0],[-3,3],[-1,4],[0,4],[-1,0],[-2,1],[-9,0],[-3,0],[-9,7],[-4,2],[-7,7],[-5,4],[-5,3],[-8,5],[-12,6],[-11,2],[-11,1],[-5,1],[-14,-2],[-59,-21],[-138,-54],[-132,-48],[-100,-40],[-60,-25],[2,-4],[3,-3],[-11,-17],[-5,-1],[-12,-26],[-8,-19],[2,-8],[-3,-8],[-4,-6],[-3,-2],[-2,-1],[-2,-1],[-2,0],[-4,0],[-2,1],[-1,-6],[-3,0],[-3,2],[-5,-4],[-11,-1],[-3,2],[-2,4],[-4,-2],[-2,-1],[-2,-1],[-2,-4],[-45,3],[-2,6],[-2,3],[-3,2],[-3,3],[-1,2],[-3,3],[-5,29],[-6,-4],[-5,-3],[-4,3],[-3,0],[-3,0],[-5,1],[-3,1],[-4,-2],[-5,-3],[-3,1],[-6,0],[-4,3],[-6,1],[0,3],[-4,-2],[-1,-1],[-2,0],[-10,-1],[-4,1],[-1,6],[-1,8],[5,8],[1,1],[-2,1],[-5,-1],[-2,-5],[-4,-2],[-5,-3],[-5,-1],[-4,8],[1,7],[2,7],[-2,5],[1,4],[3,14],[4,3],[5,1],[9,1],[1,-6],[8,-2],[2,3],[0,5],[-2,3],[-3,1],[-1,6],[0,6],[-3,8],[-2,4],[-6,10],[-3,2],[-5,-3],[-4,0],[-5,0],[-8,-2],[-7,2],[-5,8],[0,11],[-1,5],[-7,6],[-3,-2],[-4,1],[-4,2],[-10,0],[-8,-1],[-1,-5],[-4,-6],[-7,-5],[-4,-3],[-6,0],[-5,0],[-5,2],[-6,3],[-5,1],[-3,4],[-5,-1],[-4,-3],[-12,-6],[-10,0],[-10,9],[-9,20],[-9,5],[-5,-2],[-9,-5],[-10,-2],[-14,8],[-16,-6],[-5,2],[-11,0],[-5,6],[-6,8],[-12,9],[-6,14],[-3,15],[-3,4],[-7,10],[-9,23],[-7,12],[-8,3],[-9,8],[-6,7],[-2,12],[-4,8],[-6,11],[-5,7],[-7,7],[-4,5],[-6,12],[-8,20],[-7,6],[-2,11],[-2,8],[-5,4],[-3,3],[0,7],[-1,13],[-3,5],[-2,9],[-4,2],[-2,-4],[-3,-4],[2,-3],[1,-4],[-1,-4],[-3,-2],[-1,-1],[-4,1],[-2,3],[-3,-2],[-5,0],[-1,2],[-2,4],[-1,3],[-1,4],[-1,6],[-2,5],[-1,4],[-3,0],[-1,-1],[-3,-8],[-3,2],[-2,-2],[-4,-6],[-2,0],[-3,0],[-4,0],[-4,-2],[-1,1],[-1,2],[-1,0],[0,5],[1,9],[1,2],[3,0],[3,-1],[2,-4],[1,0],[2,2],[1,3],[-2,5],[0,3],[2,3],[1,4],[-3,2],[-3,2],[-3,2],[-1,2],[-2,6],[0,6],[2,3],[6,4],[5,0],[6,-1],[3,-1],[3,-5],[1,1],[1,3],[6,0],[2,3],[-1,5],[0,2],[3,2],[0,4],[0,1],[3,7],[2,1],[2,-1],[1,0],[2,-1],[0,5],[1,4],[-1,6],[2,1],[2,0],[0,1],[1,6],[1,4],[0,3],[0,3],[-1,1],[0,4],[1,2],[3,4],[-1,3],[2,6],[2,0],[1,2],[0,8],[-1,1],[-2,-1],[-7,-1],[-3,0],[-2,2],[0,4],[3,3],[0,8],[0,3],[0,3],[2,2],[2,3],[-1,3],[0,3],[2,4],[3,2],[7,1],[2,-2],[1,-2],[2,2],[3,3],[0,2],[1,2],[1,4],[2,4],[4,2],[1,-2],[2,1],[1,4],[-2,4],[-2,4],[0,5],[4,5],[3,2],[0,8],[0,6],[2,4],[1,4],[-3,4],[-1,3],[0,6],[1,8],[-1,4],[-1,7],[2,7],[3,3],[2,1],[1,5],[-1,0],[-2,1],[-1,2],[1,3],[2,3],[1,3],[3,0],[4,-3],[0,-3],[2,0],[1,2],[4,2],[3,-1],[1,4],[0,1],[2,2],[3,0],[3,-2],[2,3],[1,3],[-1,3],[3,3],[3,9],[0,9],[0,10],[0,15],[0,5],[-1,6],[-1,7],[0,6],[-2,5],[-1,3],[-1,4],[1,1],[2,11],[-1,4],[1,6],[0,8],[0,6],[3,4],[0,3],[0,1],[-1,2],[1,4],[4,2],[2,2],[3,0],[2,-1],[2,-2],[-1,-3],[2,-3],[2,1],[1,2],[2,3],[1,1],[2,4],[4,5],[3,0],[5,3],[4,1],[-1,6],[2,7],[-4,3],[-1,4],[0,7],[2,8],[1,4],[1,5],[3,12],[4,10],[4,16],[1,20],[-1,9],[2,13],[3,21],[2,27],[0,18],[0,50],[0,22],[-2,14],[-1,13],[-2,14],[1,21],[0,29],[-1,25],[-3,41],[-8,40],[-9,44],[-17,79],[-17,59],[-13,29],[-13,26],[-16,27],[-8,13],[-8,6],[-20,-2],[2,-3],[-2,-2],[-4,2],[-1,5],[-1,-1],[-5,3],[-4,-8],[-6,-1],[-5,-1],[-3,-3],[0,-6],[-1,-4],[-4,-3],[-3,0],[-6,-3],[-3,-5],[0,-2],[-4,-1],[-2,4],[-2,0],[-2,0],[-2,-2],[-1,-5],[-1,-1],[-4,-5],[1,-2],[0,-1],[-1,-2],[-2,-1],[0,-2],[-2,-2],[-5,2],[0,2],[-2,-4],[-2,-2],[-3,-2],[-3,-3],[-6,-1],[1,2],[1,3],[1,5],[6,5],[0,4],[1,2],[2,2],[0,2],[-5,3],[-3,1],[-4,-1],[-6,1],[-1,-1],[-6,-3],[-2,3],[-8,-1],[-4,-6],[-2,-2],[-3,-5],[-3,1],[-3,2],[-2,1],[-5,0],[-2,-1],[-1,-2],[2,0],[4,-1],[0,-3],[-1,-2],[-1,-1],[-2,0],[-2,-1],[-3,1],[-1,1],[-6,1],[-1,4],[0,2],[1,2],[-2,2],[-2,3],[-3,4],[-2,2],[-4,-1],[-6,0],[-1,-1],[-1,-2],[-2,-1],[-4,-4],[-2,1],[-1,3],[-3,1],[-1,-2],[-1,-3],[0,-2],[2,-1],[2,-1],[0,-3],[-2,-3],[-1,-1],[-2,-2],[-2,2],[1,3],[-1,2],[-6,0],[-2,3],[-2,-2],[-5,2],[-2,-2],[-1,-2],[-3,0],[-3,-1],[-2,-1],[-3,3],[-3,-1],[0,1],[-2,-3],[-1,-1],[-2,0],[-1,1],[-2,3],[-2,1],[-1,0],[-6,0],[-1,-1],[1,-6],[1,-4],[1,-3],[-2,-2],[-4,0],[-4,1],[-1,3],[-1,1],[-5,-2],[-4,0],[-4,0],[-2,-2],[-2,-5],[-6,-1],[-4,2],[-5,-4],[-1,-3],[-2,0],[-4,2],[-2,1],[-2,-2],[-5,-2],[-2,-3],[-3,-4],[-3,-3],[-1,-3],[1,-2],[2,-2],[0,-1],[1,-2],[0,-3],[-4,-1],[0,-7],[-1,-5],[-2,-2],[-3,-2],[-2,-3],[-1,-7],[-3,-2],[0,-6],[-3,-3],[-3,-1],[-4,1],[-3,-6],[-3,-1],[-2,2],[0,6],[-3,-4],[-2,1],[-1,4],[-4,3],[-2,-1],[-2,-5],[-4,-4],[-5,-2],[-4,0],[-6,1],[-1,3],[-5,6],[0,13],[-2,3],[-2,1],[-5,-3],[-7,10],[-4,2],[-10,6],[1,7],[-1,4],[1,8],[0,6],[5,1],[6,2],[3,6],[1,3],[-2,6],[-1,8],[-1,1],[-3,-1],[-2,-4],[0,-2],[1,-3],[0,-4],[-2,-3],[-4,-2],[-4,1],[-2,3],[0,3],[3,2],[0,2],[-1,2],[1,3],[3,2],[0,3],[-1,5],[1,5],[0,3],[-3,0],[-2,3],[0,2],[-3,1],[-3,1],[-2,4],[0,2],[1,5],[-1,4],[-3,1],[-3,2],[0,3],[-2,2],[-2,2],[-3,-4],[-4,-2],[-5,2],[-2,3],[-2,1],[-3,-2],[-2,1],[-4,2],[-2,2],[-1,4],[-3,2],[-5,2],[-5,1],[-1,3],[2,7],[-3,1],[-1,1],[-2,3],[0,6],[1,5],[2,5],[4,2],[3,1],[1,1],[0,3],[-1,6],[0,4],[0,3],[2,3],[2,2],[0,3],[1,4],[1,2],[2,1],[2,0],[2,3],[1,7],[-1,6],[1,3],[2,5],[5,3],[2,0],[6,1],[1,2],[3,4],[0,4],[2,4],[2,3],[-1,2],[-4,-2],[-2,2],[2,8],[4,1],[2,-2],[1,-2],[4,3],[1,3],[3,-3],[1,5],[5,2],[3,0],[-2,-5],[1,-7],[1,-2],[3,-1],[5,1],[4,1],[4,-2],[5,-2],[3,-7],[4,4],[2,3],[5,0],[2,-1],[4,4],[1,3],[1,6],[0,7],[1,2],[-3,2],[0,6],[1,5],[-2,2],[-2,2],[0,2],[1,2],[-2,5],[1,4],[3,1],[3,-2],[3,3],[4,-2],[3,1],[2,0],[3,5],[3,1],[6,-3],[1,-4],[4,1],[1,1],[2,2],[5,7],[-2,6],[-3,3],[-2,0],[-1,4],[-1,4],[0,3],[-1,5],[0,6],[3,1],[4,-4],[1,-3],[2,0],[1,2],[4,-3],[3,-2],[3,1],[1,1],[-1,5],[-2,3],[-3,1],[-1,4],[0,5],[3,5],[2,1],[4,-2],[5,-4],[2,3],[0,1],[0,5],[-1,4],[-3,1],[-3,4],[1,4],[1,1],[1,2],[0,2],[-2,3],[0,3],[0,5],[2,4],[0,5],[1,0],[0,5],[3,1],[1,0],[1,-2],[2,-2],[2,2],[0,3],[1,0],[3,1],[2,1],[0,2],[3,1],[2,0],[3,-2],[2,-1],[1,-3],[3,-1],[0,1],[0,3],[1,2],[1,3],[3,5],[4,4],[4,4],[1,7],[2,6],[1,9],[0,6],[-1,9],[-1,4],[3,7],[0,3],[4,2],[2,2],[1,2],[1,7],[1,6],[-1,3],[-1,1],[-1,2],[2,8],[3,1],[3,-1],[1,-3],[2,1],[3,6],[3,4],[5,4],[2,11],[-2,5],[2,8],[2,4],[-2,7],[2,4],[4,6],[6,5],[5,7],[1,4],[4,4],[4,1],[7,1],[1,6],[0,5],[5,11],[6,7],[6,6],[6,4],[5,4],[6,8],[4,7],[14,15],[5,6],[5,4],[5,6],[4,6],[5,2],[19,1],[2,2],[4,2],[5,2],[3,-1],[4,2],[4,1],[10,0],[2,3],[3,0],[4,7],[4,4],[3,0],[4,3],[7,2],[7,1],[10,7],[7,2],[2,7],[7,3],[6,-1],[2,4],[2,1],[11,0],[3,-1],[3,-1],[6,4],[8,-1],[1,1],[3,0],[3,2],[6,4],[2,1],[3,0],[1,-3],[0,-2],[3,0],[2,-2],[2,-1],[3,-2],[1,2],[-1,3],[0,2],[1,2],[2,-1],[1,1],[-1,3],[0,1],[2,2],[4,3],[4,1],[2,-2],[-3,-4],[-4,-3],[-2,-2],[1,-2],[0,-1],[3,-3],[4,1],[4,1],[4,5],[0,3],[-1,4],[1,2],[2,4],[3,2],[5,0],[4,0],[1,1],[2,0],[3,-1],[1,-2],[0,-2],[0,-2],[0,-4],[1,1],[2,4],[1,1],[1,1],[0,3],[1,3],[3,3],[3,-2],[0,-3],[-2,-3],[0,-1],[-1,-2],[1,-2]],[[451488,230037],[1,-3],[1,1],[6,0],[1,1],[2,-2],[1,-3],[0,-2],[2,0],[2,1],[1,-1],[1,0],[3,0],[1,-3],[0,-2],[0,-1],[2,-1],[3,-3],[1,-2],[-1,-2],[3,-5],[2,0],[2,0],[2,0],[3,-2],[2,0],[3,-2],[2,-1],[1,-2],[2,-2],[0,-3],[2,-2],[0,-2],[0,-7],[0,-2],[0,-3],[-1,-3],[-2,-2],[-4,-1],[-2,-5],[-2,-2],[-3,-2],[-1,1],[-2,3],[-1,3],[1,3],[-5,2],[-2,2],[-2,4],[-1,-1],[-3,-1],[-4,1],[-2,-2],[-1,-2],[-1,-2],[0,-3],[0,-4],[1,-3],[-1,-6],[1,-2],[-1,-4],[-1,-2],[-3,-3],[0,-3],[-1,-3],[-3,0],[-3,0],[-6,-2],[-2,2],[-3,2],[-2,-1],[-1,-2],[-1,-6],[2,-3],[0,-2],[-2,-2],[1,-2],[0,-6],[-1,0],[-2,-3],[-3,0],[-3,-1],[-3,-1],[-3,0],[-2,0],[-1,2],[-2,1],[-4,-1],[-2,3],[-1,2],[-1,3],[-1,2],[-3,0],[0,-1],[-1,-2],[0,-1],[-1,-3],[-1,0],[-1,0],[-3,-2],[-4,-1],[-2,0],[-2,0],[-1,1],[-3,-2],[-1,-1],[-3,-3],[0,-2],[-3,-2],[-3,0],[-1,-1],[-1,-3],[1,-4],[2,-2],[0,-4],[1,-4],[0,-1],[0,-2],[1,-2],[-1,-2],[0,-1],[0,-3],[-1,-3],[-3,-5],[-1,-2],[-1,-1],[-2,-1],[1,-3],[-1,-3],[-1,-2],[-2,-2],[-1,0],[-2,-1],[-2,0],[-2,-1],[-3,-2],[-1,-2],[-1,-2],[-3,-3],[-2,-3],[0,-1],[-1,-3],[1,-2],[0,-1],[2,-2],[2,-1],[1,-1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-3],[0,-3],[-1,-5],[1,-4],[-1,-1],[-1,-1],[-1,-2],[0,-3],[-1,-2],[-1,0],[-2,-1],[0,-4],[0,-1],[-2,-3],[-1,-1],[-3,-5],[-1,-3],[-1,0],[-1,2],[-1,3],[-1,2],[-2,3],[-3,2],[-1,1],[-4,-1],[0,-2],[1,-8],[0,-1],[-2,-3],[-1,-1],[-2,0],[-2,0],[-1,-3],[0,-2],[0,-3],[1,-1],[0,-3],[-1,-3],[-1,-1],[0,-3],[-2,-4],[-1,-3],[-1,-5],[-3,-4],[0,-2],[-1,-2],[-2,-5],[0,-1],[0,-5],[-1,-5],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-2,0],[-1,1],[-1,1],[-3,0],[-1,-3],[-1,-1],[1,-5],[1,-5],[-1,-3],[0,-2],[-1,-2],[-2,-2],[-2,-2],[0,-3],[0,-4],[1,-4],[-1,-3],[-3,0],[-1,-2],[0,-2],[-1,0],[-2,0],[-1,-2],[-2,1],[-1,2],[-1,3],[-1,3],[0,2],[-3,1],[-2,1],[-6,0],[0,1],[0,4],[0,3],[2,4],[0,4],[-3,10],[1,1],[2,2],[0,3],[0,3],[2,4],[0,2],[1,6],[-2,4],[-2,1],[-2,4],[2,4],[1,3],[0,3],[0,4],[-2,3],[-2,1],[-1,0],[-3,-1],[-1,0],[-2,-3],[-1,-1],[-2,-2],[-1,-2],[0,-3],[-1,-2],[-2,-2],[-4,0],[-2,1],[-2,3],[-2,1],[-4,1],[-6,-2],[-1,1],[-1,5],[0,4],[2,3],[3,3],[3,3],[2,3],[1,3],[3,4],[1,5],[2,3],[3,3],[0,3],[1,4],[-2,6],[0,3],[1,5],[0,2],[1,6],[1,4],[1,2],[2,5],[0,3],[1,2],[1,4],[2,3],[3,2],[3,1],[2,1],[4,1],[5,-3],[1,-3],[0,-3],[2,0],[0,-2],[0,-1],[2,0],[1,-2],[1,-1],[1,2],[0,2],[1,2],[2,0],[2,-2],[3,-1],[2,2],[0,2],[0,4],[0,4],[1,2],[4,1],[2,-2],[0,-3],[0,-4],[1,-3],[1,-3],[0,-1],[4,-8],[1,-2],[2,-6],[0,-2],[0,-1],[-1,-3],[0,-3],[0,-5],[0,-2],[0,-1],[1,0],[2,0],[1,3],[2,2],[3,1],[1,0],[2,-1],[3,-3],[1,0],[2,1],[3,-1],[1,2],[0,3],[0,3],[-3,5],[-4,0],[-2,2],[1,4],[0,2],[-2,4],[-1,4],[1,4],[0,2],[-1,2],[-5,2],[-4,5],[0,4],[1,6],[0,3],[0,4],[0,4],[2,3],[1,1],[3,-1],[0,1],[2,4],[0,3],[0,6],[1,3],[3,2],[2,0],[2,-2],[5,-4],[1,1],[0,3],[1,3],[1,2],[1,3],[4,3],[-1,2],[0,4],[-1,3],[0,3],[-1,2],[0,2],[1,3],[0,2],[1,3],[-1,3],[-1,2],[-2,0],[-2,1],[-1,0],[-2,1],[-2,1],[-2,1],[-1,2],[0,3],[0,4],[0,2],[0,3],[-2,6],[-1,2],[-2,7],[2,3],[2,2],[2,2],[-1,2],[2,2],[3,2],[2,0],[1,1],[0,2],[2,1],[0,1],[0,1],[1,2],[2,0],[0,2],[1,2],[1,2],[3,3],[4,3],[1,1],[7,-1],[3,-2],[2,-5],[1,-3],[3,1],[1,3],[-1,3],[3,3],[0,2],[3,0],[8,1],[7,0],[1,1],[4,2],[1,1],[1,3],[3,4],[5,0],[1,0],[2,3],[7,3],[2,-1],[3,3],[1,2],[3,3],[3,1],[1,2],[2,1],[1,0],[6,4],[2,2],[2,2],[1,-1],[1,-2],[0,-3],[1,0],[1,-1],[2,1],[1,0],[1,1],[0,2],[-1,2],[-1,-1],[-2,2],[1,3],[3,2],[1,1],[1,1],[3,1],[4,-1],[3,-3],[-2,-1],[-1,0]],[[450936,230286],[-1,-2],[4,0],[7,1],[4,0],[6,2],[5,-1],[3,0],[2,1],[3,-1],[4,0],[4,0],[2,0],[3,-3],[2,-4],[3,4],[1,1],[2,2],[5,-2],[3,-3],[1,-6],[0,-5],[-1,-3],[-2,-2],[-3,-3],[0,-1],[0,-3],[2,-5],[2,-1],[0,-2],[2,-3],[3,-3],[2,-3],[2,-5],[0,-5],[2,-3],[0,-4],[0,-5],[1,-3],[2,-2],[0,-5],[-3,-5],[1,-6],[0,-4],[2,-2],[0,-6],[-3,-3],[0,-8],[-2,-7],[4,-3],[0,-6],[3,-4],[0,-3],[1,-2],[4,0],[2,3],[3,2],[0,1],[-1,3],[0,1],[-2,4],[2,3],[4,2],[1,-2],[2,0],[1,0],[3,3],[2,1],[2,0],[2,0],[1,0],[1,-1],[0,-4],[-2,-3],[-1,-1],[-2,-4],[1,-7],[-2,-3],[-3,3],[-3,5],[-3,0],[-1,-1],[1,-3],[-1,-5],[0,-6],[-1,-2],[-5,-2],[-1,-6],[-8,-4],[-2,-4],[-3,-4],[-2,-7],[-1,3],[-3,0],[-7,-7],[-4,4],[-2,-2],[0,-4],[3,0],[0,-5],[-2,-3],[1,-4],[0,-5],[-2,0],[-5,0],[-2,7],[-2,-2],[-3,-1],[-5,4],[-2,5],[-3,0],[-6,-2],[-5,0],[-3,-4],[1,-6],[0,-3],[-1,-3],[-3,-2],[-1,-1],[-4,4],[1,6],[-2,4],[-1,0],[-5,2],[-5,0],[-1,-3],[-9,-1],[0,-2],[-2,-1],[-2,-3],[0,-3],[0,-2],[-2,-2],[-2,-3],[-3,-2],[-1,-2],[-2,-3],[-1,-1],[-3,-5],[-2,0],[0,-5],[-1,0],[-3,4],[-3,3],[0,2],[0,4],[-7,-4],[-2,-4],[-1,-2],[-8,-2],[-1,-1],[-3,-3],[-3,-1],[-1,-2],[-5,-2],[0,1],[-1,0],[-1,2],[-3,0],[-3,1],[-3,7],[-2,5],[-1,3],[-1,4],[0,1],[-1,3],[-1,5],[2,4],[2,7],[-3,7],[2,7],[-3,0],[0,2],[0,4],[2,7],[1,2],[0,5],[-2,3],[2,1],[0,7],[-5,4],[-4,4],[0,7],[0,4],[0,6],[3,3],[7,3],[0,5],[0,3],[0,6],[1,4],[2,2],[5,3],[4,-2],[3,3],[0,4],[0,5],[-2,3],[1,3],[5,5],[6,1],[2,-1],[4,-2],[1,2],[1,6],[4,6],[4,4],[2,7],[4,5],[4,4],[0,1],[-1,6],[4,2],[3,-2],[6,4],[1,1],[2,6],[4,3],[2,2],[2,4],[0,1],[-5,3],[-3,-1],[-2,1],[-1,6],[0,2],[1,4],[6,3],[5,3],[5,0],[3,-1],[3,-3],[1,-5]],[[437652,230321],[-7,-5],[-6,9],[4,13],[9,16],[7,-1],[6,-12],[-2,-6],[-1,-4],[-10,-10]],[[437745,230559],[-1,-2],[-8,3],[-8,1],[-6,11],[1,13],[3,7],[9,11],[5,0],[-1,7],[-2,5],[1,3],[5,7],[9,5],[6,-3],[0,-10],[-5,-8],[-4,-3],[-1,-3],[-2,-10],[1,-7],[1,-9],[4,-4],[-3,-10],[-4,-4]],[[437982,230607],[6,-6],[-6,-15],[-2,-35],[11,-17],[4,-32],[-4,-30],[9,18],[25,9],[2,-29],[5,-35],[4,-12],[2,-35],[-6,-17],[-4,-33],[-19,12],[-8,-3],[-8,-33],[-2,-29],[-2,-21],[-21,-15],[-14,-9],[-36,-35],[-12,-4],[-11,0],[-16,9],[-17,29],[-11,20],[-13,32],[-4,9],[-4,8],[-9,6],[-12,9],[-7,8],[-23,15],[6,52],[2,27],[0,17],[8,12],[6,6],[23,21],[4,3],[4,15],[4,9],[-8,17],[-17,17],[12,33],[10,23],[9,12],[12,-5],[15,12],[19,0],[10,6],[34,0],[12,1],[-15,32],[0,14],[23,9],[25,-14],[4,-8],[1,-50]],[[437772,230698],[3,-7],[4,1],[6,4],[9,0],[19,-1],[5,-6],[-1,-7],[0,-8],[8,-6],[8,-5],[1,-4],[-8,-8],[-5,-2],[-6,-5],[-7,2],[-5,2],[-7,-4],[-9,6],[-7,5],[0,8],[-2,5],[-3,6],[-5,1],[-10,0],[-5,1],[-3,5],[-4,12],[12,8],[11,-2],[1,-1]],[[437838,230736],[4,-7],[3,2],[7,-9],[1,-8],[-4,-5],[-4,0],[-9,5],[-5,12],[0,9],[-7,10],[2,7],[2,5],[-3,7],[0,3],[-3,5],[0,10],[4,7],[4,-4],[3,-11],[8,-3],[1,-6],[0,-6],[-5,-6],[-1,-4],[3,-6],[-1,-2],[0,-5]],[[437612,230792],[2,-7],[8,0],[4,-3],[3,-9],[-7,-5],[-4,-2],[-1,-4],[1,-6],[3,-2],[0,-5],[-1,-9],[-3,-5],[-2,-5],[-5,-3],[-5,1],[-1,3],[-4,4],[-5,-3],[-3,-1],[-1,1],[0,9],[-3,0],[-4,-5],[-3,-8],[-2,-5],[4,-9],[1,-3],[0,-5],[-4,-2],[-4,2],[-6,0],[-7,0],[-5,4],[-1,2],[2,13],[2,8],[-1,5],[-5,2],[-6,-3],[-5,4],[-1,4],[0,10],[3,13],[-2,5],[2,4],[7,-2],[4,-3],[3,-5],[1,-10],[-2,-5],[1,-5],[6,3],[5,-7],[4,1],[6,-1],[3,3],[-1,10],[1,10],[-1,9],[3,8],[4,6],[6,6],[6,0],[7,-2],[3,-1]],[[437943,230791],[4,-3],[1,0],[6,-4],[3,-5],[2,-4],[-1,-10],[6,-4],[3,-6],[1,-7],[-2,-5],[-4,-2],[-4,-3],[-7,-4],[-5,0],[-5,1],[-2,2],[-2,5],[-4,8],[-2,0],[-7,3],[-2,9],[0,7],[-6,-1],[0,-10],[5,-9],[1,-6],[-4,-10],[-6,-3],[-10,4],[-8,-1],[-1,7],[-4,16],[1,10],[2,16],[-4,7],[-3,2],[-2,7],[0,7],[2,8],[6,3],[1,10],[1,4],[3,2],[5,16],[13,-8],[3,-6],[3,-7],[2,-8],[-2,-6],[4,-7],[-1,-3],[9,-2],[7,-5],[4,-5]],[[437718,230766],[-11,-8],[-8,4],[-3,4],[2,21],[0,3],[-4,6],[-2,0],[-14,2],[-1,12],[3,9],[4,9],[6,6],[6,4],[6,7],[10,8],[4,2],[3,-8],[1,-7],[9,-13],[5,-6],[4,-8],[6,-13],[-2,-6],[-8,-9],[-9,-11],[-7,-8]],[[437777,230815],[-4,-6],[-9,1],[-5,9],[-1,5],[-3,6],[-5,6],[-8,3],[-8,9],[-1,11],[0,8],[5,9],[11,0],[8,-4],[6,-1],[9,-8],[3,-7],[1,-18],[3,-12],[-2,-11]],[[437836,230902],[-10,-1],[-7,4],[-6,12],[-1,8],[7,3],[9,1],[9,1],[4,-6],[2,-12],[-3,-10],[-4,0]],[[437690,230886],[6,-15],[-3,-5],[-8,0],[-6,2],[-4,-1],[0,-12],[2,-4],[-8,-1],[-3,3],[-3,0],[-3,-6],[-5,1],[1,-10],[4,-6],[1,-7],[4,-20],[-6,-8],[-3,-5],[-4,-6],[-4,-3],[-12,0],[-2,4],[-4,13],[-5,11],[-5,-6],[-6,-2],[0,5],[-3,6],[-1,5],[-2,4],[0,5],[-8,5],[0,15],[0,5],[-3,7],[0,15],[6,11],[5,4],[2,10],[2,8],[1,13],[1,7],[-1,15],[4,3],[3,3],[10,-1],[4,-8],[7,-2],[5,-6],[3,-4],[0,-8],[-1,-7],[4,-9],[1,-3],[-1,-8],[4,-2],[4,-9],[3,-10],[4,7],[2,1],[-4,4],[-3,8],[-1,19],[3,3],[2,4],[4,11],[4,6],[4,4],[-1,3],[0,7],[6,7],[5,1],[3,-10],[5,-3],[0,-11],[-2,-2],[-4,-1],[-4,-6],[-1,-2],[-5,-7],[1,-3],[2,-7],[1,-11],[3,-3],[1,-3],[2,-2]],[[437625,230989],[-3,-3],[-4,2],[-5,2],[-6,4],[0,4],[4,6],[6,0],[7,0],[3,-2],[0,-2],[-2,-11]],[[437673,230973],[-7,0],[-2,1],[-3,8],[-3,6],[0,7],[2,11],[0,5],[12,9],[5,-2],[4,-4],[0,-6],[3,-6],[1,-5],[0,-10],[-2,-10],[-3,-3],[-7,-1]],[[437598,231004],[-2,0],[-2,5],[-2,3],[0,7],[4,6],[5,0],[3,-1],[1,-2],[3,-7],[0,-3],[-2,-5],[-2,-1],[-3,-2],[-3,0]],[[437620,231043],[-7,-4],[-5,3],[-4,5],[-2,8],[-3,3],[-4,4],[-4,4],[0,6],[0,5],[1,8],[0,4],[6,3],[4,0],[6,-5],[8,-8],[-1,-5],[8,-8],[1,-6],[-1,-5],[-3,-12]],[[437724,231079],[-3,0],[-4,0],[-3,4],[0,10],[1,5],[4,8],[2,4],[11,0],[2,-2],[3,-7],[-3,-8],[-1,-5],[-3,-5],[-6,-4]],[[437628,231116],[-2,-2],[-4,1],[-7,-3],[-7,4],[-3,3],[-4,12],[2,10],[4,8],[3,2],[5,1],[13,-3],[1,-8],[-1,-6],[-4,-5],[4,-14]],[[454757,232740],[4,-4],[3,0],[4,0],[2,-3],[-6,-10],[-4,-3],[0,-4],[2,-1],[3,-1],[6,-1],[3,-3],[3,-1],[4,0],[1,0],[3,-4],[3,-6],[3,-5],[4,-4],[3,-4],[2,-5],[4,-5],[3,-4],[2,-4],[0,-6],[1,-3],[4,-3],[0,-6],[0,-2],[-5,1],[-3,2],[-2,-5],[-1,-5],[-3,1],[-4,1],[0,-5],[1,-5],[6,-6],[5,-6],[-4,-10],[-1,-5],[-2,-5],[-1,-4],[-6,-7],[1,-3],[5,-3],[4,-5],[4,-5],[7,-7],[1,-5],[-5,-4],[-9,-2],[-5,-5],[-2,-5],[-1,-7],[-1,-4],[0,-4],[-6,-2],[-3,3],[-1,4],[0,5],[0,3],[1,3],[0,3],[-3,0],[-2,0],[-2,-1],[-2,-1],[-3,2],[-2,1],[-3,-2],[1,-5],[0,-5],[-6,-2],[-9,-1],[-5,0],[-5,-3],[-9,-4],[-4,-3],[0,-5],[1,-7],[-1,-5],[-2,-3],[2,-5],[5,-8],[0,-6],[-2,-2],[-2,0],[-6,0],[-7,0],[-2,-1],[-1,-5],[1,-1],[3,-4],[1,-5],[0,-6],[0,-2],[-1,-6],[1,-1],[1,-1],[1,-3],[-1,-2],[-1,-1],[-1,-4],[-1,-7],[0,-2],[-3,-3],[-1,-3],[-2,-1],[-1,-3],[-2,-2],[-4,-2],[-5,-1],[-9,3],[-5,3],[-6,0],[-4,0],[-7,2],[-7,2],[-5,3],[-1,5],[-1,10],[3,7],[0,2],[-3,0],[-4,0],[-1,-2],[-2,-1],[-9,0],[-5,6],[-1,10],[0,7],[1,8],[2,5],[4,8],[0,10],[0,6],[-5,15],[-1,8],[1,9],[0,5],[-1,4],[-3,6],[-3,8],[0,2],[-4,2],[-1,3],[-1,-1],[-2,1],[-1,1],[0,6],[-1,3],[0,9],[1,4],[3,5],[2,7],[7,0],[2,0],[3,8],[2,5],[9,11],[5,6],[1,6],[4,5],[3,3],[3,7],[2,3],[6,1],[5,0],[4,3],[2,1],[4,1],[7,6],[4,9],[5,0],[2,2],[2,3],[4,2],[1,9],[0,3],[-2,1],[-1,1],[-1,2],[0,4],[1,7],[6,3],[3,0],[4,2],[-1,0],[-2,1],[0,7],[3,7],[4,0],[4,0],[6,1],[4,2],[5,4],[5,3],[6,2],[3,-1],[0,-3],[-1,-3],[0,-4]],[[450709,236082],[3,-1],[3,2],[3,1],[6,2],[0,-2],[-1,-3],[-1,-2],[-2,-2],[1,-2],[6,-2],[3,0],[5,2],[8,6],[14,4],[6,4],[6,1],[3,1],[7,4],[8,2],[5,0],[5,3],[-1,4],[1,8],[2,1],[3,1],[1,0],[3,4],[3,1],[3,0],[1,0],[1,-2],[0,-3],[0,-5],[0,-2],[-2,-2],[0,-2],[1,-4],[3,0],[4,-2],[2,2],[2,1],[1,4],[3,4],[4,2],[1,2],[2,5],[5,1],[2,-4],[0,-6],[0,-7],[-1,-4],[-7,-5],[-3,-10],[7,-8],[4,-2],[5,1],[6,0],[6,0],[2,-2],[3,-5],[2,-6],[2,-4],[5,-6],[36,-25],[33,-25],[3,3],[7,1],[5,-10],[-4,-12],[-6,2],[-18,-105],[-3,-38],[2,-85],[-32,-1],[4,-30],[3,-21],[0,-7],[0,-7],[0,-6],[-2,-9],[1,-3],[2,-1],[4,-1],[3,-1],[6,-4],[12,-9],[22,-31],[11,-17],[4,-7],[4,-7],[3,-11],[2,-7],[5,-9],[4,-10],[3,-8],[3,-6],[4,-1],[6,0],[4,-4],[2,-6],[5,-8],[7,-8],[3,-4],[4,-6],[2,-7],[1,-7],[2,-5],[5,-6],[7,-7],[4,-4],[6,0],[5,-3],[3,-5],[5,-5],[4,-2],[11,-7],[2,-2],[4,-4],[2,-3],[3,-2],[1,-1],[3,-2],[4,-3],[4,-2],[3,0],[4,-1],[8,-5],[5,-2],[2,12],[22,-9],[-3,-11],[19,-8],[2,10],[21,-8],[-3,-13],[46,-21],[102,-47],[21,-7],[9,-4],[14,-4],[26,-9],[11,-7],[3,-3],[13,-6],[5,-3],[4,-5],[13,0],[8,-1],[10,-4],[10,0],[8,0],[9,1],[3,0],[10,0],[1,-14],[-1,-9],[-2,-5],[-3,-10],[-3,-7],[-4,-12],[-1,-16],[0,-14],[-4,-12],[-5,-14],[-5,-29],[1,-12],[7,-3],[8,-5],[10,-12],[0,-9],[-2,-8],[-7,-5],[-20,-8],[-7,-8],[-2,-11],[-1,-10],[-2,-9],[-18,-6],[-9,4],[0,8],[1,12],[2,3],[3,4],[1,7],[-2,0],[-6,-2],[-7,-3],[-8,-4],[-8,-5],[-3,-12],[-6,-10],[-3,-7],[-8,-10],[-20,-21],[-13,-6],[-11,8],[-7,2],[-12,-25],[-1,-12],[-1,-12],[-2,-15],[-4,-9],[-6,-5],[-10,-3],[-21,2],[-8,0],[-17,1],[-21,-4],[-6,-2],[-5,-4],[-6,-5],[-18,-1],[-11,-3],[-7,-7],[-3,-5],[-13,-3],[-13,0],[-8,-3],[-10,-1],[-14,-6],[-4,-3],[-19,-4],[-15,-5],[-22,-11],[-11,-8],[-16,-6],[-9,-5],[-1,-10],[-2,-9],[-13,-5],[-13,-1],[-4,0],[-14,7],[-4,7],[-8,9],[-6,3],[-11,8],[-13,2],[-19,4],[-7,0],[-11,0],[-39,9],[-35,1],[-2,-17],[-21,-16],[-14,-13],[-12,-43],[-13,-14],[-6,-16],[-1,-14],[-2,-10],[2,-7],[6,-1],[3,-1],[5,-17],[0,-9],[-1,-6],[-6,-6],[-7,-6],[-2,-6],[-10,-1],[-7,4],[-1,4],[-5,2],[-11,-12],[0,-8],[2,-10],[3,-7],[-1,-14],[-7,-10],[-1,-11],[1,-10],[1,-9],[-1,-8],[-4,-1],[-7,1],[-2,3],[1,5],[-2,-2],[-7,-6],[-4,-7],[-2,-11],[-1,-12],[-3,-8],[0,-8],[-5,-10],[-11,-32],[-4,-15],[-1,-5],[0,-11],[-1,-8],[-6,-11],[0,-10],[4,-9],[3,-2],[8,-5],[-3,-9],[-6,-5],[-4,-2],[0,-5],[5,-18],[0,-11],[-1,-3],[-9,-5],[-17,-5],[-14,14],[-21,-1],[-11,-12],[0,-16],[7,-15],[0,-12],[-14,-15],[-17,0],[-21,11],[-12,-16],[1,-15],[-25,-20],[-37,-20],[-28,2],[-27,17],[-7,-2],[-7,-2],[-3,2],[-4,6],[-12,12],[-8,4],[-8,1],[-6,-3],[-12,3],[-8,8],[-7,7],[-11,4],[-7,1],[-10,-1],[-7,0],[-9,-1],[-5,2],[-5,7],[-4,3],[-4,3],[-5,-1],[-6,-3],[-5,-2],[-8,0],[-5,2],[-9,8],[-1,4],[-4,0],[-2,-1],[-3,-2],[-11,1],[-7,3],[-8,3],[-6,4],[-1,7],[-6,6],[-9,0],[-4,-4],[-7,-4],[-5,-5],[-4,-6],[-3,-4],[-7,4],[-7,9],[-6,0],[-6,-6],[-1,-7],[2,-6],[1,-8],[0,-6],[-1,-1],[-9,-3],[-10,2],[-8,2],[-8,0],[-6,4],[-4,5],[0,6],[0,4],[0,5],[2,2],[2,1],[1,5],[0,3],[-1,4],[-2,4],[-4,9],[-4,-1],[-2,-2],[-2,-3],[-4,-1],[-2,2],[-4,5],[0,2],[-2,5],[-1,4],[-1,1],[-6,4],[-8,3],[-6,4],[-5,0],[-7,5],[-11,6],[-4,2],[-8,6],[-4,1],[-8,5],[-8,2],[-2,4],[-5,4],[-1,6],[2,6],[5,4],[4,4],[5,2],[6,4],[3,6],[-1,4],[-2,4],[0,1],[-5,5],[-8,3],[-2,3],[-3,7],[1,10],[1,5],[3,7],[-1,5],[-4,0],[-8,4],[-5,6],[-1,10],[1,5],[2,11],[0,8],[-8,5],[-9,2],[-7,-1],[-9,2],[-5,10],[-3,15],[1,8],[-4,7],[-5,7],[-3,15],[1,7],[-4,6],[-4,4],[-4,10],[-5,13],[-1,5],[-1,9],[-1,5],[-2,9],[-2,4],[-2,0],[-8,0],[-3,7],[-3,4],[-4,5],[-1,4],[-3,0],[-2,-1],[-3,-2],[0,-2],[-3,-1],[-3,1],[-1,5],[-5,19],[-2,7],[0,4],[-2,4],[-2,1],[-3,-1],[-2,-2],[-1,3],[-1,11],[-3,7],[-1,8],[1,15],[2,6],[2,6],[6,1],[4,-2],[5,-1],[5,-3],[1,-4],[0,-4],[0,-7],[0,-6],[1,-3],[3,-4],[3,1],[4,2],[5,3],[0,4],[0,8],[1,4],[2,6],[3,3],[2,2],[1,4],[0,3],[-1,2],[-2,2],[0,3],[-1,6],[0,23],[-1,5],[-2,3],[-2,3],[-1,2],[-2,5],[0,4],[0,6],[0,7],[5,12],[1,1],[0,2],[3,3],[2,1],[2,0],[2,-2],[0,-1],[1,-3],[2,-2],[2,-4],[2,-3],[2,-2],[1,0],[3,1],[0,1],[-1,6],[0,5],[0,3],[2,3],[1,3],[0,4],[2,6],[2,3],[4,1],[3,2],[1,4],[1,4],[-2,11],[0,2],[-4,14],[-3,11],[-11,18],[-1,4],[-2,3],[-2,5],[-2,5],[-3,4],[-2,2],[-2,6],[-1,6],[-1,5],[-3,14],[-1,6],[0,8],[0,21],[7,8],[7,4],[4,9],[5,4],[7,1],[8,1],[4,1],[3,4],[4,0],[1,-4],[3,0],[7,3],[4,5],[10,6],[4,3],[6,4],[7,-1],[3,1],[3,4],[5,7],[7,5],[2,6],[3,4],[2,5],[1,4],[2,7],[3,2],[4,0],[11,7],[2,1],[7,6],[1,7],[1,6],[0,4],[1,1],[7,3],[8,-2],[7,-2],[13,6],[8,5],[4,3],[3,5],[7,5],[2,6],[14,2],[1,0],[4,0],[6,3],[1,-4],[2,-4],[4,-1],[7,4],[5,3],[8,1],[8,0],[5,1],[6,0],[6,0],[4,-4],[4,-2],[5,-3],[5,-1],[4,-2],[11,1],[0,1],[6,3],[5,1],[6,7],[4,4],[3,2],[3,1],[1,7],[1,5],[2,4],[3,2],[5,1],[3,6],[1,3],[7,-4],[6,-7],[17,27],[17,67],[14,74],[2,21],[-3,10],[-7,4],[-4,0],[-4,0],[-6,2],[-1,6],[0,7],[1,6],[1,5],[-2,7],[0,6],[0,8],[0,5],[-1,6],[1,6],[2,11],[2,13],[-1,5],[0,6],[0,5],[5,5],[5,4],[5,5],[1,6],[2,9],[7,18],[1,13],[1,14],[1,24],[-2,16],[0,10],[0,8],[0,5],[-7,16],[0,27],[-2,61],[-1,2],[-1,5],[-1,2],[-1,7],[-2,9],[-1,5],[0,6],[0,5],[2,4],[6,4],[11,1],[5,1],[5,0],[5,2],[4,1],[1,3],[3,2],[3,0],[3,-2],[5,0],[3,2],[3,5],[4,7],[3,3],[3,4],[3,6],[3,3],[6,2],[9,3],[9,4],[25,24],[15,17],[5,3],[4,5],[5,3],[5,5],[6,7],[4,3],[6,5],[5,2],[1,5],[2,7],[-1,6],[5,21],[9,19],[10,15],[11,17],[7,25],[19,42],[12,19],[24,20],[18,25],[9,9],[5,-1],[4,-2],[4,-3],[5,-2],[2,-3],[3,-3],[2,-1],[5,-5],[6,-8],[1,-3],[3,-4],[1,-4],[2,-5],[1,-1],[3,-3],[2,-5],[0,-4],[2,-4],[6,-5],[12,-8],[5,-4],[4,-1],[5,-1],[3,0],[5,-1],[5,-2],[5,-2],[4,-4]],[[453784,238042],[2,-5],[3,0],[5,-2],[4,-4],[2,-13],[-2,-5],[-1,-8],[-1,-4],[-3,-9],[-6,-8],[-5,-3],[-1,-3],[1,-6],[-5,-2],[-4,2],[-2,2],[-4,1],[-3,-5],[2,-2],[1,-3],[-1,-4],[-1,-1],[-3,-7],[-1,-3],[-3,-4],[-2,1],[-3,1],[-4,3],[-1,1],[-3,1],[0,-3],[0,-5],[-1,-5],[-2,-4],[-3,-3],[-1,-2],[3,-6],[4,-2],[2,-2],[1,-5],[0,-2],[-1,-1],[3,-4],[2,-1],[-3,-4],[-1,-1],[-4,-7],[-1,-7],[-1,-3],[0,-6],[-1,-7],[1,-8],[3,-3],[4,-4],[3,-1],[3,1],[6,-1],[5,-2],[0,-5],[0,-4],[-1,-3],[-1,-5],[-1,-3],[10,-17],[4,-5],[4,-6],[3,-4],[0,-5],[0,-5],[-2,-7],[0,-8],[3,-3],[3,-5],[1,-2],[6,-11],[3,-1],[3,-3],[-2,-7],[1,-6],[1,-3],[-1,-9],[-1,-3],[-2,-4],[-1,-4],[2,-4],[5,-4],[2,-6],[1,-7],[0,-11],[1,-5],[-1,-8],[0,-4],[0,-7],[1,-3],[10,-32],[9,-24],[20,-52],[21,-51],[25,-36],[22,-30],[9,1],[2,2],[4,2],[6,-3],[3,-4],[2,-6],[8,-3],[3,-3],[6,-12],[3,-6],[3,-7],[2,-5],[2,-4],[21,-25],[33,-41],[30,-38],[5,8],[6,-8],[-8,-19],[24,-41],[25,-39],[18,-22],[7,-2],[4,-2],[6,0],[8,0],[7,-1],[14,-8],[7,-4],[6,-3],[3,-2],[4,-7],[9,-9],[10,-6],[7,-4],[11,-2],[10,-4],[5,0],[12,-4],[5,0],[13,-3],[11,1],[4,0],[20,13],[10,16],[12,6],[11,1],[4,5],[2,8],[10,4],[11,0],[4,4],[2,5],[0,6],[0,6],[1,13],[4,5],[5,-1],[4,-3],[5,-2],[4,3],[2,3],[2,5],[6,11],[2,3],[-3,1],[-3,0],[-2,2],[0,4],[1,3],[3,2],[-4,2],[-1,4],[2,5],[5,2],[4,1],[2,1],[1,5],[4,3],[2,1],[4,-1],[-1,4],[0,3],[3,4],[3,0],[0,1],[0,4],[3,3],[4,0],[2,-3],[1,-4],[-4,-3],[-2,-2],[2,-2],[2,-3],[-2,-4],[-2,-3],[-5,0],[-1,-9],[13,4],[12,0],[14,-2],[7,-2],[7,-1],[3,6],[1,8],[2,7],[3,5],[5,4],[8,8],[5,4],[13,8],[8,4],[4,5],[7,4],[6,-1],[6,-3],[6,-2],[3,0],[4,4],[5,4],[6,0],[4,-2],[3,-1],[1,-3],[1,-6],[-1,-2],[-3,-6],[-1,-3],[0,-6],[3,-4],[3,-3],[2,-3],[5,-8],[0,-3],[-2,-15],[-3,-5],[-4,-5],[-4,-8],[-3,-6],[-3,-6],[-3,-6],[0,-3],[1,-2],[6,-16],[2,-9],[1,-12],[-1,-13],[4,-9],[3,-14],[0,-8],[0,-9],[2,-14],[-3,-9],[0,-19],[5,-11],[6,-16],[8,-14],[1,-2],[7,0],[5,0],[5,-5],[5,-3],[4,-4],[4,-5],[5,-5],[5,-4],[1,-3],[2,-10],[0,-9],[-3,-5],[-3,0],[-5,1],[-4,3],[-3,2],[-5,2],[-5,-4],[-1,-5],[-4,-12],[-4,-9],[-4,-11],[-2,-7],[1,-6],[22,-22],[8,-7],[7,0],[8,-1],[6,-4],[4,-1],[8,0],[6,0],[6,-1],[4,-1],[2,-2],[6,-2],[4,-1],[4,0],[3,2],[3,0],[5,0],[4,-1],[2,-5],[0,-4],[-1,-4],[0,-4],[5,-3],[6,-1],[3,-4],[3,-3],[3,-2],[0,-4],[3,-6],[3,-4],[2,-4],[1,-4],[-1,-4],[2,-1],[1,-6],[1,-3],[-1,-8],[0,-5],[-1,-6],[-1,-3],[2,-15],[0,-11],[-3,-13],[-2,-4],[-3,-10],[0,-6],[-1,-6],[-3,-8],[-9,-7],[-6,-5],[-4,-5],[-5,-8],[-3,-6],[-1,-7],[-1,-6],[-1,-9],[1,-7],[-1,-8],[-2,-6],[-1,-4],[-4,-6],[-2,0],[-3,-2],[-4,-1],[-3,-1],[-4,-1],[-4,-1],[-3,-3],[-3,-6],[2,-4],[0,-7],[-2,-10],[-5,-4],[-7,-3],[-5,-4],[-10,0],[-6,0],[-12,0],[-8,0],[-7,-3],[-9,-1],[-6,-3],[-4,-3],[-4,-4],[-5,-9],[-5,-17],[-6,-20],[4,-2],[0,-10],[-4,-5],[-1,-3],[-3,-9],[-2,-7],[-1,-8],[1,-14],[-2,-12],[-2,-9],[-6,-5],[-8,0],[-8,0],[-9,-2],[-1,-4],[-1,-6],[-2,-12],[-6,-7],[-9,-3],[-6,0],[-12,0],[-6,-3],[-11,-21],[0,-7],[0,-3],[-16,-20],[1,-9],[3,-8],[4,-4],[4,-9],[3,-7],[2,-7],[-1,-8],[-4,-12],[-3,-9],[-11,-6],[-9,0],[-5,2],[-4,9],[-4,5],[-4,-1],[-6,0],[-8,-3],[-8,-8],[-8,-6],[2,-14],[1,-6],[0,-9],[-4,-13],[-4,-9],[-8,-5],[-9,7],[-4,5],[-3,2],[-8,0],[-6,-2],[-9,-3],[-14,-9],[-7,-3],[-6,0],[-6,-1],[-4,1],[-7,1],[-4,3],[-6,6],[-5,9],[-5,9],[-1,4],[-4,9],[-14,8],[-16,2],[-3,0],[-7,-2],[-4,-3],[-27,-17],[-4,-6],[-15,-7],[-2,-16],[-3,-10],[-5,-17],[-9,-7],[-9,-6],[-12,-10],[-7,-5],[-8,-10],[0,-9],[0,-10],[-3,-10],[-5,-14],[-2,-2],[-3,-9],[-3,-8],[-4,-5],[-7,-7],[-8,-5],[-8,-5],[-3,0],[-11,1],[-6,-16],[-5,-17],[-4,-17],[4,-12],[3,-16],[2,-11],[0,-6],[-1,-10],[-2,-7],[-3,-12],[7,-4],[3,0],[1,-5],[0,-7],[-3,-9],[-2,-3],[-11,-19],[-3,-7],[-3,-16],[-3,-18],[-3,-7],[-7,-7],[-7,0],[-7,2],[-3,4],[-10,6],[-3,6],[-4,3],[-4,4],[-3,7],[-11,7],[-9,-3],[-11,-7],[-6,-5],[-5,-12],[0,-7],[-3,-12],[-3,-3],[-8,-1],[-6,-5],[-3,-8],[-3,-7],[0,-5],[-6,-10],[-5,-10],[-4,-1],[-5,0],[-4,0],[-4,3],[-2,1],[-7,-1],[-5,0],[-4,-1],[-2,-4],[-2,-9],[-3,-5],[-6,-6],[-8,-4],[-2,0],[-6,-2],[-4,-3],[-18,-15],[-6,-7],[-4,-7],[-5,-6],[-2,-6],[-3,-6],[-2,-2],[-1,-7],[-2,-15],[-5,-3],[-9,0],[-6,5],[-4,9],[-3,10],[-3,8],[-3,4],[-6,7],[-7,3],[-7,0],[-4,-1],[-3,0],[-9,-5],[-3,-6],[-4,-8],[-1,-5],[0,-5],[0,-10],[0,-7],[-5,-7],[-6,-10],[-6,-3],[-4,-2],[-9,-1],[-8,0],[-5,3],[-3,4],[-7,-1],[-3,-2],[-7,-3],[-6,-9],[-4,-1],[-2,-1],[-7,-3],[-2,2],[-3,1],[-3,0],[-3,0],[-4,-6],[-4,-4],[-6,0],[-3,-1],[-3,0],[-6,-1],[-5,0],[-13,7],[-17,-7],[-8,5],[-18,7],[-1,3],[-2,8],[-2,4],[-5,3],[-11,0],[-6,6],[-2,6],[-7,5],[-2,0],[-7,-3],[-5,-2],[-3,-1],[-7,-5],[-5,-6],[-7,-6],[0,-5],[3,-8],[1,-5],[-2,-5],[0,-5],[-1,-4],[-4,-3],[-2,-1],[-4,0],[-3,1],[-3,2],[-2,2],[-5,-3],[-5,-1],[-5,-3],[-8,-9],[1,-10],[0,-9],[-1,-6],[-10,-9],[-8,0],[-10,3],[-6,-1],[-1,-6],[-1,-7],[-1,-5],[-8,-9],[-2,-2],[-8,-5],[3,-10],[0,-3],[-4,-12],[-4,-10],[-2,-7],[4,-8],[4,-1],[3,-3],[4,-1],[1,-7],[-1,-4],[-5,-7],[-4,-1],[-4,-2],[0,-5],[0,-4],[3,-5],[5,-3],[2,-1],[0,-3],[0,-5],[-1,-6],[-5,-7],[-17,-12],[-5,-5],[-4,-10],[0,-11],[-2,-7],[-3,-10],[-3,-7],[-2,-5],[-3,-7],[-2,-13],[-2,-10],[-1,-12],[-1,-11],[-1,-12],[-4,-6],[-1,-9],[0,-7],[0,-8],[-3,-49],[-1,-14],[-1,-18],[0,-13],[-1,-13],[1,-17],[0,-11],[0,-10],[-3,-19],[-2,-14],[-3,-10],[-2,-10],[-3,-12],[-1,-10],[-3,-9],[-14,-34],[-11,-24],[-20,-27],[-19,-23],[-20,-12],[-24,-12],[-33,-12],[-22,-16],[-19,-16],[-26,-28],[-21,-37],[-17,-38],[-12,-42],[-9,-38],[-2,-69],[4,-30],[0,-42],[9,-31],[15,-64],[14,-116],[45,-219],[34,-101],[26,-63],[26,-87],[25,-131],[-1,-33],[41,-196],[4,-22],[4,-15],[2,-7],[2,-18],[-4,-7],[8,-27],[3,-9],[10,-6],[9,1],[23,10],[2,-7],[-20,-13],[10,-4],[1,-46],[-19,-10],[5,-38],[16,-10],[15,-117],[6,-39],[15,-3],[86,21],[0,4],[39,7],[3,-30],[-38,-10],[0,7],[-101,-31],[16,-93],[15,-52],[8,-19],[20,2],[10,-1],[0,5],[13,6],[3,-12],[106,42],[9,-25],[-119,-44],[2,-10],[10,-53],[24,5],[3,-27],[-41,-16],[5,-29],[-1,-15],[-2,-12],[-4,-12],[-9,-8],[-5,-2],[-25,-17],[-32,-25],[7,-33],[19,-58],[50,-120],[75,-118],[18,-17],[69,-64],[39,-23],[46,19],[43,32],[33,23],[10,22],[-7,28],[-17,73],[96,73],[-3,13],[105,67],[55,19],[5,-31],[27,-2],[6,22],[16,-11],[-10,-23],[9,-24],[28,-44],[13,-13],[19,-9],[26,-2],[19,7],[13,-1],[13,-7],[9,-4],[18,-2],[17,0],[30,-10],[32,-20],[11,-7],[8,0],[7,2],[14,-5],[6,-4],[5,2],[4,0],[4,-5],[21,-16],[20,-9],[24,-5],[20,2],[12,2],[15,2],[14,5],[-1,8],[18,-1],[15,-6],[14,-13],[6,-12],[7,-17],[1,-10],[0,-11],[-2,-7],[5,-7],[-1,-7],[-2,-4],[2,-9],[0,-6],[-17,-49],[-2,-80],[-8,-120],[6,-44],[8,-31],[-17,-19],[-3,-35],[3,-29],[8,-18],[3,-23],[0,-26],[-1,-13],[4,-12],[22,-15],[24,-36],[-42,-62],[9,-15],[-8,-12],[-10,14],[-16,-24],[-9,-62],[-7,2],[12,70],[-16,20],[-20,30],[-16,-1],[-23,-11],[-19,-16],[-34,-35],[-20,-39],[-20,-47],[-5,-17],[14,-28],[79,-107],[5,4],[3,0],[2,-2],[1,0],[6,2],[7,1],[14,9],[3,-8],[-21,-12],[-6,0],[-15,-7],[-92,132],[-7,-17],[-25,-15],[-96,-37],[5,-39],[-9,-11],[-6,-7],[-8,1],[-4,8],[-4,5],[-1,2],[-2,8],[-15,7],[-6,6],[-11,1],[-5,-2],[-10,-5],[-6,-5],[-4,-6],[-16,-15],[-5,-10],[-8,-9],[-7,-5],[-6,-5],[-5,-6],[-2,-5],[-6,-9],[-4,-7],[-3,-9],[-2,-3],[-3,-9],[-6,-14],[-3,-8],[-6,-8],[-5,-10],[-3,-8],[-4,-7],[-11,-14],[-4,-3],[-4,-3],[-14,-10],[-4,-6],[-8,-9],[-5,-3],[-5,-5],[-2,-3],[-4,-5],[-8,-21],[-4,-14],[-8,-13],[-7,-7],[-5,-8],[-1,-10],[-3,-6],[-15,-12],[-11,-20],[-19,-103],[5,-48],[51,-20],[34,-44],[-65,-136],[-30,14],[-90,55],[-14,8],[-19,-13],[-130,-50],[-57,-43],[-35,-50],[-8,-40],[14,-12],[2,-7],[4,-1],[6,0],[0,-4],[-1,-3],[-3,-7],[-4,-1],[-1,-11],[1,-13],[0,-9],[-4,-11],[-2,-5],[-5,-19],[-14,-15],[-21,-34],[-30,-20],[-46,-51],[-32,-42],[-15,-46],[15,-21],[1,-6],[1,-3],[-3,-21],[-5,-10],[-4,-6],[-5,-5],[-4,-8],[-2,-7],[-1,-2],[-8,-20],[-4,-9],[-1,-12],[0,-3],[-1,-5],[-2,-5],[-2,-3],[-10,-12],[-6,0],[-5,0],[-14,-6],[-6,-3],[-7,-3],[-6,-6],[-4,-4],[-4,-4],[-2,-5],[-5,-9],[-2,-3],[-11,-23],[-4,-10],[-6,-10],[-4,-8],[-3,-8],[-3,-4],[-6,-6],[-3,-3],[-8,-13],[-7,-16],[-7,-11],[-6,-5],[-2,-5],[-3,-10],[-2,-9],[-2,-5],[-14,-20],[-7,-6],[-12,-11],[-12,-12],[-12,-17],[-4,-13],[-9,-7],[-4,-10],[-3,-4],[-5,-3],[-6,-2],[-3,-1],[-1,1],[-2,3],[0,5],[1,6],[2,7],[2,5],[0,4],[-2,3],[-6,3],[-5,0],[-13,-1],[-7,4],[-8,1],[-10,0],[-3,0],[-9,0],[-3,1],[-7,0],[-21,0],[-16,2],[-9,3],[-8,2],[-10,6],[-13,6],[-8,7],[-7,11],[-5,12],[-3,8],[-43,51],[-80,38],[-45,27],[-51,18],[-80,21],[-101,6],[-5,-23],[-7,-1],[-8,-6],[-3,-12],[-4,-5],[-6,-7],[-6,-4],[-8,-8],[-7,-9],[-3,-8],[-7,-25],[-106,48],[-1,-7],[-6,5],[6,44],[-7,13],[-7,19],[-19,30],[-10,17],[-16,20],[-29,35],[-22,19],[-36,28],[-56,37],[-37,35],[-30,34],[-27,23],[-22,21],[-16,11],[-14,8],[-9,-36],[-10,4],[10,37],[-18,7],[-13,7],[-10,7],[-37,26],[-32,19],[-25,13],[-34,17],[-29,16],[-18,10],[-36,16],[-26,9],[-25,8],[-24,11],[-19,14],[-39,39],[-32,32],[-24,22],[-13,22],[-5,26],[-1,16],[-1,33],[4,21],[10,19],[13,31],[13,13],[14,9],[22,21],[14,12],[52,76],[22,40],[20,35],[11,22],[12,15],[15,9],[22,5],[21,0],[19,-2],[21,-8],[32,-7],[47,1],[89,-12],[153,1],[25,0],[35,2],[29,-7],[15,-1],[35,13],[56,33],[63,50],[54,54],[22,39],[10,30],[2,31],[5,38],[8,20],[11,17],[2,16],[16,30],[17,93],[13,81],[27,228],[-4,99],[-10,278],[-28,260],[-3,26],[-23,158],[-67,267],[-66,186],[-41,85],[-5,5],[-7,22],[0,10],[0,7],[-6,14],[-8,22],[-16,-1],[-9,-1],[-9,0],[-6,3],[-5,11],[0,8],[1,5],[0,6],[-65,4],[0,12],[23,-1],[0,-7],[41,1],[0,9],[-3,5],[0,2],[2,4],[5,3],[4,3],[0,7],[-5,6],[-5,6],[-6,7],[1,8],[2,4],[3,2],[2,5],[-2,7],[-4,6],[-3,4],[2,7],[2,3],[4,2],[4,10],[-2,2],[-1,5],[0,7],[2,4],[-2,4],[1,7],[1,2],[1,5],[5,5],[4,-2],[5,3],[4,5],[3,3],[1,7],[2,2],[3,3],[8,-2],[3,-9],[4,0],[3,0],[1,-3],[5,0],[7,-4],[0,-8],[-4,-6],[-3,-10],[0,-8],[4,-4],[1,0],[3,0],[4,3],[5,0],[5,-2],[6,1],[6,5],[8,3],[2,4],[6,4],[6,9],[7,4],[96,148],[21,33],[30,69],[22,23],[14,16],[30,37],[0,8],[4,12],[3,17],[5,17],[15,13],[8,7],[5,5],[10,6],[11,4],[4,10],[1,20],[-1,21],[-7,78],[-16,83],[-3,57],[-9,41],[-47,200],[-43,142],[-72,169],[-65,132],[-28,67],[-42,71],[-61,123],[-247,403],[-35,76],[-37,84],[-29,75],[-16,66],[-2,55],[4,58],[16,48],[19,39],[16,48],[34,86],[15,53],[3,37],[9,42],[13,24],[22,19],[52,31],[27,6],[26,0],[30,-5],[32,-1],[32,4],[26,8],[28,3],[17,-2],[46,-26],[30,-9],[18,-1],[27,10],[33,17],[29,21],[16,16],[6,15],[10,6],[5,0],[15,36],[14,13],[35,73],[32,86],[15,-9],[4,8],[10,6],[9,-1],[7,-8],[2,-11],[5,-8],[3,-5],[1,-8],[24,2],[7,4],[3,2],[24,45],[21,50],[0,8],[5,12],[10,-7],[45,99],[39,91],[20,134],[14,130],[7,127],[1,122],[-4,63],[-7,0],[-12,125],[-6,57],[-7,46],[-43,40],[-2,-2],[-10,5],[-2,8],[0,7],[0,8],[-2,8],[-8,37],[-6,4],[-6,6],[-2,7],[-11,11],[-6,-5],[-5,3],[-2,7],[0,5],[3,1],[4,1],[1,3],[-1,3],[0,2],[0,1],[0,3],[-2,3],[-3,0],[-3,-1],[2,27],[13,0],[2,-2],[1,-2],[-1,-3],[-2,-2],[-1,-5],[-2,-3],[-1,-3],[0,-3],[2,-1],[3,0],[1,-2],[-1,-1],[-1,-1],[-1,-3],[0,-2],[0,-4],[1,-3],[0,-2],[4,-3],[4,-3],[3,-3],[3,-2],[3,-3],[1,-4],[2,-1],[3,1],[3,-1],[2,-1],[4,-2],[1,0],[6,-3],[1,0],[3,0],[7,-2],[3,-2],[8,2],[3,5],[2,2],[2,-4],[1,-1],[5,0],[3,-3],[3,-3],[4,-2],[8,-4],[5,-5],[3,-3],[5,-2],[5,0],[3,2],[3,0],[4,4],[4,4],[1,5],[2,3],[1,5],[1,4],[2,8],[3,3],[2,2],[4,0],[2,-3],[1,-4],[-1,-4],[-2,-6],[-1,-3],[-1,-5],[0,-4],[-1,-5],[13,-16],[32,-28],[17,-15],[30,-29],[47,-37],[55,-39],[25,-16],[21,-6],[8,-6],[45,-19],[40,-12],[33,-4],[0,14],[4,0],[1,-14],[21,1],[2,10],[8,10],[18,13],[14,12],[-1,15],[4,1],[1,-10],[8,14],[5,12],[-3,17],[-1,9],[-3,11],[-5,4],[-2,6],[2,8],[2,7],[2,3],[4,-2],[3,-3],[3,-1],[4,-1],[3,-2],[10,-1],[3,1],[4,3],[1,7],[-2,7],[-1,4],[-2,5],[1,6],[4,4],[4,-2],[2,-2],[1,-3],[2,1],[5,2],[12,6],[5,2],[2,2],[3,3],[4,7],[0,6],[3,4],[5,0],[3,-1],[2,-1],[5,5],[7,2],[4,6],[2,5],[3,3],[6,6],[2,4],[-1,6],[2,4],[5,2],[0,2],[7,1],[3,-2],[4,-1],[3,1],[2,3],[1,6],[2,8],[3,4],[2,2],[4,1],[1,7],[2,4],[-3,4],[1,5],[5,5],[5,3],[4,4],[2,3],[4,-1],[3,-2],[1,-2],[6,-1],[3,-2],[3,-2],[3,-3],[5,0],[3,1],[5,0],[8,2],[6,2],[7,2],[5,0],[3,0],[3,4],[3,2],[3,3],[2,3],[4,8],[4,2],[5,2],[5,3],[6,3],[4,4],[4,3],[1,5],[2,4],[0,5],[1,6],[1,5],[1,2],[1,1],[0,8],[3,4],[4,-2],[3,-1],[2,-2],[1,-3],[1,-2],[1,-4],[0,-2],[1,-4],[-1,-3],[0,-2],[4,-3],[2,-2],[2,-1],[7,6],[5,6],[3,4],[1,4],[0,3],[3,3],[5,5],[3,2],[5,0],[3,-2],[3,-1],[7,-4],[1,8],[-4,5],[-6,5],[-2,8],[5,9],[1,2],[0,3],[5,6],[5,4],[7,7],[3,6],[8,-2]],[[448306,239042],[13,-8],[12,-11],[7,-16],[3,-13],[9,-3],[4,3],[4,7],[2,12],[11,-1],[10,-9],[6,-7],[2,-12],[-3,-7],[-4,-7],[-5,-9],[-1,-3],[6,-7],[12,2],[7,4],[9,5],[12,1],[10,-4],[1,-8],[0,-8],[8,-11],[6,-5],[8,1],[9,1],[7,0],[3,-3],[1,-1],[-2,-5],[-3,-3],[-4,-1],[-2,-2],[-3,-1],[-2,-10],[14,-28],[5,-2],[8,-1],[6,1],[3,0],[6,2],[8,6],[3,3],[2,-5],[4,-4],[2,5],[10,0],[12,-6],[5,-3],[13,-1],[13,-9],[10,-3],[8,-1],[6,-3],[10,-4],[11,-3],[8,-1],[16,4],[8,2],[9,0],[8,-2],[6,-3],[8,-8],[6,-7],[7,-11],[0,-7],[0,-6],[0,-4],[-3,-1],[-3,0],[-5,-1],[-4,-1],[-5,-1],[-3,-1],[-5,0],[-8,1],[-5,1],[-4,3],[-9,5],[-5,2],[-8,-6],[-5,-4],[-5,-3],[-11,2],[-6,0],[-4,0],[-5,0],[-5,0],[-5,0],[-4,-4],[-7,-15],[1,-10],[0,-11],[0,-7],[0,-5],[-4,-10],[-1,-10],[0,-5],[2,-8],[3,-7],[5,-7],[6,-3],[3,1],[4,-2],[9,3],[5,2],[5,3],[3,4],[5,5],[5,1],[6,1],[6,3],[6,4],[7,4],[7,2],[3,-4],[5,-13],[0,-7],[-2,-8],[-3,-6],[-5,-2],[-4,-5],[-4,-2],[-6,-13],[-1,-6],[0,-6],[0,-7],[6,-19],[0,-4],[4,-17],[3,-15],[7,-10],[6,-10],[8,-8],[6,-6],[11,-6],[21,-20],[11,-9],[13,-8],[4,-7],[6,-9],[13,-12],[16,-19],[9,-10],[10,-7],[7,-5],[32,-30],[37,-35],[0,-7],[3,-2],[5,-3],[2,-9],[4,-1],[9,-7],[6,-4],[8,-8],[7,-7],[5,-4],[19,-21],[7,-6],[5,-6],[6,-6],[7,-5],[26,-20],[6,-6],[15,-10],[13,-13],[7,-2],[13,2],[6,-1],[6,-4],[1,-3],[2,-7],[2,-7],[10,-12],[6,-7],[5,-5],[2,-6],[-3,-8],[-3,-7],[-3,-6],[-6,-3],[-5,-4],[-6,-6],[-5,-3],[-4,-6],[-1,-1],[-3,0],[-1,0],[-29,24],[-14,14],[-8,16],[-6,15],[-9,11],[-11,10],[-7,12],[-24,23],[-25,26],[-14,7],[-17,11],[-8,9],[-12,16],[-13,13],[-4,4],[-11,5],[-5,2],[-7,-3],[-3,-5],[-3,-5],[-1,-4],[0,-12],[1,-6],[-1,-9],[-1,-5],[-5,-5],[-2,-3],[-2,-3],[-5,-8],[-4,-2],[-7,0],[-6,-1],[-6,0],[-4,0],[-5,0],[-6,4],[-4,5],[-5,10],[-4,7],[-1,2],[0,10],[-2,17],[0,12],[1,13],[5,10],[5,5],[6,15],[3,14],[0,8],[-5,11],[-10,7],[-15,11],[-20,23],[-7,6],[-19,14],[-10,9],[-2,4],[-8,6],[-16,12],[-13,11],[-8,15],[-10,13],[-13,13],[-7,5],[-9,5],[-13,-2],[-2,-1],[-6,6],[-3,4],[-5,0],[-7,-7],[3,-24],[0,-4],[-2,-8],[-8,0],[-4,0],[-2,-1],[-1,-4],[-3,-15],[-2,-10],[-1,-6],[2,-11],[0,-13],[-6,-9],[-9,-4],[-8,0],[-11,8],[-5,4],[-6,6],[-7,6],[-5,2],[-2,-2],[-3,-5],[0,-10],[-4,-6],[-5,0],[-7,5],[-3,-1],[-3,-4],[-1,-7],[5,-15],[3,-8],[-1,-7],[-7,1],[-5,9],[-4,4],[-6,-3],[-5,-2],[-2,-10],[-7,-10],[-7,0],[-7,3],[-7,0],[-3,-1],[-4,-8],[0,-16],[-3,-8],[-7,-9],[-16,-31],[-6,-8],[-4,-7],[-3,-6],[-7,0],[-4,-1],[-8,-13],[-2,-8],[-2,5],[0,13],[-1,6],[-8,4],[-2,6],[-3,9],[-3,2],[-4,-4],[-6,-9],[-6,-6],[-7,-3],[-8,-2],[-8,-4],[-6,-4],[-3,-13],[-6,-8],[-6,-2],[-12,-9],[-5,-7],[-8,-3],[-7,-7],[-4,-7],[-8,-11],[-11,-5],[-6,-10],[-4,-17],[8,-13],[0,-3],[1,-13],[0,-11],[-8,-6],[-5,1],[-4,6],[-1,3],[-8,3],[-4,6],[-2,4],[-7,6],[-4,0],[-5,-5],[-6,-14],[-7,-9],[-6,-7],[-3,-4],[-7,1],[-8,5],[-4,8],[-3,5],[-10,0],[-6,-2],[-7,-10],[-1,-10],[-2,-12],[-6,-11],[-11,0],[-2,1],[0,3],[-2,0],[-2,0],[-1,3],[-1,2],[-4,1],[-6,0],[-1,3],[-2,2],[-4,2],[-3,0],[-2,1],[-1,3],[-2,2],[-5,4],[-10,9],[-3,1],[-1,1],[-5,6],[-8,5],[-9,2],[-5,3],[-3,5],[-5,2],[-3,5],[-2,2],[-8,3],[-2,2],[-5,0],[-3,1],[-3,4],[-4,2],[-4,1],[-4,3],[0,4],[-1,3],[-3,2],[-5,-1],[-1,1],[0,4],[-2,2],[-1,-1],[-3,0],[-1,-1],[-3,5],[-5,2],[-4,4],[-10,6],[-7,8],[-7,6],[-3,2],[-3,10],[-5,6],[-7,4],[-3,4],[-3,8],[-2,9],[-1,8],[-12,16],[-4,7],[0,5],[-2,5],[-6,10],[-1,6],[0,9],[-3,2],[-5,0],[-1,6],[-2,1],[-4,2],[-2,6],[0,6],[-1,9],[-5,14],[-3,10],[-2,8],[-5,9],[-6,6],[-4,6],[-2,10],[1,6],[2,8],[2,6],[4,4],[4,0],[2,-2],[3,5],[0,13],[1,13],[1,17],[1,10],[-1,6],[-3,13],[-4,11],[0,7],[1,7],[0,6],[-1,2],[-2,9],[0,11],[0,13],[2,9],[0,5],[1,6],[1,9],[0,11],[1,17],[1,8],[1,1],[5,2],[0,6],[0,8],[0,7],[0,10],[-1,10],[3,6],[3,8],[0,11],[0,10],[2,12],[5,7],[4,5],[4,9],[3,13],[3,4],[4,2],[2,6],[7,7],[7,3],[10,4],[18,15],[7,5],[11,3],[11,3],[7,4],[12,0],[3,0],[0,6],[0,3],[6,1],[5,1],[0,4],[0,7],[1,8],[5,3],[8,2],[10,-2],[10,-3],[12,-6],[9,-4],[4,0],[7,0],[7,3],[4,8],[4,5],[7,9],[0,7],[-1,7],[2,8],[10,4],[16,3],[11,5],[10,2],[12,-2],[14,-6],[11,1],[8,2],[8,0],[18,-1],[10,-1],[2,-2],[2,-2],[7,-3],[5,0],[6,2],[4,2],[7,-1],[13,-1],[17,-1],[4,7],[4,12],[5,9],[12,17],[13,16],[21,14],[11,3],[8,-1],[3,2]],[[869399,831399],[33,-627],[11,-195],[66,-1267],[27,-515],[138,-2617],[21,-401],[157,-2983],[68,-1305],[54,-1017],[22,-412],[-27,3],[-22,73],[-20,55],[-32,58],[-12,54],[-56,38],[-63,-16],[-46,-67],[-39,-94],[-4,-9],[-155,-253],[-54,-24],[-68,-21],[-44,-37],[-3,-103],[-119,-24],[-58,9],[-42,43],[-61,0],[-18,30],[-26,0],[-12,-58],[-24,-58],[-8,-69],[-109,-16],[-143,-79],[-70,-18],[-79,40],[-59,67],[-50,21],[-32,-37],[-17,-75],[-41,-16],[-43,67],[-44,-3],[-53,35],[-122,-17],[-66,25],[-31,-31],[0,-73],[10,-109],[-10,-58],[-98,-64],[-53,13],[-38,57],[-153,52],[-54,21],[-57,-24],[-84,-58],[-53,-7],[-26,-78],[-12,-73],[40,-21],[35,-18],[12,-79],[-10,-79],[-27,-55],[18,-70],[-6,-64],[-44,-54],[-90,11],[-61,-20],[-119,-9],[-70,21],[-61,27],[-50,31],[-48,33],[-45,55],[-20,60],[-36,31],[-28,-22],[-5,-39],[39,-49],[36,-51],[14,-49],[-24,-88],[-96,-33],[-79,12],[-50,-34],[-51,19],[-38,-61],[-4,-73],[26,-52],[12,-70],[-40,-9],[-54,-15],[-42,-6],[-17,-54],[-8,-58],[-16,-82],[-12,-70],[-46,-67],[-61,-18],[-52,-6],[-38,-3],[-16,-43],[2,-42],[32,-25],[24,-48],[20,-55],[-6,-79],[-30,-52],[-40,-30],[-51,15],[-52,-6],[-70,-21],[-31,42],[-32,52],[-38,31],[-40,-10],[-33,-64],[-26,-69],[-8,-76],[-14,-61],[-30,9],[-24,30],[-26,37],[-31,39],[8,52],[35,18],[10,43],[-16,45],[-33,-6],[-18,-64],[-12,-97],[-48,-30],[-12,-108],[-28,-20],[-31,40],[-8,73],[-38,3],[-99,-34],[-14,-67],[-24,-59],[-48,-10],[-36,-70],[18,-46],[52,-24],[36,-21],[-4,-49],[-54,-49],[-36,-118],[-31,-52],[-36,-85],[-10,-42],[20,-37],[36,-15],[-4,-33],[-78,-55],[-44,-30],[-25,15],[-37,-6],[-14,-64],[-17,-21],[-10,-79],[-18,-94],[-83,-98],[-123,-167],[-86,-115],[-20,-82],[-119,-6],[-61,-40],[-98,-6],[-123,-70],[-73,13],[-66,-16],[-147,-70],[-60,-63],[-73,-18],[-26,-55],[-20,-64],[-55,-36],[-54,8],[-20,80],[-56,21],[-41,-21],[-48,-79],[-22,-85],[38,-67],[26,-85],[8,-85],[-34,-37],[-50,9],[-85,125],[-24,64],[-26,70],[-53,21],[-24,7],[-24,8],[-28,-43],[16,-72],[58,-44],[-3,-41],[-93,-95],[-1,-63],[-27,-58],[-39,-128],[16,-79],[41,-88],[16,-118],[-26,-49],[-39,-17],[-80,154],[-32,21],[-22,-39],[-12,-109],[-3,-59],[-46,-55],[-36,-84],[-2,-88],[48,-27],[80,-39],[28,-27],[-4,-48],[-74,-9],[-24,-91],[-40,-30],[-4,-69],[28,-66],[-14,-82],[-72,-60],[-114,-72],[-46,-24],[-38,-12],[-4,-34],[21,-93],[35,-160],[28,-87],[16,-144],[20,-40],[-16,-45],[-38,0],[-54,18],[-62,-54],[-13,-63],[-62,24],[14,-90],[57,-19],[94,-256],[0,-84],[-16,-75],[-44,-12],[-20,-30],[22,-36],[38,-34],[40,-57],[-42,-123],[-26,-76],[-34,-48],[-91,-9],[-86,-24],[-82,-81],[-16,-53],[-16,-53],[-8,-114],[30,-69],[-14,-40],[0,-48],[24,-21],[4,-72],[40,-36],[26,-30],[-20,-49],[14,-129],[10,-154],[-6,-81],[30,-54],[2,-54],[-64,9],[-70,-27],[-56,-40],[-20,-93],[22,-90],[0,-61],[-38,-9],[-108,-114],[-119,-79],[-44,-85],[10,-104],[-48,-87],[34,-256],[-13,-108],[-128,-174],[-32,-44],[-47,-19],[-3,-80],[-35,-3],[-71,-20],[-70,-56],[2,-75],[48,-18],[56,-40],[39,-91],[29,-148],[69,-174],[-23,-70],[-151,-166],[-125,-46],[-58,32],[-46,113],[-110,-12],[-127,-122],[-110,-151],[-7,-52],[-45,-26],[-31,11],[-28,32],[-31,-3],[-47,-61],[-13,-64],[-8,-101],[-73,-3],[-146,-38],[-58,-67],[-2,-125],[15,-102],[21,-74],[2,-51],[-17,-137],[-52,-66],[-71,-56],[-77,-17],[-34,-21],[-111,-69],[-71,32],[-108,99],[-77,142],[-29,160],[-47,96],[-57,20],[-143,96],[-102,24],[-106,-91],[-104,-11],[-120,-44],[-98,9],[-35,52],[-29,92],[-40,-39],[-68,-6],[-27,72],[10,146],[27,99],[100,35],[33,107],[-37,55],[-102,15],[-102,-15],[-131,-192],[-58,-32],[-17,146],[-39,99],[29,113],[-44,38],[-27,-50],[-25,56],[10,99],[13,107],[50,61],[31,82],[-10,90],[-52,32],[-69,-21],[-42,-14],[-16,-41],[8,-43],[-14,-77],[-54,-25],[-54,-122],[-79,-181],[-57,-183],[-110,-99],[-104,-81],[-54,93],[-68,32],[-79,-61],[-279,-270],[-102,-134],[-122,-146],[-127,-194],[-104,-41],[-91,-82],[-108,-211],[-135,-157],[-79,-18],[-61,32],[-56,50],[-155,-130],[-117,-60],[-27,-232],[-25,-47],[-12,-70],[-63,6],[-46,6],[-74,-61],[-56,14],[-59,-23],[-120,-328],[4,-76],[5,-352],[-24,-29],[-35,18],[-15,-30],[11,-87],[-17,-58],[27,-32],[31,-26],[34,-67],[45,-5],[13,-70],[-19,-64],[2,-114],[13,-244],[0,-163],[-44,-61],[-52,-128],[6,-137],[60,-26],[48,-29],[48,-58],[-54,-131],[-2,-49],[46,-61],[-25,-96],[10,-53],[63,-5],[76,-3],[30,-26],[26,-32],[-39,-12],[-35,-15],[-11,-43],[-60,-58],[-83,-6],[-31,67],[-42,-9],[4,-105],[-21,-75],[-33,6],[-104,-56],[-6,-55],[-43,-17],[-25,-44],[-3,-76],[-79,-37],[-78,52],[8,154],[-31,-3],[-31,-46],[-25,8],[-50,-17],[-11,-102],[19,-78],[-13,-76],[-91,0],[-68,-87],[-46,0],[4,61],[-33,22],[-67,-28],[-29,35],[-58,-35],[10,-29],[-16,-44],[20,-43],[44,11],[15,-43],[0,-79],[81,-136],[-25,-29],[-79,64],[-40,69],[-31,-17],[13,-35],[20,-35],[29,-76],[27,-20],[-4,-29],[-52,-14],[-4,69],[-21,6],[-2,-102],[-43,18],[-86,67],[-58,11],[-33,-75],[52,-38],[33,-18],[4,-72],[-33,3],[-8,49],[-42,-29],[-39,0],[-38,-44],[-49,-8],[4,-29],[31,3],[25,-6],[6,-56],[22,-40],[-7,-55],[-27,0],[-34,34],[-43,41],[-38,73],[-56,46],[-96,50],[-89,-15],[-69,-82],[-56,-52],[-68,-32],[-123,-69],[-21,35],[-37,17],[-27,-32],[21,-64],[-23,-241],[-35,0],[-34,14],[5,61],[-17,47],[-52,-6],[-42,-41],[-25,-43],[-32,-1],[-13,-31],[20,-70],[-14,-73],[-54,-81],[-85,-35],[-40,0],[-14,-52],[-13,-44],[-71,-17],[-33,-18],[-31,12],[-23,-15],[-7,-74],[16,-65],[-11,-44],[-29,6],[-23,-20],[-10,-117],[-19,-55],[-62,-96],[-38,32],[-29,-20],[-52,26],[-33,125],[-15,67],[-37,8],[-62,24],[-42,70],[10,40],[-16,55],[-60,-5],[-7,43],[19,50],[37,0],[32,55],[-23,38],[-44,-21],[-48,-20],[-37,-32],[-46,-73],[7,-64],[-13,-104],[-27,-12],[-31,38],[-52,-23],[-50,-32],[-29,-12],[-35,-76],[-73,-96],[-61,-40],[-66,-21],[-67,-17],[-61,-38],[-18,-84],[-133,-348],[-22,-135],[-19,79],[-39,52],[-48,-3],[-27,-81],[-2,-70],[18,-102],[90,-32],[-5,-46],[-47,-26],[-58,40],[-40,-26],[-19,64],[-41,-12],[-22,-66],[-28,-85],[-29,-122],[-44,-3],[-41,-11],[-15,-133],[-48,-16],[-60,6],[-16,-72],[-3,-76],[-28,-58],[-13,-58],[-38,-30],[-68,12],[-48,-49],[-31,-3],[-40,-15],[-39,-14],[23,-314],[-23,-34],[-25,-80],[-63,-29],[-74,-32],[-152,-331],[-46,-36],[4,-66],[-50,32],[38,-87],[-62,6],[-19,-44],[35,-93],[-77,17],[-39,-26],[-31,-99],[29,-35],[25,-34],[-5,-56],[-25,-55],[9,-64],[-19,-49],[35,-29],[-6,-61],[-39,-24],[-42,-64],[-60,38],[-69,47],[-23,58],[-26,29],[-131,-143],[-19,-52],[31,-26],[4,-61],[-25,-50],[-68,-5],[-63,75],[-43,-27],[-19,-48],[2,-108],[77,-38],[25,-46],[-10,-60],[-11,-60],[-17,-66],[-52,-44],[-54,-32],[-33,31],[-37,1],[-29,-44],[0,-49],[29,-52],[25,-35],[-23,-67],[-71,-58],[-44,-85],[-13,-28],[-63,-146],[-65,-44],[-45,-23],[-36,-29],[-33,-52],[-4,-70],[18,-75],[-2,-65],[-22,0],[-57,41],[-62,44],[-48,-44],[-73,12],[-26,-47],[-84,-17],[-79,-44],[-33,-76],[-4,-90],[10,-75],[21,-61],[27,-50],[-21,-32],[-35,18],[-37,20],[-36,15],[-47,-21],[-25,28],[-21,-16],[-6,-50],[10,-116],[-23,-19],[-12,-54],[2,-66],[-58,29],[-46,-12],[-31,-38],[-34,26],[-48,12],[-26,-29],[-7,-79],[13,-66],[60,-12],[19,-41],[-58,-84],[-71,-20],[-98,32],[-102,61],[-74,-76],[-71,-93],[-63,-64],[-60,-41],[-52,-85],[-85,-80],[-135,-70],[-112,-93],[-40,-41],[-60,-67],[-39,-32],[-46,3],[-98,-55],[-93,-102],[-138,-43],[-133,-82],[-104,-81],[-106,-53],[-101,9],[-31,32],[-23,23],[-133,-61],[-13,-35],[-102,-61],[-35,0],[-31,-23],[-50,-29],[-38,-9],[-33,-3],[4,-46],[-20,-9],[-34,9],[-31,-12],[-25,15],[-39,-26],[-2,-79],[-13,-70],[-17,-62],[7,-60],[-36,6],[-37,17],[-29,-9],[-40,9],[-40,13],[-18,-63],[0,-86],[-40,-53],[-29,-45],[-29,-119],[-55,-36],[-15,-87],[-37,3],[-50,-6],[-15,-41],[-12,-67],[-46,-46],[-21,-79],[-41,-12],[-54,-66],[-23,-85],[-83,9],[-42,12],[-23,-27],[13,-49],[47,-49],[11,-44],[-61,9],[-106,-12],[-106,15],[-29,23],[-33,-32],[-29,-81],[-44,-9],[-58,9],[-29,-59],[-44,-98],[-60,-44],[-79,-9],[-70,67],[-40,67],[-79,-15],[-46,-90],[-41,-87],[-48,-67],[-81,-38],[-98,12],[-79,9],[-52,64],[-53,12],[-36,25],[-27,50],[-17,49],[-33,-11],[-27,-50],[-48,-58],[-50,-75],[-22,-79],[-17,-96],[-28,-73],[-55,-26],[-53,14],[-55,-22],[-65,-114],[-75,-87],[-39,-116],[-35,-76],[-84,-52],[-93,-38],[-40,-55],[-81,-12],[-45,38],[-83,-26],[-94,-41],[-96,-38],[-52,-14],[-26,-50],[-30,18],[-16,56],[-56,-39],[-11,-52],[-87,-38],[-73,67],[-64,-70],[-83,-99],[-44,-122],[-85,-41],[-92,-32],[-101,-5],[-82,-21],[-64,2],[-58,-51],[-9,-64],[-41,19],[-54,-25],[-38,-58],[-4,-73],[-4,-55],[-25,6],[-40,34],[-68,-40],[-43,-79],[0,-107],[-81,-58],[-133,-114],[-53,21],[-66,-21],[-93,-3],[-36,6],[-16,-49],[-8,-68],[-30,-17],[-43,6],[-46,-52],[-9,-93],[-22,-58],[-54,-50],[-81,-14],[-65,29],[-60,55],[-69,-6],[-48,-17],[-66,73],[-77,69],[-52,-6],[-31,-5],[-15,-47],[31,-70],[34,-58],[20,-49],[-10,-58],[-64,-3],[-9,-47],[9,-67],[39,-84],[23,-65],[-8,-63],[-69,-180],[-119,-251]],[[806124,830886],[-359,473]],[[785671,914513],[485,85],[274,44],[238,71],[274,89],[178,53],[165,162],[128,205],[29,215],[-29,399],[-121,355],[-86,227],[-136,215],[-35,205],[114,269],[136,280],[-22,265],[43,209],[271,334],[350,172],[179,248],[42,144],[15,50],[-36,205],[-50,237],[4,220],[155,667],[39,223],[19,217],[-60,393],[-36,193],[52,200],[37,134],[23,80],[-12,93],[-11,93],[-3,142],[19,172],[43,214],[37,169],[2,73],[-44,62],[-57,145],[-68,148],[-33,142],[-24,103],[-52,83],[-111,113],[-61,124],[-101,149],[-141,332],[-60,82],[-58,7],[-563,-537],[-240,-170],[-51,-32],[-74,30],[-77,46],[-62,128],[-27,79],[-16,104],[-48,134],[-53,52],[-48,55],[-39,14],[-64,-24],[-80,-11],[-61,55],[-6,61],[3,59],[11,65],[6,67],[-11,54],[-17,74],[-18,79],[-13,43],[-9,27],[5,42],[5,38],[8,33],[-16,34],[-21,73],[-5,55],[1,95],[18,107],[7,81],[-12,71],[-24,42],[-11,19],[-3,41],[-2,37],[-26,88],[-27,61],[-32,12],[-68,-17],[-51,-23],[-62,31],[-51,36],[-28,34],[-36,-11],[-29,17],[-23,16],[-44,-14],[-45,31],[-56,3],[-42,-1],[-13,0],[-16,-17],[-22,-32],[-35,-29],[-45,-7],[-42,10],[-40,11],[-29,0],[-27,-14],[-36,-24],[-52,-47],[-55,-32],[-54,-21],[-41,-11],[-32,-11],[-25,-18],[-14,-29],[-12,-38],[-14,-20],[-10,-11],[-28,2],[-29,4],[-35,14],[-21,30],[-12,26],[-6,38],[-5,30],[-12,29],[-12,25],[-12,19],[-15,11],[-72,51],[-71,50],[-49,35],[-21,22],[-27,31],[-6,22],[-18,10],[-34,32],[-16,16],[-43,26],[-142,58],[-78,32],[-45,8],[-34,-2],[-38,-7],[-17,-1],[-27,8],[-24,13],[-19,20],[-18,36],[-26,59],[-13,86],[-6,69],[6,73],[16,103],[23,141],[9,82],[5,52],[-1,37],[-8,33],[-19,34],[-31,37],[-18,45],[-16,57],[-5,46],[-2,45],[6,58],[-10,59],[-17,57],[-38,76],[-41,74],[-29,95],[-24,91],[-3,78],[12,105],[9,98],[-5,130],[8,188],[-7,89],[-63,196],[-49,170],[-22,154],[-1,65],[-15,31],[-10,43],[-41,7],[-45,25],[-14,31],[-18,46],[19,19],[0,15],[-11,31],[1,36],[3,51],[-5,16],[-8,17],[-15,4],[-15,19],[-12,14],[-10,31],[-3,30],[-12,12],[-19,-10],[-11,31],[-32,0],[-15,2],[-7,9],[-5,20],[-11,46],[-2,52],[-17,56],[-21,17],[-9,56],[-2,53],[-20,63],[-15,15],[-23,39],[8,50],[-11,44],[-12,54],[-6,38],[9,19],[-6,24],[-26,13],[-8,28],[-23,13],[-20,0],[-14,-20],[-37,1],[-32,13],[-14,20],[-5,11],[12,23],[4,35],[-10,49],[-2,53],[-4,33],[-15,61],[-27,102],[-45,168],[-35,117],[-3,36],[11,44],[41,79],[48,129],[27,52],[31,30],[38,36],[24,74],[5,64],[20,32],[67,33],[20,36],[-15,71],[-56,118],[0,68],[13,61],[46,57],[45,60],[40,9],[16,-17],[18,-57],[19,-20],[45,0],[56,55],[22,47],[29,82],[-7,71],[5,53],[20,71],[35,150],[42,220],[12,82],[99,123],[112,165],[54,192],[48,82],[38,55],[56,27],[88,88],[61,181],[51,202],[73,132],[62,71],[25,145],[29,64],[91,30],[115,58],[56,76],[87,66],[98,279],[55,214],[54,99],[55,11],[65,60],[55,203],[26,258],[46,49],[44,-11],[29,16],[51,6],[54,55],[55,60],[11,55],[29,98],[47,99],[7,104],[37,121],[109,197],[40,110],[-15,126],[-22,175],[34,134],[-19,173],[0,110],[51,126],[80,132],[316,312],[17,76],[36,164],[74,149],[69,126],[127,44],[244,110],[58,104],[22,66],[-62,274],[-84,131],[-42,19],[-20,10],[-7,29],[-6,30],[8,49],[18,105],[42,131],[51,164],[73,110],[105,60],[33,137],[40,236],[-37,104],[0,88],[92,94],[105,38],[43,115],[64,232],[74,124],[142,99],[189,87],[134,44],[273,159],[240,241],[55,150],[29,91],[-7,97],[-15,78],[2,35],[48,84],[27,143],[32,151],[41,97],[31,107],[12,200],[23,29],[17,43],[21,46],[9,57],[-29,88],[22,122],[44,101],[13,103],[57,78],[52,68],[50,75],[78,121],[41,30],[118,51],[61,30],[36,32],[26,38],[43,62],[43,242],[42,448],[10,103],[19,71],[35,45],[58,-20],[75,10],[97,38],[96,5],[60,-66],[50,162],[29,71],[25,65],[83,32],[75,151],[7,156],[10,157],[25,183],[-17,167],[-14,183],[35,108],[66,32],[64,23],[62,49],[-2,61],[-4,88],[128,44],[84,159],[107,110],[109,42],[42,94],[26,213],[32,65],[61,0],[111,-70],[90,-69],[81,31],[221,286],[187,277],[128,317],[85,241],[0,134],[-56,129],[10,189],[68,173],[53,-5],[111,107],[43,124],[-4,97],[44,62],[85,164],[70,20],[33,39],[54,-10],[32,-49],[47,-3],[33,50],[66,99],[25,75],[58,113],[-18,113],[-29,92],[89,59],[232,280],[29,76],[186,107],[71,205],[4,162],[263,369],[22,32],[93,136],[31,17],[135,17],[31,26],[42,114],[74,140],[41,103],[25,59],[39,24],[8,25],[1,19],[5,12],[29,26],[37,26],[33,-7],[19,7],[9,7],[36,61],[73,75],[29,64],[1,51],[-14,38],[-43,78],[15,57],[18,11],[30,59],[28,11],[7,40],[-16,54],[3,70],[154,46],[81,27],[35,5],[68,-46],[43,30],[32,16],[-18,97],[-10,78],[0,119],[-29,51],[2,43],[27,5],[14,46],[21,67],[75,61],[45,82],[25,-54],[63,8],[60,100],[65,73],[91,102],[112,119],[66,48],[54,35],[-9,49],[3,64],[15,32],[46,3],[67,52],[42,-14],[95,3],[-11,94],[-11,48],[36,38],[64,-3],[22,38],[26,0],[29,19],[30,38],[95,53],[118,73],[68,38],[79,22],[28,56],[32,35],[28,-24],[61,56],[45,70],[39,3],[13,11],[5,118],[9,81],[29,-36],[21,-15],[9,38],[-18,45],[23,22],[64,-19],[22,54],[41,54],[14,35],[-3,54],[-33,24],[-23,35],[-21,22],[-7,35],[-9,53],[3,57],[-5,67],[4,62],[26,67],[27,23],[43,37],[34,51],[9,126],[-3,187],[-15,186],[7,148],[22,132],[33,126],[120,104],[152,66],[146,82],[160,60],[138,39],[105,60],[80,159],[10,182],[39,74],[84,30],[49,87],[-14,77],[-36,71],[-5,155],[32,84],[70,29],[45,-41],[49,-179],[48,-19],[55,9],[24,82],[-3,137],[22,71],[58,28],[121,-1],[72,17],[27,96],[29,110],[19,59],[41,81],[56,-4],[48,-40],[85,-71],[87,16],[26,121],[39,43],[102,-60],[55,-44],[51,-5],[72,11],[51,33],[59,82],[7,109],[-40,72],[-61,75],[-56,89],[0,99],[66,27],[61,-93],[70,-44],[54,-27],[33,66],[-7,131],[47,115],[131,50],[116,11],[98,11],[127,-66],[59,-86],[24,-20],[30,-14],[29,-45],[34,-40],[20,-5],[15,-17],[9,-19],[14,-8],[23,-4],[11,14],[19,-10],[21,8],[10,16],[0,16],[18,15],[23,-7],[26,11],[11,19],[20,4],[31,11],[13,7],[25,13],[17,1],[17,-2],[11,-27],[18,11],[14,-6],[37,-4],[24,-6],[29,-15],[26,2],[16,-19],[21,5],[16,-10],[13,-16],[10,-28],[2,-28],[-1,-20],[10,-35],[17,-53],[26,-47],[40,-30],[23,-32],[25,-12],[25,-13],[30,-3],[26,-9],[20,-21],[10,-14],[15,-5],[59,-29],[32,-21],[14,1],[7,1],[12,-16],[4,-17],[19,-1],[20,-1],[21,-16],[6,-29],[4,-18],[2,-9],[17,-16],[16,-7],[24,-6],[23,10],[53,26]],[[800816,958022],[18,-42],[18,-43],[16,-41],[25,-46],[35,-33],[42,-26],[38,-4],[34,4],[44,6],[16,13],[15,12],[28,38],[18,42],[12,54],[1,54],[-3,87],[5,55],[10,39],[18,60],[23,38],[34,33],[28,20],[41,10],[37,-12],[32,-26],[30,-19],[34,-13],[36,-14],[38,7],[38,17],[23,25],[26,26],[28,26],[29,30],[26,46],[14,46],[13,58],[21,69],[13,63],[13,52],[19,55],[17,56],[21,52],[28,61],[32,30],[35,18],[34,4],[32,-3],[34,-16],[35,-29],[33,-16],[27,6],[41,7],[30,-12],[30,-27],[36,-8],[50,5],[54,20],[61,24],[59,30],[56,25],[83,53],[100,64],[77,45],[62,55],[45,48],[44,20],[39,-20],[19,-48],[2,-5],[13,-59],[24,-50],[44,-53],[29,-49],[29,-44],[49,-58],[42,-50],[42,-56],[51,-54],[54,-38],[48,-27],[49,-25],[62,-22],[48,-8],[43,7],[47,25],[46,31],[30,29],[33,38],[26,40],[40,60],[39,63],[43,49],[36,29],[40,22],[52,7],[43,20],[28,33],[16,50],[10,54],[16,41],[4,12],[25,56],[21,61],[14,65],[15,72],[21,107],[19,81],[20,103],[6,78],[0,76],[-2,47],[0,1],[1,64],[-2,57],[6,49],[13,56],[19,93],[14,94],[15,125],[3,189],[-7,156],[-9,148],[-12,121],[-4,82],[-7,52],[-1,60],[14,49],[26,25],[36,0],[45,-3],[24,14],[29,9],[27,-8],[24,-23],[25,-30],[18,-18],[10,-34],[5,-39],[11,-40],[29,-33],[15,-27],[2,-47],[-9,-53],[-4,-48],[10,-61],[19,-48],[33,-69],[41,-76],[36,-54],[31,-35],[19,-17],[25,-12],[30,21],[22,13],[27,0],[32,-13],[37,19],[39,27],[44,36],[57,48],[58,66],[46,44],[53,44],[34,28],[27,26],[31,20],[23,19],[27,11],[35,9],[35,16],[60,24],[38,12],[40,12],[49,13],[54,19],[55,30],[51,21],[49,7],[36,-1],[44,-5],[51,-10],[6,-1],[42,-6],[31,-8],[32,-24],[22,-19],[17,-35],[22,-63],[6,-49],[3,-64],[0,-66],[0,-70],[0,-74],[0,-69],[-1,-61],[4,-71],[18,-64],[30,-68],[11,-28],[11,-29],[6,-40],[7,-28],[23,-22],[16,-16],[3,-23],[6,-31],[23,-43],[20,-42],[16,-48],[24,-56],[29,-67],[17,-35],[9,-19],[29,-41],[32,-31],[29,-11],[33,0],[43,-2],[42,-5],[48,-3],[31,-4],[20,-4],[9,-2],[45,-26],[25,-19],[24,-11],[28,-5],[30,-13],[38,-14],[34,-9],[39,-6],[54,-4],[39,-12],[43,-17],[34,-5],[41,-1],[32,17],[29,6],[34,-9],[31,-10],[39,1],[47,2],[50,-1],[65,-5],[66,-2],[59,5],[61,8],[91,40],[55,51],[39,25],[31,14],[34,12],[29,4],[34,-3],[29,-12],[36,-29],[30,-49],[23,-50],[16,-69],[9,-60],[28,-47],[24,-36],[16,-35],[13,-61],[4,-60],[5,-75],[-12,-74],[-9,-80],[7,-85],[9,-98],[4,-71],[7,-51],[3,-40],[6,-38],[12,-34],[8,-40],[4,-38],[4,-37],[1,-13],[5,-52],[1,-48],[5,-67],[5,-45],[1,-29],[-7,-32],[-13,-32],[-25,-24],[-29,-14],[-43,-7],[-50,-11],[-65,-7],[-66,-12],[-60,-5],[-43,0],[-58,11],[-53,13],[-54,34],[-58,41],[-40,23],[-41,22],[-60,26],[-64,25],[-41,16],[-57,11],[-50,5],[-62,-13],[-39,-19],[-36,-26],[-24,-27],[-17,-44],[-4,-31],[5,-46],[20,-56],[27,-48],[26,-61],[12,-30],[12,-43],[8,-50],[0,-42],[-14,-62],[-19,-50],[-68,-103],[-76,-126],[-46,-70],[-60,-92],[-43,-58],[-53,-58],[-38,-34],[-46,-32],[-47,-23],[-64,-11],[-92,-10],[-125,10],[-50,-10],[-30,-14],[-33,-32],[-24,-38],[-3,-46],[15,-65],[25,-68],[50,-106],[42,-86],[31,-68],[38,-57],[48,-68],[8,-12],[72,-90],[74,-73],[54,-82],[32,-48],[13,-50],[4,-13],[7,-58],[-13,-49],[-32,-21],[-34,1],[-45,11],[-57,13],[-53,6],[-49,-13],[-42,-37],[-38,-47],[-54,-64],[-39,-79],[-21,-71],[-16,-92],[-5,-73],[7,-58],[-4,-54],[-15,-59],[-27,-39],[-43,-21],[-35,-13],[-42,-40],[-17,-60],[-14,-37],[-16,-29],[-60,-34],[-42,-2],[-31,12],[-30,27],[-28,16],[-36,-10],[-33,-30],[-41,-52],[-35,-65],[-33,-68],[-28,-55],[-25,-66],[-18,-63],[-18,-61],[-9,-92],[7,-67],[20,-74],[32,-52],[27,-20],[33,16],[6,51],[6,55],[2,48],[11,48],[16,21],[20,5],[17,-9],[12,-21],[9,-50],[13,-70],[30,-80],[27,-66],[27,-60],[31,-49],[42,-44],[43,-74],[22,-66],[21,-88],[14,-79],[6,-43],[1,-45],[-12,-56],[-25,-55],[-29,-37],[-34,-13],[-33,2],[-38,19],[-18,5],[-14,-10],[-19,-21],[-3,-5],[-18,-24],[-56,-94],[-40,-84],[-45,-101],[-25,-76],[-23,-61],[-23,-42],[-33,-22],[-43,-5],[-55,33],[-42,64],[-58,137],[-46,97],[-60,68],[-41,30],[-36,20],[-31,9],[-33,-15],[-14,-30],[-10,-34],[11,-54],[16,-53],[21,-63],[26,-45],[25,-56],[12,-42],[2,-42],[-3,-45],[-3,-44],[3,-62],[9,-42],[10,-66],[1,-5],[15,-53],[2,-68],[-3,-42],[-5,-68],[-6,-65],[-5,-122],[-10,-126],[-17,-72],[-26,-65],[-33,-67],[-35,-55],[-60,-83],[-40,-33],[-38,-36],[-29,-28],[-33,-52],[-20,-53],[-23,-58],[-26,-80],[-16,-98],[-3,-124],[10,-123],[17,-82],[22,-98],[1,-80],[-15,-60],[-22,-36],[-45,-47],[-69,-66],[-49,-50],[-47,-49],[-47,-40],[-72,-61],[-51,-65],[-38,-79],[-15,-136],[-5,-182],[-1,-165],[6,-151],[35,-116],[5,-20],[62,-128],[87,-157],[88,-83],[104,-83],[148,-85],[184,-101],[123,-43],[115,-35],[179,-28],[190,-40],[184,-50],[166,-84],[24,-12],[87,-98],[66,-121],[10,-107],[10,-114],[56,-229],[31,-99],[60,-125],[-26,-192],[0,-181],[46,-262],[-86,-201],[-27,-144],[-49,-196],[-31,-184],[-24,-199],[-33,-186],[-42,-257],[-55,-541],[-53,-367],[-70,-428],[-44,-292],[-38,-133],[-23,-121],[-25,-108],[-15,-141],[11,-134],[19,-186],[13,-186],[7,-204],[-22,-136],[-23,-141],[-17,-123],[-28,-164],[-35,-128],[-39,-94],[-48,-156],[-20,-176],[-60,-637],[-24,-178],[-9,-66],[-5,-63],[-4,-70],[-3,-64],[-1,-41],[1,-64],[-1,-49],[-4,-48],[-5,-51],[-3,-48],[-5,-55],[-2,-61],[5,-57],[7,-60],[-8,-79],[-14,-67],[-10,-75],[2,-71],[1,-77],[-3,-89],[-20,-88],[-24,-83],[-10,-66],[-26,-68],[-50,-95],[-22,-32],[-18,-33],[-11,-42],[-10,-60],[6,-103],[18,-98],[21,-73],[27,-90],[39,-131],[13,-93],[4,-36],[-3,-30],[-9,-21],[-17,-3],[-12,11],[-27,26],[-35,38],[-24,52],[-31,85],[-22,99],[-24,55],[-25,10],[-16,-23],[1,-46],[-14,-34],[-31,-2],[-25,26],[-27,22],[-55,42],[-39,59],[-19,82],[-24,41],[-37,34],[-46,4],[-45,37],[-76,95],[-57,92],[-40,24],[-29,14],[-20,-5],[-12,-35],[-5,-48],[-5,-59],[-28,-29],[-28,-18],[-28,-21],[-20,-44],[-28,-44],[-28,-39],[-20,-39],[-6,-50],[18,-65],[9,-143],[-30,-63],[-46,-26],[-53,-23],[-44,-19],[-124,-88],[-96,-68],[-159,-148],[-70,-66],[-133,-127],[-164,-154],[-163,-161],[-76,-52],[-99,-27],[-80,-10],[-67,-23],[-44,-39],[-37,-73],[-24,-121],[-11,-77],[-23,-63],[-43,-42],[-76,-12],[-29,4],[-16,-31],[-1,-57],[-21,-54],[-48,-5],[-35,46],[-21,44],[-43,31],[-70,13],[-38,16],[-35,-7],[-45,-22],[-43,-37],[-47,-12],[-34,-11],[-47,5],[-99,-73],[-68,0],[-99,-12],[-96,-66],[-147,-107],[-43,-49],[-15,-51],[-3,-61],[69,-149],[33,-126],[30,-121],[4,-67],[3,-66],[5,-68],[-10,-52],[-27,-77],[-59,-150],[-27,-90],[-27,-77],[-15,-72],[7,-73],[7,-21],[16,-49],[52,-55],[62,-89],[32,-47],[26,-38],[61,-67],[65,-108],[59,-157],[28,-155],[5,-121],[2,-34],[4,-149],[3,-138],[5,-135],[26,-289],[2,-132],[2,-132],[15,-134],[35,-123],[68,-151],[72,-201],[65,-152],[9,-17],[32,-58],[106,-199],[50,-174],[38,-140],[22,-96],[22,-136],[1,-237],[-4,-133],[-1,-5],[-25,-205],[-33,-256],[-35,-181],[0,-131],[30,-79],[17,-44],[62,-83],[34,-46],[16,-23],[78,-123],[102,-148],[113,-136],[124,-159],[50,-133],[30,-126],[6,-113],[22,-146],[63,-113],[114,-61],[133,-60],[103,-6],[71,-21],[62,-56],[19,-91],[12,-117],[6,-68],[29,-85],[29,-76],[36,-68],[54,-85],[92,-104],[108,-97],[49,-37],[68,-51],[78,-68],[95,-91],[60,-76],[60,-68],[49,-44],[75,-39],[89,-13],[62,26],[70,63],[59,31],[49,4],[51,-18],[73,-70],[107,-78],[94,-39],[73,-23],[60,-43],[48,-33],[95,-52],[85,-20],[58,-3],[76,22],[68,3],[76,-29],[84,-60],[81,-59],[71,-105],[86,-132],[70,-86],[88,-60],[92,-24],[106,-2],[26,5],[31,-26],[17,-41],[15,-72],[-9,-101],[-13,-112],[-1,-132],[9,-144],[-1,-90],[-11,-91],[-17,-88],[-6,-118],[-7,-123],[4,-93],[-2,-82],[-2,-71],[0,-102],[-3,-129],[-10,-123],[-13,-137],[-5,-110],[-16,-106],[-23,-112],[-6,-69],[-2,-23],[-9,-127],[-4,-83],[-18,-159],[-7,-93],[-15,-51],[-6,-47],[-5,-108],[14,-67],[4,-86],[-7,-111],[-12,-99],[-4,-120],[3,-68],[8,-64],[1,-56],[-2,-44],[-4,-60],[3,-70],[1,-67],[20,-92],[20,-83],[-1,-80],[-14,-78],[-9,-94],[0,-91],[3,-76],[3,-100],[-1,-99],[13,-84],[3,-72],[3,-100],[13,-119],[13,-127],[11,-72],[16,-65],[22,-83],[32,-93],[33,-46],[24,-78],[17,-110],[9,-80],[16,-114],[26,-120],[2,-13],[22,-125],[22,-114],[13,-107],[3,-116],[-4,-85],[10,-73],[24,-88],[17,-54],[5,-49],[6,-91],[20,-126],[15,-60],[16,-52],[19,-65],[5,-49],[6,-60],[2,-73],[3,-107],[-4,-128],[-14,-97],[-20,-105],[-16,-116],[-12,-110],[11,-117],[16,-86],[26,-94],[26,-104],[18,-108],[31,-107],[57,-148],[40,-100],[47,-130],[38,-95],[21,-109],[26,-97],[42,-84],[54,-47],[49,-28],[97,-41],[118,-105],[82,-115],[73,-132],[43,-101],[21,-93],[24,-127],[31,-97],[39,-76],[74,-74],[109,-78],[23,-52],[3,-60],[5,-50],[1,-61],[-7,-105],[2,-41],[5,-74],[7,-143],[-6,-106],[10,-107],[20,-83],[32,-67],[20,-91],[40,-601],[22,-150],[26,-122],[26,-117],[14,-78],[14,-106],[3,-32],[7,-64],[5,-141],[-4,-97],[-3,-133],[-5,-96],[0,-140],[14,-117],[9,-131],[11,-102],[24,-147],[17,-110],[13,-75],[6,-35],[27,-132],[23,-98],[18,-96],[11,-99],[-15,-105],[-47,-89],[-47,-61],[-71,-62],[-97,-14],[-135,-7],[-162,3],[-102,38],[-103,32],[-181,30],[-141,25],[-177,64],[-67,28],[-68,13],[-40,-23],[-42,-41],[-41,-109],[-20,-122],[-33,-137],[-9,-82],[-24,-39],[-41,-48],[-73,-52],[-65,-71],[-57,-130],[-38,-112],[-11,-169],[14,-153],[2,-231],[-24,-235],[-12,-185],[4,-219],[18,-110],[22,-60],[30,-47],[17,-63],[21,-47],[6,-57],[7,-68],[3,-51],[-13,-34],[-27,-26],[-21,-33],[-10,-53],[-7,-64],[0,-7],[-3,-60],[-8,-71],[-9,-57],[-16,-41],[-23,-17],[-36,-3],[-37,23],[-44,22],[-32,5],[-25,-6],[-28,-2],[-31,-9],[-17,-25],[-11,-30],[-21,-63],[-14,-63],[-32,-32],[-52,5],[-45,22],[-30,20],[-29,16],[-26,13],[-42,6],[-50,15],[-52,17],[-55,-2],[-48,-32],[-25,-53],[-17,-78],[-2,-87],[1,-89],[-7,-91],[-17,-75],[-29,-81],[-24,-59],[-28,-54],[-26,-57],[-19,-88],[-16,-69],[3,-79],[12,-80],[0,-86],[1,-21],[-6,-103],[-7,-95],[-6,-86],[13,-102],[25,-77],[26,-83],[15,-89],[4,-29],[4,-38],[1,-62],[0,-64],[-5,-66],[-9,-83],[-24,-94],[-24,-78],[-37,-62],[-30,-52],[-27,-61],[-28,-108],[-16,-132],[-20,-103],[-10,-100],[-5,-69],[-14,-86],[-25,-87],[-24,-77],[-9,-45],[-16,-70],[-12,-84],[-4,-82],[1,-110],[16,-110],[18,-84],[36,-93],[21,-92],[9,-99],[15,-99],[11,-43],[11,-43],[31,-76],[33,-50],[19,-29],[148,-229],[340,-247],[260,-65],[216,-121],[296,-377],[121,-108],[163,-144],[176,-149],[62,-140],[-142,-163],[-111,-200],[-28,-210],[-8,-68],[-3,-28],[-12,-95],[-16,-137],[-6,-91],[-6,-111],[-4,-100],[-4,-88],[1,-109],[5,-104],[2,-27],[19,-119],[46,-134],[27,-67],[17,-75],[12,-55],[9,-64],[5,-65],[-1,-68],[-3,-59],[-2,-67],[-2,-102],[-2,-70],[-2,-60],[-8,-63],[-8,-58],[-19,-54],[-21,-36],[-26,-28],[-31,-4],[-31,15],[-29,25],[-60,66],[-90,73],[-72,31],[-42,4],[-41,-8],[-29,-33],[-20,-56],[-6,-133],[0,-101],[7,-118],[1,-122],[-6,-94],[-6,-68],[-15,-50],[-29,-39],[-38,-5],[-50,32],[-54,43],[-46,59],[-58,69],[-69,58],[-52,33],[-55,22],[-50,-15],[-41,-29],[-26,-47],[-28,-61],[-35,-93],[-20,-80],[-18,-75],[-26,-107],[-24,-125],[-27,-124],[-20,-96],[-29,-97],[-42,-59],[-48,-29],[-56,-9],[-56,8],[-47,20],[-59,31],[-53,54],[-25,28],[-21,50],[-15,46],[-9,61],[3,53],[29,93],[15,75],[-2,72],[-21,52],[-25,28],[-31,20],[-34,0],[-44,-33],[-31,-65],[-12,-70],[2,-68],[4,-72],[-2,-73],[-22,-115],[-31,-117],[-37,-105],[-47,-114],[-47,-125],[-51,-139],[-41,-150],[-44,-167],[-37,-161],[-42,-179],[-29,-132],[-21,-107],[-13,-70],[-17,-97],[-15,-109],[-16,-109],[-22,-191],[-6,-136],[-5,-184],[-4,-73],[-18,-210],[-10,-106],[0,-73],[13,-82],[17,-59],[27,-58],[33,-66],[20,-58],[8,-23],[7,-69],[2,-68],[2,-77],[5,-112],[11,-96],[19,-87],[25,-87],[36,-110],[30,-105],[33,-140],[22,-95],[16,-47],[17,-48],[37,-70],[39,-68],[42,-70],[56,-107],[65,-111],[9,-17],[34,-61],[33,-50],[21,-36],[20,-58],[10,-75],[1,-90],[22,-89],[45,-74],[67,-76],[34,-49],[29,-52],[28,-78],[11,-61],[2,-71],[-12,-91],[-26,-132],[-30,-93],[-27,-52],[-27,-54],[-8,-39],[-4,-46],[10,-72],[12,-53],[31,-63],[13,-73],[-1,-100],[-11,-59],[-8,-49],[9,-39],[32,-24],[52,-18],[61,-15],[54,-33],[52,-81],[18,-62],[38,-96],[59,-75],[67,-80],[53,-70],[78,-87],[88,-59],[57,6],[36,34],[23,50],[25,45],[35,27],[53,0],[61,-10],[57,-9],[20,-8],[33,-13],[51,-20],[34,-50],[16,-68],[-2,-68],[-4,-130],[-7,-93],[-13,-157],[-12,-86],[23,-52],[44,-14],[35,8],[35,12],[43,-11],[42,-30],[56,-41],[25,-27],[8,-42],[-2,-50],[-6,-26],[-13,-51],[-30,-110],[2,-65],[-2,-50],[-10,-39],[-19,-58],[-26,-94],[-14,-77],[-9,-73],[-2,-18],[-12,-87],[1,-114],[16,-160],[-9,-111],[-25,-116],[-25,-84],[-58,-47],[0,-1],[-88,2],[-45,-5],[-47,-36],[-38,-78],[-29,-104],[-26,-139],[-26,-93],[-13,-64],[-8,-110],[-21,-166],[-17,-80],[-25,-79],[-38,-96],[-36,-160],[-25,-68],[-28,-45],[-37,-22],[-74,-31],[-116,-33],[-128,-9],[-116,-4],[-89,-8],[-41,-37],[-20,-61],[-30,-66],[-31,-71],[-46,-74],[-40,-53],[-50,-34],[-54,-26],[-54,-27],[-59,-19],[-57,-19],[-69,-17],[-67,6],[-62,40],[-56,46],[-41,55],[-22,54],[-14,66],[-2,55],[11,36],[20,25],[25,20],[29,19],[28,51],[16,43],[1,32],[-14,34],[-26,28],[-47,23],[-60,40],[-38,44],[-32,71],[-2,70],[7,77],[-13,69],[-33,37],[-43,20],[-53,27],[-69,13],[-119,5],[-80,8],[-45,25],[-38,61],[-19,60],[-6,51],[9,81],[-5,75],[-13,123],[-12,87],[-14,103],[-13,99],[-19,130],[-14,86],[-27,60],[-27,49],[-37,52],[-27,88],[-30,67],[-30,58],[-37,39],[-39,21],[-41,12],[-40,6],[-33,-3],[-48,-15],[-45,-32],[-34,-46],[-26,-52],[-20,-75],[12,-116],[24,-75],[24,-55],[16,-57],[15,-76],[9,-65],[-4,-72],[-9,-82],[-28,-90],[-30,-69],[-27,-64],[-25,-55],[-16,-68],[-10,-318],[0,-215],[-19,-184],[-25,-173],[-21,-129],[-14,-111],[-9,-93],[-6,-59],[-18,-95],[-23,-104],[-25,-109],[-22,-112],[-17,-123],[-13,-96],[3,-102],[5,-88],[1,-58],[-5,-52],[-11,-57],[-36,-78],[-33,-68],[-31,-99],[-25,-103],[-28,-91],[-33,-122],[-45,-148],[-53,-143],[-49,-133],[-31,-120],[-14,-96],[-10,-65],[-9,-60],[-27,-74],[-25,-91],[-38,-111],[-17,-61],[-32,-91],[-38,-105],[-34,-110],[-23,-85],[-15,-108],[-7,-93],[-6,-119],[6,-165],[14,-212],[17,-207],[20,-124],[32,-131],[20,-49],[27,-54],[37,-58],[38,-33],[63,-23],[56,-4],[48,21],[45,23],[52,33],[73,26],[78,21],[66,36],[53,41],[71,46],[53,25],[48,1],[48,-13],[58,-21],[59,-39],[82,-55],[76,-49],[93,-82],[73,-55],[65,-32],[36,-13],[36,-3],[29,12],[25,38],[26,86],[24,99],[19,111],[19,89],[27,52],[39,21],[38,-9],[29,-42],[20,-63],[39,-131],[78,-196],[27,-35],[50,-14],[47,-13],[59,-6],[56,14],[76,25],[64,30],[52,13],[40,2],[35,-16],[41,-32],[67,-72],[44,-71],[38,-65],[43,-58],[62,-23],[41,-32],[30,-58],[13,-55],[0,-69],[0,-121],[-11,-97],[-18,-114],[-3,-16],[-6,-38],[-8,-59],[1,-77],[-5,-78],[-10,-62],[-24,-62],[-21,-56],[-5,-49],[11,-65],[21,-70],[15,-48],[10,-36],[5,-58],[9,-101],[2,-91],[3,-84],[11,-85],[16,-64],[15,-41],[21,-61],[20,-78],[12,-58],[7,-51],[0,-52],[-13,-46],[-19,-56],[-25,-67],[-20,-59],[-5,-36],[-13,-23],[-20,-20],[-19,-14],[-28,-36],[-22,-39],[-14,-44],[-8,-24],[-15,-21],[-32,7],[-22,14],[-20,3],[-24,-22],[-15,-41],[-18,-52],[-22,-78],[-17,-68],[-9,-37],[-10,-59],[-8,-55],[-2,-39],[4,-56],[15,-92],[8,-53],[6,-59],[-8,-40],[-19,-46],[-9,-42],[-3,-44],[-12,-74],[-10,-60],[-30,-15],[-32,-8],[-33,-4],[-32,-19],[-36,-29],[-17,-52],[-16,-83],[-16,-73],[-7,-59],[-18,-84],[-6,-70],[-33,-140],[-26,-65],[-12,-68],[-5,-59],[-6,-84],[-6,-84],[-13,-68],[-29,-56],[-46,-51],[-27,-48],[-17,-39],[-4,-53],[11,-91],[-5,-103],[-35,-143],[-28,-100],[-35,-99],[-35,-75],[-35,-49],[-42,-64],[-45,-46],[-69,-86],[-51,-68],[-63,-75],[-29,-42],[-22,-45],[-10,-43],[-7,-78],[-15,-66],[-14,-48],[-22,-58],[-38,-61],[-41,-46],[-36,-32],[-35,-29],[-26,-44],[-16,-54],[-14,-63],[-24,-67],[-49,-23],[-39,-12],[-35,-11],[-29,-23],[-21,-55],[-37,-37],[-30,-30],[-45,-23],[-35,6],[-32,17],[-38,38],[-41,21],[-35,12],[-39,-9],[-31,-40],[-17,-71],[-4,-81],[-11,-62],[-15,-65],[-25,-65],[-30,-54],[-42,-62],[-39,-61],[-28,-62],[-27,-62],[-11,-44],[-11,-44],[-5,-23],[-14,-68],[-14,-97],[1,-101],[-4,-82],[1,-91],[-16,-77],[-16,-75],[-12,-98],[-16,-74],[-12,-48],[-2,-45],[1,-57],[7,-71],[0,-83],[1,-76],[-10,-73],[-21,-63],[-9,-58],[-2,-58],[3,-74],[-2,-69],[-4,-76],[-5,-71],[-7,-71],[-7,-64],[-12,-63],[-19,-61],[-22,-42],[-18,-40],[-34,-35],[-37,-29],[-48,-42],[-48,-61],[-61,-82],[-52,-74],[-60,-85],[-70,-114],[-52,-127],[-53,-146],[-34,-97],[-24,-122],[-10,-94],[-9,-73],[-6,-90],[10,-126],[0,-79],[3,-35],[10,-26],[20,-22],[27,-7],[24,-17],[26,-27],[29,-36],[24,-47],[20,-43],[27,-51],[25,-60],[13,-57],[1,-57],[-2,-62],[-17,-31],[-30,-1],[-38,24],[-25,16],[-18,-12],[-5,-11],[-5,-12],[-24,-52],[-17,-36],[-23,-45],[-32,-61],[-24,-67],[-30,-76],[-18,-66],[-1,-71],[-1,-27],[-15,-28],[-33,-64],[-32,-53],[-41,-53],[-41,-56],[-36,-76],[-33,-60],[-30,-56],[-44,-68],[-32,-51],[-19,-66],[-12,-98],[-5,-159],[15,-88],[39,-118],[37,-84],[27,-34],[19,-21],[39,-32],[55,-26],[30,-38],[17,-27],[32,-53],[51,-36],[33,-23],[65,-15],[123,-16],[67,-41],[52,-59],[16,-20],[24,-38],[54,-88],[79,-95],[100,-68],[97,10],[98,8],[108,-51],[42,-115],[141,-153],[65,-120],[110,-185],[70,-134],[104,-171],[111,-110],[119,-47],[150,-23],[120,19],[115,99],[123,81],[49,129],[42,213],[66,291],[55,92],[82,48],[175,160],[80,129],[85,116],[129,46],[98,-65],[156,-106],[147,-88],[164,-171],[127,-221],[101,-185],[22,-115],[41,-122],[60,-17],[68,-95],[54,-76],[61,42],[49,101],[83,102],[147,191],[187,183],[51,83],[50,83],[110,19],[5,-4],[102,-93],[71,-101],[30,-42],[104,-153],[33,-65],[23,-46],[76,-60],[71,37],[47,69],[17,24],[64,92],[14,-1],[54,-4],[67,-69],[40,-42],[43,-46],[107,-51],[104,37],[173,42],[142,-92],[77,-43],[98,-54],[468,-19],[126,-65],[122,-73],[80,-102],[18,-143],[31,-126],[95,-162],[114,-190],[116,-95],[98,-143],[33,-153],[25,-226],[-9,-199],[-46,-226],[-95,-116],[-104,-104],[-132,-12],[-686,384],[-138,42],[-147,4],[-67,-23],[-37,-83],[3,-97],[-30,-111],[-40,-92],[-65,-37],[-217,-171],[-209,-386],[-137,-182],[-242,-194],[-80,-65],[-73,-143],[-121,-108],[-107,-42],[-121,30],[-101,9],[-83,-65],[-132,-138],[-104,-28],[-89,-134],[-70,-162],[-18,-180],[18,-129],[58,-102],[58,-92],[34,-120],[12,-139],[-33,-125],[-80,-113],[-41,-90],[-20,-171],[-40,-115],[-86,-116],[-64,-171],[-107,-74],[-95,-106],[-55,-143],[-31,-134],[55,-139],[104,-180],[86,-124],[14,-16],[87,-95],[1,-1],[82,-59],[116,-79],[83,-111],[138,-180],[122,-134],[123,-60],[107,-5],[165,79],[316,71],[214,8],[132,8],[158,-37],[69,-74],[21,-138],[-34,-120],[40,-111],[73,-74],[98,-9],[117,-16],[312,-39],[180,-77],[197,-6],[70,-51],[71,-65],[71,-113],[226,-123],[183,-36],[175,23],[104,106],[64,148],[34,175],[-58,102],[-110,83],[-86,129],[-74,176],[-42,194],[0,139],[64,78],[76,51],[37,65],[-19,69],[-51,143],[-22,194],[6,171],[-9,152],[-40,153],[-73,152],[0,195],[79,115],[252,180],[186,55],[261,47],[260,23],[331,217],[208,305],[180,204],[114,128],[168,93],[141,106],[398,559],[103,67],[142,21],[120,-28],[92,-46],[58,-102],[70,-157],[68,-65],[95,-64],[64,18],[101,23],[98,-64],[184,-259],[172,-357],[210,-780],[122,-451],[44,-163],[79,-143],[114,-55],[92,18],[150,134],[251,69],[331,120],[180,95],[218,76],[257,23],[142,-54],[38,-49],[185,-236],[47,-59],[186,-237],[126,-161],[415,-411],[7,-8],[6,-20],[28,-97],[9,-32],[17,-106],[14,-111],[29,-225],[65,-243],[42,-122],[1,-5],[3,-166],[-48,-197],[-5,-20],[-101,-200],[-137,-272],[-17,-35],[-185,-366],[-3,-6],[-76,-183],[-12,-28],[-17,-131],[-9,-67],[-2,-22],[-4,-25],[-6,-46],[-6,-280],[6,-25],[6,-24],[64,-264],[13,-39],[49,-144],[88,-112],[120,-83],[94,-35],[154,-51],[50,-16],[66,-21],[110,18],[158,184],[95,333],[22,78],[12,27],[13,31],[211,495],[143,361],[7,18],[0,1],[22,56],[15,150],[4,38],[-3,149],[22,127],[11,57],[59,107],[73,79],[82,61],[12,7],[181,111],[40,24],[164,64],[220,70],[65,21],[413,78],[19,4],[197,68],[115,88],[88,67],[430,445],[200,143],[195,24],[96,-56],[94,-200],[118,-242],[9,-20],[12,-52],[21,-88],[0,-3],[-2,-18],[-20,-154],[-3,-22],[-2,-18],[-46,-98],[-15,-32],[-166,-243],[-146,-213],[-113,-165],[-18,-35],[-244,-471],[-40,-78],[-27,-101],[-3,-10],[-53,-204],[-1,-23],[-13,-249],[21,-37],[47,-82],[55,-55],[34,-34],[142,-141],[453,-175],[187,-196],[58,-59],[185,-163],[69,-134],[20,-37],[167,-127],[65,-34],[81,-41],[57,-29],[369,-273],[32,-23],[162,-28],[148,231],[132,121],[113,9],[85,-37],[80,-118],[139,-190],[187,-256],[137,-152],[64,-116],[15,-97],[-6,-97],[-63,-69],[-173,-301],[-166,-153],[-42,-91],[-25,-192],[-49,-146],[-6,-212],[-46,-166],[68,-134],[73,-74],[9,-3],[12,-5],[71,-25],[104,-16],[187,77],[113,-5],[98,-92],[101,-56],[135,-37],[2,0],[121,-9],[153,-28],[135,9],[122,-23],[101,-9],[107,-97],[84,-17],[69,31],[135,22],[120,19],[107,-55],[12,-18],[62,-93],[26,-62],[28,-67],[19,-190],[-3,-61],[-5,-128],[81,-92],[147,-23],[169,27],[190,45],[220,-17],[157,-49],[94,-90],[113,-203],[111,-143],[149,-40],[81,-22],[262,37],[224,31],[163,100],[159,46],[61,116],[53,145],[51,40],[215,18],[237,-14],[179,-55],[119,18],[40,74],[52,162],[92,23],[206,-98],[357,-18],[420,-44],[211,-143],[373,-253],[170,-74],[98,-38],[107,-16],[61,-37],[49,-97],[2,-1],[68,-34],[176,-52],[226,-130],[79,-97],[19,-120],[-25,-203],[-15,-194],[12,-130],[46,-97],[80,-46],[119,23],[95,-83],[67,-14],[306,-74],[135,-64],[155,-111],[66,-46],[165,-130],[126,-138],[55,-116],[82,-92],[135,-97],[80,-83],[55,-148],[46,-194],[103,-349],[42,-158],[47,-177],[74,-297],[9,-179],[64,-121],[167,-319],[112,-3],[83,-23],[450,286],[126,31],[116,92],[126,169],[178,74],[202,30],[232,30],[99,104],[180,137],[130,64],[124,59],[202,51],[65,60],[120,31],[64,70],[103,88],[122,20],[4,1],[139,14],[222,44],[95,97],[44,101],[241,202],[184,20],[246,108],[91,31],[55,18],[125,148],[68,23],[104,-23],[131,42],[558,348],[557,183],[282,106],[132,-27],[140,9],[120,-19],[64,33],[28,1],[46,3],[64,56],[17,-10],[29,-18],[61,-65],[49,-37],[12,-69],[-30,-102],[-12,-152],[-10,-162],[-27,-166],[0,-199],[24,-217],[25,-198],[12,-241],[16,-91],[13,-79],[-17,-135],[-52,-129],[-3,-226],[0,-314],[3,-287],[33,-127],[44,-168],[18,-162],[-6,-176],[-18,-189],[-28,-199],[61,-231],[13,-240],[91,-245],[95,-189],[98,-148],[101,-189],[52,-116],[34,-120],[0,-148],[12,-203],[16,-120],[57,-101],[114,-223],[138,-180],[74,-106],[27,-39],[89,-127],[1,-2],[192,-169],[153,-203],[125,-208],[151,-222],[220,-259],[98,-74],[86,-27],[125,-51],[117,-5],[31,13],[134,56],[190,102],[116,129],[117,70],[113,9],[156,-32],[242,-125],[101,-129],[34,-171],[106,-177],[246,-272],[171,-244],[59,-176],[-3,-291],[-59,-341],[-18,-218],[-9,-217],[30,-166],[108,-217],[31,-187],[-22,-174],[-110,-268],[-28,-208],[-8,-230],[11,-121],[49,-124],[92,-109],[129,-62],[147,-28],[128,-69],[114,-83],[73,-144],[74,-208],[339,-582],[150,-203],[102,-92],[76,51],[107,207],[123,74],[58,180],[34,310],[0,296],[61,503],[9,148],[60,131],[151,433],[62,161],[82,97],[114,97],[144,28],[58,65],[43,87],[33,107],[55,27],[135,97],[104,97],[98,144],[52,175],[34,231],[31,194],[85,153],[172,175],[39,18],[151,70],[92,5],[79,-65],[239,-342],[61,-123],[46,-226],[-17,-147],[-75,-77],[-49,-32],[-39,-102],[24,-115],[58,-74],[153,-28],[138,-46],[98,28],[61,78],[117,37],[95,-74],[76,-129],[6,-180],[40,-264],[83,-240],[89,-92],[36,-79],[-2,-85],[-10,-224],[38,-215],[27,-293],[55,-162],[58,-180],[4,-9],[97,-181],[65,-196],[137,-256],[104,-97],[123,-51],[47,-7],[48,-7],[183,15],[112,-22],[170,-25],[165,50],[190,88],[139,134],[262,300],[198,143],[139,93],[178,32],[184,-27],[208,-19],[230,37],[38,18],[223,105],[134,25],[339,23],[359,74],[275,79],[239,133],[175,74],[184,-9],[122,-97],[181,-101],[95,-84],[70,-134],[40,-175],[63,-196],[72,-118],[482,-332],[69,-30],[291,-123],[98,-102],[116,-254],[107,-125],[83,-41],[83,-65],[92,-69],[171,-301],[89,-207],[83,-130],[107,-78],[104,-33],[76,42],[92,88],[111,92],[85,102],[77,18],[3,0],[67,-74],[62,-106],[79,-134],[61,-129],[68,-56],[85,0],[59,88],[55,134],[43,111],[-34,166],[-55,120],[-9,120],[33,125],[71,88],[61,28],[83,-51],[70,27],[74,162],[32,109],[7,25],[-7,42],[-35,203],[-46,360],[-3,167],[52,152],[6,153],[-25,859],[16,171],[35,90],[41,104],[132,258],[132,245],[91,153],[108,92],[101,83],[101,97],[131,79],[132,9],[141,-42],[802,-46],[135,-14],[300,-18],[67,-23],[65,-93],[131,-55],[46,-72],[46,-145],[104,-148],[86,46],[83,-23],[52,-74],[6,-83],[-31,-134],[-15,-235],[-3,-231],[15,-278],[101,-346],[25,-467],[46,-143],[101,-74],[119,-74],[98,14],[120,19],[86,-37],[113,-65],[92,-60],[70,-195],[28,-78],[116,-258],[104,-144],[173,-23],[127,14],[120,74],[104,171],[18,189],[31,268],[55,227],[89,124],[125,107],[111,4],[131,-124],[110,-176],[117,-46],[61,74],[101,134],[515,591],[193,143],[358,171],[86,44],[95,49],[159,37],[107,-42],[61,-111],[34,-194],[144,-263],[291,-393],[162,-162],[119,-157],[80,-129],[55,-111],[55,-88],[129,-78],[104,-33],[86,56],[95,111],[73,129],[46,185],[95,106],[104,95],[90,49],[23,-11],[86,-36],[58,-92],[16,-134],[-12,-171],[-190,-682],[-34,-122],[-196,-850],[-37,-309],[-9,-148],[9,-125],[49,-106],[89,-143],[107,-84],[49,-152],[19,-129],[27,-227],[5,-192],[-42,-210],[3,-180],[37,-185],[61,-120],[117,-198],[107,-245],[135,-245],[477,-559],[242,-217],[144,-51],[153,-115],[147,-153],[49,-138],[62,-150],[70,-142],[22,-110],[-25,-153],[52,-125],[74,-97],[24,-87],[-3,-107],[-37,-69],[-46,-88],[-21,-97],[9,-101],[32,-45]],[[919050,816932],[-11,-117],[11,-59],[29,-44],[197,-281],[110,-227],[40,-114],[22,-108],[17,-138],[36,-116],[43,-97],[38,-39],[33,-22],[33,-31],[65,-58],[66,-122],[110,-110],[194,-197],[28,-26],[33,-34],[51,-56],[39,-67],[29,-63],[17,-70],[-2,-77],[-11,-67],[-18,-61],[-33,-72],[-46,-97],[-89,-94],[-99,-113],[-79,-69],[-112,102],[-88,53],[-64,25],[-48,-42],[-36,-50],[-37,-100],[-40,-171],[-41,-139],[-57,-99],[-110,-89],[-70,-44],[-35,-86],[-67,-94],[-87,-103],[-103,-108],[-82,-77],[-101,-66],[-94,-37],[-91,-5],[-331,8],[-391,8],[-167,7],[-50,-8],[-34,-21],[-38,-36],[-38,-23],[-34,-98],[-93,-131],[2,-43],[-21,-17],[-24,-20],[-19,-72],[-38,-37],[-29,-49],[-20,-60],[-135,-246],[-19,-31],[-8,-52],[-176,-306],[-224,-420],[-91,-178],[-92,-179],[-68,-148],[-52,-172],[-22,-209],[-21,-279],[-24,-241],[-44,-252],[-130,-877],[-67,-401],[-160,-975],[-27,-165],[-91,-655],[-125,-890],[-46,-375],[-83,-409],[-36,-315],[-161,-1187],[-57,-380],[-78,-306],[-345,-938],[-91,-344],[-29,-231],[-24,-63],[-131,-37],[-55,-69],[-28,-112],[-57,-120],[-787,-721],[-38,-51],[-57,-26],[-42,-60],[32,-66],[-3,-97],[34,-92],[47,-74],[2,-100],[53,-34],[42,-75],[51,-20],[6,-54],[-19,-49],[-49,-20],[-14,-60],[6,-34],[-17,-40],[-29,3],[-11,-29],[30,-49],[-13,-85],[-6,-98],[-34,-228],[-49,-141],[-66,-154],[-15,-46],[11,-189],[-29,-40],[-13,-40],[8,-43],[-72,-143],[-76,-166],[-12,-88],[-24,-209],[-8,-60],[34,-137],[38,-186],[6,-163],[-4,-55],[-47,-40],[-75,-119],[-58,-135],[-23,-69],[-87,-37],[-172,-95],[-37,-51],[-49,-9],[-38,-48],[-57,-26],[-51,-52],[-23,-68],[2,-57],[-85,-178],[-38,0],[-34,12],[-25,-35],[-13,-40],[9,-43],[25,-3],[4,-57],[-47,-126],[-40,-28],[2,-46],[26,-17],[-40,-220],[-94,-223],[-95,-152],[-14,-89],[-1,-57],[-33,-26],[-36,12],[-91,-40],[-43,-3],[-143,-155],[-485,-446],[-82,-89],[-79,-94],[-84,-126],[-87,-129],[-38,-85],[-47,-78],[-25,-40],[-24,-85],[-27,-264],[-85,-572],[-80,-635],[-169,-1253],[-13,-154],[-19,-100],[-59,-149],[-59,-83],[-206,-226],[-237,-272],[-32,-34],[-31,-34],[482,-189],[78,-39],[413,-386],[40,-35],[65,-43],[61,-30],[88,-13],[112,20],[99,38],[85,68],[153,55],[78,55],[66,73],[32,85],[25,77],[15,86],[25,55],[126,160],[93,123],[50,-35],[76,-45],[57,10],[277,158],[96,35],[148,-40],[37,-3],[64,40],[301,5],[38,25],[50,40],[38,30],[39,13],[41,-3],[63,-47],[53,-70],[65,-158],[47,-161],[58,-250],[116,-376],[49,-86],[108,-104],[38,-70],[141,-380],[55,-116],[56,-106],[24,-25],[38,-26],[88,-24],[24,-16],[365,56],[131,107],[161,187],[77,100],[109,30],[291,-100],[65,-17],[84,15],[53,37],[172,138],[422,137],[792,-217],[31,-43],[59,-127],[82,-83],[374,180],[119,-13],[182,133],[90,160],[97,60],[18,30],[150,180],[122,164],[199,173],[265,83],[292,-10],[217,-53],[387,-237],[398,-273],[236,-20],[246,-20],[212,-50],[256,-50],[159,10],[111,50],[126,93],[170,14],[128,-14],[184,34],[345,3],[228,-87],[81,-90],[89,-100],[113,-63],[97,13],[79,60],[288,370],[108,54],[223,16],[323,-130],[86,187],[241,477],[60,120],[88,77],[659,276],[414,177],[628,410],[13,-60],[0,-2],[13,-161],[11,-43],[2,-50],[-22,-24],[-26,10],[-22,27],[-27,-10],[7,-33],[-9,-37],[22,-20],[13,-23],[-2,-37],[-31,0],[-35,-17],[4,-26],[11,-47],[-22,-140],[27,-37],[48,-3],[33,23],[7,-57],[-20,-50],[-35,-3],[-27,17],[-17,-17],[-5,-30],[21,-10],[30,-7],[-20,-36],[-2,-47],[-18,-23],[-53,56],[-9,-33],[27,-37],[60,-63],[121,-123],[-26,-37],[-14,-9],[-13,-48],[27,-2],[8,15],[25,-6],[-31,-67],[23,-50],[32,10],[22,-10],[-2,-43],[-33,-4],[-18,10],[-15,-26],[13,-20],[37,0],[54,-44],[44,-63],[-20,-77],[9,-267],[-16,-50],[-29,-43],[-28,-3],[-29,-7],[-2,-37],[0,-36],[-29,-4],[-22,44],[-24,-14],[-9,-30],[0,-63],[24,-97],[-13,-46],[-22,-9],[-33,-168],[2,-30],[33,-17],[40,94],[20,23],[13,-33],[-2,-70],[-25,-21],[-13,-43],[66,-23],[0,-54],[-6,-53],[-18,-50],[-26,0],[-16,-50],[11,-57],[18,-46],[-36,-64],[-13,-43],[-31,0],[5,37],[-14,63],[-31,-50],[-72,-27],[6,-50],[33,-40],[22,-23],[-11,-27],[-28,10],[-76,-43],[-4,-107],[-111,-754],[-92,-483],[22,-70],[-25,-57],[7,-30],[-15,-50],[-27,20],[-15,83],[-67,4],[-6,-30],[20,-17],[8,-90],[-37,6],[-64,-33],[-36,40],[-39,20],[-47,-15],[-42,19],[-38,-94],[-42,-26],[-28,13],[-25,-13],[-19,13],[11,40],[-65,73],[-97,14],[-26,-87],[-60,30],[-9,-53],[29,-20],[2,-37],[-7,-30],[-26,-27],[-35,20],[-71,-40],[-5,-60],[-22,-130],[-53,-47],[27,-73],[-69,-87],[-53,-36],[18,-27],[31,-67],[-18,-6],[-24,16],[-51,-16],[-27,-54],[23,-26],[28,3],[9,-50],[-37,-10],[-14,-43],[-11,-80],[-37,-40],[6,-81],[-55,-33],[-20,-43],[27,-17],[0,-63],[37,-17],[-6,-40],[-53,-43],[4,56],[-16,40],[-39,-63],[0,-97],[-25,-6],[-31,50],[-22,-64],[-75,24],[-31,-104],[-29,47],[-7,64],[-43,16],[-11,-60],[39,-57],[7,-73],[-11,-37],[-35,-10],[-12,34],[-2,63],[-17,23],[-49,-2],[-35,-28],[17,-76],[-30,-15],[-43,48],[-58,-40],[7,-103],[45,-51],[-27,-30],[-57,67],[-95,-28],[-14,-42],[38,-57],[-113,-93],[13,-60],[-22,-63],[-45,-21],[-3,-59],[-32,-11],[-63,-106],[-38,27],[-55,-84],[-133,-26],[2,-47],[49,-60],[-42,-44],[-90,0],[-43,-53],[25,-80],[-34,-10],[-33,10],[7,-73],[-18,-84],[-46,-33],[-5,-47],[-64,-16],[-70,-117],[-54,-20],[-4,-47],[24,-17],[3,-33],[-34,-33],[-42,-34],[-33,-66],[14,-34],[-25,-56],[22,-57],[22,-37],[3,-40],[-25,-30],[-17,-40],[15,-73],[11,-30],[-2,-54],[-44,31],[-58,-4],[-2,-47],[-73,-66],[2,-34],[-28,-26],[-40,53],[-86,-140],[-34,3],[-37,-36],[29,-24],[61,-13],[27,-123],[7,-70],[-21,10],[-37,43],[-35,-77],[-40,-26],[-33,-24],[-22,-93],[26,10],[11,-34],[-26,-173],[46,30],[102,30],[68,63],[56,104],[483,621],[24,24],[41,-24],[247,-324],[255,-268],[67,-101],[65,-166],[16,-158],[-33,-138],[-67,-190],[-75,-122],[-32,-77],[-6,-251],[6,-158],[48,-98],[183,-271],[271,-215],[8,-89],[-102,-110],[-105,-158],[-53,-178],[-102,-182],[-49,-134],[-19,-146],[-34,-154],[-57,-113],[-54,-61],[-164,56],[-69,53],[-68,85],[-64,69],[-124,73],[-147,-49],[-116,8],[-115,-72],[-67,16],[-33,16],[-62,8],[-56,-20],[-51,-81],[-16,-81],[-35,-130],[-75,-851],[-30,-178],[-51,-77],[-94,-77],[-38,-69],[0,-158],[-48,-211],[-64,-105],[-137,-158],[-186,-240],[-97,-162],[-69,-129],[-19,-110],[5,-182],[43,-134],[43,-53],[27,-109],[-16,-77],[-81,-97],[-83,-90],[-97,-247],[-139,-275],[-315,-171],[-107,-117],[-148,-272],[-99,-121],[-38,-102],[-38,-89],[-75,-105],[-67,-28],[-73,8],[-23,6],[-77,20],[-101,-10],[-51,-16],[-40,-33],[-17,-44],[-21,-53],[64,40],[49,-16],[37,-48],[46,-114],[78,-61],[78,-12],[126,57],[121,113],[143,163],[75,28],[64,-4],[65,-41],[113,-125],[118,-122],[115,-28],[105,32],[195,52],[101,1],[64,-41],[46,-77],[51,-223],[32,-105],[43,-85],[67,-110],[51,-215],[97,-344],[24,-125],[-3,-122],[-2,-138],[5,-89],[43,-178],[27,-166],[21,-240],[-16,-214],[-29,-134],[-32,-97],[-22,-65],[-11,-102],[24,-113],[81,-284],[83,-211],[57,-145],[59,-86],[91,-68],[89,-4],[91,4],[94,8],[81,-25],[67,-40],[175,-126],[164,-48],[131,36],[92,85],[53,110],[19,97],[16,198],[41,77],[43,29],[48,24],[94,0],[261,-73],[56,37],[35,69],[78,133],[80,118],[73,69],[99,0],[102,-16],[84,-57],[102,-179],[54,-137],[29,-122],[5,-211],[-2,-121],[5,-102],[19,-77],[148,-206],[64,-45],[65,-4],[121,4],[566,138],[113,4],[86,-28],[398,-130],[260,-37],[291,-113],[126,-114],[64,-101],[46,-130],[48,-105],[89,-77],[73,-36],[91,8],[73,65],[26,85],[16,113],[11,93],[47,-38],[200,-262],[33,-77],[86,-279],[96,-126],[132,-239],[137,-442],[13,-89],[17,-130],[56,-129],[94,-114],[121,-146],[115,-287],[17,-86],[16,-198],[104,-515],[38,-89],[65,-41],[123,-72],[46,-94],[-6,-89],[-21,-146],[-54,-259],[-45,-118],[2,-113],[35,-97],[14,-122],[0,-219],[-6,-69],[-158,-275],[-35,-73],[-24,-45],[-3,-73],[75,-178],[51,-243],[27,-102],[51,-129],[40,-134],[6,-101],[-6,-77],[-26,-57],[-60,-41],[-206,-73],[-156,-52],[-221,-138],[-96,-37],[-180,-89],[-135,-109],[-83,-110],[-126,-300],[-92,-413],[-10,-109],[-3,-219],[-21,-114],[-25,-93],[-13,-166],[-3,-118],[-19,-81],[-48,-56],[-64,20],[-51,65],[-33,77],[-29,48],[-43,29],[-283,36],[-131,49],[-121,36],[-113,-69],[-150,-109],[-177,-109],[-266,-236],[-202,-12],[-148,33],[-56,28],[-62,85],[-86,122],[-274,174],[-223,89],[-70,8],[-54,-52],[-37,-73],[-62,-118],[-72,-85],[-81,-69],[-124,-53],[-96,-12],[-100,0],[-75,17],[-99,28],[-78,28],[-68,8],[-51,-60],[-72,-118],[-100,-280],[-34,-93],[-27,-109],[10,-122],[41,-65],[43,-73],[72,-26],[81,-95],[357,-592],[14,-61],[2,-56],[-51,-86],[-56,-85],[-40,-40],[-30,-57],[-13,-316],[-19,-73],[-97,-292],[8,-93],[8,-77],[-11,-109],[-43,-94],[-37,-24],[-70,-45],[-94,-40],[-75,-69],[-35,-53],[-49,-125],[-35,-37],[-56,-14],[-62,-18],[-86,-65],[-75,-45],[-102,-32],[-97,-37],[-448,-267],[-72,-68],[-68,-74],[-51,-122],[-27,-113],[-8,-219],[0,-158],[-30,-134],[-64,-158],[-24,-77],[-14,-65],[-13,-133],[-3,-329],[-21,-137],[-57,-118],[-119,-128],[-82,-87],[-49,-101],[-14,-71],[-61,-310],[-102,-231],[-236,-458],[-25,-89],[27,-77],[143,-166],[150,-203],[67,-259],[62,-106],[70,-44],[91,-77],[35,-41],[27,-89],[-24,-130],[-30,-81],[11,-87],[126,-265],[89,-102],[180,-239],[99,-125],[38,-110],[40,-405],[-16,-207],[-48,-259],[-22,-393],[41,-102],[373,-741],[89,-94],[290,-263],[150,-113],[260,-525],[-2,-26],[-6,-82],[37,-668],[-32,-503],[-43,-341],[-8,-202],[51,-349],[-3,-90],[15,-254],[-69,-1796],[60,-241],[100,-228],[77,-242],[54,-249],[-40,-547],[12,-332],[37,-258],[51,-564],[-11,-199],[-10,-319],[30,-232],[74,-568],[40,-547],[49,-487],[-146,-715],[-160,-426],[-23,-194],[-51,-241],[-137,-323],[-60,-241],[-46,-194],[-20,-181],[-65,-727],[11,-254],[109,-457],[102,-297],[115,-172],[131,-168],[105,-99],[78,-61],[25,-51],[3,-78],[-11,-73],[-46,-52],[-66,-69],[-65,-99],[-40,-142],[-20,-116],[70,-479],[21,-288],[0,-228],[-37,-202],[-37,-39],[-54,-26],[-120,-43],[-83,-39],[-46,-34],[-31,-103],[-66,-595],[-23,-249],[15,-190],[51,-172],[414,-1662],[100,-599],[111,-469],[32,-216],[25,-417],[32,-354],[3,-232],[-20,-323],[-18,-474],[-28,-86],[-40,-56],[-163,-146],[-54,-61],[-20,-68],[-6,-164],[49,-289],[-9,-241],[-28,-194],[-6,-314],[37,-383],[14,-211],[-40,-164],[-97,-224],[-145,-215],[-212,-306],[-102,-103],[-163,-82],[-231,-65],[-69,-34],[-63,-78],[-65,-142],[-48,-301],[-13,-82],[385,-542],[589,-787],[606,-892],[878,-1207],[775,-1153],[36,-35],[506,646],[54,32],[785,-258],[83,-81],[279,-316],[173,-63],[166,6],[235,51],[253,90],[278,176],[249,192],[209,132],[45,80],[41,70],[206,39],[128,-26],[106,-13],[79,20],[88,73],[61,79],[98,43],[104,16],[117,16],[112,3],[99,-26],[131,-73],[123,-108],[-3623,-8084],[-282,-648],[-4947,-11396],[254,-170],[254,-170],[394,-229],[338,-397],[278,-574],[215,-314],[84,-72],[85,-71],[131,-32],[366,-68],[770,-50],[783,23],[687,-227],[455,-362],[384,-416],[263,-350],[326,-230],[1137,-578],[776,-416],[377,-254],[265,-314],[135,-437],[96,-480],[157,-552],[203,-382],[191,-254],[239,-186],[296,-188],[357,-403],[295,-403],[315,-595],[237,-679],[304,-611],[433,-518],[461,-322],[597,-153],[647,-161],[889,-594],[563,-612],[315,-348],[191,-203],[276,-272],[180,-305],[163,-357],[96,-458],[22,-433],[85,-272],[213,-280],[287,-139],[535,-22],[491,175],[48,18],[3,1],[921,128],[214,136],[148,191],[184,132],[332,-51],[410,-187],[189,-190],[230,-386],[112,-267],[112,-436],[53,-633],[-7,-747],[-9,-1182],[9,-831],[-112,-521],[-93,-675],[-84,-648],[7,-612],[-14,-764],[-40,-3839],[-9,-894],[-248,-2463],[-162,-1893],[-1728,-10280],[-470,-3113],[-518,-2689],[-15,-116],[-155,-1143],[14,-304],[2,-45],[200,-292],[148,-52],[274,-2],[440,8],[217,-39],[189,-95],[158,-130],[156,-186],[808,-1316],[79,-60],[77,-32],[77,4],[51,-29],[45,-68],[44,-72],[49,-28],[53,-15],[82,25],[89,4],[196,-67],[340,-25],[259,-63],[117,24],[140,50],[184,60],[184,10],[89,-21],[77,-46],[124,-98],[74,17],[126,106],[150,176],[65,49],[124,197],[51,92],[5,70],[-17,49],[-30,57],[-61,126],[-11,81],[16,88],[49,166],[133,133],[228,159],[224,193],[119,109],[80,120],[175,292],[37,74],[58,60],[69,-6],[83,2],[231,21],[158,67],[63,53],[108,158],[114,64],[86,0],[171,-32],[126,-49],[79,91],[191,35],[56,67],[66,25],[16,63],[-2,67],[-17,60],[10,74],[30,60],[81,35],[75,88],[33,102],[32,84],[42,60],[10,46],[-10,42],[-18,42],[-5,50],[23,28],[33,0],[35,14],[2,60],[7,56],[136,461],[28,28],[49,-25],[35,25],[14,56],[35,71],[51,98],[79,11],[115,21],[18,25],[0,66],[0,67],[35,46],[56,-14],[40,35],[26,74],[56,148],[30,14],[69,28],[64,63],[191,117],[107,140],[38,81],[91,28],[128,-52],[112,-81],[63,22],[140,97],[89,138],[70,45],[46,-42],[14,-63],[-25,-88],[7,-46],[39,-7],[33,60],[47,3],[14,-67],[72,64],[147,21],[207,113],[252,77],[294,32],[198,-16],[187,-51],[240,-137],[210,-169],[154,-141],[168,-169],[131,-190],[70,-46],[40,7],[2,64],[28,281],[-5,74],[-32,70],[-63,88],[-26,67],[21,60],[44,25],[33,31],[-11,48],[-33,100],[2,88],[21,99],[-14,35],[-40,28],[-53,46],[-77,28],[-82,21],[-47,-14],[-51,-113],[-51,-17],[-5,123],[-35,60],[-9,45],[123,78],[3,53],[-42,59],[-12,36],[12,42],[42,49],[21,78],[42,42],[51,-57],[19,-70],[-3,-112],[7,-64],[33,-17],[35,-7],[70,17],[61,21],[70,46],[53,0],[91,-28],[96,-102],[53,-53],[49,11],[108,84],[72,35],[19,42],[-5,50],[-33,70],[-9,70],[26,60],[46,7],[38,-49],[30,-53],[65,-17],[52,14],[79,-21],[56,-7],[212,-60],[75,88],[135,-95],[66,98],[56,109],[35,127],[37,18],[28,-21],[9,-205],[10,-95],[-12,-348],[12,-380],[-33,-134],[-119,-243],[-44,-162],[-192,-302],[-44,-99],[-35,-116],[-5,-98],[24,-95],[37,-39],[72,-7],[70,39],[73,56],[32,53],[124,74],[47,3],[44,-28],[28,-32],[11,-74],[26,-7],[28,4],[110,274],[-7,43],[39,35],[126,-32],[313,-49],[89,-74],[460,-481]],[[950284,578950],[0,-1],[-8,-196]],[[948870,575502],[39,-166],[80,-346]],[[994238,559318],[454,-2654],[21,-124],[654,-4117],[856,-6899],[-163,-3111],[-787,-9823],[-483,-2102],[-606,-2525],[-432,-1654],[-673,-2056],[-1016,-2972],[-1742,-1951],[-1539,-1723],[-591,-526],[-1657,-1475],[-1807,-1363],[-281,-204],[-1288,-937],[-1622,-1178],[-2042,-1485],[-1735,-1261],[-1106,-795],[-1789,-1370],[-155,-120],[-797,-613],[-1136,-875],[-936,-720],[-323,-249],[-2161,-1751],[-4037,-3478],[-4909,-4170],[-2753,-2284],[-1501,-1594],[-390,-494],[-234,-407],[-58,-100],[-132,-374],[79,-480],[36,-321],[-51,-266]],[[953480,489251],[0,-1],[2,-41]],[[929920,488042],[-137,-46],[-1,0]],[[924483,487159],[-181,-15],[-1,0]],[[858542,663142],[473,-596]],[[869399,831399],[49,-81],[60,-6],[192,77],[68,19],[61,-30],[111,-53],[81,-68],[188,-158],[167,-119],[102,-86],[113,-158],[166,-155],[166,-155],[134,-93],[36,-25],[16,-11],[48,-34],[247,-194],[273,-142],[148,-196],[16,-20],[52,-70],[100,-120],[62,-105],[26,-127],[52,-98],[14,-18],[20,-23],[50,-61],[114,-85],[131,-67],[127,-51],[79,-20],[65,41],[36,89],[41,96],[60,56],[82,20],[30,17],[62,37],[63,8],[88,-37],[50,-52],[16,-69],[29,-65],[120,-53],[142,-23],[147,-5],[18,-1],[138,4],[81,-17],[89,-23],[63,-55],[91,-114],[219,-373],[48,-115],[37,-139],[32,-127],[44,-76],[171,-293],[132,-200],[44,-127],[161,-164],[177,-169],[141,-110],[69,-71],[44,-27],[55,-54],[54,-11],[47,8],[56,-68],[80,-25],[47,-34],[49,-68],[54,-48],[88,6],[60,26],[28,92],[140,58],[258,97],[138,26],[124,0],[166,106],[196,111],[143,59],[138,12],[82,-29],[47,-31],[60,-87],[26,-124],[13,-99],[26,-85],[39,-70],[25,-21],[24,-21],[58,-48],[58,-31],[79,2],[95,15],[110,5],[107,-8],[140,-68],[80,-20],[73,-14],[96,17],[61,40],[165,189],[348,380],[355,480],[314,587],[48,75],[302,480],[312,409],[247,248],[213,124],[202,147],[247,282],[213,299],[105,231],[3,11],[53,164],[122,244],[93,116],[83,169],[49,114],[79,91],[86,73],[97,40],[116,84],[168,198],[516,558],[161,147],[79,39],[101,-22],[142,-45],[131,-40],[119,-62],[169,-182],[85,-138],[77,-80],[64,-46],[120,-12],[81,42],[60,59],[17,149],[38,275],[65,267],[116,298],[67,117],[109,37],[88,-32],[131,-69],[113,-111],[95,-176],[250,-585],[194,-372],[92,-112],[106,-53],[119,64],[89,69],[70,234],[38,315],[174,658],[67,138],[98,85],[117,43],[116,-11],[131,-42],[97,-91],[96,-90],[113,0],[106,-21],[81,-48],[81,-80],[92,-144],[53,-170],[84,-111],[117,-101],[116,-54],[120,-16],[723,32],[37,-24],[18,-12],[19,-12],[49,-101],[85,-180],[141,-245],[130,-101],[85,-11],[102,43],[102,85],[113,106],[97,168],[46,124],[136,139],[90,167],[137,145],[202,315],[8,11],[68,50],[48,35],[99,11],[95,-106],[46,-128],[49,-95],[11,-22],[63,-165],[78,-90],[99,-38],[77,-69],[78,-58],[102,-32],[120,5],[109,43],[247,218],[144,43],[150,7],[143,61],[53,80],[60,149],[18,287],[-4,272],[4,303],[49,298],[64,202],[63,58],[317,38],[151,-62],[332,-34],[74,16],[107,-114],[49,-99],[7,-187],[-82,-196],[-56,-213],[28,-239],[39,-176],[74,-345],[95,-389],[64,-250],[109,-143],[145,-32],[116,-122],[95,-144],[88,-170],[92,-91],[123,-63],[113,26],[173,-10],[120,-91],[102,-112],[106,-74],[84,21],[60,75],[22,143],[176,277],[201,117],[169,32],[166,53],[88,-21],[67,-149],[127,-91],[56,-143],[159,10],[137,6],[177,228],[96,30],[86,-56],[78,-89],[31,-98],[-34,-140],[19,-146],[36,-64],[0,-108],[42,-58],[79,-63],[127,-52],[118,-51],[80,47],[71,65],[96,-9],[90,-19],[68,61],[50,79],[46,94],[65,102],[87,99],[95,56],[90,-20],[289,-144],[173,-168],[22,-121],[9,-173],[18,-131],[28,-187],[37,-131],[47,-102],[74,-56],[96,37],[105,93],[369,301],[139,78],[149,37],[148,-56],[149,19],[145,-5],[115,-56],[90,-70],[86,-122],[106,-140],[241,-289],[353,-294],[217,-112],[312,-192],[168,-28],[164,42],[272,84],[167,84],[74,77],[78,82],[235,233],[99,157],[62,35],[68,-23],[65,-38],[93,-28],[155,-56],[136,-98],[53,-107],[49,-103],[134,-178],[195,-238],[219,-187],[446,-382],[81,-131],[52,-131],[9,-27],[41,-122],[22,-187],[0,-187],[-56,-154],[-99,-150],[-102,-149],[-103,-168],[-49,-136],[-34,-135],[15,-145],[53,-65],[102,-38],[121,-56],[167,-88],[155,-61],[263,-196],[235,-173],[167,-140],[115,-131],[206,-181],[218,-113],[142,5],[158,46],[155,98],[97,143],[15,21],[80,196],[31,215],[-22,233],[-55,140],[-49,73],[-44,68],[-109,102],[-80,103],[-115,163],[-142,201],[-43,131],[37,150],[80,58],[133,30],[106,-28],[83,-70],[94,-63],[39,-26],[285,-112],[226,-51],[198,-9],[208,4],[173,33],[331,93],[301,5],[130,-28],[65,-103],[9,-84],[-25,-210],[-28,-275],[-6,-1103],[-49,-471],[-158,-738],[-22,-140],[22,-122],[74,-37],[74,14],[99,79],[149,108],[628,649],[140,103],[114,88],[140,33],[139,-5],[139,-14],[90,-56],[81,-130],[27,-187],[28,-234],[40,-229],[96,-261],[106,-252],[216,-402],[861,-1485],[189,-313],[176,-205],[233,-197],[201,-116],[164,-67],[326,-70],[151,-31],[142,-70],[121,-75],[77,-98],[36,-105],[17,-49],[49,-164],[10,-159],[-7,-168],[-31,-182],[-38,-83],[-116,-253],[-28,-140],[18,-145],[65,-107],[61,-24],[35,-14],[106,-23],[120,19],[118,42],[121,84],[114,102],[99,141],[90,177],[87,210],[62,150],[71,102],[102,52],[112,18],[114,-37],[81,-65],[49,-103],[33,-129],[48,-161],[71,-107],[93,-65],[123,-47],[137,19],[151,56],[183,37],[118,-9],[124,-70],[86,-103],[90,-178],[50,-233],[-4,-248],[-24,-224],[-13,-243],[60,-186],[107,-131],[130,-61],[124,-5],[99,28],[109,84],[55,136],[10,154],[-16,182],[-43,150],[-74,126],[-62,140],[-41,103],[0,144],[25,131],[84,56],[83,19],[146,-14],[139,-84],[87,-145],[68,-182],[46,-290],[47,-257],[49,-149],[72,-140],[68,-112],[74,-56],[93,-61],[79,-26],[113,-45],[86,-24],[84,-40],[235,-290],[78,-126],[80,-79],[30,-28],[105,-27]],[[792246,985928],[-19,-2],[-4,-1],[-15,-1],[-13,-14],[-14,-13],[-14,-3],[-12,0],[-10,-19],[-7,-17],[-6,-7],[-19,-4],[-14,0],[-15,-3],[-9,-6],[-7,-12],[-9,-15],[-18,-2],[-17,-13],[-23,5],[-17,2],[-8,-15],[-11,-23],[-37,-33],[-50,-23],[-15,-22],[-28,-43],[-14,-18],[-14,-18],[-11,-7],[-6,-4],[-19,-10],[-28,-31],[-14,-3],[-13,-4],[-14,-16],[-13,-19],[-10,-15],[-2,-18],[1,-15],[-6,-20],[-8,-22],[-7,-21],[-15,-20],[-9,-12],[-10,-24],[-16,-12],[-19,-7],[-10,-3],[-8,-15],[-7,-23],[-6,-21],[-7,-24],[-20,-21],[-15,-6],[-5,-14],[4,-13],[16,-33],[18,-28],[9,-26],[2,-30],[0,-40],[3,-24],[6,-11],[7,-17],[6,-29],[-4,-26],[-13,-12],[-13,-8],[-6,-12],[-8,-9],[-3,4],[-4,9],[-7,6],[-4,12],[2,6],[5,12],[-8,20],[-19,2],[-15,-12],[-15,-10],[-12,-1],[-4,-16],[-10,0],[-12,28],[-9,32],[-11,22],[-23,16],[-19,-8],[-2,-20],[9,-21],[-3,-25],[-15,-18],[-10,-20],[-2,-24],[9,-16],[5,-13],[15,-40],[-6,-52],[-20,-76],[-6,-85],[-6,-89],[3,-43],[18,-26],[25,-7],[36,-30],[12,-46],[-4,-58],[-16,-84],[-37,-114],[-52,-130],[-39,-105],[-35,-37],[-31,-10],[-32,29],[-54,31],[-43,26],[-30,52],[-16,35],[-21,43],[-24,56],[-23,23],[-48,29],[-48,8],[-46,-13],[-58,-28],[-46,-27],[-27,0],[-47,31],[-68,33],[-47,-4],[-12,-33],[-1,-70],[4,-52],[-9,-80],[-15,-68],[-34,-29],[-21,-26],[-31,-118],[-26,-96],[3,-80],[-5,-29],[-30,-6],[-19,-27],[-17,-56],[-31,-59],[-55,-48],[-31,-26],[-37,-36],[-58,-37],[-19,-24],[-13,-31],[-28,-46],[-28,-47],[-28,-19],[-40,-14],[-42,-15],[-7,-11],[-20,-32],[-4,-60],[-18,-64],[-12,-59],[-26,-66],[-32,-9],[-20,-4],[-17,-41],[-13,-45],[-1,-42],[1,-37],[-28,-8],[-8,25],[5,27],[-28,3],[-28,-34],[-13,-83],[-38,-52],[-37,-51],[-45,-35],[-41,-10],[-47,-71],[-34,-80],[-35,-33],[-28,-27],[-33,-9],[-53,-21],[-17,-7],[7,-31],[-27,-4],[-27,6],[-23,-36],[-15,-28],[-27,0],[-9,21],[0,27],[1,33],[-14,8],[-15,-39],[-20,-10],[-14,49],[-30,33],[-42,20],[-50,83],[-17,31],[-37,17],[-45,12],[-39,-12],[-45,5],[-26,15],[-24,-20],[-21,-44],[-28,-55],[-19,-42],[-24,0],[-14,-28],[-51,-5],[-36,-18],[-31,-4],[-38,10],[-12,33],[-2,29],[-18,0],[-15,2],[-18,27],[-16,33],[-4,24],[11,29],[-16,9],[-27,-5],[-24,-14],[-32,-31],[-34,-23],[-56,-35],[-53,-37],[-28,-1],[-26,-19],[-8,-42],[-12,-55],[-16,-106],[-4,-34],[-2,-17],[-17,-32],[-51,-52],[-57,-44],[-14,-27],[-14,-27],[-16,-20],[-40,-8],[-16,-18],[-13,-26],[-9,-29],[-19,-42],[-25,-34],[-21,-32],[-12,-42],[-14,-23],[-40,-89],[-59,-94],[-80,-111],[-52,-84],[-62,-54],[-72,-42],[-67,-42],[-117,-66],[-96,-62],[-41,-21],[-35,-10],[-67,19],[-39,17],[-13,-33],[-4,-40],[-22,-33],[-24,-59],[-31,-69],[-50,-132],[-46,-149],[-45,-109],[-47,-66],[-56,-35],[-72,-26],[-63,-10],[-47,-2],[-78,23],[-60,17],[-32,10],[-36,2],[-33,9],[-44,-7],[-41,-37],[-20,-40],[-16,-83],[-22,-84],[-17,-63],[-14,-179],[-8,-151],[-16,-52],[-29,-73],[-29,-78],[-26,-53],[-8,-16],[-8,-16],[-37,-19],[-36,-31],[-146,-139],[-45,-36],[-33,-49],[-33,-66],[-28,-43],[-79,-83],[-103,-141],[-39,-50],[-34,-66],[-38,-59],[-19,-52],[10,-45],[-49,-156],[-50,-123],[-72,-210],[-61,-167],[-35,-76],[-42,-83],[-35,-51],[-57,-76],[-32,-3],[-43,19],[-96,53],[-25,14],[-22,-15],[-26,-11],[-25,-34],[-24,-40],[-5,-56],[-9,-45],[-33,-38],[-1,-21],[18,-33],[16,-36],[3,-42],[-19,0],[-14,28],[-22,5],[-31,5],[-28,11],[3,-33],[5,-19],[-21,-16],[-64,-7],[-6,-33],[6,-24],[30,12],[12,-28],[-23,-24],[19,-10],[14,-25],[-16,-26],[-33,-26],[-36,-10],[-9,-24],[-5,-46],[27,-34],[8,-21],[1,-43],[-12,-40],[-18,-37],[-22,-19],[-25,7],[-27,-6],[-4,-32],[-8,-38],[24,-33],[-5,-35],[-35,-2],[-34,21],[-28,-24],[-22,-43],[-25,-49],[-36,-88],[-17,-55],[-5,-63],[-5,-73],[-11,-71],[-26,-37],[-33,-43],[-30,-33],[-39,-28],[-6,-27],[6,-35],[-10,-40],[-26,-21],[-5,-25],[-15,-24],[-10,1],[-20,1],[-25,-12],[-25,-21],[-19,-43],[-9,-52],[-5,-59],[-13,-38],[-17,-28],[-23,-36],[-24,-33],[13,-52],[9,-42],[13,-40],[-5,-33],[-4,-32],[-37,-16],[-37,-23],[-35,-24],[-40,-52],[-4,-3],[-43,-34],[-54,-43],[-59,-7],[-61,7],[-56,5],[-21,-5],[-11,-24],[-8,-42],[-36,-12],[-17,-33],[-23,-28],[-21,-36],[0,-35],[8,-33],[30,-7],[40,-9],[2,-22],[-10,-20],[-13,-24],[-24,16],[-23,-7],[-41,-3],[-16,-38],[29,-18],[14,18],[23,-9],[16,-19],[8,-24],[-14,-11],[-41,-5],[-28,-24],[29,-9],[18,-38],[11,-47],[25,-24],[-2,-28],[-39,-7],[-17,14],[-21,2],[-17,-28],[-37,5],[-6,17],[-1,4],[-9,47],[-10,29],[-23,-29],[-8,-38],[-14,-49],[-19,-24],[-26,-29],[-35,-13],[-8,-24],[-3,-39],[-23,-20],[-23,-42],[-29,-5],[-19,-7],[4,-31],[26,-7],[1,-16],[0,-2],[1,-17],[-35,0],[-25,-15],[-30,7],[-11,-29],[8,-32],[14,-38],[-9,-52],[-25,-30],[-28,-76],[-34,-17],[-17,-51],[-14,-85],[-8,-44],[-26,-18],[-39,14],[-55,29],[-26,-38],[-32,-57],[2,-63],[-13,-31],[-39,11],[-20,-35],[-46,-36],[-40,-30],[-28,-35],[-13,-45],[-27,-7],[-34,-11],[-13,18],[-48,49],[-41,45],[-37,5],[-49,-7],[-58,-5],[-33,-24],[-11,-28],[-3,-76],[-19,-49],[-64,-30],[-65,-30],[-47,-23],[-43,26],[-12,50],[-33,23],[-44,3],[-34,-17],[-36,-5],[-34,33],[-21,15],[-43,-53],[-43,-25],[-28,-73],[-27,-57],[-40,22],[-35,-29],[0,-54],[-33,-36],[1,-36],[-8,-42],[-23,-14],[-16,35],[-15,45],[-41,38],[-17,-9],[-3,-38],[8,-54],[31,-22],[45,-68],[21,-26],[-2,-35],[-20,-24],[-33,0],[-31,-3],[-30,-30],[-16,-29],[-8,-59],[0,-45],[-7,-103],[3,-45],[-4,-48],[-12,-33],[-28,-7],[-47,0],[-67,22],[-69,23],[-61,26],[-16,1],[-14,-15],[-6,-21],[-1,-9],[11,-23],[8,-15],[7,-2],[9,-20],[-4,-22],[-6,-20],[-13,-16],[-26,-16],[-28,-3],[-28,-2],[-25,10],[-15,11],[-14,22],[-20,16],[-12,2],[-25,-6],[-6,-15],[2,-19],[16,-29],[12,-28],[14,-28],[5,-15],[-4,-33],[-11,-11],[1,-20],[7,-53],[10,-43],[-2,-37],[-6,-82],[-3,-49],[26,-50],[11,-47],[-7,-48],[-8,-40],[17,-53],[4,-40],[-15,-22],[-26,5],[-25,15],[-16,53],[-25,44],[-41,35],[-22,-11],[-22,-48],[-16,-51],[-23,-24],[-20,-34],[-18,-9],[-6,-4],[-26,6],[-30,25],[-15,29],[-14,19],[-11,-2],[-12,-2],[-5,-11],[-6,-32],[-5,-29],[-9,-22],[-17,5],[-12,-12],[-2,-27],[7,-49],[-3,-29],[-2,-36],[12,-33],[-4,-22],[-17,4],[-10,25],[-12,-12],[-15,-16],[-7,-37],[5,-21],[-7,-11],[-13,-7],[-89,-4],[-15,1],[-13,0],[-10,15],[-12,25],[-13,8],[-15,-10],[-7,-40],[1,-28],[-12,-5],[-12,16],[-7,44],[-16,5],[-11,-8],[-18,-31],[-13,-46],[-4,-15],[-22,-5],[-12,8],[-3,17],[15,37],[17,46],[2,36],[-13,17],[-14,-13],[-2,-29],[-2,-14],[-15,-12],[-13,2],[-44,24],[-12,0],[-8,-17],[-6,-23],[6,-19],[35,-57],[11,1],[11,-16],[-6,-24],[-19,-2],[-28,-3],[-32,-4],[-51,-19],[-16,-14],[-9,-25],[-1,-40],[-8,-35],[-27,-13],[-19,-2],[-5,-16],[9,-58],[3,-70],[1,-56],[-9,-77],[-9,-53],[8,-49],[-8,-17],[-17,-24],[-15,-9],[-34,9],[-46,13],[-29,15],[-10,-2],[-3,-17],[7,-20],[1,-37],[-3,-20],[-14,-7],[-16,-9],[-30,-24],[-10,-14],[-7,-9],[1,-23],[3,-18],[-5,-37],[-18,-36],[-25,-42],[-5,-17],[3,-24],[-16,-36],[-18,-35],[-24,-25],[-14,-49],[-8,-52],[-15,-36],[-15,-33],[-8,-16],[-19,3],[-9,-31],[1,-51],[-3,-44],[-5,-20],[-12,-7],[-16,-4],[-30,12],[-24,21],[-7,-5],[-4,-13],[5,-17],[18,-44],[22,-46],[3,-45],[-10,-8],[-17,8],[-10,27],[4,29],[-16,13],[-19,-13],[-2,-5],[-15,-28],[-25,2],[-15,8],[-3,26],[2,21],[17,15],[0,16],[-29,26],[-10,-4],[-6,-18],[4,-16],[1,-9],[-8,-11],[-25,-6],[-16,7],[-2,22],[-7,15],[-8,10],[-14,-5],[3,-18],[1,-9],[-7,-13],[-20,-13],[-13,-31],[-9,-16],[-7,-27],[2,-30],[6,-11],[13,-4],[12,13],[18,20],[9,-11],[7,-19],[22,5],[14,8],[14,-10],[-4,-21],[-28,-16],[-41,-18],[-18,-11],[-16,-15],[-22,-30],[-11,-20],[-3,-29],[4,-30],[-1,-22],[-11,-17],[-14,-9],[-20,-46],[-30,-96],[-35,-85],[-47,-93],[-39,-78],[-29,-18],[-73,25],[-47,32],[-57,33],[-51,-13],[-58,-26],[-33,2],[-29,48],[-12,42],[9,51],[-9,29],[-29,4],[-42,-15],[-63,-38],[-63,-35],[-35,-66],[-30,-82],[-26,-71],[-21,-42],[-40,-37],[-24,-9],[-17,9],[-16,21],[-9,39],[-15,39],[-38,18],[-26,29],[-21,11],[-1,-28],[26,-54],[28,-66],[16,-46],[26,-23],[-11,-75],[-22,-19],[-40,-87],[-31,-113],[-22,-81],[-30,-65],[-46,-66],[-24,-46],[-12,-40],[-22,-20],[-17,-3],[-7,6],[-10,8],[-15,42],[-2,18],[-1,8],[-17,2],[-16,-8],[-13,-43],[-19,-9],[-11,-17],[8,-41],[8,-32],[-6,-29],[-29,-37],[-6,-29],[4,-28],[-20,-40],[-22,-5],[1,36],[-22,47],[-27,2],[-20,33],[-29,9],[-30,39],[-10,5],[-7,-9],[1,-20],[6,-31],[-12,-17],[-6,-31],[14,-25],[20,-15],[6,-15],[0,-23],[-13,-11],[-51,56],[-21,5],[-18,-12],[-2,-35],[11,-40],[0,-31],[-30,-13],[-20,8],[-10,32],[-17,-7],[-23,-6],[-21,39],[-14,19],[-19,9],[-20,-10],[-7,-33],[-5,-58],[4,-15],[4,-16],[-1,-15],[-13,-4],[-39,19],[-10,-1],[-11,-37],[2,-26],[24,-28],[5,-25],[-20,-20],[-22,-6],[-9,-16],[2,-23],[-2,-17],[-27,2],[-17,-10],[-23,-24],[-7,-40],[-13,-53],[-17,-13],[-29,11],[-22,26],[-24,21],[-12,-3],[-9,-24],[-15,-14],[-10,5],[-13,22],[-31,1],[-37,-9],[-9,-2],[-7,-22],[-2,-20],[14,-30],[1,-40],[-24,-37],[-5,-31],[0,-35],[-10,-20],[-22,-24],[-18,-38],[-32,-35],[-41,6],[-125,9],[-62,15],[-20,16],[-11,27],[-23,54],[-23,21],[-34,33],[-12,39],[-1,31],[11,16],[10,5],[3,7],[4,6],[-3,9],[-5,17],[-5,14],[5,18],[-2,14],[-6,4],[-5,3],[-9,-8],[-21,-10],[-17,7],[-13,29],[-11,4],[-6,-10],[-21,-29],[-11,-5],[-10,11],[-16,15],[-30,-22],[-31,-4],[-13,4],[-13,4],[-12,-5],[-6,-15],[1,-29],[-11,-13],[-23,-1],[-25,7],[-25,-19],[-9,-10],[-2,-25],[-17,-4],[-17,4],[-23,11],[-20,-14],[-8,-25],[-20,6],[-17,-12],[1,-23],[0,-3],[-8,-10],[-15,-12],[-7,-5],[-11,1],[-9,16],[-10,16],[-18,-12],[-26,-42],[-26,-26],[-6,-26],[8,-18],[25,-17],[16,-4],[0,-20],[-21,-15],[-31,5],[-21,-8],[-25,-13],[-41,-29],[-29,-26],[-37,-31],[-30,-26],[-33,-36],[-25,-43],[-16,-39],[-9,-22],[0,-27],[9,-27],[-6,-12],[-17,-3],[-30,-28],[-21,1],[-20,1],[-16,-3],[-15,7],[-11,-12],[-3,-13],[-11,-15],[-7,-2],[-15,-5],[-27,-13],[-12,0],[-8,-8],[-10,-23],[-11,-27],[-22,-21],[-17,-29],[-8,-34],[-6,-14],[-13,-12],[-9,-6],[-20,11],[-11,-1],[-10,-10],[-4,-29],[10,-29],[3,-29],[-2,-13],[-2,-2],[-23,-4],[0,-8],[0,-8],[16,-22],[-1,-26],[-12,-22],[-13,-11],[-25,13],[-24,0],[-29,-25],[-56,-19],[-30,-7],[-38,-12],[-21,6],[-19,8],[-27,7],[-31,1],[-31,6],[-13,10],[-23,35],[-25,26],[-27,21],[-18,-2],[-34,-2],[-40,-6],[-32,-10],[-29,-16],[-12,-7],[-3,-2],[-3,-2],[-10,-19],[-7,-32],[-9,-24],[-18,-27],[-20,-23],[-24,-18],[-24,-23],[-20,-26],[-13,-40],[-5,-41],[-11,-68],[-12,-56],[-17,-19],[-35,-24],[-16,-18],[-42,-50],[-31,-44],[-32,-19],[-17,-10],[-15,-37],[-6,-21],[7,-32],[5,-6],[-2,-18],[-19,-20],[-82,-61],[-60,-42],[-36,-34],[-40,-38],[-39,-65],[-21,-31],[-2,-38],[-16,-21],[-23,-19],[-49,-27],[-8,-20],[2,-18],[7,-23],[-2,-12],[-10,-2],[-23,-5],[-25,-9],[-53,-64],[-19,-50],[-18,-34],[-10,-39],[-1,-75],[-4,-9],[-5,-9],[-32,-24],[-26,-18],[-20,-58],[-28,-81],[-21,-95],[-15,-64],[-23,-33],[-34,-29],[-23,-26],[-38,6],[-22,12],[-35,46],[-22,15],[-19,-11],[-17,-27],[-40,-9],[-23,-19],[-38,-15],[-30,-11],[-21,-25],[-29,-8],[-35,3],[-21,-8],[-13,-16],[-21,-6],[-31,1],[-48,-1],[-26,11],[-31,17],[-10,21],[-4,34],[6,28],[11,20],[6,23],[-4,46],[-19,17],[-13,26],[-11,34],[-10,31],[-13,9],[-25,7],[-35,-13],[-29,-23],[-28,-23],[-21,-8],[-29,5],[-23,1],[-17,2],[-11,12],[-11,17],[-15,12],[-27,4],[-39,-3],[-17,5],[-14,11],[-4,19],[-16,11],[-17,5],[-21,-4],[-12,-24],[-21,-17],[-24,-6],[-31,3],[-21,-8],[-3,-16],[-16,-10],[-32,-5],[-35,-1],[-56,0],[-28,-1],[-21,-7],[-18,-23],[-9,-26],[-8,-56],[-8,-34],[-17,-15],[-30,8],[-40,15],[-50,26],[-40,17],[-31,20],[-16,19],[-16,39],[-20,70],[-27,72],[-14,55],[-3,60],[-7,43],[-13,4],[-31,-19],[-30,-21],[-12,-23],[-11,-16],[-23,-11],[-16,-18],[-8,-41],[-23,-28],[-36,-34],[-9,-44],[1,-53],[-4,-14],[-5,-14],[-5,-17],[-6,-17],[6,-37],[7,-44],[13,-35],[13,-56],[6,-46],[-4,-46],[-13,-22],[-32,20],[-28,-5],[-39,6],[-12,-13],[-12,-22],[-19,-28],[-37,-80],[-36,-126],[6,-37],[26,-7],[29,20],[16,0],[12,-37],[12,-67],[-17,-33],[-17,-28],[-32,0],[-15,-42],[-9,-33],[-13,-22],[-32,11],[-29,16],[-28,17],[-12,-26],[3,-29],[-10,-25],[-19,-5],[3,-26],[9,-17],[-3,-29],[-16,-18],[-11,16],[-17,-13],[9,-29],[-19,-33],[-15,-31],[-3,-35],[-16,-27],[-3,-26],[9,-33],[-13,-12],[-16,-6],[-9,-24],[23,-36],[-2,-40],[7,-33],[11,-44],[9,-42],[13,-19],[21,4],[11,37],[14,16],[19,2],[5,-44],[-4,-53],[3,-44],[-4,-33],[-16,-21],[-21,25],[-22,13],[-14,-25],[29,-43],[19,-55],[11,-27],[-22,-22],[-29,-6],[6,-21],[21,-17],[-6,-37],[19,-31],[1,-38],[-12,-21],[-24,1],[-8,-28],[-6,-38],[-27,16],[-21,-16],[0,-24],[19,-29],[-29,-51],[-28,5],[-22,-16],[-7,-46],[1,-31],[22,0],[24,27],[14,-11],[12,-34],[31,-33],[17,-24],[28,-51],[10,-70],[-4,-44],[0,-31],[3,-25],[-23,-6],[-20,15],[-17,-20],[9,-24],[10,-24],[6,-27],[-25,-31],[6,-37],[-2,-42],[-17,-44],[-28,-64],[-10,-14],[-9,-4],[-10,5],[-11,15],[-17,11],[-17,12],[-9,-6],[8,-21],[6,-33],[-1,-25],[-27,-14],[-33,-50],[-34,-77],[-12,-25],[-14,-19],[-24,-3],[-29,-5],[-26,-11],[-23,-5],[-28,8],[-16,21],[-11,32],[-25,34],[-29,14],[-26,-1],[-30,-17],[-29,-15],[-25,-26],[-22,-38],[-11,-58],[3,-38],[4,-33],[-1,-32],[-12,-22],[-19,-24],[-10,-29],[-16,-15],[-20,-1],[-16,17],[-22,23],[-14,40],[-15,35],[-29,40],[-34,59],[-12,32],[-10,16],[-25,38],[-31,14],[-31,7],[-47,13],[-159,-42],[-129,-34],[-30,-24],[-48,-82],[-41,-66],[-21,-45],[-54,-193],[-32,-132],[-58,-206],[-17,-64],[-22,-39],[-34,-32],[-15,-21],[-10,-41],[6,-45],[10,-48],[9,-45],[-5,-45],[4,-34],[-2,-27],[-16,-23],[-10,-23],[-19,-21],[-25,-13],[-4,-18],[-20,-22],[-29,-5],[-35,5],[-52,-19],[-13,10],[-14,0],[-27,-23],[-17,-16],[-27,-38],[-48,-68],[-16,-13],[-18,-12],[-18,-1],[-28,-10],[-22,-24],[-2,-40],[-1,-19],[-17,-12],[-4,-20],[5,-13],[-12,-44],[-14,-35],[-13,-35],[-23,-32],[-23,-32],[-10,-14],[-10,-15],[-10,-28],[-16,-41],[-11,-56],[-1,-27],[-1,-26],[0,-16],[-1,-16],[-9,-11],[-9,-10],[-17,-37],[-15,-15],[-18,-2],[-19,2],[-19,-16],[-15,-7],[-21,-43],[-41,-79],[-18,-59],[-17,-43],[-14,-9],[-24,1],[-25,6],[-26,2],[-20,-14],[-6,-26],[-2,-26],[-4,-16],[-14,-2],[-23,2],[-22,13],[-11,-4],[0,-23],[5,-13],[-10,-9],[-6,-28],[-7,-8],[-20,2],[-19,2],[-3,10],[14,38],[5,17],[-11,7],[-10,-4],[-8,-13],[-16,5],[-17,4],[-19,-14],[-11,-13],[-15,18],[-11,25],[10,29],[-7,28],[-15,34],[-20,28],[-20,57],[-24,15],[-32,-1],[-39,10],[-30,29],[-33,17],[-71,28],[-26,19],[-26,20],[-28,14],[-18,-8],[-19,-12],[-38,-8],[-64,10],[-47,5],[-47,4],[-39,-7],[-21,-14],[-20,-15],[-40,-50],[-30,-59],[-37,-87],[-14,-48],[-8,-52],[-1,-66],[6,-46],[-5,-13],[-5,-8],[-5,-8],[-13,-12],[-12,-12],[-9,-19],[-3,-42],[-7,-52],[-16,-44],[-17,-37],[-29,-28],[-35,-24],[-32,-10],[-27,-1],[-23,2],[-18,5],[-25,11],[-23,8],[-8,5],[-8,5],[-9,-2],[-9,-2],[-26,-11],[-33,-22],[-23,-15],[-30,-9],[-25,-10],[-19,-9],[-975,-687],[-432,-154],[-416,11],[-186,5],[-5,1],[-7,0],[-172,-3],[-170,-71],[-225,-187],[-360,-272],[-632,-371],[-295,-132],[-226,-18],[-210,18],[-156,62],[-87,0],[-65,53],[-108,150],[-96,35],[-144,22],[-85,53],[-85,119],[-32,119],[-61,66],[-73,1],[-82,-85],[-98,-113],[-11,-12],[-196,-235],[-163,-89],[-1013,-221],[-134,-62],[-123,-115],[-92,-78],[-2,-1],[-73,-95],[-56,-130],[-20,-69],[-6,-54],[8,-81],[25,-90],[42,-148],[6,-88],[3,-64],[-24,-110],[-26,-100],[-10,-94],[6,-56],[20,-99],[25,-104],[22,-185],[13,-159],[-76,-397],[-2,-680],[3,-454],[14,-470],[-84,-575],[18,-293],[55,-243],[95,-278],[133,-335],[150,-274],[210,-295],[70,-164],[33,-150],[22,-141],[5,-216],[-17,-190],[20,-159],[79,-252],[44,-238],[-11,-261],[-82,-260],[-158,-318],[-129,-247],[-23,-50],[-44,-100],[-68,-150],[-164,-379],[-32,-62],[9,-168],[32,-62],[32,-62],[106,9],[128,159],[166,217],[93,33],[122,14],[123,-78],[295,-474],[249,-436],[221,-528],[153,-337],[191,-421],[622,-1513],[302,-732],[28,-86],[28,-86],[169,-503],[249,-653],[170,-340],[108,-186],[337,-352],[196,-221],[69,-94],[27,-124],[27,-440],[11,-190],[21,-132],[32,-119],[114,-162],[77,-61],[137,-86],[210,-124],[299,-114],[313,-151],[73,-185],[-2,-90],[-119,-125],[-106,-64],[-107,-65],[-110,-3],[-223,-6],[-170,-18],[-187,0],[-232,-67],[-332,-246],[-282,-157],[-281,-158],[-336,-96],[-410,-88],[-567,-104],[-269,7],[-293,115],[-176,185],[-100,156],[-110,91],[-113,31],[-122,-34],[-244,-67],[-130,62],[-187,276],[-141,377],[-70,141],[-123,73],[-76,10],[-175,-48],[-422,-194],[-181,-79],[-240,-150],[-228,-159],[-186,-155],[-189,-242],[-61,-173],[-73,-366],[-29,-406]],[[713470,900302],[-715,276],[-431,127],[-399,142],[-200,101],[-182,92],[-172,127],[-238,177],[-243,313],[-276,268],[-318,248],[-253,120],[-219,156],[-116,172],[-169,303],[-153,364],[-68,142],[-89,169],[-70,82],[-71,48],[-54,10],[-105,14],[-406,-62],[-243,-44],[-243,-31],[-319,-32],[-27,3],[-45,5],[-75,50],[-32,24],[-51,37],[-99,64],[-8,5],[-81,53],[-51,28],[-58,30],[-33,18],[-42,22],[-46,13],[-48,4],[-99,-11],[-21,5],[-62,31],[-40,46],[-67,99],[-52,103],[-56,72],[-36,40],[-53,18],[-119,43],[-293,42],[-86,34],[-77,96],[-74,110],[-118,174],[-134,289],[-45,185],[-15,813],[60,1146],[-10,330],[-82,345],[-122,280],[-159,279],[-154,154],[-191,174],[-186,144],[-236,97],[-230,-29],[-268,-48],[-160,-39],[-128,-38],[-192,-97],[-159,-125],[-134,-154],[-103,-347],[-76,-222],[-71,-193],[-115,-125],[-70,87],[0,202],[19,338],[-10,255],[-60,255],[-172,261],[-320,481],[-453,502],[-563,472],[-453,347],[-1598,964],[-97,124],[-35,129],[10,118],[25,92],[61,70],[236,345],[124,215],[35,181],[1,186],[-55,234],[-35,146],[-70,164],[-118,129],[-233,116],[-299,67],[-193,124],[-307,302],[-628,775],[-447,637],[-310,548],[-115,410],[-164,786],[-36,420],[2,52],[12,449],[1,38],[95,389],[5,20],[285,431],[202,392],[297,761],[106,527],[123,394],[247,483],[368,546],[264,399],[369,472],[1024,960],[2359,1277],[482,256],[237,40],[153,-59],[154,-48],[157,-184],[293,-786],[264,-560],[214,-97],[329,21],[971,399],[171,140],[129,237],[71,312],[36,949],[-42,646],[-94,700],[29,280],[121,237],[150,97],[457,-75],[193,0],[214,248],[260,494],[49,93],[20,38],[750,1195],[264,259],[300,68],[286,-36],[371,205],[307,506],[286,550],[101,377],[49,571],[102,235],[269,347],[257,247],[300,108],[236,86],[211,-49],[132,-102],[100,-161],[107,-184],[207,-161],[136,-129],[57,-173],[21,-129],[79,-159],[128,-67],[343,-97],[189,-108],[190,-32],[201,70],[277,199],[186,86],[285,108],[360,-27],[262,156],[223,320],[427,187],[507,43],[392,86],[258,-22],[218,-160],[165,-122],[366,-418],[308,-183],[314,-140],[457,75],[709,348],[405,245],[328,97],[265,4],[271,9],[249,71],[178,150],[823,692],[294,169],[313,-18],[407,-97],[357,-32],[193,172],[136,194],[114,135],[86,101],[28,34],[11,16],[180,257],[666,793],[938,1088],[225,181],[241,73],[282,-9],[187,-64],[252,-154],[1118,-190],[17,-1],[368,-8],[153,34],[172,111],[234,181],[313,390],[175,218],[114,91],[87,41],[72,-10],[111,-31],[118,-46],[117,-118],[615,-771],[10,-13],[436,-522],[147,-54],[116,-22],[194,22],[132,36],[139,45],[210,69],[141,31],[127,-22],[171,-73],[235,-145],[117,4],[114,46],[135,72],[151,50],[132,-27],[204,-118],[295,-272],[319,-562],[120,-91],[186,-74],[247,83],[198,272],[163,318],[84,290],[90,308],[138,526],[103,200],[148,105],[168,-23],[201,-127],[932,-1243],[234,-163],[217,-82],[306,127],[145,145],[186,109],[123,3],[190,-212],[113,-254],[103,-236],[156,-217],[187,-182],[198,-118],[133,-54],[168,-136],[436,-176],[243,-42],[235,-81],[378,-163],[235,-119],[223,-172],[154,-94],[70,-48],[20,-13],[50,-34],[94,6],[58,94],[3,127],[-7,133],[-58,435],[-86,422],[-253,1012],[-45,146],[-15,118],[21,91],[102,381],[36,263],[-6,299],[-21,163],[-75,155],[-265,480],[-322,471],[-6,78],[6,86],[56,129],[44,66],[165,368],[168,349],[93,78],[109,49],[191,71],[127,-1],[3,0],[60,-18],[118,-79],[90,4],[78,41],[42,68],[72,131],[85,268],[57,281],[54,472],[54,77],[75,82],[108,22],[294,-81],[110,-78],[101,-190],[46,-100],[117,-95],[81,-50],[111,0],[118,59],[201,109],[186,113],[62,34],[41,43],[24,55],[0,150],[-6,226],[18,259],[27,281],[69,277],[138,222],[78,104],[39,141],[178,612],[-9,123],[-54,226],[-39,232],[-25,222],[3,140],[43,123],[51,100],[186,331],[54,145],[3,81],[-48,241],[-81,231],[-35,97],[-11,122],[18,119],[41,119],[53,135],[5,93],[-13,150],[-27,124],[-61,165],[-86,238],[-146,394],[-93,226],[-69,132],[-105,95],[-159,20],[-95,-24],[-50,27],[-18,75],[68,279],[94,218],[142,139],[145,45],[200,61],[55,136],[31,177],[36,210],[32,347],[31,245],[9,191],[-9,190],[27,177],[77,184],[194,183],[316,245],[302,228],[148,167],[64,81],[13,136],[-63,477],[-140,959],[-54,401],[23,313],[36,231],[30,113],[58,114],[455,528],[480,445],[575,533],[86,59],[66,40],[66,41],[94,105],[57,142],[20,119],[-11,116],[-19,94],[-2,43],[18,49],[27,54],[44,32],[124,48],[37,14],[95,81],[128,161],[61,146],[103,307],[72,242],[93,458],[35,323],[-21,199],[-93,297],[-111,274],[-571,878],[-271,485],[-172,377],[28,124],[358,377],[153,194],[99,162],[62,132],[43,178],[43,63],[43,63],[75,34],[103,47],[43,81],[21,177],[-14,141],[-57,479],[4,215],[17,157],[47,113],[61,86],[100,43],[549,81],[472,210],[268,161],[250,54],[292,-27],[418,11],[454,54],[267,81],[240,145],[128,162],[129,172],[136,221],[299,512],[157,299],[157,300],[9,18],[297,622],[86,261],[37,407],[39,293],[38,293],[129,595],[146,518],[70,135],[121,231],[214,380],[436,1230],[-4,155],[-3,156],[-79,237],[-165,185],[-142,160],[-114,344],[-96,1006],[-133,287],[-264,205],[-371,75],[-236,162],[-486,570],[-107,184],[-57,226],[-11,302],[54,194],[93,97],[132,32],[168,70],[221,151],[89,113],[43,108],[4,318],[-86,689],[-7,243],[23,222],[27,98],[50,342],[15,88],[46,278],[107,334],[100,254],[71,231],[64,334],[-13,543],[-12,470],[4,142],[39,279],[32,119],[43,102],[57,113],[93,54],[140,65],[60,11],[57,91],[0,108],[-30,89],[-15,44],[-15,45],[-100,134],[-86,97],[-29,146],[-21,188],[25,232],[61,253],[96,205],[93,107],[97,85],[41,110],[62,166],[27,204],[25,188],[-4,183],[32,291],[68,232],[104,145],[260,318],[23,107],[-23,227],[-21,205],[-9,59],[-9,60],[-61,214],[-124,241],[-168,422],[-118,453],[-65,307],[-60,318],[-32,291],[14,150],[32,70],[46,44],[51,8],[42,8],[722,328],[373,163],[193,76],[153,-22],[161,-92],[428,-290],[162,-34],[142,56],[596,360],[118,16],[161,-64],[371,-539],[164,-194],[254,-145],[171,-97],[243,-92],[211,65],[160,-27],[197,-108],[426,-517],[128,-91],[185,-59],[136,9],[331,114],[447,172],[201,145],[92,125],[164,339],[143,232],[64,129],[29,156],[32,264],[31,178],[-27,242],[0,162],[28,43],[14,21],[15,22],[64,119],[136,242],[139,102],[53,119],[36,167],[43,199],[104,129],[125,22],[135,-49],[195,-103],[102,-31],[96,32],[94,122],[188,417],[125,253],[139,145],[86,65],[136,37],[121,121],[100,101],[175,53],[146,33],[211,-54],[137,-71],[8,-5],[117,-74],[135,-94],[92,-42],[132,65],[65,81],[64,183],[70,569],[37,164],[121,87],[179,144],[180,144],[247,198],[135,172],[259,332],[290,544],[60,167],[-1,184],[-64,314],[-75,366],[-10,213],[3,148],[1,57],[-11,415],[-28,318],[10,107],[65,97],[64,43],[171,124],[93,81],[75,65],[57,70],[68,54],[82,21],[122,5],[289,49],[250,75],[186,119],[68,92],[6,87],[-161,328],[-121,312],[-50,247],[-24,215],[-12,190],[5,167],[7,190],[5,163],[18,-2],[37,-5],[43,4],[52,-21],[69,-22],[69,-26],[92,-26],[98,-48],[22,-23],[44,-46],[95,-22],[86,39],[75,22],[77,43],[84,26],[62,28],[47,72],[6,69],[37,70],[69,17],[129,113],[92,74],[41,60],[17,96],[32,130],[34,56],[58,52],[54,31],[52,8],[35,-21],[25,-52],[49,-52],[92,-52],[150,-9],[57,-35],[61,-35],[49,-78],[63,-47],[72,-57],[66,-17],[75,-30],[71,-13],[90,-35],[80,-9],[92,44],[52,52],[106,78],[161,160],[135,122],[64,99],[93,120],[103,125],[71,20],[38,-9],[25,-56],[29,-122],[35,-160],[106,-278],[52,-130],[43,-143],[57,-134],[78,-161],[46,-100],[52,-65],[22,-11],[107,-54],[98,0],[57,57],[9,86],[3,96],[-12,95],[-43,61],[-26,87],[23,108],[0,87],[32,69],[23,135],[17,134],[4,19],[25,137],[20,40],[55,108],[66,26],[89,9],[127,-22],[86,-22],[67,-4],[68,35],[69,26],[414,-13],[52,-48],[49,-43],[77,-53],[44,-78],[17,-121],[31,-200],[26,-203],[20,-139],[41,-117],[34,-135],[38,-108],[20,-117],[28,-152],[32,-139],[3,-130],[14,-169],[21,-134],[45,-127],[26,-199],[52,-282],[32,-147],[37,-161],[40,-74],[64,-95],[43,-83],[43,-108],[40,-87],[37,-65],[49,-52],[49,-65],[69,-43],[66,-48],[41,-65],[14,-74],[-3,-74],[-17,-60],[-49,-39],[-29,-57],[-14,-56],[9,-70],[37,-39],[69,-60],[66,-31],[69,-56],[78,-30],[66,-39],[52,-13],[54,8],[95,65],[78,78],[51,22],[38,-30],[3,-61],[-18,-82],[-25,-83],[-38,-91],[-20,-78],[-34,-82],[2,-61],[32,-52],[40,-26],[55,-44],[46,-43],[23,-69],[17,-87],[66,-126],[18,-31],[37,-64],[52,-91],[88,-116],[41,-54],[118,-156],[40,-65],[52,-52],[43,-56],[35,-39],[37,-18],[35,13],[34,39],[20,57],[38,39],[46,39],[51,52],[58,74],[46,65],[17,39],[6,14],[11,25],[32,56],[37,61],[46,9],[49,-9],[35,-48],[8,-91],[18,-104],[9,-36],[25,-103],[75,-195],[69,-138],[62,-85],[49,-109],[24,-54],[15,-27],[28,-51],[52,-43],[40,-5],[75,-26],[38,3],[17,2],[48,17],[32,56],[55,26],[52,0],[37,-17],[37,-48],[38,-56],[31,-70],[15,-69],[5,-78],[-40,-61],[-14,-16],[-26,-31],[-36,-14],[-22,-8],[-49,-26],[-2,-48],[31,-13],[18,-43],[28,-44],[35,-39],[40,0],[52,0],[46,13],[40,44],[37,69],[23,74],[3,61],[-11,60],[-25,48],[-4,9],[-37,65],[-15,99],[29,96],[26,52],[57,17],[61,5],[57,-39],[46,-70],[61,-52],[51,-74],[35,-56],[14,-78],[-5,-78],[-23,-61],[-41,-36],[-3,-3],[-28,-61],[20,-65],[40,-8],[52,4],[46,39],[25,41],[21,33],[10,11],[30,32],[60,22],[140,-76],[47,-7],[58,-13],[69,-26],[43,-65],[29,-65],[17,-65],[12,-56],[20,-78],[37,-57],[52,-21],[54,0],[44,-26],[17,-52],[8,-61],[-5,-61],[3,-69],[46,-61],[40,-30],[17,-91],[23,-96],[17,-215],[0,-2],[43,-104],[52,-52],[63,-69],[40,-36],[12,-12],[86,-43],[84,-26],[46,-48],[23,-83],[85,-237],[10,-27],[21,-15],[31,-20],[40,-9],[52,18],[60,4],[49,-17],[49,-48],[34,-69],[32,-65],[46,-26],[43,-18],[49,-24],[3,-2],[51,-39],[35,-56],[23,-52],[6,-20],[17,-63],[24,-54],[39,-24],[43,-17],[46,4],[26,6],[29,7],[46,35],[49,22],[49,0],[40,-13],[20,-52],[9,-92],[-29,-78],[-29,-52],[-43,-26],[-37,-13],[-55,-4],[-49,4],[-51,9],[-58,13],[-46,17],[-8,-4],[-47,-22],[-40,-47],[-8,-26],[-26,-83],[-35,-104],[-9,-45],[-23,-110],[-11,-53],[-3,-13],[-34,-169],[-82,-231],[-2,-4],[-37,-130],[-14,-103],[-3,-27],[-5,-21],[-16,-79],[-7,-25],[-13,-44],[-30,-39],[-13,-17],[-69,-70],[-19,-46],[-33,-75],[-60,-143],[-62,-180],[-53,-137],[-26,-152],[3,-117],[3,-91],[6,-91],[26,-152],[31,-104],[28,-72],[18,-49],[41,-66],[106,-169],[67,-39],[51,-26],[66,0],[95,-26],[66,18],[60,30],[58,61],[46,60],[43,74],[52,69],[89,18],[89,-22],[75,-17],[57,-35],[41,-40],[17,-16],[57,-70],[81,-22],[14,-4],[66,5],[61,-9],[71,-35],[84,-65],[75,-73],[43,-61],[53,-70],[45,-66],[71,-51],[75,-34],[63,-48],[49,-31],[46,-21],[38,-44],[43,-52],[29,-65],[40,-78],[34,-65],[58,-65],[112,-100],[121,-95],[57,-65],[69,-87],[33,-42],[28,-36],[12,-21],[31,-53],[80,-78],[35,-65],[34,-39],[43,-13],[40,23],[29,68],[55,52],[32,29],[26,23],[69,44],[57,56],[55,48],[42,31],[61,8],[23,-50],[3,-7],[23,-60],[52,-18],[40,-4],[49,9],[46,26],[60,21],[32,39],[29,57],[17,48],[-17,73],[14,91],[24,81],[5,15],[34,74],[41,60],[37,22],[55,-13],[86,-13],[66,-4],[86,0],[21,1],[120,7],[107,0],[103,44],[124,32],[84,20],[37,8],[146,57],[89,47],[92,31],[92,30],[64,18],[71,34],[52,31],[49,56],[43,52],[23,43],[35,65],[46,35],[43,18],[43,8],[46,-13],[23,-48],[-23,-56],[-35,-52],[-43,-56],[-28,-61],[-29,-52],[-32,-57],[-52,-39],[-57,-21],[-60,-35],[-38,-95],[3,-109],[-26,-104],[-29,-104],[-40,-48],[-46,-47],[-40,-48],[-35,-22],[-40,-13],[-40,-22],[-49,-21],[-7,-72],[-68,-84],[-60,-39],[-69,-44],[-38,-3],[-86,-1],[-69,-52],[-54,-35],[-58,-100],[-72,-99],[-52,-78],[-100,-61],[-204,-182],[-19,-26],[-88,-118],[-109,-203],[-75,-174],[-83,-173],[-72,-222],[3,-104],[14,-32],[7,-15],[4,-9],[4,-9],[40,-21],[40,13],[35,47],[9,23],[22,55],[35,104],[43,105],[66,147],[58,78],[37,100],[10,18],[33,64],[40,35],[58,39],[57,26],[58,-26],[77,17],[72,0],[84,-4],[86,-17],[109,-44],[130,-17],[104,-20],[143,-28],[118,-82],[167,-130],[109,-31],[109,-30],[112,-100],[170,-100],[216,-169],[71,-52],[58,-65],[46,-26],[49,17],[60,27],[89,65],[66,47],[78,-26],[89,-47],[89,-52],[80,-21],[84,6],[66,39],[55,32],[69,78],[69,26],[75,-9],[54,-47],[58,8],[43,44],[60,104],[92,189],[9,19],[84,147],[126,178],[37,91],[18,74],[-3,78],[-23,87],[-12,49],[-8,38],[0,117],[11,126],[15,69],[34,56],[60,65],[72,44],[58,13],[37,-22],[43,-82],[46,-18],[43,-8],[52,21],[46,35],[26,52],[9,70],[8,108],[0,113],[-5,117],[15,186],[13,174],[20,134],[15,74],[37,26],[52,22],[37,39],[64,61],[77,99],[38,13],[26,-47],[20,-57],[49,-43],[60,-35],[55,-9],[66,-30],[92,-56],[89,-48],[80,-43],[81,-52],[63,-96],[78,-87],[54,-60],[66,-48],[116,-48],[161,9],[175,22],[451,91],[150,-22],[149,-26],[58,-39],[80,-26],[127,48],[75,30],[80,121],[127,207],[54,58],[52,56],[141,204],[60,78],[61,70],[52,21],[54,13],[69,-17],[61,-39],[51,-52],[52,-56],[75,-48],[83,-39],[72,-4],[83,-39],[87,-35],[146,-65],[110,-52],[57,-5],[32,39],[46,13],[54,-4],[61,-13],[72,-22],[77,-39],[72,-30],[43,-30],[44,-47],[45,-49],[22,-29],[17,-18],[19,-7],[24,-13],[16,-24],[32,-65],[39,-78]],[[983726,672284],[-88,-19],[-407,17]],[[919050,816932],[67,7],[58,24],[56,52],[96,121],[50,173],[9,289],[-22,299],[-40,322],[-40,184],[12,199],[53,122],[89,70],[87,42],[87,-23],[96,-75],[90,-108],[24,-177],[19,-182],[49,-150],[130,-116],[134,-18],[130,32],[117,56],[102,126],[84,163],[31,173],[-3,135],[-37,108],[-56,98],[-62,61],[-71,46],[-96,28],[-127,-23],[-152,19],[-89,42],[-72,65],[-52,108],[12,135],[40,98],[65,47],[65,14],[72,14],[112,25],[386,3],[105,79],[105,80],[95,89],[101,37],[89,23],[81,-37],[74,-103],[96,-126],[189,-257],[145,-5],[134,70],[154,108],[99,98],[106,42],[93,-84],[86,-145],[65,-229],[170,-439],[165,-280],[101,-139],[134,-99],[152,9],[86,75],[81,145],[34,205],[-3,224],[-22,196],[-65,206],[-84,187],[-34,135],[34,201],[62,168],[155,224],[149,229],[195,178],[99,51],[62,28],[62,34],[74,36],[6,70],[-22,93],[-40,80],[-68,126],[-102,154],[-93,117],[-25,107],[10,89],[46,75],[65,79],[136,173],[71,117],[28,46],[59,140],[59,164],[50,159],[37,116],[62,38],[86,60],[325,192],[226,112],[137,79],[133,61],[102,145],[77,103],[62,116],[65,117],[68,98],[81,42],[117,35],[78,7],[105,14],[142,66],[200,143],[172,123],[105,51],[84,8],[59,6],[145,-4],[11,-6],[60,-32],[68,-60],[134,-52],[204,-61],[80,24],[65,32],[127,80],[130,126],[96,131],[137,88],[105,-4],[77,-38],[87,-84],[71,-121],[50,-84],[80,-140],[73,-52],[104,-51],[547,-159],[72,-60],[71,-80],[53,-98],[30,-131],[87,-541],[56,-159],[114,-164],[96,-88],[90,-75],[99,-33],[90,5],[108,28],[103,61],[164,191],[99,47],[96,9],[89,-14],[93,-33],[102,-60],[3,-3],[81,-86],[65,-177],[77,-159],[93,-94],[84,-116],[37,-192],[-40,-107],[-59,-145],[-155,-154],[-12,-164],[15,-87],[87,-156],[87,-60],[116,-92],[97,-179],[44,-150],[102,-224],[121,-37],[105,28],[80,61],[10,149],[-53,220],[-50,177],[-6,206],[16,158],[55,122],[87,135],[180,94],[108,116],[164,145],[93,-19],[80,-79],[53,-93],[25,-159],[31,-187],[18,-224],[10,-276],[40,-149],[74,-117],[136,-159],[38,-121],[6,-98],[-22,-103],[-34,-124],[-31,-91],[34,-107],[127,-140],[168,-199],[213,-189],[384,-266],[294,-170],[393,-180],[90,-75],[40,-107],[34,-145],[50,-117],[62,-112],[67,-15],[224,108],[74,112],[31,122],[-9,107],[61,84],[90,42],[177,47],[52,-14],[41,-61],[-13,-79],[9,-187],[44,-247],[83,-224],[96,-207],[140,-172],[631,-434],[480,-392],[50,-108],[27,-131],[-46,-523],[16,-165],[21,-157],[13,-135],[43,-70],[96,0],[93,70],[80,116],[31,122],[19,117],[6,163],[-12,145],[-22,135],[-3,154],[-16,127],[28,144],[56,145],[77,65],[84,10],[87,-42],[80,-61],[84,-131],[46,-116],[53,-192],[55,-173],[50,-168],[105,-182],[406,-381],[80,-77],[68,-3],[50,83],[-6,121],[-25,154],[-12,215],[52,150],[96,93],[105,51],[112,-32],[108,-108],[130,-159],[149,-140],[108,-112],[75,-121],[74,-80],[158,-18],[164,18],[49,61],[37,75],[31,135],[-21,145],[-50,145],[-59,103],[-58,135],[-22,159],[28,117],[71,28],[71,-5],[81,-47],[59,-75],[46,-102],[40,-112],[-9,-126],[18,-94],[28,-121],[22,-126],[12,-122],[13,-107],[-16,-98],[-69,-105],[-64,-110],[-31,-150],[-15,-284],[31,-215],[31,-178],[96,-205],[101,-182],[131,-225],[111,-98],[106,-14],[61,75],[50,164],[37,163],[43,135],[31,122],[28,149],[75,173],[111,145],[102,140],[71,163],[65,159],[-6,159],[-25,126],[-18,136],[49,70],[93,9],[189,-19],[245,-28],[263,-60],[161,-75],[52,-122],[35,-126],[37,-112],[55,-42],[75,-18],[68,14],[59,37],[43,84],[9,112],[-28,126],[-62,234],[-24,107],[-28,140],[-47,94],[-49,70],[-56,56],[-62,37],[-158,5],[-143,-55],[-107,-43],[-62,-24],[-62,-14],[-41,38],[-12,79],[19,103],[34,107],[46,154],[93,173],[127,135],[173,155],[127,88],[158,94],[136,140],[75,131],[24,168],[-18,121],[-37,103],[-50,112],[-59,70],[-74,84],[-46,103],[0,131],[43,74],[56,38],[93,-10],[120,-46],[81,-94],[46,-103],[16,-154],[-56,-313],[22,-191],[21,-149],[50,-187],[90,-136],[86,-89],[211,-9],[127,94],[114,144],[50,164],[49,103],[44,74],[90,0],[52,-84],[53,-140],[25,-191],[3,-229],[-3,-182],[-41,-150],[-77,-130],[-108,-85],[-121,-18],[-149,23],[-124,61],[-133,75],[-80,-14],[-40,-47],[3,-94],[55,-28],[78,-37],[201,-93],[204,-56],[443,-61],[285,56],[114,65],[62,98],[167,351],[84,56],[56,-61],[15,-84],[-31,-103],[-93,-187],[-71,-186],[-127,-313],[-59,-182],[-61,-80],[-88,-63],[-21,-119],[31,-131],[57,-58],[58,2],[154,89],[158,79],[127,52],[133,-5],[314,12],[182,109],[594,379],[152,70],[80,4],[65,-28],[47,-107],[18,-126],[-31,-140],[-55,-140],[-62,-145],[-41,-126],[-40,-94],[6,-85],[22,-63],[62,-43],[53,19],[62,51],[40,79],[46,103],[34,122],[59,74],[71,38],[75,32],[58,52],[25,46],[53,61],[65,61],[109,174],[346,87],[39,5],[106,14],[112,-51],[87,-52],[71,-42],[52,-65],[56,-131],[40,-159],[0,-210],[-21,-187],[-31,-126],[-22,-112],[50,-74],[83,18],[102,33],[131,98],[80,98],[77,140],[34,523],[28,94],[37,191],[34,220],[31,210],[78,70],[179,60],[94,-8],[52,-76],[121,-355],[55,-219],[22,-145],[93,-453],[74,-89],[87,-48],[105,34],[99,99],[62,112],[25,130],[-28,80],[-59,-5],[-83,33],[-96,98],[-100,131],[-74,191],[-46,210],[15,178],[161,509],[53,154],[34,98],[52,26],[87,30],[92,-11],[549,-43],[167,-13],[164,8],[96,16],[118,103],[505,379],[130,23],[176,-42],[138,-16],[215,86],[158,70],[182,56],[217,10],[195,0],[112,-38],[71,-219],[34,-187],[43,-70],[84,-9],[93,102],[127,332],[96,234],[182,242],[223,243],[133,117],[102,112],[47,89],[29,145],[5,23],[28,173],[9,261],[19,206],[46,154],[74,145],[44,112],[-10,107],[-46,80],[-71,56],[-365,205],[-62,19],[-50,98],[-12,135],[15,140],[133,360],[87,126],[50,121],[105,214],[130,263],[96,107],[74,61],[96,61],[111,42],[131,32],[108,23],[6,1],[112,0],[337,74],[68,28],[93,0],[114,-46],[130,-47],[152,-28],[68,-33],[257,-244],[106,-69],[95,-60],[72,-131],[71,-163],[22,-131],[77,-243],[68,-206],[56,-84],[85,-61],[104,-32],[96,28],[108,42],[124,37],[192,10],[238,-66],[328,-56],[307,19],[198,9],[535,224],[133,77],[288,166],[192,145],[50,122],[37,154],[31,242],[19,169],[2,15],[29,157],[55,108],[112,93],[210,138],[25,16],[96,40],[68,68],[19,74],[9,150],[19,201],[37,221],[40,235],[28,111],[31,73],[68,23],[124,-9],[96,-47],[80,-42],[223,-56],[220,28],[164,61],[70,58],[83,70],[119,184],[47,145],[8,54],[17,105],[35,137],[79,148],[112,117],[120,112],[202,121],[120,14],[112,42],[130,-47],[105,-18],[173,14],[155,-28],[75,4],[65,-32],[46,-52],[28,-88],[62,-117],[59,-108],[136,-172],[164,-117],[89,-15],[37,-6],[320,86],[70,62],[19,18],[109,79],[111,0],[28,-7],[297,-82],[30,5],[165,23],[93,37],[84,33],[83,75],[127,168],[41,126],[0,108],[-22,121],[-15,106],[-13,146],[40,61],[81,-28],[68,-84],[65,-75],[68,-112],[12,-98],[-31,-145],[-37,-158],[0,-215],[56,-182],[80,-98],[202,-89],[14,-4],[116,-29],[105,33],[9,135],[-18,108],[-44,102],[-73,120],[-13,128],[49,135],[84,19],[156,-59],[30,-11],[133,9],[195,-65],[127,-65],[52,-75],[13,-140],[43,-112],[59,-145],[52,-164],[47,-98],[83,-60],[96,-10],[239,75],[251,163],[114,14],[170,-37],[214,-135],[124,-66],[65,-65],[12,-79],[-80,-136],[-124,-103],[-51,-49],[-72,-77],[-54,-140],[45,-106],[61,-137],[124,-93],[139,-98],[105,-80],[170,-42],[223,-74],[228,-141],[73,-224],[52,-154],[84,-79],[151,-2],[180,72],[71,47],[64,-19],[86,-51],[61,-61],[37,-173],[15,-176],[65,-67],[99,-56],[78,-84],[18,-103],[-27,-214],[-41,-299],[-55,-173],[-10,-79],[31,-80],[41,-11],[137,51],[327,245],[170,140],[65,145],[28,140],[50,159],[72,51],[172,28],[105,-42],[93,-84],[96,-131],[78,-130],[108,-80],[127,-135],[43,-159],[59,-164],[87,-107],[170,-112],[347,-234],[1000,-859],[210,-140],[260,-313],[397,-439],[253,-397],[257,-443],[233,-407],[191,-364],[84,-176],[3,-174],[-56,-150],[-74,-102],[-114,-80],[-89,-85],[-23,-102],[59,-46],[77,-10],[109,33],[86,28],[44,65],[24,146],[56,88],[47,-14],[43,-97],[19,-197],[21,-117],[22,-154],[49,-126],[65,-38],[103,-14],[99,-56],[65,-84],[49,-168],[31,-168],[16,-93],[62,-61],[111,-108],[127,-14],[93,-116],[43,-126],[65,-178],[62,-224],[16,-173],[37,-168],[43,-47],[65,-4],[59,98],[6,84],[-12,103],[-31,130],[-3,136],[58,112],[84,65],[77,33],[59,-28],[56,-61],[43,-112],[-40,-191],[-49,-75],[-53,-53],[-62,-139],[-12,-154],[0,-158],[3,-158],[15,-113],[-43,-173],[-62,-66],[-22,-91],[42,-91],[51,5],[65,84],[66,110],[95,40],[81,-24],[50,-65],[54,-97],[13,-146],[-9,-220],[-6,-154],[46,-224],[53,-84],[74,-51],[74,-5],[115,24],[78,4],[83,19],[74,-38],[53,-70],[13,-82],[0,-101],[2,-111],[50,-89],[158,-141],[226,-48],[133,-16],[114,51],[124,98],[164,150],[169,90],[90,29],[156,-44],[231,27],[119,164],[119,165],[79,177],[-9,196],[-130,167],[-99,74],[-76,-7],[-66,64],[-5,43],[13,60],[56,58],[75,-1],[282,38],[273,96],[159,-77],[141,-42],[151,31],[71,60],[45,96],[15,205],[-17,222],[70,128],[55,68],[94,23],[92,-29],[69,-58],[98,-181],[172,-178],[167,154],[148,341],[186,186],[189,463],[113,312],[123,155],[134,1],[320,-231],[165,-118],[284,-71],[346,-270],[225,-293],[105,-174],[27,-182],[-11,-190],[42,-166],[89,-63],[158,-79],[105,-95],[47,-48],[118,-156],[123,-168],[131,-32],[215,245],[179,277],[141,103],[263,-44],[50,-94],[31,-61],[45,-355],[84,-229],[147,-135],[141,40],[200,158],[209,55],[194,-23],[275,-16],[47,42],[114,104],[226,243],[161,-8],[102,-284],[-126,-332],[-19,-49],[112,-253],[60,-137],[258,-235],[11,-227],[-222,-336],[314,-435],[185,-239],[299,-61],[274,-252],[-119,-267],[-227,-101],[-84,-37],[-19,-204],[347,-470],[118,-470],[-151,-325],[-62,-327],[62,-241],[301,38],[173,-216],[86,-325],[-16,-421],[-232,-236],[-88,-74],[-154,-129],[-43,-357],[86,-713],[37,-63],[92,-156],[81,-317],[4,-902],[1,-363],[-62,-988],[170,-1049],[382,-1209],[290,-446],[55,-259],[198,-74],[86,18],[704,152],[393,41],[500,-438],[279,-101],[291,-85],[307,-8],[129,194],[32,203],[194,341],[263,397],[232,503],[183,479],[112,438],[135,268],[194,57],[354,-292],[355,-382],[33,-381],[-162,-324],[-145,-276],[-43,-325],[86,-422],[113,-397],[-140,-244],[-226,-97],[-242,97],[-145,168],[-226,-54],[-102,-284],[75,-284],[183,-270],[468,-257],[317,24],[350,706],[226,0],[204,-276],[26,-1108],[3,-139],[276,-547],[239,-475],[301,-207],[351,-105],[630,145],[331,-69],[176,-176],[39,-264],[-19,-306],[-159,-190],[-129,-245],[-27,-149],[23,-110],[106,-155],[389,-169],[661,-229],[279,-217],[4,-11],[118,-320],[98,-674],[18,-915],[-109,-1196],[129,-1542],[164,-720],[-163,-924],[-813,-3801],[-236,-2649],[-8,-90],[-108,-3434],[122,-2738],[298,-1942],[210,-825],[210,-826],[-41,-375],[-582,-181],[-298,-777],[-109,-1431],[-674,-1146],[-481,-1873],[-579,-690],[-207,-247],[-711,-1398],[-518,-590],[-481,-936],[-520,-1376],[-317,-1013],[-462,-419],[-488,132],[-735,-134],[-785,-669],[-735,-879],[-532,-898],[-532,-1013],[-469,-1071],[-208,-284],[-223,-1149],[-253,-1089],[-216,-1013],[-291,-861],[13,-860],[-216,-630],[-621,-1204],[-507,-994],[-319,-1049],[-499,-815],[-271,-296],[-330,-573],[-278,-746],[-317,-879],[0,-178],[0,-395],[-127,-440],[-240,-554],[-305,-536],[-202,-688],[-19,-36],[-387,-747],[-773,-707],[-354,-880],[-430,-901],[-470,-532],[-481,-822],[-419,-535],[-342,-765],[-192,-740],[-210,-253],[-555,-670],[-791,-955],[-862,-535],[-443,-746],[-400,-789],[-323,-561],[-456,-666],[-751,-1114],[-633,-1714],[-810,-1498],[-494,-1171],[-407,-717],[-557,-1775],[-179,-417],[-265,-996],[-427,-2155],[-155,-846],[-279,-2085],[3,-1503],[17,-1704],[2,-191],[308,-2664],[512,-3006],[688,-2945],[939,-4496],[441,-1305],[19,-999],[312,-777],[571,444],[474,-528],[381,-1388],[234,-853],[42,-97],[162,-379],[484,-1135],[101,-237],[323,-1068],[3,2],[629,-2504],[350,-1610],[459,-1193],[589,-833],[497,-749],[478,-472],[368,-499],[847,-500],[699,-666],[423,-444],[478,-250],[460,-388],[350,-250],[344,-214],[373,-397],[429,-404],[13,932],[312,360],[223,-598],[366,-734],[-37,754],[120,89],[819,-913],[262,-453],[-50,-1220]],[[792246,985928],[27,-51],[2,-4],[25,-35],[28,-36],[37,-37],[80,-64],[70,-56],[149,-112],[126,-89],[26,-13],[29,-13],[48,-22],[1,-1],[68,-24],[84,-36],[110,-19],[113,-32],[74,-35],[27,-12],[92,-49],[76,-36],[61,-21],[71,-20],[48,-16],[47,-7],[55,2],[36,-4],[40,-10],[39,-16],[52,-23],[56,-12],[67,1],[48,9],[35,12],[32,21],[31,24],[36,27],[34,15],[33,-4],[27,-17],[24,-20],[22,-33],[17,-36],[15,-45],[3,-21],[2,-20],[-1,-16],[-3,-33],[-4,-62],[2,-46],[6,-32],[5,-24],[10,-37],[13,-42],[18,-48],[24,-62],[19,-62],[22,-83],[24,-85],[37,-91],[33,-72],[55,-72],[57,-78],[56,-114],[50,-96],[46,-74],[50,-52],[37,-35],[25,-8],[24,-2],[35,9],[25,17],[20,35],[9,40],[9,67],[4,99],[-3,83],[-6,64],[-1,36],[5,27],[8,20],[14,16],[16,6],[27,0],[27,-11],[43,-41],[65,-70],[73,-80],[56,-79],[51,-90],[25,-80],[9,-37],[3,-47],[-8,-41],[-14,-31],[-20,-20],[-19,-21],[-34,-21],[-44,2],[-29,6],[-34,6],[-48,0],[-39,-6],[-46,-25],[-50,-28],[-35,-13],[-19,-18],[-15,-32],[-4,-37],[7,-44],[13,-33],[18,-24],[20,-11],[48,-3],[54,13],[73,25],[87,33],[63,20],[60,27],[56,23],[48,37],[55,56],[43,61],[21,30],[17,60],[6,64],[3,62],[-8,50],[-5,36],[-11,36],[-12,36],[-22,71],[-12,37],[-7,40],[9,34],[16,31],[10,21],[28,46],[14,19],[22,13],[21,-3],[23,-4],[16,-16],[31,-24],[31,-19],[43,-46],[33,-42],[25,-50],[21,-56],[24,-81],[13,-61],[1,-63],[-2,-54],[-13,-48],[-27,-38],[-28,-12],[-34,-7],[-27,-21],[-16,-16],[-30,-52],[-18,-47],[-4,-38],[4,-39],[8,-49],[20,-47],[10,-41],[15,-59],[37,-52],[48,-46],[56,-25],[38,0],[35,21],[31,33],[22,49],[14,43],[23,50],[34,36],[40,8],[40,-29],[40,-50],[56,-48],[49,-38],[39,-77],[33,-96],[26,-81],[28,-32],[40,6],[131,86],[38,2],[27,-12],[33,-17],[17,-38],[-5,-77],[-29,-165],[7,-39],[17,-30],[24,0],[25,25],[20,30],[24,46],[36,-1],[34,-23],[46,-35],[37,-25],[21,-4],[17,9],[11,20],[6,29],[0,61],[-3,41],[-11,36],[-44,111],[-70,141],[-14,52],[2,45],[9,48],[24,43],[34,36],[35,32],[29,16],[27,14],[28,9],[34,-12],[17,-13],[12,-29],[21,-55],[34,-146],[9,-73],[-3,-43],[-13,-30],[-19,-25],[-16,-35],[-3,-39],[6,-61],[13,-100],[16,-66],[10,-89],[1,-63],[9,-86],[21,-83],[18,-56],[7,-67],[1,-63],[-10,-65],[-14,-70],[-31,-95],[-11,-55],[9,-60],[17,-47],[25,-36],[21,-23],[79,-31],[63,-18],[40,-9],[22,-28],[18,-77],[-3,-96],[-3,-104],[12,-65],[12,-48],[16,-82],[67,-221],[18,-58],[19,-87],[10,-124],[-6,-86],[-6,-58],[-27,-46],[-88,-52],[-49,-41],[-33,-35],[-13,-46],[11,-53],[36,-61],[49,-36],[45,-13],[34,-6],[51,15],[49,24],[33,30],[30,36],[14,65],[3,36],[0,30],[-52,111],[-3,33],[5,38],[20,33],[32,7],[62,-9],[65,-27],[58,-10],[39,-32],[30,-54],[34,-82],[-1,-158],[-58,-213],[-19,-61],[-9,-112],[16,-102],[40,-65],[50,-25],[67,-13],[66,28],[50,44],[56,14],[48,-56],[38,-76],[28,-17],[36,15],[26,39],[36,81],[22,53],[3,52],[-5,66],[-13,187],[22,92],[29,80],[-9,57],[-5,88],[23,113],[31,55],[46,9],[101,65],[100,133],[51,105],[30,60],[86,119],[76,-57],[70,91],[83,24],[149,45],[76,-52],[40,-191],[100,-160],[13,-21],[165,-255],[116,-182],[122,-98],[137,-116],[158,-113],[64,-146],[44,-139],[46,-95],[100,-80],[94,-55],[105,-94],[94,-19],[123,-49],[51,-196],[-87,-208],[-9,-257],[-89,-174],[-67,-160],[-77,-267],[-196,-527],[-56,-227],[-56,-274],[-62,-268],[-1,-4],[-46,-308],[-8,-128],[-6,-116],[93,-215],[78,-50],[311,-127],[245,-22],[215,2],[181,-62],[22,-129],[-161,-301],[-116,-203],[-113,-92],[-102,-76],[-134,-106],[-41,-162],[36,-151],[65,-82],[89,-98],[138,-198],[285,-285],[187,-196],[29,-84],[-6,-203],[98,-310],[89,-406],[123,-395],[-75,-310],[-73,-151],[-31,-64],[-136,-252],[-147,-386],[-140,-149],[-197,-207],[-212,-252],[-138,-172],[-110,-105],[-98,-102],[-32,-90],[38,-175],[61,-191],[72,-171],[65,-106],[72,-140],[78,-123],[79,-133],[69,-159],[16,-107],[-13,-165],[-68,-248],[-49,-201],[-68,-202],[-93,-82],[-139,10],[-160,17],[-136,13],[-117,-20],[-97,-17],[-59,-71],[-62,-196],[-32,-207],[-22,-450],[-4,-19],[-49,-269],[-125,-184],[-166,-195],[-140,-310],[22,-187],[138,-177],[36,-45],[146,-188],[165,-247],[60,-299],[248,-634],[126,-721],[1,-10],[8,-22],[2,-4],[16,-46],[11,-31],[79,-221],[100,-420],[42,-136],[79,-261],[84,-276],[91,-189],[54,-110],[98,-256],[101,-251],[46,-173],[23,-161],[6,-45],[-3,-153],[-33,-99],[-140,-39],[-95,-5],[-70,-25],[-96,-4],[-66,34],[-84,44],[-108,-14],[-85,-59],[-49,-138],[7,-91],[19,-126],[82,-113],[94,-45],[74,25],[24,35],[43,68],[49,15],[49,20],[39,-10],[16,-64],[-10,-79],[-55,-74],[-91,-113],[-69,-88],[-56,-84],[-78,-59],[-62,-45],[-127,-29],[-65,-49],[-62,-74],[-27,-52],[-17,-74],[24,-66],[52,-69],[65,-25],[42,0],[35,27],[25,67],[25,80],[19,43],[28,26],[26,10],[26,-17],[19,-39],[10,-98],[27,-106],[29,-84],[16,-47],[29,-123],[17,-113],[6,-113],[-9,-58],[-16,-62],[-45,-85],[-43,-93],[-12,-29],[-3,-38],[3,-47]]],"transform":{"scale":[0.0000039308059636087374,0.0000026057291066688268],"translate":[-44.88932055080272,-23.368931962939712]}} \ No newline at end of file +{"type":"Topology","objects":{"municipalities":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"name":"ANGRA DOS REIS"},"id":"ANGRA DOS REIS","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105,106,107,108,109]]]},{"type":"Polygon","properties":{"name":"APERIBÉ"},"id":"APERIBÉ","arcs":[[110,111,112]]},{"type":"Polygon","properties":{"name":"ARARUAMA"},"id":"ARARUAMA","arcs":[[113,114,115,116,117,118,119,120,121]]},{"type":"Polygon","properties":{"name":"AREAL"},"id":"AREAL","arcs":[[122,123,124]]},{"type":"MultiPolygon","properties":{"name":"ARMAÇÃO DOS BÚZIOS"},"id":"ARMAÇÃO DOS BÚZIOS","arcs":[[[125]],[[126]],[[127,128]],[[129]]]},{"type":"MultiPolygon","properties":{"name":"ARRAIAL DO CABO"},"id":"ARRAIAL DO CABO","arcs":[[[130]],[[131]],[[132,133,134,-117,135]]]},{"type":"Polygon","properties":{"name":"BARRA DO PIRAÍ"},"id":"BARRA DO PIRAÍ","arcs":[[136,137,138,139,140,141,142]]},{"type":"Polygon","properties":{"name":"BARRA MANSA"},"id":"BARRA MANSA","arcs":[[143,144,145,146,147,148,149,150,-142]]},{"type":"Polygon","properties":{"name":"BELFORD ROXO"},"id":"BELFORD ROXO","arcs":[[151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212]]},{"type":"Polygon","properties":{"name":"BOM JARDIM"},"id":"BOM JARDIM","arcs":[[213,214,215,216]]},{"type":"Polygon","properties":{"name":"CABO FRIO"},"id":"CABO FRIO","arcs":[[217,-128,218,-134,219,-114,220]]},{"type":"Polygon","properties":{"name":"CACHOEIRAS DE MACACU"},"id":"CACHOEIRAS DE MACACU","arcs":[[221,222,223,224,225,226]]},{"type":"Polygon","properties":{"name":"CAMBUCI"},"id":"CAMBUCI","arcs":[[227,228,229,-111,230,231,232]]},{"type":"Polygon","properties":{"name":"CANTAGALO"},"id":"CANTAGALO","arcs":[[233,234,235,236,237,238,239,240]]},{"type":"Polygon","properties":{"name":"CARAPEBUS"},"id":"CARAPEBUS","arcs":[[241,242,243,244]]},{"type":"Polygon","properties":{"name":"CARDOSO MOREIRA"},"id":"CARDOSO MOREIRA","arcs":[[245,246,247,248,249]]},{"type":"Polygon","properties":{"name":"CARMO"},"id":"CARMO","arcs":[[250,251,252,253,-238]]},{"type":"Polygon","properties":{"name":"CASIMIRO DE ABREU"},"id":"CASIMIRO DE ABREU","arcs":[[254,255,256,-221,-122,257,258]]},{"type":"Polygon","properties":{"name":"COMENDADOR LEVY GASPARIAN"},"id":"COMENDADOR LEVY GASPARIAN","arcs":[[259,260,261]]},{"type":"Polygon","properties":{"name":"CONCEIÇÃO DE MACABU"},"id":"CONCEIÇÃO DE MACABU","arcs":[[262,263,-244,264,265,266]]},{"type":"Polygon","properties":{"name":"CORDEIRO"},"id":"CORDEIRO","arcs":[[267,-217,268,-236,269]]},{"type":"Polygon","properties":{"name":"DUAS BARRAS"},"id":"DUAS BARRAS","arcs":[[-237,-269,-216,270,271,-251]]},{"type":"Polygon","properties":{"name":"ENGENHEIRO PAULO DE FRONTIN"},"id":"ENGENHEIRO PAULO DE FRONTIN","arcs":[[272,273,274,275]]},{"type":"Polygon","properties":{"name":"GUAPIMIRIM"},"id":"GUAPIMIRIM","arcs":[[-225,276,277,278,279,280]]},{"type":"Polygon","properties":{"name":"IGUABA GRANDE"},"id":"IGUABA GRANDE","arcs":[[-136,-116,281]]},{"type":"Polygon","properties":{"name":"ITABORAÍ"},"id":"ITABORAÍ","arcs":[[282,283,284,285,-277,-224]]},{"type":"Polygon","properties":{"name":"ITALVA"},"id":"ITALVA","arcs":[[286,-249,287,-228,288]]},{"type":"Polygon","properties":{"name":"ITAOCARA"},"id":"ITAOCARA","arcs":[[289,-241,290,-112,-230,291]]},{"type":"Polygon","properties":{"name":"ITAPERUNA"},"id":"ITAPERUNA","arcs":[[292,293,294,295,-289,-233,296,297,298,299,300]]},{"type":"Polygon","properties":{"name":"ITATIAIA"},"id":"ITATIAIA","arcs":[[301,302]]},{"type":"Polygon","properties":{"name":"JAPERI"},"id":"JAPERI","arcs":[[303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322]]},{"type":"Polygon","properties":{"name":"LAJE DO MURIAÉ"},"id":"LAJE DO MURIAÉ","arcs":[[323,324,-299]]},{"type":"MultiPolygon","properties":{"name":"MACAÉ"},"id":"MACAÉ","arcs":[[[325]],[[326]],[[-243,327,328,-255,329,330,-265]]]},{"type":"Polygon","properties":{"name":"MACUCO"},"id":"MACUCO","arcs":[[331,332,-270,-235]]},{"type":"Polygon","properties":{"name":"MAGÉ"},"id":"MAGÉ","arcs":[[333,334,335,336,337,-279]]},{"type":"MultiPolygon","properties":{"name":"MANGARATIBA"},"id":"MANGARATIBA","arcs":[[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357,358]],[[359,360,-107,361]]]},{"type":"Polygon","properties":{"name":"MARICÁ"},"id":"MARICÁ","arcs":[[362,363,364,365,-284,366]]},{"type":"Polygon","properties":{"name":"MENDES"},"id":"MENDES","arcs":[[-274,367,368,-138,369]]},{"type":"Polygon","properties":{"name":"MIGUEL PEREIRA"},"id":"MIGUEL PEREIRA","arcs":[[370,371,372,-318,373,-276,374,375]]},{"type":"Polygon","properties":{"name":"MIRACEMA"},"id":"MIRACEMA","arcs":[[-298,376,377,378,-324]]},{"type":"Polygon","properties":{"name":"NATIVIDADE"},"id":"NATIVIDADE","arcs":[[379,-301,380,381,382]]},{"type":"MultiPolygon","properties":{"name":"NITERÓI"},"id":"NITERÓI","arcs":[[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[-365,390,391]],[[392]]]},{"type":"Polygon","properties":{"name":"NOVA FRIBURGO"},"id":"NOVA FRIBURGO","arcs":[[-215,393,-330,-259,394,-227,395,396,-271]]},{"type":"Polygon","properties":{"name":"PARACAMBI"},"id":"PARACAMBI","arcs":[[-317,397,398,399,400,401,402,403,404,-368,-273,-374]]},{"type":"Polygon","properties":{"name":"PARAÍBA DO SUL"},"id":"PARAÍBA DO SUL","arcs":[[-261,405,-124,406,407,408,409,410]]},{"type":"MultiPolygon","properties":{"name":"PARATY"},"id":"PARATY","arcs":[[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447,-109]]]},{"type":"Polygon","properties":{"name":"PATY DO ALFERES"},"id":"PATY DO ALFERES","arcs":[[448,-376,449,-408]]},{"type":"Polygon","properties":{"name":"PETRÓPOLIS"},"id":"PETRÓPOLIS","arcs":[[450,-280,-338,451,452,453,454,455,-371,-449,-407,-123,456]]},{"type":"Polygon","properties":{"name":"PINHEIRAL"},"id":"PINHEIRAL","arcs":[[457,458,-140]]},{"type":"Polygon","properties":{"name":"PIRAÍ"},"id":"PIRAÍ","arcs":[[-369,-405,459,460,461,462,-145,463,-458,-139]]},{"type":"Polygon","properties":{"name":"PORTO REAL"},"id":"PORTO REAL","arcs":[[-149,464,465]]},{"type":"Polygon","properties":{"name":"QUATIS"},"id":"QUATIS","arcs":[[-150,-466,466,467,468]]},{"type":"Polygon","properties":{"name":"QUEIMADOS"},"id":"QUEIMADOS","arcs":[[469,470,471,472,473,474,475,-311,476]]},{"type":"Polygon","properties":{"name":"QUISSAMÃ"},"id":"QUISSAMÃ","arcs":[[477,478,479,480,481,482,483,-245,-264,484]]},{"type":"Polygon","properties":{"name":"RESENDE"},"id":"RESENDE","arcs":[[-467,-465,-148,485,-302,486]]},{"type":"Polygon","properties":{"name":"RIO BONITO"},"id":"RIO BONITO","arcs":[[-120,487,488,-223,489]]},{"type":"Polygon","properties":{"name":"RIO CLARO"},"id":"RIO CLARO","arcs":[[490,-362,-106,491,-146,-463]]},{"type":"Polygon","properties":{"name":"RIO DAS FLORES"},"id":"RIO DAS FLORES","arcs":[[-410,492,493,494]]},{"type":"Polygon","properties":{"name":"RIO DAS OSTRAS"},"id":"RIO DAS OSTRAS","arcs":[[495,-256,-329]]},{"type":"Polygon","properties":{"name":"SANTA MARIA MADALENA"},"id":"SANTA MARIA MADALENA","arcs":[[496,-267,497,498,499]]},{"type":"Polygon","properties":{"name":"SANTO ANTÔNIO DE PÁDUA"},"id":"SANTO ANTÔNIO DE PÁDUA","arcs":[[-231,-113,-291,-240,500,-378,501]]},{"type":"Polygon","properties":{"name":"SÃO FIDÉLIS"},"id":"SÃO FIDÉLIS","arcs":[[-248,502,-500,503,-292,-229,-288]]},{"type":"MultiPolygon","properties":{"name":"SÃO GONÇALO"},"id":"SÃO GONÇALO","arcs":[[[504]],[[505]],[[506]],[[507]],[[-366,-392,508,-285]]]},{"type":"Polygon","properties":{"name":"SÃO JOÃO DA BARRA"},"id":"SÃO JOÃO DA BARRA","arcs":[[509,510,511,512,513,514,515,516,517]]},{"type":"Polygon","properties":{"name":"SÃO JOSÉ DE UBÁ"},"id":"SÃO JOSÉ DE UBÁ","arcs":[[-232,-502,-377,-297]]},{"type":"Polygon","properties":{"name":"SÃO JOSÉ DO VALE DO RIO PRETO"},"id":"SÃO JOSÉ DO VALE DO RIO PRETO","arcs":[[518,519,-457,520,521]]},{"type":"Polygon","properties":{"name":"SÃO PEDRO DA ALDEIA"},"id":"SÃO PEDRO DA ALDEIA","arcs":[[-133,-282,-115,-220]]},{"type":"Polygon","properties":{"name":"SÃO SEBASTIÃO DO ALTO"},"id":"SÃO SEBASTIÃO DO ALTO","arcs":[[-504,-499,522,-332,-234,-290]]},{"type":"Polygon","properties":{"name":"SAPUCAIA"},"id":"SAPUCAIA","arcs":[[523,-522,524,525,-253]]},{"type":"Polygon","properties":{"name":"SAQUAREMA"},"id":"SAQUAREMA","arcs":[[-119,526,-363,527,-488]]},{"type":"Polygon","properties":{"name":"SILVA JARDIM"},"id":"SILVA JARDIM","arcs":[[-121,-490,-222,-395,-258]]},{"type":"Polygon","properties":{"name":"SUMIDOURO"},"id":"SUMIDOURO","arcs":[[-252,-272,-397,528,-519,-524]]},{"type":"Polygon","properties":{"name":"TANGUÁ"},"id":"TANGUÁ","arcs":[[-528,-367,-283,-489]]},{"type":"Polygon","properties":{"name":"TERESÓPOLIS"},"id":"TERESÓPOLIS","arcs":[[-396,-226,-281,-451,-520,-529]]},{"type":"Polygon","properties":{"name":"TRAJANO DE MORAES"},"id":"TRAJANO DE MORAES","arcs":[[-498,-266,-331,-394,-214,-268,-333,-523]]},{"type":"Polygon","properties":{"name":"TRÊS RIOS"},"id":"TRÊS RIOS","arcs":[[-521,-125,-406,-260,529,-525]]},{"type":"Polygon","properties":{"name":"VALENÇA"},"id":"VALENÇA","arcs":[[-494,530,-143,-151,-469,531]]},{"type":"Polygon","properties":{"name":"VASSOURAS"},"id":"VASSOURAS","arcs":[[-409,-450,-375,-275,-370,-137,-531,-493]]},{"type":"Polygon","properties":{"name":"VOLTA REDONDA"},"id":"VOLTA REDONDA","arcs":[[-459,-464,-144,-141]]},{"type":"Polygon","properties":{"name":"SEROPÉDICA"},"id":"SEROPÉDICA","arcs":[[532,533,-403,534,535,-400,536,-398,-316,537,-314,538,-312,-476,539]]},{"type":"Polygon","properties":{"name":"SÃO JOÃO DE MERITI"},"id":"SÃO JOÃO DE MERITI","arcs":[[540,-168,541,542,543,544,545,546,547,548,549,550,-172,551,-170]]},{"type":"Polygon","properties":{"name":"NILÓPOLIS"},"id":"NILÓPOLIS","arcs":[[-550,552,553,554,555]]},{"type":"Polygon","properties":{"name":"DUQUE DE CAXIAS"},"id":"DUQUE DE CAXIAS","arcs":[[-372,-456,556,-454,557,-452,-337,558,-335,559,560,561,562,563,564,565,566,567,568,-542,569,-166,570,-164,571,-162,572,-160,573,574,-157,575,-155,576,-153,577,-213,578]]},{"type":"MultiPolygon","properties":{"name":"ITAGUAÍ"},"id":"ITAGUAÍ","arcs":[[[579,-360,-491,-462,580,-460,-404,-534,581]],[[582]],[[583]],[[584]],[[-358,585]],[[586]],[[587,588]]]},{"type":"Polygon","properties":{"name":"MESQUITA"},"id":"MESQUITA","arcs":[[-173,-551,-556,589,590]]},{"type":"Polygon","properties":{"name":"NOVA IGUAÇU"},"id":"NOVA IGUAÇU","arcs":[[-540,-475,591,-473,592,-471,593,-477,-310,594,-308,595,596,-305,597,-323,598,-321,599,-319,-373,-579,-212,600,-210,601,-208,602,-206,603,-204,604,-202,605,-200,606,-198,607,-196,608,-194,609,-192,610,-190,611,-188,612,-186,613,-184,614,-182,615,-180,616,-178,617,-176,618,-174,-591,619]]},{"type":"MultiPolygon","properties":{"name":"RIO DE JANEIRO"},"id":"RIO DE JANEIRO","arcs":[[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645]],[[646]],[[647]],[[-588,648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679,680,681,-563,682,-561,683,-582,-533,-620,-590,-555,684,-553,-549,685,-547,686,-545,687,-543,-569,688,-567]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]]]},{"type":"Polygon","properties":{"name":"BOM JESUS DO ITABAPOANA"},"id":"BOM JESUS DO ITABAPOANA","arcs":[[750,-295,751,-293,-380,752,753]]},{"type":"Polygon","properties":{"name":"CAMPOS DOS GOYTACAZES"},"id":"CAMPOS DOS GOYTACAZES","arcs":[[754,-514,755,-512,756,-510,757,-483,758,-481,759,-479,760,-485,-263,-497,-503,-247,761,-250,-287,-296,-751,762]]},{"type":"Polygon","properties":{"name":"PORCIÚNCULA"},"id":"PORCIÚNCULA","arcs":[[763,-382,764]]},{"type":"Polygon","properties":{"name":"SÃO FRANCISCO DE ITABAPOANA"},"id":"SÃO FRANCISCO DE ITABAPOANA","arcs":[[-517,765,-515,-755,766]]},{"type":"Polygon","properties":{"name":"VARRE-SAI"},"id":"VARRE-SAI","arcs":[[-753,-383,-764,767]]}]}},"arcs":[[[135434,60076],[121,-105],[19,-287],[-121,-153],[-234,-287],[-190,-29],[-172,-134],[-120,-19],[-184,0],[-165,191],[134,335],[133,230],[145,191],[140,57],[76,-67],[95,19],[44,67],[51,67],[76,-95],[51,95],[95,0],[6,-76]],[[166651,107093],[147,-117],[1600,29],[61,1],[967,168],[454,-163],[91,9],[975,106],[454,-201],[305,-378],[255,-314],[512,81],[185,-285],[232,-112],[-77,-354],[49,-1018],[-289,-709],[163,-338],[275,42],[487,419],[702,-154],[522,271],[1088,-427],[571,18],[292,-357],[-58,-404],[-191,-251],[242,-934],[112,-103],[643,636],[261,-89],[64,-341],[-205,-458],[-291,148],[-642,-615],[-7,-364],[-1322,-957],[-303,31],[-170,272],[382,746],[8,203],[-114,130],[-41,45],[-330,362],[-327,0],[-296,207],[-369,255],[-412,63],[-144,-363],[-114,-41],[-133,261],[-633,64],[-226,-184],[-271,56],[-380,-111],[-197,-335],[-373,-111],[7,-306],[97,-938],[275,-486],[531,-219],[182,-322],[383,-198],[269,155],[537,-91],[-91,348],[113,806],[92,146],[389,-18],[265,-443],[-8,-712],[200,-827],[347,-782],[213,-828],[274,-900],[402,-24],[233,-398],[482,-437],[122,10],[401,802],[220,109],[200,201],[116,-430],[292,-321],[522,-322],[362,219],[564,-23],[459,938],[536,-77],[306,223],[687,159],[591,382],[454,-122],[152,-1],[397,-4],[623,-287],[306,-526],[-130,-631],[-304,-1134],[-113,-13],[-340,-37],[-179,-303],[53,-361],[-106,-595],[58,-525],[699,-821],[195,-342],[32,-152],[32,-414],[-106,-374],[-121,-287],[42,-255],[-94,-385],[213,-459],[235,-303],[8,-18],[113,-260],[185,-199],[222,-168],[227,-231],[303,-221],[251,-49],[264,-24],[111,71],[29,153],[39,269],[74,56],[185,-48],[285,96],[138,80],[158,79],[281,146],[84,79],[173,161],[247,114],[39,18],[8,40],[102,486],[-322,79],[-314,219],[96,395],[-232,95],[-43,351],[254,223],[232,318],[211,-95],[190,-271],[-84,-303],[0,-258],[129,-40],[314,-52],[233,239],[274,462],[-253,446],[105,414],[233,318],[399,244],[254,96],[181,234],[84,302],[-213,447],[66,302],[-191,558],[106,95],[148,143],[274,192],[254,63],[359,207],[1003,475],[410,-145],[744,109],[734,306],[507,211],[738,306],[232,-627],[43,-450],[395,-475],[-14,-366],[-205,-231],[-574,-86],[-482,-414],[-5,-4],[-417,-747],[-359,-1089],[-467,-688],[-396,-1163],[-504,-657],[-400,-37],[-270,-550],[143,-529],[55,-1223],[318,-662],[374,-271],[398,167],[197,307],[289,-39],[28,-180],[-282,-742],[-763,-1049],[-333,-1345],[-495,-927],[107,-602],[305,-516],[283,-193],[665,663],[767,290],[757,1114],[275,-29],[346,-547],[778,898],[899,342],[219,463],[247,195],[310,735],[305,341],[387,-90],[69,-152],[9,-19],[-203,-1226],[-362,-546],[-70,-350],[319,-306],[-72,-165],[78,-150],[247,-169],[70,-570],[164,-367],[678,-744],[545,-251],[36,-182],[219,-195],[-16,-533],[148,-292],[1069,-61],[1314,284],[182,-68],[291,-498],[1089,-254],[91,-143],[14,-441],[-190,-573],[-517,-679],[-134,-583],[51,-616],[-121,-370],[-17,-14],[-352,-289],[-261,243],[-543,-243],[-577,-544],[-476,65],[-1237,-570],[-1093,-1365],[-312,-852],[-849,-652],[-261,-28],[-369,182],[-416,-163],[-593,389],[-475,-447],[-423,-57],[-602,-437],[-529,-16],[-10,83],[-11,90],[333,326],[268,883],[1555,1751],[-10,646],[-741,1819],[-584,809],[-856,726],[-1267,441],[-216,53],[-553,136],[-48,-176],[-504,-30],[-373,-326],[-644,77],[-2037,-1092],[-1178,-124],[-105,-556],[-256,-442],[-769,-479],[-15,395],[-318,-358],[-64,-742],[219,-149],[-634,-319],[-213,-275],[-361,-668],[-76,-373],[4,-193],[325,-297],[-739,-581],[-283,-51],[-56,190],[239,445],[-21,179],[-374,331],[-686,13],[-616,732],[-566,-152],[-1165,39],[-317,-122],[-729,-1080],[-218,-798],[-98,-1201],[153,-339],[340,-322],[607,-283],[418,-64],[276,122],[119,-92],[-97,-561],[191,-497],[-52,-371],[-260,-138],[-412,-571],[-704,-319],[-566,-60],[-390,-272],[-317,-431],[-63,-912],[-311,-365],[-630,-350],[-105,99],[-56,1042],[-171,290],[193,961],[-936,541],[-840,114],[-168,279],[-361,186],[-107,766],[-112,116],[-588,-312],[-184,-264],[-529,-234],[-1002,-59],[-284,-136],[-593,171],[-905,-749],[-475,-13],[-522,246],[-806,-544],[-204,-819],[-212,-211],[-234,153],[-205,-136],[-629,183],[-1407,-607],[-431,93],[-311,348],[-268,-124],[-488,-628],[-367,-178],[143,-478],[-81,-138],[-224,-188],[-439,-98],[-182,-120],[-306,-201],[-565,205],[-218,227],[-277,51],[-71,336],[-253,360],[93,1062],[268,155],[644,-125],[670,971],[-14,1426],[-284,814],[-366,519],[-410,243],[-1718,-1249],[-253,186],[-149,-278],[-247,-16],[-313,-393],[-528,-972],[-568,-317],[-34,22],[-92,60],[29,171],[651,773],[376,886],[267,1817],[-127,522],[-883,849],[-72,802],[-168,301],[-516,464],[-1153,562],[-1492,220],[-324,618],[-397,-174],[376,-157],[184,-243],[-283,-432],[-410,-31],[-191,706],[-382,206],[-1179,-54],[-2063,-426],[-2226,-976],[-1338,-1410],[-28,-53],[-388,-706],[-106,-967],[170,-369],[466,-19],[70,-158],[-320,-748],[-309,-719],[-189,-914],[-445,-964],[-249,-195],[-40,-412],[-279,-529],[-69,-433],[-1499,-1544],[-424,-763],[-267,-704],[-36,-711],[-397,-616],[-83,-382],[56,-366],[183,-1190],[-234,-1607],[-97,-108],[-227,157],[-396,-46],[-425,259],[-1764,-707],[-251,-391],[-740,-369],[699,1248],[333,291],[303,885],[644,403],[213,284],[20,201],[-34,192],[-384,202],[-910,-389],[-291,248],[-70,416],[-275,64],[-275,-173],[-276,46],[-233,-124],[-36,179],[261,470],[-100,361],[-119,-85],[-78,146],[137,2082],[239,623],[27,579],[290,648],[-15,208],[287,402],[19,26],[328,803],[244,599],[670,895],[85,924],[538,1031],[84,577],[-113,803],[-111,138],[-389,482],[281,1130],[-112,361],[-488,384],[-553,87],[-430,-788],[-118,-590],[-269,-529],[-730,115],[-284,-428],[-82,-405],[-600,-1208],[-601,-182],[-72,346],[78,152],[-148,903],[-164,260],[9,577],[-115,531],[-149,198],[-141,188],[-535,157],[-36,388],[177,1133],[-997,-457],[-396,-516],[-678,14],[-255,-484],[-20,-386],[-482,193],[-282,431],[-149,518],[107,727],[-122,102],[-459,-231],[-153,648],[-134,48],[97,817],[-147,276],[219,921],[804,1158],[1131,840],[388,764],[297,-21],[172,-354],[1236,64],[713,563],[445,707],[176,575],[474,408],[403,-111],[304,116],[382,-589],[268,11],[757,850],[47,542],[207,262],[389,274],[13,10],[233,429],[615,417],[129,32],[437,-454],[552,-132],[332,-384],[607,378],[585,-18],[248,-135],[509,249],[651,948],[536,1308],[419,1774],[-8,371],[-346,786],[-693,-81],[-56,166],[95,342],[12,42],[755,444],[332,853],[790,501],[285,-5],[514,-370],[206,-281],[77,-353],[135,-69],[312,409],[5,197],[-453,973],[-253,200],[-20,200],[302,910],[179,1059],[337,642],[86,382],[735,991],[305,690],[457,59],[1492,1060],[360,544],[20,403],[461,413],[64,-10],[64,-9],[140,-536],[-91,-739],[118,-1747],[-535,-1784],[-298,-1795],[56,-177],[481,-313],[509,123],[424,354],[135,-80],[-113,-1112],[56,-578],[311,-404],[291,44],[437,486],[684,-211],[327,1231],[-240,389],[104,518],[191,275],[551,184],[65,730],[157,306],[77,570],[49,-13],[531,-136],[360,225],[606,591],[171,328],[34,419],[-353,1240],[-304,470],[185,191],[288,3],[15,-187],[128,8],[819,484],[834,238],[552,-94],[479,350],[396,-221],[149,-353],[142,-1],[466,654],[-16,643],[94,328],[233,41],[332,59],[246,174],[292,-76],[592,315],[318,423],[296,2360],[-86,340],[-395,349],[-153,609],[-672,-165],[-769,159],[-488,-247],[-150,55],[-35,360],[194,191],[33,32],[707,93],[1370,579],[565,659],[141,-76],[975,210],[609,338],[338,415],[628,130],[106,384],[-266,572],[146,1015],[-69,574],[155,302],[552,251],[479,-382],[29,-381],[-431,-520],[185,-567]],[[126511,115612],[42,-111],[-61,-115],[-26,-75],[-22,-171],[-49,-83],[26,-46],[-24,-97],[-69,-71],[-47,-36],[32,-46],[-13,-111],[-93,-43],[-95,-75],[-81,-94],[-18,-57],[45,4],[47,-107],[50,-43],[68,-54],[-13,-100],[-45,-79],[-55,-50],[-57,-32],[-57,-93],[-97,-82],[-78,0],[-38,50],[-81,-36],[-66,65],[-55,93],[-52,60],[-50,33],[-21,125],[-45,39],[-45,79],[14,71],[40,47],[-2,114],[-5,161],[38,50],[41,97],[2,89],[-45,100],[26,68],[71,15],[0,57],[7,96],[52,101],[74,-11],[17,182],[23,140],[52,7],[50,-129],[-9,-164],[42,-4],[5,-64],[24,14],[0,57],[12,36],[21,18],[12,-54],[31,-11],[-7,79],[30,97],[88,60],[88,-14],[28,-39],[147,279],[67,7],[35,-93],[-21,-75],[95,-25]],[[121864,117672],[48,-79],[44,2],[14,-39],[38,23],[2,35],[-14,35],[0,23],[34,6],[21,-72],[5,-37],[-12,-43],[-20,-53],[4,-58],[-37,-125],[-44,-88],[-41,-72],[-58,-42],[-61,-19],[-53,-8],[-36,-2],[-24,-8],[-27,-13],[-17,15],[-14,44],[-34,-57],[-30,-13],[-56,5],[-58,27],[-23,64],[23,66],[24,53],[25,61],[18,53],[-7,99],[26,93],[49,66],[32,13],[25,19],[23,29],[-7,37],[26,61],[28,3],[37,40],[64,122],[54,0],[50,-16],[29,-82],[-40,-85],[-30,-83]],[[140233,118179],[7,-190],[-21,-179],[-84,-84],[-119,37],[-63,137],[18,153],[77,110],[49,-16],[56,48],[80,-16]],[[123134,118782],[-63,-73],[-45,-60],[-68,-23],[-40,-23],[-82,82],[-40,-23],[-1,-50],[3,-34],[2,-46],[-18,-12],[-17,0],[-5,33],[-4,-5],[-18,-25],[5,-20],[18,-12],[-4,-32],[-21,4],[-8,-28],[15,-4],[1,-23],[-21,-16],[7,-41],[-10,-43],[-22,-40],[-5,-44],[-12,-23],[-30,-18],[-26,13],[-39,24],[-20,26],[-28,44],[-14,41],[2,45],[-27,-5],[-21,17],[-5,-38],[-2,-77],[-6,-43],[-34,-1],[-33,66],[-22,77],[-99,19],[-71,40],[-13,104],[47,115],[107,100],[59,-3],[58,-25],[45,17],[103,64],[60,-3],[57,-32],[9,47],[67,53],[37,48],[80,67],[12,26],[48,67],[64,-4],[76,-15],[57,-175],[-45,-100]],[[130492,119091],[-43,-28],[-37,24],[-13,58],[-6,76],[8,58],[14,100],[38,7],[67,-72],[1,-90],[-8,-77],[-21,-56]],[[130244,119556],[-20,-51],[-31,-14],[-9,35],[-28,-33],[-12,28],[6,74],[29,98],[37,51],[56,37],[49,-14],[11,-51],[3,-49],[-34,0],[-17,-49],[-14,-44],[-26,-18]],[[146545,119784],[-24,-135],[33,-7],[21,48],[33,-17],[27,-38],[110,-13],[36,17],[16,-34],[47,-14],[63,-13],[60,-7],[27,24],[27,-31],[7,-57],[47,-10],[61,-55],[33,-23],[23,40],[-2,48],[87,-21],[9,-98],[31,-6],[41,-51],[49,-27],[106,-58],[60,-27],[27,-58],[38,-81],[30,-64],[6,-61],[-22,-27],[16,-51],[-12,-74],[70,-24],[0,-54],[-67,-123],[-41,-107],[7,-55],[20,-67],[-36,-82],[-92,-115],[-76,-20],[-76,-17],[-95,34],[-33,58],[-54,98],[-16,101],[-9,122],[-22,-88],[-59,-108],[-29,-102],[-47,21],[-38,50],[-2,78],[-84,74],[-73,-26],[-43,-65],[-70,-74],[-51,17],[-23,57],[-13,67],[-79,-23],[-11,-54],[34,-64],[-29,-54],[-39,-65],[-6,-78],[-42,-47],[-44,-24],[-38,17],[-42,10],[-61,-74],[-63,-80],[-105,-59],[-83,-91],[-88,-163],[4,-64],[-35,-24],[-50,-115],[-11,-54],[74,-14],[45,-33],[-18,-55],[-58,-23],[24,-17],[50,10],[37,-6],[-30,-28],[-16,-54],[11,-44],[47,-20],[43,6],[29,-37],[16,-68],[31,-105],[-12,-122],[-60,-75],[-78,-97],[-49,-12],[-32,-39],[-34,-7],[-56,75],[-69,61],[-43,20],[0,64],[5,105],[47,51],[-8,55],[-31,-28],[-49,17],[-11,85],[31,37],[25,-71],[47,51],[-7,78],[-47,71],[-54,67],[-49,105],[-2,58],[-27,88],[-9,81],[-2,88],[-18,85],[-62,27],[-72,-32],[-50,-22],[-55,-2],[-23,-10],[-75,-32],[-69,10],[-41,34],[-45,20],[-24,95],[-12,118],[-22,58],[11,139],[41,166],[83,148],[109,153],[50,61],[60,74],[50,75],[99,74],[175,75],[67,17],[29,3],[52,27],[29,14],[78,37],[45,27],[54,95],[79,44],[51,30],[50,105],[9,119],[29,77],[29,55],[20,-11],[72,51],[36,-10],[20,58],[148,88],[11,-21]],[[120834,119790],[83,-77],[22,-69],[39,-27],[65,-212],[210,-208],[104,-29],[95,-13],[26,-45],[-10,-64],[5,-96],[-107,-143],[-129,-133],[-115,75],[-122,80],[-409,-338],[-88,-115],[-109,35],[-66,77],[-133,-40],[-45,-103],[-144,-200],[-148,-74],[-169,19],[-53,82],[-47,396],[-60,135],[-145,0],[-42,229],[64,233],[364,303],[127,67],[62,-24],[114,16],[243,90],[178,117],[58,-5],[116,87],[166,-26]],[[130515,120176],[6,-68],[-25,-48],[-18,-58],[-34,-26],[-26,-18],[-28,4],[-9,-32],[-34,-19],[-37,12],[-31,0],[-10,25],[0,54],[4,41],[31,14],[-18,7],[-11,54],[24,35],[27,11],[-5,14],[26,16],[26,17],[17,-17],[30,-18],[43,39],[52,-39]],[[121281,120037],[-34,-22],[-22,16],[-47,41],[4,50],[50,115],[85,118],[84,66],[79,22],[80,-73],[-56,-89],[-55,-98],[-70,-95],[-73,-29],[-25,-22]],[[141522,120118],[-98,-26],[-101,90],[-7,184],[91,142],[122,85],[63,37],[56,-16],[63,-100],[14,-222],[-63,-79],[-70,0],[-70,-95]],[[123680,120710],[7,-56],[26,25],[49,55],[64,7],[23,51],[50,-16],[64,-21],[8,-47],[-17,-29],[2,-27],[32,-14],[13,-56],[-41,-59],[24,-72],[35,-47],[24,-68],[15,-119],[-38,-33],[36,-15],[70,-103],[24,-75],[12,-111],[-9,-107],[17,-82],[-4,-60],[-37,-59],[-32,-35],[-25,-44],[-22,-20],[-26,-43],[-12,-58],[0,-18],[-15,-43],[-1,-39],[-32,0],[-36,0],[-32,-33],[7,-64],[-31,-25],[-29,50],[-35,10],[-60,47],[-30,-57],[-20,-35],[-36,28],[-42,-16],[-38,10],[-52,6],[-37,-9],[-26,-60],[-72,-66],[-60,-76],[-52,-41],[-65,45],[-35,47],[-22,60],[33,59],[46,54],[24,70],[51,82],[13,45],[40,39],[18,45],[28,62],[-1,37],[-38,80],[-13,49],[21,74],[-8,21],[-4,55],[8,29],[31,47],[27,76],[21,37],[-25,29],[-56,-12],[-66,-58],[-37,-20],[-11,39],[11,102],[16,83],[-39,49],[-7,41],[11,27],[24,43],[-9,35],[-1,39],[20,12],[53,68],[48,58],[35,4],[25,33],[28,28],[33,11],[22,-31],[7,26],[-2,64],[15,52],[46,30],[30,-8],[33,-39],[18,-49]],[[142923,120724],[-49,-121],[35,-163],[59,-5],[45,-131],[4,-49],[-68,80],[2,-53],[-53,-21],[-73,31],[-70,-121],[-49,-126],[-52,-21],[-53,-16],[-38,-16],[-77,26],[-133,-165],[-43,-104],[-40,-100],[-60,-42],[-63,69],[-45,68],[24,100],[-45,64],[-66,68],[-53,79],[7,90],[60,74],[38,10],[14,121],[105,122],[77,42],[62,-48],[39,-63],[84,74],[42,37],[49,15],[-7,-73],[55,84],[56,100],[42,-16],[74,64],[52,179],[45,116],[28,89],[-21,85],[63,89],[161,-274],[-87,-84],[-77,-100],[0,-64]],[[146689,121277],[70,-98],[-5,-189],[-83,-190],[-31,-60],[-5,-48],[-81,-82],[-10,-46],[-16,-82],[-37,-21],[-20,-81],[-56,-81],[-71,-24],[-97,-23],[-29,47],[-63,3],[-72,-64],[-81,-58],[-69,-30],[-92,-14],[-23,-30],[-42,-27],[-68,-54],[-58,7],[-108,71],[-54,71],[0,61],[34,57],[-12,17],[-37,-30],[-65,-24],[-45,71],[-11,95],[38,68],[-61,47],[-49,85],[7,94],[-9,88],[44,88],[77,55],[38,37],[63,64],[27,-7],[40,-34],[45,-27],[58,17],[45,7],[14,-20],[13,-61],[47,-20],[25,-38],[25,-54],[51,-71],[47,-41],[36,-3],[61,47],[29,24],[38,10],[25,-10],[9,48],[22,33],[18,-10],[50,51],[31,88],[27,34],[40,37],[29,64],[57,11],[-34,27],[11,57],[43,51],[56,7],[4,-44],[16,-31],[-16,-40],[86,67],[20,41],[29,0],[-9,-54],[74,74]],[[119165,121089],[-21,-19],[-25,-37],[-28,8],[-35,30],[-28,-36],[-10,-13],[-23,22],[5,69],[32,81],[19,8],[29,21],[7,54],[18,5],[10,-37],[-3,-41],[30,-24],[39,-16],[-3,-64],[-13,-11]],[[141525,121388],[18,-89],[28,16],[91,31],[49,-52],[17,-69],[39,-153],[-74,-221],[-66,-49],[-25,-104],[-83,-40],[-15,-39],[-69,-26],[-91,-42],[-112,-85],[-49,6],[-101,47],[-28,111],[-42,89],[-11,106],[49,52],[49,32],[-7,47],[25,32],[59,-32],[-14,48],[63,153],[0,58],[45,52],[46,37],[59,-21],[39,21],[21,79],[-21,85],[24,100],[46,-11],[34,-74],[7,-95]],[[147970,122323],[-33,-35],[-65,-39],[39,-63],[-16,-84],[-28,-91],[-25,-70],[-61,-39],[-88,14],[-93,116],[-56,94],[-26,88],[5,53],[26,49],[44,-4],[39,11],[40,67],[105,10],[125,-38],[68,-39]],[[124625,123669],[-46,-10],[-53,55],[-36,24],[-60,15],[20,100],[4,120],[75,89],[17,95],[20,40],[59,-5],[23,-40],[-36,-159],[59,-69],[14,-81],[-37,-90],[-23,-84]],[[100944,124781],[13,-2],[42,62],[19,-17],[49,19],[13,-22],[-1,-60],[-3,-48],[-14,-40],[12,-15],[-3,-30],[-22,-40],[-38,-36],[-30,-45],[-34,-7],[-56,-31],[-17,12],[2,56],[-22,38],[-37,0],[-26,-7],[-22,-5],[1,-34],[-22,-3],[-27,20],[-12,44],[15,52],[26,44],[10,45],[3,49],[24,31],[29,19],[35,1],[47,51],[25,59],[36,-2],[17,-35],[9,-39],[-11,-32],[-16,-19],[-14,-33]],[[103668,125774],[-21,-85],[-31,-41],[-47,13],[-35,11],[-49,9],[-51,27],[-40,-22],[18,-130],[-25,-159],[-60,-80],[-48,-118],[-89,-225],[-59,-141],[-62,-110],[-54,-30],[-51,-113],[-46,-30],[-47,-5],[-99,24],[-100,-2],[-68,27],[-133,-11],[-118,-41],[-210,-105],[-154,-92],[-43,-54],[-24,-52],[-78,-99],[-15,-47],[22,-57],[46,11],[49,5],[-33,-47],[77,-5],[-4,-55],[8,-41],[40,-66],[18,-149],[-32,-119],[-61,-109],[-60,-69],[-37,16],[-23,-96],[-57,6],[-73,-58],[-51,-129],[-69,-146],[-64,15],[-38,-62],[-4,-78],[-42,-12],[-40,49],[-69,-108],[-52,-134],[-68,-200],[16,-59],[-63,-106],[-10,-67],[-36,-62],[41,-48],[21,-90],[18,-74],[-18,-114],[-21,-106],[32,19],[59,102],[63,-19],[12,-72],[-72,-148],[16,-51],[-15,-81],[-35,-46],[-64,-12],[-16,16],[-16,23],[-36,-27],[-15,-7],[-21,30],[-15,36],[-19,37],[-30,18],[-45,-30],[-17,37],[24,34],[12,48],[-16,35],[-60,-12],[0,-68],[-33,34],[-27,7],[-15,-25],[-56,-32],[-40,11],[-55,-31],[-34,-56],[-44,-32],[-43,-48],[-85,-57],[-42,-21],[6,-18],[-39,-5],[-158,-98],[-118,-66],[-84,-51],[-95,-73],[-97,-64],[-394,-297],[-102,-60],[-127,-86],[-217,-78],[-95,-26],[-26,-34],[-72,-9],[-94,3],[-86,29],[-79,-4],[-63,-19],[-63,-6],[-63,2],[-46,11],[-44,-27],[-51,2],[-26,32],[-23,62],[-23,48],[-6,36],[11,55],[-21,37],[-9,39],[9,68],[-32,39],[1,44],[-22,39],[-29,100],[-18,87],[3,69],[27,80],[50,14],[38,64],[82,93],[60,87],[8,41],[26,60],[39,16],[26,-7],[18,39],[31,2],[33,60],[48,59],[47,21],[31,75],[76,92],[54,41],[64,78],[74,59],[64,85],[47,43],[54,103],[22,91],[-14,83],[-3,100],[-34,94],[-27,32],[-38,2],[-57,-27],[-64,27],[-38,51],[-24,23],[-27,41],[-87,-9],[-57,-5],[-76,-25],[-50,11],[-5,39],[32,46],[41,78],[36,64],[19,-3],[33,83],[64,39],[30,9],[42,9],[14,57],[-38,34],[15,53],[38,23],[43,-9],[-8,-46],[-26,-50],[23,-32],[42,18],[41,27],[34,-36],[1,-60],[34,-27],[74,-30],[68,-55],[73,-73],[53,9],[51,62],[38,50],[70,35],[46,18],[33,34],[26,-20],[69,43],[73,7],[40,-32],[13,23],[-19,64],[-5,55],[21,23],[0,45],[43,42],[13,52],[70,172],[74,123],[44,46],[40,18],[16,66],[32,44],[58,-2],[23,-44],[12,-48],[25,12],[50,34],[58,7],[44,-30],[47,-41],[-20,-34],[-16,-48],[-10,-40],[-19,-15],[-12,-35],[30,-48],[52,-57],[87,-59],[66,-7],[44,23],[50,34],[51,23],[43,14],[24,-39],[47,-9],[59,41],[35,68],[41,53],[30,48],[50,71],[24,62],[41,50],[50,85],[53,45],[87,39],[74,7],[90,82],[37,21],[58,39],[56,25],[34,-11],[47,64],[45,29],[41,51],[48,18],[29,41],[26,21],[5,96],[27,73],[-11,43],[-6,80],[23,78],[45,78],[67,78],[59,29],[43,60],[38,16],[36,20],[44,71],[45,21],[6,25],[34,43],[51,53],[70,62],[40,0],[51,41],[50,14],[29,59],[29,66],[50,81],[63,118],[37,21],[33,62],[30,39],[46,41],[38,23],[60,87],[87,73],[62,36],[91,16],[149,58],[209,11],[75,-42],[62,-80],[-13,-88],[42,-22],[110,-31],[27,-85],[-38,-110],[-68,-33],[-52,0]],[[125891,126490],[36,-17],[60,41],[57,12],[28,-2],[19,-28],[17,-23],[47,32],[34,-6],[38,-26],[28,-9],[20,24],[23,11],[39,-13],[51,17],[21,-30],[61,-2],[-7,-58],[17,-54],[37,26],[40,-9],[21,2],[73,19],[24,-10],[36,-32],[12,-65],[7,-79],[-1,-223],[1,-88],[8,-64],[5,-60],[9,-86],[-14,-54],[-39,-71],[-31,-38],[-74,21],[-40,-2],[-33,-28],[-42,-34],[-47,26],[-14,49],[-23,43],[-26,-17],[-40,13],[-29,27],[-53,-2],[-53,35],[-54,-35],[-49,-51],[-60,-39],[-51,-32],[-59,-84],[-67,-154],[-65,-118],[-45,-4],[-57,-5],[-71,37],[-63,49],[-26,95],[9,218],[43,228],[-3,96],[0,90],[-6,88],[13,69],[-36,77],[-11,110],[16,90],[54,60],[15,66],[34,35],[62,83],[56,54],[37,-28],[16,-49],[-13,-41],[14,-32],[27,-11],[37,-30]],[[150395,127237],[14,-119],[62,111],[25,-90],[-34,-85],[-82,-4],[-53,-73],[11,-102],[40,-85],[62,-9],[22,-64],[-51,-85],[-53,-77],[-82,-64],[-65,47],[-29,98],[-11,119],[-6,137],[15,107],[31,81],[48,106],[45,34],[51,22],[40,-5]],[[139630,127270],[18,-21],[70,-54],[12,-86],[-40,-47],[-28,2],[-38,-9],[-5,-44],[-19,-35],[14,-29],[-6,-59],[-5,-63],[-31,-39],[-12,-72],[-34,-26],[-17,-44],[-40,-51],[-20,-49],[16,-2],[35,-27],[13,-32],[27,-56],[-21,-90],[-48,-41],[-51,-2],[-22,31],[-23,34],[-38,-7],[-24,16],[-11,34],[-13,11],[-59,-43],[-43,-27],[-29,-25],[-45,-13],[-18,-59],[-48,-22],[-33,-14],[-15,34],[-26,25],[-48,11],[-27,0],[-12,-50],[-33,57],[-11,52],[-18,13],[-30,16],[-9,25],[11,43],[25,9],[33,59],[5,38],[-15,14],[-23,25],[-3,90],[-3,52],[18,59],[26,56],[9,27],[-29,14],[8,36],[-2,50],[17,9],[16,-18],[3,52],[-1,43],[21,18],[15,29],[4,32],[5,25],[19,-7],[23,4],[23,0],[5,-22],[24,0],[15,-32],[22,-23],[44,-11],[43,39],[14,49],[24,66],[36,63],[51,-9],[-3,-38],[18,-3],[6,32],[18,5],[9,-16],[16,27],[36,16],[31,-5],[26,-22],[24,20],[37,-5],[8,-18],[15,12],[42,38],[48,14],[24,-14],[7,-45]],[[125025,127215],[-42,-9],[-12,39],[-8,52],[62,111],[57,34],[32,-51],[-17,-116],[-72,-60]],[[95128,127970],[-7,-86],[11,-49],[-17,-96],[-25,-25],[-29,-36],[-13,-36],[-71,-60],[-33,-44],[-26,-45],[-42,-22],[-40,-16],[-29,-3],[-36,23],[-11,-23],[7,-27],[-15,-33],[-40,-17],[-27,-1],[-26,-44],[-16,-29],[-39,-25],[-47,-25],[-42,-19],[-77,-108],[-56,-79],[-53,-75],[-99,-46],[-55,-12],[18,-44],[-9,-13],[-29,-36],[-12,44],[-19,-50],[-31,0],[-32,-11],[-28,6],[-29,-61],[-13,31],[-36,-72],[-15,-17],[-33,-2],[-7,30],[8,35],[-12,-13],[-56,-33],[-51,19],[-31,61],[-15,99],[13,74],[40,47],[-13,36],[-13,55],[2,41],[-2,42],[29,33],[39,0],[3,19],[26,36],[9,35],[33,20],[20,33],[-4,33],[0,44],[24,22],[2,36],[4,36],[38,19],[31,11],[-4,27],[20,14],[8,19],[27,28],[29,16],[33,55],[35,17],[7,22],[48,28],[27,5],[26,-8],[16,8],[-4,33],[13,36],[18,-8],[17,2],[-11,31],[31,-3],[33,-22],[-6,-52],[44,11],[37,22],[16,-9],[4,25],[42,8],[14,-19],[20,-11],[42,58],[50,50],[38,5],[18,-19],[35,-14],[33,-44],[25,-33],[31,-19],[37,-33],[44,41],[56,52],[-5,86],[14,2],[24,28],[20,-11],[30,-17],[32,33],[35,3],[5,-30]],[[149925,128052],[-85,-60],[-36,31],[-46,-39],[-2,81],[56,60],[26,25],[59,94],[39,-13],[60,-42],[-88,-82],[17,-55]],[[124633,128301],[40,-35],[59,30],[461,-103],[43,-47],[31,-43],[-31,-64],[-43,-73],[-3,-60],[-42,-99],[-74,-81],[-20,-56],[-85,-133],[-80,-69],[-71,-90],[-51,-17],[-123,30],[-88,9],[-65,-18],[-51,-38],[-32,0],[-31,21],[-26,65],[-59,30],[-23,43],[0,72],[-37,65],[11,60],[-42,26],[2,68],[40,47],[-3,35],[6,86],[9,98],[54,112],[42,26],[57,72],[63,31],[42,-35],[83,-26],[37,61]],[[155100,127772],[-105,-44],[-65,63],[-71,116],[59,152],[-33,145],[-46,67],[-51,73],[65,98],[219,232],[65,-44],[24,-125],[12,-179],[65,-107],[100,-35],[-41,-107],[-24,-134],[-106,-143],[-67,-28]],[[121570,128098],[-86,-102],[-86,19],[-62,56],[-61,27],[-68,-27],[-6,111],[-37,74],[-56,140],[31,130],[80,213],[56,74],[86,28],[98,-9],[43,-93],[-30,-93],[73,-9],[-10,-80],[53,-87],[-61,-74],[73,-58],[25,-54],[-49,-56],[-6,-130]],[[128652,128843],[73,-79],[-10,-51],[-22,-36],[29,-28],[-5,-136],[-17,-68],[-22,-8],[-15,-28],[-50,19],[-51,38],[-19,50],[10,63],[-23,11],[-29,38],[-1,35],[27,16],[18,8],[20,11],[11,31],[-29,3],[4,35],[24,27],[27,-13],[27,14],[23,48]],[[154078,128317],[-100,0],[-30,108],[-101,35],[-65,125],[36,197],[106,89],[125,18],[94,-116],[101,-36],[18,-134],[-36,-241],[-148,-45]],[[131719,126832],[-33,-493],[553,430],[9,-202],[109,-127],[277,139],[109,-228],[487,-63],[402,-266],[521,304],[-26,228],[294,253],[176,-291],[227,-25],[277,481],[-59,835],[17,266],[310,240],[353,-544],[394,-481],[411,139],[210,304],[646,-709],[537,-76],[177,-291],[0,-494],[-517,-63],[-163,127],[-92,-443],[84,-418],[293,51],[311,-431],[-185,-645],[-268,-697],[-244,-291],[17,-304],[243,-76],[588,330],[470,-203],[151,-532],[-378,-506],[-344,-468],[-308,84],[-229,283],[-243,-342],[-269,-570],[109,-430],[59,-456],[-101,-329],[168,-316],[-101,-317],[0,-620],[269,-253],[562,0],[277,-190],[185,-393],[-25,-430],[478,-25],[-84,-583],[-168,-418],[-109,-784],[-185,-595],[-461,12],[-311,271],[269,679],[-159,595],[-563,152],[-327,-13],[-319,-671],[-587,-430],[-428,-342],[-286,215],[-411,-304],[-92,-785],[-579,-405],[-277,140],[235,746],[-219,294],[93,605],[789,456],[218,13],[-8,316],[310,266],[403,38],[84,-203],[176,266],[143,671],[-286,380],[-335,494],[-470,139],[-9,493],[345,520],[310,379],[-59,304],[-260,253],[-193,228],[-156,75],[-255,1520],[-378,418],[-226,873],[-521,317],[-780,-355],[-411,-25],[-361,747],[-873,202],[-303,20],[-469,-437],[-411,-26],[-654,-392],[-470,0],[-219,367],[-50,304],[-163,38],[-424,-557],[-177,-190],[-612,127],[-562,253],[-227,506],[227,279],[25,379],[117,355],[546,456],[159,265],[176,203],[101,392],[327,89],[688,620],[487,380],[151,89],[-58,607],[436,798],[260,88],[327,241],[588,89],[243,-393],[8,-671],[-8,-405],[8,-266],[504,-405],[210,-278],[-185,-545]],[[150980,129609],[42,-68],[-22,-73],[0,-30],[88,1],[30,-82],[-65,4],[-56,-12],[-36,7],[-9,-67],[-37,-51],[-56,-48],[-29,-97],[-42,-26],[45,-60],[34,5],[34,-47],[34,-73],[-46,-76],[-42,4],[-82,55],[-62,47],[-54,13],[-31,43],[25,72],[-73,-17],[-37,73],[37,98],[45,30],[54,72],[-62,-30],[2,77],[65,107],[46,38],[37,103],[-51,-13],[-26,51],[68,64],[54,59],[36,111],[108,39],[82,-26],[-51,-102],[25,-115],[-22,-60]],[[103967,130175],[3,-31],[40,6],[8,-12],[12,-29],[20,-25],[32,-3],[-5,-30],[11,-2],[15,-3],[7,-29],[-29,-37],[7,-19],[7,-33],[-23,-10],[-21,-10],[-14,-24],[-28,-38],[-4,-56],[-13,-29],[-17,-1],[-20,-12],[-32,-21],[-17,-19],[-23,-16],[-17,-31],[4,-51],[-5,-19],[-16,-7],[-15,5],[-15,-10],[4,-31],[-6,-23],[-29,4],[-18,31],[-38,-15],[-12,-44],[-11,-35],[-18,-12],[5,-76],[-24,-32],[-34,-16],[-22,-25],[-45,-5],[-28,15],[-22,23],[-20,-30],[-27,-3],[-12,-9],[13,-40],[40,-25],[-6,-20],[-9,-9],[-37,15],[-43,44],[-30,4],[-31,13],[-38,-20],[-36,-5],[-10,9],[13,32],[16,47],[-24,-7],[-27,16],[-4,35],[24,68],[21,13],[25,27],[54,83],[41,91],[35,46],[37,28],[15,48],[28,43],[5,61],[24,33],[33,45],[25,44],[23,38],[24,24],[29,4],[13,29],[31,20],[23,-17],[19,39],[15,-5],[3,-20],[-2,-22],[14,-3],[4,28],[-7,32],[25,9],[11,28],[66,24],[15,-16],[9,-25],[36,-7]],[[143372,130874],[32,-67],[-67,-116],[32,-40],[-32,-111],[-71,-27],[-53,-53],[-33,-94],[-52,-93],[-7,-125],[-47,-49],[-62,9],[-48,80],[-65,67],[6,89],[57,-27],[41,13],[15,139],[47,98],[26,102],[62,27],[36,138],[62,22],[53,-4],[68,22]],[[112989,130635],[54,-163],[22,29],[37,-13],[19,-36],[-11,-57],[-70,-97],[-8,-80],[19,-115],[30,-45],[-14,-85],[35,-37],[-32,-48],[-40,-74],[-35,-81],[-38,-73],[-38,-122],[22,-57],[-38,-36],[-29,-33],[-38,-61],[-41,-20],[-40,-45],[-40,-81],[-63,-70],[-15,-88],[-25,-37],[-52,-52],[-15,-74],[-31,-7],[-17,-78],[-38,-81],[-43,-61],[-33,-53],[14,-61],[-89,-203],[-73,-20],[-62,61],[-79,-75],[-20,-59],[-30,-17],[-37,10],[-19,-54],[-38,32],[-32,57],[-103,53],[-62,77],[-45,16],[-25,16],[3,78],[5,57],[49,85],[-54,20],[30,211],[105,268],[137,118],[143,37],[105,65],[102,16],[70,81],[86,163],[43,166],[-27,159],[-29,182],[24,199],[124,293],[51,49],[57,65],[64,89],[54,53],[43,-45],[67,-49],[52,-28],[21,-61],[-19,-73]],[[146729,131402],[32,-25],[46,55],[41,-37],[45,-62],[28,-128],[-73,-97],[-71,-64],[-26,6],[-22,38],[-47,-69],[15,-20],[4,-39],[-26,4],[-32,23],[-17,-23],[-30,33],[1,53],[34,64],[29,56],[32,13],[33,84],[-22,35],[-31,13],[10,69],[9,68],[39,-2],[-1,-48]],[[124417,131683],[74,-130],[55,-9],[96,-24],[55,-78],[16,-98],[-56,-274],[-92,-186],[-28,-148],[3,-186],[74,-9],[0,-126],[-31,-106],[-49,-93],[-55,-98],[-90,-111],[-68,-126],[1,-157],[-25,-117],[-40,-83],[19,-74],[-62,-149],[-102,-144],[-70,-42],[-53,5],[-95,-19],[-52,-69],[-53,-84],[-120,-111],[-55,14],[-59,-24],[-34,-23],[-67,23],[-83,5],[-28,0],[-25,46],[-70,70],[-28,47],[-3,97],[-90,-97],[-9,69],[28,102],[28,103],[-16,83],[19,84],[37,88],[40,37],[101,60],[37,89],[86,92],[10,56],[24,144],[22,139],[12,177],[31,144],[55,139],[50,139],[0,38],[-22,111],[-3,200],[6,153],[37,102],[15,51],[62,93],[-15,46],[73,70],[40,-19],[56,56],[120,70],[86,42],[126,27],[56,-37],[98,-60]],[[141686,131747],[26,-49],[30,67],[53,-27],[-3,-35],[-24,-54],[54,-49],[65,9],[47,-36],[83,-31],[29,27],[38,18],[30,-36],[-56,-36],[47,9],[53,-40],[48,-4],[47,-22],[47,17],[35,-40],[60,27],[41,49],[6,-40],[26,-62],[98,-23],[18,-84],[-21,-67],[-53,18],[-15,-76],[-36,-62],[24,-130],[-41,-49],[-47,-93],[-27,-31],[-103,-5],[-119,18],[-85,-22],[-108,-8],[-43,-50],[-145,40],[-73,31],[-71,98],[-86,22],[-32,58],[-39,174],[-94,161],[-65,-5],[-21,49],[18,85],[44,129],[92,147],[76,35],[62,40],[57,-26],[53,-36]],[[155338,131209],[-88,-134],[-101,-62],[-83,-72],[-35,36],[-18,134],[-101,-71],[-77,35],[-82,36],[-48,143],[77,107],[53,-63],[30,-151],[71,44],[118,36],[-29,107],[136,188],[106,98],[65,151],[125,99],[0,-438],[-119,-223]],[[115270,131992],[12,-17],[-3,-30],[15,-14],[17,0],[35,-35],[3,-19],[-2,-31],[-13,-25],[2,-6],[17,16],[10,-20],[-15,-11],[-2,-19],[11,4],[13,-12],[1,-30],[27,-37],[22,-29],[26,-10],[0,-36],[-32,-1],[-4,-19],[-37,-26],[-14,-10],[-19,-36],[-21,-12],[-25,-10],[-25,-3],[-13,-9],[-29,15],[-11,20],[-6,0],[-2,-9],[-22,-13],[-18,-4],[-18,16],[-2,16],[-10,-5],[-22,12],[-28,-9],[-17,16],[-6,30],[2,33],[5,31],[11,7],[14,30],[26,45],[-5,14],[-29,5],[-11,9],[-5,16],[2,25],[15,35],[5,63],[8,39],[11,20],[9,28],[20,16],[-12,2],[4,22],[18,22],[18,1],[11,-6],[5,-10],[-1,-22],[0,-18],[13,-5],[15,22],[2,16],[10,21],[11,20],[15,-3],[19,-21],[-1,-26],[0,-29]],[[147262,132241],[22,-9],[16,33],[12,-15],[28,-35],[11,-45],[30,-22],[36,-68],[15,-40],[-26,-42],[35,2],[9,29],[33,-51],[-20,-40],[23,-15],[32,50],[15,-17],[0,-18],[-28,-19],[12,-23],[23,3],[15,24],[13,-15],[-12,-32],[12,-17],[13,35],[15,-17],[9,-36],[21,26],[10,-10],[-4,-47],[20,-25],[32,-41],[3,-24],[-27,-7],[-13,29],[-26,-22],[-16,-62],[-31,-122],[-10,-68],[-27,-93],[-19,-73],[-19,-73],[-25,-56],[3,-59],[-19,-66],[-36,-42],[-40,-13],[-36,26],[-19,69],[13,79],[-27,153],[-20,84],[4,66],[27,35],[13,51],[-27,93],[2,93],[19,99],[6,58],[-54,20],[-28,39],[-49,16],[-16,53],[-3,55],[15,9],[-4,33],[6,40],[21,-13],[24,15],[3,42],[-12,29],[0,28],[21,3],[1,-27]],[[153954,132280],[0,-152],[0,-151],[-71,-36],[47,-98],[91,2],[28,-181],[53,-44],[-30,-125],[-89,-36],[-106,-89],[-71,35],[-41,99],[-60,-44],[-47,-153],[-59,-53],[-118,-89],[-89,-18],[-5,-138],[-54,-121],[-59,62],[-113,-89],[-65,80],[-47,116],[-113,99],[-83,62],[30,134],[24,152],[47,125],[83,142],[71,0],[207,-35],[189,-36],[65,-18],[6,-125],[83,89],[89,27],[-24,72],[53,116],[-106,169],[0,170],[136,62],[24,-53],[124,71]],[[157758,131789],[-77,-27],[-71,36],[-24,89],[71,99],[-23,107],[83,62],[23,125],[71,63],[77,-81],[-23,-232],[-107,-241]],[[142014,132843],[0,-120],[-27,-89],[-50,-85],[-68,-40],[-50,-45],[-56,-26],[-33,31],[-29,49],[20,76],[44,75],[51,58],[56,5],[-6,58],[38,22],[39,-54],[50,81],[21,4]],[[145183,134541],[67,-54],[0,-74],[-25,-68],[-50,-135],[-6,-66],[-52,-99],[-37,-120],[-41,-93],[-38,-21],[-33,-14],[-25,35],[-50,22],[-41,-15],[-40,24],[-14,76],[11,106],[32,43],[8,115],[32,128],[33,90],[31,49],[37,29],[62,-3],[37,31],[22,3],[-2,101],[55,9],[11,-94],[16,-5]],[[155818,134886],[47,-71],[83,0],[41,-72],[-18,-160],[-88,-90],[-48,81],[-25,153],[-117,-10],[-12,125],[71,98],[66,-54]],[[144630,134902],[-41,-66],[-53,26],[-22,26],[-50,0],[-1,43],[-43,35],[-20,12],[23,76],[46,56],[66,125],[50,86],[58,47],[11,-99],[-27,-122],[-5,-67],[10,-97],[-2,-81]],[[117916,135784],[4,-44],[-15,-37],[-12,-58],[-19,-5],[-43,43],[-14,43],[8,53],[17,20],[21,-21],[34,36],[19,-30]],[[117803,135906],[-21,-9],[-20,15],[4,32],[20,18],[39,-3],[-6,-42],[-16,-11]],[[117813,136160],[-27,0],[-3,16],[11,24],[26,1],[10,-21],[-17,-20]],[[157959,136457],[71,-36],[119,18],[100,-62],[53,-81],[-59,-151],[-94,-188],[-89,-27],[-113,-71],[-130,-80],[-83,-9],[-23,80],[-18,80],[-95,-160],[-65,27],[18,124],[12,99],[-30,80],[24,89],[59,107],[101,134],[136,54],[106,-27]],[[132438,137109],[19,-25],[13,-55],[-6,-49],[-47,-58],[-40,-61],[-31,-43],[-17,-44],[-36,-12],[-44,6],[-32,47],[-27,-16],[-26,12],[-8,83],[4,92],[29,37],[33,4],[21,20],[42,35],[68,11],[24,-4],[14,26],[47,-6]],[[132319,137247],[28,-15],[24,9],[28,-13],[-4,-41],[-15,-29],[-34,-16],[-40,6],[-27,25],[-4,24],[13,41],[31,9]],[[132143,137540],[-17,-41],[-16,2],[-21,33],[-34,-4],[-20,31],[31,45],[-3,62],[8,92],[44,25],[62,2],[71,16],[27,-43],[27,0],[12,-10],[-3,-25],[-32,-14],[-23,-41],[-34,-41],[-36,-18],[-17,-54],[-26,-17]],[[149392,137677],[-2,-36],[-33,-30],[-11,-61],[-20,-32],[-32,-7],[-15,28],[-14,80],[15,32],[31,-2],[19,66],[25,28],[34,2],[48,63],[28,-10],[-26,-78],[-18,-26],[-29,-17]],[[149439,137847],[-14,-16],[-28,12],[-24,-25],[-31,-13],[-1,24],[38,37],[39,45],[17,-27],[4,-37]],[[149651,137986],[-5,-28],[-17,4],[-12,26],[26,15],[8,-17]],[[149314,137821],[-28,-19],[-21,12],[1,74],[6,45],[20,48],[18,35],[27,-5],[18,-6],[2,-35],[-12,-37],[1,-52],[-32,-60]],[[149544,138125],[-6,-42],[-24,8],[-9,-6],[-17,-66],[-30,-10],[-22,-39],[-24,-16],[-7,31],[-20,-7],[6,33],[8,63],[9,64],[25,23],[46,4],[21,52],[31,-8],[15,-33],[-2,-51]],[[149427,138205],[-23,-7],[-17,5],[2,30],[21,37],[-10,36],[8,25],[27,-4],[17,-41],[-3,-68],[-22,-13]],[[149422,138424],[-21,-65],[-19,-52],[-12,-59],[-19,-11],[-7,21],[-15,-45],[-11,-78],[-23,5],[-4,63],[-2,47],[2,51],[27,7],[1,25],[24,23],[2,38],[19,25],[1,-27],[9,36],[3,51],[18,4],[21,-10],[6,-49]],[[147956,138663],[24,-33],[48,-1],[7,-61],[-8,-90],[-68,-134],[-76,-76],[-56,-58],[-34,-34],[-36,-23],[-33,-16],[13,-28],[-14,-25],[-20,-9],[21,-28],[3,-55],[22,38],[41,38],[-5,56],[18,15],[35,-10],[5,-30],[-14,-83],[-14,-12],[-33,-57],[-49,-66],[-28,-28],[9,-23],[20,11],[23,43],[30,-3],[38,3],[18,-41],[-10,-46],[-22,-33],[-29,23],[-30,-21],[-32,-16],[-22,13],[-25,17],[11,40],[-34,-5],[-23,17],[24,38],[4,59],[8,123],[-13,59],[-49,87],[-16,120],[3,49],[28,49],[-22,-11],[-17,34],[50,65],[35,22],[30,-5],[26,28],[16,31],[17,4],[11,24],[29,33],[32,36],[29,-21],[36,-3],[45,30],[23,-20]],[[128676,139038],[-4,-41],[25,16],[25,-6],[-3,-30],[37,4],[65,53],[33,4],[14,-27],[27,-44],[9,-57],[-19,-58],[-43,-53],[-23,-35],[-42,-30],[-30,-18],[-41,8],[-26,10],[-32,35],[-32,-13],[-37,29],[-21,42],[-37,-12],[-12,34],[3,51],[-26,30],[-36,15],[2,42],[27,31],[58,66],[77,39],[33,-65],[29,-20]],[[118834,140210],[22,-45],[-4,-24],[0,-31],[-14,-22],[-17,-16],[-27,4],[-3,-11],[-18,-1],[-16,15],[-17,9],[-17,9],[-2,20],[21,20],[-5,13],[1,15],[19,23],[23,17],[10,-14],[5,17],[39,2]],[[118739,140401],[14,-5],[8,0],[5,-37],[-10,-10],[7,-5],[24,8],[5,-9],[-1,-13],[11,-23],[-6,-18],[-23,-13],[-12,-30],[-13,13],[-16,20],[6,19],[-13,20],[-21,4],[-12,19],[13,22],[2,25],[11,10],[21,3]],[[118508,140645],[-7,-7],[-12,9],[-33,7],[-11,16],[3,40],[20,34],[31,39],[37,28],[21,-25],[-7,-29],[-21,-59],[-22,-32],[1,-21]],[[118752,143272],[-50,-17],[-35,2],[-31,30],[-29,31],[-14,54],[11,76],[4,68],[24,48],[22,65],[43,48],[67,94],[69,41],[73,22],[12,-40],[18,-17],[31,-31],[32,-34],[-17,-92],[-52,-78],[-10,-72],[-20,-63],[-29,-50],[-57,-44],[-62,-41]],[[124586,143949],[-59,-62],[-101,20],[-68,62],[-23,152],[41,34],[82,-55],[101,-55],[27,-96]],[[136682,144075],[-25,-26],[-72,4],[-68,-7],[-101,-11],[-53,-15],[-10,48],[12,17],[14,107],[37,72],[69,96],[53,23],[46,14],[43,-7],[43,-35],[26,-37],[11,-46],[-3,-76],[0,-48],[-8,-49],[-14,-24]],[[122505,143845],[77,-27],[146,179],[64,83],[156,-7],[109,-76],[50,-110],[-13,-172],[-124,-138],[-68,-103],[-91,-138],[-92,-124],[81,-142],[29,-92],[-37,-172],[-91,-62],[-155,14],[-82,137],[-69,165],[0,159],[0,124],[14,131],[-28,41],[-59,-14],[-68,55],[-73,69],[-60,-14],[-137,-48],[-82,28],[-23,89],[-105,83],[9,165],[92,310],[205,220],[174,69],[114,-48],[36,-117],[-64,-158],[64,-283],[101,-76]],[[123824,145498],[119,-62],[82,14],[91,-48],[114,-35],[160,-137],[4,-159],[-59,-158],[78,-90],[-14,-206],[-68,-145],[-133,-131],[-82,-48],[-18,96],[-37,35],[-86,0],[-83,27],[-91,14],[-91,0],[-123,48],[-133,49],[-82,103],[-41,165],[-18,117],[59,104],[27,89],[96,55],[128,117],[50,124],[151,62]],[[121217,145677],[46,-103],[78,-179],[96,-83],[210,152],[109,27],[101,7],[301,145],[73,-166],[-110,-192],[-32,-35],[-89,-167],[39,-81],[9,-110],[-50,-220],[-59,-145],[-69,-179],[-91,-62],[-137,-131],[-100,-34],[-169,0],[-151,-55],[-123,-41],[-69,27],[-86,152],[-14,110],[0,96],[23,124],[54,131],[-18,138],[-59,82],[-37,117],[46,179],[27,159],[23,96],[55,103],[-23,76],[-59,7],[-123,-7],[-174,41],[-132,152],[-105,69],[-41,48],[18,124],[-69,55],[-114,69],[-36,131],[45,165],[-22,158],[-41,110],[119,224],[158,90],[248,150],[218,45],[119,-150],[69,-55],[68,-56],[32,-213],[15,-169],[40,-106],[5,-303],[-28,-159],[-32,-220],[18,-138]],[[139470,147251],[40,-21],[33,-53],[19,-106],[-37,-130],[-25,-36],[5,-57],[60,-61],[-10,-36],[-65,35],[-7,-54],[-36,-52],[-60,-19],[-58,-28],[-36,7],[-80,38],[-28,64],[8,56],[-8,45],[-5,64],[6,109],[-1,60],[8,40],[32,33],[22,40],[44,10],[7,21],[45,26],[80,-2],[47,7]],[[134911,147649],[19,-44],[19,15],[51,-5],[27,-25],[-15,-9],[-23,-33],[0,-34],[24,-42],[-4,-23],[-20,2],[-29,4],[-29,-2],[-41,-13],[-21,-57],[-40,-61],[-35,-48],[-22,-24],[-10,-28],[-72,-99],[-65,-83],[-54,-91],[-47,-71],[-73,-114],[-33,-63],[-66,-74],[-111,-127],[-59,-45],[-99,-63],[-124,-47],[-106,10],[-31,29],[-12,71],[21,74],[53,45],[51,63],[6,40],[-13,2],[-32,-15],[-15,20],[17,30],[39,50],[43,40],[35,38],[21,44],[54,41],[12,59],[36,24],[33,67],[39,43],[65,70],[32,46],[39,41],[42,46],[13,4],[14,35],[28,15],[48,17],[5,31],[19,0],[0,-18],[13,-2],[39,3],[40,-12],[9,16],[86,65],[109,80],[31,26],[41,77],[26,0],[2,-11]],[[121615,147888],[118,-97],[-18,-103],[-32,-117],[-87,-35],[-82,55],[-105,-6],[-96,62],[-64,-7],[-132,-124],[-91,-21],[-69,0],[-59,34],[-27,131],[-5,124],[41,104],[87,13],[36,-69],[87,-6],[73,27],[151,28],[36,151],[46,-21],[123,-55],[69,-68]],[[137064,148951],[21,-18],[0,35],[23,3],[17,-35],[54,-26],[44,-87],[31,-23],[-17,-43],[-48,-81],[-140,-197],[11,-50],[-52,-124],[-10,-102],[-55,-152],[-25,-157],[-57,-107],[-4,-63],[-50,-61],[-140,-200],[-59,-26],[-37,-84],[-59,-72],[-41,-12],[-50,35],[-51,40],[-89,6],[-38,-29],[-42,3],[-138,-202],[-77,-61],[-82,-89],[-143,-201],[-48,-34],[-19,-26],[-10,-150],[-32,-47],[-48,-6],[-71,0],[-42,-3],[-106,-26],[-92,29],[-40,-12],[-19,44],[15,49],[-25,133],[-7,125],[-43,29],[45,133],[48,-9],[84,93],[23,63],[88,18],[87,-26],[69,-73],[72,58],[37,84],[0,84],[36,14],[2,-43],[25,12],[6,37],[15,21],[0,66],[31,72],[58,96],[17,122],[-39,95],[-10,68],[-36,-25],[-19,61],[23,67],[81,32],[54,5],[57,50],[63,2],[60,21],[44,46],[36,119],[70,69],[84,104],[77,84],[73,49],[51,41],[-38,49],[42,44],[48,40],[54,38],[25,92],[54,21],[103,66],[83,38],[51,8],[41,0],[15,-31]],[[142227,148999],[-73,-5],[-92,59],[-40,130],[33,45],[46,35],[-26,129],[33,95],[46,20],[96,249],[69,129],[66,95],[93,-20],[63,-90],[-33,-179],[-76,-174],[-76,-249],[-56,-140],[-73,-129]],[[122691,150134],[-1,-31],[4,-43],[8,-24],[11,-16],[5,-17],[-12,-15],[-8,-39],[-27,-1],[-25,-13],[-17,25],[-20,1],[-30,-33],[-20,-7],[-21,-21],[-28,-24],[-35,-40],[-34,-8],[-26,-7],[-24,4],[-5,33],[2,29],[-4,7],[-23,-3],[-20,21],[1,31],[16,26],[24,52],[3,29],[87,62],[40,3],[16,-28],[47,23],[15,19],[28,-7],[8,18],[20,9],[15,0],[20,25],[12,-4],[-2,-36]],[[123979,150759],[46,-117],[-5,-172],[60,-83],[91,-117],[13,-117],[46,-28],[64,-68],[169,103],[183,55],[109,-41],[82,27],[160,-62],[87,-103],[0,-138],[-64,-158],[-91,-131],[-10,-76],[41,-34],[197,62],[132,41],[78,55],[86,-34],[96,20],[82,-41],[96,-27],[28,-83],[-50,-69],[-192,-34],[-37,-90],[-104,-254],[-124,-145],[-50,-124],[-155,-110],[-190,-140],[-75,-81],[64,-75],[55,-111],[-12,-189],[-52,-86],[22,-83],[-44,-329],[-65,-132],[-73,-76],[-151,0],[-82,76],[-164,193],[-55,131],[55,179],[9,137],[14,234],[4,186],[-55,83],[-105,41],[-132,28],[-114,-55],[-69,-110],[-54,-83],[-32,-83],[23,-69],[-37,-151],[-68,-110],[-55,-138],[-32,-165],[-36,-97],[-97,-82],[-77,-117],[-110,-97],[-86,-20],[-60,41],[-36,83],[50,89],[9,179],[-41,62],[-50,227],[-55,145],[-59,138],[-66,35],[-99,-42],[-118,7],[-78,110],[-55,138],[23,130],[105,200],[91,28],[60,75],[50,97],[14,103],[-96,207],[-5,137],[105,221],[110,124],[182,48],[41,172],[96,96],[0,117],[46,186],[119,104],[54,-35],[142,104],[68,103],[87,76],[-27,-117],[36,34],[101,96],[68,-34]],[[139700,150759],[35,-156],[30,23],[43,-58],[-12,-49],[73,-95],[38,-55],[-2,-44],[-9,-46],[36,-58],[25,-6],[4,-72],[-13,-38],[-4,-49],[-19,-35],[-35,-2],[-21,20],[2,-93],[-21,-107],[-37,-78],[-96,-153],[-65,-67],[-61,-43],[-27,-38],[-56,-23],[-38,-15],[-35,24],[-4,49],[-3,49],[9,98],[-29,41],[-15,98],[-34,61],[-39,32],[-29,20],[-7,52],[-12,75],[-40,38],[-15,81],[71,165],[-68,81],[-26,6],[-8,26],[21,40],[52,32],[38,35],[44,49],[-4,78],[47,81],[67,9],[19,67],[21,55],[54,69],[67,58],[57,0],[56,-9],[-4,-72],[6,-29],[-27,-122]],[[138108,150215],[-21,-52],[-35,6],[-94,-58],[-15,-60],[-21,-41],[-37,6],[-40,-29],[-58,-23],[-49,4],[-20,-30],[-44,-29],[6,-35],[50,-70],[-60,-49],[-15,18],[-54,52],[-38,-6],[-60,-52],[-38,34],[-6,76],[18,55],[38,3],[17,-61],[44,3],[12,124],[36,87],[39,75],[2,73],[-2,101],[27,78],[-4,43],[25,76],[82,78],[86,136],[127,142],[178,179],[104,64],[113,11],[71,-63],[62,-18],[19,-43],[-48,-93],[-23,-92],[-35,-41],[-32,-64],[19,-40],[13,-35],[-27,-46],[-53,-84],[-98,-87],[-60,-81],[-59,-98],[-42,-44]],[[126728,151247],[-15,-31],[-33,20],[-43,-32],[-45,-17],[-25,10],[-1,37],[-3,49],[29,52],[60,10],[39,-31],[32,-31],[5,-36]],[[131013,151439],[-26,-194],[-82,-101],[-103,-15],[-139,-233],[-134,-93],[-139,-78],[-118,78],[36,202],[123,194],[98,116],[67,-54],[82,116],[-15,179],[123,116],[75,43],[100,-51],[52,-225]],[[142801,152385],[14,-54],[52,14],[50,-29],[-46,-75],[6,-65],[-102,-119],[-99,-30],[-89,41],[-116,-71],[-89,45],[-46,59],[69,70],[73,-50],[-30,70],[56,85],[106,60],[129,-20],[6,44],[56,25]],[[127425,152531],[53,-8],[31,-20],[40,-14],[43,-35],[33,-39],[36,-21],[40,-12],[21,-47],[15,-39],[-4,-41],[-14,-45],[11,-41],[-7,-77],[-32,-97],[-17,-59],[-20,-55],[-46,-68],[-48,-34],[-29,-25],[-63,-41],[-68,-41],[-50,-26],[-34,-43],[-45,-25],[-47,14],[-58,19],[-42,35],[-36,14],[-43,33],[-39,43],[-44,20],[-41,27],[-40,36],[-38,11],[-21,30],[-6,43],[19,51],[-4,35],[-15,31],[-4,-10],[-40,-6],[-35,26],[-14,35],[-13,55],[11,43],[30,45],[23,-6],[43,27],[46,-2],[42,20],[12,29],[-6,39],[17,16],[11,-12],[48,45],[5,32],[30,27],[42,23],[4,53],[11,16],[34,12],[32,-8],[38,10],[63,11],[34,-15],[38,9],[19,43],[13,10],[29,-27],[31,-4],[15,-25]],[[146012,153576],[63,-74],[78,40],[25,-24],[-90,-87],[24,-43],[-14,-47],[-64,-74],[-45,-34],[-76,-12],[-49,-34],[-47,22],[-49,46],[-31,37],[0,65],[37,46],[-31,34],[15,37],[47,-52],[8,28],[39,61],[47,56],[6,192],[19,3],[53,-3],[45,-19],[49,-40],[-63,-71],[4,-53]],[[120812,153526],[-59,-373],[0,-105],[-60,-195],[-198,-44],[-298,-15],[-119,-75],[-208,-90],[-257,-224],[-179,-180],[54,-191],[-14,-93],[-109,-149],[-169,-75],[-168,-75],[-248,-60],[-208,-89],[-218,15],[-119,104],[-119,165],[89,389],[-188,44],[0,210],[19,269],[-19,149],[148,285],[70,209],[277,194],[238,75],[188,30],[100,-45],[188,-75],[228,-149],[248,60],[42,135],[42,135],[40,126],[124,396],[128,90],[209,60],[228,-75],[138,-179],[109,-180],[70,-105],[20,-119],[-40,-180]],[[132582,154365],[66,-116],[65,-74],[13,-101],[-3,-101],[-5,-105],[-44,-97],[-28,-85],[-26,-62],[-59,-66],[-72,-132],[-46,-62],[-83,-89],[-84,-58],[-139,-74],[-103,-62],[-129,-58],[-80,-43],[-79,-27],[-65,-59],[-85,-42],[-59,8],[-54,-35],[-36,23],[26,78],[-8,54],[26,105],[28,101],[49,23],[31,62],[64,77],[41,109],[44,128],[46,101],[47,82],[26,50],[56,89],[103,194],[77,148],[77,70],[57,-8],[67,39],[77,77],[139,0],[62,-62]],[[146901,154455],[49,-45],[39,-124],[-23,-79],[-25,-58],[18,-30],[-16,-26],[-26,29],[-21,-34],[-53,-48],[-66,-10],[-65,21],[-25,68],[7,106],[16,85],[-16,50],[-31,8],[-2,42],[28,8],[9,27],[38,16],[51,-16],[12,23],[37,-10],[65,-3]],[[145446,154701],[29,-37],[64,7],[55,-31],[16,-44],[72,25],[22,-37],[-81,-77],[53,12],[2,-37],[-39,-56],[-39,-92],[-39,-47],[-100,-123],[-113,-121],[-76,-12],[-106,-40],[-84,-16],[-72,31],[-23,74],[11,167],[-9,46],[-32,28],[34,53],[11,25],[55,80],[31,37],[35,28],[79,49],[44,50],[55,-22],[98,34],[47,46]],[[133777,155588],[51,-26],[31,-37],[15,-39],[-3,-42],[-1,-49],[-5,-85],[-22,-72],[-23,-110],[-38,-78],[-34,-58],[-35,-57],[-42,-24],[-69,-3],[-56,52],[-29,54],[-30,12],[-15,31],[14,29],[-1,20],[-17,5],[-8,63],[7,37],[-11,36],[-23,33],[5,27],[19,-8],[16,7],[-6,23],[10,22],[6,32],[-20,10],[4,24],[18,16],[25,-3],[25,28],[38,31],[31,43],[39,26],[44,24],[46,-3],[44,9]],[[139507,156112],[12,-2],[23,9],[-2,-23],[15,-26],[-1,-32],[30,-10],[6,-17],[-16,-30],[6,-116],[-13,-43],[24,-2],[5,-44],[-18,-12],[-8,-18],[20,-2],[0,-49],[-22,-11],[-33,-24],[-23,-33],[-11,8],[-24,-10],[0,-27],[-19,-21],[-35,-26],[-25,-33],[-27,-17],[2,-38],[-13,-21],[15,-14],[-17,-23],[-15,0],[-13,17],[-21,-4],[-15,26],[-34,-19],[-38,8],[-41,36],[-30,-1],[-8,-15],[-27,-6],[-19,23],[2,51],[-2,57],[-2,47],[20,21],[35,55],[15,44],[26,77],[32,53],[58,86],[39,42],[61,89],[91,27],[16,22],[15,-7],[4,-22]],[[122423,156235],[63,-28],[68,15],[40,-21],[23,-31],[0,-52],[80,3],[26,40],[88,-56],[-29,-34],[33,10],[68,3],[26,-37],[-14,-40],[6,-54],[29,-17],[4,-47],[-53,-70],[-47,-56],[-50,-37],[-51,-12],[-61,3],[-35,-13],[-34,-3],[-49,19],[-45,-28],[-35,-28],[-35,-12],[-43,12],[-59,22],[-78,-6],[-53,28],[-27,37],[13,33],[41,37],[61,31],[27,40],[32,56],[10,31],[-43,-6],[-28,-41],[-37,-15],[-51,0],[-12,49],[47,50],[12,40],[49,68],[55,71],[68,46]],[[139381,156512],[-40,-57],[-37,-111],[-29,-30],[13,-15],[-7,-57],[-24,17],[-6,-35],[-31,-65],[-24,-45],[-33,-13],[-45,-65],[-75,-35],[-34,-37],[-12,-28],[-47,47],[-30,0],[-76,-10],[-10,-42],[-20,2],[-36,25],[-69,-10],[-31,-20],[-20,5],[0,58],[-22,17],[-3,38],[10,55],[-27,-2],[-5,22],[63,55],[69,61],[59,82],[27,38],[25,10],[10,15],[15,60],[27,48],[24,-3],[25,15],[15,41],[27,25],[0,60],[12,42],[36,73],[37,23],[20,42],[48,53],[22,48],[29,30],[50,-13],[29,-37],[16,-51],[22,-45],[30,-5],[58,-70],[-7,-105],[-18,-101]],[[144832,156448],[-7,-37],[-28,0],[16,-77],[-8,-90],[-176,-235],[-72,-87],[-37,-9],[-41,25],[15,28],[-226,250],[-22,68],[8,118],[33,117],[30,167],[17,90],[65,71],[68,71],[63,15],[82,9],[74,16],[55,-173],[56,-87],[12,-136],[-6,-96],[29,-18]],[[138372,157011],[0,-54],[-29,-4],[-20,-5],[-28,-164],[-29,-123],[-20,-141],[3,-72],[27,-37],[-6,-50],[3,-52],[-20,-14],[11,-9],[78,-102],[49,4],[1,-20],[10,7],[22,-34],[33,-43],[-18,-59],[-27,-44],[-36,-56],[-14,-62],[-35,-11],[-38,-11],[-14,-16],[-22,-16],[-28,9],[-17,-28],[-23,-24],[-39,0],[-39,-35],[-18,-93],[-18,-27],[-20,-2],[-26,20],[-36,2],[-20,-31],[-26,-23],[-1,-32],[12,-27],[6,-41],[-36,-66],[-26,-20],[-46,-1],[-39,-63],[-49,-46],[-58,-16],[-13,14],[38,68],[41,53],[43,72],[-8,60],[34,66],[43,45],[37,23],[9,65],[0,28],[-21,-7],[-39,-45],[-23,-5],[-21,23],[64,77],[-21,14],[-38,-26],[-39,-54],[-28,-9],[-24,20],[-23,-49],[-16,-7],[-12,31],[-48,-20],[-54,-34],[-57,-48],[-70,-66],[3,-29],[-12,-21],[-63,-68],[-56,-70],[-47,-55],[-65,-75],[-79,-68],[-75,-46],[-50,-43],[-67,-20],[-70,20],[-58,12],[-34,16],[-7,36],[-23,27],[19,48],[8,54],[-10,121],[-13,54],[-4,82],[5,91],[-34,43],[-23,37],[8,38],[-13,59],[-40,18],[-7,25],[9,50],[45,21],[0,50],[29,54],[14,82],[88,89],[97,82],[109,79],[61,21],[52,29],[33,42],[71,29],[74,43],[14,14],[40,39],[-9,25],[-3,47],[36,14],[5,-36],[-3,-28],[62,21],[14,29],[47,28],[67,25],[47,4],[33,18],[33,7],[69,14],[31,4],[33,21],[33,-28],[31,14],[33,39],[9,32],[26,33],[-21,21],[24,14],[26,7],[-3,33],[29,35],[38,-10],[26,32],[49,28],[62,-14],[59,32],[45,47],[38,-40],[17,-35]],[[124996,157411],[-75,-124],[-51,-54],[-72,7],[-62,62],[-95,-3],[-15,97],[18,174],[25,155],[8,78],[-28,62],[-3,62],[59,78],[29,81],[46,62],[13,59],[2,54],[98,58],[108,-4],[70,-42],[51,-8],[49,-117],[8,-73],[-15,-109],[22,-74],[13,-128],[-33,-81],[-52,-89],[-51,-59],[-67,-124]],[[136840,159710],[41,-11],[59,-61],[17,-71],[-68,-76],[-3,-41],[-40,-30],[1,-52],[-29,-34],[-15,-37],[-40,-69],[-22,-50],[9,-37],[-3,-105],[-2,-13],[-10,-72],[-21,-39],[-27,-50],[-49,-36],[-72,-31],[-60,-15],[-49,-13],[-54,-24],[-49,0],[-39,-26],[-24,-8],[-26,13],[25,37],[27,4],[17,58],[2,74],[30,52],[61,67],[20,17],[-11,28],[4,13],[-8,33],[-15,-22],[-31,4],[-12,37],[4,39],[26,49],[32,46],[40,28],[24,35],[33,34],[32,28],[28,33],[-1,28],[-39,0],[-51,-13],[-20,15],[-7,35],[18,28],[35,-5],[20,20],[18,32],[26,30],[14,26],[-3,50],[36,33],[30,21],[46,-13],[66,20],[43,13],[16,-26]],[[140939,159114],[-54,-18],[-34,18],[-117,-6],[-60,6],[-73,-15],[-46,3],[-54,-55],[-42,-72],[-30,-19],[-39,-45],[-64,-49],[-42,-33],[-58,-36],[-49,-22],[-46,6],[-46,28],[-8,36],[6,61],[10,48],[-14,28],[0,66],[12,106],[28,67],[-2,33],[4,73],[12,49],[32,27],[32,67],[55,57],[42,16],[54,42],[44,33],[10,58],[35,21],[36,100],[24,64],[8,60],[48,140],[6,130],[18,119],[26,103],[23,60],[26,25],[2,45],[-28,33],[-27,73],[10,100],[23,61],[6,76],[20,51],[-12,52],[2,54],[22,49],[-16,73],[-18,75],[16,119],[-34,57],[-19,58],[0,67],[17,78],[48,73],[84,67],[60,42],[133,6],[160,-90],[45,-53],[68,-81],[4,-77],[-23,-112],[11,-90],[4,-102],[-12,-124],[-29,-146],[-11,-114],[33,-153],[-12,-137],[-35,-120],[8,-53],[-8,-58],[-30,-42],[14,-10],[4,-35],[-21,-117],[9,-87],[-8,-94],[-42,-73],[8,-115],[24,-40],[6,-78],[-9,-92],[7,-96],[-22,-63],[-36,-67],[-35,-100],[-40,-64],[-34,-6]],[[139989,166727],[78,-258],[194,-78],[63,-34],[19,-58],[34,-14],[12,14],[65,-31],[7,14],[65,-61],[23,-22],[23,-72],[34,-66],[6,-52],[28,-5],[21,-23],[6,-67],[19,-22],[9,-38],[-2,-106],[-1,-72],[-16,-80],[-3,-112],[-21,-55],[-10,-75],[-27,-160],[8,-69],[-11,-101],[-29,-34],[-40,-118],[-51,-129],[-59,-118],[-19,-69],[-58,-78],[-26,-66],[-86,-60],[-46,-69],[-47,-69],[-59,-34],[-54,-38],[-34,-57],[-53,-72],[-15,-78],[-76,-83],[-50,-23],[-63,-27],[-6,-62],[-43,-40],[-59,-40],[-65,-17],[-53,2],[-23,-34],[7,-63],[-30,-3],[-72,3],[-50,-43],[-23,-41],[-44,3],[-62,-23],[-79,0],[-70,26],[-86,60],[-13,46],[-51,95],[-52,95],[-55,86],[-48,63],[-22,78],[-18,46],[-9,72],[-4,66],[-9,46],[30,20],[-19,20],[-15,40],[0,89],[15,86],[-25,61],[-26,100],[7,55],[25,43],[4,31],[-21,-2],[-19,60],[-15,54],[3,61],[-34,43],[-11,-14],[-7,-50],[-11,-14],[-17,32],[-30,20],[-65,20],[-46,49],[-13,34],[-4,55],[42,40],[27,81],[28,51],[27,41],[46,17],[55,26],[55,17],[44,0],[25,-43],[21,-43],[24,-43],[18,-32],[55,-3],[17,29],[32,14],[6,-46],[19,-3],[4,35],[-12,23],[39,54],[-48,-8],[-10,34],[67,12],[21,34],[-13,17],[11,26],[27,-37],[13,23],[31,43],[15,-20],[4,29],[24,20],[4,-26],[34,11],[48,15],[34,95],[17,63],[2,69],[-36,17],[-55,-46],[-40,9],[-42,14],[-2,55],[-6,45],[4,52],[29,-17],[34,37],[40,55],[67,31],[23,64],[-10,37],[-2,46],[57,57],[52,43],[70,46],[23,-8],[19,-40],[50,25],[45,64],[-32,40],[21,34],[17,-28],[17,54],[-2,60],[0,61],[12,37],[49,46],[63,12],[53,-18],[48,43],[-9,35],[-14,-3],[-6,43],[56,-6],[5,-54],[33,8],[-2,21],[21,11],[17,29],[55,-15]],[[137559,167543],[-68,-72],[-34,6],[-25,40],[28,72],[56,46],[36,-6],[7,-86]],[[138216,168356],[25,-32],[32,3],[6,-80],[-2,-78],[-7,-37],[-19,-80],[3,-95],[27,-150],[46,-83],[-21,-40],[-95,-75],[-58,-34],[-55,46],[-9,80],[-38,69],[-86,29],[-101,0],[-46,72],[6,86],[46,66],[40,54],[0,32],[32,26],[17,-12],[31,41],[175,126],[8,43],[43,23]],[[145330,201033],[287,42],[144,234],[161,458],[152,238],[174,-32],[742,-433],[402,-1092],[303,-216],[820,-121],[129,-352],[99,-1545],[387,-591],[272,-50],[620,938],[226,1275],[565,1319],[227,193],[606,235],[374,509],[962,101],[671,-642],[841,714],[177,-217],[347,-1148],[136,-81],[1026,-278],[194,46],[255,381],[395,-94],[898,-1113],[433,-125],[458,190],[516,434],[545,-137],[380,-410],[476,-729],[1361,-1168],[185,-406],[20,-44],[285,-627],[130,-144],[441,-147],[70,-831],[365,-1125],[32,-98],[191,-589],[101,-410],[97,-1133],[1074,-424],[62,-153],[207,-510],[168,-316],[261,-114],[727,634],[422,36],[157,-69],[258,-364],[41,-754],[-85,-368],[-185,-337],[-415,-449],[-445,-1406],[-179,-1062],[-316,-1308],[11,-228],[158,-711],[105,-2109],[-47,-1176],[-1125,-1579],[-106,-380],[169,-314],[714,-325],[283,-455],[21,-605],[-248,-584],[-648,-723],[-85,-234],[-177,-843],[98,-688],[417,-556],[1026,-413],[80,-110],[182,-436],[171,-251],[562,-309],[120,-630],[579,-410],[283,-670],[284,-63],[183,-289],[199,-836],[432,-439],[2152,-1152],[366,29],[222,64],[594,348],[771,220],[905,466],[1760,260],[1078,-252]],[[177249,168865],[124,-896],[65,-231],[109,-235],[86,-199],[91,-155],[77,-170],[107,-293],[52,-255],[166,-768],[91,-336],[223,-615],[122,-362],[23,-178],[-8,-133],[-85,-880],[-120,-1041],[-36,-1068],[168,-978],[34,-101],[152,-330],[181,-347],[122,-448],[107,-518],[338,-932],[127,-1025],[412,-2140],[285,-891],[330,-296],[200,-564],[118,-536],[24,-259],[19,-1003],[-11,-486],[-193,-303],[-67,-397],[59,-427],[343,-261],[369,-196],[256,-178],[268,-310],[402,-462],[5,-769],[7,-954],[179,-378],[107,-360],[126,-570],[180,-706],[71,-261],[96,-169],[132,-199],[90,-255],[48,-297],[2,-225],[2,-113],[-29,-151],[-41,-218],[-13,-313],[36,-166],[104,-344],[67,-348],[27,-87],[11,-82],[-5,-34],[-10,-66],[-14,-178],[24,-122],[73,-86],[124,-48],[180,-99],[147,-314],[75,-35],[43,-50],[55,-292],[186,-359],[239,-560],[12,-47],[-3,-275],[12,-184],[58,-120],[-38,-504],[-1,-16],[-21,-291],[-134,-88],[-233,-469],[-173,-116],[-140,-449],[-74,-163],[24,-290],[123,-351],[20,-212],[36,-393],[-53,-307],[-1,-114],[10,-75],[9,-76],[4,-106],[-9,-88],[-13,-324],[88,-375],[32,-236],[16,-71],[13,-44],[7,-26],[2,-41],[1,-41],[0,-33],[-2,-60],[-19,-122],[-24,-123],[-30,-227],[51,-167],[43,-86],[26,-86],[-6,-109],[-15,-77],[-33,-115],[-24,-82],[-48,-147],[-6,-13],[-58,-134],[-103,-194],[-46,-100],[-17,-79],[9,-93],[33,-118],[60,-106],[54,-118],[-10,-113],[19,-104],[-1,-77],[-18,-170],[-32,-83],[-15,-125],[21,-118],[8,-107],[6,-741]],[[184100,128535],[-276,20],[-126,-5],[-93,-27],[-117,-11],[-128,27],[-80,97],[-4,109],[-54,88],[-17,109],[-51,81],[-100,32],[-125,-111],[-198,-118],[-120,-99],[-120,-82],[-101,-80],[-103,-83],[-258,-221],[-270,-304],[-138,-221],[-168,-294],[-3,-5],[-108,-240],[-43,-168],[-5,-18],[90,-108],[117,-9],[35,-100],[-68,-68],[18,-199],[42,-172],[-63,-163],[6,-245],[-12,-226],[-72,-199],[48,-217],[114,-136],[222,-27],[150,-73],[252,109],[228,0],[188,-149],[-50,-258],[78,-245],[59,-124],[10,-370],[-165,-835],[-249,-503],[-954,-456],[-540,-312],[-97,-56],[-259,296],[-59,488],[-137,607],[-96,440],[-154,192],[-104,-123],[-202,-255],[-154,-220],[-125,-232],[-141,-323],[-68,-278],[119,-175],[80,-304],[130,-200],[13,-239],[-163,-279],[-317,-276],[-261,-149],[-111,278],[-171,110],[-273,168],[-203,-149],[-162,-187],[-99,-278],[-111,-155],[-219,-77],[-188,-46],[-210,-71],[-261,-64],[-240,110],[-142,220],[22,251],[47,271],[-77,304],[-2,9],[-84,308],[-51,252],[-9,290],[0,272],[5,368],[34,407],[120,400],[94,239],[141,304],[219,297],[111,188],[-55,226],[-189,116],[-73,245],[35,323],[-240,143],[-300,239],[-283,252],[-235,90],[-249,78],[-299,38],[-240,-122],[-321,-298],[94,-316],[-77,-317],[-552,-430],[-304,-115],[-656,-247],[-288,-426],[-1249,-787],[-348,-399],[-612,-651],[-252,-37],[-204,272],[-312,54],[-552,18],[-336,-561],[-192,-54],[-228,18],[-1316,-1707],[-297,-232],[-218,40],[-217,-440],[1013,-1383],[1494,-192],[6,-792],[-1394,240],[-1098,1458],[-191,253],[-270,-92],[-193,124],[-151,272],[-409,184],[-463,404],[-255,204],[-93,-136],[-193,-141],[-170,129],[-16,220],[-5,219],[125,244],[-19,184],[-246,104],[-136,337],[-86,252],[-25,394],[-193,161],[-124,110],[-159,-129],[-188,-220],[-163,-258],[-222,-58],[-227,180],[-24,445],[75,292],[201,581],[257,414],[86,374],[167,227],[244,103],[188,-97],[120,-116],[103,-220],[150,349],[193,252],[55,362],[43,452],[-30,258],[64,323],[176,310],[206,394],[124,349],[120,336],[94,336],[-56,162],[-145,135],[4,185],[148,332],[94,213],[109,246],[180,129],[243,43],[194,-140],[150,-19],[112,168],[88,244],[64,276],[2,224],[-49,222],[-47,64],[-121,-73],[-125,-50],[-100,20],[-47,110],[0,243],[14,147],[71,159],[95,127],[101,96],[63,63],[17,58],[-59,81],[-19,121],[27,155],[70,113],[121,93],[117,50],[153,-37],[76,-85],[60,-170],[41,-119],[65,-88],[70,-38],[58,17],[55,61],[47,90],[7,109],[-12,86],[-43,95],[-35,97],[-6,94],[25,126],[79,178],[27,152],[85,222],[119,265],[108,207],[195,252],[214,202],[159,88],[177,23],[197,-68],[167,-135],[120,-191],[50,-84],[57,-6],[92,67],[99,94],[79,155],[-6,216],[15,120],[70,120],[78,77],[32,55],[-63,193],[-38,211],[-84,171],[-18,150],[150,284],[176,84],[192,-38],[222,-29],[134,229],[13,304],[-5,316],[-47,362],[-206,473],[150,102],[-29,108],[-35,78],[-155,156],[-139,44],[-795,-550],[-186,-551],[-264,-268],[-209,-121],[-267,119],[-179,286],[-122,316],[-126,193],[-143,139],[-89,180],[-105,325],[-145,171],[-175,228],[-28,232],[-47,203],[-147,135],[-160,45],[-256,-93],[-211,-13],[-109,116],[-49,187],[-19,332],[-42,515],[-557,872],[-360,268],[-928,-288],[-827,500],[-342,807],[-180,280],[-61,-168],[-125,-384],[-312,-480],[-478,-204],[-318,-599],[-291,-632],[-366,-488],[-296,-238],[-90,-76],[-439,8],[-408,1284],[-399,555],[-363,164],[-503,-393],[-531,-10],[-106,-91],[-251,-211],[-297,-459],[-30,-159],[-15,-79],[-15,-79],[20,-55],[40,-161],[35,-238],[-33,-229],[-65,-176],[-126,-195],[-125,-150],[-117,-110],[-206,-193],[-108,-110],[-71,-99],[-35,-54],[-35,-54],[-45,-68],[-45,-69],[-14,-93],[-15,-93],[-6,-42],[-44,-106],[-100,-106],[-109,-116],[-39,-106],[-2,-46],[-2,-46],[-9,-53],[-5,-26],[-4,-26],[7,-56],[6,-56],[13,-105],[31,-98],[324,-311],[80,-137],[11,-88],[10,-88],[-14,-109],[-15,-108],[-77,-106],[-80,-124],[-125,-57],[-62,-28],[-63,-28],[-98,21],[-185,153],[-172,-56],[-127,14],[-134,119],[-31,197],[-56,187],[-85,51],[-128,0],[-60,134],[-38,0],[-38,-1],[-36,57],[-36,57],[-51,-2],[-51,-3],[-22,-23],[-21,-24],[-43,-47],[-55,-68],[-75,-64],[-75,-64],[-160,-199],[-129,-86],[-129,-87],[-175,-120],[-56,-84],[-55,-84],[-54,-91],[-27,-45],[-27,-46],[-39,-71],[-38,-72],[-31,-72],[-30,-73],[-41,-74],[-40,-75],[-39,-90],[-38,-91],[-14,-182],[32,-211],[151,-160],[115,-68],[13,-149],[-49,-182],[-51,-208],[-28,-403],[-69,-75],[-100,-1],[-100,-135],[-50,-68],[-51,-68],[-90,-5],[-105,77],[-104,119],[-62,-3],[-61,-3],[-119,-44],[-98,-72],[22,-253],[-24,-74],[-97,-33],[-132,-9],[-55,-9],[-55,-9],[-59,-89],[-138,-24],[-138,-24],[-191,-117],[-96,-59],[-96,-58],[-189,50],[-169,13],[-168,14],[-213,184],[-244,161],[-249,107],[-145,3],[-145,3],[-103,-2],[-104,-1],[-124,25],[-124,25],[-182,86],[-187,132],[-139,292],[-16,123],[-16,123],[8,128],[8,128],[110,223],[248,104],[250,-23],[122,190],[-39,519],[-5,161],[-4,161],[39,105],[35,138],[-4,125],[-55,204],[-54,204],[6,117],[6,118],[40,162],[63,109],[111,91],[113,40],[96,-13],[113,-59],[70,-69],[74,-135],[118,0],[143,125],[87,144],[48,132],[44,151],[4,134],[5,135],[17,76],[17,75],[57,118],[37,60],[19,29],[18,30],[15,52],[16,53],[33,77],[20,44],[21,43],[19,33],[20,33],[16,92],[16,92],[31,123],[10,71],[10,71],[19,87],[19,86],[7,92],[3,47],[4,46],[50,256],[-7,119],[-8,119],[-23,108],[-17,41],[-13,50],[-74,113],[-73,112],[-173,195],[-255,287],[-109,240],[3,268],[19,113],[19,112],[24,123],[-2,124],[-1,62],[-1,61],[-29,122],[-30,122],[-159,20],[-374,-47],[-73,-372],[-79,-238],[-50,-87],[-49,-87],[-36,-43],[-161,-426],[-114,-56],[-173,-35],[-101,-144],[-135,-115],[-135,-115],[-136,-22],[-189,39],[-96,72],[-97,73],[-139,36],[-158,-75],[-74,-134],[-73,-160],[-307,-211],[-206,-27],[-146,-32],[-330,-37],[-351,-195],[-85,-66],[-54,-76],[438,-469],[188,-449],[91,-208],[115,-352],[111,-479],[7,-356],[-214,-378],[-339,-189],[-280,111],[-74,294],[-74,295],[-77,276],[-77,277],[-82,337],[-70,217],[-11,211],[-38,69],[-126,-15],[-285,-293],[-48,-49],[-316,-286],[57,-86],[33,-127],[-2,-204],[-69,-193],[-100,-246],[-64,-116],[-173,-174],[-151,-11],[-217,92],[-215,208],[-115,189],[-84,77],[-92,0],[-184,-131],[-166,-208],[-84,-243],[3,-220],[169,-543],[230,-137],[170,-74],[148,-158],[41,-220],[-49,-191],[-117,-256],[-97,-177],[-87,-104],[-127,-85],[-164,-58],[-163,-38],[-67,5],[-66,6],[-93,16],[-94,15],[-60,21],[-60,21],[-104,97],[-35,100],[-17,50],[-17,50],[-95,189],[-181,67],[-47,-11],[-22,-9],[-22,-9],[-27,-18],[-28,-18],[-51,-65],[-26,-46],[-25,-46],[-31,-144],[2,-174],[17,-84],[-6,-46],[-2,-24],[-3,-23],[-8,-108],[-4,-54],[-2,-27],[-2,-27],[-55,-145],[-174,-127],[-184,-173],[-123,-186],[-104,-167],[-2,-3],[-155,-202],[-180,-138],[-142,-13],[-92,82],[-40,144],[11,170],[43,165],[-20,174],[-62,158],[-104,98],[-158,30],[-168,-16],[-195,-49],[-184,-82],[-107,-465],[-195,-376],[-160,-171],[-159,-172],[-144,-143],[-143,-143],[-103,-65],[-51,-33],[-52,-32],[-173,-229],[-49,-294],[3,-184],[3,-183],[-49,-139],[-24,-70],[-13,-34],[-12,-35],[-89,-74],[-45,-36],[-44,-37],[-141,-65],[-70,-33],[-71,-33],[-287,-57],[-51,2],[-52,2],[-25,1],[-26,1],[-51,2],[-201,33],[-200,139],[-189,212],[-92,237],[-6,220],[70,253],[125,180],[141,90],[211,33],[173,106],[76,130],[-22,205],[-22,71],[-22,71],[-29,82],[-28,82],[-36,120],[-17,60],[-18,61],[-38,106],[-19,53],[-18,53],[-26,84],[-26,83],[-26,109],[-25,108],[-2,6],[-26,93],[-26,93],[-106,147],[-84,106],[-80,67],[-99,63],[-108,41],[-83,20],[-94,6],[-91,-1],[-193,-175],[-116,-118],[-149,-131],[-109,-81],[-110,-82],[-146,-106],[-114,-33],[-109,14],[-66,53],[-66,88],[-25,84],[-26,84],[1,87],[2,88],[56,208],[136,368],[-19,273],[-71,147],[-140,135],[-157,86],[-133,82],[-127,-70],[-142,-141],[-89,-27],[-82,10],[-52,68],[-37,100],[-24,104],[-24,105],[-81,122],[-82,123],[82,277],[-100,221],[-32,601],[238,605],[245,-13],[303,840],[-16,358],[-614,-123],[-57,272],[270,469],[229,160],[246,235],[221,-49],[229,-420],[254,308],[169,545],[-236,110],[-204,409],[16,388],[214,416],[372,412],[-174,565],[312,527],[0,489],[299,357],[38,414],[386,368],[474,573],[350,151],[249,38],[324,56],[213,339],[119,438],[426,221],[371,192],[924,193],[393,-75],[399,-245],[50,-310],[162,-141],[75,-273],[86,-357],[388,-255],[131,-357],[393,9],[256,9],[268,47],[231,113],[187,170],[131,216],[6,254],[-44,254],[88,160],[13,199],[-369,121],[-125,320],[50,273],[-55,228],[-213,139],[-185,231],[31,474],[31,481],[29,451],[-62,217],[60,241],[121,105],[150,-45],[243,84],[201,134],[229,45],[175,198],[304,-13],[195,50],[200,-141],[43,-244],[-56,-283],[143,-160],[-12,-216],[75,-216],[162,-273],[187,-66],[69,226],[106,-10],[127,-79],[247,117],[203,19],[115,188],[72,146],[34,183],[94,155],[162,47],[196,203],[82,226],[43,197],[25,231],[10,179],[1,82],[37,70],[80,644],[-279,180],[-39,238],[86,238],[268,374],[239,360],[203,1319],[217,895],[120,164],[141,98],[522,285],[-111,159],[-168,148],[-39,319],[62,319],[110,284],[216,107],[39,331],[208,360],[223,138],[-2785,681],[-925,863],[-98,-319],[-114,-337],[-306,-302],[-415,-130],[-247,36],[-321,-231],[-290,-35],[-181,148],[-105,-89],[51,-302],[-102,-413],[-122,-432],[-47,-573],[-192,-574],[-290,-230],[-392,-195],[-247,307],[-4,378],[135,207],[-354,-71],[-259,320],[-172,514],[52,628],[-319,554],[28,473],[4,237],[-153,177],[-137,248],[4,195],[125,83],[364,237],[153,82],[114,12],[90,-254],[-23,248],[58,154],[228,266],[286,-106],[321,-101],[220,-18],[192,-147],[109,100],[106,308],[47,242],[-23,142],[-169,0],[-161,-12],[-301,100],[-208,207],[-102,225],[-110,307],[-7,391],[-157,29],[-43,136],[43,343],[113,402],[-35,171],[-180,225],[17,195],[5,195],[281,62],[450,479],[246,298],[178,177],[203,202],[208,77],[220,12],[242,-6],[251,95],[227,102],[200,110],[90,129],[99,66],[98,302],[60,249],[13,243],[51,222],[71,247],[74,204],[57,128],[69,111],[59,74],[50,164],[37,123],[47,66],[73,47],[-47,58],[-73,-83],[-81,28],[-73,-8],[-80,-17],[-70,-52],[-57,-60],[-66,-30],[-77,14],[-63,12],[-55,-9],[-51,-62],[-76,-52],[-75,-64],[-88,-4],[-62,-3],[-50,-70],[-58,-48],[-89,-6],[-78,23],[-85,24],[-77,26],[-43,116],[20,106],[38,61],[38,77],[3,103],[17,109],[22,103],[43,90],[43,47],[89,-9],[57,70],[-7,69],[34,53],[52,59],[50,2],[37,53],[41,74],[43,102],[17,216],[-29,88],[-7,95],[16,83],[26,69],[66,106],[53,106],[61,95],[34,54],[-244,-214],[-504,-442],[-261,59],[-105,453],[-248,-236],[-444,-217],[-104,611],[-196,216],[65,966],[-300,-335],[-72,79],[-72,78],[-366,-98],[-195,433],[-392,0],[-301,355],[-89,640],[57,372],[-197,497],[-318,348],[-128,27],[-290,-366],[-145,-513],[-365,-99],[-61,491],[-284,417],[-13,184],[-135,5],[-141,-328],[-255,31],[-113,-123],[-120,332],[-191,-271],[-523,-30],[-69,-151],[753,1],[360,-227],[-232,-630],[-23,-455],[-487,-630],[-418,490],[-171,-193],[-26,-367],[23,-664],[-371,-507],[-266,209],[-290,560],[-255,193],[-371,314],[-174,455],[-128,1085],[-2,449],[-523,-123],[50,-414],[-174,-175],[-195,292],[-551,67],[-296,-343],[76,-140],[531,-31],[107,-97],[408,89],[113,-141],[-28,-198],[-119,-372],[-289,-338],[-1083,-231],[-57,-167],[121,-565],[614,-312],[679,192],[255,-227],[21,-181],[-827,-586],[-253,98],[-425,-173],[-262,-640],[-699,-806],[-345,-196],[-144,-548],[480,-953],[-47,-402],[-193,-194],[249,-171],[0,-528],[100,105],[83,-335],[141,-47],[-64,-317],[150,-155],[346,-357],[126,74],[212,678],[-49,178],[-218,-219],[-57,156],[536,484],[100,520],[163,293],[41,179],[-92,153],[-268,86],[-1,178],[241,173],[1003,-497],[327,-354],[125,-331],[254,-163],[567,-48],[489,326],[805,-209],[62,-897],[-829,-687],[-203,-504],[22,-194],[317,-304],[-19,-578],[-424,-389],[-756,-408],[-474,-1015],[-488,265],[-113,543],[-291,-44],[-196,-848],[-792,-1225],[-784,-27],[-397,919],[-250,-213],[-89,-76],[-375,-599],[-318,-1052],[240,-503],[-53,-184],[-53,-183],[177,-341],[16,-372],[-501,-135],[-307,-879],[-127,-49],[-133,42],[-43,525],[-247,116],[-212,512],[-128,-32],[-417,-1445],[-410,-730],[-394,228],[6,986],[-128,63],[-196,-251],[-114,92],[566,1109],[1017,851],[558,1437],[43,280],[14,89],[-92,237],[-3,8],[-95,246],[-226,216],[-741,147],[-548,288],[-428,747],[-812,826],[-338,-1024],[-701,-453],[-386,-61],[-706,283],[-396,-293],[-308,504],[43,1078],[-354,-112],[-422,301],[-385,-468],[-200,-510],[-200,246],[-1042,-169],[-646,-50],[-455,298],[-151,560],[197,694],[622,1256],[689,-58],[-95,559],[243,685],[-283,613],[-367,245],[-403,-513],[-51,-580],[-23,5],[-162,-159],[-341,-282],[-86,30],[-73,75],[-79,45],[-74,-57],[-12,-181],[-79,-418],[-320,-360],[-682,-684],[-253,-356],[-242,-499],[-52,-349],[151,-268],[178,-70],[152,130],[132,-120],[49,-428],[-12,-25],[-11,-25],[81,-73],[-5,-416],[-270,-613],[-63,-300],[-62,-300],[-243,-83],[-107,100],[-240,716],[-128,33],[-162,318],[-126,-59],[-198,-764],[588,-961],[209,-573],[-432,-296],[-588,-157],[-157,572],[-932,-151],[-253,-169],[-228,77],[-181,-463],[-37,-118],[-22,-210],[8,-120],[22,-120],[45,-158],[54,-149],[-14,-53],[28,-52],[-38,-192],[-203,-1010],[-84,-519],[29,-301],[11,-107],[113,-502],[15,-110],[238,-323],[252,9],[123,288],[243,145],[262,55],[123,-330],[-38,-215],[-209,-186],[16,-316],[172,-106],[141,-402],[-20,-432],[-223,-266],[-292,-61],[-276,-122],[-220,-54],[-7,-384],[-142,-352],[-262,-325],[-122,-213],[-49,-212],[47,-147],[183,-89],[605,-26],[-94,-674],[-94,-674],[-266,-520],[-314,-213],[-317,-55],[-200,-394],[-345,-118],[-63,-355],[94,-449],[173,-355],[282,-71],[282,260],[361,166],[297,212],[298,95],[282,-47],[314,189],[313,142],[201,-172],[82,-585],[344,-172],[157,-357],[314,-322],[376,-237],[-47,-591],[-549,-946],[-454,-165],[-345,260],[-439,331],[-157,-402],[423,-355],[16,-520],[-140,-381],[-393,-305],[-376,378],[-141,539],[-276,72],[-257,193],[-345,-212],[-204,-284],[-298,-260],[-296,-443],[-378,-101],[-78,-379],[-141,-331],[62,-402],[-156,-307],[-251,-284],[47,-378],[-82,-370],[-232,-245],[330,-142],[188,-213],[125,-307],[298,-47],[251,-142],[130,-306],[-26,-464],[-26,-460],[105,-264],[-11,-422],[267,-118],[329,-47],[157,496],[141,473],[266,308],[345,-189],[78,-615],[345,23],[424,24],[203,-355],[-78,-473],[-235,-473],[-423,-94],[-409,-109],[-297,38],[-172,-308],[-298,-260],[-361,-260],[-47,-567],[-316,-462],[-514,-271],[-377,141],[-360,-140],[-471,235],[-235,449],[-486,119],[-94,591],[-62,520],[15,497],[-172,354],[-188,308],[-76,405],[29,493],[-282,237],[-236,23],[-219,-70],[-376,-190],[-376,24],[-314,-780],[-469,248],[-179,566],[250,419],[204,293],[9,517],[0,489],[19,322],[-325,461],[-240,181],[-232,-56],[-417,-167],[-361,-196],[-398,-126],[-538,-321],[-218,-49],[-236,650],[-185,703],[-213,26],[-174,186],[-139,108],[-68,180],[-197,-59],[-134,34],[-62,110],[-23,237],[-16,186],[-45,194],[-96,60],[-162,-26],[-211,-2],[-212,-99],[-168,-95],[-327,-123],[-147,-74],[-162,-167],[-176,-113],[-93,-55],[-94,-63],[-94,-110],[-85,-114],[21,-254],[-13,-176],[-10,-207],[-7,-151],[-29,-213],[-34,-151],[-55,-167],[-68,-201],[-80,-197],[-111,-218],[-92,-153],[-143,-239],[-19,-86],[14,-91],[21,-188],[14,-157],[-16,-114],[-75,-170],[-82,-141],[-85,-174],[-75,-131],[-81,-161],[-91,-152],[-42,-151],[-105,-177],[-54,-159],[-66,-148],[-91,-117],[-109,-76],[-111,-40],[-101,182],[-150,0],[-185,-167],[-142,-318],[-148,-353],[-124,-296],[-465,-152],[-108,-14],[-203,68],[-131,-102],[-153,-149],[-180,-150],[-135,-88],[-199,-68],[-139,0],[-68,-177],[-131,-170],[-171,-204],[-126,-218],[-59,-231],[9,-197],[-40,-272],[-97,-259],[-241,-47],[-167,-170],[-108,-68],[-77,7],[-47,43],[-52,48],[-104,473],[-112,177],[-189,442],[-104,218],[-171,156],[-190,190],[-202,34],[-257,-13],[-415,-41],[-214,-40],[-196,67],[-176,20],[-180,-47],[-185,-82],[-523,-346],[-274,-184],[-185,-41],[-90,36],[-45,19]],[[93682,130987],[-2,136],[-3,373],[-171,157],[-135,61],[-217,27],[-26,-3],[-20,-2],[-242,-29],[-161,19],[-33,4],[-72,9],[-279,91],[-244,156],[-140,156],[-112,225],[-86,326],[-49,347],[-9,312],[-59,177],[-81,177],[-104,122],[-153,61],[-189,0],[-208,-81],[-265,-258],[-181,-266],[-85,-244],[-72,-313],[-17,-80],[-40,-184],[-25,-117],[-63,-190],[-94,-136],[-163,-61],[-216,115],[-58,41],[-18,12],[-41,29],[-54,109],[-9,112],[-9,112],[-81,197],[-131,61],[-153,34],[-221,-54],[-158,-75],[-193,-61],[-136,-17],[-105,25],[-31,7],[-151,35],[-131,82],[-131,82],[-176,119],[-79,75],[-25,68],[-16,51],[20,29],[19,29],[117,102],[90,68],[20,88],[-7,102],[-63,102],[-135,37],[-99,-17],[-113,28],[-55,29],[-48,25],[-50,136],[24,55],[23,55],[84,135],[90,142],[63,198],[45,251],[23,129],[60,191],[39,122],[13,116],[-22,122],[-81,95],[-77,48],[-225,6],[-104,28],[-108,47],[-131,116],[-90,177],[27,122],[95,88],[125,36],[114,-36],[121,-74],[95,34],[113,95],[81,149],[21,97],[3,15],[21,92],[-4,30],[-14,106],[-63,136],[-190,140],[-189,139],[-63,102],[-50,115],[9,123],[55,129],[90,61],[248,27],[198,127],[198,159],[63,149],[6,40],[12,90],[5,176],[-32,177],[-56,44],[-56,45],[-122,-7],[-280,-245],[-121,-129],[-162,34],[-46,102],[19,109],[45,169],[58,130],[14,81],[-18,82],[-45,37],[-64,12],[-144,-25],[-108,17],[-63,102],[-36,129],[29,132],[32,140],[-11,132],[-32,143],[-34,177],[14,115],[27,70],[27,70],[81,34],[72,-44],[68,-119],[99,-249],[36,-91],[61,-116],[15,-173],[30,-163],[61,-133],[65,-92],[81,-47],[81,-4],[68,95],[90,191],[40,102],[-4,68],[-43,132],[-55,46],[-55,46],[-111,24],[-124,109],[-60,139],[-16,126],[2,143],[27,95],[72,57],[75,7],[90,-64],[56,-79],[59,-122],[58,-75],[84,-54],[73,-10],[53,-7],[67,17],[59,61],[11,95],[-13,116],[-45,136],[-50,81],[-289,371],[-11,15],[-142,179],[-38,136],[14,115],[24,99],[81,37],[57,-54],[49,-78],[33,-107],[168,-305],[135,-105],[65,-34],[68,44],[15,26],[26,45],[27,45],[58,180],[68,115],[67,116],[25,75],[-13,51],[-36,75],[-74,41],[-109,37],[-115,0],[-119,30],[-99,85],[-104,157],[-63,122],[-50,136],[-9,88],[30,89],[85,37],[113,-37],[255,-153],[202,-82],[66,-13],[58,30],[43,55],[29,125],[3,181],[2,180],[82,204],[33,131],[11,140],[1,5],[-18,100],[-57,72],[-108,5],[-96,-36],[-105,-82],[-234,-217],[-117,-27],[-102,22],[-48,77],[0,132],[75,176],[154,198],[73,115],[169,67],[99,113],[54,172],[18,186],[-84,95],[-117,18],[-228,-90],[-162,-40],[-142,-15],[-105,-13],[-150,81],[-87,132],[-54,176],[27,290],[57,194],[204,476],[298,706],[93,525],[-25,393],[-14,263],[-290,255],[-122,108],[-146,150],[-16,175],[282,372],[29,231],[-6,231],[-48,153],[-95,103],[-71,148],[-77,210],[-18,261],[-105,5],[-55,-25],[-51,-93],[-54,-71],[-105,-5],[-100,47],[-162,163],[-159,97],[-126,118],[-10,122],[51,149],[132,276],[14,128],[-37,169],[-55,98],[-84,61],[-72,56],[-64,77],[-49,107],[-86,579],[-25,164],[-66,77],[-113,43],[-126,-28],[-115,-118],[-89,-235],[-71,-271],[-85,-215],[-95,-175],[-112,-128],[-139,-61],[-122,36],[-65,128],[-44,148],[17,169],[65,169],[82,144],[53,148],[-13,143],[-37,149],[-89,107],[-105,87],[-115,-5],[-146,-10],[-180,-51],[-238,-39],[-220,39],[-177,25],[-183,39],[-47,82],[11,135],[33,359],[-2,205],[46,176],[80,204],[75,286],[17,437],[101,356],[181,308],[127,392],[131,457],[-21,417],[-78,291],[-161,154],[-198,152],[-132,30],[-189,114],[-211,161],[-116,192],[-5,268],[69,248],[27,245],[-9,429],[-9,277],[26,188],[-25,89],[-50,96],[-59,53],[-75,68],[-123,30],[-95,-30],[-74,-51],[-80,-118],[-67,-147],[-76,-68],[-220,56],[-445,331],[-288,229],[-278,298],[-93,167],[-237,296],[-129,106],[-83,-3],[-155,-25],[-257,30],[-203,147],[-164,71],[-81,86],[-67,91],[-130,76],[-99,101],[-44,108],[-107,268],[-20,144],[-45,89],[-7,93],[3,108],[11,57],[-4,127],[-15,137],[-12,73],[-31,51],[-57,29],[-101,-31],[-166,-91],[-103,-49],[-157,-130],[-228,-107],[-165,-75],[-213,-32],[-187,38],[-120,69],[-54,60],[-86,105],[-78,65],[-39,123],[-58,107],[-75,131],[-55,65],[-60,43],[-52,-3],[-77,-91],[-117,-143],[-60,-49],[-63,-69],[-74,-159],[-27,-83],[-63,-46],[-102,-29],[-60,42],[-49,16],[-82,-13],[-122,42],[-76,2],[-71,-20],[-60,-4],[-73,53],[-53,-2],[-74,-29],[-34,38],[-25,80],[-42,34],[-68,-23],[-148,-102],[-78,-83],[-43,-58],[-75,-38],[-147,18],[-142,9],[-80,9],[-97,-18],[-102,-58],[-73,5],[-173,194],[-120,214],[-122,169],[-105,119],[-91,51],[-119,16],[-122,6],[-105,0],[-97,-13],[-86,-29],[-56,-28],[-48,-23],[-77,-39],[-70,16],[-177,74],[-107,44],[-61,28],[-250,113],[-178,101],[-178,118],[-166,134],[-102,136],[-37,111],[-61,45],[-60,45],[-64,93],[-115,72],[-117,31],[-95,-5],[-111,36],[-97,76],[-128,207],[-133,268],[-78,259],[-188,149],[-112,146],[-42,110],[-15,37],[-51,147],[-85,199],[-80,98],[-45,145],[-34,120],[-34,107],[-43,58],[-59,32],[-79,15],[-99,-9],[-69,3],[-70,-65],[-34,-92],[-7,-89],[-9,-181],[-5,-69],[-31,-87],[-59,-13],[-80,-14],[-117,-7],[-288,41],[-217,45],[-100,31],[-85,-36],[-68,-74],[-88,-73],[-99,-107],[-93,-81],[-132,-44],[-82,-52],[-68,12],[-73,49],[-73,63],[-47,75],[-80,154],[-58,97],[-76,71],[-38,178],[-36,139],[-48,134],[-114,115],[-38,94],[2,128],[22,100],[24,106],[29,120],[-8,76],[-24,104],[-36,94],[-140,239],[-96,253],[-38,298],[-110,174],[-158,304],[-59,99],[-42,45],[16,103],[67,245],[-50,254],[-50,87],[-83,100],[-88,113],[-97,167],[-55,154],[28,208],[-11,201],[-5,198],[-48,113],[22,125],[-78,169],[-82,223],[-5,229],[-79,123],[-29,135],[-58,130],[-58,197],[-104,194],[-175,215],[-113,72],[-43,296],[-8,186],[89,436],[-15,149],[-44,137],[-68,230],[-20,89],[-51,108],[-51,36],[-71,89],[-70,44],[-7,60],[-42,61],[-140,148],[-129,75],[-95,100],[-62,18],[-35,46],[-21,78],[-6,108],[-54,115],[-59,62],[-98,30],[-95,-20],[-84,-45],[-80,-99],[-60,-147],[-71,-112],[-91,18],[-115,124],[-64,78],[-64,77],[-117,91],[-123,26],[-117,51],[-125,13]],[[63765,174530],[-90,36],[-74,7],[-60,16],[-53,79],[-62,92],[-42,140],[-38,53],[-1,3],[-4,54],[6,93],[1,15],[7,25],[27,113],[43,120],[173,398],[190,343],[82,192],[14,33],[13,14],[17,19],[110,180],[48,97],[122,246],[181,250],[128,218],[103,142],[4,6],[108,148],[26,37],[107,75],[130,72],[378,162],[141,33],[39,9],[61,-8],[43,-41],[64,-188],[38,-53],[83,-32],[130,11],[76,36],[41,53],[6,133],[11,63],[12,50],[39,21],[32,2],[33,3],[34,3],[30,9],[15,18],[17,50],[19,50],[20,34],[7,37],[15,24],[13,12],[63,58],[495,454],[119,239],[361,229],[169,105],[239,177],[272,316],[414,542],[299,460],[1047,1537],[430,734],[160,227],[526,745],[187,397],[117,292],[109,278],[174,296],[91,125],[50,56],[44,24],[42,-41],[119,-211],[110,-180],[120,-191],[105,-170],[101,-150],[337,-503],[331,-456],[301,-186],[176,-74],[87,20],[87,19],[219,173],[290,381],[215,298],[216,298],[478,792],[148,241],[207,246],[261,142],[248,128],[266,87],[317,181],[273,134],[296,22],[128,10],[120,-81],[58,-66],[132,-150],[112,-128],[174,-64],[138,55],[333,262],[423,496],[2,35],[44,36],[24,47],[37,7],[5,75],[38,10],[28,23],[23,47],[55,28],[16,88],[40,80],[35,36],[44,35],[27,54],[19,38],[19,80],[-12,61],[35,41],[43,-17],[37,26],[19,59],[31,16],[42,41],[46,77],[22,7],[45,12],[13,50],[3,78],[25,18],[43,19],[7,33],[12,81],[28,14],[61,9],[38,36],[42,37],[30,19],[31,0],[31,0],[46,-16],[46,-70],[30,-84],[52,-26],[39,-4],[47,7],[42,-45],[36,-216],[147,-110],[358,-376],[140,-301],[363,-990],[84,-65],[141,-25],[135,44],[148,129],[248,216],[118,104],[141,33],[348,-115],[336,-131],[226,-96],[57,-24],[70,-44],[35,-22],[196,-121],[87,-54],[115,-93],[116,-92],[232,-241],[384,-623],[190,-260],[216,-155],[198,16],[425,230],[445,262],[380,136],[138,50],[1171,393],[228,77],[72,22],[72,22],[51,109],[-19,185],[-213,503],[-145,459],[-50,219],[36,164],[210,655],[254,197],[280,513],[372,678],[434,634],[694,665],[378,330],[334,470],[195,218],[305,208],[91,165],[111,97],[132,69],[151,2],[151,2],[191,50],[122,149],[162,198],[413,318],[435,180],[407,37],[394,-98],[362,11],[181,142],[203,437],[268,536],[297,371],[181,146],[182,146],[499,124],[87,120],[-22,557],[-40,208],[33,333],[72,126],[399,175],[217,196],[326,612],[290,361],[268,634],[84,205],[184,156],[333,32],[319,99],[254,120],[217,164],[275,229],[533,471],[221,305],[87,93],[86,93],[196,66],[439,-319],[556,-160],[351,76],[790,537],[163,79],[169,11],[145,-60],[228,-284],[177,-336],[120,-439],[85,-181],[183,-207],[194,-77],[348,-87],[51,-60],[52,-60],[41,-128],[7,-214],[37,-415],[109,-371],[668,-1317],[-246,-189],[-217,-370],[-125,-353],[-293,-829],[-32,-454],[-29,-194],[-29,-194],[-62,-241],[-63,-241],[-69,-224],[-57,-267],[62,-123],[150,6],[330,14],[172,-8],[125,-35],[86,-120],[120,-231],[97,-226],[-22,-150],[-52,-211],[-167,-284],[-113,-396],[-77,-553],[3,-412],[110,-257],[158,-113],[302,-163],[974,-328],[136,-112],[52,-172],[51,-172],[23,-439],[-6,-293],[35,-310],[51,-284],[97,-189],[114,-258],[290,-519],[67,-162],[56,-146],[72,-284],[66,-155],[79,-95],[106,-60],[123,34],[291,211],[143,99],[63,43],[115,20],[116,19],[365,38],[184,19],[260,118],[359,191],[196,198],[117,249],[59,311],[52,279],[94,220],[140,155],[728,775],[128,146],[140,86],[140,69],[168,17],[280,0],[279,9],[537,43],[354,31],[131,12],[708,353],[239,189],[297,276],[457,499],[479,672],[331,413],[297,551],[125,517],[35,688],[-69,1171],[69,603],[131,224],[259,308],[222,279],[78,139],[387,687],[521,924],[458,812],[387,687],[474,371],[764,544],[485,139],[333,-108],[181,56],[195,121],[227,224],[491,241],[433,-165],[818,-571],[203,-102],[461,1],[80,-151],[-149,-651],[7,-881],[265,-545],[111,-108],[351,-181],[157,6],[293,12],[462,94],[371,198],[531,672],[160,43],[183,-26],[217,-103],[125,-112],[160,-215],[447,-866],[226,-236],[286,-104],[307,-46],[264,-61],[731,-505],[538,149],[393,-134],[843,87],[342,63],[288,112],[175,68],[342,319],[240,267],[375,411],[292,286],[571,396],[1119,517],[1352,835],[951,546],[871,443],[487,527],[539,-85],[415,124],[156,346],[8,819],[186,412],[290,63],[246,160],[224,-159],[815,-629],[24,-19],[364,-19],[352,259],[459,240],[298,444],[286,803],[95,91],[291,160],[343,-143],[222,-220],[118,-392],[264,-140],[124,166],[139,-97],[10,-216],[-33,-421],[-45,-143],[-92,-288],[34,-310],[80,-606],[-94,-767],[-172,-275],[-518,-550],[-1,-134],[87,-94],[129,-7],[127,68],[718,775],[396,980]],[[705560,676984],[35,-88],[22,-90],[0,-5],[19,-108],[4,-37],[2,-25],[-5,-34],[-5,-35],[-19,-131],[-29,-170],[-18,-105],[-18,-105],[-8,-72],[-3,-82],[7,-74],[-9,-145],[-15,-155],[-25,-106],[-33,-90],[-30,-70],[-44,-109],[-24,-94],[-38,-200],[0,-159],[18,-142],[24,-90],[48,-100],[57,-78],[28,-34],[33,-20],[39,-10],[44,10],[52,14],[87,21],[87,2],[88,-15],[20,-7],[107,-41],[118,-78],[153,-130],[143,-129],[146,-139],[158,-140],[136,-135],[103,-91],[104,-92],[146,-126],[6,-5],[94,-81],[67,-71],[68,-71],[56,-71],[64,-66],[81,-90],[64,-63],[48,-29],[44,-10],[59,-7],[39,5],[57,21],[69,16],[37,22],[39,17],[37,3],[29,-7],[34,-12],[21,-25],[27,-43],[24,-51],[30,-26],[36,-1],[35,36],[32,44],[35,28],[42,2],[63,-13],[44,-43],[40,-72],[34,-75],[55,-120],[37,-85],[53,-95],[54,-83],[69,-82],[55,-67],[69,-95],[56,-80],[68,-107],[96,-126],[83,-94],[77,-82],[77,-75],[82,-60],[81,-60],[117,-54],[141,-45],[148,-49],[134,-29],[120,-59],[79,-46],[90,-59],[69,-86],[21,-54],[36,-92],[28,-125],[3,-143],[-4,-107],[-7,-109],[-6,-108],[-6,-114],[3,-82],[3,-81],[15,-80],[47,-69],[50,-45],[50,-44],[78,-66],[62,-52],[30,-24],[30,-25],[73,-60],[49,-40],[67,-55],[63,-51],[39,-33],[11,-9],[92,-86],[68,-112],[35,-95],[18,-77],[17,-75],[19,-85],[2,-134],[7,-131],[14,-105],[30,-108],[35,-106],[42,-109],[64,-76],[89,-48],[79,15],[101,25],[122,56],[77,9],[97,-24],[68,-53],[63,-70],[63,-69],[59,-66],[65,-45],[55,-14],[77,-11],[73,36],[64,39],[57,74],[25,74],[26,90],[27,100],[30,108],[34,92],[24,65],[33,88],[34,79],[43,69],[59,54],[73,56],[78,30],[99,31],[74,25],[80,12],[79,12],[77,11],[101,25],[116,45],[68,27],[84,49],[69,32],[59,54],[58,54],[62,36],[62,36],[85,8],[86,-8],[63,-25],[57,-42],[54,-39],[72,-69],[69,-62],[75,-40],[104,-21],[64,-17],[67,-18],[89,-21],[72,-41],[59,-57],[48,-62],[44,-83],[29,-81],[25,-104],[16,-127],[14,-124],[9,-109],[8,-92],[10,-130],[9,-101],[7,-84],[6,-71],[19,-72],[57,-78],[59,-122],[24,-115],[28,-136],[24,-119],[18,-130],[19,-129],[14,-99],[14,-99],[35,-69],[45,-49],[46,-35],[56,-34],[48,-17],[64,27],[71,38],[68,29],[75,25],[76,0],[77,-17],[82,-26],[80,-54],[71,-54],[83,-60],[80,-37],[83,-16],[65,24],[62,43],[40,68],[55,55],[58,63],[63,14],[84,0],[58,-44],[29,-37],[52,-64],[45,-56],[66,-81],[60,-74],[48,-67],[49,-93],[50,-98],[44,-86],[44,-86],[41,-70],[69,-67],[57,-51],[63,-59],[88,-32],[65,-9],[60,33],[57,14],[56,-28],[52,-43],[46,-70],[55,-56],[86,-55],[60,-34],[61,-34],[60,-33],[60,-34],[78,-39],[69,-21],[67,-5],[67,-5],[56,3],[123,6],[105,18],[92,15],[118,19],[78,13],[93,4],[68,3],[62,2],[109,4],[99,4]],[[720540,664716],[-83,-147],[-84,-147],[-235,-307],[-204,-196],[-129,-141],[-38,-41],[-89,-140],[-61,-91],[-79,-68],[-209,-144],[-189,-126],[-104,-205],[-42,-178],[22,-139],[50,-195],[34,-257],[3,-261],[-15,-167],[-68,-201],[-121,-214],[-177,-260],[-134,-198],[-140,-107],[-90,-107],[-89,-144],[-175,-207],[-254,-301],[-160,-132],[-146,-185],[-142,-191],[-82,-190],[-2,-164],[55,-163],[134,-276],[234,-397],[35,-60],[18,-157],[-20,-74],[-21,-75],[-348,-401],[-1403,-1137],[-470,-476],[-475,-578],[-517,-607],[-205,-239],[-341,-236],[-214,-190],[-138,-163],[-144,-259],[-207,-256],[-264,-273],[-12,-15],[-189,-255],[-158,-188],[-92,-110],[-312,-224],[-379,-198],[-194,-98],[-243,-189],[-150,-95],[-235,-252],[-228,-475],[-136,-240],[-5,-9],[-292,-516],[-296,-348],[-421,-425],[-389,-476],[-582,-659],[-518,-441],[-128,-157],[-378,-39],[-138,-104],[-70,-200],[-159,-173],[-67,-103],[-38,-94],[-24,-251],[-134,-244],[-331,-348],[-229,-248],[-214,-258],[-142,-241],[-53,-91],[-53,-90],[-222,-437],[-132,-513],[-87,-395],[-31,-333],[-28,-275],[-29,-275],[-82,-395],[-133,-395],[-129,-403],[-190,-263],[-184,-279],[-252,-193],[-308,-171],[-287,-155],[-279,-110],[-358,-192],[-272,-162],[-251,-213],[-108,-134],[-54,-67],[-54,-67],[-262,-356],[-299,-267],[-445,-275],[-427,-131],[-323,-117],[-318,-108],[-126,-39],[-126,-39],[-195,55],[-180,178],[-246,472],[-282,535],[-261,503],[-400,643],[-527,741],[-206,308],[-234,314],[-268,410],[-224,338],[-314,458],[-129,126],[-88,35],[-129,-10],[-146,-15],[-152,-50],[-192,-99],[-185,-93],[-253,-116],[-366,-89],[-215,-35],[-102,11],[-167,17],[-145,49],[-123,43],[-264,104],[-383,184],[-162,100],[-161,109],[-251,199],[-109,65],[-155,110],[-188,154],[-283,306],[-126,192],[-218,268],[-96,85],[-122,20],[-300,-35],[-366,-75],[-277,-59],[-284,20],[-231,59],[-347,165],[-333,174],[-371,99]],[[689476,645508],[-148,230],[-148,230],[-52,63],[-90,126],[-19,28],[0,30],[-3,21],[29,44],[24,31],[4,36],[-1,30],[-20,34],[-30,90],[-13,75],[-36,67],[-45,50],[-48,35],[-49,-5],[-30,12],[-8,45],[25,44],[24,43],[53,67],[7,80],[-41,107],[-141,189],[-97,120],[-163,164],[-57,34],[-26,45],[-61,-17],[-76,59],[-67,53],[-41,81],[-29,58],[-14,37],[-6,27],[-9,41],[-27,77],[-24,37],[-31,11],[-55,8],[-31,0],[-27,3],[-21,3],[-19,19],[-23,16],[-54,27],[-50,-2],[-43,7],[-46,33],[-22,32],[-19,65],[3,42],[18,32],[47,43],[54,37],[39,23],[24,13],[39,19],[30,58],[28,56],[21,67],[21,84],[8,95],[16,83],[10,63],[-1,28],[0,30],[-7,40],[0,49],[20,62],[13,65],[0,42],[-12,71],[-14,79],[-9,86],[5,92],[2,42],[-2,90],[-2,89],[-14,57],[-39,43],[-39,42],[-94,119],[-94,120],[-71,87],[-39,36],[-8,48],[-4,65],[-7,22],[-23,6],[-34,-25],[-21,3],[-20,10],[-7,20],[-7,34],[-10,30],[-16,15],[-38,-8],[-53,36],[-35,41],[-54,76],[-81,99],[-47,83],[-31,77],[1,39],[-2,64],[-6,49],[-15,19],[-22,11],[-43,4],[-41,27],[-56,33],[-43,34],[-7,27],[-4,14],[-7,5],[-9,0],[-19,-13],[-8,2],[-7,8],[-7,1],[-9,-2],[-12,-6],[-12,-22],[-15,-24],[-17,-22],[-26,-10],[-17,27],[-23,24],[-16,19],[2,29],[20,23],[19,43],[4,36],[-9,18],[-16,30],[-8,32],[-10,18],[-12,2],[-18,2],[-25,-18],[-26,-7],[-26,10],[-23,33],[-35,60],[-55,64],[-9,37],[14,13],[-15,31],[-25,-22],[-18,8],[6,73],[-30,94],[-50,1],[-16,19],[12,45],[-22,-3],[-11,63],[-32,15],[-39,-25],[-27,24],[-21,5],[-16,-7],[-17,-20],[-23,3],[-13,27],[-19,-11],[-19,-11],[-27,3],[-8,23],[-5,18],[19,51],[20,74],[-1,34],[-27,8],[-25,25],[-21,50],[-44,63],[-19,57],[-23,35],[-37,7],[-40,-15],[-63,-48],[-23,7],[-23,6],[-33,47],[-26,0],[-40,-38],[-10,-31],[-21,8],[-19,40],[-32,19],[-38,12],[-28,-2],[-16,34],[-32,8],[-14,6],[-24,11],[-7,32],[5,23],[23,42],[11,60],[13,36],[-6,43],[-8,33],[-15,38],[-26,27],[-30,12],[-21,14],[-12,12],[1,20],[11,15],[26,1],[9,25],[-1,31],[20,16],[26,29],[8,51],[-9,43],[-38,72],[-49,62],[4,49],[0,54],[17,39],[13,30],[54,36],[27,48],[8,53],[34,18],[27,54],[56,52],[43,13],[40,42],[24,33],[9,41],[2,63],[-20,138],[-9,93],[-5,72],[-3,56],[5,52],[8,38],[28,54],[19,35],[38,51],[17,29],[22,69],[0,64],[2,48],[-6,54],[-22,64],[-2,43],[-8,40],[-22,13],[-10,21],[6,26],[6,32],[-1,57],[7,58],[14,55],[21,46],[34,86],[35,86],[19,60],[-1,84],[6,43],[12,82],[10,47],[10,81],[27,70],[38,62],[48,67],[28,79],[7,67],[-10,55],[-14,57],[-18,55],[-14,48],[-8,43],[-27,70],[-43,74],[-55,48],[-67,39],[-67,40],[-85,102],[-32,72],[-30,84],[-16,110],[0,103],[-30,93],[-35,61],[-22,42],[-16,22],[-11,35],[10,34],[11,33],[6,53],[0,48],[-14,57],[-34,41],[-38,24],[-55,33],[-24,23],[-13,30],[-5,66],[7,57],[-12,65],[-23,69],[-27,37],[-40,41],[-49,57],[-46,32],[-57,40],[-52,34],[-46,27],[-68,32],[-74,32],[-63,26],[-76,29],[-68,21],[-61,8],[-43,17],[-26,23],[-26,27],[-23,28],[-39,62],[-23,74],[4,36],[3,35],[6,38],[6,37],[-4,26],[-4,25],[-33,28],[-42,41],[-21,59],[-21,58],[-42,117],[-38,134],[-31,74],[-48,77],[-56,62],[-50,53],[-24,19],[-48,46],[-51,63],[-36,53],[-28,27],[-59,36],[-32,26],[-28,24],[-54,29],[-46,30],[-45,30],[-48,20],[-45,36],[-62,42],[-40,36],[-29,50],[-46,77],[-22,79],[-15,51],[-9,61],[3,58],[9,61],[15,58],[43,55],[19,17],[6,50],[-7,31],[-27,7],[-14,21],[-1,50],[14,23],[15,28],[-2,43],[-3,43],[2,64],[7,56],[-2,62],[6,90],[3,45],[17,51],[28,97],[4,81],[26,73],[2,91],[3,114],[11,58],[28,54],[17,43],[8,54],[1,42],[4,31],[11,18],[23,21],[34,13],[39,33],[34,11],[50,26],[55,45],[72,59],[62,57],[64,51],[58,26],[47,18],[46,6],[70,14],[46,29],[31,33],[10,59],[-7,75],[-24,95],[-3,60],[30,36],[24,-24],[15,-26],[34,21],[16,60],[19,60],[42,43],[59,60],[54,43],[48,29],[49,43],[58,40],[51,39],[46,45],[51,22],[63,21],[37,43],[28,113],[18,122],[-10,115],[-6,98],[6,98],[21,127],[27,57],[38,105],[45,67],[34,46],[34,40],[19,62],[35,86],[25,57],[14,37],[10,65],[-5,38],[25,19],[36,37],[17,30],[23,33],[13,12],[13,12],[43,-7],[-52,76],[30,11],[21,7],[6,-21],[-7,-25],[19,-9],[14,1],[34,17],[23,18],[35,2],[62,29],[60,45],[26,14],[89,70],[65,91],[28,59],[26,32],[34,9],[53,46],[31,35],[37,46],[32,38],[49,53],[36,21],[78,67],[44,43],[45,48],[35,65],[36,96],[34,62],[68,86],[92,117],[119,146],[120,146],[113,120],[74,79],[40,21],[30,34],[17,41],[8,53],[12,85],[14,32],[35,81],[62,119],[49,94],[82,123],[57,84],[42,82],[42,82],[34,81],[33,81],[44,112],[26,130],[6,158],[-4,147],[-3,96],[-6,166],[-11,203],[-153,1491],[78,-274],[51,-180],[103,-367],[843,-2977],[163,-575],[57,87],[68,73],[48,57],[86,103],[73,122],[71,105],[47,69],[12,40],[11,40],[7,69],[13,116],[-4,93],[-6,120],[15,75],[30,43],[75,62],[115,62],[99,60],[67,36],[84,5],[95,26],[101,12],[127,22],[122,-8],[135,-11],[103,-6],[92,-6],[51,-4],[58,16],[44,11],[53,25],[42,16],[62,5],[88,-14],[62,-31],[54,8],[46,9],[41,5],[52,0],[69,-13],[38,-9],[46,-15],[84,-33],[30,8],[21,30],[25,47],[8,85],[9,165],[2,56],[0,57],[4,21],[33,42],[46,52],[49,47],[58,46],[97,81],[89,75],[85,59],[75,56],[70,58],[37,50],[26,115],[6,39],[13,67],[13,75],[11,83],[13,36],[14,34],[19,30],[23,25],[30,28],[36,36],[29,24],[32,21],[62,32],[49,19],[37,15],[31,6],[42,7],[35,-9],[38,-2],[27,-2],[32,-12],[44,-9],[41,-13],[32,-12],[36,-13],[53,-14],[72,-11],[62,-3],[79,2],[83,8],[69,9],[82,16],[100,-11],[75,0],[155,-34],[40,7],[52,2],[23,20],[31,35],[34,73],[9,56],[6,94],[7,22],[7,45],[10,48],[9,22],[-1,14],[-13,25],[-5,21],[-6,27],[-2,28],[1,40],[3,67],[10,61],[28,77],[18,82],[1,68],[-3,46],[-22,52],[0,67],[17,52],[21,25],[25,27],[47,60],[23,42],[26,67],[23,63],[46,34],[34,10],[46,-5],[85,-23],[99,-43],[91,-34],[73,-28],[24,-9],[28,-13],[48,-7],[58,-6],[58,23],[77,68],[64,62],[55,79],[18,45],[9,90],[-5,135],[-16,111],[-26,163],[-8,136],[7,43],[3,22],[3,22],[10,43],[-7,55],[-25,48],[-4,64],[28,28],[17,25],[-8,30],[-10,35],[0,46],[31,71],[27,30],[36,20],[53,29],[50,43],[56,51],[71,-2],[75,-48],[45,-72],[7,-60],[9,-74],[2,-86],[15,-30],[22,-21],[36,-12],[64,-13],[66,26],[31,60],[20,35],[35,6],[31,21],[34,30],[27,43],[10,24],[10,19],[9,35],[17,39],[24,23],[34,-2],[22,0],[17,0],[10,10],[3,19],[-4,15],[-10,9],[-6,17],[1,28],[9,44],[11,21],[21,7],[8,-3],[12,2],[4,6],[8,10],[14,4],[10,8],[11,37],[18,17],[23,20],[29,62],[21,60],[33,40],[31,40],[55,66],[18,15],[17,15],[72,78],[42,36],[50,56],[45,69],[40,68],[29,33],[29,25],[40,37],[36,23],[39,10],[49,11],[33,7],[25,3],[45,13],[31,8],[25,8],[25,20],[28,17],[27,40],[11,40],[8,58],[-8,73],[-8,90],[-2,81],[8,48],[16,35],[28,17],[41,7],[49,-1],[40,-8],[12,3],[11,3],[10,7],[9,5],[15,23],[25,19],[1,23],[-13,26],[-2,48],[34,96],[42,70],[43,83],[37,83],[43,51],[65,30],[56,24],[36,21],[35,9],[9,17],[9,17],[12,74],[28,40],[5,31],[-10,26],[-13,15],[-4,18],[5,9],[19,19],[17,11],[21,16],[20,33],[23,17],[24,34],[28,27],[22,17],[20,15],[23,21],[22,37],[13,25],[10,15],[14,18],[27,7],[19,-6],[23,-7],[54,-7],[50,1],[35,15],[19,20],[21,49],[10,48],[9,42],[8,50],[8,35],[10,23],[11,13],[17,2],[10,-7],[10,-2],[23,17],[11,22],[7,21],[7,22],[14,12],[14,-1],[18,-12],[15,-16],[10,-3],[9,9],[12,15],[9,8],[13,6],[8,-8],[8,-12],[16,-10],[28,-7],[29,-8],[40,-7],[29,2],[28,-1],[25,-7],[30,2],[31,22],[35,16],[36,2],[36,-3],[30,-12],[34,-15],[29,-11],[24,-4],[19,11],[24,13],[29,17],[31,17],[20,13],[25,3],[14,-21],[18,-36],[16,-16],[23,6],[25,-11],[20,-20],[24,-6],[15,-6],[17,-32],[48,-38],[41,-9],[33,-7],[33,-7],[44,0],[54,-2],[48,-3],[28,-11],[30,-18],[40,-32],[41,-7],[52,-9],[42,-9],[15,14],[-3,27],[-15,28],[-11,34],[-13,72],[-10,48],[-13,43],[-13,39],[-10,35],[-10,35],[-13,27],[-10,9],[-10,7],[-8,-5],[-10,2],[-2,9],[-7,34],[-1,14],[-1,15],[4,21],[12,36],[10,13],[11,12],[16,13],[13,2],[9,6],[8,11],[2,16],[-1,16],[0,20],[4,17],[6,15],[8,7],[19,26],[2,9],[-2,9],[-14,8],[-13,9],[-23,21],[-12,35],[-12,29],[-9,51],[-17,36],[-15,58],[-10,62],[-13,15],[-21,-6],[-26,2],[7,34],[-8,23],[-16,18],[-4,90],[-9,83],[-5,51],[-8,45],[-4,35],[-6,32],[-16,33],[-17,17],[-19,14],[-19,2],[-15,20],[-27,10],[-30,41],[-14,40],[-2,27],[-1,30],[8,18],[11,-1],[13,8],[14,22],[7,30],[-1,36],[12,34],[17,46],[14,10],[28,11],[17,36],[-7,31],[6,21],[17,19],[0,25],[11,23],[41,7],[23,18],[3,45],[19,44],[21,16],[30,76],[10,34],[10,33],[0,54],[10,42],[17,11],[15,66],[11,66],[15,29],[36,5],[55,-4],[23,-7],[26,-5],[38,-16],[19,-24],[8,-40],[19,-23],[19,4],[27,35],[15,69],[-2,31],[-13,14],[-39,14],[-20,22],[-7,14],[-11,59],[16,19],[19,2],[27,-9],[35,-14],[74,-36],[71,-32],[31,-34],[21,-48],[8,-48],[-2,-54],[10,-30],[17,-25],[37,-30],[47,-54],[44,-62],[39,-95],[32,-89],[26,-69],[19,-68],[29,-77],[6,-31],[7,-31],[10,-11],[13,-2],[9,12],[25,58],[26,58],[4,30],[27,23],[20,-7],[20,19],[45,50],[29,24],[34,28],[27,7],[12,11],[16,43],[13,23],[36,15],[11,23],[0,58],[9,46],[8,46],[11,23],[11,3],[6,14],[7,15],[9,28],[4,26],[6,59],[1,43],[8,42],[10,51],[14,26],[11,17],[24,35],[30,40],[31,33],[20,24],[7,27],[2,31],[-9,9],[-10,8],[-10,7],[-4,32],[0,61],[5,35],[22,39],[16,55],[8,67],[-10,25],[12,39],[15,46],[30,31],[19,18],[36,36],[49,31],[19,2],[19,3],[34,-19],[48,-45],[39,-64],[22,-49],[10,-42],[12,-48],[17,-41],[18,-31],[25,-22],[16,-4],[16,-4],[67,-13],[66,-10],[20,16],[12,29],[10,36],[18,55],[21,24],[28,18],[34,15],[39,-1],[37,-4],[32,-16],[34,-14],[44,-32],[34,-18],[29,7],[50,42],[49,57],[16,24],[21,36],[26,16],[49,21],[59,22],[90,40],[50,15],[33,-5],[33,-5],[58,0],[28,-3],[30,5],[25,7],[24,29],[6,28],[10,16],[14,17],[18,6],[16,28],[16,25],[18,33],[26,37],[14,35],[18,16],[24,6],[42,-7],[48,-18],[28,-10],[31,-6],[53,-3],[59,-14],[26,-9],[20,-17],[18,-16],[24,-31],[46,-70],[51,-83],[19,-35],[42,-75],[40,-74],[27,-49],[13,-4],[14,-3],[17,0],[16,3],[28,9],[39,24],[19,9],[19,10],[20,14],[20,14],[24,42],[25,72],[6,48],[1,10],[2,10],[2,31],[17,15],[11,-2],[9,-2],[23,-12],[16,-16],[16,-15],[25,-19],[6,-5],[4,-4],[66,-55],[-4,-23],[-4,-23],[-1,-46],[0,-4],[9,-102],[1,-4],[13,-104],[20,-102],[18,-84],[2,-98],[-21,-85],[-28,-77],[-23,-81],[-15,-54],[-3,-10],[-19,-72],[-2,-69],[6,-57],[14,-70],[38,-99],[2,-4],[39,-81],[42,-69],[34,29],[31,28],[3,2],[52,45],[64,79],[37,53],[21,38],[19,56],[5,41],[25,80],[9,45],[5,45],[-4,37],[-10,56],[-3,55],[4,53],[19,52],[56,71],[52,63],[51,72],[5,8],[30,50],[35,74],[50,168],[80,-59],[62,-40],[71,-58],[27,-17],[28,-18],[66,-62],[13,-13],[3,-3],[67,-60],[47,-55],[2,-2],[44,-71],[52,-118],[37,-86],[37,-85],[44,-75],[40,-29],[52,-16],[71,-23],[55,-21],[56,-21]],[[688620,313247],[70,-211],[25,-77],[47,-142],[380,-1145],[324,-976],[510,-1538],[933,-2814],[178,-537],[829,-2502],[791,-2383],[995,-3003],[903,-2724],[798,-2407],[878,-2646],[698,-2106],[519,-1567],[2980,-8985],[232,-700],[449,-1050],[449,-1051]],[[701608,274683],[-4492,-5226],[-1538,-1790],[-381,-443],[-723,-841],[-974,-1134],[-889,-1033],[-37,-99],[-5362,-14086],[-4589,-12057],[-4,-10],[-52,-139],[-1265,-3324],[-89,-232],[-55,-144],[-894,-2350],[-774,-2034],[-9,-17],[-526,-532],[-1938,-1957],[-6967,-7035]],[[670050,220200],[206,-888],[2034,-8756],[251,-1079],[14,-61],[1154,-4967],[14,-58],[355,-1529],[-588,-690],[-296,-346],[-503,-589],[-1120,-1312],[709,-1240],[194,-338],[166,-291],[623,-1089],[346,-676],[7,-13],[1076,-1904],[-3,-110],[17,-89],[-5,-96],[83,-117]],[[674784,193962],[-3161,-3669],[-7969,-9764],[-293,-360],[-217,-265],[105,-73],[105,-74],[261,-269],[317,-531],[282,-605],[213,-568],[289,-815],[163,-629],[69,-384],[50,-283],[60,-341],[25,-663],[-2,-44],[-32,-709],[-66,-526],[-115,-493],[-1,-3],[-160,-535],[-214,-587],[-116,-223],[-116,-222],[-208,-249],[-209,-248],[-119,-194],[-211,-388],[-188,-228],[-226,-94],[-84,-19],[-292,-66],[-302,-29],[-297,97],[-122,-190],[-1,-2],[-12,-3],[-170,-53],[-326,123],[-76,-246],[-1,-1],[-91,-74],[-316,46],[-6,-478],[-1,-26],[0,-32],[-26,-1891],[-29,-2117]],[[660948,164965],[-775,63],[-2155,176],[-1693,138],[-267,22],[-916,70],[-8693,659],[-2311,122],[-1637,86],[-3383,-15],[-1452,-56]],[[637666,166230],[439,3703],[618,5225],[127,1073],[85,723],[-234,271],[-235,328],[-124,213],[-156,552],[-138,141],[-96,166],[-66,261],[-83,130],[-107,182],[-112,337],[-40,272],[-41,177],[-158,299],[-111,237],[-159,417],[-155,359],[-152,240],[-94,493],[-30,423],[13,500],[26,154],[43,268],[156,437],[45,129],[38,386],[17,261],[69,266],[128,319],[102,154],[76,115],[87,84],[80,51],[145,382],[65,258],[16,90],[11,66],[12,67],[5,30],[3,20],[2,12],[2,9],[83,478],[2,14],[0,2],[18,100],[42,246],[99,572],[4,23],[5,25],[125,728],[5,24],[4,25],[76,440],[18,102],[15,87],[15,86],[7,40],[3,21],[4,21],[10,59],[85,490],[9,53],[8,49],[94,542],[326,1883],[103,595],[379,2191],[15,89],[5,26],[3,20],[1,7],[17,96],[710,4103],[22,131],[6,35],[6,35],[15,82],[195,1128],[12,68],[3,22],[5,25],[9,55],[75,431],[19,114],[101,580],[24,139],[5,30],[5,27],[13,79],[342,1978],[-1724,497],[-43,13],[-5,1],[-5,2],[-22,6],[-2142,618],[-2264,654],[-8,2],[-14,4],[-12266,3541],[-2021,584]],[[620418,210628],[12,198],[117,1812],[497,7721],[11,174],[11,175],[606,9414],[9,136],[100,1553],[17,263],[844,13112]],[[622642,245186],[48,-65],[48,-65],[137,-183],[137,-184],[231,-323],[162,-210],[243,-122],[434,9],[276,27],[277,27],[223,31],[171,11],[162,-59],[166,-7],[212,-4],[342,-17],[52,-30],[335,-188],[378,-247],[224,-146],[521,-314],[295,-166],[129,-88],[139,-69],[116,-48],[69,-21],[376,196],[269,31],[157,52],[71,34],[139,73],[93,82],[87,90],[37,75],[27,103],[27,104],[69,147],[194,279],[615,998],[153,240],[148,172],[71,45],[105,31],[105,21],[136,-7],[139,-48],[114,-55],[83,-76],[79,-100],[228,-303],[256,-378],[100,-131],[156,-67],[122,19],[187,48],[105,110],[132,131],[119,83],[200,96],[206,186],[146,89],[164,110],[96,248],[633,2249],[89,262],[61,144],[113,148],[148,141],[173,107],[142,43],[161,-19],[126,-31],[187,-79],[168,-93],[126,-96],[105,-117],[91,-28],[91,31],[107,103],[92,121],[66,65],[1732,963],[240,140],[166,87],[101,14],[89,-28],[52,-19],[52,-18],[121,-93],[101,-121],[91,-113],[1349,-1287],[368,-350],[118,-100],[98,-66],[94,-32],[61,-5],[73,37],[46,43],[46,43],[286,337],[102,121],[381,408],[281,341],[100,142],[88,75],[204,175],[105,158],[89,208],[-6,525],[-44,233],[-33,225],[11,208],[-39,208],[53,213],[-20,179],[-11,250],[72,175],[91,64],[91,65],[218,121],[13,19],[5,8],[73,114],[116,67],[122,-100],[94,-113],[47,-162],[30,-150],[102,-21],[37,-54],[38,-54],[58,-221],[29,-9],[48,-16],[218,79],[47,17],[69,67],[16,79],[45,158],[99,179],[32,64],[308,602],[44,92],[41,58],[41,59],[97,106],[83,10],[135,13],[260,-42],[25,-3],[826,-98],[479,-111],[152,21],[148,124],[21,17],[684,750],[183,187],[71,154],[-11,163],[174,204],[174,29],[28,69],[-9,56],[69,37],[61,0],[86,-195],[41,-65],[39,25],[4,48],[48,37],[57,-18],[65,-57],[52,30],[47,60],[-43,50],[-18,64],[-29,69],[40,69],[166,75],[91,-42],[193,25],[92,13],[38,-54],[61,-5],[50,92],[48,106],[3,50],[56,44],[64,4],[44,81],[23,48],[54,25],[15,-27],[-5,-29],[34,-23],[21,10],[24,63],[35,25],[60,-18],[248,103],[39,56],[29,134],[74,225],[75,187],[18,110],[12,117],[165,435],[59,167],[8,34],[2,62],[-7,88],[-15,125],[-22,109],[-19,66],[-23,55],[-25,54],[-12,43],[2,63],[9,99],[5,89],[0,91],[-6,85],[-6,157],[-6,54],[-15,53],[-29,53],[-17,41],[-3,34],[4,85],[1,83],[-15,90],[-20,65],[-3,64],[35,99],[34,56],[54,85],[32,68],[20,93],[9,82],[-1,165],[14,44],[30,55],[39,90],[10,61],[-2,46],[10,42],[26,73],[24,74],[16,81],[15,111],[13,135],[64,94],[82,88],[55,6],[53,-9],[72,97],[80,88],[296,492],[368,598],[311,530],[68,155],[49,187],[55,263],[93,441],[335,1592],[190,1099],[1024,7407],[612,3742],[456,1501],[94,312],[103,251],[337,823],[150,367],[2195,3887],[1495,2135],[1670,1752],[636,611],[636,612],[704,647],[703,646],[1074,987],[716,575],[655,247],[164,26],[570,89],[693,61],[173,-24],[123,-33],[54,-33],[79,-66],[82,-48],[115,-51],[117,-39],[66,-30],[67,-78],[42,-90],[38,-92],[22,-114],[6,-129],[-12,-117],[-18,-75],[0,-66],[21,-68],[29,-43],[39,-24],[40,-24],[84,-42],[53,-21],[346,6],[513,-57],[159,-9],[90,-9],[57,-33],[26,-63],[26,-75],[44,-36],[59,-18],[80,42],[69,61],[42,86],[48,27],[31,-30],[31,-29],[37,-34],[52,12],[60,45],[101,39],[106,37],[81,14],[40,-39],[10,-72],[-8,-90],[-6,-87],[10,-90],[16,-105],[18,-90],[39,-75],[72,-114],[64,-41],[137,-10],[304,21],[68,39],[59,39],[52,54],[38,75],[67,162],[44,105],[56,27],[41,21],[54,-6],[43,-5],[35,32],[43,141],[26,126],[30,102],[36,93],[75,114],[120,138],[169,216],[97,66],[103,6],[88,-21],[147,-246],[56,-72],[28,-25],[25,-32],[36,-39],[32,-9],[32,30],[22,42],[-10,54],[-28,135],[12,239],[8,273],[16,141],[33,57],[66,33],[80,-27],[57,-99],[118,-60],[77,-27],[159,-18],[119,-45],[68,-72],[93,-156],[72,-143],[47,-59],[19,-13],[20,-12],[49,18],[56,78],[44,114],[24,100],[65,88],[96,21],[91,0],[60,57],[21,90],[28,210],[66,294],[-2,102],[-24,72],[-50,30],[-55,9],[-74,-45],[-250,-81],[-68,3],[-37,44],[15,85],[38,96],[58,117],[53,159],[64,33],[91,21],[151,33],[209,45],[300,66],[80,24],[48,48],[20,69],[-6,78],[-56,90],[-88,117],[-103,78],[-71,69],[-43,77],[-41,100],[-84,168],[-75,165],[-60,78],[-63,27],[-56,-18],[-70,-93],[-63,-18],[-34,-24],[-89,-18],[-64,63],[-60,66],[-55,21],[-46,-9],[-38,-126],[-39,-118],[-44,-41],[-60,42],[-40,78],[-4,93],[32,87],[40,60],[12,81],[20,66],[67,42],[78,42],[12,45],[-38,78],[-58,111],[-93,75],[-64,47],[-18,72],[20,96],[8,42],[51,67],[118,74],[92,141],[63,24],[32,-15],[12,-49],[-10,-134],[16,-138],[103,-96],[243,-48],[144,-16],[122,40],[88,90],[39,132],[16,174],[16,126],[56,78],[111,-6],[112,-30],[179,-18],[250,84],[191,132],[207,126],[123,108],[60,132],[71,114],[84,6],[155,-51],[127,-9],[123,60],[64,66],[8,138],[1,96],[-46,97],[-61,76],[-96,32],[-91,13],[-79,-29],[-54,-3],[-87,35],[-95,75],[-51,60],[-24,67],[-7,70],[-9,65],[0,54],[24,64],[71,0],[64,-3],[81,-26],[47,-11],[42,0],[30,46],[43,272],[5,177],[-14,81],[-27,140],[-103,450],[-40,257],[3,100],[1,54],[26,60],[9,20],[51,42],[47,-14],[59,-72],[46,-119],[23,-105],[16,-212],[36,-163],[34,-135],[46,-99],[46,-67],[57,-71],[35,-24],[35,-23],[13,-6],[15,-8],[12,-5],[29,-14],[80,-11],[103,33],[100,63],[190,213],[108,157],[72,66],[55,33],[59,23],[47,38],[78,14],[72,-11],[63,-34],[48,23],[72,49],[54,72],[44,72],[31,91],[51,77],[39,31],[48,1],[47,1],[77,0],[59,-41],[51,-58],[14,-77],[39,-169],[9,-81],[9,-81],[11,-172],[-18,-113],[-35,-138],[-16,-58],[-26,-85],[-16,-72],[5,-74],[18,-67],[55,-71],[35,-17],[29,0],[55,102],[106,108],[62,171],[22,119],[-5,93],[-22,114],[-48,143],[-16,91],[13,64],[36,66],[50,25],[64,-25],[91,-25],[81,-55],[84,-89],[93,-80],[35,-58],[11,-77],[-29,-94],[-57,-110],[0,-88],[13,-45],[38,6],[51,77],[52,144],[78,201],[147,290],[60,174],[24,196],[22,121],[9,122],[-2,160],[-29,140],[-73,152],[-44,80],[-44,97],[-33,105],[-20,118],[-9,105],[12,89],[39,74],[51,77],[49,43],[169,81],[104,56],[36,16],[35,17],[15,27],[10,57],[17,103],[26,144],[33,119],[49,110],[48,55],[71,17],[55,-14],[101,-39],[97,22],[151,75],[126,100],[156,123],[59,100],[51,83],[35,107],[11,99],[-11,108],[-30,130],[-40,74],[6,71],[47,62],[84,36],[57,-47],[38,-58],[32,-133],[98,-71],[66,-39],[66,-39],[51,-74],[44,-83],[33,-127],[15,-102],[45,-36],[48,11],[42,22],[17,66],[7,69],[26,94],[25,89],[50,90],[228,169],[172,94],[57,77],[27,72],[-3,63],[-52,97],[-33,41],[-54,14],[-46,-3],[-39,-49],[-9,-61],[-66,-146],[-71,-72],[-53,-3],[-30,104],[-19,73],[-28,83],[-38,46],[-29,47],[-17,78],[4,47],[18,77],[16,63],[17,72],[22,243],[13,132],[16,171],[20,149],[22,133],[46,55],[77,39],[71,36],[66,44],[35,80],[22,132],[29,86],[51,44],[83,36],[82,38],[47,53],[39,105],[22,96],[31,33],[60,47],[55,14],[31,-25],[35,-60],[38,-42],[46,-33],[71,-3],[34,-11],[34,-11],[62,-38],[39,-56],[22,-69],[2,-69],[36,-46],[59,-28],[42,39],[44,16],[38,-16],[22,-50],[-3,-73],[-17,-73],[15,-67],[31,-85],[50,-23],[54,15],[49,69],[26,96],[46,44],[66,138],[36,125],[15,143],[-2,138],[-9,108],[-9,63],[-15,119],[35,60],[33,25],[34,-41],[48,-102],[49,-102],[63,-36],[42,38],[42,58],[9,86],[-13,91],[-29,83],[-62,135],[-19,41],[6,57],[24,43],[36,14],[54,-21],[41,-62],[50,-144],[55,-60],[45,16],[46,69],[15,77],[-2,100],[-13,102],[-51,174],[-77,171],[-70,83],[-42,77],[-12,113],[11,91],[86,66],[128,61],[80,22],[48,-41],[53,-83],[45,-152],[33,-108],[44,-49],[31,25],[13,80],[-16,118],[-50,138],[-42,136],[-16,149],[14,132],[4,80],[53,102],[55,25],[64,22],[53,6],[71,5],[64,33],[39,53],[14,63],[-27,53],[-95,124],[-73,94],[-27,107],[-8,83],[7,72],[35,107],[7,83],[15,102],[40,86],[44,30],[35,-14],[44,-66],[36,-94],[92,-91],[60,-52],[81,-36],[33,33],[7,55],[-20,72],[-51,124],[-41,163],[-9,174],[-5,146],[31,290],[27,232],[6,231],[-9,166],[3,91],[39,88],[69,31],[79,38],[86,122],[14,52],[-23,44],[-66,20],[-62,-33],[-41,41],[-51,157],[-24,130],[-56,138],[-72,91],[-47,55],[-4,59],[9,49],[11,32],[24,20],[18,94],[2,77],[-55,89],[-35,47],[-14,19],[-13,58],[15,88],[38,99],[57,80],[64,58],[34,16],[57,26],[61,39],[38,24],[108,6],[59,-33],[33,-50],[5,-99],[-15,-108],[-1,-47],[6,-31],[5,-19],[23,-21],[19,-17],[93,72],[73,159],[66,75],[101,42],[69,-20],[20,-58],[63,-20],[30,-63],[64,50],[22,97],[-47,160],[-29,210],[-2,148],[210,111],[116,78],[116,78]],[[687492,312174],[102,29],[-88,101],[-84,91],[-58,79],[4,49],[30,45],[57,42],[178,85],[49,29],[56,11],[31,25],[19,50],[-2,82],[-32,52],[-57,7],[-49,28],[-32,52],[-31,116],[-2,59],[16,60],[22,67],[40,39],[35,-7],[36,6],[30,16],[108,139],[39,60],[-11,72],[-33,51],[-36,9],[-69,-21],[-64,-43],[-59,-7],[-43,42],[-3,65],[22,79],[77,73],[50,48],[63,31],[62,22],[69,-33],[99,-65],[124,-115],[110,-64],[99,-34],[84,29],[70,47],[77,45],[56,43],[37,-9],[27,-38],[18,-63],[7,-32],[-10,-47],[-60,-91],[-42,-47],[-30,-90],[-2,-101],[11,-47],[11,-48]],[[468160,445644],[-75,58],[-74,46],[-48,20],[-31,7],[-38,-3],[-29,-4],[-16,-5],[-10,-8],[-25,-29],[-11,-20],[-7,-17],[-3,-22],[4,-16],[11,-23],[6,-23],[2,-51],[-4,-55],[-8,-92],[-15,-145],[-12,-79],[-2,-14],[0,-3],[-7,-48],[-33,-86],[-63,-49],[-45,-86],[-45,-185],[-74,-315],[-72,-375],[-51,-279],[-51,-212],[-51,-190],[-43,-132],[-63,-88],[-56,-49],[-62,-26],[-72,20],[-36,44],[-28,33],[-5,7],[-4,4],[-55,39],[-144,72],[-149,40],[-109,14],[-48,-12],[-58,-69],[-40,-59],[-23,-68],[-14,-50],[-37,-139],[-27,-150],[-63,-197],[-87,-168],[-26,-32],[-24,-28],[-48,-43],[-87,-69],[-84,-4],[-74,27],[-64,45],[-87,52],[-83,24],[-72,12],[-27,-3],[-73,-10],[-77,-58],[-415,-360],[-6,-6],[-108,-84],[-250,-195],[-196,-153],[-61,-48],[-80,-55],[-146,-101],[-181,-125],[-199,-147],[-168,-144],[-175,-169],[-200,-161],[-2,-1],[-9,-8],[-146,-84],[-10,-6],[-180,-79],[-90,-43],[-309,-110],[-284,-109],[-136,-79],[-28,-16],[-187,-135],[-197,-166],[-45,-54],[-89,-106],[-65,-101],[-73,-173],[-75,-214],[-81,-166],[-154,-237],[-126,-168],[-92,-140],[-103,-160],[-101,-154],[0,-1],[-419,-646],[-57,-87],[-236,-364],[-894,-1375],[-11,-17],[-163,-251],[-70,-109],[-1175,-1790],[-659,-1004],[-40,-62],[12,-40],[3,-9],[6,-58],[2,-15],[1,-87],[145,-194],[82,-166],[39,-198],[1,-199],[2,-204],[0,-20],[-27,-518],[6,-157],[55,-142],[119,-217],[107,-232],[138,-239],[92,-171],[39,-134],[0,-236],[-19,-213],[-80,-263],[-107,-167],[-145,-160],[-82,-161],[-12,-164],[12,-250],[71,-385],[114,-411],[85,-252],[11,-31],[10,-25],[23,-63],[42,-79],[82,-121],[22,-68],[16,-80],[13,-93],[21,-99],[3,-145],[-14,-94],[1,-71],[14,-70],[90,-212],[24,-60],[33,-89],[28,-100],[7,-50],[2,-35],[-2,-48],[-15,-75],[-180,-303],[-19,-33],[-155,-270],[-152,-238],[-73,-86],[-96,-115],[-212,-253],[-245,-276],[-261,-119],[-98,33],[-87,-53],[-89,18],[-109,60],[-63,123],[-36,71],[-40,31],[-58,39],[-61,-2],[-153,-41],[-162,20],[-69,29],[-29,74],[-98,303],[-93,54],[-98,-10],[-92,-72],[-79,-49],[-79,-21],[-51,-420],[-67,-542],[-1,-272],[127,-599],[-11,-121],[-16,-162],[-60,-209],[-162,-631],[-243,-735],[-79,-107],[-73,-49],[-139,4],[-187,-53],[-112,-12],[-78,-62],[-49,-57],[-36,-148],[19,-172],[-27,-217],[-65,-201],[-38,-128],[19,-181],[62,-278],[-2,-426],[-21,-121],[-24,-135],[-89,-207],[-142,-242],[-119,-157],[-218,-191],[-35,-30],[-3,-2],[-32,-29],[-90,-79],[-176,-160],[-63,-21],[-59,34],[-136,149],[-70,41],[-84,51],[-199,22],[-23,2],[-177,68],[-110,62],[-89,108],[-78,130],[-54,71],[-53,37],[-67,13],[-91,3],[-65,7],[-146,16],[-176,58],[-12,6],[-104,48],[-86,41],[-135,67],[-114,62],[-115,45],[-82,23],[-195,62],[-66,27],[-44,39],[-76,86],[-148,281],[-60,113],[-36,106],[-32,162],[20,201],[-7,70],[-13,70],[-89,163],[-175,205],[-37,29],[-54,4],[-75,-23],[-97,-16],[-106,9],[-100,43],[-99,71],[-324,271],[-56,39],[-65,-8],[-41,-25],[-139,-466],[-180,-543],[-205,-621],[-91,-496],[-78,-336],[-51,-297],[-45,-157],[-105,-79],[-151,-53],[-274,-78],[-396,-28],[-473,0],[-139,-52],[-827,-314],[-60,-78],[-44,-56],[-4,-155],[-4,-154],[34,-116],[1,-4],[81,-269],[89,-397],[-5,-341],[-6,-341],[37,-317],[21,-365],[37,-238],[68,-222],[169,-262],[121,-226],[14,-28],[53,-99],[-15,-258],[-40,-223],[-43,-144],[-134,-31],[-182,31],[-243,265],[-185,-24],[-122,-16],[-54,-138],[-76,-194],[-149,-237],[-191,-117],[-337,-7],[-176,-134],[-143,-309],[-178,-432],[-83,-305],[6,-215],[217,-473],[78,-234],[-21,-235],[-98,-392],[-113,-405],[-408,-383],[-291,-73],[-311,-254],[-250,-344],[-145,-117],[-149,14],[-234,173],[-279,94],[-327,-55],[-186,-117],[-109,-133],[-235,-362],[-350,-356],[-305,-192],[-382,-141],[-313,-45],[-279,34],[-343,254],[-297,176],[-183,0],[-145,-47],[-182,-70],[-161,-152],[-128,52],[-132,49],[-37,13],[-183,68],[-324,122],[-13,5],[-112,23],[-83,-36],[-62,-94],[-43,-134],[-61,-287],[-72,-399],[-1,-6],[-4,-22],[-23,13],[-38,82],[-1804,3954]],[[434428,409784],[37,-5],[31,-5],[32,-8],[36,-3],[14,7],[13,13],[7,10],[8,14],[9,23],[2,9],[3,16],[0,2],[1,49],[0,92],[6,70],[17,43],[12,19],[2,4],[27,22],[20,22],[14,44],[5,21],[3,12],[9,19],[10,12],[10,13],[8,28],[15,29],[13,22],[10,10],[10,1],[82,10],[93,0],[15,0],[16,-6],[6,-3],[6,-2],[1,0],[21,-12],[14,0],[31,18],[20,17],[13,10],[13,5],[18,3],[5,1],[28,-17],[32,-9],[19,-20],[15,-11],[12,-13],[14,-10],[17,-14],[26,-13],[21,-6],[17,-5],[18,1],[14,13],[23,36],[19,13],[14,3],[20,5],[24,18],[13,17],[2,4],[4,7],[1,1],[3,5],[2,4],[9,15],[3,5],[13,33],[16,40],[11,45],[0,27],[-1,19],[-8,15],[-28,23],[-12,21],[-5,20],[1,17],[11,48],[30,102],[25,73],[11,28],[6,26],[6,23],[7,26],[0,18],[-2,21],[-9,34],[-10,27],[-19,34],[-22,27],[-26,26],[-14,10],[-15,12],[-50,30],[-25,12],[-31,8],[-41,1],[-32,-3],[-37,-6],[-39,-17],[-48,-27],[-55,-45],[-31,-29],[-24,-10],[-21,1],[-21,2],[-22,-3],[-22,-10],[-15,-8],[-17,-6],[-23,6],[-21,15],[-3,2],[-34,26],[-26,19],[-34,39],[-37,14],[-17,2],[-30,-9],[-45,5],[-46,15],[-52,27],[-66,31],[-45,33],[-29,28],[-20,22],[-13,20],[-22,20],[-14,16],[-14,21],[-4,26],[-4,16],[-6,7],[-11,4],[-27,0],[-31,-4],[-29,-1],[-29,5],[-25,8],[-16,14],[-14,16],[-8,20],[-9,30],[-4,24],[-3,29],[0,20],[8,21],[6,7],[3,3],[4,4],[1,2],[4,4],[29,35],[40,66],[25,59],[30,81],[23,75],[9,36],[7,46],[4,42],[0,6],[2,75],[4,90],[0,1],[5,41],[10,38],[35,102],[18,46],[2,5],[3,9],[1,4],[6,20],[13,44],[0,1],[4,23],[8,100],[4,22],[1,5],[6,27],[11,35],[36,89],[27,82],[24,75],[53,133],[20,63],[15,51],[7,31],[3,16],[-6,15],[-12,13],[-64,39],[-93,57],[-29,21],[-3,14],[3,14],[17,29],[41,44],[48,46],[69,84],[16,23],[0,31],[-31,86],[-79,146],[-20,29],[-3,30],[4,23],[20,30],[37,103],[10,34],[25,70],[24,48],[2,4],[30,45],[34,54],[34,47],[45,60],[72,113],[91,131],[62,73],[13,48],[12,89],[15,85],[17,60],[53,113],[46,144],[9,49],[-6,28],[-48,26],[-24,23],[-13,39],[-1,40],[6,96],[-7,50],[-10,74],[-3,82],[14,32],[-5,177],[-2,122],[4,70],[5,25],[9,48],[-1,44],[-2,108],[-1,96],[9,66],[13,46],[42,125],[14,67],[1,65],[12,80],[26,55],[21,81],[7,76],[-3,66],[-1,69],[9,69],[16,11],[11,5],[10,5],[2,19],[5,61],[3,84],[-5,84],[5,26],[10,24],[20,14],[50,20],[15,24],[3,23],[1,31],[-11,30],[-23,37],[-22,21],[-14,22],[-7,30],[3,74],[13,23],[23,11],[71,33],[73,1],[60,-6],[18,1],[8,15],[6,28],[0,20],[-7,32],[-11,42],[-10,45],[-5,39],[-1,29],[0,4],[8,38],[19,26],[18,20],[33,32],[13,20],[-1,39],[-15,50],[-22,43],[-21,44],[-16,33],[-8,31],[-6,42],[-6,52],[-5,95],[0,101],[11,76],[20,53],[16,49],[33,56],[34,59],[15,49],[1,33],[-5,20],[-17,15],[-47,37],[-13,15],[-2,19],[6,32],[35,62],[30,81],[24,61],[20,43],[1,35],[-5,30],[-25,24],[-38,19],[-28,16],[-10,17],[-4,25],[3,19],[11,10],[25,4],[47,1],[33,11],[29,25],[25,42],[22,53],[5,39],[1,28],[-8,27],[-18,14],[-53,8],[-23,13],[-7,14],[5,17],[8,22],[65,90],[77,100],[21,41],[11,28],[-4,26],[-9,37],[-69,80],[-45,27],[-27,47],[-24,30],[-4,36],[12,45],[10,50],[11,48],[16,53],[29,73],[6,39],[-6,44],[-23,46],[-13,32],[9,23],[16,18],[34,23],[26,38],[17,39],[18,40],[8,40],[17,42],[31,55],[29,19],[27,48],[31,25],[11,9],[5,5],[5,15],[-1,11],[0,21],[7,39],[7,39],[11,141],[3,37],[3,45],[-6,44],[-12,48],[-28,83],[-36,178],[-15,88],[4,39],[20,28],[6,62],[-10,54],[-17,71],[6,32],[35,16],[41,27],[32,20],[17,25],[0,32],[-12,23],[-22,28],[-30,15],[-34,21],[-21,46],[2,37],[17,27],[36,12],[37,8],[27,19],[0,39],[-20,17],[-40,3],[-55,-4],[-57,-24],[-59,-26],[-58,-2],[-51,12],[-40,15],[-17,19],[-8,34],[-4,50],[3,46],[5,43],[-10,39],[-19,34],[-36,43],[-65,85],[-15,24],[0,30],[18,36],[17,85],[9,19],[24,8],[17,20],[3,53],[11,23],[14,6],[16,15],[5,20],[5,30],[21,50],[8,19],[2,6],[4,8],[3,8],[3,6],[0,2],[26,84],[15,80],[14,57],[17,95],[1,46],[1,75],[3,114],[13,72],[18,50],[11,21],[11,26],[0,26],[1,32],[-5,82],[-7,50],[3,47],[4,69],[7,47],[15,14],[19,10],[24,-7],[24,0],[11,17],[19,35],[16,58],[22,26],[21,21],[35,33],[25,29],[2,3],[53,52],[2,2],[3,6],[11,25],[2,13],[3,19],[1,4],[0,2],[0,1],[1,5],[-5,248],[3,39],[11,24],[35,48],[27,45],[22,54],[2,58],[-10,42],[5,37],[18,45],[27,50],[25,55],[2,35],[-8,26],[-34,43],[-30,55],[-11,43],[-3,9],[-9,53],[-8,45],[-9,45],[-2,42],[-1,23],[3,23],[13,11],[23,1],[31,-5],[20,-14],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[13,-9],[99,-60],[44,0],[34,25],[17,38],[12,65],[-15,92],[-11,54],[-36,103],[-32,71],[-53,105],[-8,52],[14,39],[45,60],[44,84],[30,188],[4,114],[-11,137],[-25,164],[-19,135],[-23,77],[-7,119],[-16,67],[-3,70],[21,74],[13,83],[-9,72],[-33,70],[-44,58],[-13,51],[29,47],[50,53],[59,63],[46,26],[34,49],[0,49],[-11,54],[-14,54],[5,37],[-9,44],[-8,45],[8,43],[26,21],[48,12],[42,42],[10,65],[-9,49],[-9,59],[14,42],[42,14],[37,2],[20,44],[-13,42],[-27,23],[-44,14],[-11,26],[8,56],[36,75],[32,0],[22,25],[20,61],[6,109],[-3,91],[-14,53],[5,59],[21,52],[27,84],[-11,58],[-22,101],[5,83],[17,63],[34,49],[-5,50],[4,35],[28,11],[32,28],[58,60],[25,45],[8,53],[-1,49],[-15,35],[-19,29],[-21,13],[-17,25],[-9,36],[-20,49],[-30,-9],[-21,-36],[-28,-4],[-29,4],[-33,42],[-18,68],[-22,46],[-11,46],[-14,50],[-31,14],[-26,17],[-38,87],[-8,48],[9,93],[33,97],[28,90],[39,79],[24,44],[32,30],[66,91],[56,79],[73,66],[12,121],[25,47],[51,46],[54,33],[5,72],[-27,79],[0,54],[51,154],[68,112],[99,7],[30,23],[64,182],[33,161],[-6,126],[-44,137],[-37,77],[-3,45],[51,149],[54,107],[25,58],[-17,213],[11,99],[20,106],[-12,130],[-37,355],[-5,199],[25,482],[21,90],[30,60],[92,162],[79,147],[62,168],[9,84],[-4,60],[7,82],[41,49],[21,39],[42,28],[11,33],[20,61],[-9,44],[20,42],[29,33],[59,28],[66,30],[74,28],[214,67],[18,26],[-3,49],[-8,47],[-7,46],[37,33],[60,54],[0,60],[2,57],[37,20],[49,0],[36,-9],[41,16],[24,33],[15,95],[25,168],[26,117],[22,130],[14,115],[31,126],[52,79],[60,65],[59,68],[20,93],[6,98],[24,65],[41,117],[19,114],[8,163],[17,145],[27,150],[56,169],[-8,42],[-24,14],[-150,-53],[-144,-33],[-127,-23],[-65,11],[-40,47],[-34,79],[-52,145],[-44,102],[-43,145],[-40,175],[28,150],[54,134],[62,93],[75,57],[93,69],[42,94],[24,86],[-20,112],[-51,84],[-99,32],[-105,-7],[-111,7],[-76,73],[-35,93],[-22,135],[30,77],[72,91],[31,103],[-34,90],[-43,157],[15,182],[22,135],[-11,98],[-52,116],[-96,138],[-59,18],[-12,35],[17,22],[58,23],[51,16],[61,65],[116,70],[86,-4],[85,-38],[88,-35],[162,-44],[84,37],[88,108],[68,191],[84,238],[102,275],[-19,67],[-32,42],[4,42],[21,17],[63,51],[111,137],[68,87],[23,60],[5,68],[-17,89],[-39,160],[-31,178],[-28,345],[109,257],[111,232],[-13,247],[44,229],[80,270],[67,327],[47,273],[6,230],[-8,129],[-1,2],[-18,254],[3,310],[71,355],[38,94],[14,35],[24,103],[13,52],[1,3],[6,28],[1,5],[47,262],[19,185],[21,208],[14,358],[14,277],[10,119],[12,137],[44,318],[39,192],[45,323],[-3,94],[-25,91],[-52,61],[-82,47],[-66,1],[-88,-71],[-69,-94],[-43,-70],[-66,-47],[-120,-26],[-150,-22],[-102,-16],[-100,-37],[-109,-46],[-37,11],[-43,24],[-37,62],[-7,38],[-11,67],[-9,156],[-27,114],[-41,104],[-84,226],[-110,279],[-32,72],[-33,72],[-100,165],[-27,43],[-73,115],[-69,111],[-90,167],[-87,199],[-22,51],[-59,134],[-144,332]],[[437990,453456],[36,31],[28,25],[271,236],[25,19],[478,372],[174,88],[193,53],[154,-10],[184,-38],[208,-66],[218,-96],[193,-91],[225,-180],[250,-186],[118,-108],[85,-121],[68,-167],[47,-175],[130,-716],[58,-153],[67,-99],[182,-118],[471,-207],[570,-189],[427,-167],[232,-102],[94,-27],[49,0],[48,0],[218,32],[68,-8],[85,-29],[88,-84],[91,-91],[91,-73],[126,-62],[119,-49],[126,-56],[127,-57],[157,-81],[81,-40],[107,-54],[112,-38],[453,-72],[270,-22],[254,19],[239,79],[198,92],[10,6],[55,35],[16,10],[133,85],[207,199],[140,200],[109,218],[151,417],[63,62],[45,7],[53,7],[250,-103],[173,-88],[145,-95],[125,-113],[119,-132],[134,-145],[148,-130],[292,-272],[15,-15],[256,-251],[296,-453],[275,-517],[279,-490],[109,-108],[166,-118],[75,-22],[138,-39],[1007,-300],[316,-70],[356,-27],[314,5],[261,60],[251,72],[139,45],[135,44],[236,108],[139,108],[86,113],[64,156],[71,291],[61,328],[27,152],[59,208],[47,138],[135,310],[68,194],[22,250],[12,160],[9,196],[17,152],[18,112],[41,73],[93,86],[63,81],[44,59],[54,51],[50,27],[45,3],[71,-39],[34,-19],[127,-58],[166,-86],[203,-83],[166,-76],[163,-49],[121,-30],[169,-9],[11,-1],[55,2],[47,2],[193,33],[69,26],[56,21],[88,61],[99,75],[120,132],[16,51],[19,61],[4,14],[-10,178],[-25,226],[-42,330],[-24,213],[-14,229],[1,58],[1,81],[5,82],[24,191],[42,257],[19,125],[22,155],[16,119],[5,143],[14,150],[32,95],[51,92],[67,79],[152,114],[150,86],[166,50],[141,32],[117,23],[74,2],[127,-31],[132,-38],[100,-32],[129,-49],[187,-99],[174,-109],[79,-40],[90,-37],[96,24],[286,217],[254,169],[340,254],[407,274],[250,200],[151,168],[75,183],[72,221],[100,415],[85,371],[41,115],[53,77],[53,78],[71,64],[86,44],[139,37],[143,-5],[325,-22],[343,-48],[82,-16],[126,-7],[99,39],[53,32],[186,189],[143,291],[143,334],[164,334],[129,177],[125,149],[145,186],[170,122],[192,104],[171,48],[174,58],[176,1],[161,-5],[125,65],[96,172],[79,194],[92,113],[147,97],[157,54],[164,108],[129,97],[135,64],[150,0],[175,59],[168,162],[136,242],[150,275],[236,490],[89,167],[89,81],[58,-8],[41,-5],[90,-14],[250,-274],[125,-65],[58,10],[118,111],[71,67],[85,60],[108,75],[99,54],[48,30],[47,29],[159,58],[154,-4],[128,-38],[102,22],[102,21],[146,22],[129,5],[178,26],[242,81],[101,6],[89,17],[222,43],[164,106],[103,82],[86,70],[154,81],[178,54],[343,-16],[204,-33],[207,-102],[172,-163],[235,-255],[170,-185],[94,-119],[18,-99],[17,-99],[31,-55],[55,-21],[84,-46],[24,-34],[12,-17],[32,-76],[29,-43],[3,-46],[0,-102],[-27,-110],[-37,-79],[-34,-64],[-41,-57],[-68,-43],[-53,-27],[-75,-32],[-191,-70],[-229,-119],[-215,-117],[-73,-36],[-82,-4],[-121,11],[-138,8],[-25,-6],[-20,0],[-8,-17],[-1,-29],[33,-47],[23,-43],[2,-45],[-11,-52],[-18,-48],[1,-68],[0,-38],[16,-45],[20,-39],[57,-97],[38,-92],[12,-44],[10,-64],[-11,-55],[-20,-49],[-31,-60],[-69,-119],[-46,-87],[-19,-40],[-12,-56],[-18,-91],[-22,-265],[-12,-113],[-35,-86],[-75,-76],[-98,-100],[-56,-76],[-67,-54],[-80,-85],[-95,-144],[-91,-162],[-56,-238],[-24,-170],[-14,-179],[-11,-71],[-24,-43],[-30,-52],[-22,-91],[28,-121],[54,-163],[48,-124],[24,-147],[-20,-128],[-38,-118],[-93,-76],[-64,-27],[-64,-27],[-67,-4],[-76,37],[-132,86],[-175,113],[-92,63],[-65,43],[-50,19],[-93,-12],[-75,-27],[-91,-52],[-73,-99],[-48,-82],[-27,-47],[-72,-111],[-43,-65],[-102,-95],[-112,-78],[-184,-127],[-123,-78],[-89,-84],[-107,-138],[-239,-339],[-102,-186],[-82,-150],[-32,-36],[-15,-18],[-16,-18],[-62,-72],[-104,-108],[-213,-219],[-212,-225],[-155,-148],[-82,-142],[-45,-121],[-45,-130],[-46,-230],[-46,-217],[-58,-149],[-73,-85],[-130,-130],[-257,-212],[181,-501],[45,-126],[6,-16],[6,-17],[6,-15],[6,-17],[6,-16],[3,-9],[2,-6],[1816,-5026],[382,-1055],[39,-109]],[[749215,241760],[140,-33],[81,236],[108,-25],[66,-151],[59,-12],[115,66],[55,-90],[-21,-101],[-20,-102],[-113,-137],[-46,-44],[-45,-44],[-39,-105],[-39,-106],[-93,-99],[-159,-22],[-44,-6],[-142,175],[-83,176],[-105,52],[-167,-56],[-55,90],[-55,89],[-58,113],[36,119],[6,146],[-17,187],[-40,114],[39,135],[163,183],[62,69],[110,-13],[-26,-147],[31,-36],[143,-168],[7,-239],[146,-214]],[[767179,245268],[51,-47],[53,9],[33,-76],[15,-99],[49,-4],[6,-73],[-39,-43],[-12,-36],[-12,-37],[-36,-8],[-35,-9],[-66,-57],[-94,-82],[-77,-7],[-33,-3],[-73,7],[-33,5],[-33,5],[-108,123],[22,139],[11,39],[37,130],[57,99],[14,24],[68,60],[68,46],[47,27],[52,-70],[51,-46],[17,-16]],[[742797,209692],[-186,580],[-2103,2624],[-32,40],[-211,264],[-1249,1558],[-89,112],[-1265,1578],[-2505,3126],[-428,534],[-303,1148],[-975,3698],[-256,968],[-74,1677],[989,1988],[2144,4312],[215,431],[1484,2984],[795,1665],[150,315],[150,315],[13,26],[320,671],[45,94],[138,288],[231,485],[226,473],[36,76],[28,59],[29,60],[454,951],[281,589],[20,41],[19,41],[231,483],[433,907],[10,22],[68,141],[51,108],[51,106]],[[741732,245230],[44,-24],[68,-37],[7,-4],[68,-26],[5,-1],[48,-5],[9,3],[8,4],[27,15],[25,7],[10,7],[22,29],[12,11],[12,14],[10,21],[14,25],[15,35],[11,35],[3,17],[-3,25],[0,17],[-3,17],[-3,31],[-11,45],[-5,28],[-5,17],[-3,14],[-3,28],[2,27],[3,18],[12,14],[14,7],[15,-6],[12,-12],[11,-12],[28,-20],[27,-13],[25,-13],[25,-13],[25,-13],[30,-10],[12,-7],[5,-6],[30,-20],[48,-30],[15,-7],[20,-13],[20,-24],[13,-20],[12,-21],[23,-30],[20,-28],[3,-6],[12,-11],[23,-34],[38,-51],[20,-34],[28,-51],[33,-51],[21,-27],[27,-31],[31,-48],[25,-30],[23,-31],[30,-44],[25,-24],[40,-30],[30,-30],[36,-27],[37,-26],[105,-84],[36,-41],[12,-13],[36,-51],[37,-48],[33,-41],[56,-64],[27,-31],[43,-43],[8,-7],[20,-7],[22,-6],[45,-9],[32,8],[10,0],[19,8],[25,0],[13,-6],[17,-3],[35,-24],[15,-3],[18,-13],[12,-17],[15,-24],[18,-24],[30,-23],[35,-13],[37,-6],[18,-3],[17,-3],[45,-19],[28,-34],[32,-34],[11,-17],[25,-31],[25,-9],[47,-16],[30,-3],[22,8],[29,21],[27,11],[25,8],[25,11],[32,25],[17,18],[14,18],[17,25],[24,60],[21,70],[19,49],[12,24],[10,8],[10,17],[20,15],[24,11],[25,11],[19,14],[13,4],[15,-6],[10,-3],[27,-10],[35,-6],[7,0],[35,-9],[20,-7],[25,-16],[23,-9],[12,-4],[50,-20],[25,-10],[5,-3],[12,-10],[16,-12],[39,-31],[18,0],[24,11],[20,1],[7,0],[20,4],[35,19],[29,7],[27,12],[35,-3],[37,-9],[37,1],[40,-6],[17,4],[23,-10],[27,-9],[20,-3],[35,8],[52,1],[17,1],[10,-4],[20,-13],[20,-13],[13,-24],[15,-24],[23,-24],[27,-20],[18,-13],[15,-17],[43,-40],[17,-14],[20,-13],[5,0],[27,4],[67,16],[20,4],[37,15],[14,7],[17,18],[13,11],[17,11],[20,1],[19,7],[18,14],[36,43],[5,0],[37,33],[19,11],[20,-3],[13,-7],[7,-3],[13,0],[4,14],[8,11],[22,14],[17,18],[9,14],[5,18],[2,17],[0,52],[7,25],[4,14],[-2,21],[6,59],[7,17],[20,11],[7,4],[13,0],[10,-3],[22,1],[12,4],[13,0],[22,-10],[23,-16],[15,-7],[22,-17],[23,-9],[22,0],[22,8],[30,18],[17,7],[17,8],[34,22],[30,14],[7,-3],[8,-3],[15,-14],[10,-17],[5,1],[5,-21],[3,-17],[0,-18],[-7,-17],[-34,-22],[-17,-11],[-15,-7],[-10,3],[-13,3],[-7,3],[-7,0],[-5,-7],[-8,-14],[-4,-11],[2,-7],[8,-17],[3,-10],[-3,-11],[-9,-38],[-5,-4],[-17,-35],[-31,-53],[-20,-21],[-36,-40],[-27,-21],[-37,-22],[-52,-19],[-30,24],[-23,27],[-20,30],[-10,28],[-8,13],[-12,0],[-39,-29],[-23,-7],[-19,-8],[-20,-21],[-15,-8],[-9,-7],[-28,-8],[-14,-10],[-10,-15],[-7,-14],[-10,-24],[-14,-42],[-5,-7],[6,-52],[3,-18],[-2,-27],[-5,-14],[-17,-43],[-12,-21],[-4,-9],[-3,-8],[-2,-21],[-3,-18],[-2,-10],[1,-39],[-15,-15],[-12,-16],[-35,-9],[-33,1],[-6,0],[-31,11],[-16,24],[-27,4],[-2,-22],[2,-39],[-3,-27],[1,-37],[2,-13],[3,-14],[-3,-74],[-19,-63],[-20,-10],[-16,-11],[-4,-22],[4,-50],[18,-83],[15,-47],[5,-16],[135,-427],[245,-583],[112,-221],[111,-221],[162,-313],[245,-387],[242,-325],[190,-243],[117,-185],[93,-246],[88,-319],[109,-402],[53,-292],[121,-465],[147,-417],[86,-226],[102,-290],[51,-124],[61,-124],[65,-124],[89,-125],[82,-113],[65,-116],[64,-134],[153,-416],[132,-338],[132,-291],[319,-624],[64,-87],[48,-75],[0,-7],[8,-7],[10,-17],[10,-13],[10,-21],[10,-17],[34,-65],[35,-65],[38,-72],[11,-20],[33,-65],[10,-14],[43,-78],[21,-31],[72,-119],[248,-409],[57,-94],[59,-97],[135,-223],[23,-30],[15,-21],[38,-68],[30,-44],[26,-38],[17,-27],[28,-45],[41,-64],[33,-51],[119,-164],[50,-71],[21,-27],[53,-79],[45,-64],[64,-106],[61,-85],[48,-58],[38,-54],[68,-85],[48,-61],[12,-17],[16,-27],[25,-27],[35,-52],[56,-67],[28,-34],[423,-497],[76,-89],[25,-24],[45,-61],[33,-34],[45,-51],[51,-54],[58,-64],[38,-41],[48,-61],[55,-64],[38,-44],[38,-48],[15,-10],[17,-10],[8,-6],[25,-13],[22,-31],[63,-43],[33,-38],[55,-40],[43,-33],[40,-34],[60,-53],[48,-44],[90,-74],[70,-60],[25,-24],[123,-97],[146,-110],[20,-10],[15,-9],[15,-8],[102,-80],[48,-31],[40,-26],[115,-73],[32,-16],[331,-176],[116,-62],[13,-6],[60,-19],[60,-29],[72,-26],[62,-26],[50,-12],[42,-13],[65,-15],[47,-13],[73,-40],[50,-22],[42,-20],[37,-13],[58,-16],[47,-12],[15,-7],[50,-29],[72,-26],[35,-9],[20,-7],[25,-9],[19,7],[55,-9],[40,-16],[72,-26],[25,-2],[70,-12],[67,-5],[22,-10],[45,1],[5,0],[19,-2],[20,-3],[20,-3],[21,-3],[278,-23],[13,-1],[35,-3],[13,-1],[5,1],[5,2],[44,5],[38,-6],[34,-2],[23,7],[39,2],[69,12],[35,4],[17,1],[70,5],[17,1],[62,9],[74,19],[10,4],[61,16],[47,15],[69,23],[40,18],[88,31],[47,15],[40,18],[36,22],[72,44],[24,22],[17,7],[52,43],[49,40],[51,43],[66,61],[39,32],[20,22],[32,35],[51,61],[14,21],[22,32],[22,28],[2,7],[24,43],[20,39],[12,17],[41,33],[27,35],[12,35],[12,14],[17,8],[27,22],[10,10],[15,11],[27,18],[19,11],[5,0],[15,1],[13,7],[29,11],[27,22],[20,14],[14,11],[5,7],[25,22],[14,14],[20,22],[17,18],[5,7],[17,14],[32,39],[29,36],[9,17],[32,53],[12,15],[43,81],[10,14],[27,56],[16,39],[22,49],[19,39],[2,10],[4,7],[4,7],[4,8],[8,7],[10,13],[29,40],[3,20],[7,10],[8,10],[12,19],[13,16],[7,14],[10,31],[58,85],[14,28],[12,28],[15,35],[3,9],[4,9],[0,3],[6,11],[6,14],[10,21],[9,25],[10,24],[16,42],[10,32],[9,31],[5,14],[5,7],[9,25],[3,17],[2,11],[2,38],[-13,21],[-12,6],[-6,14],[-18,55],[-5,38],[-13,31],[0,14],[0,7],[-3,31],[2,10],[14,32],[17,32],[15,28],[9,24],[7,15],[15,35],[9,24],[3,18],[4,14],[10,42],[4,17],[10,42],[4,25],[10,31],[4,35],[7,42],[4,28],[5,24],[19,87],[9,25],[9,35],[5,35],[4,59],[3,129],[1,100],[0,18],[0,7],[2,10],[-3,10],[-2,11],[-3,7],[-2,6],[-21,24],[-20,10],[-12,14],[0,10],[5,4],[14,3],[10,1],[-2,17],[-8,10],[-8,10],[-12,10],[-13,7],[-15,7],[-17,9],[-5,4],[-1,31],[-1,59],[-1,90],[2,14],[0,38],[7,49],[-1,63],[1,45],[5,42],[-1,69],[-1,17],[0,25],[2,52],[-6,48],[-4,87],[0,21],[-3,20],[-3,28],[-8,73],[-14,69],[-10,38],[0,17],[-16,45],[-15,34],[-8,28],[-10,34],[-14,66],[-13,37],[-31,69],[-2,10],[-18,45],[-8,14],[-15,10],[-13,23],[-10,7],[-12,-14],[5,17],[-5,7],[-25,24],[-13,3],[-49,9],[-30,2],[-23,3],[-22,0],[-5,-4],[-27,-15],[-5,-3],[-7,-1],[-5,7],[-5,7],[-5,0],[-12,-7],[-5,-11],[-8,-4],[-14,-4],[-5,7],[-1,7],[-2,21],[-10,10],[-18,0],[-57,-6],[-39,3],[-30,2],[-22,7],[-10,-1],[-25,-18],[-25,6],[-12,4],[-13,6],[-7,0],[-42,-19],[-20,-7],[-12,-1],[-8,4],[-7,3],[-5,17],[2,11],[2,7],[22,21],[5,7],[25,32],[12,14],[-1,25],[3,7],[4,17],[17,25],[17,25],[40,32],[4,11],[0,10],[-5,31],[-1,25],[-10,34],[-3,10],[3,11],[12,28],[2,31],[-3,14],[5,21],[9,11],[20,21],[10,18],[14,4],[15,0],[35,15],[17,28],[9,21],[2,14],[-10,28],[10,21],[29,42],[2,39],[2,7],[5,14],[-3,24],[2,14],[20,28],[4,18],[0,17],[5,4],[0,17],[7,18],[20,11],[32,4],[27,-3],[45,-9],[20,-13],[13,-27],[7,-18],[5,-3],[10,-7],[5,1],[17,7],[15,25],[12,28],[10,11],[24,7],[5,-3],[25,4],[17,8],[17,17],[8,11],[17,11],[27,11],[25,-3],[25,-2],[24,0],[15,-3],[28,-2],[24,7],[12,8],[13,-3],[8,-11],[5,-13],[5,-25],[3,-17],[15,-20],[12,-10],[38,-23],[30,-31],[20,-6],[5,-4],[8,-13],[0,-11],[5,-10],[17,-6],[15,-14],[8,-20],[13,-38],[3,-11],[2,-6],[23,-17],[30,-24],[60,-29],[55,-33],[60,-33],[70,-33],[82,-32],[12,0],[30,-9],[38,-13],[39,-13],[10,1],[33,-6],[27,0],[79,-8],[42,5],[30,1],[47,12],[15,7],[27,8],[32,11],[7,4],[10,7],[27,25],[10,14],[14,32],[12,49],[-1,14],[0,62],[2,21],[-3,14],[-5,17],[-5,7],[-13,24],[-8,24],[-3,28],[0,20],[5,28],[9,35],[19,36],[10,17],[14,28],[5,4],[8,0],[10,-17],[3,-14],[-3,-10],[-12,-32],[-9,-17],[0,-11],[7,-6],[10,-18],[10,4],[10,7],[10,11],[7,4],[10,0],[5,-7],[3,-10],[3,-14],[0,-14],[-10,-31],[-12,-25],[-4,-10],[-10,-25],[-2,-21],[5,-17],[13,-21],[10,-13],[15,-21],[15,-11],[15,-12],[14,-7],[22,-11],[6,-2],[5,-3],[35,-2],[32,4],[25,15],[20,14],[4,5],[5,6],[5,21],[2,14],[-4,22],[-4,23],[4,38],[15,25],[7,14],[54,60],[5,4],[17,18],[15,7],[22,18],[59,30],[17,4],[12,7],[52,40],[9,7],[18,14],[95,83],[29,46],[2,7],[0,10],[17,39],[5,11],[16,49],[7,28],[0,7],[-8,34],[-15,24],[-8,10],[-5,3],[-5,14],[-2,18],[-1,6],[8,25],[14,32],[12,10],[5,11],[10,25],[9,38],[5,17],[-6,28],[-15,41],[-13,31],[-68,78],[-12,12],[-11,12],[-15,24],[0,17],[2,17],[-3,25],[2,17],[5,11],[10,28],[14,21],[22,21],[24,29],[12,21],[24,60],[5,17],[2,14],[0,14],[5,18],[5,17],[6,31],[0,21],[-5,11],[-5,13],[-3,14],[0,14],[4,38],[0,7],[2,28],[-12,7],[-3,10],[-2,14],[4,14],[3,10],[-1,32],[2,10],[5,21],[2,10],[10,22],[7,7],[8,0],[14,14],[3,14],[0,7],[-1,7],[0,11],[3,7],[7,17],[10,14],[21,39],[5,18],[2,20],[-3,18],[-2,24],[-1,10],[8,18],[9,11],[20,4],[8,-7],[5,-7],[10,-24],[8,-10],[5,-7],[10,0],[4,1],[18,7],[32,22],[17,11],[17,25],[34,56],[17,25],[53,92],[7,14],[17,21],[19,22],[17,24],[25,25],[7,-3],[5,-10],[3,-10],[5,-4],[5,7],[0,11],[0,10],[4,21],[10,35],[4,24],[12,36],[5,10],[22,39],[9,14],[15,11],[15,11],[19,7],[15,8],[5,3],[5,4],[7,4],[5,0],[15,4],[12,0],[13,11],[19,0],[15,15],[17,14],[12,11],[18,14],[14,8],[5,0],[3,-7],[7,-10],[5,-4],[13,-10],[12,-3],[11,-10],[27,-44],[16,-34],[5,-38],[27,-107],[6,-66],[3,-42],[0,-34],[10,-14],[8,-17],[3,-10],[-3,-18],[-4,-21],[3,-17],[0,-17],[3,-25],[-5,-24],[-2,-31],[3,-25],[5,-17],[-2,-35],[-4,-45],[-2,-17],[3,-49],[5,-38],[6,-14],[0,-38],[8,-13],[25,-27],[25,-14],[5,1],[25,-3],[10,7],[9,25],[5,7],[7,3],[10,1],[10,-10],[8,-25],[25,1],[20,4],[19,15],[17,11],[30,11],[15,0],[5,-3],[5,-7],[5,-17],[8,-21],[-2,-21],[0,-13],[15,-3],[15,-3],[14,10],[6,-17],[0,-17],[-3,-7],[8,0],[14,25],[8,7],[-5,-18],[-7,-24],[0,-7],[-2,-17],[10,-4],[5,-3],[5,-10],[5,-21],[6,-38],[0,-7],[-3,-7],[3,-31],[1,-10],[-2,-49],[0,-14],[-5,-11],[-12,-14],[-14,-31],[-3,-14],[-2,-18],[0,-14],[-12,-21],[-7,-4],[-22,-18],[-8,-3],[-12,3],[-5,10],[-5,7],[-10,0],[-7,-8],[-5,-24],[-4,-31],[3,-32],[2,-24],[11,-31],[10,-24],[15,-37],[16,-35],[-8,-82],[150,-102],[63,-45],[68,-34],[70,-45],[64,-45],[56,-23],[59,-34],[38,-11],[37,-22],[52,-23],[213,-84],[85,2],[67,-26],[55,-16],[270,-78],[116,-6],[133,16],[141,8],[126,21],[87,16],[79,20],[41,22],[99,38],[49,25],[30,19],[44,22],[51,26],[42,22],[15,10],[12,-5],[6,6],[45,49],[24,16],[17,30],[24,34],[15,26],[22,33],[18,18],[8,18],[13,3],[16,23],[102,94],[25,17],[27,26],[20,16],[36,31],[21,18],[38,46],[17,24],[11,22],[11,27],[8,37],[4,45],[2,25],[3,33],[0,37],[-4,37],[-5,47],[-4,34],[-7,58],[8,44],[3,46],[14,36],[15,56],[20,41],[17,30],[6,28],[16,28],[43,64],[40,42],[57,58],[65,73],[21,23],[26,46],[33,46],[147,208],[39,55],[21,35],[57,127],[35,87],[10,107],[6,85],[9,93],[5,70],[5,56],[-25,41],[-30,9],[-27,-21],[-5,-7],[-7,-8],[2,-10],[-3,0],[-4,0],[-13,20],[10,8],[5,-7],[39,39],[7,25],[-10,20],[-15,24],[-35,37],[-5,4],[-13,-15],[-16,-35],[-20,-14],[-12,-1],[-27,-63],[13,-10],[-15,-28],[-27,30],[14,25],[10,-10],[27,60],[-8,10],[-53,71],[-39,-53],[5,-9],[0,-2],[-5,-6],[-15,20],[7,11],[6,-11],[36,57],[-5,7],[-8,3],[-17,20],[-33,51],[0,7],[-5,7],[-6,31],[-2,7],[-1,14],[0,21],[5,28],[2,17],[4,25],[10,21],[10,-4],[5,-3],[10,18],[7,21],[7,14],[12,18],[20,11],[32,8],[34,-3],[33,-2],[30,-7],[15,-13],[22,-24],[13,1],[14,14],[24,39],[17,46],[17,63],[18,90],[9,56],[2,45],[0,11],[-6,27],[0,14],[-3,38],[-19,139],[-3,38],[-6,17],[-25,55],[-36,54],[-30,45],[-25,30],[-13,-4],[-38,51],[-20,17],[-10,-4],[-10,17],[-10,10],[-27,6],[-10,4],[-25,-15],[-41,-22],[-57,-22],[-32,-19],[-29,-28],[-56,-54],[-25,-1],[-18,7],[-12,6],[-8,14],[-12,3],[-13,0],[-12,10],[-10,6],[-15,0],[0,7],[7,7],[0,7],[-5,10],[0,10],[17,25],[12,21],[17,39],[12,28],[7,7],[12,11],[7,11],[3,24],[-1,18],[-2,10],[-3,10],[0,7],[7,0],[5,4],[5,14],[0,21],[4,24],[12,18],[15,28],[5,14],[26,39],[47,43],[17,4],[7,0],[10,-10],[1,-7],[14,-3],[13,1],[10,3],[-1,14],[-7,14],[-3,21],[0,14],[14,35],[17,38],[22,32],[24,36],[11,16],[21,-8],[10,7],[14,21],[20,15],[10,14],[7,7],[36,60],[29,50],[10,7],[27,25],[7,24],[2,7],[2,56],[0,35],[2,21],[-3,45],[4,31],[4,45],[5,11],[-8,27],[-43,48],[-25,20],[-5,7],[-5,10],[-3,21],[2,24],[3,7],[10,14],[2,11],[-3,10],[-20,58],[-16,14],[-12,-1],[-27,-21],[-32,-22],[-15,0],[-2,10],[2,7],[2,10],[5,18],[-5,3],[-12,7],[-10,10],[2,17],[2,18],[12,18],[17,17],[17,8],[10,17],[12,22],[7,14],[15,11],[20,14],[27,15],[49,46],[39,22],[19,18],[22,25],[15,15],[25,14],[19,8],[23,-3],[22,-6],[20,7],[14,14],[15,18],[15,18],[17,14],[17,1],[20,-3],[27,-10],[23,-9],[17,7],[30,11],[17,-3],[8,-24],[15,-30],[18,-21],[10,-6],[12,-14],[13,-31],[23,-48],[23,-9],[22,-10],[37,-3],[18,-3],[20,-9],[7,-18],[6,-24],[-3,-21],[3,-10],[10,-14],[51,-64],[13,-45],[8,-65],[-1,-56],[7,-17],[13,-14],[15,11],[9,11],[10,-3],[5,-18],[34,-117],[21,-37],[17,-17],[23,-10],[17,-6],[13,-3],[19,4],[22,18],[20,0],[23,-9],[15,-21],[13,-20],[5,-12],[0,-19],[0,-18],[-2,-17],[3,-14],[5,-7],[22,-13],[10,0],[10,-6],[47,-9],[50,-6],[82,-4],[59,-5],[30,0],[17,8],[45,12],[19,7],[25,4],[20,4],[29,19],[22,31],[12,11],[52,-2],[13,-3],[35,5],[4,0],[18,7],[24,15],[32,18],[10,4],[10,7],[22,11],[29,18],[25,15],[17,14],[29,29],[27,29],[20,21],[7,7],[37,40],[24,31],[22,39],[19,63],[2,18],[7,31],[-1,45],[2,14],[0,11],[-13,24],[-7,10],[-8,7],[-39,5],[-20,-4],[-5,0],[-8,7],[-10,13],[-10,0],[-5,0],[-2,7],[-3,14],[2,7],[0,7],[10,21],[9,21],[5,17],[0,7],[-3,18],[-15,37],[-8,17],[-8,31],[3,11],[9,42],[0,17],[29,39],[2,7],[20,22],[24,25],[14,28],[18,14],[9,21],[5,14],[4,49],[0,21],[-8,45],[-8,27],[-3,21],[-3,14],[-5,10],[-5,17],[-20,31],[-8,3],[-10,-3],[-12,-8],[-20,-4],[-27,-1],[-10,14],[-13,24],[-5,17],[-10,21],[-20,3],[-20,-8],[-7,7],[-5,7],[-8,24],[-8,38],[2,17],[14,42],[10,21],[17,25],[7,14],[17,18],[20,18],[2,7],[-7,10],[-8,14],[-3,7],[-2,13],[2,14],[10,11],[15,-6],[61,26],[13,4],[59,26],[24,14],[42,22],[15,4],[20,1],[14,0],[18,-17],[25,-34],[8,-10],[10,-3],[17,18],[7,7],[15,21],[26,36],[15,18],[12,14],[23,-3],[9,4],[13,11],[41,53],[7,10],[10,11],[24,25],[37,12],[26,-7],[14,-3],[10,1],[20,-7],[-2,-20],[-12,-53],[-9,-45],[-19,-70],[3,-7],[29,22],[22,18],[52,36],[12,7],[12,0],[33,-2],[24,-6],[31,-45],[13,-23],[15,-31],[5,-14],[6,-48],[3,-25],[0,-34],[33,-55],[8,-7],[12,-20],[11,-34],[5,-28],[1,-24],[7,-12],[38,-25],[12,-24],[3,-7],[5,0],[13,-24],[2,-10],[8,-17],[5,-17],[6,-25],[2,-10],[3,-28],[1,-27],[-3,-18],[-6,-45],[2,-24],[3,-14],[8,-38],[5,-10],[3,-7],[7,0],[17,14],[15,15],[7,10],[12,15],[5,3],[10,0],[13,-3],[25,-41],[10,-27],[1,-35],[0,-24],[-9,-49],[-9,-35],[-10,-11],[-5,-3],[-12,-1],[-20,7],[-8,3],[-12,-4],[-37,3],[-15,-11],[-7,-11],[-7,-24],[-12,-25],[-2,-18],[-2,-34],[0,-14],[3,-17],[8,-42],[5,-14],[5,-13],[15,-38],[3,-10],[3,-11],[20,-17],[22,-23],[5,-3],[10,0],[10,11],[2,7],[15,38],[9,21],[10,11],[12,4],[15,-10],[8,-10],[5,-25],[1,-27],[2,-11],[8,-27],[3,-17],[8,-24],[-2,-21],[0,-18],[-20,-35],[-9,-21],[-15,-28],[-2,-18],[-2,-31],[5,-14],[1,-10],[17,-14],[8,1],[7,7],[7,3],[49,44],[10,7],[22,18],[24,21],[15,11],[17,18],[27,29],[32,39],[5,3],[4,7],[10,11],[7,4],[15,7],[27,11],[10,-3],[10,1],[13,-10],[20,-24],[3,-24],[5,-7],[3,-28],[-5,-7],[-15,-18],[3,-7],[10,-6],[10,7],[14,7],[15,8],[13,-3],[9,0],[10,-3],[10,-3],[5,-7],[18,-21],[3,-6],[7,-18],[1,-20],[-2,-39],[-5,-17],[3,-31],[3,-31],[-5,-28],[-4,-28],[0,-11],[10,-24],[10,-10],[10,-10],[4,-38],[5,-14],[5,-41],[-2,-21],[0,-24],[1,-21],[-2,-18],[-8,-17],[-16,-35],[-10,-8],[-5,-3],[-15,-15],[-19,-7],[-15,-4],[-25,6],[-25,6],[-35,10],[-20,3],[-15,3],[-24,-15],[-17,-7],[-13,-11],[-12,-18],[-19,-25],[-20,-25],[-12,-10],[-5,-7],[-7,-25],[-2,-17],[-5,-11],[-22,-18],[-17,-14],[-17,-11],[-13,6],[-12,24],[-8,0],[0,-10],[6,-21],[15,-41],[3,-11],[3,-17],[8,-38],[-3,-24],[-1,-38],[5,-42],[3,-17],[3,-14],[5,-21],[0,-7],[-7,-31],[-10,-25],[-4,-10],[-18,-8],[-32,-1],[-20,0],[-20,6],[-7,-4],[-5,-14],[-11,-49],[-17,-56],[-9,-31],[-17,-32],[-5,-7],[-10,-14],[-4,-11],[-3,-7],[-2,-17],[-22,-35],[-12,-29],[-5,-7],[-22,-11],[-12,7],[-5,10],[-6,21],[0,17],[-7,14],[-8,10],[-8,3],[-5,4],[-14,-8],[-10,-17],[-2,-8],[-8,-14],[-12,0],[-7,7],[-8,20],[4,53],[2,34],[-5,14],[-8,-11],[-2,-10],[-7,-32],[-7,-45],[-6,-31],[-7,-32],[-3,-24],[1,-35],[-2,-35],[-2,-17],[-5,-17],[-12,-43],[-4,-20],[-3,-18],[-3,-31],[-10,-42],[7,-7],[10,4],[7,4],[3,-11],[3,-24],[5,-24],[-2,-31],[-5,-11],[-9,0],[-5,-25],[-5,4],[0,-14],[0,-14],[1,-7],[0,-17],[-9,-46],[-5,-31],[-2,-42],[0,-17],[3,-14],[-4,-38],[-2,-21],[-5,-11],[-7,-14],[-3,-11],[8,-10],[0,-7],[-7,-48],[-2,-7],[-5,-28],[-4,-18],[-7,-21],[-8,-11],[-7,-7],[-10,-3],[-15,-1],[-19,-7],[-10,-18],[-5,-11],[-5,-14],[-4,-14],[-2,-24],[-3,-14],[-7,-4],[-10,-3],[-12,-8],[-17,-7],[-8,-7],[-5,-11],[-4,-10],[-5,3],[-1,10],[3,11],[4,35],[-2,13],[-5,0],[-8,-7],[-5,-4],[-14,-21],[-20,-11],[-12,-21],[-12,-7],[-5,-18],[-5,-14],[-4,-17],[-5,-7],[-8,-4],[-7,3],[-12,0],[-5,-7],[-5,-7],[-5,-18],[-2,-17],[-17,-32],[-10,-14],[-12,-28],[-4,-21],[-5,-21],[-9,-21],[-5,-18],[-2,-14],[-3,-14],[1,-10],[-3,-21],[1,-10],[0,-25],[0,-14],[-2,-14],[-2,-21],[-3,-20],[-2,-14],[1,-32],[-3,-10],[3,-17],[0,-11],[-2,-7],[-5,-14],[-2,-17],[5,-10],[0,-11],[-5,-7],[-9,-11],[-3,-7],[1,-21],[2,-6],[-2,-18],[-2,-17],[-5,-7],[-10,-8],[-5,-7],[-2,-10],[7,-7],[-2,-10],[-2,-7],[-8,-11],[-7,-18],[-5,-10],[-2,-11],[-2,-14],[-2,-17],[-5,-14],[-7,-21],[-5,-14],[-7,-21],[-5,-18],[-5,-10],[-4,-4],[-5,0],[-3,-7],[0,-10],[6,-14],[0,-14],[2,-14],[-2,-17],[0,-11],[1,-17],[-3,-14],[-2,-21],[-2,-17],[-2,-14],[-3,-11],[-4,-3],[-3,7],[-3,6],[-4,-7],[-5,-7],[-8,-14],[-4,-10],[-3,-7],[-2,-14],[3,-14],[2,-10],[8,-7],[3,-11],[-3,-10],[3,-7],[5,-3],[7,0],[13,0],[7,-3],[5,-3],[-2,-7],[0,-11],[7,1],[5,3],[8,4],[0,-7],[-8,-14],[-4,-4],[-8,-14],[-4,-10],[-5,-8],[-8,-10],[-2,-7],[-12,-21],[-7,-7],[-5,-8],[-10,-3],[-5,3],[-8,3],[-2,7],[-5,14],[-3,7],[-5,-11],[-5,-3],[-5,6],[-2,7],[-5,-7],[-10,-11],[-7,-10],[-5,-4],[-5,0],[-5,0],[5,-3],[5,-7],[-12,-4],[-12,-4],[-8,-7],[-5,-7],[-2,-21],[-2,-17],[3,-14],[2,-11],[3,-9],[3,-9],[0,-47],[-2,-18],[0,-21],[-2,-31],[-2,-17],[-2,-18],[-4,-34],[0,-8],[5,-3],[2,-7],[-7,-10],[0,-7],[0,-7],[3,-18],[3,-17],[-3,-17],[0,-7],[-2,-18],[-2,-10],[0,-17],[0,-18],[1,-14],[0,-10],[5,-10],[5,-7],[7,0],[10,0],[3,-7],[0,-17],[3,-17],[0,-14],[-2,-14],[-5,-11],[-5,-10],[-9,-11],[-5,-7],[-15,-11],[-7,-10],[-3,-7],[0,-7],[5,-7],[5,-3],[8,0],[2,-7],[-4,-4],[-5,-7],[-3,-10],[-2,-11],[-2,-14],[-2,-21],[-3,-14],[1,-10],[0,-10],[5,-4],[10,-3],[10,-3],[15,0],[14,1],[10,4],[5,3],[5,7],[0,7],[2,11],[3,10],[4,11],[3,7],[5,0],[2,-7],[3,-14],[-2,-7],[-3,-17],[1,-14],[0,-17],[2,-11],[11,-20],[5,-7],[5,3],[2,8],[2,10],[5,11],[3,-7],[0,-7],[-3,-11],[1,-7],[5,-3],[2,7],[0,10],[2,11],[2,7],[5,0],[1,-17],[0,-21],[0,-14],[-2,-17],[0,-14],[-2,-14],[-2,-18],[0,-17],[-2,-11],[-3,-20],[-4,-28],[-5,-25],[-4,-21],[-2,-21],[-3,-17],[0,-7],[6,-7],[2,-7],[0,-7],[0,-10],[1,-14],[5,-17],[5,-14],[13,-13],[15,-17],[15,-14],[17,-13],[10,-10],[15,-17],[13,-10],[35,-37],[8,-4],[5,-10],[7,-3],[8,-3],[7,0],[10,4],[8,0],[7,-3],[3,-7],[5,-7],[0,-7],[0,-7],[-2,-14],[0,-7],[0,-7],[2,-7],[10,-10],[13,-6],[12,-14],[16,-13],[10,-7],[12,-13],[8,-7],[10,-3],[12,-3],[10,-7],[8,-3],[7,-10],[13,-14],[7,-10],[10,-10],[5,-7],[8,-3],[7,-4],[10,1],[13,0],[5,-3],[15,-21],[20,-41],[3,-31],[5,-10],[3,-7],[11,-7],[24,-13],[20,-10],[10,-6],[15,-10],[17,-10],[18,-10],[30,-10],[25,-9],[20,-10],[37,-20],[23,-6],[22,-10],[32,-13],[15,-6],[8,-7],[35,-9],[17,-7],[13,-3],[15,-3],[24,-6],[20,-3],[15,-7],[23,-6],[22,-3],[15,4],[10,4],[9,7],[12,25],[13,18],[7,14],[7,17],[5,7],[5,8],[7,10],[5,11],[5,10],[9,14],[10,18],[5,7],[7,7],[7,4],[10,7],[8,7],[4,11],[3,7],[2,17],[5,7],[7,4],[5,4],[5,7],[7,11],[7,10],[5,7],[10,18],[10,14],[9,11],[10,10],[5,8],[5,7],[0,7],[2,14],[0,10],[2,7],[10,18],[7,24],[12,28],[7,14],[7,14],[8,15],[4,10],[10,14],[7,11],[8,7],[9,14],[3,7],[0,11],[4,10],[5,7],[3,7],[7,7],[2,11],[3,7],[-3,7],[-5,7],[-5,6],[-3,7],[3,14],[-1,7],[5,11],[5,10],[5,11],[0,7],[2,10],[0,14],[0,11],[-5,6],[-3,11],[-3,10],[0,10],[3,7],[4,8],[5,10],[3,7],[-1,7],[3,7],[2,11],[3,7],[9,3],[8,7],[7,8],[5,10],[5,7],[2,7],[5,14],[-1,21],[3,18],[-1,17],[0,21],[2,7],[3,10],[5,7],[7,4],[7,0],[5,4],[5,7],[3,7],[7,11],[5,10],[5,7],[9,7],[20,8],[10,11],[10,10],[9,18],[10,11],[10,10],[10,4],[12,1],[12,0],[10,-3],[5,-7],[3,-7],[2,-11],[1,-3],[-3,-10],[3,-11],[0,-10],[5,-3],[5,0],[5,7],[7,7],[12,11],[8,7],[12,11],[10,7],[10,7],[9,1],[8,-4],[7,-6],[8,-11],[5,-13],[0,-14],[1,-14],[-3,-11],[-4,-10],[-5,-18],[-3,-10],[-2,-11],[-2,-13],[-2,-11],[-3,-10],[-2,-14],[3,-11],[2,-10],[5,-14],[8,-7],[7,-3],[5,4],[8,4],[7,10],[7,14],[5,7],[10,8],[5,0],[2,-11],[1,-10],[0,-7],[2,-10],[3,-7],[0,-14],[0,-10],[3,-7],[5,-7],[7,-3],[5,0],[3,10],[2,14],[5,7],[5,7],[7,11],[10,4],[6,-1],[6,-2],[8,-11],[7,-3],[8,0],[10,1],[12,-3],[7,0],[3,-10],[0,-11],[-2,-10],[0,-7],[0,-11],[3,-20],[3,-25],[2,-10],[6,-7],[5,-3],[9,0],[10,0],[8,1],[5,-14],[3,-14],[5,-14],[2,-13],[3,-11],[3,-10],[7,-7],[5,0],[5,-6],[-2,-14],[0,-14],[3,-7],[7,-7],[8,-17],[3,-10],[2,-14],[3,-7],[7,-7],[10,1],[5,-4],[8,-3],[5,-7],[5,-10],[3,-17],[2,-14],[1,-14],[0,-10],[5,-4],[5,-7],[5,1],[0,-7],[5,-11],[-5,-14],[-4,-10],[-3,-7],[8,-3],[4,7],[3,7],[4,3],[6,4],[2,-10],[0,-7],[5,-7],[10,0],[5,7],[10,14],[15,18],[9,14],[7,11],[12,28],[5,11],[8,7],[9,4],[10,7],[8,3],[5,1],[5,-7],[2,-7],[3,-7],[0,-7],[-2,-17],[0,-11],[-3,-10],[-4,-7],[-3,-7],[-10,-8],[-4,-3],[-5,-7],[-3,-7],[-5,0],[-4,-4],[2,-7],[5,-7],[3,-10],[-3,-7],[-4,-14],[-3,-11],[-2,-13],[0,-2],[-1,-2],[-1,-7],[-7,-18],[-8,-14],[-7,-10],[-5,-7],[-2,-7],[-2,-11],[0,-7],[2,-7],[5,-3],[5,-3],[20,0],[7,1],[8,-4],[7,-3],[3,-10],[5,-7],[5,-3],[8,0],[7,0],[5,7],[7,7],[15,15],[14,14],[10,11],[15,14],[10,11],[7,10],[7,7],[7,15],[3,10],[7,18],[7,7],[3,10],[4,11],[5,7],[0,7],[5,3],[5,-3],[5,-14],[5,-10],[8,0],[2,7],[2,7],[0,11],[0,7],[3,10],[2,7],[5,4],[2,-7],[5,-7],[5,-3],[5,0],[13,11],[9,10],[5,8],[10,3],[8,-3],[5,-10],[5,-10],[5,-7],[5,-7],[5,-7],[5,-10],[3,-10],[2,-11],[0,-10],[3,-11],[0,-17],[1,-14],[0,-10],[5,-7],[5,-7],[5,4],[5,0],[5,-7],[0,-14],[-2,-21],[-2,-17],[-3,-14],[-2,-17],[-5,-7],[-7,-8],[-7,-7],[-5,-3],[-8,-11],[-7,-7],[-7,-7],[-8,-1],[-4,-10],[2,-7],[10,-10],[10,-7],[5,-3],[5,-10],[-4,-28],[0,-7],[0,-18],[0,-17],[-4,-10],[-5,-11],[-10,-14],[-7,-4],[-13,0],[-9,-4],[-10,-4],[-10,-4],[-5,-7],[0,-7],[0,-10],[3,-7],[5,-10],[0,-11],[-2,-13],[0,-11],[3,-7],[7,0],[12,-3],[8,-3],[7,-7],[3,-17],[0,-7],[-7,-14],[-5,-14],[-9,-11],[-13,-17],[-4,-11],[-3,-7],[-4,-14],[-5,-17],[-2,-7],[0,-14],[0,-11],[0,-7],[7,-3],[5,0],[5,7],[10,11],[5,7],[2,-7],[-4,-10],[-3,-11],[-4,-10],[-3,-11],[-2,-14],[-10,-17],[-4,-18],[-8,-14],[0,-7],[1,-7],[7,-10],[8,-7],[0,-7],[0,-14],[-2,-14],[-5,-14],[-5,-14],[-7,-21],[-17,-31],[0,-7],[-4,-11],[-15,-39],[-14,-24],[-10,-18],[-2,-17],[-17,-43],[-9,-24],[-12,-25],[0,-21],[-2,-10],[-3,-7],[-2,-11],[-2,-10],[-3,-14],[3,-10],[3,-14],[2,-11],[1,-17],[0,-7],[2,-7],[1,-17],[-3,-17],[-2,-14],[-17,-43],[-2,-17],[3,-10],[12,-17],[5,-4],[8,1],[7,7],[12,17],[8,11],[27,15],[5,-10],[-2,-28],[-13,-1],[-10,-3],[-4,-1],[-3,-14],[-2,-24],[-5,-14],[-15,10],[-4,-7],[0,-10],[-5,-18],[-7,-11],[-5,-10],[-10,-18],[-9,-7],[-10,0],[-8,3],[-5,7],[-10,6],[-5,-3],[0,-7],[-7,-21],[-4,-25],[3,-34],[0,-18],[0,-20],[-5,-8],[-12,-21],[-5,-3],[-10,-1],[-10,7],[-2,7],[-5,0],[-10,-25],[-7,-24],[-12,-32],[-19,-35],[-7,-11],[-12,-11],[-23,-4],[0,7],[-2,7],[-9,-7],[-16,-1],[-10,-7],[-5,-10],[-9,-11],[-10,-7],[-17,-15],[-15,-7],[-15,-4],[-39,-29],[-15,-7],[0,-11],[23,-34],[38,-65],[13,-20],[13,-21],[20,-27],[13,-13],[7,-4],[12,-3],[10,-6],[6,-7],[15,-24],[2,-10],[3,-31],[-2,-32],[-9,-21],[-10,-45],[1,-18],[8,-31],[0,-17],[-7,-11],[-14,-49],[-5,-38],[-2,-10],[-15,-36],[-19,-49],[-4,-24],[-7,-25],[-12,-49],[-5,-10],[-9,-35],[-2,-11],[-10,-21],[-15,-21],[-9,-7],[-5,-4],[-5,-17],[-2,-11],[-7,-24],[0,-11],[-5,-7],[-7,-24],[-7,-32],[-7,-10],[-8,-8],[-22,-7],[-10,-4],[-44,-15],[-40,-8],[-52,2],[-12,3],[-5,3],[-3,10],[-2,7],[0,11],[-3,17],[-5,10],[-5,7],[-17,-14],[-13,-15],[-19,-42],[-5,-14],[-7,-21],[-14,-21],[-7,-25],[0,-17],[-4,-31],[-10,-18],[-10,-11],[-14,-7],[-18,6],[-23,10],[-22,-1],[-12,-10],[-27,-36],[-10,-7],[-26,-32],[-8,-7],[-17,-11],[-10,-14],[-39,-33],[-36,-29],[-13,-7],[-19,-14],[-10,-15],[-2,-10],[-12,-21],[-15,-11],[-10,-11],[-17,-28],[-12,-14],[-7,6],[-3,21],[2,11],[-3,17],[-10,10],[-5,-4],[-26,-46],[-12,-14],[-22,-18],[-18,0],[-27,-1],[-37,6],[-13,6],[-12,0],[-5,3],[-5,10],[5,8],[9,17],[0,18],[-10,13],[-69,-16],[-5,0],[-10,-4],[-15,-4],[-10,7],[-5,14],[4,55],[-31,86],[-13,45],[-11,52],[-12,24],[-16,37],[-11,49],[0,17],[0,14],[16,108],[-1,28],[-15,34],[-28,48],[-15,17],[-35,33],[-8,11],[-5,6],[-8,31],[-3,21],[-5,14],[-8,14],[-10,17],[-10,3],[-9,-14],[-7,-25],[-5,-28],[-2,-14],[-10,-10],[-10,-8],[-75,-109],[-22,-25],[-21,-43],[-3,-7],[-26,-49],[-25,-43],[-50,-112],[-14,-46],[-24,-73],[-41,-74],[-21,-63],[-14,-43],[-24,-49],[-44,-81],[-17,-35],[-4,-39],[-9,-45],[-19,-70],[-24,-67],[-16,-73],[-5,-21],[11,-20],[5,-7],[50,-23],[44,-6],[8,-6],[8,-14],[2,-21],[1,-24],[10,-14],[5,-3],[7,-14],[1,-34],[-2,-46],[-13,-108],[-14,-49],[-21,-87],[-2,-28],[6,-44],[3,-42],[-8,-18],[-12,-14],[-24,-25],[-22,-25],[-15,-18],[-9,-18],[-7,-38],[-5,-14],[-17,-28],[-12,-8],[-5,0],[-23,6],[-20,28],[-22,27],[-23,16],[-35,13],[-25,0],[-7,3],[-13,6],[-7,4],[-10,3],[-4,-6],[-1,-1],[-13,-7],[-19,-32],[-12,-11],[-10,0],[-15,-1],[-22,-1],[-15,3],[-30,27],[-10,4],[-7,3],[-13,6],[-10,10],[-7,4],[-15,-8],[-13,3],[-20,7],[-17,17],[-17,-4],[-23,13],[-25,30],[-20,35],[-11,27],[3,10],[7,15],[2,10],[-8,10],[-5,7],[-12,7],[-15,-1],[-27,-4],[-10,0],[-3,24],[4,52],[21,139],[18,81],[22,60],[11,38],[7,25],[12,31],[7,28],[2,35],[23,112],[12,56],[21,52],[68,120],[31,64],[7,17],[3,11],[-5,17],[-8,14],[-13,10],[-10,10],[-5,7],[0,14],[2,13],[5,18],[2,7],[0,7],[-5,3],[-5,4],[-12,6],[-3,7],[-3,24],[-5,35],[-5,7],[-8,6],[-7,4],[-8,-4],[-7,-7],[-12,-4],[-13,0],[-12,-1],[-8,7],[-2,14],[-1,41],[0,14],[-5,24],[1,39],[15,52],[21,81],[7,21],[2,20],[0,11],[2,7],[2,7],[8,14],[2,11],[7,24],[0,21],[-8,24],[-8,10],[-2,10],[-3,11],[-2,7],[-11,20],[-17,17],[-5,7],[-15,10],[-8,6],[-15,4],[-10,6],[-10,7],[-12,6],[-10,4],[-10,3],[-8,3],[-9,-11],[-10,-14],[-12,-4],[-8,-3],[-5,-1],[-12,7],[-8,10],[-8,17],[-2,14],[-5,17],[-8,11],[-8,6],[-22,7],[-7,-4],[-10,-11],[-7,-17],[-8,-11],[-9,-7],[-5,-4],[-8,-7],[-2,-11],[0,-6],[-5,-8],[-4,-7],[-8,-7],[-5,-7],[-7,-4],[-7,0],[-10,-7],[-5,-7],[-5,-11],[-7,-14],[-2,-10],[0,-11],[-3,-7],[-4,-14],[-3,-10],[-2,-14],[-2,-14],[0,-4],[-2,-17],[0,-10],[0,-18],[0,-21],[0,-10],[-4,-24],[-21,-126],[-15,-122],[-14,-84],[-16,-38],[-44,-78],[-21,-46],[-13,-21],[-2,-14],[11,-34],[5,-31],[3,-56],[-2,-38],[1,-24],[-5,-21],[-14,-22],[-35,-15],[-17,-10],[-20,-18],[-9,-28],[-9,-35],[-15,-36],[-2,-24],[3,-21],[0,-14],[-2,-10],[-15,-21],[-7,-14],[-5,-8],[-10,-3],[-22,-1],[-15,-4],[-7,-4],[-5,-3],[-7,-4],[-5,0],[-5,7],[-5,7],[-6,13],[-5,4],[-10,-1],[-17,-7],[-22,-8],[-20,0],[-12,-8],[-10,-10],[-5,-14],[-2,-14],[5,-17],[13,-17],[8,-25],[19,-96],[20,-17],[15,-10],[7,-10],[5,-7],[3,-7],[3,-10],[-3,-18],[1,-20],[0,-14],[-2,-11],[-5,-14],[-5,0],[-8,10],[-12,3],[-12,-7],[-10,-4],[-8,-3],[-7,-4],[-13,10],[-5,7],[-43,51],[-42,37],[-25,13],[-5,3],[-10,-4],[-5,-7],[-5,-14],[-2,-10],[0,-14],[3,-11],[7,-10],[11,-10],[10,-7],[15,-6],[7,-7],[8,-6],[2,-11],[0,-7],[0,-10],[6,-17],[5,-18],[5,-24],[3,-17],[5,-38],[-2,-24],[-4,-21],[-5,-7],[-7,-4],[-8,3],[-17,7],[-5,3],[-5,0],[-5,0],[0,-7],[8,-42],[26,-65],[15,-48],[11,-38],[3,-31],[-2,-25],[-15,-14],[-20,-4],[-17,0],[-8,-1],[-7,-3],[-2,-11],[2,-7],[10,-13],[18,-14],[17,-13],[13,-7],[7,-6],[1,-14],[-3,-11],[-2,-14],[-5,-3],[-7,-4],[-5,-4],[0,-6],[7,3],[20,8],[20,0],[20,1],[20,-3],[10,-3],[15,-10],[12,-14],[13,-20],[25,-38],[0,-6],[0,-7],[-2,-11],[-10,0],[-10,3],[-5,-4],[5,-10],[18,-20],[12,-3],[8,-7],[3,-14],[12,-10],[23,-24],[20,-23],[10,-21],[8,-27],[6,-31],[12,-35],[3,-14],[10,-24],[6,-13],[5,-17],[5,-14],[5,-10],[3,-7],[4,14],[3,7],[5,-17],[3,-7],[7,-14],[8,-14],[12,-13],[13,-17],[10,-31],[6,-24],[-2,-18],[-7,-24],[-17,-39],[0,-21],[1,-66],[5,-24],[38,-44],[10,-17],[6,-17],[5,-24],[6,-45],[8,-35],[2,-24],[1,-14],[0,-10],[1,-7],[-4,-4],[-2,-7],[-10,-7],[-12,-4],[-17,3],[-28,3],[-22,-1],[-25,6],[-20,17],[-8,14],[-5,10],[-7,3],[-5,-3],[2,-11],[18,-20],[18,-20],[8,-28],[-2,-28],[-7,-24],[-5,-31],[0,-21],[-14,-32],[-20,-7],[-12,-1],[-12,6],[-8,4],[-5,-7],[-5,-7],[-7,-4],[-8,-4],[-2,-7],[5,-6],[8,-7],[5,-10],[0,-7],[-16,-88],[-7,-38],[-43,-81],[-10,-21],[-7,-7],[-8,-1],[-15,0],[-12,-7],[-15,-15],[-9,-17],[-5,-7],[0,-14],[0,-7],[5,-10],[6,-14],[0,-7],[0,-7],[-10,-11],[-27,-35],[5,-14],[8,-7],[8,-13],[0,-11],[2,-7],[3,-13],[3,-11],[5,0],[7,11],[10,11],[10,3],[9,1],[23,-7],[7,-6],[26,-38],[15,-20],[18,-48],[13,-38],[0,-28],[-2,-31],[-9,-45],[-7,-35],[-19,-43],[-41,-60],[-32,-56],[-21,-32],[-18,-15],[-7,0],[-10,-11],[-5,-7],[-2,-7],[-33,-84],[-15,-32],[3,-6],[12,-17],[21,-28],[5,-20],[12,-7],[18,-3],[7,7],[13,1],[5,-11],[8,-69],[4,-97],[-7,-24],[-7,-8],[-8,-7],[-4,-7],[-3,-10],[5,-7],[25,-6],[18,-10],[20,-17],[10,-20],[15,-31],[8,-17],[20,-17],[23,-13],[12,-7],[8,-14],[2,-17],[3,-17],[3,-24],[-12,-32],[-17,-49],[-2,-28],[-7,-28],[-9,-35],[-9,-29],[-5,-23],[-10,-28],[-9,-25],[-14,-39],[-5,-21],[-12,-35],[-7,-24],[0,-7],[5,-7],[8,-17],[3,-14],[-3,-10],[-7,-4],[-3,10],[-5,7],[-7,3],[-5,-7],[-5,-10],[-5,-14],[-2,-14],[5,-14],[13,-10],[7,-14],[11,-17],[5,-13],[0,-7],[-7,-11],[-8,-4],[-17,-7],[-22,3],[-23,-1],[-15,0],[-14,-4],[-10,-1],[-10,4],[-13,6],[-15,20],[-7,11],[-3,17],[-1,21],[0,28],[-3,10],[-5,10],[-2,14],[-6,24],[-10,31],[-10,24],[-6,28],[0,20],[0,7],[-5,0],[-5,-7],[-10,-7],[-12,-7],[-17,-18],[-22,-15],[-13,-4],[-9,0],[-13,3],[-10,10],[-12,3],[-10,4],[-10,-4],[-13,6],[-7,14],[-13,17],[-10,7],[-12,6],[-10,7],[-11,10],[-5,14],[-7,24],[-16,45],[-8,31],[-13,65],[-1,21],[0,19],[-3,12],[-5,14],[-5,7],[-2,-7],[5,-14],[3,-14],[-5,-35],[-2,-10],[-2,-14],[-8,-18],[-12,-14],[-9,-7],[-10,-8],[-8,4],[-7,3],[-1,21],[-2,7],[-10,-11],[0,-14],[-2,-10],[-5,-11],[-7,-7],[-10,0],[-10,-1],[-5,0],[-10,-7],[-7,-4],[-5,4],[-8,6],[-7,17],[-5,14],[-3,14],[-8,24],[0,17],[-3,11],[-5,0],[-2,-7],[-5,-11],[-5,-4],[-5,0],[-7,-3],[-1,76],[-1,28],[-12,6],[-5,0],[-8,-7],[-9,-14],[-15,-25],[-24,-49],[-5,-11],[-14,-28],[-17,-25],[-19,-25],[-25,-25],[-12,-7],[-18,3],[-7,3],[-10,10],[-3,7],[-2,14],[-1,24],[-3,31],[0,28],[-1,77],[-24,96],[-13,66],[-6,58],[-3,7],[-2,-7],[-3,-7],[-7,-7],[-5,0],[-7,3],[-5,7],[0,7],[2,10],[2,35],[-1,45],[0,12],[2,16],[0,24],[0,7],[0,7],[-5,0],[-5,4],[-8,3],[-2,10],[-1,35],[0,7],[0,7],[-5,10],[-8,7],[-5,3],[0,7],[0,7],[2,7],[3,7],[0,7],[-10,10],[-5,3],[-3,7],[0,11],[-3,17],[2,21],[0,17],[0,24],[-4,52],[-3,45],[-3,18],[-2,10],[2,7],[5,11],[5,10],[-1,24],[-2,7],[-3,7],[-2,7],[-8,7],[-12,3],[-5,-25],[0,-7],[-10,-10],[-9,-11],[-5,-14],[-2,-7],[-5,-4],[-13,14],[-2,7],[2,21],[0,7],[-5,3],[-15,-14],[-8,6],[-28,52],[-5,13],[-5,21],[-10,34],[-21,38],[-5,10],[-5,4],[-7,-1],[-8,0],[-7,3],[-5,4],[-5,0],[-10,3],[-5,-7],[-12,-8],[-13,-3],[-15,-4],[-15,6],[-20,24],[-10,31],[-10,24],[-3,45],[-1,7],[0,21],[5,24],[4,18],[0,6],[0,18],[-10,13],[-8,14],[-10,7],[-7,6],[-5,11],[-3,7],[-3,10],[3,7],[5,7],[9,21],[12,21],[15,32],[7,24],[2,8],[0,6],[-7,-3],[-15,-28],[-36,-57],[-15,-28],[-4,-4],[-8,7],[-5,10],[-3,10],[0,18],[0,28],[4,31],[2,38],[-3,38],[2,7],[3,11],[-1,7],[-2,24],[-1,21],[-2,14],[-8,17],[0,14],[-3,6],[2,11],[3,7],[7,18],[2,10],[3,17],[-3,14],[-8,28],[-8,38],[-3,27],[0,25],[2,31],[2,21],[5,17],[2,14],[10,11],[-1,17],[-2,11],[2,14],[5,10],[2,7],[5,11],[7,14],[10,7],[7,18],[5,14],[2,14],[2,14],[-2,17],[7,11],[10,3],[10,11],[4,14],[3,11],[-1,20],[0,18],[-8,17],[-12,27],[-13,28],[-20,23],[-18,24],[-25,20],[-33,31],[-32,26],[-16,14],[-17,10],[-25,9],[-22,10],[-28,13],[-15,7],[-35,2],[-19,0],[-25,-5],[-45,-4],[-22,-1],[-15,3],[-64,5],[-15,0],[-25,-5],[-15,0],[-22,-4],[-7,-4],[-13,0],[-29,-8],[-37,-15],[-23,-4],[-14,-11],[-25,-11],[-5,-7],[-14,-8],[-5,-3],[-40,-29],[-61,-47],[-7,0],[-10,-11],[-29,-22],[-37,-36],[-12,-7],[-25,-25],[-5,-3],[-44,-36],[-44,-40],[-41,-43],[-10,-11],[-10,-10],[-7,-14],[-163,-224],[-28,-60],[-10,-24],[-12,-32],[-9,-18],[-19,-56],[-10,-24],[-24,-63],[-30,-105],[-17,-63],[-7,-46],[-7,-24],[-2,-7],[-14,-74],[-2,-7],[0,-10],[-2,-17],[-5,-32],[1,-55],[0,-25],[4,-45],[5,-62],[1,-24],[8,-49],[8,-41],[3,-10],[10,-45],[8,-24],[3,-7],[18,-66],[10,-34],[13,-45],[16,-62],[13,-45],[8,-27],[13,-34],[13,-38],[23,-69],[5,-3],[23,-58],[29,-59],[7,-20],[6,-14],[2,-7],[13,-17],[38,-41],[20,-23],[15,-3],[12,7],[24,22],[42,18],[17,11],[8,-3],[10,-17],[18,-14],[5,-3],[7,-10],[28,-27],[30,-30],[8,-11],[35,-30],[20,-13],[32,-17],[23,-13],[15,-6],[20,-7],[20,-6],[49,-9],[15,0],[13,1],[27,8],[19,7],[8,0],[5,11],[5,7],[4,17],[-3,39],[0,27],[4,25],[7,24],[13,18],[2,10],[2,8],[0,6],[7,21],[5,25],[7,49],[7,21],[-3,14],[0,10],[-5,10],[1,5],[1,6],[5,0],[7,-3],[5,3],[5,4],[5,10],[7,1],[8,0],[8,-4],[7,-6],[10,0],[2,8],[5,13],[5,11],[7,-7],[-2,-21],[-2,-14],[-2,-14],[-5,-10],[-5,-7],[-7,-11],[-13,-11],[-4,-10],[0,-18],[-2,-14],[0,-7],[24,11],[8,-10],[15,-17],[8,-13],[12,-28],[11,-41],[0,-14],[3,-35],[5,-20],[16,-10],[17,0],[15,4],[12,-3],[13,-3],[17,-13],[15,-24],[16,-31],[12,-17],[18,-6],[10,-7],[5,-3],[7,-11],[8,-48],[4,-73],[6,-62],[3,-42],[8,-20],[0,-18],[-5,-14],[-4,-14],[0,-14],[10,-13],[10,7],[22,15],[27,21],[10,8],[29,4],[15,0],[18,-13],[10,-7],[15,-6],[7,-10],[13,-17],[20,-45],[8,-24],[5,-21],[1,-41],[-5,-28],[-7,-25],[1,-14],[0,-27],[0,-14],[-9,-35],[-2,-14],[-15,-32],[-43,-84],[-27,-29],[-17,-14],[-15,-18],[-4,-18],[-12,-28],[-3,-14],[13,-10],[5,4],[7,0],[8,-3],[5,-4],[5,-3],[5,-7],[42,-16],[23,-10],[12,8],[12,24],[12,18],[7,4],[13,0],[12,14],[7,18],[8,4],[24,0],[13,1],[10,4],[9,3],[10,1],[5,3],[10,-3],[10,-7],[8,1],[5,0],[7,3],[5,1],[7,-4],[8,1],[7,0],[15,-10],[8,-7],[12,-10],[8,-14],[5,-10],[8,-20],[5,-14],[5,-21],[10,-20],[13,-14],[8,-7],[12,-3],[12,-3],[11,-13],[5,-11],[0,-17],[-2,-14],[0,-24],[0,-25],[1,-31],[0,-24],[-2,-31],[1,-25],[5,-27],[3,-18],[5,-17],[3,-21],[2,-10],[5,-3],[5,0],[8,-3],[7,-11],[6,-13],[5,-14],[10,-14],[15,-13],[13,-14],[5,-6],[5,-11],[2,-10],[1,-17],[2,-21],[8,-31],[8,-24],[5,-21],[3,-14],[5,-24],[6,-24],[7,-17],[3,-21],[0,-14],[-4,-10],[-5,-11],[-5,-14],[-5,-10],[-5,-11],[-7,0],[-20,-1],[-20,3],[-5,3],[-5,11],[-10,6],[-5,11],[-3,13],[-5,7],[-5,4],[-2,-7],[-2,-7],[-3,-18],[3,-24],[0,-17],[1,-21],[-2,-32],[3,-27],[0,-21],[3,-14],[2,-14],[1,-14],[-3,-17],[-2,-10],[0,-28],[1,-18],[5,-45],[6,-20],[5,-17],[5,-21],[5,-7],[5,0],[10,4],[5,0],[10,0],[15,8],[7,0],[5,-7],[0,-10],[0,-18],[3,-17],[5,-15],[18,-33],[8,-10],[5,-3],[5,3],[2,11],[5,10],[7,1],[8,-11],[5,-10],[3,-10],[2,-7],[0,-10],[3,-11],[0,-13],[0,-18],[3,-10],[3,-25],[3,-17],[0,-17],[0,-28],[1,-21],[0,-17],[0,-21],[3,-21],[3,-17],[0,-17],[3,-18],[0,-17],[0,-10],[3,-14],[3,-24],[0,-14],[3,-21],[2,-17],[1,-11],[0,-17],[3,-14],[0,-14],[0,-14],[-2,-14],[0,-17],[-2,-16],[0,-8],[-2,-18],[-3,-17],[-2,-18],[-2,-14],[-2,-17],[-7,-18],[0,-6],[0,-11],[0,-14],[3,-7],[10,-17],[2,-7],[0,-10],[1,-7],[0,-14],[3,-21],[0,-17],[3,-21],[2,-13],[0,-11],[3,-17],[0,-11],[3,-8],[3,-16],[5,-13],[3,-14],[2,-7],[3,-7],[2,-10],[3,-11],[0,-14],[0,-13],[3,-14],[-2,-21],[0,-24],[1,-25],[0,-27],[-2,-25],[0,-21],[-2,-21],[-2,-13],[0,-14],[0,-11],[3,-10],[3,-14],[2,-17],[0,-7],[1,-17],[-3,-7],[1,-18],[-3,-7],[5,-24],[6,-7],[2,-7],[3,-13],[0,-14],[0,-25],[1,-17],[0,-31],[0,-25],[1,-13],[-8,-14],[-7,-11],[-5,-4],[-2,11],[0,7],[-1,13],[-2,11],[-3,17],[-3,28],[-3,20],[0,25],[0,7],[-5,-7],[-2,-11],[-5,-14],[-5,-10],[0,-14],[-2,-11],[-2,-14],[-3,-10],[-7,-11],[-5,-10],[-7,-8],[-7,-3],[-5,-4],[-10,10],[-5,7],[-3,7],[-5,17],[-5,17],[-6,17],[-2,18],[-3,14],[0,10],[-5,3],[-5,-10],[-2,-14],[-2,-18],[-3,-21],[-2,-10],[-2,-17],[-3,-11],[-4,-10],[-3,-7],[-7,-11],[-7,-11],[-5,-7],[-5,-10],[-10,-18],[-5,3],[-7,28],[-8,31],[-3,31],[-5,3],[-5,-3],[-8,-4],[-9,-7],[-17,-18],[-20,-18],[-10,-4],[-12,-4],[-13,4],[-9,-1],[-10,0],[-10,-4],[-10,-7],[-12,-11],[-15,-18],[-10,-17],[-5,13],[-5,-3],[-7,-11],[-7,-14],[-5,-14],[-9,-18],[-10,-17],[-7,-11],[-5,-10],[-8,-8],[-12,-14],[-12,-11],[-5,-7],[-2,-10],[8,-14],[5,-10],[5,-10],[2,-11],[3,-17],[0,-10],[-4,-18],[-3,-10],[-7,-1],[-8,0],[-10,0],[-7,7],[-5,6],[-5,11],[0,10],[-1,14],[-2,10],[-5,4],[-5,-4],[-7,-7],[-20,-15],[-7,-3],[-15,3],[-8,0],[-7,3],[-25,23],[-13,7],[-10,17],[0,10],[2,11],[0,10],[-13,28],[-20,51],[-11,42],[-5,20],[-6,52],[-5,24],[-6,59],[-1,49],[-3,41],[0,21],[12,32],[12,21],[9,11],[37,46],[5,14],[-3,7],[-15,3],[-12,-4],[-10,-11],[-7,0],[1,69],[5,32],[4,10],[10,25],[12,28],[14,46],[10,17],[12,18],[17,28],[9,21],[-7,-7],[-12,-21],[-7,-13],[-2,-2],[-20,-24],[-17,-11],[-8,-4],[-10,-7],[-9,-4],[-5,4],[-13,20],[-16,34],[-12,21],[-11,31],[-5,34],[-11,63],[-5,38],[2,7],[5,10],[7,14],[-1,35],[10,38],[49,30],[15,7],[17,14],[5,14],[4,18],[0,21],[0,7],[-5,20],[-6,18],[-15,55],[-8,41],[-13,7],[-7,-1],[-8,4],[-25,30],[-5,3],[-3,7],[0,11],[5,17],[2,7],[-20,41],[0,11],[-5,7],[-8,10],[-10,13],[-3,35],[-3,10],[-10,17],[-3,11],[0,10],[0,10],[-5,7],[-3,11],[-12,27],[-18,31],[-28,30],[-13,17],[-15,24],[-13,27],[-5,18],[-8,31],[-3,62],[-3,38],[-6,35],[-3,31],[0,14],[-8,27],[-10,38],[-3,14],[-8,38],[-7,10],[-13,7],[-5,6],[-13,35],[0,7],[-5,17],[-3,24],[-3,14],[-23,41],[-7,17],[-18,17],[-8,21],[-13,37],[0,21],[-3,21],[-5,28],[-8,17],[-17,16],[-8,21],[-18,20],[-20,31],[-8,14],[-5,10],[-5,-4],[-4,-17],[0,-14],[-10,-25],[-12,-21],[-7,0],[-6,28],[-3,41],[-5,10],[-7,14],[-3,7],[-15,27],[-9,27],[-16,-48],[-5,10],[-3,10],[-2,11],[-3,7],[-2,10],[-3,10],[-3,7],[-2,-10],[-5,-25],[-6,-35],[-5,-24],[-7,0],[-1,24],[0,31],[1,56],[4,62],[3,14],[5,6],[4,5],[17,32],[-7,3],[-12,-11],[-13,-7],[-5,3],[-5,4],[-12,10],[-11,-16],[-3,8],[-12,-5],[-9,15],[-11,33],[-12,-6],[-12,3],[-10,10],[-5,0],[-8,0],[-4,-4],[-13,-7],[-17,-14],[-10,-4],[-7,0],[-5,0],[-8,6],[-5,14],[-13,31],[-2,3],[-3,4],[-5,-11],[-2,-17],[-7,-46],[-4,-7],[-10,0],[-13,3],[-10,14],[-7,6],[-5,-3],[5,-21],[8,-27],[18,-59],[3,-21],[-5,-21],[-2,-14],[0,-20],[0,-11],[-2,-7],[-12,-35],[-21,-66],[-7,-21],[-8,-8],[-14,-24],[-22,-39],[-2,-14],[5,0],[12,-10],[4,-13],[-2,-60],[-3,-24],[-11,-56],[-12,-63],[1,-35],[3,-59],[-2,-34],[-2,-32],[3,-7],[10,-24],[0,-7],[-7,-31],[-6,-45],[-8,-14],[-7,-15],[-19,-31],[-19,-36],[-15,-24],[-12,-18],[-25,-33],[-19,-17],[-7,-14],[-5,-7],[-5,-18],[-2,-21],[0,-10],[-3,-80],[-3,-17],[-2,-25],[-10,-7],[-12,-4],[-17,0],[-10,-4],[-10,0],[-5,3],[-13,14],[-10,24],[-8,10],[-2,-6],[-2,-5],[-8,-10],[-28,-57],[-8,-14],[-9,-14],[-5,3],[-1,7],[0,7],[0,38],[0,14],[-8,0],[-17,-14],[-22,-15],[-22,-15],[-8,0],[-9,-4],[-47,-18],[-20,-15],[-12,-11],[-7,-3],[-8,0],[-5,3],[-5,3],[0,7],[-3,21],[-1,52],[-2,21],[-5,-11],[-2,-17],[-7,-25],[-10,-10],[-5,3],[-10,3],[-8,28],[-8,10],[-7,-18],[-5,-3],[-5,20],[-3,24],[-2,7],[-18,28],[-20,20],[-8,20],[-8,11],[-15,20],[-25,10],[-6,-3],[-13,-19],[-2,-28],[-5,-45],[2,-87],[0,-17],[-5,-7],[-5,-4],[-7,-3],[-7,-7],[-3,-11],[-4,-14],[0,-10],[-2,-21],[-5,0],[-6,10],[-2,24],[-1,17],[-5,4],[0,-7],[1,-14],[-3,-18],[-9,-10],[-5,0],[-10,-4],[-7,-7],[-8,-4],[-7,3],[-10,17],[-18,24],[-8,7],[-7,-7],[-15,-15],[-4,-21],[-6,-114],[-2,-59],[1,-28],[-17,-49],[-10,-11],[-19,-11],[-37,-15],[-10,-14],[-5,-21],[-4,-35],[-4,-49],[-15,-35],[-9,-10],[-5,-15],[-6,-73],[-7,-62],[-9,-25],[-10,-11],[-10,-17],[-4,-35],[-5,-45],[-2,-25],[-10,-26],[-6,-16],[-5,-28],[-2,-10],[-7,-11],[-10,-7],[-8,0],[-12,24],[-1,7],[-2,27],[-10,-14],[-5,-21],[-2,-17],[0,-21],[-7,-42],[-12,-21],[-4,-4],[-8,0],[-12,7],[-5,3],[-5,-7],[-15,-15],[-24,-18],[-18,-7],[-5,-7],[-4,-7],[-10,-28],[-17,-35],[-19,-29],[-17,-25],[-10,-24],[-11,-56],[-12,-18],[-8,-7],[-27,-11],[-12,-11],[-2,-10],[2,-14],[11,-45],[5,-21],[6,-45],[-4,-62],[-4,-46],[-7,-24],[-12,-32],[-5,-14],[0,-7],[0,-10],[10,0],[7,7],[8,4],[5,-7],[2,-10],[1,-17],[-5,-21],[-7,-21],[-5,-11],[-14,-39],[-15,-17],[-14,-8],[-13,3],[-5,4],[-2,7],[-13,17],[-26,47],[-5,7],[-10,17],[-7,10],[-16,21],[-7,10],[-5,10],[-8,17],[-5,18],[-8,13],[-8,17],[-5,11],[-5,10],[-5,7],[-5,10],[-7,3],[-5,0],[-5,-7],[-5,-11],[3,-20],[-3,-11],[-2,-14],[-5,-14],[-4,-31],[-7,-11],[-8,-3],[-7,13],[-8,14],[-10,13],[-10,14],[-8,0],[-5,-4],[-22,-14],[-9,-18],[-3,-10],[-4,-32],[3,-27],[10,-21],[15,-38],[6,-20],[0,-25],[-4,-28],[0,-31],[-2,-31],[-5,-11],[-7,-10],[-7,-8],[-18,-7],[-10,0],[-7,0],[-12,-1],[-5,3],[-8,4],[-7,6],[-3,7],[-5,0],[-7,-3],[0,-7],[-2,-14],[-3,-18],[-14,-11],[-13,-7],[-7,-4],[-10,4],[-5,3],[-10,7],[-5,6],[-8,7],[-10,27],[-5,25],[-1,17],[-2,14],[-3,17],[-13,10],[-9,0],[-10,0],[-15,-8],[-12,-4],[-8,0],[-15,-4],[-10,-4],[-7,-7],[-7,-7],[-5,-7],[-29,-22],[-32,-14],[-13,-4],[-7,6],[-13,4],[-7,-1],[-8,-3],[-10,3],[-17,-1],[-10,10],[-5,14],[-5,14],[-8,7],[-7,-1],[-8,0],[-12,3],[-13,7],[-7,7],[-10,6],[-5,-7],[-2,-14],[0,-21],[3,-41],[5,-21],[16,-48],[-5,-21],[-17,-25],[-10,3],[-5,21],[-5,24],[-8,52],[-6,28],[2,31],[2,28],[3,17],[9,32],[2,24],[2,21],[-3,28],[3,21],[-8,24],[-5,20],[-6,63],[-1,27],[-13,38],[-15,48],[-16,62],[-6,31],[5,15],[7,14],[8,0],[10,7],[4,14],[0,10],[0,18],[-3,17],[-5,31],[-1,42],[-7,17],[-10,3],[-10,-7],[-13,-4],[-10,0],[-7,13],[-3,11],[-2,14],[-8,13],[-5,11],[-5,6],[-5,0],[-8,-7],[-14,-7],[-8,-4],[-15,3],[-15,13],[-10,11],[-12,17],[-11,20],[-12,17],[-10,10],[-8,3],[-10,-3],[-7,-7],[-7,-11],[-7,-18],[-18,-11],[-12,4],[-8,6],[-5,7],[-2,14],[-3,17],[-3,10],[-5,11],[-5,10],[-7,7],[-8,6],[-7,0],[-10,0],[-7,-2],[-5,-16],[-8,-7],[-7,-21],[-2,-14],[-2,-14],[-8,-7],[-2,-7],[-8,-4],[-7,0],[-12,10],[-11,10],[-2,11],[-3,10],[-8,17],[-5,7],[-7,0],[-5,-4],[-10,-4],[-5,0],[-10,7],[-2,7],[-3,6],[2,11],[3,7],[7,7],[2,11],[0,17],[-8,17],[-12,21],[-10,24],[-11,24],[-7,13],[-13,21],[-8,13],[-5,18],[-6,55],[0,48],[-1,14],[5,18],[7,28],[7,10],[3,18],[-1,21],[7,28],[12,21],[15,11],[17,11],[22,7],[25,15],[12,14],[10,25],[2,24],[-3,10],[-15,21],[-25,23],[-25,24],[-33,23],[-17,14],[-16,17],[-10,20],[-5,28],[-8,27],[-3,42],[-3,7],[-10,17],[-15,3],[-37,-1],[-10,-8],[-12,-14],[-22,-18],[-10,-4],[-10,-3],[-12,3],[-17,3],[-23,9],[-40,31],[-8,10],[-12,-1],[-20,-4],[-17,10],[-5,4],[-10,6],[-20,0],[-7,-4],[-3,-7],[-24,-42],[-2,-11],[-5,-14],[0,-14],[0,-14],[3,-20],[18,-62],[11,-14],[22,-6],[37,-10],[23,-9],[47,-41],[11,-10],[2,-21],[0,-6],[1,-14],[-8,-21],[-11,-24],[-5,-12],[-32,-63],[-9,-25],[-5,-7],[-7,0],[-13,0],[-7,6],[-8,7],[-3,17],[-7,21],[-16,20],[-17,0],[-7,-7],[-17,-25],[-3,-7],[-7,-14],[-4,-18],[0,-10],[0,-24],[-4,-42],[0,-7],[-10,-28],[-9,-21],[-3,-7],[-4,-7],[-5,-4],[-5,-4],[-5,-3],[-12,-7],[-18,-1],[-27,-8],[-7,-3],[-20,13],[-18,20],[-3,11],[-10,44],[-6,25],[-8,44],[0,14],[-8,21],[-2,7],[-10,3],[-5,7],[0,10],[0,7],[-1,14],[-2,7],[-5,3],[-3,-7],[1,-14],[2,-17],[8,-14],[5,-10],[5,-31],[11,-69],[-1,-42],[-3,-10],[-10,-1],[-5,4],[-5,10],[-5,17],[-5,17],[-6,28],[-2,7],[-8,3],[-4,-7],[-8,-11],[-15,-3],[-9,-8],[-8,-10],[-2,-11],[0,-21],[6,-17],[5,-17],[0,-17],[0,-7],[-2,-14],[0,-7],[-5,-14],[-5,-7],[-5,-4],[-4,0],[-5,0],[-15,10],[-8,6],[-18,17],[-15,31],[-13,24],[-5,10],[-7,14],[-18,31],[-25,27],[-33,33],[-23,24],[-2,7],[-5,10],[-3,18],[-5,17],[-1,21],[-5,27],[-3,10],[-7,4],[-8,0],[-2,-7],[0,-7],[0,-14],[3,-11],[0,-7],[0,-7],[-5,-14],[-4,-14],[-10,-3],[-10,-1],[-8,0],[-7,3],[-3,7],[-5,14],[-5,10],[-5,11],[-5,6],[-10,7],[-17,-1],[-15,0],[-10,3],[-8,0],[-5,3],[-7,7],[-10,3],[-10,3],[-13,4],[-9,-1],[-5,-3],[-18,-1],[-17,13],[-8,11],[-7,3],[-5,-11],[2,-6],[6,-14],[15,-41],[3,-21],[-3,-7],[1,-21],[5,-31],[13,-21],[5,-6],[18,-17],[7,-10],[-2,-7],[-3,-7],[-2,-11],[10,-20],[8,-11],[3,-10],[10,-31],[0,-8],[0,-9],[-2,-52],[-2,-18],[-9,-35],[-5,-21],[-4,-24],[-3,-11],[-7,-14],[-12,-4],[-10,-10],[-10,-14],[-14,-22],[-5,-7],[-5,-3],[-5,-4],[-5,3],[-10,28],[-15,20],[-13,17],[-18,20],[-7,4],[-5,0],[-7,-15],[-10,-10],[-5,3],[-13,10],[-5,7],[-10,38],[-5,17],[-1,29],[2,13],[12,38],[2,21],[5,11],[27,59],[9,15],[10,10],[2,11],[-2,10],[-8,7],[-10,-7],[-27,-15],[-24,-4],[-25,3],[-23,6],[-20,6],[-12,7],[-18,13],[-5,10],[-6,10],[-4,11],[2,7],[0,7],[17,42],[17,32],[7,10],[8,4],[19,8],[10,10],[0,11],[-5,13],[-8,4],[-10,-1],[-12,-3],[-15,10],[-13,10],[-2,6],[2,7],[5,11],[17,35],[5,18],[2,17],[0,21],[-14,45],[-2,17],[2,28],[7,28],[7,24],[12,25],[2,14],[-10,17],[-43,39],[1,25],[0,6],[4,16],[9,17],[0,14],[0,14],[-5,14],[-1,17],[0,14],[14,46],[8,14],[17,14],[24,18],[17,11],[22,32],[8,7],[31,57],[2,14],[0,27],[-3,28],[-3,10],[-21,87],[-18,37],[-6,14],[-32,68],[-10,17],[-4,7],[-65,93],[-87,125],[-28,41],[-19,27],[-5,35],[-13,3],[-7,-4],[-13,-7],[-12,3],[-5,3],[-35,37],[-33,31],[-40,30],[-35,33],[-48,22],[-2,1],[-38,13],[-38,13],[-16,5],[-68,24],[-92,21],[-12,3],[-30,3],[-11,-2],[-11,-2],[-7,3],[-100,4],[-12,0],[-59,-5],[-5,-1],[-42,-8],[-102,-6],[-15,-4],[-32,-8],[-67,-12],[-19,-1],[-62,-12],[-47,-29],[-24,-11],[-15,-4],[-22,-8],[-18,-11],[-22,-11],[-24,-10],[-13,-14],[-12,-9],[-14,-10],[-10,-11],[-22,-8],[-10,0],[-30,-8],[-29,-15],[-40,-29],[-17,-14],[-37,-22],[-22,-18],[-41,-29],[-25,-14],[-29,-15],[-18,-8],[-37,-15],[-29,-11],[-22,-18],[-37,-29],[-25,-11],[-27,-11],[-19,-14],[-22,-12],[-10,-7],[-10,-7],[-27,-18],[-34,-29],[-22,-18],[-44,-32],[-17,-16],[-43,-40],[-16,-15],[-16,-15],[-16,-15],[-20,-14],[-14,-11],[-18,-11],[-22,-18],[-22,-15],[-31,-25],[-27,-18],[-23,-14],[-12,-11],[-12,-8],[-7,-3],[-15,-8],[-12,-10],[-20,-25],[-19,-25],[-10,-14],[-7,-14],[-5,-7],[-10,-18],[-14,-18],[-25,-28],[-36,-33],[-20,-14],[-7,-4],[-42,-39],[-29,-29],[-22,-18],[-15,-14],[-22,-22],[-17,-14],[-15,-14],[-17,-18],[-29,-22],[-27,-28],[-29,-33],[-30,-32],[-26,-25],[-15,-18],[-15,-17],[-22,-22],[-22,-32],[-14,-17],[-12,-15],[-65,-75],[-35,-49],[-15,-21],[-17,-22],[-4,-10],[0,-7],[5,-10],[5,-14],[8,-10],[7,-7],[10,-17],[5,-14],[8,-14],[8,-20],[2,-11],[3,-24],[3,-17],[3,-10],[2,-11],[-2,-21],[8,-6],[5,-11],[10,-6],[12,-7],[8,-7],[0,-10],[-2,-14],[-3,-10],[-4,-18],[-3,-10],[-4,-14],[-8,-18],[-2,-14],[0,-14],[1,-21],[0,-17],[-2,-17],[-3,-11],[-9,-21],[-7,-21],[-13,-18],[-4,-14],[-8,-10],[-7,-8],[-7,-3],[-5,-11],[-5,-7],[-7,-7],[-7,-18],[-5,-10],[-5,-11],[-2,-10],[-10,-14],[-5,-7],[-12,-15],[0,-7],[-7,-7],[-8,-7],[-7,7],[-8,27],[-10,7],[-7,-14],[2,-14],[1,-21],[-3,-10],[-2,-14],[0,-11],[-2,-14],[-2,-10],[-5,-7],[-5,-11],[-12,-14],[-5,-7],[-7,-11],[-5,-3],[-8,0],[-9,-8],[-5,-7],[-13,-4],[-7,-7],[-2,-7],[2,-7],[-5,0],[-5,0],[-5,10],[-5,4],[-2,6],[-23,10],[-7,7],[-8,17],[-5,17],[-5,4],[-5,0],[-5,-1],[-5,-3],[-5,0],[-10,-8],[-17,-11],[-7,-3],[-20,-11],[-10,-11],[-9,-11],[-5,-7],[-5,0],[-8,7],[-10,3],[-5,3],[-10,14],[-7,7],[-5,3],[-8,-11],[-7,-14],[-7,-7],[-10,0],[-8,7],[-7,6],[-13,3],[-5,-3],[-9,-7],[-5,-11],[-2,-17],[2,-14],[6,-21],[5,-17],[8,-21],[10,-17],[5,-14],[0,-10],[0,-17],[-2,-14],[-15,-25],[-12,-25],[-7,-10],[-10,-11],[-17,-14],[-32,-26],[-14,-7],[-30,-1],[-8,3],[-5,7],[-4,-3],[0,-14],[-3,-11],[-4,-10],[-10,-11],[-5,-7],[-10,-4],[-7,0],[-5,3],[-5,0],[-8,0],[-14,-11],[-30,3],[-10,-4],[-35,-11],[-4,-1],[-3,7],[0,7],[10,11],[-1,10],[-7,4],[-10,-8],[-7,0],[-5,0],[-5,3],[-8,7],[-7,-7],[-7,-18],[-12,-17],[-8,-4],[-7,-4],[-5,0],[-5,0],[-5,-4],[-5,-3],[-2,-11],[-3,-7],[-17,-14],[-9,-11],[-27,-18],[-20,-18],[-15,-11],[-24,-21],[-8,-4],[-12,-11],[-10,-14],[-9,-14],[-8,-7],[-16,-29],[-3,-7],[-12,-17],[-7,-4],[-10,-18],[-5,-7],[-15,-4],[-5,-7],[-14,-4],[-5,-3],[-10,-1],[-3,-7],[-9,-14],[-7,-17],[-12,-21],[-15,-22],[-12,-21],[-12,-21],[-17,-25],[-10,-18],[-14,-28],[-10,-14],[-11,-22],[-44,-87],[-12,-25],[-10,-21],[-7,-14],[-12,-14],[-8,-11],[-9,-14],[-8,-11],[-9,-14],[-8,-7],[-4,-11],[-22,-24],[-20,-22],[-17,-21],[-17,-28],[-29,-36],[-34,-46],[-11,-18],[-10,-19],[-19,-37],[-9,-19],[-84,-166],[-53,-104],[-17,-18],[-22,-25],[-21,-32],[-49,-91],[-28,-64],[-24,-56],[-27,-67],[-24,-53],[-38,-70],[-51,-81],[-41,-64],[-29,-67],[-17,-39],[-33,-67],[-119,-230],[-7,-13],[-89,-176],[-58,-113],[-82,-155],[-11,-45],[-29,-84],[-19,-43],[-5,-14],[-2,-28],[-21,-63],[-29,-77],[-25,-105],[-24,-73],[-14,-36],[-5,-31],[-12,-32],[-18,-22],[-1,-2],[-12,-25],[-34,-91],[-69,-204],[-31,-80],[-29,-50],[-41,-70],[-16,-43],[-9,-87],[-7,-62],[-4,-39],[-12,-42],[-38,-63],[-17,-32],[-5,-18],[-2,-34],[-6,-73],[-3,-14],[-4,-21],[-2,-21],[-3,-18],[-4,-17],[-10,-25],[-5,-10],[-4,-7],[-8,-14],[-7,-11],[-10,-7],[-5,-18],[-4,-17],[-12,-42],[-5,-28],[-4,-45],[-2,-53],[-1,-34],[-5,-28],[-9,-35],[-15,-39],[-15,-38],[-23,-57],[-19,-49],[-14,-35],[-22,-49],[-9,-35],[-15,-39],[-9,-38],[-12,-42],[-14,-46],[-14,-56],[-2,-31],[-4,-59],[1,-42],[-5,-49],[-2,-21],[-7,-27],[-5,-11],[-5,-11],[-7,-14],[-9,-21],[-7,-28],[-7,-31],[-5,-39],[-2,-34],[-4,-46],[-9,-48],[-12,-46],[-12,-42],[-14,-32],[-7,-21],[-7,-24],[-10,-21],[-2,-14],[-2,-7],[0,-11],[-2,-24],[-2,-35],[-2,-31],[-2,-28],[-7,-38],[-5,-39],[-4,-38],[-2,-28],[-5,-42],[-6,-34],[-3,-21],[-1,-56],[-2,-28],[-2,-42],[0,-27],[-4,-28],[-5,-35],[-4,-28],[-5,-28],[-2,-10],[0,-14],[1,-35],[-2,-31],[-5,-45],[-2,-35],[1,-31],[0,-49],[-1,-49],[-2,-34],[-2,-32],[-2,-24],[0,-21],[-7,-31],[-7,-32],[0,-14],[0,-21],[-1,-41],[-3,-21],[1,-7],[5,-14],[8,-38],[5,-24],[3,-21],[5,-31],[3,-21],[-2,-55],[1,-59],[-1,-56],[-2,-45],[0,-24],[3,-24],[6,-38],[5,-28],[13,-45],[5,-31],[3,-21],[5,-10],[13,-31],[11,-38],[10,-24],[5,-10],[5,-3],[7,-4],[8,4],[12,7],[17,22],[8,3],[7,1],[10,-4],[12,-3],[8,4],[5,4],[5,3],[7,7],[10,4],[5,0],[5,-3],[5,-17],[5,-7],[5,-10],[8,-14],[2,-10],[0,-7],[3,-7],[5,-10],[3,-7],[7,-21],[6,-10],[7,-7],[10,-6],[13,-4],[14,4],[10,-10],[6,-7],[5,-20],[2,-14],[1,-7],[-5,-11],[-5,-10],[0,-11],[0,-20],[1,-32],[3,-17],[0,-17],[10,-3],[-11,-30],[-6,-16],[3,-7],[7,-7],[5,-3],[15,-10],[18,-6],[22,-3],[8,-3],[12,-7],[5,-3],[5,-7],[8,-10],[5,-11],[0,-24],[3,-31],[3,-38],[0,-18],[11,-10],[7,1],[10,-7],[5,-7],[5,-7],[0,-10],[3,-7],[2,-7],[5,-3],[5,0],[13,0],[10,1],[10,-4],[7,1],[12,0],[8,0],[7,0],[10,-3],[8,-3],[5,0],[5,4],[9,7],[8,0],[5,4],[7,-10],[5,-11],[11,-13],[7,-3],[8,-4],[4,0],[8,4],[5,4],[7,10],[2,11],[3,14],[5,7],[7,4],[7,3],[15,1],[8,0],[10,-3],[9,0],[8,0],[5,11],[2,14],[7,14],[5,0],[12,4],[13,4],[15,0],[12,4],[7,0],[8,11],[2,10],[0,7],[7,11],[10,28],[7,17],[12,25],[12,7],[8,-3],[10,0],[12,4],[32,15],[15,7],[10,4],[4,7],[8,7],[10,8],[4,7],[3,7],[5,10],[7,7],[5,1],[5,-4],[5,-7],[5,1],[7,-4],[10,-3],[8,0],[7,-3],[5,-3],[-2,-7],[-5,-7],[-5,-4],[5,-3],[8,0],[5,-3],[7,-7],[8,-10],[7,-10],[5,3],[5,7],[5,-3],[3,-7],[2,-7],[-2,-10],[-5,-11],[-7,-10],[-7,-11],[2,-7],[3,-7],[2,-7],[5,0],[13,-3],[7,4],[7,7],[8,7],[10,4],[2,7],[7,18],[5,7],[5,3],[5,4],[5,-3],[2,-11],[1,-14],[7,-3],[5,4],[5,0],[7,0],[8,-10],[5,-14],[0,-10],[8,0],[7,0],[5,0],[5,-6],[5,0],[7,3],[5,1],[8,0],[5,-7],[5,-7],[0,-14],[-2,-10],[5,-10],[5,0],[5,-4],[5,-10],[8,-10],[2,-7],[0,-14],[1,-14],[2,-10],[6,-21],[7,-20],[5,-11],[3,-10],[3,-10],[0,-14],[2,-11],[6,-10],[-3,-14],[-2,-17],[3,-28],[0,-10],[-2,-14],[0,-11],[0,-24],[-4,-10],[-3,-11],[-7,-4],[-5,-3],[-7,-7],[-10,-1],[-10,-3],[-12,-8],[-10,0],[-23,-4],[-19,-1],[-10,-7],[-10,-7],[-5,-14],[-2,-18],[0,-17],[3,-7],[5,-10],[0,-14],[8,-17],[25,-20],[15,-17],[5,-4],[0,-13],[-2,-11],[3,-7],[2,-7],[5,-10],[13,-13],[5,-4],[7,-6],[3,-11],[5,-10],[-4,-35],[-3,-17],[-7,-21],[-7,-21],[-5,-11],[-2,-7],[-7,0],[-15,3],[-5,0],[-8,-4],[-4,-7],[-10,-11],[-8,-3],[-12,-1],[-7,3],[-10,7],[-33,-1],[-7,3],[-5,0],[-8,-3],[-4,-4],[-8,-14],[-5,-7],[-7,-7],[-7,-4],[-10,-4],[-5,0],[-2,-10],[27,-38],[11,-27],[2,-7],[0,-7],[3,-7],[8,-17],[2,-10],[6,-14],[2,-7],[3,-7],[2,-7],[-2,-7],[5,-27],[3,-18],[5,-10],[3,-10],[0,-18],[0,-14],[0,-10],[-2,-14],[-5,-14],[-9,-28],[-5,-7],[-2,-11],[-8,-14],[-9,-17],[-7,-21],[-5,-11],[-7,-11],[-3,-13],[-4,-18],[-7,-38],[-3,-14],[1,-18],[2,-13],[3,-7],[3,-11],[0,-20],[0,-14],[-2,-7],[0,-7],[-2,-11],[-3,-7],[0,-10],[1,-11],[2,-13],[-7,-32],[-7,-21],[-7,-17],[-5,-15],[-5,-3],[-5,-4],[-4,-7],[-3,-7],[-21,-49],[-5,-14],[-7,-11],[-10,-10],[-8,-8],[-7,0],[-5,7],[-6,35],[-2,10],[-5,7],[-5,3],[-5,3],[-8,0],[-5,-3],[-4,-15],[-3,-7],[-2,-7],[-5,-6],[-20,37],[-8,7],[-5,3],[-7,7],[-11,17],[-28,75],[-8,21],[-7,21],[-3,6],[-5,0],[-5,-7],[-5,-10],[-7,-1],[-5,4],[-3,7],[-7,17],[-8,13],[-10,14],[-7,-4],[0,-17],[3,-31],[3,-42],[3,-34],[3,-14],[2,-11],[1,-24],[2,-21],[1,-13],[2,-14],[0,-18],[8,-20],[0,-11],[1,-17],[-3,-14],[-2,-10],[-2,-7],[0,-11],[0,-21],[0,-7],[-4,-17],[-5,0],[-8,-4],[-10,7],[-7,10],[-6,10],[-5,4],[-5,-1],[-4,-7],[3,-34],[3,-28],[1,-90],[0,-35],[-2,-28],[0,-7],[1,-7],[2,-7],[-2,-20],[-2,-14],[-3,-11],[-1,-66],[0,-28],[-2,-45],[1,-24],[0,-17],[8,-11],[0,-10],[-3,-11],[1,-10],[-3,-14],[-4,-17],[0,-7],[2,-11],[-12,-17],[-12,-15],[-5,-3],[-10,-4],[-5,3],[-5,-3],[-9,-1],[-6,18],[0,20],[0,14],[-5,0],[-4,-49],[0,-10],[3,-35],[2,-17],[1,-17],[0,-18],[-5,-21],[-4,-17],[-15,-18],[-7,-4],[-27,-66],[-7,-18],[-7,-17],[-10,-4],[-20,6],[-25,3],[-5,3],[-12,-14],[-5,-4],[-5,-3],[-5,3],[-5,10],[-5,7],[-7,14],[-6,10],[-2,10],[-3,11],[5,10],[-3,25],[-3,34],[4,73],[2,14],[0,7],[0,7],[-5,-14],[-4,-7],[-3,-7],[-2,-7],[-5,-4],[-5,0],[-5,7],[-8,10],[-5,0],[-2,-7],[5,-28],[3,-24],[1,-24],[-3,-7],[-2,-11],[-2,-17],[-5,-4],[-5,4],[-5,3],[-10,17],[-6,7],[-2,10],[0,11],[9,14],[-5,20],[-2,7],[-1,21],[0,11],[0,24],[-11,20],[-5,7],[-5,17],[-2,11],[-3,17],[-1,31],[3,21],[-1,14],[0,7],[-2,10],[-3,11],[0,7],[5,3],[7,0],[8,4],[-1,7],[8,21],[7,25],[2,7],[-3,10],[-7,7],[-3,13],[-10,38],[-5,11],[-5,3],[-3,7],[0,7],[-8,6],[-5,0],[-5,14],[-7,7],[-15,-1],[-5,-3],[-5,3],[-5,7],[-3,17],[-5,38],[-1,11],[-2,13],[-3,21],[0,11],[-3,20],[-13,14],[-12,3],[-27,6],[-13,3],[-10,3],[-7,7],[-13,21],[-5,6],[-13,10],[-7,11],[-8,-1],[-9,-3],[-13,-8],[-7,-7],[-5,-3],[-2,-7],[-5,-14],[-7,-11],[-8,-11],[-7,-7],[-7,-11],[-5,-10],[-10,-14],[-2,-7],[-8,-4],[-4,0],[-5,0],[-3,-7],[-7,-11],[-5,-21],[-2,-14],[-2,-24],[0,-31],[3,-7],[-5,-25],[-2,-10],[1,-35],[0,-14],[0,-7],[-2,-14],[-5,-31],[-2,-10],[0,-7],[-3,-7],[-4,-11],[-5,-14],[-5,-7],[-2,-7],[-10,-18],[-7,-14],[-3,-7],[-4,-7],[-8,-7],[-7,-4],[-10,-7],[-7,-4],[-17,-11],[-5,0],[-5,-3],[-5,-4],[-18,17],[-5,7],[-10,6],[-7,0],[-8,3],[-5,7],[-15,24],[-5,10],[-5,11],[0,7],[-41,43],[-7,11],[-5,10],[-6,7],[-5,10],[-7,14],[-10,17],[-6,20],[-5,25],[-3,10],[0,28],[2,14],[-2,13],[-3,14],[2,14],[2,7],[-2,14],[-5,21],[-3,10],[-8,14],[-7,10],[-8,17],[-3,7],[-2,7],[-8,-1],[-5,4],[-7,10],[-3,17],[5,14],[2,14],[5,11],[-5,14],[-3,6],[-7,7],[-13,0],[-7,0],[-5,-8],[-7,-10],[-3,-14],[-4,-7],[-5,-14],[-5,-4],[-7,-14],[-8,-7],[-9,-11],[-8,-7],[-5,0],[-17,13],[-5,7],[-5,3],[0,-10],[0,-10],[0,-18],[-4,-21],[-3,-7],[-5,-7],[-12,0],[-15,6],[-7,4],[-8,-1],[-7,-3],[-8,3],[-5,7],[-2,7],[-6,13],[-5,18],[-2,6],[-3,7],[-5,4],[-7,-4],[-8,7],[-8,20],[-7,17],[-5,11],[-8,24],[0,7],[-5,6],[0,7],[4,11],[0,7],[-5,7],[-2,7],[2,7],[10,7],[5,3],[5,4],[7,4],[10,7],[5,0],[5,7],[-3,17],[2,8],[3,7],[9,7],[10,10],[5,8],[0,13],[-13,4],[-17,-1],[-15,0],[-7,3],[-5,7],[-3,10],[0,10],[-3,18],[-5,13],[-3,18],[0,14],[2,17],[2,14],[8,21],[12,25],[34,49],[4,11],[3,10],[0,14],[4,28],[2,14],[10,11],[12,14],[-15,17],[-10,10],[-7,7],[-6,7],[3,10],[2,7],[0,7],[-5,7],[-10,3],[-10,3],[-5,3],[-2,7],[-1,7],[-5,0],[-5,3],[-7,4],[-8,6],[-10,4],[-7,-1],[-10,10],[0,7],[7,4],[0,7],[-10,28],[-10,13],[-5,10],[-3,11],[5,17],[7,18],[5,7],[4,14],[3,10],[-5,11],[-15,-8],[-5,-3],[-15,-1],[-5,0],[-5,3],[-13,73],[-3,10],[-3,25],[-2,13],[-8,14],[-3,7],[-5,-4],[-5,-3],[-7,-4],[-5,3],[-5,11],[-3,6],[3,7],[7,8],[8,3],[4,4],[3,7],[2,14],[-3,10],[-7,-4],[-7,-7],[-8,-3],[-12,-4],[-7,0],[-20,2],[-10,4],[-8,-4],[-5,-4],[-4,-7],[-3,-10],[-10,-7],[-7,-8],[-5,0],[-5,-7],[-2,-7],[-2,-14],[-5,-10],[-5,-4],[-22,-25],[-7,-7],[-8,-11],[-7,-7],[-15,-14],[-17,-11],[-14,-18],[-5,-7],[-5,-4],[-5,0],[-3,11],[-7,3],[-3,17],[5,14],[0,14],[-3,7],[0,17],[4,21],[-7,14],[-5,3],[-8,0],[-12,-7],[-10,-7],[-5,3],[-15,13],[-7,11],[-5,3],[-10,-4],[-8,7],[-5,7],[0,17],[2,17],[0,11],[0,10],[-3,17],[-10,28],[0,10],[-5,7],[-6,7],[-12,20],[-5,11],[-13,10],[-15,3],[-10,-4],[-7,0],[-5,-11],[-7,-14],[-7,-28],[-2,-10],[-8,-11],[-7,-4],[-10,-3],[-12,-8],[-10,-3],[-5,3],[-8,3],[-5,3],[-5,-3],[-9,-4],[-13,-14],[-12,-18],[-8,-14],[-1,-3],[-3,-9],[-7,-6],[-1,-1],[-4,-6],[-2,-7],[-8,0],[-5,7],[-5,0],[-7,3],[-16,34],[-2,7],[-3,-7],[-2,-7],[0,-7],[-7,0],[-8,10],[-2,7],[-13,34],[-3,11],[-5,24],[-5,14],[-3,6],[-3,7],[3,21],[-1,7],[-2,10],[-8,11],[-7,6],[-8,18],[-8,17],[-7,10],[-8,0],[-10,-4],[-9,-11],[-10,-14],[-7,-7],[-20,-35],[-17,-25],[-9,-14],[-25,-29],[-12,-18],[-10,-10],[-2,-7],[-5,-11],[-12,-11],[-5,-3],[-7,3],[-6,21],[-5,3],[-10,7],[-10,-1],[-12,0],[-17,3],[-8,3],[-5,4],[-12,-11],[-12,-1],[-13,4],[-10,3],[-12,3],[-8,-4],[-10,-7],[-19,-8],[-15,-7],[-10,-4],[-7,-7],[-5,-3],[-5,-4],[-7,-4],[-8,-3],[-7,3],[-10,3],[-13,10],[-7,7],[-11,24],[-2,10],[0,11],[2,10],[5,7],[-30,-8],[-17,10],[-8,7],[-5,3],[-12,0],[-5,-4],[-8,0],[-5,0],[-4,0],[-8,-7],[-5,-4],[-2,-7],[-15,-11],[-12,-4],[-12,-4],[-8,0],[-10,-4],[-7,-7],[-5,-7],[-17,0],[-8,0],[-7,-1],[-15,10],[-5,0],[-8,-4],[-7,-7],[-2,-7],[-8,-3],[-5,-4],[-17,-7],[-27,-32],[-9,-8],[-10,-7],[-5,-4],[-7,-3],[-8,-4],[-5,0],[-12,10],[-13,17],[-15,20],[-3,7],[-10,14],[-5,7],[-10,6],[-15,7],[-10,3],[-10,3],[-12,0],[-10,-7],[-5,3],[-7,3],[-8,7],[-8,10],[-7,7],[-8,3],[-10,17],[-7,3],[-5,0],[-10,-7],[-2,-7],[-10,-7],[-13,3],[-7,0],[-13,10],[-25,34],[-13,17],[-7,10],[-18,-1],[-7,0],[-3,7],[3,14],[-10,0],[-12,-4],[-8,-7],[-7,-7],[-5,-4],[-5,-4],[-10,-7],[-10,-4],[-5,-3],[-7,-7],[-19,-25],[-13,-11],[-12,-7],[-7,-11],[-5,-4],[-5,-7],[-10,-10],[-9,-11],[-8,-11],[-4,-10],[-15,-15],[-10,0],[-5,0],[-5,-4],[-10,0],[-10,-4],[-5,-3],[1,-14],[-13,-7],[-2,6],[-8,18],[-5,20],[-5,11],[-5,3],[-5,-4],[-3,-7],[1,-17],[-5,-4],[-5,14],[-8,10],[-5,4],[-12,3],[-15,-4],[-23,-1],[-22,-1],[-22,-4],[-15,-14],[-12,-11],[-12,-14],[-22,-32],[-15,-21],[-17,-21],[-19,-25],[-17,-22],[-10,-21],[-2,-10],[2,-36],[12,-184],[4,-2],[17,4],[13,-17],[5,-10],[0,-7],[5,-14],[6,-24],[2,-14],[1,-10],[-3,-21],[-4,-7],[0,-7],[7,-10],[8,-14],[8,-21],[5,-17],[5,-24],[3,-24],[-2,-7],[-8,-11],[-14,-14],[-10,-14],[-2,-11],[-3,-21],[-2,-14],[0,-10],[1,-10],[-3,-11],[-2,-10],[5,-4],[10,-6],[10,-21],[10,-24],[18,-31],[8,-27],[3,-24],[-5,-28],[-2,-18],[-2,-21],[-7,-14],[-12,-21],[-13,-18],[-4,-3],[-10,-4],[-5,7],[-8,-4],[0,-10],[-4,-11],[-5,-10],[-7,-11],[-10,-11],[-2,-14],[-7,-28],[-3,-14],[0,-10],[3,-14],[5,-21],[-2,-17],[-5,-14],[-4,-7],[-3,-11],[-2,-7],[-5,-14],[-7,-7],[-10,-7],[-10,3],[-10,-7],[-12,-14],[-2,-11],[-5,-31],[-2,-18],[-2,-10],[-3,-7],[-5,-11],[-2,-7],[-7,-14],[-12,-17],[-10,-11],[-7,-7],[-13,-4],[-9,-11],[-13,-18],[-19,-24],[-20,-18],[-14,-11],[-5,-4],[-15,-7],[-15,-8],[-12,0],[-15,-4],[-12,3],[-10,0],[-20,-11],[-12,-7],[-17,-11],[-25,-22],[-10,-10],[-9,-11],[-15,-18],[-7,-7],[-40,-36],[-12,-11],[-7,-3],[-13,3],[-12,-1],[-13,10],[-2,11],[-3,7],[3,10],[-5,7],[-6,7],[-2,14],[0,7],[-3,20],[-3,7],[-5,10],[-2,7],[-13,14],[-8,7],[-17,6],[-20,13],[-23,24],[-15,17],[-22,6],[-23,10],[-20,10],[-10,17],[-5,24],[5,17],[12,15],[10,14],[4,10],[10,8],[10,10],[2,7],[-5,4],[-10,-8],[-12,-7],[-7,-4],[-15,0],[-10,-7],[-10,0],[-12,-4],[-18,3],[-10,6],[-2,7],[2,14],[3,7],[-5,0],[-13,0],[-15,-1],[-17,7],[-33,13],[-17,13],[-23,24],[-12,17],[-5,6],[-16,21],[-2,7],[2,7],[-2,7],[-13,3],[-15,10],[-8,17],[-5,20],[5,21],[5,8],[4,14],[10,17],[5,14],[7,25],[0,10],[-5,10],[-13,0],[-10,-7],[-17,-11],[-29,-18],[-13,-8],[-14,-3],[-18,-4],[-17,-1],[-12,-4],[-8,3],[-7,0],[-10,0],[-15,-7],[-19,-18],[-13,-4],[-7,0],[-5,3],[-5,-4],[-8,0],[-7,-11],[0,-6],[-2,-7],[-5,-8],[-5,0],[-7,4],[-15,10],[-13,17],[-5,13],[-3,11],[-2,6],[-5,4],[-8,0],[-10,10],[-3,10],[-2,10],[-1,18],[0,7],[-2,10],[-5,0],[-3,-7],[-2,-7],[-5,-14],[-7,-14],[-10,-14],[-17,-18],[-14,-18],[-5,-4],[-8,4],[-7,-4],[-5,-11],[0,-7],[0,-7],[-7,-3],[-5,0],[-5,3],[-5,7],[-7,-4],[-10,0],[-4,-11],[-21,0],[-7,-1],[-5,-10],[-5,-4],[-8,0],[-5,0],[-7,0],[-5,-7],[-5,-14],[-7,-11],[-2,-11],[-12,-7],[-15,-4],[-8,7],[-7,14],[-5,3],[-3,-7],[-7,-4],[-5,0],[-8,10],[-8,21],[-10,21],[-5,10],[-12,-1],[-8,4],[-5,-7],[-4,-11],[-23,-11],[-7,-4],[-20,0],[-17,3],[-5,3],[-10,-4],[0,-14],[-2,-14],[-5,-7],[-5,4],[-7,3],[-5,-4],[-5,-10],[3,-11],[5,-10],[0,-14],[-17,-7],[-8,3],[-10,7],[-10,10],[0,-7],[-4,-21],[-3,-24],[3,-21],[-5,-4],[-14,-14],[-20,-15],[-5,4],[-8,7],[-12,-1],[-7,-7],[-3,-7],[-17,-32],[-12,-4],[-12,4],[-18,-8],[-7,3],[-8,7],[-10,3],[-7,0],[-10,-21],[-102,-7],[-35,-2],[-4,5],[-12,3],[-10,3],[-10,0],[-8,0],[-2,-7],[-5,-11],[-7,-4],[-15,-10],[-5,-11],[-2,-10],[-2,-11],[-2,-21],[-5,-21],[-2,-7],[-18,-4],[-10,3],[-15,3],[-20,3],[-19,-11],[-8,-3],[-4,-11],[-10,-11],[-7,-17],[-5,-14],[-5,-14],[-12,-25],[-10,-7],[-19,-15],[-22,-18],[-18,-3],[-5,3],[-4,-14],[-5,-14],[-5,-4],[-5,4],[-5,-4],[-7,-18],[0,-7],[-2,-17],[-5,-14],[-7,-7],[-8,-4],[-10,3],[-7,0],[-2,-10],[-10,-8],[-10,4],[-13,6],[-14,-7],[-15,-1],[-10,-3],[-10,-4],[-10,3],[-5,-4],[0,-17],[3,-7],[-10,-4],[-12,-7],[-7,-11],[-8,-10],[-5,-11],[-9,-14],[-5,-10],[3,-11],[5,-10],[2,-14],[-2,-10],[-12,-4],[-15,3],[-8,10],[-13,24],[-7,7],[-18,10],[-12,3],[-15,-1],[-7,-3],[-5,-7],[-2,-11],[2,-14],[5,-10],[8,-14],[5,-10],[-2,-10],[-8,-11],[-4,0],[-8,3],[-5,3],[-3,11],[0,10],[-7,10],[-13,10],[-17,0],[-28,6],[-15,10],[-8,8],[-9,19],[-8,7],[-7,7],[-8,0],[-7,-4],[-8,3],[-7,7],[-8,10],[-7,14],[-6,7],[-5,17],[0,21],[5,10],[0,7],[-3,7],[-5,3],[-7,-3],[-25,-8],[-17,-8],[-15,-10],[-5,-4],[-15,-14],[-58,-54],[-20,-28],[-17,-29],[-19,-35],[-22,-42],[-17,-29],[-7,-14],[-7,-10],[-5,-11],[0,-10],[0,-11],[-2,-7],[-5,4],[-5,7],[-5,-1],[-7,-14],[-2,-10],[0,-11],[2,-10],[3,-24],[-5,-4],[-2,-7],[-2,-17],[0,-25],[0,-10],[-2,-14],[-10,-14],[-7,-7],[-10,-4],[-2,-7],[2,-17],[-4,-11],[-13,-11],[-7,-3],[0,-18],[-4,-24],[0,-21],[5,-3],[15,4],[10,-3],[5,-4],[5,-10],[7,-17],[3,-18],[-2,-7],[-10,-7],[-5,-3],[-5,-7],[-2,-11],[8,-27],[-2,-21],[-3,-18],[-2,-17],[-5,-18],[-2,-14],[-4,-17],[0,-18],[-7,-17],[0,-21],[-5,-14],[-7,-11],[-5,-17],[-5,-7],[-5,-4],[-12,-7],[-2,-7],[-5,-7],[-5,0],[-5,3],[-5,-4],[-5,4],[-10,10],[-13,6],[-12,4],[-15,6],[-5,7],[0,7],[-13,3],[-5,7],[-2,10],[-8,14],[-3,10],[-2,7],[-5,0],[0,-18],[-2,-7],[0,-13],[-2,-18],[-12,-11],[-5,-10],[-8,-4],[-7,3],[-5,4],[-7,-4],[2,-14],[-7,-10],[-5,-4],[-12,3],[-10,10],[-5,0],[-10,-7],[-13,-7],[-15,6],[-19,-7],[-20,6],[-5,-4],[-10,0],[-12,-11],[-8,-7],[-12,-4],[-2,-10],[5,-4],[2,-10],[-7,-4],[-5,0],[-5,-7],[-12,0],[-5,-11],[3,-7],[0,-6],[-5,-4],[-10,-7],[-7,-1],[-18,-7],[-10,0],[-5,3],[-7,10],[-5,0],[0,-10],[-2,-11],[0,-10],[-5,-7],[-7,-4],[-3,21],[-5,17],[-10,10],[-8,0],[-2,-7],[-3,-7],[-7,-11],[-5,-17],[-4,-18],[-3,-10],[-4,-11],[-8,-14],[-7,-10],[-7,-15],[-10,-14],[-14,-18],[-5,-10],[-8,-11],[-7,-21],[-4,-10],[0,-11],[-12,-17],[-8,-1],[-5,-7],[-22,-18],[-15,-11],[-4,0],[-5,0],[-5,-7],[-8,-4],[-5,-7],[-9,-10],[-13,-11],[-7,-14],[-10,-7],[-14,-15],[-5,-7],[-2,-10],[-8,-21],[-12,-8],[-5,-10],[-2,-14],[-5,-11],[-2,-10],[0,-7],[10,-7],[8,-3],[2,-7],[3,-7],[-3,-10],[-9,-1],[-5,4],[-5,0],[-3,-7],[3,-11],[-2,-14],[-5,-21],[-5,-14],[-2,-10],[-2,-21],[-5,-28],[-7,-21],[0,-7],[-5,-14],[-4,-11],[-5,-3],[-5,-7],[-10,-14],[-2,-11],[-3,-7],[-5,-7],[-4,-4],[-8,11],[-8,13],[-10,17],[-7,7],[0,-7],[0,-7],[0,-10],[3,-14],[-3,-17],[1,-14],[0,-18],[3,-24],[-2,-17],[0,-7],[-8,-14],[-4,-4],[-5,3],[-5,-3],[-5,-4],[-5,3],[-5,7],[-5,0],[-5,0],[-8,-14],[3,-10],[3,-14],[-5,0],[-8,-1],[-7,-7],[-10,-10],[-5,-8],[-2,-10],[-5,-14],[-5,-4],[-4,-3],[-5,-7],[-7,-28],[0,-14],[-7,-7],[-10,-4],[-10,0],[-10,6],[-5,7],[-8,7],[-7,-4],[-8,-7],[-4,-4],[-8,-3],[-5,3],[-5,0],[-7,13],[0,7],[-6,11],[-5,17],[0,17],[-12,0],[-5,0],[-8,6],[-5,11],[2,17],[5,14],[5,4],[5,0],[0,14],[2,10],[10,11],[9,11],[3,7],[0,7],[-3,6],[-5,4],[-7,7],[-5,3],[-5,3],[-5,4],[-10,-1],[-8,0],[-10,0],[-7,3],[-5,7],[-3,14],[-3,10],[-5,14],[-7,13],[-16,21],[-12,20],[-8,17],[-5,7],[-3,10],[0,7],[5,18],[5,7],[7,14],[2,21],[-5,7],[-5,7],[-5,6],[-10,7],[-17,3],[-18,6],[-5,-3],[-5,-4],[-12,-7],[-7,3],[-8,-3],[-12,-11],[-17,-11],[-15,-11],[-15,-11],[-5,-3],[-12,-1],[-12,0],[-18,-8],[-17,-4],[-7,0],[-20,-14],[-10,-1],[-7,0],[-10,-3],[-7,-8],[-10,-3],[-10,-8],[-17,-7],[-10,-11],[-2,-35],[-5,0],[-10,0],[-7,0],[-5,3],[-10,3],[-8,4],[-7,-1],[-5,-3],[-12,-4],[-13,-11],[-14,-7],[-10,-4],[-10,0],[-8,3],[-12,7],[-5,13],[-6,14],[-7,-4],[-5,-3],[-10,-11],[-12,0],[-7,3],[-5,3],[-10,3],[-5,-3],[-13,-11],[-7,-4],[-5,-3],[-10,-7],[-5,-4],[-5,0],[-7,3],[-5,0],[-7,-11],[-8,-3],[-9,-8],[-13,-14],[-19,-18],[-3,-7],[-5,-3],[-5,3],[-7,3],[-5,4],[-15,-1],[-10,3],[-10,0],[-5,7],[-2,7],[-3,10],[-8,10],[0,7],[-2,7],[-5,0],[-10,0],[-12,-4],[-20,-4],[-8,0],[-24,-1],[-10,0],[-13,-4],[-17,-1],[-17,3],[-10,3],[-6,11],[-7,-4],[-5,0],[-5,-4],[-7,0],[-10,3],[-10,0],[-12,-4],[-15,-11],[-12,-7],[-13,-7],[-7,6],[-8,-3],[-14,-4],[-5,0],[-5,3],[-5,7],[-8,-4],[-7,0],[-15,-11],[-12,-18],[-8,-3],[-4,-11],[-8,-7],[-4,-7],[-5,-4],[-3,-7],[-2,-10],[-7,-21],[-7,-14],[-3,-11],[-5,-7],[-12,-11],[-12,0],[-5,-4],[-5,0],[-5,0],[-8,0],[-7,0],[-7,-1],[-8,0],[-10,3],[-15,7],[-7,7],[-5,10],[-8,14],[-8,3],[-5,10],[-5,7],[-2,-7],[0,-7],[5,-14],[3,-10],[-5,-7],[-12,-11],[-17,-14],[-13,13],[-7,0],[-10,0],[-8,-1],[-2,-10],[0,-11],[3,-24],[3,-14],[0,-13],[0,-18],[-7,-3],[-8,-4],[-9,-11],[-3,-14],[0,-7],[3,-10],[5,-10],[3,-14],[-3,-7],[-4,-7],[0,-11],[0,-7],[0,-13],[0,-11],[-2,-7],[-8,-4],[-2,-7],[0,-7],[-2,-10],[-5,-7],[-5,-14],[-7,0],[-10,3],[-13,6],[-10,11],[-10,10],[-7,3],[-10,3],[-5,-3],[-3,-8],[1,-6],[-3,-7],[-5,6],[-7,7],[-5,7],[-8,7],[-7,-1],[-5,4],[-8,-1],[-7,11],[-1,14],[-2,13],[-5,11],[-5,0],[-5,-1],[-15,-10],[-23,-12],[-11,-10],[-10,-8],[-15,-17],[-7,-18],[-15,-18],[-5,-3],[-4,-7],[-3,-11],[-10,-14],[-2,-10],[-2,-11],[-3,-7],[-4,-7],[-5,-14],[-7,-18],[-8,-10],[-12,-25],[-4,-14],[-5,-7],[-7,-14],[-10,-14],[-5,-4],[-5,-4],[-5,-7],[-5,-7],[-2,-14],[-2,-10],[-8,-7],[-5,-4],[-17,-11],[-5,0],[-4,-10],[7,-11],[-2,-7],[-10,-3],[-10,-18],[-7,-18],[-2,-10],[-10,-14],[-12,-18],[-7,-7],[-8,-11],[-7,-10],[-7,-15],[-10,-17],[-10,-18],[-12,-17],[-14,-15],[-13,-18],[-9,-14],[-10,-14],[-10,-17],[-9,-18],[-12,-14],[-27,-46],[-15,-25],[-12,-21],[-21,-32],[-8,-7],[-10,-7],[-9,-11],[-8,-11],[-4,-7],[-7,-3],[-6,-4],[-7,-4],[-8,-3],[-4,-8],[-40,-26],[-6,-7],[-56,-68],[-13,-13],[-54,-57],[-21,-24],[-44,-49],[-14,2],[-13,2],[-23,-1],[-25,-27],[-13,-5],[-13,-5],[-20,5],[-32,10],[-12,4],[-51,27],[-19,41],[-16,45]],[[755417,248297],[53,-161],[-59,-78],[-18,-86],[-141,-177],[49,-71],[49,-71],[-13,-171],[-8,-111],[-148,-248],[-35,-59],[-200,-34],[-43,-59],[-43,-58],[-97,31],[-86,38],[-127,198],[-211,42],[-38,102],[-38,102],[-120,89],[-166,-125],[-249,31],[-62,188],[123,196],[170,68],[153,111],[291,275],[131,-37],[135,49],[74,40],[292,158],[207,-62],[175,-110]],[[741910,144617],[-339,-704],[-396,-1045],[-495,-1236],[-579,-981],[-537,-810],[-354,-256],[-353,42],[-283,278],[-325,469],[-212,362],[-367,171],[-452,64],[-523,-128],[-608,-427],[-424,-128],[-127,-426],[120,-373],[120,-373],[0,-1578],[-297,-1386],[-749,-1962],[-947,-1577],[-339,831],[-283,1834],[-247,1195],[-106,511],[-43,916],[-212,981],[-127,427],[-240,575],[-376,1404],[-246,89],[14,341],[161,284],[136,164],[237,-126],[218,-530],[506,-496],[636,0],[456,238],[265,295],[59,530],[-50,1464],[50,863],[348,601],[398,112],[324,-450],[49,-225],[249,112],[192,349],[217,180],[-60,635],[373,450],[423,413],[156,233],[70,533],[-144,363],[17,1348],[255,762],[381,661],[615,373],[587,53],[834,-234],[579,-384],[353,-234],[608,-811],[891,-1258],[311,-661],[127,-831],[-57,-576],[-197,-586],[-241,-714]],[[737619,153436],[-190,-214],[-496,42],[-214,198],[-138,228],[-13,479],[158,613],[28,489],[34,385],[131,156],[538,-156],[510,-83],[613,-94],[49,-302],[-566,-977],[-255,-551],[-189,-213]],[[684340,187920],[270,76],[538,244],[351,343],[68,67],[114,111],[169,164],[330,323],[514,419],[539,186],[520,-137],[793,-340],[629,-214],[346,44],[346,43],[571,532],[45,41],[571,429],[878,-125],[406,-238],[114,-67],[694,-678],[388,-523],[560,-857],[366,-561],[409,-788],[664,-1681],[230,-581],[176,-446],[68,-177],[320,-539],[338,-451],[524,-570],[957,-946],[365,-362],[1024,-791],[1158,-1002],[1095,-818],[532,-279],[515,-222],[119,-73],[653,-399],[12,-5]],[[703619,177072],[403,-426],[538,-415],[803,-437],[503,-388],[59,-62],[383,-409],[39,-42],[396,-585],[3,-4],[53,-78],[509,-917],[1180,-1920],[877,-1292],[1321,-1598],[327,-356],[648,-659],[260,-152],[383,-76],[552,-57],[84,-9],[305,-8],[4744,-123],[9,-1],[7,0],[2081,-54],[20,0],[3,0],[4,-1],[4565,-118],[3,0],[2,0],[7,-1],[66,-1],[4,0],[920,-24],[263,-7]],[[725943,166852],[44,-291],[-1,-369],[149,-714],[20,-136],[107,-740],[268,-674],[99,-361],[4,-111],[5,-123],[4,-123],[-13,-131],[-42,-404],[35,-174],[92,-166],[74,-92],[74,-92],[158,102],[159,102],[231,178],[219,161],[421,170],[78,-204],[-146,-220],[-33,-229],[179,-144],[248,51],[185,127],[241,93],[270,34],[253,-25],[104,-207],[-155,-335],[-196,-280],[-264,-559],[264,-51],[202,0],[33,-330],[-219,-254],[-174,-195],[-101,-297],[11,-356],[203,-237],[5,-229],[-163,-118],[-146,-34],[-157,-127],[-101,-136],[-3,-140],[-3,-110],[16,-189],[70,-200],[166,-331],[3,-6],[370,-613],[19,-33],[309,-315],[14,-13],[66,-69],[287,-233],[77,104],[77,104],[141,258],[176,310],[287,508],[124,266],[124,266],[99,274],[146,259],[67,110],[67,111],[190,182],[284,336],[283,312],[245,105],[238,163],[245,58],[191,58],[366,4],[270,111],[263,178],[268,389],[252,-10],[175,114],[177,-38],[80,-191],[29,-317],[-80,-221],[-215,-40],[-248,-21],[-59,-344],[-146,-123],[-64,-159],[-105,-185],[-169,-26],[-269,-44],[-257,-150],[-94,-176],[25,-282],[-31,-379],[80,-206],[-4,-209],[-146,-167],[-134,-211],[-40,-365],[-7,-177],[92,-205],[299,-495],[74,-122],[61,-46],[47,97],[99,114],[140,123],[191,44],[101,89],[41,229],[-82,405],[240,168],[158,-62],[344,97],[146,-35],[351,149],[123,168],[140,-62],[105,-132],[321,-335],[275,-211],[87,-335],[199,-150],[76,-194],[-263,-511],[-105,-238],[-356,-344],[-304,-159],[-187,54],[-88,-106],[-327,141],[-309,-159],[-85,-214],[3,-130],[76,-114],[-66,-277],[1,-170],[-114,-740],[-98,-107],[-127,-45],[-133,36],[-102,115],[-153,283],[-206,486],[-191,279],[-374,272],[-403,23],[-131,48],[-131,49],[-247,191],[-64,64],[-64,64],[-91,147],[-180,110],[-333,-484],[-236,-618],[-64,-184],[71,-101],[310,-234],[263,-80],[251,-342],[76,25],[141,-79],[11,-265],[-119,-157],[-237,24],[-33,-132],[56,-1012],[-274,53],[-7,722],[-115,1],[-4,0],[-159,41],[-97,24],[-99,113],[58,157],[-136,70],[-112,-78],[-112,76],[-99,119],[-129,37],[-119,-51],[-170,-272],[-63,-164],[-141,-600],[-72,-424],[-27,-591],[14,-285],[70,-415],[114,-452],[45,-97],[9,-19],[171,14],[106,67],[244,154],[259,-204],[76,24],[55,17],[21,7],[194,60],[459,462],[81,-73],[57,-52],[165,-143],[131,-107],[257,172],[113,-255],[146,-154],[-23,-244],[-37,-184],[-93,-157],[-34,-185],[70,-166],[122,-72],[133,-19],[99,-122],[22,-206],[146,-325],[-90,-536],[-150,-364],[-26,-188],[-86,-146],[-158,-107],[-605,-412],[-84,-143],[-107,-548],[-7,-175],[64,-197],[35,-471],[-205,-723],[20,-185],[254,-586],[10,-245],[-45,-219],[-85,-150],[-106,-101],[-247,92],[-96,112],[-101,357],[-163,272],[-120,335],[43,377],[63,153],[65,581],[-121,65],[-127,-1],[-241,151],[-128,20],[-62,167],[93,331],[5,237],[66,369],[-51,223],[-1,351],[-42,163],[-76,152],[-136,-22],[-133,22],[-36,180],[0,178],[-22,90],[-21,89],[-253,443],[-136,67],[-196,247],[-538,46],[-134,80],[-143,15],[-111,70],[-129,-15],[-444,-316],[-191,-52],[-326,42],[-125,51],[-47,198],[-46,197],[-226,204],[-113,311],[-127,37],[-120,89],[-71,210],[-44,129],[-8,3],[-139,56],[-135,2],[-121,103],[-33,190],[62,174],[6,185],[-25,178],[-9,293],[100,125],[213,6],[153,-120],[52,177],[20,196],[-2,20],[-42,358],[-65,618],[-231,598],[-10,16],[-202,326],[-42,47],[-428,485],[-10,12],[-366,487],[-336,363],[-45,49],[-69,50],[-175,125],[-126,90],[-417,312],[-161,116],[-377,271],[-260,234],[-640,433],[-47,32],[-672,346],[-557,287],[-308,128],[-364,153],[-1607,674],[-774,325],[-586,154],[-1358,358],[-973,256],[-222,39],[-1518,267],[-1033,181],[-1271,223],[-150,26],[-417,57],[-2521,347],[-1366,187],[-468,64],[-300,42],[-472,64],[-669,92],[-24,4],[-494,66],[-1552,207],[-751,100],[-1430,191],[-2115,283],[-679,91],[-1450,193],[-18,3],[-287,36],[-289,36],[-285,36],[-199,25],[-183,23],[-66,8],[-184,23],[-157,20],[-121,15],[-114,15],[-85,10],[-106,14],[-169,21],[-557,70],[-435,54],[-578,73],[-754,95],[-221,28],[-358,45],[-594,74],[-488,62],[-659,83],[-184,23],[-447,56],[-590,74],[-12,2],[-12,1],[-696,88],[-110,13],[-295,37],[-365,41],[-720,80],[-160,17],[-771,86],[-1465,162],[-448,49],[-311,35],[-130,14],[-1095,122],[-589,65],[-404,44],[-1127,125],[-1259,140],[-234,26],[-1088,120],[-56,6],[-362,25],[-297,20],[-452,31],[-787,54],[-27,2],[-10,1],[-750,51],[-595,41],[-706,48],[-229,16],[-5,0],[-1364,93],[-690,48],[-640,43],[-663,46],[-77,5],[-654,50],[-29,2],[-673,51],[-86,6],[-522,40],[-612,46],[-312,24],[-754,57],[-148,11],[-719,55],[-938,71],[-463,35],[-691,52],[-1265,107],[-451,39],[-154,13]],[[674784,193962],[15,-104],[15,-103],[171,-1147],[417,-2804],[1915,2021],[855,125],[720,-95],[511,-197],[641,-500],[390,-547],[445,-949],[261,-856],[206,-500],[516,-363],[338,-79],[317,-74],[204,-4],[445,-10],[624,-13],[550,157]],[[290199,370669],[-201,-306],[-130,-197],[-118,-180],[-197,-313],[-21,-33],[-132,-264],[-163,-329],[-164,-170],[-198,-176],[-288,-310],[-116,-153],[-6,-23],[-9,-38],[-12,-50],[-28,-112],[0,-173],[0,-48],[2,-12],[45,-277],[132,-363],[132,-364],[-4,-299],[-77,-264],[-129,-170],[-272,-199],[-108,-94],[-102,-135],[-241,-627],[-225,-393],[-167,-311],[-53,-153],[-1,-2],[-1,-4],[-31,-91],[-31,-231],[12,-293],[39,-229],[-4,-111],[-62,-211],[-121,-200],[-199,-230],[-3,-4],[-264,-305],[-107,-106],[-107,-105],[-315,-205],[-348,-347],[-269,-352],[-110,-234],[-19,-404],[-78,-194],[-132,-123],[-215,-210],[-73,-71],[-124,-182],[-105,-311],[-90,-542],[-39,-233],[-80,-267],[-141,-430],[-159,-334],[-27,-34],[-109,-136],[-175,-76],[-199,-18],[-252,65],[-319,145],[-198,-5],[-152,-82],[-112,-82],[-243,-330],[-3,-4],[-3,-4],[40,-87],[22,-38],[22,-38],[24,-8],[18,-41],[18,-46],[14,-69],[11,-41],[17,-58],[28,-73],[5,-67],[19,-81],[24,-67],[16,-53],[27,-75],[18,-59],[13,-26],[7,-14],[6,-13],[9,-18],[8,-12],[33,-54],[21,-50],[1,-35],[-9,-20],[-30,-30],[-8,-30],[4,-30],[76,-52],[14,8],[9,0],[9,1],[10,-22],[1,-11],[1,-12],[2,-22],[24,-15],[35,3],[15,14],[18,28],[35,6],[35,21],[57,12],[88,17],[76,9],[71,28],[37,48],[85,30],[18,8],[48,25],[28,-4],[20,-28],[23,-15],[23,-17],[32,-2],[72,6],[54,-22],[85,-3],[90,63],[86,-55],[92,-65],[37,-31],[8,-11],[8,-11],[4,-25],[6,-35],[33,-73],[23,-46],[3,-51],[17,-28],[33,-1],[82,100],[11,74],[26,5],[16,-27],[42,-42],[81,-30],[68,21],[39,-15],[35,31],[7,35],[7,35],[11,110],[14,31],[25,8],[34,-8],[41,-23],[-6,-85],[19,-57],[10,-56],[16,-31],[39,0],[34,24],[27,64],[22,32],[13,21],[26,-2],[25,-1],[62,-38],[47,-43],[278,-436],[126,-57],[101,-139],[6,-33],[36,-195],[119,-318],[-50,-193],[-106,-116],[-69,-150],[7,-50],[26,-173],[140,-216],[230,-353],[135,-83],[102,2],[102,2],[102,2],[102,2],[134,-39],[269,69],[18,-7],[100,-39],[14,-15],[102,-115],[153,-33],[100,-135],[42,-222],[141,-401],[-6,-203],[-86,-350],[-7,-25],[-219,-282],[-69,-198],[-113,-117],[-177,-92],[-14,-46],[-43,-137],[74,-174],[74,-173],[11,-117],[10,-117],[200,-324],[111,-102],[319,16],[253,-165],[65,-4],[65,-4],[118,-85],[85,-163],[14,-86],[14,-86],[73,-33]],[[288384,349073],[-83,3],[-44,2],[-218,8],[-384,14],[-946,36],[-170,6],[-48,2],[-745,28],[-23,-424],[-105,-1917],[-32,-587],[-42,-781],[-77,-1404],[-320,-5866],[-122,-2237],[-148,-2709],[-127,-6578],[-2119,-5468],[-570,-313],[-345,179],[-218,75],[-346,-22],[-346,-218],[-269,-334],[-233,-200],[-352,-185],[-277,-21],[-47,-11],[-144,-34],[-87,15],[-105,45],[-74,51],[-57,58],[-37,-183],[-10,-45],[-74,-359],[-459,-2221],[-58,-281],[-730,-3529],[-6,-25],[-16,-77]],[[277771,313566],[-107,-76],[-67,-49],[-26,-6],[-22,-4],[-20,5],[-21,18],[-32,52],[-25,26],[-32,4],[-81,-47],[-30,-23],[-17,-39],[-31,3],[-29,-7],[-60,-31],[-58,-26],[-68,-27],[-59,-16],[-56,-23],[-51,-35],[-54,-39],[-44,-29],[-25,-21],[-17,-19],[-15,-16],[-5,-29],[-4,-19],[-14,-7],[-40,6],[-11,-20],[-31,-26],[-20,-29],[-2,-26],[-5,-22],[-14,-9],[-37,-24],[-13,-8],[-15,-6],[-12,4],[-13,4],[-40,-19],[-26,-34],[-26,-14],[-49,-14],[-39,-34],[-33,-12],[-95,11],[-71,-33],[-63,15],[-70,-31],[-29,-49],[-61,-49],[-45,17],[-57,14],[-52,-84],[-44,-24],[-55,70],[-63,66],[-46,42],[-54,-28],[-18,-70],[-53,-17],[-55,52],[-20,74],[26,108],[-33,67],[-44,24],[-56,-49],[-57,-49],[-30,-87],[-17,-58],[-48,-33],[-79,-11],[-60,-14],[-72,39],[-33,80],[-23,137],[-58,87],[-114,80],[-122,133],[-156,130],[-125,139],[-89,110],[-43,109],[-3,134],[6,213],[27,228],[39,288],[31,192],[11,72],[-6,60],[-29,108],[-50,35],[-125,34],[-101,-34],[-135,-119],[-106,-75],[-171,-64],[-85,-100],[-105,-238],[-122,-69],[-99,44],[-143,101],[-9,7],[-65,46],[-214,289],[-103,208],[-11,24],[-86,129],[-57,86],[-64,183],[-125,307],[82,130],[60,172],[36,179],[13,306],[-59,312],[-115,237],[-39,210],[-11,280],[43,281],[11,31],[66,197],[2,6],[75,218],[113,181],[124,177],[90,102],[94,106],[47,135],[46,136],[82,359],[16,239],[-59,165],[-82,178],[-67,75],[-87,94],[-101,32],[-138,14],[-194,18],[-96,40],[-62,121],[-30,107],[-10,107],[28,130],[89,118],[75,43],[75,43],[554,253],[277,173],[59,44],[151,111],[174,140],[147,150],[198,239],[81,134],[6,18],[35,93],[47,76],[6,9],[143,190],[60,94],[88,101],[2,2],[5,5],[23,26],[76,85],[96,118],[48,58],[16,23],[5,7],[113,155],[4,6],[64,89],[148,209],[187,218],[97,98],[85,85],[9,6],[125,84],[23,15],[105,77],[79,82],[51,105],[27,233],[11,408],[0,10],[4,361],[2,211],[-12,68],[-18,112],[-1,2],[-13,70],[-3,21],[-2,96],[-4,54],[-15,60],[-53,60],[-165,148],[-52,47],[-53,48],[-1,1],[-87,80],[-136,66],[-51,65],[-33,42],[-36,96],[-10,26],[-43,108],[-44,206],[-41,141],[-84,194],[-25,107],[-75,148],[-42,117],[-32,68],[-107,74],[-117,48],[-70,102],[-53,126],[-28,130],[-16,235],[24,305],[-57,165],[-103,-99],[-459,-445],[-384,-372],[-1141,-1103],[-80,-78],[-342,-330],[-19,-19],[-58,-25],[-138,129],[-88,79],[-42,6],[-20,3],[-21,3],[-96,-45],[-119,-30],[-72,13],[-63,8],[-77,50],[-73,44],[-17,11],[-205,153],[-126,51],[-128,28],[-95,-13],[-114,-16],[-45,2],[-44,2],[-60,58],[-36,79],[11,129],[11,171],[0,162],[-19,171],[-32,125],[-59,58],[-69,8],[-83,12],[-80,9],[-190,21],[-77,-17],[-89,8],[-55,-29],[-83,63],[-95,-13],[-149,31],[-86,-48],[-147,0],[-104,25],[-325,197],[-232,173],[-340,664],[-299,78],[-299,79],[-123,90],[-205,303],[-64,183],[-32,379],[-32,379],[-189,274],[-127,519],[-106,597],[-58,169],[-64,5],[-63,4],[-247,-184],[-44,-33],[-44,-33],[-329,-45],[-133,66],[-136,0],[-140,-82],[-133,-156],[-44,-178],[-15,-561],[-57,-193],[-106,-103],[-254,154],[-572,115],[-310,-64],[-122,-83],[-105,-133],[-21,-219],[22,-196],[-31,-747],[16,-372],[85,-170],[147,-62],[79,-154],[-162,-330],[-44,-176],[135,-878],[-14,-173],[-58,-194],[-189,-230],[-255,103],[-133,-64],[-66,-181],[-62,-410],[-276,-681],[-92,-358],[-92,-142],[-409,-145],[-544,-428],[-348,-403],[-296,89],[-98,-232],[-22,-201],[107,-720],[9,-261],[-18,-371],[-90,-138],[-394,194],[-405,131],[-11214,2933],[-132,34]],[[248310,325584],[-7728,2024],[-84,-412],[-89,-129],[-89,-128],[-253,-212],[-1287,-638],[-417,-45],[-480,42],[-424,-13],[-580,207],[-507,402],[-425,269],[-375,120],[-1003,-18],[-912,162],[-839,-116],[-715,84],[-623,262],[-322,176],[-117,63],[-401,45],[-460,-67],[-383,-139],[-329,-228],[-167,-116],[-884,-444],[-98,-12],[-174,45],[-303,182],[-468,327],[-339,257],[-681,767],[-222,255],[-184,255],[-202,367],[-136,377],[-58,419],[-42,331],[19,199],[83,443],[12,274],[-28,257],[-61,294],[-159,630],[-151,547],[-196,527],[-246,661],[-233,451],[-316,448],[-73,101],[-467,648],[-682,1038],[-97,182],[-34,64],[-134,213],[-341,550],[-157,197],[-220,144],[-107,131],[-99,202],[-61,214],[-66,233],[-62,109],[-62,60],[-89,87],[-322,231],[-212,124],[-60,2],[-109,3],[-225,-22],[-194,-69],[-313,-175],[-343,-222],[-460,-261],[-176,-105],[-136,-178],[-36,-129],[0,-176],[29,-230],[71,-573],[12,-87],[174,-1264],[1,-266],[-42,-334],[-45,-226],[-119,-284],[-195,-251],[-161,-145],[-123,-73],[-130,-23],[-8,3],[-150,54]],[[218211,334533],[-62,39],[-255,160],[-513,324],[-13,8],[-734,623],[-316,409],[-264,472],[-181,512],[-219,570],[-3,10],[-6,12],[-212,485],[-182,230],[-226,80],[-223,17],[-207,91],[-313,176],[-252,239],[-304,356],[-78,117],[-425,641],[-210,308],[-28,40],[-139,203],[-166,209],[-97,121],[-138,148],[-261,231],[-253,165],[-200,105],[39,97],[23,55],[40,96],[79,109],[43,48],[15,69],[3,20],[16,136],[-66,111],[-56,77],[-12,103],[27,143],[15,159],[14,65],[22,98],[151,216],[41,21],[29,13],[104,35],[13,55],[36,141],[5,21],[6,25],[32,142],[-22,74],[-25,80],[-96,74],[-116,280],[-77,188],[-115,245],[-3,4],[-130,230],[27,65],[62,231],[42,242],[-27,189],[-17,71],[-24,102],[-91,140],[-134,197],[-34,139],[-21,97],[-85,137],[-119,80],[-123,74],[-102,117],[-130,222],[-80,194],[-41,151],[-42,154],[-51,128],[-104,106],[-64,82],[-104,58],[-98,37],[-117,-9],[-70,48],[-55,63],[-43,-120],[-68,40],[-34,55],[56,111],[76,128],[29,71],[3,24],[-37,22],[-50,14],[-9,-74],[-18,-23],[-34,26],[-51,-10],[2,-75],[-20,-14],[-38,26],[-50,-2],[-3,-55],[-59,-4],[-59,73],[-60,-43],[-70,48],[-102,13],[-116,23],[-77,56],[-46,-94],[-42,-130],[-223,-41],[-126,-21],[-174,-16],[-108,17],[-104,65],[-89,84],[-92,206],[-41,110],[-63,72],[-41,152],[-55,66],[-48,105],[-11,59],[19,86],[31,58],[0,70],[-23,47],[30,59],[44,42],[32,87],[61,86],[137,97],[117,106],[96,111],[48,113],[50,58],[38,87],[52,62],[56,37],[11,83],[-11,54],[29,45],[53,-24],[51,10],[29,72],[111,32],[109,7],[56,14],[75,10],[84,42],[70,13],[49,119],[69,23],[24,95],[-9,66],[23,33],[72,-13],[28,75],[55,52],[51,-53],[122,95],[59,27],[70,36],[85,64],[30,163],[24,75],[-5,130],[20,84],[63,45],[54,-37],[24,8],[12,26],[8,70],[13,19],[27,-2],[6,21],[-7,87],[10,24],[56,13],[13,85],[11,21],[31,-9],[18,19],[4,27],[22,6],[6,-28],[16,-22],[23,28],[20,-2],[21,-56],[25,-17],[7,-5],[1,-2],[38,-68],[9,-36],[-4,-41],[16,-18],[21,18],[28,1],[23,-14],[29,24],[27,67],[7,117],[35,41],[45,30],[47,-20],[44,-27],[69,40],[78,-17],[90,1],[29,77],[120,-27],[17,39],[16,38],[-26,57],[-43,69],[34,79],[66,-3],[22,114],[-64,51],[-4,36],[6,38],[59,56],[37,101],[65,-16],[31,27],[5,44],[-38,114],[-16,54],[25,66],[-14,58],[34,20],[20,39],[-54,2],[11,67],[18,97],[47,0],[0,44],[-5,44],[28,83],[22,68],[37,-27],[37,79],[32,69],[-13,54],[31,80],[40,21],[161,-57],[40,23],[49,47],[33,51],[-6,74],[-12,25],[-12,25],[4,74],[64,3],[103,-33],[71,-17],[40,84],[18,121],[38,141],[36,27],[35,27],[63,-7],[66,-38],[45,42],[-30,41],[28,39],[49,10],[31,41],[36,6],[20,-33],[51,3],[111,0],[76,17],[45,-34],[42,-77],[47,-37],[47,-30],[49,13],[29,61],[42,27],[26,6],[26,7],[20,50],[-20,74],[35,48],[49,47],[14,77],[-45,37],[7,71],[-14,50],[36,34],[29,43],[-5,51],[-33,70],[-8,44],[-8,44],[-13,33],[-13,34],[13,60],[31,24],[31,-34],[41,-13],[33,44],[0,70],[-13,47],[-25,27],[10,96],[-41,190],[4,32],[5,32],[27,47],[-3,155],[27,40],[25,17],[73,10],[0,77],[22,30],[49,4],[52,-44],[71,-27],[56,66],[56,65],[140,501],[60,212],[61,211],[362,671],[373,470],[466,203],[312,225],[282,313],[297,93],[233,525],[-77,511],[203,263],[397,105],[827,459],[401,157],[666,483],[247,465],[212,280],[190,162],[218,250],[159,282],[1561,1478],[437,376],[714,759],[1102,1092],[282,317],[299,484],[431,454],[423,276],[183,407],[-564,360],[-214,3]],[[224808,369128],[-12867,5985],[-7356,3373],[147,442],[-174,443],[-32,833],[73,1217],[267,423],[72,724],[761,1295],[383,1727],[157,152],[294,895],[235,995],[1,685],[62,147],[940,562],[876,887],[-28,1790],[120,540],[637,1282],[262,1159],[331,1833],[339,676],[245,203],[168,202],[280,861],[338,388],[272,52],[98,88],[181,292],[264,-131],[470,469],[289,447],[667,734],[453,1244],[328,231],[243,463],[270,321],[478,431],[566,397],[283,506],[574,314],[586,996],[626,168],[808,1005],[772,366],[177,521],[704,808],[-323,901],[0,1390],[-204,742]],[[219921,411602],[349,459],[83,-77],[411,-690],[422,-533],[210,-347],[317,-905],[23,-946],[126,-474],[2121,-1732],[911,-3],[642,488],[419,-250],[282,304],[2260,-379],[693,294],[1223,-830],[750,-167],[501,333],[416,-523],[518,-42],[467,-621],[585,-2406],[-20,-1811],[-120,-262],[76,-2159],[-140,-394],[1093,-1284],[51,-646],[-214,-657],[216,-950],[-3,-691],[148,-294],[723,1489],[366,305],[791,-129],[480,-708],[1011,-971],[370,-114],[77,-1703],[192,-579],[711,622],[623,-605],[722,540],[452,-280],[330,497],[255,853],[296,181],[900,-959],[901,-1547],[31,-368],[-538,-191],[-182,-280],[274,-818],[-275,-954],[-552,237],[-457,487],[-121,66],[-150,-72],[-304,-941],[-534,-473],[-292,-563],[-1174,-1555],[-170,-534],[765,-604],[1095,-1311],[-113,-1149],[91,-592],[-135,-552],[73,-739],[6698,11314],[275,8],[959,716],[421,25],[247,225],[994,-352],[622,232],[616,904],[1158,351],[227,412],[99,595],[556,354],[165,807],[220,260],[133,-149],[126,362],[-162,1555],[191,1022],[593,778],[1216,418],[1378,989],[86,27],[812,-87],[523,199],[885,1148],[1407,1218],[485,1031],[554,671],[230,85],[1620,-345],[1428,-3264],[318,-1518],[-248,-233],[-7,-730],[-261,-22],[-1507,-2464],[8,-222],[303,-331],[-73,-1313],[-343,-1575],[264,-298],[-12,-76],[-49,-32],[8,-74],[-6,-79],[-44,-59],[-47,-55],[-72,-74],[-74,-44],[-69,-59],[-26,-58],[4,-53],[6,-120],[13,-76],[-25,-88],[-51,-182],[-38,-138],[-28,-123],[-17,-102],[-37,-72],[10,-98],[-176,-1463],[-79,-366],[-64,-292],[-65,-69],[-134,-124],[-105,-133],[-86,-74],[-20,-19],[-47,-43],[-62,-94],[-61,-176],[-178,-510],[-124,-285],[-45,-140],[-23,-51],[-35,-81],[-37,-132],[-26,-112],[-29,-64],[-60,-47],[-4,-85],[25,-70],[3,-10],[25,-101],[1,-7],[25,-87],[2,-9],[1,-1],[2,-7],[25,-92],[17,-76],[2,-91],[16,-74],[33,-55],[52,-65],[47,-88],[49,-105],[33,-76],[23,-65],[58,-53],[74,-38],[31,-56],[-10,-51],[-29,-78],[-6,-36],[37,-47],[10,-27],[-24,-85],[2,-27],[18,-62],[27,-82],[-3,-45],[-41,-59],[-39,-73],[-33,-69],[-59,-147],[-3,-6],[-38,-89],[-53,-81],[-68,-212],[-29,-147],[-5,-51],[-12,-56],[-92,-239],[-58,-147],[-52,-109],[-74,-83],[-72,-117],[-36,-43],[-7,-14],[-12,-25],[-11,-38],[-11,-94],[1,-122],[63,-186],[67,-127],[15,-29],[6,-11],[29,-43],[35,-52],[29,-41],[7,-6],[83,-68],[78,-26],[88,13],[58,31],[14,7],[44,36],[115,174],[39,58],[493,721],[116,170],[17,11],[193,129],[468,342],[468,341],[33,-3],[119,-11],[80,-149],[-28,-1033],[341,-548],[106,-660],[238,-547],[-233,-897],[199,-410],[34,-1621],[744,-288],[205,-330],[678,157],[409,-318],[191,291],[1,243],[-290,926],[388,1332],[-129,654],[-283,520],[44,437],[850,-421],[973,146],[735,812],[522,923],[384,413],[217,568],[404,158],[600,783],[242,424],[83,742],[806,681],[366,964],[-175,1117],[1027,1176],[408,-201],[508,-881],[406,-318],[17,-13],[309,-241],[443,92],[615,531],[784,-683],[-72,-607],[-361,-880],[150,-990],[128,-99],[416,215],[1068,-236],[402,240],[466,596],[890,22],[107,-110],[91,-756],[341,-378],[436,-1199],[523,-247],[578,100],[291,-1005],[-262,-923],[136,-854],[331,-812],[580,-603],[735,-1346],[637,-1691],[27,-995],[310,-570],[240,294],[305,-541],[756,-227],[70,-582],[418,-636],[42,-366],[446,-258],[230,-133],[52,-62],[115,12],[88,-15],[71,-35],[-14,-85],[-17,-79],[25,-50],[-1,-83],[12,-10],[13,-9],[25,44],[62,61],[89,29],[89,38],[40,-20],[70,-76],[62,-100],[50,-114],[31,-94],[32,-117],[12,-91],[26,-21],[16,-73],[27,0],[51,15],[19,-15],[-8,-56],[8,-67],[21,48],[37,-31],[32,-47],[9,-55],[26,-47],[7,-53],[-1,-50],[-1,-50],[-4,-85],[18,-17],[58,-18],[-15,-70],[0,-68],[31,-72],[48,-51],[43,-47],[35,-11],[55,-44],[11,-59],[49,-65],[111,-137]],[[224808,369128],[-10898,132],[-10490,127],[-1727,-610],[-670,-1797],[-1767,-2579],[-848,-643],[-297,-149],[-2343,-1170],[-1612,-806],[-5,-2],[-569,-285],[-9,-4],[-181,-91],[-878,-438],[-1391,-1118],[-856,-1356],[-785,-2355],[-1101,-3301],[-30,-89],[-671,-949],[-553,-3657],[-30,-195],[16,-1735],[2,-150],[43,-4710],[13,-1405],[-2,-15],[-1,-5],[-46,-369],[-73,-577],[-144,-1142],[-8,-63],[-56,-440],[-110,-872],[-1,-9],[-1,-10],[-108,-853],[-50,-399],[0,-18],[0,-77],[-19,-5712],[-8,-2224],[12,-15],[11,-15],[15,1],[16,2],[53,6],[33,-12],[11,-36],[20,-135],[14,-133],[-32,-121],[-7,-36],[7,-40],[123,-168],[70,-5],[23,-53],[38,-21],[36,15],[22,50],[85,24],[63,-22],[50,-33],[18,-34],[-4,-57],[-12,-87],[-18,-75],[18,-167],[43,-150],[14,-179],[10,-126],[24,-78],[19,-62],[5,-16],[51,-168],[16,-119],[52,-132],[-32,-126],[-66,-102],[11,-137],[11,-163],[-45,-125],[21,-60],[65,-187],[89,111],[94,27],[128,-3],[105,3],[137,125],[71,105],[2,13],[14,132],[85,55],[41,27],[47,-24],[4,-81],[49,-60],[70,-6],[56,-5],[31,-51],[-20,-111],[78,-110],[59,-83],[65,27],[116,-40],[96,-14],[68,18],[38,-59],[62,2],[65,-39],[38,14],[75,65],[35,29],[90,-13],[69,-41],[31,-121],[90,-108],[4,-41],[-26,-51],[42,-17],[43,-16],[72,-8],[30,-61],[42,-111],[33,-100],[22,-50],[59,-72],[102,-53],[46,-24],[146,-54],[66,47],[19,-9],[36,-56],[36,-84],[16,-63],[35,-25],[30,-48],[12,-34],[11,-45],[5,-48],[18,-49],[35,-69],[74,-105],[93,-132],[108,-133],[34,-43],[1,-1],[5,-6],[2,-2],[6,-9],[8,-12],[3,-4],[3,-4],[55,-79],[126,-181],[-86,-126],[-171,-249],[114,-230],[45,-84],[22,-26],[2,-2],[2,-1],[21,-25],[25,-30],[4,-13],[9,-31],[0,-2],[1,-3],[7,-25],[1,-14],[0,-33],[1,-26],[0,-13],[0,-28],[0,-29],[0,-7],[0,-6],[4,-53],[2,-147],[34,-215],[32,-221],[22,-136],[6,-93],[24,-72],[35,-43],[87,-111],[166,-175],[78,-69],[14,-12],[8,-7],[82,-72],[48,-36],[294,25],[13,1],[11,0],[103,1],[99,0],[22,1],[13,0],[10,0],[153,1],[324,56],[32,55],[28,48],[17,30],[247,-186],[59,32],[1,-9],[8,-53],[49,11],[30,6],[103,22],[15,3],[18,3],[288,61],[218,45],[7,1],[33,1],[39,3],[11,0],[17,1],[16,5],[91,25],[13,4],[10,3],[1,0],[57,16],[108,31],[20,6],[122,34],[17,5],[11,3],[13,5],[4,1],[5,2],[9,3],[35,13],[19,7],[87,32],[93,33],[436,159],[41,15],[102,37],[85,31],[35,9],[9,3],[9,3],[6,1],[10,3],[36,10],[304,86],[94,27],[266,74],[2,1],[32,9],[27,8],[116,32],[21,6],[288,81],[76,22],[2,0],[12,5],[24,8],[13,5],[24,8],[66,23],[5,2],[2,1],[8,2],[105,37],[4,1],[35,13],[7,2],[10,4],[100,34],[48,17],[5,2],[7,2],[2,1],[5,2],[49,23],[38,17],[11,5],[10,5],[83,38],[41,19],[5,3],[4,1],[8,4],[2,1],[77,36],[7,3],[7,4],[7,0],[1881,40],[31,12],[504,199],[184,73],[192,260],[34,47],[624,303],[54,27],[3,1],[27,0],[1678,-10],[494,746],[-6,-111],[6,-81],[16,-63],[35,-60],[37,-48],[77,-134],[30,-54],[29,-56],[17,-43],[8,-59],[4,-70],[0,-87],[1,-288],[3,-172],[-8,-591],[8,-214],[7,-142],[17,-92],[179,-430],[82,-167],[72,-147],[151,-385],[79,-214],[2,-59],[3,-69],[29,-106],[32,-90],[7,-87],[3,-116],[4,-95],[-12,-42],[-29,-16],[-70,-9],[-155,-62],[-135,-64],[-29,-18],[-27,-88],[-16,-118],[11,-224],[20,-199],[21,-200],[10,-64],[10,-64],[36,-72],[31,-22],[34,-25],[44,11],[123,159],[126,85],[109,13],[104,-3],[34,-59],[0,-79],[29,-109],[4,-72],[-21,-59],[-27,-28],[14,-60],[-2,-52],[28,-57],[14,-54],[-22,-26],[-37,26],[-16,-32],[28,-75],[5,-38],[-8,-106],[42,-96],[44,-67],[22,-5],[2,-29],[-26,-30],[12,-34],[44,-20],[64,-9],[24,52],[20,7],[45,-15],[10,-72],[-34,-98],[-51,-46],[-51,-140],[-9,-71],[-21,-7],[-23,-58],[3,-79],[-43,-28],[-20,-15],[-6,-66],[15,-69],[-34,-76],[-51,-75],[-35,-6],[-30,25],[-33,-3],[-36,-51],[-13,-19],[-53,-65],[-95,-57],[-106,-36],[-46,-77],[-39,-102],[-26,-102],[-24,-138],[-43,-122],[-24,-97],[11,-73],[53,-68],[77,-82],[28,-133],[-34,-92],[-12,-111],[32,-198],[92,-241],[179,-203],[187,-87],[78,-145],[-60,-154],[-144,-81],[-204,-226],[72,-277],[33,-48],[9,-71],[-16,-111],[-44,-107],[-42,-98],[2,-49],[36,-88],[37,-57],[5,-67],[-35,-80],[-90,-59],[-102,-54],[-46,-45],[-29,-68],[-31,-124],[-60,-84],[-99,-36],[-90,-52],[-99,-16],[-39,19],[-29,15],[-33,-30],[-24,-34],[-25,-52],[-24,-52],[-4,-50],[-3,-49],[-25,-70],[0,-36],[0,-17],[0,-18],[36,-149],[50,-127],[54,-120],[27,-47],[55,-18],[26,-23],[33,-54],[45,-111],[72,-91],[27,-81],[85,-136],[3,-63],[-8,-40],[-22,-33],[-84,-49],[-73,13],[-57,47],[-21,-11],[-5,-33],[-10,-66],[-20,-109],[-33,-79],[-15,-52],[26,-68],[16,-66],[39,-55],[57,-19],[66,-9],[60,-48],[18,-41],[11,-63],[-38,-86],[-39,-95],[-42,-87],[-46,-100],[-40,-60],[-29,-76],[-32,-84],[-38,-35],[-41,17],[-25,-47],[-27,8],[-37,6],[-27,-11],[-25,-48],[10,-62],[16,-87],[23,-95],[25,-63],[12,-40],[-32,-47],[-39,-45],[-45,-38],[-45,-10],[-32,-10],[-27,-57],[-42,-3],[-41,-32],[-12,-82],[28,-63],[10,-39],[-24,-56],[-35,-45],[-18,-80],[-53,-47],[-50,-13],[-46,-64],[-35,-13],[-80,15],[-20,-11],[-21,-11],[-38,-95],[-40,-153],[-26,-97],[-40,-75],[-61,-37],[-114,-25],[-32,-23],[-17,-67],[19,-65],[16,-28],[79,-60],[17,-65],[-31,-117],[-32,-10],[-56,55],[-83,57],[-69,-30],[-58,-60],[-2,-84],[13,-85],[57,-95],[-19,-78],[-163,-27],[-108,-50],[-60,-110],[-24,-90],[-12,-90],[-28,-57],[-8,-210],[-29,-125],[-19,-50],[-42,0],[-54,-7],[-34,-60],[0,-48],[-19,-8],[-16,-47],[-8,-22],[-24,-33],[34,-44],[6,-33],[-26,-97],[2,-100],[15,-70],[-3,-83],[-25,-22],[-2,-72],[-1,-118],[19,-62],[29,-78],[14,-52],[-14,-135],[36,-80],[12,-62],[-9,-113],[10,-35],[27,-17],[41,42],[32,15],[36,-10],[36,-10],[55,28],[55,40],[51,65],[48,-23],[60,-40],[28,-45],[-45,-32],[-22,-47],[37,-26],[36,-27],[80,57],[49,80],[34,43],[36,32],[53,-10],[41,-22],[20,-30],[-8,-63],[8,-82],[46,-49],[131,-9],[40,53],[-7,67],[-8,63],[19,79],[51,41],[23,85],[8,43],[96,96],[53,-7],[52,-28],[26,-15],[13,-32],[-25,-28],[-44,-37],[-22,-75],[-11,-97],[10,-40],[69,-36],[75,-9],[59,55],[28,65],[-4,72],[-32,45],[30,35],[49,13],[27,-55],[43,-98],[20,-60],[11,-85],[-13,-67],[15,-115],[-13,-75],[-42,-35],[-26,-50],[-63,-107],[-5,-83],[13,-80],[35,-36],[-5,-33],[3,-68],[37,-32],[38,15],[16,-48],[-13,-35],[28,-17],[0,-30],[-16,-40],[-48,-23],[-73,-25],[-33,0],[-36,-21],[-4,-20],[-8,-41],[-5,-97],[-30,-65],[-35,-38],[0,-100],[32,-67],[84,-33],[63,-27],[58,-40],[40,5],[51,9],[66,-34],[12,-40],[-10,-52],[-30,-14],[-26,-12],[-4,-2],[-26,-35],[-15,-57],[-53,-35],[-66,-65],[-33,-45],[-27,-85],[18,-95],[40,-133],[7,-117],[-12,-92],[-30,-78],[-56,-114],[-50,-38],[-37,3],[-17,-27],[-9,-56],[-49,-25],[-29,-41],[-29,-42],[-45,6],[-74,37],[-83,18],[-70,7],[-58,3],[-26,-50],[-8,-65],[54,-28],[73,-37],[35,-42],[18,-38],[3,-50],[-19,-50],[-53,-162],[-37,-83],[-64,-56],[-40,3],[-43,-48],[-37,-30],[-4,-29],[-2,-11],[-1,-22],[-1,-3],[-1,-31],[0,-6],[-6,-50],[-21,-75],[-12,-55],[-16,-32],[-35,-25],[-181,-35],[7,-74],[29,-92],[36,-51],[-18,-66],[-18,-87],[14,-96],[-48,-54],[-16,-129],[-79,-58],[3,-146],[0,-157],[4,-133],[30,-132],[9,-140],[-64,-122],[-51,-279],[-91,-85],[-38,-92],[10,-150],[13,-163],[31,-46],[-27,-138],[13,-168],[-38,-121],[59,-92],[-16,-58],[20,-47],[31,22],[132,-107],[97,-73],[34,-38],[66,-26],[68,-32],[18,-25],[-1,-31],[-22,-196],[-17,-33],[-17,-34],[26,-54],[49,-38],[67,-13],[62,27],[121,125],[54,-10],[74,-54],[36,-54],[-14,-118],[16,-48],[40,-37],[36,0],[52,-30],[24,-78],[47,-31],[20,-30],[14,-71],[-61,-71],[45,-27],[47,-10],[-12,-76],[26,-56],[51,13],[18,-33],[7,-64],[-9,-64],[-5,-81],[18,-108],[48,-12],[44,12],[47,25],[24,-12],[31,-73],[15,-67],[14,-110],[59,-204],[167,-303],[126,-186],[161,-175],[149,-113],[142,-50],[-6,-87],[-64,-69],[-140,-23],[-52,-37],[-54,-138],[-69,-44],[-163,-147],[-86,-95],[-28,-49],[-53,-6],[-54,85],[-55,-17],[-20,-102],[297,-2385],[239,-364],[-104,-85],[47,-223],[-126,-127],[108,-97],[-2,-340],[106,-150],[-191,-116],[4,-39],[53,-61],[36,-82],[28,-29],[36,-81],[0,-82],[-11,-121],[0,-51],[4,-46],[30,-51],[4,-27],[-18,-25],[-53,13],[-29,-8],[-27,-39],[12,-63],[15,-67],[34,-93],[4,-55],[-15,-23],[-42,-12],[-31,-21],[-6,-34],[11,-41],[65,-51],[70,-119],[-9,-58],[-61,-13],[-74,-21],[-93,-34],[-97,-65],[-31,-105],[34,-71],[-12,-68],[-33,-44],[-61,-67],[40,-63],[50,-23],[-2,-55],[9,-71],[33,27],[30,-4],[63,79],[73,55],[121,-96],[45,-72],[16,-95],[36,-121],[7,-117],[106,-133],[142,-617],[3,-94],[5,-76],[2,-46],[-13,-14],[18,-23],[22,-6],[15,-19],[12,-32],[-2,-28],[-10,-25],[-4,-27],[2,-30],[13,-19],[10,-27],[-1,-26],[-7,-54],[-10,-16],[-25,5],[-62,46],[-13,-8],[-6,-3],[2,-37],[12,-72],[15,-28],[8,-41],[1,-27],[10,-8],[0,-20],[-13,-13],[2,-13],[1,-10],[13,-12],[-3,-29],[9,-11],[29,15],[21,12],[12,-4],[-1,-12],[-21,-53],[-24,-16],[-34,-9],[-25,-1],[-30,-8],[-29,-13],[4,-46],[8,-29],[9,-32],[5,-33],[-1,-29],[-2,-21],[-13,-15],[-31,3],[-23,6],[-17,-20],[-24,0],[-31,-19],[-31,-22],[-52,-76],[-59,-70],[-38,-45],[-26,-28],[-24,-71],[-1,-36],[3,-21],[2,-11],[-6,-16],[-23,-16],[-35,-43],[-31,-92],[-18,-53],[-35,-50],[-11,-31],[6,-37],[8,-31],[29,-52],[37,-37],[35,-32],[20,-24],[8,-32],[25,-40],[8,-25],[1,-61],[-6,-67],[1,-84],[10,-69],[16,-90],[2,-65],[-6,-64],[-14,-26],[-23,-9],[-21,-7],[-10,-26],[2,-40],[21,-50],[36,-73],[25,-43],[4,-37],[4,-28],[-10,-44],[-12,-49],[1,-20],[17,-47],[9,-49],[-9,-40],[3,-36],[27,-66],[21,-53],[26,-31],[15,-36],[5,-61],[9,-62],[10,-28],[3,-19],[-2,-17],[-3,-27],[-16,-52],[-12,-35],[9,-34],[4,-26],[12,-26],[28,-19],[12,-42],[0,-52],[-8,-43],[-2,-48],[14,-49],[18,-48],[29,-58],[21,-50],[8,-55],[-5,-71],[-8,-60],[0,-38],[1,-52],[10,-48],[18,-43],[20,-24],[41,-10],[40,-14],[19,-11],[15,-20],[27,-10],[16,-27],[15,-35],[3,-6],[-3,-18],[-18,-31],[-15,-29],[0,-23],[-9,-36],[12,-25],[9,-24],[1,-44],[-16,-34],[-22,-29],[-24,-43],[-36,-38],[-17,-24],[-9,-36],[-3,-78],[20,-76],[34,-101],[52,-142],[35,-93],[29,-82],[25,-65],[48,-25],[38,-88],[65,-80]],[[204222,279542],[-482,-1830],[-82,-1310]],[[203658,276402],[-169,-508],[-1152,354],[-969,297],[-930,286],[-294,90],[-3742,1149],[-7558,-1687],[-305,-68],[-62,-14],[-13,-3],[39,-403],[47,-494],[156,-270],[-77,-230],[-191,-567],[-174,-515],[-160,-472],[-155,-460],[-119,-353],[-81,-241],[-56,-164],[-53,-159],[-59,-173],[-58,-172],[-149,-443],[-7,-21],[-17,-49],[-223,-660],[-219,-650],[-226,-670],[-183,-543],[-203,-602],[-137,-404],[-115,-341],[-203,-601],[-216,-786],[-75,-411],[-31,-92],[-54,-75],[-58,-29],[-50,-15],[-55,-30],[-37,-31],[-38,-59],[-35,-53]],[[185192,265060],[-208,184],[-80,90],[-45,90],[-2,94],[-2,94],[-1,76],[-1,76],[-5,259],[-661,743],[-55,62],[-52,200],[-17,772],[-657,1419],[-185,1042],[-389,1327],[-205,698],[-31,46],[-111,164],[-97,144],[-33,48],[-456,677],[-224,331],[-546,346],[-959,203],[-521,381],[-699,510],[-336,397],[-604,714],[-135,201],[-193,479],[-44,874],[252,647],[71,107],[160,244],[549,195],[214,204],[1,22],[56,782],[132,242],[157,289],[134,246],[-45,86],[-72,137],[-641,678],[-642,678],[-114,826],[-152,317],[-97,104],[-19,-1],[-803,-28],[-172,-6],[-412,-264],[-146,-14],[-305,99],[-1073,1085],[-99,100],[-56,56],[-114,115],[-149,236],[-62,485],[415,686],[100,165],[-344,1041],[-105,509],[26,274],[12,136],[13,137],[52,548],[-40,196],[-180,176],[-142,139],[-277,271],[-11,10],[-74,87],[-72,84],[-3,3],[-12,49],[0,58],[22,53],[15,51],[-57,176],[-15,46],[-14,25],[-5,7],[-7,23],[-8,22],[-6,18],[1,21],[-10,-11],[-10,-11],[-22,-19],[-30,-43],[-7,-57],[-12,-34],[-11,-33],[5,-40],[5,-39],[8,-63],[-22,-66],[-23,-41],[-24,-74],[-30,-68],[-27,-69],[-18,-81],[-25,-89],[-26,-106],[-27,-61],[-20,15],[-25,-5],[3,-40],[-38,12],[-187,-237],[-91,-116],[-1238,539],[-166,-61],[-80,-124],[-132,-933],[-122,-69],[-213,-121],[-282,-20],[-141,49],[-424,336],[-167,662],[-54,130],[-24,49],[-53,113],[-51,117],[-44,108],[-14,43],[-17,49],[-16,73],[-12,63],[-24,114],[-22,90],[-23,55],[-15,33],[-7,17],[-8,17],[-25,27],[-25,31],[-25,19],[-30,14],[-31,-4],[-31,0],[-29,10],[-29,9],[-29,24],[-18,24],[-12,22],[-15,29],[-16,29],[-6,21],[34,55],[30,48],[19,16],[18,16],[14,27],[0,7],[0,8],[-12,22],[-22,13],[-26,13],[-21,-8],[-15,-13],[-14,-12],[-25,7],[-21,13],[-13,16],[-12,16],[-12,11],[-7,21],[5,10],[10,21],[5,54],[-9,125],[-28,190],[-1,75],[-1,51],[13,72],[14,48],[30,86],[-12,86],[-19,76],[1,28],[16,30],[51,59],[18,40],[7,26],[-14,37],[-9,26],[-15,48],[-29,74],[-27,73],[-44,54],[-16,35],[-14,41],[15,30],[-38,46],[-29,58],[-32,104],[-49,188],[-20,43],[-35,17],[-34,64],[-8,78],[7,81],[28,74],[17,61],[-19,45],[-47,26],[-38,-15],[-51,15],[4,-69],[-9,-58],[-42,-71],[-35,-38],[-35,-38],[-31,-8],[-30,-7],[-72,-15],[-40,-30],[-33,-47],[-31,-63],[-70,-60],[-63,-39],[-59,-48],[-39,-65],[-26,-44],[-5,-66],[-11,-51],[-47,-52],[-6,-29],[-14,-88],[27,-21],[-2,-58],[-10,-46],[-47,-5],[-33,33],[-39,26],[-34,-22],[-26,-44],[-18,-24],[-32,-4],[-25,-18],[-25,-25],[-44,-52],[-24,-36],[-22,-33],[-31,-23],[-27,-20],[-57,-34],[-51,-24],[-29,-1],[-36,11],[-25,10],[-36,17],[-38,-8],[-32,-9],[-22,-66],[-45,-71],[-49,-112],[-30,-68],[-39,-50],[-61,22],[-88,13],[-34,-13],[-48,-12],[-40,-4],[-70,23],[-42,45],[-104,113],[-84,46],[-76,25],[-47,-2],[-40,-13],[-30,-18],[-27,-31],[-20,-42],[-31,-18],[-38,0],[-24,8],[-23,8],[-54,45],[-71,56],[-37,40],[-25,32],[-16,29],[-22,42],[-35,73],[-16,22],[-39,33],[-37,31],[-30,35],[-30,20],[-49,8],[-32,-4],[-39,-22],[-50,-63],[-80,-107],[-68,-83],[-94,-59],[-97,-98],[-57,-87],[-44,-81],[-74,-50],[-67,-31],[-131,10],[-106,3],[-37,0],[-27,15],[-27,15],[-71,46],[-141,122],[-205,187],[-161,198],[-48,114],[-33,79],[-40,131],[-67,102],[-115,96],[-116,15],[-57,0],[-64,0],[-159,0],[-158,-20],[-114,-20],[-111,-56],[-49,-48],[-49,-48],[-77,-152],[-30,-208],[26,-274],[95,-193],[6,-213],[-134,-203],[-108,-182],[-228,-375],[-209,-213],[-191,-102],[-37,-20],[-215,-10],[-612,352],[-329,155],[-249,147],[-249,147],[-329,304],[-236,365],[-53,183],[-21,68],[-20,69],[-90,111],[-66,123],[-55,171],[-98,92],[-148,218],[-70,238],[-95,122],[-17,70],[-13,51],[-13,158],[-17,65],[-47,-10],[-67,46],[-37,147],[-57,117],[-95,60],[-63,46],[-74,46],[-98,81],[-141,81],[-36,18],[-58,28],[-56,33],[-57,33],[-32,22],[-13,43],[-20,94],[3,137],[3,155],[10,47],[-8,42],[-10,24],[-27,19],[-20,50],[-7,76],[17,69],[-20,28],[-19,33],[22,23],[29,35],[5,51],[-6,42],[-4,30],[-14,23],[-28,29],[-12,18],[2,25],[13,34],[-2,26],[-19,42],[-3,28],[-9,21],[-12,17],[-17,11],[-41,27],[-147,-359],[-31,-76],[-76,-166],[-16,-37],[-2,-7],[-32,-40],[-31,-31],[-30,-29],[-13,-12],[-49,-32],[-55,-30],[-12,-6],[-21,-12],[-11,0],[-11,0],[-39,14],[-10,5],[-10,5],[-22,14],[-23,-3],[-40,-15],[-26,-14],[-2,-1],[-29,-28],[-8,-13],[-7,-12],[-2,-15],[-2,-16],[6,-44],[11,-50],[11,-29],[10,-30],[15,-56],[-26,-9],[-42,-26],[-19,-14],[-18,-14],[-16,-37],[-16,-38],[-20,-6],[-47,-3],[-33,3],[-10,-14],[-7,-18],[-17,-5],[-34,-10],[-31,-21],[-33,-9],[-27,13],[-34,18],[-28,10],[-39,28],[-40,40],[-29,61],[-47,49],[-71,17],[-63,-7],[-32,-41],[-27,-73],[-51,-69],[-48,-56],[-63,-55],[-78,-27],[-108,-22],[-200,-53],[-165,-60],[-114,-41],[-99,-51],[-78,-41],[-75,-25],[-79,5],[-99,26],[-150,-26],[-299,-182],[-380,-147],[-118,-97],[-70,-116],[-57,-208],[-41,-162],[21,-148],[70,-157],[57,-94],[61,-137],[10,-114],[-57,-278],[-78,-208],[-77,-168],[-70,-137],[-98,-111],[-118,-51],[-152,36],[-170,208],[-27,86],[-47,71],[-195,213],[-101,76],[-114,106],[-55,80],[-63,169],[-97,137],[-168,172],[-98,66],[-151,157],[-4,122],[64,45],[34,66],[-15,74],[-46,94],[-147,96],[-132,122],[-127,86],[-162,101],[-134,127],[-71,79],[-181,200],[-99,147],[-66,107],[-67,73],[39,183],[37,185],[25,202],[-5,224],[-25,195],[-41,139],[-40,89],[-14,14],[-15,14],[-35,4],[-35,3],[-49,-25],[-30,-43],[-27,-24],[-27,-24],[-30,-8],[-46,51],[-50,33],[-42,30],[-20,9],[-27,-6],[-104,-15],[-15,-5],[-14,-6],[-9,-12],[1,-27],[6,-34],[9,-51],[4,-26],[4,-27],[-4,-54],[-8,-32],[-16,-33],[-27,-13],[-57,-2],[-61,0],[-37,-5],[-34,-16],[-31,-35],[-52,10],[-33,-10],[-25,-17],[-27,-20],[-24,8],[-35,17],[-36,26],[-29,20],[-24,13],[-26,-4],[-24,-10],[-31,4],[-16,8],[-5,3],[-19,25],[-34,33],[-34,28],[-48,28],[-34,5],[-81,-12],[-101,71],[-80,71],[-114,-6],[-121,-30],[-94,-46],[-148,-62],[-135,-4],[-111,56],[-144,97],[-121,64],[-101,17],[-131,96],[-118,96],[-185,102],[-159,33],[-136,28],[-199,97],[-222,171],[-121,112],[-43,40],[-185,132],[-121,66],[-151,51],[-38,16],[-10,4],[-61,-18],[-24,-66],[-163,-451],[-80,-137],[-51,-38],[-76,-35],[-86,7],[-406,158],[-205,111],[-426,418],[-80,83],[-79,82],[-111,193],[-212,413],[-101,193],[-101,193],[-585,1206],[-47,63],[-46,63],[-424,371],[-262,102],[-172,10],[-168,-35],[-30,-6],[-138,-86],[-107,-167],[-48,-136],[-48,-135],[-140,-211],[-191,-157],[-219,-147],[-148,-31],[-154,-20],[-134,17],[-110,14],[-92,48],[-91,48],[-195,111],[-138,41],[-111,25],[-134,21],[-421,-31],[-67,-5],[-181,56],[-141,81],[-162,117],[-11,9],[-100,77],[-72,114],[-17,100],[-16,99]],[[139167,299449],[34,86],[35,71],[54,186],[2,158],[-37,200],[-121,126],[-145,98],[-211,207],[-88,70],[-52,78],[-6,66],[-6,67],[24,277],[16,81],[16,81],[56,52],[28,77],[-8,74],[-94,84],[-161,172],[-32,113],[32,231],[40,323],[-19,112],[-79,379],[-125,569],[-126,590],[-56,168],[-137,151],[-41,91],[-3,109],[39,175],[31,193],[68,328],[34,62],[402,158],[156,119],[93,119],[103,18],[95,-10],[81,-81],[112,-158],[137,-225],[89,-59],[114,7],[510,220],[100,16],[92,-57],[70,16],[633,713],[81,36],[93,-56],[212,-229],[398,-283],[414,-197],[498,-106],[106,35],[28,70],[29,71],[18,267],[-65,266],[-74,169],[-129,305],[-103,204],[-67,49],[-31,87],[-10,115],[31,82],[52,35],[144,0],[207,28],[137,-74],[98,-38],[70,-14],[74,24],[42,109],[37,260],[-35,102],[-252,221],[-25,70],[12,114],[65,163],[145,110],[200,164],[104,130],[42,147],[107,362],[56,77],[121,105],[86,116],[42,196],[-16,169],[-77,259],[-77,253],[-84,214],[-140,340],[-55,88],[-79,89],[-58,122],[-86,165],[-56,144],[-12,129],[-2,215],[-24,84],[-19,115],[25,186],[39,289],[78,553],[132,344],[101,126],[162,104],[418,61],[288,140],[115,96],[97,153],[50,203],[11,95],[-45,101],[-250,263],[-5,145],[24,165],[137,130],[73,164],[42,178],[-3,125],[-51,146],[11,127],[53,97],[40,82],[47,197],[-5,133],[-74,681],[-47,558],[-47,368],[-4,78],[-5,70],[37,312],[45,151],[-21,49],[-191,137],[-147,108],[-95,71],[-86,53],[-193,693],[-121,356],[-172,90],[-170,222],[-14,85],[-14,652],[7,72],[316,444],[70,109],[16,91],[79,1050],[-7,98],[-55,98],[-172,213],[-14,96],[23,154],[51,246],[5,211],[-38,154],[-204,386],[-219,344],[-302,295],[-112,147],[-28,147],[-33,141],[-88,470],[96,209],[161,167],[147,44],[417,-113],[161,-61],[88,35],[37,112],[0,119],[0,120],[-81,314],[-123,528],[-38,260],[-23,210],[7,249],[72,171],[220,199],[90,56],[90,55],[168,-7],[274,0],[159,21],[148,127],[70,217],[14,407],[23,295],[61,161],[98,218],[79,309],[4,281],[-130,322],[-363,766],[-84,357],[-30,337],[-9,520],[-5,207],[-11,242],[-21,126],[-31,92],[-72,60],[-318,97],[-273,169],[-125,140],[-123,192],[-534,171],[-202,104],[-192,169],[-136,156],[-90,181],[-164,483],[-69,109],[-186,137],[-54,120],[-14,136],[17,120],[67,140],[141,124],[127,84],[165,133],[61,178]],[[142410,336806],[51,1051],[-65,526],[-169,727],[-112,319],[-661,776],[-224,730],[9,398],[179,202],[198,142],[261,323],[37,614],[-100,354],[-281,519],[-339,-110],[-246,39],[-193,79],[-281,-110],[-193,204],[-366,307],[251,402],[217,221],[122,125],[63,205],[19,228],[139,231],[201,335],[180,146],[180,146],[191,14],[253,-46],[224,55],[193,-133],[219,15],[204,110],[96,-187],[270,-80],[161,-47],[229,47],[349,175],[100,242],[183,8],[135,-102],[141,-79],[130,-71],[105,-323],[152,-111],[83,-266],[166,47],[152,-71],[104,110],[78,106],[79,107],[5,188],[141,71],[193,205],[73,153],[73,154],[-16,338],[52,299],[157,79],[123,226],[57,211],[112,256],[143,-8],[76,157],[-75,326],[-27,205],[-34,260],[27,201],[75,185],[102,141],[60,132],[83,108],[58,79],[22,195],[-21,232],[234,562],[164,538],[15,192],[-5,134],[-21,177],[8,77],[4,39],[4,38],[81,71],[115,8],[78,15],[78,-19],[94,-4],[105,-9],[106,24],[16,-82],[68,-114],[68,27],[23,75],[17,97],[103,68],[110,114],[8,12],[53,73],[53,73],[103,23],[31,7],[66,4],[67,3],[13,2],[106,17],[9,1],[153,4],[27,11],[94,40],[122,78],[38,115],[14,41],[0,4],[16,103],[15,107],[76,157],[8,16],[16,22],[17,22],[212,82],[82,77],[28,26]],[[149635,352996],[38,-115],[43,-110],[59,-100],[87,-108],[4,-6],[32,-28],[33,-29],[33,-29],[53,-28],[82,-16],[26,-1],[105,-1],[154,13],[184,-25],[104,-14],[174,-42],[205,-60],[194,-66],[222,-152],[159,-180],[214,-455],[107,-257],[112,-210],[198,-257],[254,-162],[151,-185],[146,-204],[158,-309],[157,-309],[62,-163],[37,-95],[32,-129],[37,-154],[26,-162],[34,-161],[72,-218],[84,-179],[159,-240],[277,-263],[302,-204],[234,-113],[167,-24],[55,-28],[123,-62],[221,-170],[307,-315],[403,-515],[284,-363],[118,-151],[282,-378],[270,-299],[135,-143],[85,-54],[85,-54],[108,3],[107,3],[679,20],[108,-14],[6,0],[60,-72],[28,-156],[51,-60],[83,-143],[76,-204],[83,-215],[60,-210],[115,-221],[123,-114],[222,-90],[179,-25],[226,115],[172,30],[149,-24],[353,-72],[139,-96],[99,-113],[99,-192],[52,-149],[48,-246],[-15,-448],[-88,-545],[-16,-198],[34,-229],[68,-172],[91,-48],[147,-54],[127,6],[131,54],[162,-60],[191,-155],[154,-223],[100,-202],[4,-210],[-24,-197],[-36,-198],[8,-191],[46,-116],[168,-133],[224,-144],[153,-83],[162,-18],[191,24],[281,6],[268,3],[274,-48],[80,-15],[253,-48],[87,-12],[50,-6],[232,-42],[197,-48],[162,-75],[113,-66],[108,-65],[97,154],[59,94],[66,36],[80,-12],[92,-63],[78,6],[65,12],[29,24],[29,24],[37,78],[2,63],[1,93],[-1,130],[2,155],[29,75],[45,70],[75,90],[88,48],[79,18],[172,-55],[70,1],[101,18],[68,10],[60,-35],[44,-68],[97,-90],[64,-54],[86,-40],[23,-4],[105,-19],[67,-3],[70,10],[66,16],[115,74],[40,36],[20,60],[-16,160],[-26,213],[-31,190],[-3,103],[16,90],[47,177],[17,64],[7,115],[19,117],[65,125],[22,61],[13,67],[-2,60],[-34,57],[-44,53],[-22,57],[-9,50],[14,56],[80,103],[81,104],[44,89],[29,67],[4,73],[0,70],[16,67],[15,60],[44,50],[35,26],[40,-20],[44,-26],[73,16],[73,50],[64,64],[68,40],[45,10],[55,-50],[48,-37],[139,-60],[71,-40],[60,-56],[79,-27],[133,-17],[134,0],[95,25],[124,29],[135,30],[123,33],[73,10],[62,-24],[62,-23],[77,-66],[82,-100],[91,-106],[71,-125],[64,-113],[38,-93],[9,-89],[20,-93],[35,-81],[53,-53],[58,-17],[108,4],[115,10],[81,43],[19,18],[26,25],[16,75],[10,59],[-11,53],[-26,63],[-120,130],[-39,90],[-60,110],[-57,130],[-21,116],[-6,160],[0,107],[-33,129],[-43,168],[-28,107],[-8,185],[-5,63],[-22,40],[-66,47],[-55,30],[-9,43],[-58,30],[-57,-40],[-71,-40],[-59,-23],[-53,20],[-29,50],[-16,50],[-28,33],[12,17],[21,33],[42,27],[44,43],[55,20],[69,20],[42,23],[36,5],[34,-15],[40,-36],[49,-30],[40,-43],[40,-21],[37,-5],[38,5],[36,30],[45,80],[56,65],[37,28],[25,44],[23,88],[19,50],[33,50],[43,27],[19,28],[7,42],[-3,53],[-16,28],[-42,30],[-53,9],[-44,24],[-24,40],[-5,59],[-4,71],[-19,63],[-19,32],[-27,24],[-37,6],[-70,-3],[-71,-4],[-41,12],[-23,25],[-9,37],[3,36],[19,31],[38,63],[19,15],[18,12],[21,1],[44,22],[30,31],[29,38],[17,44],[16,50],[-1,26],[-8,24],[-29,28],[-27,36],[-14,22],[-5,22],[-2,36],[5,29],[11,26],[15,13],[15,6],[25,-1],[53,-6],[45,5],[38,18],[27,47],[27,30],[29,20],[36,18],[36,2],[23,-17],[32,-25],[37,-11],[32,-4],[27,19],[22,26],[14,55],[11,49],[27,41],[43,22],[44,8],[42,-2],[44,5],[39,22],[47,53],[30,27],[13,25],[-2,28],[-12,42],[-9,42],[-7,43],[5,52],[15,35],[33,44],[40,33],[18,34],[34,48],[62,67],[68,57],[33,35],[17,56],[-2,37],[0,31],[-20,34],[-33,20],[-151,26],[-98,20],[-11,27],[-2,30],[11,33],[38,70],[32,47],[57,66],[36,59],[24,73],[15,88],[15,97],[2,81],[-8,170],[-9,112],[5,33],[10,23],[22,30],[38,35],[43,17],[43,0],[35,8],[35,37],[36,61],[16,47],[4,53],[-2,40],[-13,40],[-27,22],[-25,7],[-43,-39],[-53,-17],[-56,-4],[-57,10],[-45,30],[-35,30],[-35,31],[-17,17],[-31,-5],[-30,-17],[-30,-23],[-29,-35],[-16,-22],[-32,-26],[-32,-9],[-67,12],[-49,-6],[-29,-9],[-39,-32],[-57,-51],[-53,-28],[-76,-27],[-77,-28],[-103,-32],[-31,5],[-26,15],[-30,40],[-21,43],[-23,60],[-3,42],[9,70],[5,65],[0,56],[-8,120],[-4,82],[4,88],[-3,55],[-8,36],[-32,64],[-9,17],[-7,43],[2,128],[-6,57],[-23,44],[-25,33],[-24,34],[-48,34],[-81,66],[-33,38],[-13,58],[-4,83],[4,76],[9,88],[10,66],[23,19],[44,25],[31,28],[19,62],[21,89],[14,37],[18,13],[9,33],[-7,26],[-24,25],[-27,16],[-32,4],[-91,-15],[-60,-23],[-54,-22],[-80,-18],[-85,-9],[-45,-13],[-63,-17],[-31,1],[-29,15],[-21,30],[-4,37],[0,44],[-15,238],[-4,133],[2,111],[15,123],[26,158],[25,71],[30,60],[40,68],[34,64],[12,45],[-4,31],[-15,22],[-42,24],[-101,87],[-75,73],[-26,46],[-8,27],[0,29],[8,37],[41,59],[53,50],[51,50],[57,35],[63,15],[21,5],[29,-3],[26,-13],[111,-139],[102,-103],[45,-36],[38,-10],[34,7],[70,47],[43,35],[23,34],[11,50],[3,51],[-5,98],[-2,95],[7,21],[35,50],[55,62],[26,13],[32,-9],[65,-50],[98,-103],[87,-80],[45,-33],[43,-34],[36,-19],[33,0],[23,11],[20,26],[9,41],[27,127],[33,143],[37,149],[67,196],[30,91],[17,84],[3,67],[-5,88],[-11,34],[-17,29],[-64,32],[-63,42],[-63,45],[-85,113],[-36,67],[-22,52],[-75,152],[-118,153],[-86,140],[-51,89],[-17,67],[-4,59],[1,122],[6,46],[23,28],[88,72],[56,60],[95,165],[89,153],[19,65],[3,63],[-13,73],[-13,38],[-8,56],[-2,52],[-15,43],[-15,37],[-31,66],[-14,31],[-13,25],[-16,16],[-20,9],[-72,3],[-18,19],[-13,27],[-11,76],[3,35],[9,45],[6,36],[-7,22],[-31,21],[-61,17],[-73,32],[-45,20],[-47,32],[-40,45],[-88,79],[-64,87],[-31,88],[-6,57],[3,47],[4,18],[8,23],[30,19],[116,79],[168,106],[114,63],[68,39],[49,17],[47,9],[45,-15],[39,-20],[41,0],[34,9],[51,30],[46,50],[22,39],[22,39],[31,29],[41,38],[28,50],[6,58],[-3,58],[-18,57],[-34,86],[-31,58],[-82,144],[-32,59],[-3,40],[-5,32],[-23,8],[-16,28],[-18,47],[-11,67],[3,47],[20,94],[16,87],[1,72],[2,48],[18,52],[1,36],[1,31],[8,39],[8,31],[22,19],[32,20],[32,42],[16,53],[-1,65],[-11,41],[-8,38],[-10,30],[-15,28],[-19,20],[-18,45],[-7,49],[-1,42],[-8,34],[-17,20],[-33,20],[-29,6],[-66,4],[-80,17],[-103,29],[-67,36],[-21,27],[-10,52],[6,50],[11,81],[-3,62],[-7,56],[-6,41],[-4,59],[3,56],[16,50],[23,37],[53,28],[40,30],[27,34],[18,42],[5,27],[4,23],[-3,63],[-10,45],[-19,31],[-37,34],[-31,52],[-18,51],[-10,45],[1,54],[10,57],[6,32],[17,36],[12,10],[23,-5],[22,-14],[17,-23],[15,-22],[10,-31],[16,-53],[16,-59],[14,-43],[21,-34],[26,-31],[35,-20],[30,-6],[30,13],[20,27],[13,49],[1,40],[-7,53],[-6,77],[-1,54],[-1,41],[11,48],[19,29],[21,19],[20,11],[26,-3],[35,-18],[39,-33],[39,-16],[29,1],[42,25],[42,50],[35,31],[28,15],[36,-3],[47,-7],[46,0],[24,9],[24,9],[37,30],[26,52],[20,24],[33,29],[33,16],[7,10],[8,11],[7,36],[-1,41],[-8,39],[-9,37],[-1,30],[-2,29],[-13,32],[-7,39],[1,15],[5,34],[18,37],[22,12],[37,2],[22,20],[22,-6],[28,-6],[24,12],[17,25],[8,36],[-3,39],[-18,48],[-24,38],[-37,48],[-21,1],[-27,-19],[-30,7],[-31,32],[-71,109],[-35,37],[-17,14],[-18,13],[-38,43],[-9,20],[0,23],[7,47],[20,47],[11,35],[-4,33],[-19,56],[-15,44],[-5,56],[9,87],[23,103],[13,26],[19,22],[28,23],[36,15],[36,16],[27,32],[18,35],[20,41],[9,34],[-1,25],[-10,25],[-24,24],[-29,35],[-27,44],[-9,36],[3,28],[5,25],[26,37],[30,43],[25,37],[17,75],[26,89],[52,64],[30,50],[38,16],[38,-16],[88,-40],[36,-8],[42,20],[45,66],[32,100],[24,79],[16,93],[-7,132],[-34,103],[-59,94],[-17,118],[1,86],[14,111],[-10,126],[-34,138],[-49,126],[-14,77],[8,81],[34,75],[12,56],[26,37],[38,21],[57,51],[80,75],[68,11],[67,63],[68,83],[74,52],[70,18],[95,-10],[92,-28],[123,-35],[45,-28],[52,8],[32,26],[12,55],[19,117],[3,102],[15,25],[44,16],[52,20],[30,35],[13,57],[4,97],[-34,98],[10,36],[47,44],[51,46],[34,46],[0,40],[-24,31],[-69,41],[-25,22],[-15,35],[-7,37],[7,29],[29,34],[51,20],[11,23],[9,36],[-3,36],[-15,48],[-36,52],[-29,39],[-64,44],[-53,9],[-36,-16],[-38,13],[-37,20],[-15,17],[-2,23],[0,27],[14,18],[23,24],[23,9],[26,13],[36,40],[21,24],[16,12],[7,1],[11,-1],[21,-1],[57,26],[42,31],[15,33],[3,48],[10,43],[30,39],[36,27],[40,40],[27,40],[18,37],[7,31],[-14,29],[-21,17],[-34,18],[-31,16],[-33,-6],[-40,-12],[-33,-29],[-22,-11],[-29,-3],[-21,2],[-21,7],[-12,17],[2,31],[4,51],[2,40],[-5,31],[-18,48],[-14,91],[-8,40],[-28,69],[-12,29],[-29,38],[-29,35],[-18,46],[-8,60],[-30,87],[-38,76],[-32,81],[-7,44],[-13,38],[-10,24],[-28,29],[-37,36],[-16,26],[2,36],[-5,44],[-24,62],[-24,62],[-14,91],[-17,56],[-9,43],[-19,40],[-24,43],[-9,31],[2,23],[27,29],[58,53],[49,42],[27,27],[22,34],[9,47],[-4,54],[4,60],[8,40],[15,30],[30,47],[37,42],[11,25],[6,36],[-6,40],[-10,33],[-19,32],[-30,23],[-26,18],[-23,49],[-12,45],[-7,28],[-10,74],[-9,68],[0,41],[5,25],[10,20],[23,6],[91,-32],[234,-79],[95,-30],[32,-3],[37,5],[19,2],[31,26],[27,29],[29,19],[29,15],[20,26],[3,29],[-1,54],[-19,116],[2,98],[8,73],[10,63],[8,38],[1,26],[-4,23],[-9,17],[-18,19],[-26,2],[-22,11],[-85,67],[-36,7],[-27,-7],[-29,6],[-19,31],[-17,25],[-2,40],[2,38],[13,26],[6,26],[13,23],[16,29],[14,27],[-1,33],[-10,24],[-16,9],[-21,4],[-26,14],[-16,23],[-6,29],[2,29],[16,29],[19,19],[27,5],[38,0],[27,4],[27,23],[13,30],[-4,39],[-5,60],[5,26],[18,38],[10,36],[-4,53],[-13,56],[-28,60],[-37,77],[-17,49],[-8,52],[2,54],[11,93],[13,63],[12,88],[2,103],[-8,113],[5,14],[13,10],[62,-7],[41,-5],[38,-9],[49,-15],[44,8],[32,13],[35,26],[32,12],[27,10],[29,25],[18,20],[37,41],[32,20],[23,12],[36,14],[55,13],[58,29],[36,18],[35,36],[29,39],[20,44],[6,33],[-1,37],[-11,50],[-80,189],[-30,57],[-20,41],[-21,38],[-25,36],[-8,12],[-22,48],[-5,26],[5,22],[11,24],[18,19],[42,3],[31,8],[33,20],[26,12],[29,-6],[30,-4],[38,1],[35,20],[37,16],[31,4],[28,-17],[37,-36],[41,-46],[26,-7],[25,23],[19,29],[15,30],[22,24],[35,16],[44,34],[27,26],[17,25],[12,38],[4,56],[4,27],[17,30],[50,81],[22,43],[9,37],[4,77],[-4,43],[-17,53],[-29,80],[-30,71],[-24,38],[-40,57],[-47,56],[-45,43],[-36,55],[-55,79],[-31,38],[-29,59],[-24,80],[-25,88],[-6,54],[8,39],[25,17],[30,23],[35,30],[32,40],[34,58],[46,78],[34,49],[10,26],[-10,27],[-31,59],[-22,38],[-11,29],[-3,27],[6,34],[17,43],[18,35],[25,20],[39,-5],[32,-1],[24,10],[21,23],[16,29],[6,30],[-6,28],[-21,47],[-14,50],[-5,29],[11,18],[3,15],[-3,23],[-7,38],[-7,44],[6,33],[14,21],[23,20],[20,9],[36,7],[53,5],[38,2],[34,-2],[32,-3],[27,-3],[49,-7],[28,4],[25,24],[22,33],[61,91],[24,42],[17,45],[5,39],[-15,70],[-20,48],[-24,42],[-26,27],[-20,7],[-31,3],[-33,0],[-25,2],[-16,12],[-23,20],[-62,72],[-66,75],[-21,40],[-18,31],[-8,33],[2,23],[11,27],[25,10],[32,0],[26,6],[20,19],[20,40],[7,43],[-2,47],[-8,37],[-17,38],[-24,30],[-26,17],[-18,-3],[-19,-30],[-21,-20],[-32,-6],[-30,-3],[-16,9],[-8,11],[-3,8],[-4,17],[-2,43],[6,37],[15,34],[6,30],[0,48],[-10,43],[-12,35],[1,25],[5,24],[13,36],[22,21],[22,21],[29,17],[26,14],[24,14],[20,19],[22,26],[5,34],[-2,37],[-7,32],[1,29],[11,22],[22,21],[32,15],[29,0],[19,-23],[29,-43],[19,-17],[26,-18],[27,-2],[28,14],[19,26],[8,38],[2,35],[-9,38],[-13,59],[-2,39],[6,39],[8,24],[28,25],[24,36],[12,34],[3,32],[-3,28],[-8,23],[-18,7],[-21,6],[-20,-3],[-24,-19],[-20,-18],[-38,-12],[-23,1],[-17,1],[-26,0],[-23,1],[-17,-9],[-46,-24],[-63,-33],[-30,-10],[-23,0],[-23,10],[-18,16],[-13,25],[3,38],[-1,42],[-4,27],[-7,24],[-19,31],[-25,27],[-19,11],[-22,11],[-41,-5],[-32,13],[-21,15],[-12,30],[-4,36],[0,38],[-5,28],[-14,39],[-19,47],[-12,23],[-12,10],[-17,5],[-16,2],[-29,-7],[-24,-6],[-18,1],[-19,11],[-16,16],[-14,20],[-11,27],[1,37],[6,20],[13,17],[23,14],[14,14],[22,22],[10,19],[20,36],[20,31],[24,22],[30,9],[39,0],[31,-8],[27,-19],[12,-22],[14,-20],[23,-10],[20,-12],[23,9],[10,8],[9,12],[2,14],[2,17],[-5,48],[0,47],[1,37],[9,29],[16,16],[27,10],[20,4],[36,-3],[23,6],[16,20],[12,29],[2,32],[-12,37],[-21,24],[-17,27],[-7,28],[-5,29],[-8,35],[0,25],[9,14],[16,9],[17,-1],[31,-36],[27,-30],[24,-16],[24,4],[49,55],[25,27],[12,13],[1,1],[15,5],[14,5],[38,19],[31,34],[15,33],[9,40],[4,31],[12,38],[12,27],[18,15],[17,10],[33,3],[30,-17],[18,-22],[14,-7],[15,3],[16,-1],[17,9],[51,32],[37,27],[29,17],[26,2],[26,1],[31,20],[17,29],[23,40],[23,40],[20,52],[14,39],[14,39],[4,29],[4,28],[-3,31],[9,16],[32,13],[43,8],[35,4],[15,2],[11,17],[25,-6],[14,-17],[9,-34],[9,-33],[3,-44],[-9,-41],[-9,-53],[7,-7],[13,0],[10,27],[13,5],[17,17],[4,11],[8,23],[26,26],[20,14],[36,17],[31,6],[37,0],[28,-24],[22,-6],[23,34],[26,26],[32,10],[29,-6],[30,-4],[21,-11],[17,8],[3,32],[-20,33],[5,20],[28,16],[24,-10],[21,-22],[23,-53],[16,-40],[4,-44],[-8,-35],[3,-23],[21,-11],[18,8],[10,25],[12,73],[-8,80],[-11,39],[-2,28],[11,28],[16,4],[29,6],[97,-23],[51,-39],[30,-23],[41,-9],[29,-5],[14,13],[11,33],[-13,58],[-3,38],[16,37],[34,43],[18,10],[19,0],[27,-20],[34,-40],[21,-56],[12,-53],[12,-33],[16,-11],[29,4],[39,-10],[29,5],[34,25],[36,38],[21,43],[17,40],[11,8],[17,-16],[22,1],[14,29],[11,42],[14,48],[13,51],[32,31],[68,34],[58,9],[108,1],[66,10],[27,9],[30,23],[29,10],[40,-2],[33,-13],[20,2],[34,20],[18,-3],[63,-41],[44,-26],[29,-9],[28,0],[18,25],[14,14],[18,-2],[15,-7],[17,-23],[5,-28],[-4,-36],[10,-22],[13,5],[9,28],[4,40],[2,46],[13,33],[18,6],[16,-20],[17,-32],[11,-34],[-4,-31],[-11,-35],[-2,-24],[19,-19],[27,6],[22,36],[18,56],[20,41],[22,43],[16,36],[22,11],[20,-14],[5,-41],[3,-55],[18,-43],[15,-27],[24,-17],[18,14],[19,22],[13,34],[11,67],[12,112],[-1,99],[5,57],[9,43],[19,32],[35,21],[36,3],[47,-23],[27,-4],[36,20],[32,13],[32,-5],[15,13],[27,38],[25,22],[9,-8],[3,-62],[-6,-37],[-23,-26],[4,-18],[59,-28],[22,-6],[7,-29],[12,-32],[7,-7],[23,10],[15,-12],[18,2],[18,10],[15,20],[5,39],[12,58],[-3,17],[-4,19],[-4,17],[-11,13],[-18,30],[-20,45],[-11,46],[-15,50],[-6,53],[-14,46],[14,30],[23,15],[6,23],[15,-10],[24,5],[14,34],[17,14],[14,13],[20,-3],[8,-15],[13,35],[19,-2],[10,-25],[0,-27],[18,-14],[17,-4],[25,8],[34,66],[27,31],[27,18],[41,8],[39,2],[27,0],[21,15],[28,14],[15,-14],[26,-13],[23,23],[30,-1],[22,-5],[9,-17],[-1,-14],[-16,-29],[-5,-18],[7,-25],[10,-12],[16,1],[13,11],[2,33],[10,30],[20,12],[19,-3],[7,-10],[2,-27],[6,-25],[18,-11],[27,-4],[25,-23],[31,-39],[34,-53],[31,-50],[37,-36],[17,-27],[9,-27],[11,-13],[23,2],[19,-12],[24,-16],[20,14],[30,28],[39,50],[34,53],[37,46],[20,12],[56,-4],[80,-6],[75,4],[28,6],[23,11],[23,34],[30,29],[30,40],[28,30],[35,20],[52,21],[30,6],[28,10],[23,12],[16,-11],[16,-11],[14,0],[13,32],[15,32],[33,79],[19,72],[13,60],[9,89],[17,74],[33,106],[19,50],[29,62],[32,47],[108,129],[76,81],[68,73],[44,22],[86,5],[56,1],[43,5],[28,15],[19,-9],[36,-44],[29,-13],[24,6],[35,14],[37,-5],[55,-17],[98,20],[69,53],[80,15],[72,-46],[61,46],[79,161],[66,137],[52,40],[65,-2],[162,-25],[85,-10],[53,20],[47,166],[27,149],[24,35],[27,24],[44,-21],[62,-12],[42,-6],[71,-3],[58,-2],[44,-58],[30,-60],[40,0],[15,32],[-9,57],[2,49],[42,34],[7,57],[47,56],[37,18],[61,30],[70,11],[74,-41],[65,-13],[37,54],[35,52],[97,-9],[43,29],[57,-20],[42,34],[56,-48],[41,-26],[41,-27],[40,-62],[52,-46],[58,-29],[92,-17],[59,-9],[48,-28],[54,-72],[78,-60],[67,-46],[85,-30],[82,-28],[72,-57],[63,-54],[32,-14],[33,5],[17,27],[10,58],[4,35],[15,18],[29,-7],[40,-20],[28,-8],[23,-1],[21,-4],[17,11],[9,39],[12,17],[24,-2],[17,8],[9,32],[5,40],[10,35],[12,29],[20,10],[78,4],[100,18],[94,-3],[34,16],[14,-6],[15,-10],[18,-5],[10,16],[6,67],[38,90],[21,27],[32,16],[43,7],[32,23],[29,3],[36,-7],[35,-8],[29,6],[8,19],[39,5],[16,33],[16,88],[6,18],[22,0],[56,-13],[34,-9],[22,6],[25,18],[5,28],[-11,37],[5,16],[30,15],[34,10],[18,0],[29,-8],[37,-25],[27,-38],[11,-7],[22,17],[19,10],[12,-11],[0,-26],[21,-28],[32,-8],[32,-30],[31,-38],[27,-40],[40,-26],[31,9],[24,23],[30,12],[28,-2],[53,-46],[18,-28],[11,-43],[20,-40],[22,-24],[17,-26],[8,-28],[4,-32],[8,-9],[9,7],[3,40],[2,33],[5,24],[12,14],[12,-4],[13,-10],[6,-49],[-4,-39],[3,-49],[19,-29],[32,-4],[30,14],[15,-26],[16,-35],[19,-2],[4,20],[2,35],[-17,45],[-7,46],[1,42],[25,43],[39,32],[48,18],[79,3],[63,-3],[54,20],[55,6],[49,-11],[30,8],[25,39],[57,84],[1,62],[-4,59],[-14,38],[-1,30],[4,22],[-18,38],[-14,11],[-13,11],[-16,33],[1,40],[0,43],[20,-3],[18,16],[9,24],[7,17],[7,17],[18,10],[18,10],[38,14],[57,-17],[22,-23],[66,-6],[14,9],[5,17],[-35,158],[-3,80],[-1,42],[3,37],[13,15],[16,10],[17,21],[12,49],[-1,35],[-9,23],[-42,10],[-41,9],[-34,4],[-48,-13],[-52,-17],[-17,15],[-11,23],[-4,35],[7,38],[21,34],[29,8],[46,23],[8,30],[2,50],[-11,35],[-19,57],[-22,32],[-21,19],[-10,15],[-8,102],[3,8],[7,6],[11,-2],[26,10],[27,23],[2,22],[-7,22],[-24,20],[-23,26],[-11,42],[-14,99],[-19,175],[-4,157],[-15,38],[-40,65],[-22,71],[0,71],[3,132],[14,66],[13,32],[0,36],[-14,53],[-25,63],[-23,47],[-19,50],[-29,121],[-10,69],[-3,20],[-18,44],[-22,26],[-1,24],[11,17],[15,26],[-9,41],[-29,50],[-70,103],[-38,100],[-15,22],[-38,58],[-40,95],[-17,64],[-15,110],[-7,122],[-8,158],[-1,85],[5,118],[7,116],[-2,85],[-16,61],[-43,60],[-27,13],[-63,14],[-54,38],[-34,61],[2,44],[2,64],[-7,67],[-21,55],[-24,54],[-35,54],[-19,47],[-2,20],[-2,29],[17,133],[22,43],[3,33],[-14,42],[-3,41],[0,37],[17,31],[-5,35],[-20,43],[-22,9],[-19,23],[-19,-3],[-9,-22],[-32,3],[-38,24],[-50,61],[-56,48],[-67,40],[-78,62],[-37,49],[-6,29],[14,39],[19,34],[43,59],[40,59],[16,51],[-6,32],[-8,28],[-7,28],[-1,22],[4,24],[10,7],[11,0],[7,14],[4,45],[-3,39],[-4,23],[3,21],[7,36],[13,13],[14,33],[4,35],[-8,20],[-8,21],[-8,44],[-16,40],[-9,27],[-3,27],[9,8],[15,3],[4,25],[2,30],[1,26],[-11,29],[-24,27],[-13,22],[-4,25],[13,19],[22,10],[26,1],[17,10],[11,13],[0,18],[-7,14],[-6,14],[-15,29],[-7,34],[6,30],[5,64],[9,31],[13,15],[18,6],[4,24],[-6,21],[-14,15],[-27,2],[-13,11],[-20,31],[-14,28],[-9,46],[-8,39],[-13,14],[-13,17],[-2,15],[6,12],[-4,21],[-16,26],[-9,24],[8,22],[11,29],[18,24],[12,22],[-3,40],[-6,27],[-20,47],[-23,59],[-14,7],[-33,3],[-14,17],[2,24],[2,46],[0,51],[0,96],[-4,67],[-14,64],[-35,77],[-12,57],[-8,56],[1,37],[8,45],[4,32],[-6,26],[-37,73],[-29,43],[-38,37],[-31,48],[-13,43],[18,66],[24,101],[26,97],[6,63],[-21,41],[-41,33],[-25,35],[-17,70],[1,80],[15,70],[-18,57],[-8,19],[-6,43],[4,34],[18,35],[3,24],[3,38],[-5,34],[-13,29],[-3,17],[6,15],[20,25],[24,38],[1,52],[-8,23],[-18,18],[-38,17],[-18,14],[-35,55],[-31,48],[-16,25],[-14,16],[-16,9],[-10,6],[-4,24],[-9,12],[-15,10],[-15,4],[-10,9],[-18,6],[-19,6],[-6,17],[0,44],[-16,50],[0,37],[4,52],[1,68],[-11,44],[-17,22],[-22,11],[-17,22],[-14,47],[-1,31],[9,49],[21,70],[2,23],[2,24],[-13,24],[-18,11],[-12,19],[-6,36],[-9,28],[0,31],[-2,31],[-5,19],[4,25],[9,17],[-2,14],[-12,15],[-12,12],[-19,19],[-34,17],[-17,27],[-39,49],[-20,51],[-2,68],[22,56],[48,76],[31,62],[21,54],[30,83],[8,97],[1,100],[9,80],[7,73],[-1,46],[-18,65],[-32,43],[-147,67],[-66,48],[-46,73],[-54,70],[-21,76],[-10,104],[1,76],[-14,62],[-15,62],[-39,110],[-7,23],[-4,12],[10,40],[14,29],[24,66],[13,67],[4,81],[-6,59],[-17,80],[-10,65],[-6,89],[-12,68],[-17,72],[-20,47],[-34,86],[-33,20],[-33,28],[-9,38],[3,69],[-14,31],[-41,13],[-35,22],[-25,39],[-12,87],[-12,78],[-16,84],[-15,75],[-12,97],[-13,95],[-5,51],[-29,64],[-23,62],[-46,62],[-70,54],[-25,80],[-29,57],[-43,52],[-37,43],[-21,35],[-9,35],[28,86],[15,46],[-2,59],[-7,34],[-23,29],[-25,47],[-11,46],[-3,44],[-19,28],[-15,22],[-11,23],[-11,22],[-2,28],[5,18],[12,12],[16,0],[12,9],[-4,22],[-5,18],[-14,21],[-17,11],[-32,14],[-30,31],[-22,41],[-16,36],[-16,57],[-11,59],[1,61],[19,44],[10,44],[-21,61],[0,16],[0,15],[4,7],[4,7],[14,5],[23,8],[41,17],[27,17],[24,9],[26,-3],[25,-12],[28,2],[20,14],[20,45],[15,21],[19,5],[29,10],[34,-1],[21,15],[6,32],[2,28],[7,18],[22,16],[27,-4],[28,-3],[23,-15],[28,-17],[25,-16],[26,-8],[38,0],[28,1],[17,-13],[17,-13],[23,-12],[26,-1],[19,20],[10,27],[19,8],[19,-12],[23,-8],[16,11],[28,-10],[17,10],[22,21],[25,22],[28,27],[24,11],[21,-8],[9,-22],[21,-24],[28,-4],[30,17],[33,30],[34,17],[31,-4],[16,-2],[16,-3],[33,8],[20,8],[20,8],[47,40],[48,40],[43,26],[14,6],[68,27],[42,6],[58,3],[19,2],[10,1],[4,1],[14,11],[5,5],[5,6],[2,3],[18,29],[15,18],[14,18],[42,33],[120,130],[112,122],[3,2],[2,5],[35,51],[10,15],[45,37],[29,25],[4,4],[4,3],[45,17],[40,78],[39,78],[36,86],[71,13],[680,676],[95,-156],[164,-291],[129,-334],[178,-247],[222,-173],[307,-172],[278,4],[286,-3],[214,-31],[295,-85]],[[188564,398143],[49,-91],[49,-90],[271,-399],[297,-399],[250,-223],[114,-116],[171,-183],[148,-130],[99,-136],[97,-204],[158,-304],[81,-206],[66,-213],[80,-98],[130,7],[197,188],[196,188],[152,16],[140,-5],[130,28],[75,105],[77,49],[77,49],[110,-37],[4,12],[11,40],[67,0],[128,0],[43,2],[167,6],[205,-15],[175,-128],[141,-232],[396,69],[395,68],[318,-273],[876,-212],[187,503],[592,1587],[424,856],[487,531],[625,216],[665,129],[1062,-213],[1021,329],[581,-89],[1148,-415],[263,41],[740,517],[826,898],[495,275],[926,1004],[324,300],[1076,582],[1731,638],[409,294],[506,738],[229,156],[778,-283],[1335,757],[1514,375],[394,552],[333,968],[777,885],[954,550],[636,674],[1922,536],[777,988],[956,618],[108,137],[273,522],[143,170]],[[397434,254553],[9,-20],[15,-32]],[[397458,254501],[28,-48],[24,-33],[19,-26],[61,-74],[84,-67],[98,-40],[104,-22],[102,-4],[35,-2],[158,-3],[112,-9],[106,-38],[91,-53],[76,-67],[131,-143],[125,-158],[137,-172],[173,-217],[169,-216],[-75,-221],[-245,-714],[-12,-35]],[[398959,252139],[-266,-778]],[[398693,251361],[-3,-10],[-263,-798],[-13,-40],[-260,-790],[-1,-5],[-7,-22],[-134,-405],[-36,-111]],[[397976,249180],[-11,-34],[-12,-34]],[[397953,249112],[-12,-37],[-14,-44],[-12,-34],[-14,-43],[0,-2]],[[397901,248952],[-2,-6],[-11,-32]],[[397888,248914],[-126,-384],[-7,-20],[-40,-123]],[[397715,248387],[-8,-24],[-2,-5],[-101,-251],[-59,-115],[-14,-88],[-34,-97]],[[397497,247807],[-20,-62]],[[397477,247745],[-43,-135],[-30,-95],[-127,-877],[-65,-445],[0,-4],[-1,-4],[-67,-682],[0,-3],[-45,-441],[-8,-467],[0,-9],[0,-4],[0,-12],[-2,-1596],[0,-56],[0,-11],[0,-2],[0,-11],[-1,-427],[-59,-1389],[-8,-200],[-1,-1],[0,-11],[0,-11]],[[397020,240852],[-2,-27],[-7,-174],[0,-8],[-6,-133]],[[397005,240510],[-10,-305],[-7,-217],[-6,-178],[-12,-340],[0,-3]],[[396970,239467],[-68,-2034]],[[396902,237433],[0,-58],[-1,-19],[0,-2],[0,-1],[0,-19]],[[396901,237334],[-3,-195],[-25,-1877]],[[396873,235262],[-500,-161]],[[396373,235101],[-223,-72],[-410,-134]],[[395740,234895],[-24,-10],[-127,-53],[-253,-111],[-213,-92],[-216,-60],[-1265,-349],[-396,-117],[-973,-289],[-565,-167]],[[391708,233647],[-7,-2],[-417,-110]],[[391284,233535],[-523,-139],[-50,-13],[-498,-132],[-3,0],[-756,-224],[-952,-283],[-27,-8],[-14,-2],[-209,-39],[-110,-28],[-351,-89],[-158,-40],[-51,-16],[-220,-70],[-189,-59],[-251,-80],[-288,-90],[-241,-76],[-183,-58],[-48,4],[-57,30],[-72,10],[-60,-6],[-81,-27],[-19,-11],[-36,-19],[-70,-7],[-64,1],[-55,-11],[-73,-38],[-40,-37],[-36,-28],[-406,-136],[-12,-4],[-78,-26],[-310,-78],[-184,-47],[-274,-84],[-42,-13],[-335,-117],[-44,-16],[-51,-2],[-41,6],[-43,13],[-73,-1],[-86,-20],[-237,-56],[-296,-70],[-246,-58],[-80,-29],[-9,-6],[-49,-36],[-53,-62],[-10,-12],[-364,-476],[-338,-458],[-189,-253],[-221,-333],[-67,-91],[-67,-132],[-12,-25],[-72,-139],[-65,-103],[-151,-237],[-19,-23],[-35,-43],[-70,-84],[-10,-12],[-37,-47],[-89,-112],[-35,-56],[-92,-142],[-242,-415],[-130,-171],[-132,-108],[-42,-51],[-42,-51],[-408,-597]],[[379611,226937],[-828,874],[-453,477],[-8,8],[-2,3],[-762,801],[-1031,1096],[-325,342],[-54,58]],[[376148,230596],[-11,11],[-146,145],[-8,8],[-9,9],[-82,84],[-64,65],[-5,5],[-90,87],[-37,35],[-51,47],[-162,151],[-96,82],[-96,83],[-63,50],[-50,41],[-67,55],[-40,32],[-181,133],[-75,55],[0,97],[7,167],[16,149],[36,210],[96,523],[85,459],[0,3],[20,108],[37,200],[43,229],[6,33],[6,34],[11,60]],[[375178,234046],[19,105],[2,9]],[[375199,234160],[3,17],[33,180],[22,117],[47,255],[10,53]],[[375314,234782],[1,6]],[[375315,234788],[0,2],[27,169],[5,37],[3,23],[2,16],[3,20],[0,2]],[[375355,235057],[4,33]],[[375359,235090],[4,33],[0,2],[1,71],[0,2],[-2,45],[-2,46],[-15,77],[0,2],[-40,123],[-4,13],[-18,57],[-5,17],[-24,73],[-9,31],[-6,18],[-9,26],[-18,54],[-1,2],[-11,33],[-2,4],[-28,78],[-3,6],[-26,68],[-30,47],[-39,54],[-11,13],[-31,34],[-4,4],[-46,46],[-22,22],[-43,35],[-24,18],[-13,8],[-50,32],[-2,1],[-76,41],[-14,9],[-26,14],[-61,35],[-18,10],[-44,23],[-63,33],[-8,5],[-10,5],[-70,40],[-40,23],[-20,11],[-147,89],[-1,1],[-25,14],[-232,128],[-157,92],[-111,65],[-92,66],[-21,15],[-4,3],[-108,100],[-57,72],[-75,114],[-13,20],[-54,85],[-40,72],[-41,71],[-22,49],[-4,7],[-16,34],[-28,71],[-28,84],[-9,28],[-4,10],[-32,98]],[[373055,237922],[-22,65]],[[373033,237987],[-8,28],[-31,103]],[[372994,238118],[-2,8]],[[372992,238126],[-33,89],[-10,28],[-46,127],[-13,35],[-7,20],[-13,34],[-62,170],[-4,13],[-5,12],[-6,17],[-3,8],[-36,101],[-51,142],[-22,62],[-5,13],[-42,123],[-11,31],[-39,112],[-9,27],[-17,49],[-37,106],[-21,51],[-88,209],[-14,35],[-82,229],[-14,38],[-24,68],[-3,13],[-6,18],[-53,181],[-11,38],[-63,218],[-25,86],[-2,7],[-7,26],[-30,115],[-8,31],[-60,231],[-5,23],[-15,58],[-45,177],[-3,9],[-14,59],[-3,11],[-65,259],[-59,236],[-1,4],[-73,290],[-27,101],[-47,179],[-36,137],[-27,101],[-19,71],[-61,231],[-30,118],[-11,45],[-64,248],[-60,237],[-21,83]],[[371324,243716],[-2,6]],[[371322,243722],[0,1],[0,2],[-4,15],[-5,19],[-2,8],[-10,39],[-78,304],[-2,10],[-12,48],[-46,180],[-8,29],[-72,261],[-99,362],[-6,24],[-17,60],[-42,157],[-7,25],[-23,83],[-23,86],[-35,133],[-4,12],[-2,8],[-3,12],[-3,12],[-9,33],[-24,90],[-14,52],[-7,24],[-11,38],[-2,8],[-52,181],[-32,94],[-55,161],[-5,15],[-11,31],[-55,143],[-54,144],[-11,28],[-1,1]],[[370476,246655],[0,2]],[[370476,246657],[-64,156],[-173,422],[-26,62],[83,73],[142,126],[100,88],[32,29],[3,3],[5,4],[71,63],[34,31],[30,42],[1,2],[19,40],[20,56],[59,154],[15,40],[15,39],[7,20],[50,130],[22,52],[1,3],[46,64],[6,9],[3,4],[55,78],[156,185],[41,49]],[[371229,248681],[18,22],[19,21]],[[371266,248724],[1,3],[29,47],[44,93],[1,2],[76,200],[4,9],[6,15],[1,4]],[[371428,249097],[1,2]],[[371429,249099],[2,5],[8,23],[32,86],[60,160],[8,21]],[[371539,249394],[21,58],[68,180]],[[371628,249632],[138,362],[23,61],[3,7],[9,23],[6,17],[24,59],[29,70],[5,14],[1,1],[26,76],[44,124],[14,84],[8,84],[2,48],[4,64]],[[371964,250726],[0,5]],[[371964,250731],[-3,92],[-5,46],[-14,63],[-9,36],[-12,41],[-29,79],[109,38],[16,6],[82,28],[448,157],[-7,247],[-6,270],[106,35],[461,154],[76,35],[43,20],[3,1],[99,69],[-58,172],[-26,68],[161,111],[75,52],[28,19],[-2,102],[0,8],[-5,58],[-6,59],[-17,65],[-11,31],[-2,8],[-6,16],[-8,24],[-35,106],[-10,31],[-22,63],[-56,170],[-11,27],[-10,27],[-71,190],[-15,41],[-25,67],[-9,24],[-6,14],[-22,58],[4,5],[43,65],[22,42],[89,216],[2,4],[1,2],[36,80],[10,23],[4,9],[0,1]],[[373364,254206],[1,2]],[[373365,254208],[1,1],[4,9],[2,4],[24,50],[13,27],[17,24],[7,10],[1,1],[2,3],[2,3],[1,1]],[[373439,254341],[36,51]],[[373475,254392],[38,54],[29,43],[74,109],[29,40],[20,29],[109,155],[51,72],[2,3],[6,8],[3,3],[5,8],[4,6],[4,5],[4,6],[5,7],[4,6],[3,4],[7,10],[9,13],[2,3],[7,9],[1,2],[1,1],[2,4],[1,0],[0,1]],[[373895,254993],[5,6]],[[373900,254999],[7,10],[22,30],[25,34],[2,3],[20,27],[7,9],[25,35],[1,1],[2,3],[2,2],[3,4],[1,2],[21,21],[32,22],[8,3],[98,38],[110,40],[11,6],[2,1],[30,17],[2,2],[36,52],[28,46],[31,51],[21,35],[22,23],[17,14],[15,8],[6,3],[26,18],[37,23],[37,25],[28,31],[24,51],[16,47],[7,42],[7,41],[-1,66],[-1,55],[6,50],[10,54],[12,29],[12,29],[22,40],[29,32],[54,50],[53,38],[26,14],[9,5],[38,9],[43,6],[46,-4],[44,-19],[107,-48],[7,-3],[129,-57],[81,-37],[5,-2],[50,-16],[32,-7],[22,-6],[41,-2],[106,6],[72,8],[28,6],[21,5],[13,5],[48,20],[60,40],[19,13],[6,4],[32,39],[34,49],[75,143],[32,63],[93,176],[6,11],[7,12],[40,75],[22,35],[22,36],[17,26],[6,27],[1,10],[2,26],[-6,70],[0,6],[-11,70],[-22,146],[-8,65],[0,101],[11,145],[1,64],[4,65],[11,39],[11,28],[24,63],[30,63],[16,27],[14,23],[1,1],[4,7]],[[376407,257913],[1,2]],[[376408,257915],[11,17],[21,34],[15,23]],[[376455,257989],[2,4]],[[376457,257993],[1,2],[6,10],[56,94],[16,36],[28,65],[8,18]],[[376572,258218],[6,19]],[[376578,258237],[3,12],[4,12],[16,52],[3,10],[5,16],[26,47],[48,39],[23,22],[2,7],[9,20],[14,53],[12,61],[4,53],[7,42],[3,9],[24,60],[8,20],[3,8],[2,5],[18,40],[19,22],[9,9],[12,11],[3,3],[35,14],[37,7],[43,9],[37,6],[41,0],[16,-4],[17,-4],[60,-22],[88,-40],[80,-18],[50,-26],[3,-2],[20,-8],[36,-14],[26,-11],[4,-1],[4,-2],[12,-4],[3,-2],[2,0]],[[377469,258748],[1,-1]],[[377470,258747],[1,0]],[[377471,258747],[1,-1]],[[377472,258746],[4,-1],[32,-6],[16,-4],[63,-13],[7,-2],[51,-19],[30,-10],[39,-22],[22,-25],[23,-26],[31,-30],[32,-27],[6,-6],[43,-24],[32,-16],[46,-14],[19,-1],[22,-2],[5,0],[49,7],[30,4],[45,-6],[29,-7],[97,-45],[17,-2],[17,-2],[6,3],[29,13],[138,83],[19,12],[35,21],[32,20],[55,33],[26,14],[31,18],[14,7],[20,11],[14,8],[155,86],[3,1],[153,73],[14,5],[50,15],[39,13],[11,2],[82,18],[50,10],[42,10],[203,39],[17,3],[17,3],[27,16],[58,49],[65,52],[53,26],[100,55],[89,41],[32,20],[40,41],[35,39],[35,52],[29,45],[23,54],[6,27],[5,53],[2,17],[-4,98],[6,30],[16,40],[12,32],[59,108],[28,48],[37,49],[25,27],[42,32],[37,17],[40,4],[37,-14],[54,-26],[80,-35],[106,-47],[119,-60],[21,-10],[32,-1],[32,-12],[33,-6],[3,-1],[38,-1],[59,-1],[3,0],[81,14],[42,7],[37,15],[10,3],[9,4],[12,5],[10,4],[4,2],[4,2],[49,20],[4,2],[1,0],[40,16],[13,6],[19,7],[27,11],[157,64],[3,1],[67,30],[4,2],[9,6],[38,22],[48,22],[42,10],[26,3],[40,5],[19,2],[18,13],[41,44],[174,258],[33,47],[32,47],[31,39],[20,9],[23,2],[26,-7],[12,-5],[6,-25],[-4,-33],[-5,-49],[-8,-52],[-4,-51],[7,-64],[15,-86],[13,-51],[16,-47],[21,-45],[19,-23],[35,-46],[85,-82],[88,-78],[56,-40],[49,-36],[61,-22],[56,-8],[41,0],[56,16],[43,27],[33,33],[24,35],[16,36],[48,106],[27,73],[31,53],[24,26],[46,51],[50,41],[35,40],[36,41],[18,23],[23,51],[85,238],[23,58],[55,140],[17,42],[17,28],[18,29],[31,32],[24,16],[12,5],[13,5],[45,-2],[48,-10],[78,-28],[40,-18],[13,-13],[12,-12],[12,-34],[-2,-24],[-1,-23],[-15,-43],[-20,-35],[-20,-36],[-47,-59],[-20,-26],[-33,-36],[-8,-8],[-10,-47],[-15,-27],[-14,-28],[-13,-53],[1,-28],[2,-28],[6,-47],[14,-18],[15,-19],[61,-34],[80,-21],[16,-3],[22,2],[63,8],[80,38],[40,21],[39,15],[43,11],[78,-4],[69,0],[41,-3],[21,-1],[45,-10],[31,-17],[56,-48],[54,-80],[12,-25],[11,-26],[115,-349],[34,-91],[46,-104],[53,-79],[45,-62],[48,-45],[49,-34],[49,-19],[47,-18],[67,-1],[78,7],[63,7],[34,-2],[75,-21],[123,-23],[21,-12],[27,-14],[21,-25],[21,-24],[35,-41],[93,-135],[29,-38],[43,-44],[44,-44],[73,-24],[33,-2],[80,-4],[89,5],[62,18],[35,13],[26,3],[45,-2],[90,12],[55,12],[36,14],[55,86],[59,108],[41,119],[56,181],[28,91],[105,303],[43,127],[45,162],[25,106],[14,34],[49,118],[29,96],[14,72],[14,90],[11,98],[5,74],[4,51],[19,224],[13,179],[6,106],[15,134],[5,40],[8,54],[6,23],[19,68],[12,31],[13,32],[40,79],[50,76],[182,218],[65,77],[106,141],[40,54],[18,1],[21,11],[25,47]],[[387699,262431],[81,-123],[152,-159],[186,-213],[83,-113],[86,-121],[70,-116],[34,-38],[34,-38],[94,-97],[125,-175],[60,-94],[141,-168],[107,-128],[37,-45],[131,-184],[77,-107],[253,-324],[414,-556],[561,-735],[564,-752],[138,-191],[22,-30],[27,-23],[33,-29],[33,-28],[92,-90],[104,-91],[119,-86],[88,-54],[70,-43],[153,-79],[129,-73],[76,-42],[119,-39],[77,-6],[35,-2],[88,27],[92,63],[212,181],[99,120],[109,99],[152,90],[174,101],[67,51],[23,17],[66,67],[9,9],[4,4],[2,2],[3,6],[73,112],[70,147],[88,173],[30,48],[59,97],[44,59],[46,45],[51,39],[52,34],[16,5],[44,16],[63,0],[59,-25],[129,-49],[118,-40],[104,-71],[318,-266],[186,-158],[142,-107],[105,-53],[73,-19],[16,-1],[80,-7],[57,11],[84,25],[103,61],[320,192],[54,32],[85,50],[282,166],[150,80],[118,44],[129,15],[79,-2],[64,-7],[80,-44],[81,-52],[50,-53],[59,-72],[74,-124],[60,-109],[74,-150],[109,-259],[76,-193],[51,-160],[23,-110],[18,-116],[2,-64],[1,-64],[2,-56],[2,-56],[2,-728],[4,-230],[-6,-170],[-22,-154],[-3,-13],[-30,-139],[-74,-204],[-45,-113],[-50,-175],[-24,-91],[-18,-97],[-6,-54],[0,-91],[11,-94],[0,-7],[19,-72],[16,-50],[3,-5]],[[660314,481148],[187,84],[161,19],[159,-35],[162,-73],[151,-88],[152,-128],[191,-171],[176,-201],[215,-246],[310,-331],[190,-217],[218,-305],[318,-449],[154,-236],[118,-189],[94,-105],[119,-83],[123,-53],[107,-46],[128,-58],[98,-58],[69,-96],[59,-105],[64,-116],[31,-151],[92,-545],[331,-1713],[21,-105],[0,-271],[-41,-271],[-149,-276],[-106,-196],[-130,-209],[-67,-162],[12,-177],[65,-272],[62,-418],[0,-526],[-62,-573],[-56,-379],[-98,-348],[-159,-278],[-256,-171],[-287,-69],[-390,26],[-232,66],[-153,93],[-209,139],[-483,496],[-123,85],[-221,93],[-195,69],[-118,0],[-97,-92],[-139,-217],[-33,-37],[-33,-37],[-88,-34],[-138,-51],[-190,-69],[-66,-74],[-47,-62],[-35,-123],[-29,-186],[-56,-116],[-92,-132],[-39,-158],[-13,-263],[3,-345],[12,-289],[-22,-167],[-29,-143],[-77,-229],[-87,-251],[-125,-310],[-159,-430],[-93,-417],[-26,-258],[-20,-214],[1,-226],[23,-199],[35,-147],[100,-182],[149,-240],[172,-178],[161,-89],[93,-62],[53,-77],[29,-155],[30,-186],[-12,-398],[-11,-340],[8,-229],[38,-104],[139,-194],[159,-143],[72,-44],[64,-87],[21,-56],[15,-81],[-14,-118],[-18,-83],[-203,-563],[-114,-314],[-42,-218],[11,-254],[19,-198],[45,-180],[133,-529],[63,-248],[23,-181],[-15,-265],[-1,-209],[26,-171],[38,-166],[59,-85],[84,-77],[60,-55],[241,-158],[166,-108],[90,-78],[82,-124],[12,-21],[60,-110],[79,-166],[117,-217],[128,-70],[159,-116],[130,-131],[145,-202],[74,-100],[27,-85],[4,-85],[5,-83],[-18,-84],[-2,-108],[24,-100],[65,-93],[95,-86],[10,-100],[-15,-186],[-8,-125],[0,-126],[36,-132],[46,-116],[70,-65],[120,-66],[90,-78],[90,-131],[89,-182],[54,-147],[75,-170],[46,-170],[2,-120],[-43,-105],[-82,-156],[-21,-165],[8,-170],[38,-151],[61,-180],[124,-335],[190,-533],[131,-294],[46,-109],[25,-108],[0,-209],[-15,-263],[-8,-143],[-20,-194],[-44,-189],[-61,-255],[-77,-248],[-149,-360],[-206,-397],[-179,-242],[-83,-113],[-494,-552],[79,-343],[5,-328],[-183,-569],[-36,-557],[170,-296],[58,-54],[174,-160],[185,-342],[51,-182],[-21,-248],[5,-344],[47,-383],[164,-433],[299,-326],[419,-46],[554,-108],[349,-16],[169,101],[87,-116],[164,-232],[287,-310],[216,-278],[228,-527],[232,-374],[157,-386],[212,-278],[217,-89],[298,-9],[119,-45],[100,-38],[82,-310],[113,-110],[47,-47],[292,-108],[371,46],[205,74],[241,88],[86,32],[61,41],[273,183],[312,255],[257,318],[195,224],[179,8],[134,-93],[56,-215],[15,-219],[-10,-286],[-16,-989],[56,-209],[135,-210],[189,-294],[45,-68],[196,-301],[276,-343],[175,-163],[142,-108],[175,-6],[207,102],[204,214],[210,170],[128,78],[164,15],[216,15],[184,-108],[185,-178],[164,-278],[210,-403],[195,-143],[237,-78],[338,-111],[190,-171],[93,-198],[30,-289],[-36,-477],[10,-273],[50,-167],[124,-94],[123,-95],[174,-94],[98,-53],[185,-124],[210,-248],[64,-250],[-7,-223],[-126,-228],[-110,-134],[-76,-4],[-104,-4],[-141,39],[-112,30],[-96,-94],[-66,-103],[-101,-184],[-192,57],[-143,-16],[-77,-62],[-111,-220],[-146,-151],[-159,-54],[-184,-62],[-252,-165],[-230,18],[-154,85],[-123,-54],[-67,-155],[-72,-302],[-164,-170],[-160,-55],[-260,40],[-117,51],[-102,106],[-125,183],[-190,62],[-215,-16],[-144,-46],[-61,-116],[-47,-178],[31,-309],[31,-202],[128,-270],[113,-140],[118,-139],[154,-209],[97,-170],[46,-472],[11,-224],[-5,-209],[-73,-200],[-56,-152],[-16,-162],[27,-90],[102,-131],[149,-101],[77,-155],[46,-147],[5,-270],[-20,-171],[-170,-363],[-162,-225],[-180,-90],[-253,-126],[-139,-49],[-112,-52],[-67,-124],[-133,-240],[-82,-85],[-106,-157],[-24,-73],[-48,-144],[-63,-144],[-31,-116],[-25,-108],[15,-163],[67,-170],[102,-186],[77,-147],[195,-309],[133,-240],[47,-155],[-36,-147],[-88,-93],[-148,-154],[-185,-140],[-220,-46],[-267,23],[-136,-15],[-100,-12],[-1,0],[-150,-51],[-188,-77],[-297,-139],[-272,-217],[-112,-161],[-92,-125],[-56,-195],[-35,-423],[-18,-225],[-36,-387],[-107,-279],[-134,-201],[-123,-201],[-128,-317],[-113,-255],[-113,-155],[-190,-84],[-292,30],[-313,139],[-75,5],[-273,18],[-288,-31],[-272,-108],[-266,-271],[-164,-340],[-156,-466],[-101,-207],[-124,-127],[-86,-75],[-136,-75],[-177,-33],[-282,-70],[-205,-61],[-190,-62],[-159,-62],[-138,-70],[-236,-46],[-216,-116],[-277,-240],[-256,-256],[-231,-224],[-297,-278],[-395,-387],[-257,-418],[-159,-194],[-169,-332],[-113,-263],[-147,-412],[-186,-268],[-109,-94],[-122,-103],[-122,-139],[-143,-215],[-136,-242],[-110,-260],[-143,-309],[-121,-258],[-68,-229],[-33,-270],[-3,-130],[36,-166],[51,-186],[95,-178],[163,-211],[88,-70],[85,-74],[107,-42],[157,1],[272,70],[318,201],[139,-4],[122,-9],[89,-18],[95,-89],[205,-197],[218,-152],[101,-112],[34,-170],[-29,-207],[-67,-211],[-56,-161],[-79,-186],[-67,-236]],[[662022,413164],[-41,-17],[-43,-17],[-42,-17],[-188,-76],[-236,-96],[-78,-31],[-15,-12],[-270,-213],[-124,-98],[-301,-228],[-25,-19],[-371,-285],[-119,-91],[-41,-4],[-121,-12],[-57,-5],[-72,-7],[-34,-3],[-25,3],[-40,5],[-85,11],[-91,12],[-128,3],[-49,1],[-27,0],[-76,2],[-74,2],[-38,5],[-101,14],[-8,4],[-97,43],[-60,27],[-25,11],[-21,17],[-69,53],[-35,27],[-75,58],[-153,135],[-47,6],[-123,14],[-190,37],[-25,5],[-11,5],[-40,16],[-44,19],[-27,11],[-17,7],[-6,6],[-10,8],[-13,12],[-14,12],[-14,12],[-71,62],[-44,38],[-19,17],[-3,3],[-120,49],[-60,25],[-23,4],[-115,20],[-39,7],[-21,-4],[-118,-18],[-28,-5],[-2,0],[-84,-52],[-15,-9],[-22,-14],[-38,-24],[-3,-2],[-12,-7],[-8,-5],[-2,-2],[-2,-1],[-1,0],[-717,-752],[-281,-242],[-869,-277],[-249,-108],[-333,-247],[-429,-245],[-755,-214],[-426,-230],[-316,-16],[-178,29],[-509,160],[-171,-42],[-480,-307],[-374,-125],[-283,140],[-317,89],[-121,-19],[-176,-112],[-607,-44],[-332,-182],[-256,-236],[-169,-219],[-171,-353],[-125,-116],[-531,-288],[-311,-328],[-515,-386],[-36,-27],[-72,-36],[-71,-35],[-141,2],[-105,123],[-663,1032],[-277,360],[-161,310],[-81,65],[-45,1],[-277,11],[-503,-235],[-630,-385],[-260,-109],[-3461,3476],[-1351,1359],[-3163,3179],[-3945,3967],[-812,816],[-1323,1331],[-6029,6066],[-130,129],[-3944,3900],[-24,24],[-54,54],[-5508,5450],[-13,17],[-2,334],[-59,281],[-55,261],[24,242],[163,12],[239,-35],[227,430],[127,481],[5,483],[-132,706],[-7,263],[42,308],[231,796],[0,441],[-148,490],[-854,1096],[-586,1172],[-121,349],[-104,143],[-248,-43],[-41,29],[-237,164],[-874,789],[-134,314],[-23,548],[58,436],[1,451],[-102,399],[-72,727],[-5,54],[-3689,4748],[-3133,3926],[-3213,4027]],[[601334,463615],[3247,2494],[842,647],[92,70],[1025,787],[670,515],[10,8],[3,2],[3,2],[3,3],[84,64],[2,2],[3,2],[1,1],[3,2],[31,24],[6,5],[83,63],[30,24],[11,7],[7,6],[8,6],[0,1],[5,3],[33,25],[188,142],[84,63],[1402,1060],[2707,2046],[3505,2649],[822,621],[312,181],[353,379],[-41,238],[-530,426],[-376,460],[-239,897],[-191,1275],[-402,1010],[6,434],[-147,528],[-71,395],[104,439],[181,241],[216,288],[430,138],[368,-81],[382,-284],[516,-237],[912,-24],[1080,-939],[671,-250],[346,-39],[200,45],[260,-229],[324,-192],[356,191],[330,-159],[298,-372],[22,-722],[317,-11],[297,-190],[353,-162],[260,-239],[397,-156],[381,360],[319,133],[262,595],[127,481],[141,173],[240,-13],[417,290],[297,820],[290,208],[275,-104],[679,-24],[225,-178],[35,-232],[-140,-517],[50,-408],[76,-105],[460,688],[230,269],[178,20],[157,-33],[173,-112],[443,-147],[1060,-80],[276,-75],[312,-272],[274,-671],[239,-227],[736,-111],[290,130],[220,323],[232,-43],[374,-425],[538,33],[310,-71],[291,110],[274,46],[545,-735],[21,-780],[42,-546],[-28,-614],[22,-441],[212,-217],[354,-4],[310,-189],[678,-58],[452,649],[467,499],[536,317],[497,145],[367,561],[98,683],[275,1122],[277,846],[274,145],[191,-20],[183,56],[241,206],[304,173],[361,270],[713,154],[297,-743],[290,67],[607,604],[311,235],[304,52],[529,227],[610,516],[302,110],[617,359],[549,652],[419,390],[219,300],[290,315]],[[647015,484375],[7,-823],[69,-492],[446,-1049],[100,-772],[177,-76],[289,17],[-66,-294],[-253,-242],[-65,-410],[-60,-1178],[41,-788],[-36,-786],[353,-163],[312,-19],[424,168],[340,289],[259,-396],[382,-325],[411,259],[317,249],[261,601],[298,332],[318,-164],[226,89],[298,465],[585,469],[156,522],[22,692],[-85,496],[211,353],[403,132],[283,328],[304,56],[233,-236],[162,151],[374,1105],[404,214],[205,-176],[345,-376],[254,-394],[319,-584],[156,-844],[42,-494],[175,-262],[326,56],[389,-184],[397,-341],[408,-527],[439,-424],[269,-809],[283,-133],[397,66],[261,277],[190,366],[189,648],[87,705],[206,934],[61,490],[1,5]],[[736884,295588],[-311,-20],[-37,-644],[-66,-149],[-152,-435],[-69,-345],[-75,-709],[-49,-462],[-7,-64],[-84,-824],[-7,-100],[-30,-420],[-28,-291],[-106,-1678],[-1,-18],[-102,-2006],[-83,-1971],[-52,-1253],[-46,-1156],[-11,-262],[12,-1840],[8,-1323],[48,-1584],[39,-900],[42,-900],[39,-839],[22,-465],[70,-1505],[1,-22],[138,-1678],[73,-882],[119,-1445],[58,-709],[64,-766],[119,-1426],[36,-437],[1,-12],[45,-511],[44,-503],[414,-4584],[137,-1202],[195,-1713],[426,-2184],[193,-817],[317,-1340],[260,-1101],[224,-754],[399,-1280],[209,-669],[99,-282],[115,-329],[499,-1367],[220,-460],[124,-209],[280,-476],[273,-331],[286,-283],[88,-73],[99,-94],[329,-256]],[[742797,209692],[-44,-15],[-83,-27],[-150,-191],[-351,-668],[-208,-348],[-17,-30],[-341,-609],[-107,-203],[-273,-526],[-293,-663],[-212,-505],[-271,-704],[-295,-837],[-301,-893],[-384,-1353],[-132,-487],[-198,-731],[-315,-1364],[-115,-538],[-172,-1229],[-103,-787],[30,-976],[1,-18],[46,-404],[-2,-196],[83,-554],[113,-517],[3,-15],[44,-127],[161,-458],[398,-774],[83,-107],[260,-188],[226,259],[241,-129],[86,352],[184,-18],[111,371],[172,18],[-62,-519],[-221,-723],[-283,-149],[-311,178],[-291,80],[-156,-52],[-34,-200],[-46,-395],[67,-325],[120,-386],[252,-163],[479,283],[-72,-587],[4,-450],[-445,137],[-54,146],[-149,-101],[-207,-19],[-106,196],[-83,-124],[-8,-377],[-1,-42],[-218,-397],[-193,-365],[31,-279],[-404,-44],[-132,-137],[-206,-286],[-142,-337],[-246,-959],[-277,-373],[-154,-4],[-277,154],[-148,-65],[-8,-8],[-125,-135],[-411,-341],[-296,-81],[-299,-156],[-98,-123],[-253,-210],[-497,-984],[-20,-248],[20,-424],[-148,-266],[-260,-63],[-142,103],[-205,213],[-84,158],[-29,184],[-120,403],[-15,197],[38,424],[-12,18],[-81,125],[-135,-2],[-276,-88],[-140,-105],[-135,-42],[-141,45],[-129,331],[-183,232],[-46,13],[-223,66],[-140,-23],[-142,-77],[-110,-121],[-127,-142],[-81,-90],[-220,-318],[-260,-261],[-355,-262],[-225,-165],[-120,-120],[-374,-375],[-93,-93],[-79,-109],[-337,-470],[-260,-362],[-149,-209],[-115,-159],[-114,-185],[-84,-134],[-162,-325],[-85,-171],[-120,-365],[-53,-125],[-115,-270],[-185,-317],[-148,-331],[-296,-408],[-109,-349],[-168,-536],[-119,-302],[-21,-55],[-154,-553],[-72,-260],[-192,-500],[-84,-422],[13,-640],[-136,-575],[-188,-551],[-120,-1225],[-86,-456],[-206,-1085],[-119,-1010],[-167,-830],[-31,-155],[1,-194],[112,-626],[14,-174],[14,-174],[-34,-401],[35,-384],[-92,-366],[0,-181],[49,-192],[22,-452],[84,-568]],[[703619,177072],[1145,-470],[397,-104],[401,-53],[342,153],[316,411],[7,11],[975,1717],[8,14],[124,306],[124,305],[45,165],[253,936],[24,88],[30,111],[131,740],[32,179],[64,1178],[63,1178],[190,1055],[86,730],[-14,713],[-85,738],[-97,495],[-53,269],[-408,1328],[-227,551],[-197,1131],[39,350],[39,350],[217,537],[197,234],[496,589],[558,490],[324,411],[455,440],[381,281],[331,88],[652,-221],[624,-318],[252,-128],[522,-457],[404,-184],[317,29],[460,215],[290,182],[175,140],[175,140],[101,81],[39,44],[330,372],[465,389],[509,81],[580,-215],[382,-395],[204,-475],[282,-277],[262,-185],[241,-267],[226,-136],[593,-356],[144,-55],[825,-309],[74,9],[343,42],[404,264],[280,443],[263,487],[277,372],[480,295],[326,-343],[5,-5],[7,-10],[204,-263],[171,-222],[1,-2],[63,-81],[4,-5],[21,-28],[2,-2],[352,-350],[11,-14],[366,-466],[239,-131],[306,347],[287,234],[313,42],[380,87],[357,1613],[64,290],[264,-272],[5,0],[200,1796],[4,31],[5,48],[2,16],[49,455],[3,26],[14,126],[6,54],[1,5],[0,7],[3,20],[7,64],[1,9],[53,478],[35,314],[0,1],[0,7],[1,1],[1,10],[4,37],[1,11],[1,7],[31,278],[12,109],[23,204],[8,73],[11,103],[0,2],[1,3],[1,15],[45,415],[24,143],[24,143],[52,326],[9,48],[107,555],[3,13],[0,4],[26,190],[67,492],[27,155],[26,153],[0,1],[76,464],[13,80],[4,23],[7,44],[107,654],[2,10],[62,380],[1,5],[3,19],[35,215],[149,916],[4,19],[0,4],[1,3],[4,26],[3,16],[228,1391],[13,78],[64,398],[562,3467],[9,4],[1184,7210],[2,17],[148,901],[127,235],[132,637],[34,209],[19,990],[-342,292],[-78,112],[-12,26],[-2,3],[-532,1087],[-42,86],[-47,97],[-43,88],[-43,87],[-46,95],[-45,91],[-42,87],[-47,95],[-46,94],[-44,91],[-15,30],[-23,47],[-3,6],[-46,94],[-43,88],[-47,97],[-45,90],[-41,85],[-43,88],[-22,45],[-10,20],[-10,21],[-22,44],[-21,44],[-22,44],[-23,47],[-19,40],[-23,47],[-22,45],[-23,46],[-10,20],[-12,25],[-5,10],[-169,346],[-33,67],[-8,18],[-23,46],[-219,448],[-209,426],[-62,128],[-8,16],[-127,260],[-135,275],[-394,806],[-385,787],[-372,760],[-330,676],[-697,1424],[-16,33],[-252,515],[-405,828],[-318,649],[-329,673],[-305,624],[-344,702],[-317,649],[-321,657],[-367,749],[-29,60],[-280,572],[-295,603],[-247,505],[-46,94],[-39,79],[-54,111],[-11,24],[-100,203],[-39,80],[-5,9],[-1,3],[-1,3],[-8,15],[-13,27],[-100,205],[-87,177],[-54,110],[-10,22],[-11,22],[-13,25],[-36,76],[-191,390],[-14,28],[-213,436],[-14,29],[-85,173],[-3,5],[-10,22],[-14,29],[-22,45],[-711,1452],[-399,815],[-8,17],[-633,1294],[-240,491],[-466,953],[-772,1578],[-978,1999],[-142,290],[-2520,4831],[-535,1023],[-365,701],[-5022,9625],[-9,15],[-1274,2444],[-1977,3788],[-6,11],[-86,192],[-1234,2760]],[[688620,313247],[75,-19],[71,47],[80,85],[55,87],[40,50],[66,94],[40,49],[40,22],[63,38],[63,3],[117,7],[-106,508],[107,435],[212,147],[78,465],[182,369],[254,287],[440,-311],[162,-184],[458,-339],[193,-239],[267,47],[112,433],[144,49],[260,-207],[367,-186],[319,100],[133,326],[-97,402],[142,210],[238,-220],[171,-250],[226,253],[261,380],[373,-113],[383,-344],[148,-212],[327,-323],[155,150],[62,416],[360,-219],[297,-112],[383,-351],[140,-240],[-7,-274],[-147,-371],[70,-354],[-56,-146],[-212,185],[-277,-20],[7,-638],[326,-930],[-8,-292],[72,-245],[184,-17],[380,171],[249,201],[155,543],[219,601],[212,307],[205,70],[211,-126],[164,123],[0,516],[41,444],[93,242],[217,103],[248,-331],[178,-7],[27,-1],[72,68],[68,109],[6,61],[7,61],[-9,129],[-36,129],[-99,252],[-108,176],[-108,156],[-108,177],[-75,104],[-8,124],[-8,125],[-17,272],[-57,129],[-56,95],[-81,99],[-90,58],[-347,183],[-65,3],[-149,-152],[-67,-31],[-72,24],[-57,71],[-42,112],[-39,143],[2,132],[4,33],[12,103],[45,167],[41,98],[78,68],[85,33],[143,55],[98,8],[35,3],[115,-38],[108,-51],[426,-296],[238,-118],[284,-136],[117,-40],[86,30],[47,58],[52,64],[38,65],[25,149],[13,153],[-4,94],[29,89],[43,45],[31,30],[66,7],[78,-55],[106,-78],[212,-186],[279,-235],[194,-108],[133,-68],[110,-38],[106,-54],[43,-71],[29,-102],[11,-170],[32,-190],[49,-225],[77,-278],[99,-177],[126,-136],[99,-74],[26,-34],[26,-34],[52,-68],[31,-109],[-20,-217],[-20,-218],[-14,-598],[5,-244],[27,-265],[84,-379],[105,-280],[2,-92],[-38,-78],[-72,-112],[-338,-153],[-117,-68],[-183,-136],[-72,-78],[-20,-82],[2,-95],[43,-74],[133,-119],[423,-394],[165,-133],[216,-109],[491,-296],[576,-36],[126,0],[311,608],[104,227],[99,255],[144,323],[81,61],[99,-68],[108,-170],[81,-183],[77,-238],[106,-401],[65,-408],[3,-170],[-8,-190],[-36,-200],[-105,-530],[-108,-408],[-86,-190],[-144,-211],[-158,-135],[-157,-136],[-147,-62],[-61,-26],[-99,-41],[-45,-123],[15,-155],[1,0],[97,-103],[208,-30],[116,-17],[212,-41],[153,-68],[116,-100],[10,-9],[140,-238],[144,-118],[13,-11],[347,-136],[93,-34],[108,-40],[204,45],[41,9],[174,97],[81,60],[164,122],[139,34],[176,-41],[187,-155],[250,-171],[185,-129],[198,-55],[142,46],[191,90],[205,224],[94,133],[93,132],[144,320],[122,339],[140,1026],[69,211],[70,61],[88,47],[119,-20],[174,-170],[234,-367],[159,-339],[170,-458],[172,-271],[135,-62],[70,17],[70,17],[113,131],[153,259],[180,471],[72,195],[108,111],[181,92],[192,11],[458,-86],[304,-119],[61,-24],[230,-211],[135,-224],[108,-347],[34,-318],[-27,-312],[-155,-520],[-80,-158],[-182,-366],[-221,-387],[-97,-304],[-17,-208],[60,-185],[173,-187],[299,-211],[211,-98],[167,-61],[267,-24],[161,23],[252,36],[318,250],[235,484],[95,289],[53,160],[87,142],[43,2],[107,5],[229,-150],[127,-212],[122,-313],[67,-448],[5,-492],[37,-260],[173,-248],[167,-96],[320,24],[31,2],[211,132],[264,307],[463,776],[385,856],[226,694],[100,73],[137,-24],[247,-235],[320,-268],[226,-41],[412,122],[163,58],[136,47],[247,-40],[196,-183],[178,-669],[89,-654],[102,-288],[242,-40],[54,59],[156,168],[215,398],[23,387],[9,148],[-80,374],[-33,251],[6,325],[48,836],[-8,199],[-8,199],[-125,352],[-318,494],[-109,204],[-31,223],[32,250],[84,149],[45,81],[209,53],[26,-10],[193,-75],[327,-362],[471,-448],[290,-227],[153,-76],[346,-39],[305,53],[388,243],[341,336],[181,103],[153,-41],[162,-150],[161,-267],[272,-453],[531,-745],[163,-357],[103,-327],[80,-255],[130,-192],[192,-178],[231,7],[288,138],[133,172],[76,98],[131,276],[78,303],[79,736],[2,22],[137,1149],[114,448],[270,144],[275,10],[109,4],[296,-198],[227,-500],[270,-1171],[43,-280],[106,-706],[17,-632],[35,-553],[246,-238],[214,-100],[167,18],[44,5],[1003,736],[422,287],[128,-13],[207,-23],[77,-384],[34,-169],[-321,-2474],[137,-207],[137,-206],[303,-265],[285,-139],[253,172],[55,38],[260,314],[92,136],[9,13],[250,368],[169,404],[78,575],[64,378],[38,225],[177,187],[255,-47],[277,-228],[210,-351],[87,-144],[61,-180],[60,-181],[149,-1425],[41,-159],[224,-882],[203,-547],[132,-355],[95,-266],[49,-138],[272,-302],[182,-52],[183,101],[44,130],[44,130],[39,410],[46,478],[169,360],[164,241],[291,387],[15,15],[188,186],[85,329],[18,370],[95,456],[245,304],[240,85],[279,-48],[355,-723],[373,-343],[37,-34],[269,-485],[102,-291],[-9,-396],[-161,-551],[-77,-262],[-302,-918],[-244,-945],[-96,-372],[-124,-331],[-132,-352],[-12,-31],[-32,-92],[-54,-153],[-108,-387],[-31,-326],[67,-517],[86,-265],[1,-1],[59,-125],[7,-16],[153,-143],[15,-14],[152,-93],[72,-31],[72,-32],[135,37],[158,83],[158,84],[117,-48],[58,-108],[23,-123],[18,-258],[-39,-208],[-141,-199],[-149,-177],[-139,-75]],[[594543,350641],[-40,-81],[-39,-81],[-55,-208],[-7,-173],[121,-674],[34,-436],[44,-175],[-37,-182],[-140,-217],[-248,-207],[-190,-290],[-10,-278],[52,-247],[139,-257],[221,-319],[113,-362],[-35,-182],[-128,-56],[-268,29],[-729,-19],[-328,-132],[-207,-147],[-137,-45],[-358,24],[-178,78],[-148,114],[-133,6],[-419,-150],[-141,-142],[-147,-313],[-30,-201],[14,-207],[191,-858],[5,-334],[-38,-503],[-51,-238],[-134,-363],[-573,-1127],[-50,-172],[-21,-385],[150,-600],[206,-608],[90,-406],[-14,-227],[-86,-160],[-507,-333],[-249,-75],[-394,-185],[-311,-196],[-92,-129],[-149,-399],[-184,-259],[-281,-535],[-311,-770],[-404,-607],[-127,-260],[-90,-332],[-44,-282],[71,-446],[61,-170],[476,-931],[-8,-175],[-389,-1080],[-90,-155],[-284,-492],[-552,-1227],[-309,-501],[5,-495],[-176,-631],[-319,-559],[-168,-428],[-80,-843],[-336,-1354],[-15,-631],[-71,-475],[-395,-343],[-496,-229],[-396,30],[-63,-335],[409,-405],[110,-618],[-206,-812],[-180,-711],[-641,-922],[-390,-714],[-304,-428],[-1250,-983],[2573,-8017],[2889,-8996],[2,-6],[6,-17],[2,-6],[1,-3],[23,-73],[111,-344],[4138,-12874]],[[591420,287369],[-211,-496],[-382,-462],[-340,-118],[-283,-317],[-550,-906],[-178,189],[-488,522],[-28,29],[-323,274],[-417,-61],[-418,-62],[-354,-150],[-564,-176],[-565,-176],[-319,-341],[-381,-604],[-453,-291],[-362,-55],[-309,-525],[-246,-146],[-292,-608],[-239,-654],[-362,-514],[-311,-162],[-387,-277],[-311,-289],[-348,-485],[-330,-591],[-163,-496],[-336,-453],[-358,-239],[-340,-463],[-360,-312],[-451,-232],[-346,-242],[-184,-536],[-77,-537],[-206,-733],[-348,-279],[-783,-308],[-297,-562],[-345,-539],[-390,-406],[-592,-408],[-360,-7],[-355,348],[-225,277],[-770,951],[-441,952],[-374,484],[-401,385],[-305,395],[-274,486],[245,530],[-62,410],[-340,183],[-402,88],[-488,-247],[-508,-323],[-706,691],[-454,-13],[-331,75],[-326,454],[-275,258],[-298,686],[-181,241],[-74,98],[-192,-28],[-217,-32],[-832,384],[-565,77],[-427,-58],[-594,-166],[-415,111],[-312,-155],[-401,-145],[-335,-644],[-343,-477],[-455,-222],[-528,-103],[-461,-11],[-1017,228],[-496,-17],[-458,-158],[-324,-427],[-376,59],[-346,-108],[-494,-79],[7,-450],[-115,-627],[152,-357],[437,446],[402,8],[79,-317],[-200,-342],[-204,-260],[-213,-508],[-112,-662],[27,-591],[87,-402],[27,-353],[-593,-910],[-255,7],[-375,-285],[-344,70],[-242,-483],[-247,-382],[-233,-776],[226,-496],[27,-209],[-309,-115],[-403,-35],[-388,-250],[-249,-528],[-310,-279],[-200,-418],[-670,-1055],[-324,-197],[-736,190],[-339,-190],[-211,-271],[-207,-488],[-339,-380],[-509,-501],[-783,-623],[-383,-70],[-1229,131],[-735,-443],[-438,-162],[-326,-444],[-203,-367],[-381,-437],[-340,-630],[-346,-254],[-389,-52],[-363,-147],[-154,-151],[-154,-151]],[[545720,262407],[-2103,3668],[-445,776],[-1853,3232],[-39,67],[-161,281],[-76,133],[-10,18],[-44,76],[-208,363],[-51,84],[-3032,5056],[-2263,3773],[-27,42],[-28,41],[-78,119],[-359,542],[-438,622],[-343,495],[-66,38],[-60,-1],[-39,-9],[-329,-300],[-178,-171],[-524,-481],[-416,-366],[-212,-172],[-78,-54],[-86,-46],[-68,-25],[-65,7],[-62,23],[-92,59],[-49,45],[-49,45],[-872,916],[-136,146],[-61,-25],[-60,-25],[-54,-9],[-229,-20],[-126,-31],[-159,-39],[-221,-63],[-222,-64],[-192,-58],[-193,-58],[-105,-21],[-393,-81],[-60,-13],[-665,-143],[-478,-133],[-458,-113],[-429,-117],[-250,-39],[-794,-197],[-114,-36],[-115,-36],[-159,-35],[-129,0],[-157,44],[-599,172],[-158,25],[-668,141],[-473,108],[-305,64],[-184,10],[-227,56],[-287,72],[-616,128],[-524,115],[-756,150],[-132,30],[-150,-71],[-123,-111],[-55,-50],[-216,-169],[-313,-260],[-429,-302],[-583,-405],[-687,-440],[-791,-357],[-541,-199],[-449,-200],[-491,-180],[-347,-35],[-400,65],[-302,11],[-6,0],[-51,-4],[-366,-29],[-26,-2],[-322,-112],[-679,-224],[-1103,-364],[-310,-103],[-194,-99],[-37,-19],[-411,-330],[-534,-429],[-1056,-803],[-1215,-604],[-225,-112],[-933,-475],[-697,-347],[-875,-436],[-272,-118],[-122,-12],[-122,-13],[-262,-2],[-145,-1]],[[504189,273867],[194,90],[1,0],[3,3],[4,4],[88,80],[109,99],[203,387],[30,117],[110,426],[1200,4654],[121,388],[21,210],[-476,2446],[-444,2236],[-75,305],[-64,106],[-1145,1284],[-567,597],[-97,113],[-46,198],[15,291],[74,546],[491,3655],[138,886],[110,704],[84,879],[47,115],[462,386],[1183,775],[2791,2019],[227,95],[64,49],[150,72],[160,226],[455,1703],[337,1155],[96,355],[45,314],[116,178],[219,267],[1144,1185],[576,643],[1180,1013],[249,254],[163,145],[449,236],[178,337],[135,906],[-86,621],[-264,614],[-512,1193],[-247,574],[-137,423],[-218,447],[-420,369],[-421,369],[-184,387],[-71,629],[-373,567],[-127,117],[-559,516],[-559,516],[-282,261],[-466,280],[-297,298],[-148,734],[-71,669],[15,296],[10,208],[-140,709],[-132,397],[-233,334],[-524,361],[-99,363],[92,823],[-133,458],[-8,232],[-128,257],[-132,811],[-38,471],[22,648],[91,469],[57,556],[-64,312],[-478,511],[-249,60],[-206,376],[-389,593],[-70,349],[49,316],[143,114],[354,149],[261,171],[344,384],[127,211],[191,54],[135,209],[149,114],[141,223],[99,82],[120,266],[162,71],[157,129],[-36,205],[-120,69],[35,179],[-78,720],[78,288],[35,370],[-34,397],[-157,397],[-323,377],[-256,573],[-20,44],[-44,97],[-162,85],[-134,-178],[-156,-91],[-239,61],[-106,177],[41,302],[-125,206],[-257,73],[-246,-35],[-219,142],[-242,74],[-233,3],[-466,233],[-269,344],[-896,956],[-169,287],[-172,749],[-217,760],[-138,70],[-139,70],[-70,146],[-7,174],[-57,185],[-260,515],[-50,415],[-227,501],[-118,117],[-171,605],[-206,277],[-63,479],[-99,262],[-177,322],[-388,429],[-502,909],[-352,430],[-171,409],[-20,601],[-93,353],[-171,1200],[65,510],[-21,432],[78,490],[156,522],[84,884],[127,694],[248,730],[288,546],[242,247],[989,419],[205,149],[206,149]],[[502952,350775],[428,-264],[205,-112],[90,-28],[91,-29],[338,295],[233,68],[203,23],[195,-113],[541,-477],[346,-453],[361,57],[215,-40],[216,-40],[351,-227],[390,80],[369,272],[105,57],[391,-159],[34,179],[132,21],[99,239],[0,745],[122,137],[210,89],[546,131],[311,121],[225,139],[162,175],[156,289],[262,662],[269,377],[561,511],[217,150],[295,31],[291,-149],[276,-205],[147,-11],[72,83],[119,230],[16,317],[-94,448],[-118,176],[-163,77],[-137,142],[-84,180],[65,238],[106,237],[430,626],[395,434],[390,261],[234,268],[142,503],[-10,540],[-139,1090],[-15,313],[28,215],[156,146],[325,136],[319,248],[558,823],[177,176],[41,41],[129,51],[445,-16],[195,31],[171,68],[338,225],[340,149],[69,-6],[36,-4],[184,-18],[292,-114],[352,-53],[184,80],[177,144],[67,83],[66,83],[51,173],[13,257],[-21,350],[-128,952],[22,276],[106,431],[86,197],[40,175],[-55,155],[-120,70],[-126,134],[-94,223],[79,182],[91,113],[86,107],[763,273],[255,146],[367,332],[959,721],[59,4],[232,19],[255,238],[169,-18],[248,-311],[374,-284],[333,-116],[224,-35],[677,44],[1126,178],[326,116],[269,208],[579,881],[615,491],[233,379],[190,194],[318,189],[1137,426],[35,14],[347,44],[199,26],[113,113],[69,196],[10,478],[5,214],[155,475],[29,249],[-21,255],[-2,19],[-171,577],[-201,677],[-114,659],[-23,418],[-68,167],[-277,222],[-127,45],[-155,-6],[-163,72],[-56,169],[-14,309],[107,507],[90,201],[149,138],[326,157],[798,178],[713,46],[597,154],[195,98],[135,130],[120,204],[43,213],[-86,682],[-1,335],[86,433],[7,241],[-91,317],[-253,606],[-9,202],[63,167],[93,116],[14,2],[18,2],[7,1],[10,1],[2,1],[11,1],[41,6],[277,36],[333,-49],[278,72],[138,74],[454,-15],[148,53],[137,111],[341,389],[269,21],[255,-86],[156,-135],[183,-319],[162,-202],[156,-76],[241,-24],[403,66],[150,-29],[316,-150],[485,-368],[406,-503],[281,-265],[277,21],[451,180],[292,-7],[500,-171],[714,-568],[227,-295],[164,-141],[337,42],[135,65],[133,144],[591,913],[238,444],[261,853],[76,156],[143,162],[121,87],[274,101],[149,14],[884,-188],[141,5],[247,196],[319,515],[293,349],[357,224],[374,315],[382,-131],[232,-140],[142,-44],[128,17],[139,73],[361,379],[198,290],[141,363],[234,171],[234,381],[203,509],[220,1339],[8,180],[-112,473],[-2,205],[43,315],[205,326],[417,309],[325,168],[388,388],[183,101],[361,92],[401,226],[475,204],[331,239],[263,133],[108,-61]],[[549961,388890],[25,-189],[93,-123],[133,-100],[137,-53],[147,42],[282,149],[197,237],[115,89],[126,-7],[135,-58],[240,-188],[198,-262],[135,-124],[135,-57],[472,5],[126,-116],[94,-146],[120,-377],[76,-138],[664,-644],[491,-341],[98,-138],[140,-860],[8,-197],[-57,-488],[-176,-740],[-91,-645],[-129,-420],[-22,-230],[97,-746],[103,-790],[-141,-746],[35,-175],[118,-117],[137,28],[394,314],[162,64],[559,65],[176,-8],[254,-223],[92,-124],[72,-184],[-1,-206],[29,-178],[71,-147],[524,-304],[374,-50],[650,351],[104,-101],[-6,-207],[-128,-420],[8,-197],[76,-177],[120,-117],[120,-65],[109,-120],[92,-370],[-1,-181],[-70,-165],[-242,-336],[-14,-196],[35,-195],[149,-316],[151,-188],[175,-116],[394,37],[299,-78],[450,-336],[482,-674],[261,-278],[565,-143],[232,-139],[200,-10],[495,85],[126,64],[234,203],[269,297],[743,655],[325,167],[126,34],[389,16],[105,5],[813,-83],[394,82],[285,139],[367,326],[253,450],[233,273],[122,68],[270,-14],[197,-9],[308,-108],[291,-244],[346,-70],[241,-97],[156,-145],[113,-210],[42,-280],[-34,-194],[-221,-352],[-63,-163],[-119,-580],[-8,-185],[120,-59],[368,68],[133,-126],[65,-243],[289,-520],[142,-149],[140,-55],[614,-82],[631,131],[614,194],[325,194],[509,508],[453,174],[487,-100],[564,8],[227,71],[396,189],[702,450],[329,30],[283,115],[311,217],[234,339],[225,239],[600,394],[681,294],[429,335],[291,270],[269,369],[635,723],[99,174],[115,398],[85,830],[219,862],[271,754],[205,325],[164,260],[165,161],[182,108],[851,268],[611,428],[168,82],[626,183],[408,234],[176,168],[129,185],[75,201],[144,844],[190,450],[220,232],[283,409],[430,871],[226,386],[256,544],[168,270],[454,547],[233,127],[127,-8],[107,-98],[175,-298],[240,-246],[431,-227],[700,-283],[227,-66],[331,-36],[354,-203],[325,-85],[457,160],[158,-22],[318,-110],[656,71],[245,-109],[15,-6],[15,-7],[10,-13],[56,-67],[99,-121],[73,-88],[43,-52],[97,-117],[55,-68],[168,-132],[157,-15],[148,60],[127,-21],[72,-145],[12,-23],[-20,-217],[-64,-250],[-254,-559],[-51,-194],[99,-369],[284,-285],[301,-120],[137,27],[161,-45],[149,-371],[51,-418],[69,-184],[15,-176],[57,-223],[99,-277],[309,-538],[104,-58],[364,-204],[27,-168],[-102,-60],[-11,-6],[-141,43],[-127,-66],[-104,-102],[-98,-273],[-63,-176],[-33,-91],[-27,-78],[-17,-34],[-3,-6],[-8,-15],[-234,-478],[-57,-116],[-19,-196],[21,-196],[100,-106],[201,-46],[192,5],[45,-36],[11,-10],[19,-16],[7,-5],[160,-132],[34,-71],[35,-70],[63,-470],[200,-842],[183,-397],[382,-551],[78,-149],[50,-194],[-8,-177],[-65,-159],[-99,-142],[-422,-438],[-44,-192],[77,-959],[-61,-174],[-150,-121],[-253,-138],[-136,-126],[-63,-167],[-49,-408],[-155,-427],[-122,-627],[-54,-864],[-156,-715],[-17,-451],[31,-759],[44,-309],[48,-333],[-7,-220],[-36,-172],[-240,-534],[-170,-496],[-36,-185],[14,-241],[64,-189],[122,-93],[146,2],[251,293],[244,162],[254,-21],[113,-159],[-21,-344],[-69,-315],[-248,-535],[-256,-936],[-61,-919],[-128,-1093],[27,-441],[-98,-353],[-88,-107],[-257,-312],[-356,-577],[-141,-316],[-382,-535],[-84,-181],[-161,-716],[-113,-208],[-161,-181],[-178,-318],[-278,-313],[-394,-178],[-113,-108],[-262,-427],[-141,-176],[-114,-121],[-269,-165],[-253,-259],[-200,-268],[-428,-574],[-115,-214],[-64,-194],[21,-196],[116,-121],[543,-56],[296,-184],[79,-177],[7,-187],[-87,-487],[-55,-758],[29,-288],[148,-448],[126,-168],[128,-82],[262,37],[262,38],[306,143],[385,180],[297,240],[288,429],[137,-6],[254,-332],[155,-121],[189,-71],[320,-29],[269,56],[141,-125],[34,-216],[-126,-310],[49,-176],[314,-227],[556,-303],[383,-254],[748,-259],[90,-155],[0,-229],[-126,-307],[-382,-259]],[[791034,755843],[510,-961],[7811,-9433],[114,-138],[9362,-11307],[-318,-115],[-52,-19],[-3589,-1304],[-4438,-1612]],[[800434,730954],[-12327,-4187],[-133,-45],[-8159,-2600],[-133,-200],[62,-170],[44,-120],[18,-50],[232,-489],[186,-89],[66,-367],[229,-266],[105,-116],[186,-252],[296,-121],[157,-279],[122,-201],[81,-194],[185,-89],[154,-184],[56,-383],[-78,-367],[-187,-285],[5,-408],[-183,-275],[-420,-250],[-265,-401],[-11,-333],[-18,-394],[150,-374],[13,-332],[-134,-502],[-248,-199],[-483,-572],[-157,-489],[-67,-295],[52,-554],[46,-309],[93,-902],[-99,-601],[-8,-446],[-442,-402],[-484,-174],[-305,-98],[-141,-83],[-293,-116],[-325,-200],[-130,-264],[-35,-522],[-42,-253],[-18,-395],[-264,-287],[-156,-330],[-393,-237],[-195,-625],[-131,-306],[-111,-484],[-287,-250],[-212,-236],[-255,-157],[-268,-43],[-106,-100],[-243,-198],[-122,-384],[73,-253],[16,-247],[-175,-252],[-190,-82],[-193,218],[-161,132],[-188,-250],[-124,-373],[-100,-253],[-120,-211],[-120,-149],[-266,-328],[-33,-189],[-11,-65],[-144,-467],[-331,-329],[-344,-356],[-232,-367],[-67,-550],[-165,-367],[-242,-477],[-234,-508],[-327,-48],[-392,-452],[-611,-430],[-240,-337],[-237,-314],[-361,-587],[-254,-317],[-177,-401],[-216,-213],[-217,-559],[-98,-329],[-135,-306],[-64,-428],[-88,-484],[-45,-350],[22,-317],[-199,-150],[-188,-251],[-11,-233],[67,-467],[110,-584],[133,-784],[11,-334],[44,-167],[-145,-732],[-220,-352],[-232,-885],[243,-333],[233,-384],[254,-33],[77,-217],[-199,-284],[-243,-100],[-343,-200],[-189,-231],[-244,-88],[-360,-294],[-468,-405],[-453,-300],[-354,-100],[-520,42],[-431,-60],[-389,-1],[-310,92],[-473,210],[-388,167],[-243,134],[-376,667],[-464,350],[-266,117],[-365,33],[-531,34],[-193,-25],[-21,-3],[-173,-22],[-321,-284],[-94,-83],[-314,-276],[-307,-305],[-236,-220],[-553,-401],[-106,-70],[-584,-385],[-17,-12],[-565,-534],[-575,-500],[-28,-30],[-31,-32],[-438,-455],[-564,-251],[-679,-54],[-472,-346],[-685,-517],[-458,-615],[-163,-218],[-183,-247],[-271,-254],[-148,-132],[-15,-14],[-9,-8],[-369,-514],[-435,-777],[-40,31],[-9,7],[-121,-211],[-202,-330],[-216,-240],[-199,-199]],[[750887,679876],[-2406,-2289],[-4138,-3864],[-4363,-4520],[-202,-172],[-2961,-2522],[-40,-34],[-259,-221],[-3325,-2506],[-479,-190],[-284,-43],[-376,156],[-322,266],[-477,606],[-139,172],[-107,133],[-59,264],[-27,225],[-257,1201],[-76,250],[-145,126],[-291,261],[-450,282],[-457,219],[-484,83],[-416,-10],[-366,-157],[-259,-226],[-274,-171],[-380,-9],[-484,-124],[-500,-209],[-606,-248],[-259,-78],[-122,-62],[-96,-131],[-88,-232],[-111,-197],[-82,-72],[-79,-43],[-160,6],[-82,29],[-243,86],[-185,77],[-144,59],[-183,167],[-159,31],[-221,-114],[-517,-309],[-258,-154],[-132,-91],[-118,-128],[-142,-154],[-135,-162],[-194,-136],[-225,4],[-235,33],[-198,-48],[-189,-79],[-381,-191]],[[705560,676984],[634,-5],[634,-5],[331,1103],[359,-215],[942,217],[2219,3822],[367,554],[226,587],[814,1014],[577,477],[-62,911],[212,1333],[247,272],[1256,379],[398,316],[423,581],[44,1141],[337,233],[610,1098],[986,1234],[653,1796],[664,1183],[127,777],[545,884],[614,1509],[1179,1046],[521,1892],[236,724],[226,697],[121,371],[-22,345],[-96,401],[-104,289],[-110,323],[-81,217],[-23,228],[26,217],[85,229],[52,200],[-52,256],[-229,345],[-184,122],[-225,153],[-41,326],[59,423],[148,242],[782,938],[531,601],[462,418],[232,272],[177,33],[280,-133],[46,-15],[161,-52],[221,56],[279,388],[393,1058],[169,568],[133,501],[99,133],[217,88],[252,102],[229,378],[236,657],[280,389],[443,323],[384,334],[280,267],[539,67],[578,25],[591,180],[591,179],[566,463],[516,917],[267,203],[396,90],[390,191],[251,379],[126,400],[228,512],[152,171],[151,96],[398,-11],[369,61],[369,62],[199,11],[229,89],[214,334],[162,367],[109,470],[89,387],[61,263],[61,263],[79,342],[173,309],[152,147],[221,212]],[[735716,721709],[88,87],[138,178],[189,132],[189,132],[193,109],[161,26],[112,33],[179,142],[18,16],[124,113],[160,181],[78,92],[114,231],[37,139],[102,172],[134,227],[110,85],[120,70],[138,-47],[205,7],[206,56],[180,136],[113,85],[119,147],[100,123],[99,122],[156,205],[133,142],[385,441],[151,215],[127,165],[120,155],[206,237],[207,222],[231,187],[232,199],[281,262],[198,224],[140,225],[125,142],[117,146],[88,82],[139,135],[143,175],[131,75],[117,202],[85,148],[47,191],[-70,228],[-94,59],[-170,50],[-260,168],[-155,151],[-53,129],[37,231],[51,149],[104,293],[106,218],[122,253],[158,221],[198,277],[162,248],[106,162],[163,365],[94,267],[137,327],[254,339],[212,267],[190,198],[210,159],[195,356],[162,176],[111,121],[81,158],[78,208],[53,240],[83,420],[57,290],[40,198],[73,368],[80,271],[80,270],[124,236],[123,236],[27,200],[19,139],[-29,247],[7,268],[85,267],[140,366],[271,425],[153,169],[184,56],[162,-56],[144,-113],[165,-129],[106,-115],[116,-59],[103,76],[76,122],[51,247],[41,224],[-52,438],[-320,2692],[173,244],[107,152],[149,214],[149,152],[330,251],[263,200],[314,238],[276,210],[209,200],[133,127],[133,127],[226,249],[220,242],[156,220],[95,133],[30,40],[10,15],[138,274],[93,185],[167,431],[162,399],[204,-17],[114,-10],[132,64],[180,149],[150,68],[79,-20],[127,103],[96,59],[129,105],[74,159],[72,102],[92,86],[123,85],[81,66],[131,99],[197,141],[155,110],[234,188],[159,109],[271,178],[223,132],[228,229],[263,261],[211,192],[165,98],[125,75],[114,144],[75,96],[85,98],[155,76],[125,30],[96,7],[107,3],[201,36],[173,142],[42,142],[42,142],[300,539],[42,75],[17,30],[326,586],[482,539],[501,630],[619,410],[411,557],[289,373],[339,376],[308,445],[214,419],[99,270],[46,251],[124,435],[105,366],[267,558],[395,293],[414,274],[-20,616],[-225,610],[-223,459],[-228,240],[-59,122],[-54,212],[72,652],[57,416],[43,284],[-2,62],[-24,508],[31,218],[76,171],[55,92],[87,73],[88,26],[68,27],[131,-43],[92,-83],[37,99],[65,30],[86,-20],[120,-59],[85,-53],[88,-49],[98,-13],[116,19],[86,31],[142,81],[150,132],[94,139],[20,128],[6,126],[66,201],[97,119],[91,16],[85,-10],[99,-46],[106,-79],[170,64],[96,182],[210,195],[72,115],[130,209],[93,92],[208,204],[225,-7],[274,-152],[143,-137],[168,58],[168,325],[129,398],[48,238],[-29,246],[38,310],[44,188],[76,181],[163,101],[105,22],[168,-15],[201,8],[307,79],[307,203],[182,281],[76,185],[77,184],[68,222],[42,139],[86,199],[87,199],[143,209],[194,130],[194,123],[158,65],[259,81],[168,136],[201,94],[242,164],[338,118],[273,202],[215,282],[134,340],[106,347],[38,151],[82,318],[21,385],[12,215],[-48,268],[-80,211],[-150,179],[-57,137],[29,195],[151,246],[151,246],[172,180],[163,210],[187,282],[249,267],[230,289],[185,293],[155,358],[91,332],[-26,282],[31,253],[90,346],[128,208],[222,306],[182,224],[154,137],[153,181],[187,101],[239,58],[149,-65],[182,50],[158,87],[236,116],[334,88],[235,27],[134,109],[220,79],[197,-43],[143,-87],[222,17],[215,163],[220,225],[167,205],[250,315],[263,275],[273,217],[340,245],[364,138],[230,101],[225,94],[211,14],[182,-79],[197,-65],[215,-87],[304,112],[190,235],[230,426],[258,398],[235,412],[96,260],[124,282],[34,245],[-24,232],[96,253],[148,108],[149,108],[233,44],[186,73],[175,129],[168,123],[167,123],[252,104],[72,239],[52,177],[84,73],[120,93],[116,47],[138,55],[100,-47],[101,-47],[235,244]],[[782034,783664],[332,-101],[4063,-10100],[1236,-3073],[4026,-10009],[-249,-287],[-119,-431],[-191,-430],[-83,-574],[-83,-449],[-72,-825],[140,-1542]],[[692521,579380],[-33,-24],[-25,-7],[-28,-7],[-54,2],[-50,-3],[-61,-9],[-131,-56],[-38,-43],[-21,-36],[-5,-90],[8,-98],[39,-111],[42,-11],[73,118],[54,0],[42,-51],[34,-122],[15,-119],[-52,-159],[39,-128],[67,-101],[14,-174],[-81,-199],[-56,-148],[-22,-216],[-64,-120],[-81,-96],[-66,-34],[-98,22],[-196,0],[-76,-7],[-166,-118],[-37,-137],[22,-63],[95,-59],[27,-74],[-29,-151],[-96,-145],[-80,-62],[-67,-44],[-39,-90],[-71,-44],[-63,15],[-86,63],[-76,-37],[-37,-56],[-66,-103],[-70,-32],[-99,76],[-69,222],[-91,219],[-46,128],[-51,74],[-30,30],[-105,-15],[-81,-103],[-147,-11],[-81,-45],[-66,-3],[-173,-199],[-159,-105],[-97,-9],[-97,-70],[-185,-89],[-45,-72],[-210,-282],[-522,-646],[-166,-277],[-37,-109],[-8,-62],[2,-145],[22,-174],[82,-62],[72,-7],[66,-69],[41,-407],[-28,-105],[-68,-7],[-48,-46],[-24,-92],[2,-49],[68,-49],[39,-66],[-37,-85],[-63,-37],[-20,-105],[13,-85],[61,-36],[-13,-135],[-43,-69],[-96,-108],[-81,39],[-26,69],[26,95],[48,99],[-19,115],[-57,72],[-89,33],[-148,-52],[-118,-37],[-58,-20],[-44,-35],[-59,0],[-15,59],[13,72],[39,69],[109,302],[-28,76],[-24,23],[-48,0],[-39,-59],[-48,-43],[-42,0],[-41,49],[-65,86],[-24,32],[-40,23],[-98,-39],[-31,17],[-64,111],[-42,44],[-43,-8],[-35,-69],[26,-180],[-25,-94],[-69,-58],[-72,20],[-119,82],[-72,82],[-124,10],[-103,-29],[-86,-26],[-3,-66],[-78,-138],[-98,-109],[-79,0],[-67,0],[-31,-70],[3,-91],[43,-55],[35,9],[39,46],[44,56],[74,-3],[42,-14],[19,37],[45,79],[41,39],[51,-6],[50,-18],[50,-19],[33,-65],[13,-122],[-31,-64],[-76,-66],[-90,-130],[-23,-35],[-27,-31],[20,-31],[-8,-48],[-26,-15],[-56,39],[-25,-21],[-46,-94],[-88,-185],[-58,-20],[-52,21],[-28,36],[-40,0],[-62,-60],[-102,-109],[-90,-163],[-43,-84],[-90,-76],[-146,-221],[-75,-207],[-93,-59],[-30,3],[-6,61],[34,57],[-16,18],[-26,-27],[-70,-51],[-181,-167],[-256,-130],[-152,-111],[-72,-61],[-33,-130],[-70,-87],[-28,-142],[-79,-111],[-53,2],[-20,21],[12,63],[-14,43],[-68,-9],[-32,42],[-84,30],[-64,7],[-60,99],[-22,136],[-18,142],[-33,212],[0,145],[-34,45],[-44,24],[-58,27],[-82,-27],[-20,-51],[-28,-86],[-80,-23],[-46,27],[-24,58],[-78,12],[-58,21],[-10,-33],[5,-66],[-39,-29],[-10,58],[-23,12],[-56,-39],[-236,-151],[-44,21],[-30,61],[-46,130],[-112,166],[-95,9],[-16,22],[-72,96],[-80,145],[4,172],[-24,139],[-60,42],[-74,-18],[-52,-51],[-54,-148],[-47,-132],[-177,-340],[-47,-248],[-46,-21],[-74,-24],[-92,-54],[-100,-70],[-128,9],[-48,8],[-5,1],[-43,6],[-55,-33],[-26,-45],[4,-172],[42,-206],[45,-154],[22,-148],[-85,-154],[-24,-160],[-38,-63],[-122,-143],[-68,-36],[-54,27],[-88,-151],[-94,-142],[-82,-57],[-27,-46],[19,-99],[21,-58],[-13,-148],[-6,-79],[16,-72],[40,-27],[92,54],[82,39],[68,-51],[82,-66],[118,-55],[68,-3],[61,21],[64,31],[60,-28],[30,-69],[-6,-55],[-48,-24],[-86,33],[-87,10],[-56,3],[-30,-70],[-34,-97],[-10,-87],[52,-49],[84,25],[52,-20],[87,-17],[66,6],[64,55],[48,6],[30,-70],[-14,-87],[-46,-67],[-102,-286],[-48,-161],[-6,-94],[-41,-76],[-68,-33],[-110,-18],[-42,-48],[-20,-45],[10,-61],[86,-115],[14,-105],[-30,-342],[-64,-272],[-20,-84],[-30,-35],[-36,7],[-32,76],[-64,27],[-82,-15],[-56,-109],[-40,-39],[-60,15],[-81,100],[-170,96],[-90,31],[-54,57],[-26,-6],[-40,-142],[-102,-148],[-62,-230],[-83,-263],[22,-323],[38,-33],[67,-154],[114,-127],[46,-84],[138,-61],[182,-52],[52,-33],[97,-115],[-64,-408],[-61,-190],[-98,-414],[-96,-203],[-104,-129],[-242,-194],[-129,-48],[-94,3],[-84,-39],[-82,-118],[-40,-157],[-7,-62],[63,-174],[64,-172],[58,-284],[-32,-197],[-70,-181],[-96,-117],[-120,-226],[-20,-120],[-20,-120],[-36,-179],[-29,-90],[-82,-177],[-47,-45],[-82,-66],[-83,-142],[-126,-93],[-120,-88],[-76,-55],[-165,-97],[-71,-95],[14,-253],[34,-182],[15,-45],[45,-29],[63,27],[146,147],[147,41],[166,41],[74,38],[44,73],[49,56],[100,-43],[108,-57],[116,-38],[151,-138],[92,-14],[54,-18],[118,-70],[132,-47],[96,4],[80,-29],[118,4],[84,-50],[24,-56],[23,-260],[16,-317],[96,-322],[80,-262],[-15,-70],[-95,-120],[-90,-86],[-187,-177],[-48,-113],[-3,-81],[42,-32],[79,-95],[92,-111],[64,-57],[75,-15],[125,-14],[24,-54],[25,-129],[-9,-206],[9,-175],[26,-196],[63,-50],[111,-156],[211,-190],[107,-107],[97,-181],[-4,-66],[-44,-56],[-87,-25],[-75,-7],[-108,30],[-90,72],[-138,115],[-42,53],[-46,13],[-110,-20],[-46,20],[-42,36],[-92,80],[-118,45],[-92,-7],[-24,-45],[-25,-46],[-56,8],[-96,162],[-72,52],[-121,23],[-96,29],[-140,89],[-178,142],[-114,113],[-96,-16],[-23,7],[-75,-88],[-112,-81],[-89,-14],[-190,2],[-57,-56],[-87,-134],[-86,-79],[-100,-120],[-32,-93],[-10,-131],[-30,-175],[-87,-375],[-66,-195],[-59,-129],[-90,-65],[-239,-152],[-91,-124],[-119,-209],[-57,-160],[-55,-175],[-240,-450],[-32,-131],[8,-113],[42,-123],[42,-124],[6,-269],[-2,-309],[-40,-169],[-23,-197],[59,-117],[88,-111],[86,-161],[-2,-183],[-34,-102],[-41,-91],[-33,-27],[-73,-11],[-69,23],[-111,38],[-50,-29],[-52,-55],[-48,-88],[-77,-106],[-36,-84],[12,-70],[36,-118],[-9,-161],[-90,-298],[12,-73],[15,-95],[38,-120],[-39,-113],[-60,-163],[-8,-86],[-30,-65],[-31,-25],[-36,20],[-41,100],[-24,58],[-16,-9],[33,-113],[-15,-41],[-33,14],[-22,23],[5,95],[-19,47],[-15,73],[-38,-9],[-79,-48],[-54,-11],[-14,-52],[-9,-43],[-40,-5],[-30,138],[-50,52],[-75,3],[-63,-41],[-37,-73],[1,-90],[15,-70],[-75,-86],[-100,-131],[-78,-64],[-126,-70],[-75,-140],[-99,-111],[-77,-25],[-40,11],[-41,-31],[-52,-80],[-1,-6],[-2,-6],[-5,-31],[17,-38],[19,-42],[11,-298],[-15,-83],[0,-86],[-27,-43],[-35,-95],[-33,-62],[-37,-49],[-3,-48],[-27,-59],[-20,9],[-16,-25],[6,-54],[16,-36],[3,-45],[-43,-77],[13,-68],[23,-45],[36,-21],[31,43],[35,41],[37,-25],[-1,-29],[-2,-30],[-21,-61],[-15,-68],[-36,-2],[-45,-63],[-19,-141],[16,-77],[32,-86],[-11,-61],[-25,-34],[-24,3],[-17,-21],[-12,-22],[12,-138],[-19,-64],[-11,-108],[21,-30],[2,-41],[-17,-49],[-24,-3],[-30,14],[-37,2],[-2,-38],[3,-59],[-12,9],[-17,17],[-22,-8],[-49,45],[-33,-9],[-21,-36],[-41,-62],[-19,-8],[-18,22],[-24,16],[-6,-20],[-6,-20],[-26,-37],[5,-44],[4,-44],[35,-68],[-15,-32],[18,-45],[24,-4],[9,34],[34,-9],[30,-30],[23,-47],[-155,-301],[-48,-213],[-24,-16],[-4,-41],[16,-56],[27,-45],[-22,-55],[-32,-34],[-24,-52],[-30,-41],[-63,-88],[9,-120],[-128,-142],[-37,-120],[98,-186],[15,-140],[-40,-54],[-76,-32],[-98,-27],[-39,-43],[-1,-79],[53,-117],[56,-89],[2,-82],[-33,-106],[-45,-154],[12,-138],[27,-172],[-21,-52],[-34,11],[-245,134],[-18,-52],[-17,-50],[-22,-3],[-23,0],[-34,50],[-20,39],[-10,18],[-21,47],[-51,34],[-66,0],[-27,-1],[-8,-19],[18,-16],[-4,-32],[-14,-18],[-18,5],[-15,9],[-34,16],[-8,-27],[23,-80],[-23,0],[2,-27],[16,-31],[-6,-32],[-40,-7],[-32,-38],[15,-86],[-27,-21],[-28,-4],[-29,-37],[8,-72],[-25,-13],[-26,9],[-36,-12],[-63,-31],[-29,22],[-12,113],[-21,75],[-20,35],[-27,-8],[-19,34],[-1,70],[-17,46],[-36,-10],[-27,14],[14,-59],[-12,-18],[-17,10],[-9,40],[-7,0],[-18,-23],[-24,-40],[15,-61],[-18,-37],[-35,-27],[0,-32],[0,-71],[-36,-17],[6,-45],[17,-45],[-21,-57],[-29,-23],[-18,3],[-13,-80],[9,-24],[37,-19],[38,-20],[40,-79],[46,-36],[8,-30],[6,-54],[18,-7],[11,23],[36,20],[61,-27],[75,-104],[29,-63],[-8,-100],[-60,-278],[2,-89],[12,-113],[-9,-68],[12,-72],[25,-26],[17,-38],[-5,-47],[-10,-72],[18,-55],[30,2],[16,44],[6,-14],[8,-68],[-24,-38],[-48,-21],[-48,-81],[-35,-70],[-39,-109],[-21,-52],[23,-52],[-14,-13],[-30,-1],[-19,-31],[7,-25],[-12,-23],[-27,18],[-22,-20],[-152,-195],[-42,-70],[-30,-32],[-28,-6],[-33,38],[-83,-20],[-34,-30],[-5,-65],[27,-48],[48,-111],[12,-29],[-6,-73],[26,-13],[30,-9],[57,-84],[78,-93],[49,-43],[59,-36],[72,-106],[40,-111],[14,-84],[-23,-23],[-18,-16],[0,-142],[-7,-96],[52,-91],[171,-334],[140,-228],[117,-128],[27,-22],[61,-18],[32,23],[117,143],[33,4],[39,-54],[12,-75],[4,-93],[-36,-38],[-147,-154],[-33,-52],[-36,-25],[-27,43],[-42,32],[-34,-27],[1,-37],[12,-56],[-27,-3],[-34,-13],[4,-43],[30,-27],[10,-59],[13,-54],[-18,-34],[-32,6],[-27,64],[-24,2],[-3,-18],[21,-59],[-22,-11],[-42,4],[-27,-9],[-20,-27],[-10,-27],[-29,-11],[11,-43],[-27,-5],[-5,32],[-13,7],[-14,-32],[-21,0],[-22,-9],[-3,-30],[3,-65],[-2,-39],[15,-40],[-13,-19],[4,-40],[-13,-53],[-12,-54],[-30,-29],[-17,-25],[0,-50],[-25,-16],[13,-58],[-15,-43],[-21,11],[-16,-14],[18,-47],[-32,4],[-21,39],[-15,27],[-2,72],[-23,8],[-23,8],[-31,-27],[-20,-23],[-16,19],[-29,-12],[2,-72],[-11,-34],[-6,-88],[43,-37],[32,19],[36,-32],[21,-32],[2,-29],[-12,-39],[-2,-55],[12,-22],[23,6],[21,-37],[-14,-25],[-45,11],[-3,-29],[8,-28],[15,-61],[12,-63],[21,-120],[22,-70],[33,-11],[28,20],[10,-9],[6,-41],[19,-47],[20,-23],[33,16],[48,-18],[10,-23],[35,-34],[24,7],[12,34],[34,32],[29,-4],[15,-17],[-3,-25],[3,-52],[6,-34],[22,-9],[8,27],[0,46],[36,22],[44,-3],[6,1],[8,-45],[21,-18],[29,13],[52,-22],[8,-30],[18,-13],[10,-3],[24,28],[15,-28],[-3,-31],[-18,-39],[-36,-81],[-30,-98],[-6,-70],[-36,-18],[-39,32],[-22,-18],[1,-59],[-12,-34],[-25,7],[-8,-61],[23,-32],[46,29],[45,-138],[-10,-47],[-20,-15],[-42,-33],[-36,34],[-40,-18],[-30,-35],[-114,-40],[-38,-67],[-46,-55],[-59,-38],[-54,7],[-16,45],[-34,15],[-35,-13],[-23,-34],[-40,25],[-29,7],[-25,-30],[-11,-29],[-1,-36],[9,-98],[2,-88]],[[673217,535763],[2,-28],[-5,-27],[0,-1],[-8,-37],[-12,-48],[-3,-9],[-11,-43],[-19,-37],[-38,-25],[-26,-36],[-27,-48],[-24,-48],[-21,-23],[-76,-86],[-77,-69],[-46,-67],[-19,-34],[0,-39],[-6,-62],[14,-33],[34,-46],[22,-9],[14,-32],[0,-31],[16,-19],[18,-8],[22,11],[31,-3],[40,-44],[0,-5],[13,-44],[-3,-34],[-22,-37],[-25,-4],[-19,-36],[1,-33],[-8,-30],[-14,-26],[-20,-10],[-7,2],[-27,9],[-28,23],[-38,20],[-34,16],[-27,8],[-35,1],[-26,-1],[-16,0],[-18,-4],[-17,-20],[-14,-16],[-14,-15],[-14,-15],[-16,-12],[-28,1],[-14,-3],[-19,-15],[-11,-23],[5,-15],[6,-22],[-1,-19],[-1,-19],[-6,-39],[-15,-40],[-5,-8],[-5,-12],[-6,-12],[-6,-6],[-22,-23],[-36,1],[-30,26],[-22,7],[-31,-14],[-13,-25],[-34,-16],[-37,-4],[-28,-4],[-19,-13],[-8,-7],[-37,-7],[-45,-9],[-21,-1],[-16,8],[-15,10],[-12,51],[1,29],[11,34],[-1,47],[-11,33],[-13,12],[-14,11],[-22,4],[-25,-2],[-26,-18],[-31,-23],[-8,-9],[-5,-5],[-13,-13],[-22,-20],[-26,-25],[-29,0],[-41,-9],[-38,-17],[-32,-23],[-33,-28],[-6,-3],[-16,-7],[-29,6],[-24,10],[-14,20],[-9,35],[-10,33],[-12,30],[-1,4],[-24,12],[-13,1],[-13,-18],[-3,-38],[-9,-37],[-6,-37],[-5,-32],[-16,-25],[-17,-25],[-27,14],[-20,17],[-19,17],[-9,8],[-22,21],[-19,18],[-22,4],[-18,-12],[-7,-17],[7,-31],[13,-45],[22,-39],[12,-33],[13,-27],[2,-29],[-11,-36],[-28,-30],[-28,-39],[-22,-23],[-5,-5],[-35,-36],[-41,-34],[-33,-27],[-19,-22],[-14,-19],[-13,-31],[-23,-53],[-38,-106],[-24,-90],[-38,-88],[-3,-4],[-38,-52],[-24,-38],[-18,-50],[-5,-28],[-10,-54],[-15,-90],[-15,-77],[-16,-57],[-19,-58],[-21,-63],[-15,-61],[-1,-47],[7,-31],[12,-16],[27,-36],[3,-9],[4,-8],[7,-17],[8,-35],[0,-45],[-6,-24],[-24,-39],[-18,-39],[-14,-41],[-8,-47],[-8,-54],[-14,-75],[-5,-50],[-15,-49],[-27,-67],[-28,-40],[-28,-30],[-39,-29],[-46,-22],[-54,-25],[-40,-27],[-13,-15],[-14,-15],[-35,-33],[-50,-64],[-39,-68],[-47,-86],[-28,-59],[-17,-45],[-22,-67],[-7,-28],[-3,-38],[-3,-38],[-6,-163],[2,-62],[5,-79],[8,-65],[8,-48],[11,-42],[19,-32],[12,-28],[4,-32],[-4,-40],[-9,-56],[-8,-27],[-22,-26],[-27,-18],[-21,-8],[-22,-11],[-12,-20],[-10,-28],[-22,-47],[-28,-93],[-17,-131],[-18,-112],[-20,-61],[-22,-26],[-18,-31],[-10,-38],[-17,-92],[-2,-39],[-14,-48],[-25,-56],[-23,-39],[-43,-63],[-125,-177],[-80,-110],[-54,-86],[-96,73],[-49,58],[-39,82],[-30,82],[-29,61],[-39,58],[-48,63],[-57,71],[-56,26],[-59,15],[-59,7],[-58,37],[-39,-3],[-30,-18],[-36,17],[-55,19],[-31,49],[-22,57],[-39,31],[-32,-19],[-39,0],[-42,23],[-75,31],[-85,40],[-32,11],[-38,13],[-77,38],[-67,4],[-67,9],[-98,57],[-69,67],[-66,66],[-70,51],[-58,28],[-45,21],[-65,36],[-19,21],[-5,37],[-7,17],[-18,2],[-24,-3],[-21,26],[-6,38],[4,35],[6,32],[17,1],[11,16],[4,29],[-3,37],[-23,55],[-35,18],[-47,5],[-46,0],[-39,-5],[-66,-26],[-45,-40],[-91,0],[-88,38],[-91,66],[-87,94],[-87,112],[-11,30],[-47,123],[-25,161],[-37,28],[-110,14],[-100,-28],[-113,0],[-131,-9],[-169,-13],[-166,-48],[-147,-29],[-63,43],[-56,-9],[-88,-87],[-379,-371],[-147,-137],[-94,-119],[-41,-75],[-41,-76],[-94,-132],[-203,-142],[-132,38],[-62,42],[-63,43],[-93,27],[-124,-30],[-165,18],[-191,65],[-207,133],[-25,35],[-25,36],[-3,103],[15,142],[-22,175],[-100,265],[-31,113],[-31,114],[-60,231],[-61,95],[-80,61],[-75,43],[-94,9],[-97,59],[-25,50],[-72,123],[-85,189],[-69,132],[-42,37],[-43,37],[-131,96],[-169,109],[-238,151],[-355,233],[-35,23],[-165,108],[-70,-137],[-47,-80],[-24,2],[-7,-29],[-11,-28],[-7,-35],[54,-33],[3,-30],[3,-29],[-32,-42],[-64,-20],[-20,-31],[17,-63],[-25,-64],[-44,-57],[-45,12],[-33,-28],[0,-63],[-5,-32],[-30,-19],[-43,-23],[-58,-15],[-102,33],[-71,-3],[-64,51],[-58,82],[-88,95],[-56,85],[-56,31],[-124,-7],[-56,28],[-80,135],[-13,99],[-42,87],[-28,45],[-22,123],[-12,121],[-29,139],[-33,85],[-25,104],[-12,116],[-35,85],[-45,42],[-71,26],[-81,57],[-77,57],[-13,52],[0,47],[-32,14],[-22,66],[-52,5],[-86,40],[-10,52],[-23,64],[-67,61],[-74,59],[-31,74],[-58,101],[-27,45],[-30,52],[-51,40],[-82,81],[-22,14],[-44,33],[-44,33],[-68,43],[-98,28],[-75,-14],[-91,-43],[-131,-165],[-57,-260],[19,-199],[60,-165],[87,-255],[98,-265],[37,-151],[28,-151],[7,-218],[4,-239],[-10,-320],[-4,-102],[-4,-284],[-2,-189],[-47,-90],[-97,-89],[-57,-39],[-65,-32],[-88,71],[-91,123],[-34,118],[-16,56],[-16,57],[-25,170],[41,137],[72,100],[129,174],[106,142],[42,157],[5,108],[-25,123],[-75,89],[-85,62],[-131,75],[-107,43],[-110,-28],[-106,-81],[-56,-35],[-57,-36],[-147,-89],[-88,-95],[-50,-75],[-34,-95],[-41,-222],[-38,-217],[-20,-62],[-20,-61],[-88,-95],[-75,-38],[-107,29],[-160,94],[-106,47],[-128,-18],[-163,-24],[-113,-52],[-91,-95],[-47,-66],[-44,-132],[-19,-95],[13,-179],[222,-1186],[94,-492],[27,-165],[27,-166],[-4,-170],[-8,-53],[-17,-103],[-59,-108],[-57,-59],[-56,-59],[-116,-57],[-113,-66],[-78,-52],[-85,-109],[-68,-213],[-132,-515],[-138,-548],[-50,-184],[-41,-36],[-40,-35],[-170,-99],[-69,-95],[-38,-82],[-39,-81],[-26,-139],[16,-76],[15,-75],[69,-95],[-6,-95],[-69,-118],[-53,-85],[-50,-80],[-47,-90],[-47,-146],[-72,-118],[-72,-147],[-3,-83],[-4,-82],[-9,-175],[16,-189],[34,-133],[-19,-70],[-62,-48],[-57,66],[-12,93],[-13,92],[-69,104],[-93,158],[-48,158],[-59,170],[-62,143],[-44,53],[-45,87],[-53,64],[-45,62],[-13,11],[-15,1],[-16,-6],[-25,0],[-30,20],[-14,14],[-18,1]],[[654145,526577],[-3979,-1349],[-3056,-674],[-2262,-500],[-12,-3],[-1080,-238],[-20,-4],[-41,-10],[-336,-74],[-768,-169],[-1537,214],[-251,35],[-83,11],[-10,1],[-117,17],[-2,0],[-3,0],[-539,75],[-216,30],[-2563,357],[-10,-448],[-68,-554],[-186,-364],[-353,-181],[-507,-64],[-276,-350],[-240,-479],[-268,-342],[-193,-451],[52,-1170],[-93,-519],[-381,-388],[-333,68],[-369,16],[-252,-218],[-79,-452],[-199,-435],[-329,-78],[-306,-364],[-105,-485],[-58,-474],[-252,-314],[-137,-390],[228,-1144],[-199,-1063],[-324,-389],[-362,-223],[-947,-393],[-267,-305],[-221,-627],[-266,-411],[-171,-452],[-136,-96],[-125,-88],[-98,-482],[-16,-165],[-17,-165]],[[629407,509857],[-6775,14213],[-5,10],[-115,242],[-10100,21212],[-1865,3922],[-39,81],[-20,42],[-157,330],[-2560,5383],[-1100,2532],[-5,12],[-186,427],[-1223,2269]],[[605257,560532],[242,295],[22,-10],[16,25],[52,43],[8,6],[44,50],[30,25],[85,4],[92,18],[54,-16],[24,0],[12,51],[20,6],[20,-27],[3,-61],[26,-22],[38,-12],[26,7],[25,-3],[20,-4],[15,16],[29,-7],[32,-7],[28,-2],[1,-41],[23,-2],[14,65],[29,43],[29,16],[40,31],[55,118],[42,36],[38,47],[23,88],[-4,63],[23,39],[-4,36],[-15,45],[0,39],[26,18],[23,10],[19,16],[6,49],[25,0],[33,-4],[15,-45],[4,-79],[-4,-45],[27,-40],[29,-27],[54,0],[33,28],[29,25],[86,22],[19,70],[23,2],[9,-27],[24,-3],[22,15],[21,79],[30,25],[56,14],[62,11],[52,16],[42,-16],[41,8],[102,71],[14,45],[36,93],[30,19],[31,-17],[23,27],[4,79],[21,23],[31,-8],[30,-13],[26,18],[42,39],[82,131],[19,69],[5,36],[10,100],[29,100],[32,15],[21,-32],[26,15],[17,35],[19,-4],[16,-68],[22,-22],[32,2],[16,45],[33,89],[27,45],[52,33],[30,-13],[32,-20],[14,-2],[5,45],[41,6],[32,-18],[46,15],[70,23],[84,-28],[49,-39],[29,-26],[23,4],[23,38],[27,-6],[31,-14],[24,41],[35,4],[21,10],[0,26],[-7,49],[20,33],[33,12],[27,-12],[6,-23],[12,-46],[27,4],[11,32],[3,37],[16,8],[11,-37],[30,7],[3,51],[9,34],[17,-4],[12,-66],[18,1],[1,17],[44,40],[21,-6],[15,-55],[11,-41],[20,-2],[70,81],[65,37],[71,2],[21,33],[21,71],[49,105],[23,33],[44,17],[42,-4],[23,52],[11,70],[5,79],[18,43],[29,21],[36,-11],[41,-12],[15,30],[11,74],[-52,13],[-13,3],[-2,47],[-3,87],[11,31],[21,-15],[10,-52],[2,-39],[25,-10],[8,28],[20,33],[18,-12],[10,16],[19,39],[-11,42],[-43,17],[-33,50],[-10,68],[-30,46],[6,21],[24,26],[42,59],[5,41],[-16,16],[-7,21],[14,34],[8,31],[-15,30],[10,49],[9,40],[22,31],[14,63],[-43,57],[7,27],[49,-2],[46,15],[21,38],[18,2],[12,-37],[21,10],[2,47],[23,2],[9,27],[11,-15],[14,-15],[13,26],[40,110],[28,15],[7,46],[7,46],[35,5],[44,-20],[25,-50],[18,-71],[101,-43],[30,-28],[82,28],[40,-2],[93,-4],[23,40],[23,17],[19,-38],[18,-51],[67,-13],[18,15],[29,26],[53,-14],[9,-18],[30,31],[10,3],[36,-10],[31,26],[45,-2],[29,2],[22,-18],[55,5],[17,22],[26,32],[19,-4],[18,-18],[24,-16],[12,34],[16,6],[18,-4],[49,-12],[29,35],[10,67],[3,68],[17,33],[20,13],[30,2],[15,22],[8,35],[9,18],[30,-10],[16,57],[14,22],[25,15],[28,-4],[34,77],[48,26],[5,65],[-20,51],[-48,24],[-22,50],[7,24],[18,24],[33,7],[55,81],[4,37],[-31,44],[-22,33],[0,20],[0,17],[18,-7],[30,-16],[51,-2],[13,33],[23,22],[33,63],[6,86],[19,65],[42,18],[42,-10],[7,-22],[17,-15],[35,15],[26,-27],[88,-91],[43,-80],[51,-55],[31,47],[22,-31],[25,-42],[21,10],[5,37],[5,82],[17,19],[27,-8],[37,-34],[26,-9],[11,21],[28,100],[26,48],[-7,68],[-1,40],[13,17],[31,1],[22,43],[20,8],[24,5],[23,22],[2,30],[-35,59],[9,13],[27,-40],[13,17],[-14,84],[21,28],[-4,65],[19,31],[23,-25],[26,13],[5,36],[-22,37],[7,43],[34,32],[21,-14],[22,-2],[22,33],[13,48],[-16,41],[12,35],[24,30],[15,33],[6,61],[23,71],[29,14],[42,-12],[5,21],[-13,16],[1,34],[6,27],[24,14],[22,-8],[6,18],[-5,43],[20,31],[58,34],[41,-57],[32,-30],[24,8],[33,53],[8,36],[19,17],[19,-8],[13,-31],[42,-41],[19,23],[-7,26],[-30,71],[9,21],[21,2],[31,-7],[38,41],[47,6],[16,-71],[26,-45],[57,-10],[12,25],[23,-6],[8,-74],[15,-16],[51,-8],[35,41],[18,59],[33,-13],[57,41],[32,18],[33,-2],[54,-57],[12,-85],[26,-33],[40,17],[27,-29],[30,-18],[-4,-29],[32,-16],[40,45],[15,30],[11,27],[30,-14],[12,-41],[-1,-45],[51,-43],[48,-4],[14,21],[38,-15],[13,-16],[12,-32],[14,-1],[21,-2],[-2,-54],[-2,-47],[33,-39],[19,-10],[17,12],[-5,53],[21,12],[8,-28],[-1,-43],[7,-63],[15,-18],[6,-37],[14,-17],[30,5],[13,30],[30,-8],[20,-18],[15,16],[-27,39],[4,40],[39,74],[18,-2],[17,-1],[16,-1],[6,-29],[15,-4],[5,27],[16,4],[33,-13],[44,23],[61,18],[35,43],[155,112],[8,40],[20,21],[3,45],[11,55],[28,12],[43,28],[21,-20],[17,-27],[30,27],[15,24],[24,5],[-1,40],[25,36],[17,-2],[17,-1],[-5,-25],[-6,-32],[22,-19],[29,2],[13,-14],[17,14],[29,11],[2,28],[-27,37],[-2,32],[31,21],[16,28],[9,41],[-52,91],[-36,69],[17,100],[29,29],[33,-8],[42,8],[21,12],[11,21],[14,-9],[13,-8],[20,-8],[47,33],[17,-13],[18,15],[18,63],[11,26],[104,78],[25,73],[27,51],[40,77],[22,-2],[32,-28],[22,-9],[42,70],[-14,41],[6,14],[27,-15],[19,-30],[27,8],[24,35],[27,14],[10,22],[-3,29],[42,55],[4,34],[3,29],[33,10],[10,-22],[15,-21],[6,-57],[42,-89],[6,-35],[-23,-6],[-7,-35],[22,-17],[6,4],[7,3],[6,14],[51,112],[11,23],[24,8],[11,-27],[-8,-36],[18,-10],[37,55],[-19,44],[-31,37],[-10,6],[-20,10],[8,49],[17,18],[21,2],[18,-36],[13,-14],[15,6],[45,61],[25,-6],[10,24],[20,0],[15,-28],[19,-4],[8,28],[-6,31],[6,61],[24,6],[39,0],[11,28],[16,35],[-8,20],[3,47],[-6,43],[16,63],[2,20],[-14,16],[-20,-16],[-31,-53],[-32,6],[-21,16],[14,50],[1,30],[-47,-41],[-26,33],[38,112],[37,65],[51,37],[20,224],[46,12],[7,30],[24,19],[54,-2],[5,42],[-12,47],[6,33],[43,45],[36,18],[-2,45],[-34,28],[-18,92],[19,23],[16,21],[46,-10],[49,17],[27,16],[40,-6],[37,79],[40,-6],[29,-49],[21,4],[39,23],[10,42],[-16,57],[33,37],[20,16],[17,-14],[55,39],[-11,24],[-54,25],[107,199],[167,308],[19,22],[59,-43],[26,31],[-3,30],[10,41],[46,59],[-16,46],[39,52],[23,-9],[35,31],[-7,48],[-4,35],[0,33],[20,6],[7,2],[3,-29],[1,-8],[35,-14],[39,21],[42,10],[22,8],[28,63],[41,24],[7,7],[-4,10],[-16,34],[4,23],[15,-4],[20,-31],[4,-6],[25,8],[-2,26],[-1,13],[19,45],[25,44],[34,-8],[12,20],[33,56],[23,57],[1,4],[1,1],[53,64],[-8,55],[30,45],[54,40],[55,64],[9,24],[0,2],[-10,31],[-1,3],[-7,43],[6,38],[9,16],[25,-18],[33,0],[10,8],[19,16],[5,31],[3,18],[15,17],[41,-10],[63,106],[34,57],[52,67],[44,56],[14,22],[22,2],[0,-29],[0,-11],[14,-18],[1,0],[25,4],[12,0],[13,1],[1,0],[22,15],[5,3],[21,15],[5,3],[7,6],[13,12],[7,1],[38,2],[13,1],[24,-25],[8,-1],[30,-5],[3,17],[4,17],[0,4],[29,9],[18,23],[24,20],[1,1],[21,-6],[22,-3],[13,-3],[8,-1],[4,9],[5,12],[3,6],[8,0],[9,0],[1,-1],[14,-37],[36,-5],[28,61],[51,45],[2,2],[9,25],[9,24],[7,20],[22,21],[30,32],[66,73],[35,38],[31,5],[-1,-13],[0,-6],[-1,-30],[18,-12],[1,0],[30,-4],[15,6],[15,7],[24,45],[14,25],[-1,16],[-1,11],[8,16],[15,-9],[14,-2],[9,-1],[88,23],[38,2],[9,40],[21,12],[70,38],[5,-3],[36,-27],[7,-6],[26,6],[6,17],[17,53],[5,16],[26,20],[8,-17],[16,-34],[28,5],[15,3],[3,5],[8,13],[7,44],[2,13],[14,-6],[10,-4],[23,20],[5,4],[1,-1],[17,-29],[20,4],[28,19],[8,40],[1,8],[5,-5],[19,-17],[22,-2],[9,42],[0,1],[17,33],[26,9],[10,-18],[6,-9],[49,5],[13,34],[6,16],[19,15],[28,-11],[25,-11],[20,27],[12,17],[59,30],[33,-5],[13,1],[31,3],[12,13],[23,25],[35,12],[17,6],[33,37],[33,-9],[31,18],[22,-5],[36,18],[40,38],[36,16],[61,-32],[32,-80],[4,-10],[3,2],[17,16],[26,-9],[10,-38],[17,-22],[22,14],[37,-45],[44,-52],[21,-23],[36,-40],[16,4],[36,9],[50,-67],[61,-40],[43,-72],[7,-14],[34,-69],[33,-41],[18,-22],[4,-4],[26,-59],[9,23],[-3,40],[-1,14],[6,63],[32,-3],[29,-31],[41,-59],[16,3],[13,107],[2,7],[4,20],[15,12],[8,-12],[6,-9],[6,2],[18,5],[2,15],[1,13],[0,3],[4,0],[21,1],[6,0],[1,4],[3,19],[4,24],[17,14],[8,-12],[12,-14],[6,0],[16,0],[5,13],[19,50],[29,2],[21,18],[4,11],[16,43],[3,9],[29,36],[9,-1],[17,-2],[2,0],[30,30],[21,-7],[14,-51],[67,-23],[5,-50],[5,-6],[34,7],[2,-18],[-33,-47],[29,-37],[14,-22],[6,-62],[19,-36],[45,-50],[0,-96],[1,-49],[24,-68],[50,-32],[42,-17],[-4,-36],[-9,-67],[44,-19],[25,-31],[-2,-43],[-39,-38],[-30,-22],[-16,-14],[1,-36],[29,-28],[1,-45],[-24,-21],[8,-18],[55,-5],[23,-15],[13,14],[-9,22],[0,49],[24,23],[25,-25],[14,-25],[99,10],[440,46],[71,68],[66,46],[126,82],[267,242],[79,85],[70,63],[22,-8],[26,11],[22,53],[51,30],[55,54],[40,6],[17,39],[11,40],[10,40],[-6,67],[3,61],[43,164],[40,195],[43,220],[17,65],[24,45],[0,56],[-13,46],[15,33],[13,3],[16,6],[0,27],[18,38],[-4,43],[5,49],[14,31],[20,11],[6,34],[-8,81],[18,52],[11,60],[20,2],[21,-19],[11,11],[14,15],[-2,49],[19,7],[36,11],[107,81],[101,38],[125,34],[79,29],[59,3],[65,38],[60,96],[64,52],[-7,38],[-8,38],[5,27],[46,34],[42,7],[57,38],[16,53],[99,66],[119,40],[106,81],[47,72],[13,45],[-12,42],[-78,42],[-73,48],[-113,157],[-43,65],[-63,186],[4,36],[7,50],[10,42],[-6,20],[-23,12],[-32,-9],[-22,31],[3,45],[25,52],[20,85],[-15,49],[-24,47],[-28,9],[-1,25],[9,32],[23,69],[18,50],[5,53],[-13,33],[11,39],[17,16],[-7,45],[-28,27],[-37,9],[-44,-20],[-17,15],[-9,42],[15,41],[16,14],[0,20],[-54,43],[-29,15],[-53,103],[-44,32],[-49,60],[-15,43],[-12,41],[-56,51],[-11,36],[-25,29],[-15,47],[-21,38],[-39,14],[-14,27],[-24,49],[-36,36],[-22,56],[-16,27],[-51,81],[-98,182],[-52,103],[-1,43],[-21,38],[-48,47],[-68,7],[-91,-25],[-140,-61],[-88,36],[-103,99],[-99,105],[-72,93],[-86,139],[-40,28],[-15,66],[5,159],[-20,47],[-67,68],[-29,-3],[-14,34],[-4,58],[-54,119],[-57,16],[-35,52],[-27,72],[-97,188],[-141,195],[-155,178],[-62,76],[-52,50],[-58,35],[-77,-51],[-48,-3],[-23,25],[-20,23],[-21,8],[-28,-17],[-54,-3],[-18,18],[-19,33],[-4,39],[-2,32],[9,27],[0,24],[-7,20],[-50,48],[-151,130],[-31,83],[-60,108],[-112,55],[-184,212],[-22,80],[20,140],[-24,76],[-53,4],[-81,-11],[-60,43],[-2,54],[0,101],[-32,127],[-43,10],[-93,-21],[-60,50],[-86,123],[-48,-18],[-68,53],[-39,156],[-50,0],[-72,-61],[-67,3],[-241,114],[-41,67],[-4,61],[-3,61],[12,109],[4,173],[-31,223],[-93,156],[-38,23],[-39,23],[-64,-18],[-84,-61],[-174,-86],[-63,-76],[-76,-7],[-29,129],[-81,220],[-84,101],[5,58],[53,65],[28,235],[115,137],[108,241],[9,174],[-57,202],[-218,515],[43,80],[70,7],[117,-87],[86,98],[134,119],[98,76],[37,43],[37,43],[48,11],[64,-25],[41,-108],[56,-33],[68,-11],[55,76],[32,72],[71,119],[50,7],[91,65],[74,11],[20,10],[40,19],[237,296],[39,249],[38,130],[45,54],[48,-8],[29,-130],[54,-35],[93,-68],[68,-33],[39,54],[47,-15],[30,-99],[30,13],[40,61],[67,11],[74,68],[67,-3],[27,147],[55,80],[43,54],[76,148],[24,126],[0,159],[10,79],[40,16],[43,89],[-20,50],[-51,36],[0,40],[38,25],[50,22],[50,-32],[58,-46],[91,28],[45,69],[33,17],[41,-43],[36,21],[53,40],[47,181],[65,25],[44,-23],[95,16],[76,75],[-48,105],[-69,256],[-57,209],[-108,-29],[-153,127],[-134,93],[-220,242],[-237,155],[-229,383],[-60,39],[-160,65],[-67,80],[-17,288],[-151,296],[-112,227],[-105,119],[19,80],[31,32],[7,61],[-33,73],[-43,86],[-15,58],[7,115],[36,91],[335,191],[61,-6],[4,-84],[-37,-108],[29,-24],[39,-31],[93,144],[69,62],[84,25],[79,-61],[63,-77],[78,44],[26,80],[-2,119],[-17,98],[46,86],[81,32],[120,98],[207,74],[223,88],[147,-3],[62,14],[152,169],[22,195],[-58,130],[-98,169],[-103,289],[-59,83],[-130,40],[-74,-80],[-65,13],[-64,52],[-74,80],[-57,155],[-199,415],[-115,57],[-102,11],[-84,-32],[-38,93],[7,69],[-84,79],[-55,-3],[-60,-33],[-48,90],[-21,65],[23,115],[-45,66],[-40,29],[-79,-58],[-46,43],[-78,25],[-77,8],[-45,21],[-53,-14],[-91,-98],[-88,-151],[-141,-141],[-88,1],[-85,162],[-2,119],[62,191],[174,63],[63,106],[24,134],[-58,350],[-90,231],[-125,277],[31,80],[122,140],[93,98],[-9,65],[-101,104],[-193,170],[-101,101],[-138,162],[-61,50],[-95,145],[-62,112],[-33,43],[-32,-14],[-19,-90],[-36,-22],[-50,18],[-19,68],[-14,87],[-18,207],[-1,9],[14,127],[-24,158],[-17,91],[-21,43],[-55,4],[-34,-69],[-79,-43],[-64,0],[-12,-36],[0,-69],[12,-159],[-77,-75],[-9,-80],[-15,-86],[-35,-33],[-123,-66],[-112,12],[-50,49],[-129,48],[-86,-3],[-96,-36],[-19,61],[24,72],[26,101],[-45,33],[-82,65],[-102,-18],[-86,90],[0,72],[-41,148],[-91,97],[-148,105],[-12,61],[-12,87],[-10,104],[7,192],[-19,173],[-50,54],[-174,68],[-182,105],[-122,170],[-191,292],[-29,122],[-12,123],[-91,137],[-17,206],[58,94],[45,7],[55,0],[48,65],[26,86],[-5,112],[-9,40],[-10,39],[-67,44],[-119,25],[-58,61],[-88,108],[-62,98],[-10,90],[50,29],[101,112],[-29,126],[-83,97],[-96,-68],[-101,151],[-193,228],[-134,108],[-36,126],[-132,235],[17,115],[46,-18],[79,-36],[105,-18],[91,-40],[108,53],[73,102],[19,148],[-57,134],[-76,47],[-168,93],[-201,195],[-373,480],[-100,101],[-72,126],[-31,112],[0,202],[-41,130],[-86,238],[-74,137],[-72,115],[-99,139],[111,287],[87,17],[162,117],[86,115],[144,101],[102,4],[113,-58],[45,-130],[62,-155],[39,-173],[21,21],[109,127],[199,239],[199,287],[122,94],[79,130],[67,101],[-31,36],[-24,15],[-24,14],[-12,101],[-88,155],[-84,34],[-43,179],[-48,224],[-67,267],[-36,205],[46,57],[67,-10],[81,-22],[60,15],[62,-11],[48,25],[9,72],[-72,233],[-14,92],[29,76],[131,21],[141,69],[199,238],[149,168],[136,88],[69,123],[60,151],[-5,98],[-29,83],[-79,86],[-143,228],[-72,165],[12,224],[19,289],[134,350]],[[618092,607959],[1059,663],[1626,1019],[2766,1629],[1035,-116],[1105,291],[1197,816],[1213,851],[641,419],[387,12],[726,466],[2961,1968],[816,465],[773,388],[333,816],[146,827],[649,606],[1383,664],[100,101],[742,750],[197,322],[620,612],[265,262],[127,125],[738,730],[309,245],[263,58],[839,206],[330,119],[368,283],[464,520],[216,224],[263,152],[325,150],[633,153],[332,-23],[325,-164],[355,-233],[139,-128],[271,-338],[224,-256],[214,-79],[171,-8],[387,112],[275,53],[178,-39],[227,-51],[363,-186],[471,-249],[377,-91],[419,83],[315,80],[312,-135],[274,-185],[297,-63],[286,-35],[293,70],[2115,1252],[149,89],[1337,792],[888,641],[425,303],[409,443],[263,338],[317,501],[355,664],[421,1241],[51,193],[108,221],[208,117],[134,-47],[284,-186],[231,11],[689,472],[1845,1440],[557,443],[587,431],[368,170],[455,210],[374,156],[394,117],[333,174],[424,268],[379,129],[440,128],[595,47],[620,65],[362,144],[173,111],[166,227],[186,326],[62,167],[49,99],[64,62],[181,82]],[[667210,634931],[50,21],[51,21],[115,44],[255,41],[301,128],[321,111],[320,110],[294,117],[171,166],[171,166],[114,111],[596,418],[500,563],[417,381],[331,280],[200,197],[133,95],[182,16],[185,-31],[175,-26],[205,35],[137,65],[109,115],[246,352],[177,257],[293,350],[238,346],[205,366],[95,248],[191,495],[194,403],[196,299],[161,145]],[[674539,641336],[55,-228],[2535,-10443],[5407,-22284],[957,-2882],[2513,-7570],[4,-9],[2676,-7654],[46,-131],[3789,-10755]],[[852432,435888],[-375,-117],[-120,-79],[-212,-211],[-487,-215],[-495,-343],[-396,-375],[-468,-122],[-451,-262],[-707,-336],[-149,-119],[-182,-58],[-362,-246],[-177,-64],[-444,-319],[-425,-219],[-316,-97],[-391,-269],[-112,-112],[-503,-244],[-146,-123],[-264,-105],[-260,-243],[-396,-209],[-106,-97],[-339,-128],[-489,-525],[-232,-133],[-123,-4],[-552,-165],[-591,-318],[-226,-166],[-299,-334],[-130,-146],[-157,-114],[-211,-79],[-135,-144],[-138,-93],[-2,-1],[-157,-32],[-282,-120],[-183,-140],[-516,-263],[-466,-333],[-165,-66],[-18,-19],[-89,-93],[-108,-60],[-2,-1],[-433,-242],[-474,-432],[-379,-270],[-565,-208],[-247,-137],[-702,-604],[-522,-321],[-1167,-718],[-394,-171],[-739,-579],[-486,-239],[-138,-39],[-121,-102],[-157,-58],[-119,-123],[-139,-65],[-137,-132],[-256,-159],[-289,-180],[-373,-175],[-390,-266],[-255,-92],[-813,-488],[-127,-199],[-458,-296],[-169,-160],[-721,-494],[-727,-395],[-603,-402],[-296,-149],[-136,-132],[-338,-137],[-162,-110],[-211,-252],[-135,-90],[-92,-127],[-136,-97],[-294,-125],[-110,-116],[-139,-72],[-233,-238],[-154,-51],[-107,-108],[-593,-309],[-926,-837],[-382,-224],[-247,-222],[-403,-216],[-637,-461],[-290,-158],[-246,-180],[-214,-238],[-124,-97],[-143,-51],[-255,-217],[-113,-142],[-1018,-745],[-332,-296],[-380,-268],[-388,-191],[-306,-443],[-240,-170],[-312,-298],[-211,-290],[-297,-255],[-232,-302],[-290,-288],[-771,-575],[-573,-534],[-153,-89]],[[814159,410181],[-50,134],[-49,133],[-36,546],[-58,345],[-162,646],[-20,387],[-50,219],[-220,248],[-156,81],[-141,172],[-56,359],[-107,250],[-20,383],[37,178],[-196,441],[-11,24],[-269,406],[-155,504],[-458,467],[-214,177],[-83,321],[-16,480],[-247,282],[-85,70],[-84,71],[-282,118],[-149,127],[-147,529],[-101,115],[-195,17],[-44,4],[-333,774],[-126,412],[-36,253],[-14,103],[14,201],[26,362],[10,135],[-10,218],[-11,219],[36,140],[7,28],[3,28],[23,193],[-27,117],[-218,228],[-165,275],[-34,401],[-136,296],[-48,104],[-2,8],[-55,288],[-14,222],[-15,221],[1,15],[15,243],[100,547],[259,242],[87,113],[9,11],[286,537],[13,1018],[-1992,3556],[-9619,17169],[-5260,9391]],[[793109,456483],[4522,6378],[34,48],[967,1354],[7204,9610],[28,3],[7108,9913]],[[812972,483789],[99,-36],[159,-58],[321,-116],[231,-84],[2035,-737],[904,-327],[2434,-882],[3297,-1195],[3826,-1386],[173,-62],[138,-50],[169,-62],[70,-25],[380,-138],[5605,-2030],[84,-31],[509,-184],[1961,-710],[2629,-953],[1071,-388],[391,19],[89,4],[170,5],[148,-28],[134,-47],[241,-163],[232,-238],[247,-294],[170,-246],[159,-116],[6,-5],[80,-58],[572,-60],[166,-49],[11,-3],[346,-196],[171,-118],[31,-22],[349,-242],[408,-187],[325,-154],[180,-196],[207,-252],[594,-1078],[489,-876],[539,-966],[49,-86],[250,-341],[808,-956],[192,-266],[482,-710],[231,-345],[65,-98],[81,-121],[72,-108],[10,-16],[203,-315],[176,-405],[35,-81],[55,-158],[68,-187],[99,-336],[174,-429],[43,-332],[23,-145],[14,-88],[498,-865],[2,-4],[23,-41],[20,-33],[5,-9],[0,-6],[104,-864],[16,-134],[84,-658],[62,-340],[20,-183],[1,-13],[-3,-145],[-21,-140],[-65,-443],[-10,-285],[-21,-201],[21,-219],[19,-108],[37,-154],[6,-98],[-15,-144],[-3,-143],[0,-35],[0,-1],[6,-101],[40,-52],[189,-219],[9,-75],[15,-72],[22,-67],[151,-100],[15,-41],[33,-87],[44,-105],[64,-87],[76,-86],[52,-83],[29,-89],[-11,-106],[-27,-82],[-10,-29],[-3,-47],[-8,-103],[22,-100],[33,-206],[-22,-183],[-70,-106],[-23,-73],[-10,-32],[-22,-122],[5,-173],[32,-155],[51,-89],[144,-117],[133,-122],[33,-58],[2,-5],[15,-25],[11,-19],[57,-99],[36,-47],[53,-68],[187,-241],[122,-200],[110,-83],[85,-100],[37,-106],[44,-217],[85,-178],[88,-105],[24,-67],[24,-67],[41,-233],[55,-133],[77,-84],[89,-39],[99,11],[92,45],[100,67],[118,44],[92,-22],[85,-72],[62,-123],[37,-150],[33,-150],[8,-167],[-26,-144],[-15,-117],[11,-111],[24,-103],[2,-8],[12,-52],[3,-14],[13,-53],[10,-44],[2,-10],[2,-7],[35,-143],[-15,-172],[-34,-162],[-2,-10],[-48,-195],[-44,-100],[-26,-161],[-33,-333],[-67,-351],[-43,-226],[-23,-124],[-4,-7],[-48,-98],[-70,-89],[-92,-61],[-103,-23],[-120,26],[-116,58],[-68,29],[-50,21],[-47,-9],[-100,-19],[-88,-56],[-34,-47],[-1,-2],[-1,-1],[-64,-94],[-7,-10],[-56,-79],[-84,-78],[-85,-44],[-132,-23],[-314,-146],[-24,-11],[-109,-55],[-97,-38],[-120,-28],[-166,17],[-92,-55],[-61,-88],[-5,-7],[-15,-22],[-50,-75],[-58,-124],[-58,-124],[-77,-122],[-107,-78],[-125,-44],[-155,-33],[-136,-23],[-111,-33],[-88,0],[-43,-22],[-42,-22],[-48,-73],[-44,-150],[26,-178],[84,-172],[81,-178],[126,-311],[96,-378],[99,-411],[107,-378],[43,-268],[6,-117],[7,-117],[3,-49],[57,-416],[68,-317],[125,-312],[75,-149],[81,-133],[54,-168],[30,-233],[29,-295],[5,-18],[2,-6],[3,-14],[5,-17],[3,-11],[32,-125],[5,-19],[1,-1],[0,-2],[20,-73],[26,-99],[19,-72],[5,-15],[39,-132],[23,-79],[30,-145],[11,-116],[3,-34],[3,-26],[12,-141],[33,-255],[74,-251],[92,-233],[52,-222],[14,-89],[15,-89],[26,-289],[-6,-96],[-12,-193],[-56,-200],[-136,-267],[-19,-50],[-47,-128],[-30,-189],[15,-228],[63,-200],[17,-31],[78,-141],[104,-111],[79,-71],[29,-27],[9,-8],[65,-39],[13,-8],[51,-31],[155,6],[148,94],[121,56],[136,-6],[122,-18],[26,-4],[147,-56],[155,-94],[124,-109],[34,-30],[48,-78],[48,-78],[23,-75],[36,-125],[490,-1863],[37,-139]],[[859015,662546],[-464,584],[-9,12]],[[858542,663142],[-720,468],[-754,1100],[-501,1271],[-1079,1430],[-156,407],[-88,418],[-203,406],[-351,412],[-357,275],[-567,519],[-346,210],[-208,127],[-632,398]],[[852580,670583],[-189,178],[-268,342],[-161,320],[-309,467],[-316,378],[-348,224],[-766,427],[-347,165],[1685,20567],[-182,-41],[-356,-244],[-330,-377],[-424,-340],[-410,-237],[-324,-9],[-206,-86],[-320,-53],[-322,-2],[-306,48],[-205,-83],[-649,-32],[-736,-173],[-133,-131],[-145,-42],[-323,-255],[-657,-229],[-253,-211],[-270,-133],[-170,5],[-75,-151],[-305,-133],[-133,-130],[-116,-211],[-359,-323],[-169,-96],[-86,-153],[-426,-458],[-308,-390],[-184,-149],[-254,-124],[-270,-190],[-297,-271],[-246,-129],[-550,-82],[-127,-62],[-568,-28],[-424,-132],[-119,-116],[-298,-684],[-98,-365],[-206,-357],[-120,-132],[-324,-244],[-417,-376],[-354,-138],[-656,-515],[-107,-114],[-346,-155],[-467,-263],[-658,-464],[-224,-157],[-141,-26],[-142,-26],[-148,42],[-452,-57],[-609,39],[-403,-99],[-133,-87],[-120,-122],[-126,-114],[-107,-227],[-182,-218],[-145,-95],[-465,-437],[-252,-246],[-352,-522],[-189,-284],[-179,-215],[-186,-82],[-407,-163],[-341,-124],[-270,-52],[-2,0],[-288,64]],[[829910,680683],[-1414,8167],[-2533,14625],[-37,212],[-1102,6360],[-2661,15368],[683,185],[246,66],[5675,1536],[3234,875],[813,-620],[1455,-1108],[1345,-1025],[1061,-809],[62,-47],[-30,276],[-17,127],[-10,127],[5,160],[11,99],[21,93],[39,160],[37,164],[52,229],[33,132],[53,157],[104,232],[137,279],[133,247],[184,356],[148,275],[303,569],[118,228],[191,340],[96,119],[538,562],[416,426],[42,44],[102,104],[256,296],[104,150],[383,516],[122,160],[119,177],[127,142],[123,67],[157,38],[190,69],[133,73],[116,105],[88,98],[98,122],[62,124],[77,163],[46,65],[64,84],[69,105],[114,157],[146,215],[73,154],[45,151],[15,157],[-2,145],[-44,177],[-66,180],[-48,146],[-11,139],[42,195],[60,162],[83,169],[59,186],[52,119],[81,142],[85,111],[146,183],[102,186],[83,174],[81,135],[92,114],[103,135],[115,171],[71,145],[38,134],[6,128],[-16,145],[-78,324],[-14,97],[-2,84],[4,91],[24,90],[65,112],[144,180],[41,37],[27,24],[65,37],[64,31],[251,123],[60,24],[43,17],[37,6],[51,2],[29,-8],[78,-21],[106,-54],[75,-34],[83,-19],[67,8],[46,8],[55,35],[68,52],[72,83],[65,92],[50,102],[34,62],[15,36],[19,40],[23,31],[57,61],[124,85],[111,57],[80,33],[53,32],[41,34],[54,43],[48,40],[19,31],[19,30],[43,90],[79,162],[55,118],[46,77],[85,88],[42,52],[52,46],[33,44],[36,84],[63,186],[50,113],[75,104],[98,102],[403,394],[415,419],[6,17],[-1,37],[-8,58],[0,31],[1,40],[3,31],[8,73],[5,20],[2,4],[4,11],[4,8],[13,14],[12,7],[20,11],[44,26],[32,18],[31,33],[68,102],[45,66],[43,64],[2,3],[97,77],[44,43],[62,83],[73,98],[36,49],[37,49],[108,141],[20,30],[118,175],[5,6],[179,270],[179,269],[177,258],[29,45],[132,208],[41,73],[61,114],[81,136],[133,218]],[[849076,744115],[2248,1261],[7618,3561],[15336,7171],[514,240],[194,91],[45,-94],[5,-12],[6,-13],[157,-362],[101,-271],[51,-137],[95,-376],[32,-223],[25,-232],[-49,-112],[-46,-64],[-36,-47],[-2,-77],[17,-60],[57,-80],[40,-67],[27,-41],[-27,-39],[-9,-86],[-29,-3],[-17,83],[-59,35],[-38,-25],[-11,-67],[18,-72],[-26,-27],[-9,-57],[36,-118],[51,-45],[-2,-64],[-66,-31],[-27,-35],[91,-83],[46,-61],[97,-16],[19,-59],[19,-59],[64,-91],[61,-231],[21,-123],[42,-55],[83,-41],[48,-96],[73,-8],[92,-116],[76,-54],[21,-57],[2,-93],[54,-13],[-5,-76],[12,-61],[24,-34],[50,3],[51,3],[34,-70],[40,14],[-6,-68],[6,-96],[48,-13],[83,33],[34,-39],[-11,-60],[-70,-125],[53,-83],[80,0],[71,41],[49,-33],[24,-84],[-2,-111],[38,-74],[38,39],[56,40],[60,74],[70,-25],[40,-77],[15,-70],[61,29],[38,86],[51,16],[46,-77],[51,-108],[67,19],[26,86],[18,107],[55,81],[95,-60],[89,-169],[110,-131],[-32,-44],[0,-51],[47,-35],[59,12],[95,31],[137,135],[80,-26],[43,-44],[35,-7],[34,42],[-17,92],[-18,67],[1,48],[43,-3],[27,38],[13,83],[51,6],[82,-25],[2,-70],[-55,-7],[-61,-25],[15,-48],[50,-19],[51,19],[53,-48],[57,-89],[57,-19],[15,51],[6,108],[17,96],[33,60],[39,-13],[16,-60],[57,-29],[58,3],[57,0],[19,-66],[26,-58],[26,-57],[47,-35],[2,-73],[-23,-32],[-36,3],[-32,-22],[2,-48],[38,-32],[36,10],[47,-13],[6,-35],[-19,-38],[-15,-48],[38,-29],[25,13],[41,41],[29,-3],[6,-60],[-12,-71],[59,-57],[59,-22],[70,-7],[43,-4],[38,-37],[37,-38],[17,-70],[11,-113],[33,-24],[23,-38],[0,-80],[-10,-54],[-36,-42],[-23,-63],[44,12],[38,16],[21,86],[28,55],[45,38],[50,-28],[126,-230],[24,-86],[4,-61],[10,-143],[0,-214],[-8,-203],[15,-99],[40,-61],[23,-111],[4,-99],[-27,-29],[-9,-66],[33,-80],[122,-102],[-7,-73],[-52,-96],[16,-67],[17,-67],[45,-79],[26,-54],[-29,-61],[-8,-73],[34,-26],[50,-19],[41,-54],[42,-70],[48,-115],[-42,-70],[19,-92],[51,-13],[42,80],[59,41],[127,-67],[44,-111],[-10,-86],[12,-61],[45,45],[38,-45],[1,-101],[51,-236],[68,-252],[80,-178],[30,-58],[16,-87],[-31,-75],[23,-83],[51,-22],[25,83],[17,136],[27,84],[64,-26],[32,-150],[-9,-73],[-48,-83],[74,-51],[65,41],[57,-35],[72,-86],[31,-39],[32,-40],[47,-99],[23,-105],[-49,-134],[-57,-54],[-29,-45],[42,-54],[44,-51],[15,-51],[-55,-92],[-55,-70],[-44,-115],[10,-105],[47,-102],[64,4],[-5,-103],[11,-92],[52,0],[45,121],[33,-44],[-6,-125],[57,-22],[83,-32],[33,-73],[40,-112],[41,-91],[57,18],[50,-80],[13,-95],[-17,-89],[42,-118],[42,27],[26,-49],[0,-134],[19,-131],[-9,-99],[-2,-101],[15,-71],[46,-54],[51,13],[59,-22],[72,-105],[80,-121],[114,-83],[85,-121],[46,-29],[61,3],[43,13],[44,-48],[55,-207],[66,-121],[69,-57],[51,-109],[135,-54],[86,10],[47,-26],[36,-70],[10,-97],[19,-65],[48,-45],[64,-22],[73,13],[41,-35],[36,-77],[32,-111],[42,-128],[21,-47],[21,-48],[28,-96],[-21,-162],[14,-93],[-10,-95],[44,-16],[19,113],[76,18],[47,-74],[23,-67],[-4,-89],[-19,-89],[-15,-67],[25,-32],[78,76],[121,87],[54,21],[34,-37],[11,-93],[11,-101],[4,-99],[38,-74],[-34,-92],[-38,-118],[4,-121],[21,-111],[64,-45],[61,-18],[146,-198],[4,-67],[-53,-93],[-13,-79],[-17,-147],[-6,-248],[-21,-217],[21,-143],[72,-198],[36,-3],[34,-16],[-11,-80],[-21,-63],[-46,-32],[-87,13],[-106,22],[-48,-32],[76,-146],[8,-77],[-67,-137],[-18,-52],[-14,-47],[15,-51],[78,-39],[-19,-123],[25,-124],[0,-144],[26,-54],[-19,-47],[-63,-32],[-13,-54],[35,-45],[70,-41],[61,-7],[53,-13],[55,-44],[88,-113],[29,-90],[22,-36],[-23,-56],[-61,-8],[-27,-60],[31,-32],[44,11],[15,-78],[-21,-70],[-6,-67],[55,-38],[42,-102],[40,-13],[30,-57],[-2,-77],[-81,-105],[-78,-108],[-67,-99],[-30,-51],[-29,-51],[-47,-89],[-38,-45],[-66,-72],[-33,-65],[10,-130],[66,-70],[158,-278],[61,-68],[32,-71],[9,-42],[14,-108],[-52,-58],[-76,-28],[-50,-82],[-25,-41],[-97,-161],[-6,-102],[38,-82],[13,-96],[9,-45],[10,-44],[31,-80],[34,-48],[40,-79],[45,-73],[48,-83],[7,-137],[10,-160],[24,-142],[-18,-115],[-61,-115],[-10,-195],[-64,-47],[-31,-78],[-13,-75],[-28,-24],[-29,-30],[2,-61],[38,-54],[49,-57],[50,31],[62,20],[65,-70],[152,-36],[19,-63],[-51,-67],[-99,-42],[-59,-101],[-17,-118],[40,-102],[17,-77],[-69,-92],[-13,-131],[-47,-76],[-80,-35],[-65,-19],[-81,-23],[-6,-92],[40,-83],[46,-59],[26,-110],[-32,-92],[-40,10],[-54,-4],[10,-66],[51,-48],[9,-49],[16,-79],[25,-60],[49,-43],[55,-91],[12,-76],[-14,-61],[-51,-9],[-28,-51],[11,-55],[60,-40],[84,-52],[127,-238],[157,-104],[113,-75],[61,19],[79,22],[75,-25],[55,-105],[15,-128],[50,-121],[62,-44],[80,-51],[48,-23],[106,26],[70,12],[0,83],[52,39],[51,19],[40,35],[30,86],[67,19],[66,-26],[21,-60],[61,-51],[63,9],[39,74],[35,35],[34,-64],[63,-63],[55,-48],[22,-71],[4,-92],[40,-32],[36,35],[46,48],[38,3],[7,-64],[-17,-54],[-64,-28],[-12,-48],[37,-38],[117,16],[36,-48],[61,-32],[38,6],[40,-16],[17,-66],[-25,-80],[71,-57],[42,28],[39,-70],[44,-60],[-2,-92],[15,-71],[40,-22],[48,16],[28,5],[36,-2],[27,-57],[-8,-70],[21,-70],[45,1],[79,5],[79,-45],[25,-83],[14,-80],[66,4],[36,-39],[0,-98],[17,-80],[42,-88],[36,-68],[0,-108],[53,-67],[50,-3],[32,-57],[70,-32],[40,70],[21,70],[38,60],[44,-54],[53,-60],[55,-26],[-21,-86],[27,-41],[62,-13],[-5,-83],[-33,-70],[19,-79],[-21,-39],[-36,-67],[48,-38],[47,-12],[46,-13],[0,-61],[-4,-86],[76,-35],[89,-60],[45,-21],[31,-68],[69,-74],[-4,-67],[8,-105],[51,-83],[40,-19],[41,-8],[31,-43],[2,-54],[-6,-57],[53,-49],[31,-75],[-2,-109],[-17,-136],[17,-131],[-8,-105],[25,-74],[2,-35],[-8,-57],[-28,-22],[-19,-42],[15,-47],[36,-61],[36,32],[29,29],[28,-48],[9,-78],[-26,-40],[-17,-67],[32,-64],[29,-38],[55,-60],[47,-32],[40,67],[32,20],[44,-20],[59,-4],[49,55],[27,89],[34,63],[31,-31],[13,-67],[19,-74],[40,-95],[42,-35],[79,3],[103,83],[0,48],[-19,60],[28,42],[33,3],[19,-48],[28,-80],[57,45],[57,48],[55,3],[37,-11],[34,-34],[47,-9],[34,35],[49,14],[44,-30],[43,-43],[18,-37],[8,-76],[7,-89],[25,-93],[46,-44],[28,-29],[-6,-67],[-47,-76],[0,-105],[-10,-137],[-13,-71],[-53,-35],[-25,-73],[-9,-115],[-4,-111],[-25,-73],[-40,-45],[-3,-54],[19,-57],[7,-23],[67,-22],[57,-22],[32,-134],[63,-150],[57,-143],[41,-162],[31,-83],[43,-71],[17,-66],[-5,-99],[25,-57],[49,-10],[51,42],[50,-13],[51,-7],[40,80],[61,-29],[45,39],[106,-102],[58,-45],[-8,-83],[-4,-76],[36,-48],[50,-35],[32,-29],[19,-54],[42,-44],[17,-51],[-19,-58],[-17,-92],[36,-105],[33,-40],[37,-65],[17,-128],[-2,-57],[-32,-51],[6,-51],[11,-38],[40,-112],[76,-83],[68,-60],[69,-17],[74,-37],[82,15],[55,-12],[53,45],[34,19],[44,-4],[24,-70],[4,-66],[25,-77],[59,-48],[66,-28],[12,47],[24,29],[31,-19],[2,-57],[34,-58],[49,-35],[19,-41],[-13,-45],[-19,-67],[-19,-67],[-2,-108],[9,-90],[-39,-130],[-34,-52],[-46,-65],[-13,-102],[13,-128],[44,-153],[41,-108],[819,-1124],[768,-1144],[174,-261],[78,-131],[38,-86],[36,-86],[21,-76],[12,-99],[3,-127],[8,-99],[23,-156],[30,-159],[21,-163],[21,-150],[11,-110],[19,-109],[19,-67],[27,-70],[49,-77],[76,-114],[48,-141],[44,-117],[47,-166],[13,-150],[-17,-400],[-73,-2965],[-20,-827],[23,-184],[59,-281],[91,-283],[35,-102],[30,-86],[66,-177],[640,-1595],[184,-374],[780,-1854],[294,-729],[59,-163],[52,-192],[23,-168],[55,-665],[32,-455],[7,-113],[1,-7],[28,-191],[35,-188],[54,-143],[93,-83],[57,-99],[40,-111],[24,-121],[46,-166],[87,-232],[129,-383],[92,-331],[85,-344],[162,-468],[32,-156],[17,-147],[-13,-149],[-40,-201],[-228,-816],[-152,-589],[-566,-2140],[-194,-749],[-44,-146],[-57,-93],[-66,-54],[-122,-45],[-1069,-242],[-126,-67],[-119,-127],[-131,-127],[-116,-51],[-95,-19],[-141,-35],[-79,-25],[-1418,-523],[-55,-51],[-51,-67],[-42,-105],[-43,-205],[-41,-133],[-41,-134],[-52,-89],[-241,-296],[-617,-500],[-200,-153],[-195,-159],[-175,-163],[-139,-146],[-57,-96],[-53,-143],[-17,-163],[-6,-411],[-30,-194],[-63,-140],[-139,-293],[-133,-239],[-182,-315],[-433,-880],[-277,-481],[-168,-299],[-163,-191],[-201,-233],[-90,-131],[-71,-127],[-217,-665],[-48,-89],[-74,-131],[-78,-86],[-86,-89],[-30,-102],[-51,-73],[-78,-99],[-146,-137],[-99,-83],[-118,-76],[-72,-45],[-61,-41],[-68,-23],[-118,19],[-78,26],[-55,29],[-53,-16],[-38,-45],[-48,-84],[-24,-116],[15,-324],[4,-255],[74,-1717],[23,-822],[-7,-168],[-12,-154],[-15,-121],[-35,-130],[-53,-142],[-59,-115],[-273,-724],[-36,-106],[-25,-90],[-10,-113],[0,-88],[12,-98],[28,-84],[49,-94],[98,-152],[31,-57],[27,-58],[7,-78],[-16,-104],[-175,-1102],[-22,-216],[-20,-150],[-32,-136],[-31,-109],[-32,-82],[-118,-167],[-32,-81],[-42,-64],[-43,-104],[-67,-88],[-192,-357],[-92,-173],[-34,-63],[-9,-42],[-25,-54],[-37,-71],[-97,-122],[-81,-79],[-93,-65],[-72,-50],[-48,-58],[-33,-74],[-44,-155],[-42,-96],[-46,-80],[-73,-99],[-85,-114],[-105,-171],[-76,-97],[-69,-54],[-68,-23],[-88,-8],[-65,0],[-107,27],[-105,21],[-124,29],[-77,11],[-86,-30],[-202,-62],[-95,-34],[-105,-79],[-152,-113],[-52,-12],[-74,7],[-128,32],[-51,4],[-50,-13],[-108,-48],[-651,-263],[-143,-63],[-46,-21],[-200,-77],[-99,-16],[-98,-5],[-112,0],[-569,21],[-175,-9],[-89,-20],[-70,-25],[-55,-28],[-44,-42],[-39,-64],[-104,-220],[-330,-567],[-35,-58],[-41,-63],[-31,-72],[-13,-98],[-1,-167],[-13,-129],[-6,-124],[19,-121],[25,-88],[8,-67],[-231,-319],[-54,-74],[-11370,-15720],[-4459,-6164],[-205,238],[-447,993],[-183,982],[-318,1315],[-605,979],[-413,841],[-625,885],[-370,398],[-369,397],[-793,1244],[-378,920],[-85,885],[-152,704],[-350,774],[-243,536]],[[605257,560532],[-301,-268],[-58,-1218],[-113,-287],[-1555,-228],[-1067,1020],[-801,427],[-357,1064],[-207,-5],[-126,-736],[-411,-595],[-1061,-600],[-233,-818],[-835,-764],[-69,-311],[251,-1171],[50,-1001],[-17,-1112],[-294,-1213],[-250,-573],[-290,-247],[-377,-77],[-588,751],[-511,-200],[-81,-295],[127,-985],[434,-660],[65,-325],[-381,-565],[-79,-373],[34,-1853],[-392,-1513],[-493,-676],[-7,-413],[640,-991],[-802,-328],[-389,-601],[-474,848],[-296,235],[-279,-77],[-205,-837],[8,-705],[-226,-503],[-44,-27],[-306,-187],[21,-266],[754,-877],[65,-411],[-121,-1154],[-366,-533],[27,-223],[1295,-57],[190,-227],[-369,-696],[28,-1427],[-116,-1042],[176,-443],[693,-843],[626,-1921],[-112,-605],[-928,-2337],[41,-62],[974,-347],[114,-187],[-469,-595],[8,-215],[301,-436],[4,-62],[37,-520],[-195,-418],[-298,-21],[-657,-273],[-284,-568],[-586,-161],[-332,205],[-163,506],[-735,285],[-148,-217],[17,-531],[83,-459],[-51,-617],[-233,-123],[-267,195],[-141,12],[-240,-362],[-178,-775],[-473,-780],[-912,-580],[-191,-317],[-70,-571],[-213,-319],[-84,-505],[-8,-1644]],[[589405,518015],[-11376,7159],[-5159,3191],[-153,95],[-39,24],[-16,10],[-96,59],[-13314,8571]],[[559252,537124],[-32,61],[-12,126],[-3,54],[-26,30],[-49,25],[-42,31],[-22,51],[-33,27],[-17,81],[6,56],[25,24],[48,38],[41,104],[57,130],[59,79],[36,83],[104,134],[74,122],[42,94],[83,128],[42,4],[93,-34],[125,-41],[109,-24],[51,26],[52,102],[42,94],[14,108],[-29,112],[-36,87],[-18,88],[-25,161],[-33,159],[12,106],[-95,57],[-50,35],[-84,-19],[-83,-38],[-94,8],[-50,-13],[-41,-63],[-84,19],[-75,8],[-74,73],[-85,44],[-99,102],[-32,94],[10,227],[-30,158],[55,305],[-28,161],[-107,177],[-146,296],[-249,409],[-17,271],[40,283],[320,475],[225,724],[22,754],[10,31],[15,44],[116,339],[453,111],[325,171],[465,161],[544,-202],[200,-181],[438,-51],[197,328],[127,817],[227,368],[408,356],[588,2135],[219,610],[275,452],[-41,549],[-257,555],[14,809],[751,927],[147,757],[-112,1137],[77,643],[772,793],[104,466],[163,372],[445,312],[219,621],[247,1108],[66,526],[28,222],[76,841],[7,928],[-247,951],[-309,759],[-316,769],[-270,524],[-325,123],[-320,122],[7,95],[85,1025],[190,409],[332,352],[198,256],[275,217],[379,218],[209,262],[105,538],[-86,518],[-86,380],[-138,190],[-96,208],[-86,214],[-43,231],[-98,222],[-184,167],[-203,371],[-178,602],[-80,563],[-30,215],[-4,21],[-98,543],[-4,21],[-12,121],[-49,469],[-22,239],[-41,456]],[[564907,573523],[43,23],[27,14],[1,1],[22,12],[41,22],[866,470],[85,47],[197,107],[194,105],[310,168],[198,107],[2,1],[7,3],[420,229],[3,2],[26,14],[1,0],[0,1],[153,83],[625,339],[571,310],[770,418],[284,155],[1,0],[1,0],[1533,345],[859,351],[1398,1179],[1297,1028],[119,94],[135,173],[558,267],[287,62],[786,228],[78,2],[366,199],[701,210],[890,369],[96,91],[418,394],[515,486],[16,16],[434,428],[148,171],[40,27],[40,28],[72,43],[134,69],[86,51],[66,46],[59,48],[50,38],[40,26],[73,44],[18,53],[-12,73],[-8,39],[-10,85],[-6,36],[1,109],[0,129],[-3,45],[0,70],[1,79],[3,96],[-11,134],[-12,130],[-3,174],[-6,85],[-13,46],[-17,44],[-21,32],[-29,6],[-20,45],[-26,51],[-3,45],[0,1],[9,35],[37,41],[81,55],[76,52],[123,98],[93,70],[87,38],[62,22],[50,1],[1,-1],[1,-1],[44,-37],[58,-29],[77,12],[73,27],[100,48],[105,30],[75,13],[101,40],[70,42],[96,82],[17,10],[184,113],[29,3],[29,11],[24,15],[120,77],[52,23],[46,32],[123,73],[116,66],[119,79],[83,64],[64,28],[66,35],[66,49],[62,37],[75,41],[78,39],[85,50],[118,71],[108,65],[60,46],[31,64],[34,80],[48,55],[126,101],[122,94],[56,54],[42,70],[86,65],[76,36],[79,68],[76,40],[84,56],[77,38],[95,34],[3,2],[114,75],[130,87],[2,0],[75,15],[51,-56],[54,-66],[2,0],[2,0],[59,-3],[102,44],[119,62],[133,58],[6,4],[112,68],[47,28],[92,60],[107,71],[116,76],[159,105],[164,108],[224,174],[223,207],[3,2],[17,14],[214,167],[2,1],[2,1],[3,2],[413,238],[142,82],[98,73],[201,152],[5,4],[1079,678],[1083,680],[2030,1274],[745,469],[52,32],[1,1],[716,543],[284,216],[35,26],[42,32],[1149,680],[125,72],[495,288],[1464,851],[1464,851],[2473,1613],[1376,897],[1907,1218],[2442,1422],[1148,720],[1073,756],[1508,969],[5360,3894],[902,565],[415,261],[291,183],[190,119]],[[682756,383826],[54,-78],[106,-151],[174,-251],[75,-96],[20,-179],[-31,-35],[-198,-233],[-332,-51],[-326,-113],[-557,-51],[-385,-176],[-337,-196],[-375,-27],[-381,-143],[-90,-150],[-65,-212],[8,-189],[111,-433],[-27,-187],[-140,-360],[-50,-340],[-58,-1341],[28,-188],[65,-196],[91,-164],[120,-54],[185,67],[153,126],[136,186],[228,403],[118,92],[156,-1],[139,-53],[242,-281],[113,-203],[106,-685],[326,-1030],[22,-254],[-43,-200],[-178,-356],[-375,-478],[-142,-121],[-260,-120],[-297,-80],[-297,-26],[-106,-151],[-48,-193],[-2,-365],[102,-170],[300,-263],[143,-51],[177,-9],[121,-120],[76,-254],[6,-194],[-141,-183],[-345,-201],[-281,-239],[-121,-143],[-100,-199],[-177,-872],[-127,-106],[-84,-135],[-28,-260],[-64,-225],[-225,-301],[-255,-461],[-156,-350],[-62,-251],[70,-416],[78,-145],[148,-158],[288,-196],[254,-35],[269,42],[454,343],[141,37],[156,-162],[21,-246],[-28,-806],[33,-188],[104,-125],[144,-104],[737,-54],[197,-67],[138,-103],[103,-126],[268,-535],[40,-225],[-167,-335],[-144,-395],[30,-523],[-36,-232],[-70,-254],[-197,-492],[-22,-183],[211,-837],[-42,-616],[374,-615],[99,-202],[138,-416],[84,-155],[114,-132],[272,-312],[361,-197],[177,-29],[195,35],[497,3],[574,-157],[122,-61],[350,-308],[232,-295],[148,-120],[476,-253],[396,-69],[415,96],[658,34],[487,145],[122,122],[294,892],[144,201],[176,145],[91,118],[459,847],[261,151],[377,85],[325,312],[190,495],[105,415],[98,188],[115,125],[284,-68],[367,-398],[175,-339],[416,-607],[446,-340],[558,-524],[142,-93],[127,-21],[78,248],[-84,731],[-1,660],[135,76],[324,-242],[177,-22],[199,122],[275,268],[374,218],[425,326],[219,82],[159,-14],[243,-85],[113,-166],[185,-894],[77,-262],[267,-558],[164,-177],[453,-70],[154,-99],[128,-21],[302,214],[102,613],[127,126],[153,38],[291,-24],[163,104],[114,363],[84,478],[346,840],[35,245],[-13,227],[-101,427],[14,274],[108,152],[275,84],[121,106],[41,226],[-50,232],[-111,267],[-59,238],[9,319],[177,146],[302,-26],[565,376],[165,38],[847,-218],[545,-203],[175,12],[135,62],[127,131],[48,196],[30,703],[126,600],[64,619],[162,366],[156,133],[220,17],[125,-53],[334,-3],[268,128],[240,215],[99,143],[155,433],[51,218],[176,131],[155,-120],[231,-248],[201,-144],[700,-201],[332,-35],[509,18],[345,-215],[354,-347],[134,-47],[522,20],[192,-21],[275,-92],[326,281],[119,49],[136,3],[48,-182],[-1,-247],[-84,-357],[42,-169],[115,-94],[127,-17],[56,-157],[51,-363],[-107,-354],[-178,-358],[-126,-337],[-185,-279],[-168,-350],[8,-224],[75,-156],[249,-221],[119,-345],[77,-147],[44,-168],[5,-266],[-25,-193],[-171,-525],[-183,-734],[-65,-638],[-49,-193],[-141,-299],[-120,-464],[-49,-620],[62,-391],[-6,-189],[-529,-836],[-65,-190],[-184,-848],[-256,-515],[-70,-193],[-19,-189],[23,-37],[61,-98],[494,-185],[278,-208],[153,-48],[135,50],[121,87],[191,-3],[325,-142],[375,-246],[890,-320],[408,-80],[566,126],[325,-107],[155,-18],[142,39],[489,296],[414,117],[220,322],[240,91],[291,503],[339,311],[91,145],[76,202],[44,211],[100,203],[587,623],[127,65],[148,19],[317,-84],[241,-134],[203,-194],[180,-170],[120,-192],[183,-475],[289,-500],[121,-79],[141,36],[267,196],[198,94],[425,19],[254,116],[85,159],[35,206],[-78,446],[-176,305],[-55,192],[-1,566],[-84,434],[-135,406],[-65,480],[0,300],[79,446],[239,535]],[[718536,363037],[525,-239],[197,-204],[360,-47],[207,-232],[281,-14],[276,187],[98,107],[198,87],[176,12],[523,-138],[1138,6],[347,-50],[92,-131],[206,-591],[331,-76],[84,-49],[242,-363],[219,-50],[147,70],[191,260],[126,34],[469,-173],[141,-207],[479,-183],[114,-174],[8,-221],[-144,-1056],[134,-15],[245,-24],[170,-8],[117,0],[117,30],[105,57],[101,103],[97,131],[138,226],[97,152],[98,95],[46,29],[47,29],[123,38],[164,16],[278,-11],[125,22],[121,38],[147,82],[378,280],[119,87],[95,33],[101,17],[89,2],[141,-30],[118,-36],[119,-36],[105,-18],[136,-3],[201,66],[354,188],[966,541],[404,224],[25,-177],[-222,-92],[-100,-46],[-87,-54],[-64,-43],[-70,-54],[-64,-49],[-88,-90],[-68,-100],[-58,-124],[-62,-155],[-13,-31],[-82,-248],[-81,-234],[-23,-199],[4,-174],[-15,-118],[-37,-220],[-31,-421],[-34,-426],[-7,-126],[48,-302],[35,-411],[-19,-163],[-101,-415],[-31,-102],[-100,-49],[-89,-53],[-68,-82],[-61,-82],[-30,-62],[-4,-106],[-6,-170],[-5,-171],[28,-460],[11,-272],[57,-182],[80,-108],[187,-260],[37,-79],[37,-78],[33,-114],[32,-111],[29,-46],[46,-86],[59,-92],[31,-41],[51,-62],[32,-41],[21,-81],[21,-87],[35,-151],[77,-319],[49,-232],[15,-92],[-1,-73],[-5,-66],[-16,-105],[-64,-312],[-9,-60],[-10,-41],[-23,-57],[-37,-82],[-61,-147],[-41,-95],[-61,-61],[-130,-83],[-58,-28],[-66,-4],[-43,12],[-267,89],[-75,8],[-29,-8],[-29,-7],[-32,-46],[-88,-158],[-36,-74],[-37,-90],[-42,-57],[-99,-89],[-109,-63],[-192,-77],[-342,-171],[-89,-65],[-61,-78],[-114,-141],[-102,-153],[-55,-65],[-51,-82],[-28,-81],[-24,-103],[-37,-58],[-30,-30],[-61,-57],[-16,-36],[-27,-86],[-19,-87],[-2,-43],[-3,-44],[6,-47],[12,-64],[10,-66],[3,-76],[1,-110],[0,-103],[9,-110],[15,-84],[38,-99],[67,-169],[55,-163],[32,-46],[34,-29],[36,-44],[21,-58],[13,-84],[8,-90],[-13,-97],[-18,-62],[-58,-211],[-16,-79],[-22,-62],[-39,-76],[-30,-78],[-35,-115],[2,-71],[36,-156],[27,-77],[13,-81],[19,-115],[14,-49],[19,-26],[108,-63],[25,-29],[19,-43],[10,-43],[1,-36],[2,-36],[-4,-110],[-4,-100],[10,-51],[24,-71],[22,-69],[7,-43],[1,-62],[1,-163],[-9,-151],[-17,-144],[-22,-99],[-35,-109],[-118,-282],[-87,-307],[-2,-22],[60,-28],[60,-27],[100,-56],[70,-69],[93,-112],[116,-115],[74,-66],[215,-180],[129,-112],[61,-76],[44,-65],[37,-76],[43,-122],[57,-157],[98,-191],[61,-125],[50,-154],[174,-638],[48,-118],[57,-98],[113,-112],[457,-432],[44,-64],[22,-43],[4,-49],[-122,-418],[-54,-322],[-53,-220],[-30,-141],[0,-76],[13,-52],[38,-43],[45,-21],[49,-35],[20,-37],[16,-61],[38,-76],[107,-128],[95,-145],[35,-64],[25,-65],[10,-52],[16,-44],[24,-39],[94,-95],[136,-245],[157,-322],[86,-169],[66,-91],[46,-49],[75,-59],[49,-35],[50,-10],[71,17],[166,59],[44,38],[45,64],[49,92],[40,100],[1247,-1203],[86,-83],[304,-300],[696,-687],[461,-688],[90,-134],[375,-556],[420,-622],[447,-662],[0,-213],[2,-183],[5,-54],[9,-55],[17,-44],[237,-317],[186,-257],[114,-159],[195,-260],[119,-125],[65,-51],[95,-74],[94,-96],[58,-87],[22,-92],[3,-62],[-44,-280],[-1,-4],[43,-135],[97,-108],[32,-46],[21,-40],[22,-40],[14,-49],[3,-9],[16,-58],[51,-235],[14,-61],[46,-221],[20,-175],[-1,-215],[-1,-16],[-8,-121],[-17,-180],[-16,-77],[-11,-49],[-12,-45],[-43,-89],[-59,-132],[-44,-94],[-27,-77],[-27,-113],[-29,-97],[-11,-61],[-4,-59],[4,-50],[5,-50],[10,-40],[26,-99],[33,-99],[39,-111],[38,-84],[45,-76],[77,-124],[39,-109],[9,-43],[9,-43],[19,-110],[13,-103],[-1,-94],[-9,-93],[-9,-66],[2,-75],[7,-43],[2,-14],[27,-114],[32,-117],[20,-71],[23,-55],[18,-31],[24,-35],[33,-42],[35,-41],[29,-65],[24,-58],[44,-165],[85,-290],[45,-139],[18,-73],[37,-108],[70,-135],[35,-128],[37,-166],[45,-196],[27,-165],[11,-87],[3,-152],[24,-235],[10,-125],[7,-110],[-12,-76],[-22,-70],[-10,-31],[-40,-95],[-11,-20],[-43,-74],[-77,-98],[-134,-157],[-58,-64],[-3,-4],[-60,-68],[-198,-241],[-20,-25],[-2,-3],[-161,-203],[-28,-47],[-20,-60],[-14,-59],[-4,-69],[7,-34],[7,-35],[24,-88],[44,-122],[14,-96],[22,-179],[15,-52],[23,-84],[-3,-90],[-23,-144],[-18,-68],[-59,-103],[-13,-69],[-7,-114],[-1,-82],[0,-15],[0,-111],[12,-179],[23,-119],[75,-255],[30,-111],[81,-298],[37,-138],[32,-118],[48,-126],[63,-144],[20,-46],[19,-44],[103,-234],[17,-170],[14,-195],[31,-214],[35,-209],[41,-408],[15,-189],[5,-59],[1,-5],[2,-25],[9,-106],[17,-257],[51,-732],[59,-821],[14,-181],[20,-347],[3,-95],[8,-289],[3,-135],[8,-98],[3,-9],[39,-138],[25,-56],[63,-140],[279,-479],[81,-139],[20,-43],[9,-59],[63,-400],[13,-156],[4,-79],[13,-293],[46,-367],[2,-11],[24,-171],[59,-307],[5,-89],[1,-16],[5,-88],[-10,-103],[-1,-11],[-13,-150],[-4,-166],[-1,-18],[13,-232],[30,-197],[57,-249],[33,-101],[9,-16],[37,-65],[74,-90],[70,-97],[47,-83],[30,-92],[13,-85],[2,-174],[1,-418],[0,-22],[10,-156],[23,-152],[3,-17],[24,-155],[47,-299],[10,-64],[628,-314]],[[740315,309309],[-518,-1986],[-240,-1088],[-159,-723],[-81,-366],[-15,-78],[-366,-1934],[-264,-1398],[-117,-621],[-136,-719],[-66,-498],[-134,-1015],[-22,-164],[-86,-657],[-59,-442],[-19,-251],[-24,-314],[-70,-356],[-79,-526],[-80,-419],[-21,-108],[-34,-176],[-128,-28],[-94,-74],[-105,-6],[-118,-51],[-129,71],[-154,-68],[-113,274]],[[687492,312174],[-152,170],[-117,69],[-125,50],[-43,33],[-5,80],[7,35],[3,19],[29,50],[-7,39],[50,59],[21,72],[53,65],[19,94],[-33,76],[-39,33],[-74,32],[-79,-7],[-96,36],[-91,54],[-84,87],[-72,130],[-69,159],[-15,210],[20,217],[43,227],[14,141],[-36,120],[-33,91],[-111,25],[-80,64],[-102,-6],[-127,89],[-63,224],[-80,89],[-111,32],[-165,-25],[-186,-103],[-239,-44],[-341,-81],[-165,2],[-165,2],[-85,77],[-4,108],[32,45],[33,45],[-18,44],[-119,-32],[-27,60],[27,75],[26,76],[67,26],[-4,76],[-127,71],[-85,76],[-101,96],[-178,6],[-118,147],[-72,-51],[-64,102],[-114,45],[-73,-64],[-143,160],[-59,-13],[-115,-6],[-114,134],[-68,76],[17,134],[34,39],[34,38],[59,179],[13,223],[38,166],[-38,160],[-62,56],[-2,104],[-93,-32],[-42,51],[-72,32],[13,76],[-85,90],[-110,13],[-86,8],[-79,55],[-47,-32],[-80,-6],[-38,64],[-51,-19],[-51,76],[-59,-51],[-51,-51],[-39,56],[-75,27],[-80,13],[-5,70],[-12,102],[42,74],[-21,54],[-43,26],[-46,-32],[-38,-90],[-76,-70],[-102,26],[-89,19],[-37,34],[-43,81],[-132,19],[-325,306],[-80,149],[-57,38],[-91,59],[-259,80],[-132,-25],[-165,-58],[-98,36],[-38,14],[-96,-24],[-115,-51],[-161,-90],[-135,-83],[-123,-51],[-237,-19],[-93,57],[-250,-25],[-423,-102],[-616,-422],[-41,-189],[-529,-300],[-587,111],[-142,233],[-212,63],[-170,-114],[-345,-379],[-290,-45],[-156,27],[-1011,-848],[-142,-27],[-120,-107],[-80,-141],[-80,-142],[-321,-217],[-197,-55],[-1056,144],[-81,7],[-93,19],[-63,-32],[-81,-26],[-148,-63],[-114,-71],[-123,-96],[-161,-70],[-157,26],[-139,115],[-74,144],[-74,124],[-85,243],[-44,218],[-113,235],[-29,128],[-17,172],[-64,434],[-80,396],[-57,150],[-58,201],[-4,154],[22,255],[-34,134],[-64,134],[-25,147],[-60,268],[-165,505],[22,191],[63,275],[-38,160],[-42,86],[0,54],[-47,95],[-46,36],[-125,119],[-91,88],[-32,42],[-9,83],[-17,77],[-46,38],[-46,24],[-32,7],[-45,50],[-28,36],[-26,29],[-28,4],[-30,-4],[-32,-29],[-65,-57],[-54,-63],[-17,-79],[-56,-58],[-69,32],[-52,55],[-40,92],[-42,61],[-48,3],[-42,-28],[-58,11],[-24,65],[2,42],[85,45],[33,37],[-2,70],[-50,68],[-10,56],[-18,100],[-16,88],[-36,58],[-70,47],[-24,92],[14,60],[29,76],[46,86],[-7,92],[3,66],[14,123],[-30,36],[-97,-15],[-7,42],[25,118],[-11,52],[-62,24],[-106,18],[-85,24],[-10,47],[-10,47],[37,60],[9,68],[-19,30],[-72,15],[-76,63],[-42,-24],[-43,-76],[-51,5],[-54,79],[-40,89],[4,70],[43,31],[59,-18],[55,-19],[50,26],[-25,108],[-47,38],[-80,-31],[-80,0],[-34,-45],[-41,-50],[-39,58],[-39,56],[-46,172],[-55,90],[-39,153],[-29,134],[-13,102],[-17,64],[-51,51],[-55,51],[-25,70],[-4,77],[-43,102],[-38,141],[-42,140],[-25,141],[25,121],[13,191],[0,128],[-38,262],[-77,166],[-118,107],[-55,97],[8,102],[43,77],[-26,141],[-17,108],[21,109],[115,89],[55,19],[76,-38],[135,38],[53,85],[41,177],[4,83],[-9,128],[-21,127],[4,192],[22,128],[-1,119],[-71,174],[33,384],[39,178],[-9,147],[34,77],[59,102],[51,83],[0,83],[-51,96],[-21,96],[25,115],[43,70],[68,102],[-17,153],[59,185],[127,45],[42,51],[-68,205],[17,153],[-50,191],[12,115],[51,58],[59,51],[83,177],[32,123],[17,128],[-13,115],[-51,185],[-30,90],[-33,101],[-26,141],[-25,166],[0,166],[-30,108],[-76,154],[-16,104],[-35,100],[-21,45],[21,146],[-21,132],[-12,47],[-31,2],[-33,40],[-54,-24],[-45,15],[-40,62],[-35,44],[-2,27],[16,7],[57,30],[0,39],[-10,52],[6,74],[24,27],[48,16],[48,32],[35,60],[-7,71],[24,55],[11,45],[-17,62],[-26,41],[-39,17],[-31,-19],[-11,-48],[-29,-89],[-14,-14],[-20,18],[-8,112],[11,72],[-5,52],[-18,19],[-21,-37],[-32,-32],[-19,18],[2,28],[3,89],[-16,45],[-26,0],[-13,-34],[-10,-109],[-18,-12],[-16,26],[-4,54],[-6,103],[-19,14],[-27,2],[-33,-32],[-38,-25],[-28,16],[-27,21],[-14,38],[-14,-2],[-23,-16],[-33,3],[-7,34],[-19,11],[-14,-27],[-9,7],[-8,38],[-26,26],[-69,-9],[-50,16],[-77,103],[-44,34],[-58,7],[-66,57],[-20,6],[-15,5],[-32,9],[-3,1],[-43,57],[-25,114],[25,62],[13,50],[-53,42],[-28,6],[-22,-25],[-10,-77],[-24,-1],[-43,-39],[-52,-2],[-18,45],[13,93],[-13,61],[-41,35],[-41,5],[-54,-14],[-26,22],[2,24],[10,29],[28,28],[39,18],[34,-4],[10,29],[-24,53],[-5,52],[20,72],[26,16],[-5,36],[-27,11],[-27,14],[-61,57],[5,49],[17,-1],[32,17],[24,29],[7,55],[-14,69],[-72,32],[-25,14],[-11,25],[6,41],[19,44],[26,27],[44,21],[41,0],[2,36],[-28,41],[0,55],[-22,1],[-19,2],[-85,188],[-29,77],[30,284],[51,37],[33,98],[-29,97],[-31,75],[43,25],[26,26],[24,91],[-6,41],[-24,25],[-30,12],[-59,-18],[-33,2],[-31,34],[-5,117],[-10,135],[-18,41],[-32,23],[-25,-5],[-20,-20],[-8,-66],[19,-97],[26,-172],[-3,-64],[-18,-36],[-35,-27],[-36,22],[-21,39],[-87,332],[-16,154],[-20,91],[10,66],[6,159],[-14,142],[27,52],[24,73],[-11,37],[-28,56],[1,36],[20,68],[21,21],[4,39],[14,23],[54,25],[36,20],[23,48],[8,28],[-7,16],[-22,-2],[-42,-51],[-43,0],[-21,30],[-7,108],[6,66],[-1,55],[5,92],[-16,13],[-32,39],[-5,55],[33,89],[30,17],[23,20],[4,30],[-4,50],[-7,32],[-21,2],[-14,-25],[-30,-36],[-28,20],[-8,47],[-6,20],[-20,0],[-12,36],[8,28],[36,30],[42,22],[35,39],[20,0],[20,-16],[17,0],[20,32],[-15,42],[-19,75],[-18,3],[-20,-17],[-36,-87],[-25,-22],[-41,15],[-10,33],[21,94],[10,45],[-14,44],[-28,7],[-23,-12],[-82,-47],[-32,-29],[-21,5],[-4,21],[5,59],[12,48],[42,23],[11,46],[-32,60],[-14,34],[-32,9],[-21,-7],[-10,-21],[15,-40],[17,-10],[13,-37],[-7,-29],[-19,-14],[-23,-2],[-29,20],[-28,16],[-53,12],[-11,14],[-5,22],[39,17],[30,43],[1,26],[-23,21],[-39,13],[-9,32],[25,39],[3,48],[-15,34],[-20,36],[-29,0],[-46,-45],[-16,-62],[-26,-35],[-18,7],[-23,53],[-18,167],[-20,60],[-23,6],[-18,-24],[-14,-40],[-11,-86],[-12,-67],[-24,-27],[-21,-49],[-26,-9],[-22,25],[-9,53],[15,144],[16,42],[14,38],[-6,42],[-22,16],[-28,-7],[-21,-21],[-46,-15],[-28,-30],[5,-26],[39,-22],[7,-37],[-7,-30],[-37,-4],[-23,22],[-36,17],[-53,2],[-81,71],[-38,43],[-23,-4],[-24,-32],[-22,-53],[-35,-62],[-23,0],[-8,-27],[-21,7],[-95,72],[-28,51],[8,57],[30,48],[30,16],[-9,48],[-20,24],[-31,8],[-65,12],[-23,27],[-61,39],[-49,-4],[-49,23],[-25,34],[1,14],[45,5],[33,4],[38,23],[13,71],[16,55],[-6,20],[-29,14],[-31,-16],[-25,-39],[-32,0],[-35,5],[-5,36],[15,33],[38,41],[38,36],[-4,128],[3,69],[53,43],[24,56],[46,7],[60,-16],[54,47],[35,60],[31,20],[4,39],[-77,104],[-23,-7],[-11,-32],[-20,-48],[-45,-1],[-58,14],[-10,32],[14,37],[-23,11],[-46,-2],[-42,-11],[-21,119],[38,34],[20,48],[-10,25],[-20,5],[-26,-11],[-31,-3],[-9,108],[-17,39],[-30,7],[-13,-25],[16,-37],[-25,-44],[11,-45],[-25,-21],[-36,2],[-29,8],[-12,33],[3,46],[-14,39],[-18,67],[4,26],[21,6],[67,9],[19,59],[13,35],[-13,23],[-49,32],[-10,36],[10,30],[-35,91],[-26,14],[-17,-25],[-12,-39],[-7,-101],[-21,-34],[-39,-23],[-41,-27],[-36,-37],[-50,-23],[-27,19],[-14,57],[-23,39],[-16,0],[-32,-32],[-54,-5],[-28,25],[-3,30],[24,50],[12,39],[-19,28],[-24,7],[-17,-17],[-16,-22],[-41,-49],[-47,-39],[-61,3],[-50,-31],[-110,77],[-10,55],[21,34],[-10,18],[-19,12],[-46,16],[-56,-28],[-24,14],[-45,32],[-34,55],[8,44],[0,36],[-38,44],[-22,55],[-14,-25],[0,-80],[-5,-83],[-39,-50],[-33,20],[4,31],[18,46],[11,64],[-26,8],[-51,-17],[-34,-38],[-20,25],[8,38],[-12,108],[-9,33],[14,11],[22,8],[24,-28],[20,-24],[20,19],[13,52],[15,39],[-11,36],[-50,-31],[-33,-11],[-36,3],[-64,22],[-45,22],[-17,33],[-6,71],[-16,37],[-31,24],[-7,75],[-28,52],[-33,-5],[-25,-42],[-23,-68],[-57,-34],[-41,28],[35,107],[20,119],[44,85],[13,75],[-18,63],[-57,-8],[-18,-77],[-20,-53],[-30,8],[-23,64],[-37,80],[-58,44],[7,66],[22,-22],[29,-25],[38,11],[6,69],[-6,58],[37,107],[-22,42],[-49,16],[-46,-55],[-33,-30],[-33,11],[0,55],[13,11],[13,11],[47,83],[35,35],[46,-19],[25,-39],[50,-33],[19,12],[10,24],[-4,72],[28,38],[1,36],[-22,17],[-49,11],[-41,31],[21,98],[-18,25],[-40,-77],[-68,-80],[-38,5],[-17,50],[-16,61],[2,93],[12,110],[-20,94],[31,85],[-11,39],[-76,63],[-31,53],[22,38],[14,28],[-5,36],[-70,11],[-8,14],[14,54],[4,61],[-11,36],[-4,47],[-42,11],[-11,-43],[-26,-15],[-56,19],[-18,41],[7,45],[35,13],[38,6],[3,76],[21,40],[0,60],[-17,50],[-14,22],[-33,-53],[-35,-49],[-16,-50],[-22,-58],[-50,0],[-54,-2],[-37,-17],[-14,30],[12,28],[22,14],[-7,30],[-17,63],[-13,90],[-23,45],[-57,44],[-15,-11],[-81,17],[-37,8],[-31,55],[-13,58],[-24,11],[-40,0],[-36,44],[-9,66],[0,61],[23,-3],[46,-3],[33,28],[27,77],[86,15],[4,26],[-9,33],[-41,9],[-21,30],[-39,88],[-42,6],[-53,-36],[-36,-17],[-26,22],[4,28],[38,14],[7,46],[-16,67],[20,16],[46,-16],[36,19],[9,58],[-20,33],[-33,8],[-63,-33],[-39,-50],[-45,0],[-35,44],[-22,72],[5,119],[11,49],[22,11],[50,-77],[9,-41],[18,-6],[16,11],[11,102],[37,74],[16,58],[-31,39],[-43,-11],[-35,0],[-37,-25],[-40,17],[-13,49],[-1,61],[16,30],[29,22],[2,39],[-55,74],[-4,29],[4,92],[-27,64],[-6,77],[19,52],[22,11],[38,-8],[29,-42],[33,14],[11,47],[5,74],[-40,64],[-47,66],[-61,25],[-58,-6],[-46,-38],[-28,-19],[-10,-6],[-21,38],[3,50],[31,58],[-9,25],[-79,57],[-95,-16],[-44,27],[-65,75],[-95,96],[-51,14],[-61,-25],[-58,-22],[-69,-27],[-46,-28],[-22,17],[-15,115],[-25,105],[-2,74],[-22,25],[-35,-8],[-43,-47],[-79,-58],[-51,-14],[-38,-33],[-13,-77],[16,-80],[-5,-74],[-9,-63],[-22,-61],[-95,-127],[-71,-82],[-95,-47],[-62,-97],[-148,-93],[-107,-128],[-112,-139],[-68,-61],[-125,-66],[-47,-6],[-47,6],[-16,7],[-10,18],[-15,63],[-4,48],[-14,49],[-23,55],[-31,12],[-22,-7],[-22,-19],[-37,0],[-31,16],[-23,63],[-18,57],[-73,47],[-100,56],[-73,43],[-23,25],[-59,36],[-44,12],[-38,34],[-23,-14],[-38,-5],[-31,7],[-26,21],[-31,48],[-21,72],[-8,48],[-22,55],[-14,65],[-98,141],[-43,31],[-42,27],[-39,5],[-19,-14],[-20,-13],[-13,5],[-9,21],[-10,31],[1,28],[0,49],[7,72],[2,59],[7,43],[9,49],[20,28],[20,9],[27,53],[22,68],[5,37],[-7,47],[-20,55],[-25,50],[-45,72],[-9,61],[3,33],[20,56],[30,47],[33,68],[13,47],[2,32],[-8,40],[-56,136],[-47,140],[-76,185],[-45,96],[-64,112],[-77,154],[-49,113],[-75,250],[-54,238],[0,217],[25,178],[40,130],[74,149],[59,96],[126,110],[115,48],[146,109],[39,83],[-17,272],[-16,160],[-15,58],[-27,29],[-13,23],[-14,30],[-6,28],[-4,24],[10,44],[22,48],[59,52],[212,237],[34,54],[48,140],[33,80],[106,219],[60,191],[65,167],[-12,36],[11,29],[29,23],[48,23],[104,97],[83,111],[91,137],[36,150],[23,174],[-10,341],[6,100],[22,49],[1,72],[9,66],[2,64],[-14,62],[7,38],[25,22],[40,1],[20,50],[10,67],[-9,129],[-46,122],[-9,58],[8,49],[23,35],[3,32],[-2,81],[26,51],[94,117],[38,58],[34,65],[19,62],[3,28],[4,27],[-26,96],[-22,59],[4,41],[4,46],[28,292],[31,211],[24,46],[47,35],[45,35],[43,46],[77,114],[87,104],[17,35],[1,54],[-45,147],[-2,147],[35,159],[14,36],[36,6],[11,30],[-32,60],[-8,44],[14,48],[30,14],[35,19],[18,21],[56,86],[57,86],[9,55],[-27,72],[20,44],[7,23],[-5,40],[-19,15],[-7,19],[10,21],[52,22],[58,8],[28,7],[11,22],[-5,30],[-23,26],[-2,31],[17,10],[58,-10],[16,31],[-3,87],[21,95],[-12,120],[-2,68],[13,19],[59,91],[41,60],[19,54],[-25,86],[-17,60],[27,67],[11,79],[10,79],[-27,198],[-31,226],[-22,92],[-31,89],[-14,48],[-10,59],[13,43],[17,54],[-6,48],[-25,73],[-72,67],[-76,47],[-61,61],[-42,111],[-26,127],[2,121],[28,95],[42,61],[32,42],[63,95],[65,70],[63,76],[106,44],[93,13],[80,-25],[80,-51],[50,-38],[68,-99],[82,-70],[43,-71],[54,-5],[97,28],[61,26],[53,28],[46,39],[30,101],[27,124],[40,121],[21,102],[30,105],[12,121],[9,159],[-17,222],[17,48],[23,22],[68,35],[61,80],[38,89],[16,92],[-9,48],[2,67],[16,30],[28,50],[105,94],[38,74],[38,124],[33,178],[19,127],[23,71],[8,13],[56,88],[114,72],[91,145],[56,91],[30,102],[126,105],[34,51],[10,66],[9,61],[57,67],[107,73],[83,86],[37,38],[15,54],[15,82],[55,134],[33,102],[0,78],[28,55],[67,51],[64,153],[35,194],[21,159],[3,216],[-9,207],[11,159],[29,119],[262,555],[73,245],[19,121],[7,168],[-7,156],[-4,76],[25,73],[59,99],[64,70],[109,137],[110,105],[105,98],[116,89],[95,112],[34,125],[-7,123],[-12,127],[12,76],[47,61],[92,106],[89,97],[87,92],[86,83],[112,137],[173,232],[118,140],[101,86],[146,121],[117,133],[137,146],[161,201],[231,305],[291,305],[232,248],[186,216],[-194,299],[-139,140],[-152,70],[-198,-6],[-392,-13],[-633,-6],[-190,-26],[-134,-31],[-98,-102]],[[664444,371200],[-265,-80],[-282,-10],[-422,-69],[-329,-13],[-312,165],[-118,166],[-93,356],[17,293],[95,448],[44,452],[-20,230],[-121,79],[-155,-13],[-247,195],[-296,163],[-285,297],[-140,344],[-121,110],[-47,185],[-16,200],[-90,150],[-71,196],[0,220],[105,115],[296,151],[84,180],[102,130],[261,114],[92,174],[121,101],[428,173],[128,119],[177,408],[113,191],[417,263],[85,156],[42,400],[-29,200],[30,184],[274,94],[120,163],[170,688],[446,563],[251,167],[278,78],[254,-28],[122,72],[90,119],[142,76],[268,439],[263,298],[83,149],[144,-36],[379,-215],[157,-24],[254,102],[92,130],[43,554],[240,532],[92,132],[147,81],[140,-19],[271,-114],[128,17],[227,198],[210,266],[78,151],[64,229],[99,1192],[55,170],[101,141],[120,74],[66,6],[67,5],[213,218],[126,85],[376,-202],[104,-113],[200,-312],[112,-93],[261,-17],[120,105],[72,172],[99,707],[113,111],[140,-30],[112,-78],[143,-44],[247,-31],[254,58],[374,221],[460,193],[389,264],[255,540],[114,87],[139,25],[311,-106],[157,-17],[154,43],[383,489],[267,100],[678,101],[306,-144],[309,6],[184,40],[150,101],[262,278],[148,98],[367,-148],[168,-33],[171,49],[263,216],[90,160],[-15,213],[-127,55],[-98,120],[-7,381],[-28,82],[-28,82],[-305,483],[-176,394],[-34,226],[6,181],[135,42],[120,-69],[353,-331],[544,-67],[119,-52],[572,-612],[64,-211],[84,-1053],[92,-485],[638,-412],[196,-88],[312,-93],[305,9],[105,-111],[64,-168],[64,-392],[57,-164],[451,-617],[473,-489],[78,-145],[15,-183],[-36,-199],[63,-188],[352,-185]],[[447407,511915],[-101,-37],[-21,-17],[-20,-17],[-41,-34],[-39,-28],[-85,-82],[-102,-93],[-26,-25],[-68,-65],[-108,-118],[-94,-74],[-41,-47],[-42,-46],[-64,-46],[-64,-45],[-50,-14],[-24,-10],[-63,-23],[-70,-48],[-101,-40],[-47,-39],[-47,-39],[-32,-42],[-57,-76],[-13,-17],[-43,-55],[-65,-55],[-31,-17],[-31,-17],[-63,-35],[-8,-3],[-29,-12],[-30,-12],[-17,-11],[-37,-24],[-26,-40],[-26,-40],[-36,-32],[-44,-77],[-23,-4],[-31,2],[-82,7],[-78,-19],[-42,-13],[-28,-9],[-30,-29],[-18,-73],[-25,-90],[-28,-36],[-50,13],[-51,12],[-47,7],[-37,3],[-63,-80],[-31,-56],[-16,-29],[-19,-171],[4,-99],[1,-44],[-11,-66],[-9,-51],[-2,-64],[-1,-42],[-10,-85],[-7,-60],[-31,-178],[-24,-106],[-37,-159],[-62,-138],[-16,-107],[-18,-86],[3,-59],[2,-47],[11,-107],[-8,-100],[-6,-68],[-40,-13],[-39,-33],[-31,-83],[8,-44],[9,-44],[-26,-59],[-30,-28],[-20,-48],[-41,-17],[-45,-37],[-22,-19],[-23,-19],[-52,-18],[-44,-32],[-28,-28],[-58,-56],[-46,-20],[-30,-13],[-30,-13],[-18,-8],[-18,-8],[-36,-16],[-25,-54],[11,-58],[43,-67],[32,-74],[6,-113],[-17,-74],[-49,-77],[-66,-55],[-31,-16],[-31,-16],[-77,48],[-70,98],[-20,28],[-49,69],[-148,249],[-73,42],[-77,22],[-76,23],[-108,-17],[-97,-45],[-1250,-588],[-56,-26],[-5745,-2699],[-3697,-1737],[-184,-87],[-1865,-876],[-40,-18],[-32,-16],[-1063,-499],[-2617,-1230],[-488,-229],[-15,-7],[-8,-9],[-25,-29],[-29,-35],[-62,-72],[-601,-701],[-37,-43],[-325,-379],[-200,-234],[-276,-322],[-449,-524],[-1566,-1827],[-530,-619],[-63,-73],[-2132,-2488],[-1592,-1858],[-1634,-1906],[-1875,-2188],[-4,-5]],[[414539,486065],[1220,17663],[-34,-26],[-32,-37],[-46,-94],[-47,-90],[-65,-95],[-64,-121],[-32,-100],[-34,-143],[-48,3],[-73,15],[-54,-9],[-68,-6],[-57,-14],[-85,-35],[-62,-34],[-57,-72],[-26,-62],[-15,-52],[-16,-53],[-58,-42],[-56,-33],[-63,-31],[-78,-36],[-78,-35],[-81,-46],[-72,-37],[-76,-16],[-108,-22],[-90,-19],[-52,-22],[-62,-26],[-48,-43],[-37,-60],[-47,-75],[-30,-61],[-29,-61],[-43,-67],[-43,-67],[-51,-80],[-48,-95],[-53,-80],[-59,-90],[-330,-502],[-125,-188],[-220,-332],[-98,-186],[-79,-149],[-34,-259],[-15,-224],[35,-484],[76,-575],[19,-326],[-37,-303],[-133,-302],[-216,-500],[-175,-249],[-271,-379],[-251,-234],[-148,-153],[-182,-50],[-88,-5],[-88,-5],[-111,16],[-108,84],[-108,83],[-150,117],[-150,117],[-123,118],[-124,117],[-95,90],[-150,132],[-129,50],[-133,30],[-120,23],[-170,-39],[-161,77],[-100,106],[-61,204],[0,153],[-1,153],[-1,103],[-1,204],[0,204],[-2,243],[-35,159],[-35,159],[-98,301],[-96,138],[-96,138],[-79,114],[-167,88],[-121,23],[-141,-8],[-145,-151],[-133,-185],[-133,-186],[-166,-113],[-250,-91],[-131,-34],[-108,38],[-123,38],[-93,58],[-92,59],[-128,38],[-76,-9],[-88,-27],[-127,-40],[-143,-54],[-72,-31],[-79,5],[-80,20],[-73,42],[-86,49],[-111,64],[-127,82],[-87,57],[-93,35],[-88,79],[-80,102],[-48,110],[-15,98],[-17,144],[12,99],[33,90],[32,91],[20,129],[-50,83],[-55,30],[-60,12],[-70,28],[-76,28],[-80,65],[-70,87],[-90,98],[-61,116],[-98,183],[-47,87],[-78,87],[-95,61],[-123,-15],[-116,-48],[-67,-63],[-62,-58],[-52,-49],[-114,-108],[-87,-82],[-81,-89],[-63,-116],[-86,-99],[-95,-79],[-93,4],[-78,79],[-40,91],[-105,140],[-95,65],[-101,37],[-113,0],[-85,-6],[-103,-17],[-110,-68],[-111,-68],[-154,-138],[-154,-137],[-107,-162],[-106,-161],[-98,-144],[-108,-102],[-105,-64],[-78,-4],[-78,57],[-87,114],[-87,115],[-82,149],[-98,118],[-77,68],[-81,41],[-105,39],[-120,-15],[-123,-4],[-133,-23],[-118,-4],[-113,15],[-110,31],[-53,14],[-88,34],[-70,65],[-56,77],[-55,77],[-75,103],[-85,83],[-60,38],[-83,44],[-116,62],[-54,41],[-38,76],[-38,132],[-20,105],[-23,138],[-23,124],[-39,109],[-43,123],[-41,92],[-41,93],[-48,110],[-86,121],[-78,83],[-117,61],[-106,41],[-108,42],[-108,38],[-112,34],[-123,30],[-101,23],[-105,-4],[-115,-15],[-88,-64],[-79,-108],[-79,-108],[-55,-76],[-63,-64],[-83,-8],[-80,35],[-73,56],[-53,57],[-106,79],[-107,79],[-93,69],[-53,39],[-80,59],[-70,69],[-58,64],[-85,57],[-93,75],[-103,110],[-105,110],[-80,106],[-67,68],[-52,92],[-50,87],[-43,164],[-28,106],[-18,65],[-18,64],[-25,90],[-25,89],[-37,131],[-36,129],[-47,123],[-48,128],[-61,114],[-61,114],[-41,93],[-41,91],[-75,98],[-64,83],[-49,63],[-93,119],[-72,76],[-72,76],[-65,68],[-72,76],[-79,81],[-80,80],[-94,96],[-93,45],[-85,31],[-125,22],[-86,4],[-85,4],[-137,6],[-110,-3],[-109,-3],[-166,-27],[-120,-41],[-101,-83],[-76,-93],[-69,-86],[-81,-98],[-57,-98],[-70,-140],[-38,-121],[-20,-106],[0,-159],[13,-101],[12,-101],[8,-36],[19,-94],[16,-76],[18,-85],[17,-85],[-13,-107],[-54,-82],[-49,-73],[-18,-116],[13,-70],[31,-79],[2,-91],[-28,-98],[-50,-68],[-65,-38],[-65,-34],[-83,-13],[-95,46],[-20,97],[-159,20205]],[[392444,523911],[49,-50],[90,-68],[115,-43],[74,-31],[95,-8],[214,88],[289,218],[78,17],[17,-105],[-78,-209],[-8,-137],[41,-204],[72,-169],[81,-149],[26,-49],[9,-16],[0,-81],[33,-334],[28,-273],[42,-240],[82,-167],[14,-22],[59,-95],[98,-149],[140,-185],[132,-99],[221,-19],[170,115],[200,309],[81,72],[94,-26],[461,-327],[1006,-306],[222,66],[388,394],[147,303],[5,192],[225,155],[89,73],[287,236],[127,251],[136,79],[505,297],[650,8],[621,-399],[323,-413],[10,-546],[-142,-472],[-181,-627],[10,-914],[124,-616],[2,-8],[6,-31],[-5,-216],[88,-110],[347,184],[685,111],[650,-17],[369,-629],[487,-527],[577,-125],[278,-509],[255,-67],[477,104],[334,73],[274,37],[156,126],[54,44],[269,907],[297,442],[447,288],[1171,429],[549,151],[515,142],[459,134],[132,162],[29,384],[363,401],[439,196],[203,-44],[110,-96],[103,-118],[97,-192],[98,-103],[132,30],[181,125],[166,59],[269,-65],[289,-1],[318,59],[220,28],[112,-36],[93,-74],[83,-95],[160,-105],[231,60],[179,289],[96,340],[185,301],[147,221],[308,258],[357,103],[254,15],[200,-81],[426,-317],[279,-528],[199,-379],[216,-192],[394,-23],[572,215],[403,250],[159,208],[223,537],[205,389],[298,334],[235,148],[279,0],[454,-182],[377,-475],[139,-328],[96,-156],[220,-357],[229,-177],[492,-95],[360,-246],[306,-473],[195,-419],[27,-266],[-42,-220],[-203,-260],[-39,-95],[-169,-400],[-114,-501],[-109,-1606],[93,-361],[230,-142],[471,105],[297,-73],[303,-251],[819,-1415],[38,-65],[48,-49],[4,-4],[245,-252],[712,-366],[228,-478],[247,-584],[140,-243],[255,-27],[217,101],[1078,504],[275,242],[702,616],[369,119],[376,-76],[299,86],[198,188],[35,47],[156,209],[491,984],[261,174],[285,-1],[135,-123],[-27,-187],[-141,-437],[75,-493],[-49,-142],[-34,-100],[-25,-73],[-246,-296],[-99,-120],[-178,-225],[-136,-391],[-73,-1171],[236,-594],[166,-129],[122,-96],[233,-9],[357,258],[489,449],[259,237],[514,96],[589,3],[382,217],[106,264],[119,296],[58,141],[86,214],[282,224],[691,348],[175,45],[360,92],[316,81],[612,157],[391,31],[417,260],[380,423],[122,412],[483,669],[192,404],[422,446],[455,239],[715,-150],[488,-126],[199,-51],[389,-696],[118,-410],[-501,-651],[82,-246],[82,-245],[1025,-455],[1078,-1045],[379,-211],[293,174],[824,539],[566,65],[307,-772],[422,-294],[488,110],[1307,1223],[249,214],[242,-13],[277,-159],[206,-47],[238,27],[127,146],[79,166],[77,67],[1,0],[37,32],[196,65],[173,55],[171,-55],[106,-135],[47,-161],[-38,-266],[-88,-352],[-132,-254],[-18,-70],[23,-67],[84,-223],[43,-162],[-13,-119],[-59,-168],[-107,-179],[-88,-77],[-121,-71],[-71,-22]],[[798514,492210],[44,-23],[65,-35],[110,6],[142,-62],[124,-87],[97,25],[78,135],[57,16],[139,-5],[147,-18],[189,10],[206,11],[419,114],[207,87],[156,7],[115,-63],[122,-104],[164,25],[234,111],[494,530],[106,143],[97,287],[16,160],[-28,121],[21,150],[39,260],[76,277],[0,118],[-37,125],[-3,149],[60,63],[102,-59],[147,-104],[73,-7],[193,86],[150,66],[106,132],[16,108],[-2,131],[-46,215],[-49,66],[-62,28],[-89,101],[-10,138],[46,87],[76,7],[76,-7],[78,-73],[67,-7],[37,70],[-26,114],[-46,87],[-59,55],[-65,-24],[-46,-31],[-36,31],[-17,87],[17,159],[68,101],[153,163],[100,97],[99,63],[81,27],[69,45],[9,125],[-12,94],[56,114],[66,56],[69,14],[100,127],[43,202],[57,212],[114,217],[93,161],[55,59],[28,-83],[7,-111],[14,-104],[39,-73],[78,17],[48,125],[30,212],[-8,123],[-26,78],[20,97],[53,52],[145,21],[120,-32],[145,4],[-10,146],[-18,76],[2,132],[62,38],[65,-76],[63,-119],[61,-65],[290,-87],[197,-76],[51,38],[21,56],[0,76],[16,90],[16,111],[46,45],[34,66],[14,87],[-7,93],[5,80],[21,83],[32,63],[23,52],[46,17],[99,-17],[62,-11],[27,111],[-16,56],[-44,28],[-50,-18],[-265,212],[-101,160],[19,93],[34,70],[81,10],[50,-7],[42,-7],[62,42],[32,100],[-7,118],[-53,97],[-39,49],[7,101],[55,20],[83,-20],[145,-7],[122,114],[-16,191],[-28,69],[-16,59],[18,49],[83,73],[177,149],[140,208],[114,261],[231,353],[276,395],[166,129],[119,128],[67,104],[174,114],[189,38],[1060,403],[336,225],[161,174],[91,202],[77,58],[60,73],[66,107],[145,476],[104,183],[82,98],[72,135],[92,152],[99,73],[64,0],[55,28],[48,52],[106,135],[143,104],[188,115],[154,14],[53,83],[60,90],[62,108],[71,128],[81,87],[87,142],[106,-35],[85,-55],[46,-90],[85,-45],[69,-11],[42,-90],[9,-177],[14,-225],[5,-252],[22,-102],[64,-198],[72,-114],[89,-98],[106,-41],[101,-4],[104,52],[69,101],[53,135],[-3,108],[-27,135],[-44,128],[-64,77],[-61,123],[1,57],[41,71],[217,68],[126,66],[147,121],[221,-142],[147,-35],[182,42],[177,62],[108,-27],[78,-56],[126,4],[56,48],[27,56],[23,86],[85,28],[42,-55],[-35,-143],[-30,-180],[10,-66],[34,-17],[34,21],[182,170],[21,86],[4,122],[37,86],[44,25],[39,-39],[21,-55],[41,-153],[41,-121],[17,-97],[-5,-66],[0,-94],[32,-73],[53,-17],[44,80],[64,100],[60,-72],[25,-129],[16,-142],[40,-162],[61,-247],[46,-153],[51,-146],[64,-79],[72,-56],[133,-87],[271,-31],[71,-10],[10,-2],[80,-12],[157,-73],[138,-128],[673,-802],[167,-141],[102,-74],[97,-10],[140,17],[83,-17],[145,-59],[85,-62],[64,-14],[48,52],[108,116],[304,62],[789,235],[74,59],[59,-28],[58,-38],[401,13],[233,-20],[115,-101],[150,4],[168,93],[50,139],[95,52],[103,-14],[99,-83],[136,-14],[82,45],[28,69],[14,91],[48,100],[191,79],[137,0],[226,-62],[378,-216],[197,-174],[7,-7],[120,-92]],[[822063,503341],[-16,-123],[-59,-59],[-101,4],[-116,39],[-118,-41],[-91,-130],[-150,-95],[-256,-122],[-148,-204],[-60,-191],[-8,-142],[-7,-188],[5,-216],[2,-171],[14,-74],[25,-133],[-20,-87],[-42,-102],[21,-189],[47,-55],[23,-100],[62,-81],[12,-136],[37,-142],[-12,-149],[-42,-130],[-45,-143],[-57,-111],[16,-217],[-45,-217],[-70,-272],[0,-161],[-41,-118],[-94,62],[-202,96],[-184,114],[-189,38],[-230,31],[-206,12],[-205,-25],[-82,-99],[-16,-105],[61,-198],[130,-219],[18,-29],[3,-123],[-69,-212],[-29,-85],[-98,-287],[-90,-223],[-50,-123],[-209,-341],[-185,-198],[-14,-15],[-221,-227],[-61,-62],[-316,-310],[-159,-103],[-29,-19],[-50,-33],[-22,-15],[-257,-183],[-11,-6],[-112,-68],[-4673,-12341]],[[793109,456483],[-13339,13104],[199,-2710],[870,-11861],[84,-1156],[-291,-296],[-126,-89],[-169,-32],[-320,-200],[-1187,-530],[-422,-365],[-306,-473],[-119,-106],[-199,-298],[-97,-345],[-108,-151],[-148,-92],[-176,-30],[-189,-235],[-58,-191],[-249,-239],[-125,-62],[-250,-263],[-146,-299],[-57,-211],[-242,-269],[-189,-284],[-242,-739],[-12,-383],[91,-625],[29,-453],[-14,-234],[-241,-787],[-70,-428],[-8,-202],[41,-162],[10,-194],[-108,-423],[-204,-362],[-149,-167],[-268,-540],[-63,-358],[-9,-1086],[-154,-544],[-198,-549],[-15,-213],[85,-646],[-170,-1434],[-189,-403],[-192,-288],[-71,-185],[-127,-138],[-226,-347],[-147,-317],[-108,-619],[156,-767],[8,-187],[-71,-390],[-190,-349],[-43,-202],[-71,-601],[8,-658],[-145,-903],[-110,-684],[-35,-676],[-106,-861],[-276,-750],[-113,-217],[-247,-778],[-101,-199],[-36,-235],[-61,-174],[-9,-200],[-40,-185],[-80,-166],[-211,-245],[-241,-156],[-54,-173],[27,-253],[71,-156],[62,-382],[-41,-540],[-13,-1094],[-37,-221],[-98,-318],[-37,-311],[-17,-147],[-61,-510],[-83,-391],[-107,-128],[-397,-160],[-522,-1497],[-116,-56],[-166,264],[-141,-6],[-352,360],[-150,52],[-248,-79],[-289,-8],[-383,73],[-176,-121],[-565,-39],[-275,-123],[-701,-562],[-180,-13],[-129,50],[-757,589],[-233,425],[-255,346],[-56,165],[-134,207],[-156,136],[-113,148],[-133,78],[-116,157],[-60,191],[-58,444],[91,826],[0,252],[-56,400],[339,348],[55,159],[-140,800],[-34,371],[-86,158],[-163,-1],[-162,-72],[-331,34],[-150,166],[-97,181],[-121,142],[-311,37],[-120,55],[-128,163],[-120,438],[-70,875],[5,1020],[-274,639],[-28,178],[-107,127],[-245,197],[-264,396],[-92,351],[-176,267],[-114,87],[-557,-96],[-261,23],[-539,322],[-296,114],[-162,26],[-235,206],[-146,424],[99,172],[903,700],[466,112],[142,78],[99,127],[92,382],[22,217],[-135,667],[-147,407],[-108,701],[-55,192],[-290,439],[-120,61],[-574,77],[-747,-11],[-242,-142],[-219,-280],[-141,-77],[-277,27],[-246,225],[-591,429],[-94,176],[-93,176],[-106,129],[-268,100],[-107,138],[-40,180],[-31,573],[-90,393],[-119,327],[-45,425],[-13,450],[22,435],[134,629],[51,841],[83,620],[332,1070],[170,350],[69,216],[-105,367],[72,168],[226,193],[259,413],[165,182],[153,-75],[405,570],[347,344],[159,49],[398,34],[104,120],[213,395],[47,192],[131,1261],[62,199],[127,256],[160,206],[45,58],[170,1315],[-34,675],[135,534],[216,365],[150,333],[199,653],[-29,505],[-403,308],[-296,410],[-134,47],[-728,-163],[-325,-158],[-643,-44],[-108,101],[-54,421],[-21,162],[48,400],[182,491],[306,501],[125,140],[277,515],[100,342],[-7,241],[-130,353],[-34,176],[14,365],[-29,192],[-91,120],[-240,133],[-184,321],[-48,189],[-178,380],[-274,464],[-157,235],[-282,256],[-332,-39],[-285,-223],[-444,-230],[-91,-142],[-149,-65],[-114,80],[-90,188],[-43,200],[-29,191],[-7,476],[150,1228],[-105,556],[-207,689],[-212,-70],[-212,-127],[-418,-91],[-266,-100],[-453,-52],[-481,14],[-303,-46],[-1140,-723],[-120,77],[-127,313],[-100,129],[-493,454],[-105,171],[-136,147],[-56,165],[-182,331],[-158,422],[-112,104],[-205,53],[-834,21],[-388,255],[-360,403],[-390,333],[-99,129],[-140,329],[-298,445],[-56,213],[-199,271],[-56,165],[-119,85],[-177,-323],[-227,-229],[-247,-170],[-282,-90],[-142,60],[-359,299],[-311,340],[-186,42],[-367,-239],[-330,-318],[-221,-254],[-92,-166],[-445,-431],[-432,-294],[-254,-123],[-516,-380],[-147,31],[-113,77],[-206,258],[-91,173],[-28,399],[71,442],[50,938],[125,664],[79,616],[69,1002],[-13,529],[-58,625],[-12,1432],[27,439],[0,869],[57,1164],[64,339]],[[742232,474792],[219,74],[396,204],[233,217],[722,310],[379,336],[106,130],[143,306],[56,184],[256,168],[12,216],[72,175],[120,98],[71,185],[128,1017],[146,436],[99,417],[71,158],[100,410],[148,384],[1,209],[-45,220],[-132,313],[-108,380],[-6,461],[-27,170],[-108,364],[-141,302],[-98,545],[19,194],[-20,182],[-77,165],[-107,370],[-169,320],[-149,171],[-21,199],[42,173],[113,62],[-28,185],[-64,170],[14,184],[52,219],[487,1005],[295,456],[22,261],[-42,180],[-93,150],[-336,96],[-285,267],[-99,255],[-43,230],[-8,225],[31,207],[96,213],[341,351],[7,226],[-112,185],[-156,82],[-56,175],[42,220],[64,164],[42,792],[-136,381],[-112,537],[-64,180],[-50,470],[1,197],[64,236],[56,964],[269,969],[134,209]],[[745009,495658],[254,266],[283,-24],[317,-98],[297,-43],[306,61],[146,78],[58,162],[205,251],[92,177],[224,165],[370,337],[274,440],[623,538],[508,104],[261,8],[263,124],[232,213],[49,81],[71,120],[44,186],[34,402],[57,211],[190,1140],[78,224],[155,316],[106,148],[475,373],[168,349],[86,454],[85,807],[92,204],[107,121],[133,45],[114,-138],[119,-354],[190,-327],[1046,-794],[390,-29],[366,299],[163,5],[106,-122],[0,-170],[-43,-213],[8,-180],[93,-147],[585,-287],[51,-158],[127,-65],[127,25],[147,-23],[30,-207],[-106,-227],[85,-138],[302,-21],[121,-78],[213,-256],[273,-197],[123,-23],[98,-123],[120,-71],[135,-20],[282,31],[333,-104],[133,5],[135,56],[105,-139],[232,-89],[94,-35],[706,489],[113,114],[197,296],[241,159],[98,106],[36,185],[0,181],[-71,156],[-104,138],[-9,201],[128,338],[105,124],[128,-34],[92,122],[-57,175],[-111,84],[54,167],[99,174],[-77,138],[148,307],[-69,206],[111,132],[262,56],[1,201],[71,141],[155,96],[35,167],[133,32],[130,82],[0,174],[118,99],[105,-78],[95,124],[56,-199],[34,-382],[141,-45],[396,128],[304,33],[155,279],[106,446],[84,200],[109,97],[310,68],[69,165],[262,56],[94,129],[42,175],[85,197],[133,8],[86,139],[-86,164],[50,164],[134,28],[85,159],[-25,161],[-11,74],[398,-63],[386,-203],[122,-3],[104,-91],[94,-171],[134,-94],[233,152],[69,-167],[0,-173],[94,-164],[146,-15],[142,-59],[121,3],[55,-182],[92,-147],[220,-248],[77,-172],[9,-201],[84,-137],[226,-238],[78,-6],[148,-10],[64,174],[142,239],[105,122],[101,190],[6,11],[141,263],[403,379],[133,55],[396,30],[317,-57],[412,-234],[197,-241],[22,-210],[-71,-192],[49,-165],[-51,-363],[71,-156],[134,-105],[-29,-181],[-90,-139],[141,-131],[530,-276],[107,-98],[134,-23],[120,31],[212,-284],[142,-408],[21,-580],[34,-174],[56,-118],[15,-31],[184,-31],[117,54],[86,39],[4,2],[8,4],[272,125],[141,-49],[-62,-471],[20,-206],[100,-121],[232,281],[150,-110],[-23,-211],[-155,-323],[502,-730],[91,-164],[136,-394],[93,-136],[416,-57],[140,-73],[149,-574],[451,-445],[156,-44],[268,9],[318,81],[270,240],[92,174],[140,131],[318,66],[630,-119],[423,-219],[283,-255],[78,-175],[21,-268],[-13,-210],[-72,-185],[-147,-101],[-128,-7],[-86,-184],[94,-119],[146,-434],[271,-151],[450,-175],[92,-137],[165,-111],[112,-122],[234,-308],[55,-174],[43,-674],[71,-156],[112,-138],[28,-198],[-6,-365],[133,-797],[86,-260],[276,-93],[126,-91],[28,-185],[-19,-183],[-66,-191],[2,-198],[204,-295],[404,-177],[126,1],[85,-144],[156,-392],[118,-588],[86,-157],[55,-233],[95,-224],[240,-257],[267,-127],[72,-161],[83,-436],[-14,-418],[-76,-619],[55,-198],[233,-179],[129,3],[325,159],[119,-7],[107,-101],[113,-199],[281,-159],[212,-66],[369,-3],[282,150],[84,129],[129,82],[98,120],[254,169],[134,31],[468,-44],[595,215],[323,-18],[134,-77],[453,-62],[162,28],[509,220],[325,80],[134,-26],[93,-136],[133,-5],[155,139],[135,-67],[120,-109],[566,93],[126,-75],[109,-495],[32,-147],[135,-67],[199,63],[396,259],[126,27],[545,300],[133,7],[382,230],[148,32],[121,26],[183,2],[121,-41],[295,411],[149,85],[135,-36],[128,75],[262,33],[226,318],[155,358],[168,299],[100,113],[282,171],[339,290],[92,133],[305,624],[105,329],[381,662],[43,165],[135,204],[241,251],[197,103],[127,28],[147,538],[135,56],[313,-19],[127,-59],[389,-4],[615,436],[133,-70],[133,-128],[532,1],[267,-86],[112,-108],[257,-152],[423,-140],[87,-159],[116,-317],[130,-94],[127,55],[113,104],[150,81]],[[666525,491090],[-87,15],[-58,4],[-6,0],[-19,-2],[-20,-3],[-24,-23],[-23,-24],[-29,-25],[-43,-37],[-50,-61],[-41,-41],[-44,-18],[-28,-24],[-11,-45],[-1,-126],[-8,-140],[-8,-32],[-9,-33],[-55,-52],[-86,-48],[-115,-50],[-368,-128],[-203,-63],[-61,-25],[-41,-31],[-79,-76],[-28,-37],[-24,-51],[-24,-55],[-18,-58],[-23,-76],[-22,-46],[-36,-36],[-46,-46],[-75,-70],[-66,-53],[-54,-26],[-57,-13],[-29,-24],[-22,-29],[-24,-52],[-26,-42],[-15,-26],[-26,-32],[-20,-29],[-49,-51],[-108,-173],[-42,-91],[-43,-92],[-25,-81],[-3,-95],[19,-69],[37,-59],[55,-44],[51,-15],[72,-16],[84,4],[87,24],[104,9],[59,-4],[75,-44],[52,-52],[46,-56],[54,-53],[37,-56],[27,-71],[20,-88],[36,-220],[16,-168],[-2,-115],[-10,-79],[-27,-64],[-23,-50],[-75,-92],[-75,-102],[-71,-95],[-45,-44],[-33,-46],[-6,-41],[4,-55],[-7,-53],[8,-87],[2,-77],[-6,-97],[-6,-64],[3,-44],[12,-45],[32,-60],[44,-44],[57,-37],[57,-35],[60,-71],[44,-68],[39,-52],[47,-84],[14,-38],[3,-97],[8,-146],[12,-115],[11,-101],[21,-71],[27,-39],[52,-42],[55,-37],[44,-10],[46,-21],[53,-60],[24,-56],[10,-49],[5,-69],[-3,-51],[-11,-44],[-11,-37],[-39,-58],[-56,-56],[-44,-50],[-77,-124],[-81,-73],[-97,-76],[-147,-116],[-95,-100],[-12,-36],[-1,-48],[5,-35],[10,-85],[12,-54],[22,-28],[50,-36],[51,3],[208,61],[396,124],[229,77],[35,22],[37,35],[18,50],[8,75],[-4,83],[-6,97],[-32,298],[-14,106],[-4,62],[14,47],[30,93],[40,71],[48,83],[28,54],[34,30],[47,7],[51,-37],[125,-88],[103,-68],[80,-105],[84,-105],[103,-63],[111,-39],[122,-17],[86,31],[67,23],[67,50],[65,18],[22,0],[22,-1],[41,-17],[41,-49],[30,-55],[20,-45],[14,-126],[33,-138],[37,-99],[37,-88],[51,-92],[61,-112],[22,-80],[0,-75],[-3,-172],[-49,-438],[15,-171],[13,-130],[13,-96],[26,-94],[85,-261],[8,-60],[3,-73],[3,-157],[14,-83],[63,-184],[20,-96],[8,-86],[-19,-135],[-32,-132],[-36,-96],[-60,-93],[-70,-124],[-7,-52],[27,-116],[80,-166],[159,-244],[171,-258],[156,-272],[58,-126],[35,-70],[10,-48],[5,-63],[-3,-72],[-26,-126],[-35,-93],[-50,-106],[-103,-186],[-31,-80],[-20,-94],[-53,-242],[-19,-69],[-39,-72],[-68,-81],[-83,-68],[-82,-30],[-61,-4],[-171,9],[-9,1],[-103,13],[-103,13],[-213,56],[-265,50],[-63,6],[-28,9],[-27,9],[-57,28],[-50,39],[-83,95],[-49,72],[-66,52],[-97,68],[-44,20],[-38,34],[-45,47],[-63,101],[-60,157],[-61,101],[-94,104],[-159,176],[-190,201],[-123,66],[-68,59],[-43,19],[-111,4],[-282,18],[-142,33],[-173,43],[-175,63],[-243,94],[-68,33],[-27,32],[-41,61],[-42,91],[-86,181],[-78,132],[-54,70],[-66,40],[-56,23],[-128,70],[-146,85],[-131,73],[-86,61],[-82,54],[-78,29],[-50,29],[-44,46],[-44,41],[-56,54],[-93,72],[-98,61],[-103,33],[-112,26],[-116,15],[-68,10],[-123,50],[-39,-6],[-58,-29],[-103,-17],[-60,2],[-46,7],[-48,22],[-59,48],[-77,33],[-120,23],[-78,25],[-63,-25],[-58,-54],[-37,-12],[-61,-1],[-28,-22],[-28,-58],[-27,-71],[-29,-69],[-17,-17],[-36,2],[-78,33],[-105,60],[-66,43],[-82,29],[-64,4],[-55,-10],[-28,-5],[-35,-18],[-29,-39],[-18,-41],[-21,-71],[-14,-70],[-37,-122],[-26,-60],[-14,-54],[-4,-44],[5,-22],[4,-23],[41,-62],[38,-56]],[[647015,484375],[-2,186],[-942,1211],[-95,122],[-1380,1774],[-9468,12172],[-82,106],[-2356,3031],[-659,1380],[-2624,5500]],[[654145,526577],[166,-934],[57,-323],[36,-199],[42,-241],[664,-5832],[664,-5831],[226,269],[182,189],[155,160],[190,131],[148,83],[251,138],[115,39],[172,58],[230,61],[242,6],[154,-18],[220,-50],[281,-72],[451,-162],[248,-137],[150,-171],[27,-31],[103,-174],[25,-110],[1,-251],[-38,-377],[-38,-377],[-40,-124],[24,-134],[-16,-180],[29,-204],[20,-80],[-7,-19],[-22,-66],[-12,-133],[8,-159],[16,-217],[9,-132],[50,-66],[6,-82],[35,-92],[50,-100],[71,-156],[48,-107],[21,-48],[0,-86],[11,-63],[23,-120],[50,-140],[6,-32],[-17,-53],[-23,-21],[-28,-135],[-14,-78],[-51,-40],[-73,-55],[-87,-89],[-86,-39],[-75,15],[-33,-46],[19,-88],[-6,-95],[-77,-97],[-71,-31],[-91,-97],[18,-58],[-26,-25],[-46,31],[-35,-18],[11,-50],[22,-36],[4,-43],[-31,-18],[-36,-24],[6,-61],[14,-61],[-38,-40],[-10,-29],[20,-47],[-10,-55],[-33,-30],[-38,18],[-50,-33],[-25,-46],[35,-93],[20,-75],[-45,-37],[-57,-48],[13,-92],[-14,-88],[28,-88],[-28,-119],[-61,-61],[-38,-85],[-4,-108],[-14,-88],[4,-112],[-11,-58],[5,-58],[-29,-58],[-28,-40],[0,-76],[55,9],[20,-30],[-14,-46],[-49,-55],[6,-82],[26,-162],[-2,-106],[39,-98],[-14,-46],[-53,-45],[-6,-67],[5,-31],[19,-128],[-8,-73],[-54,-28],[-49,0],[-21,-63],[9,-95],[51,-146],[-21,-80],[-95,-15],[-50,86],[-43,64],[-38,103],[-20,98],[-32,41],[-28,-31],[-41,-93],[-63,-59],[-49,-113],[-45,-42],[-37,-54],[-25,-7],[-26,19],[-39,-10],[-39,-41],[-18,-60],[-68,-46],[-47,-54],[-29,-84],[-38,-115],[-17,-48],[-18,-35],[-30,-14],[-32,-2],[-37,5],[-51,1],[-58,39],[-31,7],[-41,-6],[-28,-23],[-48,11],[-36,-11],[-25,-29],[-23,-15],[-9,-26],[-3,-65],[2,-74],[8,-62],[-3,-37],[-24,-19],[-19,-2],[-37,-41],[-25,-17],[-3,-27],[-13,-46],[-6,-29],[-13,-41],[-35,-54],[-25,-27],[-29,-24],[-36,-1],[-41,-39],[-48,-21],[-26,-17],[-32,-5],[-17,-39],[-32,-49],[-45,-41],[-46,-37],[-33,2],[-35,20],[-27,-13],[-13,-18],[-28,-18],[-19,-52],[-21,-52],[-28,-46],[-55,-48],[-54,-89],[-57,-76],[-46,-61],[-41,-41],[-22,-41],[-43,-47],[-22,-34],[-45,-93],[-34,-61],[-20,-36],[-2,-3],[3,-22],[13,-37],[31,-149],[20,-84],[20,-120],[28,-126],[14,-61],[14,-57],[12,-41],[22,-37],[10,-32],[-3,-47],[-1,-78],[12,-74],[16,-76],[25,-83],[14,-55],[24,-29],[13,-13],[-7,-29],[0,-38],[-1,-37],[12,-79],[3,-50],[3,-49],[3,-47],[17,-31],[-5,-27],[-24,-14],[4,-35],[-21,-47],[16,-31],[-18,-95],[13,-18],[-8,-34],[-5,-45],[-12,-43],[-4,-48],[5,-45],[-15,-62],[-12,-35],[-12,-34],[-5,-73],[-15,-47],[15,-30],[-9,-32],[-36,-26],[-30,0],[-26,-6],[-34,-25],[-31,-40],[-8,-45],[0,-54],[6,-56],[19,-37],[51,-38],[64,-100],[32,-47],[5,-36],[-2,-22],[-2,-22],[-8,-47],[-24,-32],[-19,-26],[0,-21],[4,-18],[-3,-13],[-26,-21],[-27,11],[-3,21],[-20,8],[-25,-11],[-38,-70],[-25,-46],[-1,-40],[-20,-1],[-31,0],[-5,-38],[3,-41],[3,-51],[3,-77],[-5,-49],[-23,-5],[-15,-19],[7,-39],[8,-47],[3,-41],[-14,-99],[-8,-93],[-16,-20],[-27,-22],[-14,-30],[8,-44],[7,-38],[33,-10],[9,-36],[-5,-7],[-6,-6],[-21,-8],[-5,-2],[-6,-28],[10,-48],[20,-49],[5,-14],[8,-28],[-4,-60],[-10,-54],[-8,-71],[-1,-65],[-15,-46],[-2,-46],[22,-33],[28,-32],[4,-43],[21,-4],[13,-19],[14,-19],[29,-34],[23,-34],[13,-27],[30,-15],[12,-35],[5,-41],[46,-16],[27,-41],[36,-23],[40,-10],[29,1],[20,23],[43,-26],[47,-59],[28,-54],[1,-74],[-2,-83],[-18,-100],[-20,-90],[3,-105],[24,-47],[2,-63],[-1,-44],[-17,-25],[-7,-48],[-8,-59],[14,-40],[-10,-43],[-1,-44],[16,-40],[8,-68],[-7,-25],[8,-41],[29,-55],[33,-43],[26,-38],[3,-45],[2,-51],[-2,-47],[25,-55],[32,-6],[46,21],[46,0],[29,-28],[16,-26],[31,-13],[25,-33],[22,-29],[22,-46],[-5,-87],[-16,-64],[-10,-12],[-6,-46],[16,-16],[6,-5],[7,-5],[34,-26],[97,-44],[32,10],[55,25],[33,16],[98,3],[46,1],[47,1],[77,-13],[34,-15],[23,-32],[3,-19],[3,-19],[-2,-72],[-13,-84],[0,-35],[2,-35],[9,-23],[67,-52],[71,-48],[57,-40],[34,-43],[47,-67],[31,-64],[27,-45],[23,-32],[60,-61],[88,-92],[59,-33],[24,-29],[22,-34],[20,-49],[29,-117],[27,-111],[5,-73],[-4,-75],[-15,-98],[-7,-51],[9,-63],[19,-104],[18,-62],[24,-43],[68,-134],[38,-59],[45,-28],[46,-24],[70,-29],[62,-17],[56,-1],[40,4],[72,48],[40,38],[26,30],[51,47],[28,13],[28,9],[24,1],[20,-13],[22,-25],[32,-39],[31,-33],[26,-9],[69,5],[57,0],[37,-6],[35,-18],[19,-20],[19,-29],[14,-61],[14,-63],[11,-77],[18,-43],[25,-41],[11,-49],[7,-73],[1,-95],[9,-73],[15,-42],[21,-39],[44,-34],[47,-27],[41,-16],[58,-16],[35,-18],[20,-16],[23,-10],[17,-10],[26,-3],[34,-1],[59,-5],[66,-2],[51,12],[52,10],[48,8],[89,22],[100,41],[52,11],[29,0],[27,-9],[23,-8],[13,2],[15,15],[17,30],[14,33],[8,8],[17,-4],[12,-6],[13,-4],[4,-9],[-4,-13],[-12,-29],[-10,-34],[-2,-27],[2,-31],[8,-21],[13,-14],[21,-4],[32,1],[21,-11],[21,-22],[32,-23],[26,-5],[61,6],[39,-4],[38,-9],[40,1],[18,9],[16,9],[21,-6],[17,-10],[12,-13],[8,-10],[4,-20],[13,-49],[10,-30],[13,-17],[18,-15],[51,-23],[16,-12],[5,-31],[-3,-40],[-15,-48],[-17,-75],[-2,-32],[6,-26],[71,-154],[17,-26],[21,-18],[24,-5],[52,16],[75,24],[34,-6],[32,-17],[28,-23],[44,-53],[29,-35],[19,-20],[24,-8],[66,-6],[35,-16],[32,-28],[34,-31],[26,-5],[50,-20],[65,-23],[29,-32],[29,-35],[27,-28],[29,-42],[36,-47],[74,-77],[62,-58],[42,-13],[56,-3],[76,12],[35,20],[38,-16],[48,-42],[44,-49],[63,-82],[62,-84],[16,-35],[6,-49],[10,-69],[12,-18],[32,-15],[38,-17],[16,-30],[40,-55],[27,-37],[11,-50],[20,-29],[53,-26],[68,-15],[56,0],[47,24],[45,51],[56,82],[35,73],[60,117],[19,23],[21,5],[34,-11],[41,-11],[34,0],[39,19],[41,18],[25,3],[28,-17],[24,-32],[59,-58],[54,-58],[79,-65],[68,-50],[30,-29],[30,-32],[28,-49],[20,-50],[13,-45],[25,-29],[50,-59],[20,-46],[9,-58],[12,-44],[20,-27],[34,-17],[48,-8],[53,-35],[51,-45],[40,-49],[34,-34],[16,-27],[7,-35],[-4,-32],[-16,-25],[-29,-26],[-17,-22],[-9,-25],[5,-33],[28,-35],[31,-35],[13,-43],[9,-32],[26,-23],[47,-30],[19,-32],[32,-52],[39,-41],[9,-35],[-5,-57],[5,-36],[29,-43],[24,-47],[30,-19],[62,2],[27,-9],[26,-15],[17,-36],[9,-35],[15,-33],[18,-52],[29,-46],[29,-33],[50,-20],[55,-12],[30,6],[22,27],[20,38],[33,68],[24,35],[29,25],[30,15],[30,4],[44,-8],[34,25],[43,24],[35,8],[59,10],[81,34],[160,55],[180,60],[47,19],[30,29],[122,164],[55,93],[56,49],[15,35],[20,58],[25,65],[50,71],[79,82],[56,49],[43,38],[59,56],[51,26],[68,23],[95,34],[65,15],[48,-8],[71,-9],[73,11],[-10,-163]],[[601334,463615],[-227,437],[-112,108],[-276,77],[-312,2],[-41,170],[42,182],[7,233],[-90,151],[-130,48],[-167,3],[-693,-230],[-793,-202],[-189,25],[-397,337],[-227,-10],[-155,-95],[-90,-128],[-142,-66],[-135,74],[-198,366],[-253,339],[-170,122],[-268,20],[-107,-93],[-99,-178],[-42,-189],[36,-201],[-22,-190],[-113,-114],[-608,144],[-438,6],[-197,-58],[-106,-110],[-324,-568],[-180,-537],[-571,-732],[-389,-295]],[[593158,462463],[-353,442],[-616,497],[-678,130],[-275,16],[-225,-106],[-414,-292],[-463,-256],[-389,-266],[-388,-143],[-157,28],[-161,126],[-136,322],[-36,204],[-62,885],[28,566],[-20,921],[-42,194],[-106,211],[-78,259],[35,212],[162,351],[36,202],[-120,702],[-156,370],[-277,142],[-85,145],[-20,193],[69,181],[156,222],[50,176],[-120,442],[-183,319],[-77,190],[-2,93],[-6,416],[50,394],[-22,176],[-113,83],[-268,116],[-446,-224],[-226,-72],[-163,-6],[-522,100],[-430,218],[-312,63],[-162,-78],[-199,-291],[-134,-92],[-961,-185],[-411,-2],[-162,31],[-133,68],[-390,359],[-352,378],[-539,278],[-134,-4],[-162,-95],[-296,-250],[-169,-82],[-1047,-116],[-790,21],[-108,126],[28,204],[65,171],[-15,196],[-100,144],[-204,158],[-49,38],[-94,131],[-259,362],[-698,536],[-80,135],[-56,176],[104,356],[163,225],[262,201],[1089,663],[127,133],[793,1295],[50,176],[0,178],[-292,805],[-127,351],[-147,709],[61,154],[228,355],[120,111],[157,82],[98,157],[7,400],[77,476],[198,305],[246,247],[277,606],[106,179],[176,497],[114,182],[156,3],[430,-280],[148,-2],[121,60],[453,-96],[125,13],[120,64],[274,445],[67,109],[50,196],[13,54],[65,451],[131,443],[87,149],[262,182],[170,65],[668,377],[166,185],[232,382],[57,171],[-15,179],[-55,165],[-206,382],[-416,603],[-334,279],[-438,194],[-361,83],[-187,-12],[-8,0],[-122,-8],[-296,110],[-318,209],[-431,-198],[-445,271],[-148,43],[-129,-47],[-106,-93],[-134,9],[-86,128],[-224,1043],[-220,582],[-162,671],[-64,417],[44,189],[132,341],[37,192],[20,358],[206,537],[125,112],[227,560],[128,92],[275,42],[284,187],[143,365],[137,1073],[94,295],[197,401],[154,-18],[213,-135],[105,-112],[177,-29],[149,35],[665,366],[283,294],[176,127],[142,35],[290,-65],[162,2],[112,99],[70,167],[117,776],[175,411],[119,56],[226,20],[221,293],[127,314],[266,45],[249,118],[106,130],[141,371],[122,139],[197,362],[161,221],[241,213],[303,425],[233,170],[162,28],[172,107],[76,144],[106,346],[0,178],[-56,202],[-112,118],[-65,189],[-183,592],[-14,214],[141,421],[261,369],[0,4],[8,178],[-56,206],[-218,302],[-453,325],[-129,141],[-78,207],[9,442],[-128,301],[-466,41],[-270,180],[-106,174],[-21,171],[7,408],[44,206],[98,233],[255,333],[283,146],[275,28],[452,112],[134,-58],[410,-330],[149,36],[84,180],[22,201],[77,164],[225,229],[214,117],[359,120],[127,116],[99,143],[157,388],[514,1041],[207,804],[8,127],[0,4],[19,323],[226,727],[114,525],[7,153],[6,153],[-33,392],[6,298],[92,403],[-15,231],[-55,164],[-354,367],[-347,244],[-424,223],[-366,273],[-248,254],[-318,108],[-141,12],[-247,-91],[-172,-158],[-154,-74],[-133,82],[-87,183],[-49,182],[-27,271],[26,256],[242,599],[49,227],[-1,526],[30,188],[99,168],[267,181],[99,177]],[[328543,308736],[-311,746],[-5895,14128],[-86,-162],[-684,-1276],[50,-365],[466,-1442],[141,-631],[85,-618],[-22,-646],[-70,-620],[-197,-770],[-333,-775],[-641,-1223],[-461,-1045],[-868,-826],[-431,-843],[-233,-855],[-101,-794],[0,-807],[-34,-700],[220,-2313],[113,-715],[-6159,-3879],[-103,-65],[-2648,-1667],[-126,-79],[-17,-11],[-142,-89],[-148,-93],[-114,-72],[-114,-72],[-26,18],[-1267,846],[-1110,741],[-1298,866],[-509,340],[-135,90],[-163,109],[-136,91],[-76,51],[-142,94],[-147,99],[-327,218],[-104,69],[157,291],[76,281],[145,96],[147,25],[65,138],[104,222],[98,32],[75,49],[64,145],[41,220],[38,131],[0,101],[-38,48],[-90,92],[-114,84],[-78,158],[-67,272],[99,255],[107,237],[-37,189],[-59,92],[-52,210],[-114,194],[-66,193],[-15,171],[73,167],[71,168],[60,78],[84,57],[103,58],[77,81],[119,81],[91,105],[60,48],[74,86],[0,131],[10,62],[-4,85],[-15,71],[-24,37],[13,42],[37,52],[34,42],[14,79],[-8,64],[-42,68],[-35,37],[-15,33],[9,42],[23,31],[34,22],[8,1],[38,5],[17,11],[28,20],[7,5],[40,28],[45,2],[7,-2],[39,-8],[8,-2],[34,-1],[34,-1],[69,29],[62,40],[43,38],[3,5],[50,82],[70,99],[69,86],[21,27],[35,49],[54,166],[17,54],[43,107],[49,118],[22,53],[77,199],[50,45],[69,8],[45,-30],[33,-20],[74,-47],[66,18],[62,47],[7,44],[0,53],[3,34],[4,62],[2,15],[13,119],[23,127],[22,27],[20,11],[8,1],[24,5],[46,103],[17,23],[14,17],[32,39],[7,10],[57,62],[33,40],[12,31],[-5,46],[-12,120],[-43,115],[-18,111],[2,64],[10,90],[-17,64],[-27,34],[-32,9],[-24,7],[-23,3],[-33,4],[-77,6],[-10,1],[-23,-1],[-42,-2],[-42,28],[-34,19],[-67,36],[-31,43],[-8,11],[-8,3],[-20,8],[-65,7],[-4,1],[-55,9],[-70,42],[-69,63],[-6,5],[-37,37],[-24,45],[-22,41],[-36,65],[-26,19],[-43,-19],[-47,-25],[-32,17],[-35,42],[-38,55],[-26,101],[-19,71],[-26,42],[-26,19],[-25,7],[-14,18],[-9,97],[0,3],[2,43],[-12,40],[-28,45],[-37,90],[-6,14],[-31,81],[-12,105],[-12,51],[-27,28],[-3,4],[-16,12],[-26,-14],[-26,-12],[-2,-1],[-20,-2],[-26,-4],[-77,9],[-58,9],[-7,2],[-65,16],[-21,-7],[-22,-6],[-35,-10],[-64,-9],[-10,-1],[-33,-4],[-12,-1],[-15,1],[-53,3],[-37,50],[-42,42],[-82,30],[-58,-41],[-58,-40],[-37,-72],[2,-83],[6,-43],[11,-61],[-35,-85],[-26,-40],[-47,-23],[-42,8],[-32,-40],[-4,-5],[-14,-25],[-6,-29],[12,-30],[9,-25],[29,-63],[31,-54],[7,-12],[43,-79],[39,-65],[17,-94],[0,-88],[-22,-52],[-44,-95],[-66,-69],[-62,-9],[-49,13],[-45,10],[-13,3],[-61,-19],[-64,-57],[-53,-14],[-47,23],[-54,59],[-42,22],[-61,-9],[-52,-51],[-26,-26],[-62,-90],[-29,-68],[-36,-86],[-8,-20],[-28,-67],[-30,-55],[-97,-185],[-120,-128],[-8,-9],[-50,-99],[19,-109],[62,-155],[81,-161],[-12,-84],[-56,-123],[-88,-52],[-92,-37],[-18,-15],[-52,-47],[-82,23],[-57,-63],[-74,-41],[-150,-23],[-67,-83],[-66,-83],[-71,-56],[-93,-123],[-91,-169],[-193,-211],[-121,-46],[-268,-104],[-304,-244],[-382,-321],[-120,-361],[-198,-159],[-514,-190],[-278,107],[-125,276],[-440,13],[-226,71],[-168,224],[-235,186],[-150,210],[-651,742]],[[298386,310406],[81,79],[132,167],[137,307],[19,32],[503,786],[17,41],[133,321],[-16,366],[-87,613],[-93,357],[-203,297],[264,281],[190,136],[247,15],[223,117],[191,178],[163,192],[387,508],[332,597],[118,199],[73,226],[64,213],[163,363],[87,282],[89,215],[23,57],[24,57],[90,239],[178,474],[205,490],[437,542],[26,247],[160,1526],[410,3899],[225,2138],[35,337],[4,33],[3,33],[10,93],[217,2068],[398,3789],[50,483],[416,3972],[317,2138],[500,3374],[568,3777],[23,258],[57,646],[16,343],[-74,383]],[[305918,348690],[4293,330],[4672,359],[17189,1322],[2696,-2232],[58,-35],[943,-5301],[4,-22],[21,-118],[1482,-8323],[232,-1303],[19,-108],[93,-352],[227,-860],[88,-335]],[[337935,331712],[-1873,-4584],[-57,-138],[-22,-55],[-572,-1399],[-521,-1276],[-572,-1399],[-1857,-4540],[-757,-1854],[-3161,-7731]],[[504189,273867],[-1142,-128],[12,-1577],[17,-2214],[17,-2179],[1,-110],[1,-135],[-2,-2],[-3,-4],[-8,-10],[-16,-20],[-847,-1036],[-194,-180],[-116,-100],[-132,-62],[-62,-13],[-37,-28],[-19,-29],[-23,-58],[-34,-132],[-23,-89],[-12,-87],[-11,-163],[-18,-157],[-69,-525],[4,-218],[41,-174],[-41,-187],[-66,-230],[-161,-336],[-165,-262],[-122,-155],[-85,-190],[-95,-184],[-45,-85],[-45,-86],[-306,-383],[-112,-74],[-352,-386],[-134,-178],[-161,-180],[-445,-274],[-293,-193],[-293,-193],[-273,-124],[-280,-175],[-281,-286],[-578,-797],[-35,-70],[-172,-343],[-43,-177],[27,-174],[178,-362],[238,-313],[133,-160],[51,-137],[11,-206],[-107,-261],[-330,-311],[-190,-112],[-231,6],[-388,130],[-131,12],[-112,-49],[-54,-162],[-54,-218],[-53,-298],[-149,-324],[-173,-417],[-173,-411],[-281,-734],[-99,-248],[-8,-20],[-116,-274],[-175,-55],[-176,-55],[-33,-32],[-238,-227],[-95,-179],[-27,-61],[-72,-164],[-78,-87],[-78,-88],[-120,-31],[-97,3],[-97,4],[-120,-33],[-32,-9],[-132,-84],[-48,-71],[-47,-72],[-75,-205],[-25,-311],[-4,-249],[-160,-84],[-30,-15],[-140,-31],[-42,0],[-129,0],[-35,0],[-102,-18],[-113,-20],[-6,-1],[-217,-49],[-153,-49],[-78,-50],[-62,-106],[-59,-176],[-143,-254],[-111,-136],[-124,-75],[-128,-6],[-91,62],[-206,131],[-95,0],[-70,-88],[21,-149],[108,-441],[94,-423],[4,-287],[-37,-187],[-111,-170],[-120,-191],[-37,-143],[-33,-194],[-33,-93],[-46,-25],[-45,-25],[-120,44],[-114,53],[-120,-15],[-112,-44],[-46,-118],[21,-175],[78,-224],[71,-261],[39,-226],[-7,-191],[-62,-299],[-66,-112],[-99,-50],[-103,37],[-82,94],[-62,143],[-124,361],[-67,172],[-98,171],[-136,217],[-174,169],[-123,86],[-116,7],[-78,-44],[-41,-93],[12,-168],[99,-405],[-4,-261],[-74,-218],[-128,-181],[-99,-180],[-79,-237],[-58,-348],[-57,-318],[-124,-299],[-161,-155],[-165,-56],[-187,-99],[-135,-131],[-107,-187],[-223,-318],[-198,-118],[-161,-19],[-144,81],[-75,256],[-20,367],[-78,405],[-108,354],[-153,305],[-84,75],[-85,75],[-99,24],[-177,-49],[-278,-184],[-180,-34],[-264,0],[-249,-93],[-597,-268],[-437,-127],[-413,-72],[-487,62],[-520,224],[-437,261],[-248,299],[-116,436],[-107,1207],[-132,436],[-404,747],[-528,710],[-372,386],[-256,124],[-255,124],[-611,287],[-470,62],[-463,-261],[-594,-673],[-412,-435],[-203,-381],[-53,-379],[72,-417],[118,-778],[-42,-423],[-181,-299],[-264,-162],[-334,19],[-335,19],[-561,211],[-313,-61],[-314,-61],[-545,-201],[-250,36]],[[473974,246785],[3,188],[-66,186],[-91,411],[-140,386],[-330,498],[-446,436],[-545,312],[-50,170],[43,176],[7,192],[-276,-42],[-142,109],[-184,519],[-27,216],[51,402],[-1,616],[-164,482],[-21,805],[70,596],[51,166],[211,265],[0,191],[197,301],[304,260],[142,35],[127,-52],[340,-263],[141,-34],[120,16],[397,-130],[126,9],[80,141],[-2,175],[-283,-12],[-296,66],[-241,276],[-183,310],[-389,450],[-218,323],[-340,411],[-78,155],[-20,203],[40,399],[-19,175],[-269,-116],[-78,152],[49,204],[342,671],[237,456],[121,224],[-726,705],[-407,33],[-390,-124],[-279,22],[-409,277],[-319,16],[-99,-249],[-162,-107],[-195,78],[-302,121]],[[468986,259642],[24,560],[-35,296],[-37,327],[4,306],[49,257],[52,145],[301,388],[185,188],[82,131],[37,89],[40,68],[143,138],[199,147],[87,58],[21,54],[0,58],[-14,133],[-18,74],[-14,73],[19,76],[71,71],[74,65],[20,74],[14,449],[-9,77],[-51,159],[-14,116],[11,447],[1,34],[6,18],[3,6],[9,17],[10,16],[23,6],[10,-1],[342,-52],[175,-16],[261,-19],[25,-1],[35,-10],[39,-12],[132,-17],[125,-16],[60,-8],[63,-6],[29,10],[30,20],[21,25],[21,25],[34,58],[31,111],[110,248],[163,304],[153,263],[16,28],[173,349],[86,175],[39,79],[47,95],[141,298],[223,475],[137,247],[2,4],[31,69],[2,5],[53,166],[3,9],[1,4],[50,206],[36,148],[67,275],[6,24],[1,4],[26,106],[274,1229],[3,16],[4,12],[20,82],[12,38],[8,20],[10,22],[4,3],[13,11],[19,14],[19,7],[20,8],[44,2],[2,0],[5,0],[42,3],[9,0],[409,16],[260,12],[280,20],[80,-1],[74,49],[55,116],[13,150],[21,235],[54,611],[32,454],[1,11],[1,13],[68,879],[67,1012],[29,366],[25,277],[4,48],[5,191],[-7,160],[-41,126],[-7,20],[-37,130],[-29,102],[6,43],[20,131],[125,636],[6,31],[23,80],[39,142],[20,72],[11,30],[3,8],[136,373],[223,572],[27,68],[320,819],[70,203],[132,379],[75,140],[44,60],[98,130],[47,60],[46,54],[5,6],[29,35],[50,60],[36,44],[49,58],[41,98],[15,106],[9,96],[33,134],[45,126],[36,102],[77,258],[29,45],[12,18],[25,17],[22,32],[19,28],[20,35],[19,35],[13,25],[21,45],[25,49],[19,39],[91,261],[-103,3814],[-12,447],[-1,35],[-65,2415],[-2,48],[-2,97],[-220,8127],[-42,1584],[-3,78],[-53,1980],[-56,2058],[-6,247],[-56,2058],[-12,435],[-87,3233],[-71,2637],[-39,1435],[-50,1858],[-1,33],[-5,193],[-1,29],[-2,86],[-3,85],[-45,1676],[-84,3102],[-58,2150],[-27,1007],[-3,132],[-34,1258],[-144,366],[-351,106],[-284,86],[-154,152],[-468,729],[-83,269],[14,569],[77,467],[254,826],[51,480],[-28,305],[-134,325],[-320,238],[-275,37],[-693,-128],[-232,82],[-128,172],[-35,199],[69,526],[290,1303],[113,343],[-28,1006],[8,1161],[-64,698],[-119,330],[-70,103],[-484,375],[-1200,1500],[-339,284],[-183,84],[-432,97],[-268,339],[-233,192],[-297,117],[-581,30],[-217,60],[-87,101],[-217,642],[-163,277],[-170,202],[-508,229],[-439,58],[-361,-60],[-212,-121],[-367,-379],[-197,-54],[-207,61],[-126,189],[-411,441],[-146,95],[-490,170],[-112,108],[-146,342],[-80,186],[-7,203],[-7,203]],[[464790,339740],[149,52],[466,-4],[120,32],[84,406],[121,217],[402,370],[100,157],[163,400],[26,208],[-61,462],[-66,151],[-401,609],[-64,360],[37,170],[5,22],[432,783],[34,246],[-49,420],[183,904],[79,240],[184,269],[818,603],[106,213],[22,180],[77,189],[121,152],[289,119],[85,125],[42,229],[-6,444],[170,261],[311,58],[439,-41],[182,19],[341,78],[127,71],[177,364],[112,778],[43,182],[77,144],[127,-69],[226,-750],[77,-147],[460,-227],[248,-282],[114,-372],[98,-213],[239,-218],[135,-58],[149,-13],[430,215],[377,329],[168,280],[458,1278],[263,423],[183,53]],[[474019,350611],[-52,-373],[-70,-345],[24,-475],[81,-389],[82,-389],[191,-384],[197,-172],[317,-43],[120,-111],[199,-288],[127,-66],[233,-68],[275,164],[121,-42],[155,-114],[135,-175],[140,-352],[64,-411],[112,-37],[71,17],[72,17],[170,2],[596,66],[384,329],[218,227],[143,227],[232,375],[339,180],[160,63],[161,63],[272,146],[466,318],[339,68],[368,68],[353,68],[173,-34],[218,-113],[19,-188],[19,-187],[197,-76],[66,-26],[140,37],[140,36],[234,-251],[162,-24],[544,81],[303,-168],[323,-11],[159,-14],[166,-59],[9,-4],[8,-2],[8,-3],[54,-13],[1,0],[4,-1],[73,-23],[120,13],[125,11],[73,6],[73,5],[108,-10],[60,-19],[70,-44],[158,-90],[131,-95],[106,-95],[154,-260],[132,-256],[77,-402],[49,-176],[114,-140],[132,-58],[386,33],[134,-30],[103,-88],[164,-499],[140,-628],[67,-151],[54,-117],[102,-45],[240,28],[282,131],[124,17],[210,-91],[245,-79],[188,-57],[240,11],[83,165],[75,209],[150,494],[72,300],[56,85],[86,45],[181,80],[210,215],[241,165],[195,374],[218,192],[177,46],[300,91],[124,5],[185,-176],[142,-136],[301,-215],[158,-17],[158,-17],[270,23],[293,113],[196,374],[113,318],[52,544],[38,635],[-150,497],[-86,399],[20,278],[10,25],[132,91],[345,158],[307,127],[138,-32],[138,-32],[308,78],[537,131],[245,210],[181,112],[44,-20],[44,-19],[81,-36],[267,-264],[377,-297],[154,-53],[159,-58],[94,37],[94,37],[132,125],[612,776],[256,386],[118,159],[453,612],[406,-46],[147,84],[274,155],[272,289],[248,278],[102,27],[103,28],[141,-95],[59,-128],[104,-231],[161,-600],[95,-283],[211,-147],[212,-31],[103,-15],[574,335],[47,4],[900,86],[248,173],[113,-119],[332,-650],[155,-121],[156,-36],[297,10],[213,-88]],[[670050,220200],[6045,2579],[794,339],[511,55],[1792,196],[1094,119],[1016,149],[324,69],[251,140],[64,36],[164,189],[96,220],[346,935],[186,348],[413,364],[69,-467],[15,-66],[18,-46],[29,-50],[73,-96],[296,-379],[476,-1351],[19,-53],[793,-2252],[-852,-996],[152,-661],[120,-150],[112,-140],[364,-456],[897,-1124],[-262,-383],[-501,-734],[206,-723],[158,-508],[88,-239],[88,-240],[2,-6],[42,-140],[72,-252],[214,-752],[65,-233],[2,-8],[56,-168],[6,-19],[29,-97],[11,-37],[13,-96],[46,-350],[1,-8],[20,-302],[21,-303],[2,-59],[9,-242],[6,-147],[10,-282],[-14,-379],[-7,-365],[-9,-477],[1228,-693],[2165,-1221],[395,-222],[140,-79],[-31,-67],[-58,-129],[-875,-1945],[-1267,-2817],[-498,-1107],[-128,-285],[-138,-307],[-1434,-3187],[-403,-898],[-9,-97],[-9,-97],[-16,-170],[-732,-7886],[-91,-975]],[[545720,262407],[-1300,-1507],[-79,-293],[-20,-213],[-157,-315],[-153,-3337],[-40,-1518],[184,-1074],[112,-243],[33,-127],[9,-118],[-5,-257],[11,-193],[25,-185],[24,-160],[-4,-111],[-9,-96],[-22,-141],[-61,-96],[-102,-111],[-124,-138],[-93,-86],[-114,-115],[-119,-100],[-47,-41],[-35,-75],[-9,-124],[-35,-77],[-128,-182],[-86,-80],[-88,-61],[-78,-44],[-44,-69],[-24,-64],[-22,-102],[49,-276],[-9,-107],[-56,-56],[-35,-36],[-55,-19],[-46,-19],[-41,-27],[-88,-152],[-101,-174],[-57,-64],[-53,-36],[-64,-25],[-58,-31],[-110,-69],[-114,-100],[-62,-57],[-35,-9],[-17,0],[-19,2],[-27,-9],[-35,-19],[-74,-54],[-41,-11],[-25,-17],[-55,-33],[-71,-7],[-80,22],[-78,18],[-74,28],[-46,34],[-27,25],[-27,8],[-30,17],[-12,33],[-13,29],[-21,-4],[-18,-49],[55,-56],[55,-56],[74,-63],[47,-21],[62,-12],[70,-8],[44,-12],[24,-17],[6,-23],[-1,-50],[-6,-23],[-12,-23],[-38,-59],[-25,-43],[-14,-32],[-4,-16],[-1,-18],[2,-22],[5,-20],[9,-21],[11,-17],[7,-7],[7,-7],[24,-10],[26,-8],[21,-6],[15,-8],[27,-16],[24,-19],[9,-15],[10,-42],[3,-25],[-3,-31],[-4,-50],[0,-54],[3,-52],[21,-169],[14,-156],[3,-101],[-4,-96],[-2,-50],[4,-37],[7,-17],[14,-22],[131,-113],[81,-95],[0,-144],[-5,-34],[-15,-32],[-26,-30],[-33,-22],[-34,-10],[-32,-11],[-32,-21],[-59,-32],[-62,-39],[-68,-47],[-47,-38],[-100,-104],[-75,-85],[-67,-81],[-41,-53],[-47,-61],[-45,-56],[-36,-47],[-24,-37],[-27,-49],[-88,-167],[-57,-110],[0,-2],[-8,-14],[-25,-47],[-3,-5],[-39,-63],[-27,-66],[-15,-63],[-7,-64],[-2,-19],[-6,-103],[2,-110],[8,-52],[-1,-66],[6,-63],[17,-52],[28,-48],[26,-45],[23,-47],[13,-29],[9,-49],[5,-87],[3,-101],[1,-38],[2,-66],[-3,-45],[-8,-55],[-30,-97],[-70,-236],[-104,-343],[-32,-103],[-21,-92],[-91,-527],[-85,-466],[-37,-204],[-4,-17],[-19,-107],[-6,-82],[2,-102],[7,-57],[22,-158],[101,-620],[9,-57],[9,-57],[9,-83],[3,-37],[1,-2],[2,-46],[0,-14],[1,-19],[2,-39],[0,-3],[-522,242],[-158,71],[-157,54],[-152,30],[-107,18],[-84,6],[-173,2],[-235,-10],[-836,-60],[-825,30],[-769,32],[-265,15],[-83,7],[-80,7],[-187,17],[-23,2],[-363,36],[-573,58],[-830,91],[-320,34],[-257,27],[-162,16],[-143,14],[-13,1],[-239,22],[-186,15],[-244,24],[-215,18],[-117,22],[-138,33],[-56,13],[-152,37],[-15,-24],[-14,-25],[-79,-131],[-44,-72],[-296,-492],[-38,-62],[58,-145],[-15,-24],[-107,61],[-176,-278],[-175,-279],[30,-67],[31,-67],[-22,-38],[-101,79],[-49,-82],[-281,-473],[-468,-778],[784,-963],[967,-1187],[16,-20],[-527,-204],[-399,-534],[-18,-24],[557,-1375],[231,165],[299,213],[210,149],[388,276],[727,517],[23,-61],[134,-343],[493,-1262],[26,17],[349,223],[14,9],[12,-109],[3,-25],[3,-25],[-6,-69],[-24,-58],[-41,-42],[-46,-38],[-47,-28],[-52,-54],[-29,-53],[-5,-27],[-5,-26],[6,-47],[21,-39],[21,-39],[44,-46],[31,-14],[13,-8],[14,-8],[2,-21],[21,-35],[31,0],[35,-1],[18,-7],[14,-49],[10,-50],[8,-34],[23,-28],[8,-22],[21,-40],[31,-34],[23,-32],[55,-45],[28,-22],[97,-83],[48,-53],[6,-32],[42,-48],[55,-59],[35,-37],[35,-38],[27,-35],[-95,-99],[-21,-18],[-56,-48],[-14,-35],[-28,-26],[-69,-18],[-60,-38],[-39,-36],[-21,-24],[-33,7],[-87,-54],[-101,-145],[-101,-145],[-84,-170],[-44,-91],[-6,-123],[6,-96],[41,-62],[63,-95],[47,-234],[34,-169],[-17,-77],[-20,-86],[-113,-502],[-16,-75],[-67,-303],[13,-77],[12,-77],[-15,-48],[-19,-21],[-7,-29],[-11,-48],[-12,-60],[3,-37],[25,-22],[15,-17],[15,-17],[16,-21],[16,-21],[17,-20],[0,-24],[-1,-24],[27,-53],[3,-28],[-7,-33],[-6,-33],[-11,-37],[-11,-36],[-48,-70],[-23,-27],[-28,2],[-47,24],[-9,1],[-10,1],[-12,-15],[-13,-15],[-26,-43],[-30,-30],[-18,-14],[-17,-33],[-27,-57],[-10,-31],[-12,-13],[-12,-13],[-28,-1],[-8,-16],[1,-33],[9,-45],[9,-44],[0,-21],[-5,-13],[-4,-14],[-28,-11],[-33,4],[-13,1],[-17,-26],[-2,-5],[-6,-23],[-6,-23],[24,-54],[9,-30],[-5,-32],[-18,-16],[-32,-8],[-16,-5],[-17,-5],[-15,-12],[-16,-11],[-14,-24],[0,-47],[-3,-29],[-10,-15],[-18,-7],[-1,-2],[-22,-21],[-40,-91],[124,-71],[124,-72],[347,-200],[69,-48],[11,-7],[11,-8],[11,-7],[69,-55],[48,-52],[86,-117],[162,-217],[36,-50],[70,-97],[115,-146],[52,-47],[55,-35],[43,-16],[42,-16],[117,-31],[85,-4],[17,-1],[18,0],[87,0],[109,1],[91,8],[0,-25],[1,-78],[4,-282],[8,-618],[-5,-121],[-13,-92],[-17,-75],[-18,-86],[-7,-73],[-6,-49],[0,-142],[-9,-71],[-20,-42],[-29,-61],[-48,-70],[-37,-39],[-44,-34],[-51,-26],[-36,-32],[-59,-31],[-137,-71],[-138,-72],[-25,-29],[-57,-73],[-89,-111],[-138,-194],[-29,-40],[-59,-153],[-190,-409],[-21,-56],[-19,-71],[-47,-139],[-102,-352],[-30,-99],[-75,-248],[-18,-69],[-11,-59],[-13,-73],[-5,-68],[-16,-70],[-23,-55],[-32,-68],[-54,-53],[-39,-14],[-39,6],[-48,28],[-46,43],[-43,45],[-33,15],[-78,35],[-111,34],[-41,12],[-42,12],[-18,5],[-24,5],[-23,4],[-39,-9],[-39,-21],[-48,-27],[-78,-61],[-121,-80],[-70,-59],[-11,-2],[-11,-2],[-26,-5],[-26,-6],[-43,7],[-40,18],[-49,19],[-39,10],[-51,20],[-40,28],[-46,37],[-76,48],[-80,51],[-67,35],[-29,14],[-28,13],[-43,6],[-34,-13],[-32,-18],[-37,-41],[-18,-27],[-34,-52],[-23,-54],[-23,-54],[-56,-130],[-48,-109],[-41,-128],[-45,-189],[-88,-300],[-53,-181],[-18,-35],[-18,-22],[-18,-16],[-14,-6],[21,-45],[33,-71],[11,-23],[55,-120],[44,-100],[10,-55],[3,-27],[4,-27],[-18,-229],[-2,-25],[-6,-75],[-1,-19],[-4,-47],[-2,-30],[-6,-94],[0,-21],[-1,-6],[0,-14],[-2,-63],[-4,-25],[-2,-17],[-12,-24],[-9,-10],[-9,-9],[-28,-9],[-3,-1],[-31,2],[-16,2],[-24,10],[-31,12],[-12,5],[-23,7],[-31,10],[-90,29],[-16,5],[-56,3],[-36,-13],[-23,-8],[-140,-70],[-236,-117],[-92,-46],[-46,-23],[-126,-63],[-21,-10],[-52,-26],[5,-24],[24,-104],[8,-35],[10,-54],[15,-85],[20,-103],[7,-53],[25,-93],[231,-601],[17,-49],[18,-48],[54,-105],[49,-78],[38,-55],[110,-94],[52,-65],[140,-204],[66,-102],[104,-137],[128,-131],[147,-123],[64,-43],[46,-22],[43,-10],[77,13],[37,4],[45,-11],[75,-8],[45,-2],[50,22],[182,129],[164,88],[32,17],[35,9],[65,-3],[33,-2],[29,-5],[68,-29],[32,-8],[64,-15],[332,-53],[23,-4],[6,-3],[21,-12],[207,-156],[47,-30],[33,-20],[120,-46],[24,-16],[40,-40],[26,-34],[29,-35],[23,-46],[34,-80],[89,-213],[47,-122],[19,-40],[19,-22],[18,-12],[16,-10],[20,-19],[17,-28],[16,-39],[10,-25],[14,-33],[24,-32],[33,-14],[49,-6],[42,7],[83,12],[31,-4],[21,-5],[107,-49],[143,-57],[96,-29],[63,-17],[75,-27],[94,-34],[63,-30],[32,-21],[91,-87],[26,-14],[32,-8],[34,5],[23,17],[72,47],[104,80],[55,50],[20,28],[10,31],[27,86],[13,46],[20,33],[20,31],[20,18],[31,8],[47,7],[37,2],[38,0],[58,4],[103,-4],[40,-10],[29,-10],[22,-22],[22,-22],[29,-47],[46,-57],[31,-26],[28,-3],[27,10],[48,22],[55,21],[99,30],[50,19],[46,23],[44,22],[41,41],[192,254],[28,46],[33,61],[41,74],[40,84],[38,72],[18,32],[16,17],[17,17],[95,73],[111,87],[73,41],[30,13],[24,2],[29,-7],[27,-8],[34,-17],[66,-33],[32,-24],[55,-49],[49,-38],[29,-18],[38,-15],[33,-10],[38,1],[60,0],[46,8],[66,23],[82,28],[71,34],[100,37],[64,15],[64,21],[84,4],[146,1],[40,6],[35,22],[158,108],[49,25],[52,14],[40,19],[66,40],[66,41],[43,7],[57,0],[155,-13],[80,10],[60,16],[64,35],[222,146],[50,32],[80,36],[57,4],[84,-9],[68,3],[44,5],[64,41],[97,63],[36,15],[49,12],[62,2],[64,9],[35,18],[134,115],[193,182],[24,8],[21,0],[27,-14],[28,-18],[52,-73],[29,-35],[23,-36],[37,-47],[30,-30],[33,-29],[16,-9],[16,-10],[37,-15],[34,-4],[27,11],[31,20],[27,46],[28,40],[75,60],[46,42],[73,109],[52,102],[52,76],[51,70],[52,74],[162,204],[172,-192],[80,-72],[80,-73],[60,-37],[79,-10],[106,17],[132,14],[74,-3],[38,-2],[20,-1],[24,-7],[66,-36],[140,-108],[54,-49],[76,-76],[417,-487],[60,-100],[31,-69],[19,-101],[12,-137],[6,-165],[2,-185],[5,-97],[10,-53],[7,-37],[17,-46],[21,-48],[16,-22],[16,-22],[37,-33],[43,-13],[60,-3],[59,-2],[66,6],[53,4],[229,24],[58,6],[42,-5],[30,-7],[20,-9],[155,-69],[250,-87],[255,-89],[67,-31],[79,-43],[91,-55],[80,-40],[97,-33],[97,-34],[70,-20],[81,-19],[119,-10],[77,-14],[84,-14],[43,-13],[40,-19],[37,-21],[32,-32],[54,-96],[40,-105],[55,-165],[48,-138],[24,-72],[24,-65],[46,-101],[45,-82],[38,-74],[43,-62],[38,-40],[43,-35],[46,-21],[42,-13],[61,-13],[65,-9],[80,-1],[67,5],[79,16],[90,33],[63,25],[52,29],[-21,-100],[-13,-82],[0,-74],[1,-70],[10,-54],[25,-93],[28,-66],[30,-71],[10,-37],[10,-49],[14,-43],[1,-30],[-14,-59],[-70,-248],[-58,-186],[-11,-56],[-7,-59],[2,-87],[-2,-42],[-2,-49],[-12,-53],[-22,-71],[-26,-67],[-58,-105],[-52,-94],[-49,-94],[-27,-48],[-15,-56],[-15,-51],[-10,-41],[-17,-34],[-22,-38],[-27,-35],[-26,-27],[-81,-3],[-47,-4],[-43,-7],[-49,-14],[-38,-26],[-35,-30],[-27,-33],[-28,-40],[-63,-88],[-32,-41],[-38,-37],[-39,-42],[-41,-20],[-30,-8],[-27,-22],[-18,-28],[-38,-54],[-32,-41],[-18,-25],[-35,-45],[-24,-33],[-14,-14],[-24,-21],[-15,-13],[-22,-2],[-11,2],[-19,4],[-20,21],[-70,66],[-14,13],[2,-14],[4,-15],[-1,-15],[-3,-9],[-7,-11],[-21,-31],[-15,-24],[-24,-40],[-43,-76],[-52,-84],[-45,-92],[-49,-114],[-44,-114],[-46,-105],[-56,-124],[-41,-80],[-55,-97],[-25,-42],[-60,-91],[-41,-70],[-13,-31],[-10,-40],[-21,-80],[-30,-88],[-41,-108],[-32,-91],[-15,-36],[-39,-129],[-18,-60],[-34,-77],[-28,-61],[-57,-95],[-43,-72],[-29,-53],[-33,-59],[-20,-69],[-21,-73],[-14,-46],[-19,-58],[-19,-52],[-9,-40],[-24,-120],[-12,-37],[-7,-17],[-12,-17],[-20,-24],[-19,-20],[-27,-18],[-49,-26],[-32,-14],[-23,-10],[-28,-13],[-18,-11],[-80,-55],[-86,-55],[-53,-31],[-40,-14],[-21,-37],[-29,-48],[-15,-31],[-12,-38],[-4,-36],[307,-1052],[656,-2245],[218,-123],[623,-121],[50,-80],[628,-450],[368,-622],[100,-102],[275,-176],[205,-58],[77,-186],[70,-310],[2,-216],[-52,-320],[51,-436],[311,-452]],[[548405,202542],[-290,-188],[-162,-185],[-122,-218],[-176,-493],[-134,-282],[-366,-434],[-446,-184],[-636,-29],[-282,-71],[-355,-157],[-267,-250],[-566,-812],[-206,-371],[-388,1],[-263,-56],[-197,-249],[-125,-71],[-151,21],[-238,215],[-291,0],[-184,198],[-147,212],[-107,409],[-85,158],[-261,305],[-248,385],[-319,284],[-98,155],[-43,66],[-103,351],[-55,137],[-93,83],[-126,46],[-258,-28],[-389,1],[-315,26],[-477,39],[-297,-25],[-167,-82],[-122,-92],[-131,-78],[-176,-124],[-478,-362],[-58,-37],[-77,-49],[-182,-117],[-436,-244],[-469,-333],[-271,-197],[-380,-297],[-133,-18],[-155,70],[-241,180],[-240,111],[-290,78],[-270,-28],[-524,-83],[-505,-181],[-766,-250],[-218,-75],[-493,-193],[-46,-58],[-46,-59],[-85,-303],[-67,-312],[-182,-177],[-146,-181],[-231,-183],[-168,-97],[-314,-209],[-219,-89],[-149,-60],[-185,-119],[-466,-301],[-851,-367],[-386,-98],[-319,15],[-241,-163],[-273,-254],[-685,-422],[-487,-237],[-22,-10],[-193,-94],[-412,-57],[-350,60],[-400,61],[-146,-41],[-146,-42],[-200,-147],[-246,-396],[-100,-109],[-418,-291],[-119,-174],[-99,-217],[-71,-257],[-13,-176],[49,-668],[-15,-221],[-76,-233],[-99,-152],[-593,-479],[-162,-65],[-113,-104],[-73,-88],[-48,-58],[-143,-104],[-115,-73],[-115,-73],[-363,-157],[-98,-42],[-410,-68],[-9,-2],[-3,0],[-1,0],[-233,-39],[-186,5],[-183,52],[-111,-16],[-52,-8],[-258,-141],[-169,-91],[-357,-238],[-311,-137],[-143,16],[-253,65],[-332,220],[-349,147],[-95,32],[-94,32],[-169,3],[-74,8],[-201,24],[-148,67],[-256,268],[-133,70],[-171,-14],[-157,78],[-277,239],[-145,43],[-184,-18],[-136,-117],[-136,-116],[-140,-46],[-139,-45],[-213,-218],[-401,-513],[-80,-52],[-81,-51],[-401,-52],[-358,110],[-160,76],[-136,109],[-474,669],[-210,217],[-163,107],[-163,-11],[-405,-295],[-174,-38],[-256,4],[-290,76],[-162,-48],[-126,-136],[-157,-92],[-127,41],[-197,260],[-227,456],[-156,124],[-148,16],[-246,186],[-282,118],[-313,74],[-132,-76]],[[509659,192383],[-207,796],[-1388,5333],[-902,3464],[-66,254],[-3,12],[-8,31],[-6,22],[-6,23],[-22,84],[-59,230],[-4,15],[-13,49],[-515,1980],[-51,193],[-3,14],[-31,120],[-45,171],[-159,613],[-113,431],[-65,250],[-639,2456],[-82,316],[-258,992],[-2,11],[-1,4],[-30,124],[-76,315],[-293,1222],[-28,120],[-6,23],[-13,-87],[-10,-31],[-14,-6],[-13,-6],[-3,-26],[-9,-20],[-25,-22],[-9,2],[-8,2],[-26,19],[-18,-5],[-18,-22],[-14,3],[-7,-22],[15,-60],[-1,-27],[-1,-27],[-7,-50],[-18,-29],[-17,-1],[-17,0],[-20,-29],[-13,-2],[-4,11],[-5,11],[-17,5],[-12,0],[-12,0],[-25,0],[-60,19],[-26,10],[-26,11],[-12,0],[-66,-2],[-15,10],[-15,9],[-15,-4],[-14,-5],[-14,-6],[-13,-7],[-10,23],[-20,4],[-20,5],[-61,-7],[-23,-3],[-15,6],[-90,31],[-125,-18],[-16,-3],[-55,45],[-81,11],[-21,-2],[-51,-6],[-54,13],[-3,1],[-9,2],[-4,2],[-4,1],[-43,13],[-42,24],[0,-23],[-27,-12],[-37,32],[-20,-19],[-14,10],[-13,10],[-48,16],[-18,-9],[-9,-5],[-9,-5],[-12,-1],[-53,-8],[-33,19],[-33,19],[-24,-13],[-78,16],[-66,2],[-35,13],[-73,29],[-42,-3],[-23,-16],[-47,-57],[-61,-86],[-52,-138],[-10,-94],[-5,-48],[-2,-12],[-13,-90],[-63,-118],[-35,-13],[-14,-19],[-13,-19],[-21,-76],[3,-51],[-30,-65],[-16,-47],[-4,-14],[-20,-60],[-32,-40],[-11,-5],[-32,-16],[-14,-6],[-14,-1],[-19,-2],[-20,-1],[-52,-4],[-29,-23],[-6,-4],[-46,14],[-12,3],[-53,11],[-43,43],[-6,-1],[-6,-1],[-11,-2],[-21,-39],[-37,-4],[-248,-29],[-31,-4],[-11,-1],[-27,-25],[-19,-13],[-39,-27],[-19,0],[-75,0],[-50,16],[-42,13],[-8,4],[-68,34],[-12,5],[-8,9],[-52,51],[-14,18],[-44,57],[-20,26],[-7,8],[-80,101],[-125,175],[-12,18],[-137,193],[-61,85],[-2,2],[-3,5],[-2,2],[-2,3],[-3,4],[-5,7],[-2,3],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-54,75],[-28,40],[-12,10],[-172,144],[-278,232],[-23,19],[-149,124],[-103,86],[-13,11],[-13,10],[-43,36],[-271,227],[-37,30],[-16,13],[-1234,1029],[-32,27],[-195,163],[-298,248],[-196,163],[-6,6],[-10,8],[-329,274],[-36,30],[-533,445],[-142,118],[-113,94],[-30,26],[-144,120],[-34,27],[12,129],[1,13],[1,13],[16,174],[1,11],[1,18],[11,114],[5,64],[1,13],[1,4],[1,14],[16,176],[1,13],[2,12],[2,19],[7,53],[18,73],[36,97],[39,77],[9,17],[30,60],[27,54],[28,75],[28,76],[38,116],[5,34],[12,88],[-2,45],[-3,68],[-1,30],[-5,110],[-3,76],[3,18],[2,11],[2,11],[0,4],[1,4],[5,28],[-4,20],[-4,21],[-3,15],[-61,165],[-29,148],[-23,189],[-1,48],[-4,284],[-12,69],[-11,69],[-35,73],[-10,21],[-11,22],[-23,49],[-99,193],[-9,18],[-9,18],[-26,51],[-15,27],[-45,84],[-28,52],[-40,74],[-16,30],[-143,266],[-132,245],[-11,20],[-7,13],[-4,7],[-2,5],[-5,8],[-35,62],[-40,71],[-60,105],[-26,46],[-16,27],[-38,81],[-21,44],[-24,99],[-6,25],[-20,129],[-1,8],[-8,45],[-5,32],[-6,41],[-12,74],[3,95],[0,12],[0,12],[13,143],[8,72],[13,120],[19,165],[1,12],[2,14],[0,3],[30,227],[34,157],[7,33],[1,6],[3,10],[5,25],[2,9],[1,4],[0,1],[2,10],[6,27],[1,5],[1,4],[16,52],[23,70],[7,21],[8,27],[11,32],[12,38],[7,27],[6,20],[14,53],[20,72],[18,65],[18,65],[47,172],[48,177],[6,20],[7,29],[16,73],[7,42],[6,43],[1,34],[0,12],[1,12],[-12,70],[-7,32],[-27,116],[-5,19],[-22,94],[-15,86],[-34,178],[-47,254],[-1,5],[-1,4],[-3,12],[-36,167],[-27,119],[-7,39],[-34,174],[-8,76],[0,2],[-2,43],[0,11],[4,39],[14,111],[14,92],[29,182],[2,15],[3,15],[-1,11],[-1,13],[-3,33],[-2,66],[-4,50],[-3,25],[-2,25],[-4,55],[-9,107],[-1,78],[0,79],[2,115],[3,92],[3,65],[1,24],[9,63],[25,61],[56,74],[40,48],[26,39],[26,38],[10,35],[0,30],[0,11],[-2,29],[-3,39],[0,64],[-1,73],[0,2],[0,2],[0,11],[0,1],[0,8],[0,2],[-1,9],[0,21],[-2,41],[0,12],[-4,71],[-1,16],[4,63],[10,23],[4,12],[26,33],[10,8],[24,21],[6,6],[23,28],[18,21],[15,28],[23,41],[3,6],[18,33],[1,2],[2,4],[1,1],[0,1],[1,1],[2,7],[6,17],[66,182],[2,9],[17,58],[26,91],[5,18],[10,34],[1,14],[2,15],[-3,37],[-2,11],[-1,12],[-23,32],[-11,20],[-12,21],[-24,42],[-25,53],[-6,22],[-6,22],[-12,43],[-36,77],[-72,157],[-11,24],[-6,13],[-33,71],[-5,10],[-2,6],[-3,6],[-5,10],[-1,2],[-1,3],[-6,14],[-5,10],[-2,4],[0,2],[-26,58],[-27,60],[-67,151],[-26,57],[-14,32],[-29,65],[-62,140],[-41,93],[-17,40],[-69,154],[-22,50],[-57,145],[-79,200],[-28,70],[-3,13],[-26,90],[-3,148],[-1,34],[7,208],[3,87],[-8,50],[-12,57],[-25,55],[-9,10],[-29,29],[-8,7],[-52,13],[-37,-1],[-37,0],[-56,-1],[-9,0],[-171,3],[-20,1],[-189,1],[-300,3],[-72,-1],[-179,-5],[-26,0],[-247,-6],[-125,-3],[-87,159],[-100,186],[-9,16],[-8,14],[-9,16],[-103,191],[-190,350],[-30,59],[-30,59],[-54,107],[-88,174],[-21,40],[-22,40],[-117,217],[-97,181],[-51,80],[-51,79],[-2,3],[-52,53],[-101,103],[-322,265],[-322,266],[-67,58],[-295,254],[-203,174],[-60,52],[-99,85],[-131,106],[-81,65],[-80,64],[-22,36],[-21,36],[-9,32],[-8,31],[-1,40],[0,9],[32,152],[18,87],[13,46],[1,12],[2,12],[-15,14],[-77,15],[-301,40],[-137,19],[-32,7],[-75,16],[-89,41],[-191,22],[-353,18],[-124,55],[-232,94],[-178,73],[-229,93],[-91,37],[-6,2],[-23,10],[-3,1],[-79,30],[-1141,433],[-454,176],[-106,58],[-107,57],[-1734,1321],[-429,346],[-132,135],[-110,133],[-97,104],[-121,101],[-148,76],[-59,8],[-61,-2],[-141,-72],[-106,10],[-156,19],[-102,30],[-69,29],[-64,65],[-42,95],[-27,74],[5,39],[41,61],[30,67],[39,176],[43,170],[8,33],[8,33],[17,90],[4,66],[-5,86],[-48,103],[-42,80],[-42,103],[-14,88],[-30,70],[-35,39],[-6,16],[-30,77],[23,46],[17,117],[-10,118],[-24,100],[-61,210],[-70,164],[-53,113],[-66,111],[-56,67],[-84,80],[-85,35],[-89,17],[-106,-7],[-144,-21],[-103,-20],[-124,2],[-54,14],[-55,15],[-97,54],[-50,65],[-75,132],[-56,166],[-12,97],[6,181],[10,87],[31,81],[51,84],[55,59],[87,52],[79,41],[125,35],[164,55],[101,35],[76,47],[80,88],[87,146],[59,127],[56,167],[19,115],[2,70],[1,69],[-26,123],[-33,75],[-49,48],[-46,42],[-47,17],[-65,18],[-119,39],[-66,34],[-69,42],[-60,73],[-98,159],[-99,206],[-96,121],[-87,69],[-73,28],[-85,35],[-101,15],[-262,-15],[-163,-40],[-108,-46],[-97,-51],[-71,-73],[-41,-121],[-12,-149],[18,-121],[37,-101],[62,-165],[175,-316],[29,-141],[-8,-145],[-36,-110],[-71,-86],[-111,-49],[-104,-7],[-130,32],[-136,48],[-205,8],[-362,6],[-270,65],[-249,112],[-175,114],[-507,460],[-183,63],[-128,-47],[-128,-48],[-152,-236],[-68,-292],[-37,-316],[-36,-521],[-40,-263],[-53,-175],[-132,-103],[-215,-50],[-251,-30],[-217,-131],[-337,-374],[-230,-215],[-100,-48],[-98,16],[-147,80],[-95,115],[-343,766],[-115,221],[-147,157],[-115,74],[-134,8],[-175,-34],[-198,-111],[-42,-51],[-42,-51],[-84,-103],[-243,-425],[-132,-292],[-71,-192],[-138,-466],[-135,-377],[-163,-283],[-126,-180],[-56,-81],[-61,-59],[-143,-137],[-189,-59],[-179,1],[-138,25],[-186,82]],[[472375,238599],[258,447],[-173,710],[-110,710],[163,308],[81,170],[85,131],[123,86],[124,-1],[275,298],[-33,846],[16,424],[-16,323],[-66,274],[-17,697],[9,573],[16,871],[8,337],[-8,485],[41,237],[66,174],[669,99],[88,-13]],[[840528,787514],[3617,-15607],[2790,-15723],[1827,-10298],[314,-1771]],[[829910,680683],[-3020,6526],[-2695,5821],[-5926,12802],[-2419,5225],[-173,223],[-5121,6609],[-76,98],[-5443,7025],[-3948,5096],[-89,115],[-142,184],[-124,160],[-138,178],[-84,108],[-45,57],[-21,28],[-12,16]],[[791034,755843],[408,-235],[261,-305],[262,180],[159,360],[257,142],[442,-3],[542,253],[229,37],[53,-284],[6,1],[129,22],[186,245],[401,1339],[536,391],[426,7],[209,1119],[132,356],[797,441],[333,469],[635,78],[137,338],[118,187],[94,47],[86,154],[112,151],[117,145],[131,126],[133,116],[76,89],[68,67],[47,4],[42,-67],[0,-102],[-3,-67],[23,-151],[56,-40],[71,13],[35,161],[33,53],[53,-5],[83,-62],[89,-57],[43,13],[9,80],[9,124],[90,128],[87,72],[107,115],[111,33],[27,8],[82,0],[65,-22],[33,98],[32,102],[65,17],[36,77],[123,57],[53,-26],[30,16],[35,122],[41,106],[53,63],[68,-5],[68,-4],[83,-14],[80,39],[58,64],[59,124],[59,98],[67,40],[57,-13],[41,-120],[62,-45],[98,14],[53,-14],[50,89],[94,89],[142,31],[56,134],[88,49],[83,178],[68,49],[91,-5],[106,5],[71,8],[28,69],[8,123],[44,173],[29,196],[304,405],[55,163],[-20,237],[0,196],[33,93],[100,23],[71,26],[51,106],[-25,144],[12,111],[53,40],[174,-76],[86,-62],[49,80],[66,49],[50,44],[18,62],[-21,116],[32,79],[-2,113],[33,60],[49,20],[-6,147],[-20,80],[38,17],[26,-26],[45,31],[14,67],[65,40],[53,32],[49,-41],[37,-49],[71,-31],[82,-5],[239,143],[59,58],[38,77],[3,42],[6,85],[18,120],[79,20],[63,-24],[98,30],[111,116],[85,187],[89,85],[94,-9],[77,9],[83,-111],[11,-107],[81,-148],[28,-79],[68,0],[59,58],[53,27],[68,-18],[24,44],[3,71],[-39,188],[12,66],[62,49],[65,89],[-9,76],[-18,84],[338,-102],[141,155],[140,608],[150,101],[276,-147],[65,-35],[154,-81],[141,-190],[25,-15],[56,-34],[22,-14],[643,-394],[586,-359],[154,-249],[436,-71],[378,53],[330,107],[436,-783],[425,-285],[10,32],[596,1950],[87,1051],[155,382],[112,105],[343,672],[668,699],[571,83],[433,179],[247,1376],[701,447],[247,238],[133,32],[298,-38],[402,66],[431,-484],[155,78],[292,723],[303,1478],[324,410],[204,121],[227,216],[205,114],[134,154],[696,379],[1247,337],[461,-588],[198,-705],[566,-734],[365,-188],[595,-198],[106,-95],[679,-1040],[1431,-1500],[221,-232],[134,28],[270,149],[262,288],[161,538],[-71,381],[-699,1014],[-437,901],[34,183],[316,558],[75,82],[75,83],[496,759],[164,-71],[259,-684],[735,-1065],[369,-93],[415,19],[261,-145],[318,-398],[461,-444],[494,1459],[120,83],[595,-1925],[366,-557],[353,-97],[623,-10],[989,-789],[127,21],[-184,1346],[206,963],[-14,254],[-165,915],[-386,783],[-58,191],[-140,1216],[-51,243],[-148,355],[-78,384],[115,298],[1051,-178],[571,504],[321,-298],[118,-35],[131,102],[350,1167],[488,646],[170,390],[44,230],[34,92],[150,392],[91,122],[1327,1102],[143,-36],[593,-309],[119,70],[524,776],[1031,38],[369,-66],[493,174],[1024,709],[286,349],[215,337],[170,453],[100,558],[31,267],[271,1347]],[[750991,624650],[-135,-80],[-118,-46],[-53,-17],[-65,8],[-72,20],[-95,25],[-82,39],[-51,41],[-34,52],[-16,59],[0,62],[16,73],[20,56],[25,66],[51,65],[24,36],[19,42],[-1,45],[-15,58],[-14,34],[17,41],[18,61],[-6,37],[-9,36],[5,48],[-19,37],[-20,23],[-39,2],[-37,-20],[-35,-12],[-37,-35],[-47,-68],[-31,-27],[-75,-66],[-86,-60],[-43,-13],[-30,7],[-40,13],[-64,22],[-57,31],[-38,35],[-29,44],[-14,42],[-14,42],[-8,68],[-32,58],[-15,56],[-28,45],[-55,74],[-62,98],[-46,51],[-74,25],[-49,65],[-71,90],[-79,76],[-45,67],[-56,49],[-29,59],[-45,56],[-45,38],[-85,125],[-74,118],[-54,125],[-33,164],[-26,121],[-15,99],[-35,78],[-9,116],[-10,30],[-33,39],[-12,48],[4,31],[-31,136],[-20,67],[-62,141],[-44,84],[-63,59],[-30,59],[-33,82],[-22,41],[-58,90],[-31,91],[-26,103],[-7,56],[12,81],[-2,37],[-91,72],[-80,30],[-131,25],[-52,15],[-97,68],[-55,24],[-59,26],[-72,81],[-79,59],[-102,79],[-69,104],[-41,99],[-49,89],[-25,42],[-32,70],[-33,12],[-55,-32],[-79,-107],[-63,-90],[-42,-32],[-81,-57],[-91,-18],[-116,-6],[-59,-7],[-31,-34],[-18,-48],[28,-266],[27,-244],[2,-72],[-14,-47],[-28,-70],[-35,-20],[-62,6],[-62,24],[-63,18],[-234,66],[-108,4],[-108,30],[-101,7],[-97,0],[-66,-7],[-82,-12],[-81,-46],[-38,-30],[-52,-16],[-62,1],[-80,17],[-58,27],[-80,29],[-71,10],[-53,-32],[-33,-54],[-23,-119],[-12,-150],[-5,-86],[-49,-119],[-27,-37],[-33,-34],[-44,-42],[-61,-92],[-12,-60],[-24,-63],[-35,-50],[-41,-43],[-31,-10],[-44,11],[-40,79],[-142,142],[-21,32],[-70,28],[-51,49],[-102,127],[-54,35],[-45,18],[-75,-2],[-70,-22],[-70,-44],[-45,-32],[-38,-133],[-47,-66],[-15,-77],[-29,-47],[-76,-30],[-97,7],[-117,60],[-51,73],[-62,158],[-27,64],[9,110],[-24,45],[-59,16],[-35,-6],[-36,-29],[-50,-20],[-98,-40],[-66,-39],[-74,-64],[-44,-48],[-44,-166],[-30,-71],[12,-267],[-60,-83],[-91,-36],[-89,27],[-70,-27],[-141,-91],[-130,10],[-82,89],[-75,41],[-232,-15],[-150,0],[-130,-13],[-64,-19],[-78,-36],[-39,-66],[-32,-168],[-9,-181],[7,-109],[68,-209],[111,-240],[52,-157],[52,-158],[-151,-322],[-65,-172],[-116,-126],[-157,-13],[-148,-42],[-138,7],[-105,18],[-141,66],[-138,87],[-138,137],[-49,54],[-28,86],[16,91],[31,75],[28,54],[100,108],[47,120],[16,120],[-33,129],[-158,319],[-110,167],[-68,201],[-7,151],[1,113],[25,107],[-20,86],[-12,109],[-38,31],[-56,13],[-165,-54],[-79,-5],[-133,39],[-113,47],[-88,43],[-130,52],[-92,9],[-85,-35],[-86,-102],[-81,-159],[-130,-296],[-91,-183],[0,-1],[-85,-188],[-50,-105],[-39,-116],[-40,-117],[-17,-38],[-26,-12],[-41,12],[-35,3],[-44,-9],[-21,-16],[-19,-33],[-21,-53],[-17,-53],[-24,-43],[-18,-9],[-19,-9],[-22,5],[-22,5],[-90,52],[-25,9],[-26,-4],[-59,-30],[-117,-61],[-58,-12],[-69,6],[-44,24],[-19,21],[-22,12],[-27,9],[-32,2],[-31,9],[-50,7],[-50,-6],[-28,-23],[-13,-32],[1,-27],[16,-34],[15,-24],[14,-52],[6,-78],[-1,-72],[-10,-58],[-9,-59],[14,-48],[15,-28],[29,-40],[13,-35],[1,-39],[-1,-36],[-31,-71],[-83,-134],[-43,-76],[-37,-27],[-32,15],[-24,22],[-118,205],[-15,21],[-26,4],[-43,-23],[-43,-7],[-62,27],[-64,30],[-49,43],[-9,26],[-13,28],[-26,13],[-40,21],[-80,89],[-36,20],[-29,-17],[-13,20],[0,11],[0,22],[-10,14],[-17,-6],[-16,-30],[-22,-9],[-24,10],[-15,43],[-22,5],[-19,-9],[0,-10],[-17,-7],[-14,-12],[-16,-2],[-13,7],[-12,30],[-47,24],[-20,4],[-14,-23],[-1,-21],[-14,-7],[-18,20],[-10,-13],[0,-20],[-10,-32],[-14,11],[-13,10],[-19,-12],[-15,-28],[-14,-40],[-17,10],[-27,23],[-17,15],[-25,2],[-27,-12],[-6,-19],[3,-39],[12,-31],[30,-25],[25,-15],[16,-31],[9,-46],[-6,-44],[-17,-57],[-31,-61],[-17,-30],[-18,-13],[-22,10],[-20,21],[-17,33],[-1,46],[3,35],[-14,30],[-18,22],[-24,8],[-21,-8],[-18,-19],[-16,-37],[-19,-44],[-36,-82],[-41,-43],[-32,-27],[-30,-14],[-32,1],[-38,26],[-56,42],[-60,31],[-38,0],[-48,-12],[-38,-37],[-28,-56],[-9,-32],[1,-59],[10,-42],[31,-51],[38,-57],[24,-47],[16,-76],[-5,-83],[-21,-59],[-22,-40],[-39,-34],[-32,-23],[-35,2],[-34,19],[-29,50],[-50,79],[-37,82],[-43,88],[-39,56],[-48,28],[-43,9],[-27,-3],[-16,-21],[-12,-22],[-2,-33],[12,-39],[10,-29],[11,-24],[18,-12],[22,-23],[14,-39],[27,-120],[51,-70],[52,-35],[31,-36],[53,-104],[41,-113],[28,-145],[-6,-85],[-11,-50],[-18,-24],[-18,-25],[-25,-23],[-36,-2],[-33,13],[-24,16],[-21,51],[-50,105],[-63,95],[-78,95],[-76,65],[-57,50],[-59,23],[-30,9],[-20,-11],[-12,-7],[-10,-29],[-3,-32],[84,-264],[13,-68],[-4,-64],[-12,-39],[-24,-28],[-46,-21],[-76,-4],[-130,12],[-167,-3],[-26,-10],[-11,-25],[-7,-33],[2,-30],[27,-85],[33,-58],[1,-42],[-14,-22],[-57,-16],[-64,-35],[-43,-24],[-46,-52],[-43,-98],[-20,-81],[-1,-56],[5,-35],[16,-45],[45,-80],[24,-67],[11,-72],[6,-69],[3,-81],[9,-137],[-2,-60],[-15,-41],[-28,-47],[-100,-93],[-42,-23],[-32,-19],[-32,-20],[-29,-8],[-18,-5],[-37,-9],[-28,-5],[-24,2],[-46,-6],[-51,7],[-56,19],[-45,42],[-88,98],[-400,428],[-158,230],[-43,31],[-39,13],[-34,3],[-41,3],[-60,-12],[-45,0],[-39,-17],[-21,-8],[-38,-32],[-40,-33],[-65,-25],[-64,-16],[-63,-32],[-13,-27],[-1,-15],[53,-44],[69,-78],[58,-104],[22,-69],[-1,-54],[-6,-33],[-26,-34],[-33,-8],[-45,21],[-52,66],[-18,31],[-18,16],[-22,-4],[-19,-24],[-58,-213],[-180,-329],[199,-366],[-44,-110],[-140,-59],[-89,-406],[-122,-228],[-201,-187],[-354,112],[-94,73],[-100,-35],[-111,-217],[-137,-29],[-90,93],[-139,91],[-85,-43],[16,-212],[-85,-146],[-148,-60],[-106,-134],[-127,-15],[-92,161],[-132,-40],[-33,-171],[72,-204],[8,-109],[-105,-126],[-78,-257],[120,-150],[25,-115],[-30,-75],[-145,-34],[-75,-121],[110,-136],[41,-86],[11,-123],[60,-238],[108,-163],[128,-62],[42,-72],[-17,-69],[-139,-14],[-120,-19],[-87,-56],[-16,-69],[57,-48],[78,-49],[58,-395],[67,-169],[123,11],[96,5],[92,-150],[-16,-743],[57,-171],[172,-94],[305,-225],[200,-96],[106,-261],[57,-108],[64,141],[67,27],[153,-139],[163,-249],[154,3],[94,-270],[9,-423],[-58,-203],[-20,-177],[-2,-182],[23,-163],[-158,-263],[8,-79],[165,-137],[65,-484],[-117,-200],[-101,-22],[-163,367],[-399,171],[-213,-195],[-269,61],[-339,396],[-149,-95],[-142,22],[-71,121],[25,278],[-62,70],[-94,-13],[-94,39],[9,68],[39,131],[-105,150],[-209,-121],[-112,-67],[-225,161],[-7,142],[73,163],[39,109],[-14,115],[-89,89],[-149,-193],[-131,-64],[-69,166],[-375,0],[-14,-129],[101,-141],[-42,-354],[-249,-77],[-246,-50],[-37,85],[147,388],[50,294],[-84,166],[-137,-95],[-476,-329],[-113,94],[0,355],[-121,46],[-97,-128],[-86,-180],[-142,-70],[-227,-495],[-98,-140],[-126,-75],[-261,-48],[-99,-172],[-113,-541],[-71,-153],[-199,-278],[-113,-97],[-86,-184],[-96,-133],[-123,-64],[-82,-140],[-58,-168],[63,-154],[-62,-389],[126,-85],[269,-12],[-29,-204],[-83,-136],[-601,-378],[-1,-198],[-120,-112],[-156,-17],[-111,-90],[-17,-196],[-54,-163],[-136,-5],[-85,-122],[44,-165],[84,-135],[-69,-170],[-120,-102],[-45,-169],[15,-357],[206,-251],[-86,-132],[-145,-33],[-251,46],[-42,360],[-219,216],[-7,173],[-184,243],[-7,200],[-255,424],[-119,103],[-112,-108],[-143,-53],[-127,10],[-227,235],[-84,-135],[-1,-214],[-113,-98],[-459,57],[-154,-75],[-29,-177],[33,-168],[-68,-147],[-113,87],[-127,-30],[-70,-155],[-22,-179],[-85,-149],[0,-365],[-44,-183],[-84,-139],[-62,-204],[-7,-362],[-75,-141],[-3,-8],[-250,-173],[-204,-234],[-184,-320],[-217,-234],[-99,-168],[-17,-186],[-76,-182],[-7,-359],[-84,-139],[-142,25],[-121,90],[-148,-5],[-42,-165],[120,-69],[57,-195],[-77,-340],[27,-222],[141,-408],[-62,-873],[98,-245],[41,-177],[-64,-396],[66,-167],[126,-3],[185,-76],[119,-114],[248,-107],[36,-190],[-179,-118],[-141,-36],[-34,-181],[-122,-71],[-125,24],[-142,-22],[-121,99],[-141,41],[-163,316],[-544,58],[-120,120],[-29,199],[-84,144],[-105,-103],[-121,-313],[-127,23],[-213,240],[-84,172],[-14,207],[62,348],[-48,165],[-248,144],[-232,-121],[-163,82],[-127,-65],[-79,-175],[29,-171],[-63,-147],[-255,-82],[-120,-98],[-57,-176],[1,-198],[-90,-102],[-29,-15],[-23,-19],[-50,-18],[-21,-9],[-9,-49],[-37,-17],[-26,-40],[-25,-33],[-36,-32],[-59,-31],[-67,-14],[-61,-10],[-57,-2],[-59,15],[-67,45],[-48,53],[-47,64],[-36,48],[-38,29],[-41,14],[-24,-3],[-23,-2],[-30,-41],[-16,-64],[-1,-69],[-8,-66],[-9,-76],[-29,-66],[-37,-50],[-47,-31],[-50,-1],[-46,34],[-21,43],[-15,53],[0,62],[0,77],[-17,60],[-29,48],[-33,48],[-37,27],[-42,29],[-36,13],[-44,5],[-38,-24],[-28,-45],[-48,-43],[-44,-7],[-53,10],[-38,15],[-47,17],[-49,9],[-57,-18],[-58,-26],[-51,-27],[-35,-19],[-45,-24],[-44,-32],[-56,-54],[-56,-39],[-46,-23],[-72,-16],[-39,6],[-41,6],[-53,29],[-37,42],[-32,21],[-42,17],[-31,-2],[-21,-5],[-23,-42],[-23,-69],[-27,-74],[-27,-60],[-22,-63],[-39,-80],[-45,-76],[-65,-110],[-54,-91],[-27,-46],[-28,-43],[-37,-42],[-37,-66],[-31,-91],[-47,-63],[-35,-27],[-28,12],[-25,41],[-22,69],[-16,93],[-11,111],[-13,164],[-13,109],[-26,97],[-35,86],[-26,58],[-29,38],[-45,40],[-35,23],[-43,19],[-41,17],[-37,-7],[-35,-28],[-27,-30],[-28,-49],[-22,-47],[1,-66],[11,-62],[34,-78],[38,-57],[18,-35],[5,-65],[-9,-56],[-22,-69],[-48,-30],[-67,4],[-53,-36],[-76,-94],[-47,-76],[-27,-84],[-1,-112],[15,-109],[26,-96],[51,-99],[52,-92],[20,-43],[30,-17],[45,-12],[60,-31],[38,-9],[35,1],[39,2],[50,19],[67,33],[60,21],[49,-18],[37,-18],[26,-24],[27,-21],[41,-55],[17,-23],[8,-27],[-4,-35],[-12,-76],[5,-90],[-19,-41],[7,-80],[-1,-37],[-3,-29],[-8,-30],[-28,-19],[-19,-6],[-24,-27],[-23,15],[-44,25],[-24,-39],[-20,-15],[-33,12],[-33,18],[-23,-1],[-33,-14],[-43,-39],[-26,-41],[-10,-22],[-25,-28],[-25,-13],[-19,-34],[-16,-48],[-25,-54],[-42,-74],[-10,-50],[2,-55],[10,-130],[0,-115],[-26,-200],[-13,-107],[-21,-162],[-80,90],[-56,54],[-76,59],[-47,34],[-59,18],[-59,-4],[-39,-9],[-39,-42],[-28,-56],[-11,-54],[4,-71],[26,-64],[40,-84],[35,-71],[45,-78],[36,-41],[21,-55],[-17,-158],[-27,-88],[-27,-88],[-33,-108],[-15,-87],[-9,-56],[-21,-111],[-37,-78],[-30,-60],[-21,-42],[-40,-44],[-41,-23],[-35,-7],[-56,10],[-39,-3],[-38,-14],[-34,-32],[-21,-41],[-40,-58],[-60,-35],[-46,-22],[-56,-26],[-35,-7],[-41,-2],[-28,12],[-43,27],[-32,27],[-41,20],[-39,16],[-51,3],[-65,-4],[-49,-12],[-39,-18],[-37,-45],[-24,-12],[-30,4],[-31,20],[-39,51],[-50,109],[-33,89],[-54,111],[-54,66],[-66,54],[-61,61],[-70,67],[-61,57],[-44,48],[-61,85],[-46,69],[-60,70],[-38,57],[-31,53],[-34,53],[-8,46],[4,38],[24,42],[23,51],[60,96],[37,80],[22,39],[37,89],[38,70],[33,42],[7,42],[-19,14],[-95,-18],[-76,6],[-48,13],[-48,38],[-32,45],[-37,1],[-28,-26],[-12,-52],[4,-42],[5,-56],[-29,-48],[-63,-30],[-52,23],[-27,48],[-28,51],[-43,53],[-41,12],[-38,3],[-37,-35],[-17,-39],[-2,-51],[7,-72],[-4,-98],[-35,-69],[-33,-27],[-48,-4],[-29,19],[-9,32],[9,39],[16,64],[-22,65],[-31,48],[-55,27],[-53,14],[-52,13],[-53,23],[-31,-1],[-17,-10],[-6,-43],[14,-50],[26,-50],[36,-67],[8,-54],[-4,-60],[-1,-104],[-4,-57],[-24,-39],[-35,-12],[-43,10],[-48,30],[-46,33],[-36,33],[-35,17],[-35,19],[-40,14],[-35,-12],[-21,-18],[-12,-44],[7,-42],[27,-54],[24,-39],[4,-46],[-10,-68],[-24,-72],[-51,-44],[-37,-34],[-26,-35],[-13,-54],[9,-45],[27,-30],[30,-12],[43,-17],[37,-16],[40,0],[38,19],[45,-1],[48,-33],[25,-32],[26,-31],[39,-57],[19,-61],[1,-69],[-24,-85],[-13,-80],[5,-66],[23,-50],[5,-48],[-11,-69],[-42,-78],[-53,-87],[-64,-68],[-75,-43],[-62,-40],[-60,-30],[-59,-24],[-50,-3],[-54,-1],[-60,-5],[-60,2],[-47,24],[-26,11],[-26,11],[-54,26],[-53,48],[-33,33],[-50,51],[-38,48],[-49,5],[-45,-39],[-9,-59],[2,-64],[4,-64],[15,-89],[14,-88],[25,-74],[18,-54],[29,-52],[16,-45],[21,-57],[19,-58],[17,-67],[5,-51],[4,-50],[5,-76],[4,-65],[4,-71],[-1,-85],[-13,-36],[-18,-23],[-27,14],[-33,57],[-26,64],[-36,41],[-36,6],[-25,-23],[-18,-25],[-16,-33],[-7,-45],[3,-46],[7,-39],[23,-42],[24,-22],[20,-29],[19,-22],[18,-29],[6,-36],[-12,-46],[-15,-28],[-19,-8],[-18,-8],[-44,-11],[-31,-16],[-64,-23],[-57,-28],[-58,-27],[-48,-44],[-38,-58],[-31,-56],[-13,-68],[-5,-157],[-3,-47],[1,-32],[7,-33],[20,-31],[9,-39],[-6,-27],[-15,-18],[-26,-24],[-51,-56],[-75,-44],[-65,-15],[-28,6],[-25,26],[-19,44],[-26,21],[-31,0],[-29,-6],[-27,-18],[-16,-20],[-12,-26],[-15,-21],[-25,-3],[-28,24],[-31,27],[-31,6],[-33,-7],[-27,-29],[-18,-27],[-16,-49],[0,-41],[3,-43],[3,-32],[11,-35],[15,-42],[39,-42],[25,-48],[29,-36],[18,-40],[12,-48],[11,-35],[26,-42],[18,-21],[11,-36],[6,-53],[-3,-40],[-14,-58],[-17,-43],[-16,-41],[-24,-42],[-31,-18],[-31,-1],[-22,-5],[-17,-18],[-13,-33],[-8,-51],[-12,-51],[-24,-29],[-39,-16],[-38,-5],[-37,-19],[-28,-2],[-22,9],[-20,3],[-25,-22],[-26,-18],[-28,-15],[-28,-32],[-42,-16],[-47,-53],[-36,-65],[-12,-30],[-10,-42],[-1,-48],[15,-27],[26,-1],[20,-30],[8,-38],[16,-33],[9,-36],[2,-38],[8,-43],[-4,-35],[-14,-15],[-3,-29],[-3,-29],[-10,-38],[-29,-32],[-43,-18],[-47,-15],[-61,-3],[-42,26],[-43,31],[-35,40],[-34,40],[-30,39],[-35,20],[-33,3],[-28,-20],[-21,-37],[-1,-59],[-9,-38],[-25,-7],[-29,-21],[-33,10],[-14,45],[-34,-21],[-22,30],[-32,-31],[-15,18],[-27,1],[-27,-12],[-24,-10],[-32,-26],[-31,-51],[-37,-18],[-29,23],[-35,13],[-24,23],[-15,24],[-22,7],[-30,-3],[-11,16],[-4,25],[-15,23],[-22,6],[-19,-20],[-17,15],[-12,24],[-8,30],[-19,39],[-15,33],[-5,36],[-5,53],[3,40],[-15,22],[-22,15],[-33,-6],[-27,-20],[-19,-23],[-20,-24],[-15,-40],[-6,-45],[0,-47],[7,-46],[-10,-51],[11,-38],[-3,-41],[2,-40],[3,-30],[-9,-26],[2,-17],[21,-11],[12,-23],[11,-22],[12,-35],[1,-33],[7,-29],[9,-13],[20,-29],[31,-28],[18,-42],[10,-32],[3,-45],[-13,-47],[-18,-46],[-30,-38],[-40,9],[-11,-16],[-44,-32],[-49,-3],[-37,-10],[-47,0],[-35,3],[-31,4],[-37,0],[-38,0],[-25,11],[-22,24],[-18,30],[-1,40],[7,33],[-2,37],[-16,30],[-16,46],[-10,48],[-7,58],[2,37],[3,36],[4,56],[-1,42],[-13,30],[1,39],[11,48],[9,39],[-6,41],[-26,50],[-3,43],[16,30],[2,39],[0,30],[-17,30],[-4,48],[17,38],[27,10],[10,36],[-7,30],[-28,13],[-14,46],[6,36],[15,24],[6,60],[6,72],[-6,30],[1,30],[3,28],[2,28],[-10,45],[-21,35],[-27,16],[-14,53],[-10,51],[-17,73],[-21,40],[-22,12],[-36,-29],[-49,-20],[-33,-3],[-44,3],[-41,-15],[-42,-31],[-31,-54],[-24,-62],[-28,-60],[-25,-26],[-36,-7],[-53,18],[-40,8],[-23,5],[-23,4],[-38,-11],[-32,-23],[-42,-34],[-38,-30],[-33,-33],[-28,-35],[-14,-10],[-21,-6],[-31,12],[-30,54],[-22,33],[-58,33],[-93,4],[-78,-36],[-61,-28],[-53,-24],[-47,-48],[-66,-80],[-49,-78],[-37,-56],[-25,-61],[-13,-41],[3,-37],[22,-29],[21,-3],[36,51],[36,32],[27,3],[40,-30],[38,-58],[22,-66],[14,-46],[6,-84],[1,-60],[0,-50],[-18,-59],[-33,-43],[-42,-5],[-30,20],[-20,26],[-5,57],[6,52],[-9,47],[-23,22],[-34,12],[-38,2],[-40,-3],[-32,-12],[-31,-33],[-26,-36],[-25,-46],[-25,-46],[-30,-77],[-30,-75],[-17,-65],[-21,-144],[-8,-110],[-16,-130],[-13,-146],[-7,-86],[-7,-67],[-13,-121],[-2,-42],[-3,-57],[25,15],[30,18],[21,2],[22,-15],[23,-27],[13,-33],[1,-38],[-11,-31],[-29,-47],[-25,-31],[-19,-47],[-13,-51],[-1,-62],[4,-69],[4,-71],[22,-48],[39,-52],[42,-42],[34,-24],[42,-20],[37,-40],[28,41],[28,41],[51,35],[65,50],[59,44],[61,23],[60,9],[60,8],[68,10],[62,-3],[68,-17],[72,-11],[43,-20],[34,-20],[39,-19],[58,-50],[10,-33],[-15,-22],[-22,-5],[-50,12],[-21,-6],[-18,-33],[1,-42],[8,-29],[26,-25],[39,-29],[34,-21],[31,-22],[24,-36],[23,-39],[23,-46],[10,-39],[5,-29],[-2,-24],[-7,-32],[-22,-33],[-43,-33],[-45,-47],[-37,-60],[-12,-66],[2,-53],[8,-51],[44,-60],[42,-27],[41,13],[41,13],[33,14],[28,-1],[27,-24],[15,-38],[6,-48],[1,-48],[-21,-42],[-22,-30],[-45,-58],[-28,-55],[-11,-64],[-6,-60],[4,-59],[4,-45],[6,-63],[12,-68],[22,-72],[17,-43],[16,-40],[24,-28],[23,-27],[14,-17],[26,-9],[15,-60],[24,-79],[23,-62],[39,-89],[41,-78],[31,-58],[27,-58],[30,-45],[24,-42],[31,-46],[34,-29],[32,-12],[42,-4],[31,-3],[35,24],[30,27],[37,51],[28,54],[17,40],[16,36],[21,19],[30,0],[28,-37],[32,-24],[35,-25],[34,4],[26,11],[13,28],[27,27],[25,25],[26,7],[21,-9],[11,-33],[-1,-45],[-17,-53],[-16,-49],[-17,-56],[-19,-43],[-13,-53],[-11,-45],[-10,-39],[2,-41],[9,-42],[21,-28],[26,-12],[24,0],[24,7],[23,30],[24,36],[30,57],[33,38],[42,37],[46,9],[48,-1],[58,-26],[62,-31],[37,-22],[24,-13],[26,-31],[18,-39],[4,-44],[-11,-45],[-20,-48],[-35,-32],[-34,-16],[-45,-14],[-46,-3],[-34,2],[-49,-11],[-44,-24],[-49,-27],[-39,-22],[-42,-2],[-43,2],[-27,-18],[-25,-33],[-8,-56],[12,-47],[17,-36],[31,-30],[29,-25],[24,-5],[27,3],[24,6],[24,-1],[44,-24],[30,-36],[24,-46],[14,-40],[2,-48],[-13,-95],[-38,-111],[-25,-72],[-21,-101],[-12,-90],[-36,-92],[-19,-82],[-38,-82],[-68,-94],[-36,-42],[-35,-42],[-32,-43],[-33,-43],[-35,-65],[-11,-57],[-6,-31],[8,-87],[23,-55],[18,-52],[24,-56],[22,-34],[31,-33],[36,-44],[34,-50],[25,-43],[26,-57],[19,-70],[13,-47],[25,-71],[25,-71],[21,-55],[24,-33],[35,-45],[47,-68],[26,-68],[8,-106],[4,-86],[-24,-42],[-26,-50],[-15,-69],[-6,-46],[12,-35],[29,-32],[20,-19],[12,-26],[19,-40],[13,-60],[-6,-60],[-15,-56],[-16,-23],[-16,-22],[-48,-16],[-45,-2],[-31,4],[-34,-18],[-31,-22],[-21,-45],[-6,-30],[-1,-47],[6,-49],[25,-43],[11,-46],[-10,-45],[-8,-30],[-14,-12],[-13,-12],[-111,15],[-27,43],[-43,17],[-40,22],[-52,0],[-63,-16],[-64,-17],[-66,0],[-46,-10],[-33,-18],[-25,-35],[-14,-22],[15,-24],[29,-35],[34,-33],[26,-32],[26,-31],[9,-78],[-2,-89],[-19,-110],[-12,-84],[-9,-123],[-17,-105],[-27,-84],[-30,-73],[-11,-46],[-29,-21],[-19,10],[-25,-12],[-34,-24],[-24,21],[-15,39],[6,47],[20,53],[3,57],[-13,55],[-16,48],[-20,39],[-44,27],[-34,-15],[-25,-22],[-37,-86],[-45,-72],[-49,-38],[-39,-25],[-44,1],[-44,0],[-50,16],[-37,19],[-27,28],[-22,46],[-6,36],[1,32],[21,32],[27,30],[11,16],[14,22],[24,33],[-18,38],[-21,38],[9,31],[31,92],[-9,69],[0,51],[3,54],[-9,49],[13,60],[13,39],[14,39],[4,22],[4,22],[-12,29],[-26,12],[-33,-15],[-34,-18],[-27,6],[-20,26],[-10,41],[-5,54],[-1,50],[-4,80],[-9,64],[-6,60],[-14,73],[-17,69],[-16,82],[-10,86],[-9,80],[-8,69],[-18,51],[-20,32],[-18,17],[-18,6],[-21,1],[-21,-9],[-15,-14],[-12,-32],[-5,-30],[0,-35],[1,-29],[5,-61],[5,-47],[2,-55],[-3,-68],[-11,-39],[-11,-38],[-13,-20],[-17,-22],[-18,-12],[-26,-8],[-20,-2],[-20,4],[-14,2],[-12,3],[-15,16],[-7,19],[-7,15],[-15,9],[-20,5],[-19,3],[-32,16],[-23,17],[-16,24],[-13,25],[-1,30],[6,28],[18,30],[23,16],[27,23],[14,18],[5,29],[0,33],[0,33],[-10,48],[-27,44],[-39,21],[-39,-24],[-18,-34],[-31,-1],[-21,29],[-4,28],[5,104],[2,99],[-20,78],[-24,37],[-35,8],[-33,-7],[-28,-36],[-46,-77],[-51,-48],[-34,-18],[-36,-6],[-22,4],[-31,23],[-12,33],[6,36],[19,26],[31,10],[19,19],[16,49],[3,66],[-13,80],[-33,74],[-33,56],[-36,30],[-50,2],[-47,-32],[-44,-46],[-62,-86],[-62,-34],[-35,8],[-22,37],[-2,53],[31,89],[33,93],[32,87],[27,86],[12,73],[-1,50],[-12,32],[-29,13],[-29,-6],[-33,-24],[-39,-23],[-50,-10],[-55,-21],[-67,-12],[-63,-20],[-46,-3],[-36,-4],[-32,-5],[-18,-26],[-7,-32],[-11,-56],[-4,-68],[-1,-58],[-5,-104],[0,-50],[1,-62],[-10,-42],[-25,-29],[-24,-13],[-36,-6],[-41,-11],[-27,-3],[-39,-8],[-31,-9],[-24,-12],[-22,-11],[-41,-23],[-53,-18],[-65,-28],[-54,-3],[-5,0],[-44,7],[-51,17],[-30,24],[-47,60],[-35,69],[-28,99],[-21,155],[-4,120],[-5,120],[-23,86],[-21,81],[-20,117],[-21,116],[4,71],[16,51],[22,68],[20,55],[29,90],[26,68],[24,58],[24,43],[25,45],[24,56],[13,31],[19,63],[10,31],[1,75],[-17,43],[-33,43],[-40,14],[-33,10],[-39,0],[-37,-7],[-27,-19],[-17,-12],[-19,-9],[-12,-6],[-12,4],[-8,10],[-16,9],[-17,0],[-21,-19],[-22,3],[-11,1],[-13,-4],[-13,17],[-16,9],[-20,3],[-16,2],[-14,1],[-14,-10],[-10,-16],[-22,-13],[-21,3],[-24,24],[-34,30],[-30,20],[-22,16],[-41,46],[-26,39],[-26,51],[-21,32],[-28,46],[-28,39],[-46,66],[-54,69],[-28,35],[-30,39],[-29,42],[-38,37],[-31,54],[-16,57],[-3,78],[-2,82],[-11,94],[-25,69],[-47,39],[-43,14],[-35,-12],[-28,-41],[-28,-71],[-21,-49],[-22,-48],[-23,-49],[-29,-76],[-23,-68],[-29,-79],[-24,-98],[-16,-76],[-9,-71],[-15,-74],[-14,-115],[-20,-96],[-8,-36],[-10,-33],[-5,-33],[-11,-53],[-12,-29],[-17,-8],[-17,2],[-16,24],[-18,30],[-15,49],[-22,29],[-37,30],[-34,14],[-37,1],[-42,0],[-39,-6],[-44,-14],[-50,-25],[-44,-18],[-51,-14],[-61,-11],[-55,7],[-46,2],[-35,-2],[-29,-17],[-13,-19],[-12,-18],[-26,-63],[-16,-68],[-19,-81],[-12,-77],[-7,-76],[2,-79],[2,-78],[6,-66],[4,-74],[-1,-80],[6,-104],[1,-72],[-8,-72],[-19,-84],[-14,-47],[-18,-41],[-47,-64],[-45,-41],[-28,-18],[-25,31],[1,33],[8,40],[23,39],[9,62],[-17,74],[-31,78],[-38,57],[-40,44],[-34,41],[-32,35],[-34,28],[-30,16],[-27,-10],[-27,-21],[-31,-51],[-26,-65],[-13,-33],[-16,-30],[-22,-5],[-28,5],[-19,-9],[-33,-31],[-29,-8],[-33,27],[-21,37],[-17,61],[-44,40],[-48,17],[-53,3],[-50,-20],[-43,-55],[-32,-61],[-9,-58],[7,-54],[17,-54],[25,-47],[25,-29],[34,-20],[31,-29],[28,-38],[21,-23],[15,-40],[4,-57],[-4,-61],[12,-57],[27,-29],[37,-14],[39,-2],[27,-6],[36,-14],[41,-19],[26,-18],[32,-34],[17,-51],[-1,-46],[-12,-43],[-19,-58],[-18,-52],[-10,-62],[1,-54],[17,-46],[24,-42],[30,-22],[43,-15],[40,12],[42,6],[36,-13],[37,-32],[32,-38],[19,-53],[12,-78],[-2,-28],[-1,-29],[-18,-47],[-26,-48],[-36,-34],[-34,-23],[-39,-22],[-47,-1],[-39,8],[-30,-4],[-19,-8],[-13,-16],[-6,-23],[-2,-29],[2,-31],[7,-24],[12,-21],[17,-22],[13,-17],[16,-18],[22,-25],[10,-27],[8,-48],[-2,-45],[-7,-35],[-18,-27],[-22,-17],[-28,-5],[-27,-9],[-22,-24],[-18,-42],[-6,-38],[2,-53],[12,-48],[24,-42],[24,-30],[42,-22],[48,-14],[38,-1],[37,-5],[37,-5],[25,-8],[21,-15],[14,-26],[5,-21],[-3,-23],[-7,-21],[-21,-28],[-27,-25],[-29,-28],[-16,-25],[-7,-26],[1,-45],[5,-29],[15,-44],[31,-23],[32,-8],[27,-3],[52,-8],[40,4],[42,-2],[43,3],[42,0],[45,-17],[38,-32],[28,-36],[21,-48],[8,-46],[-4,-57],[-20,-76],[-41,-97],[-32,-76],[-44,-78],[-30,-68],[-5,-57],[12,-47],[33,-35],[38,-3],[36,20],[26,49],[48,104],[55,55],[56,28],[52,-2],[64,-19],[23,-16],[23,-17],[32,-68],[5,-69],[-10,-58],[-11,-47],[-21,-77],[-9,-67],[6,-52],[35,-74],[25,-36],[33,-14],[46,7],[28,38],[11,46],[13,99],[29,80],[42,39],[40,15],[36,1],[26,-23],[17,-39],[4,-51],[-18,-55],[-28,-35],[-38,-23],[-35,-43],[-7,-63],[17,-38],[28,-33],[50,-14],[25,-7],[40,-5],[41,8],[61,11],[65,-4],[48,-20],[22,-50],[9,-63],[-24,-63],[-33,-27],[-43,-7],[-43,-4],[-41,-31],[-50,-73],[-55,-69],[-34,-56],[-40,-57],[-19,-36],[-4,-47],[19,-39],[25,-9],[37,16],[39,-15],[29,-21],[22,-38],[17,-43],[0,-102],[-5,-82],[-5,-69],[-6,-47],[-1,-42],[-11,-29],[-13,-31],[-20,-20],[-16,-6],[-8,-3],[-17,8],[-17,15],[-26,23],[-22,12],[-27,3],[-29,-6],[-29,-6],[-19,-5],[-18,-15],[-23,13],[-17,9],[-16,-4],[-20,-29],[-22,-2],[-25,3],[-23,15],[-30,13],[-45,1],[-32,-26],[-10,-63],[14,-63],[40,-47],[43,-46],[30,-36],[10,-47],[-12,-50],[-19,-47],[-26,-32],[-23,-11],[-26,11],[-27,23],[-27,3],[-59,-26],[-59,-43],[-62,-55],[-23,-27],[-23,-26],[-45,-53],[-50,-63],[-56,-53],[-50,-37],[-22,-25],[-7,-31],[5,-34],[15,-37],[37,-60],[48,-54],[33,1],[19,-27],[11,-44],[-8,-51],[-7,-38],[-21,-34],[-36,-24],[-44,-10],[-55,12],[-57,-8],[-36,-27],[-21,-78],[-30,-41],[-55,-5],[-56,34],[-40,42],[-24,44],[-13,44],[0,58],[25,50],[30,24],[15,68],[5,70],[-11,61],[-24,134],[-29,104],[-16,85],[-21,74],[-13,84],[-16,59],[-26,36],[-32,32],[-42,20],[-15,8],[-15,8],[-35,30],[-29,10],[-17,0],[-21,-13],[-21,-29],[-5,-41],[2,-42],[1,-51],[10,-66],[15,-73],[11,-122],[-10,-106],[-32,-139],[-23,-100],[-10,-95],[-9,-110],[-12,-83],[-22,-80],[-37,-68],[-11,-29],[-1,-63],[-15,-36],[4,-37],[-4,-46],[-15,-44],[-29,-120],[-17,-67],[-30,-80],[-39,-33],[-33,-10],[-47,3],[-35,24],[-39,44],[-33,45],[-11,44],[-25,25],[-25,25],[-12,42],[-35,25],[-43,5],[-36,4],[-11,29],[12,47],[-10,38],[-34,7],[-55,47],[-30,62],[-37,23],[-41,-5],[-36,40],[-19,27],[-35,10],[-36,-7],[-20,-34],[6,-54],[35,-56],[11,-70],[-17,-158],[-16,-71],[-55,-91],[-47,-57],[-47,-43],[-53,-48],[-49,-28],[-58,-13],[-58,12],[-17,31],[5,46],[30,29],[26,23],[47,28],[40,32],[14,54],[-9,65],[-22,51],[-32,60],[-50,29],[-43,2],[-40,-9],[-51,-38],[-68,-20],[-50,23],[-55,44],[-43,97],[-22,83],[-22,73],[-32,55],[-44,17],[-46,4],[-49,-26],[-63,-56],[-86,-111],[-51,-71],[-51,-70],[-68,-91],[-43,-78],[-24,-47],[-24,-33],[-27,-11],[-39,4],[-61,26],[-38,17],[-41,5],[-48,-15],[-32,-6],[-50,13],[-33,4],[-23,3],[-25,-26],[-27,-29],[-25,9],[-14,58],[-3,50],[-21,35],[-37,17],[-40,-1],[-33,40],[-39,30],[-33,19],[-56,-8],[-29,-35],[-36,-52],[-63,-51],[-64,-27],[-86,-12],[-67,2],[-52,15],[-52,-11],[-63,2],[-31,30],[-8,42],[7,32],[23,11],[39,-13],[37,1],[56,10],[54,17],[50,33],[44,69],[23,87],[17,81],[6,60],[-1,55],[-9,24],[-9,24],[-29,13],[-37,7],[-35,-14],[-31,-29],[-18,-30],[-25,-39],[-38,-32],[-36,8],[-53,-1],[-62,-14],[-57,13],[-53,47],[-51,43],[-46,33],[-44,17],[-40,-10],[-17,-42],[-1,-57],[20,-43],[25,-52],[4,-99],[-15,-74],[-24,-57],[-35,-60],[-44,-61],[-63,-59],[-41,-34],[-61,-36],[-39,23],[-12,39],[12,51],[51,45],[28,44],[27,64],[19,44],[11,49],[4,45],[-9,44],[-19,44],[-37,51],[-38,8],[-30,-16],[-29,-36],[-19,-69],[-5,-80],[-2,-92],[-15,-58],[-26,-31],[-34,-32],[-40,0],[-26,15],[-22,39],[-11,32],[-18,75],[3,66],[6,76],[-11,86],[-33,76],[-30,23],[-32,0],[-33,-20],[-48,-64],[-22,-65],[-11,-33],[-33,-20],[-25,17],[-24,25],[-33,-1],[-31,-24],[-24,-20],[-24,-21],[-43,-35],[-63,-41],[-76,-38],[-70,-14],[-43,5],[-9,12],[-10,13],[0,34],[29,61],[40,48],[23,48],[12,55],[-6,86],[-8,33],[-23,19],[-43,8],[-36,-23],[-34,-48],[-30,-113],[-32,-75],[-31,-24],[-51,-6],[-22,14],[-22,14],[-32,34],[-31,41],[-19,47],[2,81],[14,65],[3,34],[-17,45],[-34,33],[-22,26],[-38,2],[-25,-14],[-20,-34],[0,-36],[11,-40],[24,-33],[11,-29],[6,-34],[0,-26],[-10,-36],[-18,-22]],[[674539,641336],[216,59],[164,49],[230,50],[217,56],[156,37],[164,49],[311,88],[223,61],[180,49],[140,31],[139,19],[119,-19],[233,-7],[129,-39],[161,12],[126,116],[228,224],[323,271],[262,202],[245,315],[71,166],[57,136],[102,126],[136,105],[190,116],[103,52],[103,51],[90,45],[88,61],[109,75],[74,51],[106,79],[106,79],[88,66],[103,-28],[63,10],[74,35],[89,87],[136,67],[90,25],[97,15],[93,-20],[92,-42],[160,-89],[77,-3],[113,-8],[197,4],[175,7],[208,-6],[234,-2],[127,-10],[115,15],[122,40],[111,42],[123,70],[74,42],[73,42],[199,213],[308,279],[477,588],[234,225],[217,196],[271,164],[426,248],[351,147],[283,120],[143,23],[113,0],[90,-43],[162,-147],[154,-42],[136,4],[151,7],[281,7],[376,-129],[203,-149],[110,-182],[96,-227],[119,-154],[257,-169],[76,-30],[76,-45],[89,-45],[158,-35],[175,-35],[208,15],[231,75],[218,95],[191,64],[223,10]],[[750887,679876],[-20,-11809],[-11,-6851],[-33,-19636],[32,-3288],[30,-2966],[105,-10557],[0,-59],[1,-60]],[[775904,878062],[460,-693],[156,-1242],[127,-341],[211,-127],[756,-40],[275,-96],[359,-679],[180,-1396],[317,-1301],[71,-167],[402,-544],[370,-1009],[316,-427],[1768,-580],[265,-469],[-82,-459],[-97,-231],[-131,-157],[-7,-9],[-7,-8],[-197,-235],[-811,-648],[-199,-97],[-473,-340],[-339,-583],[-157,-1024],[-444,-729],[-335,-247],[-506,-518],[1,-242],[148,-966],[324,-310],[424,25],[969,-333],[476,210],[584,-66],[1342,318],[83,96],[79,335],[36,1082],[263,-45],[238,-492],[263,-30],[1193,1242],[466,316],[368,107],[531,-49],[152,-186],[257,-1662],[-22,-723],[-190,-609],[-255,-1169],[-28,-930],[135,-432],[28,-427],[-72,-253],[-572,-1044],[-614,-1008],[-35,-397],[296,-507],[-173,-1180],[3,-321],[1352,247],[814,-157],[286,-161],[221,-482],[600,-413],[948,-474],[1007,-224],[445,98],[200,-47],[397,-235],[149,-32],[1019,263],[759,-171],[447,-257],[523,-888],[748,-301],[213,-427],[-149,-1120],[-558,-2211],[22,-356],[474,-392],[-30,-573],[-254,-521],[-34,-168],[0,-371],[259,-288],[41,-66],[106,-169],[-18,-851],[-135,-930],[-22,-627],[374,-586],[292,-30],[1435,477],[522,465],[256,270],[202,297],[1427,1506],[617,186],[764,-105],[1009,125],[926,400],[1018,-17],[586,-336],[290,-490],[49,-356],[-282,-1227],[-42,-717],[222,-512],[369,-456],[489,-469],[1125,-322],[117,-207],[-428,-1421],[65,-557],[226,-1052],[20,-328],[-86,-358],[-697,-563],[-114,-739],[-441,-976],[-373,-183],[-112,-370],[-297,-182],[-516,-928],[-142,-417],[-106,-813],[211,-676],[247,-6],[963,256],[458,482],[86,350],[222,267],[134,-35]],[[805765,831359],[302,-398],[57,-75]],[[806124,830886],[81,-486],[2,-673],[-290,-884],[-161,-331],[-790,-1189],[-257,-852],[-565,-1408],[69,-581],[142,-299],[458,-203],[165,1],[431,-111],[735,-830],[282,9],[241,221],[331,758],[284,72],[819,-21],[1032,633],[126,123],[652,291],[177,-141],[105,-275],[-113,-836],[21,-166],[120,-355],[573,-841],[177,-2340],[34,-241],[156,-338],[69,-1191],[149,-462],[375,-334],[635,-232],[250,-156],[274,-1259],[389,63],[409,-52],[163,-58],[297,-387],[933,-2260],[203,-1181],[274,-614],[81,-551],[184,-542],[616,509],[351,596],[206,616],[474,290],[357,328],[100,452],[450,259],[1845,503],[1268,864],[741,195],[206,54],[749,415],[1293,-609],[601,-459],[325,-57],[389,301],[488,646],[571,-378],[100,-122],[289,-537],[354,-353],[177,-1362],[1279,-669],[100,-256],[-43,-317],[-396,-820],[104,-329],[-782,14],[-141,-70],[-100,-331],[-721,-299],[-129,-243],[122,-330],[268,-224],[412,-51],[275,-181],[395,-394],[486,-233],[616,38],[88,5],[87,5],[46,3],[330,20],[262,-120],[480,-721],[389,-421],[275,-415],[162,-428],[37,-230],[-107,-1702],[247,-422],[86,-147],[50,-18],[205,42],[232,10],[343,76],[289,9],[161,-114],[80,-134],[19,-112],[133,-152],[240,-130],[156,-20],[637,22],[131,-43],[163,-118],[179,-290],[129,-318],[66,-208],[13,-180],[-50,-257],[-82,-231],[-261,-565],[-94,-214],[-26,-228],[43,-307],[86,-227],[103,-231],[28,-65],[74,-166],[154,-327],[107,-243],[21,-38],[85,-250],[51,-285],[31,-284],[11,-155],[-2,-178],[-28,-146],[-18,-166],[31,-152],[60,-114],[85,-47],[135,-90],[119,-57],[85,-90],[101,-223],[151,-152],[132,-43],[157,38],[91,43],[47,-40],[47,-111],[38,-210],[35,-241],[46,-210],[70,-106],[79,-69],[132,-62],[185,-32],[195,-114],[252,-285],[135,-28],[102,-22],[99,-167],[148,-361],[214,-494],[157,-189],[220,-86],[276,-18],[86,-5],[189,-99],[194,-177],[164,-151],[15,-29],[35,-80],[11,-120],[-13,-39],[-153,-592],[-80,-442],[-39,-283],[-28,-369],[6,-242],[22,-228],[51,-213],[97,-304],[167,-389],[190,-380]],[[839920,789145],[-13,-54],[7,-69],[20,-97],[31,-86],[56,-102],[92,-166],[25,-56],[115,-252],[120,-295],[74,-193],[8,-28],[73,-233]],[[782034,783664],[-4783,11843],[-2,4],[-1156,2864],[-91,225],[-167,-98],[-163,-173],[-247,-285],[-298,-424],[-253,-332],[-310,-968],[-42,-535],[-153,-231],[-240,-211],[-287,-21],[-470,-347],[-402,-448],[-134,-462],[-201,-116],[-202,-115],[-402,-333],[-225,-224],[-225,-224],[-278,-58],[-182,0],[-283,-71],[-340,158],[-594,0],[-431,-87],[-446,-185],[-436,-456],[-339,-159],[-149,1],[-113,135],[-108,303],[-48,303],[-19,448],[163,304],[-38,376],[-272,250],[-370,126],[-316,14],[-345,72],[-355,44],[-192,-87],[-201,-231],[-201,-203],[-327,145],[-125,4],[-446,17],[-137,239],[-124,361],[-27,203],[-21,159],[-77,260],[-239,246],[-90,61],[-258,35],[-273,-150],[-243,-259],[-308,-33],[-218,-276],[-182,-260],[-153,-419],[-172,-297],[-189,-335],[-147,-438],[-309,-277],[-275,-315],[-345,-29],[-316,-116],[-412,43],[-297,188],[-404,300],[-100,156],[-55,516],[-64,295],[-65,295],[-64,184],[-119,120],[-116,143],[-115,83],[-86,62],[-278,159],[-326,101],[-307,87],[-188,-40],[-173,130],[-367,156],[-546,67],[-314,16],[-315,16],[-141,-42],[-212,-64],[-158,-181],[-259,-333],[-57,-390],[-192,-809],[-491,-880],[-245,-440],[-246,-440],[-302,-755],[-291,-450],[-150,-302],[-239,-405],[-355,-433],[-268,-318],[-211,-130],[-297,173],[-337,392],[-191,123],[-341,153],[-271,40],[-230,203],[-201,159],[-259,57],[-364,-130],[-326,-216],[-364,-102],[-326,15],[-413,-112],[-353,-177],[-96,-51],[-185,-98],[-6,-4],[-13,-6],[-76,-41],[-14,-7],[-115,-61],[-12,-7],[-355,-144],[-249,-145],[-220,-347],[-343,-336],[-158,82],[-11,6],[-169,104],[-24,13],[-20,11],[-214,120],[-278,188],[-312,248],[-33,27],[-92,90],[-234,228],[-186,235],[-303,112],[-277,101],[-537,58],[-360,14],[-349,4],[-632,-134],[-479,-173],[-345,-275],[-431,-567],[-537,-315],[-230,-58],[-474,-88],[-261,-45],[-120,79],[-185,278],[-303,105],[-183,-84],[-362,-331],[-105,-405],[-119,-674],[20,-380],[56,-206],[101,-315],[95,-463],[-95,-318],[-230,-289],[-654,98],[-190,90],[-249,-64],[-156,-34],[-275,-76],[-297,-462],[-326,-448],[-220,-390],[-17,-94],[-36,-192],[-119,-307],[-106,-275],[-100,-223],[-264,79],[-239,89],[-269,12],[-335,72],[-470,-101],[-465,-170],[-426,-260],[-268,-92],[-623,-215],[-440,-246],[-556,-58],[-5,2],[-407,143],[-412,159],[-498,87],[-42,-17],[-428,-171],[-412,-492],[-297,-448],[-297,-448],[-300,-548],[-192,-351],[-418,-763],[-249,-665],[-138,-386],[-188,-524],[-5,-287]],[[726438,777619],[-255,-247],[-281,-216],[-227,-173],[-145,-104],[-218,-131],[-213,-194],[-111,-139],[-134,-84],[-81,-22],[-22,-5],[-146,73],[-162,-54],[-181,-95],[-250,-119],[-198,-107],[-176,-123],[-103,-123],[-152,-155],[-81,-172],[-19,-186],[17,-119],[30,-154],[-5,-132],[-58,-166],[-32,-80],[-52,-39],[-28,-97],[-7,-118],[-55,-245],[-34,-245],[-261,-349],[-215,-153],[-153,-112],[-174,-47],[-179,111],[-192,135],[-189,60],[-243,51],[-157,60],[-177,-36],[-123,-128],[-369,-313],[-197,-95],[-153,-56],[-105,32],[-108,4],[-178,74],[-285,77],[-198,56],[-142,-44],[-132,-80],[-102,-59],[-97,-35],[-138,-49],[-202,-71],[-270,-2],[-299,252],[-121,127],[-89,80],[-79,75],[-82,48],[-30,9],[-116,37],[-117,73],[-79,55],[-134,-43],[-98,-28],[-131,12],[-124,36],[-129,-52],[-113,75],[-65,171],[-74,-566],[-74,-565],[-378,119],[-101,31],[-264,31],[-257,140],[-114,0],[-136,-47],[-185,-16],[-90,1],[-41,94],[0,99],[-63,187],[-103,147],[-147,95],[-164,79],[-389,60],[-224,44],[-195,0],[-250,35],[-131,50],[-124,38],[-182,4],[-228,47],[-193,52],[-224,83],[-181,119],[-150,115],[-158,167],[-129,76],[-134,79],[-153,16],[-150,83],[-51,104],[-52,103],[-84,143],[-84,143],[-34,107],[-58,75],[-63,28],[-82,-47],[-87,89],[-87,89],[-44,100],[-61,71],[-63,151],[-42,175],[63,174],[82,131],[131,147],[162,83],[161,83],[115,48],[240,100],[196,7]],[[711386,776807],[246,72],[126,71],[215,11],[186,71],[73,137],[25,193],[-109,236],[-91,154],[29,176],[69,165],[157,148],[106,259],[-4,269],[17,363],[12,275],[88,346],[109,99],[189,-6],[243,-212],[155,-84],[109,27],[29,104],[7,490],[55,209],[120,417],[110,385],[94,275],[31,283],[11,179],[-42,156],[-54,160],[-117,198],[-126,132],[-80,105],[-80,106],[-120,193],[-58,119],[-57,119],[-13,82],[7,119],[97,184],[202,251],[93,170],[50,199],[41,166],[85,143],[85,143],[33,140],[58,86],[107,46],[84,42],[118,-6],[124,-16],[303,-102],[76,-50],[41,7],[41,7],[31,-77],[59,-22],[58,14],[42,-27],[11,-135],[38,-127],[67,-104],[84,-66],[141,-88],[139,29],[137,63],[93,122],[106,501],[302,1543],[-67,130],[-71,77],[-127,77],[-73,143],[45,165],[139,259],[154,288],[68,190],[49,170],[-16,267],[-130,379],[-76,192],[-78,143],[-143,160],[-140,93],[-144,55],[-126,19],[-138,-9],[-95,125],[-3,9],[-58,143],[-10,24],[-23,137],[-70,412],[-87,275],[-69,99],[-81,63],[-191,6],[-173,5],[-177,-19],[-286,-19],[-196,-8],[-343,22],[-310,30],[-186,77],[-165,178],[-82,105],[-37,137],[-36,198],[33,303],[72,338],[137,332],[166,250],[138,176],[122,80],[46,-1],[69,-2],[91,-33],[70,-37],[145,-54],[93,9],[64,35],[936,971],[221,263],[47,80],[20,91],[12,79],[8,102],[0,176],[-1,102],[38,77],[13,107],[-50,148],[-16,173],[-4,108],[40,68],[40,143],[-12,160],[-17,145],[-58,121],[-109,432],[-25,224],[1,235],[18,254],[42,268],[102,316],[268,429],[158,365],[211,1035],[34,237],[21,152],[6,203],[-29,262],[-22,195],[-48,204],[-33,142],[-34,143],[40,291],[111,327],[26,256],[-2,156],[-2,53],[-169,549],[-126,300],[-89,159],[-60,132],[-104,129],[-119,77],[-140,83],[-197,19],[-74,94],[-10,105],[26,107],[58,142],[288,135],[279,148],[268,223],[96,173],[121,302],[218,597],[223,456],[125,187],[91,137],[101,101],[102,100],[125,121],[112,109],[112,135],[199,264],[58,61],[64,13],[113,-28],[98,-95],[53,-118],[53,-119],[80,-143],[113,-107],[195,-35],[148,33],[168,38],[260,59],[180,29],[69,11],[84,19],[77,-11],[91,-52],[127,-91],[81,-60],[105,47],[122,112],[144,336],[90,267],[81,239],[81,238],[158,668],[73,223],[88,179],[103,207],[85,124],[77,114],[132,110],[69,104],[33,126],[4,115],[-15,149],[-60,201],[-93,267],[-39,164],[-36,190],[-5,187],[40,275],[45,156],[64,160],[67,148],[86,135],[95,148],[145,55],[146,-19],[141,-49],[144,-59],[145,-29],[166,-77],[101,-47],[123,-88],[88,-69],[81,-64],[99,-68],[69,-49],[78,-14],[126,16],[173,23],[142,35],[135,86],[219,104],[248,184],[156,124],[237,192],[144,42],[208,126],[85,157],[77,69],[80,50],[11,7],[137,66],[182,93],[200,138],[243,225],[138,168],[104,77],[130,52],[109,44],[103,49],[151,77],[3,2],[175,67],[85,104],[86,105],[82,201],[57,212],[58,211],[111,278],[123,109],[121,49],[127,-29],[131,-91],[113,3],[86,35],[106,66],[58,83],[49,99],[4,103],[2,65],[1,19],[0,19],[-21,267],[41,200],[17,80],[32,190],[51,309],[-86,185],[-1387,1295],[-97,63],[-151,58],[-137,28],[-136,29],[-135,28],[-84,16],[-84,17],[-82,-16],[-68,-13],[-179,-34],[-175,-11],[-155,55],[-104,104],[-102,60],[-117,6],[-111,-3],[-98,44],[-117,129],[-78,54],[-78,53],[-106,12],[-99,8],[-71,8],[-85,17],[-70,-9],[-98,-16],[-102,-77],[-84,0],[-129,34],[-83,22],[-104,43],[-98,41],[-77,32],[-99,30],[-176,1],[-148,13],[-120,29],[-120,11],[-105,17],[-81,14],[-89,86],[-332,294],[-104,125],[-75,133],[-36,105],[-19,110],[-16,86],[9,130],[31,110],[42,113],[62,137],[73,128],[36,181],[35,178],[24,116],[18,136],[-3,141],[6,113],[-15,139],[-16,139],[-20,186],[-15,139],[-24,196],[-24,196],[4,153],[39,123],[42,114],[84,118],[88,37],[70,9],[112,-15],[132,-17],[181,-29],[137,29],[86,42],[86,42],[166,98],[132,108],[139,114],[184,151],[185,144],[82,65],[126,98],[78,95],[95,135],[70,170],[58,168],[-37,632],[33,230],[145,481],[-50,100],[-72,52],[-120,37],[-149,12],[-149,12],[-253,276],[50,565],[-16,130],[-114,143],[-190,95],[-269,63],[-244,122],[-93,70],[-37,151],[-67,350],[-16,329],[14,101],[140,285],[128,261],[150,303],[70,258],[47,177],[22,81],[29,208],[61,436],[32,231],[1,206],[2,227],[1,282],[2,282],[11,192],[17,259],[28,455],[-45,525],[-63,476],[-55,546],[-13,137],[-13,129],[-24,-39],[-51,-80],[-55,-161],[-20,-72],[-41,-142],[-76,-129],[-77,-130],[-97,-98],[-56,-31],[-46,3],[-65,49],[-95,-49],[-58,56],[-19,81],[-37,42],[-53,-11],[-84,53],[-62,109],[-65,59],[-47,45],[-109,-21],[-102,-49],[-120,-70],[-82,-59],[-104,-46],[-90,32],[-65,87],[-26,144],[23,154],[51,210],[82,175],[141,143],[137,161],[70,186],[92,206],[68,147],[51,171],[37,140],[-22,84],[-22,84],[14,114],[13,114],[64,171],[87,147],[79,185],[109,260],[121,256],[130,276],[130,276],[102,196],[87,158],[38,153],[56,144],[39,171],[-9,112],[-40,105],[-62,167],[-45,120],[-13,116],[25,112],[96,108],[101,109],[79,91],[79,31],[86,4],[100,-4],[60,81],[25,90],[26,165],[-7,200],[-37,167],[-91,182],[-106,133],[-121,123],[-160,108],[-162,63],[-191,53],[-199,-11],[-160,-8],[-202,-51],[-239,-81],[-264,-70],[-302,-69],[-453,-104],[-287,-51],[-337,32],[-257,26],[-206,24],[-188,22],[-254,-49],[-225,-14],[-225,29],[-364,55],[-268,7],[-449,124],[-248,5],[-208,3],[-131,20],[-177,26],[-105,-7],[-66,16],[-67,50],[-100,151],[-111,149],[-73,101],[-55,166],[-41,91],[-61,56],[-81,39],[-78,9],[-88,-2],[-67,-2],[-157,19],[-133,15],[-167,20],[-120,11],[-159,14],[-113,9],[-92,-42],[-70,-67],[-52,-66],[-65,-93],[-76,-215],[-40,-151],[-22,-152],[-25,-144],[15,-157],[11,-238],[-49,-199],[-41,-65],[-32,-105],[-15,-135],[0,-215],[-8,-180],[-63,-230],[-79,-206],[-47,-220],[-58,-254],[-85,-257],[-57,-119],[-46,-103],[-122,-79],[-135,-123],[-55,-80],[-21,-117],[8,-125],[-2,-103],[-41,-164],[-47,-107],[12,-174],[26,-209],[51,-350],[22,-238],[-6,-199],[-13,-256],[-22,-269],[-43,-270],[-102,-176],[-162,-142],[-204,-84],[-111,-9],[-123,81],[-76,85],[3,100],[-12,46],[-41,68],[-46,68],[-40,79],[-33,190],[-36,181],[-12,91],[-10,73],[-36,53],[-88,45],[-76,35],[-146,63],[-116,57],[-61,-6],[-94,-30],[-123,-40],[-91,-74],[-98,10],[-74,83],[-59,112],[-35,161],[-29,137],[-13,140],[-20,127],[-43,102],[-50,90],[-93,105],[-75,85],[-59,67],[-49,83],[-58,100],[-23,90],[-18,71],[-23,76],[-24,134],[-61,138],[-56,73],[-51,42],[-24,20],[-134,58],[-151,33],[-195,29],[-105,32],[-134,45],[-113,84],[-44,90],[-37,176],[-45,182],[-4,113],[-3,113],[-47,122],[-75,78],[-77,57],[-97,14],[-88,-45],[-77,-67],[-70,-87],[-67,-176],[-32,-116],[-35,-124],[-7,-167],[-16,-91],[2,-107],[-13,-160],[-9,-118],[-1,-15],[-12,-144],[-8,-138],[-21,-147],[-10,-137],[-8,-115],[-18,-87],[-34,-69],[-70,-71],[-58,-78],[-51,-69],[-10,-95],[50,-130],[104,-210],[111,-183],[94,-121],[68,-89],[52,-103],[28,-94],[-14,-101],[-28,-108],[-87,-135],[-121,-160],[-106,-109],[-137,-92],[-103,-74],[-70,-104],[-29,-170],[-28,-170],[-17,-479],[53,-504],[41,-306],[-5,-196],[-28,-108],[-79,-115],[-89,-69],[-89,-91],[-82,-38],[-142,44],[-156,101],[-164,147],[-170,100],[-110,0],[-66,-74],[-41,-133],[-31,-192],[-25,-291],[-39,-166],[-66,-208],[-103,-206],[-77,-191],[-20,-119],[-13,-160],[-3,-161],[-4,-161],[0,-271],[-41,-294],[15,-170],[82,-152],[98,-130],[123,-130],[170,-77],[233,-106],[234,-107],[188,-92],[188,-92],[116,-29],[75,-31],[32,-96],[-44,-199],[-68,-257],[-116,-278],[-173,-411],[-94,-398],[-129,-83],[-217,-50],[-218,-86],[-417,-77],[-185,-56],[-223,131],[-77,70],[-202,278],[-188,435],[-117,375],[-34,108],[-64,143],[-65,143],[-137,162],[-144,61],[-162,173],[-150,248],[-138,154],[-79,27],[-202,68],[-25,19],[-116,88],[-17,36],[-65,139],[-7,19],[-50,139],[-96,266],[-132,238],[-195,197],[-195,129],[-45,30],[-254,101],[-157,148],[-137,377],[-113,394],[-50,654],[5,90],[11,218],[60,105],[64,112],[201,203],[93,5],[93,5],[63,-31],[88,-41],[272,-4],[192,-64],[181,-145],[114,-122],[137,-48],[100,125],[26,175],[-90,452],[-63,507],[-94,288],[-137,219],[-159,257],[-153,199],[-232,298],[-215,172],[-135,115],[-90,74],[-35,172],[-28,180],[-9,311],[-8,246],[-90,152],[-180,298],[-138,157],[-120,137],[-99,19],[-52,63],[-48,199],[-35,159],[-35,160],[-67,115],[-68,115],[-64,169],[-43,113],[-124,174],[-162,228],[-92,113],[-118,147],[-142,140],[-194,134],[-151,91],[-95,76],[-50,131],[9,173],[29,185],[71,290],[28,358],[25,229],[21,191],[53,164],[83,72],[90,47],[154,13],[196,115],[149,50],[131,13],[92,52],[83,149],[77,217],[69,251],[-16,269],[-81,277],[-90,327],[-132,274],[-85,180],[-76,105],[-28,139],[19,110],[108,57],[163,18],[308,0],[189,45],[225,29],[192,-63],[136,-126],[117,-141],[99,-133],[101,-149],[42,-177],[3,-116],[33,-70],[78,-19],[95,-7],[128,57],[102,118],[68,204],[10,305],[30,267],[-33,410],[-5,311],[-42,131],[-125,146],[-218,147],[-310,274],[-255,233],[-222,102],[-341,167],[-272,105],[-186,80],[-160,74],[-149,49],[-205,-36],[-123,-71],[-130,-109],[-102,-88],[-157,-133],[-175,-150],[-101,-103],[-105,-84],[-98,-104],[-80,-49],[-95,15],[-128,112],[-89,74],[-36,83],[-2,129],[-54,80],[-96,142],[-117,89],[-130,98],[-100,76],[-120,121],[-223,144],[-291,125],[-179,76],[-317,201],[-273,175],[-186,149],[-211,163],[-151,117],[-120,39],[-131,24],[-199,36],[-175,-28],[-132,-21],[-201,-105],[-116,-131],[-189,-232],[-258,-379],[-102,-154],[-118,-110],[-135,-89],[-132,-112],[-134,-199],[-239,-328],[-147,-201],[-235,-321],[-345,-473],[-113,-172],[-61,-71],[-145,-197],[-161,-218],[-113,-170],[-139,-191],[-82,-71],[-150,-128],[-126,-109],[-116,-121],[-186,-324],[-53,-248],[-49,-165],[-71,-227],[-87,-76],[-76,50],[-34,125],[-25,162],[-20,201],[76,335],[66,209],[67,209],[61,157],[74,193],[116,237],[115,237],[71,196],[92,251],[33,141],[-40,133],[-115,57],[-124,21],[-162,-7],[-152,-27],[-166,40],[-139,31],[-73,63],[-78,78],[-41,86],[10,121],[82,153],[55,56],[116,232],[95,264],[30,134],[52,313],[15,285],[0,225],[16,212],[54,198],[72,89],[109,44],[107,12],[252,26],[243,-14],[255,-36],[147,-23],[135,-6],[92,83],[28,115],[-49,144],[-118,126],[-190,128],[-129,133],[-147,97],[-135,13],[-210,-32],[-201,-34],[-279,-62],[-159,-13],[-152,10],[-216,-47],[-256,-96],[-215,-58],[-154,-13],[-121,-55],[-56,-112],[-50,-176],[-26,-187],[-12,-114],[-20,-191],[-2,-383],[24,-186],[-47,-193],[-99,-196],[-116,-162],[-102,-144],[-120,-107],[-109,-86],[-29,-61],[-2,-83],[64,-136],[101,-267],[36,-345],[5,-374],[-55,-224],[-108,-246],[-22,-196],[-4,-267],[56,-313],[92,-168],[95,-104],[38,-230],[4,-201],[15,-134],[7,-243],[-7,-316],[-47,-308],[-102,-259],[-168,-225],[-161,-212],[-132,-157],[-137,-78],[-169,21],[-170,16],[-222,57],[-189,42],[-178,18],[-226,76],[-121,16],[-147,0],[-321,123],[-207,120],[-158,91],[-109,87],[-56,88],[-29,233],[-75,139],[-194,73],[-135,34],[-102,68],[-28,133],[3,217],[-19,206],[-26,81],[-65,42],[-75,56],[-62,96],[14,78],[83,81],[107,113],[83,117],[32,126],[0,158],[-75,114],[-168,172],[-88,91],[-88,89],[-87,90],[-70,221],[-26,224],[-19,158],[7,256],[0,196],[-29,118],[-64,125],[-112,68],[-134,42],[-134,43],[-133,43],[-97,89],[-49,128],[-14,186],[33,167],[106,144],[197,148],[142,100],[181,126],[135,107],[184,110],[58,89],[11,99],[-43,68],[-103,91],[-126,55],[-161,43],[-184,85],[-154,84],[-95,60],[-101,84],[-48,120],[-16,117],[27,165],[-11,167],[-55,95],[-55,94],[-117,73],[-117,73],[-113,23],[-70,14],[-98,-67],[-66,-173],[-28,-149],[-69,-200],[-76,-108],[-106,-65],[-48,-29],[-51,-56]],[[685356,847622],[-145,783],[-19,145],[25,101],[42,82],[582,389],[84,56],[62,80],[21,101],[91,588],[64,694],[-32,685],[-59,497],[29,322],[115,321],[94,199],[151,182],[231,186],[199,90],[186,17],[280,46],[288,125],[236,96],[300,203],[301,212],[179,144],[127,125],[256,396],[160,424],[80,217],[63,240],[207,1083],[106,580],[71,429],[44,197],[38,167],[87,130],[79,98],[202,176],[356,260],[117,64],[259,142],[1,0],[327,180],[391,881],[-63,331],[-378,899],[-107,334],[-4,167],[36,232],[86,205],[114,118],[153,92],[208,43],[71,81],[29,183],[-8,183],[-60,275],[-146,368],[508,1014],[-391,623],[-51,237],[1477,4657],[211,544],[86,144],[68,70],[92,58],[173,79],[213,10],[94,-5],[160,-24],[156,-62],[233,-80],[266,-138],[239,-154],[253,-183],[217,-164],[479,-395],[418,-308],[90,-15],[137,39],[176,125],[198,140],[67,35],[86,32],[91,-20],[90,-20],[672,-129],[403,-53],[188,-4],[217,-15],[243,44],[141,24],[111,43],[74,96],[3,7],[54,119],[598,2563],[257,1036],[188,754],[66,205],[76,174],[154,163],[198,203],[230,260],[191,337],[154,371],[25,396],[-57,395],[-77,231],[-441,723],[-63,260],[38,241],[89,202],[109,203],[204,183],[218,154],[274,39],[288,28],[492,85],[474,164],[331,89],[255,29],[313,48],[173,96],[230,222],[223,376],[83,159],[89,231],[13,163],[7,83],[0,376],[-100,409],[-168,397],[-167,397],[-53,287],[-23,216],[77,462],[134,270],[260,277],[186,91],[116,124],[73,62],[36,111],[76,193],[109,96],[128,10],[108,-68],[141,-29],[140,106],[243,723],[211,800],[187,358],[197,305],[204,233],[204,97],[178,133],[196,267],[156,221],[144,82],[153,20],[135,48],[89,120],[77,126],[60,159],[26,147],[14,178],[18,233],[3,309],[-6,202],[16,126],[32,106],[54,144],[83,212],[89,174],[154,212],[99,110],[112,87],[84,110],[31,97],[12,193],[-124,178],[-221,319],[-115,192],[-102,217],[-6,87],[22,87],[77,110],[214,198],[297,294],[268,381],[214,385],[102,255],[67,290],[24,142],[19,112],[1,136],[-8,197],[-23,299],[-54,246],[-80,246],[-96,144],[-198,121],[-142,162],[-49,132],[-13,164],[12,182],[13,112],[55,53],[95,-5],[125,-73],[89,-84],[237,-248],[283,-242],[146,-110],[231,-173],[212,-159],[99,-126],[41,-125],[40,-151],[24,-95],[29,-115],[64,-111],[77,-140],[64,-130],[57,-10],[48,29],[10,77],[-39,232],[-35,241],[-38,260],[-3,221],[25,217],[54,193],[138,145],[185,82],[208,72],[223,19],[227,-29],[294,-96],[1269,-421],[273,-51],[234,38],[223,144],[60,145],[56,169],[12,332],[-51,1542]],[[714675,897527],[205,-183],[198,-192],[127,-203],[50,-216],[50,-216],[277,-258],[395,-177],[1181,-13],[163,40],[680,-228],[1269,-752],[848,-25],[165,79],[247,210],[274,4],[488,-849],[332,-297],[397,-156],[621,-1029],[121,-275],[147,-503],[106,-238],[141,-606],[-147,-544],[162,-382],[488,-904],[127,-622],[-57,-1053],[289,-945],[80,-1401],[267,-480],[86,-227],[-29,-388],[183,-421],[458,-453],[213,-535],[-12,-373],[-342,-761],[-47,-224],[-35,-433],[148,-790],[274,-401],[589,-119],[409,101],[1378,935],[283,88],[353,-219],[379,-12],[131,21],[9,2],[35,5],[420,167],[106,-145],[50,-1155],[324,-894],[142,-134],[282,-80],[256,-246],[162,-315],[352,-389],[-174,-308],[-327,-62],[-220,-105],[-176,-424],[-41,-868],[-452,-1506],[-150,-221],[-297,-600],[-127,-461],[-68,-457],[197,-1889],[-143,-530],[-613,-420],[-305,-41],[-424,-147],[-403,-683],[-126,-392],[-268,-1318],[-934,-1546],[0,-415],[0,-258],[303,-791],[390,-853],[63,-211],[43,-432],[-16,-258],[-118,-684],[99,-594],[487,-842],[21,-24],[440,-524],[4,-5],[233,-278],[30,-914],[71,-406],[203,-358],[1012,-496],[494,-48],[955,322],[210,288],[376,-185],[57,367],[-410,2038],[84,351],[347,360],[247,469],[1060,748],[565,128],[291,-157],[303,-660],[234,-225],[267,-145],[694,82],[220,-22],[157,24],[1665,251],[1801,1065],[565,186],[1513,39],[226,-180],[247,-755],[-133,-1801],[141,-1486],[197,-366],[297,-90],[1882,-188],[365,-156],[227,-477],[49,-226],[192,-495],[409,-618],[605,-349],[249,-308],[78,-139],[318,-873],[553,-625],[401,-257],[325,-136],[474,-323],[263,-534],[69,-235],[672,-884],[445,-178],[727,-189],[341,-32],[508,-179],[826,-506],[735,-963],[289,-84],[57,1182],[572,609],[574,164],[155,272],[-36,572],[-282,710],[29,515],[564,1042],[771,2492],[430,39],[949,-152],[281,118],[142,322],[-120,451],[-565,588],[-299,511],[-394,398],[36,365],[509,240],[2,-3],[65,-95],[45,-66],[24,-35],[12,-17],[37,-55],[2,-3],[850,-1251],[277,-244],[757,-19],[266,-200],[255,-614],[398,-405],[784,445],[431,281],[471,370],[242,510],[15,414],[-135,391],[-16,425],[326,2725],[-70,1002],[168,608],[241,144],[128,31],[160,227],[533,756],[141,77],[523,-101],[346,-260],[98,-129],[907,-293],[784,96],[847,312],[289,156],[70,376],[72,161],[171,843],[218,535],[241,1793],[-119,729],[41,396],[352,781],[446,248],[1908,350],[487,570],[150,367],[472,486],[607,426],[926,1250],[658,374],[720,114],[383,190],[451,587],[552,864],[622,1787],[91,176]],[[87923,397816],[4,-58],[57,-178],[74,-160],[122,-265],[66,-144],[31,-67],[30,-67],[4,-10],[73,-193],[22,-58],[47,-111],[10,-23],[10,-92],[-26,-114],[-14,-59],[-11,-51],[-211,-172],[-255,-296],[-75,-89],[-47,-24],[-116,24],[-45,25],[-53,49],[-39,55],[-34,-3],[-43,-34],[-51,-9],[-51,52],[-45,59],[-28,34],[-163,-13],[-135,9],[-75,0],[-88,-21],[-73,-55],[-59,-53],[-45,-49],[-12,-61],[26,-83],[33,-71],[63,-71],[86,-27],[47,-19],[26,-15],[20,-21],[2,-44],[-36,-27],[-141,-22],[-53,-37],[-58,-72],[-121,-136],[-14,-96],[-16,-113],[-104,-95],[-39,-41],[-9,-52],[15,-611],[16,-89],[4,-90],[-56,-103],[-52,-93],[-48,-62],[-55,-89],[-39,-41],[-16,-33],[-2,-40],[21,-50],[50,-62],[8,-30],[-2,-77],[-6,-79],[-26,-84],[-64,-134],[-19,-50],[-13,-40],[3,-37],[45,-106],[43,-86],[39,-83],[43,-94],[49,-128],[62,-141],[32,-72],[20,-48],[7,-43],[-12,-50],[-40,-63],[-47,-71],[-16,-46],[-17,-51],[-12,-77],[6,-57],[23,-72],[45,-70],[43,-77],[15,-62],[10,-69],[-6,-69],[-14,-66],[-22,-69],[-28,-77],[-29,-117],[-16,-112],[0,-104],[6,-110],[12,-59],[42,-79],[35,-64],[31,-54],[21,-60],[10,-40],[0,-51],[-4,-50],[-35,-125],[-25,-83],[-20,-72],[8,-52],[26,-32],[43,-39],[38,-51],[16,-69],[0,-50],[4,-88],[-4,-75],[-5,-31],[-22,-25],[-32,-14],[-14,-25],[-4,-28],[3,-42],[21,-121],[40,-174],[27,-120],[6,-72],[13,-90],[-1,-60],[-9,-59],[-29,-58],[-33,-54],[-390,-324],[-22,-18],[-9,-36],[-8,-63],[-11,-138],[-16,-53],[-17,-53],[-30,-77],[-29,-77],[-21,-38],[-20,-31],[-29,-14],[-68,-14],[-54,-35],[-34,-37],[-24,-37],[-24,-52],[-11,-47],[-19,-42],[-19,-35],[-36,-53],[-33,-31],[-41,-2],[-24,-6],[-45,-37],[-34,-28],[-20,-6],[-18,14],[-26,24],[-16,19],[-23,0],[-9,-3],[-10,-3],[-5,-23],[15,-22],[6,-21],[-19,-16],[-19,-11],[-20,-32],[-1,-40],[16,-35],[14,-30],[4,-42],[0,-4],[11,-70],[1,-18],[-9,-26],[-22,-21],[-25,-24],[-30,-51],[-39,-94],[-39,-115],[-20,-77],[-11,-44],[-15,-56],[-5,-20],[-8,-21],[-82,-42],[-67,-39],[-34,-11],[-55,-14],[-13,-11],[-3,-23],[5,-40],[35,-84],[29,-89],[13,-86],[-1,-82],[-17,-57],[-39,-60],[-46,-43],[-45,-12],[-33,-2],[-15,-1],[-66,34],[-139,110],[-62,33],[-50,-10],[-52,8],[-9,-28],[12,-39],[27,-100],[24,-39],[19,-23],[7,-21],[-6,-27],[-10,-39],[-28,-19],[-60,-23],[-6,1],[-3,0],[-4,0],[-3,0],[-3,0],[-17,2],[-81,5],[-69,4],[-61,-21],[-68,-34],[-94,-27],[-26,6],[-32,15],[-26,34],[-80,107],[-58,85],[-32,49],[-8,66],[-8,58],[-15,33],[-26,17],[-22,12],[-24,-12],[-42,-34],[-190,-143],[-79,-148],[-80,-149],[-99,-141],[-27,-12],[-19,18],[-22,49],[-28,73],[-40,185],[-45,163],[-15,66],[-24,70],[-28,47],[-34,28],[-44,11],[-40,4],[-36,-9],[-31,-14],[-17,-21],[-9,-23],[-9,-70],[-2,-72],[-16,-54],[-26,-55],[-32,-41],[-107,-34],[-129,-28],[-8,2],[-8,1],[-44,76],[-35,64],[-32,52],[-49,63],[-56,60],[-30,23],[-55,6],[-60,11],[-55,32],[-35,37],[-75,126],[-2,3],[-68,105],[-30,43],[-47,26],[-49,106],[-5,51],[-13,25],[-32,35],[-6,43],[-10,19],[-8,37],[-15,26],[3,93],[5,64],[-7,34],[-125,78],[-72,76],[-81,112],[-97,98],[-107,112],[-209,291],[-90,80],[-85,124],[-70,122],[-45,78],[-23,69],[-78,139],[-40,43],[-110,49],[-38,41],[-29,92],[-34,84],[-37,26],[-57,-3],[-57,-4],[-58,-4],[-36,1],[-51,30],[-57,26],[-40,12],[-24,23],[-48,-14],[-38,-29],[-50,-8],[-56,-21],[-37,-20],[-28,-31],[-23,-27],[-24,-41],[-18,-33],[-5,-64],[3,-62],[6,-59],[11,-59],[-2,-49],[-5,-35],[-9,-52],[-13,-46],[-12,-22],[-16,-11],[-38,-2],[-79,19],[-34,14],[-38,3],[-44,7],[-17,-5],[-9,-10],[-12,-35],[-9,-45],[-7,-71],[-9,-53],[-9,-70],[-10,-34],[-18,-44],[-37,-67],[-31,-63],[-9,-39],[-7,-56],[0,-45],[10,-137],[2,-43],[-1,-38],[-7,-30],[-14,-34],[-10,-9],[-9,-9],[-26,-9],[-67,23],[-127,110],[-59,48],[-78,40],[-53,26],[-30,7],[-21,-11],[-20,-18],[-40,-43],[-75,-62],[-17,-3],[-14,8],[-14,8],[-19,39],[-26,30],[2,65],[-16,68],[-21,36],[-47,36],[-67,-2],[-48,9],[-48,9],[-72,-8],[-71,13],[-131,5],[-23,9],[-20,8],[-2,1],[-5,3],[-36,19],[-27,6],[-13,3],[-13,4],[-13,-1],[-12,-1],[-25,-1],[-33,-6],[-28,-26],[-106,-69],[-11,-7],[-6,-3],[-24,-32],[-1,-9],[-2,-9],[-3,-18],[-6,-34],[-13,-47],[-23,-13],[-110,-68],[-109,-73],[-74,-30],[-32,-25],[-38,-3],[-23,12],[-26,19],[-31,-8],[-12,-16],[-3,-28],[-11,-34],[-30,-23],[-81,-56],[-35,-21],[-32,-15],[-19,-41],[-12,-14],[-17,-20],[-9,-11],[-23,-23],[-51,-17],[-21,-18],[-7,-13],[2,-21],[41,-48],[10,-24],[-3,-65],[-6,-55],[-11,-66],[-35,-76],[-37,-43],[-118,-56],[-71,2],[-35,-24],[-45,-60],[-6,-18],[6,-26],[15,-42],[22,-62],[11,-60],[3,-96],[-10,-72],[-8,-33],[-7,-31],[-49,-32],[-19,-9],[-18,-10],[-9,-22],[2,-52],[12,-21],[12,-14],[-1,-132],[-25,-45],[-19,-21],[-20,-100],[-15,-14],[-28,-4],[-32,-23],[-26,-29],[-13,-22],[-169,-224],[-36,-36],[-150,-90],[-53,-68],[-21,-71],[-35,-104],[-67,-106],[-45,-99],[-36,-96],[-41,-104],[4,-47],[-11,-28],[-16,-20],[-22,-25],[-13,-14],[-16,1],[-17,2],[-18,-19],[-28,-40],[-42,-32],[-11,-35],[-19,-15],[-97,-24],[-40,-19],[-21,-31],[-29,-45],[-20,-19],[-24,-5],[-73,29],[-83,31],[-56,33],[-63,0],[-105,-36],[-77,-51],[-95,-20],[-32,-101],[-86,-37],[-129,-73],[-142,-212],[-37,-14],[-74,28],[-49,16],[-34,-7],[-35,-16],[-59,-111],[-73,-62],[-114,-73],[-22,-15],[-129,-56],[-118,-206],[-69,-175],[-105,-107],[-114,-96],[-88,-141],[-54,-231],[-56,-169],[-139,-251],[-125,-153],[-62,-10],[-29,-26],[-28,-26],[-56,-127],[-17,-93],[-53,-220],[-86,-53],[-69,-82],[-78,-186],[-107,-95],[-73,-94],[-121,-203],[-131,-220],[-144,-88],[-269,-42],[-194,-226],[709,-4516],[125,37],[164,9],[165,8],[157,0],[217,17],[140,20],[105,-11],[69,-74],[42,-147],[261,-572],[202,-259],[28,-94],[9,-115],[64,-124],[73,-113],[30,-17],[23,-71],[22,-98],[0,-107],[-2,-215],[100,-183],[150,-200],[79,-40],[86,17],[76,-1],[103,-64],[129,6],[137,87],[99,48],[105,6],[80,45],[64,68],[52,39],[75,14],[71,-11],[93,45],[153,48],[118,45],[86,37],[122,8],[114,-8],[93,-79],[129,-147],[118,-39],[36,-47],[0,-66],[18,-48],[94,-96],[105,-141],[72,-76],[88,-47],[75,-1],[5,2],[100,43],[245,73],[136,-76],[136,-77],[1878,-1060],[1546,-872],[1064,-600],[4759,-2685],[62,-35],[690,-389],[134,-76],[2792,-1575],[80,-45],[79,-45],[7430,-4191],[80,-45],[179,-101],[2536,-1431],[134,-75],[2370,-1337],[-19,-54],[-18,-31],[-27,-11],[-23,-3],[-9,5],[-9,6],[0,2],[-10,33],[-24,30],[-13,18],[-23,19],[-28,2],[-13,0],[-21,4],[-20,3],[-4,1],[-40,-3],[-25,-10],[-42,-21],[-40,-27],[-15,-19],[-4,-18],[6,-17],[8,-7],[1,-5],[-3,-4],[-6,-4],[-5,-1],[-5,-2],[-34,-10],[-16,-6],[-9,-16],[-3,-12],[4,-11],[17,-13],[30,-21],[23,-20],[-21,-35],[18,-42],[-33,-35],[8,-84],[25,-25],[-23,-51],[1,-28],[-40,-59],[12,-65],[-11,-60],[-36,-49],[-59,-56],[-11,-60],[1,-86],[-1,-69],[-2,-48],[-1,-33],[14,-32],[26,-33],[27,-34],[16,-51],[6,-62],[-1,-77],[-9,-75],[-21,-66],[-22,-60],[-30,-136],[-3,-114],[9,-165],[7,-156],[16,-151],[5,-48],[13,-41],[7,-40],[30,-67],[61,-120],[97,-205],[42,-97],[53,-27],[97,-76],[57,-52],[38,-81],[19,-18],[20,-18],[42,-22],[43,-10],[47,4],[52,10],[52,9],[43,-3],[31,-41],[62,-14],[52,-40],[76,-29],[44,-55],[-7,-62],[41,-85],[58,-58],[32,-83],[39,-87],[42,-41],[41,16],[46,0],[28,-12],[7,-42],[6,-78],[0,-37],[16,-23],[18,-8],[3,3],[16,15],[32,-25],[4,-36],[0,-44],[17,-25],[7,-29],[0,-38],[-9,-41],[-11,-49],[5,-40],[33,-53],[36,-36],[31,-6],[6,-40],[26,-43],[31,-22],[56,22],[20,-27],[5,-26],[-23,-44],[11,-64],[6,-52],[6,-53],[7,-64],[11,-61],[32,-30],[37,-11],[13,-43],[-12,-40],[8,-43],[35,-58],[11,-45],[-22,-48],[-12,-42],[-3,-43],[19,-52],[58,-58],[15,-32],[-13,-32],[-34,-87],[-14,-37],[9,-49],[10,-27],[38,-67],[9,-45],[-14,-44],[-66,-117],[-6,-48],[17,-48],[45,-43],[83,-21],[100,4],[89,-45],[35,-60],[1,-74],[-12,-61],[-102,-204],[-2,-37],[21,-58],[9,-25],[10,-25],[-1,-15],[-1,-45],[10,-41],[32,-21],[1,-46],[-20,-53],[-26,-46],[-31,-41],[-1,-27],[22,-17],[4,-30],[2,-58],[-5,-13],[-16,-36],[-31,-5],[-36,15],[-24,-18],[-18,-20],[2,-17],[-20,-3],[-35,11],[-7,13],[-12,-11],[0,-50],[9,-26],[20,-6],[1,-52],[-42,-63],[-34,-156],[-57,-258],[-6,-28],[-1,-8],[-11,-48],[-27,-20],[-484,-217],[-382,-172],[-36,-15],[-21,-27],[-2,-6],[-13,-32],[-14,-57],[-14,-58],[-21,-101],[-22,-139],[-13,-102],[-15,-55],[-22,-33],[-24,-23],[-46,-27],[-23,22],[-43,-5],[-25,35],[-36,-10],[-7,37],[-22,15],[-15,-25],[-33,2],[-17,27],[-15,-20],[-18,-18],[-43,-6],[-10,-37],[-15,-12],[-22,20],[-25,31],[-19,-6],[-2,-39],[-16,-15],[-28,5],[-9,31],[4,24],[-26,4],[-11,-18],[-14,-15],[-29,-2],[-63,-1],[-51,-24],[-79,-60],[-47,-27],[-47,-32],[-54,8],[-60,-6],[-11,-69],[-34,-31],[-34,-30],[-17,-68],[5,-59],[20,-19],[33,-16],[3,-31],[19,-10],[6,-20],[-8,-12],[-20,-28],[-17,-68],[-55,-110],[-42,-50],[-86,-68],[-36,-20],[-36,-20],[-19,-29],[-3,-3],[-2,-3],[-9,-47],[0,-13],[1,-66],[9,-33],[8,-33],[14,-39],[18,-31],[-2,-42],[8,-37],[11,-66],[33,-93],[23,-19],[35,-41],[35,-60],[38,-65],[56,-155],[49,-62],[46,-85],[11,-132],[-17,-23],[-17,-24],[-36,-54],[-38,-108],[-23,-116],[-3,-144],[23,-77],[34,-50],[68,-31],[55,-66],[85,-293],[-421,-75],[-375,59],[-71,11],[-30,5],[-64,12],[-115,20],[-196,36],[-341,2],[-98,-1],[-339,-4],[-347,-47],[-142,-55],[-162,-63],[-53,-20],[-156,-58],[-21,-8],[-328,-202],[-462,-315],[-520,-257],[-643,-209],[-521,-194],[-329,-53],[-67,-11],[-146,-23],[-299,-76],[-134,-62],[-133,-180],[-72,-261],[-36,-333],[-85,-924],[72,-595],[62,-487],[99,-677],[39,-325],[8,-321],[-31,-233],[-87,-205],[-106,-117],[-138,-119],[-198,-81],[-35,-9],[-308,-73],[-241,-31],[-152,-58],[-38,-29],[-77,-61],[-3,-3],[-3,-2],[-13,-9],[-27,-19],[-129,-94],[-103,-104],[-82,-78],[-45,-75],[-22,-38],[-23,-38],[-97,-100],[-72,-33],[-72,-33],[-180,-15],[-143,25],[-144,25],[-283,88],[-89,28],[-546,185],[-139,47],[-176,44],[-141,34],[-138,35],[-37,5],[-2,1],[-1,0],[-7,1],[-2,0],[-2,1],[-2,0],[-2,0],[-2,1],[-3,0],[-2,0],[-2,1],[-2,0],[-2,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-11,1],[-7,2],[-59,9],[-91,-13],[-50,-35],[-50,-35],[-143,-146],[-5,-5],[-3,-3],[-6,-6],[-7,-7],[-65,-66],[-7,-7],[-54,-54],[-30,-31],[-111,-170],[-42,-72],[-8,-12],[-12,-20],[-22,-39],[-66,-233],[-35,-234],[-25,-172],[-47,-339],[-30,-150],[-31,-150],[-77,-267],[-95,-290],[-105,-234],[-123,-274],[-206,-321],[-295,-290],[-296,-186],[-386,-159],[-274,-108],[-309,-128],[-46,-20],[-141,-60],[-42,-24],[-128,-74],[-150,-148],[-6,-7],[-121,-128],[-36,-20],[-37,-21],[-125,-71],[-46,-21],[-46,-22],[-64,-19],[-31,-9],[-46,-14],[-82,0],[-57,65],[-57,106],[-145,464],[-51,126],[-50,125],[-42,82],[-42,81],[-48,43],[-47,42],[-116,74],[-113,-8],[-102,-19],[-72,-58],[-80,-82],[-56,-109],[-57,-110],[-101,-289],[-104,-216],[-191,-327],[-2,-4],[-529,-744],[-12,-17],[-350,-435],[-6,-5],[-318,-297],[-5,-14],[-3,-7],[-3,-6],[-215,-525],[-311,-309],[-318,-151],[-692,-459],[-848,-404],[-8,-4],[-41,-38],[-88,-83],[-271,-368],[-130,-175],[-183,-164],[-141,-206],[-468,-685],[-593,-968],[-424,-539],[-121,-209],[-126,-351],[77,-1092],[-43,-1078],[-182,-572],[7,-435],[49,-192],[324,-215],[341,-98],[375,112],[565,-67],[227,-80],[161,-113],[375,-128],[346,-248],[168,-215],[177,-404],[85,-466],[0,-432],[-55,-252],[-221,-438],[-345,-422],[-213,-207],[-212,-143],[-762,-341],[-283,-210],[-219,-369],[-840,-702],[-664,-652],[-644,-887],[-247,-515],[-128,-445],[-255,-1227],[-55,-1511],[-85,-1007],[-193,-898],[-134,-239],[-288,-510],[-135,-176],[-1406,-1304],[-489,-204],[-508,-62],[-1095,269],[-507,254],[-426,306],[-267,266],[-460,684],[-198,377],[-234,320],[-677,445],[-560,646],[-515,816],[-207,452],[-353,1068],[-119,611],[-205,538],[-240,872],[-361,852],[-537,1068],[-84,236],[-397,1593],[29,614],[177,1021],[6,1178],[-26,937],[-21,730],[54,996],[335,1305],[265,760],[265,759],[712,1524],[177,431],[127,355],[13,34],[-148,97],[-148,96],[-106,60],[-172,67],[-102,33],[-172,20],[-848,120],[-179,23],[-26,4],[-172,-20],[-115,36],[-73,64],[-71,70],[-53,80],[-26,76],[-24,93],[-22,60],[-34,54],[-41,30],[-51,40],[-69,16],[-69,47],[-65,17],[-49,59],[-24,64],[-27,86],[-20,77],[-35,70],[-46,54],[-24,9],[-34,-30],[-22,-86],[-39,-50],[-34,41],[-39,12],[-29,-37],[-57,47],[-47,90],[-15,90],[-24,36],[-89,64],[-77,46],[-113,44],[-64,26],[-37,23],[-69,-19],[-57,3],[-35,7],[-29,56],[-4,83],[2,84],[13,73],[13,68],[-8,38],[-24,29],[-25,15],[-27,-2],[-26,-25],[-21,-33],[-34,-25],[-18,1],[-32,20],[-31,37],[-27,113],[-32,77],[-39,17],[-30,-20],[-17,-27],[-10,-52],[1,-41],[-8,-32],[-20,-17],[-49,-11],[-78,5],[-52,15],[-41,28],[-40,35],[-35,61],[-20,16],[-15,1],[-27,14],[-25,55],[-43,31],[-44,5],[-50,13],[-42,19],[-39,61],[-37,80],[-39,69],[-56,89],[-20,20],[-23,-6],[-12,-16],[-23,-16],[-11,-1],[-40,-2],[-53,20],[-31,41],[-21,-6],[-44,-12],[-42,12],[-30,32],[-8,32],[-9,31],[-48,60],[-50,31],[-40,59],[-56,83],[-132,166],[-66,80],[-93,153],[-31,27],[-30,27],[-42,8],[-61,-8],[-68,47],[-29,6],[-43,5],[-38,27],[-26,11],[-38,137],[-24,61],[-37,32],[-180,115],[-105,68],[-22,5],[-38,-5],[-45,25],[-65,60],[-82,108],[-58,67],[-29,23],[-37,20],[-40,5],[-27,-5],[-28,-20],[-35,-33],[-18,-23],[-38,-14],[-37,-10],[-31,30],[-22,70],[-15,50],[1,50],[-4,52],[-27,68],[-37,67],[-25,44],[-38,44],[-26,1],[-27,-5],[-31,-7],[-23,23],[1,50],[7,56],[21,37],[40,75],[14,43],[-3,128],[9,72],[4,50],[-7,23],[-48,148],[-9,40],[-17,44],[-20,33],[-13,23],[-17,82],[-27,68],[-36,125],[-8,43],[-10,51],[-19,36],[-74,63],[-34,37],[-25,55],[-49,83],[-31,23],[-38,7],[-49,-2],[-64,-31],[-35,0],[-44,-10],[-24,-5],[-28,-17],[-25,-30],[0,-20],[-1,-27],[17,-38],[2,-27],[-4,-28],[-14,-23],[-34,-19],[-20,7],[-20,7],[-43,36],[-37,24],[-29,6],[-55,-1],[-82,-3],[-40,-15],[-24,39],[-27,28],[-1,33],[-6,30],[-38,37],[-24,11],[-20,55],[-79,132],[-83,138],[-10,27],[0,10],[0,20],[-20,36],[-26,10],[-14,13],[-5,10],[-11,19],[-38,72],[-69,104],[-39,64],[-32,43],[-87,98],[-38,42],[-45,36],[-49,24],[-49,10],[-100,41],[-187,140],[-226,165],[-162,160],[-58,70],[-27,48],[-17,43],[-22,50],[-17,47],[-21,53],[-19,59],[-8,33],[-19,68],[-34,80],[-46,87],[-96,150],[-63,91],[-221,275],[-53,65],[-5,6],[-39,41],[-22,23],[-45,43],[-20,11],[-25,11],[-28,-3],[-33,-2],[-54,10],[-14,7],[-6,16],[-8,8],[-13,2],[-42,5],[23,58],[42,63],[68,80],[62,65],[64,55],[82,82],[67,41],[95,110],[6,11],[44,73],[9,69],[1,56],[2,117],[0,12],[4,81],[31,88],[16,45],[-3,100],[25,50],[53,67],[33,39],[54,64],[3,3],[12,14],[36,42],[16,18],[28,49],[21,37],[9,28],[19,62],[1,10],[2,77],[-11,70],[-8,35],[-19,85],[13,153],[5,83],[4,83],[0,1],[2,51],[-2,35],[-39,96],[-36,187],[-3,34],[-4,34],[-12,40],[-9,45],[-16,38],[-6,8],[-7,8],[-13,16],[-13,16],[-13,16],[-55,55],[-45,55],[-41,51],[-49,117],[-23,37],[-24,38],[-6,16],[-28,74],[-51,144],[-40,70],[-10,22],[-10,21],[-21,42],[-43,99],[-21,64],[-11,34],[-48,158],[-17,135],[42,106],[71,90],[55,114],[51,59],[61,97],[53,47],[34,-4],[37,34],[16,41],[6,65],[33,37],[69,150],[106,126],[77,20],[44,77],[51,-17],[29,97],[33,43],[46,3],[84,-6],[68,60],[84,16],[71,30],[77,4],[66,23],[29,20],[29,20],[48,33],[25,27],[24,26],[59,60],[39,84],[41,16],[42,-23],[33,23],[22,114],[29,139],[35,130],[17,70],[16,70],[-17,63],[-69,80],[-50,62],[-9,12],[-80,46],[-64,20],[-51,17],[-24,46],[7,117],[-3,163],[-7,63],[-8,64],[-17,47],[-16,48],[-17,47],[-16,48],[-20,53],[6,60],[34,93],[11,21],[53,99],[61,106],[78,54],[2,80],[13,90],[73,23],[20,38],[10,19],[10,19],[129,403],[192,596],[312,967],[370,1148],[1627,5052],[1935,6008],[-5399,10338],[-703,7112]],[[58161,379321],[102,84],[101,85],[73,171],[-16,266],[-31,330],[-63,688],[75,481],[63,128],[63,128],[266,352],[187,158],[156,145],[137,97],[105,104],[202,145],[202,155],[240,123],[68,50],[46,14],[64,20],[43,59],[16,51],[53,11],[112,100],[57,-17],[80,9],[42,22],[34,69],[-11,138],[6,86],[83,200],[20,97],[35,79],[52,28],[66,24],[58,73],[70,118],[26,92],[39,60],[41,58],[41,38],[39,69],[37,76],[59,79],[57,34],[62,-20],[64,-18],[88,33],[68,54],[16,55],[7,47],[0,44],[15,50],[13,4],[42,16],[42,3],[26,34],[23,68],[10,95],[45,5],[8,46],[15,14],[15,-12],[19,57],[12,78],[2,76],[-28,107],[-19,110],[1,80],[-3,62],[-13,52],[-12,34],[14,41],[39,60],[12,25],[20,9],[100,167],[10,40],[3,22],[-12,43],[46,104],[18,110],[22,50],[57,183],[48,152],[94,218],[41,152],[73,186],[69,76],[78,83],[41,131],[55,131],[73,124],[41,204],[81,362],[33,129],[-18,77],[-37,101],[-65,129],[-82,89],[-91,59],[-53,21],[-29,59],[-32,79],[-15,71],[11,74],[69,187],[10,56],[35,6],[10,61],[28,31],[27,64],[28,28],[20,-1],[19,-2],[67,9],[96,-12],[82,-22],[108,-44],[37,18],[32,14],[24,52],[6,50],[-6,58],[13,63],[34,29],[71,-6],[65,2],[33,23],[41,70],[39,3],[75,-47],[39,23],[79,135],[61,12],[47,22],[57,0],[47,30],[37,53],[53,43],[55,0],[77,17],[159,53],[41,40],[73,65],[39,12],[61,19],[55,6],[38,34],[61,21],[43,34],[29,138],[38,68],[38,66],[22,38],[48,19],[53,3],[62,9],[24,31],[33,70],[34,111],[14,104],[0,83],[17,142],[49,86],[73,18],[118,25],[106,0],[106,-43],[77,-49],[37,18],[22,40],[-4,67],[39,237],[106,234],[86,68],[40,116],[106,92],[124,6],[25,-9],[24,-17],[33,0],[43,8],[31,15],[20,25],[13,28],[31,3],[53,-5],[113,-17],[34,22],[22,44],[0,37],[-6,51],[-13,66],[-12,66],[-11,69],[-7,29],[7,36],[-4,26],[-22,27],[-10,33],[7,56],[9,28],[19,20],[10,29],[5,48],[14,41],[31,70],[25,49],[6,41],[4,51],[12,41],[15,89],[26,60],[9,42],[18,117],[6,93],[47,176],[-3,30],[-15,48],[-11,81],[-11,36],[-23,37],[-32,102],[-23,91],[-17,52],[-17,40],[-25,46],[-32,37],[-12,51],[4,37],[10,19],[16,13],[35,16],[10,39],[14,11],[20,11],[6,20],[17,80],[8,55],[0,42],[-10,55],[0,60],[9,72],[4,58],[28,99],[23,44],[5,39],[-8,55],[-9,94],[-8,87],[-4,123],[-2,74],[1,28],[2,33],[15,54],[11,79],[17,39],[6,45],[17,23],[17,28],[2,15],[21,28],[16,37],[-10,73],[15,51],[25,80],[23,51],[17,15],[20,6],[67,17],[50,3],[43,5],[42,-28],[45,-38],[23,-17],[29,-9],[22,9],[19,29],[24,18],[20,-7],[30,-9],[19,26],[16,32],[4,116],[9,48],[21,65],[-3,62],[-22,78],[-12,94],[36,84],[39,37],[52,11],[30,33],[75,147],[62,100],[68,62],[58,17],[44,53],[43,100],[28,72],[5,39],[26,48],[75,32],[107,30],[95,43],[10,54],[122,21],[44,76],[75,54],[106,13],[123,-30],[93,-51],[90,-28],[90,-28],[77,-28],[86,-32],[13,-8],[71,-43],[76,-45],[89,-46],[65,-19],[43,8],[14,32],[9,68],[-6,97],[9,105],[22,102],[48,105],[36,69],[13,21],[30,47],[49,66],[37,32],[37,30],[30,55],[34,55],[54,95],[62,91],[86,115],[27,34],[16,49],[13,82],[12,120],[12,35],[16,20],[15,20],[19,6],[18,6],[47,-11],[33,-2],[32,-2],[50,-8],[46,-24],[33,-29],[32,-28],[36,-23],[39,-3],[55,30],[47,57],[43,32],[20,56],[-2,63],[-11,81],[4,65],[28,33],[60,71],[87,86],[107,95],[58,25],[76,12],[49,-3],[28,-7],[45,-23],[71,15],[56,11],[39,-17],[25,30],[15,43],[60,25],[69,34],[57,20],[52,1],[67,-9],[76,-3],[53,2],[44,0],[23,26],[23,-5],[45,-100],[6,-23],[21,-3],[34,-11],[26,-15],[40,-58],[32,-59],[45,-41],[32,-28],[45,-24],[39,-16],[39,12],[52,10],[48,49],[57,80],[39,70],[34,79],[20,38],[24,56],[18,43],[65,15],[52,48],[32,-2],[27,-9],[42,15],[30,34],[50,0],[26,-19],[52,-35],[12,-5],[96,-36],[47,-6],[61,-19],[65,-28],[77,-12],[31,8],[33,27],[29,34],[21,46],[9,48],[5,77],[7,95],[7,66],[21,46],[30,39],[48,53],[9,37],[8,34],[19,22],[24,7],[33,-8],[35,-1],[35,0],[30,-17],[106,-15],[49,-9],[56,9],[29,12],[36,32],[25,59],[12,63],[21,97],[13,30],[20,22],[14,11],[14,12],[42,11],[36,7],[50,-30],[60,-31],[113,-56],[64,-27],[57,-2],[64,25],[86,54],[61,61],[24,23],[25,12],[24,11],[78,43],[51,42],[54,78],[27,45],[18,26],[37,19],[28,-2],[26,-31],[29,-9],[43,6],[47,3],[59,8],[32,16],[41,33],[35,46],[98,167],[59,129],[21,42],[10,29],[14,46],[35,62],[34,46],[31,30],[165,165],[72,40],[93,69],[61,55],[17,8],[27,11],[39,9],[34,8],[60,9],[49,-10],[38,-10],[85,-17],[93,-5],[116,5],[21,-17],[16,-20],[23,-129],[-3,-28],[-4,-49],[-22,-92],[-29,-83],[-45,-112],[-83,-137],[-6,-9],[-103,-191],[-4,-8],[-84,-198],[-29,-169],[11,-30],[10,-31],[38,-65],[60,-24],[40,-65],[98,-45],[118,-142],[106,-105],[56,-72],[56,-72],[45,-104],[57,-176],[12,-55],[63,-9],[49,15],[88,88],[57,60],[132,144],[74,59],[93,55],[84,80],[73,80],[102,138],[51,80],[37,24],[48,-6],[31,-190],[24,-127],[33,-61],[51,-163],[4,-752],[-12,-295],[37,-90],[38,-46],[49,19],[71,52],[37,3],[71,22],[72,76],[55,31],[46,12],[60,71],[34,77],[49,9],[137,105],[47,38],[58,20],[33,43],[63,52],[57,13],[98,24],[130,-55],[104,-80],[84,-80],[11,-6],[13,9],[3,31],[26,86],[22,123],[62,128],[79,96],[154,136],[96,45],[175,74],[151,37],[41,8],[40,7],[66,13],[53,18],[30,49],[19,71],[-33,77],[-41,86],[23,163],[38,21],[88,-9],[41,-22],[87,-61],[43,15],[41,-33],[13,-52],[15,-62],[112,-132],[161,-218],[51,-86],[43,-203],[-11,-22],[-24,25],[-42,-34],[-74,-49],[-22,-22],[-37,-86],[-51,-64],[-26,-160],[24,-74],[33,-58],[8,-2],[49,-10],[57,-16],[53,-15],[41,-28],[67,-86],[49,-52],[34,-31],[53,40],[46,94],[17,69],[7,77],[12,71],[32,49],[45,-35],[102,-5],[119,-93],[77,-27],[118,-13],[66,-3],[114,-685],[-30,-81],[-16,-52],[-9,-42],[-17,-34],[-28,-30],[-9,-45],[-23,-137],[10,-32],[118,-218],[73,-157],[34,-59],[35,-59],[82,-129],[160,-218],[53,-83],[22,-13],[21,-6],[19,11],[25,41],[19,90],[-3,69],[-5,77],[-26,127],[-5,78],[5,62],[10,55],[21,25],[22,20],[25,14],[46,6],[29,9],[25,32],[29,19],[28,20],[94,84],[46,26],[16,5],[31,9],[77,17],[90,-5],[68,28],[98,72],[74,59],[55,35],[110,64],[33,13],[49,4],[31,-9],[48,-46],[63,-48],[90,-59],[58,-40],[23,-30],[26,-10],[22,23],[29,45],[45,69],[39,77],[22,82],[4,89],[64,223],[21,43],[26,46],[17,20],[20,11],[21,11],[32,7],[33,-1],[39,-22],[42,-32],[16,-13],[16,-13],[19,-44],[25,-400],[23,-82],[28,-56],[32,-36],[25,-14],[35,-4],[58,37],[19,18],[16,37],[13,12],[28,2],[15,8],[6,11],[0,30],[19,11],[31,31],[20,28],[6,28],[5,8],[9,2],[16,0],[24,39],[6,28],[5,11],[12,6],[13,6],[14,7],[54,55],[33,32],[31,43],[66,116],[51,121],[53,117],[63,166],[6,43],[3,95],[29,36],[19,52],[24,23],[35,3],[34,-16],[31,-30],[42,-63],[39,-30],[52,-47],[64,-63],[40,-43],[43,-40],[57,-51],[46,-29],[33,-9],[39,5],[18,-3],[28,-8],[36,1],[24,25],[13,49],[1,52],[-6,51],[-15,22],[-32,36],[-20,74],[-9,52],[-5,30],[-18,15],[-12,46],[-5,48],[-26,78],[-54,98],[-49,119],[-13,83],[-7,40],[5,26],[16,-1],[19,13],[6,52],[23,74],[50,121],[24,43],[23,14],[47,57],[30,98],[63,90],[41,63],[24,36],[18,8],[38,-10],[20,4],[7,26],[14,15],[91,43],[647,176],[33,12],[18,-8],[20,-13],[16,-25],[2,-143],[-20,-56],[-25,-62],[-24,-32],[-17,-13],[-31,-61],[-21,-45],[-2,-59],[17,-27],[52,-103],[15,-23],[18,6],[25,-2],[91,-32],[44,-27],[24,-28],[-10,-205],[-10,-33],[-21,-24],[-20,-19],[-9,-23],[-18,-112],[-12,-47],[-26,-58],[-5,-64],[11,-31],[23,-15],[43,-19],[64,-6],[62,-5],[53,-5],[30,-1],[7,-19],[12,-43],[9,-19],[13,-14],[63,-25],[29,-20],[33,-46],[53,-52],[42,-48],[24,-31],[13,-78],[-14,-21],[-34,-28],[-31,-40],[-10,-22],[-14,-49],[-32,-110],[-103,-651],[-15,-24],[-17,-20],[-22,-14],[-17,-7],[-7,-47],[-12,-30],[-27,-39],[-27,-28],[-58,-54],[-157,-117],[-33,-12],[-22,-29],[-2,-62],[8,-29],[27,-16],[30,-24],[28,-19],[19,33],[27,14],[37,2],[28,4],[28,-19],[38,0],[55,-28],[72,-19],[49,-23],[50,1],[18,0]],[[343897,274394],[43,-12],[589,-167]],[[344529,274215],[195,-81],[74,-85],[-44,-101],[-37,-98],[-147,-194],[-18,-24],[-85,-84],[-57,-56],[-154,-190],[-166,-257],[-223,-450],[-73,-194],[-73,-125],[-86,-123],[-69,-83],[-84,-53],[-80,-21],[-93,-110],[-139,-120],[-26,-41],[-26,-47],[-34,-157],[-6,-100],[-12,-110],[-27,-120],[-73,-257],[-54,-154],[-73,-98],[-34,-130],[-151,-1050],[-17,-157],[-40,-197],[-22,-156],[-75,-133]],[[342500,268859],[-150,-259],[-4,-7]],[[342346,268593],[-13,-12],[-47,-44]],[[342286,268537],[-110,-10],[-233,228],[-59,-15],[-54,-23],[-25,-62],[-60,-95],[-63,-76],[-66,-52],[-40,-12],[-35,-64],[-69,-76],[-69,-85],[-51,-45],[-125,-192],[-51,-33]],[[341176,267925],[-16,3],[-53,11]],[[341107,267939],[-135,157],[-120,80],[-55,12],[-50,-47],[-43,-78],[-44,-95],[-39,-112],[-71,-107],[-52,-50],[-47,-75],[-104,-78],[-44,-25],[-27,-125],[-55,-194],[-80,-269],[-49,-121],[-58,-103],[-47,-58],[-86,3],[-120,-24],[-66,-38],[-63,-49],[-63,-70],[-25,-95],[9,-112],[33,-91],[46,-108],[22,-83],[-13,-95],[-9,-79],[-60,-62],[-71,4],[-56,10],[-31,-28],[-30,-35],[-15,-59],[6,-75],[-16,-69],[-26,-46],[-48,-41],[-45,-1],[-33,14],[-65,77],[-45,15],[-35,-3],[-41,-26],[-38,-44],[-26,-57],[-5,-73],[9,-53],[11,-36],[65,-122],[12,-33],[18,-64],[11,-68],[-5,-87]],[[339093,264848],[11,-53],[97,-82],[55,-45],[31,-32],[23,-43],[24,-43],[9,-94],[11,-113],[-20,-134],[-6,-61],[-2,-15],[7,-87],[60,-183],[86,-170],[23,-90],[3,-102],[-9,-126],[-22,-168],[-22,-133],[-10,-121],[-17,-341],[-2,-111],[-13,-49],[-27,-56],[-83,-83],[-95,-75],[-44,-85],[-11,-45],[-3,-172],[16,-145],[24,-166],[6,-106],[-12,-107],[-5,-42],[-24,-78],[-29,-83],[-5,-82],[51,-179],[34,-158],[-37,-27],[-69,-21],[-387,-212],[-83,-28],[-37,-30],[-230,-134],[-137,-67],[-39,1],[-76,34],[-24,21],[-42,37],[-37,11],[-137,59],[-390,172],[-130,61],[-39,18],[-104,40],[-46,6],[-39,-2],[-59,-27],[-60,-37],[-41,-36],[-118,-98],[-138,-83],[-66,-48],[-70,-12],[-44,26],[-44,46],[-33,24],[-41,39],[-36,22],[-55,-5],[-146,-50],[-82,-21],[-44,8],[-41,25],[-102,63],[-92,51],[-55,10],[-100,-22],[-233,-46],[-52,-7],[-7,-1],[-72,49],[-198,197],[-15,13],[-53,-1],[-142,-78],[-67,-51],[-138,-73],[-34,-17],[-27,-28],[-169,-201],[-86,-100],[-202,-233],[-125,-165],[-54,-64],[-22,-26],[-22,-9],[-22,-8],[-23,-8],[-22,-8],[-93,25],[-116,29],[-79,17],[-90,-4],[-56,-5],[-27,-2],[-78,-10],[-99,-7],[-338,-17],[-164,-14],[-93,8],[-86,-7],[-80,-15],[-57,-12],[-101,-22],[-112,-21],[-120,-47],[0,-1],[-82,-32],[-118,-72],[-56,-41],[-81,-44],[-121,-52],[-69,-28],[-27,28],[-12,11],[-24,25],[-1,2],[-33,32],[-2,3],[-80,81],[-863,854],[-340,340],[-644,644],[-486,486],[-251,291],[-95,-151],[-599,-945],[-34,-52],[-417,-656],[-397,-625],[-120,-202],[-75,-73],[-72,-36],[-99,-3],[-256,52],[-22,5],[-489,72],[-376,38],[-134,16],[-89,-21],[-53,-35],[-14,-10],[-43,-78],[-22,-56],[-14,-94],[-3,-126],[-35,-149],[-26,-132],[-44,-220],[-165,-833],[-66,-343],[-19,-110],[-33,-98],[-41,-77],[-36,-48],[-133,-72],[-85,-37],[-51,-11],[-12,-6],[-32,-16],[-80,-110],[-69,-119],[-211,-365],[-241,-425],[-148,-292],[-25,-50],[-37,-29],[-229,-414],[-57,-116],[-51,-106],[-36,-98],[-32,-97],[-4,-114],[-2,-346],[0,-57],[0,-27],[-11,-492],[-11,-192],[-13,-136],[-24,-97],[-37,-69],[-94,-85],[-31,-61],[-36,-60],[-31,-78],[-40,-44],[-49,-92],[-46,-73],[-90,-114],[-103,-196],[-51,-62],[-109,-139],[-81,-167],[-53,-35],[-63,-89],[-46,-107],[-89,-130],[-64,-113],[-74,-114],[-107,-161],[-535,-826],[-59,-89],[-566,-866],[-76,-106],[-70,-159],[-54,-154],[-22,-153],[-11,-223],[16,-212],[53,-243],[85,-276],[-1286,417],[-1332,433]],[[318156,248902],[26,120],[73,122],[127,405],[108,192],[24,44],[44,87],[78,156],[0,213],[-29,280],[-147,413],[-164,375],[-23,59],[-15,40],[-193,498],[-20,339],[-63,339],[-113,243],[-131,237],[-98,129],[-158,155],[-94,164],[-94,207],[-106,167],[-174,419],[-79,187],[-13,88],[-30,197],[-58,466],[-44,390],[-112,440],[-60,360],[14,189],[-29,193],[-37,184],[-84,147],[49,105],[10,146],[-29,284],[-132,214],[15,279],[82,316],[-8,214],[-24,176],[-65,149],[-45,103],[-57,133],[-27,63],[-134,321],[-5,13],[-136,301],[-129,117],[-75,138],[-36,174],[24,228],[29,243],[-117,309],[-127,214],[-130,259],[-36,193],[-64,179],[-76,110],[-2,8],[-31,179],[0,2],[-12,27],[-1,1],[-50,113],[-21,49],[-14,35],[-17,43],[-25,64],[-44,113],[-4,11],[-6,17],[-73,208],[-3,11],[-97,355],[-50,247],[-102,227],[-1,6],[-16,215],[-9,151],[30,97],[4,14],[3,7],[0,2],[46,106],[162,221],[100,85],[100,85],[218,239],[97,298],[10,30],[68,210],[104,304],[38,76],[102,198],[76,243],[35,131],[-8,161],[-25,145],[3,149],[24,67],[25,66],[80,108],[74,54],[88,178],[60,157],[38,93],[55,79],[124,61],[50,-8],[110,-18],[116,-3],[187,-17],[225,-41],[153,-5],[409,9],[263,62],[280,63],[321,115],[289,226],[49,124],[39,97],[58,147],[63,192],[-11,60],[-33,179],[-16,234],[66,184]],[[319010,269473],[162,313],[1,1],[35,68],[4,7],[1,2]],[[319213,269864],[14,27]],[[319227,269891],[18,37],[36,72]],[[319281,270000],[16,31],[2,5],[118,239],[139,802],[-14,415],[-35,162],[-28,129],[-81,469],[-5,30],[-155,435],[-6,15],[-123,306],[-14,30],[-274,580],[-239,512],[-210,313],[-180,268],[-211,347],[-15,25],[-227,364],[-35,57],[-148,143],[-162,-32],[-100,-22],[-86,-16],[-229,-163],[-238,-200],[-79,-52],[-79,-51],[-43,-1],[-127,-2],[-280,-69],[-10,-3],[-340,-217],[-230,-120],[-125,-31],[-125,-32],[-3,-1],[-185,-82],[-208,-231],[-216,-382],[-156,-336],[-74,-244],[-62,-177],[-27,-76],[-156,-207],[-20,-25],[-222,-233],[-285,-183],[-320,-169],[-229,-96],[-5,-2],[-3,-1],[-274,-135],[-108,-31],[-25,2],[-60,5],[-9,6],[-127,79],[-135,175],[-122,227],[-69,203],[-31,142],[0,6],[2,115],[-24,109],[-84,61],[-164,14],[-95,-67],[-72,-3],[-58,43],[-20,15],[-102,146],[-1,1],[-111,152],[-114,94],[-173,143],[-117,91],[-71,17],[-82,-3],[-116,-30],[-165,-34],[-83,4],[-87,61],[-73,82],[-66,157],[-1,5],[-28,123],[-22,149],[-8,18],[-66,138],[-65,112],[-137,254]],[[309969,274867],[31,128],[38,922],[1,18],[5,170],[13,240],[5,140],[37,154],[116,480],[31,192],[32,171],[16,278],[14,241],[0,45],[0,107],[-1,137],[20,222],[15,166],[35,243],[17,117],[15,96],[-14,121],[23,94],[25,99],[46,283],[81,306],[24,153],[21,224],[9,297],[36,108],[50,72],[21,161],[-7,147],[-20,46],[-19,46],[-10,84],[18,63],[24,74],[-10,124],[-11,125],[-43,171],[-32,203],[-35,265],[-25,79],[12,104],[29,111],[37,121],[32,77],[34,119],[72,167],[22,50],[115,266],[129,243],[22,91],[-18,76],[-12,90],[-2,87],[27,107],[42,127],[44,107],[37,101],[59,86],[63,76],[66,92],[60,100],[32,80],[98,172],[-20,76],[-21,78],[-33,63],[-35,59],[-26,55],[-35,4],[-19,42],[-20,82],[-6,92],[15,223],[15,82],[13,108],[24,141],[28,135],[42,121],[69,113],[94,141],[291,365],[73,149],[437,480],[134,164],[141,-251]],[[312722,287651],[1520,-1402],[3028,-2792],[330,-304],[4129,-3807],[52,-49],[445,-410]],[[322226,278887],[126,270],[60,85],[55,89],[36,88],[68,129],[50,43],[24,76],[583,1123],[82,135],[98,105],[198,108],[211,75],[398,176],[61,4],[44,14],[47,32],[15,32],[95,53],[160,36],[71,26],[325,164],[90,18],[97,86],[87,40],[58,134],[45,76],[56,26],[98,105],[20,70],[39,13],[213,321],[143,138],[3,55],[59,18],[18,20],[9,77],[54,-15],[56,23],[4,123],[23,29],[37,14],[24,32],[705,915],[157,165],[570,751],[122,142],[86,150],[123,91],[42,98],[59,53],[251,285],[63,86],[35,106],[44,0],[46,18],[19,31],[-3,34],[33,46],[430,523],[21,63],[68,35],[41,101],[128,86],[12,65],[81,56],[138,222],[56,15],[41,67],[38,48],[57,12],[11,34],[51,14],[63,-2],[17,44],[29,7],[22,-29],[25,-39],[28,-3],[33,48],[24,42],[40,16],[9,-9],[19,-18],[36,-2],[31,25],[28,3],[42,-19],[35,-21],[39,1],[34,1]],[[330345,287510],[32,9]],[[330377,287519],[48,-2],[74,15],[31,-20],[41,1],[32,12],[28,-2],[56,27],[37,-21],[43,-9],[75,22],[77,-12],[140,40],[93,42],[80,18],[93,47]],[[331325,287677],[22,48]],[[331347,287725],[323,198],[3,1],[4,1],[15,3],[18,5],[23,18],[25,23],[51,3],[68,76],[101,36],[22,29],[9,9],[47,49],[54,21],[61,11],[130,89],[155,66],[134,86],[57,29],[43,23],[15,12],[108,91],[45,38],[203,111],[70,38],[86,47],[6,4],[44,33],[66,50],[54,-9],[53,20],[59,50],[47,81],[69,74],[39,135],[34,61],[83,218],[26,28],[33,8],[161,134],[166,186],[25,-6],[32,54],[50,7],[67,80],[45,64],[58,18],[33,64],[55,5],[36,43],[37,43],[11,63],[6,29],[20,12],[40,13],[31,58],[46,8],[45,58],[54,14],[158,180],[70,30],[56,82],[63,9],[64,54],[46,77],[50,12],[73,99],[148,132],[77,86],[41,36],[-2,95],[18,63],[59,10],[64,-15],[38,-8],[8,-117],[-8,-173],[-8,-1040],[-1,-144],[0,-23],[-4,-547],[-3,-566],[-3,-958],[4,-311],[1,-36],[3,-53],[16,-237],[3,-40],[123,-445],[25,-87],[112,-404],[21,-118],[-2,-94],[-24,-93],[-59,-90],[-142,-82],[-205,-56],[-121,-30],[-117,-79],[-188,-163],[-192,-223],[-78,-163],[-23,-153],[0,-187],[31,-269],[5,-94],[-49,-550],[-13,-100],[-24,-97],[-138,-270],[-39,-85],[-32,-94],[-11,-88],[18,-115],[45,-99],[84,-186],[28,-78],[11,-65],[8,-214],[28,-114],[33,-43],[32,-44],[40,-70],[16,-26],[6,-12],[95,-85],[104,-61],[123,22],[250,35],[398,11],[115,-19],[830,-814],[772,106],[170,8],[218,-54],[218,-54],[134,-97],[134,-160],[102,-157],[14,-522],[10,-76],[166,-256],[97,-259],[870,-1996],[180,-399],[56,-167],[0,-127],[-11,-106],[-28,-88],[-30,-84],[-187,-300],[-52,-162],[-43,-262],[-9,-85],[-6,-58],[11,-54],[16,-63],[21,-60],[46,-63],[54,-60],[72,-56],[167,-64],[346,-133],[291,-169],[161,-105],[56,-60],[46,-77],[62,-154],[126,-298],[93,-272],[33,-125],[25,-113],[19,-69],[19,-63],[45,-44],[44,-15],[50,-10],[87,25],[423,255],[726,269],[216,153],[100,102],[105,52],[85,26],[56,8],[150,-30],[368,-128]],[[711386,776807],[-120,181],[-44,104],[-44,109],[-65,177],[-95,143],[-120,176],[-102,143],[-139,155],[-132,151],[-158,282],[-78,189],[-66,160],[-92,223],[-74,105],[-114,163],[-70,101],[-134,85],[-185,66],[-348,-76],[-349,-76],[-172,-37],[-524,-115],[-335,-73],[-167,-36],[-167,-36],[-117,-109],[-164,62],[-230,173],[-222,235],[-95,64],[-95,65],[-91,70],[-145,110],[-75,16],[-196,42],[-91,63],[-90,63],[-90,63],[-88,89],[-79,82],[-84,85],[-49,82],[-159,195],[-146,211],[-146,211],[-65,95],[-134,196],[-95,169],[-95,170],[-220,381],[-60,228],[-90,342],[-90,343],[-69,423],[-70,424],[-32,445],[-99,384],[-180,111],[-141,1],[-167,2],[-331,21],[-283,17],[-17,58],[34,225],[148,1183],[17,151],[-2,50],[-11,50],[-21,33],[-32,32],[-218,133],[-228,135],[-229,122],[-491,260],[-186,130],[-39,148],[126,294],[96,186],[64,226],[29,241],[49,253],[22,298],[84,360],[72,278],[42,156],[24,141],[-44,138],[-61,156],[-86,218],[-94,242],[-57,145],[-108,182],[-65,45],[-91,63],[-98,-30],[-99,-29],[-96,-90],[-96,-89],[-109,-121],[-109,-120],[-129,-141],[-133,-104],[-253,-197],[-101,-78],[-133,-97],[-138,-156],[-118,-44],[-143,15],[-123,148],[-59,89],[-72,63],[-123,90],[-145,-78],[-67,26],[-71,81],[-64,56],[-64,33],[-79,38],[-103,52],[-158,137],[-29,119],[29,215],[47,242],[47,107],[25,200],[-25,190],[-40,67],[-103,71],[-227,30],[-236,-23],[-187,-59],[-148,-67],[-172,-74],[-158,-60],[-192,-141],[-236,-200],[-210,-278],[-125,-206],[-64,-107],[-64,-197],[-25,-104],[-54,-96],[-69,-97],[-133,-141],[-130,-164],[-239,-118],[-227,-113],[-347,-107],[-305,-215],[-160,-78],[-136,-11],[-120,15],[-104,-15],[-120,-67],[-123,-197],[19,-223],[47,-197],[69,-245],[69,-271],[2,-264],[-21,-195],[-56,-151],[-156,-85],[-195,-59],[-202,-119],[-204,-100],[-91,-45],[-95,45],[-95,253],[-78,172],[-80,221],[-49,197],[-101,104],[-93,71],[-121,133],[-126,149],[-115,33],[-148,-22],[-209,-26],[-161,56],[-209,145],[-202,104],[-201,85],[-237,71],[-143,40],[-147,30],[-138,8],[-133,-82],[-94,-112],[-82,-101],[-206,-311],[-179,-76],[-170,35],[-222,190],[-64,163],[-74,115],[-88,90],[-116,71],[-111,44],[-118,-4],[-232,-37],[-189,-41],[-217,-74],[-207,-93],[-194,-128],[-165,-108],[-170,-136],[-168,-37],[-104,42],[-136,55],[-178,126],[-327,215],[-148,106],[-138,39],[-89,15],[-103,-63],[-133,-130],[-153,-71],[-177,-40],[-128,3],[-190,-7],[-140,-63],[-121,-130],[-106,-145],[-103,-93],[-116,-67],[-101,-26],[-133,50],[-101,39],[-96,-11],[-93,-67],[-25,-59],[-7,-48],[82,-119],[58,-115],[-43,-233],[-100,-343],[-107,-343],[-167,-455],[-94,-161],[-161,-131],[-140,-182],[-596,-1387],[-126,-294],[-123,-134],[-99,-44],[-131,0],[-142,81],[-81,15],[-62,-81],[-101,-134],[-184,-212],[-212,-178],[-172,-152],[-180,-153],[-93,-52],[-92,-52],[-137,-32],[-166,-62],[-112,-89],[-134,-114],[-132,-91],[-131,-78],[-125,-114],[-97,-53],[-129,-90],[-108,-74],[-117,-73],[-170,-19],[-83,-48],[-71,-69],[-69,-52],[-100,-74],[-158,-164],[-103,-54],[-153,-80],[-118,-59],[-119,-60],[-67,-64],[-76,-70],[-110,-48],[-114,-96],[-59,-125],[-66,-106],[-73,-129],[-83,-180],[-46,-184],[-1,-176],[-15,-173],[-11,-170],[-43,-162],[-45,-114],[-84,-68]],[[678000,779482],[-307,449],[-217,458],[-128,284],[-90,270],[-92,338],[-86,395],[-74,390],[-45,227],[-140,742],[-45,77],[-96,77],[-520,212],[-80,72],[-61,121],[-61,168],[-76,111],[-74,92],[-102,43],[-217,92],[-310,132],[-157,89],[-65,46],[-75,60],[-82,80],[-44,84],[-34,135],[-8,296],[-5,253],[-16,318],[-124,588],[-64,347],[6,299],[41,269],[68,88],[122,71],[122,71],[174,98],[61,34],[83,130],[58,116],[110,234],[33,161],[111,944],[48,213],[102,212],[179,154],[180,120],[110,66],[214,64],[122,135],[102,251],[89,308],[71,280],[38,472],[-13,732],[-19,463],[-83,414],[-42,174],[-35,193],[23,159],[28,178],[109,207],[64,179],[10,187],[-32,261],[-48,323],[-71,269],[-12,62],[9,68],[13,49],[169,457],[64,184],[102,308],[71,313],[48,463],[6,197],[-16,232],[-32,197],[-41,246],[-68,275],[-79,414],[-42,299],[-13,433],[3,531],[29,665],[10,274],[19,154],[38,159],[71,212],[79,155],[141,139],[163,135],[176,179],[82,256],[96,370],[147,386],[128,240],[22,35],[93,149],[141,231],[274,366],[352,414],[275,357],[191,161],[179,22],[192,-29],[236,-77],[243,-96],[504,-97],[186,20],[83,38],[140,126],[211,308],[199,308],[133,318],[52,386],[35,409],[86,391],[98,208],[401,531],[696,1236],[1201,1909],[169,144],[195,183],[313,174],[379,155],[338,254],[247,173],[77,54],[710,877],[127,241],[7,230],[-13,290],[-115,376],[-195,294],[-214,477],[-262,742],[-364,1089],[-122,530],[-73,339],[44,380],[87,255],[217,202],[217,77],[176,122],[86,119],[39,280],[121,221],[153,154],[173,174],[185,250],[128,328],[115,424],[25,366],[-89,270],[-217,463],[-185,376],[-71,144],[-64,97],[-103,286],[-76,350],[0,385],[-63,232],[-109,86],[-153,97],[-154,38],[-166,29],[-172,10],[-173,-97],[-57,-115],[-102,-155],[-73,-354],[-62,-224],[-147,-186],[-191,-55],[-246,72],[-137,83],[-307,530],[-530,973],[-54,176],[-10,36],[-64,270],[18,261],[53,306],[95,281],[128,270],[115,221],[79,150],[36,202],[-10,169],[-41,130],[-109,207],[-121,193],[-77,101],[-109,68],[-64,48],[-61,139],[13,193],[10,236],[23,98],[73,83],[29,84],[48,145],[28,125],[42,241],[13,178],[63,516],[48,414],[39,208],[50,176],[48,88],[97,131],[63,53],[71,-19],[83,-15],[60,34],[96,120],[64,65],[64,65],[86,3],[87,2],[124,34],[128,111],[192,178],[169,183],[169,212],[77,106],[57,145],[23,125],[-7,116],[-64,202],[-785,1345],[-268,685],[-115,368],[-83,230],[-84,230],[-134,173],[-166,145],[-281,183],[-128,183],[-64,202],[-45,323],[0,388],[7,388],[-32,120],[-70,164],[-71,97],[-54,24],[-99,-38],[-157,-25],[-115,58],[-134,149],[-64,188],[-51,217],[-95,708],[-68,699],[-83,390],[-191,617],[-42,306],[66,304],[161,364],[788,881],[133,104],[183,37],[365,173],[170,156],[163,171],[63,241],[-4,357],[-16,679],[-16,362],[-2,197],[24,150],[35,86],[61,82],[140,135],[186,154],[212,156],[206,196],[224,188],[401,350],[107,151],[32,169],[-10,217],[-41,196],[-63,257],[-57,156],[-72,138],[-75,142],[-39,130],[-14,120]],[[811997,370548],[178,-230],[77,-270],[188,-245],[64,-136],[63,-135],[82,-320],[168,-188],[68,-157],[-62,-181],[48,-171],[-133,-180],[-314,-176],[-114,-208],[-222,-37],[-217,-115],[-181,-9],[65,-425],[264,-572],[157,-272],[-2,-198],[91,-321],[154,-151],[146,-454],[-2,-142],[-408,-427],[-263,-120],[-291,92],[-83,178],[-17,226],[-220,105],[-171,5],[-222,-51],[-179,145],[-218,273],[-199,161],[-187,357],[-169,505],[-138,287],[-18,120],[-19,120],[137,420],[44,324],[-113,609],[54,296],[174,-181],[140,-61],[222,66],[244,206],[240,643],[268,557],[59,260],[192,38],[211,-6],[234,192],[130,-46]],[[814904,372946],[52,-132],[-3,-190],[-122,-134],[-207,-93],[-13,-140],[51,-100],[123,-52],[-132,-211],[-21,-264],[-75,-361],[76,-286],[-236,-60],[-241,-2],[-102,-179],[-341,17],[-85,175],[-21,206],[-85,242],[-134,143],[-77,155],[124,87],[259,-30],[39,352],[-22,92],[-146,37],[-186,169],[-75,134],[-22,132],[37,131],[125,80],[431,-15],[219,85],[52,-34],[272,141],[168,17],[167,16],[151,-128]],[[814159,410181],[-1259,-1134],[-211,-223],[-120,-127],[-29,-30],[-71,-75],[-361,-524],[-2,-3],[-296,-318],[-465,-355],[-78,-77],[-154,-152],[-199,-300],[-101,-106],[-258,-275],[-145,-185],[-198,-234],[-198,-235],[-258,-311],[-142,-171],[-383,-461],[-169,-194],[-169,-121],[-114,-142],[-211,-260],[-180,-151],[-81,-68],[-277,-176],[-307,-330],[-32,-35],[-163,-346],[-105,-103],[-410,-630],[-140,-176],[-305,-485],[-287,-295],[-39,-40],[-71,-146],[-238,-323],[-73,-156],[-224,-274],[-117,-225],[-132,-152],[-209,-239],[-46,-53],[-203,-234],[-538,-800],[-684,-792],[-79,-160],[-148,-105],[-198,-312],[-347,-407],[-241,-283],[-126,-209],[-170,-166],[-219,-297],[-748,-714],[-98,-179],[-378,-497],[-1029,-799],[-797,-355],[-116,-89],[-91,-123],[-255,-178],[-106,-139],[-402,-160],[-465,-318],[-114,-78],[-120,-139],[-145,-69],[-139,-124],[-248,-99],[-245,-147],[-69,-80],[-67,-66],[-163,-231],[-533,-745],[-117,-153],[-127,-70],[-261,-308],[-559,-575],[-98,-185],[-322,-325],[-73,-84],[-114,-188],[-89,-147],[-101,-275],[-26,-40],[-95,-144],[-115,-341],[-34,-102],[-329,-522],[-32,-51],[-90,-231],[-171,-176],[-183,-348],[-120,-450],[-78,-122],[-21,-33],[-9,-28],[-91,-303],[-41,-558],[-106,-512],[-114,-985],[29,-1252],[-21,-357],[16,-7],[40,-18],[77,-35],[94,-123],[81,-156],[81,-156],[80,-41],[152,-77],[54,-56],[126,-131],[245,-256],[128,-19],[141,298],[92,123],[132,103],[129,-2],[112,-83],[106,-166],[85,-433],[6,-191],[-133,-339],[-44,-230],[-82,-152],[-249,-117],[-139,-301],[-94,-206],[-254,-775],[-41,-445],[41,-565],[99,-343],[66,-35],[289,673],[36,-27],[482,-356],[-142,-353],[-42,-176],[90,-193],[10,-79],[-108,-212],[-66,7],[-38,-262],[68,-205],[42,-73],[-38,-61],[4,-77],[30,-16],[8,-99],[-48,-55],[-51,36],[-30,99],[55,54],[-10,55],[-70,48],[29,83],[-31,201],[-126,35],[-291,36],[-251,-143],[-226,-160],[-515,-372],[-479,-416],[-300,-227],[-242,-177],[-73,-54],[-375,-294],[-287,-238],[-491,-370],[-318,-268],[-143,-144],[-305,-314],[-280,-256],[-218,-189],[-259,-206],[-114,-97],[-151,-119],[-100,-96],[-65,-64],[-293,-358],[-115,-176],[-43,-79],[-59,-142],[21,-88],[28,-40],[-9,-16],[-38,46],[-2,38],[-15,6],[-31,29],[-87,-61],[-117,-154],[-55,-128],[-21,-66],[33,-68],[24,-16],[-19,-65],[-44,-12],[43,-75],[-58,-101],[-72,87],[-88,-131],[-137,-167],[87,-217],[-36,-103],[-115,67],[-31,61],[-64,90],[-97,-49],[-104,-7],[-599,-492],[-110,-120],[-24,-26],[-157,-76],[-106,-117],[-153,-110],[-213,-248],[-98,-53],[-35,-19],[-271,-236],[-10,-11],[-307,-328],[-114,-85],[-132,-28],[-269,-214],[-156,-178],[-48,-40],[-321,-265],[-28,-32],[-84,-99],[-250,-185],[-670,-497],[-48,-22],[-79,-37],[-494,-448],[-627,-572]],[[781433,365318],[-104,269],[-145,377],[-120,409],[-206,355],[-77,251],[-430,572],[-226,217],[-312,158],[-149,125],[-292,135],[-166,36],[-259,3],[-180,2],[-382,-52],[-1123,4],[-549,-127],[-452,-303],[-452,-303],[-419,11],[-221,75],[-320,110],[-457,66],[-607,-9],[-574,-57],[-408,-112],[-130,9],[-66,14],[-70,-34],[-128,-89],[-66,2],[-87,44],[-96,63],[-70,43],[-92,63],[-60,8],[-65,-49],[-9,-55],[9,-92],[28,-136],[12,-104],[-9,-65],[-40,-79],[-37,-63],[-37,-95],[-32,-106],[-45,-163],[-78,-153],[-66,-76],[-33,11],[-31,30],[-18,49],[-38,54],[-41,28],[-24,-20],[-27,-100],[40,-256],[-2,-125],[-24,-55],[-57,-32],[-49,-85],[-18,-57],[11,-41],[25,-38],[56,-38],[62,-27],[27,-36],[5,-46],[-20,-54],[-63,-82],[-81,-87],[-135,-93],[-44,-5],[-103,33],[-148,50],[-55,4],[-46,-57],[1,-67],[5,-124],[-2,-95],[-40,-76],[-133,-101],[-23,-48],[-2,-42],[-2,-43],[-42,-41],[-19,-1],[-4,0],[-15,-1],[-13,0],[-14,-1],[-142,-7],[-1364,-185],[-256,-51],[-188,-39],[-52,-11],[-212,-14],[-55,7],[-149,20],[-111,27],[-54,13],[-197,45],[-721,183],[-359,74],[-170,36],[-55,14],[-312,79],[-219,45],[-235,220],[-113,175],[-130,290],[-167,358],[-160,175],[-181,86],[-113,0],[-329,20],[-349,-8],[-264,-8],[-311,20],[-502,367],[-445,387],[-281,228],[-223,221],[-15,15],[-354,550],[-378,607],[-302,497],[-184,220],[-348,130],[-370,142],[-270,123],[-121,118],[-122,220],[-86,191],[-135,322],[-257,513],[-167,354],[-73,167],[-59,167],[-134,84],[-128,67],[-260,126],[-210,114],[-289,151],[-281,151],[-200,106],[-275,138],[-505,257],[-278,126],[-219,126],[-297,184],[-305,150],[-113,-110],[-276,-101],[-1220,-408],[-586,-191],[-421,130],[-500,192],[-205,122],[-223,237],[-225,190],[-151,62],[-414,84],[-617,423],[-487,486],[-98,148],[-23,373],[29,219],[99,120],[37,229],[-15,380],[128,505],[103,166],[243,556],[204,800],[92,174],[113,346],[86,618],[20,722],[-42,145],[-41,146],[-19,66],[-110,87],[-327,43],[-431,-219],[-211,-201],[-196,-288],[-44,-400],[78,-1001],[-43,-200],[-488,-528],[-104,-332],[-37,-427],[16,-415],[155,-1426],[-2,-184],[-55,-164],[-241,-128],[-281,-100],[-857,-176],[-144,10],[-130,59],[-85,136],[-100,532],[-91,201],[-105,105],[-21,189],[5,202],[43,171],[-14,193],[-142,60],[-422,11],[-257,-100],[-280,17],[-271,69],[-127,102],[-281,61],[-298,-26],[-265,111],[-693,159],[-352,-157],[-633,-539],[-586,-30],[-630,-152],[-390,-261],[-84,-154],[-205,-243],[-233,-210],[-112,-191],[-133,-401],[-108,-164],[-148,-350],[-235,-364],[-120,-105],[-148,-54],[-457,25],[-595,-172],[-284,-21],[-586,-198],[-380,-284],[-135,60],[-99,167],[-374,259],[-277,-27],[-120,-140],[-539,-456],[-139,-45],[-120,-91],[-345,-124],[-143,59],[-92,140],[-523,-81],[-1641,1077],[-58,38],[-204,133],[-2421,1589],[-1315,863],[-126,47],[-141,-29],[-249,-221],[-226,-544],[-135,-148],[-148,-115],[-78,-116],[-265,-95],[-111,-203],[-213,-44],[-187,-32],[-192,-184],[-211,-284],[-269,-462],[-211,-551],[-134,-128],[-108,-285],[-161,-216],[-439,-379],[-70,-236],[-38,-197],[-58,-160],[-145,-22],[-254,-72],[-218,-66],[-319,37],[-217,14],[-159,-80],[-169,-320],[-159,-87],[-159,-29],[-134,-255],[-276,-160],[-210,-218],[-115,-251],[-140,-462],[-51,-226],[-12,-167],[-162,-677],[-106,-342],[-105,-305],[-161,-244],[-194,-224],[-177,-219],[-205,-91],[-190,-110],[-197,-346],[-266,-279],[-226,-195],[-294,-194],[-253,-158],[-250,-213],[-197,-225],[-145,-225],[-121,-206],[-234,-231],[-246,-140],[-130,-387],[-37,-475],[-113,-544]],[[682756,383826],[-48,389],[-33,268],[-60,271],[-59,271],[-51,229],[-54,246],[-143,684],[-235,520],[-103,365],[-258,483],[-213,274],[-117,69],[-187,274],[-161,352],[-86,741],[87,870],[-36,669],[-158,639],[-84,185],[-522,763],[-49,186],[-135,1191],[-79,199],[-99,147],[-691,673],[-234,88],[-309,177],[-346,342],[-200,248],[-197,320],[-197,163],[-129,-3],[-549,-275],[-186,1],[-140,63],[-225,256],[-64,212],[-36,426],[-100,147],[-536,331],[-326,98],[-120,79],[-367,534],[-283,299],[-170,134],[-310,141],[-352,44],[-326,115],[-417,368],[-580,706],[-346,297],[-220,86],[-147,5],[-138,-88],[-126,-136],[-183,-111],[-83,161],[-255,215],[-234,362],[-338,430],[-398,340],[-338,500],[-161,150],[-157,45],[-658,-143],[-196,41],[-115,114],[-177,414],[-47,227],[-14,508],[-199,367],[-120,62],[-129,14],[-147,-39],[-149,4],[-84,131],[-34,173],[70,169],[126,92],[268,22],[137,134],[162,372],[281,372],[155,64],[468,3],[416,399],[758,529],[459,60],[112,50],[49,169],[65,482],[55,159],[206,217],[98,379]],[[671175,407599],[248,392],[55,764],[122,614],[71,899],[-136,754],[50,381],[219,638],[29,280],[57,227],[422,743],[411,515],[790,655],[333,511],[129,259],[189,252],[141,-131],[227,-344],[686,-524],[169,-10],[121,124],[83,903],[319,717],[298,1391],[125,413],[348,921],[495,1006],[203,265],[540,522],[1178,922],[871,937],[189,335],[234,547],[109,169],[229,246],[240,317],[72,182],[147,849],[170,417],[418,530],[684,684],[970,1079],[255,482],[141,39],[125,-21],[136,52],[367,713],[169,830],[318,477],[615,511],[424,158],[446,31],[452,-64],[339,6],[685,228],[516,557],[178,654],[55,740],[303,944],[311,805],[347,779],[411,348],[388,462],[361,492],[432,1327],[224,457],[453,9],[345,228],[518,343],[393,316],[419,393],[8,25],[196,618],[282,130],[206,209],[106,323],[64,563],[142,640],[218,177],[849,92],[395,149],[409,416],[631,716],[474,373],[380,-35],[395,-288],[226,-245],[213,-168],[926,397],[268,18],[375,-103],[460,-558],[204,-322],[261,-125],[384,52],[245,-90],[418,-34],[246,198],[128,178],[199,390],[154,201],[545,-231],[290,120],[784,1290],[319,178],[297,-129],[282,-51],[155,280],[318,379],[184,-181],[191,-553],[268,-306],[445,45],[198,-50],[276,112],[494,1162],[402,273],[630,109],[671,922],[412,328],[159,-33],[305,-63],[367,-76],[325,158],[72,342],[-108,641],[21,582],[-146,455],[-353,457],[-198,487],[-163,566],[154,415],[298,200],[261,329],[77,523],[-183,650],[-247,393],[-339,301],[-225,611],[4,11],[171,605],[347,655],[862,1035],[119,679],[51,507],[417,851],[11,52],[143,685],[186,388],[768,141],[376,475],[508,386],[622,511],[565,522],[306,221],[960,-489],[467,60],[1017,302],[493,385],[291,147],[544,5],[424,199],[792,653],[219,61],[290,-269],[246,-348],[354,-122],[389,220],[466,109],[247,-210],[472,46],[1444,242],[425,189],[480,343],[287,126],[319,96],[396,204],[360,114],[565,113],[475,226],[332,586],[354,1328],[642,1035],[467,1010],[557,269],[510,502],[586,446],[885,371],[472,-38],[480,199],[615,767],[347,123],[326,226],[494,1518],[360,325],[572,393],[270,249],[133,45],[128,113],[267,125],[763,461],[120,177],[170,165],[128,219],[143,146],[84,147],[127,132],[112,244],[327,394],[224,188],[432,238],[544,217],[416,109],[14,-2],[313,-46],[197,-153],[296,-326],[261,-377],[341,-902],[91,-153],[36,-201],[83,-153],[79,-228]],[[673217,535763],[124,-129],[43,1],[21,1],[21,0],[20,-18],[34,-24],[16,-15],[17,-28],[10,-16],[7,-12],[17,-18],[19,-17],[23,-3],[43,-3],[35,-2],[36,-18],[23,-18],[13,-29],[2,-4],[6,-22],[-2,-13],[-1,-13],[-23,-63],[-1,-6],[-6,-23],[-8,-29],[-1,-4],[-11,-60],[-3,-40],[9,-45],[19,-57],[2,-3],[27,-29],[48,-32],[40,-10],[16,2],[15,1],[38,13],[14,10],[20,16],[9,13],[13,18],[19,15],[31,17],[28,1],[72,-9],[65,-16],[27,-6],[8,-2],[32,-25],[65,-7],[26,-5],[8,-3],[31,12],[15,0],[15,-18],[7,-12],[16,-28],[7,-12],[43,-46],[4,-5],[21,-18],[19,-16],[28,-4],[39,-5],[66,0],[76,9],[47,21],[49,31],[32,39],[31,65],[18,21],[18,21],[20,19],[21,18],[47,74],[4,7],[14,98],[110,72],[126,55],[8,3],[74,45],[104,67],[38,99],[9,14],[39,62],[41,0],[55,-10],[22,-4],[101,-22],[72,18],[53,-5],[50,-80],[81,-117],[53,-107],[42,-83],[37,-11],[38,-31],[25,-16],[12,-54],[7,-10],[19,-30],[35,-31],[70,-16],[36,-25],[38,-31],[43,-54],[40,-16],[5,-2],[34,-19],[6,-3],[28,-49],[-5,-43],[-22,-65],[6,-47],[5,-12],[13,-35],[34,-27],[22,-5],[21,-6],[36,-18],[38,-45],[26,-71],[26,-61],[24,-74],[33,-98],[2,-10],[18,-68],[2,-40],[1,-39],[-29,-150],[-26,-107],[-13,-84],[12,-37],[2,-14],[8,-58],[-33,-148],[-13,-59],[-34,-156],[-13,-138],[3,-65],[12,-59],[16,-84],[-7,-126],[-33,-109],[-52,-114],[-3,-5],[-3,-4],[-84,-126],[-122,-112],[-95,-74],[-57,-73],[-13,-15],[-13,-14],[-54,-41],[543,-1166],[298,-641],[6,-14],[175,-272],[156,-349],[140,-183],[136,-26],[127,-75],[76,-167],[249,-18],[141,-165],[198,-201],[142,-305],[173,-311],[170,-286],[87,-153],[6,-12],[45,-158],[-20,-68],[-45,-152],[-24,-238],[-25,-170],[12,-159],[-72,-244],[-73,-164],[-57,-147],[0,-201],[-16,-116],[-93,-11],[-275,-31],[-72,-104],[-16,-158],[0,-214],[-21,-231],[-89,-281],[-24,-195],[-12,-219],[-40,-165],[-101,-280],[-73,-183],[-23,-140],[13,-232],[46,-147],[40,-171],[-8,-71],[-28,-262],[-9,-81],[142,-507],[821,-636],[274,-12]],[[679217,521647],[-56,-327],[-112,-288],[-172,-247],[-706,-96],[-593,-1518],[-283,-556],[-820,-1343],[-206,-688],[-493,-1139],[-303,-899],[155,-485],[-190,-129],[-298,190],[-856,1493],[-302,326],[-561,-16],[-621,-520],[-448,-138],[-24,-91],[-94,-219],[-116,-92],[-211,-6],[-145,-12],[-120,-118],[-113,-33],[-151,-44],[-133,-104],[-65,-61],[-24,-177],[-57,-97],[65,-86],[85,-67],[64,-24],[53,-98],[65,-128],[72,-36],[73,67],[65,42],[93,-12],[141,-73],[501,-293],[536,-563],[517,-99],[439,-376],[-19,-237],[-2,-23],[-28,-364],[-318,-655],[-235,-618],[-224,-455],[-332,-284],[-61,-79],[-192,-246],[-200,-313],[-98,-95],[-46,-37],[-39,-115],[-62,-253],[-46,-110],[-113,-153],[-134,-115],[-155,-89],[-172,-36],[-41,3],[-129,12],[-278,27],[-295,101],[-156,46],[-127,-3],[-174,-55],[-220,-55],[-148,-46],[-151,-37],[-99,-30],[-91,-82],[-85,-58],[-55,-9],[-101,42],[-131,16],[-45,-22],[-66,-46],[-115,-155],[-72,-122],[-22,-76],[2,-49],[24,-192],[0,-67],[-10,-82],[-33,-92],[-48,-109],[-26,-52],[-43,-76],[-24,-31],[-28,-40],[-168,-216],[-160,-299],[-97,-228],[-24,-86],[8,-70],[20,-58],[114,-64],[129,-79],[206,-110],[236,-149],[75,-46],[30,-52],[0,-57],[-36,-107],[-30,-98],[-2,-58],[7,-119],[25,-109],[67,-70],[20,-52],[4,-119],[-26,-143],[-7,-79],[27,-107],[6,-83],[-48,-185],[-77,-205],[-89,-179],[-28,-60],[-8,-89],[-17,-199],[-40,-138],[-8,-72],[40,-165],[35,-189],[9,-55],[7,-42],[-15,-64],[-18,-52],[-62,-125],[-57,-125],[-93,-220],[-32,-88],[-32,-101],[-23,-100],[0,-86],[27,-79],[48,-85],[63,-76],[66,-92],[-6,-94],[-36,-165],[-4,-19],[-30,-127],[-6,-134],[32,-153],[-6,-119],[-45,-100],[-51,-77],[-48,-33],[-72,27],[-83,95],[-146,165],[-371,451],[-93,76],[-91,9],[-95,-43],[-67,-76],[-75,-201],[-50,-192],[-24,-168],[0,-119],[38,-157],[58,-175],[41,-177],[0,-95],[0,-17],[-28,-80],[-51,-30],[-139,3],[-105,-27],[-114,-71],[-127,-85],[-115,-76],[-95,-110],[-91,-52],[-141,-91],[-81,-89],[-30,-82],[0,-100],[48,-220],[21,-112],[19,-107],[31,-122],[8,-162],[-10,-143],[-77,-195],[-110,-162],[-44,-109],[-1,-32],[-1,-32],[43,-61],[43,-60],[73,-69],[102,-36],[97,-46],[75,-88],[83,-156],[74,-186],[67,-185],[39,-43],[62,-21],[55,-58],[60,-92],[61,-167],[60,-226],[29,-152],[22,-290],[16,-256],[39,-73],[60,-52],[36,-97],[15,-172],[28,-328],[61,-286],[22,-193],[-6,-122],[-29,-113],[-56,-109],[-138,-199],[-99,-173],[-52,-67],[-37,-43],[-38,-43],[-48,-155],[-36,-84],[-88,-120],[-93,-116],[-45,-55],[-35,-95],[-27,-118],[-32,-110],[10,-137],[41,-168],[52,-140],[130,-303],[39,-92],[11,-56],[-1,-57],[-17,-62],[-27,-45],[-56,-69],[-75,-57],[-104,-36],[-76,2],[-79,7]],[[468986,259642],[-1007,-369],[-1023,-6],[-733,458],[-828,247],[-815,67],[-63,953],[-721,-362],[-493,382],[101,591],[-6,68],[-25,284],[-146,277],[-568,543],[-358,336],[-83,132],[-225,216],[-546,273],[-98,107],[-135,-116],[-1012,286],[-627,42],[-57,4],[-360,69],[-158,45],[-118,34],[-141,-101],[-120,-86],[-43,-257],[57,-373],[-223,-215],[-71,-229],[-275,14],[-233,-7],[-275,-79],[-361,-623],[133,-508],[-1406,136],[-294,14],[-195,-21],[-261,-51],[-328,-136],[-299,-207],[-351,-401],[-114,-394],[-52,-459],[14,-265],[142,-415],[-261,-129],[-228,64],[-128,-444],[-45,-568],[-215,-113],[-495,357],[-93,68],[-384,0],[-935,-599],[-176,-232],[-131,-173],[-256,-406],[-64,-386],[0,-444],[-13,-676],[208,-433],[61,-127],[-64,-347],[-115,-367],[0,-309],[-51,-251],[-192,-328],[-308,-329],[-499,-347],[-115,-155],[-179,-231],[-3,-208],[-271,-380],[-14,-537],[-323,-286],[-333,14],[-261,-50],[19,-351],[-1250,-154],[-719,-89],[-480,578],[-234,257],[-151,167],[-836,703],[-548,246],[-754,167],[-605,49],[-187,41],[-740,-123],[-962,-234],[-116,-31],[-601,-159],[-630,-238],[-170,-64],[-466,-457],[-207,-435],[-340,-313],[-496,-357],[-673,-525],[-176,-106],[-157,-95],[-792,-657],[-322,-259],[-833,-557],[-556,-266],[-770,-377],[-1056,259],[-794,-44],[-485,-26],[-848,-414],[-256,-2],[-98,-109],[-275,0],[-119,-102],[-107,-144],[-232,-166],[-596,-286],[-295,-13],[-290,46],[-426,-32],[-280,139],[-122,104],[-395,39],[-135,72],[-283,-55],[-156,-282],[-256,-463]],[[426047,246070],[-323,29],[-212,259],[-144,175],[-21,25],[-306,120],[-387,85],[-32,32],[-262,264],[-97,272],[10,1570],[51,583],[-3,31],[-84,676],[31,412],[-67,389],[15,262],[36,617],[152,371],[214,289],[219,108],[115,57],[119,156],[60,123],[5,37],[17,128],[-30,145],[-50,167],[-18,58],[22,189],[24,47],[241,475],[85,169],[99,195],[267,488],[113,208],[16,29],[62,253],[31,342],[-1,32],[-5,294],[-15,53],[-51,187],[-186,196],[-227,155],[-33,83],[38,96],[114,233],[103,148],[10,178],[5,86],[-180,342],[-273,164],[-72,132],[56,155],[196,117],[165,148],[103,225],[67,319],[23,295],[23,295],[-15,381],[-31,288],[-175,194],[-229,75],[-77,25],[-29,9],[-139,179],[12,425],[3,96],[-37,310],[-1,8],[-16,129],[-64,535],[-16,129],[-18,112],[-19,111],[1,149],[0,148],[0,79],[31,288],[-8,124],[-7,124],[-124,200],[-74,119],[-600,951],[-47,75],[-170,327],[-155,169],[-36,39],[-150,103],[-69,76],[-90,219],[-49,86],[-33,255],[39,123],[279,357],[126,161],[855,1769],[99,204],[31,64],[37,507],[290,4052],[2,29],[2,19],[69,1098],[14,47],[32,107],[7,24],[7,11],[97,142],[27,35],[66,88],[482,1120],[88,204],[76,189],[84,210],[30,74],[49,123],[6,14],[3,6],[7,19],[8,20],[19,48],[74,184],[4,10],[25,62],[179,446],[225,505],[152,248],[25,41],[21,16],[41,32],[121,96],[174,126],[43,31],[115,119],[168,293],[13,23],[298,522],[28,49],[111,202],[233,425],[76,139],[2,4],[16,17],[1,1],[6,7],[2,3],[42,47],[13,17],[120,160],[40,54],[410,547],[19,26],[131,176],[5,8],[45,61],[3,3],[23,13],[31,16],[10,5],[12,7],[16,1],[77,3],[19,-6],[231,-62],[109,-2],[95,61],[66,72],[16,28],[6,12],[2,3],[7,14],[5,9],[5,10],[68,245],[88,234],[106,177],[114,199],[92,220],[91,220],[62,94],[2,1],[67,12],[38,16],[111,45],[47,21],[1,1],[53,24],[68,98],[33,123],[11,128],[-16,115],[-23,64],[-26,76],[-82,181],[-12,32],[4,30],[4,30],[-23,76],[6,66],[51,74],[27,46],[109,188],[2,6],[33,127],[14,52],[19,119],[-55,202],[-18,135],[8,103],[4,20],[14,66],[34,157],[1,4],[16,80],[13,59],[-22,185],[-20,80],[-8,31],[-68,144],[-98,140],[-73,138],[-77,123],[-52,73],[-60,67],[-52,42],[-62,22],[-136,60],[-134,57],[-114,88],[-24,66],[-79,306],[-1,2],[-8,31],[-3,12],[-3,15],[-3,10],[-2,6],[-100,337],[-36,173],[0,119],[5,65],[4,64],[22,134],[48,197]],[[430086,288876],[70,198],[17,52]],[[430173,289126],[7,67],[-2,62],[-18,84],[-71,97],[-11,15],[-1,5],[-11,30],[-60,175],[-292,847],[-38,110],[-266,769],[-4,13],[-5,14],[-347,1007],[-35,101],[-10,28],[-8,24],[-20,57],[-566,1640],[-1,4],[-22,63],[-2899,8402],[-3,7],[-1865,5405],[-295,855]],[[423330,309007],[3877,378],[2915,284],[556,54],[2201,1482],[441,297],[479,322],[34,23],[280,188],[1486,1000],[1863,1255],[156,90],[220,129],[35,20],[40,33],[460,377],[81,66],[502,411],[340,59],[339,58],[29,25],[234,205],[262,231],[316,409],[251,326],[404,442],[288,78],[165,90],[116,148],[155,288],[165,178],[168,15],[111,-153],[176,0],[270,215],[305,111],[203,-59],[4,-1],[3,-2],[309,227],[154,199],[107,137],[223,232],[18,9],[167,88],[29,0],[212,-8],[65,4],[9,0],[8,1],[13,0],[11,1],[15,1],[9,0],[4,0],[10,1],[16,1],[13,0],[3,0],[1,0],[7,1],[38,1],[29,0],[107,3],[174,14],[10,5],[540,287],[81,44],[22,11],[3,1],[85,31],[374,138],[280,180],[285,186],[326,119],[271,268],[332,85],[487,2],[250,-221],[103,-56],[163,134],[276,648],[253,355],[192,197],[199,157],[4,1],[270,59],[768,166],[384,-368],[197,-350],[182,-447],[149,-242],[403,-171],[551,-25],[333,60],[305,100],[120,276],[139,114],[532,420],[566,1077],[359,481],[353,244],[402,404],[291,700],[219,456],[228,216],[351,332],[1096,364],[367,485],[280,497],[103,461],[770,591],[508,562],[481,414],[536,241],[234,479],[259,214],[-86,473],[178,472],[335,701],[571,512],[170,206],[211,182],[67,504],[-79,900],[-120,632],[-157,467],[-368,931],[-705,789],[-226,365],[-202,254],[-575,387],[-45,44],[-9,9],[-53,53],[-8,180],[284,498],[142,370],[149,134],[295,-55],[281,25],[178,69],[453,340],[629,108],[982,-155],[382,128],[148,148],[312,162],[105,106],[268,428]],[[191545,124956],[-41,-154],[-276,-104],[-84,136],[-136,39],[-98,-129],[-175,88],[-69,196],[34,261],[225,419],[178,104],[247,353],[225,-265],[-58,-551],[42,-342],[-14,-51]],[[185951,125991],[-179,-370],[-119,-113],[-136,79],[-91,194],[-127,105],[-148,-27],[-85,156],[-8,216],[78,285],[263,474],[161,629],[23,-35],[63,-95],[296,-1276],[9,-222]],[[193247,125362],[-39,-3],[-141,96],[-66,179],[28,539],[-19,51],[-100,260],[1,271],[70,153],[339,443],[-72,445],[-6,36],[135,-60],[69,-151],[114,-134],[291,-99],[438,-63],[120,-115],[42,-391],[296,-267],[16,-472],[-192,-248],[-156,-110],[-571,-177],[-326,-164],[-271,-19]],[[238441,131684],[-283,-109],[-125,64],[-114,143],[-29,169],[21,177],[86,176],[21,184],[-86,184],[86,169],[141,68],[126,-84],[44,-205],[224,-195],[86,-163],[35,-209],[-7,-210],[-78,-144],[-148,-15]],[[198239,132378],[-27,-17],[-205,47],[-35,77],[-17,38],[-18,39],[59,200],[99,176],[117,163],[179,-118],[18,-12],[-15,-159],[-24,-175],[-32,-128],[-3,-14],[-18,-70],[-78,-47]],[[260672,124463],[1422,-10592],[-129,-27],[-711,-150],[-73,-15],[-573,-62],[-64,-11],[-64,-11],[-624,-107],[-237,-41],[-198,-44],[-1357,-299],[-224,-50],[-1124,-159],[-628,-194],[-1005,-105],[-693,-187],[-791,-260],[-545,-179],[-520,-104],[-477,-159],[-698,-176],[-193,-30],[-534,-80],[-1311,-325],[-110,-27],[-933,-298],[-361,-31],[-416,-101],[-594,-211],[-34,-7],[-750,-150],[-1879,-549],[-255,-24],[-658,-337],[-261,-42],[-670,-242],[-375,-35],[-692,-141],[-801,-313],[-867,-164],[-43,-9],[-315,-87],[-400,-111],[-571,-198],[-568,-119],[-345,-108],[-349,-147],[-500,-212],[-1766,-746],[-536,-332],[-233,-221],[-234,-156],[-50,-187],[-78,-144],[9,-181],[-109,-106],[-12,-12],[-129,-5],[-139,48],[-113,116],[-136,25],[-206,-261],[-233,-190],[-103,-145],[-283,-75],[-135,-92],[-705,-1126],[-129,29],[-359,-336],[-290,31],[-270,-87],[-177,-346],[-403,-508],[-112,-96],[-155,-36],[-410,-11],[-127,94],[-136,36],[-281,-95],[-239,251],[-305,61],[-248,138],[-276,52],[-120,-93],[-119,40],[0,195],[54,159],[15,204],[-85,153],[-380,194],[-70,158],[-15,551],[-70,158],[-135,66],[-141,-7],[-473,292],[-136,-20],[-514,322],[-150,13],[-170,-383],[-140,11],[-403,164],[-20,191],[218,232],[91,170],[-55,204],[-122,51],[-142,-13],[-118,-81],[-135,8],[-120,129],[-22,397],[73,939],[-112,1266],[-53,601],[15,303],[163,485],[43,231],[-57,207],[-242,258],[-217,360],[-143,165],[-310,228],[-99,200],[155,328],[219,322],[242,578],[268,423],[268,663],[255,380],[133,75],[136,-87],[92,-492],[218,-336],[184,-44],[148,20],[460,212],[232,297],[213,-179],[133,119],[713,1232],[65,202],[85,138],[120,135],[134,54],[156,-74],[156,4],[111,124],[71,229],[332,426],[72,206],[91,924],[-21,690],[127,928],[-65,165],[-104,103],[-41,179],[77,151],[573,-63],[113,-71],[89,-149],[-82,-149],[0,-199],[401,-267],[170,-66],[297,28],[143,92],[530,555],[246,348],[133,370],[247,1192],[362,984],[354,695],[373,506],[341,659],[530,293],[677,247],[368,260],[559,-194],[125,43],[418,300],[156,310],[133,-21],[212,-217],[120,-6],[127,105],[128,29],[269,-54],[269,190],[323,450],[242,177],[91,139],[127,46],[126,-91],[142,-302],[101,-131],[353,-340],[120,-465],[107,-742],[183,-730],[83,-177],[326,-442],[416,-317],[454,-269],[474,-219],[811,-294],[347,-193],[605,-521],[87,-75],[934,-1108],[253,-185],[503,-114],[330,18],[329,17],[283,15],[279,15],[176,-32],[439,-81],[305,39],[565,-148],[1773,-946],[155,-143],[291,-270],[1291,-1374],[108,-115],[551,-468],[80,-56],[345,-240],[508,-263],[1172,-242],[171,13],[345,26],[513,130],[96,24],[407,71],[731,127],[134,57],[79,62],[522,404],[282,280],[367,467],[531,1175],[62,202],[157,951],[71,2351],[-233,1717],[-297,928],[-284,699],[-100,446],[-90,163],[-133,128],[-340,174],[-453,306],[-1039,878],[-594,742],[-176,320],[-295,688],[-193,276],[-381,248],[-614,254],[-234,248],[-126,78],[-98,42],[-482,207],[-672,660],[-381,214],[-581,455],[-353,550],[-283,686],[-290,428],[-318,588],[106,130],[249,-148],[184,-250],[163,-327],[190,-713],[198,-344],[134,-331],[114,-140],[883,-506],[473,-455],[190,-273],[412,-163],[252,-165],[261,-53],[389,-330],[185,-110],[118,-43],[576,-213],[323,-120],[1052,-904],[453,-338],[135,-86],[135,-87],[410,-90],[310,-170],[564,-453],[574,-584],[2795,-1709],[362,-221]],[[240463,132448],[-361,-387],[-119,-18],[-150,62],[-240,-85],[-56,152],[36,408],[49,169],[310,376],[85,379],[70,150],[100,130],[127,66],[148,14],[92,-155],[-65,-551],[73,-357],[-30,-202],[-69,-151]],[[239062,139225],[-219,-666],[-77,-398],[-83,-128],[-368,-247],[-149,34],[-70,418],[-178,330],[71,367],[-72,150],[-118,-90],[-128,29],[-56,173],[55,156],[297,282],[291,200],[177,-66],[90,-112],[255,-82],[241,-138],[41,-212]],[[238053,140169],[-99,-116],[-99,182],[-106,343],[56,163],[128,88],[84,152],[35,195],[122,159],[127,-67],[64,-179],[-101,-133],[-70,-188],[-71,-428],[-70,-171]],[[218294,141419],[-50,-591],[-49,-179],[-106,-116],[-64,-154],[-22,-173],[37,-594],[85,-170],[289,-113],[133,-125],[86,-218],[-8,-248],[-176,-274],[-507,-349],[-156,-70],[-242,70],[-253,-160],[-242,-301],[-252,-175],[-227,-261],[-439,435],[-113,89],[-127,6],[-120,98],[-28,179],[-198,270],[-55,176],[6,261],[50,204],[-128,170],[-121,88],[-104,-106],[-377,-584],[-219,-552],[-189,-299],[-122,-364],[-133,-9],[-128,426],[-105,152],[-303,98],[-150,116],[-190,432],[-276,190],[-127,156],[-71,182],[-14,174],[72,380],[76,210],[14,210],[-77,158],[85,151],[220,186],[417,618],[162,98],[175,-21],[275,-184],[256,7],[276,99],[571,375],[275,77],[137,98],[422,64],[120,135],[143,323],[91,121],[134,12],[148,121],[205,280],[162,46],[234,196],[261,-496],[-20,-459],[63,-165],[433,-148],[112,-103],[63,-176]],[[249537,144901],[-509,-1317],[-192,-49],[-148,82],[-340,-217],[-69,144],[218,566],[72,308],[35,340],[83,131],[248,147],[93,248],[438,495],[107,-38],[-36,-840]],[[247316,145657],[-33,-631],[-109,-727],[102,-343],[-735,-1119],[-368,-210],[-249,-201],[-104,-209],[-191,-193],[-169,-308],[-375,-319],[-36,-368],[-170,-530],[-92,-567],[-198,-255],[-311,-607],[-149,-58],[-99,-105],[-182,-302],[-35,-189],[161,-588],[-7,-608],[-168,-266],[-114,-110],[-127,-46],[-460,-565],[-71,-370],[-99,-160],[-127,2],[-134,86],[-56,187],[21,221],[246,555],[101,335],[27,592],[-126,548],[-306,87],[-146,-10],[-122,101],[-78,171],[-98,615],[22,612],[-36,381],[100,400],[13,221],[-141,837],[14,214],[122,371],[169,249],[290,-82],[359,181],[310,250],[247,345],[42,950],[248,384],[170,465],[190,334],[108,346],[246,291],[255,-76],[325,-541],[247,-207],[425,55],[318,362],[239,352],[292,175],[318,61],[294,-466]],[[215637,145189],[-113,-85],[-121,43],[-225,226],[-170,258],[-190,85],[71,367],[175,339],[367,322],[150,45],[97,-125],[234,-561],[27,-391],[-82,-193],[-220,-330]],[[246371,146298],[-488,-81],[-176,42],[-129,138],[9,176],[56,205],[310,526],[149,110],[558,173],[89,-100],[88,-99],[50,-308],[-100,-297],[-416,-485]],[[249535,149481],[114,-195],[99,-285],[-78,-339],[-388,-336],[-164,-208],[-97,-238],[-364,-9],[-364,-9],[-296,150],[-142,295],[69,860],[192,299],[814,-11],[373,107],[232,-81]],[[238788,157110],[346,-108],[332,108],[126,-184],[36,-319],[-19,-256],[-745,259],[-309,-19],[-78,109],[20,194],[291,216]],[[234891,162804],[-213,-438],[-153,167],[-34,224],[136,304],[-163,176],[87,146],[272,14],[205,-66],[-137,-527]],[[235864,162778],[-237,-90],[-181,90],[-72,247],[98,222],[281,251],[375,65],[-60,-451],[-204,-334]],[[246575,162788],[-189,-101],[-24,334],[101,770],[198,218],[119,248],[289,240],[423,30],[242,283],[29,17],[66,39],[31,18],[-40,-494],[-86,-316],[-255,-491],[-517,-398],[-387,-397]],[[255580,169387],[76,-5118],[0,-38],[33,-2186],[0,-18],[7,-476]],[[255696,161551],[-358,-51],[-198,-128],[-338,-441],[-92,-255],[-23,-191],[-155,-282],[-317,-366],[-227,-94],[-171,-163],[-190,-433],[-43,-433],[-160,-316],[-382,-318],[-311,-197],[-228,-324],[-205,-122],[-239,204],[-387,-113],[-470,-68],[-881,-12],[-516,160],[-636,897],[190,330],[318,314],[135,428],[-282,257],[120,252],[281,95],[311,691],[7,423],[-56,413],[-310,683],[-369,469],[-459,231],[-367,-161],[-283,189],[1,531],[40,54],[185,246],[85,114],[29,420],[-57,341],[64,473],[-269,567],[29,459],[76,333],[566,-190],[352,6],[347,324],[206,113],[260,422],[79,370],[163,276],[481,369],[205,24],[40,5],[207,24],[402,-283],[213,-428],[438,-359],[405,158],[320,-214],[187,116],[-143,473],[50,632],[254,552],[304,-57],[375,-249],[474,-37],[134,-443],[148,-371],[205,380],[79,294],[134,813],[107,10]],[[241855,184874],[34,-217],[34,-223],[30,-196],[453,-1507],[382,-203],[587,-41],[1213,-369],[420,9],[460,96],[54,11],[212,743],[198,416],[347,465],[1011,507],[636,958],[564,410],[411,135],[396,-209],[386,-282],[405,-144],[261,39],[1131,391],[776,341],[1132,930],[389,-227],[276,-543],[323,-110],[495,-1],[403,-462],[69,-17],[115,-28],[30,-4068],[2,-213],[74,-9945]],[[255564,171320],[-189,50],[-311,94],[-346,-121],[-346,281],[-192,-207],[-187,-149],[-186,-149],[-237,-39],[-192,-31],[-239,94],[-337,-188],[-60,-316],[-153,-326],[-1285,-504],[-82,-32],[-506,-415],[61,-324],[-166,-156],[-72,-69],[-548,-258],[-20,-9],[-364,-201],[-461,-268],[-112,-23],[-130,-27],[-964,193],[-426,13],[-427,244],[-298,77],[-248,-141],[-362,141],[-408,-251],[-654,174],[-409,258],[-486,-155],[-377,51],[-323,181],[-588,-206],[-793,-335],[-461,-77],[-475,61],[-156,209],[-8,8],[-478,417],[-373,212],[-463,264],[-45,14],[-338,108],[-90,33],[-278,102],[-267,-66],[10,-461],[-235,147],[-11,7],[-499,87],[-37,-484],[-581,-413],[-312,-323],[-215,-221],[-422,-442],[-543,-185],[-707,-727],[-649,332],[-217,360],[-14,22],[-341,232],[-524,108],[-661,137],[-538,141],[-442,-182],[-383,-208],[-339,-73],[-205,-171],[-132,-241],[-42,-77],[-239,-361],[-398,-52],[-148,-64],[-273,-102],[-345,35],[-303,-267],[-137,-386],[237,-476],[-110,-621],[-619,-348],[-571,-292],[-182,-93],[-755,-99],[-830,-121],[-404,54],[-163,-27],[-486,-81],[-400,-103],[-399,-301],[-268,-162],[-587,-631],[-192,-368],[84,-290],[81,28],[120,-61],[133,-146],[2,-174],[0,-28],[-84,-230],[-191,-265],[-58,-202],[-36,-85],[-85,-217],[-135,-285],[-190,63],[-20,169],[-419,-115],[-124,-34],[-578,-346],[-73,-535],[-151,-180],[-209,-127],[-448,-385],[-22,-26],[-223,-258],[-73,-291],[-141,-668],[31,-425],[63,-181],[213,-71],[350,-94],[104,-204],[-47,-323],[-163,-248],[-238,-169],[-251,-71],[-234,-63],[-118,178],[-65,236],[-107,30],[-109,31],[-376,-138],[-546,-453],[-217,-165],[103,-361],[-182,-120],[-205,-772],[-5,-294],[-234,-874],[35,-437],[107,-353],[-97,-584],[-11,-1493],[134,-1121],[-76,-27],[-751,-270],[-354,-128],[-922,-429],[-660,-549],[-700,-139],[-1001,342],[-411,326],[-461,398],[-409,-52],[-467,378],[18,542],[5,128],[216,429],[13,641],[255,642],[330,915],[717,395],[108,334],[313,61],[176,145],[330,739],[211,506],[70,291],[72,302],[159,369],[200,103],[139,141],[122,125],[50,194],[19,72],[51,198],[0,334],[-106,227],[-115,244],[-195,233],[-273,335],[-165,215],[-131,283],[-51,404],[86,326],[193,232],[74,249],[171,197],[301,258],[182,137],[126,-9],[187,-17],[131,120],[46,224],[4,39],[59,519],[-39,363],[-18,169],[-26,96],[-61,227],[-10,38],[-173,344],[-78,153],[-295,438],[-240,275],[-179,227],[-218,275],[-24,30],[-3,4],[-389,503],[-279,300],[-115,48],[-50,21],[-148,-77],[-302,-181],[-233,-31],[-399,49],[-187,-163],[-126,-164],[-56,-283],[120,-118],[-109,-268],[-455,34],[-47,-3],[-232,-14],[-256,9],[-154,-301],[-126,-143],[-409,-140],[-51,-275],[45,-249],[-79,-215],[-74,-223],[-154,-352],[-296,-86],[-250,35],[-439,43],[-62,-138],[-46,-137],[-301,-198],[-125,-77],[-114,35],[-416,-43],[-318,-61],[-245,-68],[-251,-129],[-250,-146],[-148,-163],[-68,-120],[-50,-214],[-81,-27],[-290,-300],[-228,-318],[-211,-335],[-148,-283],[-113,-300],[-35,-249],[-28,-129],[-34,-198],[-211,-180],[-11,-317],[40,-181],[171,-111],[-35,-490],[-125,-300],[-108,-361],[-74,-292],[46,-274],[142,-26],[131,-215],[-40,-309],[131,-343],[114,-326],[210,5],[279,-194],[199,206],[222,8],[-11,-223],[-120,-240],[91,-292],[-142,-378],[13,-46],[44,-160],[137,-91],[68,-261],[-103,-472],[-165,-198],[-142,-17],[-154,-146],[-119,-154],[-40,-129],[-34,-129],[-7,-175],[155,-10],[137,-81],[0,-481],[-61,-237],[-80,-316],[-233,-433],[-269,-502],[-156,-639],[-152,-176],[-38,-345],[58,-87],[113,-20],[18,-315],[-19,-204],[-128,-81],[-85,-193],[-162,-571],[-30,-314],[113,-351],[-35,-263],[-42,-206],[-70,-153],[-56,-222],[-207,-349],[-120,68],[-14,187],[-78,178],[-162,98],[-152,49],[-342,-64],[-204,-12],[-93,-55],[-114,-105],[-137,-169],[-162,-113],[-130,-120],[-107,-35],[-40,-36],[-88,-10],[-78,35],[-71,-20],[-79,-60],[-133,-15],[-174,40],[-146,15],[-137,-60],[-176,-151],[-207,-166],[-106,-130],[-113,-216],[-58,-160],[-2,-6],[-37,-126],[-16,-104],[23,-122],[76,-180],[74,-176],[183,-262],[3,-231],[3,-226],[0,-201],[17,-160],[70,-131],[-3,-236],[-67,-302],[-83,-236],[40,-216],[-66,-117],[-192,-513],[-291,-437],[-83,-351],[-162,-135],[-43,-148],[-163,-317],[-239,-96],[-160,-24],[-123,9],[-133,121],[-69,-58],[-22,-133],[-46,-79],[-137,18],[-97,-142],[-155,-274],[83,-69],[0,-122],[-33,-302],[-77,-348],[-75,-79],[-63,-126],[66,-234],[-92,-230],[-69,-206],[-94,-128],[-138,-29],[-160,57],[-238,14],[-220,-403],[-52,-162],[-122,-261],[-234,-516],[-304,-586],[-126,-268],[-139,-283],[-141,-313],[-324,-238],[-341,-88],[-324,-125],[-290,-330],[-449,-147],[-522,37],[-552,-325],[-852,-924],[120,-416],[4,-304],[-172,-149],[-348,18],[-218,-177],[7,-343],[-173,-96],[-1237,-217],[-588,-253],[-286,-330],[-306,-63],[-350,-33],[-252,-118],[-282,-144],[-394,-214],[-170,87],[-162,163],[-150,145],[-96,-18],[-210,-136],[-63,-8],[-153,-19],[-301,-136],[-150,-245],[-96,-552],[-162,-582],[-12,-43],[-78,-616],[-217,-117],[-389,235],[144,317],[-97,269],[58,339],[-120,247],[-63,304],[-264,352],[-13,406],[-275,347],[-323,207],[-399,142],[-202,492],[-312,-82],[-192,-198],[-400,-307],[-249,-191],[-177,-13]],[[177249,168865],[504,508],[712,29],[941,430],[486,76],[100,-107],[85,-212],[211,-317],[186,-134],[353,-60],[112,-62],[220,-278],[168,-396],[106,140],[191,474],[193,786],[247,699],[61,318],[-7,256],[-125,527],[155,810],[-163,651],[-37,291],[29,480],[91,226],[815,1099],[131,480],[158,580],[345,776],[708,1395],[247,598],[212,769],[113,66],[77,-562],[72,-207],[147,-250],[185,-144],[169,-46],[453,41],[438,247],[192,182],[175,346],[410,1081],[107,348],[183,855],[120,292],[495,814],[459,942],[333,407],[443,388],[180,248],[289,502],[77,206],[40,381],[-47,170],[4,229],[201,456],[1979,1675],[797,417],[317,87],[525,28],[192,148],[359,428],[113,178],[213,645],[132,183],[476,493],[571,940],[91,209],[149,515],[26,426],[-54,891],[100,387],[240,427],[132,131],[368,206],[601,225],[142,-75],[77,-811],[135,-381],[113,-165],[134,-358],[127,-121],[473,-276],[433,-570],[867,-815],[128,-235],[170,-632],[91,-177],[369,-504],[458,-424],[304,-778],[1032,-794],[276,-409],[381,-424],[694,-1043],[142,-45],[137,43],[428,346],[940,940],[240,192],[332,167],[182,28],[347,-78],[382,53],[729,208],[345,-5],[834,-257],[996,-423],[233,-3],[297,84],[924,376],[1061,351],[935,144],[127,-56],[114,-144],[174,-371],[249,-416],[323,-423],[305,-321],[325,-158],[565,-60],[461,121],[249,205],[302,419],[403,460],[400,243],[545,133],[297,182],[135,137],[234,354],[431,380],[508,795],[254,236],[418,249],[988,329],[278,156],[113,130],[251,593],[115,412],[395,813],[417,711],[432,558],[366,243],[264,93],[83,122],[99,358],[114,114],[146,51],[327,388],[261,103],[299,285],[99,93],[342,401],[53,62],[229,317],[107,316],[111,269],[22,173],[-33,133],[-48,124],[-46,180],[3,199],[69,247],[156,419],[143,262],[165,319],[309,741],[72,43],[1,1],[154,92],[234,12],[167,-23],[340,-148],[294,-114],[204,-183],[167,-285],[53,-279],[-265,-826],[-1,-117],[-2,-117],[223,-232],[220,-198],[302,-421],[287,-239],[21,-17],[263,-316],[185,-118],[164,-254],[209,-264],[149,-181],[171,-125],[145,-164],[89,-227],[141,-183],[103,-140],[117,-176],[57,-203],[26,-224],[353,-1112],[178,-546],[173,-545],[89,-245],[306,-568],[489,-384],[206,-302],[36,-422],[-39,-1510],[364,-449],[459,-206],[283,-279],[303,-503],[197,-479],[65,-470],[-22,-444],[134,-406],[529,-399],[354,-80],[341,193],[458,-66],[629,-596],[466,13],[432,-100],[2105,661],[355,17],[1315,-213],[345,-196]],[[566895,195663],[-39,-144],[-83,-224],[-67,-198],[-134,-395],[-128,-231],[-97,-176],[-609,-813],[-755,-812],[-105,-168],[-227,-520],[-100,-137],[-261,-216],[-217,-392],[-171,-233],[-240,-251],[-424,-325],[-184,-277],[-289,-608],[-423,-1104],[-53,-241],[-27,-124],[267,-1697],[100,-356],[27,-95],[135,-539],[91,-443],[63,-314],[27,-246],[-108,-246],[-186,-225],[-249,-321],[-70,-161],[-43,-98],[-4,-225],[41,-289],[291,-704],[20,-89],[91,-406],[27,-293],[-2,-83],[-11,-470],[-5,-145],[-1,-34],[0,-2],[-3,-112],[25,-107],[22,-91],[48,-198],[27,-334],[68,-454],[173,-261],[86,-126],[128,-125],[95,-73],[78,-35],[36,2],[35,2],[50,-8],[30,-35],[11,-44],[-34,-93],[-89,-105],[-105,-84],[-78,-26],[-61,-19],[-48,-39],[-29,-31],[-12,-13],[-56,-14],[-96,12],[-51,7],[-27,4],[-16,-23],[-15,-22],[-8,-50],[14,-49],[-19,-44],[-40,-58],[-132,-171],[-115,-74],[-44,-58],[-224,-317],[-239,-358],[-60,-114],[-20,-147],[18,-158],[86,-112],[118,-37],[120,33],[114,60],[179,149],[296,196],[107,4],[92,-40],[145,-109],[163,-219],[158,-204],[263,-246],[254,-107],[280,-117],[233,107],[269,56],[221,6],[204,103],[335,102],[202,74],[103,47],[40,39],[25,38],[19,80],[10,74],[7,49],[35,90],[33,28],[38,15],[59,14],[62,42],[65,60],[31,40],[15,20],[24,42],[16,47],[41,80],[28,52],[86,115],[144,74],[83,126],[178,194],[132,115],[149,184],[230,129],[170,0],[106,85],[169,164],[163,144],[167,69],[109,-18],[114,-39],[151,-86],[151,-40],[148,-40],[117,-40],[102,-97],[110,-125],[64,-189],[32,-84],[116,-64],[87,-11],[68,-74],[83,-86],[83,-51],[102,-80],[110,-74],[94,-86],[114,-120],[136,-80],[121,-97],[110,-165],[139,-205],[174,-291],[159,-263],[369,-626],[372,-634],[372,-560],[16,-117],[16,-51],[25,-41],[53,-31],[15,-23],[12,-18],[36,-75],[25,-70],[28,-107],[24,-116],[26,-73],[31,-45],[31,-34],[23,-37],[19,-101],[45,-106],[73,-106],[172,-75],[67,-34],[64,-143],[135,-109],[141,-86],[142,-58],[100,-75],[58,-105],[15,-135],[37,-307],[3,-233],[16,-321],[-149,-2356],[-72,-1135],[-8,-127],[-106,-147],[74,-250],[85,-32],[9,-29],[-51,-67],[33,-96],[79,-32],[13,-30],[-45,-66],[17,-121],[58,-39],[3,-28],[-50,-54],[18,-110],[64,-53],[4,-23],[-54,-72],[9,-98],[80,-71],[15,-121],[34,-279]],[[573768,165912],[-1857,-433],[-4085,-1041],[-611,-164],[-2165,-648],[-863,-311],[-197,-71],[-856,-340],[-569,-301],[-321,-226],[-326,-266],[-208,-170],[-81,-130],[-23,-218],[-45,-157],[-72,-280],[-41,-252],[15,-179],[125,-135],[91,-69],[19,-145],[-92,-114],[-30,-277],[-105,-160],[50,-191],[58,-184],[59,-184],[-1,-190],[-1,-190],[-101,-311],[-87,-108],[0,-191],[-35,-321],[-10,-49],[-19,-70],[-19,-49],[-24,-56],[-29,-52],[-32,-46],[-49,-60],[-46,-46],[-41,-164],[-139,-199],[-142,-72],[-149,-55],[-162,-37],[-135,-177],[-213,-123],[-122,-34],[-122,-34],[-109,-259],[-154,-157],[-163,-89],[-153,14],[-217,68],[-141,27],[-140,14],[-104,20],[-131,116],[-109,232],[-217,567],[-38,84],[-98,216],[-298,170],[-312,116],[-215,65],[-102,31],[-320,97],[-8,2],[-328,99],[-896,92],[-1863,133],[-867,24],[-430,-3],[-1738,6],[-1027,-23],[-769,-18],[-1034,-123],[-458,-55],[-566,-67],[-116,-19],[-804,-129],[-1421,-229],[-414,-67],[-497,-45],[-1064,-98],[-80,-2],[-691,-15],[-147,-4],[-781,-35],[-25,-1],[-639,-93],[-823,-121],[-448,-65],[-932,-114],[-7,0],[-733,-69],[-393,-17],[-1570,-71],[-32,-3],[-2159,-157],[-903,-66],[-1696,-150],[-1674,-109],[-923,-61],[-4,0],[-20,-2],[-840,-53],[-31,-3],[-679,-65],[-918,-82],[-458,-37],[-507,-40],[-406,-32],[-1117,-150],[-466,-65],[-1655,-222],[-1140,-136],[-1759,-161],[-820,-73],[-847,-107],[-1636,-192],[-755,-102],[-1819,-325],[-50,-9],[-590,-108],[-554,-124],[-552,-110],[-729,-221],[-689,-243],[-1139,-405],[-971,-359],[-896,-324],[-637,-262],[-1221,-601],[-515,-210],[-468,-138],[-502,-85],[-417,-31],[-130,-10],[-211,-10],[-324,-14],[-250,-11],[-295,-9],[-383,27],[-511,33],[-236,12],[-117,6],[-354,25],[-155,17],[-236,25],[-747,134],[-203,31],[-857,159],[-891,200],[-923,203],[-454,101],[-285,54],[-1093,212],[-935,149],[-129,20],[-1400,193],[-17,2],[-754,77],[-1115,114],[-173,18],[-1568,101],[-1376,60],[-96,2],[-1405,36],[-798,20],[-39,1],[-460,32],[-684,10],[-772,-23],[-587,-65],[-74,-3],[-273,-15],[-313,-18],[-472,-28],[-505,-32],[-477,-32],[-201,-28],[-274,-32],[-365,-68],[-211,-44],[-120,-25],[-198,-37],[-97,-27],[-237,-115],[-113,-129],[-18,-87],[61,-82],[39,-133],[-8,-76],[-65,-75],[-140,-161],[-56,-61],[-33,-65],[-38,-108],[-41,-145],[-5,-188],[71,-223],[36,-157],[35,-96],[31,-176],[5,-188],[-56,-84]],[[477101,150408],[-458,456],[-279,326],[-168,180],[-142,146],[-135,107],[-114,111],[-181,138],[-96,92],[-171,184],[-111,104],[-84,107],[-361,376],[-351,622],[-56,175],[-40,174],[-18,189],[23,178],[51,184],[38,107],[66,115],[152,284],[163,322],[46,173],[66,406],[2,35],[6,76],[1,2],[0,3],[0,28],[1,32],[1,40],[0,6],[1,24],[-15,176],[-10,111],[0,176],[10,129],[34,77],[118,123],[118,123],[113,131],[146,155],[66,75],[84,94],[66,52],[81,57],[191,126],[439,259],[615,345],[327,310],[31,29],[134,303],[14,79],[74,416],[3,17],[1,2],[2,11],[57,232],[63,255],[2,7],[1,4],[1,5],[1,6],[1,4],[2,6],[1,5],[1,4],[1,4],[1,5],[1,4],[1,4],[1,5],[2,5],[1,3],[30,56],[219,403],[493,376],[413,280],[338,385],[23,29],[421,522],[201,289],[19,26],[127,171],[41,70],[56,95],[155,294],[176,312],[64,133],[60,85],[59,85],[121,45],[292,92],[187,53],[166,30],[167,29],[182,80],[161,130],[193,201],[357,371],[132,189],[105,207],[84,192],[76,230],[31,60],[82,160],[115,179],[219,247],[456,377],[457,486],[279,349],[165,247],[109,340],[22,159],[5,43],[-1,24],[-10,206],[0,2],[0,3],[0,2],[-1,3],[0,2],[0,3],[0,2],[0,3],[0,3],[0,2],[-1,2],[0,3],[0,1],[0,2],[0,3],[0,3],[0,2],[0,3],[0,3],[-1,2],[0,3],[0,2],[0,2],[0,3],[0,3],[0,3],[-1,3],[0,2],[0,2],[0,2],[0,1],[0,4],[0,3],[0,5],[-4,100],[0,8],[-13,80],[-26,172],[-33,122],[-10,37],[-11,40],[-10,37],[-13,51],[-20,135],[-7,55],[-1,7],[27,232],[70,174],[34,32],[122,111],[46,28],[97,61],[53,32],[50,32],[80,49],[66,41],[33,21],[64,39],[87,91],[10,10],[66,69],[31,33],[39,40],[41,78],[36,69],[70,132],[8,15],[133,253],[136,257],[148,138],[202,147],[93,68],[1,1],[110,85],[69,52],[91,128],[56,264],[0,1],[0,1],[1,2],[0,3],[2,8],[1,4],[20,83],[5,21],[10,42],[7,30],[2,8],[1,4],[11,50],[30,140],[0,1],[41,204],[11,48],[7,30],[9,38],[32,78],[23,26],[50,57],[47,38],[45,36],[43,35],[45,37],[17,14],[41,33],[35,29],[17,14],[50,40],[45,38],[65,53],[55,46],[75,51],[49,34],[11,8],[5,3],[1,1],[8,5],[80,58],[109,78],[99,73],[71,52],[21,15],[18,13],[7,6],[3,2],[6,5],[7,4],[4,3],[3,2],[1,1],[1,1],[2,1],[2,2],[3,2],[2,1],[2,2],[2,1],[2,1],[2,2],[2,1],[3,3],[3,1],[3,3],[1,0],[3,2],[4,3],[2,2],[4,2],[4,3],[4,4],[4,2],[3,2],[3,3],[3,2],[9,6],[3,2],[4,3],[4,3],[3,2],[4,3],[2,1],[2,2],[4,3],[3,2],[3,2],[3,2],[2,2],[3,1],[3,3],[3,1],[3,2],[4,3],[4,3],[3,3],[4,2],[4,3],[4,3],[2,2],[3,2],[3,2],[4,2],[3,2],[2,2],[3,2],[2,2],[4,2],[3,3],[4,3],[3,2],[4,3],[5,3],[4,3],[5,3],[5,4],[5,4],[5,3],[6,4],[4,4],[4,2],[2,1],[2,2],[1,1],[5,3],[20,14],[1,1],[140,96],[87,60],[4,2],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[8,6],[1,1],[1,0],[1,1],[1,0],[1,1],[4,3],[6,4],[5,3],[3,2],[15,10],[12,8],[12,8],[11,7],[11,7],[22,15],[60,39],[84,56],[26,17],[49,28],[180,102],[34,23],[146,101],[138,95],[116,63],[116,63],[121,66],[98,59],[109,66],[79,48],[75,45],[34,21],[1,1],[70,48],[99,68],[97,66],[65,46],[30,20],[55,38],[29,20],[20,14],[27,19],[4,2],[89,56],[101,64],[59,37],[11,6],[174,110],[61,53],[92,79],[93,80],[63,54],[46,40],[28,24],[317,367],[206,248],[183,239],[115,266],[49,146],[24,175],[23,299],[15,230],[-9,183],[-235,1588]],[[492228,179606],[-1,10],[-3,21],[-259,1847],[-120,856],[1914,791],[205,85],[211,87],[712,312],[36,18],[426,203],[370,209],[266,161],[288,144],[218,119],[235,159],[180,144],[249,183],[93,64],[41,28],[147,97],[103,68],[459,356],[216,176],[164,193],[298,349],[119,125],[99,131],[38,35],[189,167],[50,27],[82,43],[318,-8],[214,-111],[160,-33],[139,81],[124,72],[256,149],[295,-47],[285,39],[459,161],[208,157],[462,350],[135,68],[599,328],[197,72],[253,-40],[115,18],[86,55],[226,244],[75,27],[67,-35],[109,-102],[294,-271],[114,-110],[109,-37],[116,37],[173,142],[252,226],[286,182],[146,32],[131,14],[101,32],[85,64],[198,369],[167,421],[142,353],[277,480],[377,485],[125,160],[210,205],[213,175],[222,110],[273,91],[251,64],[295,75],[402,120],[197,168],[110,144],[110,145],[248,248]],[[548405,202542],[190,-28],[230,-179],[215,-168],[1066,-1399],[198,-386],[79,-610],[91,-124],[270,-108],[261,-48],[121,-128],[282,-633],[596,-755],[426,-323],[166,-82],[245,1],[139,47],[181,62],[59,20],[561,319],[991,101],[493,127],[530,299],[298,284],[212,300],[127,81],[121,-69],[25,-376],[-11,-549],[43,-324],[138,-447],[284,-531],[100,-135],[121,-118],[320,-168],[25,-13],[56,-29],[339,-117],[346,29],[210,153],[320,340],[248,172],[254,130],[257,71],[184,24],[311,5],[295,-62],[318,-225],[181,-67],[174,52],[457,226],[505,186],[400,82],[251,-39],[533,-182],[650,-186],[469,-175],[215,-62],[254,-120],[242,-153],[348,-318],[294,-269],[272,-93],[349,-77],[292,-69],[273,-46]],[[298386,310406],[-272,-153],[-384,-249],[-339,-190],[-245,-185],[-195,-152],[-118,-141],[-198,-394],[-289,-283],[-416,118],[-347,265],[-310,-12],[-291,-267],[-85,-194],[-253,-291],[-241,-345],[-85,-430],[-302,-262],[-313,-150],[-247,-410],[-162,-691],[-248,-188],[-296,-28],[-136,-369],[-373,-426],[147,-466],[-295,-340],[-772,-138],[-111,-264],[90,-461],[-210,-209],[-249,59],[-480,-629],[-241,-139],[-140,-274],[-241,-133],[-120,-127],[-226,-159],[-220,-254],[-247,-167],[-262,-522],[-114,-405],[-105,-137],[-394,-294],[-481,-564],[-283,-133],[-105,-92],[-72,-144],[-366,-415],[-425,-688],[-171,-51],[-119,-97],[-185,-326],[-189,-254],[-134,-81],[-298,101],[-120,-76],[-218,-254],[-157,-76],[-276,1],[-98,-112],[-55,-201],[-14,-361],[-127,-138],[-65,-154],[-16,-180],[30,-203],[226,-653],[85,-472],[57,-540],[0,-593],[-29,-232],[-112,-384],[-143,-65]],[[284191,292483],[-191,595],[-170,834],[-176,374],[-191,267],[-6,188],[57,193],[105,123],[65,151],[-85,163],[-234,269],[-57,193],[-13,177],[28,178],[92,135],[127,95],[56,169],[7,409],[65,201],[211,294],[57,153],[140,716],[79,175],[134,143],[66,159],[14,32],[53,127],[1,185],[-42,195],[-100,268],[-507,428],[-107,202],[-453,681],[-113,624],[-277,237],[-154,321],[-14,424],[98,471],[16,390],[111,846],[3,213],[-71,373],[-177,326],[-50,208],[-1,212],[78,344],[70,178],[107,133],[84,162],[171,575],[-8,397],[-98,334],[-129,97],[-126,39],[-248,347],[-360,226],[-432,144],[-155,140],[-49,187],[-7,187],[-43,213],[-163,392],[-69,600],[-78,167],[-113,131],[-141,309],[-114,444],[-119,650],[-184,727],[-305,999],[-21,180],[-65,155],[-97,114],[-113,-131],[-21,-416],[-71,-175],[-128,-29],[-162,77],[-99,148],[-290,202],[-98,176],[-92,454],[-107,165],[-156,-8],[-197,-272],[-20,-191],[-93,-146],[-255,-143],[-262,-277],[-38,-39]],[[288384,349073],[50,-2],[151,-5],[47,-38],[19,-47],[-25,-107],[11,-34],[27,-10],[58,-21],[58,28],[59,-29],[10,-4],[10,-5],[15,-107],[10,-144],[10,-84],[71,-63],[56,-53],[33,-82],[27,-31],[50,-16],[77,-31],[63,-50],[101,-4],[123,-130],[4,-4],[104,-41],[125,-22],[112,-44],[91,-88],[81,-94],[45,-53],[45,-53],[4,-44],[4,-44],[-31,-63],[-113,-52],[-53,2],[-27,-132],[-25,-69],[-2,-97],[10,-113],[-4,-75],[0,-69],[-43,-35],[-11,-100],[-21,-50],[-69,-30],[-70,21],[-62,-43],[-48,-26],[-50,18],[2,41],[-23,28],[-29,-31],[-20,-59],[-3,-7],[-4,-32],[0,-2],[44,-21],[-5,-76],[77,-352],[110,-263],[75,-213],[25,-195],[44,-200],[56,-91],[12,-50],[-31,-88],[23,-78],[71,-44],[10,-7],[15,-65],[-15,-98],[-48,-117],[97,-192],[5,-10],[133,-132],[104,-60],[14,-11],[112,-88],[57,-10],[22,-22],[68,-89],[25,-6],[24,-6],[6,-12],[25,-48],[31,-60],[44,-128],[36,-55],[69,0],[79,3],[59,42],[63,46],[57,5],[27,-43],[20,-86],[34,-23],[18,-62],[-23,-25],[32,-40],[38,-62],[39,-81],[50,-118],[12,-130],[30,-102],[57,-116],[40,-81],[34,-52],[27,-111],[39,-36],[63,-195],[21,-108],[-6,-114],[-36,-103],[5,-35],[3,-13],[2,-14],[7,-42],[74,-101],[52,-90],[31,-126],[24,-173],[-33,-41],[0,-56],[45,-28],[36,-26],[60,-21],[21,-60],[4,-60],[58,-28],[67,-41],[45,-47],[3,-14],[2,-15],[2,-12],[10,-62],[31,-126],[6,-90],[-12,-110],[-2,-119],[41,-104],[-35,-78],[46,-100],[85,-16],[63,55],[103,81],[60,63],[69,43],[56,-36],[52,-68],[63,6],[10,-4],[112,-46],[65,-63],[41,-75],[119,-116],[35,-66],[19,-169],[39,-80],[81,-74],[110,49],[71,-49],[135,0],[48,53],[50,110],[66,13],[40,12],[28,30],[3,66],[26,111],[33,25],[39,10],[28,-11],[36,45],[52,85],[2,33],[-8,37],[19,53],[20,70],[39,75],[37,56],[27,93],[34,97],[17,22],[23,2],[44,58],[36,37],[52,32],[26,28],[24,119],[17,124],[24,47],[34,36],[32,0],[13,20],[16,53],[-8,54],[12,32],[19,26],[18,32],[20,69],[19,19],[34,13],[39,22],[21,-6],[74,-47],[42,-3],[28,-4],[20,19],[34,44],[30,82],[56,89],[60,86],[54,78],[4,28],[4,44],[28,9],[31,21],[18,59],[24,99],[36,99],[22,72],[11,95],[1,78],[7,60],[2,39],[24,51],[49,142],[9,71],[-1,47],[11,44],[29,28],[37,27],[128,202],[88,210],[15,124],[90,200],[133,293],[94,188],[79,152],[33,123],[19,46],[29,27],[40,20],[54,30],[63,52],[99,84],[38,26],[15,34],[37,68],[47,84],[54,67],[40,11],[29,30],[24,71],[0,85],[-10,67],[0,2],[9,53],[31,49],[15,88],[32,110],[26,78],[31,68],[27,50],[65,85],[41,50],[47,17],[42,55],[104,148],[26,107],[5,96],[2,37],[17,58],[34,69],[29,34],[30,17],[45,70],[21,48],[8,56],[15,26],[24,43],[11,78],[-22,82],[-23,49],[1,54],[49,55],[14,64],[1,84],[-2,74],[56,66],[47,54],[62,41],[37,116],[36,116],[60,177],[38,86],[34,72],[43,165],[73,192],[640,1456],[51,155],[23,109],[20,125],[8,76],[-2,66],[25,73],[75,217],[26,-6],[43,-21],[44,-36],[39,-13],[38,-21],[35,-27],[40,-44],[27,-40],[23,-64],[4,-59],[-4,-42],[5,-36],[30,-8],[27,-24],[24,-12],[21,-17],[23,-63],[22,-22],[47,-46],[47,-46],[64,-39],[77,-42],[59,-8],[60,-15],[37,-53],[40,-74],[39,-73],[58,-60],[67,-57],[25,-27],[9,-47],[-9,-59],[4,-67],[45,-99],[-25,-68],[-76,-57],[-108,-38],[-58,-25],[-23,-70],[23,-88],[71,-57],[43,-125],[50,-167],[54,-55],[30,-38],[38,-21],[38,-8],[21,-30],[24,-42],[28,-34],[28,-57],[17,-57],[24,-59],[30,-44],[31,-36],[40,-8],[61,21],[69,25],[48,19],[65,-8],[72,-22],[62,-38],[56,-65],[36,-67],[11,-45],[12,-50],[3,-53],[11,-99],[36,-73],[22,-67],[8,-84],[31,-51],[47,-34],[74,-23],[55,0],[51,30],[35,61],[-1,57],[44,53],[71,36],[74,103],[61,82],[24,68],[20,97],[48,11],[36,-1],[10,22],[4,108],[6,39],[13,61],[28,19],[29,20],[31,23],[19,52],[19,79],[10,78],[89,107],[39,60],[19,10],[48,-13],[61,-55],[42,-33],[56,-26],[36,2],[45,-33],[37,-24],[32,-54],[67,-19],[59,-41],[36,19],[31,26],[64,84],[34,46],[31,43],[58,36],[13,19],[15,40],[-4,45],[28,48],[33,20],[12,-16],[15,-21],[42,2],[23,-25],[30,-72],[40,-63],[74,-40],[81,-38],[62,-17],[65,-19],[27,3],[59,45],[54,67],[86,115],[71,79],[45,58],[24,28],[19,15],[194,78],[29,10],[21,0],[22,-19],[18,-17],[5,-26],[13,-12],[40,0],[61,-8],[59,-14],[46,-8],[29,-26],[23,-44],[18,-68],[20,-88],[56,-100],[36,-106],[29,-47],[48,-74],[49,-55],[37,-41],[25,-33],[19,-45],[20,-60],[25,-32],[29,-15],[27,1],[50,23],[53,54],[40,24],[54,-7],[24,-10],[30,-12],[45,-24],[35,-32],[28,-33],[27,-30],[15,-24],[11,-14],[12,-22],[9,-8],[5,-18],[9,-21],[10,-47],[12,-35],[17,-13],[18,5],[29,1],[35,7],[49,11],[58,-2],[35,-29],[27,-29],[74,-75],[95,-76],[52,-50],[28,-30],[38,-30],[54,-38],[37,-14],[55,-12],[165,13],[157,224],[50,474],[15,462]],[[386423,351951],[40,-155],[107,-186],[91,-115],[120,-64],[207,-15],[119,18],[71,11],[131,-14],[305,-69],[64,32],[64,32],[168,403],[23,188],[61,191],[109,171],[126,-7],[269,-129],[149,5],[579,159],[812,453],[176,45],[129,-52],[125,-118],[142,-10],[126,40],[349,312],[155,8],[98,-110],[78,-623],[70,-195],[106,-133],[134,-49],[419,-54],[196,39],[328,429],[140,66],[679,-448],[54,-35],[680,-447],[628,-232],[311,-165],[799,172],[571,-24],[114,-84],[227,-430],[22,-179],[70,-199],[296,-456],[248,-247],[319,-126],[451,-13],[388,-133],[573,1],[444,222],[439,516],[332,303],[346,192],[207,37],[804,-307],[522,7],[129,-93],[148,-325],[120,-115],[119,91],[263,467],[360,425],[643,934],[162,136],[176,44],[178,-37],[40,-106],[109,-286],[170,-449],[360,-554],[402,-983],[134,-49],[416,-34],[341,61],[133,-35],[290,-286],[92,-155],[50,-386],[-40,-334],[-10,-88],[-92,-334],[-310,-469],[-143,-363],[-113,-117],[-134,-45],[-197,28],[-948,211],[-135,-20],[-133,-105],[-79,-155],[-26,-355],[-127,-417],[-312,-694],[-71,-254],[-35,-520],[-24,-95],[-24,-96],[-45,-175],[-104,-178],[-523,-390],[-114,-155],[-55,-180],[78,-150],[119,-115],[396,165],[267,4],[843,-291],[84,-183]],[[405161,342775],[-29,-458],[-191,-755],[-411,-931],[-111,-388],[-219,-466],[-665,-794],[-105,-285],[-163,-300],[-594,-682],[-240,-195],[-92,-345],[-219,-268],[-226,-176],[-516,-626],[-84,-340],[-23,-225],[-161,-283],[-290,39],[-254,-69],[-249,-178],[-361,-447],[-839,-1315],[-232,-499],[-122,-420],[-1031,-1782],[-171,-695],[-402,-611],[-1024,-615],[84,-570],[382,-545],[56,-507],[-175,-545],[-292,-405],[-267,-99],[-305,141],[-347,89],[-167,-259],[-403,-276],[-764,-92],[-649,103],[-163,-60],[-262,-23],[-516,-338],[-530,-251],[-403,-22],[-375,-140],[-388,-200],[-645,290],[-281,-267],[-770,-1138],[-700,34],[-359,-62],[-716,-351],[-402,94],[-212,263],[-205,476],[-155,807],[-296,309],[-659,429],[-332,-235],[-452,-537],[-181,-164],[-136,-124],[-263,-1307],[-402,-419],[-246,-521],[-455,-469],[-819,-269],[-318,-432],[-847,44],[-537,358],[-332,43],[-495,-145],[-453,-256],[-854,-861],[-326,-224]],[[377805,320033],[-430,-18],[-369,-115],[-310,-383],[-402,-126],[-157,-285],[-352,-237],[-191,297],[-113,646],[-397,122],[-354,-452],[-587,-654],[-151,-7],[-249,-12],[-263,245],[-351,-20],[-256,536],[-982,835],[-412,50],[-663,215],[-437,458],[-264,498],[-451,291],[-473,-46],[-480,-228],[-439,213],[-1195,1260],[-225,-66],[-1809,-1276],[-580,-485],[-282,-393],[-169,-640],[-305,-475],[-288,-326],[-235,-369],[-134,-280],[-346,-120],[-411,93],[-374,-597],[-226,-485],[-28,-516],[-65,-530],[-140,-175],[-432,447],[-310,830],[-388,273],[-899,-610],[-1086,-1007],[-405,-228],[-358,-326],[-278,-537],[-196,-533],[-44,-310],[-310,-190],[-326,-262],[-223,303],[-286,-12],[-481,-192],[-63,-698],[-212,-78],[-403,-361],[-438,-129],[-339,-358],[35,-1360],[-49,-498],[-269,-228],[-260,-323],[-306,-253],[-92,-588],[-139,-386],[-328,-282],[-394,-39],[-374,-160],[-525,-1238],[-160,-516],[-256,-475],[-141,-49],[-142,-50],[-728,-406],[-324,235],[-170,563],[-550,-12],[-304,131],[-242,665],[-344,433],[-509,-526],[-439,94],[-353,-34],[-416,477],[-779,342],[-383,111],[-296,-354],[-121,-505],[-260,-701],[-162,-63],[-171,277],[-402,414],[-587,950],[-515,194],[-177,-676],[168,-586],[-528,-934],[-1293,-698],[-235,172],[-225,680],[-586,355],[-282,589],[-411,427],[-311,-41],[-121,-1132],[16,-419],[-149,-2095],[-459,-784],[-600,-253],[-150,363],[9,719],[-295,-19],[-462,-30],[-375,-327],[-311,21],[-304,73],[-240,-208],[-346,-20],[-247,-65],[-367,-494],[-382,-198],[-587,183],[-261,-326],[-368,-286],[-284,185],[-197,-176],[-410,-677],[-191,-642],[63,-617],[-487,-753],[64,-577],[-64,-454],[-267,-667],[-354,-459],[-390,-425],[-1023,-428],[-390,-472],[-459,-356],[-509,-323],[-416,-989],[-113,-916],[-481,-501],[-346,-263],[-376,-372],[-550,-153],[-601,-336],[-332,-416],[-424,-378],[-467,-588],[-232,-704],[-235,-317],[-359,-165],[-262,-601],[-149,-692],[-261,-234],[8,-3850],[7,-3850],[64,-1276]],[[312722,287651],[2259,2191],[919,1360],[345,430],[383,-21],[466,267],[488,1342],[543,744],[440,433],[1442,1856],[579,569],[849,675],[359,504],[917,842],[1550,1776],[714,905],[792,1220],[530,753],[218,384],[549,674],[453,663],[905,1773],[248,552],[22,745],[-149,448]],[[337935,331712],[282,-1495],[202,-1076],[310,-1646],[15,-79],[653,-3469],[35,-186],[57,-302],[37,-194],[85,680],[1171,9365],[1439,10923],[1036,7863],[154,88],[233,282],[289,175],[312,-11],[248,199],[741,1031],[100,622],[-84,544],[345,373],[387,-213],[405,-61],[79,57],[344,248],[417,-14],[488,-454],[402,-584],[657,-505],[156,35],[178,456],[332,289],[146,350],[525,695],[396,401],[245,202],[242,503],[63,417],[105,390],[186,183],[283,95],[69,308],[466,378],[1,428],[71,452],[162,180],[-402,461],[-235,-13],[-252,45],[-340,443],[40,627],[101,466],[319,113],[198,297],[253,79],[305,170],[283,317],[366,194],[318,89],[310,136],[149,87],[220,213],[127,42],[260,-56],[149,305],[233,184],[86,127],[84,126],[253,189],[122,241]],[[355347,364517],[107,-155],[81,-89],[38,-42],[43,-48],[4058,-2912],[435,-312],[1051,-755],[1298,-933],[1742,-1251],[14,-10],[12,-9],[940,-675],[234,-169],[67,-48],[471,-338],[1265,-909],[739,-531],[88,-112],[6,-8],[11,-13],[1,-2],[10,-13],[27,-34],[52,-47],[52,-41],[38,-30],[6,-5],[19,-15],[225,-212],[6,-5],[11,-10],[12,-9],[111,-92],[47,-29],[109,-43],[29,-24],[58,-57],[99,-101],[55,-42],[53,-45],[24,-28],[3,-15],[0,-2],[-3,-26],[-14,-34],[-69,-91],[-8,-9],[-2,-4],[-33,-42],[-54,-71],[-70,-126],[-122,-160],[-64,-50],[-16,-13],[-2,-1],[-43,-36],[-44,-36],[-74,-82],[-104,-133],[-74,-97],[-81,-97],[-37,-44],[-73,-104],[-46,-102],[-10,-51],[-1,-23],[0,-23],[18,-81],[16,-59],[13,-32],[12,-33],[27,-210],[1,-9],[6,-116],[-16,-73],[32,-116],[47,-90],[48,-90],[54,-112],[59,-105],[12,-23],[57,-112],[19,-89],[20,-90],[1,-87],[-5,-67],[22,-50],[26,-24],[26,-25],[43,-32],[15,-34],[7,-19],[32,-50],[16,-56],[43,-30],[58,-24],[65,-48],[36,-42],[42,-80],[30,-70],[26,-90],[32,-104],[39,-88],[27,-53],[2,-4],[45,-71],[31,-49],[31,-50],[5,-3],[32,-26],[37,-4],[46,9],[9,2],[27,8],[23,32],[20,67],[1,2],[17,64],[13,21],[31,6],[29,-6],[35,-1],[38,-4],[16,-9],[7,-20],[1,-12],[0,-2],[2,-14],[-6,-15],[-10,-23],[-21,-23],[-7,-9],[-47,-21],[-35,-52],[-39,-74],[-35,-110],[-14,-50],[18,-42],[54,-58],[3,-2],[43,-41],[30,-59],[-35,-65],[4,-80],[30,-138],[44,-155],[2,-5],[38,-78],[46,-47],[41,-75],[37,-93],[-16,-64],[-20,-72],[17,-30],[37,-13],[20,-8],[11,-5],[9,-24],[-31,-70],[-9,-42],[37,-11],[53,37],[42,91],[41,53],[44,38],[42,-22],[41,-40],[9,-45],[-16,-93],[4,-61],[-27,-54],[-46,0],[-21,-37],[-21,-80],[-55,-101],[-44,-78],[-35,-97],[-1,-1],[-35,-107],[-19,-101],[17,-32],[50,3],[5,-19],[-35,-80],[-39,-67],[-32,-111],[-37,-107],[-41,-96],[-46,-53],[-4,-6],[-50,-64],[-50,-109],[-44,-61],[-37,-35],[-42,-18],[-98,24],[-49,21],[-37,32],[-51,64],[-53,21],[-97,-5],[-85,24],[-62,-22],[-44,-13],[-13,-37],[-35,-208],[-23,-213],[-25,-223],[-42,-431],[-28,-283],[-14,-202],[38,-203],[113,-160],[103,-128],[113,-261],[141,-165],[152,-133],[82,-122],[50,-106],[81,-245],[78,-315],[67,-224],[64,-117],[56,-101],[64,-144],[247,32],[113,-85],[90,-229],[140,-27],[121,52],[126,102],[106,104],[72,24],[504,794],[162,123],[163,32],[127,11],[152,95],[516,373],[374,146],[219,66],[202,-7],[192,-154],[435,-187],[349,-32],[350,125],[154,97],[168,144],[320,195],[277,160],[245,93],[250,-33],[219,-57],[465,-195],[225,-40],[541,99],[314,115],[55,27],[135,66],[147,193],[45,88],[58,113],[11,22],[125,230],[19,35],[106,195],[120,88],[247,181],[31,18],[287,167],[220,111],[168,167],[194,86],[159,71],[77,53],[29,19],[29,20],[12,11],[105,103],[31,29],[9,12],[100,132],[80,65],[144,116],[33,9],[419,111],[104,11],[104,11],[113,47],[58,24],[213,91],[15,6],[15,7],[213,90],[349,144],[763,315],[243,100],[13,12],[177,160],[79,74],[10,11],[11,10],[247,235],[376,366],[102,207],[7,15],[57,77],[23,31],[34,46],[80,175],[27,58],[37,79],[4,10],[16,35],[46,99],[57,104],[10,18],[107,181],[80,134],[34,55],[83,133],[6,9],[29,47],[64,35],[44,1],[112,4],[168,-54],[23,-8],[72,-6],[125,-10],[50,63],[24,99],[-158,415],[-19,196],[23,213],[57,122],[95,29],[83,-29],[69,-100],[135,-119],[107,-21],[259,68],[248,169]],[[726438,777619],[-26,-948],[25,-490],[44,-498],[0,-238],[-59,-215],[-113,-275],[-162,-260],[-64,-208],[-29,-223],[-58,-462],[-58,-254],[-36,-175],[-227,-528],[-100,-282],[-105,-309],[-47,-207],[-6,-85],[-10,-173],[16,-276],[-6,-280],[3,-301],[-55,-219],[-53,-175],[-34,-170],[-27,-199],[-39,-151],[-18,-257],[-43,-279],[-41,-177],[-53,-224],[-12,-100],[9,-186],[63,-150],[90,-143],[73,-76],[108,-182],[172,-203],[94,-147],[132,-206],[130,-215],[130,-214],[150,-249],[169,-279],[139,-203],[229,-337],[190,-250],[152,-215],[172,-266],[147,-258],[150,-222],[174,-48],[81,-83],[95,-161],[3,-10],[60,-214],[-16,-183],[-42,-222],[-84,-254],[-42,-326],[-95,-230],[-163,-199],[-236,-460],[-200,-320],[-145,-182],[-110,-191],[-34,-305],[-12,-187],[32,-193],[88,-152],[76,-139],[92,-260],[63,-103],[138,-30],[72,-54],[-56,-151],[152,-170],[141,-72],[32,-151],[-16,-236],[-60,-187],[-165,-164],[-152,-103],[-161,-157],[-148,-151],[-144,-133],[-177,-231],[-152,-350],[-152,-350],[-68,-351],[-133,-236],[-140,-193],[-206,-185],[-267,-47],[-179,-71],[-121,-96],[-209,-345],[-93,-213],[-154,-351],[-206,-470],[-106,-614],[-90,-619],[-110,-405],[-90,-310],[-116,-381],[-84,-175],[-47,-214],[-74,-267],[-26,-424],[-16,-460],[-66,-400],[-129,-410],[-140,-497],[-108,-332],[-88,-327],[-117,-139],[-291,-44],[-370,-119],[-187,-163],[-187,-163],[-183,-218],[-140,-206],[-40,-193],[-69,-309],[-5,-259],[57,-204],[53,-184],[-36,-362],[-91,-155],[-90,-154],[-108,-157],[-71,-261],[79,-404],[-5,-154],[-23,-142],[-119,-175],[-186,-176],[-215,-302],[-93,-89],[-173,-298],[-124,-266],[-124,-398],[-60,-443],[14,-528]],[[720311,742810],[-211,-256],[-107,-108],[-224,-94],[-300,-41],[-265,-79],[-337,-107],[-99,-35],[-81,-47],[-117,-146],[-164,-291],[-164,-436],[-81,-209],[-173,-351],[-200,-376],[-287,-454],[-220,-351],[-255,-304],[-215,-175],[-227,-358],[-301,-756],[-143,-223],[-188,-155],[-271,-170],[-160,-124],[-178,-188],[-100,-105],[-114,-8],[-175,-83],[-76,-94],[-109,-165],[-57,-103],[-144,-39],[-89,51],[-62,103],[-71,90],[-93,182],[-73,170],[-87,199],[-106,157],[-94,153],[-138,99],[-246,94],[-174,35],[-180,4],[-177,-98],[-157,-185],[-117,-137],[-71,-189],[-57,-110],[-81,-20],[-55,-59],[11,-75],[66,-79],[10,-102],[-38,-100],[-38,-100],[-43,-81],[-43,-81],[-86,-43],[-123,32],[-104,-28],[-112,-100],[-89,-128],[-57,-104],[-84,-152],[-96,-177],[-86,-148],[-141,-174],[-86,-134],[-55,-118],[-138,-135],[-103,-19],[-103,-19],[-164,20],[-138,157],[-109,185],[-77,130],[-187,194],[-120,124],[-248,224],[-193,103],[-115,32],[-139,-3],[-181,-35],[-102,-49],[-120,-99],[-70,-94],[-94,-55],[-104,-16],[-146,47],[-115,32],[-84,-19],[-70,-87],[-101,-87],[-153,-23],[-192,-56],[-166,-66],[-165,-87],[-46,-47],[-74,-75],[-10,-145],[10,-142],[1,-114],[2,-146],[29,-236],[28,-237],[-13,-93],[-85,-210],[-37,-168],[-16,-357],[-25,-83],[-21,-67],[-47,-51],[-42,-35],[-32,-36],[-15,-98],[-23,-143],[-45,-293],[-84,-170],[-177,-23],[-94,-40],[-57,-126],[-31,-165],[-110,-503],[-182,-464],[-99,-103],[-167,-173],[-136,-133],[-120,-205],[-109,-228],[-77,-163],[-116,-160],[-101,-139],[-35,-34],[-61,-59],[-69,-63],[-77,-57],[-58,-69],[-59,-104],[-130,-269],[-71,-153],[-128,-189],[-83,-134],[-90,-147],[-45,-89],[-40,-108],[-41,-112],[-54,-128],[-53,-82],[-40,-43],[-40,-43],[-36,-30],[-47,-29],[-44,-20],[-54,-33],[-55,-40],[-42,-28],[-34,-36],[-32,-38],[-59,-38],[-46,-31],[-53,-41],[-30,-17],[-49,-27],[-52,-56],[-74,-47],[-44,-40],[-32,-27],[-51,-27],[-35,-5],[-60,14],[-35,18],[-25,-4],[-22,2],[-41,2],[-56,0],[-47,0],[-49,3],[-34,16],[-68,3],[-73,26],[-20,65],[-15,42],[-43,10],[-60,68],[-40,88],[-30,96],[-35,122],[-36,26],[-60,27],[-77,84],[-105,132],[-71,88],[-23,66],[-30,75],[-37,22],[-40,-3],[-16,-49],[-27,-15],[-62,33],[-87,53],[-95,30],[-46,4],[-138,11],[-82,56],[-82,57],[-77,64],[-78,49],[-47,37],[-70,50],[-52,14],[-45,22],[-55,15],[-59,-22],[-46,-8],[-66,-48],[-68,7],[-79,-34],[-72,-30],[-38,-37],[-40,-38],[-64,-56],[-87,-33],[-13,18],[-32,45],[-43,-15],[-57,15],[-45,-26],[-79,-38],[-45,-85],[-39,-82],[-54,20],[-15065,721],[-1323,64],[-7637,6042],[-1357,1074],[-10272,8128]],[[664414,744362],[213,63],[166,76],[134,126],[65,126],[-1,209],[-2,112],[-29,181],[-42,286],[-56,356],[-55,300],[-19,307],[193,1434],[2,311],[-14,230],[-14,244],[-60,230],[-102,231],[-106,139],[-114,165],[-215,345],[-46,147],[-47,258],[15,837],[27,551],[24,491],[46,151],[134,133],[176,51],[87,148],[75,205],[32,377],[5,412],[46,230],[74,189],[115,160],[121,154],[148,132],[795,831],[250,202],[194,153],[149,84],[111,42],[97,-21],[171,-91],[64,-52],[51,-45],[193,-282],[136,-338],[29,-306],[-78,-334],[13,-177],[92,-133],[432,-391],[260,-178],[277,-318],[46,-86],[-1,-81],[-143,-665],[20,-132],[101,-166],[88,-67],[144,-26],[192,75],[156,40],[191,9],[156,-49],[183,-35],[392,-54],[167,31],[127,72],[138,115],[151,169],[120,262],[65,155],[80,240],[58,85],[64,25],[2221,308],[265,89],[289,195],[294,329],[224,328],[206,516],[112,399],[77,436],[41,573],[18,399],[17,338],[27,360],[6,195],[-15,222],[-41,187],[-39,124],[-141,351],[-79,116],[-136,133],[-121,58],[-82,31],[-88,40],[-109,0],[-97,-22],[-159,-54],[-124,-22],[-183,-13],[-147,40],[-108,82],[-337,326],[-156,129],[-150,31],[-171,-13],[-197,-106],[-165,-103],[-144,9],[-203,89],[-267,163],[-95,59],[-95,155],[-241,634],[-69,244],[-16,153],[8,129],[21,129],[53,199],[65,120],[59,76],[85,58],[104,-12],[124,-24],[120,56],[134,106],[407,864],[92,187],[80,106],[125,54],[194,134],[163,135],[140,168],[317,405],[131,178],[121,150],[196,258],[29,57],[91,180],[42,146],[-18,142],[-84,195],[-115,195],[-7,12],[-59,90],[-177,270],[-70,324],[15,217],[42,193],[48,67],[134,184],[256,231],[124,101],[160,140],[654,497],[154,71],[501,-38],[263,58],[274,163],[516,774],[72,200],[-229,1102],[-6,272],[21,231],[37,200],[244,604],[-45,328],[-249,323],[-163,149],[-73,106],[-34,163],[-88,199],[-12,181],[54,194],[6,188],[-60,357],[-3,118],[17,51],[72,42],[142,47],[158,67],[150,121],[93,127],[65,116],[37,113],[15,89],[2,117],[17,148],[-23,82],[-16,87],[-64,63],[-1006,491],[-204,169],[-179,164],[-146,216],[-65,111],[-70,169],[-77,289],[-54,376],[5,202],[44,280],[110,279],[118,246],[51,67],[309,401],[339,366],[285,170],[705,476],[503,221],[166,74],[127,110],[118,74],[140,22],[189,49]],[[785671,914513],[4,-78],[5,-78],[-11,-116],[-11,-116],[-69,-221],[-130,-148],[-348,-156],[-26,-1042],[-228,-591],[213,-621],[-126,-334],[-426,-120],[-147,-84],[-204,-219],[-108,-142],[-276,-700],[-41,-192],[169,-1782],[-164,-610],[-520,-823],[-587,-1490],[-36,-244],[15,-764],[-64,-403],[-205,-339],[-269,-996],[-517,-1493],[-76,-145],[-403,-213],[-367,-466],[-95,-393],[-101,-419],[-258,-721],[-423,-840],[-193,-221],[-5,-6],[-715,-667],[-544,-961],[-637,-1786],[-358,-624],[-572,-1387],[-114,-1202],[-390,-996],[-69,-1207],[-35,-168],[-404,-203],[-379,-53],[-186,-72],[-673,-443],[-303,-345],[-275,-40],[-869,413],[-501,5],[-191,-106],[20,-182],[261,-200],[700,-8],[228,-167],[-9,-202],[-368,-312],[-117,-734],[196,-495],[218,-256],[143,-91],[196,-283],[51,-164],[-134,-331],[-446,-379],[-36,-191],[0,-767],[164,-743],[260,-402],[242,278],[508,466],[122,61],[550,31],[373,278],[-29,-371],[-238,-270],[-197,-526],[-7,-312],[62,-190],[310,-240],[446,48],[106,-361],[-99,-2268]],[[714675,897527],[-214,196],[-76,58],[-69,37],[-62,-6],[-61,-53],[-61,-53],[-108,-53],[-103,-5],[-140,82],[-112,140],[-70,134],[3,109],[61,185],[12,164],[-9,236],[-77,212],[-47,104],[-43,142],[-21,127],[-33,210],[-22,246],[-3,212],[50,351]],[[713470,900302],[412,-141],[53,-18],[253,-81],[209,-47],[316,12],[337,3],[102,1],[4,-1],[391,-64],[211,-9],[193,36],[283,145],[290,98],[198,40],[129,17],[124,-62],[129,-93],[139,-238],[81,-148],[96,-222],[126,-172],[144,-25],[190,89],[140,102],[80,38],[79,51],[86,6],[88,58],[89,57],[144,159],[218,258],[217,252],[173,159],[126,109],[186,108],[152,38],[207,58],[173,31],[241,-31],[207,-122],[330,-178],[270,-191],[295,-175],[292,-88],[418,70],[149,155],[502,793],[156,123],[221,98],[197,24],[236,-51],[161,-57],[194,-217],[78,22],[125,163],[110,172],[139,166],[127,153],[153,119],[248,142],[241,38],[371,108],[347,141],[363,165],[177,70],[245,128],[245,89],[418,70],[224,76],[507,101],[106,33],[229,72],[157,20],[96,5],[96,5],[517,57],[49,-105],[29,-86],[53,-100],[20,-76],[41,-65],[35,-46],[18,-5],[17,13],[23,72],[16,46],[13,67],[27,68],[21,36],[13,16],[26,33],[12,39],[18,62],[14,72],[24,89],[17,39],[40,27],[34,31],[42,49],[22,53],[22,82],[15,48],[24,37],[15,8],[47,-15],[38,-25],[41,3],[86,90],[46,38],[30,57],[12,40],[18,29],[19,30],[27,11],[23,-15],[17,-13],[42,-40],[37,-7],[58,80],[37,55],[15,51],[0,83],[13,53],[33,31],[33,-8],[27,-36],[5,-42],[-12,-57],[-7,-31],[-7,-38],[11,-35],[37,-26],[36,-28],[40,-43],[23,-29],[46,-35],[74,-97],[46,-33],[41,-44],[50,-62],[23,-20],[18,2],[19,8],[39,17],[26,13],[35,-18],[41,-70],[56,-76],[52,-61],[27,-80],[23,-75],[62,-92],[87,-12],[64,29],[55,24],[35,37],[34,50],[21,39],[47,109],[22,51],[18,25],[25,27],[44,49],[35,46],[25,53],[5,29],[0,18],[-2,22],[-2,16],[-2,8],[4,19],[6,11],[13,27],[9,36],[23,50],[27,16],[23,21],[10,33],[1,29],[-3,28],[-3,41],[5,10],[11,5],[19,26],[1,32],[-4,32],[-4,18],[-4,19],[4,21],[4,20],[16,8],[25,-5],[36,4],[12,19],[12,20],[21,48],[16,64],[41,50],[67,41],[79,71],[89,79],[160,166],[44,0],[36,-13],[359,-370],[125,-101],[76,-61],[50,-13],[51,16],[74,67],[63,61],[21,54],[0,67],[-19,95],[-91,172],[-76,140],[-44,134],[-23,160],[8,108],[28,130],[27,74],[36,38],[72,3],[84,-41],[45,-42],[61,-130],[55,-86],[78,-54],[40,-20],[32,23],[70,67],[67,22],[78,6],[55,-9],[49,-32],[8,-30],[6,-50],[-27,-41],[-38,-77],[-34,-108],[-23,-105],[-4,-83],[9,-103],[-13,-69],[-45,-60],[-25,-67],[-4,-96],[10,-124],[19,-140],[21,-67],[43,-42],[46,1],[27,19],[37,5],[63,-60],[74,-118],[327,1042],[127,468],[120,446],[23,239],[-12,277],[-112,424],[-72,293],[-59,217],[-23,121],[-7,108],[28,153],[89,153],[35,61],[119,183],[90,218],[45,127],[145,462],[59,258],[34,255],[7,179],[-38,172],[-66,210],[-17,175],[4,178],[9,112],[-20,162],[-33,80],[-159,248],[-124,246],[-224,401],[-110,179],[-180,368],[-204,460],[-118,223],[-19,102],[-19,102],[19,93],[25,127],[53,264],[228,796],[101,332],[114,414],[182,637],[55,357],[10,274],[46,423],[104,386],[-25,388],[-51,319],[-32,208],[-58,230],[-35,74],[-35,74],[-72,96],[-42,62],[-42,62],[-109,355],[-60,423],[-21,627],[-275,1172],[-68,200],[-113,424],[-43,134],[-8,217],[42,197],[85,147],[152,153],[169,38],[206,-26],[300,-121],[141,-70],[235,-90],[317,-31],[194,77],[313,184],[186,153],[125,45],[152,40],[154,-33],[181,-39],[93,26],[144,299],[219,644],[12,170],[-63,307],[-21,147],[30,127],[144,198],[223,178],[195,70],[244,-15],[115,22],[98,97],[392,350],[135,75],[176,69],[200,33],[177,70],[173,149],[144,87],[97,38],[143,-51],[76,-138],[84,-174],[136,-223],[85,-191],[99,-232],[61,-99],[80,-13],[148,6],[180,0],[141,0],[1283,10],[18,1],[9,0],[60,0],[79,1],[204,1],[3706,30],[200,1],[1517,-16],[-327,533],[-160,382],[-26,166],[-8,191],[67,236],[43,216],[-21,193],[-81,304],[-185,344],[-79,238],[-40,195],[9,217],[50,376],[72,287],[97,363],[241,764],[182,618],[33,223],[7,224],[-61,299],[-119,433],[-55,261],[0,70],[0,70],[20,191],[52,134],[72,96],[127,140],[232,140],[351,121],[278,51],[275,13],[198,-32],[279,-70],[241,-153],[135,-146],[114,-185],[93,-242],[55,-300],[21,-146],[-21,-198],[-146,-663],[871,-1555],[137,137],[72,108],[34,95],[23,90],[9,73],[10,48],[32,35],[32,-7],[38,58],[23,28],[42,64],[19,83],[15,92],[19,83],[27,67],[26,57],[52,70],[47,16],[32,48],[8,57],[29,-1],[45,-40],[44,19],[45,7],[48,-42],[32,3],[84,-32],[135,-12],[129,-16],[45,38],[44,6],[49,13],[4,80],[38,44],[63,35],[40,61],[49,64],[80,54],[23,44],[-27,109],[-25,67],[2,51],[19,36],[-7,50],[-6,73],[-13,76],[-6,51],[34,51],[-28,61],[30,38],[2,89],[-10,65],[-30,43],[-34,58],[-34,70],[-15,19],[13,73],[-6,81],[-36,-4],[-49,35],[-8,114],[-25,71],[0,121],[12,105],[11,86],[52,91],[72,103],[64,105],[59,67],[23,26],[32,25],[31,29],[34,6],[47,-25],[61,-13],[49,-7],[73,48],[70,23],[70,41],[38,65],[54,92],[69,118],[99,18],[50,48],[45,44],[-1,50],[8,68],[11,19],[20,39],[32,156],[10,48],[28,44],[18,-3],[62,0],[6,57],[21,64],[55,13],[63,3],[61,73],[45,77],[19,102],[-20,77],[-58,120],[-108,67],[-38,67],[-59,70],[-108,118],[161,291],[126,117],[115,48],[1482,136],[355,58],[342,51],[310,118],[229,108],[204,107],[170,129],[469,385]],[[757513,936291],[-73,-718],[-81,-441],[-106,-361],[-56,-178],[-57,-185],[-22,-161],[-71,-1154],[-70,-945],[-22,-410],[-64,-196],[-130,-238],[-128,-104],[-150,-44],[-133,-12],[-98,-3],[-57,-11],[-34,-52],[-104,-260],[-312,-1251],[-15,-115],[7,-104],[26,-114],[25,-113],[25,-112],[60,-92],[150,-134],[172,-141],[74,-81],[49,-201],[25,-208],[5,-623],[-5,-728],[64,-297],[64,-141],[225,-367],[536,-624],[351,-323],[147,-148],[99,-105],[59,-185],[84,-401],[128,-453],[207,-609],[187,-394],[299,-413],[139,-112],[216,-37],[241,-2],[256,52],[281,112],[413,133],[350,15],[275,-37],[168,-89],[147,-164],[158,-363],[323,-1166],[3,-9],[210,-501],[35,-84],[236,-423],[84,-86],[83,-85],[207,-82],[94,15],[216,82],[561,356],[497,275],[227,89],[152,-15],[202,-123],[158,-189],[211,-311],[109,-112],[113,-59],[187,-15],[197,15],[270,111],[965,438],[364,149],[202,29],[251,-113],[182,-95],[131,-77],[130,-130],[128,-119],[99,-77],[99,-76],[221,-52],[99,34],[191,126],[271,268],[115,137],[140,93],[173,59],[197,15],[236,148],[138,127],[137,178],[158,44],[226,8],[79,81],[79,82],[64,112],[34,289],[-39,431],[-39,430],[-11,285],[-57,288],[-14,278],[18,122],[64,83],[143,119],[231,192],[103,215],[49,312],[-15,341],[-128,401],[29,408],[-4,253],[-25,200],[-93,112],[-79,102],[-39,128],[-19,113],[45,281],[157,371],[395,661],[229,245],[162,118],[173,97],[114,-37],[384,-446],[423,-312],[210,-107],[253,-130],[265,-45],[177,-15],[241,60],[251,15],[344,15],[53,10],[52,10],[106,20],[16,-2],[216,-31],[208,-156],[900,-949],[117,53],[157,74],[314,148],[-17,88],[10,53],[21,36],[18,31],[32,6],[26,-15],[68,-21],[51,12],[21,24],[1,31],[19,21],[27,-10],[12,17],[4,39],[-19,25],[-6,27],[11,30],[24,16],[18,0],[71,31],[42,47],[23,97],[27,178],[34,126],[39,108],[99,150],[4,47],[-10,45],[7,31],[40,32],[15,22],[10,28],[4,61],[7,43],[22,71],[13,30],[28,58],[52,134],[1233,-318],[120,-170],[136,-101],[649,-185],[190,-82],[234,-160],[206,-193],[271,-349],[99,-155],[68,-186],[64,-371],[35,-253],[54,-460],[88,-663],[138,-473],[104,-253],[113,-141],[340,-178],[83,22],[94,75],[374,809],[128,104],[177,30],[177,52],[133,0],[74,-75],[98,-126],[89,-126],[39,-201],[25,-215],[-5,-230],[-74,-267],[-133,-164],[-157,-81],[-171,30],[-124,-93],[-35,-130],[-96,-535],[-34,-230],[-55,-171],[-71,-70],[-157,-75],[-120,-114],[-63,-90],[-58,-114],[-168,-558],[-103,-401],[-239,-946],[8,-120],[31,-81],[65,-120],[47,-78],[53,-83],[43,-32],[194,-148],[155,-119],[119,-63],[100,-56],[86,-126],[138,-278],[145,-294],[123,-334],[82,-148],[140,-156],[224,-178],[223,-133],[99,-57],[40,-70],[29,-112],[106,-544],[47,-102],[58,-50],[116,-43],[69,-26],[30,-20],[14,-53],[20,-94],[19,-130],[14,-68],[18,-33],[36,-12],[57,-14],[102,-15],[145,7],[103,-2],[94,6],[121,0],[119,-37],[160,-89],[111,-86],[127,-78],[87,-79],[78,-80],[73,-100],[27,-98]],[[459339,147141],[195,-176],[262,102],[203,33],[30,-236],[15,-118],[14,-118],[-265,-477],[-45,-80],[-331,-147],[-369,-220],[-428,-132],[-515,279],[-19,89],[-58,277],[48,55],[49,55],[97,110],[525,337],[592,367]],[[464757,148211],[14,-147],[-48,-205],[-49,-205],[-311,-250],[-658,-350],[-304,-163],[-185,88],[-29,206],[175,234],[-68,176],[-22,193],[103,226],[104,226],[141,-15],[141,-14],[155,102],[80,16],[81,17],[160,32],[161,32],[51,10],[50,10],[122,-36],[121,-37],[15,-146]],[[466692,148974],[-75,-16],[-14,110],[-15,110],[117,491],[29,123],[29,123],[58,245],[78,61],[78,61],[82,5],[83,5],[44,-125],[43,-124],[-58,-425],[-87,-308],[-22,-35],[-22,-35],[-71,-111],[-70,-112],[-103,-22],[-104,-21]],[[454646,158163],[-85,-66],[-85,-66],[-63,103],[-22,-11],[-70,-33],[-141,-124],[-102,-44],[-131,-52],[-127,103],[2,35],[8,236],[43,66],[42,66],[43,66],[42,66],[60,58],[179,173],[126,17],[126,16],[116,-44],[6,-76],[19,-225],[14,-69],[15,-70],[-7,-62],[-8,-63]],[[451238,160088],[40,-43],[40,-42],[25,-48],[24,-47],[-75,-30],[-76,-29],[-53,51],[-54,52],[-17,0],[-158,7],[5,28],[5,27],[10,55],[16,3],[113,22],[33,-13],[32,-12],[53,27],[20,10],[17,-18]],[[450216,189600],[33,-17],[73,3],[73,3],[71,-43],[24,-15],[15,-75],[16,-75],[26,-50],[27,-50],[-10,-30],[-9,-31],[-46,-156],[-21,-80],[-21,-81],[-67,-57],[-67,-58],[-191,-90],[-30,-14],[-145,64],[-164,172],[-112,58],[-83,115],[-94,46],[-31,15],[-88,-56],[-89,-57],[8,-138],[-179,-11],[-16,63],[-120,301],[-96,241],[-97,241],[111,52],[50,5],[263,24],[130,14],[130,15],[29,-10],[49,-15],[48,-16],[109,-34],[108,-35],[199,-46],[184,-92]],[[450872,195579],[-434,-1470],[-21,-68],[-45,-127],[-77,-23],[-76,-23],[-88,41],[-88,40],[-123,25],[-380,79],[-402,84],[-206,42],[-187,52],[-187,52],[-42,-58],[-4,-132],[-46,-179],[0,-196],[-71,-152],[-39,-84],[-73,-71],[-168,-165],[-219,-240],[-75,-82],[-73,-16],[-74,-15],[-247,-53],[-109,-22],[-16,-4],[-20,114],[-32,179],[-8,45],[35,83],[136,318],[22,58],[94,243],[33,86],[60,123],[121,247],[92,150],[53,86],[96,135],[29,11],[51,19],[21,7],[45,-14],[15,-5],[52,-16],[31,-10],[12,-15],[50,-60],[56,-67],[29,-35],[19,-23],[19,-23],[38,-46],[54,-127],[45,64],[-12,26],[-60,123],[-61,121],[23,45],[49,163],[26,36],[25,37],[79,13],[63,52],[21,17],[12,39],[11,40],[27,-2],[26,-2],[96,92],[-6,61],[-6,60],[29,68],[59,139],[103,168],[138,92],[80,28],[107,47],[84,5],[34,-69],[12,-60],[11,-61],[61,-75],[56,-11],[55,-12],[443,81],[27,8],[221,67],[66,13],[22,4],[40,69],[40,69],[20,3],[114,15],[21,19],[78,73],[61,17],[29,-17],[28,-17],[14,-41],[13,-40],[-50,-231],[-7,-34]],[[477101,150408],[-67,-19],[-82,-46],[-99,-24],[-115,-5],[-114,3],[-126,17],[-72,8],[-76,21],[-214,21],[-323,69],[-229,73],[-110,147],[-75,63],[-97,8],[-95,-39],[-142,-3],[-48,35],[-48,34],[-147,66],[-82,47],[-81,46],[-108,61],[-64,6],[-77,78],[-51,26],[-2,-65],[23,-109],[22,-109],[17,-145],[-3,-180],[-42,-164],[21,-76],[5,-74],[5,-75],[-14,-202],[26,-146],[24,-101],[13,-106],[-12,-79],[-22,-45],[-21,-46],[-4,-61],[45,-82],[18,-41],[12,-72],[-20,-28],[-23,-31],[-31,-15],[-31,-15],[-237,-71],[-149,-30],[-150,-30],[-200,-60],[-142,-13],[-111,25],[-59,35],[-37,46],[-36,46],[-59,65],[-109,92],[-48,45],[-54,121],[-16,74],[-58,260],[-22,230],[5,216],[-20,260],[-20,125],[9,141],[54,76],[54,76],[14,44],[-92,59],[-92,59],[-80,38],[-295,144],[-159,58],[-133,49],[-131,29],[-174,42],[-347,64],[-45,0],[-85,0],[-73,-68],[-11,-13],[-25,-29],[-24,-29],[20,-45],[21,-45],[-3,-21],[-10,-92],[-32,-55],[-9,-16],[-90,-13],[-11,-8],[-11,-7],[-12,-62],[-29,-7],[-29,-6],[-32,-52],[-18,-10],[-29,-17],[-90,4],[-9,10],[-77,74],[-77,117],[-18,51],[-57,162],[-66,106],[-168,-107],[-10,-6],[-43,-103],[-4,-10],[-70,-32],[1,-15],[7,-58],[-26,-53],[16,-89],[-4,-82],[-1,-23],[-83,-32],[-26,8],[-83,27],[-19,-87],[-9,-43],[-9,-44],[-15,-13],[-32,-26],[-26,-53],[-68,-40],[-54,25],[-21,-12],[-34,-4],[-60,-16],[-30,29],[-28,68],[-7,-6],[-51,-46],[-143,-239],[-15,-328],[0,-11],[-88,-161],[-14,-16],[-95,-104],[-229,-361],[-166,-126],[-10,-7],[-203,-96],[-22,-10],[-100,3],[-75,83],[-7,7],[-21,58],[-71,-19],[-53,3],[-67,-132],[-5,-10],[-108,-194],[-104,-33],[-18,-5],[-22,2],[-53,4],[-146,-206],[-124,-39],[-66,-113],[-54,-10],[7,97],[-56,3],[-23,32],[4,172],[2,74],[-16,-2],[-61,-8],[-71,61],[-13,143],[-2,358],[5,28],[74,463],[53,198],[4,16],[31,115],[86,110],[45,49],[154,25],[56,71],[7,38],[8,37],[32,9],[113,-6],[107,58],[182,330],[139,316],[174,252],[154,126],[165,61],[11,57],[63,334],[14,71],[-45,407],[-18,171],[-5,55],[-54,287],[-11,36],[-69,233],[-83,181],[-89,191],[-128,279],[-41,97],[-65,153],[-87,160],[-105,191],[-33,56],[-72,123],[-92,140],[-56,85],[-98,118],[-22,26],[-140,154],[-130,118],[-143,123],[-158,121],[-88,59],[-88,60],[-163,97],[-244,126],[-135,72],[-136,72],[-350,137],[-317,118],[-413,128],[-507,114],[-662,207],[-315,104],[-92,31],[-92,28],[-276,67],[-220,44],[-130,-16],[-101,39],[-90,45],[-40,141],[13,121],[83,91],[-40,155],[-39,91],[-48,56],[-46,37],[-93,-24],[-93,-25],[-73,0],[-33,13],[-7,36],[5,49],[-34,2],[-21,0],[-22,0],[-27,45],[-16,62],[6,16],[17,47],[29,51],[-12,46],[-38,4],[-38,3],[-126,63],[-188,61],[-377,97],[-51,29],[-51,29],[-151,0],[-270,46],[-84,15],[-355,58],[-50,37],[-40,10],[-41,4],[-113,10],[-177,17],[-36,10],[-91,67],[-224,1],[-67,1],[-76,43],[-322,12],[-163,64],[-68,4],[-68,3],[-136,7],[-259,84],[-328,52],[-113,18],[-114,16],[-94,42],[-154,9],[-157,13],[-435,43],[-91,8],[-90,15],[-154,37],[-135,3],[-267,4],[-72,5],[-40,2],[-90,6],[-22,1],[-58,-24],[-57,-25],[-40,-18],[-36,-41],[-15,-17],[-4,-83],[-8,-45],[-51,-82],[-50,-163],[-5,-17],[-157,-37],[-77,-50],[-176,-114],[-67,-23],[-8,-2],[-39,-11],[-28,-8],[-15,36],[-39,87],[-16,38],[12,65],[6,30],[6,32],[7,32],[11,60],[56,9],[21,3],[21,4],[43,6],[2,47],[2,47],[2,66],[1,29],[52,-1],[30,-1],[63,0],[16,73],[15,75],[11,53],[-22,40],[-46,82],[-4,9],[-25,44],[-31,56],[-9,16],[-23,41],[-6,10],[-25,20],[-14,11],[-33,27],[-75,59],[-22,18],[-49,40],[-48,41],[-87,-1],[-74,0],[-124,-1],[-17,0],[-47,-7],[-62,-10],[-108,-97],[-24,-23],[-79,-73],[-15,-25],[-39,-69],[-19,-34],[-20,-34],[-60,-41],[-25,-17],[-13,-27],[-21,-42],[-21,-43],[-66,-49],[-13,-9],[-25,-3],[-70,-10],[-126,-17],[-30,7],[-30,7],[-59,14],[-82,-8],[-83,-9],[-13,0],[-75,-4],[-64,37],[-28,26],[1,29],[2,29],[-3,39],[24,35],[33,45],[12,18],[13,90],[4,26],[-30,56],[-30,55],[-78,0],[-78,0],[-108,-37],[-109,-37],[-23,-7],[-63,-21],[-76,-24],[-18,-6],[-27,-4],[-95,-14],[-95,-15],[-93,-2],[-166,-4],[-73,-3],[-50,-2],[-33,48],[-33,47],[3,93],[-36,39],[-12,15],[-15,27],[-14,28],[-13,113],[-6,52],[4,34],[13,115],[9,16],[23,41],[38,67],[16,29],[-37,0],[-37,0],[-35,-23],[-41,-27],[-41,-26],[-72,-7],[-84,-7],[-84,-7],[-29,44],[-30,44],[-41,9],[-10,12],[-10,12],[-3,17],[-1,9],[-1,9],[-14,3],[-14,4],[-16,-7],[-16,-7],[-25,-12],[-26,-12],[-17,-39],[-27,-4],[-27,-3],[-40,9],[-40,9],[-56,14],[-57,13],[-4,46],[-12,131],[-2,30],[15,25],[46,73],[20,31],[88,53],[112,5],[55,2],[48,-4],[110,60],[69,37],[80,53],[80,52],[-2,137],[-10,29],[-9,29],[10,35],[-28,235],[-27,234],[-34,169],[-33,168],[-19,45],[-58,136],[-54,126],[-53,126],[-81,77],[-22,43],[-22,42],[-104,194],[-64,62],[-90,-30],[-64,-58],[-96,-42],[-58,-37],[-76,-26],[-97,-23],[-97,-23],[-20,-12],[-40,28],[-29,4],[-29,5],[-116,-67],[-55,-26],[-56,-25],[-141,22],[-125,31],[-201,-26],[-88,47],[-127,91],[-10,93],[27,98],[27,99],[-4,70],[-3,70],[46,104],[46,102],[-125,51],[-49,84],[11,36],[11,37],[92,54],[54,-18],[65,66],[20,28],[20,27],[46,-11],[46,-12],[48,21],[47,-28],[68,-2],[67,19],[66,20],[81,72],[29,50],[28,50],[103,155],[51,51],[51,50],[79,81],[51,81],[48,34],[47,34],[-15,58],[-18,32],[-18,33],[-4,67],[-59,42],[-31,79],[-1,135],[32,117],[33,118],[29,54],[29,55],[-4,88],[-69,185],[-7,18],[-52,140],[-19,49],[-20,50],[-38,61],[-37,62],[-70,107],[-40,31],[-41,32],[-139,51],[-35,-6],[-34,-6],[-117,-186],[-75,-52],[-75,-52],[-51,-24],[-66,-4],[-38,-30],[-67,-112],[-25,-28],[-25,-28],[-48,-35],[-80,-5],[-79,-6],[-77,-20],[-77,-20],[-55,5],[-26,-20],[-25,-20],[-25,-55],[-58,-14],[-30,7],[-30,7],[-45,58],[-36,14],[-37,14],[-126,-53],[-38,-6],[-39,-7],[-236,-32],[-120,-35],[-228,-67],[-222,-12],[-63,-17],[-386,-105],[-80,-22],[-259,-10],[-259,-11],[-57,18],[-174,56],[-63,95],[-67,-42],[-66,-42],[-158,63],[-116,46],[-119,48],[-293,117],[12,109],[12,108],[71,39],[73,72],[168,0],[60,11],[164,31],[84,-159],[161,-52],[126,-32],[133,84],[137,98],[137,97],[222,207],[87,74],[86,73],[114,83],[17,37],[17,37],[212,160],[47,61],[47,60],[39,93],[38,92],[48,76],[48,75],[19,51],[-13,53],[-70,54],[-49,112],[-25,43],[-24,43],[-33,41],[-32,40],[-20,70],[-20,69],[-6,102],[-3,51],[-3,51],[25,143],[134,205],[81,37],[81,37],[144,76],[93,50],[51,27],[156,91],[102,51],[34,39],[32,57],[32,25],[40,15],[42,-9],[18,49],[22,91],[22,92],[-3,141],[-82,30],[-75,40],[-40,31],[-4,33],[-4,34],[11,130],[38,22],[52,19],[27,32],[27,32],[4,58],[3,58],[-6,72],[-7,73],[-29,75],[-91,72],[-78,19],[-66,71],[-67,71],[-17,30],[-16,29],[-11,95],[9,64],[8,65],[71,66],[56,53],[24,57],[24,56],[46,54],[31,25],[-26,49],[-26,50],[-85,52],[-61,57],[-23,23],[-23,24],[-52,78],[-21,110],[13,95],[33,140],[37,56],[37,57],[74,68],[99,48],[127,55],[108,41],[108,41],[171,46],[137,28],[92,9],[79,8],[109,-19],[104,-66],[35,-78],[38,-79],[5,-61],[6,-60],[-1,-185],[3,-132],[-6,-129],[-9,-111],[-34,-147],[-31,-116],[-9,-118],[5,-87],[31,-128],[144,-212],[76,-137],[21,-60],[22,-61],[88,-99],[41,-42],[42,-42],[73,-127],[3,-52],[2,-52],[-9,-105],[-22,-63],[-21,-64],[3,-125],[15,-41],[33,-58],[30,-62],[6,-77],[20,-76],[20,-60],[19,-60],[33,-86],[65,-54],[70,-19],[65,-2],[91,33],[40,36],[26,30],[26,30],[76,79],[19,21],[18,22],[25,49],[-13,45],[-35,69],[-53,78],[-26,40],[-25,39],[-30,30],[17,25],[18,25],[44,47],[25,42],[34,49],[15,25],[15,25],[59,50],[54,36],[27,57],[-16,128],[-10,73],[27,56],[25,8],[24,7],[41,-65],[13,-64],[13,-64],[25,-76],[132,52],[76,51],[113,-112],[101,-145],[101,-145],[33,-60],[16,-31],[16,-30],[-4,-27],[-47,-99],[-49,-78],[-49,-81],[-7,-25],[-8,-24],[-9,-52],[-22,-40],[-47,-46],[-42,-67],[-42,-67],[-41,-165],[-67,-40],[-7,-7],[-54,-53],[-35,-1],[-28,-26],[-24,-59],[-14,-47],[-15,-48],[-12,-63],[5,-30],[5,-30],[11,-61],[36,-100],[36,-86],[37,-86],[38,-84],[38,-85],[52,-104],[55,-101],[59,-107],[61,-103],[54,-59],[54,-60],[68,-12],[57,33],[84,47],[26,46],[26,46],[63,99],[87,93],[101,103],[174,67],[52,-43],[66,-100],[43,-68],[25,-90],[6,-132],[-4,-108],[11,-59],[23,-13],[24,-13],[30,0],[20,28],[4,74],[-5,66],[-19,90],[-13,104],[7,104],[19,112],[34,105],[54,78],[37,50],[37,35],[82,51],[59,7],[60,7],[65,-51],[91,-91],[5,-14],[-8,-254],[-4,-146],[-1,-164],[2,-82],[2,-81],[132,-35],[114,-4],[65,19],[136,55],[56,21],[56,21],[114,72],[91,51],[87,69],[41,34],[41,34],[56,57],[84,89],[24,27],[23,26],[50,40],[17,16],[17,16],[57,109],[56,110],[74,144],[68,103],[23,18],[37,55],[37,55],[84,57],[76,58],[94,65],[59,116],[48,134],[47,133],[51,224],[9,77],[27,60],[24,91],[12,87],[12,87],[21,84],[20,112],[54,121],[19,41],[26,88],[12,42],[44,147],[59,148],[63,175],[26,130],[0,69],[66,172],[65,172],[15,63],[29,113],[58,277],[10,81],[10,89],[6,90],[3,42],[7,58],[7,57],[0,25],[0,24],[-30,29],[-30,29],[-48,40],[-13,30],[-12,29],[-13,214],[-5,74],[0,80],[22,42],[54,44],[82,8],[32,43],[17,70],[17,70],[40,70],[-9,254],[-12,253],[-8,191],[-17,307],[-7,118],[-15,91],[-55,328],[-42,63],[-60,38],[-6,64],[-7,65],[21,52],[4,89],[-17,49],[-18,49],[-21,6],[-21,6],[-26,-41],[-26,-41],[-62,55],[-54,106],[-19,38],[-7,75],[19,14],[19,14],[-65,3],[-23,-89],[-23,-90],[0,-56],[-81,47],[-77,41],[-100,44],[-36,24],[-99,67],[-51,19],[-22,72],[-21,-3],[2,-35],[2,-34],[27,-51],[31,-37],[-8,-41],[-25,11],[-25,12],[-13,40],[-14,41],[-13,69],[-62,0],[-63,0],[-62,12],[-63,13],[-20,79],[-19,78],[-9,32],[-8,31],[-79,-79],[-29,-47],[-104,-169],[-42,-70],[-61,-44],[-31,2],[-31,1],[-42,13],[-53,24],[-53,23],[-109,19],[-30,-9],[-30,-10],[-127,-100],[-350,-51],[-44,-6],[-124,-7],[-37,-3],[21,101],[21,101],[-96,41],[-55,-37],[-56,-36],[-93,-30],[-34,-11],[-50,7],[-22,8],[-22,7],[-25,-26],[-25,-27],[-27,-101],[-12,-39],[-13,-39],[-119,-7],[-46,29],[-47,28],[-21,20],[-21,21],[-80,3],[-81,3],[-33,-9],[-119,-32],[-81,-8],[-81,-7],[-117,6],[-31,91],[-12,38],[-11,38],[-2,75],[-94,50],[8,139],[9,119],[39,58],[40,59],[113,123],[82,-14],[59,51],[-19,66],[31,91],[32,91],[16,99],[-13,152],[-85,269],[-117,311],[-63,123],[-62,123],[-60,105],[-175,359],[-192,326],[-97,192],[-97,192],[-144,213],[-85,125],[-68,78],[-190,217],[-101,82],[-101,81],[-162,93],[-158,-1],[-97,-26],[-82,-116],[-98,-85],[-62,-91],[-64,-56],[-44,-1],[-63,-56],[-73,6],[-102,-63],[-34,5],[-35,5],[-79,9],[-72,57],[-72,56],[-92,44],[-86,34],[-174,54],[-97,7],[-110,-22],[-70,-37],[-70,-36],[-94,-91],[-94,-91],[-69,-138],[-46,-87],[0,-80],[-5,-52],[-6,-52],[19,-121],[30,-127],[12,-155],[-54,-96],[-91,-48],[-134,34],[-145,58],[-149,35],[-76,-3],[-141,-6],[-65,-3],[-119,-63],[-114,-63],[-77,-127],[-68,-156],[-35,-121],[-2,-34],[-2,-35],[-4,-117],[16,-34],[17,-35],[31,-63],[38,-48],[60,-12],[34,-22],[8,-70],[-54,-137],[-27,-60],[-59,-31],[-181,-139],[-52,-18],[-52,-19],[-27,-19],[-38,76],[-37,21],[-1,33],[-1,33],[18,79],[18,68],[28,121],[-46,173],[-16,69],[2,63],[28,26],[28,27],[85,32],[3,25],[2,26],[43,30],[50,-3],[21,42],[-6,36],[-6,35],[-31,73],[-94,31],[-97,57],[-97,56],[-94,69],[-244,186],[-267,428],[-22,19],[-21,18],[-17,87],[-17,86],[-55,111],[-80,64],[-107,91],[-103,123],[-156,291],[-52,103],[18,220],[35,259],[8,57],[13,93],[39,117],[25,223],[49,184],[49,184],[113,239],[-33,236],[-43,180],[-43,181],[-14,129],[8,50],[31,13],[31,13],[63,25],[134,72],[135,72],[290,142],[123,63],[123,63],[262,129],[99,47],[99,47],[223,104],[10,100],[9,101],[6,28],[62,-36],[132,-77],[78,-2],[79,-1],[145,-65],[48,-31],[57,-36],[87,12],[80,63],[139,108],[139,108],[63,34],[63,33],[27,57],[27,56],[41,139],[-10,24],[-30,16],[-30,10],[-84,-5],[-58,19],[-38,110],[-1,70],[12,143],[-4,184],[-4,184],[-36,34],[2,44],[27,22],[8,54],[7,53],[-10,27],[-11,27],[-21,12],[-21,13],[-68,-18],[-69,-17],[-31,-6],[-32,-6],[-56,40],[-79,-47],[-60,-77],[-17,-23],[-67,-51],[-107,9],[-152,13],[-112,10],[-40,3],[-32,558],[-9,159],[4,220],[19,330],[19,77],[20,77],[2,220],[-30,87],[-30,86],[-34,104],[-5,117],[-57,-18],[-22,-16],[-21,-17],[-21,-14],[-20,-14],[-78,-4],[-84,77],[-56,247],[-49,400],[-39,239],[-140,25],[-50,-40],[-124,-73],[-142,-35],[-51,-11],[-51,-12],[-138,-24],[-46,-8],[-62,19],[-9,17],[-9,17],[-91,214],[-41,96],[-58,159],[-13,131],[10,96],[10,96],[14,70],[69,273],[12,49],[28,109],[128,300],[29,69],[90,184],[123,249],[36,61],[153,257],[90,228],[22,55],[26,32],[75,192],[118,129],[44,9],[84,16],[150,54],[148,31],[179,50],[179,49],[15,-224],[136,-13],[137,-13],[186,-31],[64,-11],[148,-30],[148,-31],[160,-24],[159,-24],[77,-17],[188,-42],[14,-3],[145,-32],[202,-88],[89,-62],[90,-61],[72,-188],[71,-189],[77,-168],[143,-312],[47,-105],[58,-124],[57,-124],[-3,-20],[-29,-231],[13,-48],[38,-44],[24,-5],[75,-14],[32,18],[127,70],[53,31],[53,31],[69,36],[177,100],[54,25],[53,26],[114,62],[29,12],[92,36],[29,47],[15,75],[15,76],[8,85],[-6,88],[-11,103],[-14,123],[-36,142],[-85,110],[-106,85],[-7,6],[-27,53],[-5,10],[-20,-4],[-8,-6],[-26,-20],[-25,-12],[-24,-12],[-50,35],[-34,49],[-14,20],[-38,38],[-10,85],[-3,26],[-3,27],[-50,57],[-29,44],[-38,60],[-49,62],[-41,54],[-33,41],[-34,41],[-83,94],[-14,44],[1,14],[5,46],[50,89],[8,15],[10,1],[25,3],[11,5],[11,6],[31,-28],[116,-116],[86,-74],[31,-27],[75,-63],[92,-75],[10,2],[15,3],[15,-3],[25,11],[25,18],[13,2],[14,2],[18,-3],[13,-14],[14,-13],[25,-21],[15,4],[5,21],[-8,35],[-8,34],[-4,30],[-4,29],[0,18],[0,17],[22,32],[13,14],[5,14],[-18,35],[-10,13],[-10,14],[-6,-2],[-7,-2],[-14,-11],[-17,-7],[-16,-7],[-10,3],[-5,17],[5,7],[-3,14],[-2,14],[-5,21],[-5,8],[-5,9],[-8,7],[-12,-4],[-6,-9],[-7,-9],[-2,3],[-3,4],[8,16],[19,40],[-27,27],[-13,28],[-5,17],[-10,21],[-5,7],[-5,0],[-5,-1],[-13,-3],[-5,5],[-5,5],[-12,3],[-8,7],[-3,1],[-4,2],[-2,-11],[-5,-10],[-5,-17],[-8,-8],[-4,-3],[-4,5],[-4,5],[0,17],[2,7],[3,7],[4,18],[-14,6],[-7,4],[-6,3],[-12,3],[-5,-18],[-3,-17],[-2,-17],[-4,-11],[-3,-10],[-13,-8],[-10,0],[-12,7],[-3,10],[0,11],[0,10],[0,14],[2,21],[8,21],[4,26],[5,26],[5,21],[-3,25],[-2,20],[-5,21],[-6,21],[-13,15],[-27,29],[-13,10],[-14,10],[-23,14],[-22,10],[-25,14],[-10,5],[-10,14],[-20,27],[-28,28],[-20,31],[-8,10],[-15,31],[-10,31],[-5,6],[-13,24],[-32,48],[-10,-28],[0,-21],[-5,-24],[-7,-21],[-18,-1],[-23,18],[-59,45],[-17,11],[-50,33],[-65,-1],[-216,-2],[-64,-1],[-206,119],[-122,71],[-135,66],[-102,49],[-25,21],[-105,89],[-172,51],[-80,24],[-95,29],[-164,51],[-59,34],[-155,87],[6,111],[242,206],[156,121],[68,97],[139,199],[133,190],[100,142],[22,26],[69,77],[73,214],[80,126],[16,17],[110,116],[195,357],[110,86],[142,81],[3,5],[88,122],[77,98],[68,28],[134,150],[76,40],[146,41],[36,23],[36,23],[31,57],[61,110],[61,121],[61,46],[8,6],[12,0],[117,0],[90,8],[90,9],[42,-23],[42,-23],[38,-75],[4,-92],[-48,-110],[-48,-109],[10,-120],[2,-30],[-42,-103],[0,-93],[-6,-107],[-3,-44],[5,-10],[72,-50],[41,-37],[12,-19],[13,-19],[6,-29],[7,-30],[10,-48],[25,-48],[13,-24],[22,-27],[41,-45],[46,-2],[46,-2],[67,-2],[20,-34],[13,-40],[13,-40],[13,-76],[8,-87],[0,-100],[-14,-78],[8,-93],[14,-111],[-2,-119],[-4,-83],[-5,-84],[-12,-56],[-7,-28],[-24,-38],[-22,-46],[-30,-74],[-24,-63],[-13,-37],[-16,-52],[-9,-27],[-5,-28],[7,-45],[-22,-49],[-11,-8],[-11,-7],[-11,-30],[-11,-30],[-11,-42],[-11,-42],[1,-52],[10,-31],[20,-10],[20,-10],[20,-6],[5,7],[27,-17],[26,-69],[5,-48],[5,-49],[-3,-88],[-1,-34],[-11,-104],[-12,-95],[-9,-52],[-5,-47],[-5,-47],[-4,-77],[-7,-70],[-4,-86],[-12,-67],[-9,-23],[-8,-23],[-30,-74],[3,-24],[13,-73],[6,-93],[9,-40],[9,-40],[5,-27],[21,-118],[10,-52],[16,-94],[0,-28],[0,-28],[-4,-76],[-10,-45],[-14,-39],[-25,-36],[-17,-31],[-22,-43],[-13,-16],[-14,-16],[-5,-14],[14,-8],[14,-8],[32,-27],[42,-13],[20,25],[45,35],[13,8],[14,7],[32,25],[49,54],[40,25],[15,4],[27,18],[12,42],[2,13],[5,53],[10,63],[7,73],[14,74],[9,49],[9,30],[8,30],[5,38],[-5,41],[-2,21],[-1,21],[5,42],[17,32],[12,35],[2,45],[-10,21],[-3,19],[-2,19],[-8,38],[0,17],[0,18],[14,25],[8,14],[7,13],[-1,31],[-2,98],[-1,28],[-32,17],[-10,27],[0,35],[7,39],[10,5],[9,5],[23,8],[10,4],[7,48],[1,119],[2,21],[10,97],[9,39],[15,0],[9,20],[67,160],[7,17],[15,32],[-10,10],[-10,10],[-22,3],[-23,3],[-10,28],[2,34],[9,11],[8,11],[13,2],[13,2],[9,0],[8,9],[7,9],[-1,16],[-2,15],[-6,21],[-6,21],[-3,34],[-6,2],[-7,1],[-36,-26],[-8,-6],[-22,-11],[-8,9],[-7,8],[-8,38],[2,39],[39,42],[50,33],[-90,199],[-18,40],[-2,45],[-17,477],[-6,198],[-3,67],[-1,49],[-3,126],[-15,74],[-14,73],[-21,151],[-9,61],[-1,94],[67,89],[34,42],[22,46],[38,110],[-215,81],[-164,55],[74,181],[50,152],[20,60],[27,25],[28,25],[17,7],[25,-2],[38,-10],[13,-3],[14,-3],[44,45],[18,19],[58,-17],[38,-3],[37,-3],[53,50],[90,-22],[-100,110],[-89,76],[-25,21],[46,140],[157,-124],[92,-73],[35,-9],[61,19],[-97,444],[-26,100],[-11,42],[-82,134],[-74,153],[22,112],[59,35],[64,-75],[204,-199],[73,-70],[100,-71],[77,-54],[-2,239],[8,277],[5,163],[2,57],[2,57],[4,35],[27,226],[6,53],[25,80],[11,33],[64,101],[13,15],[102,123],[144,176],[11,15],[143,174],[60,66],[39,62],[101,139],[74,167],[71,110],[41,63],[58,120],[14,29],[93,211],[33,73]],[[454329,196892],[57,-80],[49,-69],[17,-24],[5,-6],[6,-9],[53,-74],[230,-310],[248,-334],[97,-132],[7,-8],[12,33],[192,-144],[11,-9],[54,22],[45,9],[16,-2],[27,-3],[27,-3],[62,-15],[48,-20],[38,-31],[48,-53],[13,-14],[12,-14],[48,-52],[48,-32],[12,-8],[76,-66],[51,-61],[7,-6],[10,-9],[9,-8],[51,-24],[36,-19],[18,-27],[4,-5],[19,-54],[66,-94],[40,-57],[37,-16],[3,0],[11,-1],[25,-2],[11,2],[4,1],[4,0],[21,4],[37,13],[22,13],[5,2],[25,14],[26,13],[8,-7],[3,-2],[69,-61],[67,-57],[3,-4],[10,-4],[50,-23],[11,-3],[16,-5],[43,-14],[77,-19],[69,-16],[30,-19],[12,-7],[52,-4],[41,-6],[30,-24],[31,-13],[42,-49],[59,-36],[38,-21],[37,-51],[29,-17],[47,-4],[62,11],[48,-5],[73,-14],[27,-5],[19,-4],[41,-14],[48,-36],[54,-75],[24,-16],[53,16],[19,10],[53,28],[66,37],[49,27],[57,20],[52,0],[78,-8],[67,-29],[58,-30],[119,-93],[64,-44],[27,-18],[77,-37],[6,-3],[51,-23],[46,-20],[17,-7],[13,-6],[62,-24],[92,-53],[9,-8],[146,-109],[26,-13],[62,-31],[94,-36],[41,-16],[13,-5],[90,-35],[141,-55],[225,-89],[179,-81],[28,-13],[42,-19],[216,-109],[87,-51],[36,-21],[42,-25],[163,-107],[161,-98],[74,-35],[54,-38],[34,-6],[44,12],[37,11],[52,4],[68,3],[61,5],[45,-9],[61,-37],[51,-29],[54,-25],[68,-17],[106,-24],[91,-26],[108,-12],[96,-7],[43,-7],[60,-11],[42,-17],[50,-43],[158,-134],[40,-16],[54,-21],[62,-10],[78,-4],[75,-4],[63,-37],[60,-66],[59,-53],[39,-31],[39,-56],[55,-62],[47,-43],[65,-56],[50,-43],[37,-46],[3,-3],[11,-13],[28,-30],[6,-7],[21,-36],[21,-36],[8,-15],[35,-83],[43,-56],[46,-53],[62,-54],[94,-91],[56,-57],[55,-35],[40,-26],[29,-42],[30,-48],[24,0],[49,16],[58,-7],[56,-51],[48,-16],[56,5],[115,11],[110,29],[72,23],[34,-12],[24,-38],[11,-63],[28,-36],[37,-18],[63,0],[70,36],[49,27],[37,-1],[32,-13],[47,-21],[93,-9],[101,-1],[85,-26],[106,-47],[139,-83],[105,-72],[132,-81],[108,-60],[94,-36],[105,-27],[115,7],[171,47],[92,20],[101,-9],[11,-2],[32,-6],[145,-30],[167,-49],[232,-98],[140,-56],[89,-38],[25,-21],[25,-20],[21,-20],[46,-44],[41,-79],[34,-76],[17,-38],[36,-91],[28,-71],[47,-94],[49,59],[32,-23],[55,-34],[56,-35],[41,-13],[42,-13],[12,-4],[55,-17],[28,0],[25,24],[210,267],[73,89],[54,41],[203,110],[135,67],[60,20],[88,-9],[16,-6],[17,-5],[33,-11],[19,-11],[57,-30],[82,-47],[187,-127],[156,-15],[28,-3],[150,-16],[106,-5],[91,-4],[100,5],[38,3],[28,1],[25,7],[23,7],[11,-52],[11,-33],[14,-23],[27,-16],[27,-16],[25,-9],[41,-11],[62,-11],[50,-3],[30,4],[40,21],[66,54],[3,3],[12,10],[12,6],[17,3],[24,0],[15,-2],[31,-9],[30,-13],[2,-1],[18,-9],[4,-6],[5,-6],[15,-43],[8,-7],[7,-8],[32,-35],[77,-79],[37,-33],[13,-11],[33,-30],[22,-34],[13,-34],[4,-11],[8,-21],[1,-4],[2,-4],[8,-38],[8,-36],[8,-33],[16,-67],[6,-33],[12,-60],[16,-59],[17,-47],[15,-21],[32,-35],[35,-17],[76,-30],[36,-14],[37,-17],[26,-23],[42,-37],[8,-7],[38,-33],[32,-28],[17,-24],[22,-35],[20,-39],[23,-50],[26,-41],[120,-89],[73,-54],[67,-50],[112,-82],[65,-36],[107,-64],[54,-34],[52,-38],[68,-51],[35,-35],[56,-49],[34,-9],[36,8],[49,24],[42,44],[5,5],[71,89],[56,74],[97,130],[32,37],[25,25],[31,22],[36,16],[66,29],[12,5],[16,7],[98,42],[132,52],[81,35],[10,4],[10,5],[93,43],[86,36],[22,6],[21,6],[50,3],[50,-5],[57,-12],[88,-40],[37,-19],[59,-30],[70,-38],[82,-47],[12,-7],[12,-7],[59,-37],[15,-14],[28,-29],[25,-37],[15,-34],[6,-13],[6,-14],[24,-56],[17,-42],[40,-91],[102,-189],[61,-111],[48,-88],[67,-121],[77,-133],[42,-69],[23,-37],[5,-9],[122,-199],[32,-57],[50,-70],[59,-69],[120,-127],[89,-86],[60,-49],[70,-58],[50,-39],[50,-39],[65,-56],[12,-10],[70,-63],[69,-75],[45,-55],[13,-15],[39,-53],[10,-14],[52,-79],[18,-30],[2,-4],[9,-16],[11,-17],[41,-84],[51,-108],[11,-22],[58,-126],[10,-22],[7,-16],[38,-78],[19,-36],[29,-55],[52,-80],[37,-52],[10,-14],[29,-40],[48,-56],[59,-76],[53,-70],[63,-85],[58,-73],[39,-49],[56,-54],[49,-43],[63,-40],[62,-29],[61,-24],[71,-21],[61,-22],[42,-23],[51,-39],[45,-44],[19,-29],[18,-28],[35,-60],[35,-55],[32,-53],[31,-46],[26,-35],[32,-33],[36,-32],[42,-26],[47,-19],[77,-24],[107,-30],[111,-28],[40,-11],[40,-11],[63,-21],[77,-37],[49,-30],[31,-23],[15,-12],[44,-49],[26,-37],[29,-43],[61,-107],[59,-107],[44,-89],[125,-265],[44,-90],[32,-66],[35,-66],[20,-36],[16,-30],[66,-125],[6,-11],[13,-24],[13,-23],[31,-56],[72,-104],[35,-50],[56,-58],[62,-57],[58,-29],[52,-15],[81,-16],[296,-84],[40,-11],[62,-3],[74,19],[43,13],[7,3],[8,2],[13,7],[50,28],[18,11],[86,46],[74,44],[91,64],[79,29],[126,17],[85,-2],[25,-1],[76,15],[112,26],[75,30],[25,15],[4,2],[30,17],[6,5],[50,38],[36,29],[7,5],[102,83],[153,129],[14,13],[85,69],[103,48],[96,52],[116,39],[76,10],[61,8],[99,22],[139,48],[77,42],[15,9],[72,60],[68,61],[199,140],[183,123],[84,74],[20,18],[89,45],[95,31],[39,-4],[143,-12],[14,-1],[352,-55],[153,-19],[76,-14],[51,-12],[10,-6],[48,-23],[4,-4],[47,-37],[16,-12],[41,-49],[21,-53],[25,-61],[52,-155],[50,-152],[22,-76],[26,-65],[10,-48],[4,-18],[10,-137],[38,-91],[35,-74],[46,-96],[53,-102],[48,-61],[40,-32],[64,-28],[64,-13],[32,-19],[9,-5],[42,-40],[43,-38],[13,-19],[13,-20],[3,-4],[20,-84],[25,-103],[17,-95],[7,-50],[1,-14],[6,-39],[10,-110],[9,-90],[1,-12],[5,-81],[14,-199],[17,-257],[7,-91],[31,-501],[23,-377],[23,-297],[3,-31],[14,-156],[14,-120],[13,-179],[13,-176],[13,-104],[13,-79],[16,-57],[18,-65],[4,-20],[14,-73],[12,-57],[19,-97],[34,-162],[49,-211],[12,-60],[8,-52],[3,-51],[-1,-26],[-1,-26],[-3,-55],[-12,-63],[-15,-46],[-28,-60],[-32,-68],[-26,-77],[-16,-60],[-6,-76],[4,-82],[17,-81],[27,-91],[9,-40],[6,-26],[1,-5],[46,-166],[12,-58],[12,-57],[11,-63],[-15,-122],[-41,-169],[-23,-107],[-6,-73],[11,-61],[19,-47],[64,-89],[70,-86],[28,-34],[80,-107],[56,-80],[30,-42],[77,-125],[18,-28],[16,-13],[12,-5],[12,-4],[69,25],[88,37],[54,28],[52,4],[48,-2],[49,-2],[103,2],[53,11],[63,31],[67,49],[33,4],[133,-23],[100,0],[57,12],[40,24],[42,72],[66,102],[47,81],[10,24],[9,24],[13,74],[11,111],[20,90],[37,92],[41,61],[44,55],[59,48],[60,59],[63,46],[47,47],[10,11],[146,-56],[108,-32],[106,-34],[27,-9],[312,-103],[82,-27],[100,-29],[9,-3],[85,-13],[17,0],[57,-1],[12,2],[56,9],[2,1],[76,29],[18,10],[43,24],[62,48],[332,286],[42,36],[109,94],[126,109],[59,51],[68,58],[85,76],[13,11],[65,58],[137,122],[194,148],[145,94],[443,279],[195,142],[256,200],[135,111],[99,71],[37,27],[109,54],[4,2],[106,48],[9,2],[9,3],[16,4],[7,2],[33,8],[88,20],[119,15],[453,27],[241,18],[97,11],[138,40],[118,36],[90,18],[19,4],[92,1],[49,-9],[49,-9],[158,-92]],[[451132,197448],[-8,-49],[-19,2],[-229,21],[-4,92],[65,64],[65,63],[168,52],[-12,-77],[-26,-168]],[[662022,413164],[26,7],[87,26],[89,26],[127,0],[7,0],[152,-59],[134,-60],[140,-84],[141,-127],[173,-119],[286,-118],[350,-170],[291,-109],[126,-140],[124,-200],[110,-179],[268,-550],[234,-574],[92,-133],[302,-233],[100,-174],[36,-389],[-91,-358],[5,-229],[114,-97],[403,156],[254,195],[126,-83],[254,-67],[130,-110],[-87,-405],[56,-206],[270,-124],[224,-164],[249,-814],[92,-137],[120,-55],[226,-23],[163,20],[226,114],[1271,1133],[135,73],[317,44],[228,-132],[380,-421],[191,-318],[143,-117],[359,-81]],[[664444,371200],[-105,-210],[-84,-191],[-131,-191],[-388,-381],[-495,-274],[-432,-159],[-219,-216],[-258,-38],[-360,-119],[-318,-250],[-393,-411],[-92,-150],[-70,-189],[-14,-456],[-200,-619],[-141,-241],[-120,-119],[-255,-166],[-121,-51],[-131,-4],[-453,112],[-153,65],[-257,171],[-127,27],[-85,-135],[-28,-376],[203,-434],[-127,-255],[-220,-171],[-218,-121],[-388,50],[-337,-101],[-279,-255],[-202,-330],[-182,-209],[-289,-194],[-191,-199],[-198,-73],[-110,-38],[-185,-51],[-312,-140],[-228,-254],[-347,-601],[-159,-391],[-143,-267],[-159,-128],[-237,39],[-312,343],[-203,382],[-244,-115],[-203,51],[-252,102],[-312,38],[-245,-63],[-174,-43],[-155,-97],[-122,-148],[-13,-119],[-33,-497],[-60,-254],[-106,-150],[-114,-142],[-169,-34],[-369,-68],[-670,-58],[-183,35],[-346,254],[-157,54],[-127,-31],[-111,-76],[-62,-196],[11,-364],[-77,-331],[-133,-165],[-110,-114],[-255,-36],[-217,86],[-321,140],[-384,25],[-342,80],[-118,62],[-93,139],[-90,213],[-120,636],[-95,215],[-117,169],[-158,140],[-161,-101],[-312,-382],[-379,-382],[-371,-368],[-312,-357],[-363,-229],[-371,-37],[-244,26],[-233,87],[-462,145],[-831,212],[-740,237],[-1009,307],[-1250,479],[-668,378],[-277,146],[-449,265],[-251,80],[-352,124],[-115,-26],[-85,-47],[-62,76],[-31,95],[-95,87],[-58,0],[-79,-69],[-145,-167],[-114,-38],[-35,9],[-34,112],[-52,53],[-216,-27],[-53,44],[-419,203],[-65,0],[-198,-320],[-133,-51],[-265,-14],[-116,-66],[-120,-123],[-222,-255],[-63,-109],[-69,-34],[-169,45],[-314,138],[-301,196],[-94,0],[-50,-16],[-49,-16],[-167,-140],[-86,-60],[-106,21],[-235,-74],[-168,-53],[-275,-156],[-289,-218],[-237,-310],[-271,-405],[-201,-438],[-63,-142],[-96,-69],[-167,-30],[-164,-14],[-356,-33],[-497,142],[-295,177],[-467,281],[-258,124],[-130,36],[-198,-7],[-212,-7],[-273,-22],[-332,-7],[-126,-80],[-84,-95],[-82,-98],[-104,-29],[-123,-11],[-50,-40],[-155,-18],[-79,69],[-326,-44],[-224,7],[-92,-40],[-77,-72],[-77,-10],[-92,-9],[-183,8],[-190,-47],[-210,-95],[-124,-18],[-66,14],[-138,-21],[-106,-48],[-212,-134],[-116,-193],[-94,-58],[-166,-37],[-241,-121],[-123,-115],[-36,-91],[-49,-80],[-62,-102],[-24,-21],[-66,-93],[-127,-15],[-22,-8],[-14,-4],[-210,-288],[-74,-155],[-73,-154],[-70,-51],[-121,65],[-427,44],[-152,-15],[-149,15],[-422,131],[-116,-44],[-205,-196],[-31,-80],[-99,-50],[-120,43],[-99,43],[-133,-3],[-120,-77],[-65,-83],[-20,-70],[-48,-40],[-159,-29],[-121,4],[-89,-7],[-89,-8],[-362,-116],[-197,-76],[-193,-37],[-169,48],[-217,178],[-121,69],[-66,3],[-66,4],[-118,-54],[-109,-91],[-122,-141],[-90,-238],[-77,-509],[-176,-818],[-147,-389],[-205,-455],[-3,-149],[70,-135],[24,-112],[-38,-150],[-94,-112],[-140,-44],[-164,15],[-150,-40],[-89,-98],[-106,-70],[-72,11],[-757,7],[-157,-40],[-453,-301],[-279,-160],[-238,-387],[-113,-439],[-38,-153],[-113,-345],[-198,-426],[-150,-69],[-147,44],[-176,80],[-212,10],[-263,-116],[-87,-11],[-130,84],[-159,33],[-140,-33],[-200,-124],[-106,22],[-149,36],[-176,4],[-22,84],[46,65],[84,47],[17,66],[-43,58],[-73,29],[-275,-113],[-118,-10],[-176,145],[-178,138],[-130,58],[-176,448],[-157,353],[-181,50],[-176,11],[-19,73],[99,173],[36,136],[26,488],[-38,112],[-82,88],[-77,-8],[-90,-40],[-132,-25],[-32,55],[140,265],[12,62],[-188,11],[-62,3],[-123,19],[-196,138],[-231,178],[-82,22],[-87,-47],[-294,-233],[-82,51],[-15,83],[17,255],[39,153],[99,102],[113,90],[-7,73],[-44,58],[-115,84],[-77,-4],[-126,-25],[-96,29],[-167,98],[-159,29],[-123,-65],[-34,41],[-40,148],[-114,542],[-111,313],[-87,120],[-98,73],[-159,109],[-136,51],[-48,0],[-176,0],[-287,18],[-123,87],[-84,4],[-72,-29],[-94,-40],[-140,36],[-73,-40],[-156,33],[-345,182],[-80,21],[-60,-18],[-77,-43],[-46,-62],[-130,-273],[-53,-40],[-53,76],[-80,95],[-96,101],[-41,-7],[-98,-74],[-305,-202],[-118,-65],[-171,25],[-126,103],[-139,115],[-82,-18],[-145,-244],[-205,-178],[-152,-40],[-169,109],[-135,84],[-130,156],[-296,251],[-109,139],[-75,-37],[-108,-91],[-142,-236],[-44,-33],[-82,-4],[-60,4],[-65,-4],[-109,62],[-68,-4],[-45,-32],[-77,-22],[-61,30],[-49,-26],[-99,-121],[-77,-161],[-50,-481],[-62,-387],[-34,-105],[-62,-102],[-97,-62],[-357,-65],[-43,-11],[-17,-91],[12,-178],[-2,-229],[-41,-193],[-321,-771],[-289,-408],[-326,-574],[-58,-117],[-89,-273],[-55,-61],[-58,32],[-99,51],[-96,-37],[-290,-476],[-223,-225],[-165,-307],[-195,-172],[-227,-18],[-132,-52],[-191,-339],[-173,-229],[-119,-294],[-292,-517],[-423,-741],[-254,-351],[-148,-71],[-918,-142],[-489,-161],[-238,-43],[-306,17],[-238,117],[-384,321],[-452,111],[-607,-10],[-304,207],[-226,253]],[[549961,388890],[296,188],[352,357],[312,481],[105,835],[-134,102],[-106,174],[-155,576],[-198,499],[-93,718],[-134,598],[45,166],[81,139],[65,203],[50,443],[-7,228],[-199,383],[-98,349],[15,408],[-79,358],[-296,390],[121,105],[550,-145],[401,184],[341,241],[318,454],[297,629],[87,113],[124,162],[149,364],[126,775],[-466,1521],[-232,263],[-826,1135],[-362,335],[-183,268],[-106,578],[5,462],[77,164],[242,160],[135,170],[133,321],[249,445],[155,336],[0,184],[-277,488],[-5,204],[197,277],[154,406],[107,178],[311,207],[127,167],[43,224],[7,502],[311,616],[93,243],[97,639],[43,681],[107,547],[76,191],[374,667],[206,271],[122,92],[500,89],[107,114],[70,128],[34,244],[-33,359],[-193,298],[-61,181],[-1,196],[55,262],[107,168],[132,138],[69,192],[68,223],[-27,334],[-127,213],[-211,358],[-121,244],[-165,284],[-180,266],[-764,946],[-95,194],[-21,129],[0,20],[0,14],[1,19],[0,19],[0,4],[1,49],[0,3],[8,173],[2,41],[16,251],[10,168],[4,62],[15,204],[2,25],[4,68],[3,35],[0,3],[1,13],[1,3],[2,26],[9,103],[55,614],[22,442],[38,703],[52,352],[31,170],[71,302],[198,321],[344,405],[51,200]],[[553295,422681],[106,162],[480,91],[12,2],[306,58],[263,133],[458,435],[332,531],[291,1109],[344,750],[20,21],[263,276],[277,371],[195,177],[475,322],[333,182],[213,227],[197,332],[141,89],[141,5],[249,-111],[140,14],[115,52],[267,121],[452,53],[120,61],[97,117],[448,753],[132,163],[15,18],[150,185],[133,335],[155,573],[79,189],[210,327],[282,220],[370,165],[150,121],[224,385],[45,58],[29,36],[3,3],[43,55],[74,92],[63,80],[12,15],[7,9],[18,23],[144,181],[276,288],[304,237],[304,110],[141,124],[63,156],[-90,996],[34,560],[333,1879],[35,197],[238,760],[249,528],[105,397],[-125,715],[34,236],[191,399],[708,879],[318,246],[400,154],[949,156],[147,67],[234,267],[63,143],[79,337],[55,579],[-7,181],[-42,175],[-70,148],[-240,197],[27,221],[86,163],[61,229],[25,703],[55,198],[98,156],[148,60],[652,-240],[113,-84],[226,-476],[240,-785],[218,-237],[134,-41],[277,53],[621,628],[127,85],[136,4],[585,-220],[127,144],[142,431],[156,317],[35,177],[1,216],[-42,177],[-143,365],[-106,122],[-263,161],[-154,52],[-275,190],[-22,176],[77,168],[142,86],[403,39],[368,254],[467,192],[494,475],[193,419],[-10,184],[-141,361],[-607,775],[-86,142],[-288,663],[-9,204],[85,170],[254,190],[79,189],[27,231],[-47,871],[0,2],[-100,910],[22,177],[55,160],[226,228],[135,49],[642,-211],[383,29],[226,72],[842,579],[139,25],[121,-36],[558,-485],[155,-31],[169,27],[219,-18],[136,-95],[104,-153],[292,-767],[197,-386],[129,-98],[126,-47],[297,-40],[361,-134],[363,-221],[425,-439],[975,-1006],[143,-101],[156,-35],[156,74],[262,274],[198,339],[113,103],[549,177],[129,96],[106,143],[78,473],[155,345],[404,356],[190,280],[10,16],[111,163],[373,275],[84,142],[57,372],[79,179],[227,287],[84,227],[20,214],[-14,183],[37,229],[127,212],[104,86],[127,30],[624,-44],[147,111],[85,162],[21,444],[127,344],[205,322],[184,169],[311,98],[609,-39],[154,67],[143,155],[91,180],[120,157],[155,73],[664,18],[163,-70],[163,-70],[175,-95],[631,-345],[352,-147],[141,5],[112,129],[165,286],[656,806],[126,57],[164,15],[311,-163],[213,-231],[254,-404],[99,-215],[127,-120],[148,-70],[275,25],[134,74],[264,302],[182,344],[21,245],[-36,245],[-78,215],[-97,137],[-58,161],[77,493],[73,168],[283,119],[297,410],[260,167],[260,68],[257,-21],[134,-57],[227,-261],[167,-337],[129,-141],[149,26],[26,51],[66,129],[27,235],[-28,500],[-156,500],[-333,457],[-98,341],[-1,194],[93,710],[0,233]],[[309969,274867],[-69,20],[-388,234],[-204,246],[-167,228],[-102,141],[-200,260],[-143,268],[-58,165],[-77,166],[-101,123],[-178,85],[-8,4],[-92,45],[-1,1],[-123,81],[-185,-44],[-409,-459],[-248,-136],[-241,-124],[-152,-132],[-134,-108],[-196,-65],[-239,29],[-164,115],[-129,144],[-120,-39],[-105,-76],[-94,-193],[-138,-115],[-242,5],[-242,102],[-30,12],[-307,117],[-499,237],[-85,41],[-316,148],[-326,72],[-126,0],[-3,0],[-153,-58],[-24,-7],[-73,-23],[-95,-28],[-79,87],[-21,188],[-67,171],[-129,153],[-240,214],[-225,142],[-165,142],[-70,200],[-64,118],[-55,74],[-74,47],[-118,-15],[-103,79],[-193,261],[-200,335],[-76,191],[-196,289],[-190,188],[-256,375],[-102,125],[-138,101],[-172,14],[-131,-55],[-179,-108],[-181,-147],[-86,-83],[-130,-99],[-58,-34],[-56,-30],[18,-148],[2,-12],[74,-565],[13,-99],[47,-202],[414,-951],[16,-138],[0,-123],[-48,-197],[-40,-103],[-67,-101],[-195,-298],[-14,-21],[-720,-1105],[-14,-22],[-176,-275],[-451,-704],[-410,-600],[-22,-34],[-82,-129],[-50,-78],[-9,-14],[-160,-250],[-108,-169],[-29,-46],[-21,-31],[-24,-37],[-71,-109],[-81,-122],[-2,-4],[-49,-76],[-161,-247],[-13,-22],[-4,-6],[-204,-312],[-301,-477],[-183,-281],[-272,-416],[-68,-103],[-26,-41],[-4,-5],[-328,-481],[-205,-297],[-691,-997],[-24,-34],[-148,-208],[-206,-290],[-69,-95],[-281,-392],[-48,-68],[-215,-299],[-15,-21],[-17,-23],[-11,-16],[-6,-9],[-17,-23],[-16,-22],[-7,-10],[-10,-13],[-14,-20],[-200,-276],[-246,-338],[-1,-1],[-10,-14],[-131,-232],[-72,-186],[-253,-737],[-18,-52],[-218,-641],[-160,-471],[-113,-199],[-124,-221],[-216,-334],[-23,-35],[-45,-68],[-54,-78],[-138,-135],[-267,-165],[-146,-84],[-194,-112],[-79,-62],[-96,-102],[-87,-122],[-38,-69],[-125,-226],[-9,-17],[-362,-687],[-119,-317],[-171,-563],[-91,-298],[-1,-5],[-26,-97],[-41,-153],[-3,-87],[-3,-103],[-2,-66],[1,-44],[15,-456],[5,-144],[-1,-44],[-7,-304],[0,-39],[0,-2],[0,-1]],[[289537,258894],[0,-2]],[[289537,258892],[0,-1]],[[289537,258891],[-1,-2]],[[289536,258889],[0,-2]],[[289536,258887],[0,-8],[0,-4],[-16,-472],[-39,-319],[-135,-255],[-195,-224],[-25,-57],[-106,-236],[-109,-475]],[[288911,256837],[-49,-12],[-123,-32],[-117,-30],[-415,-180],[19,-293],[-219,-339],[-177,-182],[-471,-199],[-207,29],[-280,110],[-306,180],[-240,83],[-503,4],[-365,255],[-497,844],[-345,945],[-190,824],[-170,341],[-51,162],[-287,28],[-1471,-211],[-135,-72],[-156,-412],[-43,-35],[-727,-408],[-113,-25],[-76,54],[-51,88],[-121,314],[-107,570],[-54,47],[-39,35],[-19,246]],[[280806,259566],[-707,299],[-416,235],[-136,-17],[-324,-167],[-198,1],[-302,191],[-142,158],[-191,92],[-340,97],[-219,14],[-488,-74],[-813,-266],[-592,-15],[-496,282],[-128,179],[-40,210],[-70,171],[-158,-25],[-231,-334],[-141,90],[-87,146],[-114,526],[-12,54],[-141,138],[-192,78],[-142,13],[-295,158],[-156,-8],[-262,-190],[-119,102],[-71,240],[111,549],[142,405],[114,651],[-61,120],[-67,69],[-184,193],[-267,77],[-70,429],[-136,28],[-297,-59],[-119,40],[-140,-17],[-93,170],[22,410],[70,377],[310,502],[49,368],[115,354],[5,833],[61,456],[60,457],[50,748],[-35,168],[-100,114],[-140,323],[-120,75],[-262,71],[-169,302],[-220,188],[-133,341],[-129,145],[-248,148],[-106,124],[-240,501],[-70,405],[-13,383],[21,173],[-21,173],[-79,136],[-151,6],[-153,-38],[-134,49],[-149,363],[-126,91],[-404,85],[-289,240],[-148,31],[-142,-41],[-310,-215],[-142,-40],[-141,58],[-148,171],[-79,195],[-112,456],[-107,161],[-351,293],[-328,644],[-142,563],[-134,309],[-19,190],[69,205],[108,133],[254,124],[345,304],[340,450],[121,62],[367,306],[281,133],[228,306],[483,482],[287,194],[133,27],[412,-47],[445,240],[330,227],[312,328],[212,411],[121,234],[112,137],[282,87],[156,85],[296,377],[312,479],[203,139],[454,68],[367,195],[275,250],[319,379],[282,266],[396,161],[112,93],[228,501],[112,107],[241,140],[133,-43],[151,28],[197,276],[177,332],[373,333],[128,167],[658,1190],[153,209],[269,279],[184,299],[22,455],[-7,643],[-35,555],[107,402],[175,331],[149,25],[282,-25],[120,36],[128,124],[347,647],[111,120],[122,-70],[262,-517],[125,-80],[113,61],[99,209],[43,244],[84,158],[121,60],[148,18],[198,255],[113,78],[184,-64],[93,-132],[127,-53],[269,71],[281,-118],[277,64],[437,442],[8,200],[-80,153],[0,196],[135,34],[164,-61],[126,9],[177,95],[107,93],[127,331],[281,81],[115,90],[133,225]],[[414539,486065],[21,-87],[1740,-7387],[204,-868],[7,-30],[390,-1655],[149,-860],[167,-965],[204,-823],[227,-302],[133,-179],[159,-213],[68,-90],[50,-67],[50,-67],[18,-24],[82,-108],[60,-80],[226,-299],[76,-101],[15,-19],[94,-126],[121,-160],[195,-259],[129,-172],[95,-126],[477,-635],[90,-119],[260,-353],[826,-1118],[1339,-1814],[1380,-1869],[209,-282],[27,-37],[683,-926],[29,-39],[1485,-2010],[1844,-2498],[12,-17],[1352,-1830],[167,-226],[95,-129],[224,-2637],[8,-92],[168,-1979],[344,-4065],[403,267],[663,439],[644,426],[1023,677],[4916,3256],[10,7],[7,4],[86,57]],[[434428,409784],[-45,-33],[-46,2],[-45,-51],[-39,-15],[-15,-25],[-4,-72],[-23,-31],[-39,-33],[-44,-36],[-63,-33],[-111,-19],[-35,6],[-51,47],[-29,66],[-23,98],[-37,52],[-16,39],[-19,7],[-26,-4],[-33,-18],[-34,-20],[-17,-22],[-13,-18],[-111,15],[-113,16],[-111,11],[-38,-7],[-25,-65],[-52,-48],[-90,-146],[-78,-18],[-111,14],[-21,26],[20,118],[-4,90],[-258,-22],[-20,-22],[-54,-134],[-31,-41],[-108,-39],[-64,-25],[-55,-40],[-30,-43],[-36,-54],[-22,-6],[-21,6],[-15,22],[-14,43],[-20,20],[-50,3],[-36,12],[-35,10],[-38,-14],[-41,-4],[-21,13],[-39,24],[-31,-15],[-13,-38],[9,-40],[0,-79],[-10,-68],[-16,-63],[-25,-45],[-44,-32],[-52,-3],[-38,4],[-40,12],[-42,-6],[-55,-8],[-72,-10],[-64,-8],[-62,6],[-65,0],[-47,14],[-40,30],[-37,24],[-62,2],[-45,14],[-42,4],[-51,-10],[-67,-21],[-41,-23],[-37,-21],[-42,-23],[-44,-14],[-57,5],[-39,-6],[-44,-18],[-38,-17],[-74,-31],[-94,-32],[-98,-25],[-88,-40],[-68,-27],[-53,-8],[-27,24],[-19,21],[-13,2],[-24,-7],[-43,-4],[-58,-20],[-59,-16],[-70,4],[-156,7],[-37,16],[-28,29],[-37,30],[-17,14],[-37,43],[-28,10],[-39,-4],[-25,-4],[-42,19],[-50,28],[-38,40],[-31,35],[-34,16],[-31,50],[-33,11],[-49,23],[-49,21],[-47,12],[-31,37],[-80,80],[-61,64],[-57,32],[-69,72],[-37,39],[-54,37],[-45,11],[-76,65],[-87,59],[-74,83],[-14,101],[-4,93],[-31,49],[-8,52],[-14,54],[-40,52],[-17,36],[-32,41],[-35,9],[-12,35],[-12,35],[19,56],[41,32],[47,16],[9,34],[-12,59],[-2,56],[-10,48],[-18,24],[-43,-3],[-37,30],[-54,26],[-36,56],[-53,11],[-39,-29],[-14,-80],[-33,-46],[-34,-66],[-14,-48],[-12,-22],[-27,27],[-5,48],[-14,43],[-30,24],[-38,-30],[-10,-56],[-11,-32],[-42,-24],[-50,38],[-39,-11],[-26,-11],[-34,44],[-47,18],[-46,10],[-15,-40],[13,-32],[-20,-40],[-31,-66],[-36,-51],[-17,-88],[1,-64],[-8,-51],[-32,-37],[-34,-21],[-28,24],[28,53],[18,77],[-9,46],[-32,8],[-19,-70],[-55,-8],[-58,40],[-39,46],[-64,61],[-37,11],[-32,-50],[-39,-20],[-26,-55],[47,-83],[2,-46],[-44,-34],[-27,-61],[31,-54],[1,-53],[-51,-16],[-90,45],[-18,1],[-26,2],[-26,-38],[-17,-69],[-16,-85],[-15,-77],[-59,-32],[-65,-56],[-69,29],[-60,-13],[-94,-158],[-71,-128],[-47,-134],[32,-39],[47,-16],[37,-35],[22,-56],[-15,-69],[-60,0],[-54,-35],[-16,-53],[-27,-56],[-49,-13],[-44,-58],[-6,-62],[-40,-27],[-55,-11],[-48,-10],[-42,-27],[-52,-59],[-40,-13],[7,-67],[-6,-77],[-5,-51],[-32,-10],[-1,-56],[7,-59],[8,-51],[6,-50],[-29,-13],[-43,46],[-48,28],[-9,72],[19,69],[-9,62],[-39,18],[-31,-50],[-23,-70],[1,-58],[-17,-54],[-21,-42],[-53,-13],[-69,-32],[-76,-11],[-76,0],[-85,35],[-50,21],[-12,-53],[-44,1],[-46,31],[-41,-2],[-44,-65],[-30,-43],[-43,-13],[-38,67],[-38,82],[-38,35],[-53,-61],[-38,-43],[-42,82],[-42,42],[-15,33],[-20,-13],[-20,-13],[-24,19],[-8,45],[-11,21],[-28,10],[-55,1],[-34,-7],[-12,-61],[-21,-59],[-26,-21],[-19,23],[-7,58],[-1,64],[-25,22],[-34,-11],[-18,-25],[-9,-36],[-23,-23],[-30,9],[-23,28],[-20,20],[-27,20],[-29,11],[-28,-4],[-26,24],[-33,20],[-34,17],[-50,-3],[-24,-43],[-2,-31],[-11,-35],[-20,-24],[-28,11],[-28,32],[-21,20],[-22,3],[-22,1],[-20,-21],[-31,6],[-22,-2],[-10,-28],[9,-38],[10,-29],[1,-3],[-10,-44],[-11,-54],[-24,-51],[-16,-45],[0,-39],[13,-38],[21,-40],[46,-48],[32,-40],[18,-36],[-5,-28],[-12,-52],[-20,-51],[-21,-43],[-75,-105],[-49,-65],[-83,-106],[-77,-81],[-67,-68],[-14,-41],[29,-60],[7,-88],[-13,-88],[-19,-126],[5,-120],[-14,-93],[-35,-69],[-32,-35],[-94,-40],[-88,-56],[-92,-24],[-96,9],[-32,23],[-65,49],[-51,108],[-48,110],[-32,96],[-16,77],[-35,67],[-48,5],[-49,-8],[-27,-74],[-30,-6],[-61,24],[-68,32],[-104,27],[-154,-3],[-51,-3],[-55,-80],[-62,-77],[-123,-69],[-101,-48],[-90,-64],[-135,-110],[-83,-106],[-35,-109],[-65,-123],[-76,-101],[-66,-72],[-77,-70],[-68,-42],[-35,42],[-58,54],[-62,-22],[-75,29],[-77,59],[-41,83],[-5,144],[55,186],[31,139],[15,64],[-27,28],[-35,12],[-67,0],[-36,-24],[-67,-56],[-46,40],[-23,40],[9,32],[85,45],[71,64],[33,64],[-9,54],[-46,74],[-76,51],[-153,128],[-29,64],[-46,24],[-1,61],[-52,94],[-83,112],[-35,136],[-43,104],[-35,82],[9,118],[-4,25],[-8,52],[-55,53],[-41,70],[37,87],[55,62],[115,37],[70,-58],[66,-54],[44,0],[43,56],[-9,88],[-30,51],[-50,37],[-51,21],[-37,78],[-43,104],[-68,69],[-80,8],[-57,-24],[-58,16],[-173,261],[-106,43],[-83,24],[-67,35],[-60,5],[-25,-3],[-25,27],[-34,-8],[-14,-64],[-72,-91],[-73,-88],[-79,-49],[-99,-61],[-582,-723],[-85,-46],[-95,-66],[-85,-108],[-88,-100],[-85,-136],[-46,-125],[-44,-154],[-15,-166],[-4,-167],[16,-146],[37,-130],[20,-111],[-15,-140],[2,-95],[25,-36],[-8,-59],[-37,-5],[-28,-54],[-32,-31],[26,-82],[-21,-110],[-52,-97],[-70,-126],[-122,-184],[-14,-95],[-53,-46],[-3,-50],[-3,-47],[-16,-22],[-17,-22],[-40,-15],[-24,-103],[7,-48],[-43,-59],[-95,-41],[-56,18],[-17,61],[-9,36],[-17,34],[-39,84],[-47,39],[-32,3],[24,38],[-5,31],[-50,15],[-103,-63],[-61,-53],[-16,-18],[-40,-42],[-47,-35],[-77,-56],[-49,-24],[-14,-9],[-30,-21],[-31,-38],[-17,-62],[-17,-26],[-53,-2],[-22,-18],[-13,-51],[-7,-14],[-22,-39],[-38,-12],[-79,-113],[-74,-92],[-53,-1],[-30,-25],[-12,-47],[-2,-48],[-17,-51],[-48,-9],[-55,-46],[-32,-20],[-61,-1],[-26,-29],[-24,-24],[-17,-35],[-26,-12],[-34,12],[-26,-14],[-33,-10],[-44,-139],[-59,-119],[-56,-52],[-60,-20],[-38,8],[-36,88],[-28,63],[-29,24],[-31,-7],[-30,-25],[-50,-3],[-45,-26],[-32,-62],[-14,-69],[-18,-78],[-22,-34],[-23,-10],[-40,20],[-34,35],[-28,-3],[-13,-44],[8,-56],[3,-3],[20,-25],[5,-47],[-35,-64],[-32,-37],[-39,-17],[-74,-71],[-126,-131],[-100,-109],[-21,-65],[-49,-16],[-12,-53],[-16,-23],[-30,-9],[-13,-39],[5,-61],[-2,-58],[-20,-54],[-46,-15],[-53,-25],[-44,-20],[-35,-51],[26,-47],[-6,-38],[-22,-34],[-34,16],[-41,3],[-33,-22],[-23,-16],[8,-20],[7,-22],[-16,-17],[-33,11],[1,-44],[-8,-60],[-22,-1],[-26,32],[-26,0],[-17,-23],[2,-44],[-4,-51],[-22,-37],[-44,-15],[-36,-8],[-27,-8],[-9,-11],[0,-30],[17,-35],[-9,-82],[-39,-109],[-10,-18],[-34,-67],[-19,-67],[5,-45],[0,-68],[-23,-78],[-48,-149],[-76,-402],[-16,-53],[-4,-47],[-26,-43],[-14,-43],[17,-63],[56,-77],[-8,-90],[43,-34],[38,-113],[78,-45],[34,34],[49,0],[49,-37],[20,-116],[71,-90],[94,-142],[55,-104],[71,-82],[45,-114],[52,-87],[26,-136],[25,-116],[13,-73],[22,-26],[50,-12],[34,2],[32,-10],[30,-26],[23,-17],[4,-31],[33,-27],[25,-48],[17,-31],[9,-23],[0,-22],[-9,-21],[-2,-27],[-11,-22],[-38,-49],[-73,-85],[-29,-19],[-29,-18],[-7,-13],[-76,-99],[-11,-67],[-14,-127],[-32,-179],[-10,-90],[-4,-35],[-1,-14],[-16,-208],[-1,-6],[-1,-16],[-29,-110],[-128,-164],[-30,-108],[15,-87],[41,-68],[66,-42],[92,-17],[28,-23],[11,-54],[-17,-73],[-55,-66],[-74,1],[-4,0],[-56,11],[-119,-39],[-77,22],[-63,45],[-45,-19],[-22,-94],[-17,-45],[-81,-8],[-9,-1],[-41,6],[-40,-45],[-37,28],[-52,58],[-26,6],[-13,-40],[-1,-1],[-34,-45],[-46,22],[-22,-2],[-18,-35],[-4,-67],[-25,-33],[-41,-8],[-42,20],[-20,-28],[-50,-5],[-56,34],[-41,65],[-55,121],[-89,195],[-31,112],[-26,40],[8,72],[-34,8],[-54,-3],[-36,57],[-20,-8],[-19,-7],[-56,-166],[-42,-19],[-24,-40],[-13,-36],[-8,-22],[-18,-50],[-11,-23],[-36,-81],[-23,-47],[-12,-24],[25,-136],[0,-398],[-1,-105],[-14,-124],[-27,-44],[-18,-78],[-39,-73],[0,-88],[47,-212],[30,-150],[17,-150],[-14,-61],[-84,-72],[-56,-102],[26,-135],[10,-136],[48,-34],[75,-37],[21,-36],[-2,-102],[-11,-201],[-8,-130],[-31,-76],[-81,-12],[-107,-22],[-129,-144],[-113,-136],[-217,-334],[-75,-22],[-66,19],[-78,26],[-73,14],[-52,-51],[-21,-102],[-34,-82],[-8,-19],[-23,-54],[6,-51],[38,-68],[0,-54],[-41,-65],[-47,-42],[-70,-25],[-46,-43],[3,-54],[34,-65],[36,-73],[2,-153],[-40,-169],[19,-68],[-92,-74],[-42,-48],[-45,-52],[-73,-82],[-24,-27],[-196,-439],[-13,-30],[-45,-63],[-19,-28],[-28,-34],[-58,20],[-37,-61],[-33,-156],[-65,-161],[-33,-34],[-53,-4],[-45,9],[-23,-30],[-23,-111],[-24,-169],[13,-139],[-9,-92],[-20,-52],[-41,-101],[0,-94],[8,-64],[-21,-89],[-31,-84],[-2,-69],[19,-67],[-32,-91],[-13,-34],[-95,-67],[-26,-103],[5,-166],[37,-103],[11,-125],[-26,-201],[-42,-158],[-35,-61],[-70,-39],[-53,3],[-28,-31],[-30,-78],[-22,-86],[-73,-86],[-28,-72],[-26,-25],[-15,-23],[-49,-25],[-37,-2],[-22,-23],[-24,-86],[-28,-83],[-33,-15],[-70,-2],[-94,-67],[-72,-158],[-29,-139],[-57,-200],[-27,-99],[-32,-115],[2,-64],[-11,-39],[-19,-70],[0,-66],[29,-59],[11,-66],[9,-94],[-3,-134],[-45,-112],[-55,-89],[-90,-82],[-82,-107],[1,-109],[-1,-175],[2,-77],[-4,-97],[-15,-93],[-50,-148],[-74,-214]],[[408537,385661],[-760,1698],[-1023,2286],[-179,398],[-36,81],[-64,143],[-60,133],[-60,136],[-58,127],[-2,6],[-9,20],[-46,103],[-43,95],[-49,110],[-265,593],[-120,267],[-149,332],[-151,337],[-140,314],[-44,97],[-18,40],[-6,15],[-16,36],[-3,6],[-3,7],[-3,7],[-1,1],[-1,2],[-1,3],[-1,2],[-22,50],[-2,4],[-18,40],[-6478,14377],[-14,29],[-86,193],[-1,1],[-113,251],[-17,38],[-1,1],[-3,7],[-1,3],[-1,2],[-11,19],[-1968,3471],[-1132,1995],[-174,306],[-537,947],[-106,187],[-556,980],[-1,2],[-148,260],[-1,3],[-22,39],[-18,32],[-70,122],[-45,80],[-24,42],[-38,68],[-36,62],[-37,66],[-41,72],[-39,70],[-36,63],[-39,69],[-40,69],[-36,64],[-38,68],[-67,118],[-60,106],[-60,105],[-68,120],[-55,97],[-1,2],[-8,14],[-15,25],[-11,20],[-12,22],[-12,21],[-8,14],[-66,117],[-29,50],[-28,50],[-17,29],[-21,39],[-23,39],[-21,37],[-24,42],[-12,21],[-38,68],[-57,101],[-52,91],[-55,97],[-55,97],[-56,98],[-53,95],[-52,90],[-55,98],[-1,2],[-52,91],[-29,52],[-35,62],[-31,53],[-28,50],[-27,47],[-30,54],[-32,55],[-32,57],[-33,58],[-31,56],[-13,23],[-1,1],[-3,5],[-5,10]],[[391802,419807],[-3638,6012],[-91,150],[-38,63],[-24,40],[-203,335],[-1749,2892],[-6413,10348],[-752,1284],[-396,1303]],[[378498,442234],[-613,3999],[-968,6316],[-4690,30595],[-359,2340],[-3,16],[-334,2184],[-1918,13102],[-219,1493]],[[369394,502279],[493,386],[383,159],[270,194],[328,298],[435,720],[199,193],[216,113],[250,51],[381,-56],[442,-143],[300,-32],[350,264],[223,92],[310,41],[218,148],[222,294],[108,320],[11,420],[13,367],[83,135],[382,320],[177,68],[188,-15],[267,-109],[207,-48],[239,104],[176,219],[-50,417],[129,284],[333,351],[751,967],[264,285],[225,98],[281,-27],[616,237],[340,304],[298,687],[123,242],[286,223],[188,204],[239,441],[303,379],[414,270],[908,749],[289,192],[1047,695],[138,346],[192,207],[61,66],[452,373],[62,51],[206,247],[206,246],[521,464],[309,100],[242,128],[251,475],[283,355],[707,647],[189,268],[75,560],[79,483],[-7,143],[-7,143],[-72,232],[-8,28],[66,417],[24,102],[127,543],[159,369],[53,122],[228,443],[166,133],[148,38],[415,-124],[187,-96],[291,-32],[19,11],[188,98],[164,342],[169,109],[245,28],[255,90],[59,44],[211,155],[211,0],[179,-132],[113,-105],[186,19],[261,147],[179,138],[79,71],[65,247],[17,217],[-26,210],[0,402],[-3,228],[-8,242],[83,256],[64,158],[82,99],[107,136],[143,76],[63,-12],[89,-51],[110,-273],[35,-88],[113,-208]],[[43351,3780],[-164,-110],[-148,93],[-150,124],[22,261],[531,493],[153,-123],[52,-200],[-123,-232],[-173,-306]],[[55186,4394],[-133,-32],[-122,106],[-29,176],[51,197],[70,168],[114,119],[183,72],[90,-107],[8,-9],[-27,-211],[-163,-303],[-42,-176]],[[81962,7745],[-22,-383],[-83,-182],[-87,-379],[-70,-160],[-105,-154],[-332,-308],[-191,-278],[-128,9],[-77,157],[283,706],[54,379],[-4,370],[46,170],[81,147],[127,-2],[120,-113],[287,143],[101,-122]],[[80980,38656],[-106,-19],[-71,223],[126,393],[121,240],[438,335],[198,84],[126,-37],[-155,-258],[-154,-165],[-383,-646],[-140,-150]],[[56069,49317],[-446,-153],[-133,27],[-84,139],[-14,191],[68,193],[149,81],[141,9],[411,-56],[69,-152],[-34,-171],[-127,-108]],[[64253,54471],[-650,-865],[-107,-102],[-134,-71],[-190,28],[-165,105],[-176,44],[-196,-8],[-511,-371],[-437,30],[-169,-74],[-234,-169],[-62,-153],[-107,-109],[-114,76],[-36,206],[64,164],[37,446],[83,138],[319,93],[97,380],[135,101],[158,-6],[283,-144],[147,48],[149,2],[252,-121],[278,-78],[162,-6],[274,99],[106,89],[227,748],[227,260],[106,168],[134,70],[261,-32],[113,-76],[133,-310],[235,-161],[-92,-228],[-446,-105],[-154,-106]],[[84633,55429],[-127,-52],[-114,82],[-63,176],[70,419],[163,443],[105,151],[424,96],[106,127],[79,-134],[-1,-200],[-62,-167],[-234,-213],[-154,-426],[-192,-302]],[[50506,57818],[-120,-107],[-394,28],[-77,199],[34,178],[-27,169],[-87,147],[-40,178],[12,218],[99,163],[523,54],[318,69],[1,-175],[-93,-414],[-27,-370],[-44,-196],[-78,-141]],[[78076,60606],[76,-192],[-105,-157],[-219,-225],[-128,-81],[-148,-20],[-63,70],[-64,70],[-30,172],[52,225],[120,42],[127,-41],[191,69],[191,68]],[[45850,62747],[-127,-104],[-112,114],[-127,47],[-31,179],[177,112],[130,-9],[98,-129],[-8,-210]],[[75728,63136],[58,-492],[126,-188],[128,-78],[451,-52],[92,-145],[135,-137],[141,71],[56,190],[269,529],[213,184],[112,-148],[-13,-207],[-183,-401],[-227,-258],[-77,-154],[-24,-249],[128,-325],[8,-181],[-57,-153],[-326,-177],[-323,-544],[-353,-179],[-108,-137],[-473,-955],[-296,-445],[-156,-125],[-261,-101],[-141,76],[-120,113],[-255,-29],[-144,28],[-153,-14],[-360,-355],[-93,-121],[-105,-439],[-8,-248],[50,-370],[-21,-194],[-380,-604],[-128,-139],[-129,-14],[-444,63],[-127,-108],[-206,-272],[-268,-137],[-156,-11],[-296,97],[-190,-34],[-389,-154],[-156,-14],[-298,73],[-275,-87],[-403,-70],[-741,-4],[-325,342],[-249,46],[-27,214],[177,373],[361,482],[261,209],[353,73],[148,92],[354,574],[360,344],[360,122],[389,271],[331,43],[516,-60],[403,219],[100,107],[149,330],[19,218],[86,203],[319,409],[75,151],[100,587],[72,181],[374,658],[64,158],[156,582],[184,326],[126,66],[136,-22],[105,140],[76,182],[121,86],[128,-30],[92,393],[225,233],[157,213],[267,-165],[218,-197],[135,-328]],[[78853,64363],[91,-348],[-21,-184],[-71,-185],[-29,-175],[-90,-152],[-144,-23],[-210,242],[-142,46],[-57,163],[-64,50],[-63,49],[-240,-234],[-127,-12],[-28,179],[127,95],[92,334],[-127,60],[-142,-57],[0,202],[221,240],[75,189],[101,149],[318,173],[140,40],[94,-139],[49,-164],[98,-121],[135,-54],[35,-175],[-21,-188]],[[80166,68556],[-430,-76],[-138,20],[-138,20],[-50,171],[113,357],[1,195],[-63,380],[6,182],[43,203],[76,196],[200,296],[260,143],[64,168],[100,149],[135,5],[125,-349],[42,-370],[52,-189],[-86,-388],[28,-186],[-23,-367],[-76,-236],[-241,-324]],[[58832,71810],[71,-155],[84,-353],[107,-104],[62,-204],[-19,-187],[-141,-442],[156,-566],[-58,-420],[-94,-129],[-126,-66],[-310,38],[-113,110],[14,399],[-100,167],[-21,180],[37,178],[239,536],[-8,175],[-231,147],[-57,161],[69,167],[98,135],[80,217],[140,-18],[121,34]],[[52563,72859],[-401,-248],[-106,93],[-31,268],[129,338],[58,266],[130,-39],[264,-81],[64,-354],[-107,-243]],[[57228,78742],[-134,-57],[-247,267],[-106,633],[63,153],[232,134],[72,164],[50,207],[163,310],[388,-158],[105,-111],[16,-184],[-44,-179],[-98,-211],[-268,-385],[-122,-436],[-70,-147]],[[52556,81571],[141,-132],[59,-160],[-1,-188],[-53,-45],[-52,-44],[-454,-30],[-219,-277],[-106,-356],[13,-174],[-48,-235],[-240,-368],[-403,-485],[-77,-213],[-57,-383],[7,-424],[-128,-465],[-56,-507],[-69,-232],[-106,-130],[-142,-60],[-313,-244],[-126,-63],[-115,117],[9,193],[332,1049],[-78,179],[-233,240],[-78,141],[-105,330],[-72,413],[-224,499],[-242,170],[8,194],[127,616],[49,375],[-29,423],[37,226],[133,78],[304,-63],[268,17],[285,149],[260,229],[197,258],[298,774],[121,76],[353,341],[141,63],[133,-9],[120,-68],[85,-130],[36,-175],[-34,-178],[42,-203],[-8,-371],[35,-172],[184,-430],[91,-136]],[[54352,90358],[-64,-43],[-64,22],[-63,22],[-93,132],[128,249],[233,178],[93,-132],[-44,-221],[-63,-163],[-63,-44]],[[51717,91214],[-122,-42],[-268,83],[-83,138],[-58,159],[70,109],[275,189],[150,262],[15,15],[184,189],[153,55],[158,-109],[-37,-143],[23,-218],[-45,-176],[-105,-106],[-73,-153],[-105,-140],[-132,-112]],[[53539,92677],[-142,-9],[-109,60],[-26,14],[-61,184],[34,177],[496,580],[62,-149],[22,-417],[-107,-126],[-63,-185],[-106,-129]],[[54175,98893],[297,-121],[121,66],[142,-2],[76,-133],[29,-201],[-65,-317],[-6,-29],[-93,-139],[-288,-238],[-101,-174],[-133,-94],[-290,-67],[-86,13],[-42,7],[-77,144],[21,246],[149,332],[-7,488],[64,160],[141,84],[148,-25]],[[53222,99918],[125,-77],[123,-330],[13,-188],[-120,-85],[-126,40],[-243,184],[-36,182],[15,225],[127,-6],[122,55]],[[51037,99475],[-88,-56],[-32,80],[42,165],[235,419],[147,157],[72,147],[27,171],[121,93],[127,-3],[79,-158],[-65,-160],[-212,-303],[-183,-267],[-162,-61],[-108,-224]],[[55072,103451],[-134,-2],[-121,288],[114,78],[141,150],[92,150],[128,121],[276,10],[141,68],[91,128],[114,-97],[-72,-284],[-98,-181],[-9,-8],[-239,-247],[-127,-90],[-297,-84]],[[52147,107570],[-92,-46],[-85,31],[0,89],[91,132],[51,176],[83,129],[39,140],[164,64],[203,0],[-77,-183],[-117,-102],[-106,-175],[-47,-165],[-107,-90]],[[74577,107145],[-91,-121],[-105,128],[126,231],[90,355],[191,381],[-6,192],[78,350],[203,-259],[86,-110],[14,-195],[-78,-371],[-233,-377],[-275,-204]],[[65750,114747],[7,-206],[199,-250],[-21,-204],[-184,-99],[-85,-159],[-113,-89],[-157,-51],[-98,135],[-1,227],[93,410],[-106,97],[-133,-16],[-44,186],[57,163],[100,163],[33,181],[94,139],[254,-12],[48,-181],[-14,-187],[71,-247]],[[64223,114845],[-83,-402],[-107,-167],[-126,-128],[-227,-573],[-120,-158],[-664,-636],[-163,34],[-120,109],[-119,-52],[-198,-244],[-135,-43],[-143,400],[72,377],[-20,184],[-108,111],[86,179],[141,84],[112,151],[212,537],[177,314],[42,447],[135,-36],[107,-152],[75,-179],[37,-203],[84,-140],[135,-22],[326,111],[161,121],[120,96],[313,375],[118,83],[100,-112],[-35,-168],[-185,-298]],[[73036,115362],[-86,-354],[-112,-103],[-197,285],[-113,89],[-114,-89],[-127,133],[176,273],[157,103],[80,78],[108,129],[162,82],[100,-292],[54,-177],[-88,-157]],[[74651,115852],[-94,-61],[-81,13],[-68,136],[-45,143],[99,116],[122,265],[103,47],[167,14],[68,-184],[0,-224],[-78,-103],[-94,-87],[-99,-75]],[[66576,118124],[36,-11],[156,20],[77,-165],[-49,-162],[-128,-156],[-76,-182],[-37,-175],[-113,-78],[-389,27],[-111,138],[-51,191],[313,595],[133,35],[239,-77]],[[68117,118815],[-127,-100],[-91,-128],[-126,78],[-100,122],[-93,-153],[63,-173],[-97,-149],[-228,182],[-48,189],[-7,205],[29,181],[105,353],[91,180],[143,77],[466,-110],[111,-100],[94,-156],[118,-120],[43,-182],[-83,-131],[-114,-61],[-149,-4]],[[71488,116773],[-275,-93],[-57,163],[79,224],[43,264],[-22,410],[34,233],[269,481],[932,660],[107,277],[254,197],[92,173],[135,146],[127,49],[86,-136],[-58,-208],[-133,-235],[-128,-145],[-290,-551],[-113,-93],[-269,-89],[-111,-120],[-100,-163],[-157,-378],[-177,-301],[-168,-581],[-100,-184]],[[85594,119323],[-216,-252],[-11,-12],[-127,-39],[-345,79],[-151,-27],[-139,-143],[-184,-604],[112,-151],[50,-171],[15,-204],[-51,-317],[-63,-184],[-148,-189],[-156,-14],[-133,143],[-129,30],[-98,-122],[-105,-268],[-85,-141],[-369,-263],[-127,-142],[-92,-485],[-210,-194],[-122,48],[-106,145],[-40,226],[-9,391],[78,141],[212,252],[147,377],[269,422],[114,371],[220,315],[54,217],[79,175],[269,255],[430,982],[212,239],[122,11],[150,-42],[330,-22],[127,-105],[255,-131],[162,-340],[-55,-181],[-136,-76]],[[83734,121004],[-111,-120],[-141,-12],[-284,111],[-135,-46],[-218,139],[113,99],[157,312],[105,92],[297,130],[127,1],[70,-92],[28,-36],[49,-199],[9,-182],[-66,-197]],[[87587,122769],[-241,-430],[-127,5],[-49,185],[164,553],[216,209],[150,40],[-113,-562]],[[93682,130987],[-280,88],[-487,170],[-378,109],[-365,0],[-338,-48],[-338,-95],[-287,-111],[-11,-5],[-360,-217],[-338,-218],[-892,-584],[-924,-605],[-1271,-898],[-447,-384],[-107,-92],[-699,-686],[-239,-272],[-72,-109],[-76,-38],[-5,-3],[-109,17],[-73,84],[-84,144],[-54,105],[-54,106],[-171,102],[-140,13],[-221,-47],[-230,-163],[-288,-191],[-361,-319],[-288,-374],[-167,-245],[-153,-360],[-51,-304],[-84,-240],[-99,-129],[-235,-150],[-167,-98],[-428,-4],[-156,-97],[-141,-32],[-132,-379],[-58,-158],[-94,-224],[-81,-159],[-70,-127],[-98,-156],[-90,-121],[-86,-78],[-106,-85],[-94,-55],[-95,-37],[-160,-20],[-187,10],[-196,34],[-191,7],[-149,-7],[-160,-27],[-180,-68],[-95,-31],[-59,-58],[-65,-71],[-99,-126],[-50,-92],[-31,-85],[-5,-64],[84,-58],[38,-75],[20,-98],[-22,-102],[-36,-123],[-34,-112],[-11,-143],[-18,-200],[-104,-422],[-42,-345],[-154,-179],[-187,-128],[-147,-89],[-142,-54],[-83,-95],[-111,-64],[-88,-8],[-38,11],[-96,-41],[-505,-299],[-198,-75],[-251,-105],[-18,-63],[16,-87],[126,-92],[145,-27],[157,14],[86,-62],[23,-88],[-42,-163],[-197,-95],[-280,-204],[-374,-102],[-279,-55],[-194,136],[-95,211],[-72,48],[-176,13],[-189,-204],[-432,-346],[-180,-259],[-150,-325],[-171,-225],[-40,-286],[22,-177],[-194,-210],[-201,-111],[-91,-19],[-114,-105],[-107,85],[-74,133],[-147,78],[-185,75],[-72,47],[-117,-7],[-97,62],[7,179],[22,201],[203,245],[2,177],[112,310],[75,254],[90,102],[221,163],[293,136],[291,60],[295,389],[144,360],[14,143],[-5,136],[18,224],[433,340],[171,224],[104,164],[49,122],[73,197],[13,109],[-17,159],[58,133],[-15,151],[78,128],[-77,204],[-86,258],[-126,191],[-135,-7],[-140,27],[-121,34],[-98,121],[-69,321],[-4,59],[-14,233],[-149,157],[-148,122],[-302,231],[-235,109],[-203,7],[-76,-55],[-16,-70],[-29,-134],[-144,-170],[-320,-442],[-185,-74],[-356,-68],[-338,-34],[-95,74],[-190,-45],[-8,-2],[-1,0],[-1,-1],[-3,0],[-6,-2],[-14,-3],[-137,-35],[-247,-301],[-200,-86],[-89,52],[-73,-18],[-171,-279],[-158,-177],[-157,39],[-91,308],[86,95],[-77,170],[-121,88],[-135,61],[-136,68],[-133,7],[-11,0],[-117,-34],[-45,-115],[18,-131],[10,-74],[-96,-298],[-15,-227],[-2,-33],[-65,-62],[-66,-63],[-131,-125],[-151,-277],[-79,25],[9,123],[41,149],[13,184],[-36,217],[-29,137],[-30,137],[77,454],[7,169],[68,116],[96,163],[-36,157],[-80,137],[-19,33],[-387,374],[-239,197],[-249,81],[-192,-24],[-73,-10],[-323,-109],[-20,-6],[-428,-211],[-567,-360],[-559,-456],[-631,-646],[-289,-190],[-301,-195],[-248,-97],[-1059,-558],[-230,-75],[-108,-6],[-158,-238],[-162,-95],[-55,95],[5,74],[113,143],[63,238],[108,360],[49,286],[-67,177],[-140,258],[-103,82],[-134,30],[-355,174],[-93,23],[-48,-1],[-28,32],[-55,-14],[-173,-44],[-128,-47],[-77,-72],[-74,-105],[-115,-58],[-81,95],[-52,72],[-5,149],[-9,187],[-55,14],[-105,109],[-81,13],[-119,-71],[-118,-123],[-268,-295],[-23,-24],[-139,-136],[-86,-133],[-40,-54],[-5,-48],[30,-27],[29,-27],[38,-102],[21,-313],[-16,-105],[-29,-163],[56,-160],[-45,-262],[-9,-112],[76,-241],[57,-89],[-5,-88],[-54,-105],[-223,-269],[-160,-126],[-88,-187],[-38,-159],[-126,-55],[-66,17],[-31,-102],[-3,-107],[-49,-63],[-63,-47],[-81,-24],[-35,61],[-80,14],[-59,51],[-72,98],[-25,-64],[-47,-28],[-25,38],[-47,122],[-90,116],[-93,95],[-94,61],[-198,4],[-88,57],[-51,100],[30,125],[0,136],[-42,81],[-110,148],[-32,46],[0,1],[-14,19],[-16,113],[-238,207],[-100,-69],[-94,-26],[-80,-6],[-56,-4],[16,-58],[-25,-55],[-36,-23],[-113,-84],[-74,-86],[-31,-131],[-243,-234],[-35,-33],[-110,-105],[-9,-82],[-36,-133],[32,-74],[-3,-96],[-58,-91],[49,-99],[-119,-92],[-118,44],[37,228],[22,61],[-31,116],[-68,146],[-76,126],[-298,299],[-133,105],[-92,31],[-197,-106],[-73,-19],[-69,-13],[-121,-25],[-103,12],[-74,-12],[-65,-48],[-36,-15],[-45,-15],[-35,-12],[-74,-5],[-98,-25],[-18,-4],[-1,0],[-66,-21],[-49,-30],[-46,-54],[-46,-113],[-55,-194],[-34,-102],[-34,-103],[1,-102],[-11,-24],[-12,-24],[-50,-43],[-293,-256],[-360,-299],[-338,-415],[-415,-577],[-658,-1041],[-133,-304],[-74,-185],[-27,-304],[45,-152],[72,14],[221,61],[225,-272],[183,-177],[81,-147],[-2,-145],[-59,-41],[-281,-79],[-75,-63],[-36,-130],[-81,-319],[-5,-238],[172,-20],[148,-28],[91,-156],[-37,-150],[-102,-202],[-438,-328],[-406,-183],[-221,-41],[-257,-55],[-40,82],[149,136],[40,116],[-90,129],[-113,61],[-162,41],[-180,-27],[-140,-48],[-144,-129],[-104,-177],[-586,-1394],[-38,-139],[-38,-139],[-20,-164],[-8,-58],[-13,-105],[-13,-231],[40,-92],[41,-91],[31,-89],[63,-4],[167,-43],[140,47],[97,-69],[110,-12],[63,-68],[-22,-123],[-112,-204],[-114,-258],[-256,-252],[-254,-216],[-161,-49],[-97,-88],[-97,-88],[-257,-136],[-126,-55],[81,-510],[95,-603],[49,-614],[59,-149],[297,81],[95,-81],[104,-177],[-36,-156],[-99,-238],[31,-136],[106,-276],[16,-159],[-54,-218],[-104,-50],[-198,9],[-144,198],[-50,278],[-68,62],[-126,-34],[-103,-102],[-131,-184],[-203,-462],[-333,-866],[-217,-725],[-207,-897],[-121,-1106],[-28,-186],[14,-150],[51,-165],[52,-164],[266,-1316],[-9,-109],[-9,-108],[-64,-170],[-99,-151],[-230,-263],[-66,-273],[-272,-911],[-58,-196],[-112,-287],[-167,-727],[-18,-175],[-49,-486],[-39,-375],[-39,-375],[9,-458],[10,-531],[57,-248],[56,-247],[56,-125],[61,-182],[35,-44],[31,-12],[29,-53],[55,-155],[15,-62],[16,-21],[31,4],[179,133],[137,65],[57,34],[4,62],[27,25],[117,22],[120,75],[201,124],[116,26],[119,-12],[94,-31],[95,-31],[153,-122],[135,-190],[59,-150],[104,-57],[171,-58],[176,-170],[171,-123],[41,-176],[-1,-74],[0,-341],[-161,-603],[-113,-193],[-6,-79],[-6,-80],[-321,-422],[-419,-552],[-112,-100],[-195,-176],[-1472,-1320],[360,-345],[-261,-1064],[128,-1486],[42,-71],[25,-77],[336,-539],[114,-173],[293,-143],[320,53],[165,-320],[-45,-199],[-586,-502],[-11,-1250],[-416,113],[-113,-501],[213,-334],[58,-91],[-51,-176],[-524,-494],[-337,-180],[-927,196],[-372,-300],[-231,-596],[116,-1987],[-481,-416],[-34,-188],[332,-397],[-157,-526],[792,-1032],[644,352],[557,-3],[124,-111],[180,-490],[-29,-181],[-231,-106],[-100,-370],[100,-554],[189,-394],[-155,-286],[-707,-122],[-217,-519],[-136,-82],[-669,855],[-284,270],[-136,-19],[-501,-909],[-488,-589],[-63,-644],[0,-11],[4,-275],[-5,-232],[28,-318],[-10,-24],[-145,-354],[-140,-182],[-812,379],[-226,-335],[-162,-450],[27,-256],[599,-950],[129,19],[741,995],[770,38],[438,-212],[0,-56],[0,-165],[-854,-1475],[-396,-252],[-501,337],[-333,-211],[-29,-349],[291,-428],[-61,-786],[-717,-275],[-322,421],[-209,-33],[-281,-425],[-126,-569],[-89,-405],[-137,-620],[5,-1041],[585,-958],[840,-1572],[3,-53],[155,-270],[275,359],[-49,-463],[-50,-463],[148,-343],[532,249],[282,-130],[-176,-1300],[175,-257],[536,-278],[-224,-355],[262,-397],[111,-740],[-188,-99],[-728,-117],[-235,-481],[58,-157],[374,-221],[346,-543],[56,-576],[-225,-615],[-200,-547],[-401,-1095],[28,-725],[218,-252],[849,-89],[530,279],[210,-65],[850,190],[435,239],[101,19],[310,57],[566,-149],[375,294],[375,1867],[192,525],[380,567],[304,902],[426,106],[579,-340],[197,-278],[282,-71],[433,505],[219,477],[1434,920],[566,858],[133,612],[-163,310],[-431,32],[-183,306],[-261,-63],[-21,334],[763,352],[571,590],[86,-370],[134,22],[190,257],[423,1666],[404,248],[156,-30],[76,-467],[-117,-849],[162,-267],[226,126],[203,880],[241,221],[150,-1],[572,-739],[148,-32],[346,338],[303,809],[127,794],[8,485],[-176,736],[505,1168],[463,2427],[282,675],[432,374],[1116,92],[331,260],[383,542],[246,12],[-192,-745],[-26,-775],[-375,-655],[249,-483],[12,-363],[-149,-456],[240,-518],[573,-203],[410,246],[806,127],[514,-324],[906,299],[404,-229],[854,-154],[-14,-544],[108,-347],[-271,-708],[141,-567],[531,-107],[184,-311],[727,-553],[920,481],[219,-63],[105,-212],[15,-862],[-376,-223],[-782,112],[-539,-347],[-310,-395],[-326,-979],[-445,-699],[-71,-250],[248,-510],[120,-59],[325,345],[100,-108],[57,-365],[-241,-1402],[105,-822],[-283,-664],[-699,-450],[-1239,664],[-159,499],[325,507],[-22,187],[-106,339],[-312,413],[-1005,83],[-448,-695],[-254,-6],[182,1221],[218,338],[163,571],[480,588],[44,406],[-136,23],[-224,-426],[-502,-333],[-219,-758],[-1423,-1153],[-759,-1240],[-463,-351],[-267,69],[-72,159],[-95,1484],[-781,-209],[-429,1098],[-722,-16],[-439,328],[-128,-24],[-49,-167],[184,-553],[-28,-549],[644,-684],[198,-630],[-9,-339],[-118,-406],[-890,-824],[-254,-696],[20,-381],[156,-29],[1081,632],[231,752],[158,148],[627,-487],[58,-592],[-71,-188],[-530,-347],[-772,-1222],[-975,-624],[-298,-496],[-358,-284],[-778,27],[-170,287],[58,458],[-78,450],[-609,447],[-140,-153],[-251,-1237],[-483,-857],[-561,-688],[51,-405],[254,-291],[651,392],[458,3],[171,-36],[-44,-366],[-686,-716],[-541,-181],[-772,215],[-190,283],[-140,539],[-112,-78],[-179,-314],[-270,-188],[-125,-369],[60,-177],[864,-411],[368,-407],[155,-142],[-14,-122],[-129,-123],[-76,-215],[-143,-79],[-220,71],[-143,-115],[-191,-237],[-233,-374],[-136,-328],[-241,-255],[-229,-86],[-229,-130],[-410,-352],[-372,-302],[-167,79],[-176,79],[-181,7],[-110,14],[-96,-86],[-6,-59],[169,-56],[85,-50],[6,-80],[4,-64],[253,-238],[152,89],[115,-24],[243,309],[9,4],[497,212],[209,36],[148,72],[358,-187],[167,-108],[214,-75],[220,3],[185,14],[268,209],[138,159],[-33,158],[-48,194],[81,108],[129,14],[86,80],[100,7],[67,-43],[-34,-123],[38,-151],[89,-30],[226,167],[186,50],[215,130],[95,122],[177,345],[9,137],[-100,345],[-29,461],[143,108],[129,-87],[186,-172],[179,-75],[79,104],[38,172],[-38,259],[90,285],[385,132],[424,-117],[35,-149],[-124,-230],[-166,-201],[-229,-288],[-47,-193],[-101,-102],[-34,-187],[101,-295],[119,43],[152,187],[158,252],[162,115],[310,0],[339,36],[281,-65],[110,101],[190,432],[43,316],[105,151],[283,271],[85,578],[525,1303],[148,134],[268,-350],[452,180],[213,201],[444,1008],[367,361],[1023,192],[163,-328],[299,-98],[267,137],[284,379],[1061,203],[218,42],[42,-516],[277,-776],[846,-997],[403,-141],[131,27],[131,28],[235,451],[811,881],[417,89],[2,-2],[216,-243],[261,-1],[659,877],[832,599],[445,153],[404,-205],[168,-313],[-11,-321],[-510,-609],[-184,-553],[-488,-458],[-149,-662],[-268,-604],[-268,41],[-282,-409],[-659,-458],[-168,-228],[-341,-323],[-12,-90],[-7,-133],[40,-97],[96,-130],[81,-56],[5,-142],[-53,-109],[22,-68],[-41,-89],[0,-86],[24,-126],[-43,-126],[-84,-94],[-152,-158],[-60,-129],[-78,-69],[-89,-93],[-50,-151],[-50,-155],[-71,-165],[-160,-256],[-107,-201],[-167,-288],[-132,-244],[-395,-544],[-67,-151],[-36,-198],[-11,-217],[-63,-110],[-107,-79],[-155,-65],[-36,-54],[-14,-104],[14,-234],[22,-227],[21,-183],[-27,-77],[46,-171],[77,-144],[19,-54],[-24,-94],[-38,-82],[-82,-11],[-97,-22],[-74,-93],[-100,-130],[-84,-133],[-19,-88],[-19,-87],[10,-328],[-10,-288],[-5,-428],[3,-266],[-60,-227],[-65,-165],[-95,-80],[-59,-86],[-61,-139],[-230,-285],[-112,-94],[-84,-25],[-43,-83],[-71,-54],[-183,-137],[-89,8],[-45,-58],[-22,-111],[-45,-148],[-3,-147],[74,-267],[70,-147],[0,-90],[-127,-363],[-79,-115],[-38,-116],[55,-50],[5,-104],[-9,-249],[-29,-168],[-52,-40],[-36,-151],[-50,-45],[-55,-193],[-60,-64],[-100,43],[-143,-32],[-74,-69],[-17,-57],[15,-77],[-20,-17],[-41,35],[-28,-21],[-143,-151],[-97,-169],[-115,-104],[-36,-137],[-55,-108],[-74,-122],[-64,-101],[-64,-154],[-15,-148],[-7,-57],[-74,-36],[-71,-29],[-98,-140],[-64,-72],[-84,-195],[-119,-230],[-172,-216],[-67,-7],[-31,-93],[22,-94],[69,-137],[-5,-53],[-86,-166],[2,-144],[-52,-219],[-45,-87],[-7,-187],[33,-132],[-9,-58],[-143,-141],[-124,-122],[-119,42],[-127,91],[-79,-11],[-102,0],[-53,-89],[-81,-66],[-76,12],[-112,-33],[-110,-65],[-95,-133],[-93,-190],[-37,-102],[-94,-64],[-77,-90],[-31,-72],[-33,-187],[-57,-208],[-110,-241],[-133,-148],[-46,-104],[-31,-151],[37,-154],[75,-210],[101,-172],[81,-108],[100,-79],[14,-137],[81,14],[19,-43],[48,0],[36,58],[62,324],[71,50],[115,54],[66,68],[167,-241],[139,-162],[143,-75],[176,-54],[160,-4],[117,-72],[71,15],[93,-76],[55,-201],[36,-166],[5,-111],[-31,-155],[-182,-183],[5,-83],[29,-130],[55,-86],[74,-13],[83,17],[100,61],[96,0],[126,155],[143,115],[57,-4],[60,68],[69,-32],[5,-122],[-3,-209],[-35,-194],[-86,-144],[-55,-158],[-43,-220],[-33,-413],[-81,-184],[-10,-122],[86,29],[100,18],[91,43],[105,-18],[112,-47],[59,-58],[65,54],[81,26],[190,-51],[39,-25],[45,47],[102,61],[53,4],[77,-62],[80,-46],[74,-65],[34,50],[33,76],[72,-51],[52,87],[86,72],[59,-7],[65,21],[81,36],[137,6],[109,-42],[71,-47],[43,-25],[29,-133],[50,-61],[40,-54],[50,29],[38,100],[41,26],[62,61],[91,72],[52,82],[36,116],[26,100],[-48,76],[-9,97],[2,108],[31,111],[67,123],[45,57],[7,72],[-28,65],[-131,126],[-117,115],[-129,143],[-182,146],[-174,105],[-158,134],[-64,128],[-84,192],[-53,206],[-1,1],[0,2],[-49,104],[-51,65],[-51,66],[-82,34],[-102,74],[-115,96],[-117,123],[-72,81],[-43,81],[2,74],[10,108],[0,104],[-30,73],[2,100],[-28,108],[-61,50],[-41,93],[-95,131],[-115,181],[-61,100],[-77,31],[-76,58],[-10,131],[20,146],[77,89],[94,73],[95,143],[51,177],[123,212],[69,112],[120,201],[122,27],[146,65],[128,81],[76,27],[52,-46],[17,-74],[-66,-80],[-69,-143],[-100,-181],[-71,-147],[-31,-131],[64,-118],[74,-86],[95,-8],[156,12],[253,0],[186,-70],[59,-46],[-8,-100],[74,-58],[126,-44],[112,-14],[89,81],[115,107],[133,232],[29,96],[148,278],[89,116],[-3,92],[126,247],[69,54],[5,104],[5,135],[51,73],[93,47],[60,243],[118,142],[74,73],[49,35],[43,-46],[61,31],[41,92],[19,110],[96,152],[154,189],[94,82],[41,184],[61,66],[74,85],[72,88],[18,162],[64,120],[20,100],[44,162],[2,119],[26,104],[28,108],[-41,143],[-60,114],[-27,90],[15,127],[64,101],[67,92],[92,12],[69,73],[52,152],[11,188],[16,281],[-38,154],[-26,112],[13,61],[59,43],[83,48],[32,110],[-15,111],[27,136],[59,181],[82,185],[105,131],[87,85],[25,162],[18,185],[-25,138],[-16,78],[0,150],[59,23],[64,46],[77,-46],[53,-35],[39,27],[5,104],[13,86],[38,78],[46,95],[25,111],[74,108],[82,81],[123,70],[125,88],[21,139],[-26,127],[69,197],[38,131],[13,185],[49,208],[97,116],[99,166],[115,185],[62,173],[-33,185],[-31,178],[51,200],[115,166],[6,110],[-34,229],[-8,96],[27,86],[42,130],[36,143],[-64,166],[-54,204],[-5,212],[46,112],[103,123],[150,73],[82,112],[539,386],[129,609],[721,555],[1278,369],[764,494],[536,998],[696,214],[1114,1407],[91,768],[-156,1156],[-48,168],[-389,113],[-27,382],[528,675],[71,301],[687,132],[303,376],[452,154],[404,-39],[372,187],[156,-10],[248,-286],[917,205],[659,-257],[749,129],[276,-216],[411,-55],[626,593],[319,676],[560,225],[70,-169],[692,56],[659,959],[701,239],[208,-272],[-43,-945],[-352,-608],[-1632,-1581],[-254,-689],[-920,-945],[-1052,-1725],[-319,-1336],[100,-159],[516,156],[98,-132],[-161,-536],[97,-645],[-113,-723],[-819,-960],[-232,-467],[-353,-289],[-127,-1478],[-845,-936],[118,-823],[387,-869],[728,-921],[543,224],[502,563],[133,-73],[187,-578],[598,-509],[572,250],[369,-269],[217,312],[257,8],[339,-600],[685,212],[782,-534],[1394,637],[226,223],[440,70],[112,-113],[-171,-534],[276,-34],[86,-431],[226,-169],[635,164],[799,755],[107,380],[912,1658],[628,-184],[495,-560],[-112,-524],[1574,-583],[862,-890],[120,-1228],[262,60],[507,-197],[164,-298],[-6,-547],[273,-150],[234,220],[304,-364],[-260,-1088],[-192,-306],[50,-173],[361,-198],[360,194],[566,-597],[697,-2245],[807,-259],[1003,512],[657,-977],[6,-927],[-232,-144],[-659,-1225],[-485,-131],[-403,-448],[-114,305],[185,511],[-226,1301],[-149,48],[-304,-333],[-253,98],[-151,1486],[-663,-39],[-1950,607],[-184,258],[-182,883],[-933,-16],[-114,-137],[-114,-899],[-565,-226],[-453,-480],[-409,-54],[-114,-498],[-967,-1928],[-191,-872],[183,-241],[-169,-478],[91,-555],[-155,-306],[-352,-39],[-134,1095],[-248,-6],[-256,-95],[-584,-757],[-502,-100],[-242,-461],[-13,-410],[-360,-177],[-339,1154],[-870,-9],[-98,-132],[112,-317],[-284,-313],[8,-535],[-396,-482],[-201,-662],[-716,-389],[91,-305],[-44,-347],[409,-227],[147,-599],[-916,-888],[-281,-1595],[-296,-373],[910,-1274],[120,-1334],[-234,-369],[-367,-1111],[-1153,-1816],[-974,-2326],[-147,-588],[-242,-207],[-671,-1203],[-637,-796],[-280,-846],[-390,-523],[-213,-499],[-606,-463],[-100,-373],[-1518,-1070],[-489,329],[-226,499],[-550,517],[-771,-264],[-545,-646],[-212,-525],[-339,-328],[-177,-1212],[-211,-341],[-572,395],[-85,638],[-127,318],[120,1216],[-205,1547],[190,725],[241,2143],[-325,331],[-834,-455],[-409,544],[-658,-643],[-106,-346],[-497,-330],[362,1547],[-176,314],[-241,126],[-176,716],[79,1350],[-95,178],[-130,15],[-92,-69],[-153,-16],[-98,23],[-159,-91],[1,184],[82,170],[5,161],[-169,178],[-220,139],[-224,15],[-164,-46],[-97,-162],[-97,46],[-87,-8],[-102,-231],[-51,-293],[-46,-270],[-52,-316],[-146,-820],[-48,-437],[-380,-1263],[-50,-166],[-101,-321],[-179,-247],[-159,-254],[-265,-173],[-205,3],[-165,-158],[-152,-27],[-136,106],[-89,141],[-30,116],[-15,179],[35,260],[151,-98],[135,183],[98,239],[81,216],[-71,116],[36,262],[143,509],[250,493],[298,325],[142,68],[56,259],[163,273],[31,216],[-102,507],[-5,295],[46,270],[-82,208],[41,208],[112,270],[-25,224],[-74,111],[-75,112],[-378,386],[-444,462],[-450,355],[-552,409],[-481,300],[-270,154],[-210,54],[-118,-84],[-97,-316],[-184,-162],[-127,-101],[-138,-61],[-105,-175],[-57,-95],[-99,15],[-97,-115],[-87,-33],[-77,117],[-174,78],[-122,23],[-138,-124],[-169,-169],[-230,-340],[-107,-177],[-69,-357],[2,-283],[-47,-166],[-126,-81],[-57,-269],[-148,-201],[-108,-293],[-114,-306],[-3,-133],[-214,-170],[-189,-154],[-159,-116],[-57,-65],[-66,111],[-204,-246],[-123,-39],[-153,8],[-112,77],[-46,116],[-41,108],[-133,30],[-46,54],[-31,155],[-66,7],[-97,-61],[-98,54],[0,123],[21,139],[-36,192],[-77,116],[-76,100],[-113,1],[-71,130],[-33,66],[-34,66],[-153,69],[-143,85],[-107,-16],[-138,-61],[-113,-124],[-138,-254],[-82,-301],[-51,-293],[67,-254],[173,-409],[-51,-239],[0,-162],[73,-211],[135,-110],[145,-10],[123,92],[127,16],[60,-77],[63,-147],[189,-77],[143,69],[72,-31],[36,-231],[-99,-364],[-157,-145],[-153,0],[-108,131],[-86,47],[-193,-150],[-53,165],[-30,147],[-108,38],[-153,-124],[-41,62],[-10,170],[-97,31],[-215,-116],[-97,31],[-107,54],[-154,-108],[-148,54],[-209,0],[-470,36],[-67,72],[-15,193],[-108,54],[-240,-93],[-189,-8],[-133,170],[-112,116],[-92,192],[-108,139],[-119,66],[-24,212],[61,262],[0,278],[67,100],[102,123],[72,123],[-41,147],[-62,23],[-117,54],[-187,-79],[-54,38],[21,188],[118,138],[30,293],[-15,262],[-46,270],[-36,147],[-107,169],[-199,155],[-63,-116],[-55,-100],[-1,-3],[-2,-4],[-52,-105],[-144,-157],[0,-1],[-235,-247],[-230,-223],[-144,-16],[-153,-169],[-138,23],[-214,69],[-167,40],[-63,-40],[-62,-50],[-36,-112],[31,-293],[-46,-254],[-74,-224],[-197,-247],[-102,-208],[20,-401],[82,-300],[21,-332],[-21,-200],[-66,-157],[97,-59],[199,46],[138,100],[159,23],[35,-308],[26,-193],[-128,-193],[-59,-117],[-60,-186],[-203,-506],[-286,-254],[-235,-239],[-220,-293],[-133,-16],[-25,117],[311,747],[26,238],[102,278],[-10,193],[-87,170],[-107,69],[-251,-67],[-66,-18],[-337,-77],[-302,-92],[-143,30],[-143,62],[-63,142],[17,274],[5,324],[-36,278],[-10,262],[-41,85],[-276,-16],[-138,39],[-169,177],[-204,93],[-169,92],[-235,39],[-169,-46],[-237,-194],[-222,-69],[-164,31],[-158,62],[5,254],[-31,270],[-41,147],[-102,246],[-51,139],[-169,131],[-217,31],[-276,-8],[-215,-115],[-189,-216],[-61,-154],[60,-201],[83,-247],[-77,-231],[-203,-203],[-112,38],[-63,188],[-143,154],[-118,47],[-122,7],[-179,-77],[-210,-115],[-128,-8],[-127,-62],[-200,-239],[-244,-171],[30,140],[-97,8],[-123,23],[-148,-38],[-210,-131],[-240,-147],[-276,-162],[-429,-223],[-404,-424],[-460,-679],[-169,-339],[-122,-301],[-87,-216],[-46,-262],[-27,-307],[42,-333],[72,-69],[306,-77],[419,-124],[0,-100],[-217,-394],[-89,-161],[-118,-224],[-25,-293],[-164,-154],[-194,232],[-108,54],[-41,230],[-132,63],[-57,285],[-158,-62],[-128,93],[-10,192],[87,85],[-102,178],[-123,46],[-118,15],[-276,-69],[-184,-131],[-92,31],[-102,-101],[-172,-203],[-267,-429],[-220,-478],[-184,-501],[-31,-231],[66,-214],[62,-133],[-107,-301],[5,-292],[37,-200],[147,-348],[184,-139],[276,-278],[255,-401],[287,-262],[112,-139],[-72,-239],[92,-84],[195,-70],[179,16],[184,15],[66,-69],[-449,-341],[-233,-176],[-310,-23],[-245,200],[-264,307],[-359,418],[-266,232],[-399,92],[-419,15],[-305,407],[-31,72],[-200,470],[-290,678],[-15,37],[-305,463],[-305,464],[-828,771],[-169,193],[-169,193],[-35,35],[-501,512],[-340,351],[-228,212],[-127,85],[-257,176],[-214,86],[-27,19],[-117,81],[-224,154],[-322,216],[-250,247],[-184,455],[-72,478],[-37,480],[-16,189],[-85,472],[-92,416],[-194,447],[-107,255],[-108,254],[-235,-46],[-296,-167],[-348,74],[-347,155],[-675,555],[-531,478],[-317,92],[-479,-182],[-523,-34],[-313,61],[-156,31],[-157,30],[-152,288],[113,389],[113,389],[204,771],[-51,509],[-133,539],[-265,509],[-368,339],[-399,404],[-184,337],[-13,363],[231,420],[194,644],[79,731],[17,268],[74,652],[36,210],[99,189],[157,302],[24,70],[12,38],[10,112],[-42,316],[-40,129],[-27,87],[-100,216],[-191,151],[-177,86],[-232,91],[-181,95],[-183,59],[-210,187],[-257,172],[-343,418],[-266,424],[-225,894],[-85,759],[29,366],[0,5],[12,156],[182,489],[162,302],[59,363],[-112,548],[-184,332],[-279,233],[-438,366],[-914,585],[-919,632],[-893,613],[-1121,1047],[-373,760],[-85,458],[90,1073],[-36,93],[-51,135],[-178,-34],[-295,-220],[-776,-581],[-106,-106],[-858,-858],[-763,-601],[-333,-176],[-544,-129],[-611,-418],[-257,0],[-258,0],[-192,383],[74,684],[285,1098],[482,1555],[110,331],[-3,72],[-2,72],[-43,194],[-74,122],[-74,123],[-91,126],[-233,327],[-243,284],[-140,186],[-141,114],[-168,92],[-88,138],[-21,215],[114,858],[115,602],[0,248],[0,248],[-115,396],[-186,245],[-300,180],[-205,122],[-334,108],[-315,72],[-195,100],[-191,223],[-248,339],[-210,194],[-239,194],[-267,288],[-176,180],[-62,122],[-20,193],[64,323],[185,369],[283,357],[265,427],[172,439],[86,511],[-3,13],[-3,14],[-28,124],[-95,129],[-140,53],[-812,-184],[-250,44],[-51,9],[-197,121],[-119,130],[-143,165],[-267,303],[-296,273],[-200,367],[-124,259],[-143,184],[-206,110],[-157,65],[-145,123],[-145,122],[-172,187],[-208,208],[-217,123],[-386,86],[-358,51],[-314,29],[-382,-22],[-232,-25],[-48,-6],[-43,-6],[-79,-7],[-61,-6],[-250,-32],[-269,-22],[-283,-27],[-156,-22],[-725,-236],[-515,-81],[-311,-33],[-301,103],[-98,68],[-244,167],[-97,106],[-256,282],[-286,388],[-86,144],[-86,144],[-394,624],[-402,645],[-44,947],[-272,961],[-335,504],[-653,241],[-640,66],[-72,876],[-247,790],[-349,1030],[-189,833],[99,802],[337,1083],[385,566],[284,450],[612,545],[298,630],[327,1022],[-857,883],[77,1048],[-137,1333],[139,611],[134,192],[1400,1296],[405,793],[37,50],[83,101],[46,50],[-98,124],[-86,108],[-178,152],[-100,250],[-30,232],[65,179],[119,152],[272,357],[18,70],[89,332],[126,743],[-80,1006],[-66,314],[-63,302],[50,302],[271,340],[188,239],[4,107],[50,157],[204,201],[192,-56],[67,-82],[167,-38],[529,19],[121,25],[154,176],[50,221],[67,75],[209,63],[867,25],[350,-6],[146,-38],[133,164],[138,182],[67,164],[58,226],[50,107],[50,101],[59,138],[108,189],[87,88],[51,50],[91,101],[150,138],[663,-75],[171,106],[130,252],[75,283],[16,82],[-229,233],[0,94],[96,94],[246,38],[292,-157],[79,82],[71,62],[167,76],[371,-195],[162,245],[121,208],[109,94],[151,49],[203,64],[33,13],[5,314],[-9,535],[-104,459],[321,516],[284,365],[287,12],[221,0],[125,-19],[67,48],[67,47],[133,233],[109,-44],[150,-246],[41,-170],[9,-31],[12,-44],[425,-38],[280,32],[196,50],[267,113],[87,65],[134,99],[279,371],[192,459],[104,226],[96,101],[75,63],[321,465],[204,0],[200,-75],[92,-120],[171,-213],[171,12],[92,69],[96,69],[325,680],[65,200],[39,122],[-8,275],[13,231],[7,132],[9,153],[83,214],[63,189],[58,-7],[117,120],[44,169],[19,70],[-30,968],[-129,284],[-100,358],[-109,601],[-14,76],[-19,103],[-187,843],[-150,547],[-92,170],[-113,314],[-137,164],[-25,295],[246,485],[62,132],[67,214],[133,144],[271,107],[217,95],[242,19],[246,37],[217,-113],[38,-28],[79,-60],[325,69],[254,214],[38,409],[-21,201],[-4,189],[37,201],[4,145],[-62,157],[-142,126],[-165,159],[-227,218],[-38,88],[-66,151],[-84,210],[-95,237],[1,121],[3,149],[-37,149],[-5,21],[2,12],[48,403],[56,142],[19,47],[146,82],[159,63],[204,157],[200,258],[117,251],[87,189],[138,239],[54,50],[50,107],[54,195],[38,271],[-17,276],[-83,290],[-100,327],[-59,239],[-37,251],[0,239],[16,208],[17,132],[50,283],[84,220],[129,258],[158,233],[196,31],[146,183],[113,182],[171,497],[96,264],[-5,264],[-83,177],[-113,119],[-246,327],[-158,189],[-225,25],[-154,-31],[-171,100],[-34,13],[-24,67],[-88,241],[-117,409],[-33,308],[-30,277],[-12,257],[8,214],[42,101],[150,164],[317,302],[104,207],[4,132],[0,139],[25,132],[50,157],[15,19],[15,19],[150,88],[204,182],[125,138],[271,302],[275,327],[59,63],[91,290],[25,220],[17,226],[-19,44],[-18,44],[-217,132],[-175,-56],[-146,-63],[-38,6],[-142,76],[-146,69],[-37,44],[-96,182],[25,170],[129,189],[205,220],[71,163],[8,277],[-4,264],[-134,183],[-75,151],[-33,170],[-33,339],[-5,283],[-66,101],[-226,182],[-145,44],[-126,13],[-145,0],[-467,-76],[-297,-75],[-125,-88],[-75,88],[46,560],[205,1251],[-25,101],[0,145],[8,144],[108,283],[138,221],[104,301],[159,246],[258,277],[104,144],[6,10],[103,185],[50,302],[55,201],[28,101],[63,182],[79,302],[17,340],[12,415],[54,447],[25,151],[96,390],[63,302],[29,176],[87,452],[21,82],[-4,183],[-58,220],[-84,170],[-154,195],[-162,144],[-184,189],[-34,37],[-58,64],[-125,213],[159,229],[216,312],[59,63],[171,195],[117,82],[171,-38],[175,-50],[75,50],[69,129],[39,73],[371,75],[60,51],[86,75],[146,245],[71,283],[-46,315],[-37,207],[-12,25],[-36,76],[-28,56],[-18,25],[-55,74],[-181,241],[-162,63],[-55,157],[-12,277],[4,340],[-54,270],[-71,157],[-28,68],[-80,196],[-13,32],[-138,182],[-68,157],[-77,176],[-80,183],[246,340],[199,388],[14,27],[104,176],[150,182],[242,189],[417,484],[108,70],[125,75],[246,76],[176,-101],[133,-484],[104,522],[63,126],[137,132],[117,451],[100,391],[9,277],[16,189],[-4,327],[-54,233],[-163,698],[-87,182],[-142,340],[-4,258],[108,144],[113,195],[50,258],[33,214],[154,434],[117,384],[50,201],[-58,239],[-154,233],[-101,277],[-62,333],[25,340],[104,289],[200,145],[280,18],[150,63],[162,202],[142,295],[104,214],[134,302],[62,138],[38,114],[42,289],[133,340],[-8,239],[0,131],[0,89],[-17,44],[-63,163],[-104,202],[-75,138],[-108,208],[-159,289],[-10,18],[-2,5],[-25,46],[-79,138],[-55,227],[95,162],[92,157],[34,58],[79,105],[63,103],[2,10],[27,179],[13,182],[0,239],[0,384],[37,81],[92,158],[75,201],[17,75],[87,202],[100,157],[184,308],[54,63],[67,138],[108,139],[125,207],[58,199],[34,116],[29,195],[9,182],[-55,183],[-91,163],[-113,201],[-91,100],[-30,32],[-258,328],[-42,62],[-292,145],[-271,88],[-138,-44],[-95,-88],[-84,-50],[-175,170],[-129,245],[-34,151],[65,403],[2,12],[-15,197],[-14,168],[-71,314],[-125,189],[-113,101],[-87,119],[-104,157],[-63,214],[-12,63],[-63,283],[25,339],[28,55],[77,153],[67,132],[68,310],[40,167],[46,57],[106,-1],[325,5],[136,-11],[80,87],[151,83],[180,40],[221,126],[179,228],[199,429],[88,31],[460,168],[29,302],[30,216],[-68,188],[9,173],[-17,30],[-70,123],[-3,78],[99,135],[50,69],[51,171],[-24,227],[7,124],[-57,210],[-15,104],[-47,90],[-83,85],[-26,26],[-20,139],[-35,228],[33,140],[49,191],[66,122],[62,154],[13,150],[46,288],[22,152],[64,286],[90,226],[156,161],[196,61],[192,-20],[167,-145],[151,-174],[102,-91],[139,-49],[199,95],[89,44],[49,158],[140,488],[138,181],[125,148],[119,146],[183,118],[191,109],[254,57],[118,20],[208,-25],[228,-25],[99,0],[146,9],[197,61],[110,87],[161,53],[99,-33],[164,-73],[200,-210],[169,-226],[130,-242],[27,-195],[119,-274],[26,-52],[128,20],[138,70],[93,109],[170,44],[131,4],[143,-28],[263,-155],[119,-92],[95,-67],[115,-69],[140,-62],[81,-73],[77,-96],[258,-260],[142,-58],[144,50],[247,146],[113,229],[193,269],[89,278],[259,289],[199,273],[154,84],[211,-44],[206,-111],[220,-162],[224,-179],[178,29],[165,329],[40,159],[26,169],[-53,200],[-178,169],[-224,239],[-119,179],[-7,149],[-39,319],[0,388],[138,189],[311,189],[125,90],[205,100],[85,99],[146,70],[151,40],[172,40],[132,69],[86,175],[79,160],[35,151],[27,108],[35,83],[46,38],[57,12],[38,25],[20,30],[17,58],[20,139],[-38,444],[16,108],[29,111],[8,94],[-8,144],[-48,185],[-4,60],[8,83],[-14,78],[-28,69],[-95,110],[-30,77],[2,61],[42,67],[3,33],[-2,14],[-1,13],[-10,17],[-10,11],[-34,17],[-45,18],[-101,54],[-16,18],[-34,52],[-23,39],[-141,299],[-51,126],[-22,92],[0,124],[48,69],[84,77],[97,88],[55,111],[28,51],[29,73],[-3,98],[-22,99],[13,68],[39,37],[21,55],[10,61],[21,37],[44,37],[16,35],[0,191],[30,133],[30,56],[55,46],[43,67],[21,91],[4,46],[-14,28],[0,24],[22,7],[20,-5],[11,-25],[9,-14],[12,20],[-7,35],[6,23],[22,6],[13,18],[-7,26],[-12,5],[-6,21],[-4,26],[29,6],[15,17],[-11,30],[-12,25],[0,42],[18,31],[74,34],[25,116],[29,92],[3,96],[7,92],[-7,87],[-41,77],[-117,125],[-84,94],[-47,77],[-16,53],[-3,62],[10,59],[44,118],[27,120],[0,147],[24,69],[35,44],[85,61],[127,64],[85,144],[112,86],[107,36],[317,73],[89,50],[47,77],[30,116],[-10,136],[-56,166],[0,110],[43,161],[2,196],[37,97],[162,135],[34,45],[24,53],[25,88],[14,90],[2,15],[0,328],[0,10],[0,2],[15,50],[36,55],[24,12],[21,10],[83,6],[8,0],[93,-11],[43,9],[43,8],[124,44],[117,3],[17,10],[8,4],[32,-1],[146,-4],[129,19],[26,4],[119,33],[92,53],[148,150],[32,17],[36,63],[72,79],[7,7],[83,17],[45,-8],[230,116],[350,21],[47,30],[135,50],[371,247],[115,103],[13,18],[256,347],[164,144],[272,95],[137,72],[42,28],[61,41],[85,59],[136,64],[61,52],[62,89],[29,75],[24,221],[27,108],[10,18],[10,18],[69,75],[190,39],[92,7],[121,46],[203,258],[21,58],[64,112],[58,228],[148,221],[176,117],[108,111],[30,83],[61,119],[160,194],[81,52],[180,78],[101,169],[110,152],[59,45],[89,41],[58,1],[73,-45],[101,-146],[79,-52],[62,6],[49,25],[62,50],[45,61],[24,11],[234,484],[42,119],[25,127],[22,58],[30,36],[122,95],[81,116],[43,141],[24,238],[86,301],[44,117],[37,71],[46,37],[47,19],[40,-25],[59,-69],[34,-13],[116,8],[194,59],[58,-6],[116,-60],[92,-108],[63,-149],[16,-102],[-29,-177],[8,-53],[25,-32],[40,-3],[124,72],[115,6],[22,-6],[22,-5],[128,-66],[127,0],[128,86],[93,2],[91,-43],[58,-66],[119,-353],[155,-226],[149,-321],[184,-281],[42,-108],[10,-201],[10,-47],[19,-57],[40,-65],[159,-2],[81,17],[83,36],[128,83],[139,144],[51,69],[39,86],[22,86],[21,362],[16,108],[29,105],[55,138],[174,123],[240,-41],[589,231],[166,9],[121,-42],[139,-118],[168,-298],[284,-405],[116,-89],[375,-173],[130,-96],[127,-151],[154,-47],[90,-52],[63,-80],[71,-141],[111,-132],[82,14],[65,44],[75,116],[53,166],[2,114],[-16,121],[-78,329],[-34,238],[-2,110],[19,205],[26,124],[20,64],[80,152],[121,158],[158,268],[89,95],[71,47],[237,95],[148,39],[85,-3],[81,-71],[76,11],[39,47],[32,78],[31,163],[15,345],[34,163],[146,172],[104,164],[44,127],[7,193],[16,58],[186,288],[59,-2],[51,-27],[183,-215],[43,-11],[56,85],[31,114],[-8,110],[19,133],[56,191],[90,235],[83,125],[99,182],[47,128],[57,265],[30,94],[53,122],[53,86],[0,14],[63,83],[75,185],[25,117],[18,165],[24,97],[41,114],[69,133],[142,194],[146,249],[71,28],[58,5],[37,-11],[40,-30],[172,-226],[115,-132],[46,-69],[16,-42],[18,-96],[-4,-94],[-160,-230],[-32,-72],[-1,-42],[31,-58],[71,-66],[34,-66],[22,-113],[3,-166],[29,-63],[95,-56],[115,-46],[160,-33],[153,-49],[111,-69],[65,-85],[56,-252],[39,-80],[54,-74],[71,-72],[95,-69],[105,-5],[115,11],[65,-29],[54,-75],[151,-320],[95,-152],[176,-127],[76,-110],[79,-83],[148,-71],[115,-77],[99,-47],[255,-59],[319,-110],[214,-93],[85,-13],[45,-6],[131,152],[110,199],[104,236],[75,218],[57,195],[19,51],[39,100],[102,189],[363,415],[79,53],[165,1],[47,19],[49,9],[82,47],[177,166],[63,83],[48,97],[116,152],[344,311],[320,239],[177,180],[54,39],[77,26],[43,8],[214,-8],[42,14],[45,36],[22,31],[23,69],[-8,83],[-36,138],[-2,53],[10,44],[26,58],[27,33],[73,25],[84,6],[150,-77],[89,6],[55,36],[64,64],[245,103],[146,95],[184,163],[78,108],[89,177],[97,122],[231,76],[75,47],[52,50],[108,177],[14,30],[75,169],[57,122],[0,52]],[[408537,385661],[-156,-33],[-72,-17],[-69,-14],[-407,-25],[-256,204],[-734,-126],[-417,-645],[-142,-133],[-149,-97],[-303,21],[-126,-39],[-106,-114],[-164,-273],[-382,-332],[-218,-329],[-488,-449],[-64,-194],[-13,-269],[-100,-379],[-85,-170],[-134,-149],[-748,-615],[-79,-145],[-156,-638],[-69,-144],[-185,-159],[-304,-121],[-616,-157],[-401,-180],[-468,-361],[-316,-442],[-268,-287],[-495,-678],[-205,-393],[-93,-1674],[-50,-473],[-126,-392],[-254,-316],[-226,-221],[-355,-151],[-275,-312],[-254,-117],[-310,4],[-269,-464],[-56,-160],[87,-625],[16,-351],[-62,-602],[-167,-831],[-100,-229],[-127,-187],[-136,-96],[-932,-245],[-381,-243],[-199,-372],[-64,-390],[9,-410],[-36,-178],[-79,-206],[-253,-460],[-214,-292],[-89,-186],[-24,-208],[51,-368],[-1,-227],[-163,-443],[27,-269],[100,-118],[157,-177],[-109,-162],[-341,-150],[-437,18],[-275,-130],[-464,-291],[-250,-55],[-279,-3],[-439,52],[-163,83],[-579,-8],[-318,-96],[-427,-43],[-349,-113],[-156,-56],[-156,2],[-233,-249],[-209,-100],[-272,-129],[-128,-60],[-339,-71],[-127,-122],[-92,-194],[-147,-754],[-15,-279],[84,-471],[-43,-279],[-90,-182],[-121,-159],[-133,-72],[-293,18],[-231,-70],[-212,-162],[-166,-155],[-485,-703],[-147,-314],[-91,-252],[-58,-423],[-91,-201],[-113,-114],[-156,-66],[-467,-638],[-133,-263],[-50,-235],[7,-276],[153,-529],[412,-1039],[14,-117],[10,-165],[-10,-226],[-14,-208],[-69,-147],[-107,-122],[-102,-75],[-88,-18],[-86,7],[-71,-3],[-85,26],[-45,30],[-100,76],[-110,144],[-173,147],[-119,53],[-95,22],[-112,-30],[-59,-45],[-55,-97],[-28,-140],[0,-122],[45,-143],[40,-72],[88,-133],[81,-168],[175,-370],[124,-61],[205,-39],[190,-14],[169,-51],[136,-33],[189,-27],[81,-47],[86,-111],[64,-129],[33,-111],[2,-115],[-27,-830],[105,-504],[75,-376]],[[355347,364517],[-135,498],[-48,176],[-199,275],[-133,-20],[-262,-155],[-134,48],[-354,432],[-198,299],[-289,671],[-156,546],[-170,415],[-488,745],[-443,539],[-398,1370],[-565,838],[149,340],[162,279],[99,277],[84,104],[212,472],[396,734],[51,903],[572,1531],[213,254],[160,12],[171,143],[552,748],[239,273],[156,395],[42,189],[303,628],[326,467],[289,296],[369,264],[290,25],[119,46],[2,223],[-121,138],[-71,172],[0,206],[56,306],[120,366],[71,657],[57,152],[-37,192],[-684,612],[-291,60],[-141,97],[-50,215],[-126,141],[-177,-75],[-148,-8],[-142,167],[-56,163],[-98,141],[-135,125],[-86,179],[-14,372],[-62,207],[-177,314],[-15,201],[-149,346],[-8,37],[-14,60],[-19,83],[-8,212],[66,565],[-3,239],[-112,599],[21,684],[-36,178],[-103,152],[-65,225],[28,438],[-15,190],[-226,890],[1,582],[-65,206],[-97,69],[-588,707],[-127,200],[-71,233],[-13,379],[56,560],[6,456],[-120,1417],[-186,749],[-145,760],[-318,470],[-43,228],[-21,313],[27,390],[-42,192],[-311,-220],[-133,42],[-141,96],[-263,-35],[-239,-318],[-318,-219],[-149,57],[-106,292],[42,254],[72,188],[40,323],[-14,105],[-14,105],[-189,423],[-8,73],[-15,144],[404,1354],[1230,4124],[430,1441],[630,218],[159,55],[8164,2833],[240,83],[3998,1388],[55,20],[13882,4823],[36,13],[3229,1122],[33,12],[4919,1722],[1802,630],[670,234],[499,175],[781,274],[559,195],[213,75]],[[485578,423771],[-61,0],[-98,69],[-71,181],[-119,152],[-142,112],[-121,39],[-157,-84],[-238,-315],[-242,-537],[-90,-307],[-136,-663],[-91,-153],[-185,-111],[-111,-179],[-59,-256],[-75,-828],[62,-716],[9,-591],[-102,-465],[-85,-224],[-231,-396],[-156,-146],[-440,-304],[-648,-335],[-169,-21],[-297,-102],[-141,-130],[-333,-124],[-310,-218],[-156,-194],[-106,-246],[-30,-188],[-281,-672],[-219,-216],[-254,-156],[-205,-244],[-289,-202],[-156,-44],[-128,21],[-488,526],[-128,-13],[-685,-343],[-135,-109],[-92,-184],[-48,-169],[-218,-271],[-340,-171],[-212,-67],[-291,-162],[-127,-174],[0,-195],[106,-95],[78,-146],[64,-148],[43,-198],[77,-156],[531,-302],[105,-113],[85,-155],[121,-416],[27,-513],[-21,-269],[-100,-452],[-295,-454],[-121,-118],[-416,-271],[-150,-162],[-175,-301],[-128,-150],[-112,-87],[-15,-11],[-128,-99],[-6,-5],[-756,-705],[-361,-392],[-276,-356],[-119,-80],[-135,-24],[-827,-8],[-417,-66],[-232,-175],[-22,-32],[-149,-217],[-283,-175],[-501,-640],[-126,-162],[-185,-63],[-183,8],[-8,0],[-177,-18],[-128,-61],[-238,-181],[-268,-311],[-200,-437],[-382,-439],[-63,-129],[-57,-137],[54,-288],[-24,-226],[-30,-149],[-60,-121],[-161,-109],[-126,-1],[-80,-57],[5,-81],[54,-136],[51,-130],[0,-145],[-132,-325],[-29,-72],[-168,-631],[-36,-703],[-53,-307],[-168,-253],[-84,-121],[-23,-131],[6,-144],[125,-73],[221,46],[287,-145],[299,-144],[267,-274],[202,-87],[148,-139],[134,-59],[310,-54],[496,43],[244,136],[340,290],[203,-18],[57,-320],[9,-55],[2,-12],[27,-178],[87,-146],[120,-118],[147,-299],[163,-104],[254,-244],[51,-214],[-72,-189],[-112,-179],[-30,-180],[59,-187],[203,-981],[-21,-413],[22,-221],[55,-155],[120,-73],[157,-28],[360,36],[198,-22],[14,-1],[289,-87],[99,-141],[-112,-128],[-127,-30],[-277,38],[-133,-61],[-114,-149],[-169,-533],[-119,-197],[-249,-214],[-354,-145],[-169,-116],[-309,-393],[-23,-222],[105,-130],[316,100],[37,12],[13,4],[209,100],[129,-3],[367,-6],[29,-21],[217,-160],[131,-207],[72,-235],[12,-225],[69,-337],[5,-28],[105,-230],[48,-370],[3,-262],[-18,-545],[27,-152],[3,-15],[1,-5],[5,-28],[39,-193],[84,-322],[13,-51],[318,-359],[169,-140],[170,-89],[30,-20],[125,-88],[17,-6],[78,-30],[28,-7],[191,-48],[218,-107],[41,-99],[-32,-156],[-166,-179],[-409,-195],[-227,-246],[-266,-611],[-144,-495],[-196,-518],[-8,-172],[-56,-204],[-101,-113],[-320,23],[-263,115],[-161,-9],[-258,-418],[-424,-845],[-95,-261],[-77,-276],[-15,-52],[-4,-13],[0,-2],[0,-1],[-1,-3],[-35,-125],[-55,-195],[-76,-271],[-42,-226],[-18,-230],[114,-242],[120,-159],[234,-212],[-2,-192],[-141,-339],[-28,-366],[135,-311],[134,-141],[288,-121],[165,-107],[105,-118],[28,-143],[28,-143],[100,-506],[7,-180],[-135,-634],[-281,-736],[-175,-926],[-45,-237],[-89,-288],[-245,-541],[-302,-524],[0,-185],[92,-229],[210,-172],[427,-176],[278,-76],[272,-68],[235,-120],[58,-128],[-15,-171],[-123,-415],[-98,-433],[-102,-618],[-65,-487],[23,-870],[-292,-432],[-37,-55],[-119,-176],[-37,-55],[-35,-63],[-92,-164],[-417,-361],[-192,-207],[-141,-196],[-85,-261],[-134,-753],[-168,-424],[-115,-453],[-41,-513],[-15,-176],[-21,-102],[-22,-102],[-133,-454],[-289,-803],[-16,-357],[106,-92],[276,-109],[419,-44],[289,-87],[212,-198],[246,-313],[198,-616],[14,-201],[-21,-176],[-121,-194],[-119,-94],[-362,-143],[-161,-132],[-99,-144],[-21,-214],[197,-452],[25,-202],[74,-605],[150,-1020],[12,-168],[-21,-132],[-44,-116],[-127,-287],[-77,-201],[-25,-104],[25,-92],[56,-97],[95,-83],[118,-128],[63,-62],[119,-115],[320,-373],[113,-64],[126,-58],[226,-34],[205,-9],[130,27],[107,-12],[77,-51],[16,-123],[8,-280],[53,-446],[40,-184],[69,-164],[129,-208],[186,-256],[330,-164],[426,-167],[99,-79],[45,-140],[-33,-141],[-91,-94],[-91,-95],[-77,-86],[-61,-177],[-4,-16],[-81,-312],[-4,-14],[-12,-41],[-291,-979],[-203,-665],[-40,-349],[-17,-323],[146,-519],[45,-324],[8,-464],[-3,-286],[2,-168],[-14,-172],[-26,-117],[-43,-110],[-60,-86]],[[423330,309007],[-2310,-1354],[-467,-273],[-2802,-1642],[-716,-420],[-84,-49],[-37,-22],[-346,-203],[-229,-133],[-107,-63],[-22,-13],[-26,-15],[-180,-105],[-31,-19],[-120,-70],[-112,384],[-87,298],[-10,35],[-66,226],[-1280,4389],[550,1944]],[[414848,311902],[80,282],[1355,4785]],[[416283,316969],[716,2531],[940,3629],[1285,649],[943,669],[470,334],[522,-68],[375,-264],[234,-288],[198,-1045],[146,-245],[256,-290],[291,-207],[302,-38],[283,377]],[[423244,322713],[41,117],[108,308]],[[423393,323138],[-283,818],[0,623],[178,380],[542,-83],[16,21],[174,235],[229,183],[-140,180],[-38,49],[-585,144],[-207,540],[-34,613],[-14,11],[-276,217],[-282,-432],[-89,-75],[-245,-205],[-282,-185],[-304,-397],[-402,295],[-128,652],[-120,303],[-226,354],[-80,29],[-10,4],[-178,67],[-137,277],[-138,277],[-347,1438],[-142,13],[-246,-230],[-334,186],[-77,191],[-121,508],[-358,358],[-877,515],[-29,28],[-1252,1196],[-1108,1058],[-5025,4633],[-150,138],[-5107,4710]],[[468160,445644],[107,-111],[74,-54],[44,-36],[22,-63],[45,-54],[82,-52],[178,11],[203,62],[41,20],[294,139],[240,27],[194,59],[149,121],[150,199],[272,455],[171,330],[116,126],[57,15],[44,12],[37,-44],[20,-24],[70,-237],[41,-139],[24,-79],[60,-203],[62,-136],[93,-81],[176,-4],[144,40],[167,68],[120,77],[128,180],[115,202],[352,565],[50,166],[69,122],[132,140],[116,108],[200,80],[217,-21],[208,-55],[6,-20],[32,-102],[56,-140],[166,-268],[242,-374],[78,-156],[200,-386],[147,-311],[139,-320],[139,-328],[19,-61],[26,-101],[7,-17],[13,-48],[34,-78],[15,-46],[10,-56],[1,-46],[9,-102],[8,-43],[7,-41],[6,-31],[9,-31],[8,-22],[13,-28],[26,-42],[27,-30],[21,-43],[20,-49],[27,-69],[31,-75],[11,-57],[8,-74],[10,-40],[6,-15],[29,-20],[25,-18],[44,-4],[55,-6],[12,-18],[-7,-52],[14,-85],[16,-105],[23,-91],[10,-76],[53,-73],[36,-79],[28,-62],[9,-36],[9,-29],[-26,-20],[18,-62],[30,-61],[2,-56],[1,-75],[22,-68],[46,-81],[46,-69],[45,-48],[33,-51],[84,-98],[43,-51],[27,-32],[-9,-46],[13,-25],[40,2],[31,-22],[9,-28],[5,-30],[-9,-30],[-26,-9],[-8,-40],[20,-58],[53,-55],[53,-64],[32,-43],[30,-62],[42,-57],[17,-54],[-32,-22],[-32,40],[-29,-18],[43,-73],[12,-54],[-46,-16],[-19,-39],[3,-34],[40,12],[34,-20],[19,-42],[-30,-79],[-30,-73],[-17,-58],[2,-23],[19,-11],[21,36],[20,54],[14,-28],[-2,-52],[18,-29],[-42,-510],[98,-322],[135,-249],[-52,-320],[141,-114],[209,-53],[79,-5],[314,-21],[192,105],[135,137],[69,302],[261,97],[78,160],[34,225],[122,242],[180,156],[324,2],[333,98],[226,-114],[198,-159],[286,-291],[34,-102],[810,-725],[486,-588],[288,-168],[330,-358],[159,-84],[194,-15],[123,-351],[60,-327],[16,-284],[-167,-1018],[-7,-204],[27,-254],[65,-237],[69,-99],[280,-114],[134,-241],[226,-667],[134,-277],[120,-135],[52,-206],[-48,-427],[17,-108],[46,-79],[175,-87],[108,-12],[82,-171],[117,-85],[66,-85],[46,-312],[75,-140],[93,-104],[676,-407],[127,-309],[168,-323],[85,-266],[121,-259],[163,-265],[53,-226],[214,-96],[152,-120],[174,-205],[4,-2],[258,-162],[177,-254],[60,-278],[-5,-194],[73,-55],[44,-140],[41,-601],[223,-700],[59,-284],[-125,-788],[61,-550],[-81,-744],[-172,-278],[-88,-307],[-147,-352],[-116,-615]],[[248310,325584],[-515,-762],[-6395,-9467],[-4104,-6075],[-6733,5648],[-37,-319],[-163,-475],[-98,-530],[-77,-171],[-60,-90],[-189,-125],[-106,-117],[-218,-555],[-169,-262],[-247,-267],[-149,-41],[-71,-86],[-121,-364],[-48,-231],[-228,-570],[-203,-358],[-106,-270],[-30,-3],[-68,-119],[-79,-65],[33,-900],[-89,-509],[-58,-592],[-78,-387],[-35,-662],[4,-154],[3,-154],[-29,-205],[-104,-296],[-73,-207],[-42,-261],[-174,-647],[-12,-764],[-132,-232],[-43,-173],[-97,-210],[-21,-227],[218,-1234],[-9,-6],[-420,-232],[-368,-194],[-278,-115],[-920,-381],[-805,-299],[-740,-303],[-238,-85],[-158,-36],[-339,-33],[-26,-3],[-569,-69],[-107,-3],[-28,0],[-47,0],[-85,19],[-68,18],[-81,33],[-70,54],[-6,6],[-57,57],[-9,11],[-67,86],[-38,50],[-19,24],[-668,1085],[-136,219],[-88,96],[-73,82],[-8,9],[-99,65],[-164,97],[-150,67],[-99,24],[-114,11],[-141,-10],[-95,-25],[-268,-71],[-39,-11],[-538,-149],[-178,-54],[-210,-63],[-151,-45],[-122,-8],[-74,-5],[-15,-1],[-386,-14],[-334,-13],[-10,0],[-266,-11],[-21,-1],[-185,-7],[-549,-22],[-74,-3],[-11,-1],[-145,-20],[-96,-32],[-112,-38],[-221,-69],[-248,-77],[-24,-8],[-329,-106],[-545,-176],[-230,-75],[-27,-8],[-238,-76],[-784,-249],[-73,-24],[-162,-52],[-390,-126],[-159,-51],[-469,-152],[-150,-71],[-169,-92],[-746,-477],[-485,-305],[-243,-190],[-310,-287],[-889,-781],[-285,-260]],[[209020,298134],[664,2504],[769,2897],[2398,9032],[-97,124],[-61,259],[0,264],[58,129],[64,54],[118,-26],[124,5],[78,-61],[45,-58],[32,-31],[46,-13],[57,-16],[80,-17],[80,-17],[93,-78],[207,26],[172,49],[73,-24],[95,-100],[118,-102],[60,10],[94,62],[35,19],[46,-11],[93,-8],[130,11],[47,43],[55,43],[41,46],[32,84],[52,132],[59,204],[46,25],[34,21],[58,5],[94,-35],[95,-29],[85,-3],[93,3],[54,38],[32,51],[73,91],[89,121],[40,52],[52,32],[35,70],[54,207],[10,29],[29,46],[70,52],[75,38],[135,8],[75,19],[82,70],[59,72],[36,54],[18,76],[21,70],[-10,69],[-34,76],[-38,186],[-75,234],[-48,130],[20,70],[-16,78],[-36,94],[-68,54],[10,61],[26,87],[43,92],[-1,102],[-40,97],[16,62],[23,97],[-20,91],[12,148],[-26,95],[0,99],[37,186],[6,121],[-39,313],[5,113],[21,148],[90,156],[166,133],[90,71],[60,22],[59,16],[59,32],[96,78],[81,6],[47,26],[65,38],[23,34],[4,64],[5,29],[29,-6],[85,-67],[92,-26],[80,10],[19,23],[-2,33],[-1,2],[-1,25],[-1,26],[19,48],[27,40],[81,-2],[49,18],[179,114],[182,21],[172,130],[10,107],[-110,264],[32,167],[-65,210],[-78,194],[-164,183],[-129,-16],[-86,90],[40,99],[35,140],[-3,140],[-4,97],[-93,91],[-159,114],[-51,75],[-47,215],[-10,189],[7,145],[-60,95],[-14,127],[2,139],[118,33],[62,-37],[99,-17],[86,113],[71,81],[-4,129],[-71,135],[-83,60],[-46,96],[18,81],[46,34],[46,35],[90,-5],[143,183],[50,299],[97,138],[17,91],[-7,83],[29,19],[73,79],[-5,88],[-25,141],[43,54],[64,43],[121,528],[50,220],[40,130],[25,102],[-33,372],[54,124],[32,-81],[57,-16],[25,97],[-89,231],[-46,103],[10,118],[105,84],[102,-9],[48,84],[47,83],[27,139],[103,2],[65,21],[17,97],[-74,254],[7,85],[67,27],[58,65],[-43,140],[-61,215],[13,150],[69,39],[-14,102],[61,97],[3,113],[-51,237],[23,97],[32,92],[-32,98],[-79,96],[57,108],[-68,291],[-50,176],[-22,81],[18,160],[72,331],[54,162],[14,221],[0,134],[86,200],[25,199],[57,372],[53,431],[-10,242],[-54,102],[-175,27],[-168,11],[-22,10],[-106,44],[-97,38],[-125,134],[-50,310],[-44,96],[-94,153],[-90,145],[9,58],[9,31],[7,20],[6,20],[-1,39],[7,22],[17,32],[9,37],[-7,39],[-14,26],[-31,36],[-20,17],[-21,11],[-16,0],[-16,-5],[-26,-18],[-29,-13],[-27,7],[-20,17],[-1,2],[-15,26],[-5,46],[-7,59],[3,62],[8,44],[28,79],[-1,67],[0,106],[1,61],[7,130],[14,157],[16,135],[20,43],[38,25],[55,-11],[21,10],[23,5],[47,44],[48,68],[36,60],[28,78],[13,65],[0,3],[5,51],[4,39],[-2,12],[0,2],[-6,33],[-20,74],[-39,196],[-20,119],[-31,183]],[[280806,259566],[-123,-150],[-243,-162],[-306,-98],[-104,-96],[-93,-166],[-36,-182],[-175,-281],[-64,-194],[-121,-67],[-219,-202],[-135,-71],[-100,-130],[-118,-89],[-120,-170],[-55,-183],[-200,-236],[-69,-198],[-447,-405],[-147,-32],[-213,-216],[-283,-88],[-134,-105],[-78,-179],[-36,-226],[-97,-201],[-601,-499],[-240,-436],[-101,-128],[-302,-132],[-113,-168],[-113,-514],[-192,-296],[-68,-212],[-171,-270],[-397,-298],[-176,-7],[-92,118],[-148,21],[-251,-196],[-239,-110],[-139,-124],[-214,-291],[-253,-508],[-254,-278],[-99,-150]],[[272927,250961],[-76,-174],[-66,-425]],[[272785,250362],[-373,-642],[-134,-89],[-191,-251],[-128,-80],[-191,-296],[-270,77],[-246,-225],[-479,-807],[-333,-344],[-410,-556],[-460,-485],[-282,-414],[-212,-483],[-121,-86],[-111,-138],[-106,-316],[-8,-196],[175,-321],[122,-158],[64,-192],[0,-189],[-106,-168],[-249,-192],[-106,-414],[-78,-134],[-36,-178],[14,-480],[-49,-514],[50,-355],[219,-364],[49,-197],[14,-225],[-48,-234],[-247,-620],[-312,-516],[-177,-149],[-119,-143],[-63,-168],[91,-858],[-83,-769],[154,-198],[311,-227],[-58,-329],[-301,-271],[-328,-165],[-354,-273],[-239,-438],[-36,-531],[178,-473],[98,-515],[170,-625],[149,-219],[213,-422],[310,-409],[735,-153],[241,-441],[147,-411],[219,-458],[298,-263],[557,334],[580,-21],[311,187],[324,76],[212,-269],[255,-681],[184,-356],[467,-14],[438,-71],[735,-647],[-21,-313],[-275,-270],[-349,-232],[-210,-208],[-376,-492],[-403,-378],[-309,-173],[-692,129],[-156,-419],[0,-487],[121,-290],[282,-217],[35,-216],[-254,-836],[-445,-636],[-375,-265],[-369,-206],[-302,-368],[-198,-459],[-141,-413],[-417,-701],[-496,-177],[-304,-263],[0,-514],[-55,-395],[-347,-551],[-283,-257],[-303,-557],[-454,-160],[-464,-101],[-786,-524],[-854,-458],[-1125,-203],[-587,-144],[-558,-273],[-812,-845],[-432,-356],[-960,-71],[-616,-295],[-200,-273],[-138,-187],[-551,-361],[-1252,-437],[-282,-277],[-170,-373]],[[256942,213708],[-388,409],[-192,325],[-63,357],[-141,193],[-204,409],[-460,773],[-128,354],[14,286],[282,565],[79,158],[36,490],[-107,508],[-35,555],[-121,989],[-133,431],[-292,277],[-203,87],[-410,304],[-459,587],[-228,497],[-19,437],[90,238],[-70,532],[-120,395],[-35,419],[49,306],[227,745],[-99,344],[-447,89],[-458,176],[-198,1054],[119,446],[219,295],[300,125],[902,229],[186,120],[-270,485],[-219,158],[-204,460],[332,310],[-37,242],[-191,607],[1,483],[-85,407],[126,266],[624,529],[536,163],[41,336],[-400,610],[-326,354],[-107,356],[953,262],[115,353],[-141,543],[-106,229],[-383,118],[-445,17],[-318,96],[-509,-198],[-367,78],[-309,-15],[-413,170],[-620,699],[-171,77],[-190,-104],[-763,-45],[-340,58],[-167,320],[-286,693],[8,356],[-71,382],[93,122],[126,63],[156,4],[587,-164],[360,-254],[50,200],[-15,455],[-55,248],[-277,691],[-14,183],[70,144],[292,-27],[360,260],[126,2],[419,-183],[68,171],[-62,703],[-8,674],[-34,176],[-142,322],[-6,175],[161,552],[63,387],[-106,336],[58,181],[261,90],[777,426],[129,-163],[168,-388],[219,-216],[317,-26],[144,49],[302,210],[311,342],[227,179],[204,252],[116,77],[117,78],[121,8],[6,597],[-62,543],[28,187],[84,163],[128,16],[395,-299],[325,78],[269,201],[56,228],[-197,821],[0,404],[206,1569],[-16,215],[-155,417],[-22,245],[21,197],[276,743],[36,226],[-21,365],[-99,192],[-268,308],[-300,439],[-129,188],[-19,29],[-152,221],[-94,257],[36,483],[233,880],[423,570],[43,183],[16,392],[-150,498],[-106,112],[-135,15],[-316,-78],[-325,-17],[-616,66],[-361,-72],[-330,-254],[-156,-258],[-235,-629],[-269,-523],[-47,-213],[6,-617],[-85,-148],[-262,-230],[-262,-125],[-621,118],[-326,-141],[-114,30],[-46,12],[-156,41],[-488,277],[-284,10],[-390,-194],[-232,-224],[-791,-366],[-112,-86],[-205,-331],[-120,-386],[-99,-166],[-113,-121],[-127,-32],[-129,36],[-127,125],[-147,415],[-128,885],[42,502],[141,366],[35,192],[-98,135],[-430,59],[-115,116],[-162,735],[-151,413],[-231,632],[-161,313],[-92,400],[-198,287],[-217,67],[-52,17],[-303,-56],[-262,-107],[-227,-93],[-445,-29],[-206,-108],[-231,-296],[-127,-440],[-161,-429],[-207,-891],[-283,-706],[-134,-544],[-92,-149],[-263,-110],[-338,-279],[-283,-3],[-133,-126],[-191,-302],[-261,-148],[-142,50],[-219,225],[-120,61],[-806,-251],[-283,47],[-184,146],[-457,893],[-59,176],[-1,41],[-20,647],[-163,845],[-42,397],[86,430],[176,401],[291,459],[514,954],[51,168],[5,367],[-25,45],[-65,122],[-120,115],[-282,-6],[-205,269],[-137,101],[-76,150],[-93,373],[-31,42],[-195,265],[-91,197],[-94,380],[-54,419],[-184,354],[-383,309],[-309,444],[-353,280],[-313,444],[-146,3],[-271,-149],[-162,-293],[-120,-93],[-128,53],[-92,149],[-35,199],[-76,147],[-50,201],[190,834],[28,438],[-22,204],[-210,542],[-36,240],[-113,381],[21,433],[-50,517],[-44,1123],[-5,132],[-162,632],[-148,380],[-8,579],[-157,631],[-41,163],[41,223],[151,330],[26,170],[-118,89],[-115,157],[-127,63],[-134,-44],[-212,32],[-311,263],[-118,-18],[-136,-112],[-255,-315],[-140,-79],[-127,-8],[-611,413],[-130,1],[-164,-111],[-458,-519],[-342,-467],[-189,-601],[-140,-133],[-264,-42],[-133,-67],[-334,-319],[-309,-225],[-290,-363],[-261,-519],[-490,-480],[-336,-749],[-744,-857],[-192,-659],[-97,-191],[-531,-399],[-112,-148],[-155,-384],[-64,-486],[-9,-467],[-106,-171],[-120,-90],[-268,-91],[-263,-220],[-479,-89],[-415,-196],[-142,-27],[-326,-236],[-510,-188],[-656,79],[-156,82],[-375,328],[-393,70],[-425,159],[-487,620],[-285,361],[-493,795],[-607,759],[-242,382],[-169,112],[-219,318],[-22,194],[120,399],[17,148],[11,95],[1,223],[-50,159],[100,157],[149,86],[161,166],[212,290],[276,290],[71,171],[-9,222],[-64,200],[-414,829],[-73,415],[37,171],[142,346],[97,400],[615,987],[169,540],[171,272],[-6,381],[35,192],[90,138],[227,189],[227,275],[120,347],[8,190],[63,173],[92,149],[233,180],[98,164],[35,192],[-56,917],[-65,199],[-97,122],[-580,-170],[-128,89],[-141,403],[-57,608],[-416,795],[-381,1220],[-268,153],[-134,-47],[-236,-313],[-118,-73],[-320,2],[-134,-89],[-247,-530],[-120,-148],[-261,-52],[-28,-6],[-156,41],[-112,102],[-72,154],[112,347],[57,407],[-134,56],[-116,-32],[-18,-5],[-309,20],[-129,39],[-282,214],[-431,25],[-683,-60],[-137,-12],[-18,-11],[-257,-152],[-143,-24],[-942,56],[-33,2],[-594,-165],[-253,-161],[-135,-36],[-460,77],[-487,589],[-119,106],[-170,25],[-171,-62],[-592,-783],[-214,-613],[-96,-161],[-348,-244],[-121,-127],[-91,-163],[-204,-547],[-460,-598],[-311,-88],[-557,145],[-179,0],[-126,-63],[-523,-426],[-133,-56],[-185,-278],[-282,-133],[-113,-113],[-184,-572],[-269,-163],[-84,-169],[-205,-752],[-290,-6],[-141,-58],[-136,-832],[-55,-750],[0,-370],[42,-201],[-21,-181],[-71,-171],[-268,-148],[-628,-456],[-73,-148],[-5,-394],[113,-507],[98,-442],[105,-784],[-98,-137],[-474,-47],[-346,-269],[-105,-136],[-99,-225],[-36,-477],[105,-693],[100,-427],[78,-641],[121,-393],[170,-338],[231,-729],[0,-412],[-134,-311],[-126,-18],[-134,66],[-170,172],[-81,83],[-215,218],[-65,185],[-23,423],[-104,417],[-204,220],[-100,172],[-162,520],[-91,146],[-72,360],[-141,340],[-16,177],[-62,170],[-114,82],[-98,146],[-85,220],[14,472],[-43,586],[-69,144],[19,383],[-70,370],[-35,584],[98,112],[58,201],[-30,192],[36,185],[91,177],[116,124],[41,165],[-16,180],[37,175],[-7,188],[51,176],[-22,99],[-22,100],[-205,224],[-272,546],[-10,71],[0,7],[-2,36],[-3,53],[-1,58],[0,47],[-1,60],[0,10],[-1,14],[-1,18],[-1,31],[-7,51],[-22,72],[3,186],[157,543],[-1,383],[-47,235],[-25,123],[355,577],[99,363],[140,67],[114,115],[176,269],[128,57],[182,291],[57,156],[-6,380],[-2135,-568]],[[204222,279542],[3220,12477],[533,2067],[971,3761],[36,140],[19,73],[19,74]],[[142410,336806],[-2847,130],[-427,15],[-342,-189],[-235,95],[-183,149],[-291,59],[-131,-47],[-136,-106],[-78,-157],[-227,-111],[-193,-63],[-209,-82],[-190,194],[-193,207],[-125,220],[-63,221],[-139,188],[-103,56],[-285,471],[-172,253],[-26,12],[-26,12],[-42,51],[-26,86],[-13,75],[-3,71],[-13,82],[-23,48],[-24,78],[-54,59],[-73,88],[-60,144],[-96,103],[-48,59],[-16,79],[28,65],[25,100],[-34,67],[-72,41],[-38,41],[-23,95],[55,134],[-3,114],[-60,66],[-16,103],[-41,67],[-50,51],[-57,86],[0,83],[26,102],[-16,103],[-42,74],[-88,12],[-42,110],[10,122],[42,79],[0,134],[-34,165],[-57,106],[86,12],[75,146],[-13,118],[-75,51],[-84,59],[-75,59],[-55,-4],[-76,79],[-81,16],[-104,86],[-23,142],[-34,102],[-71,28],[-55,-52],[-51,-34],[-108,34],[-151,158],[-60,110],[99,71],[119,-6],[92,22],[92,-59],[70,23],[21,63],[21,71],[-31,98],[-71,-19],[-49,43],[-42,118],[-104,118],[-123,102],[-78,59],[-84,-55],[-21,-94],[-49,-4],[-52,75],[-12,16],[-67,94],[-3,104],[123,226],[60,107],[-7,106],[-40,53],[-39,53],[27,123],[-5,265],[35,91],[12,30],[33,85],[37,87],[20,63],[44,78],[11,166],[-52,118],[-78,63],[-97,55],[-59,28],[-26,13],[-56,105],[-10,121],[3,52],[-15,69],[-17,17],[-84,65],[-23,49],[5,82],[-2,5],[-35,90],[-25,103],[29,51],[-26,59],[-67,19],[-9,75],[16,114],[-34,52],[-47,7],[-61,-61],[-49,18],[-68,16],[-41,51],[-16,161],[-15,98],[-6,40],[-44,98],[-86,28],[-102,-8],[-63,-12],[-117,-94],[-123,-35],[-96,23],[-76,126],[-39,89],[-29,64],[-31,154],[-3,126],[34,67],[55,19],[29,32],[28,31],[19,79],[-21,43],[-34,12],[-96,5],[-34,62],[-14,118],[1,177],[15,118],[-49,47],[-53,-7],[-65,27],[-141,75],[-112,181],[-96,63],[-76,8],[-96,-40],[-175,67],[158,393],[15,35],[66,163],[245,735],[12,52],[104,472],[104,564],[134,366],[23,61],[19,34],[171,294],[34,58],[3,3],[87,87],[392,391],[838,455],[72,52],[496,350],[396,357],[232,210],[279,228],[62,51],[158,153],[251,244],[146,224],[146,225],[261,614],[75,307],[72,292],[93,380],[120,484],[453,1236],[30,154],[94,489],[-4,290],[-145,437],[-28,2658],[-49,4516],[671,-81],[113,-14],[138,-16],[69,-9],[68,-8],[60,-5],[92,-8],[87,-7],[157,-14],[100,-8],[438,26],[97,6],[181,-26],[341,-50],[203,-29],[521,-102],[276,-53],[36,-7],[322,-63],[419,-84],[588,-117],[387,-54],[48,-6],[366,40],[242,69],[441,248],[403,345],[469,585],[505,866],[438,1008],[465,663],[144,204],[321,458],[284,565]],[[146345,370873],[334,714],[247,605],[254,373],[280,187],[450,28],[311,-48],[783,-611],[268,-117],[302,-67],[541,16],[403,73],[449,-79],[308,-184],[251,-150],[819,-472],[58,-33],[565,-214],[593,-130],[561,-63],[1249,-118],[468,-108],[300,-167],[126,-151],[127,-153],[156,-511],[-25,-436],[-20,-761],[-241,-1187],[-295,-1131],[-381,-1372],[-202,-618],[-176,-383],[-318,-324],[-354,-340],[-183,-189],[-310,-319],[-92,-121],[-19,-21],[-33,-38],[-76,-88],[-171,-201],[-127,-149],[-2,-2],[-563,-658],[-24,-40],[-59,-98],[-548,-901],[-16,-28],[-313,-546],[-602,-1232],[-201,-508],[-793,-1542],[-218,-483],[-233,-633],[-158,-463],[-79,-250],[-54,-255],[-48,-252],[-27,-239],[-4,-209],[22,-289],[30,-191]],[[146345,370873],[-112,174],[-4,29],[7,27],[-5,15],[-14,2],[-23,-1],[-18,-26],[-17,-46],[-2,-39],[-1,-25],[-15,-27],[-37,-8],[-27,-16],[-23,10],[-8,-9],[-4,-25],[17,-43],[-1,-15],[-16,-9],[-29,-9],[-22,2],[-11,21],[4,24],[12,24],[26,56],[6,43],[-6,21],[-29,2],[-25,-17],[-16,-27],[-12,-19],[-1,-27],[10,-18],[-14,-24],[-31,-7],[-10,-26],[-24,4],[-3,-23],[28,-13],[3,-21],[-9,-24],[-40,-6],[0,-29],[-21,-6],[-26,11],[-14,37],[6,17],[18,1],[5,29],[-25,27],[-16,-6],[-17,-15],[-38,1],[-27,9],[-11,11],[7,29],[37,19],[12,17],[-4,30],[-22,18],[-34,-2],[-32,-16],[-36,-5],[-21,-3],[-26,10],[-36,-8],[-40,-5],[-19,0],[-31,20],[-25,10],[-19,6],[-11,-7],[-5,-32],[-15,8],[-13,13],[2,27],[9,20],[5,21],[-18,12],[-31,-4],[-30,-5],[-6,24],[6,15],[30,8],[13,18],[-8,22],[-20,-3],[-42,-25],[-19,12],[-12,48],[-16,4],[-12,38],[-16,-2],[-21,-34],[-9,22],[-17,-16],[4,-32],[-9,-34],[3,-29],[10,-9],[28,-20],[-9,-15],[-24,-6],[-27,-3],[-21,-49],[-26,-17],[-18,70],[10,37],[-13,12],[-16,2],[-7,-28],[-11,-4],[-21,47],[15,31],[26,3],[2,20],[-7,10],[-2,18],[-13,24],[-11,-10],[-11,-27],[-26,-14],[-10,12],[13,35],[25,31],[5,23],[-5,15],[-19,-1],[-16,15],[-15,16],[-21,-1],[3,-17],[2,-9],[-10,-8],[-34,4],[-34,3],[-6,13],[10,59],[-12,16],[-29,9],[2,21],[7,7],[7,8],[-13,47],[-28,35],[0,24],[42,36],[-23,62],[-12,25],[9,21],[17,-13],[11,27],[23,-14],[25,-45],[16,33],[1,35],[-14,40],[-13,35],[2,29],[-26,7],[-23,-6],[-28,-15],[2,28],[16,26],[-8,20],[-28,-3],[-29,-32],[-24,26],[-14,36],[-1,31],[-5,32],[-22,8],[-25,-6],[-31,-20],[-16,-24],[-1,-35],[16,-31],[16,-41],[-6,-18],[-32,-24],[-31,15],[-72,3],[-4,13],[-12,42],[-28,16],[17,33],[13,24],[-1,33],[-14,63],[16,29],[20,39],[5,43],[-13,52],[-18,84],[8,37],[19,50],[13,21],[41,8],[9,25],[9,32],[4,33],[-6,23],[-13,0],[-6,0],[-11,17],[-4,17],[-10,38],[-26,18],[-31,1],[-28,26],[-24,9],[-26,-5],[-44,18],[-35,29],[-35,25],[-34,37],[-28,36],[-32,35],[-21,13],[-25,8],[-24,0],[-18,-7],[-17,-16],[-72,-23],[-29,8],[-13,15],[-12,14],[-36,42],[-29,57],[-12,24],[-11,24],[-10,17],[-9,17],[-15,18],[-38,9],[-18,-13],[-33,-49],[-30,-48],[-37,-47],[-37,-30],[-27,4],[-21,16],[-3,29],[0,29],[6,24],[10,15],[22,28],[25,38],[9,23],[-1,36],[-6,19],[-22,38],[-31,38],[-34,35],[-25,15],[-29,2],[-17,-6],[-13,-20],[-10,-38],[-4,-30],[-12,-19],[-17,-8],[-14,-3],[-11,-11],[-9,-8],[-6,-16],[-14,-17],[-24,-7],[-24,-3],[-19,9],[-16,14],[-46,2],[-40,22],[-53,19],[-65,14],[-35,8],[-21,12],[-2,4],[-3,5],[-1,29],[7,29],[9,32],[-2,25],[-13,29],[-20,6],[-22,-3],[-19,-13],[-20,-30],[-4,-18],[-3,-18],[2,-49],[-15,-52],[-18,-62],[-24,-29],[-33,0],[-75,7],[-31,22],[-4,20],[-8,39],[-23,82],[-22,22],[-23,3],[-22,-18],[-7,-19],[-23,-17],[-37,2],[-32,5],[-20,22],[-33,58],[-20,40],[-4,38],[1,20],[-4,26],[-11,14],[-15,21],[-52,54],[-49,44],[-50,31],[-8,79],[-41,38],[-8,77],[-25,29],[-23,69],[-11,40],[-30,22],[-33,5],[-48,-17],[-28,31],[-12,184],[-23,158],[-22,81],[-30,33],[1,53],[-5,62],[-36,17],[5,67],[-25,50],[-21,50],[-2,64],[-1,84],[-75,163],[-68,58],[-98,66],[-100,5],[-71,45],[-41,62],[-16,98],[-16,55],[6,74],[-33,74],[-119,128],[-71,75],[-81,93],[-112,168],[-54,81],[-22,10],[-26,32],[-4,23],[-8,45],[-94,148],[-6,5],[-133,110],[-64,82],[-47,43],[-57,67],[-52,14],[-54,-14],[-45,33],[-31,67],[-21,100],[11,36],[26,22],[42,-29],[46,-50],[59,-19],[73,14],[60,37],[17,42],[10,45],[21,34],[44,-5],[49,-17],[76,-12],[59,30],[65,45],[33,34],[43,43],[17,11],[5,-2],[28,-7],[62,7],[3,0],[97,51],[41,57],[25,45],[5,63],[2,47],[16,40],[34,41],[16,20],[38,72],[24,30],[13,34],[44,-18],[35,6],[8,41],[-11,27],[-21,22],[-29,21],[-52,39],[-36,63],[-22,57],[-5,53],[-3,66],[-24,20],[-25,-7],[-23,-21],[-7,-6],[-1,-10],[-2,-13],[4,-16],[7,-23],[0,-12],[-2,-3],[-6,-5],[-10,-12],[-41,-12],[-40,4],[-71,32],[-57,13],[-29,18],[-51,44],[-44,42],[-33,42],[-44,109],[3,77],[8,52],[-15,53],[-18,28],[-80,172],[-77,193],[-27,141],[-18,165],[-9,91],[-35,5],[-44,7],[-24,-15],[-39,16],[-23,17],[-14,0],[-14,-2],[-8,-15],[-7,-22],[-23,-38],[-30,-32],[-33,-28],[-54,0],[-34,2],[-64,-26],[-95,-57],[-87,-62],[-29,-14],[-23,-7],[-30,32],[-31,56],[-9,62],[-10,84],[-19,91],[-17,62],[-32,45],[-31,7],[-20,9],[-20,8],[-31,28],[-22,42],[-50,35],[-57,103],[-73,76],[-38,84],[-26,85],[-23,27],[-9,43],[-15,48],[-17,60],[-8,129],[-19,24],[-46,28],[-60,-12],[-67,-7],[-58,38],[-10,72],[2,84],[-13,48],[-25,64],[-7,67],[-3,62],[16,26],[49,46],[59,29],[33,38],[38,43],[49,9],[26,-16],[11,-43],[56,-8],[26,-45],[63,0],[57,22],[29,62],[16,59],[39,71],[45,49],[95,26],[69,26],[53,67],[27,58],[15,57],[-7,43],[-54,91],[-86,134],[-59,118],[-58,166],[-30,96],[-18,86],[7,102],[18,102],[2,6],[24,91],[8,57],[-9,84],[-2,126],[-24,60],[-36,26],[-19,-6],[-21,15],[-2,20],[-4,41],[-19,21],[-22,-14],[-38,36],[-62,62],[-65,81],[-48,103],[-31,79],[3,135],[5,101],[-4,46],[-28,38],[-16,15],[-33,33],[-37,55],[-23,23],[-4,65],[-23,53],[8,33],[5,17],[4,17],[20,11],[20,10],[54,24],[38,9],[23,19],[11,22],[15,-26],[41,14],[62,7],[74,29],[63,14],[45,5],[13,36],[-16,36],[-24,57],[-19,50],[-8,41],[0,36],[21,24],[28,-31],[48,26],[39,17],[57,-16],[53,1],[61,31],[7,62],[23,41],[21,59],[16,98],[14,88],[-1,68],[-16,65],[-40,35],[-31,27],[-2,37],[12,55],[13,84],[8,45],[-3,40],[-14,41],[-13,27],[-19,15],[-25,48],[-10,50],[2,123],[10,49],[5,20],[14,71],[6,28],[3,16],[0,1],[1,3],[5,38],[-5,37],[-11,56],[-24,100],[-24,48],[-29,43],[-31,49],[-11,38],[-4,43],[0,40],[9,28],[12,28],[13,32],[12,93],[5,61],[3,55],[-8,47],[-1,3],[-65,200],[-16,40],[-17,41],[-13,33],[-33,20],[-15,52],[-3,70],[-7,52],[-24,43],[-54,110],[-13,76],[-19,48],[11,84],[8,91],[-2,62],[12,36],[31,35],[45,12],[76,32],[12,5],[72,23],[82,36],[70,75],[11,56],[-11,31],[-36,21],[-15,25],[5,26],[12,36],[29,53],[38,19],[43,-5],[77,18],[35,32],[14,60],[27,53],[35,42],[44,27],[11,13],[5,23],[-17,19],[28,35],[40,22],[49,7],[71,-12],[24,22],[27,38],[30,81],[43,41],[46,38],[62,-2],[127,-68],[41,-6],[14,26],[-14,40],[-27,44],[-8,35],[9,31],[26,12],[33,3],[14,-14],[13,-34],[20,-45],[31,-11],[34,-12],[22,-66],[21,-22],[21,-22],[21,-3],[28,-13],[19,-27],[19,-42],[17,-36],[22,-62],[11,-25],[12,-25],[33,-57],[38,-46],[62,-33],[68,-12],[79,43],[60,28],[57,-4],[51,-48],[17,2],[26,7],[19,32],[30,114],[21,80],[-10,68],[-26,72],[-14,72],[-22,86],[9,67],[51,86],[76,95],[63,119],[51,96],[73,153],[6,139],[-21,177],[-1,9],[-34,136],[-77,79],[-95,115],[-34,105],[-26,91],[-66,81],[-57,48],[-38,110],[-32,105],[-60,177],[41,72],[13,71],[-57,96],[-16,95],[28,129],[70,86],[57,53],[9,96],[26,81],[44,33],[53,46],[36,74],[3,92],[29,30],[34,83],[-20,85],[24,78],[44,24],[51,9],[57,0],[57,22],[44,74],[26,135],[33,105],[23,71],[-1,136],[-11,102],[-73,62],[-9,77],[48,96],[4,86],[-59,100],[-36,76],[-56,5],[-36,17],[-19,26],[-16,31],[5,74],[-37,53],[-58,31],[-27,36],[-23,55],[0,80],[0,6],[-33,14],[-8,53],[-38,33],[-35,62],[11,70],[-15,43],[-29,52],[4,45],[-13,26],[-15,12],[-28,22],[-11,65],[9,64],[19,98],[0,86],[8,96],[29,74],[20,21],[26,0],[37,-6],[17,-3],[30,0],[13,7],[10,43],[-3,36],[-9,93],[26,85],[67,37],[144,85],[40,63],[35,77],[9,100],[11,244],[34,95],[47,110],[55,125],[27,93],[7,85],[16,194],[-10,258],[-9,330],[-19,272],[9,192],[48,114],[62,127],[26,54],[88,122],[471,653],[214,113],[247,51],[171,-92],[127,-64],[335,-267],[268,-335],[227,-416],[197,-174],[209,-79],[313,197],[825,851],[307,318],[320,285],[493,249],[587,305],[431,197],[268,148],[326,138],[323,71],[277,76],[323,-22],[134,131],[275,702],[219,356],[126,203],[156,187],[156,187],[902,1475],[241,217],[194,-35],[394,-152],[241,-69],[209,69],[672,98],[268,-49],[247,-168],[216,-235],[216,-59],[274,-16],[242,-14],[161,-9],[156,85],[230,141],[216,39],[463,-30],[346,-49],[398,-79],[29,350],[43,660],[30,405],[42,525],[29,310],[6,320],[-137,1169],[2,78],[2,77],[21,116],[21,115],[95,242],[111,201],[120,123],[111,50],[216,47],[153,46],[444,544],[81,126],[54,108],[59,70],[54,36],[149,98],[203,138],[242,175],[364,209],[119,108],[69,52],[61,12],[75,15],[309,-34],[473,-121],[29,-20],[397,-549],[420,-571],[115,-265],[91,-251],[91,-414],[171,-649],[152,-370],[177,-256],[213,-186],[177,-85],[285,-54],[113,-19],[112,-20],[225,-64],[173,-74],[144,-118],[108,-208],[75,-319],[133,-310],[131,-202],[150,-47],[179,87],[154,5],[202,-50],[118,5],[127,104],[59,177],[94,93],[170,133],[160,55],[209,24],[98,74],[92,178],[58,112],[-10,74],[-82,74],[-131,131],[-152,106],[-205,145],[-117,67],[-40,33],[-45,66],[-8,44],[10,74],[-3,75],[-12,36],[-37,59],[-48,49],[-47,32],[-38,-3],[-18,-9],[-17,-18],[-15,-22],[-49,-7],[-65,7],[-75,30],[-56,29],[-64,69],[-65,25],[-50,51],[-30,55],[-10,66],[-31,44],[-39,3],[-40,-35],[-38,-12],[-44,32],[-49,30],[-47,19],[-75,54],[-61,40],[-94,101],[-70,49],[-61,17],[-62,5],[-59,-7],[-52,-20],[-50,-27],[-23,41],[-31,20],[-56,8],[-60,15],[-52,9],[-33,42],[-2,52],[5,65],[-26,19],[-45,-5],[-35,7],[-13,30],[-6,71],[-13,52],[-26,27],[-48,49],[-58,17],[-58,69],[-40,74],[-12,64],[-55,123],[-172,216],[-57,86],[-85,126],[-53,79],[-39,25],[-43,-3],[-36,-17],[-70,-30],[-18,37],[-28,15],[-32,27],[-51,84],[-34,79],[-10,70],[-4,29],[-21,29],[-21,22],[-99,47],[-294,98],[-267,69],[-62,15],[-59,37],[-28,34],[-18,66],[-8,67],[-34,52],[-26,98],[-21,69],[-20,44],[-21,47],[5,64],[-2,37],[-24,54],[-38,39],[-21,28],[-9,31],[-9,45],[-34,29],[-54,45],[-36,49],[-25,39],[-18,52],[-21,25],[-29,12],[-56,22],[-55,37],[-54,49],[-62,81],[-50,40],[-78,39],[-26,8],[-263,84],[-146,73],[-18,12],[-19,20],[-43,35],[-36,73],[-16,72],[-10,71],[3,64],[10,79],[30,54],[9,66],[10,45],[13,19],[51,0],[90,67],[81,71],[59,-2],[86,-2],[33,9],[33,40],[8,32],[9,38],[7,72],[21,27],[61,8],[57,8],[30,31],[38,12],[17,47],[-2,62],[-10,111],[5,108],[13,79],[24,40],[10,83],[-14,56],[-8,136],[14,41],[38,13],[21,44],[-5,79],[-18,111],[-26,122],[11,146],[-11,37],[-32,33],[-10,171],[18,116],[24,118],[5,177],[-7,91],[4,67],[7,71],[17,43],[19,48],[50,76],[21,116],[16,108],[21,101],[31,72],[3,87],[-15,49],[-48,46],[-24,73],[-5,62],[17,75],[16,104],[6,78],[1,25],[-19,154],[-9,161],[1,77],[24,96],[-23,47],[-37,24],[-8,42],[-8,42],[-7,91],[-11,92],[0,209],[-12,32],[-26,7],[-37,-2],[-41,54],[-18,59],[-6,134],[10,189],[7,49],[-10,54],[-23,54],[-6,61],[10,55],[-23,31],[-11,23],[-12,54],[0,57],[2,79],[-2,42],[-26,29],[-37,42],[-36,39],[-40,-5],[-32,-2],[-34,37],[-35,37],[-1,6],[-18,63],[-13,64],[-20,42],[-34,51],[-20,46],[-19,11],[-18,12],[-38,22],[-10,29],[-11,29],[41,69],[17,18],[40,-3],[55,3],[37,-8],[22,23],[37,105],[43,102],[61,90],[39,105],[50,58],[50,66],[-2,48],[-30,50],[-60,48],[-37,45],[-47,167],[-9,127],[-3,217],[-26,31],[-14,53],[31,84],[40,36],[55,26],[7,84],[24,50],[-16,104],[-54,143],[-39,151],[3,74],[-50,120],[-28,62],[4,31],[22,17],[18,36],[-6,121],[32,61],[35,82],[36,48],[-25,150],[-7,231],[21,246],[-29,197],[-29,116],[-19,89],[11,53],[-3,48],[-23,84],[-36,68],[-61,57],[-44,14],[-34,0],[-76,-47],[-160,-50],[-37,3],[-28,32],[4,30],[4,30],[48,54],[45,-3],[17,23],[47,46],[62,76],[42,27],[54,-5],[55,-5],[33,12],[13,38],[16,61],[2,49],[1,59],[-28,97],[-39,67],[-55,36],[-30,48],[-17,93],[-77,95],[-69,65],[-70,65],[-50,76],[-23,78],[-7,60],[5,85],[20,46],[22,39],[50,35],[33,51],[37,87],[-6,35],[-38,71],[-60,125]],[[160073,422462],[44,10],[63,58],[77,109],[91,66],[253,251],[59,80],[60,55],[83,109],[68,137],[60,143],[80,130],[290,336],[125,114],[77,82],[180,164],[151,138],[76,95],[77,103],[47,116],[44,123],[32,79],[64,91],[90,57],[76,69],[50,65],[88,86],[69,53],[52,18],[86,22],[81,5],[49,-13],[51,-43],[67,-63],[49,-61],[63,-88],[21,-47],[14,-82],[-16,-90],[-21,-90],[-15,-74],[3,-72],[16,-63],[31,-48],[37,-42],[46,-24],[59,-5],[64,23],[75,35],[58,21],[98,56],[49,8],[37,-30],[23,-53],[9,-60],[0,-72],[-14,-71],[-35,-112],[-35,-89],[-32,-72],[-32,-71],[-14,-82],[2,-90],[-14,-80],[-26,-180],[-42,-275],[-34,-278],[-12,-212],[5,-79],[21,-45],[44,-27],[49,-2],[51,0],[51,13],[170,177],[70,48],[79,10],[79,-13],[112,-43],[99,-73],[89,-72],[116,-68],[55,-16],[52,23],[70,117],[322,749],[59,90],[74,98],[95,114],[79,114],[47,100],[23,127],[21,146],[21,124],[33,48],[60,16],[56,-6],[53,-13],[37,-40],[12,-92],[23,-69],[49,-109],[68,-151],[69,-111],[81,-192],[62,-178],[53,-112],[60,-84],[89,-87],[86,-64],[86,-53],[60,-29],[63,-3],[75,69],[115,98],[86,95],[57,80],[37,82],[6,90],[15,126],[111,451],[100,278],[35,45],[59,19],[81,36],[137,98],[248,125],[265,95],[105,21],[89,35],[76,53],[86,105],[49,122],[24,127],[39,88],[36,31],[83,32],[70,-3],[114,51],[122,42],[50,-16],[144,-90],[141,-53],[75,0],[77,45],[79,51],[58,50],[18,58],[14,56],[2,55],[-36,175],[-78,217],[-32,177],[-12,180],[8,109],[18,127],[3,106],[-5,66],[11,48],[38,37],[58,-6],[50,21],[96,40],[77,26],[70,-10],[65,11],[58,46],[49,49],[30,69],[18,71],[-27,56],[-33,47],[3,40],[14,43],[2,42],[-19,37],[-58,13],[-172,188],[-74,82],[-57,90],[-31,31],[-89,-18],[-59,11],[-57,50],[-38,58],[-4,53],[29,26],[45,45],[37,49],[84,68],[63,36],[69,38],[89,22],[77,-3],[80,-36],[61,10],[65,34],[75,93],[42,51],[55,35],[42,17],[41,22],[45,40],[69,45],[60,32],[51,32],[73,49],[48,44],[39,43],[27,43],[25,31],[27,28],[24,14],[44,30],[86,71],[45,42],[30,42],[18,35],[21,27],[33,26],[43,21],[68,31],[24,17],[37,17],[67,27],[60,21],[57,31],[80,68],[78,77],[127,140],[118,124],[138,135],[62,80],[28,42],[21,85],[-4,119],[-7,130],[-5,100],[9,45],[32,40],[28,66],[30,99],[19,47],[37,34],[38,5],[11,-7],[45,-33],[39,1],[33,-16],[36,-63],[59,-6],[47,-13],[58,-22],[46,-18],[88,-154],[118,-134],[40,-16],[42,21],[49,13],[40,-5],[40,-11],[39,-26],[32,-53],[22,-69],[20,-82],[14,-80],[7,-103],[33,-122],[16,-60],[13,-99],[22,-166],[28,-172],[35,-119],[35,-119],[39,-88],[38,-58],[22,-7],[33,-12],[67,16],[59,40],[51,62],[19,35],[23,75],[6,40],[15,50],[42,61],[45,50],[52,51],[31,17],[30,-10],[41,-44],[40,-3],[65,8],[51,16],[56,26],[121,138],[70,87],[55,64],[84,79],[77,50],[42,6],[30,0],[21,-3],[26,-16],[39,-26],[49,-85],[77,-259],[19,-82],[39,-170],[63,-180],[35,-85],[21,-56],[30,-36],[48,-19],[45,3],[58,18],[58,62],[46,52],[25,77],[61,217],[101,418],[69,238],[38,98],[71,64],[38,79],[62,133],[30,82],[38,128],[26,136],[29,146],[14,119],[10,94],[23,69],[32,78],[48,50],[61,42],[72,44],[71,27],[71,31],[63,24],[63,5],[34,-13],[25,-55],[33,-47],[47,-35],[42,-23],[50,-3],[41,11],[25,32],[20,60],[28,34],[48,52],[108,111],[108,118],[65,113],[108,136],[99,85],[80,76],[68,76],[52,108],[68,121],[42,92],[28,129],[-9,120],[3,51],[3,52],[8,55],[26,29],[42,50],[120,42],[86,34],[87,29],[106,0],[132,7]],[[178091,433111],[17,-58],[524,-332],[83,6],[40,14],[40,14],[21,41],[22,41],[24,121],[26,47],[49,74],[102,104],[204,136],[175,109],[132,11],[227,-79],[150,-60],[123,-87],[82,-124],[110,-174],[222,-365],[108,-72],[115,0],[188,33],[236,12],[163,8],[97,-27],[68,-18],[88,39],[104,14],[100,-12],[128,-34],[117,-83],[65,-98],[28,-120],[12,-72],[23,-28],[31,-31],[41,-13],[50,-15],[51,-20],[29,-40],[11,-40],[20,-30],[18,-19],[26,-9],[38,-25],[24,-56],[10,-100],[15,-90],[25,-64],[53,-61],[40,-81],[45,-47],[422,-252],[399,-834],[50,-106],[732,-718],[210,-857],[288,170],[588,767],[354,66],[177,-196],[437,-942],[65,-1980],[-341,-364],[-529,-1492],[-707,-1094],[-432,-487],[-770,-449],[-212,-588],[-21,-404],[205,-729],[324,-208],[657,-33],[461,336],[410,-172],[295,-501],[843,-418],[515,-498],[686,-1269],[770,-208],[438,-482],[34,-521],[-457,-330],[-360,-649],[-177,-885],[1232,-1010],[-1149,-436],[-161,-896],[243,-187],[114,11],[100,-63],[118,-61],[64,-103],[-11,-129],[125,-221],[104,-81],[207,-1],[91,-10],[80,-75],[41,-81],[31,-145],[53,-226],[32,-307],[-14,-173],[-14,-178],[-50,-183],[-64,-161],[-32,-210],[35,-415],[-14,-291],[-21,-135],[-68,-129],[-115,-178],[-71,-183],[-114,-388],[-115,-393],[-46,-178],[-75,-118],[-104,-108],[-215,-124],[-484,-269],[-336,-286],[-139,-172],[-177,-209],[-295,-242],[-603,-497],[-89,-129],[-40,-183],[-7,-173],[11,-221],[50,-107],[93,-119],[154,-86],[228,-70],[188,-52],[105,-61],[89,-124],[68,-210],[53,-232],[222,-1168],[68,-119],[110,-49],[168,6],[241,48],[106,23],[103,-9],[113,-40],[117,-74],[122,-121],[77,-98],[59,-103],[62,-154],[78,-229],[49,-189],[41,-213],[37,-293],[4,-129],[-68,-421],[9,-269],[52,-161],[49,-181],[7,-75],[30,-56],[58,-80],[43,-80],[13,-105],[-1,-119],[20,-134],[28,-148],[74,-261],[-130,-391],[-40,-81],[-203,-191],[-112,-104],[-113,-105]],[[343257,250510],[164,-174]],[[343421,250336],[93,-121],[115,-131],[80,-100],[48,-57],[15,-15],[1,-25],[-70,-150],[-76,-150],[-373,-774],[-5,-11],[-125,-279],[-127,-271],[-31,-154],[-6,-167],[16,-152],[2,-11],[52,-125],[16,-27],[60,-98],[41,-32],[48,-37],[52,-56],[60,-64],[75,-66],[27,-23],[30,-40],[5,-6],[3,-4],[6,-9],[1,-1],[34,-45],[3,-23],[10,-98],[11,-118],[4,-194],[65,-202],[34,-84],[17,-112],[74,-115],[-20,-64],[-105,-115],[-309,-407],[-107,-71],[-89,-109],[-50,-95],[-46,-99],[-25,-154],[-14,-163],[-8,-229],[6,-107],[23,-249],[-4,-84],[-5,-82],[7,-75],[-7,-62],[3,-86],[-4,-124],[-19,-115],[-52,-156],[-29,-117],[-15,-59],[-2,-10],[-53,-205],[-2,-8],[-73,-294],[45,-12],[121,-33],[130,-52],[174,-68],[162,-65],[18,-7],[310,-119],[29,-12],[25,-10],[17,-6],[1,-1],[19,-6],[95,-35],[3,-1],[26,-10],[38,-14],[70,-26],[176,-68],[143,-65],[93,-42],[121,-49],[65,-27],[11,-4],[344,-134],[2,-1],[7,-3],[1,0],[2,-1],[10,-4],[20,-9],[5,-2],[4,-1],[4,-2],[5,-2],[3,-1],[9,-4],[5,-2],[5,-3],[113,-47],[12,-4],[26,-10],[38,-14],[34,-12],[-23,-97],[-21,-59],[-22,-59],[-41,-261],[-24,-125],[-56,-365],[-33,-159],[-38,-104],[-99,-223],[-65,-225],[-43,-202],[-32,-149],[-22,-110],[-17,-71],[-18,-94],[-24,-133],[-7,-172],[34,-144],[40,-224],[0,-152],[-1,-152],[-14,-227],[-59,-128],[-26,-44],[-37,-62],[-48,-90],[-5,-10],[-56,-74],[-43,-71],[-13,-154],[10,-147],[9,-92],[15,-135],[19,-251],[2,-110],[-57,-127],[-56,-41],[-58,-22],[-38,-12],[-25,-9],[-91,-21],[-103,-36],[-99,-55],[-82,-83],[-39,-40],[-113,-48],[-81,-20],[-72,-34],[-58,2],[-165,-56],[-55,-28],[-85,-128],[-45,-35],[-51,-26],[-42,-10],[-41,-9],[-47,-14],[-49,-26],[-43,-37],[-30,-44],[-32,-50],[-25,-41],[-20,-41],[-29,-26],[-34,-11],[-70,14],[-38,33],[-101,39],[-121,17],[-121,9],[-65,-9],[-63,-36],[-71,-61],[-84,-99],[-115,-131],[-142,-82],[-70,-53],[-21,-25],[-59,-68],[-31,-57],[-26,-50],[-37,-104],[-20,-173],[-13,-145],[-43,-177],[-32,-233],[-8,-80],[-7,-76],[-8,-80],[5,-136],[-64,45],[-1,149],[-11,236],[-9,145],[22,152],[33,101],[17,107],[-13,86],[-54,222],[-86,368],[-82,-60],[-56,-50],[-109,-25],[-94,12],[-76,110],[-90,89],[-76,25],[-140,-47],[-112,-73],[-133,-47],[-422,-14],[-106,0],[-186,-8],[-177,-27],[-167,-72],[-216,-275],[-139,-148],[-218,-304],[-144,-180],[-64,-68],[-66,-32],[-110,-14],[-105,41],[-162,55],[-23,8],[-203,90],[-9,4],[-39,16],[-213,87],[-263,106],[-28,11],[-84,32],[-8,3],[-69,26],[-5,4],[-169,114],[-240,156],[-247,187],[-184,186],[-139,126],[-25,95],[-50,239],[-33,172],[-68,129],[-58,61],[-108,30],[-30,3],[-11,1],[-5,0],[-81,-46],[-30,-29],[-80,-80],[-74,-73],[-100,-99],[-3,-3],[-51,-60],[-18,-22],[-102,-69],[-206,-169],[-192,-70],[-206,-74],[-192,-81],[-11,-4],[-162,-11],[-53,17],[-46,15],[-29,10],[-85,27],[-178,80],[-29,10],[-131,50],[-52,19],[-331,118],[-111,36],[-145,27],[-264,-57],[-185,-31],[-127,-19],[-74,-3],[-74,-4],[-206,-15],[-116,49],[-244,38],[-138,-8],[-181,-53],[-167,-28],[-161,-33],[-20,1],[-257,12],[-15,0],[-161,1],[-91,20],[-144,-32],[-6,-2],[-186,-43],[-100,-18],[-50,2],[-50,30],[-293,92],[-614,221],[-120,68],[-12,8],[-12,8],[-141,91],[-102,82],[-153,123],[-2,2],[-38,30],[-42,35],[-2,2],[-40,53],[-51,70],[-32,75],[-33,76],[-123,397],[-37,177],[-60,172],[-53,196],[-66,208],[-73,116],[-86,70],[-160,61],[-153,42],[-266,67],[-157,37],[-15,4],[-261,73],[-298,89],[-14,4],[-21,5],[-21,6],[-20,5],[-20,5],[-64,16],[-148,38],[-18,4],[-158,19],[-122,0],[-120,-32],[-4,-1],[-192,-83],[-203,-78],[-178,-134],[-172,-151],[-227,-182],[-238,-210],[-29,7],[-29,7],[-93,-182],[-78,-177],[-7,-15],[-34,-178],[-18,-119],[-1,-256],[-7,-339],[-15,-340],[-12,-270],[-6,-255],[-11,-372],[-29,-627],[-22,-239],[-7,-253],[-17,-111],[-9,-57],[-14,-201],[-16,-118],[-10,-10],[-9,-16],[-18,-28],[0,-132]],[[323996,233502],[0,-49]],[[323996,233453],[-6,-276],[-14,-101],[-35,-82],[-133,-319],[-59,-153],[-71,-179],[-81,-150],[-100,-115],[-5,-6],[-171,-234],[-243,-347],[-166,-216],[-285,-440],[-41,-56],[-218,-300],[-77,-107],[-18,-26],[-339,-491]],[[321934,229855],[-29,-43]],[[321905,229812],[-42,-81],[-7,-16],[-88,-108],[-123,-84],[-3,-1],[-122,-66],[-112,-87],[-129,-142],[-117,-163],[-60,-130],[-42,-121],[-2,-7],[-7,-60],[16,-138],[88,-391],[56,-185],[16,-45],[67,-232],[176,-573],[59,-193],[3,-10],[76,-233],[55,-159],[68,-222],[49,-199],[69,-283],[46,-177],[14,-198],[35,-336],[3,-65],[3,-66],[-22,-2],[-352,-33],[-1041,-131],[-136,-17],[-446,-20],[-348,-50],[-309,-40],[-141,-12]],[[319155,224736],[2,36],[1,30],[0,3],[13,318],[-20,384],[-62,384],[8,305],[110,289],[298,344],[169,199],[85,282],[33,212],[1,330],[-165,569],[-248,798],[-10,32],[-125,435],[-100,352],[-34,116],[-105,181],[-128,173],[-70,137],[-69,137],[-65,198],[-110,336],[-37,200],[2,330],[29,199],[51,78],[19,230],[-5,260],[-139,230],[-90,122],[-150,204],[-190,318],[-143,211],[-83,148],[-33,132],[-113,323],[-165,285],[-19,40],[-125,262],[-107,369],[-140,182],[-82,318],[-82,253],[3,317],[-28,217],[40,144],[14,545],[0,270],[86,274],[19,123],[-25,77],[-152,116],[-102,105],[-82,106],[-73,153],[-25,259],[14,160],[-31,282],[-40,210],[30,205],[49,207],[33,319],[33,423],[28,371],[-4,414],[8,191],[-32,191],[-63,218],[-36,316],[-8,271],[55,212],[106,185],[108,153],[16,127],[16,127],[76,148],[98,167],[209,257],[131,265],[64,328],[14,264],[22,387],[68,259],[46,296],[38,406],[1,7],[46,318],[32,455],[14,175],[54,150],[63,224],[16,170],[55,233],[57,246],[56,317],[35,332],[42,200]],[[339093,264848],[127,-84],[127,-85],[128,-97],[128,-98],[124,-96],[125,-95],[169,-130],[169,-129],[205,-157],[150,-102],[150,-102],[120,-94],[102,-65],[131,-67],[138,-30],[96,0],[96,1],[102,40],[148,55],[158,67],[255,108],[85,37],[147,29],[148,30],[213,-38],[194,-95],[187,-174],[114,-189],[124,-233],[116,-198],[90,-168],[53,-102],[125,-228],[166,-304],[84,-151],[83,-152],[150,-214],[61,-87],[128,-130],[25,-24],[12,-12],[38,-35],[12,-11],[61,-58],[75,-53],[102,-65],[197,-91],[170,-61],[58,-7],[168,-23],[686,-35],[111,-7],[98,-24],[116,-57],[389,-168],[185,-101],[223,-169],[411,-296],[40,-22],[81,-45],[21,-9],[68,-27],[80,-20],[22,-6],[109,-23],[232,0],[396,25],[474,20],[497,102],[163,31],[29,1],[175,8],[67,-3],[61,-2],[60,-5],[123,-20],[144,-25],[25,-7],[25,-6],[-2,-54],[-1,-16],[-1,-12],[-7,-18],[-73,-1],[-90,2],[-132,3],[-64,-25],[-26,-112],[-56,-226],[-20,-126],[-1,-78],[46,-92],[11,-83],[-10,-73],[-23,-61],[-31,-39],[-42,-21],[-11,0],[-211,-2],[-118,-86],[-125,-32],[-59,0],[-44,14],[-48,19],[-53,-2],[-53,-19],[-46,-32],[-41,-41],[-47,-47],[-15,-15],[-90,-58],[-178,-31],[-18,-4],[-50,-3],[-48,17],[-128,71],[-34,55],[-32,103],[-64,75],[-63,50],[-40,1],[-41,-15],[-85,-73],[-56,-78],[-71,-104],[-16,-23],[-95,-252],[-4,-11],[-12,-37],[-50,-97],[-29,-32],[-40,-20],[-83,-61],[-102,-91],[-47,-79],[-50,-102],[-73,-161],[-37,-90],[-66,-175],[-69,-119],[-47,-65],[-21,-6],[-43,-11],[-149,-8],[-23,-19],[-12,-10],[-46,-66],[-46,-111],[-36,-106],[-96,-74],[-49,-32],[-6,-4],[-24,-4],[-51,-7],[-17,-2],[-22,-3],[-27,-4],[-64,-9],[-11,-3],[-14,-4],[-17,-4],[-24,-7],[-2,0],[-67,-21],[-51,-41],[-75,-110],[-44,-68],[-8,0],[-48,-4],[-196,-66],[-34,-57],[-23,-74],[-44,-122],[-44,-61],[-48,-37],[-4,0],[-89,-6],[-101,17],[-55,20],[-80,-75],[-111,-102],[-108,-108],[-87,-108],[-56,-94],[-25,-81],[-26,-35],[-32,-41],[-59,-81],[-63,-50],[-124,-52],[-194,-63],[-108,-44],[-17,-19],[-10,-20],[8,-31],[43,-46],[46,-115],[8,-143],[8,-115],[2,-23],[13,-168],[7,-122],[-2,-21],[-1,-31],[-4,-25],[-17,-117],[-18,-128],[-22,-216],[-5,-105],[-5,-192],[15,-89],[10,-56],[18,-99],[4,-55],[2,-30],[-233,-226],[-335,-325],[-132,-110],[-40,-49],[-93,-51],[-250,-336],[-18,-25],[-77,-115],[-143,-242],[-91,-158],[-28,-50],[-192,-325],[-102,-172],[-70,-52],[53,-25],[17,-22],[0,-11],[1,-20],[2,-27],[75,-37],[117,-90],[180,-133],[210,-172]],[[924301,487144],[182,15]],[[924483,487159],[167,56],[116,36],[118,30],[108,8],[85,-15],[166,54],[83,62],[112,112],[119,120],[83,98],[38,103],[115,321],[157,121],[122,98],[91,76],[37,4],[37,5],[68,-18],[86,-58],[92,-112],[91,-174],[92,-156],[116,-232],[136,-152],[89,-82],[65,-65],[56,-53],[98,-38],[136,-42],[108,-4],[81,0],[83,31],[58,41],[283,141],[75,27],[94,49],[75,27],[98,23],[154,7],[101,-4],[286,42],[90,27],[196,15],[140,78],[405,162],[93,68]],[[929782,487996],[138,46]],[[929920,488042],[11,4],[151,102],[139,118],[121,91],[128,118],[124,55],[22,10],[187,52],[88,24],[134,49],[123,27],[81,11],[103,0],[154,-64],[164,-95],[161,-107],[134,-64],[93,-80],[25,-23],[48,-42],[46,-68],[40,-118],[35,-73],[58,-30],[22,-7],[69,-23],[124,-35],[103,-26],[19,1],[61,2],[6,1],[37,-2],[38,-2],[56,15],[45,84],[10,64],[8,80],[50,61],[46,33],[65,-14],[48,-53],[48,-61],[55,-27],[101,42],[114,57],[80,118],[43,61],[45,38],[51,-34],[35,-80],[10,-107],[-15,-148],[10,-114],[18,-137],[35,-91],[46,-61],[80,-46],[81,-19],[86,-3],[88,-4],[80,15],[104,68],[68,16],[76,49],[32,65],[111,331],[85,110],[49,61],[45,45],[23,-9],[23,-10],[45,-45],[3,-3],[47,-43],[36,8],[7,3],[43,23],[73,23],[76,-34],[29,-54],[1,-2],[66,-24],[88,-11],[51,28],[14,8],[3,2],[53,22],[17,8],[74,19],[93,-44],[35,-17],[98,-42],[69,19],[83,38],[73,-26],[60,-65],[66,-42],[88,-15],[88,-11],[89,34],[70,80],[71,102],[68,107],[35,106],[35,42],[48,0],[28,-38],[48,-103],[7,-22],[41,-130],[8,-67],[4,-39],[-17,-99],[-25,-84],[-13,-68],[10,-57],[38,-72],[22,-99],[24,-127],[2,-10],[25,-118],[37,-98],[3,-8],[71,-61],[60,7],[109,38],[113,12],[6,0],[85,5],[25,2],[10,0],[5,0],[94,4],[70,8],[11,-14],[19,-24],[94,-133],[-13,-126],[10,-114],[25,-118],[68,-133],[76,-92],[3,-3],[58,-107],[57,-121],[66,-221],[38,-175],[86,-163],[103,-145],[40,-13],[63,-21],[73,-4],[61,4],[78,34],[78,92],[73,121],[71,164],[28,125],[-9,27],[-5,17],[-7,21],[-4,12],[-5,16],[-3,10],[-2,5],[-2,8],[-2,5],[-5,16],[-4,14],[-3,10],[-1,3],[-1,2],[-1,3],[-1,2],[-1,4],[-2,84],[37,53],[43,4],[51,-38],[43,-61],[42,-80],[31,-106],[53,-38],[88,-16],[111,-7],[126,-8],[227,-57],[48,-34],[45,-65],[3,-42],[4,-49],[6,-72],[20,-61],[-2,-53],[-1,-54],[3,-87],[17,-49],[26,-27],[108,8],[70,28],[15,6],[86,45],[111,137],[106,130],[83,60],[86,0],[108,-38],[71,-26],[61,-19],[60,11],[28,61],[-10,72],[-23,57],[-38,73],[-43,49],[-65,65],[-33,57],[-30,57],[0,121],[22,88],[31,61],[25,99],[2,72],[-17,65],[-177,114],[-126,68],[-40,42],[-33,46],[-10,121],[15,122],[35,175],[-5,118],[-20,91],[-15,72],[-10,103],[15,110],[52,67],[34,51],[63,110],[78,38],[63,0],[66,-57],[42,-83],[21,-103],[50,-84],[50,-34],[69,-30],[63,-16],[68,-22],[30,-54],[-3,-41],[-25,-69],[-17,-76],[-21,-99],[3,-133],[12,-133],[38,-141],[46,-114],[75,-186],[51,-110],[14,-31],[36,-76],[51,-68],[55,-31],[55,15],[74,73],[40,72],[15,80],[-10,91],[-28,99],[-38,99],[-45,87],[-68,141],[-30,110],[7,114],[58,57],[51,-7],[40,-34],[88,-122],[68,-129],[73,-107],[66,-87],[50,-27],[43,0],[106,69],[78,79],[41,80],[-18,114],[-43,73],[-28,45],[-20,91],[15,65],[33,15],[40,-3],[89,38],[105,64],[69,15],[60,-22],[113,-19],[132,-19],[95,-38],[61,26],[60,53],[71,27],[73,4],[56,-27],[42,-57],[31,-53],[83,-63],[83,-9],[106,-8],[88,-8],[48,-106],[28,-99],[53,-91],[98,-50],[101,-30],[80,11],[79,69],[73,129],[60,152],[13,130],[-3,152],[-20,125],[18,107],[78,41],[73,-22],[24,1],[25,1],[24,1],[20,1],[18,1],[11,1],[7,0],[7,1],[5,0],[4,0],[4,0],[70,46],[61,90],[48,77],[7,91],[-17,57],[-31,46],[-35,84],[-10,72],[18,53],[50,38],[77,15],[40,-9],[39,-10],[96,-30],[43,-53],[20,-65],[-22,-68],[-23,-95],[-25,-107],[5,-80],[53,-76],[95,-45],[254,-43],[205,-79],[227,-42],[189,-91],[98,-61],[106,-23],[134,42],[113,65],[150,-14],[160,-13],[105,41],[205,69],[91,23],[66,-23],[40,-83],[0,-95],[-28,-118],[-22,-130],[-8,-106],[15,-80],[58,-30],[58,45],[41,69],[50,15],[60,-38],[48,-76],[189,-183],[285,-296],[104,-137],[53,-61],[53,-34],[113,-38],[194,-42],[151,-57],[71,-23],[78,-19],[73,19],[63,42],[46,84],[17,91],[15,125],[5,55],[5,56],[-10,114],[-27,99],[-33,79],[-204,369],[-79,103],[-50,148],[-18,103],[10,99],[56,68],[71,69],[60,57],[61,102],[47,156],[66,301],[48,372],[40,160],[78,190],[149,107],[93,49],[61,0],[43,-49],[43,-65],[45,-57],[48,-114],[70,-251],[71,-243],[50,-141],[46,-118],[43,-106],[55,-61],[88,-23],[68,38],[58,87],[68,111],[76,106],[305,236],[199,84],[106,26],[83,-30],[76,-57],[33,-57],[30,-99],[-10,-99],[-40,-88],[-38,-102],[-46,-149],[-60,-87],[-101,-95],[-68,-72],[-58,-80],[-25,-84],[7,-114],[116,-274],[91,-137],[66,-64],[85,4],[96,15],[174,80],[151,27],[106,11],[61,30],[48,53],[40,76],[10,103],[-25,133],[-48,571],[7,144],[28,118],[43,87],[66,57],[39,6],[39,6],[78,-38],[73,-88],[106,-201],[136,-377],[159,-608],[63,-152],[53,-69],[78,-30],[77,12],[24,3],[45,72],[28,103],[22,145],[-12,292],[17,229],[84,205],[68,114],[131,125],[154,126],[116,95],[73,65],[103,118],[50,117],[8,118],[-1,42]],[[953482,489209],[-2,42]],[[953480,489251],[-1,5],[-2,5],[-13,38],[-16,47],[-71,57],[-93,38],[-151,76],[-121,137],[-298,434],[-20,30],[-78,118],[-66,118],[-52,104],[-26,135],[-12,65],[-3,15],[4,54],[8,123],[11,89],[55,88],[80,78],[28,20],[124,87],[230,-27],[32,-26],[98,-83],[1206,-1020],[413,-349],[140,-118],[172,-116],[146,-262],[202,-494]],[[955406,488717],[-22,-310],[-146,-272],[-3073,-2965],[-412,-301],[-412,-301],[-2547,-2133],[-1984,-1585],[-1676,-947],[-248,-151],[-254,-220],[-332,-196],[-136,-131],[-626,-515],[-924,-725],[-2166,-1517],[-1348,-958],[-3034,-1874],[-4997,-2809],[-2509,-1256],[-1793,-958],[-1928,-922],[-3308,-1467],[-6050,-2515],[-545,-187],[-545,-186],[-749,-272],[-1546,-562],[-4579,-1918],[-1269,-459],[-1269,-460],[-969,-305],[-817,-325],[-2099,-821],[-2696,-941],[-174,-76],[-4033,-1756],[-1686,-677],[-2167,-849],[-1394,-546],[-5192,-2062],[-1555,-615],[-164,-65],[-786,-311],[-431,-170],[-818,-324],[-143,-57],[-1519,-600],[-2382,-980],[-289,-118],[-229,-95],[-124,-51],[-225,-92],[-325,-134],[-359,-148],[-365,-150],[-326,-134],[-50,-20],[-202,-89],[-240,-106],[-363,-159],[-333,-147],[-357,-157],[-284,-125],[-332,-146],[-118,-52],[-131,-57],[-951,-419],[-1123,-494],[-1053,-494],[-502,-218],[-566,-328],[-2,-1],[-512,-226],[-1356,-598],[-1273,-644],[-38,-19],[-40,-20],[-48,-25],[-145,-73],[-369,-187],[-265,-142],[-445,-238],[-582,-319],[-24,-13],[-1577,-865],[-87,-47],[-63,-35],[-212,-126],[-110,-65],[-13,-7],[-24,-15],[-12,-7],[-19,-11],[-1,-1],[-33,-19],[-125,-75],[-139,-83],[-127,-75],[-96,-57],[-95,-56],[-57,-34],[-10,-6],[-10,-6],[-12,-7],[-1,0],[-69,-41],[-17,-11],[-153,-91],[-101,-59],[-151,-90],[-195,-116],[-250,-148],[-153,-91],[-61,-36],[-44,-27],[-75,-44],[-19,-11],[-51,-31],[-32,-18],[-41,-25],[-298,-177],[-48,-28],[-36,-22],[-35,-20],[-30,-18],[-27,-16],[-45,-27],[-1,0],[-57,-34],[-226,-135],[-171,-101],[-459,-273],[-172,-102],[-956,-567],[-54,-33],[-759,-490],[-204,-132],[-852,-567],[-420,-286],[-47,-31],[-325,-252],[-70,-55],[-49,-37]],[[822063,503341],[109,-57],[107,-113],[75,-29],[106,34],[320,199],[152,-37],[115,-87],[111,-130],[107,-99],[110,-44],[161,75],[138,212],[112,135],[144,99],[164,56],[158,108],[167,59],[22,70],[43,41],[39,16],[23,59],[33,99],[30,45],[14,58],[-18,160],[13,87],[24,152],[-12,68],[-27,80],[-38,65],[-25,65],[4,56],[29,53],[23,14],[24,14],[53,-13],[86,-55],[45,19],[103,67],[152,44],[62,19],[76,80],[98,127],[91,133],[80,55],[70,22],[92,13],[62,-19],[47,-37],[24,-71],[35,-81],[87,-71],[76,-62],[57,-9],[101,-44],[57,-55],[82,-65],[107,-53],[74,-19],[88,19],[111,62],[99,111],[63,62],[91,34],[32,-7],[31,-8],[66,-81],[41,-28],[60,25],[63,50],[70,34],[105,22],[123,40],[28,9],[9,17],[10,51],[4,53],[12,26],[56,42],[82,37],[21,5],[152,38],[59,13],[41,12],[24,13],[33,17],[72,21],[117,11],[62,-14],[72,-15],[33,3],[31,14],[24,12],[22,24],[44,41],[103,91],[10,9],[66,37],[63,7],[52,-52],[32,-53],[48,-23],[149,63],[172,63],[86,50],[59,59],[49,7],[55,-77],[50,-26],[39,41],[109,139],[55,70],[85,63],[90,22],[72,77],[80,118],[66,87],[47,24],[59,-24],[60,-84],[25,-124],[2,-155],[14,-133],[47,-53],[45,13],[33,43],[25,40],[72,75],[43,62],[35,6],[10,-19],[68,-68],[49,-6],[123,19],[128,58],[113,75],[92,18],[76,-37],[64,-37],[59,-19],[95,31],[57,109],[27,90],[6,18],[33,44],[41,-10],[78,-30],[64,184],[-15,172],[58,157],[91,104],[170,72],[99,12],[81,-46],[155,0],[127,92],[72,28],[75,55],[8,92],[3,130],[37,82],[14,8],[61,35],[130,-16],[134,-16],[342,11],[83,-22],[137,-93],[98,-103],[57,-120],[29,-130],[-3,-126],[-11,-178],[3,-192],[26,-157],[101,-115],[56,-40],[77,-3],[69,81],[94,104],[86,22],[112,5],[137,-11],[119,44],[144,-38],[98,-104],[68,-109],[62,-54],[57,-38],[80,54],[-22,202],[7,163],[62,109],[43,54],[86,49],[91,22],[101,-65],[104,-169],[270,-283],[51,-55],[184,-146],[256,-175],[61,27],[98,229],[36,71],[61,0],[80,-6],[86,17],[76,43],[180,174],[76,49],[148,6],[16,-12],[114,-86],[58,-11],[205,65],[155,71],[47,27],[29,38],[41,48],[37,9],[81,-40],[119,54],[54,109],[11,120],[-33,108],[40,66],[100,66],[15,10],[138,-11],[83,-37],[310,-137],[30,9],[55,15],[88,25],[79,43],[87,104],[36,81],[47,196],[18,44],[31,44],[45,5],[98,-14],[4,0],[3,-1],[6,-1],[87,-8],[82,-4],[127,-15],[53,-17],[37,-22],[62,-76],[124,-222],[35,-56],[66,-32],[78,-37],[34,-35],[14,-26],[45,-188],[31,-88],[32,-57],[34,-49],[70,-32],[75,-5],[62,-5],[32,-41],[2,-31],[-4,-19],[-3,-20],[-49,-109],[-39,-68],[-51,-16],[-40,-19],[-14,-39],[9,-35],[102,-46],[124,-55],[280,-123],[218,-89],[32,19],[60,35],[54,119],[74,66],[98,37],[123,16],[115,21],[112,45],[57,4],[46,-8],[30,-61],[39,-132],[62,-40],[115,-26],[145,8],[158,21],[169,8],[99,-29],[112,-62],[55,-79],[75,-57],[200,-35],[168,57],[181,-7],[154,-29],[210,-42],[222,-74],[11,-3],[108,-36],[8,-3],[7,-2],[6,-2],[7,-3],[10,-3],[8,-3],[7,-2],[8,-3],[18,-5],[20,-7],[23,-8],[23,-7],[39,-13],[66,-22],[68,-20],[181,-53],[236,-68],[479,-141],[350,-100],[411,-118],[555,-160],[443,-127],[100,-29],[369,-94],[190,-77],[228,-94],[2,-1],[3,-1],[275,-83],[51,-16],[139,-42],[42,-13],[461,-127],[237,-13],[15,-1],[321,7],[312,57],[370,125],[3,1],[410,239],[457,382],[199,248],[75,94],[200,274],[65,108],[178,299],[139,267],[147,415],[87,245],[50,142],[10,27],[212,552],[15,40],[113,294],[50,127],[140,358],[143,363],[1035,2635],[420,1070],[599,1509],[296,746],[633,1644],[140,323],[116,260],[135,274],[112,211],[126,225],[149,239],[238,316],[135,183],[139,183],[126,119],[140,155],[158,133],[186,169],[205,147],[317,232],[471,267],[3185,1736],[2910,1689],[1107,601],[124,141],[168,147],[223,134],[229,161],[97,148],[70,155],[33,147],[60,323],[28,302],[42,120],[94,56],[130,-56],[135,21],[116,7],[98,21],[89,-42],[65,-113],[61,-154],[74,-155],[162,-133],[145,-169],[80,-105],[56,-85],[32,-98],[14,-140],[19,-197],[18,-148],[24,-112],[56,-49],[153,7],[140,105],[70,98],[51,127],[84,126],[112,99],[237,84],[84,56],[65,113],[75,119],[79,106],[84,154],[84,288],[-14,141],[-38,77],[-74,84],[14,162],[56,126],[14,141],[-24,246],[-27,183],[13,295],[10,210],[46,159],[51,120],[34,150],[26,175],[8,304],[12,133],[135,344],[66,96],[74,86],[74,137],[184,441],[94,239],[79,163],[28,141],[-25,116],[-63,115],[-62,73],[-43,90],[26,133],[34,64],[50,83],[91,202],[83,194],[119,197],[133,116],[68,62],[191,117],[96,77],[91,107],[85,95],[80,55],[107,43],[103,21],[110,-29],[125,-30],[136,8],[100,22],[90,8],[80,4],[91,-12],[99,-39],[62,-77],[46,-107],[39,-86],[34,-42],[63,-26],[68,8],[74,60],[48,86],[65,77],[91,43],[207,98],[318,141],[96,69],[80,73],[59,111],[60,128],[48,172],[26,175],[-15,107],[-19,116],[-26,138],[-3,225],[12,193],[59,441],[82,376],[43,232],[-3,226],[-28,341],[-17,254],[17,201],[45,125],[80,128],[96,64],[77,22],[61,-21],[123,-121],[78,-72],[78,-73],[80,-56],[65,-90],[252,-650],[63,-125],[86,-121],[100,-177],[151,-379],[134,-198],[166,-203],[180,-206],[188,-160],[169,-82],[131,-51],[92,-48],[114,-94],[129,-112],[79,-130],[20,-54],[20,-54],[46,-134],[4,-7],[42,-85],[51,-60],[73,-57],[257,-203],[195,-153],[7159,-5634],[12057,-9488],[970,-764],[2438,-1918],[9785,-7701],[8280,-6516],[324,-255],[52,-147],[57,-132],[39,-177],[18,-84],[91,-251],[125,-401],[228,-716],[198,-625],[70,-206],[102,-336],[176,-541],[45,-154],[137,-383],[32,-89],[12,-32],[48,-126],[4,-11],[56,-122],[3525,-7753],[110,-32],[107,-17],[20,-4]],[[139167,299449],[-52,-25],[-51,-24],[-151,106],[-151,117],[-165,111],[-119,22],[-116,-56],[-70,-120],[-16,-120],[42,-213],[-14,-137],[-40,-57],[-186,-183],[-105,-112],[-69,-63],[-35,-112],[1,-113],[2,-139],[97,-140],[99,-44],[145,-350],[116,-316],[74,-295],[71,-439],[-14,-226],[-45,-138],[-137,-131],[-82,-62],[-75,-10],[-88,89],[-258,348],[-181,249],[-72,84],[-98,24],[-147,-6],[-111,-77],[-34,-108],[15,-692],[14,-309],[-46,-175],[-112,-67],[-112,-67],[-78,-121],[-75,-350],[28,-336],[228,-447],[210,-398],[64,-175],[39,-195],[23,-145],[22,-62],[76,-116],[62,-98],[55,-128],[28,-116],[2,-82],[1,-125],[-16,-198],[-65,-399],[-33,-133],[-54,-222],[-100,-158],[-79,-70],[-141,-87],[-135,-7],[-154,-14],[-107,29],[-28,-4],[-27,-4],[-56,-24],[-51,-50],[-45,-89],[-82,-164],[-46,-168],[-42,-222],[-22,-207],[-29,-138],[-25,-63],[-28,-51],[-29,-39],[-44,-39],[-58,-30],[-38,-19],[-27,-23],[-25,-41],[-31,-46],[-18,-62],[-16,-101],[-16,-43],[-48,-63],[-190,-255],[-239,112],[-192,180],[-134,34],[-150,-20],[-119,46],[-119,45],[-162,120],[-132,143],[-67,130],[-53,141],[115,246],[26,56],[63,136],[160,558],[32,188],[-26,113],[-29,130],[-92,238],[-122,225],[-156,218],[-216,218],[-98,193],[-11,193],[8,112],[8,112],[77,183],[109,256],[95,263],[33,176],[16,158],[-16,508],[102,513],[168,814],[104,464],[23,228],[25,260],[10,424],[-10,141],[-7,128],[-9,13],[-12,4],[-17,5],[-23,10],[-22,9],[-35,32],[-26,29],[-76,138],[-79,132],[-29,42],[-59,37],[-48,17],[-61,11],[-56,-6],[-56,-6],[-92,-39],[-107,-63],[-90,-32],[-39,-52],[-48,-14],[-84,-90],[-130,-140],[-46,-77],[-57,-44],[-35,-60],[-77,-90],[-52,-62],[-2,-37],[-9,-41],[-23,-3],[-26,22],[19,69],[-13,46],[-38,17],[-65,23],[-50,51],[-55,50],[-112,22],[-4,31],[8,105],[-13,101],[-8,35],[-30,10],[-5,34],[-37,0],[-52,25],[-42,60],[-27,66],[-39,79],[-34,45],[-38,14],[-28,-10],[-16,-54],[-17,-52],[-18,-12],[-34,9],[-33,37],[-22,50],[22,47],[20,44],[33,39],[27,37],[-3,45],[-23,29],[-55,13],[-36,0],[-34,20],[-15,34],[10,42],[21,44],[1,47],[-8,39],[-13,30],[-41,20],[-54,-22],[-62,27],[-50,32],[-39,47],[-38,46],[-21,114],[4,111],[23,59],[32,46],[34,28],[34,49],[35,41],[30,36],[42,13],[71,24],[90,22],[59,15],[54,12],[55,-10],[43,15],[54,12],[68,17],[64,-22],[33,8],[11,13],[12,14],[6,47],[25,51],[2,52],[-14,37],[-6,54],[-7,55],[23,59],[28,15],[36,12],[27,27],[7,62],[2,71],[-2,44],[20,10],[26,-10],[8,-54],[-2,-71],[10,-50],[22,-22],[27,-10],[23,37],[-1,47],[3,54],[13,42],[36,18],[31,-3],[41,-15],[19,18],[14,35],[-10,46],[20,31],[37,1],[49,-17],[41,-5],[47,5],[28,17],[2,44],[-32,67],[-8,71],[-3,69],[-10,52],[2,45],[18,2],[21,-39],[46,-57],[44,-5],[51,-15],[29,8],[20,24],[-12,45],[-28,51],[7,24],[31,60],[26,54],[-11,42],[-23,-7],[-48,-32],[-57,10],[-47,12],[-20,37],[4,67],[18,61],[36,50],[39,86],[39,20],[52,-3],[25,-27],[29,-47],[21,-5],[20,22],[-20,42],[-42,72],[-10,37],[16,23],[53,38],[24,8],[31,-30],[23,-61],[31,-25],[25,-30],[24,-9],[18,23],[-3,63],[-15,32],[-21,32],[5,54],[16,32],[8,74],[-3,59],[-6,40],[0,23],[8,20],[47,68],[25,0],[34,-10],[14,17],[23,-5],[14,-27],[0,-25],[-22,-53],[-19,-22],[-17,-3],[-15,-33],[-6,-30],[4,-19],[4,-20],[14,-19],[22,-6],[20,3],[15,11],[5,14],[4,28],[9,27],[14,9],[8,23],[1,21],[-9,20],[1,35],[12,48],[16,22],[28,27],[17,37],[21,46],[22,22],[21,22],[27,9],[31,4],[23,-16],[4,-38],[14,-24],[18,-4],[30,28],[20,36],[16,7],[20,-6],[12,-21],[5,-79],[8,-65],[16,-36],[9,-6],[19,10],[73,142],[2,14],[-11,24],[-19,9],[-25,-4],[-24,-11],[-18,10],[-11,17],[0,39],[8,31],[14,24],[10,28],[-3,30],[8,21],[13,9],[13,-11],[12,-32],[9,-32],[7,-40],[10,-12],[18,2],[15,11],[6,22],[3,38],[-5,54],[10,30],[20,10],[15,15],[5,25],[1,34],[10,15],[14,9],[13,13],[8,21],[4,19],[-4,19],[-15,11],[-16,0],[-6,16],[2,21],[5,17],[-6,9],[-12,22],[1,17],[20,10],[7,19],[-1,32],[-14,28],[-13,30],[-24,-11],[-31,6],[-14,14],[-8,25],[-15,32],[-34,17],[-25,39],[-6,16],[-5,17],[-31,20],[-13,26],[-30,3],[-20,20],[-25,25],[-17,44],[-36,2],[-45,20],[-16,17],[3,26],[-4,37],[-18,35],[-15,26],[-32,-5],[-12,-14],[-35,-2],[-17,7],[-29,31],[-30,1],[-15,-10],[-37,2],[-32,18],[-22,31],[-29,16],[-48,21],[-31,16],[-18,53],[-15,63],[4,66],[-1,27],[0,31],[11,24],[24,24],[9,25],[-1,32],[-6,35],[-13,29],[-18,26],[-24,28],[-23,5],[-18,19],[-14,27],[-11,27],[-21,15],[-32,23],[-18,16],[-17,14],[-26,-4],[-22,-1],[-25,-11],[-18,-15],[-3,-26],[-25,-13],[-33,3],[-55,16],[-15,13],[-12,13],[-19,4],[-19,-20],[-20,-15],[-22,10],[-37,3],[-22,-2],[-12,-18],[-41,4],[-37,-15],[-32,-4],[-20,-14],[-29,8],[-20,-32],[-20,-11],[-6,-41],[-14,-37],[-6,-23],[-6,-22],[-20,-2],[-11,-19],[-5,-21],[11,-13],[-6,-12],[-17,2],[-6,-22],[-9,-3],[-12,-5],[-17,17],[-41,18],[-12,3],[-8,-12],[-14,1],[-10,-15],[-46,-2],[-29,-26],[-21,-2],[-23,15],[-17,14],[-32,3],[-41,12],[-54,33],[-38,18],[-48,-6],[-25,0],[-30,-36],[-11,-43],[9,-39],[14,-4],[12,-13],[-4,-20],[-6,-30],[-36,-56],[-24,-32],[4,-45],[-4,-17],[-14,-5],[-28,10],[-14,-8],[-15,-13],[-3,-17],[-3,-16],[-17,-11],[-55,-34],[-14,-38],[-20,-14],[-20,18],[-42,13],[-8,-26],[-18,-8],[-30,21],[-33,-8],[-18,-17],[-23,-28],[-49,-101],[-19,-50],[-26,-29],[-33,-10],[-72,25],[-57,14],[-36,25],[-46,47],[-9,23],[-9,24],[-18,83],[-36,72],[-36,37],[-39,-20],[-31,-32],[-15,25],[-15,52],[-34,2],[-47,22],[-26,25],[-17,59],[-21,69],[-31,64],[-31,30],[-28,34],[-8,50],[-23,39],[-28,27],[-36,47],[-29,-6],[-33,-24],[-93,8],[-51,-8],[-59,-23],[-60,-9],[-64,8],[-12,15],[3,44],[-15,86],[-28,59],[-35,35],[-7,27],[-13,62],[-46,59],[-62,27],[-72,-49],[-36,0],[-17,46],[12,37],[21,42],[0,52],[-16,57],[-23,37],[-17,12],[-44,10],[-23,18],[-21,36],[-16,40],[-34,39],[-23,12],[-56,5],[-30,19],[-38,8],[-25,-17],[-23,3],[-16,42],[-23,27],[-34,-15],[-12,57],[-18,59],[-18,37],[-16,6],[-20,-1],[-6,-30],[-26,-17],[-38,0],[-33,2],[-29,52],[-15,47],[-31,34],[-51,16],[-19,36],[-16,82],[-25,46],[-47,30],[-61,-17],[-50,17],[-40,59],[-45,52],[-84,89],[-85,84],[-93,91],[-85,81],[-65,72],[-39,44],[-53,10],[-49,-8],[-104,-5],[-126,35],[-35,-15],[-43,-37],[-38,17],[-43,0],[-85,-14],[-47,-46],[-54,-33],[-55,-24],[-31,0],[-32,0],[-49,7],[-90,-40],[-75,20],[-75,-40],[-65,13],[-76,24],[-111,18],[-99,-3],[-110,0],[-64,-24],[-91,-94],[-61,-30],[-71,-1],[-36,28],[-50,43],[-84,33],[-37,-9],[-32,-48],[-55,9],[-62,36],[-55,71],[-40,88],[-2,10],[-15,67],[-11,44],[-38,158],[-39,100],[-9,11],[-48,66],[-46,-27],[-46,-26],[-106,-121],[-57,-127],[-67,-378],[-6,-35],[-155,-555],[-23,-134],[-41,-242],[-49,-686],[-24,-352],[-63,-355],[-80,-248],[-177,-247],[-185,-70],[-273,0],[-170,6],[-171,7],[-248,-64],[-110,-121],[-38,-218],[-12,-340],[-63,-387],[-63,-235],[-114,-254],[-189,-368],[-173,-267],[-181,-171],[-189,-95],[-130,-26],[-169,32],[-193,76],[-178,67],[-94,4],[-94,4],[-143,-30],[-301,-111],[-26,-23],[-8,-160],[229,-275],[114,-130],[63,-38],[42,-19],[40,-6],[26,9],[37,-4],[52,-42],[200,-228],[100,-78],[142,-82],[48,-26],[22,-17],[21,-21],[13,-30],[19,-57],[1,-15],[1,-15],[-24,-5],[-19,-24],[-3,-33],[15,-95],[-4,-92],[-14,-108],[-22,-73],[-4,-72],[6,-122],[14,-263],[13,-67],[2,-60],[5,-62],[0,-60],[-5,-24],[-11,-24],[-31,-15],[-10,-26],[5,-50],[3,-21],[8,-58],[10,-67],[14,-42],[27,-23],[23,-27],[-7,-20],[-28,-27],[-21,-26],[-21,-25],[-20,-43],[-13,-111],[-30,-106],[-41,-103],[-2,-28],[-1,-28],[-6,-22],[-16,-12],[-11,-39],[-23,-17],[-20,-8],[-15,-21],[-6,-16],[-4,-39],[-5,-43],[-1,-10],[-7,-70],[5,-76],[22,-92],[15,-105],[12,-61],[1,-50],[-16,-56],[-6,-52],[3,-27],[3,-28],[10,-13],[10,-13],[10,-12],[9,-6],[41,-31],[46,-33],[61,-36],[51,-35],[19,-31],[20,-63],[32,-90],[34,-62],[57,-83],[64,-105],[90,-109],[112,-118],[44,-53],[43,-66],[36,-93],[44,-140],[0,-60],[7,-56],[41,-52],[179,-160],[166,-129],[92,-52],[41,-8],[61,-3],[43,11],[30,28],[41,72],[30,63],[26,43],[44,29],[53,22],[35,44],[16,15],[11,44],[27,25],[16,34],[26,6],[20,-21],[12,-25],[-2,-41],[-10,-137],[16,-30],[19,-6],[58,54],[28,15],[19,-12],[5,-19],[-4,-30],[-31,-34],[-28,-38],[-38,-60],[-10,-22],[0,-25],[21,-47],[12,-33],[5,-44],[2,-42],[-10,-63],[-15,-32],[-24,-25],[-35,-21],[-150,-71],[-89,-67],[-45,-49],[-80,-79],[-69,-50],[-78,-50],[-109,-88],[-59,-41],[-60,-68],[-21,-62],[-10,-67],[6,-73],[9,-55],[-2,-70],[-15,-46],[-40,-19],[-39,-2],[-40,19],[-64,37],[-120,101],[-44,54],[-43,40],[-40,-3],[-32,-38],[-18,-46],[-34,-64],[-34,-44],[-27,-13],[-37,18],[-30,-4],[-19,-39],[-24,-13],[-40,-9],[-18,-4],[-9,-27],[-12,-15],[-22,-24],[-11,-35],[-24,-16],[-32,-35],[-15,-36],[-6,-29],[-27,-29],[-15,-34],[-20,-80],[-14,-57],[-33,-71],[-75,-91],[-48,-79],[-16,-52],[-34,-13],[-32,-37],[-20,-20],[-20,-21],[-24,13],[0,46],[-8,76],[-14,33],[-55,86],[-5,7],[-21,33],[-12,18],[-13,19],[-9,13],[-6,10],[-6,8],[-68,70],[-44,30],[-31,8],[-41,6],[-43,32],[-69,68],[-88,89],[-63,90],[-52,59],[-27,3],[-95,-19],[-69,3],[-60,29],[-46,41],[-3,3],[-47,72],[-30,73],[-23,82],[-27,34],[-40,44],[-58,29],[-86,41],[-47,27],[-132,97],[-90,147],[-59,156],[-91,178],[-90,158],[-74,124],[-65,70],[-88,47],[-61,35],[-32,51],[-23,79],[-8,26],[-23,0],[-25,-2],[-30,13],[-9,32],[7,41],[-5,37],[-15,23],[-21,11],[-62,40],[-54,25],[-42,7],[-43,-3],[-42,7],[-70,33],[-42,1],[-29,13],[-15,44],[-66,84],[-57,57],[-36,27],[-36,27],[-46,6],[-50,10],[-38,3],[-49,-28],[-40,-32],[-59,-22],[-56,-19],[-32,28],[-26,64],[-43,25],[-68,13],[-48,12],[-44,0],[-51,23],[-69,31],[-61,10],[-70,-16],[-54,10],[-42,50],[-34,77],[-36,53],[-26,33],[-58,-17],[-65,-12],[-53,15],[-63,26],[-88,3],[-53,-35],[-61,-60],[-73,-64],[-57,-41],[-55,6],[-66,36],[-79,12],[-46,29],[-78,-7],[-53,-41],[-63,19],[-44,48],[-46,56],[-38,55],[-66,31],[-54,7],[-82,16],[-47,47],[-56,73],[-70,54],[-50,16],[-81,-3],[-78,63],[-71,58],[-23,57],[-27,58],[-60,24],[-38,35],[-53,37],[-57,8],[-204,6],[-95,16],[-72,-10],[-46,-70],[-65,-63],[-49,-43],[-54,-21],[-61,2],[-54,-13],[-43,-3],[-15,-5],[-18,-12],[-7,-24],[-6,-18],[-24,-14],[-33,-13],[-74,-25],[-58,-43],[-54,-46],[-40,-32],[-24,-20],[-36,-40],[-30,-41],[-38,-82],[-23,-56],[-24,-56],[-39,-104],[-35,-92],[-37,-129],[-36,-124],[-32,-73],[-25,-50],[-56,-75],[-464,-459],[-160,-203],[-130,-171],[-101,-114],[-119,-24],[-125,-21],[-223,38],[-187,139],[-115,28],[-115,-59],[-155,-222],[-240,-254],[-143,-133],[-98,-107],[-70,-106],[-50,-117],[-72,-258],[-38,-146],[-15,-164],[23,-280],[9,-114],[-43,-184],[-54,-165],[-59,-71],[-107,-75],[-110,-70],[-146,12],[-169,153],[-118,0],[-131,-51],[-197,-38],[-68,32],[-67,32],[-63,158],[-36,197],[-46,132],[-89,78],[-98,31],[-110,-44],[-210,-63],[-240,-83],[-202,-102],[-215,-158],[-101,-7],[-122,-126],[-54,-178],[-55,-159],[-11,-204],[-19,-70],[-19,-69],[-94,-38],[-404,-311],[-177,-57],[-155,19],[-169,29],[-97,-99],[-101,-323],[-50,-197],[-32,-73],[-31,-73],[-76,-51],[-129,-54],[-299,-194],[-339,108],[-567,180],[-543,540],[-324,148],[-337,-161],[-225,117],[-338,29],[-293,245],[-75,6],[-53,-27],[-39,-70],[-35,-19],[-58,-11],[-47,-5],[-79,35],[-50,35],[-56,48],[-44,76],[-62,167],[-44,142],[-18,31],[-39,6],[-23,9],[-9,27],[-13,67],[-21,13],[-88,14],[-31,9],[-31,8],[-27,4],[-16,22],[-16,47],[-27,40],[-34,11],[-29,7],[-28,30],[-11,33],[7,27],[44,22],[23,21],[14,25],[5,35],[-3,43],[-3,90],[-20,79],[-2,41],[1,46],[8,47],[11,79],[-30,96],[-50,80],[-53,31],[-19,35],[-16,44],[-3,54],[-2,27],[-27,64],[-17,41],[-18,40],[-18,79],[-15,90],[-5,35],[3,48],[11,71],[0,37],[-4,36],[-16,26],[-20,25],[-55,60],[-52,70],[-79,70],[-12,32],[2,85],[4,36],[-3,67],[-22,24],[-44,10],[-46,41],[-45,26],[-20,53],[-36,48],[-38,-6],[-36,25],[-6,67],[-4,60],[-8,109],[-29,103],[-21,63],[-12,38],[-15,53],[-9,14],[-15,2],[-51,-4],[-63,-4],[-38,7],[-38,19],[-21,-12],[-5,-9],[-3,-10],[3,-15],[1,-9],[-8,-13],[-20,-8],[-14,-7],[-15,-1],[-8,-12],[-2,-14],[6,-74],[-9,-73],[-19,-70],[-19,-57],[-20,7],[-47,50],[-41,10],[-9,-64],[-17,-60],[-61,6],[-40,13],[-30,-57],[-59,15],[-48,-19],[-46,-15],[0,-58],[0,-47],[-26,-28],[-25,-28],[-44,-84],[-36,-79],[-27,-54],[-84,-29],[-55,-6],[-31,-41],[-50,-67],[-28,-56],[-21,-32],[7,-55],[-16,-30],[-7,-71],[28,-46],[5,-70],[1,-66],[3,-69],[0,-46],[31,-103],[11,-57],[-3,-71],[-4,-63],[-3,-58],[-19,-51],[-45,-12],[-41,-26],[-12,-34],[2,-30],[12,-8],[19,27],[14,11],[22,-11],[13,-30],[7,-23],[21,-18],[58,-13],[34,22],[67,-19],[69,-2],[210,-72],[52,14],[27,-33],[40,-24],[43,25],[53,-10],[38,-24],[42,-23],[14,-68],[27,-20],[13,-29],[-7,-74],[-20,-46],[-28,-46],[-24,-30],[-16,-37],[7,-32],[38,3],[29,-15],[10,-32],[36,-19],[26,-11],[4,-23],[-21,-26],[-38,0],[-31,-9],[-13,-21],[13,-36],[-13,-32],[-68,-58],[-28,-34],[-20,-21],[-34,-6],[-24,-24],[-10,-36],[11,-19],[-25,-49],[-3,-30],[43,-13],[0,-36],[-16,-43],[-47,-21],[-42,2],[-31,-17],[-42,-74],[-38,-51],[-34,-28],[-31,1],[-26,1],[-19,-34],[-32,-30],[-36,-19],[-23,-2],[-24,-36],[-52,31],[-5,0],[-18,-2],[-36,-12],[-31,-60],[-32,-64],[5,-70],[-23,-62],[-8,-57],[24,-43],[19,-19],[15,-43],[16,-64],[-19,-76],[-33,-113],[-44,-83],[-25,-60],[-36,-29],[-40,-5],[-57,-34],[-28,-17],[-27,-39],[-12,-68],[-2,-6],[-10,-51],[-35,-76],[-52,-112],[-7,-6],[-55,-51],[-26,-43],[-16,-13],[-32,-2],[-25,-55],[-23,-32],[-17,-28],[-22,-25],[-43,-9],[-24,-12],[-14,-43],[-35,-56],[-26,-38],[-36,-17],[-23,-34],[-15,-34],[19,-17],[-1,-30],[-17,-19],[-25,21],[-32,33],[-25,-29],[-34,20],[-14,-15],[-10,-39],[-41,-19],[-41,-4],[-29,2],[-30,2],[-11,-22],[-10,-23],[7,-66],[42,-142],[57,-209],[21,-47],[34,-23],[33,14],[19,-12],[18,-26],[19,-45],[5,-51],[19,-19],[55,-40],[38,-28],[24,-23],[21,-49],[23,-41],[15,-43],[13,-72],[10,-64],[-4,-40],[-30,-24],[-41,2],[-49,-19],[-48,-74],[-63,-75],[-39,-40],[-61,-17],[-38,-1],[-27,-33],[-45,-32],[-24,-26],[-23,-32],[-35,-8],[-19,-29],[-3,-6],[-29,0],[-15,27],[12,36],[-2,17],[7,18],[21,14],[14,33],[25,34],[-8,24],[-11,22],[-12,1],[-31,-34],[-24,-12],[-22,10],[-21,-27],[-8,-11],[9,-26],[0,-49],[6,-32],[-10,-32],[-27,-22],[-24,1],[-28,-15],[-13,-19],[-16,4],[-2,19],[18,32],[1,16],[-11,6],[-14,0],[-10,18],[-12,-5],[-4,-16],[-29,-17],[-16,-15],[-18,5],[-18,5],[-3,-22],[1,-25],[16,-24],[12,-26],[-1,-24],[-18,-38],[-69,-110],[-45,0],[-31,-9],[-15,5],[-14,4],[-18,-52],[-45,-18],[-47,-11],[3,-36],[-16,-30],[-62,-20],[-2,-43],[-13,-56],[-15,-50],[9,-49],[1,-61],[20,-41],[46,2],[57,-22],[15,-66],[43,-88],[15,-115],[27,-29],[6,-74],[-3,-75],[-22,-38],[-42,-95],[-11,-31],[-9,-66],[-16,-56],[-43,-41],[-44,-2],[-30,-18],[-30,-32],[-79,-88],[-47,-59],[-43,-33],[-1,-45],[-20,-27],[-31,11],[-40,-30],[-23,-27],[-21,-57],[-21,-26],[-67,-32],[-51,-31],[-34,-20],[-51,-10],[-61,-40],[-54,-20],[-15,-73],[10,-38],[-19,-45],[-49,-2],[-5,-2],[-66,-19],[-46,-24],[-30,-28],[-30,-29],[-58,-74],[-30,-57],[-35,-66],[-29,-65],[-41,-29],[0,-25],[42,-45],[13,-90],[-4,-102],[-180,-397],[-123,-178],[-291,-422],[-215,-563],[-40,-148],[-144,-538],[-36,-253],[-60,-104],[-41,-89],[-5,-10],[-527,-1136],[-479,-604],[-134,6],[-52,3],[-173,9],[-185,293],[-85,727],[-91,306],[-186,632],[-224,452],[-201,122],[-85,74],[-36,150],[-10,156],[-37,674],[-39,403],[-74,109],[-172,44],[-195,-82],[-102,-204],[-140,-74],[-805,-228],[-78,-22],[-41,-9],[-131,-30],[-233,84],[-127,260],[-174,129],[-142,-82],[-169,55],[-240,172],[-243,99],[-237,24],[-100,-7],[-389,-28],[-373,-95],[-323,-201],[-284,-247],[-228,-315],[-50,-161],[-13,-182],[196,-421],[278,-542],[380,-1087],[25,-229],[-39,-181],[-126,-60],[-183,-17],[-278,200],[-373,410],[-265,382],[-272,544],[-108,285],[-50,363],[-19,372],[91,256],[332,812],[196,495],[127,267],[63,229],[44,334],[70,153],[164,124],[60,42],[60,43],[122,71],[167,99],[43,62],[66,38],[62,34],[32,42],[83,43],[26,29],[12,47],[35,19],[35,2],[31,34],[83,89],[42,-2],[33,24],[24,28],[30,21],[21,-16],[31,24],[11,32],[43,32],[30,5],[20,47],[13,25],[69,14],[39,70],[-15,74],[27,73],[-3,77],[32,40],[31,-30],[27,12],[37,49],[8,53],[23,45],[23,26],[13,58],[37,73],[44,6],[19,19],[3,38],[-21,25],[2,22],[-45,23],[-8,32],[6,49],[15,62],[30,52],[27,44],[21,12],[14,18],[40,80],[17,19],[18,13],[16,0],[16,16],[14,15],[11,4],[7,28],[-8,28],[-14,33],[-32,48],[-28,14],[-19,20],[-2,22],[8,19],[3,30],[6,33],[18,52],[13,8],[5,27],[10,25],[8,16],[16,7],[17,16],[31,82],[-4,2],[-4,2],[-36,5],[-14,-7],[-8,-4],[-3,-2],[-4,-2],[-29,-25],[-14,-19],[-10,-14],[-46,-40],[-46,-35],[-43,-28],[-33,-19],[-38,-16],[-40,-18],[-39,-2],[-45,-1],[-103,9],[-35,3],[-34,3],[-32,5],[-27,20],[-42,40],[-44,63],[-22,45],[-26,45],[-21,37],[-21,21],[-21,35],[-24,20],[-35,-1],[-49,-25],[-37,-14],[-55,-22],[-22,5],[-15,23],[-8,38],[5,19],[14,28],[5,26],[-7,38],[-7,42],[-11,29],[-17,10],[-40,14],[-12,27],[2,27],[13,16],[26,5],[20,24],[6,32],[-5,39],[-16,41],[-8,35],[4,35],[-10,26],[-29,35],[-69,72],[-37,49],[-29,39],[-13,28],[-9,26],[-15,39],[-7,24],[-6,41],[-5,16],[-4,16],[-25,61],[-29,59],[-22,35],[-34,33],[-41,27],[-49,4],[-30,20],[-22,28],[-16,12],[-24,18],[-20,4],[-21,-13],[-17,-26],[-31,-22],[-28,10],[-27,15],[-33,25],[-20,-4],[-25,-16],[-31,-5],[-32,-9],[-51,-56],[-58,-69],[-65,-77],[-41,-71],[-10,-22],[-9,-23],[-2,-39],[-5,-48],[3,-45],[-1,-41],[-8,-41],[-21,-47],[-24,-75],[-5,-47],[-11,-57],[-23,-62],[-36,-48],[-39,-48],[-54,-35],[-30,0],[-30,0],[-94,23],[-142,19],[-65,3],[-33,11],[-37,35],[-36,51],[-50,107],[-143,393],[-121,340],[-39,83],[-41,48],[-56,63],[-56,58],[-93,70],[-63,35],[-31,34],[-35,37],[-25,34],[-26,34],[-34,77],[-26,83],[1,65],[14,76],[-9,57],[-14,65],[11,57],[16,80],[15,64],[11,43],[-18,43],[-35,29],[-40,16],[-24,34],[-18,26],[-29,6],[-21,21],[-8,36],[-2,29],[3,29],[7,16],[17,8],[19,16],[4,19],[-3,25],[-23,7],[-24,17],[-29,1],[-32,-1],[-34,31],[-19,40],[-17,34],[-60,73],[-53,51],[-54,33],[-29,20],[-27,35],[-36,83],[-26,43],[-34,27],[-42,23],[-74,30],[-84,5],[-33,32],[-22,30],[-18,40],[-8,31],[-8,31],[-7,33],[-8,24],[-12,17],[-15,22],[-14,37],[-9,42],[-4,16],[-5,17],[-26,17],[-12,-1],[-11,-2],[-25,-24],[-26,-18],[-23,-1],[-29,10],[-13,0],[-14,0],[-18,1],[-16,-18],[-19,8],[-29,35],[-22,36],[-5,33],[3,47],[11,30],[16,21],[31,38],[6,32],[-5,47],[-13,106],[-13,92],[9,74],[0,45],[-4,69],[-15,76],[-11,65],[-10,51],[-15,56],[-9,36],[-15,19],[-29,4],[-48,-11],[-32,13],[-22,15],[-23,3],[-11,2],[-11,1],[-15,-2],[-15,-2],[-16,-8],[-13,-18],[-5,-31],[-7,-41],[-17,-20],[-21,-4],[-26,15],[-28,18],[-26,8],[-25,-5],[-18,-24],[-7,-23],[-10,-7],[-9,-6],[-19,16],[-16,18],[-37,48],[-34,38],[-39,35],[-42,12],[-43,12],[-57,45],[-25,55],[-25,28],[-25,28],[-17,23],[-17,23],[-40,38],[-25,43],[-12,41],[0,79],[-15,62],[-35,65],[-39,91],[-15,105],[20,127],[3,115],[-11,107],[-34,77],[-49,20],[-39,-25],[-70,-95],[-54,-100],[-28,-52],[-97,-143],[-71,-68],[-140,-86],[-123,-59],[-84,-82],[-30,-90],[3,-154],[6,-159],[-21,-155],[-27,-158],[-63,-160],[-103,-185],[-104,-305],[-104,-305],[-28,-62],[-45,-49],[-65,-32],[-63,0],[-57,16],[-78,27],[-56,-1],[-62,-16],[-37,-28],[-39,-60],[-34,-13],[-32,8],[-33,8],[-50,16],[-33,-8],[-27,-45],[-15,-43],[-2,-49],[6,-49],[28,-77],[-2,-57],[-14,-49],[-25,-33],[-31,-20],[-52,-12],[-92,12],[-39,-15],[-20,-26],[-17,-22],[-29,-2],[-27,1],[-47,13],[-45,-6],[-93,-28],[-43,8],[-40,23],[-41,35],[-33,28],[-45,17],[-34,3],[-25,3],[-56,-19],[-19,-6],[-20,-21],[-17,-24],[-8,-21],[-7,-32],[-6,-27],[-1,-23],[-3,-22],[-8,-15],[-17,-9],[-17,-8],[-19,-6],[-34,0],[-44,8],[-37,15],[-35,22],[-34,12],[-37,6],[-60,-8],[-52,-11],[-25,5],[-47,51],[-32,22],[-31,-4],[-33,-39],[-18,-12],[-21,14],[-25,37],[-19,18],[-23,-10],[-8,-36],[-7,-43],[-10,-3],[-17,-5],[-39,51],[-39,18],[-32,22],[-40,37],[-60,76],[-52,73],[-41,65],[-65,70],[-55,40],[-66,13],[-85,-2],[-44,8],[-69,30],[-51,51],[-218,322],[-838,1318],[-120,204],[-28,155],[-34,147],[-14,175],[-8,122],[-13,92],[-5,61],[9,112],[-7,90],[-18,127],[-9,89],[-3,57],[16,72],[1,59],[-9,53],[-17,102],[-12,63],[-3,81],[-31,-21],[-40,-1],[-37,-23],[-12,1],[-35,11],[-12,1],[-11,-7],[-19,-16],[-1,-27],[-9,-9],[-18,13],[-16,22],[-15,7],[-9,-1],[-4,0],[-7,-12],[-3,-11],[-4,-32],[-9,0],[-4,-10],[-4,-29],[-11,-4],[-7,-17],[-30,0],[-21,-19],[-33,31],[-17,12],[-19,22],[-31,4],[-17,-26],[-20,-25],[-17,-46],[-20,-49],[-30,-62],[-19,-73],[-58,-130],[-70,-137],[-26,-67],[-11,-64],[9,-71],[21,-51],[47,-60],[-10,-55],[-20,-62],[-50,-52],[-60,-31],[-30,-24],[-11,-58],[21,-104],[20,-103],[-20,-72],[-41,-104],[-25,-75],[9,-100],[-3,-90],[-22,-89],[-55,-42],[-69,-10],[-64,-14],[-21,-68],[-49,-63],[-51,-24],[-43,-58],[-11,-80],[-16,-127],[-25,-83],[-57,-112],[-39,-81],[-20,-92],[-4,-68],[12,-55],[-9,-48],[-32,-60],[-64,-65],[-73,-90],[-59,-89],[-41,-49],[-44,-70],[-36,-65],[-45,-100],[-61,-171],[-59,-194],[-32,-151],[-58,-226],[-57,-269],[-41,-153],[-47,-139],[-8,-120],[12,-63],[36,-68],[73,-96],[48,-75],[16,-43],[39,-139],[31,-95],[26,-58],[14,-40],[-5,-49],[-28,-64],[-50,-114],[-53,-87],[-24,-37],[-32,-16],[-43,-11],[-6,-105],[-14,-92],[-10,-57],[-30,-54],[-18,-27],[-8,-42],[3,-49],[-17,-35],[-28,-26],[-20,-153],[-42,-100],[-37,-53],[-44,-13],[-34,-46],[-8,-48],[-28,-64],[-23,-57],[-28,-22],[-22,-37],[-14,-27],[-9,-41],[-30,-47],[-33,-46],[-35,-51],[-43,-58],[-13,-40],[-4,-80],[-24,-55],[-19,-77],[-27,-80],[-27,-69],[-25,-94],[-27,-88],[-24,-87],[-33,-115],[-20,-83],[2,-49],[27,-88],[18,-77],[-1,-58],[-13,-51],[-39,-38],[-21,-35],[-15,-37],[6,-118],[24,-90],[26,-73],[20,-114],[21,-216],[7,-103],[-6,-30],[-3,-14],[-3,-15],[-31,-1],[-117,91],[-585,368],[-89,-24],[-71,3],[-79,62],[-53,100],[-52,155],[-71,128],[-50,43],[-51,43],[-150,75],[-153,73],[-183,14],[-33,-12],[-102,-33],[-105,-76],[-48,-21],[-57,35],[-70,113],[-131,231],[-116,221],[-48,151],[7,72],[57,114],[13,87],[10,65],[-7,141],[-7,176],[-62,757],[71,307],[14,110],[-30,72],[-52,86],[-89,80],[-146,130],[-162,124],[-74,83],[-105,131],[-187,241],[-77,124],[-47,74],[-47,74],[-43,118],[-19,99],[-11,131],[0,320],[24,117],[15,79],[2,9],[0,2],[1,1],[0,2],[1,2],[0,1],[0,1],[1,6],[20,98],[0,3],[1,2],[1,3],[0,3],[0,2],[1,2],[0,1],[1,3],[0,4],[1,2],[1,3],[0,2],[1,5],[0,3],[2,8],[18,109],[6,109],[-10,106],[-32,81],[-126,158],[-233,182],[-944,513],[-57,-18],[-31,-68],[-2,-58],[4,-73],[25,-100],[18,-116],[-15,-173],[-64,-256],[-66,-151],[-7,-75],[-3,-31],[-33,-72],[-73,-85],[-66,-143],[-35,-175],[-24,-109],[-34,-42],[-46,-67],[-38,-139],[-38,-172],[-58,-152],[-123,-182],[-162,-200],[-157,-172],[-162,-118],[-175,-58],[-168,-16],[-16,-2],[-446,-519],[-92,-107],[-37,-20],[-37,-20],[-87,9],[-118,58],[-56,21],[-81,-42],[-82,-31],[-50,-9],[-32,9],[-16,34],[-8,30],[-7,24],[-20,2],[-35,10],[-23,26],[-8,27],[-5,40],[-27,34],[-24,25],[-11,31],[-9,41],[-1,50],[17,64],[-1,27],[-9,18],[-14,18],[-33,-12],[-21,-3],[-21,11],[-19,41],[-17,34],[-16,5],[-8,-14],[-25,-10],[-17,3],[-19,7],[-17,16],[-10,36],[-9,46],[0,34],[0,35],[-6,29],[-16,19],[-14,18],[-46,31],[-36,29],[-26,27],[-16,50],[-25,41],[-21,13],[-60,23],[-48,30],[-43,25],[-31,32],[-17,37],[-18,36],[-22,65],[-25,81],[-14,53],[-10,65],[-9,36],[-22,27],[-49,15],[-72,9],[-42,22],[-26,25],[-13,32],[5,32],[19,24],[18,36],[1,34],[-17,19],[-38,29],[-44,44],[-42,41],[-41,44],[-47,100],[-1179,2616],[-71,72],[-78,-34],[-150,-215],[-113,-291],[-138,-154],[-134,-82],[-161,-1],[-184,-2],[-150,-63],[-180,-218],[-112,-137],[-97,-35],[-96,15],[-141,39],[-154,35],[-134,-56],[-284,-273],[-131,-104],[-135,-38],[-198,-9],[-1,0],[-122,0],[-3,1],[-141,51],[-312,184],[-449,256],[-94,20],[-123,-10],[-199,-58],[-7,1],[-77,9],[-93,42],[-218,154],[-7,7],[-41,41],[-48,48],[-64,108],[-345,579],[-12,14],[-117,136],[-120,76],[-267,115],[-41,30],[-41,29],[-45,75],[-61,184],[-66,197],[196,284],[59,540],[155,265],[269,25],[-48,337],[-314,1143],[120,1185],[-5,114],[-58,333],[-99,278],[-217,328],[-213,661],[-100,1701],[157,1196],[452,844],[359,290],[241,359],[6,1301],[-170,1038],[205,1762],[-105,417],[-71,524],[42,438],[241,578],[41,632],[-27,319],[-438,769],[-248,679],[-569,569],[-130,452],[-232,170],[-221,-453],[-211,-1206],[-144,-75],[-346,496],[-1002,595],[-406,-205],[-272,3],[-276,175],[-543,1268],[-348,-240],[-741,-778],[-524,-186],[-692,-1306],[-613,-762],[-488,-721],[-297,-122],[-340,61],[-283,452],[-78,545],[79,608],[240,845],[119,2912],[221,1003],[339,755],[841,705],[430,693],[0,14],[8,240],[-283,759],[-68,98],[-1300,1362],[-265,321],[-337,541],[-256,665],[-62,880],[-209,344],[-139,148],[-346,59],[-603,373],[-366,62],[-382,846],[-31,138],[28,363],[-206,269],[-156,102],[-201,250],[-408,6],[-261,242],[-178,-52],[-95,47],[-171,53],[-167,-24],[-139,-45],[-4,-2],[-20,9],[-120,327],[-40,784],[-407,782],[-210,402],[-161,311],[-180,66],[-96,35],[-5,11],[-22,45],[-57,124],[-89,5],[-50,-48],[-57,-81],[-57,-81],[-32,-39],[-78,-31],[-180,-73],[-207,-205],[-70,-70],[-56,23],[-102,112],[-151,107],[-82,29],[-66,-15],[-76,-86],[-54,-38],[-94,38],[-73,67],[-27,5],[-27,5],[-49,-59],[-84,1],[-69,-23],[-57,-62],[-57,-34],[-104,-24],[-79,-47],[-92,-67],[-82,-124],[-38,-186],[-34,-49],[-51,-75],[-111,-67],[-177,-71],[-152,28],[-132,53],[-98,43],[-67,24],[-44,-48],[-104,-219],[-60,-139],[-67,-87],[-294,272],[-12,417],[-12,414],[-5,170],[-190,334],[37,244],[529,-127],[395,303],[-4,111],[-15,389],[-236,634],[-118,319],[-10,212],[14,69],[25,123],[35,87],[48,117],[6,35],[184,491],[300,277],[277,256],[119,286],[61,146],[-207,174],[-62,290],[0,755],[-144,615],[-184,784],[-19,82],[-721,-30],[-75,42],[-241,135],[-5,36],[-15,74],[-16,56],[-28,30],[-35,21],[-52,10],[-94,2],[-106,-2],[-98,-5],[-102,-30],[-53,-13],[-20,8],[-27,23],[-25,9],[-27,-11],[-38,-28],[-37,-48],[-27,-27],[-27,-28],[-15,-15],[-23,-2],[-18,25],[-22,95],[-2,9],[-31,80],[-26,68],[-11,24],[-17,26],[-36,35],[-31,38],[-23,21],[-55,170],[5,34],[21,67],[11,64],[0,67],[-3,58],[-13,56],[-13,63],[-14,58],[-24,80],[-23,80],[-17,61],[-25,65],[-23,70],[-6,34],[-29,1163],[-28,101],[-91,331],[-45,165],[-212,73],[-10,7],[-29,41],[-19,30],[-21,23],[-17,20],[-28,18],[-27,12],[-27,-5],[-20,-6],[-19,142],[316,1482],[35,164],[-50,228],[-110,496],[-37,168],[-12,54],[82,420],[221,705],[275,414],[10,80],[13,36],[-6,17],[-9,23],[-5,51],[17,36],[-2,44],[4,68],[-1,50],[-17,81],[-36,84],[-22,41],[-22,40],[-10,45],[12,46],[26,50],[31,17],[59,2],[90,-39],[101,-22],[140,-3],[208,13],[106,-3],[76,13],[106,939],[-152,395],[-18,47],[-237,169],[-10,7],[29,896],[-70,258],[-396,355],[-15,5],[-9,-2],[-9,-6],[-40,-24],[-24,-15],[-2,0],[-52,-29],[-36,-10],[-36,-10],[-75,5],[-40,7],[-45,35],[-51,71],[-46,97],[-41,39],[-18,37],[-19,47],[10,143],[-2,91],[-16,52],[-40,254],[-24,239],[-21,167],[3,225],[-5,117],[-14,299],[-12,52],[-33,42],[-21,76],[-46,116],[-29,50],[-30,27],[-50,5],[-53,42],[-29,44],[-10,45],[141,120],[134,874],[21,70],[16,99],[12,91],[-6,49],[-33,148],[-13,58],[-17,205],[12,80],[-36,198],[-26,177],[-7,44],[-7,44],[-52,74],[-75,19],[-40,-4],[-7,12],[-274,69],[-689,753],[-39,213],[20,855],[-295,647],[-198,760],[148,335],[-23,377],[0,1],[9,56],[-4,42],[-2,24],[-7,64],[-26,64],[-5,60],[-23,29],[-39,-7],[-78,12],[-98,32],[-43,46],[-23,105],[-34,88],[-41,18],[-13,46],[-3,79],[3,84],[-28,74],[-160,249],[-56,86],[-22,60],[-2,7],[-11,54],[-46,79],[-92,66],[89,687],[11,21],[25,49],[1,25],[-26,45],[-52,32],[-41,127],[-98,134],[-249,344],[-630,867],[-124,263],[13,76],[18,84],[-25,32],[-24,32],[-98,23],[-545,1163],[-115,98],[-38,63],[-2,4],[-105,183],[-94,34],[-105,54],[-117,62],[-105,91],[-39,124],[-38,117],[-158,173],[-82,60],[-46,-3],[-14,30],[-83,50],[-1,2],[-60,99],[-143,152],[-130,39],[-128,45],[-98,19],[-29,0],[-332,201],[-1,1],[-107,84],[-53,43],[-270,647],[-22,114],[-68,163],[-41,36],[-146,349],[-225,11],[-739,1001],[-204,-90],[-524,-232],[-648,-286],[-2408,525],[-326,234],[-710,970],[-631,376],[-405,662],[-96,157],[-73,121],[-1004,251],[-1335,82],[-955,-257],[-688,42],[-1552,573],[-103,147],[-84,61],[-167,118],[-105,124],[-3,148],[-20,92],[-19,90],[-89,108],[-50,29],[-144,207],[-268,-36],[-193,-27],[-355,-180],[-78,-170],[-86,-157],[-105,-123],[-149,-144],[-147,-118],[-65,19],[-29,79],[-4,197],[-6,301],[16,171],[10,105],[69,262],[91,172],[59,10],[59,10],[228,20],[183,177],[164,197],[150,286],[157,395],[85,414],[0,1368],[68,372],[135,252],[35,45],[148,194],[202,323],[226,130],[376,136],[320,98],[168,194],[248,175],[257,204],[255,286],[236,502],[98,208],[46,169],[117,8],[229,-276],[400,-179],[374,-80],[354,59],[100,85],[99,85],[112,223],[319,524],[45,73],[838,817],[340,183],[272,23],[257,-142],[275,-281],[160,-108],[132,-24],[178,132],[141,143],[342,672],[204,240],[143,188],[174,197],[197,155],[741,585],[317,143],[533,69],[455,72],[12,2],[183,34],[160,104],[69,62],[54,49],[397,357],[134,69],[106,57],[126,61],[96,55],[69,39],[51,52],[65,118],[33,42],[81,2],[574,-140],[611,-150],[567,-99],[635,-142],[241,29],[275,143],[297,197],[350,379],[264,375],[399,779],[174,519],[90,266],[141,310],[268,325],[504,454],[425,562],[368,700],[269,511],[128,176],[153,141],[213,163],[188,145],[256,186],[272,169],[137,38],[147,-21],[144,-34],[183,-97],[128,-65],[149,-87],[114,-58],[225,-138],[1357,-1243],[874,-835],[393,-525],[316,-428],[201,-159],[220,-110],[162,10],[170,72],[177,114],[200,142],[115,34],[160,-131],[357,-338],[481,-436],[951,-420],[408,-97],[128,7],[197,118],[647,437],[135,25],[206,-48],[119,-83],[87,-186],[27,-187],[35,-317],[112,-166],[146,-111],[220,-55],[813,-184],[102,-23],[870,-214],[266,-44],[118,10],[119,124],[304,480],[60,78],[39,49],[82,62],[138,7],[224,-172],[825,-726],[168,-110],[187,-20],[149,90],[26,28],[649,676],[133,69],[151,-21],[43,-31],[99,-73],[169,-193],[119,-297],[65,-349],[297,-1867],[91,-131],[69,-34],[187,-70],[110,7],[109,6]],[[87923,397816],[28,13],[16,13],[17,23],[63,27],[58,19],[79,36],[29,9],[29,9],[23,10],[14,16],[29,16],[20,1],[5,16],[31,5],[42,8],[37,29],[24,10],[24,10],[76,70],[30,37],[25,44],[16,49],[17,55],[8,14],[15,10],[16,10],[15,22],[8,39],[15,30],[85,93],[52,37],[37,47],[64,53],[47,52],[40,45],[25,23],[42,4],[35,38],[18,0],[12,-26],[22,4],[17,20],[11,16],[36,8],[34,-21],[43,8],[37,-19],[17,-5],[9,-3],[21,8],[14,10],[67,-11],[92,-13],[42,-18],[49,-42],[66,-43],[59,-46],[28,-37],[41,-17],[41,-17],[31,-15],[64,-32],[64,-42],[96,-65],[42,-14],[42,-14],[47,-9],[40,11],[42,35],[40,9],[145,-19],[108,-23],[36,-7],[23,11],[33,33],[77,170],[48,151],[11,42],[9,54],[-3,79],[10,87],[13,44],[12,39],[4,38],[5,47],[50,124],[22,50],[31,42],[8,23],[9,23],[7,63],[7,73],[3,8],[37,103],[-37,-14],[-5,101],[11,101],[13,43],[37,143],[17,86],[101,589],[35,150],[1,5],[0,4],[4,44],[16,210],[7,90],[0,6],[5,34],[68,23],[56,4],[47,13],[33,27],[44,39],[38,31],[45,11],[54,16],[29,42],[32,97],[30,65],[32,69],[45,65],[6,8],[53,81],[49,60],[69,94],[17,16],[24,16],[59,6],[48,18],[2,1],[27,-1],[27,-1],[18,7],[58,24],[120,42],[109,77],[49,34],[62,44],[1,0],[41,41],[29,48],[22,18],[0,41],[-3,16],[15,3],[29,16],[20,47],[12,56],[18,60],[33,50],[16,94],[38,197],[89,98],[9,38],[21,24],[28,15],[86,-4],[57,2],[28,-14],[28,-15],[57,-3],[44,-33],[70,-5],[28,-12],[32,6],[12,-15],[12,-15],[18,10],[16,5],[28,-17],[80,-24],[39,-4],[39,30],[59,95],[27,57],[18,19],[2,52],[13,33],[45,87],[21,67],[19,40],[16,40],[28,28],[42,14],[41,15],[78,19],[72,22],[31,25],[37,1],[23,44],[24,17],[18,55],[30,34],[50,52],[6,4],[20,15],[128,132],[38,39],[14,27],[-10,18],[-9,18],[9,44],[27,71],[42,100],[21,85],[23,77],[10,61],[11,62],[6,156],[20,10],[0,44],[6,63],[24,114],[20,118],[6,38],[69,214],[2,50],[5,28],[42,30],[37,158],[2,79],[14,65],[56,177],[34,73],[19,71],[4,37],[36,58],[60,68],[80,123],[63,123],[46,105],[84,165],[36,69],[14,13],[23,7],[12,-8],[13,-7],[36,-8],[30,-21],[38,-42],[28,-33],[43,-34],[57,-54],[32,-41],[8,-29],[9,-29],[16,-71],[34,-7],[23,15],[68,40],[39,46],[26,43],[24,82],[8,46],[6,66],[-10,66],[67,239],[26,9],[82,75],[33,-6],[26,13],[42,29],[161,215],[42,72],[20,43],[38,20],[39,9],[40,-27],[28,-30],[45,-11],[50,1],[66,-3],[61,9],[27,-2],[8,7],[8,7],[7,15],[6,24],[17,25],[19,19],[14,16],[20,61],[13,21],[8,10],[9,2],[22,3],[13,11],[16,30],[19,38],[18,26],[19,18],[21,12],[30,5],[59,66],[27,27],[34,9],[37,-2],[26,-25],[40,-59],[21,-30],[19,-34],[7,-23],[1,-1],[7,-22],[2,-36],[19,-113],[12,-40],[25,-26],[28,-27],[36,-25],[82,15],[34,-22],[65,-19],[142,-17],[7,-1],[135,-21],[55,-3],[42,3],[27,10],[30,32],[20,66],[16,67],[31,39],[15,50],[8,68],[11,53],[16,56],[26,15],[40,42],[35,59],[58,76],[42,49],[20,11],[28,12],[40,-6],[1,0],[6,0],[49,2],[74,1],[26,13],[55,79],[20,37],[80,79],[41,26],[42,4],[335,252],[60,30],[44,9],[50,2],[8,1],[30,3],[30,4],[38,10],[26,2],[56,4],[11,12],[11,11],[35,86],[51,151],[71,150],[31,57],[88,93],[135,275],[72,28],[90,33],[15,81],[-29,97],[-6,117],[-41,92],[-44,184],[28,83],[569,288],[377,118],[70,87],[70,130],[9,156],[24,240],[-12,66],[76,151],[113,94],[82,31],[60,-2],[60,-1],[119,-3],[205,157],[205,158],[59,66],[107,48],[111,30],[95,112],[100,116],[76,134],[90,103],[138,-5],[83,-29],[89,-66],[144,-50],[72,39],[27,128],[8,167],[-69,345],[15,91],[50,120],[70,131],[43,128],[3,119],[57,139],[111,268],[48,161],[48,72],[46,100],[62,62],[41,-14],[34,-31],[57,67],[38,103],[48,69],[63,39],[255,-201],[90,-66],[387,-139],[39,-14],[9,23],[1,3],[10,27],[4,125],[-39,198],[-30,181],[-36,169],[22,234],[-41,156],[-1,8],[-6,95],[489,370],[101,253],[290,504],[14,0],[45,3],[64,-28],[30,-30],[4,-4],[114,-2],[173,80],[203,120],[15,147],[46,142],[299,518],[152,221],[176,101],[290,146],[243,122],[65,-9],[12,-20],[12,-20],[19,-99],[20,-100],[23,-72],[39,-103],[26,-67],[24,-64],[15,-61],[42,-34],[61,-5],[48,-23],[68,-38],[68,-34],[83,14],[33,52],[32,51],[79,44],[342,17],[289,145],[78,97],[12,142],[-36,114],[-189,100],[-272,454],[-30,81],[-5,61],[-4,61],[-207,348],[-57,-42],[-68,31],[-26,58],[44,623],[232,372],[45,37],[39,25],[64,-11],[295,34],[174,372],[72,212],[136,320],[76,119],[3,144],[-70,146],[-50,61],[-36,184],[-133,58],[-50,34],[2,111],[-256,440],[-47,75],[-66,0],[-140,-3],[-102,-36],[-112,94],[-19,181],[47,242],[51,223],[63,175],[23,76],[23,77],[50,95],[134,41],[115,248],[68,100],[65,70],[-2,86],[37,64],[16,97],[0,106],[172,47],[75,-194],[61,13],[132,210],[93,49],[92,14],[61,120],[48,128],[-37,151],[-64,27],[-52,-25],[-33,-70],[-177,-33],[-31,114],[24,100],[169,239],[22,24],[65,74],[57,122],[59,203],[7,120],[61,465],[120,136],[74,30],[83,6],[46,-25],[150,39],[77,-8],[107,-87],[66,-97],[54,-89],[101,-25],[85,3],[92,-48],[50,-39],[96,-39],[55,59],[6,131],[-37,359],[57,25],[122,-62],[63,-167],[29,-147],[67,-72],[68,-28],[79,17],[74,2],[81,17],[89,78],[79,203],[24,56],[66,8],[96,100],[90,299],[67,157],[59,10],[59,10],[160,-66],[183,-70],[113,-95],[66,-103],[30,-146],[14,-171],[493,422],[398,434],[286,45],[422,-351],[158,-393],[-135,-430],[383,40],[135,238],[134,239],[69,267],[-9,595],[343,552],[172,276],[171,276],[239,-14],[10266,-5514],[243,-1073],[254,-729],[402,-282],[202,-484],[263,592],[438,985],[193,332],[711,213],[142,-11],[86,-60],[55,-35],[31,-132],[20,-41],[17,-229],[12,-37],[37,-8],[104,90],[110,87],[78,35],[98,29],[49,-3],[72,-45],[79,-116],[31,-27],[55,-21],[42,16],[37,63],[47,90],[39,90],[12,72],[10,92],[18,96],[54,126],[39,93],[70,67],[72,79],[37,58],[37,59],[45,100],[29,87],[8,101],[-4,52],[-35,61],[-31,75],[-53,140],[-73,249],[-76,206],[-75,170],[-19,93],[7,112],[12,46],[93,61],[175,164],[9,8],[5,6],[9,8],[4,3],[49,47],[70,29],[108,-12],[94,-12],[155,29],[87,29],[88,82],[54,35],[36,30],[35,66],[31,84],[38,206],[23,72],[48,55],[47,29],[47,24],[51,11],[25,-8],[12,-212],[17,-33],[26,-13],[38,-7],[56,-2],[47,18],[152,276],[48,123],[106,181],[91,132],[67,109],[40,55],[47,-8],[62,-13],[64,30],[80,81],[52,130],[65,85],[49,37],[49,2],[17,-21],[17,-21],[28,-138],[16,-55],[40,-37],[31,-104],[25,-23],[46,-30],[72,-26],[63,-13],[44,18],[40,96],[98,256],[13,43],[-6,45],[-33,82],[5,98],[11,124],[28,148],[-21,193],[-21,149],[-9,119],[7,87],[21,77],[35,38],[77,44],[9,37],[-17,29],[5,37],[29,27],[51,-3],[37,19],[32,37],[24,121],[36,69],[54,93],[42,69],[35,50],[44,37],[24,8],[23,8],[43,-8],[108,-111],[64,-42],[45,-6],[63,8],[60,13],[46,8],[38,-24],[35,-23],[4,-98],[-41,-74],[-24,-270],[17,-40],[21,-40],[21,-40],[64,-55],[52,53],[49,84],[41,45],[44,11],[36,-16],[39,-24],[47,-58],[67,-85],[37,-63],[39,-93],[96,-356],[5,-36],[-6,-29],[17,-71],[35,-103],[26,-40],[42,-24],[51,0],[60,27],[196,164],[79,90],[50,50],[50,11],[43,-6],[36,-26],[18,-64],[21,-129],[17,-80],[22,-76],[33,-75],[161,-188],[254,-229],[34,-34],[40,-36],[44,-2],[81,31],[107,53],[63,45],[16,53],[0,90],[-36,95],[-10,62],[20,47],[24,35],[34,2],[79,-10],[53,9],[54,25],[81,2],[63,24],[70,51],[51,63],[103,90],[119,72],[78,77],[21,29],[47,103],[88,193],[80,122],[64,82],[84,66],[54,50],[69,40],[80,13],[134,14],[75,6],[92,-14],[151,-42],[89,-25],[105,-26],[146,-77],[98,-63],[100,-64],[49,-2],[18,8],[59,29],[67,84],[34,89],[10,25],[45,40],[64,21],[49,-8],[37,-29],[61,-74],[63,-101],[74,-92],[52,-80],[22,-71],[-4,-93],[-26,-93],[-11,-116],[16,-220],[14,-143],[12,-100],[-21,-80],[-1,-63],[22,-74],[-5,-58],[-25,-88],[-17,-50],[7,-48],[14,-39],[31,-21],[85,-9],[79,-26],[75,-13],[77,-14],[92,-31],[63,-37],[51,-48],[49,-32],[82,-4],[81,20],[67,40],[33,45],[54,71],[264,222],[38,54],[18,62],[49,51],[66,35],[76,45],[93,39],[98,19],[120,-19],[110,-45],[88,-66],[40,-29],[63,24],[63,-10],[43,-6],[14,-31],[21,-27],[28,10],[35,14],[81,13],[133,26],[170,43],[91,13],[65,21],[48,37],[34,79],[83,170],[70,111],[383,387],[46,46],[112,112],[54,83],[61,47],[57,43],[31,53],[35,31],[69,24],[38,-3],[41,-37],[38,-63],[35,-80],[25,-95],[23,-116],[10,-117],[6,-100],[-7,-96],[-14,-79],[-35,-82],[-43,-48],[-52,-26],[-118,-6],[-77,-21],[-54,-63],[-37,-98],[-18,-98],[-7,-76],[-2,-14],[34,-106],[9,-153],[49,-159],[50,-106],[63,-92],[52,-75],[45,-63],[18,-77],[12,-98],[2,-98],[-21,-124],[-29,-102],[-17,-52],[4,-42],[5,-43],[30,-21],[52,27],[51,15],[56,19],[27,-19],[24,-26],[30,-58],[60,-40],[74,-27],[68,14],[49,40],[35,74],[39,161],[26,117],[18,71],[24,56],[49,58],[102,77],[72,74],[132,106],[84,66],[52,21],[53,11],[46,-11],[41,-39],[3,-93],[15,-82],[30,-24],[60,-4],[35,22],[39,19],[30,-29],[59,-37],[51,-40],[53,-21],[56,13],[37,48],[28,84],[-9,117],[-14,84],[2,72],[13,50],[31,47],[43,38],[20,82],[-9,357],[23,66],[22,67],[51,23],[60,40],[32,40],[31,108],[32,315],[12,125],[21,47],[21,48],[4,79],[17,45],[49,14],[134,8],[161,-6],[91,-2],[74,-32],[65,-45],[60,-56],[47,-53],[84,-71],[55,-11],[38,19],[30,40],[40,68],[41,75],[66,90],[69,71],[66,69],[46,63],[25,43],[54,90],[67,121],[60,122],[61,90],[75,56],[76,1],[66,2],[46,42],[67,66],[47,29],[70,5],[76,-16],[51,-55],[40,21],[36,-26],[56,-24],[89,10],[42,-26],[21,-45],[24,-122],[56,-115],[79,-86],[115,-69],[80,-42],[86,-24],[51,-17],[19,-7],[71,-37],[54,8],[40,45],[55,-13],[19,32],[82,1],[64,-57],[42,-34],[44,-27],[40,11],[69,97],[20,85],[29,48],[46,76],[43,1],[28,31],[44,135],[47,114],[42,48],[50,58],[86,151],[154,191],[107,92],[142,74],[94,28],[98,29],[68,20],[42,35],[44,60],[40,95],[53,85],[123,170],[126,182],[17,56],[9,71],[-16,104],[-151,466],[-101,156],[-48,90],[-35,111],[0,127],[205,271],[318,99],[92,-382],[214,233],[335,615],[261,215],[388,-741],[136,-948],[185,150],[191,498],[878,849],[250,-172],[362,136],[466,-76],[990,259],[607,-72],[457,-438],[866,-120],[193,-323],[9,-65],[9,-65],[14,-125],[26,-230],[9,-102],[9,-102],[1,-95],[2,-14],[9,-86],[17,-85],[29,-55],[45,-15],[53,28],[45,-5],[55,15],[38,37],[32,51],[35,100],[44,101],[44,137],[46,176],[24,109],[19,119],[11,97],[19,119],[195,493],[20,51],[14,13],[282,252],[195,-248],[64,-609],[13,-71],[7,-88],[0,-50],[-27,-61],[-46,-116],[-8,-19],[-46,-116],[-17,-74],[-7,-149],[49,-682],[16,-126],[-14,-96],[-2,-31],[-2,-31],[-7,-276],[3,-87],[2,-87],[18,-124],[28,-135],[15,-47],[55,-112],[37,-87],[28,-45],[33,-16],[27,-37],[54,-87],[62,-149],[45,-151],[23,-97],[23,-122],[5,-82],[-2,-64],[-73,-185],[-42,-101],[-27,-98],[4,-60],[0,-72],[-14,-138],[-32,-148],[-46,-132],[-91,-196],[-3,-53],[3,-63],[55,-218],[108,-270],[82,-178],[141,-250],[93,-156],[49,-122],[39,-127],[10,-93],[-12,-79],[-38,-122],[-59,-96],[-68,-79],[-103,-55],[-91,-45],[-43,-43],[-21,-47],[4,-69],[28,-82],[46,-143],[29,-127],[38,-173],[22,-169],[5,-177],[2,-151],[18,-157],[22,-193],[29,-174],[19,-91],[38,-72],[32,-34],[32,-35],[56,-24]],[[620418,210628],[-1323,-191],[-592,63],[-941,418],[-663,55],[-954,-419],[-989,-18],[-845,-746],[-61,-30],[-274,-135],[-61,-30],[-199,-97],[-128,-527],[-145,-401],[-325,-551],[-263,-237],[-329,-267],[-313,-179],[-264,50],[-173,109],[-334,286],[-427,-183],[-386,-10],[-409,-191],[-248,-156],[-289,26],[-466,268],[-347,-6],[-458,-73],[-327,-120],[-1407,1007],[-118,39],[-170,-29],[-168,-49],[-120,-20],[-211,101],[-109,72],[-216,117],[-232,133],[-171,84],[-128,61],[-115,27],[-92,-54],[-135,-130],[-240,-145],[-91,-2],[-90,-2],[-111,58],[-111,58],[-195,125],[-349,246],[-195,137],[-155,48],[-115,4],[-202,-44],[-237,-45],[-289,-72],[-127,7],[-121,107],[-105,156],[-373,620],[-267,483],[-264,854],[-4,14],[-209,677],[-121,391],[-805,2604],[-171,32],[-123,-121],[-314,-450],[-294,-258],[-299,-217],[-331,-258],[-304,-121],[-441,-105],[-482,-168],[-454,-226],[-155,-137],[-128,-48],[-282,56],[-376,41],[-57,12],[-297,-22],[-220,-95],[-171,-169],[-203,-89],[-293,-72],[-115,32],[-110,64],[-80,161],[-58,222],[-256,684],[-134,101],[-155,72],[-282,49],[-171,-137],[-248,-22],[-140,67],[-108,101],[-91,155],[-218,752],[-65,396],[-163,345],[-119,162],[-127,65],[-262,47],[-130,10],[-130,11],[-128,104],[-70,173],[-80,298],[-53,113],[-70,81],[-80,64],[-130,55],[-147,12],[-248,5],[-203,-68],[-262,-177],[-242,-113],[-289,-68],[-285,-77],[-478,-52],[-117,20],[-108,-2],[-212,-135],[-88,-64],[-88,-24],[-104,24],[-123,44],[-115,73],[-128,0],[-163,-45],[-147,-96],[-424,-326],[-216,-73],[-152,-177],[-155,-89],[-405,-165],[-177,-442],[-277,-306],[-361,-290],[-128,-154],[-249,-176],[-358,-254],[-417,-191],[-234,-252],[-119,-237],[-149,-218],[-424,-294],[-176,-78],[-54,-24],[-194,-87],[-142,-125],[-105,-164],[-57,-143],[14,-439],[-65,-212],[-297,-193],[-78,-130],[-55,-160],[-92,-127],[-198,-174],[-337,-185],[-453,-205],[-347,-137],[-451,-214],[-270,-217],[-234,-370],[-171,-395],[-190,-515],[-133,-302],[-307,-350],[-256,-238],[-216,-120],[-336,-121],[-96,-26],[-142,-39],[-205,-28],[-171,-44],[-154,-7],[-171,-93],[-197,-64],[-194,-135],[-226,-150],[-151,-121],[-156,-99],[-179,-128],[-227,-200],[-245,-192],[-226,-99],[-156,-250],[-151,-170],[-73,-191],[-68,-243],[-95,-342],[-203,-384],[-226,-257],[-170,-106],[-104,-171],[-66,-100],[-153,-107],[-149,-135],[-80,-135],[9,-100],[38,-114],[123,-156],[165,-342],[123,-356],[311,-491],[108,-178],[38,-156],[-19,-185],[-61,-192],[-161,-197],[-141,-195],[-128,-98],[-184,-261],[-117,-175],[-118,-178],[-177,-157],[-101,-81],[-195,-42],[-56,-11],[-85,-29],[-231,-7],[-226,-135],[-198,-192],[-232,-235]],[[571608,198693],[-139,1037],[-82,198],[-78,147],[-79,123],[-120,156],[-72,161],[11,103],[-34,119],[-50,157],[-50,140],[-61,87],[-90,85],[-120,60],[-90,24],[-61,-126],[-50,-212],[-50,-109],[-93,-34],[-22,-106],[-89,-92],[-56,-65],[-63,48],[-55,7],[-56,-113],[-75,-38],[-90,66],[-71,-71],[-125,-155],[-150,-120],[-167,131],[-105,-174],[-109,72],[-169,-38],[-74,-106],[-227,-5],[-249,-116],[-121,87],[-173,5],[-39,-155],[-212,-45],[-333,-202],[-212,-94],[-77,-11],[-65,-5],[-55,23],[-56,34],[-47,47],[-27,74],[-18,88],[15,94],[64,75],[27,46],[5,31],[-13,41],[-18,34],[-26,31],[-41,18],[-32,-4],[-30,-19],[-29,32],[-23,37],[-1,44],[-27,25],[-18,36],[-35,65],[-29,21],[-31,24],[-41,39],[-26,29],[-50,-12],[-36,10],[-44,29],[-39,7],[-96,-72],[-47,86],[-46,86],[-376,54],[-166,58],[-304,125],[-198,97],[-291,106],[-96,125],[-31,139],[22,127],[147,122],[160,170],[22,72],[30,100],[26,196],[40,196],[51,185],[60,129],[40,84],[58,104],[58,121],[30,29],[43,19],[132,64],[140,73],[124,127],[96,175],[153,372],[57,96],[91,238],[57,208],[45,129],[106,246],[14,99],[-1,91],[9,47],[20,31],[37,28],[32,14],[56,1],[90,8],[57,29],[33,31],[32,45],[7,76],[18,145],[14,85],[10,51],[26,40],[46,64],[53,41],[36,8],[47,28],[108,102],[41,37],[72,82],[74,87],[20,43],[0,49],[8,24],[13,16],[9,10],[9,1],[24,5],[28,4],[39,24],[64,63],[75,105],[26,45],[10,40],[5,39],[5,39],[4,98],[7,160],[6,42],[14,38],[16,39],[25,53],[123,216],[32,66],[21,55],[2,7],[16,42],[11,46],[5,58],[-4,57],[-15,55],[-29,74],[-28,34],[-28,37],[-15,80],[3,68],[12,50],[13,33],[4,61],[2,64],[-8,151],[-11,121],[-14,117],[-4,33],[-11,29],[-18,22],[-21,28],[-12,28],[-9,59],[-15,53],[-10,41],[-20,33],[-22,49],[-11,26],[-14,5],[-18,7],[-29,19],[-30,49],[-22,30],[-27,23],[-6,16],[-6,19],[2,12],[5,28],[-2,27],[-8,30],[-11,7],[-24,16],[-28,23],[-40,11],[-25,9],[-38,-12],[-30,-32],[-25,-22],[-14,-43],[-26,-120],[-21,-63],[-18,-42],[-22,-44],[-25,-48],[-25,-43],[-22,-5],[-24,8],[-33,37],[-44,22],[-40,-2],[-30,-15],[-22,-34],[-43,-80],[-69,-132],[-46,-36],[-36,-10],[-35,1],[-32,-5],[-18,-3],[-6,-19],[-12,-12],[-26,2],[-22,-9],[-17,-38],[-50,-48],[-54,-27],[-59,-9],[-64,20],[-48,30],[-17,16],[-11,18],[-10,26],[-7,80],[14,116],[5,49],[5,50],[-6,25],[-32,12],[-39,7],[-30,10],[-16,19],[-25,12],[-33,4],[-25,27],[-5,28],[-6,10],[-9,3],[-12,4],[-26,28],[-34,38],[-49,38],[-18,16],[-3,25],[9,16],[118,206],[50,108],[37,100],[38,114],[4,46],[-7,35],[-15,28],[-20,22],[-39,-5],[-47,-36],[-127,-75],[-143,-68],[-101,-38],[-60,3],[-35,32],[-31,40],[-18,45],[-13,54],[-22,60],[-9,50],[-22,27],[-25,-2],[-44,-30],[-61,-57],[-20,-10],[-21,10],[-26,12],[-136,62],[-65,27],[-80,38],[-45,33],[-76,76],[-11,33],[1,25],[7,39],[20,43],[38,28],[44,8],[113,0],[48,23],[27,41],[1,60],[-23,62],[-26,59],[2,68],[3,24],[24,48],[32,15],[13,38],[0,54],[10,24],[24,24],[34,62],[34,34],[67,56],[55,23],[46,9],[44,-6],[112,-6],[35,23],[22,41],[18,50],[5,48],[-3,50],[-20,289],[-1,169],[1,55],[3,45],[-9,41],[-8,24],[-16,26],[-124,84],[-28,22],[-33,22],[-21,14],[-19,23],[-12,51],[2,59],[19,31],[27,22],[33,7],[39,-15],[27,4],[20,11],[17,20],[7,25],[1,46],[-4,26],[-10,37],[-23,40],[-37,42],[-33,18],[-33,6],[-35,11],[-31,-21],[-35,-36],[-32,-7],[-41,38],[-18,1],[-21,-12],[-43,-37],[-56,-59],[-35,-10],[-36,6],[-35,25],[-35,24],[-27,28],[-15,55],[-12,56],[-7,23],[-16,15],[-45,0],[-51,17],[-33,-4],[-52,11],[-40,1],[-49,-10],[-21,-6],[-27,4],[-32,22],[-32,41],[-23,29],[-24,59],[-15,79],[-2,58],[-5,46],[-9,57],[3,23],[3,24],[-3,26],[-7,41],[-7,49],[-18,52],[-11,76],[-3,56],[6,79],[-1,38],[-14,41],[-32,77],[-7,70],[13,89],[12,71],[21,90],[30,80],[11,28],[5,29],[-2,35],[-9,56],[-7,29],[7,28],[17,22],[-8,28],[6,18],[13,17],[26,9],[16,44],[25,56],[30,84],[37,50],[52,23],[55,8],[85,15],[84,15],[108,18],[110,11],[51,8],[36,5],[49,39],[39,36],[29,50],[52,128],[39,112],[33,155],[56,305],[21,227],[6,164],[27,172],[16,79],[30,66],[36,42],[159,185],[70,102],[36,105],[17,85],[48,230],[35,61],[64,57],[79,53],[39,27],[22,24],[6,32],[-8,27],[-20,12],[-58,0],[-66,-35],[-78,-5],[-73,7],[-197,23],[-162,14],[-73,8],[-52,16],[-42,22],[-34,27],[-25,31],[-34,43],[-26,48],[-16,35],[-17,46],[-2,32],[-3,41],[0,113],[-1,51],[12,29],[30,0],[30,0],[59,26],[69,47],[82,33],[81,3],[117,-36],[97,-48],[61,-36],[59,-27],[58,-1],[44,30],[39,61],[58,21],[38,52],[65,-12],[63,-21],[40,-41],[64,1],[45,-14],[76,-23],[57,4],[33,16],[47,5],[56,28],[27,7],[24,-12],[40,-29],[40,-9],[38,14],[23,11],[50,-3],[49,-16],[20,1],[18,13],[57,6],[24,1],[18,-10],[17,-10],[41,-12],[29,1],[24,6],[9,6],[9,6],[12,-4],[17,-5],[28,-10],[20,6],[21,25],[17,23],[12,24],[11,25],[10,28],[9,28],[13,21],[13,23],[17,26],[6,29],[5,34],[-1,28],[-1,24],[-4,31],[-1,32],[-4,43],[-10,42],[-7,27],[-12,27],[-19,30],[-19,21],[-12,31],[-14,37],[-14,43],[-14,40],[-14,23],[-5,33],[-3,57],[-3,34],[-11,28],[-14,32],[-17,21],[-14,21],[-6,26],[-7,58],[-3,52],[3,37],[-8,24],[-20,30],[-28,31],[-57,32],[-58,-5],[-65,2],[-53,-21],[-47,-15],[-52,-8],[-44,-6],[-51,-9],[-33,-7],[-32,-2],[-32,18],[-27,16],[-34,20],[-23,4],[-16,18],[-60,68],[-70,78],[-23,38],[-4,27],[-27,31],[-31,20],[-32,5],[-37,-5],[-48,-14],[-55,-26],[-34,-5],[-42,8],[-43,7],[-36,-4],[-28,14],[-22,40],[-8,22],[-11,23],[-11,7],[-26,18],[-52,34],[-47,23],[-51,16],[-38,15],[-49,-1],[-48,17],[-60,23],[-44,-1],[-40,10],[-29,28],[-32,0],[-27,12],[-28,13],[-24,5],[-25,4],[-37,31],[-31,27],[-33,9],[-50,32],[-25,27],[-23,38],[-36,22],[-40,9],[-36,-3],[-27,-9],[-17,-24],[-12,-21],[-16,-18],[-29,-23],[-34,-12],[-36,-18],[-42,0],[-39,9],[-39,13],[-62,44],[-35,35],[-23,45],[-37,66],[-20,21],[-12,2],[-17,3],[-19,11],[-19,31],[-26,37],[-43,6],[-42,-6],[-69,-21],[-56,-19],[-50,-25],[-60,-30],[-12,-21],[-7,-36],[-24,-15],[-33,5],[-40,12],[-36,14],[-39,20],[-24,21],[-17,14],[-10,29],[-10,29],[-10,45],[2,50],[-12,29],[-25,15],[-23,27],[-26,1],[-40,3],[-72,3],[-12,-18],[-16,-48],[-17,-2],[-11,-11],[-10,-39],[-9,-33],[-15,-18],[-25,-9],[-14,31],[-17,16],[-31,10],[-26,-3],[-43,-5],[-29,4],[-30,4],[-30,-11],[-35,-3],[-40,1],[-37,7],[-30,9],[-25,-6],[-28,-7],[-19,-10],[-18,-21],[-6,-12],[-6,-13],[4,-174],[14,-21],[9,-15],[0,-28],[-7,-33],[-7,-11],[-6,-12],[-3,-19],[1,-42],[-18,-31],[-33,-18],[-28,-13],[-35,16],[-27,6],[-29,-15],[-19,-17],[-26,-4],[-36,6],[-40,27],[-57,5],[-43,23],[-44,7],[-20,-10],[-20,-22],[-17,-14],[-19,-2],[-16,-6],[-28,-24],[-45,-34],[-35,-24],[-21,-5],[-18,12],[-10,17],[-9,17],[-12,23],[-18,5],[-29,-7],[-15,-9],[-21,8],[-27,34],[-49,53],[-46,45],[-41,20],[-41,21],[-27,26],[-15,32],[-4,28],[-11,19],[-18,11],[-41,35],[-35,33],[-30,55],[-13,62],[0,48],[6,31],[12,16],[16,4],[14,22],[5,24],[9,29],[0,39],[-5,27],[-3,29],[7,32],[20,42],[15,22],[11,15],[10,18],[6,46],[19,92],[12,41],[5,11],[6,11],[3,10],[-2,11],[-6,17],[-6,17],[-13,15],[-18,4],[-24,6],[-47,10],[-54,6],[-39,-20],[-54,-52],[-28,-21],[-42,-13],[-48,-1],[-23,-5],[-33,-8],[-36,-6],[-29,7],[-28,16],[-47,17],[-35,11],[-36,-3],[-87,-8],[-64,-2],[-44,2],[-53,7],[-32,-8],[-12,0],[-17,-1],[-44,27],[-30,42],[-26,54],[-22,54],[-17,19],[-32,30],[-23,28],[-16,64],[-13,59],[-17,31],[-25,-17],[-28,-6],[-71,27],[-212,125],[-19,19],[-18,24],[-17,19],[-21,2],[-29,3],[-17,-12],[-15,-23],[-14,-40],[-8,-42],[-13,-29],[-19,-16],[-26,-8],[-27,-8],[-20,-3],[-23,10],[-12,19],[-2,25],[-1,23],[-6,17],[-19,6],[-21,-4],[-26,-12],[-35,0],[-30,6],[-22,7],[-23,10],[-14,12],[-6,19],[4,16],[8,27],[-8,25],[-10,16],[-19,14],[-50,3],[-36,16],[-43,28],[-19,18],[-15,22],[-29,38],[-14,21],[8,100],[1,47],[14,16],[7,20],[0,25],[-9,11],[-2,19],[11,38],[97,290],[212,479],[75,230],[55,184],[46,180],[24,150],[-2,63],[0,73],[-15,67],[-27,58],[-58,57],[-40,45],[-55,41],[-40,54],[-53,86],[-42,87],[-23,28],[-28,-1],[-29,-10],[-25,-8],[-26,13],[-23,16],[-44,50],[-20,43],[-4,90],[13,94],[9,164],[21,139],[26,122],[45,118],[64,74],[79,94],[62,73],[86,54],[104,43],[56,110],[17,68],[4,142],[-2,175],[-10,176],[4,105],[8,113],[15,99],[8,64],[45,88],[43,55],[38,38],[24,10],[70,-4],[52,-3],[71,-6],[50,7],[114,-22],[70,-12],[51,-10],[41,-17],[54,-14],[36,-11],[39,1],[44,22],[39,25],[33,38],[30,40],[23,38],[41,70],[19,53],[32,94],[33,79],[28,61],[52,78],[73,71],[34,14],[37,11],[27,10],[17,16],[17,27],[21,34],[13,30],[9,31],[17,44],[18,36],[12,30],[4,47],[8,48],[11,54],[19,32],[26,25],[36,54],[32,83],[21,51],[71,124],[48,80],[39,37],[47,11],[36,25],[48,51],[26,44],[36,48],[30,44],[46,60],[42,48],[62,65],[58,71],[45,55],[10,10],[32,33],[38,34],[34,31],[37,37],[46,39],[72,47],[63,51],[39,43],[9,34],[4,38],[-15,75],[-14,100],[-20,98],[-13,53],[-10,56],[-2,64],[-2,136],[-9,55],[-9,55],[-2,39],[13,43],[11,70],[9,71],[9,92],[0,83],[-5,74],[-8,84],[-16,76],[-18,93],[-21,68],[-17,47],[-35,68],[-58,48],[-65,27],[-75,21],[-65,3],[-76,-10],[-50,-36],[-28,-39],[-12,-45],[-35,-16],[-15,-18],[-14,-42],[-37,-27],[-44,5],[-59,12],[-57,19],[-61,13],[-59,31],[-37,29],[-44,0],[-75,-23],[-67,-13],[-61,-1],[-90,15],[-49,19],[-71,30],[-49,29],[-36,37],[-52,60],[-106,63],[-68,53],[-87,78],[-51,63],[-157,107],[-32,36],[-48,22],[-58,24],[-89,38],[-29,11],[-28,12],[-21,19],[-42,77],[-70,72],[-56,50],[-34,65],[-12,65],[-6,74],[8,61],[20,22],[14,36],[-2,38],[-15,58],[-24,25],[-20,12],[-18,-2],[-32,-6],[-19,-1],[-13,10],[-11,9],[-6,18],[1,24],[2,19],[-4,13],[-13,28],[-16,37],[-71,83],[-150,282],[-51,116],[-117,218],[-33,50],[-32,29],[-33,51],[-17,47],[-32,54],[-40,74],[-42,103],[-34,38],[-7,15],[-59,120],[-46,62],[-42,43],[-40,42],[-56,28],[-41,15],[-43,31],[-36,49],[-16,41],[-4,30],[2,48],[23,39],[32,36],[28,4],[35,-26],[38,4],[41,54],[34,49],[27,53],[17,24],[459,185],[132,70],[41,42],[39,47],[27,47],[16,37],[14,45],[8,41],[1,83],[-4,63],[-6,64],[-9,56],[-13,38],[-19,15],[-26,19],[-48,104],[-40,85],[-27,95],[-18,95],[-17,68],[-26,53],[-140,222],[-40,16],[-64,-14],[-95,-20],[-45,-10],[-57,13],[-49,53],[-27,39],[-28,38],[-41,16],[-41,16],[-102,79],[-51,71],[-40,84],[-57,120],[-137,221],[-120,158],[-132,139],[-86,71],[-254,113],[-60,72],[-22,40],[-10,40],[-6,49],[-3,44],[1,45],[-5,57],[-22,37],[-13,24],[-11,18],[-5,24],[14,221],[-5,85],[-14,117],[-23,77],[-17,49],[-10,208],[-7,65],[-17,72],[-2,65],[5,87],[3,72],[6,60],[9,40],[15,76],[15,127],[4,149],[2,103],[-4,75],[-9,174],[-14,143],[-6,41],[-8,33],[-24,44],[-26,47],[-15,95],[-27,75],[-17,32],[2,46],[-20,73],[-24,57],[-23,24],[-5,40],[2,68],[-30,133],[-25,99],[-24,123],[-10,102],[-2,82],[2,59],[9,46],[23,93],[58,233],[15,51],[14,32],[16,51],[3,47],[3,57],[-8,46],[-12,34],[-19,39],[-28,48],[-31,24],[-35,27],[-47,14],[-58,-3],[-35,-25],[-34,4],[-33,18],[-13,33],[-1,31],[-2,34],[9,43],[-2,35],[-44,63],[-79,239],[-38,83],[-54,91],[-34,89],[-78,241],[-62,139],[-28,75],[-16,92],[-16,112],[-5,79],[-11,75],[-9,96],[13,89],[-3,95],[-9,60],[-14,52],[-2,115],[10,108],[9,52],[20,44],[58,62],[9,40],[-4,167],[-33,436],[-7,115],[-21,133],[5,120],[-19,118],[-14,65],[-17,102],[-51,288],[-38,236],[-32,179],[-34,150],[-36,119],[-35,92],[-40,58],[-21,32],[-10,48],[-8,53],[-3,34],[-3,25],[-6,43],[-16,122],[-12,86],[-23,98],[-49,114],[-36,107],[-25,69],[-9,27],[-9,27],[-19,42],[-31,38],[-90,87],[-56,67],[-49,33],[-47,37],[-46,16],[-54,5],[-53,6],[-59,-24],[-24,-16],[-25,-16],[-70,-16],[-58,13],[-49,24],[-48,38],[-49,54],[-15,54],[0,73],[16,61],[15,56],[-1,32],[-1,28],[-37,50],[-28,39],[-8,10],[-32,75],[-16,78],[-29,50],[-102,171],[-56,93],[-51,64],[-53,60],[-11,12],[-11,12],[-9,4],[-10,-2],[-14,-10],[-16,-23],[-35,-64],[-26,-35],[-15,-58],[-10,-47],[-12,-15],[-12,-15],[-56,-1],[-107,47],[-162,46],[-120,27],[-84,0],[-112,15],[-71,34],[-32,17],[-5,8],[-1135,1850],[-7769,12671],[-96,158]],[[591420,287369],[566,126],[471,-217],[146,8],[328,15],[203,97],[193,129],[235,129],[299,134],[253,51],[59,-10],[45,-25],[41,-47],[82,-114],[59,-53],[71,-5],[96,-1],[106,13],[97,-20],[80,-121],[98,-114],[179,-88],[163,-219],[128,-163],[82,-88],[131,-55],[196,-24],[156,-13],[162,-36],[123,-374],[366,-265],[858,-89],[68,-132],[27,-54],[26,-19],[28,28],[54,-18],[30,-45],[44,-129],[513,-328],[332,-122],[339,60],[361,-71],[147,-256],[31,-17],[57,20],[30,-16],[23,-4],[36,-34],[31,-39],[7,-34],[17,-58],[22,-39],[9,-65],[7,-35],[16,-39],[13,-77],[22,-56],[22,-22],[68,20],[28,-8],[6,-30],[13,-124],[21,-207],[6,-20],[7,-19],[40,-22],[38,-23],[51,-36],[19,-12],[8,-24],[15,-42],[-8,-26],[13,-31],[0,-31],[15,2],[11,-26],[4,-41],[9,-22],[1,-21],[14,-10],[32,-9],[42,18],[74,37],[31,15],[23,-7],[16,-9],[7,-25],[5,-36],[3,-47],[28,-54],[13,-39],[7,-58],[7,-74],[17,-64],[36,-54],[79,-96],[118,-144],[172,-18435],[1,-191],[2,-142],[6,-436],[6,-384],[52,-3347],[84,-5330],[-3,-16],[-3,-17],[-3,-17],[-12,-9],[-18,-8],[-12,-6],[-12,-17],[-3,-35],[-4,-37],[-35,-115],[-22,-58],[-23,-122],[-11,-130],[-8,-109],[-14,-106],[-32,-92],[-55,-127],[-123,-245],[-100,-205],[-91,-141],[-60,-111],[-61,-118],[-30,-136],[-6,-39],[9,-42],[0,-56],[-13,-102],[-5,-64],[-18,-50],[-23,-22],[-4,-65],[-8,-93],[-27,-89],[4,-95],[-22,-60],[-15,-46],[7,-68],[-1,-74],[-9,-91],[-34,-123],[-54,-227],[6,-153],[28,-324],[-9,-28],[-14,-25],[-9,-7],[-9,-11],[-9,-15],[-15,-30],[-25,-73],[-20,-78],[-16,-66],[-8,-108],[8,-53],[20,-15],[3,-25],[-7,-43],[3,-46],[9,-17],[30,-23],[29,-50],[23,-46],[15,-15],[16,-15],[44,2],[46,-31],[19,-28],[25,-1],[28,3],[25,31],[7,2],[39,11],[239,2],[159,-21],[537,-32],[645,5],[1155,1],[1013,-817],[279,-59],[50,23],[50,23],[43,-4],[281,-22],[210,-10],[210,-10],[312,-20],[321,-65],[164,-144],[113,-130],[56,-190],[100,-339],[121,-373],[73,-56],[35,-127],[22,-189],[121,-131],[81,-35],[505,-152],[237,-22],[84,-74],[456,-74],[110,-91],[4,1],[417,40],[181,141],[520,396],[186,116],[339,255],[84,50],[69,41],[197,75],[181,173],[213,107],[197,0],[82,-74],[162,-102],[369,-220],[635,-363],[531,-116],[180,-256],[115,-16],[296,49],[448,25],[219,0],[154,54],[196,-62],[571,69],[315,344],[53,38],[196,141],[223,161],[864,559],[785,540],[501,302],[350,248],[137,33],[290,-50],[181,-198],[213,-578],[181,-693],[383,-834],[21,-280],[126,-198],[191,-146],[79,-26],[266,-53],[220,-100],[220,-100],[617,-209],[519,-161],[449,-198],[348,-279],[107,-166],[107,-166]],[[256942,213708],[-77,-569],[62,-790],[-92,-653],[-1121,-429],[-502,-802],[-772,-669],[-142,-1356],[-289,-525],[-57,-906],[-183,-179],[-345,63],[-377,-680],[-565,-133],[-204,-327],[-629,300],[-339,-32],[-615,597],[-352,-26],[-752,-631],[-536,-955],[-621,-597],[-136,-476],[553,-1339],[-65,-489],[86,-425],[220,-329],[-56,-478],[-483,-899],[-126,-650],[-1017,-1447],[-276,-1559],[-586,-555],[-523,-1129],[-898,-541],[-133,-1869],[-82,-452],[-873,-2002],[-737,-289],[-443,-824],[-1350,-549],[393,-2514],[-47,-720]],[[145330,201033],[106,482],[-2,404],[-114,459],[172,629],[244,335],[2026,2427],[81,78],[88,-21],[155,-188],[80,21],[30,81],[61,163],[127,256],[75,71],[325,-29],[390,86],[400,149],[621,432],[273,206],[183,234],[90,244],[67,89],[111,15],[97,-32],[96,-32],[287,-92],[405,-248],[108,-61],[108,-60],[151,-50],[131,7],[104,114],[89,85],[240,70],[239,69],[189,117],[151,-107],[84,43],[99,35],[75,-14],[52,-163],[14,-234],[-33,-220],[-99,-185],[-61,-227],[-56,-291],[-24,-149],[50,-29],[162,-255],[98,-83],[100,76],[89,29],[85,-100],[15,-114],[20,-154],[120,-143],[23,-184],[47,-58],[-18,-99],[-109,-118],[-47,-159],[38,-141],[118,-36],[230,199],[231,198],[461,362],[451,305],[154,96],[142,89],[227,179],[281,225],[76,22],[75,21],[61,-57],[80,-78],[104,-64],[150,6],[104,51],[75,106],[94,178],[61,135],[129,99],[130,99],[254,149],[273,142],[147,191],[20,86],[-30,22],[-60,43],[-63,56],[-66,49],[-94,71],[-132,121],[-38,113],[-4,142],[68,198],[92,143],[84,135],[108,92],[71,78],[82,89],[47,81],[-9,188],[8,146],[30,135],[13,330],[31,443],[33,142],[59,121],[40,106],[45,181],[70,298],[33,170],[21,174],[50,117],[56,80],[52,5],[85,11],[157,60],[47,18],[59,46],[13,29],[32,74],[49,273],[45,142],[28,117],[40,135],[31,89],[9,67],[2,76],[-10,66],[-20,69],[-43,101],[-20,98],[-17,126],[6,49],[27,44],[49,38],[54,50],[74,53],[67,51],[36,54],[27,131],[13,82],[32,104],[25,100],[20,83],[-4,83],[-17,64],[-20,107],[-21,126],[12,67],[38,121],[34,124],[26,117],[31,105],[28,111],[12,68],[4,24],[-6,32],[-7,29],[-28,32],[-51,3],[-21,15],[-23,37],[-9,51],[10,66],[11,78],[18,124],[8,186],[13,87],[23,98],[7,53],[18,60],[4,61],[-3,68],[-1,33],[18,28],[61,21],[50,52],[35,34],[35,33],[54,71],[46,85],[23,70],[40,95],[38,114],[30,76],[38,59],[33,14],[34,-11],[24,-62],[1,-62],[14,-14],[22,-48],[7,-44],[-12,-39],[-21,-43],[-6,-43],[16,-61],[-5,-56],[14,-44],[27,-12],[38,-18],[40,16],[46,12],[20,-23],[23,-57],[-9,-36],[-16,-65],[4,-71],[12,-56],[22,-23],[36,6],[71,47],[104,78],[51,30],[54,23],[59,9],[70,-19],[63,-34],[69,-27],[69,-14],[55,-25],[59,-11],[54,2],[46,18],[47,30],[22,28],[11,70],[14,87],[2,67],[0,80],[5,60],[13,34],[16,25],[23,12],[22,-21],[69,-4],[67,9],[55,-5],[41,30],[31,19],[46,2],[42,-12],[42,-32],[44,-32],[38,-20],[31,15],[28,14],[36,22],[40,1],[61,16],[38,44],[48,11],[90,23],[60,19],[36,22],[47,25],[41,37],[37,44],[55,23],[16,2],[12,-2],[14,13],[29,12],[34,-25],[26,13],[32,32],[30,58],[28,43],[49,42],[52,41],[62,41],[51,25],[41,26],[37,4],[31,-4],[33,-10],[40,-31],[40,-24],[41,-34],[56,-41],[32,-24],[31,-8],[28,13],[99,97],[114,133],[321,375],[29,758],[468,321],[200,480],[62,381],[-94,603],[41,197],[347,995],[28,257],[-38,231],[-454,1111],[-134,99],[-150,-13],[-1217,-1000],[-85,7],[-207,276],[-437,703],[-161,30],[-199,-71],[-85,-30],[-116,43],[-144,113],[-95,29],[-369,-150],[-125,30],[-70,113],[-71,114],[-39,91],[-58,209],[-31,223],[5,191],[62,336],[109,300],[617,1325],[-12,113],[-50,106],[-195,232],[-333,257],[-162,157],[-99,181],[13,127],[659,1446],[-4,163],[-29,194],[-112,200],[-902,683],[-27,223],[280,1213],[121,259],[218,268],[289,236],[266,-18],[349,37],[183,88],[66,200],[75,301],[-64,1456],[97,436],[208,341],[379,132],[402,-109],[108,-63],[104,44],[103,44],[654,927],[117,122],[43,13],[83,25],[127,-32],[511,-456],[110,-45],[154,0],[81,105],[45,149],[-6,153],[-83,128],[-402,447],[-75,83],[-24,69],[-21,598],[-52,60],[-305,355],[-43,137],[-38,118],[57,418],[179,308],[668,176],[1032,862],[763,1254],[170,1339],[488,1092],[467,512],[164,180],[58,27],[737,351],[269,-96],[665,356],[488,-113],[2285,-1786],[244,213],[292,-71],[141,170],[273,-99],[132,227],[99,189],[80,152],[234,-1],[245,114],[48,-20],[262,-108],[367,-128],[226,29],[-365,2046],[50,172],[259,887],[-70,49],[-802,575],[0,92],[2,326],[11,83],[8,54],[75,161],[-1,2],[0,1],[-274,808],[-90,266],[-26,119],[-26,120],[-51,238],[0,419],[93,440],[146,305],[37,59],[133,217],[179,192],[178,99],[442,107],[612,85],[143,17],[450,54],[487,135],[557,362],[480,369],[385,127],[471,-56],[470,397],[165,411],[164,412],[367,270],[447,305],[450,398],[53,48],[217,200],[188,354],[240,518],[80,199],[51,291],[-98,518],[-64,333],[-63,334],[-82,444],[-36,194],[-70,391],[-71,257],[-25,103],[-38,108],[-73,146],[-31,121],[-72,293],[-16,65],[-17,65],[-16,135],[21,134],[31,46],[30,47],[65,59],[167,120],[207,156],[202,191],[188,146],[428,249],[478,436],[152,155],[207,211],[5,5],[10,11],[9,10],[113,128],[97,133],[75,154],[23,213],[15,181],[5,83],[-8,68],[-19,87],[-16,78],[-26,80],[-23,72],[-34,93],[-49,88],[-34,64],[-35,59],[-47,64],[-24,55],[7,49],[7,30],[15,35],[33,38],[37,41],[30,25],[60,44],[67,46],[69,64],[57,50],[54,44],[39,53],[32,51],[32,72],[71,147],[53,121],[84,113],[104,114],[101,88],[8,7],[42,38],[50,44],[93,82],[251,221],[70,63],[70,63],[125,136],[77,91]],[[378498,442234],[-107,25],[-108,26],[-169,11],[-259,-39],[-218,-74],[-150,-82],[-151,-82],[-128,-83],[-429,-399],[-826,-712],[-256,-225],[-237,-187],[-353,-366],[-319,-306],[-202,-316],[-79,-67],[-137,-23],[-138,90],[-107,20],[-75,-20],[-62,-48],[-44,-84],[-3,-90],[47,-128],[173,-425],[218,-377],[40,-122],[-15,-135],[-115,-306],[-55,-145],[-183,-338],[-466,-679],[-279,-338],[-390,-503],[-298,-337],[-164,-93],[-51,-13],[-134,-119],[-60,-48],[-40,-45],[-122,-174],[-70,-84],[-60,-42],[-61,-107],[-84,-179],[-166,-228],[-154,-129],[-80,-28],[-3,-1],[-88,45],[-77,113],[-70,51],[-107,-7],[-104,97],[-86,161],[-19,116],[-90,138],[-102,45],[-117,126],[-37,264],[-106,231],[-65,290],[2,249],[66,197],[41,172],[-31,211],[-98,173],[-78,117],[-83,78],[-68,32],[-96,-9],[-149,32],[-158,145],[-196,206],[-277,114],[-159,8],[-122,-38],[-136,-165],[-51,0],[-128,107],[-113,180],[-73,122],[-14,109],[19,174],[-62,155],[-143,254],[-218,293],[-294,606],[-286,250],[-306,-8],[-176,-133],[-125,31],[-216,237],[-256,476],[-223,446],[-249,195],[-586,266],[-94,165],[-129,383],[-37,454],[-114,149],[-285,360],[-436,250],[-353,94],[-233,-86],[-254,8],[-270,55],[-363,-219],[-218,-47],[-243,61],[-172,158],[-151,39],[-368,-71],[-368,-201],[-472,-245],[-177,-172],[-114,-242],[0,-548],[208,-467],[119,-637],[208,-954],[25,-337],[-62,-352],[-145,-321],[-135,-814],[171,-548],[37,-164],[-11,-258],[-52,-235],[-129,-360],[-187,-751],[-171,-470],[-140,-243],[-187,-15],[-192,117],[-140,251],[-156,0],[-161,-204],[-81,-287],[-48,-480],[41,-242],[62,-760],[37,-626],[-68,-814],[-321,-829],[-327,-571],[-286,-478],[-269,-141],[-358,8],[-229,125],[-339,332],[-65,506],[-223,595],[-721,579],[-379,117],[-161,-31],[-119,-227],[-68,-55],[-124,86],[-78,172],[-171,24],[-301,-180],[-125,-24],[-394,415],[-353,376],[-228,188],[-493,140],[-613,29],[-66,3],[-223,109],[-79,96],[-30,311],[77,392],[42,273],[-88,298],[-197,172],[-628,-149],[-426,-180],[-191,-54],[-390,336],[-217,360],[-284,157],[-168,-152],[-181,-506],[-78,-415],[-151,-532],[-166,-313],[-243,-164],[-317,-697],[5,-305],[120,-391],[300,-564],[473,-892],[129,-266],[-26,-336],[-238,-462],[-139,-331],[-12,-248],[92,-504],[33,-248],[-11,-633],[14,-227],[12,-204],[47,-516],[5,-306],[-88,-469],[-104,-415],[-181,-501],[-223,-501],[-265,-1072],[-59,-157],[-216,-571],[-825,-2003],[-322,-470],[-233,-193],[-169,21],[-114,86],[-256,720],[-58,212],[-134,109],[-281,117],[-461,-46],[-509,125],[-576,62],[-383,94],[-343,368],[-171,321],[-296,305],[-762,329],[-369,242],[-316,102],[-1043,282],[-218,47],[-244,-115],[-254,-120],[-254,-117],[-145,15],[-114,119],[-16,398],[-47,180],[-85,34],[-85,34],[-151,73],[-271,236],[-118,139],[-327,188],[-244,55],[-100,-75],[-14,-11],[-114,-337],[-114,-133],[-187,-70],[-291,-305],[-238,-423],[-291,-313],[-436,-235],[-226,-196],[-189,-445],[-275,-509],[-166,-493],[-435,-626],[-483,-360],[-285,-431],[-388,-724],[-1,-3],[-166,-306],[26,-313],[-52,-391],[-26,-243],[57,-274],[5,-180],[-73,-234],[-265,-104],[-82,-12],[-131,72],[-221,-30],[-202,-25],[-29,0],[-38,1],[-18,1],[-86,2],[-316,-13],[-134,-25],[-140,-63],[-185,-144],[-58,-74],[-87,-111],[-40,-52],[-205,-237],[-216,-337],[-182,-242]],[[330879,414714],[-140,233],[-16,28],[-85,40],[-115,55],[-21,-15],[-12,9],[-22,37],[10,23],[-6,17],[-21,-7],[-10,22],[0,42],[-12,10],[-22,-10],[-38,64],[-48,39],[-46,37],[-65,76],[-39,25],[-60,35],[-53,-13],[-25,-26],[-52,3],[-48,8],[-115,2],[-45,51],[-41,22],[-70,-28],[-53,1],[-30,-6],[-27,-31],[-36,-38],[-66,-27],[-41,-4],[-26,10],[-12,48],[-5,33],[-1,29],[-179,247],[23,63],[147,401],[1246,1656],[719,1382],[-447,1019],[-85,725],[65,1181],[-574,357],[-601,130],[-189,383],[177,260],[310,40],[892,-274],[260,155],[64,153],[-177,579],[-544,455],[-594,823],[-291,51],[-1142,-468],[-326,428],[-15,741],[-988,-446],[-925,223],[-368,332],[-137,1056],[-352,685],[-42,435],[551,1025],[452,101],[763,1045],[-162,571],[-474,685],[-1059,-50],[-282,306],[-73,870],[71,418],[178,154],[-50,454],[361,1206],[-115,968],[284,75],[240,342],[-100,713],[30,1363],[-254,486],[-472,198],[-363,-178],[-890,841],[-487,251],[-1169,-30],[-395,-218],[-337,286],[-283,717],[-367,-124],[-450,574],[-434,647],[-206,819],[-184,734],[-9,34],[-125,501],[-3,11],[-2,7],[-5,21],[-102,406],[-380,1513],[-1,3],[0,2],[-1,2],[0,2],[0,1],[-2066,311],[-1106,166],[-834,315],[-325,363],[-374,1526],[-753,552],[-414,304],[-261,431],[13,341],[588,566],[142,2181],[301,827],[-156,105],[-97,426],[-247,141],[-277,666],[186,336],[6,380],[-354,262],[-534,-171],[-404,-209],[-226,271],[-13,16],[-14,17],[16,56],[37,120],[44,78],[38,64],[60,134],[13,76],[-16,39],[-45,17],[-45,18],[-45,36],[-25,26],[-73,82],[-15,70],[4,105],[12,137],[-17,56],[-28,24],[-39,18],[-66,-26],[-48,-12],[-58,34],[-28,56],[-12,58],[0,78],[-5,100],[-19,129],[2,39],[4,91],[-24,14],[-32,-12],[-98,-80],[-85,-60],[-70,-33],[-28,29],[-12,78],[-24,134],[2,238],[-45,126],[-2,62],[29,40],[114,48],[65,24],[61,6],[62,18],[31,44],[-21,63],[-3,105],[-30,59],[-54,73],[-60,109],[9,109],[-22,119],[-54,104],[-42,14],[-62,43],[-56,44],[-102,45],[-166,87],[-88,0],[-64,19],[-111,113],[-54,0],[-157,-46],[-96,-17],[-106,-1],[-31,95],[-26,101],[24,309],[30,160],[21,59],[-39,82],[-70,-5],[-76,7],[-45,51],[-14,38],[-118,27],[-65,25],[-11,66],[28,73],[-12,95],[-43,87],[-39,36],[-124,-32],[-87,-32],[-51,55],[0,91],[57,64],[63,54],[58,23],[24,68],[-27,46],[-82,32],[-51,50],[-45,23],[-40,-19],[-54,0],[-21,28],[-36,45],[-21,73],[12,96],[33,61],[10,71],[26,139],[35,80],[34,81],[38,59],[48,21],[47,20],[77,53],[134,84],[85,41],[59,18],[86,191],[98,189],[48,16],[122,2],[95,-13],[136,-25],[53,-51],[57,-15],[148,120],[104,73],[136,82],[115,25],[42,70],[48,30],[35,-27],[47,40],[69,33],[35,61],[45,48],[44,20],[56,9],[34,73],[12,112],[11,136],[12,112],[4,132],[-9,84],[-28,52],[-27,53],[-44,52],[-35,21],[-42,4],[-29,13],[-18,55],[30,30],[-9,52],[-9,55],[8,135],[-19,48],[-42,72],[-48,130],[-17,54],[11,55],[26,13],[42,-4],[38,0],[42,13],[39,3],[27,-34],[44,-50],[62,-1],[45,37],[-3,57],[-6,73],[-9,79],[-8,71],[23,150],[45,118],[31,55],[52,34],[33,18],[56,48],[62,18],[61,-4],[42,20],[92,93],[78,121],[64,64],[46,7],[80,27],[91,77],[105,117],[44,43],[5,38],[-20,21],[-36,16],[-17,16],[-36,45],[-27,7],[-42,16],[-70,46],[-39,41],[-32,37],[-15,58],[-6,80],[3,98],[-71,286],[-25,21],[-41,39],[-25,21],[-17,65],[0,100],[16,80],[20,70],[38,50],[33,53],[27,200],[-14,62],[-19,13],[-38,-20],[-41,2],[-49,18],[-29,48],[-39,82],[-70,50],[-49,57],[-5,111],[24,69],[42,70],[88,103],[118,156],[18,44],[9,34],[-12,48],[-249,282],[-162,38],[8,115],[0,2],[6,89],[2,29],[8,109],[921,13128],[-240,527],[-55,761],[125,872],[169,260],[242,231],[15,251],[-238,737],[-228,401],[-241,1040],[346,1522],[-227,1462],[-593,958],[-219,141],[-162,-29],[-161,-29],[20,69],[-40,11],[-31,28],[-36,16],[-21,32],[-45,68],[-20,28],[0,39],[23,57],[19,45],[-6,39],[-30,46],[-1,38],[5,33],[30,37],[8,45],[-10,49],[-28,39],[-33,49],[-17,31],[-21,8],[-27,39],[-24,50],[-44,31],[-42,-2],[-59,-3],[-47,85]],[[310591,492301],[41,134],[28,352],[17,148],[54,119],[56,68],[84,55],[304,85],[110,89],[56,68],[26,85],[19,162],[-19,165],[-40,238],[-62,174],[-47,153],[-3,165],[-10,191],[-32,264],[-56,540],[-26,239],[0,275],[8,198],[31,170],[54,157],[53,89],[76,95],[71,100],[64,72],[57,5],[76,8],[70,64],[45,55],[62,51],[165,13],[184,17],[304,-51],[247,-60],[230,-96],[162,-23],[115,30],[101,34],[245,102],[121,98],[76,97],[104,166],[99,157],[84,148],[90,204],[87,200],[68,161],[56,189],[42,210],[23,208],[34,276],[31,225],[33,183],[71,110],[62,42],[90,43],[199,64],[780,441],[310,98],[222,46],[121,0],[73,-17],[79,-68],[143,-199],[116,-132],[104,-68],[50,-4],[51,-5],[104,0],[113,-50],[80,-108],[83,-100],[126,-63],[96,-18],[124,-72],[127,-170],[124,-46],[140,25],[99,51],[90,8],[112,-42],[79,-47],[82,-85],[5,-135],[51,-56],[87,-29],[93,-39],[102,-144],[50,-178],[14,-204],[-8,-199],[-14,-174],[-45,-115],[-59,-68],[-71,-27],[-64,-20],[-31,-80],[28,-85],[48,-106],[92,-77],[105,34],[87,-27],[53,-28],[136,-87],[179,-91],[186,-77],[155,-131],[85,-121],[106,-126],[113,-76],[349,-191],[129,-102],[118,-123],[62,-170],[110,-314],[73,-123],[82,-93],[70,-47],[87,-4],[110,38],[245,161],[248,149],[205,136],[65,93],[51,127],[84,132],[127,89],[123,81],[116,38],[104,-26],[84,-67],[102,-102],[64,-94],[34,-123],[0,-157],[-14,-136],[-48,-76],[-98,-43],[-127,-59],[-96,-43],[-95,-67],[-76,-102],[-48,-106],[-17,-111],[23,-144],[78,-268],[186,-721],[25,-247],[26,-237],[33,-225],[20,-117],[67,-155],[77,-102],[73,-68],[112,-51],[79,-8],[59,55],[48,111],[13,114],[18,42],[62,81],[135,77],[206,38],[171,12],[132,77],[296,259],[96,38],[90,-21],[70,-60],[45,-55],[82,-17],[92,-8],[96,17],[118,89],[79,68],[48,148],[-11,107],[-57,198],[-59,307],[-8,259],[14,233],[51,255],[107,310],[90,454],[67,225],[40,365],[-23,267],[-70,149],[-68,102],[-45,76],[-17,145],[12,144],[45,110],[47,94],[79,110],[101,191],[110,145],[93,80],[124,30],[93,-21],[73,-43],[70,-114],[31,-141],[26,-254],[16,-123],[60,-47],[42,-55],[56,-47],[138,11],[235,-27],[137,-5],[94,52],[111,-22],[101,-68],[96,-68],[110,-5],[92,47],[65,98],[37,153],[34,220],[84,264],[107,314],[79,199],[121,242],[138,174],[185,289],[79,195],[45,166],[62,144],[84,119],[68,153],[48,157],[36,178],[3,157],[-34,123],[-42,157],[-39,107],[-17,209],[-8,211],[-40,365],[-65,272],[-45,199],[-19,170],[33,117],[96,155],[65,29],[90,26],[67,-21],[62,-64],[57,-94],[45,-101],[115,-157],[96,-141],[118,-106],[107,-55],[112,-25],[93,-17],[102,76],[87,98],[87,114],[93,200],[45,229],[3,187],[31,233],[76,242],[53,140],[87,162],[127,114],[76,54],[27,13],[77,35],[149,-12],[107,-30],[149,-34],[90,21],[93,64],[113,106],[104,102],[62,55],[76,81],[67,72],[51,85],[23,131],[39,548],[17,131],[42,98],[53,110],[68,56],[82,12],[93,-21],[73,-85],[78,-233],[27,-198],[27,-138],[82,-172],[76,-273],[25,-183],[56,-339],[31,-302],[9,-195],[-28,-139],[-51,-146],[-31,-263],[-178,-1371],[-28,-297],[-14,-242],[9,-221],[5,-182],[61,-581],[21,-294],[-17,-314],[3,-191],[3,-161],[22,-111],[31,-123],[37,-144],[-12,-166],[-22,-161],[14,-178],[14,-94],[45,-51],[73,-21],[120,43],[356,220],[65,26],[56,8],[67,-76],[845,-1142],[73,-157],[35,-140],[46,-149],[90,-170],[91,-127],[87,-119],[70,-93],[28,-162],[37,-161],[53,-182],[79,-166],[68,-89],[90,-55],[73,-30],[90,-13],[82,17],[73,55],[84,94],[76,127],[51,94],[59,72],[84,34],[99,0],[79,-64],[101,-13],[159,76],[80,52],[62,25],[68,-13],[70,-59],[35,-36],[35,-36],[59,-89],[57,-119],[76,-174],[87,-204],[65,-263],[123,-437],[29,-225],[30,-463],[40,-200],[53,-161],[59,-327],[21,-154],[-1,-139],[-25,-267],[-28,-246],[-14,-238],[8,-191],[39,-187],[88,-132],[121,-85],[138,-29],[168,8],[169,30],[157,6],[57,2],[140,4],[37,1],[135,17],[136,85],[70,68],[59,93],[11,102],[-14,123],[-36,178],[-74,200],[-28,144],[0,166],[48,169],[45,170],[79,157],[96,119],[123,55],[181,81],[137,115],[141,110],[110,34],[101,17],[110,-4],[90,8],[87,17],[141,111],[231,241],[126,94],[164,91],[222,84],[164,48],[36,11],[110,-18],[95,-8],[87,4],[90,13],[65,30],[62,46],[45,81],[24,123],[27,195],[67,153],[62,85],[65,38],[59,13],[82,-17],[59,-42],[53,-60],[68,-85],[132,-82],[115,-7],[76,21],[73,13],[71,21],[67,13],[71,51],[67,38],[68,9],[84,0],[85,-34],[76,-22],[84,5],[99,-9],[90,13],[115,47],[160,72],[127,76],[115,68],[135,77],[99,63],[90,43],[106,127],[111,174],[109,174],[133,234],[15,31],[61,121],[54,56],[81,89],[79,72],[92,19],[107,6],[88,9],[194,187],[267,154],[166,109],[138,4],[101,-30],[110,34],[169,90],[155,93],[143,144],[138,106],[73,102],[96,106],[90,64],[73,-34],[99,-59],[67,-17],[65,-13],[67,-30],[79,21],[62,30],[76,64],[59,98],[28,152],[40,123],[64,56],[71,51],[90,25],[56,21],[45,55],[56,17],[54,102],[7,111],[-37,79],[-12,65],[25,81],[84,119],[54,161],[87,153],[149,186],[93,153],[48,136],[23,94],[-9,186],[-21,267],[18,222],[20,152],[0,179],[0,203],[14,162],[42,148],[338,510],[45,110],[48,110],[50,111],[85,55],[79,4],[121,17],[112,-4],[90,0],[113,25],[73,26],[113,59],[98,56],[101,76],[68,86],[82,63],[76,67],[104,51],[112,60],[116,34],[67,13],[73,-30],[76,-51],[91,-109],[205,-180],[104,-114],[98,-51],[88,-17],[76,-56],[56,-67],[39,-22],[51,-42],[62,-38],[73,-34],[79,-64],[65,-59],[53,-107],[25,-55],[12,-195],[-14,-144],[-15,-119],[40,-145],[110,-165],[47,-123],[29,-132],[59,-93],[59,-55],[62,-94],[84,-170],[59,-135],[14,-102],[-39,-123],[-68,-136],[-18,-58],[13,-129],[48,-85],[19,-38],[45,-89],[54,-115],[17,-157],[22,-157],[20,-187],[-17,-165],[-14,-145],[-28,-127],[-57,-85],[-61,-89],[-93,-43],[-107,-8],[-56,-20],[-62,-129],[-86,-196],[-47,-149],[-5,-128],[31,-91],[92,-145],[116,-118],[177,-208],[177,-197],[172,-74],[166,11],[209,73],[160,85],[157,17],[155,-5],[124,-25],[110,98],[126,110],[133,115],[157,97],[132,55],[105,13],[76,-47],[48,-44],[429,-393],[128,-55],[107,38],[112,85],[121,81],[84,63],[101,25],[93,18],[130,-48],[101,-37],[138,-9],[161,51],[343,200],[166,40],[288,48],[213,61],[110,67],[118,60],[129,13],[175,-115],[138,-4],[131,77],[165,81],[75,67],[152,174],[118,157],[127,161],[427,340],[223,225],[127,127],[90,81],[73,42],[87,26],[110,-13],[90,-119],[329,-301],[138,-72],[118,-47],[141,-51],[146,-47],[175,-8],[174,51],[116,0],[107,-115],[104,-115],[118,-63],[129,-13],[149,-17],[240,-76],[133,-85],[58,-123],[124,-51],[129,-81],[133,-17],[213,42],[88,51],[132,17],[129,26],[147,55],[298,225],[82,89],[98,81],[599,225],[150,136],[129,131],[107,123],[312,765],[99,110],[90,55],[84,48],[116,84],[304,119],[126,29],[118,-17],[281,-130],[211,-104],[108,-33],[118,51],[121,102],[104,114],[87,140],[43,183],[-5,212],[10,174],[9,234],[33,165],[57,157],[101,85],[70,21],[113,56],[115,85],[279,326],[115,98],[124,17],[149,-13],[196,-23],[18,-2],[9,-2],[149,-28],[101,13],[152,97],[321,208],[14,11],[299,240]],[[781433,365318],[-933,-935],[-646,-657],[-497,-566],[-418,-566],[-144,-191],[-13,-204],[-131,-223],[-83,-27],[-39,73],[13,92],[-131,39],[-113,-26],[-127,-79],[-200,-224],[-532,-651],[-702,-914],[-607,-737],[-593,-974],[-759,-1324],[-21,-37],[-1936,-2789],[-58,-91],[-348,-549],[-54,-83],[-38,-60],[-25,-66],[-88,-222],[-105,-265],[-130,-506],[-61,-435],[-9,-407],[57,-454],[209,-612],[78,-184],[-349,-211],[-178,-59],[-92,-112],[-218,-204],[-218,-138],[-244,-704],[-249,-901],[-100,-480],[-70,-546],[-35,-296],[83,-198],[133,-63],[-98,-134],[-100,7],[-83,-66],[-26,-99],[48,-118],[-57,-138],[-70,-145],[-74,-86],[-13,-151],[83,-164],[113,-224],[53,-105],[30,-112],[113,-86],[144,27],[-114,-447],[-86,111],[-140,-39],[-35,-165],[-13,-171],[-213,-105],[-88,-224],[-30,-361],[0,-408],[-48,-237],[26,-158],[318,-276],[-43,-257],[-83,33],[-196,171],[-179,66],[-87,-86],[-105,-98],[-109,-119],[74,-243],[5,-250],[-102,-243],[-212,243],[-9,217],[-175,138],[-196,-20],[-357,-282],[-314,-277],[-293,-348],[-126,-508],[-379,113],[-157,-132],[-131,-447],[50,-202],[194,-337],[-148,-185],[-253,145],[-210,92],[-218,-171],[-235,-302],[-157,-356],[24,-189],[203,-297],[17,-158],[-192,-132],[-375,-53],[-288,27],[-270,-79],[-227,-26],[-326,-74],[-5,284],[-122,158],[-175,118],[-287,-26],[69,211],[-136,238],[-213,72],[-235,7],[-257,-46],[-257,-99],[-196,-138],[-323,-263],[-453,-506],[-57,-80],[-505,-702],[-561,-884],[-51,-80],[-76,-120],[-84,-152],[-33,-60],[-695,-1260],[-276,-499],[-580,-1052],[-81,-151],[-314,-589],[-129,-242],[-319,-597],[-660,-1240],[-608,-1188],[-155,-345],[-272,-609],[-26,-57],[-109,-246],[-70,-161],[-285,-659],[-86,-199],[-148,-362],[-9,-39],[-116,-495],[-6,-25],[-33,-102],[-46,-142],[-21,-98],[47,-119],[-95,-33],[-87,-190],[-60,-138],[-30,-69],[-15,-37],[-109,-302],[-66,-201],[-80,-247],[-72,-223],[9,-171],[143,-316],[-231,-13],[-253,-145],[-79,-193],[-47,-116],[144,-138],[-153,-132],[57,-224],[-61,-85],[-118,-20],[-122,-164],[-62,-194],[-153,-171],[-68,-76],[-201,171],[-166,105],[-122,-223],[-244,-224],[-15,-17],[-238,-286],[-353,-677],[-546,-1042],[-47,-280],[-96,-178],[-127,112],[-56,-36],[-192,23],[-393,131],[-7,20],[-41,105],[-17,92],[-70,66],[-257,0],[-48,-79],[-87,20],[-9,105],[113,513],[114,224],[-11,46],[-33,138],[-141,238],[-12,19],[-78,151],[-81,69],[-19,16],[-122,61],[-92,45],[-133,42],[-133,43],[-279,53],[-153,177],[5,310],[113,223],[126,53],[-5,29],[-27,129],[-90,174],[-126,125],[-87,56],[-81,53],[-196,52],[-166,2],[-148,2],[-115,-24],[-169,-36],[-116,-33],[-121,-36],[-260,-134],[-46,-24],[-390,-144],[-227,-135],[-239,-237],[-308,-164],[-8,-7],[-143,-110],[-189,-147],[-214,-194],[-205,-164],[-8,-6],[-6,-4],[-86,-60],[-28,-19],[-44,-59],[-39,20],[-76,26],[28,56],[28,115],[62,27],[6,49],[-26,49],[-35,62],[-37,30],[-68,20],[-91,-10],[-70,0],[-72,-36],[-79,-50],[-130,-134],[-212,-224],[-72,-76],[-401,-477],[-665,-937],[-582,-959],[-103,-169],[-143,-278],[-339,-660],[-351,-819],[-562,-1282],[-39,-89],[-176,-494],[-343,-964],[-105,-295],[-204,-637],[-206,-646],[-219,-745],[-184,-627],[-22,-79],[-131,-493],[-236,-889]],[[763084,577872],[1207,-2493],[167,-420],[136,-308],[119,-311],[-61,-241],[-151,-307],[-192,-336],[-142,-252],[-219,-243],[-187,-254],[-165,-280],[-138,-368],[-55,-135],[11,-239],[266,-605],[161,-102],[378,-66],[746,11],[191,-51],[333,-172],[608,-411],[388,-224],[351,-34],[384,-35],[132,-120],[132,-156],[315,-136],[366,44],[461,64],[164,-128],[241,-87],[217,183],[259,40],[223,-96],[219,-171],[196,22],[429,45],[141,-63],[103,-32],[243,203],[390,-20],[65,-23],[93,-33],[210,12],[196,-75],[225,-136],[176,-154],[335,-102],[307,88],[127,-12],[127,-148],[66,-299],[56,-141],[66,-59],[129,42],[101,102],[162,148],[127,95],[95,-79],[156,-16],[233,-36],[175,20],[223,-76],[105,-48],[376,-176],[212,-48],[297,4],[193,96],[143,4],[95,108],[191,52],[50,-36],[151,-38],[228,38],[82,60],[140,123],[167,8],[263,207],[460,365],[127,-164],[109,23],[140,-63],[106,92],[85,72],[113,263],[143,164],[252,208],[235,112],[265,135],[137,120],[168,65],[151,91],[114,72],[60,80],[75,20],[74,-48],[341,0],[101,96],[339,291],[152,14],[57,34],[164,120],[193,72],[157,144],[137,16],[64,123],[71,96],[98,-56],[101,52],[95,-24],[392,-227],[99,-35],[49,-53],[133,-36],[182,-72],[67,-80],[63,-76],[96,36],[120,71],[149,205],[22,120],[26,127],[58,72],[90,12],[77,-40],[72,-84],[69,-36],[55,84],[64,116],[74,80],[212,148],[161,80],[122,0],[124,16],[99,91],[126,36],[167,-4],[419,104],[198,-8],[162,132],[198,116],[145,33],[37,9],[99,64],[54,-1],[70,-49],[16,-188],[-36,-141],[-17,-250],[-10,-148],[52,-54],[159,-98],[236,-148],[215,-147],[355,-100],[788,-452],[313,8],[153,-35],[74,-76],[-2,-100],[-85,-164],[-151,-140],[-108,-48],[-104,96],[-63,104],[-82,-24],[-125,-122],[-63,-98],[-6,-96],[45,-55],[83,24],[63,4],[48,-52],[8,-124],[-59,-52],[-100,72],[-66,20],[-96,24],[-55,-56],[0,-148],[37,-140],[82,-48],[55,16],[32,72],[53,24],[117,-124],[0,-96],[-40,-131],[-16,-92],[32,-80],[70,-24],[73,8],[45,-48],[8,-148],[5,-140],[-26,-64],[-183,-3],[-42,-56],[34,-88],[58,-56],[188,64],[77,88],[95,40],[64,-52],[3,-132],[-45,-76],[-75,-32],[-58,-32],[-55,-128],[-67,-36],[8,-92],[80,-28],[61,0],[42,-16],[34,-63],[56,39],[3,100],[-6,96],[14,108],[77,6],[107,-105],[64,-145],[59,-8],[5,76],[11,72],[53,76],[42,71],[71,-15],[43,-44],[13,-160],[48,-52],[45,8],[26,-44],[-5,-67],[-19,-80],[35,-68],[74,4],[40,76],[-30,68],[-10,79],[18,80],[80,92],[-3,112],[64,16],[34,-44],[32,-56],[45,20],[-3,76],[-58,64],[-66,16],[-66,40],[8,84],[58,0],[50,-44],[56,-68],[103,16],[72,76],[55,131],[87,8],[117,56],[45,-135],[175,-208],[103,-68],[183,72],[98,-36],[71,-76],[-24,-132],[-98,-179],[-50,-84],[27,-84],[169,-108],[87,28],[29,120],[64,116],[93,-204],[-22,-132],[59,-76],[188,140],[84,200],[42,15],[29,-63],[-2,-224],[82,-160],[233,-159],[209,-33],[40,-51],[69,-12],[58,52],[117,151],[82,-36],[58,56],[-10,56],[12,56],[70,12],[95,100],[42,-32],[11,-152],[16,-112],[50,-39],[87,47],[136,16],[153,36],[122,-88],[106,-79],[111,20],[71,55],[35,64],[77,64],[63,-20],[88,52],[60,-52],[80,-24],[315,-243],[119,68],[133,111],[66,32],[74,-8],[206,-71],[64,27],[82,-27],[82,59],[85,108],[71,68],[61,0],[43,-88],[52,8],[14,72],[-11,60],[-66,124],[-13,60],[58,0],[85,-120],[45,-92],[76,-116],[88,-72],[95,-16],[66,76],[48,124],[58,132],[109,80],[228,20],[84,140],[90,24],[69,-48],[8,-84],[172,-68],[109,16],[98,-76],[84,-16],[40,-56],[64,-24],[37,68],[8,80],[47,44],[51,-28],[45,28],[55,64],[48,-36],[48,-156],[37,-72],[280,-132],[117,32],[159,72],[169,0],[143,44],[257,216],[111,44],[45,-40],[132,-176],[151,-40],[19,-80],[53,-16],[50,56],[32,136],[-32,56],[-45,68],[50,40],[125,8],[37,-56],[-13,-96],[-3,-104],[58,-16],[40,60],[89,159],[231,125],[125,36],[55,-112],[83,-80],[23,-64],[43,-24],[111,72],[156,-16],[135,-80],[61,-44],[74,-32],[51,84],[10,72],[3,108],[42,39],[93,-27],[80,-50],[39,-34],[-8,-76],[-85,-8],[-74,-64],[-58,-76],[0,-84],[146,-156],[103,0],[39,84],[80,192],[82,240],[79,84],[51,-40],[-3,-108],[0,-84],[32,-108],[55,-48],[45,36],[14,100],[34,60],[162,136],[137,155],[159,28],[45,-187],[35,-104],[71,-100],[64,60],[169,200],[72,-12],[50,-23],[45,23],[8,99],[37,160],[13,132],[74,92],[82,24],[48,-76],[-5,-156],[16,-104],[79,-8],[71,83],[51,33],[53,-84],[71,4],[-13,76],[21,92],[72,-48],[29,-84],[16,-116],[-3,-207],[94,-154],[54,-66],[90,-28],[88,40],[79,92],[32,88],[48,32],[29,-64],[8,-80],[2,-112],[59,-76],[76,48],[183,152],[72,208],[119,68],[57,21],[-2,82],[-26,68],[32,40],[113,-8],[30,-60],[26,-135],[61,43],[66,-20],[11,-75],[58,-56],[114,4],[32,-44],[82,-172],[53,-136],[95,0],[63,80],[75,92],[103,132],[116,-64],[159,16],[115,138],[211,653],[-19,139],[67,44],[66,-40],[47,-71],[75,43],[71,20],[77,-24],[0,-83],[-45,-48],[-40,-52],[8,-76],[40,-52],[71,-12],[72,-36],[63,-144],[135,16],[37,-68],[-16,-52],[-31,-80],[29,-55],[45,0],[92,-40],[-5,-80],[85,-56],[66,12],[106,140],[45,32],[24,-88],[13,-124],[24,-108],[56,0],[45,84],[52,44],[19,-88],[13,-92],[45,-116],[48,-64],[85,4],[68,68],[91,4],[42,-32],[24,-52],[69,-87],[100,63],[48,-87],[100,-152],[135,-48],[83,-60],[23,-140],[-10,-128],[10,-104],[29,-87],[-37,-92],[85,-92],[64,44],[127,156],[114,79],[137,32],[138,-28],[135,0],[188,28],[228,16],[119,-99],[82,-56],[26,-56],[-23,-64],[-69,-36],[-56,44],[-40,64],[-82,48],[-68,-4],[-30,-44],[14,-52],[23,-28],[-7,-60],[-40,-24],[-72,16],[-47,-16],[-35,-64],[-172,-435],[-32,-72],[-45,-4],[-37,52],[-34,40],[-50,-16],[-43,-52],[-58,-124],[-5,-204],[16,-156],[21,-115],[26,-72],[69,8],[48,-16],[55,-52],[8,-108],[-47,-148],[-104,-263],[-42,-192],[-11,-196],[51,-427],[-45,-268],[-37,-56],[-59,-24],[-214,-48],[-331,-147],[-48,-28],[-29,-40],[16,-56],[32,-20],[42,20],[45,28],[53,-20],[8,-80],[-26,-116],[-11,-112],[-8,-227],[-13,-160],[21,-80],[77,-76],[111,-32],[66,-12],[45,20],[45,-20],[11,-56],[-32,-44],[-40,-40],[6,-76],[58,-111],[2,-116],[-34,-120],[-85,-92],[-185,-116],[-124,-191],[-59,-8],[-61,40],[-29,83],[-47,16],[-24,-64],[29,-95],[13,-128],[-29,-92],[-66,-172],[-82,-212],[-130,-147],[-85,-168],[-193,-387],[-148,-316],[-111,-220],[-22,-108],[19,-103],[26,-368],[244,-1082],[156,-635],[40,-316],[21,-347],[-40,-432],[-39,-331],[-29,-196],[15,-228],[72,-243],[53,-212],[8,-255],[-32,-240],[-74,-324],[-238,-1230],[-75,-335],[-42,-244],[-40,-208],[-53,-207],[-84,-180],[-80,-176],[-95,-152],[-135,-195],[-156,-236],[-59,-84],[-63,-168],[-48,-327],[-84,-703],[-67,-427],[-18,-96],[-5,-116],[-19,-64],[-77,-619],[-116,-811],[-77,-655],[-45,-200],[-11,-131],[-10,-132],[63,-184],[130,-359],[101,-344],[153,-459],[238,-820],[151,-430],[755,-2405],[244,-735],[92,-359],[3,-164],[-53,-168],[-291,-315],[-498,-683],[-175,-172],[-423,-328],[-77,-79],[-77,-168],[-111,-240],[-93,-275],[-34,-188],[13,-172],[267,-1665],[138,-1031],[82,-607],[111,-395],[233,-751],[125,-448],[24,-127],[-117,-919],[-34,-164],[-202,-471],[-373,-835],[-209,-447],[-269,-606],[-94,-49],[-116,-232],[-8,-160],[-61,-155],[-72,-148],[-100,-100],[-318,-208],[-151,-32],[-222,-179],[-127,-96],[-575,-356],[-115,-72],[-115,-72],[-72,-26],[-61,-53],[-64,-52],[-10,-8],[-130,-76],[-68,-120],[-53,-184],[-98,-251],[-80,-364],[-53,-228],[-47,-183],[-40,-100],[-74,-124],[-72,-80],[3,-88],[-50,-108],[-21,-95],[-53,-100],[-64,-84],[-58,-8],[-13,-88],[31,-88],[19,-92],[-66,-148],[-27,-123],[45,-104],[-5,-156],[-58,-156],[-64,-139],[-108,27],[-93,60],[-106,-52],[-95,64],[5,136],[-127,24],[-29,108],[-78,-8],[-92,-132],[-47,-16],[-72,-52],[-85,12],[-50,60],[-93,-12],[-66,-148],[-127,-123],[-130,-16],[-169,-164],[-48,-120],[40,-160],[45,-140],[50,-183],[-23,-192],[-83,-200],[-188,-263],[-166,-140],[-106,-140],[-61,-24],[-117,-92],[-82,-112],[-63,-131],[-130,-132],[-140,-84],[-161,-60],[-154,40],[-75,92],[-53,216],[-39,111],[-58,68],[-69,64],[-80,24],[-69,-56],[-58,-144],[-63,-103],[-72,0],[-206,-132],[-35,-76],[-10,-92],[-8,-96],[-35,-80],[-2,-100],[29,-87],[-19,-120],[-53,0],[-47,-4],[-17,-108],[-39,-68],[-27,-88],[7,-145],[-62,-89],[-84,-166],[-353,-353],[-90,-38],[-212,-223],[-169,28],[-141,-164],[-230,48],[-79,-12],[-24,-48],[37,-68],[-77,-36],[-87,52],[-93,-32],[-56,-120],[-68,-44],[-64,12],[-50,-160],[-111,-55],[-47,-73],[-120,-175],[-167,-172],[-183,-112],[-140,-235],[-111,-88],[-122,-100],[-13,-88],[29,-128],[53,-104],[74,-91],[50,-144],[-2,-96],[-6,-108],[11,-56],[-8,-68],[-74,-92],[-186,-119],[-66,-116],[-55,-128],[-405,2225],[-69,-204],[-125,-180],[-47,-112],[-125,-56],[-209,-67],[-498,-112],[-519,-380],[-188,-263],[-66,-40],[-185,16],[-96,-64],[-105,-68],[-167,-228],[-35,-116],[-10,-131],[69,-252],[45,-240],[172,-403],[29,-212],[69,-160],[58,-151],[-45,-152],[-8,-188],[32,-128],[114,-223],[214,-172],[148,-224],[59,-88],[66,-91],[55,-20],[104,-12],[164,-28],[122,-52],[124,-96],[162,-184],[95,-299],[8,-132],[-6,-148],[51,-104],[130,-188],[84,-63],[151,-208],[117,-148],[108,-236],[80,-199],[53,-248],[-16,-256],[76,-243],[64,-252],[40,-303],[-125,-244],[8,-84],[-26,-32],[-29,4],[-29,-72],[-43,4],[-47,-8],[-45,-64],[-35,-52],[-32,-287],[51,-92],[47,-68],[-16,-152],[19,-60],[21,-211],[19,-372],[39,-112],[24,-23],[29,-56],[-8,-44],[27,-28],[-21,-36],[34,-52],[-8,-81],[-333,-299],[-98,-127],[-104,-60],[-119,-92],[-61,-136],[-39,-132],[13,-168],[-43,-95],[19,-76],[85,0],[87,-16],[37,-32],[58,-8],[109,-152],[58,-48],[45,-24],[48,16],[61,-36],[34,-144],[45,-32],[16,-60],[-18,-135],[0,-80],[60,-60],[85,-32],[66,60],[64,-28],[193,-44],[37,-44],[85,-323],[-5,-256],[58,-156],[93,-88],[235,-335],[109,-184],[24,-96],[143,-172],[-48,-187],[63,-168],[-10,-176],[-50,-120],[-133,-203],[-71,-288],[-66,-335],[-159,-667],[-93,-64],[-127,-276],[3,-104],[-38,-72],[48,-391],[8,-152],[-156,-507],[103,-196],[11,-152],[164,-191],[140,-60],[117,52],[82,-28],[50,-100],[42,-168],[75,-60],[153,20],[154,-231],[55,-160],[106,-144],[67,-29],[79,73],[74,-184],[61,36],[74,32],[34,-73],[48,-83],[21,-195],[65,-170],[55,-21],[32,-45],[-7,-118],[-18,-118],[36,-55],[90,-448],[51,-161],[50,-161],[12,-101],[-78,-319],[-81,-298],[-16,-201],[74,-181],[110,-114],[12,-115],[0,-100],[-49,-42],[-11,-73],[62,-34],[50,-122],[12,-142],[21,-125],[121,-194],[23,-198],[-29,-55],[0,-240],[-65,-107],[-80,-240],[-115,-294],[-9,-146],[-28,-177],[11,-281],[42,-38],[110,-222],[85,-208],[311,-649],[122,-170],[112,-62],[62,-73],[81,-142],[60,-108],[29,-87]],[[745009,495658],[-7268,5696],[-5,3],[-10,9],[-2284,1792],[-256,6],[-466,75],[-11099,-670],[-798,-48],[-937,-57],[-11,4],[-2,1],[-10,3],[-20,8],[-21,8],[-33,12],[-21,8],[-4,1],[-257,96],[-327,121],[-135,50],[-11,4],[-3234,1199],[-2,0],[-5,2],[-8860,3284],[78,295],[43,323],[128,426],[34,437],[85,333],[107,258],[4,496],[101,410],[91,566],[178,541],[41,312],[192,812],[-50,360],[-382,730],[-396,227],[-352,27],[-361,-53],[-333,-132],[-260,37],[-601,-154],[-317,93],[-278,18],[-260,-42],[-431,-152],[-338,-9],[-433,-77],[-559,-9],[-542,160],[-320,150],[-304,35],[-232,-178],[-290,-158],[-531,-449],[-537,10],[-323,-48],[-467,-316],[-334,-88],[-327,98],[-632,304],[-105,502],[-170,818],[0,2],[-2,10],[9,17],[168,309],[199,452],[6,14],[89,204],[37,84],[8,17],[8,13],[144,240],[145,239]],[[700361,515779],[345,436],[375,472],[426,393],[210,375],[65,344],[-213,417],[-189,544],[84,711],[-65,540],[-211,373],[-197,603],[119,526],[367,939],[467,54],[588,679],[410,756],[218,292],[241,73],[242,-28],[179,50],[178,49],[101,78],[96,352],[37,272],[56,137],[85,169],[204,278],[628,984],[60,446],[31,256],[42,337],[-24,382],[-145,410],[-79,246],[103,264],[204,240],[267,553],[105,20],[76,135],[60,300],[67,219],[36,401],[-48,319],[66,200],[248,447],[175,200],[127,-36],[66,-383],[121,-37],[123,155],[378,201],[139,209],[227,433],[311,342],[308,182],[851,-109],[214,-70],[312,-195],[78,82],[163,310],[103,401],[122,471],[198,294],[78,447],[109,273],[-12,355],[-103,237],[-362,437],[-145,337],[-109,492],[-145,137],[-166,21],[-511,-8],[-106,152],[-78,252],[-7,262],[77,177],[332,316],[321,386],[36,109],[36,110],[-85,255],[-198,333],[-31,195],[36,337],[212,875],[-115,73],[-169,37],[-43,208],[-24,292],[-38,163],[2,211],[205,218],[49,410],[199,191],[260,-18],[242,-93],[446,139],[328,-5],[189,-14],[564,-36],[79,-155],[169,-537],[177,-904],[294,-417],[97,-171],[132,-39],[97,46],[97,146],[78,218],[109,246],[259,547],[248,592],[519,820],[248,556],[-79,273],[121,428],[30,219],[79,428],[-115,246],[-211,146],[-205,-128],[-73,-446],[-199,-356],[-363,-346],[-163,28],[-250,141],[-317,733],[-31,210],[26,326],[-38,339],[-145,382],[-144,-45],[-157,-164],[-115,109],[-175,246],[-207,110],[-113,227],[0,246],[-192,382],[-2,183],[115,118],[290,228],[109,173],[138,402],[321,363],[-67,593],[36,136],[248,456],[30,273],[-84,100],[-151,55],[-326,-82],[-453,-228],[-375,110],[-435,-209],[-96,127],[21,121],[18,98],[263,263],[157,55],[72,155],[6,237],[-60,228],[-151,72],[-220,-62],[-118,72],[-151,81],[-169,164],[-127,301],[-193,483],[-399,893],[-70,189],[94,321],[218,264],[308,210],[519,282],[272,-9],[235,9],[193,-46],[85,-437],[36,-200],[127,-556],[-6,-182],[91,-191],[150,-62],[516,-211],[288,-101],[96,-146],[-126,-528],[5,-261],[56,-165],[295,-184],[362,-246],[220,-363],[162,-211],[210,-183],[42,-136],[-84,-182],[54,-137],[260,82],[320,36],[302,-182],[229,-97],[49,-21],[302,73],[217,127],[217,-82],[188,164],[78,228],[-163,155],[-66,182],[-182,255],[-163,319],[-175,455],[73,265],[296,246],[12,209],[-6,419],[278,465],[158,482],[204,283],[181,383],[-36,364],[-76,434],[88,304],[-61,100],[-229,9],[-97,119],[6,209],[260,337],[187,347],[-66,209],[-199,100],[-206,119],[-151,155],[-96,191],[-139,164],[-73,246],[43,209],[84,265],[145,82],[429,72],[82,72],[75,65],[127,64],[108,-128],[471,-73],[477,-346],[206,-382],[24,-210],[-181,-255],[59,-197],[104,-177],[121,0],[205,216],[199,149],[181,-173],[103,-264],[151,-128],[107,-74],[225,10],[206,246],[380,665],[217,365],[290,555],[236,529],[157,765],[99,370],[179,122],[392,346],[139,192],[74,267],[95,197],[151,383],[308,628],[184,541],[82,361],[338,875],[133,373],[14,23],[693,1071],[132,328],[91,382],[-42,310],[223,519],[224,419],[131,394],[140,180],[115,-18],[30,-118],[181,91],[275,304],[497,128],[400,330],[477,240],[127,346],[-54,619],[223,574],[187,675],[-54,154],[-133,219],[-14,201],[307,500],[86,110],[126,237],[18,110],[13,199],[-34,174],[5,174],[57,202],[121,148],[78,128],[10,279],[73,153],[689,1479],[181,342],[162,300],[50,138],[113,136],[39,8],[39,9],[135,-141],[405,-233],[180,68],[77,199],[0,180],[-55,192],[-1,192],[78,362],[14,193],[-70,156],[-120,62],[-542,-204],[-165,56],[-50,183],[176,681],[170,400],[398,266],[236,288],[225,102],[444,25],[360,255],[39,229],[-317,772],[1,202],[84,183],[108,151],[706,473],[24,31],[187,254],[26,40],[26,41],[207,321],[146,441],[28,101],[67,238],[122,277],[249,172],[167,78],[131,92],[248,483],[106,43],[528,15],[273,64],[188,48],[105,183],[-19,342],[-17,609],[91,221],[148,271],[289,472],[168,377],[28,129],[-35,83],[-244,64],[-147,18],[-250,130],[-324,78],[-78,155],[7,185],[98,171],[268,288],[150,95],[118,193],[308,478],[90,307],[218,394],[430,666],[62,289],[110,265],[164,147],[117,330],[82,194],[148,342],[102,206],[129,336],[105,100],[113,0],[317,-94],[70,53],[72,240],[105,373],[142,226],[83,92],[231,106],[164,135],[265,136],[219,224],[78,389],[144,547],[184,419],[238,229],[215,6],[75,74],[76,74],[114,125],[399,858],[168,277],[160,242],[297,589],[246,406],[199,254],[347,271],[192,306],[172,77],[215,80],[164,206],[36,444],[-54,91],[-123,410],[3,54],[9,140],[51,64],[60,75],[157,172],[168,64],[313,-17]],[[742394,600907],[219,-190],[1,-808],[-44,-408],[29,-194],[-22,-852],[23,-670],[84,-483],[133,-472],[81,-856],[125,-183],[93,-236],[154,-198],[50,-194],[76,-671],[142,-921],[-19,-223],[26,-427],[94,-488],[77,-217],[49,-609],[205,-415],[155,-556],[382,-597],[107,-104],[196,-552],[122,-174],[318,-351],[140,-87],[425,254],[218,-7],[99,-170],[-120,-150],[-21,-244],[97,-113],[122,38],[136,-88],[-85,-155],[-121,-103],[-62,-153],[-16,-200],[97,-198],[121,-95],[79,-166],[7,-252],[-78,-366],[36,-252],[98,-163],[142,-74],[-22,-347],[177,-260],[-72,-339],[86,-164],[21,-200],[-49,-175],[-185,-358],[-27,-218],[21,-278],[64,-173],[84,-131],[22,-261],[-14,-365],[113,-651],[85,-147],[42,-183],[88,-156],[125,-380],[20,-479],[157,-328],[507,-156],[71,-164],[-48,-451],[6,-372],[84,-192],[362,-404],[92,-147],[287,-286],[384,-579],[267,-285],[440,-695],[282,-322],[233,-449],[86,-287],[323,-668],[193,-473],[225,-191],[176,-56],[171,42],[431,283],[307,270],[59,53],[432,-117],[133,-136],[100,383],[156,-6],[309,-104],[72,-183],[-124,-431],[-30,-105],[273,-116],[157,-116],[-21,-245],[-66,-184],[-19,-194],[28,-181],[155,-78],[396,-114],[324,1],[368,-59],[849,-252],[144,33],[151,125],[256,106],[140,-66],[72,-146],[136,-74],[159,-2],[290,85],[270,-28],[473,-198],[339,-266],[135,-68],[316,-13],[306,51],[353,7],[197,-43],[785,0],[474,-109],[580,-56],[127,-95],[140,11],[177,306],[122,386],[218,514],[148,192],[148,192],[222,306],[105,410],[-37,532],[-38,336],[-111,523],[12,383],[-111,579],[-74,401],[-53,235],[-195,-11],[-315,-177],[-155,-168],[-297,-262],[-316,-177],[-204,-383],[-217,103],[-148,159],[-118,214],[-68,280],[56,290],[48,60],[131,164],[211,205],[155,-65],[446,-148],[259,55],[545,308],[241,326],[328,-9],[201,-131],[195,-65]],[[667210,634931],[-69,39],[-37,24],[-48,31],[-1,4],[-16,49],[-2,6],[0,62],[10,73],[-4,59],[-41,86],[-72,120],[-77,56],[-91,32],[-90,-7],[-89,-26],[-73,-31],[-75,-66],[-136,-115],[-156,-153],[-95,-110],[-30,-34],[-22,-24],[-59,-76],[-11,-16],[-23,-11],[-17,6],[-18,16],[-19,15],[-16,48],[-3,47],[3,56],[15,34],[40,53],[90,51],[86,77],[64,93],[35,145],[15,138],[20,132],[7,60],[15,46],[20,24],[20,7],[26,1],[40,-10],[60,27],[68,44],[41,28],[37,26],[62,66],[70,88],[49,137],[55,146],[26,153],[18,254],[10,83],[13,71],[25,48],[24,34],[31,12],[205,33],[46,31],[9,18],[12,67],[-11,60],[-17,46],[-50,66],[-50,50],[-49,53],[-62,91],[-33,36],[-32,9],[-33,-14],[-75,-74],[-27,-47],[-103,-174],[-48,-11],[-44,24],[-32,32],[-18,34],[-3,38],[8,44],[5,46],[-15,53],[-11,33],[0,25],[6,29],[27,31],[25,40],[37,75],[38,38],[22,8],[48,17],[20,13],[16,28],[6,36],[-9,36],[-35,47],[-100,108],[-148,125],[-3,2],[-127,85],[-136,51],[-52,28],[-35,22],[-28,51],[-39,85],[-35,45],[-4,28],[-5,29],[12,30],[-12,37],[-40,46],[-34,30],[-61,23],[-89,9],[-34,3],[-26,12],[-16,42],[-7,43],[8,40],[55,168],[28,82],[43,46],[12,31],[-1,33],[-5,175],[17,59],[49,90],[93,108],[41,59],[12,33],[9,46],[-6,52],[-34,204],[-12,116],[-2,76],[2,51],[14,63],[121,231],[32,19],[38,6],[23,-11],[50,-47],[73,-71],[119,-95],[18,-38],[24,-6],[32,36],[26,20],[37,9],[33,6],[42,19],[47,46],[42,60],[33,33],[140,177],[16,39],[4,52],[-1,81],[5,165],[-22,214],[-8,135],[9,167],[2,92],[6,76],[115,326],[10,64],[21,23],[28,7],[27,8],[51,64],[79,118],[50,61],[38,33],[45,12],[38,-1],[36,-3],[22,-5],[9,-19],[12,-23],[24,-32],[51,64],[31,47],[20,31],[3,29],[2,18],[1,12],[-13,25],[-24,43],[-49,69],[-29,28],[-39,22],[-52,18],[-42,21],[-72,69],[-70,65],[-33,58],[-17,82],[2,42],[21,42],[40,52],[43,61],[68,102],[12,18],[7,23],[6,22],[-1,20],[-1,20],[-9,27],[-8,27],[-42,76],[-111,236],[-154,378],[-120,164],[-185,244],[-373,631],[-68,80],[-93,71],[-25,19],[-102,125],[-36,43],[-87,194],[-22,116],[86,222],[145,115],[35,72],[7,105],[-10,123],[-6,141],[44,81],[40,72],[34,61],[4,98],[-24,78],[-72,123],[2,119],[-25,65],[-64,43],[-66,-47],[-60,-138],[-38,-17],[-21,19],[-44,51],[-135,81],[-71,143],[-24,170],[-4,215],[8,157],[-100,401],[-80,238],[-128,191],[-227,197],[-169,99],[-15,9],[-115,13],[-76,-28],[-89,-36],[-59,-96],[-93,-179],[-38,0],[-25,36],[-69,5],[-99,-88],[-199,-257],[-461,-565],[-62,-103],[-8,-43],[12,-48],[8,-37],[-10,-27],[-23,-8],[-54,41],[-23,-6],[-86,-93],[-15,-16],[-133,-115],[-83,-32],[-86,-13],[-93,-1],[-54,30],[-22,78],[7,98],[188,309],[75,78],[18,98],[-19,59],[-34,7],[-43,-45],[-36,-40],[-20,-22],[-26,20],[-17,30],[-15,63],[-17,101],[-60,165],[-75,62],[-68,0],[-44,-27],[-28,-24],[-38,17],[2,56],[-1,85],[12,142],[4,117],[10,71],[-15,51],[-29,34],[-70,-2],[-80,-17],[-60,-63],[-56,-98],[-39,-41],[-31,-9],[-43,-6],[-36,23],[-49,164],[12,70],[-24,55],[-44,7],[-42,64],[15,65],[16,117],[2,109],[8,62],[8,60],[12,46],[21,44],[43,54],[9,22],[9,21],[7,38],[-7,23],[-100,226],[-76,197],[-31,124],[-35,135],[-2,83],[32,61],[75,49],[61,7],[95,-22],[377,70],[67,64],[48,2],[67,-53],[72,-102],[64,-85],[40,-26],[20,30],[8,72],[119,233],[49,308],[-14,151],[-24,136],[-82,60],[-142,41],[-200,139],[-129,250],[18,117],[-41,138],[-72,60],[-66,23],[-68,-2],[-87,34],[-104,87],[-109,49],[-183,30],[-66,6],[-36,3],[-41,21],[-64,74],[-171,279],[-112,119],[-154,169],[-323,478],[-122,107],[-21,34],[-105,238],[-28,88],[-245,383],[-68,63],[-109,149],[-14,45],[-46,98],[-90,124],[-54,69],[-21,88],[-2,95],[-32,43],[-17,56],[-28,87],[-52,94],[-26,46],[-7,14],[-34,29],[-53,39],[-45,36],[-18,20],[-28,39],[-38,54],[-61,129],[-80,77],[-50,47],[-64,41],[-47,33],[-37,14],[-54,22],[-44,17],[-4,2],[-55,43],[-69,87],[-22,55],[-5,54],[-6,40],[1,63],[-27,24],[-39,18],[-36,46],[-49,23],[-36,9],[-38,34],[-55,53],[-35,55],[-20,36],[-22,58],[-49,102],[-40,111],[-30,65],[-15,63],[-13,69],[-25,51],[-34,24],[-7,5],[-73,56],[-46,11],[-48,-27],[-40,-45],[-51,-65],[-18,-56],[-19,-37],[-22,7],[-18,-20],[-12,-71],[-43,-36],[-94,-100],[-69,-100],[-93,-258],[-59,-139],[-86,-52],[-103,-54],[-71,-87],[-9,-11],[-96,-155],[-51,-41],[-149,12],[-68,-24],[-103,-138],[-78,-105],[-56,-146],[-14,-74],[-26,-60],[-40,-47],[-44,-22],[-22,7],[-14,40],[-5,34],[-32,153],[-11,126],[-14,159],[-5,138],[3,66],[15,81],[15,43],[29,74],[24,31],[11,21],[-2,10],[-3,5],[-3,5],[-10,5],[-4,1],[-38,2],[-32,-9],[-28,-17],[-32,-38],[-30,-57],[-5,-9],[-30,-56],[-17,-71],[-19,-157],[-9,-38],[-32,-54],[-31,-104],[-20,-54],[-18,-20],[-27,-5],[-34,3],[-28,-7],[-42,-28],[-112,-120],[-123,-160],[-34,-27],[-39,-14],[-38,29],[-53,111],[-51,55],[-84,63],[-123,144],[-129,169],[-145,142],[-65,102],[-80,91],[-70,133],[-44,92],[-38,69],[-42,45],[-58,39],[-68,28],[-48,20],[-31,0],[-47,-17],[-37,-25],[-36,-3],[-32,16],[-35,28],[-50,60],[-42,73],[-37,62],[-13,43],[8,35],[35,55],[72,83],[67,57],[16,34],[-2,45],[-31,76],[-37,62],[-27,36],[-30,31],[-24,-5],[-31,-15],[-22,-35],[-115,-316],[-109,-364],[1,-37],[4,-35],[23,-38],[17,-57],[6,-71],[-4,-102],[-8,-64],[-25,-79],[-71,-117],[-196,-281],[-136,-246],[-104,-120],[-99,-110],[-52,-80],[-36,-86],[-48,-119],[-21,-24],[-36,-16],[-15,-5],[-22,2],[-132,74],[-29,16],[-48,44],[-29,41],[-9,35],[-2,85],[21,230],[-2,89],[-8,65],[-26,53],[-88,108],[-34,42],[-30,25],[-28,6],[-32,-3],[-42,13],[-22,26],[-28,52],[-67,158],[-34,69],[-68,48],[-28,36],[-29,37],[-17,101],[2,71],[42,224],[12,43],[-9,38],[-24,34],[-43,23],[-56,21],[-46,-4],[-56,-43],[-76,-72],[-53,-89],[-37,-110],[-16,-48],[-45,-85],[-66,-67],[-42,-24],[-33,-11],[-39,-21],[-46,-37],[-98,-19],[-36,-19],[-39,22],[-83,1],[-42,-23],[-15,-8],[-78,-43],[-95,-87],[-40,-56],[-64,-78],[-50,-19],[-35,36],[-39,-36],[-28,-49],[-18,-70],[-13,-99],[-18,-73],[-43,-70],[-42,-47],[-56,-40],[-50,-11],[-6,-2],[-26,-7],[-4,-1],[-4,-1],[-7,-2],[-29,-27],[-9,-41],[-2,-74],[-7,-96],[-22,-43],[-21,-42],[-14,-42],[-50,2],[-73,46],[-54,62],[-50,47],[-38,-19],[-18,-35],[9,-42],[4,-56],[0,-9],[-7,-50],[-24,-45],[-114,-60],[-28,-15],[-64,-66],[-57,-43],[-78,-19],[-56,8],[-31,-32],[-37,-59],[-40,0],[-55,60],[-57,96],[-55,118],[-7,32],[13,30],[24,9],[20,12],[39,0],[30,-36],[6,-49],[55,-21],[38,35],[5,5],[3,2],[30,28],[42,72],[20,66],[1,58],[-27,50],[-36,47],[-42,11],[-63,-21],[-45,2],[-23,24],[-27,33],[-3,4],[-5,4],[-31,20],[-25,32],[-35,11],[-37,-17],[-27,-41],[0,-61],[-6,-84],[-19,-74],[-37,-68],[-54,-40],[-43,-30],[-48,-2],[-39,-5],[-27,7],[-38,-21],[-32,25],[-28,-13],[-19,35],[-1,57],[-11,78],[-29,37],[-53,19],[-48,2],[-39,-42],[-69,-79],[-14,-55],[-32,-47],[-45,-36],[-33,-24],[-27,-49],[6,-67],[16,-54],[-4,-94],[-23,-74],[-8,-14],[-27,-50],[-33,-28],[-47,-5],[-35,18],[-51,20],[-43,25],[-54,6],[-62,-6],[-35,-21],[-24,-6],[-16,14],[-12,23],[-18,19],[-18,18],[-13,25],[-3,30],[6,89],[7,62],[-15,126],[-1,22],[17,24],[45,51],[53,57],[62,40],[10,25],[-2,38],[-14,21],[-15,27],[-19,37],[-30,37],[-22,50],[-17,36],[-8,29],[-8,29],[3,33],[3,33],[-7,46],[-15,36],[-12,24],[-16,16],[-20,-3],[-15,-17],[-13,-66],[-12,-51],[-4,-13],[-15,-71],[-5,-14],[-18,-42],[-17,-11],[-18,1],[-3,0],[-18,23],[-16,22],[-9,13],[-3,25],[-4,26],[-10,41],[-19,16],[-20,18],[-25,23],[-24,4],[-28,-14],[-26,2],[-28,0],[-26,0],[-17,-18],[-28,-38],[-44,-59],[-38,-36],[-41,-26],[-34,-24],[-37,-22],[-24,6],[-40,35],[-36,48],[-29,53],[-23,70],[-11,79],[-9,87],[6,106],[-2,85],[-8,89],[0,20],[10,17],[19,19],[78,88],[17,35],[14,24],[28,48],[6,55],[14,39],[24,29],[27,26],[25,20],[22,37],[16,47],[5,37],[-12,51],[-48,100],[-20,41],[-22,66],[-22,47],[-72,212],[-21,70],[-20,67],[-19,60],[-31,44],[-40,31],[-43,21],[-59,45],[-36,40],[-53,93],[-58,117],[-31,100],[-36,107],[-41,78],[-33,42],[-37,39],[-93,85],[-59,36],[-25,14],[-27,19],[-31,21],[-25,36],[-5,7],[-20,29],[-11,32],[2,27],[13,71],[28,72],[116,172],[35,51],[37,26],[70,42],[50,49],[22,30],[12,46],[3,37],[-14,46],[-41,81],[-38,66],[-19,51],[0,35],[13,86],[21,93],[16,94],[2,31],[-9,37],[-25,62],[-27,48],[-36,42],[-33,38],[-29,41],[-70,88],[-15,25],[-3,9],[-13,47],[-14,35],[-20,25],[-37,9],[-52,-18],[-54,11],[-33,44],[-21,59],[-7,101],[9,187],[2,263],[38,204],[16,30],[36,76],[12,60],[8,81],[17,33],[33,49],[8,42],[0,37],[-20,36],[-35,73],[-49,67],[-159,165],[-51,57],[-12,20],[-8,44],[5,92],[4,54],[-7,49],[-31,180],[-20,119],[-20,73],[-28,27],[-31,14],[-38,-18],[-21,-24],[-25,-79],[-17,-45],[-3,-6],[-28,-31],[-79,-82],[-24,-38],[-18,-39],[-11,-47],[-7,-20],[-8,-19],[-17,-20],[-41,-46],[-42,-46],[-49,-55],[-507,-564],[-221,-273],[-90,-141],[-111,-64],[-63,-12],[-49,-52],[-142,-215],[-55,-59],[-64,-98],[-31,-94],[-50,-92],[-41,-51],[-27,-10],[-27,20],[-37,77],[-28,26],[-32,2],[-34,-21],[-9,-23],[-17,-4],[-21,30],[-24,50],[-42,62],[-117,84],[-84,39],[-82,23],[-105,32],[-85,16],[-110,6],[-117,32],[-127,49],[-114,24],[-69,23],[-155,17],[-141,6],[-167,-10],[-58,-17],[-24,-27],[-36,-28],[-41,-8],[-59,6],[-46,13],[-75,50],[-21,6],[-32,-12],[-20,-13],[-25,10],[-23,6],[-30,34],[-18,21],[-29,16],[-35,10],[-32,-9],[-25,-28],[-46,-78],[-1034,2231],[-98,212],[-74,253],[4,44],[13,154],[84,198],[141,202],[532,827],[94,208],[101,329],[85,313],[160,336],[114,178],[145,127],[114,106],[138,81],[97,56],[64,5],[178,-40],[199,-56],[117,-36],[148,-45],[98,-5],[124,35],[60,91],[41,117],[10,106],[-34,154],[-74,262],[-77,355],[-34,264],[16,266],[52,185],[50,66],[104,86],[168,76],[92,25],[103,-5],[138,-5],[69,8],[80,30],[35,66],[46,88],[66,184],[7,86],[-141,204],[-591,964],[-105,145],[-94,96],[-125,51],[-117,20],[-169,-60],[-225,-200],[-215,-242],[-116,-168],[-10,-15],[-136,-194],[-155,-180],[-206,-121],[-96,-36],[-57,45],[-52,182],[-5,453],[-21,276],[-23,450],[-24,99],[-97,107],[-130,34],[-293,-58],[-274,95],[6,198],[111,398],[209,378],[225,316],[130,99],[99,103],[42,93],[132,217],[165,295],[112,149],[62,96],[46,84],[42,129],[27,147],[32,203],[8,180],[13,214],[8,167],[0,846],[0,557],[35,455],[70,406],[98,309],[113,326],[75,206],[67,193],[51,111],[117,249],[256,471],[262,416],[185,289],[275,345],[229,254],[235,192],[128,152],[128,203],[147,477],[108,395],[146,537],[64,234],[137,403],[130,277],[545,1044],[376,669],[376,716],[65,89],[218,301],[417,456],[672,598],[578,558],[740,669],[664,567],[714,711],[638,558],[494,431],[246,218],[20,37],[5,39],[-143,408],[-87,231],[-57,127],[-175,243],[-249,314],[-97,153],[-17,111],[3,71],[67,137],[79,115],[39,57],[14,28],[20,69],[-46,243],[-68,199],[-243,278],[-20,12],[-18,12],[-19,11],[-47,26],[-92,25],[-148,-6],[-34,-2],[-106,33],[-67,71],[-59,107],[-21,76],[-6,109],[21,139],[45,99],[86,150],[106,129],[121,102],[105,99],[72,88],[132,172],[60,94],[73,117],[47,58],[29,18],[30,18],[89,15],[126,-8],[127,-23],[112,-50],[70,-61],[143,-96],[635,-5],[98,5],[40,23],[148,83],[480,416],[205,147],[138,66],[35,8],[100,22],[248,-10],[175,15],[212,71],[155,117],[191,213],[299,329],[336,396],[256,345],[154,294],[101,228],[64,248],[30,203],[21,244],[-24,116],[-57,188],[-225,324],[-20,78],[-4,50],[6,64],[13,73],[21,61],[29,45],[45,40],[42,25],[42,18],[41,-1],[19,-3],[19,-2],[37,-21],[30,-17],[38,-3],[44,17],[30,30],[41,79],[27,42],[43,34],[86,7],[56,-2],[30,48],[49,405],[18,196],[19,170],[60,218],[35,96],[79,112],[271,271],[69,109],[94,178],[76,167],[52,152],[20,91],[28,79],[19,35],[44,46],[62,56],[52,60],[52,76],[28,94],[4,92],[-5,65],[-15,125],[-25,156],[-107,562],[-11,51],[-62,192],[-31,96],[-742,2292],[3,61],[30,81],[54,15],[267,65],[228,40],[222,113],[90,117],[139,290],[73,114],[188,234],[127,122],[162,203],[225,284],[212,274],[141,167],[101,76],[90,15],[78,-30],[638,-416],[152,-116],[151,-117],[387,-407],[352,-326],[111,-104],[192,-147],[202,-101],[198,-56],[222,-56],[115,35],[80,41],[70,41],[67,117],[155,263],[198,424],[69,35],[57,112],[64,98],[41,107],[11,96],[4,89],[-19,86],[-37,127],[3,79],[24,56],[15,37],[44,71],[17,69],[-4,58],[-25,43],[-69,31],[-18,6],[-47,16],[-61,38],[-35,51],[-20,97],[9,72],[18,70],[20,48],[64,54],[50,53],[29,49],[15,55],[12,76],[13,63],[20,39],[58,42],[65,107],[25,33],[5,36],[-20,40],[17,49],[32,45],[23,53],[-8,36],[-34,61],[2,61],[28,43],[37,30],[46,17],[12,54],[-2,61],[27,36],[45,1],[15,54],[0,79],[14,51],[23,38],[34,22],[43,-27],[43,38],[14,46],[-15,48],[-28,65],[-8,79],[0,68],[0,89],[21,32],[9,42],[27,-21],[29,-17],[11,33],[-15,38],[-7,35],[22,3],[40,-8],[26,18],[20,7],[18,-7],[7,-61],[15,-18],[22,13],[18,-10],[6,-41],[43,0],[15,66],[17,74],[4,45],[-19,36],[-42,45],[-27,51],[-19,47],[-23,34],[-19,42],[-8,16],[-25,55],[-20,57],[-18,73],[14,8],[46,-15],[3,34],[-12,57],[31,8],[-2,50],[-22,39],[10,27],[22,-7],[59,-48],[22,3],[8,24],[30,92],[-5,33],[-28,10],[-7,33],[30,15],[46,68],[42,60],[17,47],[-11,56],[-2,68],[9,33],[47,64],[84,98],[-1,44],[-12,17],[-27,-5],[-34,20],[-13,39],[-8,36],[8,34],[37,77],[31,41],[8,30],[-16,38],[-27,35],[-5,28],[22,28],[27,10],[46,-8],[47,38],[23,31],[-1,38],[-1,58],[11,48],[23,21],[47,22],[46,-2],[50,-31],[36,-20],[38,20],[22,41],[17,96],[-3,27],[-1,13],[-21,14],[-19,0],[-41,-5],[-25,20],[0,43],[-6,40],[13,31],[54,38],[55,53],[46,47],[23,-1],[17,-14],[20,5],[13,28],[19,34],[13,38],[7,43],[3,57],[0,34],[-1,60],[-9,48],[-15,51],[-14,54],[4,51],[15,38],[5,36],[3,22],[10,16],[6,-4],[13,-8],[17,9],[20,19],[5,25],[-13,12],[-3,18],[8,14],[17,2],[29,-2],[29,11],[22,6],[21,21],[10,20],[-2,19],[4,16],[-3,21],[11,14],[9,-8],[2,-28],[2,-36],[15,-13],[12,0],[9,19],[5,23],[-3,39],[8,80],[6,28],[-3,30],[-13,14],[-16,1],[-16,-10],[-22,4],[-10,10],[-8,13],[-5,34],[5,27],[16,22],[29,19],[20,7],[38,-22],[49,-40],[17,-7],[19,18],[13,37],[-15,68],[-12,81],[-13,49],[-21,48],[24,50],[47,5],[44,28],[37,18],[17,33],[-4,46],[-20,42],[-26,35],[2,44],[31,31],[25,38],[-8,53],[-2,53],[8,45],[22,21],[29,-12],[22,21],[15,43],[10,38],[13,20],[18,7],[16,-13],[33,-39],[25,-1],[36,33],[23,45],[5,26],[-5,31],[-9,33],[0,28],[10,20],[23,12],[22,14],[27,1],[11,19],[1,32],[-6,22],[-16,35],[-34,39],[-18,28],[-33,6],[-25,0],[-6,26],[13,15],[34,7],[37,32],[37,32],[28,23],[45,2],[48,8],[31,5],[17,9],[31,23],[27,25],[22,38],[23,43],[8,20],[9,21],[22,58],[20,22],[15,27],[-3,26],[6,19],[9,4],[6,4],[22,21],[19,16],[27,5],[32,-6],[26,-19],[26,-16],[23,-13],[16,-25],[9,-38],[-5,-39],[10,-41],[19,-35],[29,-20],[31,-9],[26,5],[29,18],[15,15],[-2,19],[-11,33],[0,37],[0,8],[0,26],[9,50],[15,20],[14,11],[23,4],[12,-7],[6,-14],[-2,-40],[0,-40],[3,-53],[14,-51],[11,-17],[23,-16],[23,-17],[30,-16],[21,0],[6,8],[13,16],[7,23],[4,30],[-8,46],[8,14],[7,2],[14,14],[14,-8],[28,-30],[2,-14],[2,-14],[12,-7],[14,4],[14,5],[26,9],[11,8],[9,-10],[6,-12],[3,-7],[15,-3],[12,3],[16,21],[16,51],[14,60],[7,85],[3,46],[-4,67],[-4,42],[3,30],[3,30],[9,31],[22,38],[15,29],[14,28],[8,39],[5,24],[14,28],[17,22],[13,7],[12,7],[22,0],[14,-18],[16,-48],[2,-9],[9,-37],[11,-29],[17,-49],[31,-83],[39,-66],[45,-48],[46,-20],[36,-8],[29,10],[22,26],[16,30],[16,57],[10,67],[7,61],[2,55],[-4,85],[-1,72],[0,77],[7,36],[10,17],[21,35],[38,66],[35,74],[17,68],[15,76],[6,53],[-1,29],[-2,61],[8,49],[29,70],[33,80],[68,181],[74,260],[200,-53],[41,-11],[103,-22],[55,-11],[98,1],[86,13],[94,48],[87,91],[105,106],[166,154],[145,135],[129,96],[110,113],[56,107],[25,75],[52,146],[67,126],[85,139],[170,620],[165,600],[212,375],[34,102],[181,550],[257,731],[37,336],[-64,450],[-81,242],[-139,264],[-198,206],[-274,279],[-1656,1134],[-569,411],[-482,419],[-413,355],[-267,301],[-126,189],[-63,182],[-3,262],[-7,180],[47,285],[96,306],[161,327],[266,445],[242,293],[21,25],[47,56],[-26,84],[-226,91],[-199,158],[-133,187],[-19,26],[-68,238],[-68,300],[-115,0],[-261,-103],[-179,-16],[-215,-39],[-450,-103],[-356,87],[-234,173],[-227,269],[-534,539],[-624,496],[-460,277],[-514,213],[-891,349],[-57,22],[-112,58],[-55,29],[-84,79],[0,143],[-10,142],[167,395],[105,189],[225,617],[87,406],[91,455],[121,466],[203,396],[104,208],[75,162],[42,292],[45,866],[148,251],[426,251],[259,196],[19,223],[-74,304],[-334,450],[-165,358],[36,311],[237,365],[152,361],[222,447],[157,391],[148,251],[333,248],[249,228],[127,86],[110,90],[18,77],[-21,98],[-141,174],[-157,178],[-12,48],[-48,196],[-28,140],[43,121],[96,123],[207,104],[140,140],[65,224],[32,232],[28,193],[55,98],[93,70]],[[720311,742810],[55,-147],[136,-176],[130,-102],[212,-169],[177,-205],[203,-118],[252,-141],[324,-182],[322,-140],[466,-364],[34,-26],[109,-66],[95,44],[98,146],[164,174],[240,161],[228,146],[286,139],[455,201],[258,30],[709,312],[313,217],[152,139],[112,52],[153,-35],[153,-95],[189,-139],[173,25],[136,47],[101,16],[98,-45],[118,-130],[115,-100],[118,-56],[112,-100],[89,-104],[69,-117],[81,-69],[97,-161],[69,-91],[77,-27],[110,-11],[233,138],[89,13],[72,-65],[81,-35],[96,24],[107,59],[130,-51],[98,20],[123,31],[84,8],[86,44],[63,34],[77,18],[58,139],[35,182],[43,316],[8,182],[132,192],[154,74],[192,189],[302,298],[299,295],[207,203],[68,67],[180,29],[179,29],[85,54],[55,36],[101,31],[69,-14],[69,-14],[87,1],[122,1],[119,-34],[85,52],[82,103],[105,90],[148,84],[113,104],[112,104],[129,43],[86,-6],[84,-40],[62,-63],[39,-40],[77,-98],[76,-99],[98,-108],[136,-160],[107,-269],[108,-331],[63,-285],[101,-309],[52,-89],[60,-45],[73,-33],[100,-60],[121,-90],[114,-56],[77,-28],[79,13],[128,133],[171,43],[-51,-79],[-47,-84],[-15,-58],[-18,-45],[-22,-42],[-48,-100],[-21,-174],[-12,-73],[-12,-108],[33,-63],[61,-102],[814,-1824],[98,-366],[124,-468],[40,-147],[97,-364],[47,-418],[58,-511],[-44,-465],[-44,-464],[-123,-624],[-75,-327],[53,-377],[96,-273],[121,-185],[99,-95],[170,-146],[196,-168],[187,-161],[137,-117],[155,-156],[66,-133],[33,-206],[11,-206],[-62,-200],[-99,-242],[-119,-215],[-15,-111],[4,-167],[54,-304],[55,-308],[32,-181],[38,-213],[39,-213],[-4,-267],[-70,-217],[-150,-209],[-199,-189],[-192,-67],[-208,15],[-316,19],[-214,78],[-241,23],[-253,-70],[-248,-69],[-246,-207],[-170,-356],[-15,-735],[-127,-560],[-87,-252],[-220,-420],[-278,-532],[-190,-305],[-50,-433],[69,-434],[69,-433],[171,-379],[225,-192],[-152,-932],[126,-244],[310,-157],[226,-286],[311,-130],[396,-482],[321,-537],[432,-630],[11,-16]],[[852580,670583],[-183,-455],[-159,-356],[-251,-544],[-186,-203],[-226,-457],[-116,-155],[-116,4],[-311,30],[-363,-58],[-581,-433],[-135,68],[-254,102],[-145,5],[-180,-185],[-387,-398],[-322,-330],[-61,-102],[-61,-102],[14,-433],[-278,-1334],[-219,-2079],[-177,7],[-179,199],[-141,228],[-207,155],[-434,1],[-312,-441],[-499,-967],[-246,-42],[-601,992],[-211,208],[-354,-65],[-1172,-1918],[-42,-53],[-41,-52],[-209,-265],[-66,-512],[174,-607],[20,-257],[4,-46],[-189,-398],[-236,-456],[-226,-270],[-368,-256],[-698,156],[-301,-28],[-245,-213],[-180,-640],[-122,-882],[-208,-612],[-217,-640],[-198,-555],[-301,-341],[-349,-242],[-270,-83],[-210,-84],[-303,-4],[-415,85],[-745,-14],[-415,86],[-690,-408],[-941,-33],[-255,227],[-348,14],[-717,-213],[-330,-213],[-208,-655],[-217,-1067],[-292,-440],[-509,-342],[-560,-116],[-128,-26],[-925,185],[-518,-270],[-82,68],[-806,675],[-88,75],[-1116,26],[-1289,447],[-593,-219],[-701,-751],[-634,-1549],[-347,-1620],[-399,-1031],[-203,-848],[-383,-1078],[-115,-324],[-1112,-1619],[-345,-257],[-746,-176],[-512,-75],[-472,-286],[-937,-1121],[-800,-289],[-1220,-713],[-528,-737],[-1262,-287],[-139,-81],[-155,-342],[100,-1233],[-1661,-1744],[-484,768],[-114,22],[-138,-213],[-98,-627],[-777,-942],[-235,-550],[112,-817],[-32,-313],[-389,-541],[-292,-1105],[-500,-973],[37,-661],[386,-1545],[-195,-2009],[126,-1002],[-369,-576],[-543,-468],[-566,-1020],[154,-1060],[-44,-175],[-393,-362],[-307,-201],[-343,-347],[-793,-1508],[-44,-1],[-590,-12],[-154,184],[-539,360],[-1456,-1181],[-233,-256],[-191,-526],[-630,-400],[-471,-613],[-509,-1281],[-322,-173],[-393,49],[-330,815],[-247,-333],[-200,-409],[-361,-1448],[-903,-1336],[-610,-609],[-627,-2057],[-518,-459],[-168,-68],[-213,20],[-288,-302],[-23,-381],[207,-809],[328,-882],[463,-460],[265,-139],[124,-182],[-158,-315],[-188,-201],[-559,-271],[-397,-259],[-410,-240],[-29,4],[-567,76],[-1119,269],[-602,310],[-674,607],[-253,112],[-509,-300],[-287,-127],[-170,-69],[-86,-34],[-85,-34],[-325,-195],[-477,-150],[-377,210],[-384,409],[-126,370],[-72,209],[-73,210],[-170,573],[-260,505],[-457,220],[-1141,-114],[-355,24],[-298,80],[-284,-40],[-391,-110],[-708,-80],[-366,-84],[-91,-135],[0,-240],[404,-1258],[4,-25],[62,-404],[53,-799],[-265,-619],[-231,-469],[-265,-489],[-357,-490],[-656,-179],[-582,-160],[-305,-20],[-489,100],[-338,-70],[-212,-310],[-302,-1033],[-148,-1143],[-39,-489],[-146,-330],[-258,-140],[-245,-110],[-199,60],[-178,-40],[-157,-124],[-307,-505],[-522,-768],[-206,-260],[-226,-275],[-151,-424],[-249,-345],[-234,-254],[-371,-250],[-238,-519],[-179,-90],[-205,-208],[-165,-231],[-212,-110],[-344,60],[-437,-19],[-324,-230],[-258,-390],[-298,-319],[-272,-330],[-125,-429],[6,-310],[0,-239],[-40,-210],[-119,-190],[-185,-299],[-212,-150],[-86,-90],[-20,-259],[-66,-2287],[-53,-239],[-225,-230],[-245,-469],[-695,-440],[-357,-129],[-213,56],[-217,54],[-192,-30],[-278,-90],[-238,-140],[-252,-150],[-463,-649],[-344,-519],[-345,-519],[-297,-519],[-199,-200],[-218,-40],[-252,150],[-218,-120],[-258,-339],[-206,-360],[-238,-299],[-278,-430],[-304,-130],[-321,-229],[-328,-200],[-397,-30],[-311,-150],[-437,-99],[-423,-290],[-212,-290],[-199,-429],[-370,-367],[-179,-22],[-569,-420],[-252,-199],[-179,-110],[-231,10],[-232,-60],[-159,-220],[-152,-329],[-185,-250],[-212,-179],[-152,-550],[-106,-319],[-106,-100],[-331,-250],[-132,-219],[-53,-250],[-66,-150],[-78,-100],[-175,-47]],[[742394,600907],[238,395],[212,68],[232,63],[224,259],[183,364],[216,420],[313,552],[170,202],[183,236],[143,290],[269,528],[249,307],[207,164],[177,261],[73,446],[-28,490],[-34,388],[69,181],[458,354],[264,802],[76,374],[-126,916],[48,130],[330,328],[134,255],[12,254],[59,294],[117,232],[121,340],[94,353],[79,353],[67,398],[-129,367],[-85,361],[-5,421],[179,260],[382,347],[190,6],[166,-133],[66,-153],[211,-47],[41,-78],[267,-429],[143,-162],[123,-174],[133,-73],[165,37],[257,107],[279,226],[509,540],[504,300],[525,238],[123,110],[43,133],[137,282],[301,328],[23,123],[-90,159],[-51,318],[24,260],[117,376],[39,406],[-52,422],[-52,360],[-80,144],[-211,-12],[-85,172],[35,229],[83,189],[-40,326],[7,274],[-54,141],[-237,225],[-212,294],[-39,141],[-16,242],[35,306],[117,312],[-121,171],[-58,130],[-8,65],[112,81],[21,218],[40,405],[30,309],[103,375],[57,61],[57,60],[288,239],[248,-157],[124,114],[125,114],[310,431],[281,530],[129,368],[92,331],[56,241],[-4,168],[-48,109],[-56,72],[-112,84],[-131,-36],[-126,-95],[-257,-97],[-208,-49],[-235,12],[-281,37],[-96,12],[-71,21],[-107,39],[-46,27],[-42,53],[-32,48],[-52,34]],[[453084,200140],[-23,-4],[14,47],[-58,22],[26,60],[21,39],[27,69],[19,48],[18,13],[22,45],[44,15],[25,-19],[11,-26],[-10,-46],[41,-10],[10,-33],[-15,-54],[-40,-17],[-25,-28],[-27,-52],[-43,-37],[-37,-32]],[[454264,200680],[27,-100],[51,15],[-28,-112],[0,-71],[-45,-99],[0,-52],[-81,-194],[-34,-65],[-66,-56],[-50,-20],[-50,0],[-28,-19],[-49,-30],[-24,-33],[-53,-21],[-73,15],[-20,-28],[-38,-35],[-35,24],[-68,104],[-24,8],[-17,56],[11,52],[6,56],[3,63],[34,75],[29,50],[13,54],[1,30],[16,59],[21,62],[-2,45],[40,48],[0,52],[60,28],[40,32],[34,-6],[47,8],[63,24],[63,52],[87,11],[82,69],[42,-63],[15,-88]],[[452708,206431],[86,-62],[277,0],[169,-255],[28,-128],[124,-81],[83,-222],[32,-145],[87,-97],[138,34],[64,-194],[102,-166],[101,-118],[-42,-215],[-25,-212],[-7,-80],[-147,-291],[-51,-298],[33,-250],[-138,-347],[46,-278],[-88,-6],[-73,97],[-124,-101],[-125,-101],[60,-131],[-101,-97],[-110,117],[-79,-20],[-151,55],[-102,90],[-128,333],[-115,264],[-51,131],[-115,299],[-115,215],[-87,56],[92,125],[-74,222],[-129,256],[-96,139],[-77,13],[-26,5],[-127,-25],[-54,-103],[-171,138],[-119,220],[-132,243],[96,181],[61,255],[125,130],[68,70],[253,0],[169,127],[253,455],[193,-73],[239,-174]],[[456959,210146],[-41,-347],[-72,9],[-96,-136],[-122,-153],[-167,-55],[-156,54],[-126,-109],[-39,-136],[-39,-136],[54,-227],[18,-181],[-115,82],[-150,-109],[-48,-254],[-108,-145],[-126,-191],[-292,-198],[-127,-165],[-279,-362],[-42,-191],[-180,-254],[-229,-126],[-206,50],[-184,200],[38,85],[185,42],[27,19],[87,66],[78,111],[19,143],[105,140],[51,167],[58,161],[44,288],[74,358],[26,121],[-21,121],[19,104],[99,40],[99,84],[6,129],[51,105],[112,12],[85,102],[99,22],[181,93],[150,89],[93,185],[30,243],[136,355],[24,68],[80,225],[117,178],[186,38],[152,-98],[200,-183],[108,-185],[74,-348]],[[454329,196892],[30,90],[-16,127],[-18,135],[50,71],[92,55],[116,154],[267,612],[50,169],[69,145],[38,128],[1,6],[60,209],[3,254],[20,194],[-29,117],[-189,-297],[-122,-154],[-162,-144],[-195,-39],[-191,-6],[-117,300],[38,307],[62,212],[212,236],[-33,323],[29,203],[133,340],[89,273],[-10,208],[86,215],[69,95],[115,-20],[205,244],[215,216],[42,42],[189,-52],[187,23],[79,39],[69,100],[43,204],[10,174],[-33,209],[-13,92],[-10,67],[-23,164],[-40,180],[-95,497],[51,368],[275,602],[108,179],[205,183],[-62,259],[-90,158],[-84,-30],[-271,-97],[-71,176],[186,275],[-133,341],[-108,60],[-148,447],[270,184],[14,337],[33,220],[36,184],[43,169],[180,451],[189,226],[264,264],[297,244],[253,141],[14,8],[281,159],[88,75],[60,134],[70,417],[216,160],[106,-259],[61,-6],[214,94],[138,151],[92,159],[86,175],[376,29],[61,11],[196,34],[267,135],[172,79],[96,140],[55,79],[208,274],[195,259],[95,112],[86,101],[337,433],[179,222],[62,93],[49,110],[56,3],[16,15],[43,40],[340,478],[260,348],[119,269],[300,646],[165,339],[136,283],[86,273],[29,91],[129,164],[303,418],[20,19],[359,349],[304,398],[171,239],[99,164],[73,254],[-107,207],[-89,174],[-68,131],[-92,65],[-93,5],[-227,244],[-307,59],[-224,-20],[-7,-99],[-8,-67],[-8,-67],[-106,-105],[-201,25],[-123,26],[-161,118],[-128,204],[-73,40],[-60,-42],[-125,166],[-132,-24],[-75,-70],[-80,25],[-145,64],[-165,364],[-82,59],[-158,80],[-122,-25],[-73,-84],[-99,10],[-129,119],[-16,119],[-89,378],[-89,384],[-43,120],[49,143],[-3,174],[13,224],[-10,329],[-23,204],[-39,189],[-96,378],[-63,213],[-72,245],[-155,597],[30,74],[72,-20],[64,26],[25,114],[7,199],[10,249],[66,214],[85,149],[182,219],[69,119],[73,179],[56,244],[128,-15],[145,-5],[169,70],[122,35],[142,170],[19,24],[136,54],[89,125],[151,179],[208,214],[274,224],[214,159],[168,174],[212,184],[112,164],[39,150],[86,144],[106,149],[105,224],[59,259],[3,15],[34,149],[39,279],[10,283],[-23,448],[-33,323],[89,438],[-33,219],[-53,249],[-19,289],[-84,157],[-151,42],[2,16],[15,158],[83,31],[82,-31],[82,35],[0,189],[55,67],[87,-18],[50,-89],[46,-30],[89,30],[49,129],[43,120],[76,10],[92,84],[55,161],[67,197],[123,458],[136,479],[76,96],[61,77],[14,-13],[72,-67],[76,10],[244,150],[224,383],[535,383],[226,131],[111,131],[52,61],[86,24],[148,41],[171,89],[172,140],[105,84],[99,155],[86,129],[274,294],[406,273],[155,90],[382,273],[248,110],[300,60],[55,21],[21,8],[89,65],[283,418],[469,687],[57,93],[464,757],[274,329],[402,308],[109,20],[138,0],[126,-20],[92,18],[92,17],[119,80],[131,138],[11,11],[195,209],[174,179],[222,186],[192,239]],[[994238,559318],[-1562,-7],[-3154,-14],[-575,-3],[-239,-1],[-7823,-35],[-4971,-22],[-465,-2],[-5819,-26],[-2751,-12],[-9610,-43],[-269,-1],[-88,-1],[-55,62],[-39,62],[-29,80],[-52,140],[-105,308],[-62,179],[-5,16],[-173,500],[-671,1888],[-333,948],[-152,317],[-133,210],[-336,471],[-1031,1426],[-1301,1775],[-942,1284],[-600,819],[-243,355],[-182,292],[-85,236],[-241,776],[-526,1686],[-403,1291],[-224,718]],[[948989,574990],[-81,346],[-38,166]],[[948870,575502],[-21,239],[14,1152],[149,321],[57,188],[57,189],[478,194],[278,139],[221,237],[121,247],[31,202],[21,143]],[[950276,578753],[8,197]],[[950284,578950],[8,197],[648,7875],[19,231],[78,937],[373,4535],[77,930],[63,767],[-48,524],[-260,732],[-93,262],[-1058,3000],[-256,728],[-659,1882],[-54,154],[-530,1514],[-163,488],[-118,306],[-239,471],[-905,1587],[-120,211],[-1027,1788],[-969,1666],[-499,865],[-134,216],[-65,171],[-17,139],[9,142],[15,164],[51,287],[132,961],[359,2491],[330,2222],[254,1772],[107,750],[76,441],[34,199],[10,226],[17,217],[0,274],[-23,216],[-7,56],[-27,215],[-66,85],[-1598,2039],[-1426,1827],[-393,504],[-1725,2194],[-364,463],[-19,24],[-604,778],[-25,34],[406,415],[269,307],[133,152],[220,162],[718,461],[97,62],[851,-22],[464,-6],[471,37],[338,368],[293,374],[321,368],[554,692],[392,554],[259,673],[199,717],[246,601],[230,463],[322,509],[353,417],[354,240],[610,224],[460,343],[469,527],[435,574],[1058,1348],[601,584],[1105,972],[705,671],[399,624],[445,880],[481,955],[424,890],[168,792],[77,531],[116,306],[188,614],[583,862]],[[955267,648948],[555,996],[230,231],[291,208],[355,119],[449,30],[1287,-74],[564,-146],[671,-295],[613,-246],[122,-49],[645,-305],[366,-203],[539,-15],[645,218],[530,291],[520,464],[616,756],[260,856],[-87,1090],[-29,668],[-48,392],[-19,697],[15,106],[52,373],[145,364],[125,363],[116,842],[-117,830],[20,506],[231,639],[299,523],[414,407],[426,472],[249,301],[249,302],[347,554],[568,520],[597,218],[500,1264],[501,1278],[183,203],[217,320],[216,319],[135,392],[87,349],[1,6],[119,442],[224,334],[706,715],[349,411],[642,706],[387,359],[826,643],[584,456],[1212,944],[1020,870],[388,89],[526,-41],[46,-4],[238,25],[335,11],[347,-81],[480,90],[491,92],[1317,248],[873,-59],[114,-7],[126,-8],[11,-1],[82,-5],[252,-17],[163,-10],[173,-11],[16,-1],[763,-55],[16,-1],[487,66]],[[983231,672282],[408,-17],[87,19]],[[983726,672284],[224,51],[453,178],[539,456],[4,2],[365,135],[342,-422],[414,131],[342,734],[389,707]],[[986798,674256],[71,-565],[192,-320],[-24,-620],[-153,-330],[-191,-466],[-175,-578],[-144,-530],[-120,-591],[-104,-753],[-41,-1238],[-26,-229],[-138,-1194],[-164,-1795],[-100,-1363],[-104,-1409],[-54,-480],[-604,-5454],[-322,-2906],[-28,-247],[-129,-1167],[-100,-899],[-252,-2277],[-143,-1288],[-150,-1436],[-161,-1553],[-73,-1532],[-36,-754],[-26,-557],[-31,-663],[-58,-1225],[-46,-959],[-56,-1191],[-1,-32],[-40,-1148],[-24,-687],[-75,-2135],[38,-823],[76,-1623],[119,-2574],[199,-2307],[39,-459],[11,-128],[2,-25],[6,-63],[1,-12],[1,-8],[0,-9],[1,-12],[0,-2],[3,-32],[28,-337],[22,-269],[83,-1018],[210,-2560],[3068,-18569],[234,-1414],[500,-3029],[7,-44],[270,-1459],[1121,-6076],[916,-6214],[1008,-6841],[637,-4323],[45,-313],[494,-3413],[626,-3724],[362,-2147],[9,-48],[72,-345],[862,-4147]],[[542847,480101],[33,11],[79,27],[55,18],[168,56],[67,-27],[66,-28],[411,-962],[249,-224],[232,184],[225,-233],[291,-439],[249,-419]],[[544972,478065],[-130,-330],[-245,-303],[-268,-235],[-242,90],[-254,73],[-248,-25],[-86,43],[-161,79],[-346,-210],[-496,226],[-243,-27],[-387,-283],[-190,-54],[-213,72],[-114,58],[-113,-39],[-181,-308],[-17,-90],[-239,-534],[-54,-13],[-88,-98],[-126,-113],[-114,-89],[-46,-35],[-205,-164],[-146,-192],[-26,-271],[-17,-241],[-48,-256],[-30,-109],[-74,-115],[-55,-54],[-30,-36],[-6,-62],[-47,-19],[-44,-2],[-38,4],[-38,4],[-40,30],[-27,39],[-35,1],[-175,-55],[-134,34],[-107,199],[-31,-48],[-34,-19],[-39,-5],[-31,23],[-31,23],[-67,-2],[-44,-6],[-65,-27],[-71,-5],[-69,31],[-79,48],[-86,66],[-87,54],[-58,77],[-93,204],[-60,127],[-76,58],[-102,0],[-278,12],[-301,10],[-60,-131],[-11,-23],[-17,-44],[-73,-188],[-186,-359],[-151,-262],[-105,-106],[-128,-228],[-40,-51],[-81,-103],[-400,-335],[-171,-143],[-147,-356],[-106,-141],[-277,-193],[-304,-427],[-360,-293],[-284,-429],[-226,-211],[-77,-172],[-197,-294],[-326,-327],[-198,-290],[-120,-67],[-276,-66],[-167,-335],[-92,-184],[-135,-65],[-101,-103],[-169,-266],[-134,-75],[-234,-213],[-231,-123],[-115,-117],[-146,-77],[-291,-77],[-102,-113],[-236,-261],[-411,-599],[-176,-503],[-87,-128],[-61,-158],[0,-183],[-16,-59],[-92,-343],[-35,-834],[-64,-181],[-127,-163],[-142,-83],[-266,-10],[-80,-193],[-105,-110],[-411,-315],[-106,-144],[-296,-677],[-99,-123],[-261,-163],[-317,-460],[-128,-67],[-418,-40],[-361,-101],[-423,-37],[-494,-716],[-78,-392],[-106,-100],[-416,-86],[-142,-114],[-107,-137],[-261,-150],[-424,-71],[-113,-62],[-79,-145],[-48,-162],[-119,-91],[-271,-75],[-373,-196],[-92,-132],[-70,-168],[-551,-566],[-263,-119],[-106,-103],[-375,-175],[-120,-101],[-246,-449],[-128,-64],[-700,89],[-254,145],[-134,-44],[-135,24],[-204,215],[-126,52],[-420,-166],[-175,-332],[-79,-384],[-68,-151],[-116,-152],[-133,-52],[-135,28],[-133,-27],[-386,-186],[-158,-40],[-135,-103],[16,-303],[211,-348],[63,-177],[-7,-220],[-241,-501],[-310,-407],[-128,-112],[-126,-54],[-439,-387],[-275,-126],[-107,-131],[-107,-319],[-96,-139],[-368,-257],[-136,-38],[-387,159],[-214,-216],[-318,-484],[-119,-97],[-311,-148],[-120,-122],[-190,-276],[-128,-112],[-149,-32],[-253,104],[-98,-154],[-121,-101],[-318,33],[-149,-40],[-177,-171],[-156,-87],[-283,60],[-232,229],[-155,-16],[-128,94],[-43,392],[28,488],[-13,535],[-49,228],[-101,171],[-289,-2],[-403,-188],[-325,56],[-401,-173],[-376,-282],[-142,-35],[-335,2],[-88,0],[-71,-72],[-85,-86],[-403,-409],[-120,-73],[-594,-79],[-189,-611],[-173,-334],[67,-683],[-192,-596],[-68,-261],[-288,0],[-123,-200],[-114,-371],[-63,-549],[49,-523],[-20,-537],[-202,-669],[-267,-481],[-86,-624],[-3,-29],[-193,-886],[-378,-817],[-41,-157],[-109,-723],[-26,-95],[-123,-443],[-116,-292],[-57,-141],[-12,-228],[-15,-127],[-60,-269],[-41,-196],[-29,-116],[-94,-58],[-67,-51],[-3,-84],[12,-80],[41,-192],[53,-447],[-21,-244],[-73,-218],[-142,-258],[-144,-185],[-132,-108],[-47,-92],[-48,-207],[-36,-112],[-36,-111],[-91,-173],[-60,-109],[-110,104],[-18,12],[-20,15],[-13,9],[-20,11],[-26,15],[-62,35],[-62,35],[-68,16],[-68,15],[-162,-42],[-184,-77],[-134,-43],[-178,-25],[-142,54],[-105,40],[-584,530],[-94,55],[-272,64],[-433,31],[-551,-73],[-241,-95],[-149,-97],[-458,-406],[-655,-254],[-224,-120],[-223,-120],[-426,-663],[-125,-108],[-120,-63],[-263,-40],[-691,-303],[-106,-151],[-156,-388],[-92,-160],[-445,-206],[-86,-78],[-232,-210],[-537,-488],[-352,-168],[-243,-189],[-5,-182],[196,-343],[56,-172],[9,-177],[-78,-162],[-269,-144],[-221,-242],[-276,-395],[-104,-222],[-168,-507],[-113,-1010],[-87,-468],[-139,-264],[-135,-71],[-305,17],[-119,-53],[-559,-611],[-459,-823],[-312,-387],[-380,-627],[-228,-317],[-240,-175],[-240,-68],[-904,541],[-141,-1],[-734,-200],[-475,-281],[-289,-210],[-256,32],[-134,-96],[-99,-188],[-174,-677],[-135,-171],[-263,4],[-104,-178],[-14,-248],[126,-667],[-42,-337],[-135,-667],[-106,-157],[-226,-129],[-143,-7],[-515,194],[-142,13],[-127,-126],[-266,-530],[-110,0]],[[468160,445644],[87,41],[27,22],[22,7],[22,-12],[26,-30],[44,-28],[33,0],[130,69],[49,30],[22,26],[17,22],[16,55],[9,79],[4,50],[-2,29],[2,29],[-8,94],[6,51],[19,135],[25,131],[109,345],[233,688],[70,228],[14,113],[-36,416],[8,119],[36,189],[88,248],[276,752],[57,70],[57,69],[12,194],[25,171],[90,125],[128,114],[71,76],[4,202],[50,176],[100,92],[-4,116],[-50,94],[19,109],[81,80],[96,151],[100,63],[84,38],[108,-56],[101,6],[41,94],[4,133],[-143,241],[-122,247],[-39,104],[-44,92],[-165,355],[50,120],[213,107],[159,100],[121,152],[54,170],[12,145],[50,97],[21,142],[39,120],[74,25],[80,50],[62,145],[15,32],[95,220],[89,204],[104,139],[118,295],[63,174],[14,39],[76,206],[71,232],[61,206],[43,110],[61,155],[209,143],[153,266],[70,123],[64,79],[88,61],[155,188],[61,107],[48,152],[29,92],[14,87],[16,105],[24,139],[4,117],[-6,75],[2,75],[4,59],[22,96],[41,115],[45,130],[16,106],[21,92],[60,137],[49,29],[42,33],[48,50],[30,67],[22,38],[22,38],[40,52],[39,44],[52,57],[61,122],[36,56],[51,84],[45,79],[23,101],[48,143],[55,103],[76,105],[61,62],[61,5],[102,26],[65,4],[35,146],[-1,117],[-65,94],[-42,114],[-19,140],[0,153],[46,176],[44,121],[47,106],[85,24],[20,2],[62,8],[47,9],[71,93],[5,128],[46,95],[16,25],[15,24],[31,49],[41,62],[34,46],[57,21],[67,4],[21,101],[33,57],[59,8],[56,26],[9,68],[-60,177],[23,60],[45,22],[67,-21],[31,55],[-34,109],[-39,94],[-14,153],[31,136],[51,102],[23,12],[43,107],[32,73],[54,50],[62,91],[48,65],[50,58],[96,79],[62,127],[-9,145],[0,199],[51,204],[9,36],[73,274],[-12,186],[-1,55],[10,175],[76,132],[7,320],[-27,338],[44,151],[103,138],[70,85],[17,76],[29,294],[50,506],[14,41],[76,220],[13,152],[10,125],[30,172],[-8,237],[21,155],[99,369],[39,139],[13,7],[13,7],[167,0],[126,0],[59,30],[101,89],[33,27],[65,47],[37,26],[102,62],[110,25],[45,29],[219,137],[119,51],[87,-22],[59,-59],[22,-47],[15,-114],[15,-56],[24,-51],[51,-55],[39,-48],[146,-184],[65,-82],[87,-85],[62,-89],[90,-68],[25,-10],[74,-32],[93,-13],[68,5],[171,14],[329,-62],[324,76],[245,57],[190,-102],[352,-512],[131,-107],[390,170],[4303,1877],[965,420],[908,397],[338,147],[2519,1102],[151,66],[2089,927],[-61,78],[-87,144],[-61,115],[-38,169],[17,163],[14,109],[-47,164],[-46,109],[-73,78],[-64,119],[-29,52],[-89,134],[-92,134],[-35,52],[-109,116],[-46,86],[-26,55],[-36,62],[-72,54],[-38,140],[-45,141],[-36,47],[-94,33],[-26,114],[17,154],[-4,172],[-38,87],[-43,158],[-43,136],[-57,50],[-38,94],[-77,79],[-61,50],[-39,45],[-14,51],[-17,94],[-7,47],[-23,43],[-48,58],[-14,72],[-5,64],[-19,51],[-43,71],[-29,36],[-38,72],[-166,165],[-67,108],[-43,65],[-38,86],[-38,72],[-14,65],[-8,111],[0,90],[3,64],[16,89],[3,84],[4,106],[1,102],[9,79],[-14,108],[-29,93],[0,58],[19,65],[-9,86],[-22,67],[-23,51],[-29,51],[-31,53],[0,87],[10,79],[-10,57],[-14,43],[-18,91],[1,64],[2,54],[-23,71],[-29,115],[-14,166],[-10,273],[0,115],[0,107],[-57,259],[2,133],[3,47],[-23,52],[-15,34],[-34,50],[-23,120],[-29,128],[22,114],[45,55],[24,50],[23,122],[57,115],[34,122],[9,94],[-36,122],[-30,86],[-18,122],[-22,115],[-1,33],[7,63],[12,44],[12,40],[-5,79],[-15,63],[-24,74],[-13,35],[-24,108],[-47,93],[-62,100],[-45,77],[-17,32],[-62,86],[-29,108],[-28,108],[-88,227],[-55,38],[-59,83],[-93,405],[-17,72],[-37,89],[-24,184],[-14,167],[34,86],[43,20],[2,101],[20,55],[63,45],[48,133],[7,113],[10,106],[7,92],[2,73],[22,73],[6,51],[-2,66],[-59,128],[-52,50],[-37,94],[-55,84],[-38,57],[-25,38],[-30,33],[-33,89],[-44,50],[-58,26],[-34,13],[-37,56],[-12,49],[-25,74],[-76,123],[-16,27],[-56,67],[-55,55],[-30,56],[-35,137],[-5,19],[-48,95],[-59,222],[-88,174],[-46,144],[-18,61],[-37,78],[-27,40],[-27,39],[-44,67],[-38,70],[-37,81],[-47,32],[-52,43],[-33,124],[-22,144],[-33,181],[-16,80],[-2,60],[-2,33],[4,89],[-1,29],[-11,98],[-5,41],[-24,86],[13,81],[59,46],[22,17],[7,6],[72,35],[59,61],[45,46],[82,68],[15,16],[92,134],[13,131],[39,128],[47,133],[38,268],[-13,249],[-21,201],[-20,160],[29,162],[52,132],[59,118],[95,161],[70,118],[89,242]],[[488337,491315],[16,43],[51,73],[57,66],[82,108],[60,79],[-25,71],[15,79],[41,84],[65,56],[63,16],[55,-16],[48,-79],[1,-6],[39,-195],[5,-167],[10,-106],[50,-110],[29,-117],[37,-27],[58,-15],[103,3],[158,126],[123,91],[148,53],[171,-31],[119,42],[79,59],[54,89],[103,57],[143,64],[68,52],[60,89],[20,113],[3,103],[43,91],[65,125],[98,87],[118,31],[88,49],[71,32],[107,169],[83,102],[124,26],[178,88],[138,113],[98,129],[86,91],[85,57],[58,103],[50,106],[73,91],[141,57],[45,-54],[18,-83],[-48,-121],[-20,-84],[25,-197],[50,-102],[138,-152],[61,-110],[48,-246],[20,-250],[123,-255],[35,-41],[128,-87],[93,-118],[88,-182],[48,-87],[17,-201],[61,-224],[113,-144],[98,-64],[105,-91],[78,-61],[36,-91],[15,-118],[-33,-102],[-45,-57],[-57,-73],[-16,-105],[17,-102],[59,-99],[77,-76],[41,-105],[25,-63],[4,-5],[132,-239],[-49,-528],[85,-156],[119,-25],[246,165],[291,73],[459,-415],[290,-66],[127,26],[290,457],[156,148],[276,103],[141,-142],[296,-453],[148,-57],[311,76],[136,89],[120,-26],[190,-279],[134,-345],[100,-157],[142,-68],[62,-161],[89,-548],[159,-594],[190,-316],[255,-189],[92,-169],[184,-532],[126,-39],[134,28],[170,294],[691,429],[396,289],[489,490],[446,162],[274,277],[149,35],[226,-161],[248,-105],[232,-1115],[361,-1322],[22,-706],[64,-421],[63,-167],[247,-277],[146,-29],[284,6],[459,-294],[333,-268],[240,-283],[262,-38],[390,152],[302,203],[116,37],[111,36],[586,-102],[254,57],[339,280],[363,536],[267,195],[1005,1348],[112,109],[212,106],[253,126],[299,286],[226,494],[303,435],[233,143],[585,-97],[45,-7],[147,29],[349,-164],[102,-42],[101,19],[115,-19],[115,-45],[59,-38],[58,-68],[287,-328],[420,-350],[85,-26],[83,52],[32,86],[-70,245],[51,16],[19,42],[20,41],[70,90],[45,68],[19,93],[10,80],[-10,126],[-4,96],[25,116],[32,60],[43,-76],[59,19],[94,-64],[68,-109],[0,-110],[30,-141],[-47,-19],[-8,-123],[76,-212],[-55,-51],[72,-58],[-42,-64],[153,-97],[90,-122],[0,-186],[-94,-97],[21,-115],[-37,-153],[88,-220],[-31,-65],[146,-57],[124,-71],[94,-83],[128,-103],[12,-148],[51,-212],[138,-658],[97,-461],[-235,-212],[8,-179],[132,-351],[109,-151],[-27,-256],[-44,-199],[-52,-298],[146,-262],[176,-360],[32,-407],[-101,-466],[50,-198],[139,-351],[-163,-224],[-50,-568],[-25,-285],[-26,-284],[230,-443],[357,-63],[-72,-238],[284,-128],[-73,-250],[110,-194],[-266,-804],[-175,-901],[-294,-790],[-110,-208],[-18,-360],[-368,-749],[-413,-416],[-331,-429],[-138,-458],[-119,-623],[-87,-780],[-9,-59],[-125,-811],[46,-443],[-175,-801],[111,-363],[64,-388],[-61,-239],[-113,-732],[109,-264],[149,-290],[186,-281],[193,-310],[126,-231],[66,-171],[199,-300],[134,-288],[100,-214],[199,-350],[219,-221],[233,-261],[65,-145],[347,-356],[176,-264],[91,-123],[113,-70],[87,8],[300,138],[327,516],[255,-8],[152,108],[240,196],[171,274],[208,137],[166,40],[147,151],[166,-100],[212,-221],[173,-170],[160,-51],[226,101],[179,130],[133,351],[95,186],[178,115],[199,311],[140,230],[82,183],[144,270],[161,217],[135,190],[153,81],[179,203],[198,325],[108,244],[27,271],[62,162],[216,82],[188,95],[225,-55],[233,95],[216,27],[231,-191],[173,-53],[161,190],[198,122],[189,217],[89,162],[36,230],[72,380],[171,216],[179,176],[90,149],[-18,258],[162,217],[107,149],[99,297],[162,244],[170,176],[530,583],[157,29],[175,187],[249,-161],[443,-286],[197,-162],[162,-149],[233,-447],[171,-149],[66,-201],[192,-119],[137,-46],[152,122],[144,82],[189,-41],[134,176],[710,623],[466,1070],[-215,135],[-84,202],[-83,161],[-72,85],[-135,187],[-43,134],[-72,108],[-19,137],[61,126],[83,212],[64,171],[19,172],[-19,131],[103,598],[254,148],[314,-248],[220,177],[4,1],[3,0],[240,33],[60,63],[118,52],[75,40],[152,-52],[114,29],[173,8],[250,25],[354,425],[186,121],[177,73],[80,110],[33,194],[257,268],[137,201],[81,406],[32,316],[24,170],[266,207],[57,255],[16,292],[137,316],[306,352],[322,-121],[258,73],[129,146],[274,109],[233,97],[210,146],[89,207],[80,170],[-32,219],[0,170],[161,133],[169,13],[210,-37],[153,-15],[161,88],[282,49],[185,-73],[185,-25],[194,-85],[97,-133],[60,-150],[157,-106],[169,110],[282,316],[129,304],[8,364],[-24,151],[290,323],[168,133],[1,1],[435,219],[113,-316],[56,-210],[57,-167],[266,-122],[217,-24],[314,-12],[178,-97],[169,-61],[290,-170],[153,-292],[193,-425],[45,-276],[453,-201],[82,76],[97,83],[79,8],[100,45],[143,58],[101,52],[81,15],[425,258],[100,94],[71,70],[44,79],[77,504],[63,344],[39,161],[73,134],[123,185],[119,3],[133,-3],[86,9],[51,-27],[30,-91],[44,-40],[81,6],[123,79],[105,18],[126,37],[111,61],[68,82],[91,-37],[123,-28],[125,28],[122,-23],[55,99]],[[700361,515779],[-218,-91],[-120,246],[-72,586],[121,532],[-29,560],[-218,145],[-376,-127],[-220,-317],[-330,-588],[-320,-734],[-394,-240],[-389,-76],[-418,310],[-267,313],[-149,506],[-185,1181],[-127,420],[-196,276],[-185,430],[-76,668],[-227,440],[-304,924],[-241,329],[-388,220],[-467,36],[-304,101],[-389,538],[-340,379],[-34,39],[-867,380],[-38,192],[-100,63],[-234,37],[-621,122],[-493,-85],[-145,48],[-49,134],[-31,34],[-114,125],[-250,-25],[-138,-73],[-80,-341],[-65,-183],[-195,-115],[-152,201],[-154,85],[-492,-463],[-157,-290],[-337,-1399],[-192,-672],[-213,-1208],[-281,-440],[-586,-492],[-334,131],[-870,890],[-855,633],[-409,-20],[-557,-609],[-694,-317],[-495,5],[-445,96],[-183,445],[-368,343],[-331,16],[-332,149],[-248,4],[-312,145],[-205,356],[-175,391],[-333,487],[-417,324],[-489,-42],[-246,-200]],[[559252,537124],[72,-186],[38,-167],[10,-183],[-12,-170],[-17,-177],[-39,-245],[-62,-210],[-90,-147],[-96,-95],[-104,-111],[-82,-90],[-32,-69],[-17,-72],[23,-124],[31,-162],[-30,-231],[-72,-185],[-76,-106],[-270,-65],[-291,52],[-181,67],[-160,31],[-70,-29],[-53,-22],[-35,-116],[-13,-215],[-13,-215],[-48,-308],[-38,-165],[-105,-345],[-123,-421],[-43,-185],[-19,-181],[8,-220],[44,-294],[47,-242],[52,-252],[37,-200],[-3,-222],[6,-241],[14,-237],[48,-694],[34,-170],[44,-144],[48,-180],[-31,-134],[-238,-149],[-232,-123],[-116,-72],[-532,-366],[-109,-118],[-51,-139],[30,-144],[99,-242],[113,-118],[218,-113],[235,-103],[85,-62],[113,-108],[150,-344],[58,-180],[165,-1254],[167,-407],[22,-175],[-95,-78],[-222,-123],[-211,-165],[-88,-143],[-86,-143],[-48,-227],[-26,-178],[-7,-384],[-42,-188],[-201,-626],[-219,-669],[-70,-169],[-164,-138],[-280,25],[-219,28],[-154,-28],[-121,-42],[-108,-78],[-98,-197],[-32,-176],[-37,-116],[-80,-208],[-164,-134],[-151,-130],[-152,-130],[-107,-162],[-4,-3],[-2,-1],[-102,-67],[38,-584],[107,-669],[241,-188],[289,-240],[96,-283],[187,-479],[-234,-43],[-150,-161],[-130,-578],[-82,-817],[-243,-224],[-237,-175],[-287,-167],[-199,-25],[-171,59],[-204,99],[-237,134],[-287,-109],[-243,-75],[88,-249],[164,-315],[250,-593],[44,-266],[52,-165],[79,-121],[92,-207],[103,-44],[193,-21],[58,-204],[29,-177],[117,-117],[81,-113],[43,-101],[46,-123],[64,-91],[-25,-64],[-21,-59],[-71,-75],[-53,-11],[-89,-155],[-57,-123],[-96,-112],[-120,-150],[-148,-168],[59,-302],[-29,-201],[7,-649],[92,-661],[-27,-515],[-86,-433],[-21,-610],[-55,-1065],[-274,-282],[-101,-262],[-147,-343],[-240,-262],[-166,-218],[-29,-201],[50,-654],[-82,7],[-122,-40],[-105,-42],[-127,-58],[-99,-100],[-188,-167],[-302,-160],[-119,43],[-252,92],[-271,292],[-220,150],[-276,-17],[-210,25],[-166,200],[-149,158],[-259,17],[-210,50],[-154,83],[-166,166],[-193,75],[-188,1],[-12,19],[-275,455],[-187,191],[-205,142],[-215,175],[-287,166],[-193,9],[-320,-34],[-204,0],[-216,-66],[-204,-75],[-154,50],[-210,235],[-144,49],[-134,-3],[-79,-145],[-35,-175],[28,-192],[100,-116],[126,-5],[120,-73],[87,-186],[-28,-184],[-1,-10],[-129,-331],[11,-86],[10,-86],[177,-338],[56,-179],[192,-827],[78,-485],[55,-237],[276,-77],[272,-497],[142,-146],[96,-175],[129,-175],[77,-162],[91,-137],[22,-176],[-214,-900],[-20,-552],[41,-219],[483,-614],[153,-428],[1,-191],[-79,-340],[37,-403],[-28,-225],[-7,-845],[-2,-1316],[206,-525],[149,-147],[78,-165],[113,-85],[142,-331],[42,-374],[-23,-779],[23,-244],[141,-362],[-46,-510],[-90,-389],[-206,-253],[-104,-311],[-412,-253],[206,-486],[155,-506],[0,-700],[-65,-545],[-141,-350],[-374,-292],[-374,-78],[-413,-78],[-251,-172],[-270,-118],[-202,-118],[-318,-104],[-329,15],[-314,-141],[-332,-122],[-203,-41],[-133,-111],[-142,-170],[-87,-167],[-129,-100],[-127,-14],[-131,-21],[-134,109],[-231,37],[-196,58],[-5,2],[-579,-141],[-147,-170],[-231,-30],[-201,15],[-373,-44],[-247,-142],[-273,-169],[196,-400],[59,-238],[-57,-397],[-57,-397],[23,-419],[150,-177],[235,-237],[187,-208],[49,-710],[37,-264],[49,-358],[173,-130],[179,-81],[44,-270],[58,-354],[98,-106],[-38,-346],[-66,-345],[62,-309],[50,-283],[-6,-276]],[[488337,491315],[-3808,715],[-237,45],[-265,50],[-2618,492],[-831,156],[-753,100],[-1926,254],[-988,130],[16,23],[18,24],[3,7],[3,6],[80,189],[69,160],[72,169],[39,62],[33,24],[60,70],[34,124],[21,171],[-14,119],[-41,83],[-54,57],[-39,238],[14,295],[31,129],[41,47],[48,67],[27,238],[18,192],[-21,176],[-53,190],[-53,141],[-18,29],[-60,97],[12,66],[38,57],[69,5],[58,-36],[45,-36],[75,-26],[139,-3],[50,3],[65,-26],[93,-104],[27,26],[24,52],[38,41],[41,31],[55,52],[96,187],[121,206],[30,52],[59,112],[68,132],[52,108],[24,118],[55,84],[20,13],[21,13],[113,68],[83,77],[24,78],[9,83],[11,124],[-10,67],[32,71],[43,56],[72,86],[21,88],[-14,119],[-20,103],[9,116],[28,76],[-20,62],[-34,52],[-107,82],[-41,104],[-57,171],[-10,76],[-19,63],[-40,136],[-42,129],[5,44],[16,35],[19,57],[11,50],[3,46],[0,48],[-1,48],[-7,113],[-21,79],[-4,20],[-12,62],[-13,95],[-13,99],[-16,144],[-17,69],[-20,35],[-59,116],[-25,34],[-11,14],[-19,34],[5,26],[12,17],[13,17],[29,7],[17,-7],[10,22],[9,26],[-5,28],[-16,9],[-9,19],[-4,29],[0,31],[-23,82],[-8,67],[-13,22],[-29,157],[-23,63],[2,54],[19,28],[29,4],[29,-16],[25,0],[21,22],[21,38],[24,55],[16,45],[23,67],[6,98],[-3,28],[-3,28],[-17,35],[-25,25],[-12,48],[-9,66],[0,53],[9,45],[16,50],[7,47],[-3,14],[-10,43],[-17,57],[-5,27],[-8,47],[-5,49],[-13,25],[-27,19],[-11,22],[0,35],[0,28],[-8,38],[-20,86],[-34,119],[-21,98],[-19,123],[-17,101],[-17,82],[-27,37],[-29,26],[-67,19],[-12,34],[-6,73],[-9,79],[-21,68],[-27,74],[-34,63],[-10,53],[6,29],[0,3],[13,6],[23,0],[14,16],[7,35],[4,18],[4,19],[6,35],[21,22],[23,0],[21,3],[19,22],[5,35],[3,35],[11,69],[10,60],[46,92],[15,15],[37,32],[43,28],[43,29],[27,41],[28,63],[12,39],[42,131],[19,99],[60,141],[13,41],[17,31],[6,44],[14,22],[28,10],[33,36],[10,10],[15,11],[23,-16],[4,0],[21,3],[15,12],[17,29],[12,38],[6,44],[28,57],[37,38],[32,25],[51,5],[27,4],[72,13],[29,35],[21,34],[21,60],[3,37],[1,83],[19,35],[23,19],[29,11],[26,14],[35,41],[31,50],[17,33],[17,34],[15,91],[16,28],[27,16],[9,25],[0,26],[-29,29],[-26,28],[-23,31],[-11,33],[-9,21],[-19,12],[-17,19],[-8,32],[0,25],[12,25],[27,28],[24,23],[24,22],[21,33],[15,22],[8,30],[-1,67],[-1,15],[9,17],[9,18],[30,34],[35,23],[32,6],[50,29],[22,37],[8,46],[-6,43],[-23,58],[-26,37],[-38,86],[-10,20],[-11,43],[-14,26],[-42,35],[-1,31],[34,118],[-2,60],[-10,45],[-17,33],[-19,20],[-38,0],[-66,-8],[-33,-21],[-34,-25],[-12,-35],[-19,-15],[-26,-17],[-36,15],[-14,11],[10,38],[17,14],[-8,23],[-15,17],[-11,7],[-21,11],[-14,11],[-27,23],[-30,33],[-30,35],[-52,64],[-26,37],[-12,41],[-9,26],[-19,28],[-29,38],[-36,25],[-19,11],[-45,24],[-26,14],[-12,5],[-26,10],[-17,1],[-17,2],[-42,0],[-42,14],[-23,29],[-25,25],[-15,12],[-22,17],[-19,10],[-18,10],[-14,10],[-19,15],[-12,11],[-23,22],[-30,40],[-15,22],[-13,33],[-13,34],[-4,101],[8,51],[15,69],[16,26],[9,26],[12,34],[20,29],[40,35],[35,40],[4,26],[-8,80],[-14,57],[-17,64],[-15,75],[-63,183],[-38,176],[-57,155],[-78,195],[-48,138],[-22,46],[-23,95],[-21,69],[-27,58],[-27,48],[-36,144],[-31,23],[-24,-35],[-27,38],[0,71],[12,78],[9,75],[213,194],[188,173],[217,198],[125,235],[96,153],[194,307],[290,460],[198,152],[99,76],[294,538]],[[479869,512923],[306,-245],[480,-785],[250,-127],[527,-269],[80,-9],[380,-38],[467,238],[437,442],[11,11],[84,91],[69,64],[9,8],[8,9],[125,125],[136,-219],[11,368],[12,12],[116,117],[10,10],[11,11],[131,132],[115,117],[22,22],[92,93],[97,182],[98,183],[92,172],[19,71],[12,47],[5,19],[26,95],[22,83],[13,48],[5,20],[21,76],[17,63],[16,61],[13,48],[38,141],[29,110],[10,34],[9,35],[13,49],[13,49],[59,221],[132,234],[132,234],[326,281],[476,411],[207,179],[118,102],[477,411],[518,653],[259,327],[144,182],[115,145],[53,67],[53,67],[190,240],[191,240],[68,86],[139,175],[243,306],[121,154],[122,153],[66,83],[551,377],[508,82],[574,-384],[89,-59],[170,-113],[146,13],[209,20],[135,13],[105,10],[40,44],[77,85],[765,850],[367,284],[130,101],[906,702],[245,355],[27,40],[176,344],[349,681],[518,165],[834,265],[103,33],[442,234],[94,50],[183,96],[14,8],[68,45],[70,46],[51,35],[162,125],[884,688],[74,50],[394,336],[137,117],[103,65],[216,185],[54,46],[47,36],[30,22],[2,2],[472,297],[291,183],[315,198],[300,190],[261,164],[61,38],[121,77],[818,515],[355,220],[138,87],[131,86],[89,57],[392,246],[504,318],[129,82],[32,20],[323,203],[320,202],[132,83],[233,192],[157,130],[105,87],[122,301],[133,201],[501,345],[793,690],[264,230],[357,395],[276,345],[153,258],[36,347],[-10,72],[-34,20],[-26,-20],[-32,-46],[-73,-42],[-45,-29],[-19,6],[-20,7],[-43,47],[-68,48],[-67,9],[-52,55],[-67,147],[-21,64],[1,67],[25,82],[47,66],[24,24],[50,72],[67,117],[546,518],[193,188],[105,135],[61,127],[79,232],[87,229],[106,170],[1021,1031],[1135,1052],[503,472],[502,460],[689,591],[40,125],[-8,108],[-52,71],[-186,102],[-312,167],[-285,185],[-204,237],[-117,281],[-34,251],[10,277],[120,366],[276,327],[992,642],[999,543],[704,501],[970,614],[535,250],[296,70],[328,53],[246,77],[249,123],[261,134],[329,66],[106,47],[76,126],[55,185],[75,78],[139,83],[340,155],[427,132],[376,119],[289,119],[764,293],[385,213],[348,203],[182,-18],[91,-155],[194,-298],[174,-132],[467,263],[100,96],[1133,1194],[638,441],[1047,596],[1171,691],[649,186],[726,500],[571,431],[338,170],[229,10],[286,-58],[88,-202],[314,-255],[158,-48],[240,16],[959,537],[730,377],[1131,660],[1878,1180],[111,70],[447,159],[480,160],[1403,957],[1203,943],[711,546],[779,526],[972,426],[1059,601],[2014,1605],[4022,2419],[1915,1632],[58,50],[1103,939],[1559,1330],[442,377],[51,43],[1767,1368],[68,52],[42,33],[43,33],[26,20],[41,32],[30,23],[48,37],[43,33],[65,51],[38,29],[44,34],[38,30],[44,33],[36,28],[32,25],[82,64],[7,5],[119,87],[214,159],[52,36],[335,274],[65,50],[1309,1009],[765,658],[372,274],[394,291],[285,210],[1033,763],[725,606],[174,146],[532,444],[497,261],[8,4],[103,54],[408,215],[1107,486],[48,21],[418,183],[230,102],[11,4],[640,288],[647,190]],[[637666,166230],[-4427,-148],[-1169,81],[-1114,77],[-581,40],[-1564,108],[-1337,92],[-2,0],[-1358,26],[-1375,26],[-270,5],[-3888,-42],[-962,0],[-1149,-129],[-380,-42],[-1623,-385],[-679,-284],[-266,-36],[-678,-92],[-368,-100],[-406,4],[-317,151],[-183,87],[-62,25],[-495,203],[-263,45],[-482,83],[-253,9],[-558,19],[-235,-19],[-200,-16],[-292,-7],[-62,-133],[-12,-78],[-30,-202],[-123,-242],[-207,-128],[-227,-57],[-5,-1],[-221,-42],[-290,5],[-331,221],[-135,190],[-260,204],[-31,291],[84,171],[-103,156],[-176,76],[-324,138],[-498,82],[-191,32],[-916,85],[-344,33],[-1500,142],[-1458,138],[-598,8],[-1795,24],[-1094,14],[-127,2],[-389,9],[-1838,43],[-1031,23],[-81,2],[-1996,63],[-827,26],[-288,2],[-3756,21],[-995,5],[-2015,-108],[-1957,-105],[-2991,-142],[-4460,-521],[-3364,-546]],[[566895,195663],[176,24],[273,132],[425,282],[349,264],[300,189],[324,287],[189,146],[210,77],[312,45],[292,48],[557,-30],[386,43],[199,185],[721,1338]],[[553295,422681],[-58,169],[-20,182],[107,842],[-38,357],[-112,215],[-143,187],[-121,148],[-172,130],[-173,79],[-224,346],[-154,335],[-30,161],[6,168],[17,80],[30,73],[96,186],[161,226],[73,149],[136,454],[28,107],[39,152],[14,203],[-63,168],[-119,176],[-132,154],[-449,442],[-163,264],[-54,178],[-229,426],[-64,181],[-669,1038],[-44,159],[-36,393],[-112,115],[-149,50],[-126,93],[-261,339],[-291,164],[-374,153],[-220,272],[-127,328],[-338,400],[-170,-1],[-262,-109],[-126,-9],[-303,75],[-115,111],[-339,680],[-53,184],[-4,15],[-161,325],[-256,257],[-84,34],[-304,121],[-270,194],[-309,328],[-383,299],[-55,155],[56,156],[106,110],[615,282],[367,311],[233,284],[85,190],[113,357],[91,149],[271,172],[239,226],[142,322],[84,368],[91,139],[114,87],[84,146],[58,180],[-14,194],[-65,164],[-166,201],[-19,23],[-3,3],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-4,5],[-23,28],[-119,144],[-357,433],[-83,173],[-32,152],[2,221],[56,187],[107,96],[268,32],[290,-12],[119,49],[35,15],[241,325],[37,189],[-213,781],[-49,364],[70,1094],[114,637],[-12,122],[-1,6],[-7,73],[-80,138],[-134,109],[-418,460],[-141,85],[-339,44],[-296,126],[-120,111],[-100,154],[-78,409],[-487,910],[-169,390],[-43,163],[-69,126],[-22,42],[-235,312],[-106,217],[-84,525],[-84,925],[-86,394],[-15,180],[-56,172],[-140,126],[-438,-134],[-128,-10],[-121,39],[-99,137],[-112,347],[-113,208],[-340,399],[-105,245],[-29,544],[56,649],[-4,327],[91,283],[318,169],[217,6],[247,-139],[164,34],[114,142],[27,187],[-14,402],[43,579],[-163,351],[-57,197],[-3,46],[-1,12],[-9,142],[28,177],[297,448],[290,502],[196,399],[36,213],[-121,79],[-125,-6],[-192,60],[-93,171],[-26,175],[69,185],[14,193],[-78,156],[-233,205],[-118,186],[-66,202],[7,189],[136,571],[112,147],[241,230],[316,505],[122,324],[15,172],[-36,167],[-297,154],[-176,136],[-361,701],[-121,132],[-253,155],[-339,-49],[-305,202],[-247,268],[-162,401],[-496,626],[-78,160],[-50,193],[66,806],[-71,407],[-28,763],[34,564],[109,539],[32,155],[107,216],[310,360],[268,165],[411,134],[78,148],[57,187],[-57,473],[57,359],[84,203],[72,362],[98,188],[71,212],[83,659],[1,222],[-89,721],[40,583],[48,333],[65,222],[134,230],[225,258],[66,177],[26,291],[-26,219],[-2,17],[-69,191],[-16,197],[64,157],[129,-14],[97,133],[263,71],[119,91],[50,217],[-1,202],[-81,201],[-7,18],[-208,517],[-49,781],[-87,138],[-102,13]],[[447407,511915],[-70,-65],[-31,-68],[-19,-74],[3,-92],[10,-88],[14,-52],[27,-34],[78,-56],[69,-16],[167,13],[75,0],[49,-16],[45,-46],[33,-64],[29,-91],[-2,-101],[-41,-90],[-74,-63],[-48,-192],[-4,-285],[-18,-212],[-22,-219],[-48,-153],[-118,-85],[-80,-160],[-5,-93],[-13,-179],[40,-306],[92,-404],[132,-319],[110,-165],[144,-121],[155,-72],[57,-79],[53,-160],[-5,-126],[-17,-132],[-98,-145],[-162,-141],[-167,-212],[-186,-198],[-185,-198],[-116,-179],[-115,-178],[-255,-222],[-158,-172],[-75,-166],[26,-259],[71,-365],[-102,-351],[-233,-306],[-79,-185],[95,-243],[191,-268],[70,-139],[66,-379],[-48,-205],[-182,-233],[-614,-557],[-383,-510],[-453,-770],[-391,-658],[-409,-655],[-215,-246],[-378,-285],[-467,-219],[-382,-352],[-504,-597],[-676,-1072],[-120,109],[-32,-113],[-11,-118],[54,-130],[128,-312],[-52,-172],[-290,-259],[-57,-194],[156,-171],[251,-206],[453,-595],[25,-229],[325,157],[82,-135],[4,-582],[-15,-570],[-271,-905],[-132,-910],[66,-105],[394,-165],[580,-379],[138,-251],[88,-484],[139,-597],[6,-12],[7,-15],[3,-8],[89,-193],[18,-246],[-15,-176],[-19,-220],[-1,-16],[-2,-16],[-16,-187],[-83,-269],[-3,-162],[32,-113],[171,-608],[154,-216],[46,-430],[243,-474],[167,-577],[94,-260],[149,-47],[150,-102],[161,-323],[257,-463],[248,-469],[20,-37],[381,-460],[57,26],[281,-212],[951,780],[615,357],[502,681],[225,519],[15,802],[234,1539],[418,1005],[361,851],[-11,677],[78,651],[768,408],[350,784],[259,442],[545,211],[821,317],[757,240],[586,186],[766,-670],[1460,-502],[221,-100],[616,-278],[1131,-462],[664,56],[1004,619],[661,758],[609,425],[429,-221],[339,-477],[-79,-1208],[-23,-1856],[-9,-126],[133,-78],[232,16],[91,62],[214,147],[305,209],[1404,962],[790,681],[790,732],[367,350],[117,112],[633,603],[632,603],[835,1022],[922,1217],[477,632],[667,425],[440,569],[1230,1481],[190,271],[318,454],[129,904],[18,124],[37,406],[19,207],[-60,534],[-232,534],[-834,1040],[-403,906],[-134,303],[-69,922],[-93,1250],[-34,315],[-37,342],[169,392],[486,306],[1815,1040],[234,-49],[292,-396],[345,-170],[595,364],[251,522],[485,435],[312,264],[302,286],[1424,1264],[535,492],[881,664],[820,12],[408,-352]],[[330879,414714],[-1494,-1630],[-1374,-3341],[-1560,-2115],[-1279,-659],[-242,29],[-181,22],[-520,1085],[-99,153],[-496,429],[-574,211],[-491,-114],[-1299,-768],[-70,-42],[-1150,-1082],[-1605,-2764],[-532,-564],[-1171,470],[-1131,-296],[-742,423],[-630,889],[-221,17],[-189,-38],[-81,-16],[-328,-282],[-1146,-1592],[-988,-1042],[-736,-1337],[-46,-2204],[-41,-356],[-132,-732],[80,-510],[466,-511],[1003,-217],[289,-213],[148,-475],[-25,-814],[-155,-185],[-273,-534],[-6,-291],[-267,-266],[-1526,-261],[-233,-354],[-183,99],[-195,435],[-193,226],[-1,2],[-86,40],[-156,67],[-79,17],[-53,11],[-182,-80],[-164,-122],[-333,-753],[-61,-303],[-14,-69],[-161,-186],[-2,-412],[46,-171],[88,-374],[160,-223],[267,-393],[80,-486],[33,-689],[238,-821],[169,-491],[-651,-927],[-519,-746],[-422,164],[-751,340],[-282,71],[-359,-238],[-97,79],[-142,116],[-303,302],[-255,-254],[-315,191],[-134,82],[-378,-537],[-205,-939],[-63,-315],[58,-305],[266,-339],[197,-488],[78,-946],[-538,-833],[-5,-7],[-305,-678],[-28,-469],[17,-309],[-168,-346],[-687,-215],[-471,-462],[-97,-558],[-25,-146],[-5,-24],[-2,-15],[-2,-13],[-3,-12],[-1,-11],[-1,-4],[-4,-20],[0,-4],[-1,-4],[-67,-962],[-125,-421],[-172,-293],[-190,-240],[-216,-271],[-45,-25],[-225,-127],[-103,-68],[-364,-137],[-494,255],[-367,447],[-249,760],[-613,1265],[-1619,1564],[-552,-70],[-535,-153],[-386,-110],[-518,-148],[-206,-206],[-106,-82],[-143,-17],[-471,-106],[-74,-51],[-51,-92],[-30,-83],[-3,-128],[398,-631],[421,-714],[-68,-100],[-60,-89],[-89,-188],[-136,-364],[-27,-269],[88,-407],[-56,-110],[-151,-180],[-170,-209],[-69,-84],[-289,-368],[-232,-264],[-55,-63],[-139,-158],[-555,-1300],[-874,-1538],[-551,-824],[-13,-23],[-526,-964],[-174,-319],[-280,-70],[-195,70],[-154,44],[-93,-2],[-16,-3],[-20,-4],[-57,-10],[-182,-33]],[[178091,433111],[131,24],[73,40],[65,31],[47,19],[23,46],[23,47],[39,106],[42,127],[35,105],[31,81],[22,54],[26,50],[31,58],[56,66],[80,91],[158,213],[194,251],[133,153],[19,40],[8,38],[0,42],[-22,81],[-12,73],[-9,99],[-3,130],[2,79],[2,73],[14,74],[9,44],[16,77],[19,60],[35,71],[38,46],[42,34],[28,3],[16,-15],[18,-25],[26,-15],[31,1],[36,14],[39,29],[57,71],[74,109],[42,57],[27,21],[33,10],[35,3],[27,-12],[24,-29],[10,-47],[10,-34],[23,-32],[57,-67],[51,-52],[37,-29],[30,-19],[34,-2],[26,10],[23,33],[18,46],[8,51],[-5,41],[-18,53],[-34,98],[-30,67],[-31,66],[-14,72],[2,99],[14,94],[10,92],[-14,118],[-9,82],[-6,150],[-6,85],[-6,87],[-15,90],[-7,124],[8,97],[19,90],[35,85],[87,145],[41,45],[42,16],[42,-26],[28,-37],[5,-39],[-2,-58],[6,-28],[19,-12],[28,16],[106,108],[19,25],[113,148],[123,214],[120,182],[71,101],[59,63],[44,39],[33,0],[43,-5],[91,-71],[61,-34],[71,-29],[51,-31],[48,-50],[28,-48],[37,-65],[38,-37],[40,-42],[49,-82],[37,-97],[31,-100],[23,-71],[10,-65],[-10,-58],[-28,-71],[-6,-50],[8,-102],[3,-108],[9,-102],[22,-77],[35,-71],[42,-42],[42,-23],[64,-14],[35,25],[48,27],[109,27],[146,58],[356,89],[296,137],[120,47],[144,95],[185,97],[125,63],[55,55],[33,48],[13,76],[14,139],[19,114],[15,84],[41,80],[26,37],[30,3],[54,-50],[92,-110],[135,-147],[48,-100],[22,-138],[17,-162],[8,-81],[39,-118],[21,-71],[-2,-82],[-28,-73],[-38,-43],[-77,6],[-76,-31],[-70,-22],[-113,-42],[-68,-43],[-52,-60],[-28,-45],[-25,-99],[-18,-72],[10,-63],[37,-63],[43,-72],[46,-82],[122,-184],[114,-122],[61,-57],[67,-23],[86,-34],[104,-37],[112,10],[69,32],[75,31],[65,63],[31,45],[16,74],[-16,50],[-52,86],[-52,87],[-80,131],[-74,169],[-17,90],[0,62],[19,56],[33,45],[33,39],[48,71],[87,193],[65,144],[32,35],[44,18],[100,-6],[98,16],[119,-1],[207,36],[149,26],[83,15],[51,16],[60,51],[71,61],[107,144],[55,102],[42,116],[-6,32],[-11,39],[-32,47],[-33,14],[-57,10],[-23,19],[-5,39],[14,94],[12,85],[7,47],[-14,110],[-14,103],[11,115],[45,176],[50,98],[72,65],[84,24],[62,-13],[59,-40],[53,-92],[32,-55],[35,-62],[32,-69],[56,-47],[92,-48],[92,-68],[79,-60],[129,-132],[125,-133],[39,-45],[37,-36],[48,-28],[62,-22],[71,26],[61,28],[57,55],[45,86],[49,145],[38,195],[76,387],[16,83],[26,58],[34,20],[50,35],[51,34],[64,66],[111,141],[88,117],[50,106],[19,88],[-8,71],[-7,35],[-13,15],[-25,18],[-27,13],[-24,21],[-31,29],[-27,41],[-28,46],[-21,41],[-21,48],[-13,50],[-7,42],[-13,27],[-20,22],[-32,12],[-42,29],[-21,42],[-10,31],[-3,21],[7,19],[20,36],[33,76],[13,63],[13,62],[15,73],[16,43],[17,64],[2,53],[3,74],[-19,102],[-19,79],[-30,55],[-56,95],[-15,26],[-13,55],[3,36],[21,36],[48,52],[48,92],[173,696],[21,76],[50,75],[53,81],[116,110],[126,134],[92,128],[52,95],[20,68],[-2,79],[-2,184],[-2,189],[18,95],[38,79],[47,50],[58,23],[54,-10],[27,-42],[21,-48],[-3,-55],[-14,-94],[-16,-64],[12,-39],[28,-20],[44,28],[36,18],[44,-10],[61,-21],[52,-16],[58,18],[62,11],[72,5],[69,-13],[30,-16],[24,-34],[18,-67],[16,-61],[3,-82],[-7,-68],[-23,-61],[-34,-55],[-13,-37],[-7,-47],[17,-22],[34,11],[45,0],[42,-15],[33,-27],[35,-42],[38,-68],[35,-53],[23,-47],[35,-102],[42,-125],[10,-80],[7,-95],[-5,-71],[-6,-68],[11,-55],[28,-21],[50,-16],[63,-37],[64,-34],[53,-66],[29,-52],[32,-77],[14,-97],[11,-104],[16,-130],[28,-157],[23,-129],[35,-108],[29,-63],[30,-81],[33,-59],[54,-44],[52,-2],[35,36],[73,87],[80,129],[100,158],[73,147],[28,107],[8,82],[9,184],[16,105],[39,88],[67,98],[60,102],[82,140],[53,142],[51,139],[35,77],[36,44],[51,27],[44,-3],[38,-29],[71,-2],[71,20],[133,8],[179,-19],[127,6],[108,29],[101,37],[68,60],[75,105],[40,69],[19,79],[6,78],[-7,82],[-25,79],[-85,142],[-92,149],[-47,59],[-79,52],[-59,65],[-51,74],[-40,97],[-10,66],[12,47],[26,40],[42,36],[92,42],[58,35],[54,57],[36,42],[29,89],[78,132],[87,92],[59,63],[70,55],[78,13],[77,-15],[130,-27],[105,-28],[102,-46],[91,-41],[126,-53],[113,-39],[103,-40],[95,-75],[100,-127],[50,-60],[51,-61],[101,-94],[62,-82],[41,-34],[57,-8],[56,19],[43,57],[63,169],[45,134],[15,98],[-9,133],[-32,97],[-31,110],[-12,100],[7,105],[10,158],[23,105],[31,79],[44,58],[41,47],[68,21],[61,8],[58,-8],[137,-74],[79,-57],[85,-37],[93,-29],[113,5],[94,8],[113,0],[188,-62],[83,-15],[91,51],[78,108],[45,70],[65,68],[31,98],[28,144],[9,94],[-17,85],[-37,21],[-42,-4],[-45,-47],[-54,-13],[-61,17],[-57,30],[-28,71],[-39,43],[-48,111],[-20,102],[-42,51],[-48,0],[-53,34],[-40,76],[-50,110],[-9,119],[17,140],[-8,89],[-14,97],[11,167],[-9,152],[-19,183],[-20,178],[-31,140],[-31,102],[-62,55],[-59,39],[-84,-13],[-43,42],[-36,64],[-37,98],[-42,119],[-8,106],[-23,85],[-25,110],[-31,102],[8,106],[17,89],[37,81],[81,59],[299,200],[168,127],[158,191],[70,115],[14,72],[-8,64],[-31,25],[-48,38],[-42,13],[-42,38],[0,77],[19,97],[20,85],[40,30],[45,-13],[78,0],[76,26],[62,51],[45,63],[14,109],[-11,70],[-25,63],[-37,102],[-19,98],[-23,89],[7,136],[33,107],[13,41],[31,191],[12,264],[5,216],[-14,132],[-31,152],[-36,81],[-57,60],[-67,50],[-56,73],[-60,51],[-67,34],[-51,55],[-50,59],[-43,68],[-16,127],[2,111],[20,87],[0,87],[-20,93],[-25,102],[-11,94],[22,80],[37,64],[31,68],[62,0],[62,-17],[62,21],[67,38],[149,204],[54,51],[59,0],[67,-30],[74,-38],[56,-30],[60,32],[44,36],[53,-8],[57,-64],[49,-137],[117,-193],[59,-35],[65,-21],[47,-51],[26,-85],[-6,-93],[-31,-80],[-51,-56],[-50,-77],[-31,-85],[-17,-127],[8,-81],[34,-68],[56,-25],[71,4],[90,17],[96,17],[73,26],[157,80],[209,179],[84,97],[28,77],[70,72],[85,89],[87,81],[107,29],[82,13],[81,-38],[70,-68],[46,-85],[45,-59],[45,-2],[59,14],[62,60],[33,131],[-2,200],[87,131],[127,187],[104,217],[129,195],[127,234],[42,118],[34,153],[53,128],[62,93],[54,68],[64,21],[65,21],[79,-25],[98,-77],[121,-55],[113,-72],[138,-98],[107,-42],[107,34],[121,8],[95,43],[73,55],[54,115],[28,140],[-14,242],[-39,165],[15,204],[49,319],[40,97],[22,81],[23,89],[5,81],[-47,72],[-93,4],[-82,67],[-73,120],[-62,59],[-68,94],[-59,68],[-47,106],[-29,123],[20,131],[25,115],[51,85],[118,72],[130,98],[180,140],[104,80],[90,26],[104,51],[68,51],[53,72],[42,76],[9,92],[-9,91],[6,106],[14,115],[3,123],[8,106],[9,102],[41,61],[125,100],[56,64],[65,38],[59,-8],[84,-30],[73,-26],[51,-63],[45,-90],[39,-80],[34,-89],[62,-136],[59,-47],[59,-30],[49,-24],[35,-39],[49,-38],[62,-60],[47,-42],[59,-39],[48,-4],[59,-8],[43,-21],[50,-22],[68,-34],[65,-25],[61,-30],[88,17],[526,4],[233,77],[175,59],[96,38],[93,9],[73,4],[53,-8],[40,-22],[39,-51],[0,-67],[-11,-37],[-12,-36],[-59,-85],[-42,-106],[-48,-93],[-28,-106],[-42,-183],[-25,-127],[-15,-270],[8,-460],[38,-119],[53,-110],[51,-107],[81,-72],[62,-106],[34,-89],[3,-110],[70,-382],[17,-124],[11,-114],[14,-111],[10,-36],[10,-36],[23,-68],[47,-63],[48,-56],[85,-182],[70,-81],[24,-9],[3,-1],[63,-24],[76,-8],[54,55],[50,64],[17,76],[0,98],[0,93],[-3,89],[-14,77],[-31,114],[-25,106],[-11,98],[31,64],[25,72],[25,110],[34,128],[37,131],[31,123],[39,187],[28,153],[3,170],[0,148],[6,136],[45,123],[24,30],[74,89],[82,123],[73,98],[50,89],[34,149],[48,165],[39,170],[15,115],[25,72],[42,25],[56,-4],[57,-25],[62,-73],[81,-76],[62,4],[56,-25],[34,-9],[45,43],[56,80],[62,60],[86,76],[66,106],[48,98],[34,72],[45,30],[56,-17],[65,-47],[20,-97],[-9,-94],[23,-76],[48,-51],[98,-47],[96,-8],[93,29],[81,17],[87,34],[68,26],[84,-9],[62,-29],[73,0],[68,0],[55,6],[60,28],[57,38],[36,51],[4,29],[5,30],[-40,89],[-76,77],[-33,135],[-48,124],[-39,78],[-85,28],[-65,4],[-56,76],[-48,51],[-51,-17],[-47,0],[-20,64],[-23,72],[17,94],[68,38],[62,25],[25,85],[17,119],[42,115],[6,89],[22,59],[20,17],[20,17],[45,-13],[208,-46],[101,25],[135,51],[158,60],[143,114],[169,183],[68,110],[70,144],[37,141],[-26,106],[-50,152],[-23,145],[54,153],[56,123],[37,165],[30,149],[-8,148],[-14,124],[48,191],[20,169],[22,141],[118,178],[256,204],[73,76],[65,85],[130,131],[168,81],[105,21],[107,73],[157,131],[253,111],[231,110],[180,25],[158,-46],[87,-51],[20,-94],[74,-89],[148,-30],[35,13],[148,51],[51,68],[25,115],[8,140],[31,127],[57,98],[123,72],[150,68],[205,0],[174,-35],[122,-25],[137,-17],[85,-46],[135,12],[194,43],[200,-51],[115,-98],[124,-89],[37,18],[38,18],[49,96],[22,131],[6,102],[20,106],[70,90],[93,50],[82,56],[50,46],[54,43],[45,13],[28,-51],[34,-56],[67,-21],[85,-8],[59,-30],[70,-34],[76,-34],[73,-55],[31,-33],[79,-86],[77,-173],[95,-150],[62,-76],[36,-102],[17,-136],[25,-102],[28,-59],[57,-26],[142,60],[167,106],[118,76],[102,34],[84,51],[54,73],[48,135],[50,153],[48,132],[39,114],[37,64],[48,64],[53,21],[82,-17],[166,-119],[225,-195],[149,-132],[73,-46],[57,-34],[78,46],[85,77],[98,38],[90,51],[65,64],[28,135],[31,145],[-28,127],[-62,98],[-79,212],[0,166],[74,195],[121,573],[135,131],[132,170],[52,75],[58,121],[56,118],[67,153],[60,106],[61,60],[62,25],[54,-25],[65,-21],[87,12],[87,0],[79,13],[76,47],[48,106],[31,119],[73,76],[95,43],[74,34],[70,-13],[42,-85],[31,-153],[62,-97],[17,-26],[179,-142],[57,-66],[113,-51],[282,-84],[219,-26],[87,0],[54,42],[32,101],[29,171],[37,229],[8,157],[48,144],[147,125],[64,79],[88,81],[92,72],[82,21],[90,-8],[96,-60],[65,-97],[42,-72],[48,-43],[50,-25],[59,-9],[79,9],[76,76],[56,42],[88,30],[101,4],[63,-2],[64,-2],[106,-51],[62,-89],[26,-127],[33,-115],[78,-99],[89,-156],[60,-119],[101,-120],[128,-66],[102,-17],[112,-9],[149,22],[197,34],[166,39],[169,3],[279,4],[138,13],[70,-21],[39,-89],[54,-124],[70,-97],[73,-98],[9,-123],[17,-157],[62,-250],[73,-200],[248,-422],[75,-130],[31,-136],[16,-146],[21,-130],[25,-127],[28,-76],[51,-56],[59,-46],[68,17],[101,29],[132,-25],[154,-79],[114,-74],[73,-153],[48,-93],[39,-98],[62,-72],[73,4],[87,-38],[105,0],[84,-4],[87,-47],[93,-97],[68,-149],[122,-115],[63,-68],[85,34],[236,153],[225,162],[211,263],[62,123],[31,259],[0,157],[28,161],[88,217],[126,293],[124,195],[104,136],[113,178],[143,161],[124,115],[132,4],[186,-102],[37,-106],[50,-161],[64,-178],[38,-94],[61,-127],[144,-145],[132,-101],[118,-123],[93,-43],[90,0],[71,68],[36,85],[5,145],[-27,194],[-42,247],[-9,259],[20,220],[50,272],[46,149],[50,119],[110,93],[175,91],[95,41],[96,38],[81,21],[93,47],[107,110],[45,110],[6,115],[-9,102],[-8,132],[-14,144],[11,161],[56,111],[197,192],[170,129],[75,99],[56,59],[71,4],[90,-72],[203,-178],[236,-200],[270,-140],[276,-89],[250,-12],[428,114],[355,136],[137,93],[265,115],[93,59],[81,115],[40,127],[-23,140],[-72,74],[-51,37],[-116,151],[-50,65],[-82,13],[-99,43],[-92,72],[-71,68],[-36,72],[-17,102],[28,127],[67,72],[82,34],[107,60],[135,38],[118,42],[116,55],[137,102],[121,149],[102,85],[143,38],[121,34],[119,51],[132,85],[107,119],[107,123],[107,85],[332,97],[140,98],[144,140],[96,144],[45,140],[8,128],[76,114],[115,77],[155,8],[127,39],[118,42],[84,59],[38,69],[97,246],[121,267],[48,72],[65,38],[79,-8],[84,-38],[155,-34],[234,-26],[183,-106],[186,-201],[30,-32],[234,-47],[240,45],[115,23],[126,-34],[169,-161],[164,-96],[151,-138],[166,-182],[242,-124],[180,-17],[161,34],[132,145],[219,263],[172,178],[127,140],[104,132],[90,136],[79,157],[64,178],[34,94],[28,182],[3,178],[3,183],[11,123],[45,85],[110,76],[180,51],[135,43],[93,-9],[70,-85],[26,-93],[-20,-123],[-16,-124],[41,-37],[102,42],[112,76],[101,77],[144,161],[248,433],[140,327],[51,267],[3,136],[17,140],[59,140],[62,102],[92,34],[102,-12],[267,38],[24,1],[421,20],[239,76],[469,409],[300,261],[4,3],[142,143],[174,114],[163,55],[141,13],[128,-27],[10,-3],[121,-123],[163,-85],[312,-110],[271,-68],[109,25],[161,64],[709,565],[473,611],[306,399],[144,217],[178,130],[506,188],[312,216],[512,374],[386,161],[619,374],[231,61],[349,-14],[315,59],[304,115],[239,165],[388,357],[141,216],[146,179],[141,131],[146,43],[124,21],[146,-17],[155,-38],[386,21],[183,34],[540,344],[20,14],[10,7],[13,10],[17,12],[1,1],[91,66],[87,123],[65,111],[39,68],[34,93],[-3,98],[6,169],[25,149],[34,157],[45,102],[82,64],[84,68],[59,80],[65,72],[77,24],[69,20],[208,-9],[200,-30],[87,-56],[200,-7],[48,1],[149,2],[251,-30],[183,-59],[160,-64],[187,-64],[71,-24],[223,-14],[173,7],[396,15],[253,-5],[141,26],[123,64],[150,89],[50,59],[26,94],[11,182],[36,178],[29,196],[14,178],[-9,119],[-22,144],[-136,492],[-25,166],[-14,204],[-17,212],[-33,195],[-45,225],[-60,238],[-25,157],[-14,128],[-10,284],[-7,195],[-11,556],[8,429],[9,204],[45,118],[191,463],[54,94],[70,55],[51,21],[45,-38],[17,-123],[33,-170],[36,-151],[7,-104],[33,-55],[34,-25],[70,63],[96,64],[39,60],[65,46],[161,47],[174,38],[183,-30],[121,-63],[90,-85],[122,-258],[129,-273],[182,-318],[147,-280],[87,-119],[104,-94],[76,-34],[79,-21],[70,34],[51,68],[17,153],[-17,174],[-51,195],[-64,297],[-9,225],[28,238],[76,217],[65,72],[113,25],[190,52],[211,27],[109,-14],[111,-48],[299,-93],[220,-63],[146,-22],[112,-8],[99,38],[78,59],[92,55],[308,208],[110,81],[81,72],[79,94],[45,76],[32,127],[44,174],[65,234],[71,207],[140,243],[98,212],[82,136],[118,72],[79,17],[99,-47],[233,26],[194,-38],[203,-89],[110,-60],[33,-53],[34,-53],[366,-700],[90,-136],[65,-94],[67,-63],[68,-51],[96,-51],[123,-34],[108,-10],[58,35],[119,-4],[104,-26],[98,-33],[135,-9],[155,30],[118,38],[99,30],[28,-3],[62,-6],[126,-30],[88,-43],[67,-33],[222,-178],[54,-36],[82,-53],[115,-30],[124,8],[147,17],[106,60],[94,130],[83,260],[45,276],[7,153],[5,157],[56,123],[67,39],[87,32],[102,27],[228,-81],[165,-38],[128,-17],[54,22],[55,23],[107,48],[450,213],[112,103],[144,149],[117,196],[92,255],[121,365],[71,168],[14,33],[115,127],[109,192],[105,200],[119,96],[153,54],[270,25],[230,-98],[219,-47],[156,17],[303,73],[91,19],[207,42],[261,141],[215,209],[119,183],[109,176],[96,195],[46,94],[34,127],[31,170],[48,162],[123,203],[140,119],[121,59],[88,39],[88,-13],[132,-25],[149,-30],[127,-55],[296,-228],[115,-99],[92,-17],[93,21],[76,48],[102,34],[157,24],[145,51],[100,34],[265,169],[168,133],[51,63],[53,81],[40,93],[0,102],[-34,72],[-51,60],[-101,83],[-56,44],[-59,38],[-65,14],[-114,-55],[-114,-22],[-62,-9],[-76,51],[-95,72],[-41,93],[-10,60],[21,122],[176,132],[62,40],[138,91],[60,51],[9,8],[5,4],[92,78],[163,56],[163,29],[186,5],[422,-47],[298,-72],[192,-17],[270,-85],[239,-94],[189,-55],[177,-42],[177,17],[172,21],[160,59],[152,81],[166,242],[493,751],[64,136],[59,119],[51,81],[82,59],[118,81],[176,52],[136,63],[383,250],[133,96],[287,207],[157,113],[52,42],[74,60],[65,85],[62,63],[23,81],[4,90],[-33,279],[-8,196],[3,131],[34,179],[36,119],[42,106],[90,89],[167,97],[303,170],[163,65],[29,12],[171,85],[144,123],[172,182],[177,178],[110,102],[115,22],[82,-26],[33,-76],[0,-85],[3,-123],[-14,-70],[28,-96],[40,-85],[70,-17],[59,17],[87,30],[119,42],[219,124],[141,127],[59,89],[28,140],[-28,123],[-56,98],[-90,85],[-23,68],[-3,178],[17,123],[31,123],[39,136],[74,115],[81,106],[161,136],[177,131],[211,136],[189,68],[233,51],[169,-47],[169,-89],[134,-137],[219,-237],[145,-127],[135,-81],[152,-21],[73,26],[76,1],[93,-6],[101,-12],[93,-17],[70,4],[68,17],[48,76],[42,145],[8,131],[14,188],[52,225],[22,203],[-9,165],[-3,141],[-2,165],[22,153],[28,119],[76,80],[85,73],[104,114],[70,77],[71,34],[67,12],[51,-59],[39,-98],[48,-97],[67,-73],[60,-67],[28,-136],[14,-145],[-6,-220],[-31,-123],[-11,-124],[6,-157],[14,-208],[59,-225],[34,-169],[8,-158],[-45,-191],[-59,-229],[-14,-195],[-6,-217],[23,-259],[25,-309],[20,-166],[8,-195],[25,-166],[45,-161],[48,-157],[40,-98],[48,-72],[84,-13],[143,-17],[119,0],[104,0],[112,-34],[79,-34],[113,-152],[129,-111],[341,-134],[98,-36],[82,-87],[42,-70],[53,-51],[64,2],[63,-7],[127,-23],[85,-37],[49,-57],[28,-75],[4,-79],[-20,-174],[6,-186],[-12,-141],[-42,-84],[-81,-60],[-82,21],[-70,34],[-88,-38],[-241,-208],[-124,-59],[-240,-20],[-213,-86],[-88,-60],[-84,-59],[-68,-98],[-31,-89],[14,-123],[76,-136],[85,-119],[118,-225],[152,-144],[155,-145],[231,-101],[149,-17],[194,17],[231,29],[121,21],[126,-8],[85,-42],[59,-34],[62,-47],[36,-85],[6,-204],[56,-475],[90,-433],[135,-370],[110,-229],[62,-127],[77,-86],[78,-34],[155,-18],[157,-28],[414,72],[332,9],[188,4],[96,-34],[79,-46],[90,-68],[76,-73],[42,-106],[17,-174],[-8,-161],[-29,-102],[-95,-64],[-82,-68],[-73,-80],[-58,-58],[-74,-133],[-37,-108],[-28,-177],[-11,-174],[-14,-165],[8,-119],[25,-106],[43,-72],[64,-43],[88,-8],[112,51],[93,101],[87,73],[90,59],[107,34],[144,4],[95,-4],[85,-8],[65,-9],[61,-34],[57,-93],[53,-149],[59,-221],[43,-216],[45,-166],[42,-89],[45,-59],[34,-22],[25,-16],[81,-13],[68,63],[48,71],[65,40],[115,59],[200,106],[242,107],[98,4],[102,-21],[104,-30],[95,-34],[71,-60],[73,-93],[36,-136],[8,-154],[-33,-113],[-39,-115],[-14,-136],[31,-102],[53,-55],[85,-42],[87,25],[193,-4],[426,115],[141,97],[118,119],[115,200],[177,377],[141,306],[64,219],[57,227],[146,535],[113,250],[61,82],[85,118],[99,55],[98,21],[85,17],[140,64],[130,102],[110,123],[84,144],[87,157],[62,166],[37,212],[48,301],[76,412],[59,344],[59,242],[59,191],[65,127],[107,153],[239,225],[81,128],[59,123],[51,148],[82,115],[43,50],[38,43],[71,55],[62,26],[81,-34],[79,-115],[127,-97],[239,-81],[155,-34],[89,-50],[145,-136],[129,-179],[87,-42],[141,8],[109,14],[161,54],[332,81],[380,152],[101,73],[101,85],[96,76],[84,115],[71,123],[39,178],[6,276],[-6,208],[-36,229],[-51,251],[-68,195],[-67,131],[-14,128],[39,93],[100,88],[2,1],[106,60],[96,-15],[82,-32],[112,9],[58,31],[75,16],[115,12],[182,-86],[159,-120],[42,-68],[50,-108],[68,-140],[83,-82],[84,-147],[98,-157],[101,-98],[90,-38],[174,0],[135,8],[147,64],[140,76],[102,85],[56,60],[53,63],[62,47],[45,42],[65,5],[53,-26],[80,-43],[79,-16],[36,21],[64,48],[96,12],[93,21],[104,68],[107,72],[65,89],[87,178],[76,149],[73,174],[65,267],[25,276],[34,174],[62,196],[76,229],[79,157],[121,153],[138,89],[129,80],[146,30],[166,26],[127,-22],[84,-72],[82,-72],[79,-110],[50,-111],[37,-288],[48,-111],[93,-68],[95,-34],[79,9],[172,115],[163,42],[84,-9],[124,-107],[85,-24],[129,-30],[104,43],[88,51],[112,127],[124,140],[116,93],[112,136],[115,4],[82,-80],[59,-115],[22,-123],[3,-174],[-39,-157],[-87,-72],[-85,-26],[-65,-97],[-11,-119],[40,-111],[70,-72],[73,-42],[68,-21],[129,-26],[73,-85],[31,-174],[-39,-123],[-87,-64],[-33,-53],[-32,-116],[39,-247],[37,-173],[22,-153],[34,-92],[3,-104],[-37,-144],[-2,-153],[14,-221],[78,-301],[74,-183],[370,-915],[43,-68],[42,-69],[96,-119],[123,-122],[78,-34],[103,-48],[110,-157],[84,-149],[79,-199],[28,-212],[45,-204],[73,-349],[105,-335],[84,-229],[84,-178],[127,-166],[85,-68],[137,-4],[93,38],[99,115],[76,115],[610,1057],[142,333]],[[309311,193760],[-37,-56],[-27,-110],[1,-114],[-101,76],[-38,2],[-34,-17],[-74,-49],[-23,-23]],[[308978,193469],[-15,29],[-14,42],[-450,136],[-1089,645],[-8932,5295],[-39,24],[-197,116],[-69,41],[-1755,1040],[-46,28],[-1775,1052],[-564,335],[-3964,2349],[-3106,1842],[-54,32],[-115,59],[-74,57],[-59,61],[-73,41],[-197,158],[-203,117],[-271,161],[-49,53],[-71,13],[-35,46],[-41,31],[-39,25],[-48,58],[-34,79],[-19,54],[-18,54],[-33,77],[-21,100],[18,117],[14,330],[4,212],[-25,130],[-27,108],[-37,117],[-81,121],[-24,36],[-170,251],[-922,1370],[-84,53],[-69,42],[-201,15],[-696,-30],[-199,-40],[-145,10],[-138,67],[-62,89],[-748,874],[-137,178],[-121,-12],[-113,-104],[-255,-335],[-113,-74],[-138,0],[-101,37],[-101,134],[-328,910],[-97,317],[-101,159],[-178,287],[-154,299],[-211,116],[-169,140],[-72,75],[-74,78],[-617,918],[-152,-50],[-189,-64],[-245,108],[-304,351],[-25,242],[-26,281],[-88,132],[-55,59],[-55,60],[-229,257],[-593,659],[-242,269],[-119,131],[-52,165],[-52,164],[230,502],[4,328],[-94,171],[-93,170],[-75,148],[52,539],[-13,300],[-12,300],[19,328],[36,613],[-375,1499],[152,1026],[163,556],[837,710],[516,3626],[59,266],[100,221],[117,133],[199,85],[120,-15],[398,143],[535,264],[1055,262],[803,522],[363,103],[770,-204],[657,-75],[417,88],[550,622],[150,381],[13,186],[-42,304],[-148,512],[-127,963],[28,207],[282,738],[520,632],[236,345],[255,-82],[247,-154],[198,-57],[149,137],[76,532],[65,240],[-64,480],[-248,346],[-217,172],[-207,223],[-114,219],[-677,405],[-260,273],[13,186],[49,156],[50,70],[171,698],[82,135],[106,-21],[143,-134],[140,124],[87,159],[33,630],[-56,159],[-84,157],[-113,71],[-346,117],[-78,116],[148,766],[-8,211],[-134,303],[248,959],[20,187],[150,370],[-21,140],[14,158],[325,353],[232,128],[291,45],[170,126],[49,162],[-58,300],[-97,265],[120,673],[119,306],[151,80],[386,-5],[608,-233],[390,-86],[246,-18],[369,66],[394,408],[383,-8],[204,-56],[191,43],[451,-26],[84,83],[89,243],[238,440],[43,127],[261,443],[557,527],[305,848],[58,434],[26,718],[106,319],[292,463],[56,166],[19,314],[-49,136],[-239,329],[128,208],[394,261],[566,503],[219,381],[78,210],[30,167],[-15,143],[-186,389],[-324,316],[0,121],[44,241],[-25,89],[-4,16],[-105,120],[-828,623],[-474,95],[-522,262],[-411,387],[-311,412],[-189,192],[-149,152],[-157,71],[-248,-63]],[[289536,258887],[0,1],[0,1]],[[289536,258889],[1,1],[0,1]],[[289537,258892],[0,1],[0,1]],[[319281,270000],[-54,-109]],[[319213,269864],[-203,-391]],[[319155,224736],[25,-667],[0,-455],[41,-394],[203,-674],[190,-961],[434,-2194],[55,-276],[-59,-599],[-5,-352],[48,-320],[185,-520],[35,-196],[-13,-155],[-64,-88],[-11,-160],[-69,-1328],[-31,-232],[-11,-216],[48,-192],[53,-216],[106,-176],[111,-112],[149,-32],[100,-120],[64,-224],[-89,-37],[-90,-38],[141,-210],[286,-493],[291,-490],[228,-313],[180,-751],[104,-418],[394,-375],[228,-658],[-62,-615],[-119,-328],[-17,-49],[-3,-9],[-41,-218],[32,-499],[-348,-469],[-306,-279],[-331,-370],[-237,113],[-565,-517],[0,-1],[-161,-473],[-138,-637],[-232,-346],[-259,-294],[-399,-210],[-298,-293],[-97,-145],[-79,-105],[-120,-157],[-213,-130],[-63,-142],[-57,-149],[-443,-543],[-766,-811],[-303,-180],[-200,-119],[-1,-1],[-126,-167],[-300,-427],[-273,-300],[-482,-391],[-238,-130],[-304,-287],[-320,-302],[-329,-243],[-145,-107],[-435,-298],[-185,-58],[-361,58],[-1250,-511],[-1185,-346],[-497,-376],[-76,-419],[-2,-13],[-34,-199],[-116,-455],[-115,-455],[-193,-765],[-165,-656],[-38,-253],[-3,-12],[-1,-7],[-175,-1071],[25,-97],[48,-71]],[[395740,234895],[633,206]],[[396873,235262],[0,-8],[-4,-146],[0,-4],[-1,-15],[0,-16],[-3,-96],[0,-1],[-1,-64],[-70,-2616],[0,-22],[0,-2],[-1,-10],[-17,-665],[0,-1],[-3,-115],[-5,-224],[-15,-831],[-13,-660],[0,-1],[-8,-439],[-8,-376],[25,-898],[3,-91],[41,-1504],[10,-352],[6,-107],[59,-1054],[1,-55],[1,-22],[1,-16],[1,-60],[2,-58],[0,-2],[0,-5],[1,-20],[0,-9],[3,-73],[0,-15],[1,-20],[6,-207],[1,-13],[0,-1],[0,-2],[0,-14],[10,-302],[0,-9],[0,-5],[0,-10],[0,-21],[-4,-436],[-12,-229],[-1,-13],[0,-3],[-1,-12],[-1,-21],[-42,-771],[-1,-22],[-1,-17],[-2,-38],[-7,-128],[0,-11],[-1,-8],[0,-6],[0,-1],[-1,-14],[-19,-360],[-47,-571],[-1,-13],[-1,-3],[-1,-16],[-2,-28],[0,-4],[-23,-278],[-60,-724],[0,-7],[-1,-15],[-13,-213],[-22,-372],[-13,-221],[-58,-723],[-75,-937],[-13,-246],[-3,-43],[-10,-185]],[[396460,217316],[-191,-21],[-141,-16],[-412,-45],[-21,-3],[-132,-14],[-89,-7],[-645,-48],[-198,-13],[-492,-30],[-628,-72],[-696,-73],[-44,-4],[-224,-4],[-235,-30],[-47,-7],[-58,-8],[-157,-21],[-28,-4],[-13,-2],[-14,-2],[-25,43],[-26,43],[-12,12],[-54,51],[-27,16],[-50,29],[-92,28],[-71,20],[-46,12],[-27,8],[-17,3],[-165,31],[-70,12],[-129,24],[-112,38],[-39,13],[-38,13],[-108,37],[-190,70],[-49,13],[-49,12],[-15,-2],[-96,-10],[-93,-30],[-14,-3],[-76,-13],[-77,-13],[-121,-25],[-19,-4],[-10,-2],[-47,-9],[-33,-7],[-53,-4],[-40,7],[-41,7],[-63,11],[-81,14],[-53,-3],[-86,-22],[-84,-24],[-85,-25],[-3,-1],[-111,-33],[-60,-18],[-53,-26],[-46,-30],[-12,-7],[-51,-45],[-158,-171],[-106,-113],[-128,-137],[-6,-7],[-29,-31],[-5,-6],[-26,-7],[-43,8],[-22,4],[-132,25],[-154,28],[-173,32],[-43,8],[-100,19],[-55,10],[-88,11],[-54,6],[-50,0],[-27,-2],[-10,-1],[-35,-14],[-39,-20],[-62,-42],[-73,-49],[-6,-4],[-153,-115],[-83,-63],[-20,-15],[-6,-5],[-24,-14],[-6,-4],[-19,-11],[-24,-7],[-35,-11],[-3,-1],[-6,-1]],[[387073,216403],[-1,0],[-63,-11]],[[387009,216392],[-149,-15],[-71,-7],[-181,-35],[-72,-19],[-16,-5],[-65,-32],[-8,-8],[-9,-9],[-27,-29],[-5,-7],[-106,-146],[-18,-24],[-5,-8],[-63,-86],[-39,-53],[-72,-96],[-29,-40],[-63,-78],[-51,-62],[-20,-25],[-19,-26],[-60,-25],[-9,-3],[-53,-13],[-53,-12],[-49,-11],[-18,-5],[-21,-5],[-80,-22],[-38,-8],[-31,-7],[-43,-8],[-23,-10],[-17,-6],[-57,-41],[-17,-17],[-69,-71],[-65,-75],[-12,-13],[-51,-56],[-47,-46],[-58,-51],[-21,-27],[-20,-28],[-66,-131],[-21,-43],[-14,-29],[-9,-41],[-23,-241],[-17,-162],[-8,-60],[-22,-53],[-26,-45],[-9,-10],[-18,-19],[-12,-8],[-12,-9],[-16,-4],[-44,-6],[-177,20],[-21,3],[-152,23],[-226,49],[-21,5],[-23,-1],[-12,-7],[-15,-11]],[[384045,214242],[-1,-1],[-15,-17]],[[384029,214224],[-19,-24]],[[384010,214200],[-2,-1],[-1,-2]],[[384007,214197],[-39,-59],[-18,-18],[-10,-6],[-9,-5],[-36,-13],[-69,-15],[-24,-10],[-24,-9],[-48,-6],[-36,-8],[-44,-42],[-43,-41],[-51,-42],[-102,-78],[-7,-5],[-31,-11],[-11,-3],[-31,-9],[-61,-18],[-65,-17],[-6,-2],[-33,-21],[-40,-37],[-25,-28],[-42,-47],[-38,-35],[-35,-38],[-17,-20],[-13,-16],[-38,-71],[-29,-80],[-52,-145],[-4,-17],[-21,-79],[-23,-70],[-32,-57],[-28,-29],[-17,-12],[-17,-11],[-24,-6],[-76,-20],[-111,-29],[-134,-34],[-39,-17],[-59,-28],[-154,-106],[-47,-31],[-51,-33],[-30,-6],[-27,2],[-25,10],[-20,22],[-71,68],[-22,22],[-5,4],[-36,35],[-37,36],[-49,49],[-3,3],[-66,73],[-18,14],[-17,14],[-32,25],[-69,33],[-54,25],[-35,16],[-30,-2],[-29,-10],[-55,-41],[-26,-20]],[[381287,213035],[-121,203],[-52,86],[-201,337],[-375,627],[-314,526],[-170,285],[-225,349],[-125,196],[-540,840],[-7,11],[-310,530],[-59,100],[-65,111],[-105,179],[-112,190],[-17,29],[-21,35],[-59,101],[-266,452],[-218,367],[-119,194],[-337,555],[-17,28],[-331,544],[-12,19],[-354,599],[-471,797],[-5,7],[-26,44],[-55,94],[-38,64]],[[376160,221534],[92,77],[14,21],[57,20],[117,290],[47,113],[66,121],[112,67],[16,9],[99,55],[4,3],[30,24],[9,19],[76,147],[93,181],[8,30],[15,54],[13,46],[94,334],[27,97],[27,73],[43,118],[4,12],[6,14],[22,56],[24,62],[41,44],[39,40],[61,66],[17,18],[40,22],[32,17],[109,59],[134,73],[122,85],[29,20],[26,18],[53,67],[38,47],[73,127],[3,7],[83,207],[9,173],[33,274],[3,29],[21,44],[41,-6],[23,9],[6,2],[42,57],[138,221],[40,60],[106,159],[77,117],[18,26],[136,204],[76,115],[129,194],[58,87],[59,89],[2,3],[99,135],[23,31],[228,323],[27,38],[7,10],[24,33],[11,16]],[[391284,233535],[424,112]],[[381287,213035],[-27,-20],[-81,-59],[-98,-69],[-50,-26],[-53,-7],[-32,-8],[-47,-32],[-159,-107],[-50,-29],[-19,-7],[-20,-6],[-43,0],[-13,-2],[-27,-6],[-53,-19],[-54,-18],[-142,-58],[-3,-1],[-90,-35],[-111,-49],[-155,-83],[-109,-71],[-8,-5],[-116,-60],[-77,-46],[-27,-16],[-19,-12],[-105,-69],[-4,-3],[-172,-116],[-83,-38],[-83,-38],[-100,-46],[-2,-2],[-72,-44],[-14,-8],[-4,-3],[-89,-52],[-34,-19],[-138,-81],[-8,-6],[-78,-56],[-6,-5],[-65,-57],[-98,-78],[-103,-81],[-78,-62],[-44,-8],[-27,-5],[-117,-99],[-38,-32],[-33,-20],[-40,-56],[-44,-52],[-45,-47],[-63,-44],[-76,-84],[-13,-14],[-56,-37],[-42,-27],[-43,-28],[-83,-82],[-2,-2],[-55,-49],[-68,-61],[-174,-126],[-5,-3],[-61,-41],[-40,-27],[-7,-5],[-13,-8],[-30,-19],[-29,-27],[-25,-23],[-26,-34],[-26,-34],[-33,-12],[-29,-1],[-8,16],[-33,18],[-35,26],[-42,31],[-68,51],[-100,74],[-66,55],[-30,23],[-33,16],[-27,15],[-19,7],[-17,3],[-34,5],[-32,7],[-23,8],[-20,3],[-29,9],[-14,4],[-1,0],[-3,0],[-7,2],[-5,1],[-1,0],[-13,2],[-38,9],[-21,3],[-41,0],[-23,-4],[-9,-4],[-21,-9],[-24,-10],[-24,-14],[-32,-19],[-33,-28],[-61,-45],[-28,-13],[-24,-16],[-38,-17],[-25,-3],[-9,-1],[-56,-9],[-73,-17],[-37,-19],[-21,-17],[-13,-12],[-13,-10],[-4,-3],[-13,-10],[-12,-11],[-21,-8],[-24,-2],[-8,-1],[-29,-2],[-38,4],[-24,2],[-17,1],[-13,2],[-25,-4],[-56,-6],[-23,-8],[-14,-9],[-15,-8],[-12,-6],[-13,-9],[-25,-20],[-15,-11],[-22,-15],[-30,-15],[-29,-23],[-40,-30],[-39,-44],[-27,-45],[-18,-48],[-34,-97],[-13,-41],[-16,-50],[-30,-84],[-14,-48],[-9,-33],[-19,-51],[-22,-41],[-27,-48],[-15,-33],[-18,-41],[-22,-31],[-21,-32],[-38,-53],[-57,-96],[-45,-67],[-19,-51],[-10,-44],[-5,-44],[-1,-34],[-3,-60],[-1,-65],[-1,-44],[-7,-98],[-5,-42],[-12,-64],[-10,-28],[-15,-49],[-14,-57],[-8,-28],[-7,-32],[-21,-41],[-8,-15],[-7,-14],[-32,-81],[-6,-15],[-17,-39],[-12,-18],[-32,-46],[-12,-21],[-17,-29],[-15,-35],[-22,-50],[-13,-42],[-7,-18],[-15,-18],[-22,-24],[-10,-18],[-2,-11],[-17,-46],[-17,-35],[-9,-15],[-12,-19],[-16,-32],[-66,-133],[-30,-28],[-12,-21],[-37,-78],[-49,-54],[-29,-53],[-35,-60],[-22,-39],[-22,-46],[-17,-32],[-20,-29],[-83,-145],[-83,-296],[-17,-81],[-32,-156],[-113,-399],[-87,-207],[-40,-43],[-58,9],[-76,17],[-56,27],[-69,7],[-49,10],[-50,25],[-46,20],[-31,13],[-30,-15],[-39,-22],[-38,-48],[2,-33],[-23,-20],[-11,-22],[-70,-251],[-18,-62],[-20,-25],[-141,-533],[-78,-249],[-17,-93],[-25,-44],[-23,-27],[-39,-26],[-44,-41],[-32,-30],[-37,-22],[-26,-11],[-72,-40],[-3,-45],[-106,-9],[0,-46],[35,-24],[10,-42],[-25,21],[-66,-33],[-32,-21],[-62,-1],[-5,-43],[-32,-4],[10,-42],[-32,-4],[-29,25],[-79,-79],[-54,-54],[30,-13],[15,-42],[-23,-25],[-34,17],[-30,-8],[-29,-4],[-12,-45],[-25,24],[-49,-64],[-62,13],[-113,19],[-37,-14],[-66,-58],[-22,-46],[0,-98],[-62,-117],[-149,-220],[-1000,-588],[-719,-423],[-300,-181],[-4792,-2537],[-37,-20],[-326,388],[-661,788]],[[363109,200696],[-314,374],[-16,18]],[[362779,201088],[-632,733],[-201,232],[-671,777]],[[361275,202830],[8,11],[1,2],[6,8],[67,71],[78,89],[132,150],[96,79],[168,166],[179,213],[127,135],[115,102],[76,55],[60,68],[46,64],[112,111],[196,226],[242,243],[150,139],[192,223],[59,66],[37,46],[46,55],[49,68],[42,9],[21,18],[38,21],[93,98],[44,76],[66,105],[45,38],[48,80],[32,31],[50,1],[40,11],[52,56],[89,118],[30,18],[25,24],[42,0],[27,27],[62,30],[59,30],[50,25],[28,22],[18,36],[16,53],[9,31],[5,32],[7,61],[16,48],[28,25],[41,17],[28,13],[33,30],[76,76],[102,112],[66,74],[81,85],[79,76],[101,98],[49,75],[32,43],[33,90],[26,33],[35,54],[3,57],[21,40],[12,47],[23,97],[26,111],[30,68],[21,31],[20,15],[39,1],[53,2],[65,42],[75,49],[195,123],[42,27],[62,52],[75,54],[98,55],[60,39],[55,32],[60,35],[65,65],[45,38],[45,49],[30,45],[36,58],[27,52],[19,56],[22,66],[11,60],[17,53],[25,92],[48,152],[46,109],[46,142],[24,96],[37,93],[31,89],[34,87],[16,62],[25,67],[32,86],[33,83],[41,71],[25,55],[27,49],[33,33],[51,69],[20,40],[50,60],[56,92],[50,77],[58,65],[38,46],[31,56],[43,71],[38,38],[41,78],[40,75],[41,63],[43,71],[33,82],[22,84],[23,103],[8,78],[3,108],[7,80],[4,94],[2,115],[7,105],[6,87],[12,97],[10,71],[12,85],[18,89],[23,78],[24,71],[29,60],[45,51],[25,69],[47,58],[38,55],[44,82],[37,74],[40,51],[32,60],[28,62],[30,45],[37,53],[8,18],[17,24],[22,34],[22,62],[28,47],[15,44],[44,62],[38,67],[49,78],[45,69],[115,207],[67,117],[6,11],[7,11],[108,207],[3,5],[102,177],[30,53],[58,101],[111,181],[39,85],[31,68],[20,35],[33,60],[18,32],[74,99],[29,38],[22,29],[51,57],[38,52],[65,42],[2,1],[13,4],[14,4],[28,-5],[65,53],[28,15],[18,22],[38,13],[20,37],[41,17],[97,109],[18,13],[87,62],[8,6],[51,36],[28,20],[84,84],[93,78],[57,49],[35,31],[90,79],[252,220],[191,167],[8,6],[68,66],[46,27],[61,70],[59,80],[48,66],[5,49],[5,75],[33,179],[2,7],[11,95],[15,122],[34,141],[23,134],[51,102],[36,99],[51,51],[49,28],[20,12],[61,-9],[54,-60],[86,12],[69,69],[6,6],[5,2],[91,42],[93,35],[18,14],[41,33],[59,47],[66,54],[80,96],[82,77],[69,55],[69,70],[87,57],[98,85],[97,64],[114,40],[224,149],[41,27],[92,55],[276,278],[100,110],[197,215],[77,85],[252,285],[44,47],[236,253],[60,65],[124,135],[86,89],[212,193],[75,70],[34,31],[788,720],[97,89]],[[423393,323138],[-149,-425]],[[416283,316969],[-1435,-5067]],[[430173,289126],[-18,-52],[-69,-198]],[[426047,246070],[619,-593],[53,-207],[52,-542],[-46,-186],[-123,-499],[-200,-398],[-412,-605],[-201,-303],[-581,-669],[-101,-91],[-289,-259],[-761,-431],[-369,-175],[-623,-255],[-275,64],[-538,239],[-201,80],[-528,-271],[-296,-144],[-475,-318],[-349,-207],[-211,-16],[-187,11],[-42,2],[-43,2],[-82,-298],[-142,-514],[-232,-669],[-270,-72],[-480,-47],[-460,39],[-221,231],[-143,-5],[-58,-2],[49,-236],[30,-147],[269,-183],[428,-239],[306,-303],[-84,-366],[-262,-365],[-191,-283],[-321,-187],[-277,-153],[-174,-282],[-304,-188],[-76,-48],[-755,-318],[-423,-319],[-512,-279],[-364,-64],[-343,233],[-141,34],[64,-172],[168,-192],[273,-269],[58,-199],[-85,-326],[-327,-502],[-296,-327],[-95,183],[-216,64],[-190,159],[10,-390],[85,-430],[-602,327],[74,-375],[26,-374],[-100,-128],[-106,-103],[-137,103],[-269,152],[-227,255],[23,-128],[24,-127],[108,-187],[109,-188],[195,-310],[-47,-183],[-206,-184],[-37,-25],[-79,-55],[-80,-55],[-227,350],[-141,155],[-33,37],[-58,-96],[5,-223],[243,-414],[-37,-223],[-164,-88],[-253,24],[-243,104],[132,-462],[-5,-351],[-5,-11],[-90,-212],[-37,-143],[-201,-263],[-142,-311],[-135,-164],[-172,-131],[-158,-111],[-185,64],[-53,-184],[79,-238],[154,-231],[-53,-303],[-180,-239],[-190,-112],[-42,-191],[-85,-318],[-95,-351],[-274,-462],[-169,-271],[-201,-47],[148,-419],[148,-330],[222,-398],[116,-399],[137,-478],[-42,-270],[-226,-250],[-175,-340],[21,-478],[338,-48],[295,-207],[243,-366],[242,-69],[86,-250],[-64,-239],[-285,-16],[53,-302],[348,-191],[264,-654],[59,-1069],[15,-269],[-237,-1027],[-185,-749]],[[411311,217049],[-153,-16],[-291,-72],[-221,-47],[-439,-56],[-63,-303],[-63,-255],[-111,-247],[-79,-123],[-80,-124],[-79,-143]],[[409732,215663],[-95,-175]],[[409637,215488],[-158,-64],[-56,-4],[-156,-12],[-739,-64],[-34,-7],[-188,-40],[-112,-12],[-188,-20],[-51,-11],[-63,-13],[-59,-13],[-55,-11],[-153,-40],[-206,-287]],[[407419,214890],[-161,-428]],[[407258,214462],[-13,-34]],[[407245,214428],[-115,9]],[[407130,214437],[-237,18],[-23,3],[-304,30],[-309,339],[-327,374],[-279,510],[-238,207],[-217,-8],[-487,-184],[-91,44],[-92,44],[-72,109],[-34,51],[-1,5],[-3,14],[-51,225],[-24,106],[-84,406],[-132,168],[-40,17],[-56,26],[-116,52],[-360,-113],[-1,7],[-23,119],[-91,465],[2,166],[-118,200],[-282,194],[-1,1],[-18,12],[-27,19],[-24,16],[-3,2],[-20,14],[-19,13],[-47,32],[-336,201],[-19,2],[-150,17]],[[402376,218360],[-229,25],[-43,5]],[[402104,218390],[-443,-19],[-240,-2],[-213,-67],[-510,-151],[-184,-42],[-231,-66],[-252,-71],[-43,-14],[-407,-124],[-251,-80],[-22,-8],[-154,-21],[-26,0],[-2,0],[-99,-1],[-62,-1],[-79,-1],[-299,105],[-373,50],[-166,9],[-205,12],[-6,-4],[-195,-112],[-36,-21],[-50,-29],[-271,-265],[-316,-141],[-309,-33],[-157,18],[-43,5]],[[396873,235262],[28,2072]],[[396902,237433],[68,2033],[0,1]],[[397005,240510],[15,342]],[[397477,247745],[0,1],[20,61]],[[397715,248387],[173,527]],[[397888,248914],[13,38]],[[397953,249112],[23,68]],[[398693,251361],[0,1],[266,777]],[[397458,254501],[-24,52]],[[387699,262431],[-4,11],[-19,41],[-4,9],[-17,52],[-4,49],[2,12],[19,128],[64,271],[3,13],[3,11],[70,294],[-34,570],[-2,40],[-152,308],[-73,148],[-161,265],[-183,301],[-165,272],[-493,811],[-45,73],[-4,5],[-329,435],[-486,427],[-516,279],[-195,105],[-87,47],[-446,241],[-446,241],[-474,179],[-656,311],[-537,317],[-432,434],[-232,385],[-226,309],[-480,264],[-391,16],[-46,27],[-468,268],[-433,468],[-408,682],[-510,992],[-169,445],[-50,277],[-20,110],[-34,1017],[48,357],[98,356],[347,597],[577,994],[314,541],[53,90],[589,1014],[368,634],[123,212],[73,125],[7,13],[602,1037],[30,51],[1,2],[28,48],[21,36],[14,24],[50,87],[16,27],[50,87],[26,45],[47,80],[53,92],[28,47],[16,29],[26,44],[35,60],[46,79],[787,1357],[21,35],[29,50],[29,50],[55,94],[49,86],[31,53],[109,188],[21,310],[-106,425],[-32,276],[-31,276],[49,577],[93,420],[55,656],[-17,106],[-66,413],[-50,152],[-50,153],[-184,47],[-284,160],[-530,1092],[-589,805],[-51,70],[-509,265],[-1487,611],[-153,63],[-377,348],[-166,210],[-45,56],[-252,238],[-318,58],[-88,-96],[-54,-59],[-34,-37],[-105,-193],[-61,-114],[-106,-86],[-106,-86],[-1079,538],[-390,-96],[-333,408],[-211,678],[-149,825],[50,422],[-64,620],[-218,633],[-178,418],[-119,279],[-3,46],[-4,45],[-49,677],[-101,312],[17,553],[102,292],[38,109],[42,262],[22,141],[20,43],[71,155],[298,245],[387,527],[229,97],[89,37],[192,36],[116,68],[168,98],[169,98],[139,233],[139,232],[96,161],[299,65],[300,65],[156,94],[156,94],[283,401],[67,142],[175,371],[95,201],[164,347],[164,348],[16,32],[437,661],[98,147],[444,531],[369,248],[197,34],[163,406],[325,190],[281,410],[382,675],[44,360],[172,537],[52,454],[-33,504],[-220,662],[48,985],[-22,477],[-118,513],[-72,1016],[-133,377],[-255,278],[-255,278],[-56,577],[-204,209],[-374,614],[-199,148],[-156,197],[-289,167],[-197,228],[-623,390],[-319,311],[-171,191],[-340,379],[-96,108],[-276,164],[-255,276],[-162,265],[-437,207],[-117,156],[-118,157],[72,159],[71,160],[200,179],[796,712],[161,40],[37,2716]],[[278136,173410],[-191,203],[-149,-55],[-163,27],[-217,-41],[-262,27],[-154,-41],[-118,-177],[71,-126],[-57,-393],[-91,-390],[-113,-88],[-14,-328],[95,-116],[14,-171],[72,-68],[50,-512],[-81,-649],[-335,0],[-66,-97],[-265,76],[-430,144],[-195,-27],[-126,266],[-209,48],[-50,-185],[-298,53],[-186,-39],[-22,-137],[-23,-116],[-81,-164],[-100,-273],[-104,-82],[-109,48],[-140,41],[-159,-7],[-45,-102],[-90,-14],[-23,219],[-43,301],[120,218],[251,272],[122,49],[261,88],[145,-170],[389,13],[50,178],[199,690],[77,560],[18,368],[-159,55],[18,303],[19,242],[-72,-69],[-48,-46],[-141,-57],[-40,10],[-12,-17],[-378,-14],[-791,-460],[-465,-356],[-270,-157],[-361,-241],[-195,-236],[-2922,-3113],[-227,-283],[-387,-355],[-622,-206],[-1945,-160],[-43,160],[-4,230],[-169,224],[0,307],[-117,89],[-66,171],[-24,207],[24,153],[43,53],[19,112],[-31,124],[-90,260],[-333,153],[-59,66],[-61,-25],[-85,13],[-81,-29],[-102,16],[-93,82],[-57,72],[6,117],[-13,58],[-108,113],[-124,1],[-129,29],[-78,30],[-42,15],[-91,67],[-118,58],[-102,20],[-37,27],[-92,-19],[-101,-49],[-39,32],[-36,29],[-4,145],[63,159],[92,235],[47,87],[40,73],[68,173],[-25,173],[-16,110],[-28,30],[-62,67],[-55,84],[58,79],[45,5],[49,-4],[46,17],[37,31],[6,68],[-23,75],[-54,94],[-12,-22],[-44,58],[-41,48],[-77,104],[-79,100],[-34,12],[-31,10],[-32,4],[-113,-26],[-96,-15],[-1,0],[-37,2],[-32,1],[-2,0],[-5,0],[-2,0],[-121,45],[-109,61],[-14,37],[-33,94],[3,19],[16,86],[9,16],[55,98],[20,27],[49,67],[73,76],[76,49],[124,50],[119,32],[108,70],[80,43],[6,3],[112,66],[104,140],[86,59],[34,4],[65,7],[135,-70],[140,-81],[45,-12],[70,-17],[83,-21],[149,-2],[109,8],[57,23],[59,23],[38,5],[83,11],[220,81],[101,118],[25,14],[110,57],[43,163],[88,134],[304,334],[292,392],[316,449],[197,392],[-7,267],[-82,181],[152,249],[-139,95],[-108,325],[-266,96],[38,410],[171,249],[139,124],[304,0],[114,277],[-76,162],[127,296],[-107,8],[-12,42],[-57,192],[-30,-2],[-262,-20],[94,351],[-26,43],[-52,84],[-10,17],[-69,52],[-81,60],[-59,17],[-122,36],[-96,4],[-33,1],[-176,5],[-184,-5],[-156,15],[-98,32],[-56,18],[-85,8],[-94,8],[-30,-4],[-103,-12],[-144,-19],[-66,-93],[-36,-90],[-47,-49],[-71,-39],[-64,-31],[-111,-60],[-116,-98],[-56,-52],[-103,-77],[-94,-67],[-88,-73],[-37,-20],[-52,-29],[-89,-22],[-77,20],[-50,31],[-48,-33],[-81,82],[-60,49],[-82,97],[-101,48],[-157,61],[-142,73],[-94,31],[-51,17],[-86,37],[-13,3],[-251,42],[-111,50],[-341,123],[-52,-51],[-44,-6],[-81,-3],[-121,-8],[-81,-25],[-159,-20],[-98,-47],[-48,-46],[-98,-7],[-78,-14],[-96,-70],[-85,-95],[-23,-9],[-108,-41],[-133,-39],[-143,-58],[-85,-26],[-137,-53],[-144,-61],[-169,7],[-127,27],[-131,-3],[-100,-17],[-214,-103],[-122,-22],[131,-692],[61,-274],[24,-136],[-65,-36],[-35,139],[-39,220],[-48,201],[-31,-17],[-58,-19],[-96,-53],[-51,-14],[-104,234],[-26,87],[-40,20],[-38,19],[-22,-4],[-53,-10],[-35,-21],[-36,-21],[-101,-39],[-74,-40],[-45,-24],[-99,-64],[-91,-92],[-72,-98],[-52,-61],[-27,-143],[-106,-60],[-101,-56],[-86,-77],[-113,-81],[-46,-34],[-38,-28],[-74,-29],[-17,-7],[-85,13],[-32,30],[-118,-226],[-277,-383],[-226,-255],[-467,-651],[-316,-291],[21,-618],[-36,-627],[-92,-558],[-135,-383],[-27,-300],[-355,-929],[-140,-171],[-417,-488]],[[272785,250362],[66,424],[76,175]],[[308978,193469],[-108,-99],[-46,-74],[-73,84],[-30,27],[-46,11],[-54,-4],[-99,-97],[-54,-69],[-48,-48],[-61,43],[-34,75],[-13,150],[-3,53],[-18,80],[-26,48],[-34,51],[-58,63],[-85,-1],[-57,7],[-72,27],[-54,20],[-60,23],[-66,22],[-87,33],[-72,22],[-15,19],[-99,174],[-122,176],[-4,-5],[-189,-213],[-16,-18],[-53,-59],[-384,-248],[-208,-110],[-57,26],[-183,88],[-101,-13],[-89,-26],[-78,-32],[-101,-39],[-79,-8],[-73,8],[-98,-26],[-50,-35],[-88,-41],[-174,-30],[-19,-40],[-28,-61],[-35,-40],[-51,-35],[-31,-21],[-16,-6],[-35,0],[-57,1],[-53,13],[-19,12],[-44,13],[-13,11],[-35,11],[-37,28],[-44,39],[-60,1],[-61,24],[-47,48],[-27,41],[-29,37],[-34,36],[-35,22],[-39,13],[-38,19],[-41,1],[-42,-6],[-42,-15],[-38,-14],[-40,-8],[-41,-12],[-38,-9],[-40,-9],[-38,-11],[-42,-8],[-42,-4],[-39,-3],[-40,-8],[-42,-8],[-42,-7],[-37,-6],[-42,-5],[-38,-5],[-42,-8],[-41,-5],[-39,-6],[-39,-10],[-38,-1],[-42,-2],[-41,1],[-39,0],[-42,1],[-40,1],[-37,1],[-39,-1],[-38,-9],[-41,-25],[-37,-18],[-37,-11],[-35,-16],[-37,-17],[-38,-18],[-40,-19],[-38,-17],[-41,-19],[-35,-18],[-37,-16],[-42,-22],[-39,-14],[-35,-20],[-41,-23],[-39,-20],[-42,-16],[-42,-21],[-40,-19],[-34,-22],[-41,-18],[-37,-18],[-40,-22],[-37,-23],[-29,-34],[-25,-41],[-23,-43],[-24,-44],[-22,-49],[-18,-54],[-21,-49],[-21,-47],[-28,-45],[-33,-41],[-30,-31],[-32,-32],[-30,-30],[-33,-31],[-32,-32],[-37,-32],[-39,-31],[-32,-33],[-30,-32],[-38,-27],[-38,-19],[-45,-17],[-39,-21],[-40,-14],[-40,-17],[-39,-8],[-40,-4],[-38,-7],[-43,-2],[-38,-1],[-40,0],[-41,-1],[-43,-5],[-40,-16],[-42,-17],[-36,-17],[-35,-19],[-37,-20],[-28,-22],[-7,-6],[-35,-24],[-41,-21],[-41,-2],[-44,-1],[-43,3],[-38,18],[-32,36],[-29,38],[-33,34],[-32,33],[-31,31],[-34,31],[-34,23],[-37,23],[-21,7],[-13,9],[-10,11],[-40,15],[-36,16],[-38,23],[-37,21],[-34,22],[-39,22],[-33,23],[-34,24],[-34,29],[-35,25],[-37,33],[-32,34],[-32,29],[-34,27],[-35,23],[-38,22],[-38,17],[-39,7],[-38,7],[-41,1],[-38,-1],[-39,-7],[-38,-14],[-36,-18],[-41,-23],[-33,-25],[-33,-26],[-33,-30],[-29,-41],[-31,-46],[-32,-40],[-32,-46],[-25,-38],[-27,-41],[-29,-37],[-26,-43],[-27,-42],[-25,-40],[-34,-40],[-32,-35],[-34,-38],[-33,-33],[-40,-39],[-36,-28],[-40,-28],[-231,-866],[-8,-4],[-94,-51],[-14,-11],[-38,-38],[-64,-70],[-72,-80],[-107,-111],[-35,-36],[-26,-28],[-23,-28],[-20,-20],[-30,-28],[-37,-31],[-17,-11],[-18,-12],[-16,-8],[-30,-11],[-25,-10],[-41,-11],[-12,-4],[-44,0],[-34,2],[-63,9],[-79,24],[-103,27],[-72,21],[-137,39],[-67,19],[-96,26],[-60,11],[-35,1],[-120,-15],[-73,-21],[-63,-30],[-59,-34],[-45,-26],[-17,-9],[-18,-9],[-42,-13],[-18,-5],[-31,-3],[-30,-3],[-53,0],[-47,8],[-54,16],[-24,7],[-66,14],[-58,8],[-59,-1],[-26,-4],[-56,-15],[-60,-19],[-48,-18],[-52,-21],[-55,-23],[-77,-35],[-42,-19],[-45,-20],[-46,-20],[-30,-13],[-43,-23],[-25,-17],[-41,-28],[-35,-31],[-34,-40],[-62,-70],[-29,-32],[-52,-59],[-69,-79],[-68,-77],[-39,-47],[-78,-89],[-54,-65],[-29,-33],[-122,-140],[-44,-50],[-50,-55],[-255,-295],[-47,-55],[-126,-142],[-30,-34],[-18,-19],[-17,-17],[-26,-26],[-24,-27],[-26,-32],[-21,-28],[-23,-25],[-28,-27],[-13,-19],[-24,-24],[-18,-19],[-14,-16],[-35,-36],[-11,-11],[-17,-13],[-26,-42],[-3,-4],[-4,-3],[-13,-10],[-11,-8],[-10,-6],[-11,-11],[-89,-78],[-17,-12],[-13,-10],[-18,-12],[-34,-33],[-12,-5],[-3,0],[-4,0],[-9,0],[-7,1],[-11,3],[-15,7],[-12,4],[-9,3],[-8,4],[-8,4],[-10,1],[-13,1],[-7,1],[-12,3],[-14,0],[-5,0],[-5,1],[-14,5],[-9,2],[-13,2],[-11,3],[-14,6],[-15,3],[-14,3],[-17,4],[-13,4],[-14,4],[-16,8],[-14,3],[-9,-2],[-11,-3],[-5,-1],[-67,9],[-89,28],[-394,121],[-108,33],[-12,4],[-10,4],[-11,2],[-12,0],[-12,1],[-8,3],[-11,5],[-11,6],[-8,3],[-13,3],[-11,3],[-13,4],[-12,2],[-11,2],[-13,2],[-12,2],[-12,4],[-11,4],[-13,4],[-12,3],[-10,3],[-11,5],[-13,3],[-8,3],[-13,7],[-7,3],[-10,2],[-13,4],[-9,1],[-11,1],[-12,3],[-10,2],[-14,3],[-10,2],[-13,2],[-14,4],[-11,3],[-13,3],[-41,15],[-40,11],[-36,14],[-43,10],[-40,13],[-39,10],[-42,9],[-39,2],[-39,1],[-45,0],[-41,-5],[-41,-7],[-39,-4],[-39,-7],[-39,-7],[-41,-4],[-37,-3],[-40,-3],[-42,-4],[-38,-5],[-39,-4],[-37,-3],[-40,-4],[-42,-4],[-41,-5],[-41,-2],[-43,-3],[-38,-5],[-39,-11],[-37,-9],[-38,2],[-38,-4],[-41,-4],[-38,-3],[-41,-2],[-44,-4],[-41,-6],[-40,-6],[-40,-8],[-38,-11],[-39,-8],[-36,-15],[-36,-21],[-33,-26],[-33,-27],[-36,-28],[-34,-31],[-40,-35],[-34,-34],[-34,-22],[-16,-4],[-10,6],[-11,12],[-24,47],[-16,34],[-19,4],[-17,-5],[-26,-12],[-74,-68],[-54,-49],[-39,-25],[-84,-44],[-200,-219],[-408,-329],[-104,-132],[-47,-151],[-17,-126],[130,-793],[3,-131],[138,-890],[64,-280],[44,-305],[15,-227],[-23,-112],[-42,-68],[-61,-98],[-104,-98],[-477,-166],[-38,-29],[-20,-15],[-32,-25],[-62,-49],[-332,-115],[-193,-196],[-204,-124],[-96,-69],[-380,-271],[-1277,-984],[-532,-384],[-38,-15],[-162,-65],[-240,-52],[-30,53],[-21,26],[-33,33],[-11,7],[-24,16],[-18,13],[-19,15],[-37,22],[-7,0],[-19,0],[-90,18],[-31,7],[-2,4],[-16,26],[-6,11],[2,318],[0,160],[-18,62],[-16,24],[-56,21],[-19,-1],[-43,-16],[-30,-37],[-34,-29],[-39,-2],[-39,3],[-10,2],[-35,5],[-40,7],[-38,13],[-40,13],[-41,16],[-3,1],[-35,12],[-38,12],[-40,14],[-35,12],[-5,2],[-38,18],[-26,17],[-11,7],[-34,17],[-3,1],[-36,24],[-31,30],[-32,33],[-35,31],[-34,31],[-34,28],[-38,13],[-38,2],[-38,-9],[-40,-12],[-38,-15],[-37,-7],[-37,-5],[-37,-10],[-37,-9],[-37,-6],[-32,-2],[-3,-2],[-18,-9],[-3,1],[-48,-494],[-73,-512],[-21,-177],[-28,1],[-128,-15],[-52,-11],[-47,-9],[-42,-8],[-40,-7],[-46,-6],[-44,-8],[-39,-9],[-38,-8],[-40,-13],[-38,-10],[-44,-11],[-41,-11],[-41,-11],[-42,-8],[-43,-2],[-45,18],[-28,34],[-15,53],[-9,53],[-6,53],[-7,59],[-8,65],[-16,59],[-18,52],[-24,44],[-30,40],[-37,27],[-41,10],[-39,9],[-46,4],[-42,3],[-41,-1],[-41,-14],[-36,-33],[-27,-42],[-26,-42],[-24,-44],[-18,-47],[-19,-53],[-16,-47],[-15,-49],[-14,-59],[-7,-54],[-13,-49],[-20,-48],[-21,-53],[-23,-45],[-26,-38],[-27,-37],[-21,-46],[-5,-56],[-5,-56],[1,-59],[-8,-51],[-10,-58],[0,-52],[6,-58],[9,-57],[12,-51],[8,-51],[5,-55],[14,-54],[16,-54],[9,-53],[-15,-64],[-17,-50],[-25,-43],[-15,-55],[-24,-43],[-29,-37],[-32,-31],[-25,-41],[-26,-46],[-29,-43],[-28,-38],[-24,-40],[-30,-33],[-41,3],[-36,28],[-34,50],[-29,41],[-29,37],[-32,40],[-34,25],[-39,1],[-37,-12],[-34,-28],[-33,-36],[-28,-44],[-19,-56],[-8,-57],[1,-52],[6,-55],[9,-55],[24,-62],[25,-41],[34,-45],[27,-38],[27,-52],[16,-58],[8,-64],[2,-59],[0,-71],[-5,-52],[-10,-53],[-15,-52],[-17,-53],[-15,-53],[-18,-59],[-16,-47],[-19,-49],[-18,-46],[-29,-76],[-19,-49],[-24,-64],[-20,-45],[-39,-86],[-76,-14],[-41,6],[-36,21],[-13,8],[-36,90],[-22,60],[-12,41],[-8,44],[-1,119],[1,47],[-10,139],[1,26],[-7,63],[-14,98],[-10,36],[-25,43],[-15,49],[-51,70],[-38,58],[-34,39],[-28,23],[-50,63],[-32,29],[-51,35],[-93,29],[-39,18],[-29,27],[-53,13],[-61,1],[-49,12],[-35,-20],[-29,-20],[-40,-43],[-43,-51],[-52,-120],[-23,-55],[-11,-67],[1,-54],[-10,-59],[-39,-140],[-8,-31],[-19,-83],[1,-11],[-10,-42],[-17,-73],[-12,-44],[-21,-59],[-10,-66],[-1,-23],[11,-46],[-7,-26],[-18,-9],[-29,4],[-25,4],[-13,41],[-14,16],[-56,21],[-25,-4],[-47,-1],[-20,20],[-12,13],[-98,33],[-9,8],[-16,21],[-65,43],[-46,11],[-49,21],[-24,38],[-24,-7],[-47,-11],[-103,2],[-33,2],[-47,0],[-52,-30],[-72,-33],[-84,-26],[-37,-14],[-96,-54],[-12,-7],[-50,-39],[-46,-52],[-71,-101],[-4,-5],[-23,-55],[-7,-81],[-10,-62],[-25,-136],[-3,-16],[-16,-133],[-22,-164],[-2,-23],[-5,-91],[3,-79],[18,-88],[21,-141],[7,-53],[25,-90],[31,-126],[31,-90],[58,-113],[5,-5],[24,-20],[28,-12],[29,-20],[53,-12],[64,-5],[50,-20],[46,17],[88,34],[34,6],[77,-28],[25,-14],[32,-9],[19,-45],[30,-33],[41,-22],[29,-100],[18,-67],[4,-90],[-8,-68],[-7,-66],[-25,-137],[-9,-66],[-4,-85],[7,-146],[7,-55],[50,-145],[19,-30],[23,-23],[25,-53],[39,-59],[61,-113],[12,-30],[22,-58],[8,-42],[8,-40],[14,-151],[3,-34],[16,-346],[70,-305],[-135,-79],[-1001,-775],[-206,-199]],[[273595,171754],[-98,111],[-10,170],[226,281],[181,192],[275,229],[142,-74],[112,-140],[-33,-200],[-422,-325],[-373,-244]],[[260589,169942],[-157,79],[-105,88],[-67,123],[170,246],[229,102],[178,-199],[154,-167],[-195,-79],[-207,-193]],[[260355,162351],[-9,5],[-152,89],[68,374],[5,15],[82,288],[183,-171],[49,-139],[220,-124],[-106,-267],[-156,-62],[-184,-8]],[[255580,169387],[208,302],[286,753],[111,172],[446,-77],[417,-280],[417,-94],[403,302],[1356,209],[369,-216],[196,-502],[-168,-503],[23,-441],[-130,-550],[-437,-412],[-320,-380],[-62,-345],[-149,-347],[-430,-679],[-333,-528],[-276,-605],[-253,-895],[128,-273],[330,11],[241,-107],[8,-301],[-469,-823],[-27,-363],[122,-340],[224,-51],[438,490],[191,-102],[92,-200],[-56,-465],[-707,-533],[-42,-43],[-235,-241],[-535,-397],[-205,-19],[-29,435],[-98,176],[-249,1],[-226,98],[-247,203],[-19,11],[-188,113]],[[260865,158512],[-169,156],[112,138],[352,112],[276,208],[149,152],[35,239],[-354,274],[1,340],[156,255],[69,394],[-148,-14],[-288,-148],[-128,224],[-36,213],[43,388],[162,482],[270,238],[140,24],[376,440],[175,78],[482,-40],[-128,-283],[-183,-151],[-128,163],[-240,-273],[-71,-363],[28,-926],[79,-172],[163,-31],[727,20],[-198,-406],[-135,-386],[-49,-210],[42,-209],[-48,-262],[-135,-341],[-214,-155],[-225,-18],[-239,49],[-383,-146],[-338,-53]],[[311051,125244],[-295,-4031]],[[310756,121213],[-792,-92],[-331,-29],[-155,-36],[-487,-52],[-433,-39],[-737,-67],[-626,-91],[-580,-78],[-404,-26],[-569,-81],[-392,14],[-124,-8],[-137,2],[-148,15],[-143,-12],[-124,-19],[-183,-33],[-121,-7],[-134,-3],[-133,-8],[-171,-16],[-164,38],[-130,1],[-152,-12],[-218,-23],[-130,-38],[-112,-38],[-62,-20],[-84,-51],[-81,-72],[-119,-46],[-96,-26],[-105,-8],[-90,15],[-71,18],[-84,32],[-74,18],[-134,-3],[-108,-24],[-72,-13],[-59,-68],[-41,-65],[-81,-115],[-115,-52],[-159,19],[-83,72],[-86,84],[-68,56],[-77,13],[-100,1],[-96,-26],[-59,-34],[-81,-68],[-54,-60],[-52,-38],[-69,-8],[-62,1],[-46,10],[-78,18],[-102,14],[-105,32],[-127,40],[-96,18],[-121,-1],[-93,-17],[-112,-52],[-81,-72],[-91,-34],[-89,1],[-81,29],[-65,26],[-34,4],[-68,9],[-93,-46],[-94,-20],[-99,-26],[-90,-28],[-103,-38],[-124,-24],[-152,-24],[-140,-12],[-152,-47],[-84,-37],[-87,-40],[-109,-37],[-115,5],[-83,46],[-65,79],[-89,61],[-62,-4],[-87,-11],[-66,-60],[-78,-74],[-96,-67],[-53,-35],[-69,-42],[-59,15],[-74,9],[-108,23],[-97,15],[-133,-9],[-130,-24],[-75,-46],[-94,-74],[-93,-28],[-114,2],[-131,2],[-118,5],[-118,14],[-68,10],[-93,-3],[-93,-16],[-109,-33],[-84,-42],[-71,-24],[-69,-25],[-80,-20],[-81,1],[-93,6],[-112,0],[-89,27],[-81,41],[-62,23],[-62,13],[-62,-4],[-62,-11],[-84,-22],[-109,-46],[-111,-29],[-78,-20],[-112,-8],[-115,-2],[-74,-13],[-130,2],[-121,-6],[-128,-21],[-115,-20],[-74,-17],[-174,-10],[-143,-21],[-93,-15],[-74,-8],[-78,-25],[-96,-25],[-113,-29],[-133,-19],[-115,-19],[-106,-46],[-114,-15],[-84,-25],[-180,-16],[-128,-28],[-130,-46],[-118,-16],[-127,-25],[-137,-37],[-124,-20],[-131,-33],[-90,-25],[-84,-17],[-149,-32],[-87,-8],[-74,-12],[-62,-16],[-81,-16],[-38,-3],[-684,-227],[-709,-28],[-765,-135],[-933,-172],[-896,-155],[-1269,-91],[-1300,-77],[-970,-109],[-987,-68],[-624,-207],[-1241,-192],[-97,-42],[-412,-40],[-235,-21],[-993,-223],[-623,-164],[-354,-56],[-819,-208],[-1082,-307],[-1362,-205],[-142,-64],[-564,-79],[-797,-135],[-1693,-294],[-796,-218],[-383,-172],[-263,-65],[-752,-114],[-655,-166],[-203,8],[-361,-87],[-1443,-393],[-233,-44],[-903,-42],[-1030,-212],[-745,-81],[-367,-37],[-1453,10584],[1134,-910],[1428,-930],[1519,-772],[1677,-927],[1789,-737],[1699,-708],[1255,-293],[1506,-431],[1401,-233],[1448,-263],[1401,-43],[1290,-47],[667,42],[608,38],[1160,8],[992,147],[1023,74],[1325,107],[1722,56],[1316,103],[998,67],[815,52],[966,264],[74,36],[77,8],[75,25],[87,37],[115,12],[112,60],[102,50],[106,22],[102,11],[124,-2],[149,33],[103,29],[99,17],[81,14],[43,10],[94,23],[78,13],[136,16],[84,20],[84,25],[81,39],[74,18],[56,11],[69,25],[90,22],[105,15],[66,16],[62,25],[59,18],[59,17],[87,11],[71,13],[93,6],[109,17],[69,25],[96,8],[62,11],[65,51],[66,17],[74,16],[81,13],[102,21],[62,2],[109,0],[108,-3],[124,0],[131,7],[121,11],[93,15],[78,17],[87,30],[99,7],[90,11],[121,35],[93,20],[87,11],[53,4],[74,1],[97,-1],[121,-2],[174,51],[105,32],[84,12],[68,0],[53,11],[106,21],[112,20],[80,5],[81,11],[62,4],[81,8],[65,11],[109,26],[136,41],[103,38],[87,42],[81,51],[97,47],[99,32],[103,22],[89,15],[88,16],[99,17],[105,21],[94,14],[112,30],[121,3],[71,16],[118,31],[106,46],[115,17],[84,29],[149,-2],[89,-1],[85,21],[83,11],[106,46],[127,21],[149,7],[118,32],[103,3],[99,31],[90,23],[106,21],[93,30],[65,17],[50,2],[103,39],[130,42],[134,27],[136,26],[84,29],[87,16],[75,26],[96,23],[96,26],[81,2],[131,37],[84,23],[46,13],[87,48],[84,25],[109,32],[130,42],[113,60],[90,63],[115,38],[106,43],[68,16],[184,75],[115,47],[93,8],[127,41],[109,47],[155,45],[84,25],[94,37],[81,22],[99,15],[112,26],[146,36],[99,22],[93,20],[109,29],[96,38],[119,52],[139,55],[84,60],[104,84],[143,56],[112,37],[164,51],[90,43],[72,37],[78,48],[323,85],[295,162],[114,60],[96,-18],[221,80],[402,195],[697,342],[501,272],[194,98],[66,34],[78,44],[70,38],[110,35],[39,-24],[83,22],[23,-24],[10,-31],[45,43],[96,17],[21,23],[49,5],[105,-14],[21,-18],[35,-33],[95,-7],[108,26],[174,140],[85,50],[30,89],[53,25],[216,64],[99,-1],[66,-45],[57,-24],[68,40],[321,142],[267,126],[328,182],[275,165],[263,171]],[[361275,202830],[-1323,1235],[-528,493],[-1757,1641],[-381,355],[-911,4645],[-403,1186]],[[355972,212385],[-243,237],[-122,106],[-88,-2],[-130,-22],[-168,6],[-136,23],[-141,-31],[-85,25],[-84,26],[-181,101],[-151,80],[-63,94],[-10,223],[-13,173],[34,132],[35,129],[46,112],[56,96],[108,121],[85,92],[197,118],[22,153],[8,91],[28,252],[-19,243],[13,203],[22,215],[72,248],[90,204],[14,132],[60,195],[58,186],[49,84],[55,174],[63,314],[66,224],[51,339],[-53,159],[-31,92],[-44,12],[-45,12],[-109,2],[-148,-2],[-180,-11],[-104,153],[-113,123],[-96,136],[-152,154],[-103,91],[-273,248],[-141,227],[-173,269],[-75,50],[-106,132],[-47,127],[-12,175],[-49,82],[-49,127],[-48,31],[-59,44],[-76,60],[-153,42],[-182,7],[-79,216],[17,96],[-10,60],[2,153],[-19,121],[-25,222],[85,-9],[22,-2],[123,4],[71,52],[53,25],[102,10],[55,12],[102,13],[80,-10],[65,37],[95,59],[105,44],[96,32],[102,9],[89,21],[95,26],[95,-32],[137,6],[82,43],[93,39],[97,50],[85,48],[186,65],[92,30],[101,16],[101,8],[102,-3],[91,54],[98,48],[93,59],[96,10],[99,5],[175,12],[105,15],[90,34],[99,30],[90,35],[106,48],[95,41],[100,36],[89,30],[96,24],[13,-1],[107,-12],[103,8],[105,-35],[101,0],[104,18],[177,31],[97,-9],[91,10],[101,-7],[105,-34],[61,8],[104,75],[73,59],[10,9],[87,73],[95,57],[101,37],[103,43],[186,144],[123,112],[99,27],[108,10],[101,32],[108,33],[88,30],[271,107],[103,12],[91,-2],[100,-38],[92,1],[101,0],[184,37],[82,24],[98,46],[97,47],[91,73],[60,115],[7,140],[1,3],[26,70],[22,57],[32,123],[35,140],[11,53],[-6,141],[25,31],[64,108],[40,55],[-28,121],[-23,71],[0,21],[99,44],[94,48],[22,51],[23,129],[-31,119],[4,92],[81,7],[97,33],[31,20],[42,69],[1,132],[-12,39],[-26,42],[97,28],[99,-19],[103,-3],[102,-4],[53,5],[250,90],[99,-25],[31,-4],[64,-107],[11,-138],[22,-139],[40,-130],[63,-119],[92,-54],[100,-4],[4,0],[96,36],[24,29],[95,46],[92,49],[9,9],[72,71],[42,129],[-5,140],[-34,130],[10,138],[75,92],[98,29],[100,8],[85,69],[8,7],[10,9],[99,-19],[96,-41],[80,-31],[100,-7],[32,15],[81,83],[40,64],[13,19],[78,86],[73,95],[18,20],[50,9],[25,-18],[38,32],[21,39],[38,73],[2,4],[53,117],[58,112],[55,119],[51,124],[20,32],[92,34],[101,-10],[102,10],[97,29],[23,21],[25,38],[37,106],[33,51],[31,19],[46,52],[100,3],[99,3],[96,40],[20,8],[91,-2],[6,0],[1,0],[102,-4],[94,-44],[28,0],[168,145],[203,67],[9,4],[80,61],[4,4],[49,50],[33,34],[84,58],[5,3],[77,10],[29,4],[29,16],[80,44],[74,153],[67,49],[-4,131],[1,5],[1,4],[34,157],[6,129],[30,45],[35,19],[18,26],[15,7],[3,1],[19,0],[19,-19],[8,3],[56,17],[26,38],[13,19],[27,19],[23,-10],[13,-20],[17,-12],[4,-3],[8,5],[56,35],[51,38],[47,28],[75,-1],[90,49],[7,4],[21,14],[21,29],[17,7],[27,13],[1,0],[24,10],[135,46],[5,1],[24,3],[29,4],[30,4],[32,5],[-1,66],[-1,32],[2,1],[2,0],[1,1],[2,0],[9,3],[2,1],[1,0],[211,67],[16,5],[11,3],[18,7],[1,0],[18,8],[40,294],[12,1],[34,5],[163,152],[29,29],[407,410],[21,21],[41,42],[242,248],[74,76],[421,428],[2,3],[1,1],[358,230],[-48,134],[-31,80],[-12,29],[8,7],[336,310],[163,151],[45,41],[54,50],[11,10],[55,50],[141,131],[62,-119],[12,-22],[19,-37],[35,-65],[21,-41],[43,-44],[70,-33],[187,-42],[251,-66],[66,-18],[122,-38],[34,-11],[44,-10],[44,-9],[44,-7],[14,-2],[48,-1],[6,0],[64,14],[3,0],[52,29],[66,78],[39,46],[158,183],[28,34],[3,2],[89,96],[15,15],[79,85],[18,20],[129,138],[82,88],[89,95],[34,37],[1,1],[9,10],[27,30],[22,25],[78,89],[37,41],[47,25],[49,1],[52,-13],[1,-1],[21,-17],[27,-23],[32,-32],[9,-9],[23,-24],[8,-13],[16,-26],[30,-57],[31,-62],[80,-158],[15,-29],[47,-85],[92,-162],[37,-64],[11,-18],[0,-1],[48,-84],[1,-2],[1,-1],[4,-8],[2,-4],[23,-40],[1,-2],[0,-1],[1,-1],[28,-56],[43,-73],[5,-10],[6,-12],[9,-16],[17,-33],[7,-15],[49,-78],[92,-200],[41,-53],[44,-25],[65,-35],[58,-12],[12,-3],[119,8],[4,0],[292,-1],[4,0],[114,-6],[18,-1],[140,4],[10,0],[13,-1],[4,0],[6,0],[12,-1],[16,0],[55,-3],[22,-1],[3,1],[57,7],[4,1],[1,0],[34,6],[5,1],[38,12],[30,25],[6,5],[2,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[14,11],[12,11],[6,5],[17,13],[0,1],[3,2],[4,4],[4,3],[2,2],[1,0],[3,2],[1,1],[1,1],[0,1],[3,2],[2,2],[2,1],[3,3],[39,34],[35,41],[16,15],[9,9],[7,6],[34,27],[29,14],[32,8],[2,0],[2,1],[71,21],[35,7],[115,7],[1,0],[61,-10],[1,0],[65,-5],[21,-8],[31,-11],[1,-1],[2,0],[72,-27],[1,0],[5,-2],[3,-1],[24,-12],[12,-8],[32,-23],[60,-61],[27,-16],[21,-8],[37,0],[35,19]],[[321905,229812],[0,1],[29,42]],[[323996,233453],[0,48],[0,1]],[[343421,250336],[-163,174],[-1,0]],[[341107,267939],[69,-14]],[[342286,268537],[60,56]],[[342346,268593],[154,266]],[[344529,274215],[-632,179]],[[331347,287725],[-1,-3],[-1,-1],[-20,-44]],[[330377,287519],[-31,-9],[-1,0]],[[377472,258746],[0,1],[-1,0]],[[377470,258747],[-1,0],[0,1]],[[376578,258237],[-6,-18],[0,-1]],[[376457,257993],[0,-1],[-2,-3]],[[376408,257915],[-1,-1],[0,-1]],[[373900,254999],[-4,-5],[0,-1],[-1,0]],[[373475,254392],[-1,-1],[-35,-50]],[[373365,254208],[0,-1],[-1,-1]],[[371964,250731],[0,-4],[0,-1]],[[371628,249632],[-89,-238]],[[371429,249099],[0,-1],[-1,-1]],[[371266,248724],[-37,-43]],[[370476,246657],[0,-1],[0,-1]],[[371322,243722],[2,-5],[0,-1]],[[372992,238126],[0,-1],[2,-7]],[[373033,237987],[1,0],[21,-65]],[[375359,235090],[-4,-32],[0,-1]],[[375315,234788],[-1,-5],[0,-1]],[[375199,234160],[-21,-114]],[[355972,212385],[-8075,-2699],[-2236,-569],[-1296,-330],[-6029,-1533],[-1713,-872],[-189,-96],[-261,-133],[-284,-143],[-4951,-2520],[-645,-4828],[-151,-1116],[-326,-2429],[-28,36],[-13,16],[-13,16],[-44,39],[-42,59],[-71,100],[-79,109],[-7,10],[-71,108],[-36,59],[-34,55],[-57,114],[-56,80],[-53,57],[-79,80],[-59,41],[-52,33],[-86,41],[-28,-1],[-51,2],[-47,-7],[-105,-23],[-21,-17],[-63,-21],[-43,-20],[-101,-39],[-21,-6],[-37,-9],[-99,-27],[-122,-50],[-50,-21],[-50,-20],[-63,-32],[-73,-16],[-7,-3],[-102,-29],[-7,-3],[-63,-13],[-99,-41],[-52,-16],[-52,-24],[-15,-1],[-47,-4],[-19,4],[-23,1],[-56,-21],[-57,-18],[-27,-9],[-99,-36],[-105,-14],[-99,-33],[-101,-27],[-101,-26],[-101,-43],[-101,-28],[-81,-17],[-21,-4],[-107,-33],[-100,-37],[-41,-9],[-482,-154],[-120,-32],[-124,-52],[-309,-66],[-106,-35],[-494,-156],[-226,-64],[-117,-15],[-109,-50],[-129,-41],[-99,-13],[-158,-43],[-118,-37],[-80,-23],[-15,-5],[-55,-16],[-101,-24],[-98,-27],[-97,-32],[-118,-29],[-113,-27],[-101,-15],[-130,-17],[-100,-25],[-99,-26],[-141,-39],[-114,-32],[-97,-33],[-99,-17],[-99,-1],[-127,30],[-110,52],[-93,50],[-47,25],[-97,53],[-67,39],[-17,11],[-57,33],[-97,51],[-127,64],[-92,53],[-136,61],[-173,94],[-141,79],[-118,58],[-95,48],[-101,40],[-106,40],[-24,7],[-104,54],[-43,23],[-98,56],[-91,61],[-44,31],[-45,31],[-92,54],[-95,47],[-92,52],[-94,50],[-93,56],[-90,62],[-45,29],[-46,29],[-92,50],[-95,47],[-94,52],[-95,47],[-95,46],[-94,47],[-96,49],[-91,63],[-95,45],[-94,49],[-98,43],[-92,52],[-92,55],[-94,56],[-96,48],[-91,58],[-97,42],[-97,37],[-93,51],[-92,50],[-91,63],[-61,40],[-29,19],[-96,35],[-98,30],[-99,20],[-30,-6],[-69,-14],[-98,-29],[-94,-51],[-97,-29],[-95,-40],[-83,-77],[-89,-63],[-98,-32],[-99,-20],[-100,-25],[-103,-36],[-14,-6],[-83,-36],[-97,-39],[-99,-25],[-31,-9],[-82,-78],[-91,-66],[-86,-71],[-84,-76],[-80,-85],[-80,-84],[-2,-2],[-79,-84],[-79,-86],[-75,-92],[-77,-90],[-79,-85],[-78,-88],[-79,-87],[-84,-78],[-81,-83],[-80,-84],[-78,-87],[-82,-82],[-82,-80],[-78,-86],[-73,-95],[-76,-90],[-80,-83],[-78,-89],[-77,-91],[-77,-90],[-98,-91],[-64,-72],[-93,-51],[-98,-30],[-100,-17],[-98,-27],[-96,-43],[-95,-41],[-96,-40],[-96,-55],[-93,-54],[-88,-65],[-95,-45],[-95,-44],[-98,-31],[-95,-37],[-97,-32],[-97,-36],[-99,-38],[-96,-38],[-99,-11],[-34,0],[-66,-1],[-98,25],[-117,5],[-182,13],[-100,-3],[-100,3],[-58,6],[-111,-45],[-130,-38],[-142,8],[-71,33],[-65,38],[-28,28],[-161,118],[-337,300],[-98,28],[-96,-35],[-30,-46]],[[338403,110636],[-18,-104],[-28,-96],[-70,-45],[-74,12],[-74,22],[-73,43],[-74,25],[-28,97],[-68,-68],[-51,-76],[-30,-95],[-40,-94],[32,-98],[50,-68],[-8,-81],[38,-46],[-8,-78],[51,-67],[-24,-46],[-43,14],[-35,78],[-95,2],[-43,36],[-80,77],[-105,72],[-17,27],[-17,28],[-19,3],[-19,-17],[-25,-30],[-42,-32],[-65,-16],[-73,0],[-28,42],[4,56],[1,66],[-11,66],[12,54],[10,3],[27,-2],[21,10],[-3,29],[-2,46],[38,46],[31,18],[29,39],[42,14],[55,9],[25,41],[10,49],[22,34],[11,20],[30,65],[18,42],[20,64],[8,104],[53,86],[44,88],[30,111],[32,102],[67,50],[69,-50],[28,-100],[2,-107],[57,-74],[75,-2],[53,-78],[58,-70],[73,-32],[47,-83],[55,-77],[62,-58]],[[334782,113629],[32,-16],[6,4],[29,25],[8,-10],[-9,-34],[6,-13],[13,-41],[-12,-45],[-24,-35],[-33,-5],[-21,-4],[-28,-27],[-25,-33],[-22,35],[0,4],[-13,42],[-30,-21],[-34,2],[-32,8],[-19,37],[12,43],[17,40],[20,39],[20,25],[31,16],[33,8],[32,-2],[24,-6],[19,-36]],[[429803,113705],[7,-5],[8,-8],[7,-10],[4,-10],[4,-6],[8,-6],[10,-8],[8,-4],[5,-2],[6,0],[5,-1],[4,1],[4,2],[10,1],[8,-9],[10,-1],[15,2],[9,1],[12,1],[17,1],[6,0],[6,-1],[5,-1],[6,-5],[3,-6],[13,-6],[5,-2],[7,0],[9,-1],[8,-3],[9,-5],[3,-5],[5,-4],[4,-4],[6,-15],[9,2],[12,-9],[3,-7],[8,-14],[7,-3],[9,-1],[6,-9],[8,-9],[10,-13],[5,-15],[3,-11],[4,-18],[-8,-21],[-9,-11],[0,-12],[-3,-10],[-6,-12],[8,-31],[4,-25],[1,-9],[2,-9],[0,-13],[3,-8],[8,-16],[6,-9],[2,-3],[6,-2],[9,1],[11,-8],[4,0],[10,1],[9,-5],[4,-11],[3,-9],[2,-2],[4,3],[20,6],[24,4],[9,0],[8,0],[3,1],[8,5],[3,-2],[1,-7],[4,-18],[3,-8],[7,-10],[8,-1],[1,4],[2,4],[1,3],[-2,6],[-4,8],[-1,6],[2,3],[7,-1],[3,-5],[5,-6],[5,-4],[4,-6],[3,-9],[1,-8],[2,-8],[4,-5],[3,-5],[2,-7],[1,-6],[3,-9],[0,-5],[-1,-9],[-6,-2],[-4,5],[-3,5],[-3,4],[-10,8],[-8,1],[-2,1],[-3,3],[-4,0],[-4,-2],[-4,-3],[-5,-4],[-2,-1],[-4,-5],[-2,-4],[-5,-6],[-6,-9],[-9,-13],[-2,-5],[-2,-3],[-2,-2],[0,-4],[0,-7],[0,-3],[3,-4],[3,-2],[4,0],[2,-3],[3,-3],[4,-4],[6,-3],[4,-7],[9,-7],[3,-3],[7,-9],[6,-7],[5,-8],[9,-9],[7,-5],[7,-2],[6,-10],[-2,-2],[-4,-1],[-4,1],[-6,2],[-7,1],[-15,11],[-9,21],[-18,13],[-11,-3],[-7,-8],[-3,-6],[-7,-9],[-5,-5],[-6,-3],[-5,-1],[-8,0],[-4,-3],[-6,-3],[-3,-1],[-7,0],[-4,-2],[-4,3],[-11,11],[-6,5],[-8,0],[-4,0],[-21,-2],[-9,-11],[-9,-8],[-10,-7],[-8,-6],[-9,-5],[-5,-4],[-6,-6],[-6,-9],[-2,-3],[-1,-12],[-21,-27],[-34,-1],[-5,2],[-1,5],[1,6],[12,8],[12,9],[5,1],[6,3],[6,9],[1,16],[-7,15],[-5,12],[-5,8],[-11,6],[-6,4],[-8,0],[-4,-2],[-4,-2],[-2,-2],[-2,-5],[3,-4],[6,-6],[6,-15],[-1,-4],[-4,-4],[-7,-1],[-8,-1],[-11,0],[-10,0],[-7,2],[-3,2],[-1,30],[-4,13],[-4,6],[-2,3],[-7,-2],[-12,15],[-7,0],[-8,-2],[-8,3],[-3,8],[1,13],[-1,8],[-6,9],[-13,1],[-15,-2],[-11,2],[-2,3],[0,7],[-9,7],[-8,1],[-7,1],[-4,-2],[-6,-5],[-4,-1],[-3,1],[-1,9],[0,5],[-2,2],[-15,6],[-19,-2],[-4,9],[-3,4],[-9,0],[-3,9],[-5,2],[-6,0],[-10,-2],[-5,12],[-10,13],[-7,0],[-14,-3],[-5,3],[0,6],[-2,16],[-1,11],[-6,1],[-5,0],[-7,3],[-3,7],[-6,-1],[-2,1],[-10,14],[-1,26],[-3,-1],[-11,1],[-11,0],[-10,1],[-8,4],[-5,6],[-5,13],[0,26],[-1,11],[0,27],[-4,30],[-9,10],[-2,12],[-1,7],[6,14],[5,14],[-1,25],[3,31],[4,6],[3,8],[5,7],[2,6],[-1,5],[-1,0],[-3,0],[-6,6],[-4,10],[0,14],[-2,34],[4,9],[2,5],[4,1],[15,3],[5,1],[2,3],[4,0],[7,-3],[7,0],[10,3],[5,5],[-1,7],[1,19],[2,15],[-1,13],[-1,12],[4,8],[6,4],[4,-4],[7,-8],[8,-5],[10,-1],[10,2],[4,2],[1,5],[0,9],[4,9],[5,9],[6,3],[6,0],[4,0],[9,-3],[3,-3],[5,-10],[3,-1],[9,-5],[6,-6],[7,-7]],[[431138,115961],[-1,-9],[-1,-6],[-1,-6],[-3,-6],[3,-1],[7,1],[6,1],[5,7],[6,10],[9,2],[7,0],[3,0],[8,1],[4,2],[12,1],[13,2],[9,0],[6,-5],[9,-11],[2,-13],[3,-10],[2,-8],[4,-12],[3,-4],[3,-1],[6,-7],[0,-7],[-5,0],[-12,0],[-8,-1],[-7,-4],[-4,-5],[-4,-3],[-8,1],[-3,0],[-3,-1],[-3,-2],[-4,-2],[-11,2],[-4,4],[-6,7],[-2,-5],[1,-6],[5,-4],[5,-7],[0,-7],[5,-6],[6,-3],[5,-4],[10,-4],[11,0],[10,-1],[4,-2],[7,-3],[7,0],[6,1],[2,5],[1,4],[3,8],[8,0],[12,1],[10,-1],[3,5],[3,10],[4,-2],[8,-3],[18,-17],[4,-3],[8,-7],[6,-9],[-7,0],[-6,-2],[-7,0],[-6,0],[-1,-2],[7,-14],[5,-11],[7,-6],[4,-7],[3,-11],[7,-6],[8,-9],[11,-3],[13,0],[12,0],[12,-9],[4,-1],[18,-1],[3,-6],[6,-13],[5,-4],[5,-1],[2,-4],[2,-3],[10,-7],[8,-3],[7,1],[5,-3],[2,-8],[5,-8],[9,-1],[14,0],[12,1],[9,1],[15,0],[26,-8],[13,0],[6,0],[13,0],[16,-11],[6,-5],[4,-3],[7,-3],[10,-1],[12,-2],[11,-6],[7,-11],[7,-13],[5,-14],[3,-10],[2,-17],[-5,-22],[-1,-7],[-1,-7],[-4,-12],[-3,-10],[-7,-6],[-3,-9],[1,-9],[2,-8],[2,-4],[2,-8],[-1,-17],[-7,-5],[-5,-6],[-9,-6],[-7,-4],[-4,-7],[-5,-7],[-5,-8],[0,-9],[-5,-3],[-3,-1],[-4,-4],[-3,-2],[-5,-3],[2,-6],[4,-2],[4,-3],[4,-4],[5,-2],[6,-2],[14,-12],[9,-16],[4,-9],[6,-10],[9,-12],[7,-8],[4,-11],[16,-23],[7,-9],[7,-10],[6,-14],[3,-12],[7,-18],[8,-9],[8,-9],[17,-29],[8,-21],[5,-12],[5,-10],[4,-12],[3,-11],[4,-15],[2,-12],[1,-1],[7,-6],[3,-17],[-1,-25],[1,-15],[1,-9],[3,-9],[4,-5],[5,-6],[5,-9],[1,-7],[-1,-12],[4,2],[6,-7],[5,-6],[1,-13],[2,-6],[4,-5],[3,-6],[2,-5],[2,-4],[3,-5],[4,-7],[3,-7],[1,-7],[1,-6],[5,-4],[3,-6],[4,-8],[-2,-9],[0,-7],[2,-10],[4,-8],[8,-11],[6,-5],[2,-8],[1,-10],[2,-5],[8,-20],[11,-15],[12,-32],[9,-11],[4,-11],[5,-8],[2,-3],[1,-3],[4,-6],[4,-9],[5,-16],[2,-14],[2,-9],[4,-17],[2,-19],[1,-8],[-1,-7],[-1,-8],[1,-20],[0,-14],[1,-9],[4,-13],[2,-17],[2,-17],[1,-10],[1,-2],[-3,-6],[-1,-2],[1,-2],[0,-2],[2,-1],[2,-2],[1,-3],[0,-2],[3,-5],[0,-4],[-2,-2],[-5,0],[-1,-5],[5,-9],[1,-7],[1,-5],[0,-8],[0,-5],[-1,-3],[0,-3],[1,-5],[0,-12],[-1,-2],[0,-2],[-2,-4],[0,-3],[0,-5],[0,-6],[-3,-8],[-2,-4],[-1,-9],[1,-6],[0,-11],[0,-5],[-1,-5],[-1,-7],[-1,-7],[0,-4],[-3,-4],[-1,-4],[0,-4],[-1,-3],[-4,-3],[-4,-11],[-7,-20],[0,-8],[-5,-8],[-1,-5],[0,-7],[-7,-10],[-1,-4],[0,-7],[0,-5],[0,-9],[-2,-8],[-3,-12],[-3,-11],[-1,-4],[-2,-7],[-4,-6],[-2,-6],[-2,-4],[-4,-1],[-3,-3],[-1,-6],[0,-5],[1,-7],[-1,-2],[-3,-5],[-2,-4],[-1,-6],[-1,-3],[-4,-5],[-4,-7],[-2,-7],[0,-2],[-2,-1],[-3,0],[-1,-2],[1,-4],[0,-5],[-3,-5],[-3,-7],[-3,-4],[-2,-5],[-3,-2],[-3,-3],[-1,-6],[-7,-12],[-6,-11],[-2,-7],[-6,-12],[-8,-7],[-8,-10],[-8,-11],[-6,-10],[-6,-8],[-10,-7],[-11,-13],[-14,-21],[-6,-9],[-8,-11],[-4,-11],[-5,-8],[-7,-12],[-7,-8],[-7,-6],[-7,-1],[-6,-2],[-3,-6],[-5,-2],[-6,-3],[-6,-8],[-6,-1],[-8,0],[-6,-3],[-1,-6],[-10,-3],[-7,-12],[-4,-9],[-3,-11],[-4,-10],[-5,-8],[-7,-10],[1,-12],[7,-9],[4,-8],[4,0],[6,0],[5,-2],[6,-5],[1,-10],[0,-7],[5,-5],[6,-7],[3,4],[5,4],[7,4],[2,-7],[3,-5],[7,-10],[1,-9],[2,-10],[5,-13],[-1,-11],[2,-32],[-3,-21],[-6,-12],[-4,-13],[-15,-30],[-1,-5],[-4,-7],[-6,-10],[0,-8],[-1,-5],[-8,-25],[-10,-8],[-11,-4],[-6,-5],[-1,-10],[2,-14],[9,-13],[1,-12],[0,-13],[0,-6],[-5,-11],[-1,-9],[-9,-1],[-8,-2],[-14,-16],[0,-7],[-1,-11],[-2,-7],[-8,-7],[-9,-3],[-14,-2],[-10,-4],[-9,-2],[-18,4],[-13,15],[-4,5],[-7,17],[-4,-1],[-4,-8],[-6,2],[-3,6],[-5,15],[-8,3],[-12,0],[-11,0],[-8,-1],[-6,5],[-6,8],[-1,-2],[-9,-3],[-8,7],[-3,12],[1,22],[-2,19],[1,18],[-2,15],[-3,4],[-2,0],[-6,-5],[-12,6],[-4,9],[-7,8],[-6,4],[-6,3],[-5,0],[-3,0],[-6,2],[-12,16],[-4,-10],[-7,-5],[-4,-8],[-5,-14],[-18,-7],[0,18],[2,11],[8,12],[-4,2],[-19,5],[-13,0],[-20,6],[-9,15],[-16,21],[-46,13],[3,15],[-4,4],[-15,9],[-11,14],[-10,0],[-15,1],[-42,17],[-43,30],[-22,26],[-17,26],[-16,24],[-10,21],[-5,3],[-32,31],[-28,27],[-15,12],[-24,1],[-21,9],[-25,0],[-19,-2],[-25,-1],[-28,1],[-23,0],[-12,-5],[-8,-4],[-10,-8],[-16,4],[-12,7],[-13,1],[-13,-5],[-11,-4],[-14,-4],[-12,-1],[-6,9],[-6,10],[-17,3],[-11,-4],[-23,-6],[-10,0],[-4,4],[-13,0],[-16,7],[-18,11],[-5,2],[-10,-3],[-2,-4],[0,-10],[0,-6],[-24,1],[-14,-1],[-7,6],[-6,10],[-4,3],[-6,0],[-4,-1],[-13,7],[-12,1],[-9,4],[-8,1],[-11,-1],[-8,6],[-8,4],[-12,1],[-20,2],[-6,-2],[-13,4],[-20,13],[-16,11],[-8,8],[-9,5],[-12,8],[-12,9],[-24,45],[-12,17],[-15,19],[-12,21],[-3,5],[-9,9],[-33,35],[-7,10],[-7,15],[-9,10],[-12,16],[-16,18],[-6,8],[-9,13],[-7,7],[-9,7],[-9,6],[-11,5],[-9,10],[-19,20],[-8,11],[-27,28],[-15,38],[-12,33],[-14,54],[-11,44],[-1,19],[2,25],[0,22],[0,22],[9,52],[17,42],[20,79],[17,80],[4,55],[2,51],[1,13],[1,14],[3,13],[12,16],[4,10],[8,9],[7,13],[6,8],[2,13],[5,6],[5,0],[9,0],[7,1],[19,15],[9,10],[7,6],[10,10],[10,18],[3,11],[0,13],[0,13],[1,12],[2,9],[3,8],[3,5],[3,18],[1,5],[2,3],[2,4],[4,1],[4,0],[4,-1],[7,-1],[3,2],[5,8],[3,7],[2,3],[2,9],[0,4],[2,6],[7,13],[3,10],[6,7],[7,5],[6,4],[6,0],[2,-2],[3,-2],[4,4],[7,4],[7,3],[6,7],[3,-1],[6,-6],[5,0],[7,6],[7,10],[-1,17],[-3,5],[-1,6],[-1,11],[0,13],[-1,25],[7,10],[6,0],[2,2],[7,5],[14,16],[5,5],[4,8],[3,5],[5,10],[3,3],[9,9],[10,13],[6,1],[4,3],[7,4],[6,0],[10,1],[14,8],[2,0],[4,3],[5,4],[6,0],[3,1],[6,6],[6,2],[6,0],[6,1],[17,19],[1,4],[5,3],[6,1],[6,0],[6,1],[4,3],[5,8],[7,8],[5,2],[0,6],[3,10],[5,6],[3,3],[3,5],[7,4],[4,5],[3,10],[0,10],[6,11],[3,4],[5,9],[3,6],[5,7],[7,3],[7,5],[3,6],[1,10],[1,7],[3,8],[4,7],[4,7],[5,7],[5,5],[1,3],[6,6],[18,22],[23,24],[19,28],[3,6],[5,6],[3,5],[3,0],[3,0],[4,5],[5,3],[4,0],[4,0],[3,1],[6,3],[6,3],[5,7],[5,7],[7,3],[6,4],[8,7],[7,6],[4,1],[4,1],[5,0],[5,1],[5,1],[3,5],[9,6],[6,4],[6,4],[6,5],[6,4],[6,0],[10,0],[5,5],[5,3],[4,2],[4,3],[3,4],[4,3],[4,6],[7,3],[5,6],[4,5],[3,0],[3,2],[3,4],[4,8],[4,5],[7,2],[9,6],[12,10],[5,4],[8,4],[11,1],[8,0],[9,5],[15,7],[36,25],[8,10],[6,5],[13,3],[7,0],[7,-4],[2,-3],[8,-3],[1,1],[4,3],[9,2],[7,-1],[6,-3],[5,-1],[8,4],[7,8],[-1,11],[-4,15],[6,0],[5,2],[7,0],[6,-4],[2,-2],[5,-3],[5,-1],[14,12],[2,-8]],[[350580,118037],[32,-11],[26,-10],[11,-1],[11,0],[30,1],[7,-12],[3,-5],[-5,-4],[-8,-6],[-9,-7],[-16,-15],[-13,-26],[-8,-24],[-6,-17],[-8,-21],[-2,-5],[-15,-40],[-1,-10],[-10,-28],[6,-42],[12,-46],[-2,-30],[-5,-16],[0,-34],[-1,-1],[-9,-9],[-20,-9],[-10,-24],[-1,-3],[-1,-3],[10,-15],[7,-10],[10,-15],[3,-11],[10,-14],[6,-9],[2,-3],[3,-3],[10,-28],[11,-45],[26,-26],[9,-6],[21,-16],[2,0],[33,-14],[18,-4],[18,-4],[37,-9],[36,-5],[34,-4],[33,-5],[39,-6],[35,-4],[33,-10],[33,-11],[25,-11],[41,-10],[20,-19],[6,-35],[-2,-23],[-2,-26],[-8,-30],[-3,-12],[3,-11],[3,-13],[4,10],[16,12],[12,-5],[8,-12],[11,-15],[30,-19],[34,-5],[34,-3],[32,-21],[4,-14],[4,-13],[1,-17],[-6,-46],[15,-41],[27,-29],[14,-13],[13,-14],[27,-34],[10,-48],[2,-48],[0,-3],[-1,-10],[-3,-38],[0,-2],[-6,-27],[-4,-18],[-8,-21],[-9,-21],[-11,-17],[-12,-17],[-9,-7],[-21,-17],[-28,-26],[-32,-27],[-28,-23],[-2,-1],[-29,-21],[-5,-5],[-25,-21],[-30,-17],[-36,-12],[-7,-3],[-26,-12],[-40,-9],[-35,-6],[-18,-6],[-18,-5],[-34,-4],[-36,-5],[-34,-6],[-29,-4],[-6,0],[-34,0],[-35,0],[-22,0],[-16,0],[-34,0],[-8,0],[-32,-2],[-39,-2],[-35,-5],[-44,-5],[-36,-1],[-32,0],[-36,-2],[-36,-9],[-39,-19],[-34,-14],[-32,-2],[-34,3],[-32,6],[-39,9],[-35,6],[-33,4],[-2,0],[-35,4],[-36,5],[-33,6],[-38,9],[-36,8],[-34,13],[-9,7],[-8,7],[-10,16],[-7,19],[-3,9],[-4,3],[-3,4],[-24,26],[-2,1],[-30,24],[-2,2],[-4,6],[-22,24],[-10,17],[-10,18],[-11,44],[2,23],[2,22],[7,23],[7,23],[9,20],[8,21],[18,39],[9,21],[10,21],[4,7],[18,29],[25,35],[19,24],[7,9],[13,15],[12,15],[27,26],[29,20],[31,21],[32,23],[29,23],[5,8],[13,17],[20,28],[10,13],[28,25],[29,22],[18,5],[33,-9],[22,-6],[15,3],[-3,3],[-25,26],[-15,14],[0,39],[0,20],[0,31],[0,32],[0,10],[3,46],[6,32],[2,12],[0,4],[-2,4],[-2,2],[-10,17],[-15,13],[-11,6],[-11,5],[-4,1],[-15,6],[-15,5],[-18,6],[-18,6],[-20,6],[-12,4],[-16,8],[-38,18],[-17,12],[-3,7],[1,35],[11,26],[26,53],[14,22],[20,14],[7,3],[8,3],[21,12],[0,4],[-2,12],[0,11],[2,17],[3,12],[7,20],[6,7],[19,23],[28,27],[27,29],[26,31],[28,25],[29,25],[30,22],[28,21],[26,18],[13,0],[28,17],[58,16],[27,0],[32,-1],[36,7],[7,3],[3,-1],[3,-1],[6,-1]],[[350563,118381],[8,0],[28,7],[6,-9],[-7,-9],[-5,-1],[-5,0],[-11,-10],[-6,-15],[-10,-17],[-5,-7],[-10,-13],[-11,-16],[-7,-17],[-11,-19],[-21,-24],[-27,-29],[-18,-17],[-14,-12],[-19,-12],[-16,-11],[-18,-19],[-16,-20],[-25,-23],[-14,3],[-12,14],[-8,12],[-21,-4],[-26,-17],[-9,-12],[-9,-11],[-14,-18],[-3,-4],[-4,-3],[1,11],[4,10],[5,15],[1,4],[-9,17],[-9,6],[-7,1],[0,13],[8,25],[4,16],[6,19],[8,18],[20,34],[18,29],[4,5],[29,27],[12,5],[8,-12],[8,5],[6,9],[9,10],[22,17],[15,4],[14,-1],[13,7],[14,4],[4,-4],[9,-16],[10,-12],[11,15],[4,23],[5,22],[17,17],[13,5],[0,-5],[0,-4],[-1,-8],[-1,-11],[0,-13],[4,0],[18,27],[22,32],[9,4],[4,-6],[3,-7],[1,-13],[0,-6],[4,-5]],[[336270,118557],[-24,-2],[-15,36],[13,49],[11,41],[22,-4],[16,-32],[-1,-43],[-22,-45]],[[442775,118999],[5,-1],[6,1],[4,-2],[5,-4],[5,-3],[5,-2],[6,0],[4,-1],[6,-5],[4,-10],[4,-6],[4,-5],[4,-3],[4,-2],[5,-6],[3,-7],[2,-7],[3,-4],[4,-6],[5,-13],[4,-3],[5,-1],[2,-2],[4,-6],[4,-5],[4,-4],[7,-3],[3,-4],[5,-5],[3,-4],[4,-3],[3,1],[2,2],[1,0],[5,-3],[8,-2],[6,-3],[3,-5],[3,-2],[5,-3],[5,-2],[2,-1],[4,-1],[2,-1],[3,-5],[5,-4],[4,0],[1,-6],[1,-6],[1,-5],[1,-4],[3,-7],[0,-4],[2,-8],[3,-5],[5,-1],[16,0],[3,-1],[1,-2],[9,-3],[9,-8],[3,-4],[1,0],[3,0],[2,-3],[2,-6],[2,-1],[4,-1],[2,-5],[1,-5],[0,-8],[2,-5],[2,-5],[3,-6],[4,-8],[2,-6],[2,-3],[3,-6],[1,-17],[0,-10],[0,-12],[1,-9],[4,-13],[-3,-27],[-3,-7],[-4,-9],[-3,-6],[0,-5],[0,-11],[-4,-12],[0,-7],[6,-1],[3,-5],[-1,-6],[-2,-6],[1,-6],[3,-5],[3,-4],[2,-3],[2,2],[0,4],[0,5],[8,3],[2,0],[6,1],[10,3],[23,0],[2,-4],[1,-7],[2,-7],[2,-4],[4,-6],[4,-2],[2,6],[5,4],[8,2],[4,-5],[7,-4],[6,-5],[0,-2],[5,-9],[1,-15],[0,-11],[0,-14],[3,-4],[1,-2],[4,-6],[1,-5],[1,-6],[3,-2],[1,-5],[6,-12],[1,-42],[0,-3],[2,-2],[1,-1],[3,-5],[2,-6],[2,-6],[1,-8],[3,-7],[2,-4],[4,-6],[3,-6],[2,-2],[9,-3],[3,-3],[3,-5],[13,-6],[6,-2],[6,0],[4,-3],[6,-4],[4,-5],[3,-9],[3,-6],[3,-5],[3,-2],[2,-3],[3,-5],[22,2],[9,-4],[4,-8],[5,-5],[1,0],[5,3],[6,1],[6,1],[2,-2],[1,-3],[6,-10],[4,-8],[4,-5],[2,-4],[4,-2],[4,-5],[2,-5],[6,-2],[3,-1],[5,-1],[9,1],[2,-5],[2,-3],[4,-1],[6,-4],[3,-4],[3,-6],[3,-5],[4,-2],[5,-2],[8,0],[6,1],[7,3],[3,-1],[5,-3],[4,-5],[5,-3],[7,0],[8,-5],[7,-6],[3,-4],[2,-1],[2,-3],[1,-5],[3,-6],[0,-6],[-1,-6],[-1,-6],[-4,-4],[-2,-2],[0,-5],[3,-5],[4,-5],[-1,-6],[2,-6],[2,-4],[0,-5],[-1,-4],[0,-6],[2,-5],[3,-5],[0,-5],[-1,-7],[-1,-7],[0,-6],[9,-6],[4,-3],[2,-2],[8,-9],[8,5],[1,-1],[3,-7],[2,-5],[3,-3],[2,-1],[1,0],[5,0],[4,1],[4,5],[4,5],[1,1],[1,7],[2,5],[4,1],[2,-4],[2,-4],[3,-5],[4,-6],[2,-3],[5,-4],[5,-6],[1,-6],[1,-5],[2,-4],[4,-8],[3,-2],[6,0],[7,0],[3,-3],[7,-5],[3,0],[3,0],[4,1],[5,0],[7,3],[3,-2],[2,-6],[2,-3],[2,-2],[7,-4],[4,-2],[6,-3],[2,-1],[3,-6],[7,-15],[4,-8],[2,-2],[5,-5],[4,-1],[4,-1],[3,-2],[2,-1],[2,-1],[4,0],[2,-2],[1,-2],[4,-4],[3,-2],[6,-2],[2,-10],[0,-1],[6,-7],[1,-5],[2,-2],[6,-2],[5,-4],[6,-3],[6,-4],[3,-1],[4,-1],[6,0],[2,-1],[4,-2],[0,-1],[4,-2],[1,0],[5,-6],[2,-2],[3,-2],[4,-2],[2,-3],[3,-4],[2,-3],[2,-6],[0,-2],[5,-6],[4,-6],[4,-5],[3,-3],[3,-2],[1,-1],[3,-3],[5,-5],[6,-5],[1,-2],[2,-9],[2,-9],[4,-5],[3,-8],[1,-4],[2,-3],[3,-3],[5,-4],[3,-1],[3,0],[1,-1],[1,-1],[5,0],[2,0],[3,-3],[1,-2],[5,-3],[2,-4],[1,-5],[0,-4],[6,-2],[4,-2],[5,-5],[2,-3],[1,-1],[7,0],[13,-8],[9,-9],[3,-3],[5,-2],[1,-1],[7,0],[5,0],[2,0],[7,-10],[11,-12],[5,-6],[4,-4],[1,-1],[4,-2],[12,-15],[3,-3],[2,-5],[4,-8],[6,-6],[3,-4],[0,-2],[10,-13],[2,-6],[6,-2],[11,-2],[1,-1],[1,-1],[4,-5],[3,-3],[2,-4],[5,-5],[4,-2],[2,-4],[2,-4],[4,-6],[6,-3],[5,-4],[6,-5],[8,-2],[1,-1],[5,1],[12,-6],[6,-5],[5,-3],[5,-6],[3,-1],[9,-6],[2,-6],[1,-1],[4,-1],[5,-1],[6,-3],[7,-5],[3,-2],[5,-2],[3,-1],[5,-4],[2,-3],[4,-4],[5,-1],[1,-7],[-1,-7],[0,-6],[3,-6],[4,-4],[4,-2],[7,-4],[4,-3],[4,-7],[5,-9],[4,-6],[3,-3],[5,-1],[8,-8],[7,-2],[3,-4],[3,-8],[4,-7],[4,-6],[3,-4],[2,-6],[3,-6],[5,1],[7,-6],[1,-8],[1,-5],[3,-2],[1,-5],[2,-6],[4,-5],[2,-2],[5,-1],[5,-1],[4,-5],[3,-3],[6,-3],[4,-4],[6,-6],[1,-6],[0,-5],[2,-6],[11,-13],[7,-6],[2,-3],[5,0],[3,0],[2,-4],[4,-1],[8,-1],[7,0],[2,0],[4,-6],[4,-1],[2,-2],[3,-5],[3,-2],[3,-2],[3,-7],[0,-12],[0,-9],[-1,-4],[-1,-6],[0,-5],[0,-9],[0,-6],[-3,-7],[-1,-7],[5,-2],[5,0],[4,0],[1,-1],[2,-1],[6,-7],[7,-12],[2,-3],[8,-6],[2,0],[3,-4],[1,-5],[1,-9],[2,-7],[3,-7],[1,-6],[-1,-6],[-2,-7],[0,-5],[-5,-8],[-9,-9],[-1,-6],[2,-1],[5,-1],[2,-2],[3,-6],[7,-1],[4,-3],[2,-7],[0,-7],[0,-9],[1,-5],[5,-2],[5,0],[7,0],[4,-3],[2,-4],[0,-6],[1,-8],[3,-7],[7,-6],[5,-5],[5,-3],[2,-10],[0,-9],[0,-16],[2,-5],[3,-4],[3,-5],[4,-4],[0,-15],[-1,-8],[1,-14],[2,-4],[2,-7],[0,-5],[0,-5],[-1,-5],[3,-6],[4,-4],[3,-4],[6,-3],[5,0],[7,1],[6,0],[6,0],[5,-1],[4,-5],[4,-5],[2,-4],[3,-6],[3,-3],[5,-5],[4,-23],[2,-11],[1,-10],[6,-12],[4,-10],[5,-8],[1,-2],[5,-4],[5,-11],[1,-4],[3,-10],[3,-5],[2,-5],[5,-2],[2,-2],[9,-1],[5,0],[3,-1],[5,1],[5,1],[4,2],[3,2],[7,3],[4,-3],[2,-4],[0,-5],[0,-7],[0,-11],[-5,-13],[-1,-7],[-1,-4],[0,-4],[0,-5],[0,-4],[1,-2],[5,0],[4,-4],[1,-5],[1,-6],[3,-6],[1,-6],[0,-9],[-1,-23],[1,-4],[2,-3],[5,-6],[6,-8],[5,-9],[-3,-7],[-7,-6],[-7,-3],[-3,-9],[2,-9],[3,-5],[6,-11],[3,-13],[-4,-14],[-6,-4],[-10,2],[-12,5],[-14,-17],[-3,-1],[-4,-5],[-10,-7],[0,-21],[-7,-7],[-13,2],[-7,0],[-8,-5],[-7,-5],[-2,-5],[-5,-4],[-8,3],[-5,5],[-4,9],[-5,3],[-1,-5],[-2,-5],[-4,-6],[-7,-5],[-8,1],[-10,6],[-8,1],[-7,-2],[-4,0],[-11,4],[-5,8],[-10,0],[-9,0],[-8,3],[-9,9],[-6,-1],[-7,-5],[-7,-6],[-4,-2],[-9,-1],[-24,-1],[-6,2],[-12,7],[-10,0],[-8,-2],[-4,-7],[-3,-10],[-9,-5],[-6,6],[-9,3],[-7,3],[-2,-6],[-2,-7],[-8,-10],[-13,-1],[-9,1],[-5,4],[-12,7],[-5,4],[-3,0],[-7,2],[-4,0],[-4,-3],[-2,-3],[-7,-1],[-7,2],[-5,3],[-5,1],[-6,4],[-6,-1],[-8,1],[-4,5],[-7,3],[-9,0],[-3,-1],[-5,0],[-4,0],[-4,3],[-7,5],[-4,0],[-5,0],[-6,-3],[-2,-4],[-12,1],[-2,18],[-1,6],[-1,3],[-6,1],[-4,-1],[-8,0],[-5,3],[-3,2],[-1,0],[-11,-1],[-8,1],[-1,-1],[-5,-8],[-10,-3],[-14,3],[-7,4],[-6,1],[-8,0],[-8,-1],[-7,-6],[-6,-8],[-1,-6],[-2,-6],[-3,-6],[-4,-2],[-6,-3],[-9,-3],[-6,-1],[-8,2],[-6,0],[-6,0],[-6,2],[-7,2],[-2,-4],[-1,-6],[0,-2],[-6,-5],[-5,-5],[-10,-5],[-4,-2],[-15,0],[-7,1],[-6,0],[-10,-10],[-10,-1],[-12,5],[-20,16],[-16,-1],[-10,7],[-18,1],[-15,0],[-15,-1],[-9,7],[-9,9],[-39,9],[-23,0],[-27,-11],[-20,-12],[-5,-5],[-5,-7],[2,-6],[5,-8],[5,-6],[1,-16],[-1,-7],[-2,-7],[-9,-4],[-6,-3],[-13,-4],[-15,-1],[-12,3],[-13,0],[-11,0],[-23,-5],[-6,-2],[-5,-5],[-7,-4],[-6,1],[-6,2],[-8,6],[-6,2],[-3,-2],[-9,-4],[-2,-2],[-6,-1],[-15,-7],[-1,20],[-4,8],[-13,9],[-6,2],[-7,6],[-7,7],[-7,7],[-3,0],[-8,0],[-7,8],[-5,11],[-5,22],[-52,1],[-3,6],[-1,8],[0,7],[0,7],[1,5],[2,4],[2,2],[5,0],[2,1],[2,13],[-1,8],[-12,7],[-8,-1],[-3,6],[-2,6],[-1,6],[1,7],[0,8],[0,7],[-11,13],[-2,8],[-8,5],[-5,2],[-5,4],[-3,27],[0,9],[-2,8],[-5,4],[-7,5],[-7,2],[-2,4],[-37,-1],[-17,0],[-7,2],[-3,2],[-6,9],[-6,8],[-10,-1],[-7,0],[-7,-1],[-5,-2],[-2,-4],[1,-6],[0,-6],[2,-5],[0,-6],[-3,-5],[-5,-4],[-5,0],[-6,9],[0,5],[-1,6],[0,7],[-2,8],[-9,12],[-4,5],[-5,8],[-3,5],[-1,8],[-2,3],[-6,5],[-1,8],[0,14],[-1,3],[-3,3],[-3,1],[-1,-2],[-2,0],[-3,0],[-12,5],[-6,5],[-4,9],[-3,6],[-1,7],[1,7],[1,7],[-1,5],[-8,18],[-7,8],[-7,2],[-2,11],[3,3],[5,0],[4,1],[1,10],[-1,8],[-3,3],[-7,14],[-10,14],[-1,10],[-4,9],[-2,7],[0,12],[2,5],[3,7],[1,8],[-8,20],[-2,10],[-4,13],[-3,6],[-4,8],[-1,9],[3,4],[1,8],[-3,2],[-4,0],[-6,1],[-22,18],[-11,23],[-10,15],[-12,37],[-5,4],[-2,4],[-3,9],[-5,15],[-5,9],[-15,16],[-11,20],[-4,2],[-3,4],[-2,10],[-1,11],[1,16],[-1,8],[-2,7],[0,4],[-1,9],[10,37],[22,58],[7,1],[2,3],[2,6],[1,9],[1,5],[1,8],[4,7],[2,9],[2,6],[3,4],[6,16],[-1,9],[-1,4],[1,4],[3,7],[5,10],[3,1],[8,5],[8,5],[4,1],[2,3],[4,7],[6,6],[1,10],[0,10],[-3,8],[5,0],[4,2],[1,9],[-3,8],[-1,5],[-9,1],[-6,3],[-5,4],[-2,7],[-1,6],[0,18],[3,17],[2,4],[2,8],[-10,33],[-2,16],[3,8],[-4,5],[-8,7],[-6,12],[-6,35],[1,7],[-2,8],[-3,2],[-5,5],[-4,10],[-3,3],[-3,5],[-4,5],[-3,0],[-4,-2],[-2,3],[-2,6],[2,9],[1,11],[-1,3],[-1,4],[-5,3],[-2,0],[-2,-4],[-2,-5],[-4,-3],[-2,0],[-2,2],[-2,5],[-2,9],[-1,5],[-1,8],[0,8],[5,24],[2,5],[2,3],[4,4],[2,3],[6,-1],[3,-2],[5,-4],[8,-1],[5,3],[4,3],[5,2],[16,1],[7,0],[6,0],[7,0],[4,0],[4,1],[8,3],[6,3],[2,5],[1,15],[2,5],[0,11],[-2,6],[-1,7],[-3,10],[-2,8],[-13,14],[-6,7],[-2,8],[-3,0],[-5,-4],[-4,0],[-6,8],[-2,7],[1,16],[-1,5],[-4,13],[0,10],[-1,6],[-1,10],[1,7],[5,15],[1,12],[-4,7],[-2,0],[-5,1],[-5,-1],[-4,4],[-3,5],[-2,2],[-10,9],[-1,8],[-2,5],[-3,5],[-4,2],[-4,2],[-3,1],[-5,-1],[-4,1],[-2,3],[-12,13],[-2,2],[-14,15],[-5,3],[-4,6],[-2,5],[-3,2],[-7,7],[-4,20],[-3,9],[-3,11],[-2,5],[-1,13],[-1,11],[0,6],[0,8],[-1,4],[-1,2],[-13,9],[-11,7],[-4,3],[-4,5],[-4,5],[-7,5],[-4,3],[-2,0],[-3,4],[-2,8],[8,15],[5,8],[4,8],[4,7],[2,1],[6,6],[6,4],[2,0],[0,4],[1,2],[1,6],[1,4],[0,4],[-7,2],[-6,3],[-2,11],[-1,28],[1,13],[10,18],[4,4],[5,2],[6,1],[4,5],[4,6],[5,6],[3,6],[4,5],[3,3],[5,1],[5,0],[4,-1],[3,2],[1,8],[-1,5],[-2,2],[-4,4],[-1,7],[-1,2],[-7,5],[-7,3],[-11,-2],[-9,-2],[-6,0],[-4,0],[-3,-3],[-2,-3],[-4,-3],[-5,-3],[-4,-1],[-3,-3],[-27,-2],[-15,-1],[-9,2],[-7,2],[-4,1],[-3,2],[-4,4],[-11,12],[-4,7],[-4,6],[-7,9],[-3,4],[-4,3],[-3,9],[-12,1],[-7,-1],[-5,0],[-3,0],[-4,0],[-3,1],[0,2],[-2,3],[-1,6],[-4,4],[-2,1],[-7,-1],[-4,5],[-2,5],[-2,2],[-4,1],[-2,3],[0,2],[0,3],[-1,3],[-3,1],[-3,0],[-3,-1],[-4,-4],[-4,-2],[-3,-3],[-1,-2],[-2,-3],[-7,4],[-5,3],[-6,2],[-7,4],[-1,0],[0,3],[-6,1],[-3,0],[-5,-1],[-3,3],[-11,3],[-5,5],[-2,3],[-4,0],[-3,0],[-3,0],[-5,0],[-5,0],[-3,1],[-2,0],[-4,0],[-2,3],[-2,3],[-6,4],[-9,4],[-2,1],[-3,0],[-4,0],[-4,0],[-4,-1],[-5,0],[-4,2],[-6,4],[-3,2],[-7,2],[-3,5],[-7,0],[-7,5],[-1,1],[-3,2],[-3,1],[-2,2],[0,2],[-2,5],[-7,10],[-1,5],[0,6],[0,4],[-1,2],[-2,2],[-2,2],[-1,4],[-1,1],[-2,2],[-4,0],[-1,4],[0,2],[-2,3],[-5,0],[1,5],[1,13],[-1,3],[-1,3],[-3,2],[-3,1],[-2,2],[-4,2],[-2,4],[-1,2],[0,1],[0,5],[0,5],[-1,3],[-3,6],[-3,5],[0,4],[-2,4],[-2,3],[-2,4],[-3,2],[-6,3],[-1,2],[0,5],[-3,-1],[-3,0],[-2,12],[-1,6],[0,5],[0,3],[1,2],[2,2],[2,2],[1,0],[3,1],[0,1],[1,1],[2,0],[5,1],[3,1],[1,2],[3,3],[1,3],[2,6],[1,11],[0,1],[4,3],[2,8],[5,6],[4,7],[2,1],[3,6],[4,5],[2,4],[0,3],[0,4],[-1,7],[4,3],[2,1],[5,4],[11,4],[3,2],[2,2],[6,1],[4,0],[5,0],[5,0],[3,1],[1,1],[1,2],[2,1],[2,2],[1,2],[2,0],[3,0],[3,0],[2,5],[4,1],[4,1],[4,2],[2,0],[3,-1],[2,-1],[3,0],[3,0],[4,0],[2,0],[4,2],[3,1],[5,1],[5,1],[5,5],[2,1],[4,0],[3,2],[2,1],[4,4],[2,3],[1,5],[2,3],[4,2],[6,2],[4,4],[8,5],[5,3],[2,2],[1,4],[1,2],[3,1],[2,1],[2,3],[0,2],[0,3],[1,2],[1,1],[3,3],[3,3],[2,4],[0,4],[0,1],[-2,1],[0,3],[2,5],[3,4],[5,2],[6,2],[2,3],[6,2],[6,2],[6,-7],[8,-7],[2,-5],[2,-6],[0,-2],[4,-3],[2,-2],[4,2],[6,4],[2,2],[-1,2],[0,3],[-1,3],[2,1],[3,1],[3,-1],[3,-3],[4,-2],[3,-1],[3,1],[3,3],[5,2],[4,2],[5,6],[6,3],[4,2],[4,1],[8,1],[7,1],[9,1],[5,2],[3,-1],[5,-4],[9,-3]],[[336721,119006],[-11,-5],[-11,12],[4,23],[3,24],[15,-3],[8,-21],[-8,-30]],[[336617,118991],[16,-8],[-1,19],[-1,36],[14,20],[29,5],[17,-10],[2,-37],[1,-32],[-11,-26],[-15,-7],[-8,-23],[-22,-22],[-21,0],[-21,-24],[-34,-7],[-24,17],[-20,25],[-2,59],[15,25],[16,11],[3,17],[-1,23],[5,20],[15,17],[14,8],[14,-1],[12,-20],[2,-26],[2,-36],[-4,-16],[8,-7]],[[336645,119326],[15,-26],[-5,-63],[-32,-47],[-28,-11],[-21,-60],[-25,-43],[-62,-84],[-1,-27],[-35,-59],[-28,-78],[-53,-91],[-24,-25],[-27,21],[-21,6],[-30,-2],[-19,30],[-25,70],[4,47],[12,53],[5,82],[6,57],[42,134],[14,66],[37,42],[50,15],[70,-20],[59,-2],[52,17],[37,15],[33,-17]],[[337288,118942],[-41,-50],[-28,15],[-51,119],[-1,187],[26,183],[53,149],[58,47],[26,-17],[42,-94],[29,-106],[30,-88],[-24,-47],[-50,-32],[-54,-19],[19,-39],[-3,-73],[-31,-135]],[[336873,119303],[-37,-34],[-32,28],[0,54],[-1,94],[-22,75],[-74,111],[-16,96],[7,115],[43,206],[10,219],[16,49],[49,-22],[45,-65],[42,-129],[35,-205],[-9,-256],[-29,-195],[-27,-141]],[[337362,120668],[-16,-128],[-82,2],[-79,72],[-81,82],[-64,129],[-53,104],[-87,121],[-45,72],[9,26],[112,17],[121,-55],[158,-170],[61,-80],[46,-192]],[[351367,121395],[11,-27],[14,-3],[26,0],[13,-16],[13,-15],[3,-14],[6,-31],[-6,-59],[20,-32],[18,-40],[2,-13],[6,-35],[-14,-43],[-22,-34],[-31,-25],[-31,-21],[-32,-20],[-31,-20],[-33,-21],[-32,-18],[-6,-4],[-28,-18],[-30,-20],[-34,-26],[-31,-27],[-30,-18],[-17,-3],[-17,-2],[-33,15],[-4,49],[-7,22],[-6,21],[-13,32],[-3,9],[-3,53],[13,46],[4,5],[23,26],[27,25],[25,30],[-8,18],[-27,27],[-10,43],[17,41],[20,35],[24,35],[27,29],[29,24],[34,2],[32,-1],[34,-1],[32,6],[32,19],[20,-1],[14,-4]],[[336712,121814],[77,-11],[84,11],[52,0],[50,-1],[24,-7],[25,-26],[27,-71],[4,-52],[-4,-55],[-6,-62],[-2,-26],[-17,-11],[-31,-2],[-72,-2],[-124,-5],[-133,-32],[-43,-19],[-43,-22],[-35,6],[-18,2],[-12,5],[-9,6],[-6,6],[-7,7],[-9,4],[-9,3],[-1,10],[2,7],[6,13],[-13,20],[-23,11],[-23,17],[-24,8],[-10,-7],[-10,-11],[-11,-4],[-23,15],[-30,11],[-21,5],[-69,37],[-84,51],[-99,67],[-33,26],[-41,30],[-49,25],[-15,11],[-16,23],[-14,11],[-10,11],[-12,17],[-10,17],[-11,9],[-11,6],[-9,14],[-8,21],[-7,26],[-23,34],[-7,26],[3,18],[4,3],[11,0],[11,0],[11,4],[18,12],[16,11],[36,33],[38,7],[37,-19],[55,-51],[83,-62],[82,-38],[82,-21],[93,-16],[71,-2],[47,-2],[58,-11],[26,-13],[89,-34],[75,-22]],[[335800,122050],[-3,0],[-5,0],[-6,3],[-26,21],[-14,9],[-7,5],[-1,5],[5,8],[5,4],[7,0],[7,2],[4,6],[5,3],[10,6],[7,3],[34,-4],[21,-2],[20,-3],[11,-3],[-14,-9],[-18,-14],[-21,-18],[-9,-11],[-4,-8],[-8,-3]],[[335502,122539],[11,-2],[16,2],[43,5],[69,-10],[38,-21],[46,-30],[44,-35],[24,-32],[16,-43],[18,-61],[9,-27],[4,-21],[1,-14],[0,-10],[-3,-14],[-2,-3],[-6,-8],[-8,-5],[-5,2],[-12,1],[-55,-8],[-35,0],[-5,3],[-7,-1],[-8,-3],[-6,0],[-2,1],[-8,5],[-8,5],[-14,3],[-17,2],[-10,1],[-6,-2],[-6,-3],[-10,-1],[-14,7],[-4,1],[-3,5],[-3,8],[-5,4],[-5,-1],[-3,-4],[-8,4],[-4,4],[-6,5],[-5,4],[-3,4],[-1,5],[-2,8],[-4,5],[-8,4],[-8,4],[-4,5],[-6,9],[-2,7],[2,2],[3,1],[4,0],[5,4],[0,7],[-7,15],[-7,6],[-14,19],[-14,14],[-10,21],[-13,34],[-9,24],[-5,18],[-4,8],[-4,5],[-1,8],[3,17],[-2,17],[2,5],[11,4],[19,6],[23,7],[4,-1],[6,-5]],[[332327,124172],[-50,-32],[-110,51],[-115,109],[-65,169],[-81,79],[15,108],[52,4],[62,-37],[55,-3],[82,-68],[61,-111],[83,-144],[45,-55],[-34,-70]],[[331659,124402],[-17,-17],[-140,43],[-150,130],[-76,158],[-70,156],[-93,141],[-83,44],[-73,158],[27,63],[-11,118],[80,22],[70,-34],[157,-137],[163,-136],[60,-107],[61,-214],[64,-228],[31,-160]],[[330906,125378],[-3,-163],[-82,-29],[-148,91],[-236,-10],[-308,-52],[-221,-14],[-244,80],[-177,157],[36,67],[179,113],[196,69],[228,38],[298,-31],[290,-107],[124,-99],[68,-110]],[[329815,125714],[-72,-33],[-44,7],[-31,58],[23,42],[101,50],[50,-17],[13,-55],[-40,-52]],[[403321,127523],[-7,-13],[4,-12],[11,2],[8,12],[7,7],[8,1],[12,-15],[14,-1],[2,11],[4,11],[8,10],[11,2],[9,1],[8,-1],[12,-4],[11,-4],[10,-3],[12,-6],[6,-6],[10,-10],[13,-12],[8,-7],[12,-9],[5,-12],[0,-15],[-4,-11],[-6,-6],[-3,-11],[8,-8],[8,3],[1,11],[1,11],[8,8],[8,-4],[10,-7],[6,-8],[9,-10],[3,-11],[-4,-10],[-5,-12],[-10,-14],[-9,-9],[-6,-7],[-9,-11],[-9,-12],[-2,-15],[4,-23],[11,-10],[7,-7],[5,8],[8,4],[8,-5],[5,-10],[6,-7],[6,-8],[6,-9],[6,-8],[7,-8],[6,-6],[8,-11],[6,-8],[7,-13],[6,-15],[4,-13],[4,-18],[3,-12],[4,-15],[5,-9],[5,-16],[16,-17],[13,-1],[12,-3],[5,-11],[6,-11],[6,-14],[2,-14],[-6,-10],[-11,-6],[-9,-3],[-6,-6],[-9,4],[-1,12],[-5,14],[-10,3],[-8,-12],[1,-12],[1,-14],[1,-11],[2,-13],[2,-18],[2,-10],[4,-21],[-1,-15],[-2,-15],[-4,-11],[-7,-16],[-8,-19],[-7,-14],[-7,-7],[-11,-3],[-8,1],[-10,2],[-13,0],[-8,-6],[-8,-2],[-9,1],[-9,4],[-7,4],[-10,7],[-8,5],[-7,6],[-9,8],[-5,7],[-9,14],[-5,9],[-7,11],[-11,3],[-10,-4],[-10,-1],[-10,4],[-8,5],[-9,4],[-15,8],[-9,6],[-7,6],[-13,7],[-12,-7],[-7,-4],[-14,-6],[-10,-16],[-6,-14],[-12,-7],[-12,-5],[-13,1],[-10,2],[-17,9],[-11,8],[-8,10],[-10,10],[-10,11],[-9,7],[-8,9],[-10,9],[-12,9],[-12,11],[-11,5],[-14,6],[-10,4],[-15,4],[-17,5],[-11,0],[-14,0],[-15,-8],[-16,-11],[-8,-7],[-42,11],[-14,4],[-7,-15],[-3,-10],[-7,-17],[-3,-15],[-5,-10],[-5,-9],[-5,-12],[-7,-12],[-2,-8],[-11,-16],[-8,-11],[-5,-10],[-7,-14],[-8,-10],[-9,-12],[-12,-12],[-15,-15],[-11,-10],[-11,-10],[-10,-7],[-10,-9],[-11,-10],[-10,-6],[-15,-7],[-9,-5],[-15,-7],[-13,-8],[-11,-7],[-11,-6],[-10,-2],[-12,-3],[-11,-2],[-14,-1],[-13,-1],[-18,1],[-15,0],[-13,-3],[-12,-3],[-11,-5],[-9,-11],[-12,-9],[-12,-5],[-12,-6],[-11,0],[-11,0],[-10,0],[-12,0],[-8,0],[-15,0],[-12,-3],[-9,3],[-14,3],[-11,5],[-8,5],[-13,12],[-14,11],[-9,8],[-8,8],[-5,10],[-7,21],[-16,7],[-10,7],[-7,6],[-14,1],[-8,-5],[-9,-4],[-9,1],[-8,10],[0,12],[-2,15],[0,13],[1,12],[2,13],[3,11],[7,13],[11,7],[12,7],[15,17],[1,17],[4,10],[7,12],[11,2],[11,3],[13,8],[9,5],[10,4],[12,1],[11,0],[8,6],[0,11],[0,13],[-1,11],[1,14],[2,13],[3,15],[6,17],[5,10],[8,13],[6,9],[5,9],[12,15],[6,14],[7,13],[6,7],[11,14],[8,7],[7,10],[11,13],[10,14],[8,15],[6,10],[6,7],[9,8],[9,9],[12,10],[11,10],[8,7],[8,6],[10,8],[12,7],[13,4],[10,4],[9,1],[10,3],[7,6],[10,3],[16,3],[11,4],[4,1],[10,1],[10,4],[8,1],[12,3],[15,2],[8,-1],[8,0],[12,0],[11,1],[9,0],[8,0],[12,-1],[12,0],[10,0],[15,0],[12,0],[8,1],[18,0],[16,-2],[16,1],[8,0],[11,0],[8,-3],[5,-7],[5,-11],[7,-10],[11,-1],[5,11],[-3,11],[0,14],[8,5],[15,-2],[8,4],[1,14],[7,7],[9,2],[7,4],[10,1],[2,11],[5,10],[8,6],[13,3],[15,18],[10,9],[6,9],[11,8],[10,8],[5,11],[7,13],[7,6],[7,6],[8,7],[7,14],[12,13],[0,18],[6,7],[8,-3],[12,0],[11,22],[7,14],[7,10],[9,-1],[8,-3],[10,-7],[9,-5],[2,-10],[-1,-15]],[[333606,125205],[8,-41],[32,5],[13,-36],[-39,-92],[-14,-104],[16,-65],[49,-80],[17,-86],[-26,-31],[-99,12],[-76,-1],[-15,-3],[-18,-47],[-51,-35],[-109,-85],[-19,68],[-29,140],[-9,172],[-23,135],[-64,116],[-25,117],[-42,90],[-50,255],[-34,257],[-18,218],[-99,243],[-158,269],[-152,115],[-143,167],[-182,149],[-134,84],[-248,30],[-245,8],[-236,134],[-90,158],[-194,273],[-111,134],[-10,54],[218,139],[258,32],[174,-34],[217,-172],[350,-388],[316,-404],[255,-294],[162,-185],[245,-361],[149,-274],[50,-134],[34,-140],[110,-212],[81,-189],[8,-81]],[[430410,128273],[33,-4],[22,1],[14,0],[19,-7],[2,-12],[-1,-15],[-17,-21],[-1,-23],[1,-12],[6,-18],[4,-17],[3,-17],[-1,-32],[-9,-28],[-13,-15],[-13,-18],[-21,-8],[-9,-9],[-5,-15],[0,-15],[0,-14],[0,-13],[-7,-14],[-15,-13],[-17,-32],[-16,-10],[-20,-10],[-17,-18],[-17,-6],[-32,0],[-24,-4],[-12,-9],[-14,-11],[-14,-15],[2,-17],[2,-24],[0,-24],[-2,-24],[-9,-23],[-16,-14],[-7,-8],[-8,-19],[-16,-35],[-4,-17],[-6,-23],[-25,-32],[-38,-41],[-12,-23],[-23,-35],[-15,-17],[-23,-24],[-16,-15],[-6,-27],[-25,-33],[-44,-18],[-31,-1],[-32,2],[-30,-2],[-13,-15],[-7,-18],[-6,-18],[-16,-19],[-20,-16],[-12,-19],[-14,-36],[-9,-20],[-18,-15],[-13,-11],[-17,-15],[-5,-16],[-23,-24],[-11,-6],[-22,-18],[-15,-7],[-32,2],[-29,12],[-48,-1],[-7,-11],[-1,-16],[-15,-18],[-25,-12],[-22,-8],[-22,-2],[-28,15],[-10,8],[-17,3],[-21,2],[-11,-3],[-94,16],[-43,6],[-14,-3],[-13,-1],[-18,-6],[-10,-20],[-13,-23],[-17,-17],[-8,-9],[-15,-13],[-21,-19],[-32,-26],[-39,-13],[-24,-11],[-10,-14],[-5,-20],[0,-21],[1,-22],[-6,-24],[-12,-20],[-27,-21],[-26,-15],[0,-19],[1,-15],[-7,-28],[-16,-36],[-22,-19],[-19,-7],[-21,-8],[-30,-17],[-26,-12],[-29,-8],[-86,-30],[-11,-6],[-39,-16],[-18,-7],[-11,-4],[-11,-11],[-15,-12],[-14,-4],[-13,-8],[-18,-18],[-8,-16],[-7,-12],[-13,-18],[-14,-14],[-18,-17],[-14,-16],[-19,-35],[-19,-14],[-9,-10],[-11,-4],[-15,-10],[-2,-15],[-2,-15],[-3,-20],[-1,-16],[-4,-18],[1,-31],[-6,-3],[-9,0],[-24,-13],[-24,-18],[-11,-10],[-5,-9],[-8,-13],[-12,0],[-12,-2],[-19,0],[-29,-3],[-12,-4],[-9,-3],[-14,1],[-7,5],[-1,13],[-12,15],[-6,9],[-13,-1],[-21,0],[-13,-3],[-14,-12],[-6,8],[-15,4],[-24,1],[-28,-1],[-18,7],[-12,2],[-22,-1],[-21,-4],[-9,-11],[-25,-3],[-18,-1],[-20,9],[-18,12],[-9,-1],[-14,0],[-62,-3],[-11,-2],[-8,4],[-24,20],[-12,37],[-12,21],[-6,3],[-13,3],[-19,-1],[-29,-5],[-12,68],[2,18],[5,9],[27,50],[3,14],[23,43],[0,22],[0,28],[18,43],[6,9],[13,11],[14,17],[17,24],[10,20],[18,59],[7,14],[23,33],[8,14],[-1,14],[-5,-1],[-5,-4],[-7,-3],[-8,-4],[-1,-3],[-2,-4],[-6,0],[-6,-1],[-9,0],[-6,3],[-1,4],[0,8],[-2,18],[1,27],[-2,63],[1,15],[7,17],[14,15],[19,19],[10,25],[6,21],[11,33],[10,12],[9,7],[18,10],[15,4],[11,10],[41,10],[17,4],[38,10],[21,12],[18,11],[22,4],[22,15],[25,25],[15,6],[18,13],[12,8],[21,0],[17,0],[11,1],[13,-1],[11,-7],[0,-10],[1,-19],[4,-16],[5,-12],[8,-9],[14,-5],[7,-9],[15,-21],[16,-7],[12,-6],[23,0],[18,-12],[9,-12],[21,-1],[21,4],[20,7],[20,14],[35,-1],[11,-1],[21,4],[20,-7],[15,5],[10,18],[18,13],[23,18],[7,-9],[7,-14],[13,-6],[27,4],[3,79],[24,2],[13,0],[11,2],[7,3],[7,8],[17,12],[10,4],[9,9],[42,0],[76,1],[14,1],[10,12],[17,12],[15,5],[26,9],[27,18],[12,1],[35,1],[23,1],[22,-2],[10,7],[29,25],[10,9],[-1,15],[-2,9],[-7,16],[7,9],[17,17],[13,6],[13,1],[10,1],[12,4],[8,14],[25,18],[10,6],[13,11],[10,14],[15,17],[14,2],[8,0],[16,1],[23,-12],[12,-7],[10,-2],[16,-8],[6,-1],[13,-1],[14,1],[6,4],[10,14],[11,1],[2,1],[29,16],[20,0],[18,0],[8,5],[19,17],[20,19],[39,8],[9,6],[16,10],[17,6],[14,3],[17,7],[9,5],[11,11],[11,16],[2,17],[17,26],[9,11],[11,6],[22,7],[13,16],[12,21],[15,21],[18,45],[5,20],[5,12],[10,19],[2,28],[-2,23],[0,15],[11,13],[19,25],[12,15],[13,7],[16,11],[12,19],[23,24],[13,18],[18,16],[18,1],[12,-1],[11,-1],[11,15],[7,26],[20,21],[13,13],[15,9],[29,6],[9,3],[17,14],[25,12],[18,0],[13,1],[16,1],[6,-6],[13,-3],[5,3],[10,8],[8,16],[-1,6],[-3,9],[-4,12],[-3,32],[1,14],[4,23],[6,10],[7,5],[9,6],[11,11],[17,13],[21,11],[14,18],[17,7],[26,14],[13,3],[12,0],[14,0],[23,1],[36,1],[2,-7],[10,-11],[11,-3],[8,-4]],[[431006,128877],[0,-74],[-7,-24],[-1,-5],[-4,-7],[-4,-6],[-5,0],[-5,0],[-10,-1],[-7,-7],[-9,-4],[-7,-2],[-2,-2],[-2,-12],[-6,-5],[-8,-8],[0,-8],[-1,-10],[-2,-8],[-6,-8],[-17,-21],[-10,-27],[-4,-17],[-5,-10],[-7,-7],[-12,-7],[-11,-6],[-1,-11],[-12,-16],[-15,0],[-15,-25],[-26,-20],[-23,-4],[-4,-5],[0,-6],[0,-6],[-1,-11],[-2,-10],[-7,-5],[-8,0],[-10,0],[-10,0],[-8,-1],[-6,-4],[-5,-9],[-26,-21],[-22,-25],[-14,-7],[-22,0],[-7,0],[-2,9],[0,5],[6,8],[0,54],[1,27],[1,20],[4,13],[14,10],[9,4],[18,15],[7,14],[6,10],[1,9],[4,4],[6,16],[5,14],[12,1],[13,-2],[17,0],[16,8],[5,8],[8,6],[13,-2],[17,-1],[14,4],[12,9],[9,4],[13,10],[0,7],[0,14],[-3,9],[-1,9],[-4,8],[-5,6],[-14,21],[-11,15],[0,27],[0,12],[3,8],[10,3],[16,0],[12,-1],[3,-2],[6,-10],[8,-9],[1,7],[2,19],[8,12],[3,-2],[8,10],[-1,24],[3,11],[8,26],[3,22],[3,8],[13,22],[11,7],[1,2],[14,7],[10,22],[73,6],[0,-57],[-5,-4],[-9,-21],[1,-43]],[[431553,129545],[13,-4],[4,3],[5,0],[5,-4],[5,-7],[8,-12],[5,-13],[2,-10],[4,-14],[6,-10],[8,-12],[4,-10],[8,-14],[1,-10],[2,-24],[0,-16],[0,-18],[-1,-10],[-1,-3],[-7,-7],[-35,3],[-30,0],[-10,-1],[-14,0],[-2,4],[-1,4],[-10,14],[2,30],[-5,4],[-10,-5],[-12,-12],[-7,-8],[-4,-6],[-6,-9],[-1,-11],[-8,-20],[-6,-28],[-6,-7],[-6,-13],[-5,-10],[-11,-10],[-10,-11],[-13,0],[-14,-1],[-13,-6],[-3,-7],[-9,-9],[-30,0],[-16,7],[-4,1],[-29,-14],[-6,-4],[-37,0],[-12,11],[-1,7],[0,15],[0,10],[2,11],[5,4],[6,2],[4,9],[4,7],[8,6],[2,11],[21,34],[5,25],[5,10],[22,40],[6,10],[5,3],[11,5],[7,6],[10,12],[5,6],[8,8],[7,1],[7,6],[7,6],[10,15],[4,7],[5,3],[10,1],[3,1],[4,11],[7,4],[8,0],[15,2],[4,-1],[10,-5],[11,-6],[4,-5],[4,-6],[1,-13],[6,-8],[6,-2],[7,0],[13,0],[10,4],[0,7],[0,10],[1,11],[1,10],[4,5],[7,10],[1,0]],[[404640,129594],[5,-17],[13,-1],[8,14],[11,-1],[7,-9],[9,-15],[6,-12],[6,-14],[3,-13],[1,-18],[2,-17],[2,-17],[1,-19],[1,-20],[0,-18],[-2,-23],[-1,-15],[-2,-14],[-3,-16],[-7,-12],[-8,-11],[-8,-12],[-11,-14],[-8,-7],[-12,-9],[-7,-10],[-10,-8],[-9,-6],[-11,-8],[-10,-12],[-11,-16],[-8,-11],[-11,-11],[-10,-9],[-11,-12],[-7,-10],[1,-17],[6,-18],[5,-20],[2,-21],[2,-15],[0,-17],[-1,-17],[1,-18],[1,-16],[-12,-13],[-8,-12],[4,-13],[10,-11],[-5,-15],[-12,-18],[-9,-10],[-7,-11],[-8,-11],[-9,-13],[-6,-13],[-5,-16],[7,-11],[9,-11],[10,-7],[11,-10],[15,-4],[10,-4],[11,-1],[11,-4],[10,-5],[13,-8],[15,-6],[10,-6],[15,-5],[10,-2],[12,1],[10,0],[13,0],[8,-10],[3,-18],[10,-7],[12,4],[11,2],[6,-14],[7,-13],[9,-11],[8,-20],[4,-16],[7,-12],[-1,-19],[-8,-14],[2,-18],[-1,-15],[-7,-17],[-8,-13],[-9,-11],[-13,-8],[-15,-4],[-12,-5],[-9,-8],[-10,-7],[-8,-7],[-8,-17],[0,-16],[-1,-16],[-11,-10],[-11,1],[-14,5],[-10,2],[-9,6],[-11,4],[-15,0],[-11,-1],[-13,-2],[-12,-3],[-14,-7],[-10,-4],[-16,1],[-15,5],[-15,8],[-15,6],[-14,7],[-10,4],[-11,4],[-15,4],[-12,3],[-13,2],[-8,12],[-8,11],[-10,7],[-5,17],[8,10],[-3,15],[-11,-2],[-17,-6],[-9,6],[-11,0],[-11,-1],[-12,5],[-15,7],[-9,7],[-8,14],[-6,12],[2,15],[7,13],[8,12],[10,8],[11,6],[10,4],[10,10],[-6,13],[-12,-3],[-10,-3],[-11,2],[-9,7],[-3,17],[-2,17],[6,16],[5,14],[-8,12],[-11,-2],[-13,-5],[-14,-4],[-12,-2],[-10,-5],[-11,-4],[-13,-5],[-13,-6],[-10,-6],[-10,-6],[-11,-8],[-11,-7],[-13,-2],[-9,6],[-9,8],[-11,8],[-9,-12],[-14,-10],[-14,-1],[-13,6],[-8,8],[-11,11],[-8,8],[-6,11],[-1,15],[-6,17],[-8,10],[-7,10],[-8,9],[0,14],[0,10],[4,16],[4,17],[5,16],[4,13],[8,11],[8,12],[1,15],[-7,11],[1,16],[7,14],[10,12],[9,11],[8,10],[11,6],[8,15],[9,8],[-6,16],[-7,10],[-3,13],[6,13],[11,9],[5,16],[-6,13],[6,13],[7,11],[7,16],[1,14],[-1,14],[6,16],[8,10],[10,13],[9,14],[9,8],[7,10],[9,11],[12,9],[7,7],[9,11],[4,10],[-11,-5],[-10,-12],[-8,-9],[-9,-12],[-6,-9],[-13,-7],[-9,9],[-2,16],[9,8],[9,5],[6,13],[6,12],[9,6],[10,8],[9,6],[12,6],[11,2],[9,6],[7,13],[5,14],[10,10],[11,8],[10,5],[8,14],[10,12],[17,8],[10,10],[9,10],[11,11],[10,13],[9,13],[10,12],[11,13],[14,9],[11,8],[10,9],[11,9],[11,12],[11,7],[11,4],[9,7],[9,10],[9,6],[9,-6],[9,-10],[11,8],[8,12],[11,4],[11,-5],[11,-10],[14,-7],[14,-3],[12,-3],[12,0],[13,-4],[11,1],[-1,19],[8,14],[14,4],[12,-4],[9,-11],[7,-13]],[[311051,125244],[168,86],[181,142],[64,58],[19,94],[14,94],[64,69],[120,83],[120,78],[96,-12],[128,-61],[54,-80],[38,-67],[291,113],[110,32],[48,1],[202,108],[131,82],[55,69],[-23,97],[34,39],[114,31],[90,-9],[36,-9],[21,-31],[84,52],[75,56],[118,83],[13,26],[46,20],[19,45],[33,32],[55,2],[29,-1],[42,24],[94,24],[76,40],[64,30],[97,37],[64,38],[36,-6],[93,-51],[64,30],[51,49],[60,30],[71,44],[54,22],[63,7],[126,47],[88,52],[100,57],[42,34],[44,1],[70,55],[59,3],[46,1],[88,42],[74,18],[85,17],[85,1],[125,56],[70,13],[114,70],[67,32],[39,4],[132,21],[135,31],[74,11],[154,69],[354,180],[115,54],[55,14],[78,42],[33,1],[19,-21],[99,34],[62,15],[35,-14],[34,-11],[99,13],[76,-22],[33,27],[37,-7],[27,-37],[12,-54],[45,12],[26,28],[70,26],[71,34],[76,13],[23,98],[43,-27],[49,-5],[98,-3],[112,37],[124,33],[71,51],[74,15],[197,90],[281,119],[123,64],[85,9],[75,19],[105,19],[69,-15],[11,47],[29,4],[53,-1],[87,17],[58,22],[76,32],[96,15],[65,48],[91,20],[36,63],[107,37],[155,35],[127,23],[154,29],[67,-10],[115,7],[202,9],[174,-20],[227,-10],[156,19],[197,22],[192,9],[213,8],[77,37],[197,22],[133,29],[98,-5],[62,30],[101,17],[181,36],[73,14],[78,48],[93,21],[142,107],[163,77],[169,82],[190,77],[153,70],[125,93],[75,118],[72,42],[76,9],[68,-5],[96,-75],[155,-152],[157,-91],[130,-81],[108,-35],[156,-30],[109,-2],[200,-27],[190,-62],[180,-81],[201,-120],[196,-131],[210,-200],[106,-160],[99,-198],[30,-269],[17,-285],[13,-244],[-25,-39],[26,-15],[37,-94],[68,-254],[35,-137],[5,-72],[52,-110],[117,-176],[135,-131],[231,-151],[226,-187],[65,-54],[174,-83],[290,-110],[143,-27],[149,-82],[240,-168],[199,-103],[141,-90],[53,22],[50,-36],[76,3],[178,-74],[245,-124],[77,-45],[112,40],[45,-25],[74,-3],[113,31],[77,11],[165,0],[148,16],[134,-14],[157,-41],[91,-45],[67,-91],[29,-131],[71,-143],[107,-204],[114,-125],[119,-151],[64,-38],[44,-77],[19,-41],[36,16],[93,-65],[84,-16],[132,-46],[88,-76],[112,-65],[183,-103],[187,-103],[137,-43],[126,-59],[170,-62],[181,-58],[203,-46],[167,16],[54,-5],[134,-77],[250,-180],[181,-212],[102,-165],[62,-71],[35,-76],[38,-50],[77,-30],[95,-65],[77,-89],[113,-156],[79,-132],[71,-95],[74,-93],[80,-70],[63,-54],[46,-37],[36,-45],[33,-13],[40,-52],[37,-34],[41,-28],[31,-31],[61,-38],[24,-2],[21,-21],[49,-24],[38,-11],[36,-52],[26,-15],[46,-29],[19,-24],[121,-91],[19,-35],[24,-8],[34,-23],[22,-39],[42,-23],[91,-55],[85,-41],[86,-41],[86,-48],[49,-23],[66,-84],[62,-83],[27,-66],[56,-50],[23,-9],[46,-43],[21,-36],[6,-54],[23,-41],[23,-102],[11,-49],[0,-110],[17,-37],[16,-45],[-9,-45],[-10,-94],[-6,-130],[-3,-75],[3,-74],[19,-70],[22,-70],[-34,-48],[-66,-50],[-55,-48],[-83,-12],[-70,12],[-49,-8],[-42,-44],[-26,-52],[-3,-81],[-14,-73],[-44,-64],[-38,-26],[-7,-68],[-17,-40],[-21,-23],[-14,-49],[-11,-24],[3,-54],[-18,-44],[47,-33],[6,-19],[15,-19],[57,-107],[39,-76],[25,-96],[55,-56],[39,-64],[44,-14],[68,-56],[40,-5],[28,-85],[29,-105],[13,-97],[-30,-136],[-43,-145],[-83,-189],[-115,-11],[-88,-23],[-52,43],[-11,9],[-49,169],[-169,269],[-111,188],[-182,195],[-172,224],[-200,266],[-162,183],[-197,142],[-267,256],[-179,86],[-174,161],[-223,228],[-177,183],[-472,243],[-491,261],[-285,103],[-342,144],[-327,173],[-475,173],[-133,45],[-828,196],[-631,205],[-916,210],[-743,193],[-1288,164],[-493,117],[-613,56],[-853,39],[-1650,-8],[-1631,35],[-1431,-28],[-1626,-111],[-1914,-216],[-1839,-221],[-1678,-254],[-1832,-197],[-638,-82]],[[326850,129803],[124,-253],[-2,-130],[-235,-554],[-79,-5],[-355,421],[-456,308],[-282,66],[-255,-3],[-112,-39],[-140,68],[-48,207],[33,112],[194,113],[331,143],[500,-44],[369,-161],[173,-72],[240,-177]],[[431736,130489],[3,-4],[11,0],[3,-1],[5,-7],[8,-8],[2,-4],[1,-4],[1,-5],[1,-4],[2,-4],[7,-17],[4,-8],[3,-5],[1,-4],[0,-6],[1,-8],[-2,-6],[-2,-3],[-3,-1],[-3,-3],[-2,-6],[-1,-7],[-5,0],[-4,0],[-13,-8],[-11,-8],[-2,-4],[-5,-3],[-2,-5],[-2,-2],[-1,-7],[1,-14],[7,-4],[1,0],[4,0],[5,-4],[11,-13],[1,0],[4,0],[2,-2],[5,-5],[11,-8],[5,-3],[6,-3],[5,-9],[3,-6],[8,-13],[3,-9],[4,-9],[3,-7],[3,-6],[5,-2],[6,1],[6,-1],[4,-1],[4,-2],[5,-4],[8,0],[3,0],[8,0],[2,-1],[2,-7],[4,-3],[26,0],[3,-5],[2,-96],[2,-42],[-11,-15],[-5,-1],[-2,0],[-7,0],[-7,-6],[-6,-7],[-6,-9],[-6,-2],[-6,-1],[-3,-5],[-7,-6],[-8,-18],[1,-13],[-15,-16],[-3,-10],[-1,-8],[-1,-9],[-7,-1],[-4,-2],[-2,-7],[-3,0],[-6,-1],[-4,-2],[-6,-2],[-7,-2],[-9,0],[-45,-3],[-22,0],[-14,-7],[-8,-8],[-19,-7],[-23,1],[-13,-1],[-20,1],[-17,0],[-12,-6],[-6,-3],[-20,2],[-10,9],[-7,7],[-5,15],[-3,13],[0,16],[0,14],[0,10],[-2,13],[-3,9],[-1,10],[0,6],[-5,17],[-1,9],[0,6],[-3,14],[-2,9],[-1,15],[8,17],[2,8],[4,9],[10,22],[0,18],[0,15],[-2,10],[-9,3],[-10,1],[-5,3],[-3,13],[-2,6],[-6,7],[-3,8],[3,15],[1,18],[-3,21],[0,11],[3,7],[8,9],[1,0],[8,2],[11,6],[5,0],[8,4],[7,14],[8,8],[7,4],[3,9],[1,10],[0,11],[7,11],[10,10],[5,5],[6,10],[2,12],[5,14],[5,4],[7,3],[6,5],[7,13],[11,9],[8,9],[8,7],[6,6],[2,6],[13,1],[56,3],[7,-5]],[[410353,130522],[6,-2],[16,0],[9,0],[16,0],[13,-7],[14,-6],[11,-10],[10,-11],[11,-24],[1,-22],[-1,-13],[0,-13],[4,-8],[0,-21],[-2,-15],[-3,-8],[-1,-20],[28,-21],[10,-10],[15,-11],[16,-11],[32,-9],[14,-14],[13,-18],[14,-19],[2,-19],[3,-29],[5,-22],[2,-20],[1,-21],[0,-30],[-2,-18],[-1,-15],[-12,-4],[-12,0],[0,-18],[-6,-26],[-14,-10],[-22,-11],[-14,-7],[-5,-1],[-7,0],[-18,-1],[-3,-18],[-5,-14],[-8,-22],[-17,-31],[-13,-15],[-15,-12],[-13,-7],[-14,-6],[-11,-8],[-17,-8],[-23,-10],[-17,1],[-12,5],[-12,-2],[-10,-5],[-24,-15],[-10,-6],[-20,0],[-16,8],[-7,12],[-17,20],[-10,12],[-11,6],[-10,3],[-14,10],[-6,6],[-7,4],[-5,1],[-9,1],[-6,17],[-1,5],[-2,6],[-6,1],[-13,1],[-11,10],[-1,10],[-3,7],[-3,2],[-7,4],[-14,0],[-8,-1],[-6,5],[-1,8],[-5,6],[-7,0],[-6,-4],[-6,-4],[-8,-3],[-8,0],[-7,-6],[-8,-6],[-13,-2],[-3,-5],[0,-7],[-4,-8],[-14,-3],[-5,4],[-7,0],[-1,-6],[-3,-2],[-5,-1],[-8,-4],[-8,-4],[-10,-1],[-4,1],[-16,3],[-12,2],[-6,2],[-4,-2],[-2,-4],[-9,-3],[-5,2],[-7,0],[-10,-2],[-12,3],[-10,11],[-7,9],[-5,3],[-10,3],[-11,7],[-5,7],[-3,6],[-4,6],[-6,3],[-3,2],[-7,3],[-2,19],[-2,12],[4,7],[11,0],[18,5],[12,13],[7,10],[13,18],[73,75],[25,28],[17,8],[19,16],[11,18],[68,21],[27,5],[23,3],[23,4],[19,5],[12,3],[24,16],[17,10],[14,7],[16,7],[18,20],[0,13],[-14,37],[3,22],[0,8],[4,5],[6,6],[1,6],[-3,4],[-14,4],[-5,5],[-1,9],[2,10],[17,7],[1,-3],[4,-2],[18,-1],[15,2],[5,8],[4,13],[2,7],[9,8],[3,7],[2,10],[3,21],[13,8],[15,6],[13,4],[16,0]],[[328212,130775],[553,-1145],[356,-526],[510,-512],[543,-386],[550,-348],[334,-394],[334,-347],[232,-122],[355,-51],[246,-89],[231,-260],[277,-284],[144,-220],[23,-522],[79,-388],[92,-318],[39,-379],[168,-331],[94,-123],[130,-82],[-23,-51],[-222,-31],[-295,38],[-350,203],[-291,380],[-514,544],[-198,298],[-266,205],[-706,448],[-455,165],[-415,23],[-499,-132],[-524,90],[-903,238],[-416,235],[-185,326],[-79,360],[2,305],[50,404],[77,292],[-15,296],[48,297],[-22,249],[-35,250],[-217,760],[-68,277],[58,114],[146,-82],[154,4],[81,48],[482,465],[79,26],[98,-30],[133,-187]],[[327329,130489],[-116,-15],[-139,77],[-162,331],[-71,193],[26,121],[254,239],[254,63],[236,-70],[266,-182],[94,-156],[-36,-56],[-402,-371],[-204,-174]],[[429014,131780],[6,-6],[6,-4],[9,1],[11,0],[9,0],[5,-3],[6,-11],[11,-5],[6,-4],[7,-7],[5,-3],[2,1],[5,0],[7,-4],[9,-7],[16,-2],[6,-4],[11,-5],[4,0],[2,-3],[9,-7],[2,0],[7,1],[4,-2],[4,-4],[3,-4],[6,4],[6,-9],[34,0],[12,0],[4,0],[6,0],[5,-1],[3,-4],[2,-2],[4,-1],[4,-2],[5,-4],[4,-3],[8,-8],[6,-10],[11,0],[4,-2],[9,0],[2,-1],[6,-4],[3,-2],[8,0],[6,0],[4,-4],[5,-3],[5,-5],[4,-6],[10,-10],[4,-4],[2,-1],[3,-2],[4,-2],[5,1],[4,-1],[3,-2],[4,-3],[7,-5],[3,-4],[4,-3],[3,-2],[3,0],[2,0],[2,-5],[1,-1],[7,0],[5,0],[17,-5],[7,-8],[8,-11],[4,-7],[4,-7],[2,-5],[4,-5],[2,-7],[0,-7],[3,-10],[2,-5],[4,-8],[1,-8],[0,-10],[-1,-15],[-1,-11],[-10,-11],[-1,-12],[0,-14],[2,-9],[3,-8],[5,-15],[3,-35],[7,-20],[0,-22],[-2,-31],[-3,-9],[-2,-9],[0,-9],[1,-7],[-1,-8],[-5,-13],[-1,-9],[0,-8],[0,-8],[-7,-10],[-6,-7],[-2,-13],[-7,-7],[-6,-6],[-12,-10],[-6,-3],[-10,-1],[-10,1],[-11,0],[-8,-6],[-4,-5],[-19,0],[-2,-7],[-8,0],[-7,0],[-5,-2],[-3,-7],[-9,-4],[-5,-1],[-3,-6],[0,-6],[-1,-5],[-5,-6],[-5,-7],[-4,-8],[-4,-9],[-5,-6],[-5,-9],[-15,-12],[-25,0],[-8,6],[-10,4],[-4,-2],[-3,-6],[-7,-3],[-10,-1],[-8,-4],[-4,-5],[-14,-9],[-90,0],[-89,-6],[-5,12],[-19,-1],[-32,29],[-23,-2],[-15,0],[-12,0],[-14,-1],[-28,0],[-2,6],[-7,6],[-14,12],[-9,6],[-5,12],[-8,4],[-7,0],[-10,2],[-10,2],[-12,4],[-13,8],[-21,4],[-3,0],[-5,-3],[-2,-3],[-1,-3],[0,-5],[1,-7],[0,-5],[-4,-8],[-3,-4],[-4,-8],[-4,-3],[-9,0],[-15,-1],[-41,27],[-6,-1],[-12,5],[-19,21],[-9,3],[-4,3],[-5,6],[-25,-1],[-9,7],[-76,2],[-60,-4],[-15,11],[-27,14],[-8,4],[-10,6],[-15,11],[-15,4],[-15,3],[-21,4],[-4,4],[-16,7],[-9,3],[-12,-2],[-7,3],[-8,12],[-4,7],[-4,-2],[-17,5],[-5,13],[-19,11],[-7,14],[-16,27],[-26,52],[-6,17],[-3,11],[-8,22],[-1,15],[2,14],[-14,37],[-2,8],[-7,9],[-6,13],[-5,17],[-7,8],[-22,45],[33,28],[3,19],[3,0],[3,0],[5,-1],[4,6],[5,13],[6,2],[3,3],[2,8],[9,6],[4,4],[8,2],[7,5],[1,4],[2,5],[7,7],[6,3],[6,1],[9,0],[8,-1],[11,-7],[8,-3],[86,3],[13,0],[11,0],[13,2],[6,-3],[8,-7],[4,-1],[6,0],[5,-4],[8,-4],[5,0],[8,-6],[5,-2],[9,0],[15,0],[14,0],[3,-3],[2,-5],[3,-3],[8,0],[7,-1],[7,-5],[26,-1],[31,-2],[9,1],[11,6],[8,8],[5,5],[7,1],[2,2],[8,11],[5,5],[10,5],[7,13],[3,9],[5,9],[1,10],[3,10],[6,9],[8,24],[4,12],[3,2],[6,0],[4,4],[4,5],[71,3],[108,1],[59,-2],[41,2],[12,0],[9,1],[13,1],[14,1],[13,0],[15,-1]],[[431785,131794],[2,-4],[11,10],[9,1],[17,6],[10,3],[9,0],[14,2],[12,-2],[12,-4],[6,-6],[4,-4],[2,-2],[6,-9],[13,0],[10,-13],[5,-4],[7,-1],[6,0],[7,0],[11,-3],[3,-4],[6,-7],[6,-2],[2,-1],[6,-3],[2,-3],[4,-3],[7,0],[3,0],[5,0],[17,-11],[2,0],[4,0],[2,-3],[3,-3],[4,0],[9,0],[6,-6],[16,-24],[9,-15],[4,-8],[7,-17],[4,-15],[0,-15],[1,-19],[-2,-12],[-8,-11],[-8,-13],[-6,-9],[-2,-8],[-4,-7],[-10,-2],[-1,-44],[2,-55],[6,-25],[1,-10],[2,-7],[3,-5],[10,-2],[10,0],[14,1],[11,-5],[8,-4],[7,-4],[6,-8],[6,-11],[2,-7],[1,-9],[-1,-8],[-2,-9],[-5,-9],[-3,-8],[-4,-13],[-4,-17],[-1,-6],[-1,-5],[0,-5],[0,-6],[1,-4],[2,-3],[8,0],[3,-8],[2,-3],[4,0],[3,0],[2,0],[4,-1],[2,-1],[3,-3],[5,-2],[4,1],[7,-1],[2,-2],[3,-7],[5,-14],[0,-14],[-1,-9],[-9,-11],[-9,-5],[-11,-2],[-11,-35],[-2,-5],[-4,-6],[-3,-5],[1,-5],[-1,-7],[-2,-6],[-6,-5],[-5,-4],[-4,-2],[-8,-15],[-62,1],[-4,-4],[-8,-10],[-5,-4],[-10,-10],[-9,-12],[-2,-7],[0,-9],[-2,-7],[-6,-8],[-12,-9],[-11,-6],[-67,1],[-17,-1],[-7,-7],[-3,-6],[-7,-8],[-6,-5],[0,-7],[0,-4],[-9,-3],[-9,0],[-5,-6],[-12,-9],[-6,-8],[-4,-9],[-6,-9],[-12,-5],[-6,-1],[-6,-4],[-13,-2],[-6,1],[-5,6],[-8,-1],[-22,1],[-25,22],[-22,24],[-7,6],[-9,5],[-6,14],[-32,1],[-17,1],[-23,0],[-23,-2],[-4,1],[10,3],[28,9],[7,6],[-18,-1],[-16,1],[-13,0],[-14,-11],[-12,2],[-20,-13],[-32,-27],[-158,-1],[-67,-1],[-7,3],[-10,3],[-6,-1],[-13,-7],[-11,0],[-45,-3],[-1,1],[-7,11],[-14,-1],[-6,8],[-7,10],[-4,1],[-14,0],[-6,1],[-7,1],[-8,7],[-20,0],[-3,2],[-3,3],[-4,4],[-15,1],[-4,1],[-1,3],[-6,0],[-5,3],[-4,8],[-6,0],[-5,-2],[-6,-3],[-3,-4],[-6,-9],[-38,0],[-69,-3],[-10,-1],[-18,4],[-7,11],[-1,10],[-9,17],[1,65],[3,8],[3,3],[6,4],[3,0],[4,1],[5,1],[4,5],[4,5],[3,7],[4,6],[4,7],[5,4],[8,5],[7,16],[0,6],[1,5],[4,7],[5,3],[6,4],[6,19],[6,8],[10,11],[3,6],[5,4],[4,3],[4,4],[4,6],[2,9],[2,5],[6,4],[6,6],[6,14],[4,7],[2,3],[6,6],[2,5],[0,7],[3,5],[6,7],[5,4],[7,9],[7,4],[10,4],[2,2],[5,5],[7,0],[1,1],[5,6],[2,4],[4,1],[5,0],[4,-1],[3,0],[2,2],[6,6],[23,7],[6,3],[7,0],[7,3],[6,3],[7,4],[6,10],[1,-1],[3,-1],[10,3],[7,7],[6,14],[7,7],[8,7],[5,3],[6,6],[0,-1],[5,-1],[3,4],[5,4],[3,5],[11,16],[4,7],[8,12],[3,4],[8,9],[6,16],[0,6],[1,4],[13,9],[7,5],[4,6],[12,15],[7,8],[5,4],[7,2],[5,7],[2,4],[5,5],[11,11],[8,2],[2,2],[4,4],[2,2],[6,0],[6,1],[2,0],[4,2],[12,12],[1,4],[4,1],[6,-1],[6,0],[3,5],[2,3],[1,6],[6,3],[5,0],[4,1],[10,2],[7,0],[5,0],[5,1],[3,1],[5,9],[6,14],[16,5],[14,9],[14,22],[12,5],[13,7],[5,8],[10,8],[24,24],[10,6],[9,2],[12,2],[5,2],[12,6],[11,2],[19,-1],[9,1],[11,3],[15,21],[13,18],[93,3],[21,-16],[-25,-18],[-8,-8]],[[434201,132472],[-7,-16],[-8,1],[-7,2],[-2,3],[0,4],[1,5],[3,5],[2,2],[2,9],[-2,3],[0,6],[0,8],[1,4],[4,2],[4,5],[0,7],[2,9],[2,7],[3,4],[4,10],[0,6],[1,3],[17,2],[3,-4],[7,-10],[5,-7],[1,-7],[-2,-4],[-4,-13],[-7,-7],[-2,-10],[0,-6],[-5,-5],[-10,-7],[-6,-11]],[[433992,133307],[16,-1],[11,0],[14,-4],[23,-13],[11,-17],[2,-19],[-2,-10],[-2,-14],[-11,-12],[-11,-18],[-2,-8],[-4,-9],[-17,-26],[-10,-11],[-4,-7],[-6,-10],[-13,-14],[-8,-13],[-2,-11],[-1,-11],[0,-7],[4,-4],[9,6],[3,-3],[-4,-7],[-5,-7],[-6,-16],[12,-14],[2,-15],[6,-4],[8,4],[5,3],[10,12],[18,0],[4,0],[18,0],[12,-7],[7,-11],[8,-8],[14,-4],[13,-15],[4,-8],[1,-22],[-8,-18],[-8,-8],[-7,-2],[-5,-4],[-18,-26],[-8,-14],[-10,-17],[-8,-5],[-11,-1],[-5,1],[-4,0],[-5,0],[-8,-5],[-10,-12],[-7,-10],[-4,-6],[-3,-2],[-1,-5],[-4,-4],[-5,-1],[-4,7],[0,9],[0,3],[-6,-1],[-3,-1],[-6,0],[-2,6],[1,2],[1,6],[-2,1],[-11,-1],[3,7],[0,5],[1,7],[2,6],[1,5],[2,8],[2,8],[2,8],[8,15],[3,13],[3,9],[4,10],[3,10],[1,9],[-5,9],[-5,5],[-4,6],[-3,4],[-6,-1],[-5,-2],[-7,-7],[-10,-14],[-6,-5],[-7,-1],[-7,-5],[-1,-7],[-10,-8],[-12,-3],[-5,0],[-3,-3],[-4,-10],[-9,-12],[-8,-4],[-8,6],[-2,4],[0,-1],[-8,0],[-9,-3],[-8,-4],[-6,-4],[-4,-6],[-8,-8],[-4,1],[0,5],[-3,5],[-3,6],[0,6],[0,8],[1,8],[4,11],[1,8],[6,9],[6,7],[7,7],[22,14],[7,9],[8,11],[5,16],[2,25],[-4,16],[4,14],[11,11],[9,5],[13,1],[4,3],[-2,10],[-14,1],[-4,0],[1,11],[7,2],[7,2],[2,9],[-2,11],[-13,3],[-12,-10],[-9,-14],[-11,-9],[-9,2],[-7,8],[-12,3],[-8,2],[-4,7],[-3,7],[0,15],[6,25],[8,7],[5,8],[7,10],[12,14],[8,6],[5,-2],[5,0],[5,4],[19,15],[12,7],[0,12],[2,6],[11,11],[17,10],[9,3],[11,5],[13,9],[10,1],[11,0]],[[312618,141721],[4,-10],[16,0],[8,-5],[-2,-12],[-6,-8],[-19,-5],[-9,-11],[12,1],[4,-10],[0,-15],[-21,-11],[-15,-18],[-12,-17],[-16,-8],[-20,0],[-11,15],[-7,-3],[-6,10],[-5,4],[-6,4],[-3,2],[-11,15],[4,12],[-1,16],[9,10],[13,0],[18,0],[5,5],[-9,13],[-12,7],[-1,20],[8,3],[9,0],[7,7],[14,1],[11,0],[4,7],[-6,5],[-5,5],[0,13],[3,12],[7,1],[15,0],[9,10],[12,-8],[11,-7],[9,-17],[-1,-13],[-8,0],[0,-20]],[[312799,142241],[0,-10],[-24,-1],[-10,-7],[-4,-10],[4,-8],[7,-2],[0,-10],[-5,-21],[-7,-10],[-8,-10],[-19,-13],[-7,-22],[-7,-16],[-15,-7],[-34,-26],[-9,-20],[-34,-13],[-7,-15],[-25,-18],[-18,-15],[-12,-13],[-4,2],[0,18],[2,20],[-10,20],[-2,23],[-9,22],[7,15],[4,18],[12,18],[-15,4],[-33,10],[-9,-5],[2,-18],[2,-17],[-13,0],[-11,-16],[-12,-10],[-2,-7],[2,-8],[-18,-10],[-20,-3],[-25,-23],[-20,-13],[-5,15],[-4,23],[5,20],[13,10],[14,8],[4,10],[-13,10],[11,10],[0,13],[-4,15],[-14,10],[7,15],[18,5],[21,5],[20,-12],[13,10],[10,0],[11,-15],[6,-7],[39,-4],[27,-10],[9,7],[8,16],[7,20],[10,2],[6,18],[19,5],[17,8],[-4,18],[9,10],[11,-5],[5,-13],[23,13],[22,11],[23,5],[22,10],[27,-12],[13,-17]],[[303739,146791],[-44,-51],[-46,-59],[-29,-3],[-14,-1],[-20,-1],[-53,-52],[-38,-21],[-14,15],[4,24],[30,2],[21,19],[19,83],[52,58],[60,-24],[54,47],[12,-12],[6,-24]],[[434260,146828],[-12,-42],[-22,-10],[-17,29],[-16,-7],[-13,20],[9,38],[10,12],[9,12],[19,15],[35,7],[18,13],[18,41],[49,8],[48,-32],[-18,-58],[-54,-14],[-63,-32]],[[301769,147268],[3,-21],[-15,1],[-7,-20],[-13,-14],[-9,-19],[4,-22],[3,-23],[-12,-14],[-12,-14],[-17,-15],[-15,-14],[-7,-18],[-13,-12],[-15,-9],[-16,-7],[-15,-7],[-14,-11],[-15,-7],[-18,-10],[-14,-7],[-15,-6],[-15,-12],[-17,-6],[-14,-8],[-13,-13],[-14,-11],[-15,-9],[-14,-7],[-14,-8],[-17,-9],[-14,-10],[-14,-8],[-16,-9],[-17,-9],[-13,-9],[-16,-12],[-13,-12],[-14,-8],[-14,-8],[-19,-12],[-17,-1],[-15,0],[-16,-3],[-17,-6],[-16,-6],[-16,-10],[-15,-5],[-11,-19],[-13,-12],[-13,-12],[-13,-12],[-13,-11],[-15,-12],[-16,-8],[-16,-4],[-17,-8],[-16,-6],[-19,-4],[-15,-4],[-15,-4],[-14,-7],[-16,-10],[-19,-7],[-9,-3],[-15,-3],[-16,0],[-16,-4],[-16,-2],[-16,-2],[-15,0],[-16,2],[-16,-2],[-15,9],[-15,-2],[-17,3],[-15,8],[-11,15],[-9,18],[-10,18],[-1,22],[3,23],[9,19],[16,2],[16,0],[15,-14],[12,-14],[16,-8],[15,-3],[17,-2],[16,16],[4,33],[1,21],[6,19],[14,11],[14,8],[14,10],[15,14],[15,11],[10,16],[10,18],[13,11],[19,13],[15,7],[15,11],[14,12],[14,9],[13,13],[17,7],[18,3],[17,4],[17,5],[16,4],[15,3],[16,7],[14,7],[25,13],[21,13],[16,8],[15,7],[16,6],[16,9],[18,10],[13,10],[15,15],[17,12],[23,12],[16,5],[17,0],[15,-3],[14,9],[14,8],[15,6],[17,9],[17,10],[16,8],[16,10],[15,10],[14,10],[14,11],[15,1],[15,-3],[16,1],[7,18],[-8,7],[-3,4],[7,1],[8,-2],[17,-2],[14,-14],[17,-1],[17,-1],[15,-7],[15,-4],[21,-1],[14,10],[9,17],[5,20],[10,16],[16,-1],[3,-20]],[[443156,156272],[-6,-4],[-6,1],[-3,0],[-3,-4],[2,-9],[2,-6],[-1,-4],[-7,-10],[-20,-12],[-4,-3],[0,-8],[5,-4],[17,5],[23,-1],[14,0],[9,-3],[7,-6],[8,-10],[7,-20],[3,-12],[3,-15],[5,-33],[12,-18],[-1,-27],[-5,-18],[-8,-21],[-8,-12],[-7,-21],[-10,-18],[0,-24],[-6,-20],[-5,-14],[-1,-17],[1,-24],[0,-26],[-3,-22],[-7,-21],[0,-14],[-10,-33],[4,-20],[3,-13],[0,-23],[-7,-15],[0,-13],[-5,-9],[-8,-9],[-8,-5],[-6,4],[-3,8],[-3,27],[-1,10],[-1,14],[-2,6],[-5,-5],[0,-19],[-2,-28],[-4,-16],[-6,-14],[1,-31],[-4,-25],[-5,-3],[-3,-7],[-5,-20],[-11,-14],[-12,-21],[-12,-15],[-8,-22],[2,-13],[2,-18],[-1,-22],[-3,-21],[-1,-5],[-5,-22],[-5,-13],[-4,-19],[-6,-19],[-14,-14],[-8,-14],[-9,-10],[-8,-13],[-2,-11],[-18,-19],[-20,-21],[-20,-28],[-22,-20],[-12,-8],[-1,0],[-23,-26],[-25,-18],[-16,-8],[-20,-17],[-14,-13],[-14,-16],[-8,-8],[-14,-10],[-9,-14],[-3,-17],[7,-9],[3,-3],[4,-8],[5,-6],[9,-3],[14,-2],[14,2],[15,-1],[12,-5],[4,-5],[8,-16],[4,-10],[-3,-13],[1,-29],[0,-13],[-7,-19],[-6,-14],[-15,-26],[-2,-32],[-8,-15],[-2,-21],[-3,-9],[-7,-16],[-2,-14],[0,-12],[-4,-6],[-8,-8],[-14,-5],[-10,-3],[-19,-15],[-17,-15],[-15,-8],[-10,-8],[-11,-3],[-8,1],[-11,-12],[-10,-14],[-15,-8],[-9,-3],[-14,-2],[-7,1],[-10,-6],[-12,-12],[-14,-12],[-9,-8],[0,-1],[-8,-1],[-8,-7],[-8,-5],[-9,2],[-9,6],[-9,5],[-8,-4],[-10,-21],[-3,-21],[-8,-14],[-8,-3],[-17,-10],[-17,-8],[-8,-6],[-9,-14],[-8,-10],[-9,-14],[-3,-6],[-7,-9],[-5,-8],[-1,-17],[5,-19],[0,-14],[-2,-13],[-3,-7],[3,-8],[6,-4],[3,-17],[-3,-19],[0,-4],[-7,-6],[-5,0],[-6,-4],[-9,-9],[-11,3],[-6,8],[-3,3],[-5,-1],[-8,4],[-6,16],[3,26],[0,5],[0,5],[-2,6],[-5,6],[0,7],[-1,12],[-1,2],[-5,12],[-2,3],[0,20],[0,2],[-2,7],[-5,0],[-3,-6],[0,-7],[-3,-12],[-5,-10],[-5,-5],[-8,-12],[-1,-11],[-5,-9],[-5,-8],[-4,-6],[5,-8],[3,-4],[-1,-16],[-3,-13],[-5,-10],[-6,-2],[-5,-15],[-8,-11],[-11,-11],[-13,-8],[-6,-1],[1,5],[3,7],[6,9],[5,4],[2,3],[1,12],[-4,13],[-5,3],[-5,3],[-1,6],[5,19],[4,12],[1,7],[-1,4],[-5,1],[-8,-1],[-7,-2],[-9,-3],[-12,-7],[-14,-5],[-17,-7],[-5,0],[-5,3],[-6,5],[-1,7],[0,5],[2,4],[0,1],[3,7],[0,10],[-1,5],[-1,8],[-1,10],[7,7],[6,5],[13,14],[9,13],[7,7],[10,10],[15,15],[8,6],[5,16],[3,7],[8,2],[9,4],[2,1],[7,6],[5,14],[3,14],[5,6],[6,5],[4,3],[2,1],[13,15],[5,13],[7,3],[8,1],[3,1],[4,1],[7,3],[11,23],[54,52],[13,8],[10,1],[53,41],[22,5],[35,2],[15,7],[16,10],[17,16],[14,16],[-4,15],[-11,6],[-3,3],[17,29],[21,30],[24,28],[18,7],[13,1],[4,9],[7,18],[-3,8],[-9,9],[-10,0],[-14,3],[2,17],[2,10],[-9,13],[-15,6],[-15,4],[-16,5],[-20,-12],[-28,14],[-17,10],[-18,14],[-15,1],[-36,4],[-11,2],[-11,4],[-7,3],[-7,4],[-9,7],[-5,6],[-3,1],[-6,-1],[-10,4],[-9,11],[-15,15],[-5,7],[-6,4],[-8,0],[-11,10],[-8,2],[-7,-4],[-10,3],[-8,12],[-15,17],[-2,-1],[-5,11],[-9,17],[-9,4],[-7,5],[-6,16],[-9,12],[-10,12],[-7,9],[-6,23],[-1,20],[-1,13],[0,25],[0,25],[1,8],[2,13],[1,12],[2,23],[1,3],[9,37],[0,34],[6,19],[9,34],[9,33],[7,18],[2,25],[4,15],[3,8],[4,28],[7,15],[10,19],[5,11],[11,5],[12,14],[16,43],[9,22],[9,14],[12,12],[15,23],[20,36],[12,17],[9,13],[2,5],[16,26],[11,17],[7,24],[12,24],[9,16],[6,11],[10,16],[6,8],[9,14],[12,15],[8,6],[9,-1],[6,-2],[5,1],[4,6],[2,11],[2,5],[7,3],[7,7],[8,14],[4,23],[5,14],[4,0],[16,6],[5,2],[12,6],[11,7],[7,3],[11,6],[10,8],[9,4],[16,3],[13,5],[19,15],[9,8],[9,8],[8,5],[16,8],[11,7],[7,2],[4,1],[22,4],[16,3],[15,3],[13,4],[12,1],[10,-4],[14,-5],[8,-7],[11,-16],[7,-10],[12,-6],[14,0],[5,4],[1,6],[-1,8],[3,5],[17,3],[1,-1],[4,4],[14,6],[16,5],[11,0],[4,-2],[2,-5],[1,-6],[5,-5],[5,1],[5,4],[8,4],[15,2],[7,-1],[7,3],[5,12],[4,5],[10,8],[14,7],[11,5],[11,4],[14,3],[13,3],[10,2],[3,-7],[1,-5],[0,-9],[-2,-6]],[[443477,166811],[-8,-14],[-11,-11],[-16,-16],[-7,-10],[-5,-16],[0,-19],[3,-10],[11,-8],[3,-14],[-8,-20],[-27,-26],[-38,-35],[-34,-29],[-47,-21],[-33,-13],[-35,-15],[-27,-8],[-32,-5],[-36,-3],[-31,3],[-28,-2],[-22,-20],[-18,-18],[-13,-16],[-4,-15],[6,-15],[-5,-18],[-11,-12],[-21,-13],[-21,-17],[-19,-19],[-9,-15],[-12,-18],[-10,-2],[-22,-3],[-12,-2],[-10,5],[-3,17],[4,26],[16,18],[28,30],[43,64],[25,41],[34,35],[29,36],[88,79],[34,27],[5,22],[3,36],[10,9],[20,0],[26,8],[48,26],[41,14],[2,-8],[27,8],[39,10],[21,6],[17,5],[10,9],[13,8],[10,0],[11,-4],[7,-14],[1,-18]],[[430822,184915],[4,-11],[78,12],[-25,-145],[-6,-11],[-26,14],[-11,-22],[-16,-16],[-83,-66],[-28,-11],[-21,-22],[-36,-3],[-28,-13],[-52,-37],[4,-15],[-17,-10],[-6,12],[-35,-22],[-15,45],[-12,-2],[-12,-11],[-9,-13],[-15,-13],[-18,-3],[-10,-17],[-11,-6],[-12,2],[-10,7],[-34,-13],[-41,130],[7,22],[29,21],[15,5],[10,13],[10,9],[11,1],[10,-10],[131,52],[-2,37],[14,9],[16,-29],[65,51],[-11,28],[72,46],[3,-9],[5,-12],[4,0],[10,7],[43,19],[8,3],[18,1],[35,-4]],[[427419,185174],[1,-8],[2,1],[3,5],[3,0],[6,-2],[2,1],[3,4],[2,2],[5,-4],[2,-4],[2,1],[3,1],[4,2],[3,1],[5,-2],[3,-3],[3,-3],[6,-3],[8,1],[14,0],[7,0],[7,0],[4,2],[3,5],[8,5],[3,0],[8,-3],[7,-6],[7,1],[16,-2],[8,2],[8,0],[5,0],[9,-9],[3,-1],[5,0],[5,1],[4,4],[2,4],[1,4],[6,5],[5,3],[5,2],[3,0],[5,0],[2,-1],[0,-4],[-4,-6],[-4,-7],[-3,-7],[-1,-7],[3,-4],[2,-5],[1,-4],[5,0],[4,6],[5,-1],[0,-7],[-1,-2],[-6,-3],[-1,-9],[1,-2],[1,-1],[4,-3],[2,-4],[-1,-2],[-6,-4],[1,-4],[3,-3],[5,-3],[4,-2],[2,-4],[2,-6],[6,-3],[3,4],[3,3],[0,4],[2,9],[2,4],[2,-2],[0,-8],[0,-9],[0,-9],[1,-16],[-1,-16],[-2,-6],[-2,-9],[-1,-6],[3,-5],[0,-8],[-3,-7],[-1,-13],[0,-8],[-1,-8],[0,-7],[1,-15],[2,-9],[4,-6],[6,-3],[5,0],[7,-1],[10,-10],[8,-10],[6,-11],[7,-11],[7,-10],[5,-8],[7,-12],[4,-6],[5,-12],[3,-11],[1,-11],[2,-10],[2,-10],[7,-17],[5,-25],[6,-38],[10,-30],[8,-26],[5,-22],[0,-13],[3,-11],[6,-14],[9,-28],[5,-22],[7,-26],[5,-26],[6,-42],[3,-20],[2,-19],[6,-19],[4,-23],[4,-19],[0,-15],[4,-34],[2,-8],[5,-16],[1,-14],[1,-11],[3,-18],[3,-25],[2,-14],[1,-17],[3,-20],[-1,-39],[-146,-105],[-158,-113],[-35,-17],[-26,-21],[-12,-20],[-12,-42],[-8,-19],[-4,-25],[0,-16],[0,-44],[7,-75],[21,-162],[9,-54],[3,-49],[3,-27],[0,-63],[0,-21],[0,-17],[-1,-18],[-8,-42],[-1,-12],[-3,-12],[-1,-15],[-1,-7],[-4,-6],[-3,-10],[-3,-18],[-3,-13],[-11,-20],[-7,-8],[-7,-3],[-8,-2],[-9,0],[-8,-2],[-7,-1],[-12,4],[-11,13],[-3,12],[-9,14],[-5,8],[-1,7],[-5,12],[-4,3],[-6,5],[-5,12],[-4,12],[-1,11],[1,7],[-2,4],[-7,3],[-7,12],[-4,9],[-3,12],[-3,13],[-5,20],[-3,13],[-5,13],[-2,11],[-3,14],[-3,20],[2,39],[2,27],[3,8],[3,11],[1,24],[2,21],[2,22],[4,25],[3,11],[1,17],[5,11],[8,27],[5,16],[1,18],[3,17],[9,25],[3,22],[5,11],[5,15],[5,5],[4,9],[24,55],[6,15],[11,20],[7,20],[12,26],[8,18],[5,20],[4,18],[16,33],[6,4],[5,7],[7,10],[9,11],[6,10],[6,8],[7,9],[10,10],[-55,146],[-31,81],[-32,74],[-8,2],[-6,1],[-5,1],[-9,-1],[-6,-2],[-4,-6],[2,-5],[1,-7],[1,-6],[0,-5],[-5,-2],[-4,-4],[-4,1],[-4,5],[-7,10],[-7,13],[-14,38],[-2,12],[-1,9],[0,11],[0,13],[-4,26],[-8,31],[-9,20],[-2,0],[-3,-1],[-7,-2],[-3,-3],[-4,0],[-6,-1],[-6,1],[-6,2],[-5,4],[-1,5],[0,6],[0,1],[-6,4],[-5,12],[-6,6],[-4,1],[-3,3],[-3,6],[-2,8],[-5,8],[-12,13],[-7,30],[-2,21],[0,7],[-1,12],[-5,18],[-6,27],[-6,28],[-17,18],[-25,30],[-5,10],[-9,10],[-19,5],[-25,10],[-26,11],[-4,1],[-36,12],[-4,2],[-3,3],[-8,5],[-13,5],[-2,-1],[-6,0],[-5,-2],[-4,-1],[-5,2],[-3,4],[-4,2],[-6,7],[-7,2],[-5,0],[-9,3],[-9,10],[-4,10],[-5,6],[-5,8],[-9,31],[0,13],[0,9],[0,9],[2,14],[7,26],[18,46],[17,34],[21,26],[23,20],[32,18],[33,10],[41,6],[45,0],[64,-6],[62,-5],[8,0],[6,0],[6,0],[6,1],[2,3],[0,9],[1,3],[3,1],[4,0],[2,1],[1,2],[2,5],[-1,2],[-1,7],[0,3],[2,-1],[4,-6],[6,1],[4,4],[2,6],[2,3],[5,2],[2,0],[5,1],[2,3],[1,6],[0,2],[0,1],[1,4],[3,3],[5,2],[4,0],[5,0],[4,0],[4,3],[3,7],[0,9],[-1,6],[0,6],[2,3],[3,3],[6,-2],[0,-7],[-1,-6]],[[436321,186525],[224,-65],[4,20],[-9,3],[5,27],[43,-12],[-5,-21],[-10,3],[-3,-26],[120,-36],[-68,-261],[-130,-105],[-12,-7],[-15,-6],[-13,0],[-152,2],[-19,3],[-25,8],[-21,6],[-129,63],[-9,3],[-15,-2],[-13,-11],[-10,-17],[-20,-62],[-11,-35],[-12,-21],[-11,-17],[-14,-13],[-15,-5],[-20,-2],[-30,-2],[-21,-2],[-232,31],[-19,5],[-12,15],[-7,23],[-4,24],[1,25],[7,24],[16,20],[184,239],[-16,34],[-4,27],[3,26],[9,24],[16,18],[28,17],[39,23],[32,29],[26,19],[17,5],[21,1],[13,-3],[9,-13],[11,-23],[3,-7],[32,0],[2,32],[6,29],[13,22],[13,9],[8,0],[206,-52],[-5,-33]],[[436637,203595],[7,-99],[-9,-9],[-56,2],[-50,12],[-53,-15],[-60,-8],[-58,-17],[-51,-48],[-63,-32],[-39,50],[-15,140],[-27,50],[-80,60],[-18,58],[1,20],[-15,63],[-37,22],[-50,68],[-42,150],[3,189],[20,46],[96,1],[116,-74],[94,-22],[70,-221],[86,-102],[160,-109],[39,-79],[31,-96]],[[422083,204126],[65,-60],[29,2],[19,4],[28,0],[16,0],[10,-2],[3,-5],[21,-8],[14,-6],[7,-12],[26,-12],[24,-11],[39,-18],[32,-11],[42,0],[23,3],[30,17],[12,15],[3,12],[-1,9],[7,15],[10,9],[5,14],[2,12],[1,9],[5,7],[4,-1],[21,0],[14,0],[4,-10],[0,-9],[6,-4],[2,-2],[4,-4],[10,-8],[9,-4],[4,-11],[8,-6],[11,-10],[5,-4],[12,-2],[3,-9],[3,-4],[8,-2],[4,-5],[0,-1],[5,-9],[8,-2],[7,-4],[4,-8],[10,-7],[68,-90],[28,-40],[22,-47],[23,-36],[19,-46],[10,-23],[6,-17],[14,3],[14,2],[10,8],[5,4],[6,15],[2,13],[2,25],[-1,21],[0,31],[1,28],[3,19],[-4,17],[-11,9],[-8,13],[-14,5],[-20,10],[-25,16],[-7,9],[-14,0],[-8,2],[-13,7],[-16,5],[-17,0],[-20,-1],[-16,13],[-19,19],[-14,19],[-1,28],[4,33],[11,22],[19,26],[24,23],[20,6],[27,0],[25,-5],[23,-15],[21,-21],[20,-29],[16,-23],[19,-42],[18,-49],[17,-68],[24,-115],[24,-105],[15,-43],[3,-26],[0,-19],[0,-21],[5,-29],[10,-23],[12,-33],[20,-52],[56,-107],[26,-27],[32,-39],[33,-37],[18,-21],[31,-28],[36,-21],[31,-13],[34,1],[15,10],[19,13],[17,11],[27,26],[9,9],[21,0],[15,-8],[20,-10],[24,-1],[5,4],[13,0],[19,-3],[16,1],[10,3],[16,8],[0,7],[-1,7],[2,5],[6,3],[11,-2],[25,10],[4,5],[6,3],[3,2],[4,4],[7,0],[6,10],[4,5],[5,0],[6,3],[3,10],[-2,9],[1,8],[9,0],[1,-6],[-1,-13],[6,-4],[8,-3],[0,-11],[10,-4],[9,-7],[5,-8],[2,-5],[11,-4],[4,-4],[-3,-8],[-2,-13],[3,-4],[-1,-20],[3,-16],[0,-33],[2,-13],[5,-29],[5,-37],[7,-27],[9,-10],[13,-6],[9,-13],[7,-36],[5,-26],[4,-18],[-3,-19],[-2,-121],[5,-104],[6,-48],[9,-25],[18,-6],[14,0],[13,5],[8,0],[6,-8],[1,-8],[1,-17],[7,-17],[9,-13],[2,-13],[9,-22],[22,-39],[21,-21],[16,-12],[22,7],[11,9],[5,10],[2,10],[-5,7],[1,9],[3,5],[5,0],[9,0],[10,-6],[9,-8],[6,-6],[4,-8],[0,-15],[-3,-10],[-2,-7],[2,-3],[5,-1],[2,-1],[2,-5],[2,-3],[0,-2],[3,-1],[1,-6],[-2,-4],[1,-4],[0,-3],[-1,-5],[0,-7],[-3,-6],[-1,-11],[-1,-8],[0,-11],[0,-9],[0,-8],[-2,-4],[9,-9],[0,-6],[1,-11],[1,-9],[6,-6],[-2,-3],[1,-7],[-1,-6],[4,-8],[1,-5],[-2,-10],[2,-7],[0,-13],[2,-17],[-1,-28],[2,-16],[4,-23],[2,-16],[5,-44],[6,-11],[7,-11],[-2,-15],[0,-6],[-2,-9],[4,-3],[3,-21],[8,-6],[2,-17],[2,-5],[11,-25],[4,-3],[-1,-9],[3,-5],[4,-6],[8,0],[3,-2],[6,-7],[2,-5],[6,-11],[3,-13],[-1,-9],[4,-6],[-1,-5],[10,-22],[7,-17],[3,-12],[9,-19],[7,-11],[6,-15],[7,-8],[10,-7],[6,-2],[9,-7],[2,-6],[5,-2],[11,-8],[19,0],[5,3],[4,2],[6,0],[11,4],[2,7],[5,5],[8,0],[8,1],[12,0],[1,9],[7,4],[2,-4],[9,1],[4,-3],[2,-4],[6,-6],[8,5],[11,0],[5,-4],[1,-13],[-1,-10],[-1,-9],[-3,-15],[-1,-4],[-2,-7],[6,-10],[6,-14],[2,-4],[5,4],[10,4],[6,0],[5,-2],[10,2],[2,6],[12,0],[0,-6],[0,-8],[-1,-3],[6,0],[7,-6],[1,-6],[-1,-11],[-1,0],[10,-13],[10,-6],[4,0],[3,-4],[5,-11],[8,-1],[2,1],[8,-5],[2,-3],[0,-4],[1,-7],[5,-5],[5,3],[6,-1],[8,-4],[2,-9],[0,-10],[-4,-2],[-2,-1],[-3,-5],[-3,-11],[2,-9],[5,-5],[1,0],[7,-7],[0,-6],[0,-2],[0,-3],[1,-1],[1,-3],[0,-5],[-2,-4],[-1,-2],[3,-6],[2,-2],[1,0],[3,0],[6,-2],[4,-4],[5,-7],[3,-8],[0,-8],[7,-25],[0,-18],[3,-12],[6,-3],[6,-1],[8,-3],[0,-5],[10,-10],[2,-3],[4,-14],[0,-14],[-2,-6],[-3,-10],[2,-8],[2,-12],[-3,-4],[5,-8],[15,-4],[2,-17],[1,-13],[6,0],[9,-6],[2,-5],[-2,-8],[0,-8],[7,-12],[7,-2],[2,-5],[-3,-6],[-4,-1],[-2,-11],[1,-7],[-1,-4],[7,-5],[1,-6],[-2,-11],[-4,-4],[-4,-13],[2,-20],[3,-7],[4,2],[3,-4],[0,-5],[-1,-3],[6,-15],[4,1],[13,-17],[0,-16],[-2,-11],[2,-15],[-4,-3],[-5,0],[0,-12],[2,-5],[0,-9],[-5,-7],[6,-8],[-2,-8],[-4,-3],[-6,-3],[-5,-9],[-4,-2],[-4,-7],[-2,-8],[-1,-1],[-4,-4],[-2,0],[-4,-3],[-2,-8],[-3,-11],[-8,-5],[-11,-23],[-7,-8],[-20,-12],[-7,-7],[-8,-9],[-9,-15],[5,-6],[4,-5],[14,-1],[8,7],[9,-8],[-4,-16],[-1,-13],[-9,-1],[-20,2],[-5,4],[-3,5],[-4,20],[-3,5],[-8,0],[-9,-2],[-6,2],[-7,0],[-7,-3],[-12,-1],[-9,-11],[-7,-3],[-6,2],[-6,4],[-1,4],[-4,10],[-1,4],[-6,3],[-6,0],[-10,-1],[-9,-6],[-9,-3],[-8,0],[-8,1],[-10,-8],[-6,-10],[-8,-27],[-12,-28],[-15,-41],[-12,-54],[-14,-49],[-8,-47],[-6,-42],[-1,-23],[1,-5],[4,1],[4,0],[1,-3],[0,-7],[-1,-3],[1,-2],[2,-10],[4,-6],[-3,-16],[-5,-7],[-8,-3],[-4,-1],[-2,1],[-8,-5],[-4,-6],[3,-8],[-1,-7],[0,-5],[3,-8],[-1,-5],[1,-7],[-1,-11],[0,-4],[1,-6],[0,-8],[-2,-4],[-2,-5],[3,-8],[2,-7],[-5,-5],[-4,-1],[-2,-12],[-9,-31],[-4,-35],[-7,-25],[-5,-28],[-5,-18],[-5,-13],[1,-10],[2,-7],[3,-1],[3,2],[4,-2],[0,-4],[-2,-9],[1,-7],[-3,-10],[-1,-3],[6,-4],[9,0],[3,0],[7,-6],[5,-10],[0,-7],[-2,-3],[-7,-7],[-4,-1],[-8,0],[-7,-1],[-4,-4],[0,-4],[3,-11],[0,-7],[0,-7],[5,-4],[5,-2],[5,-7],[3,-2],[2,-9],[6,-3],[0,-7],[1,-4],[1,-4],[7,-21],[-2,-6],[0,-8],[5,-15],[-4,-6],[-7,2],[-5,8],[-3,3],[-6,-4],[-1,8],[-2,2],[-7,-6],[1,-8],[-3,-3],[-8,-1],[-6,4],[-1,3],[-7,-6],[-1,-6],[-5,-4],[-6,-18],[-8,0],[-3,-8],[-11,-8],[-2,1],[-5,-8],[-5,-5],[-7,-4],[-9,0],[-1,4],[-2,3],[-4,1],[-4,0],[-4,2],[-10,-3],[-8,1],[-3,3],[-9,5],[-1,13],[-1,16],[-3,8],[-11,16],[-5,4],[-3,8],[-10,4],[-11,4],[-4,0],[-13,3],[-31,1],[-56,2],[-72,-2],[-24,-6],[-9,-6],[-12,-4],[-3,0],[-8,4],[-6,-1],[-8,-5],[-12,0],[-5,6],[-4,4],[-11,3],[-11,0],[-7,3],[-5,0],[-8,-1],[-8,5],[-11,2],[-5,8],[-5,8],[-4,8],[-6,6],[-1,12],[6,16],[4,9],[-3,10],[4,5],[-4,7],[-3,2],[-6,18],[-4,8],[-9,19],[-10,14],[-15,25],[-8,10],[-8,9],[-4,5],[-5,5],[-2,7],[-2,7],[-3,6],[-2,4],[-1,6],[-2,5],[-3,5],[-4,3],[-4,7],[-5,4],[-3,4],[-3,7],[-2,11],[0,6],[-3,2],[-1,6],[1,5],[2,5],[-1,4],[1,4],[0,5],[-1,4],[-2,2],[-6,0],[-1,3],[-1,7],[1,3],[-5,2],[-1,7],[1,3],[-4,2],[-2,2],[-1,6],[1,4],[1,5],[-2,0],[-1,0],[-2,3],[-1,6],[2,9],[-6,4],[-2,5],[1,4],[-1,5],[-1,8],[-3,5],[-4,4],[-2,12],[0,7],[-5,8],[-4,10],[-2,9],[-3,6],[-1,9],[-5,8],[-3,7],[-2,13],[-3,13],[-2,5],[-1,21],[-1,10],[0,10],[-1,16],[-3,21],[3,20],[-3,27],[-1,18],[3,14],[5,17],[6,24],[3,24],[1,24],[1,16],[4,25],[1,37],[-1,40],[0,46],[1,38],[2,29],[4,28],[3,28],[1,18],[2,14],[4,19],[6,18],[9,14],[6,9],[5,12],[2,2],[16,13],[11,3],[7,5],[7,12],[7,9],[9,3],[16,0],[5,-4],[7,-2],[9,-12],[4,-8],[1,-18],[-2,-11],[-1,-10],[3,-12],[5,-5],[5,-3],[5,6],[1,5],[6,5],[2,2],[2,5],[3,4],[3,3],[5,2],[2,5],[2,2],[3,2],[5,2],[5,6],[6,7],[3,9],[3,14],[2,8],[3,7],[14,26],[4,5],[4,5],[1,9],[1,10],[3,12],[3,11],[3,8],[5,5],[2,3],[3,7],[5,4],[5,4],[9,2],[7,8],[7,4],[1,16],[4,4],[9,10],[3,2],[7,-2],[4,1],[4,9],[9,4],[6,0],[9,0],[4,3],[5,1],[2,4],[4,1],[5,3],[4,-2],[3,-3],[5,4],[2,2],[5,4],[2,7],[8,5],[5,2],[9,0],[4,1],[6,1],[1,2],[2,2],[5,3],[4,3],[3,7],[-1,6],[1,9],[1,5],[1,3],[-1,5],[0,8],[7,7],[0,8],[5,5],[-1,13],[2,12],[-1,6],[-1,17],[1,16],[0,11],[-5,10],[3,17],[-4,6],[-2,11],[2,11],[-1,5],[-1,7],[0,6],[0,12],[-1,6],[-1,8],[0,8],[-1,7],[0,9],[1,5],[-5,8],[0,7],[3,11],[-7,5],[-1,7],[-3,3],[-4,6],[-10,-1],[-2,-1],[-3,8],[2,8],[-4,8],[3,9],[-1,6],[1,4],[-4,8],[-5,12],[-3,12],[-4,5],[-3,4],[-5,4],[-5,6],[-8,4],[-2,7],[-1,19],[-5,2],[-2,5],[-5,7],[-3,0],[-2,7],[0,4],[-4,7],[-5,5],[-5,13],[-4,8],[-9,9],[-6,24],[-3,15],[-10,10],[-4,5],[-6,9],[-7,14],[-5,14],[-6,7],[-15,21],[0,7],[-7,1],[-5,9],[-8,6],[-8,7],[-5,4],[-1,11],[-2,8],[-6,12],[-9,12],[-6,6],[-8,1],[-10,9],[-4,14],[-4,8],[-4,3],[-13,5],[-8,21],[-6,10],[-4,5],[-7,2],[-17,2],[0,3],[-5,19],[-4,10],[-18,13],[-11,10],[-11,9],[-6,11],[-9,9],[-13,7],[-24,20],[-19,9],[-16,6],[-10,9],[-10,11],[-33,7],[-6,0],[-8,8],[-11,9],[-12,10],[-23,9],[-10,6],[-10,4],[-24,2],[-21,1],[-15,1],[-6,1],[-2,3],[-4,1],[-14,3],[-2,-1],[-4,-2],[-6,3],[-21,-8],[-8,1],[-9,7],[-13,6],[-6,4],[-3,1],[-10,2],[-2,5],[-11,0],[-22,0],[-19,5],[-9,10],[-22,4],[-12,4],[-14,6],[-10,3],[-8,3],[-3,-2],[-6,-6],[-10,0],[-16,0],[-5,5],[-23,0],[-42,-5],[-3,-1],[-10,-5],[-10,-8],[-13,0],[-1,-1],[-13,-7],[-11,-1],[-29,-20],[-14,-14],[-5,-8],[-6,-9],[-12,-12],[-9,-14],[-13,-7],[-18,-13],[-11,-6],[-18,1],[-6,-6],[-4,-10],[-2,-8],[-5,-3],[-8,-5],[-7,-4],[-24,-27],[-10,-3],[-17,-5],[-16,-11],[-9,-10],[-16,-6],[-13,-11],[-8,-8],[-12,-12],[-28,-24],[-11,-10],[-20,-14],[-10,-11],[-8,-10],[-35,-31],[-21,-25],[-20,-17],[-30,-25],[-13,-13],[-27,-25],[-28,-22],[-21,-14],[-19,-9],[-41,-21],[-43,-23],[-36,-16],[-25,-16],[-43,-19],[-24,-14],[-9,-5],[-11,-13],[-20,-4],[-11,0],[-13,1],[-15,0],[-20,-11],[-24,-3],[-13,-10],[-28,-14],[-16,-11],[-11,-12],[-7,-9],[-21,-27],[-9,-10],[-18,-17],[-27,-23],[-22,-27],[-29,-31],[-32,-34],[-17,-16],[-41,-56],[-21,-31],[-16,-35],[-10,-20],[-5,-26],[2,-5],[0,-6],[-1,-31],[2,-10],[0,-9],[2,-9],[6,-7],[6,-11],[1,-20],[1,-29],[-2,-6],[-5,-18],[-6,-6],[-7,0],[-11,0],[-10,0],[-12,5],[-3,-5],[-6,-7],[-3,-3],[-5,-13],[-12,-9],[-5,-10],[-14,-19],[-19,-34],[-23,-51],[-26,-61],[-33,-83],[-7,-27],[-2,-18],[1,-9],[4,-11],[0,-8],[-9,-4],[-3,-2],[-1,-3],[-8,-36],[-4,-29],[-1,-36],[-7,-30],[-8,-45],[-12,-80],[-5,-29],[-2,-38],[-5,-39],[-1,-17],[-2,-34],[1,-23],[0,-33],[-5,-37],[-4,-33],[-5,-53],[-1,-35],[-1,-43],[0,-28],[1,-21],[8,-34],[5,-18],[6,-17],[9,-26],[6,-18],[6,-22],[5,-22],[8,-37],[10,-34],[5,-17],[8,-26],[5,-14],[-1,-10],[11,-27],[10,-17],[11,-19],[10,-16],[15,-27],[10,-25],[13,-34],[11,-39],[7,-38],[3,-29],[4,-30],[5,-42],[11,-37],[9,-22],[12,-33],[5,-25],[9,-33],[6,-27],[7,-29],[8,-18],[10,-21],[7,-21],[7,-15],[18,-26],[9,-17],[10,-29],[18,-41],[9,-36],[11,-39],[17,-55],[13,-45],[9,-31],[8,-44],[13,-69],[25,-88],[30,-122],[21,-61],[19,-35],[23,-32],[11,-24],[20,-15],[37,-16],[13,-12],[15,-16],[19,-12],[16,-31],[20,-49],[34,-67],[25,-53],[35,-85],[39,-99],[36,-87],[13,-33],[14,-48],[19,-62],[22,-56],[22,-42],[20,-48],[40,-77],[21,-42],[12,-29],[14,-19],[24,-16],[13,-20],[16,-37],[28,-54],[17,-36],[32,-50],[42,-53],[58,-66],[24,-14],[20,-21],[17,-24],[34,-60],[34,-61],[15,-31],[9,-25],[16,-34],[19,-25],[17,-24],[26,-23],[33,-22],[35,-12],[32,-22],[14,-13],[20,-12],[27,-11],[32,-27],[31,-43],[38,-58],[35,-53],[29,-33],[22,-42],[25,-34],[22,-19],[7,-6],[37,-57],[41,-57],[40,-49],[22,-36],[19,-31],[21,-26],[29,-25],[33,-31],[23,-29],[32,-30],[30,-22],[41,-16],[32,-5],[23,-16],[18,-15],[23,-28],[28,-36],[35,-36],[31,-27],[24,-17],[23,-9],[19,-2],[23,-11],[29,-10],[29,-1],[31,-5],[26,2],[19,5],[30,12],[22,3],[20,0],[27,-8],[25,-15],[32,-4],[45,4],[6,9],[7,-3],[6,-1],[19,12],[23,5],[15,2],[20,8],[38,-1],[52,-3],[36,3],[36,10],[24,14],[20,13],[21,8],[30,2],[14,1],[32,0],[6,13],[10,3],[13,-4],[8,2],[11,-3],[4,-3],[22,-12],[33,-14],[11,-3],[11,-4],[15,-5],[27,-1],[15,0],[9,1],[8,4],[3,1],[5,0],[20,-2],[9,-3],[10,0],[15,0],[12,0],[15,-1],[17,0],[38,-6],[49,2],[34,7],[10,10],[14,5],[15,7],[7,6],[41,19],[10,3],[23,11],[20,14],[12,13],[17,13],[16,15],[65,48],[45,36],[34,37],[23,38],[11,11],[4,4],[8,17],[13,6],[14,12],[6,12],[20,28],[10,12],[11,10],[12,11],[17,11],[13,12],[8,18],[12,16],[10,11],[12,16],[10,20],[6,15],[13,15],[3,6],[17,24],[14,14],[11,13],[9,10],[-4,5],[-3,5],[2,14],[8,7],[6,2],[5,-3],[14,2],[10,5],[14,3],[10,5],[10,0],[14,-6],[7,-1],[20,-8],[13,-10],[5,-6],[2,-2],[3,1],[12,-5],[2,1],[19,-2],[14,-5],[15,-5],[11,3],[5,4],[10,-12],[6,-6],[9,-10],[17,-20],[6,-8],[14,-6],[4,-2],[26,-2],[9,-15],[22,-15],[-1,-9],[26,-25],[21,-17],[21,-25],[21,-15],[24,-25],[29,-40],[21,-28],[36,-55],[50,-58],[29,-28],[13,-13],[28,-27],[39,-29],[33,-12],[20,-6],[19,-2],[21,-2],[5,9],[16,4],[9,0],[9,8],[11,4],[12,9],[12,7],[12,0],[10,5],[8,9],[10,6],[10,-1],[14,8],[14,9],[9,9],[8,14],[10,11],[11,19],[11,26],[8,14],[9,18],[8,9],[38,12],[10,6],[14,13],[18,16],[8,9],[12,4],[18,8],[6,1],[15,7],[5,2],[16,9],[10,7],[10,-3],[12,4],[12,4],[25,7],[12,6],[12,0],[25,6],[29,18],[17,9],[14,5],[34,8],[10,5],[22,4],[33,2],[16,-2],[25,-3],[14,-2],[24,-14],[15,-15],[18,-22],[14,-6],[21,-15],[20,-9],[25,-9],[20,-18],[16,-32],[13,-19],[18,-20],[14,-14],[15,-6],[22,-14],[15,-13],[13,-15],[8,-19],[3,-27],[4,-27],[9,-20],[5,-18],[0,-27],[-4,-45],[-4,-46],[-18,-126],[-17,-65],[-10,-37],[-3,-10],[-2,-9],[5,1],[5,-2],[1,-5],[-1,-8],[-3,-7],[-3,-4],[-4,-2],[-3,-4],[-4,-5],[0,-4],[-2,-8],[2,-11],[-2,-4],[-1,-6],[2,-4],[0,-8],[6,-5],[1,-5],[0,-5],[2,-4],[1,-5],[-1,-6],[-1,-10],[-2,-11],[-2,-4],[-3,-8],[-3,-7],[-4,-9],[-2,-4],[-2,-5],[-1,-10],[5,-3],[9,-5],[2,-5],[3,-10],[-2,-13],[-4,-8],[-4,-8],[-1,-4],[-1,-6],[-7,-16],[-4,-9],[-2,-5],[-7,-17],[-3,-3],[-1,0],[-4,0],[-7,-1],[-4,-1],[-3,-4],[-5,-4],[-9,-22],[-4,-1],[-1,-9],[-1,-4],[-8,-3],[-6,-2],[-5,-12],[-3,-2],[-4,-3],[-7,-7],[-9,-4],[-3,2],[-4,1],[-10,-4],[-9,-3],[-8,1],[-5,-4],[-13,-1],[-7,-1],[-6,-5],[-3,-7],[-1,-7],[-3,-2],[-2,-8],[-4,-6],[-4,2],[-5,0],[-3,-2],[-10,-2],[-2,-1],[-6,-4],[-3,-2],[-5,-5],[-10,-3],[-7,2],[0,3],[1,8],[1,1],[2,5],[4,3],[3,4],[4,3],[0,5],[1,7],[-3,7],[-4,0],[-2,-2],[-3,-4],[-4,-1],[-6,0],[-8,-8],[-11,-1],[-1,-7],[-3,1],[-1,1],[-1,3],[0,5],[2,5],[1,3],[2,4],[2,3],[3,3],[3,5],[2,3],[0,6],[6,8],[-1,10],[2,8],[-4,3],[-5,-1],[-3,-4],[-8,-7],[-20,2],[-8,1],[-6,0],[-3,3],[-3,7],[-2,6],[-5,8],[-7,4],[-7,3],[-5,2],[-5,2],[-1,5],[-10,6],[-4,7],[1,6],[2,2],[5,3],[-11,19],[-5,4],[-3,6],[-2,2],[-5,6],[-7,6],[-9,9],[-17,9],[-19,10],[-11,13],[-32,16],[-11,11],[-10,2],[-4,-1],[-22,2],[-31,0],[-15,0],[-13,-10],[-23,-7],[-9,1],[-15,-7],[-11,-7],[-13,-16],[-6,-14],[-6,-8],[-11,-13],[-23,-15],[-33,54],[-72,-70],[-72,-76],[-10,-20],[-6,-16],[-9,-4],[-5,0],[-29,-13],[-12,-10],[-12,-2],[-18,-3],[-9,-6],[-18,-4],[-10,-4],[-12,-5],[-15,0],[-8,-1],[-14,-3],[-18,-4],[-9,0],[-9,0],[-4,0],[-4,2],[-7,5],[-6,1],[-5,5],[-17,6],[-13,13],[-5,9],[-3,13],[-7,11],[-1,4],[-11,22],[-2,12],[-8,22],[-9,17],[-9,15],[-8,23],[-14,15],[-18,24],[-29,27],[-12,13],[-24,26],[-20,30],[-19,15],[-32,17],[-26,4],[-22,4],[-28,0],[-23,-4],[-16,-2],[-21,-11],[-15,-10],[-7,-7],[-11,-5],[-11,-6],[-20,-11],[-9,-6],[-10,-8],[-15,-8],[-16,-15],[-5,-17],[-1,-6],[-11,-7],[-12,-4],[-7,-5],[-3,-8],[-16,-22],[-16,-13],[-19,-11],[-10,-8],[-12,0],[-16,-8],[-15,-2],[-6,-6],[-12,-5],[-10,-3],[-12,-6],[-9,-7],[-4,-2],[-7,-2],[-7,1],[-9,-6],[-27,-11],[-11,-11],[-11,-8],[-15,-4],[-17,-3],[-8,0],[-19,-9],[-13,-3],[-11,-3],[-11,-4],[-14,-9],[-14,-6],[-11,-7],[-21,-9],[-7,-3],[-18,-11],[-4,-3],[-50,-28],[-27,-12],[-37,-19],[-35,-22],[-33,-13],[-31,-21],[-16,-14],[-8,-11],[-13,-18],[-6,-15],[-10,-6],[-12,-1],[-6,-5],[-5,-2],[-13,-2],[-17,-12],[-21,-10],[-13,6],[-10,3],[-3,8],[-9,14],[-13,-3],[-8,-9],[-1,-13],[-11,-11],[-8,-6],[-2,-12],[-25,-2],[-14,-2],[-21,-13],[-24,-2],[-7,0],[-16,-5],[-10,-8],[-10,-2],[-4,0],[-24,-7],[-5,-2],[-24,-20],[-4,-11],[-5,-13],[-5,-14],[-8,-18],[-10,-18],[-14,-11],[-10,-14],[-11,-21],[-10,-5],[-8,-14],[-7,-16],[-6,-15],[1,-30],[4,-26],[7,-9],[6,-10],[7,-23],[2,4],[3,4],[14,1],[2,-5],[0,-13],[-2,-8],[-7,-9],[-2,-13],[6,-9],[8,-7],[20,-22],[4,-25],[7,-26],[15,-13],[10,-5],[16,-24],[11,-14],[17,-35],[11,-17],[6,-21],[5,-26],[8,-10],[9,-5],[13,-6],[10,-22],[3,-14],[3,-12],[6,-12],[8,-18],[7,-11],[10,-20],[19,-39],[13,-20],[8,-4],[21,-4],[8,-3],[12,-10],[7,-5],[8,-1],[12,1],[4,-2],[26,-6],[15,1],[16,4],[3,10],[4,6],[6,8],[7,5],[17,15],[2,13],[-2,14],[-6,22],[-1,16],[4,11],[5,21],[-1,8],[0,11],[5,31],[7,14],[13,11],[10,22],[8,11],[6,6],[5,16],[4,9],[3,6],[9,11],[14,10],[10,7],[7,13],[5,13],[15,13],[12,13],[0,11],[6,22],[0,13],[0,8],[4,19],[-3,18],[0,14],[3,17],[6,18],[9,17],[5,15],[8,16],[12,21],[4,12],[5,3],[7,13],[-3,10],[-2,9],[-3,5],[-1,8],[1,19],[6,16],[11,10],[13,11],[14,-2],[9,-8],[5,-12],[3,-15],[11,-6],[8,-19],[7,-11],[11,-18],[7,-11],[16,-30],[15,-37],[11,-17],[2,-22],[5,-33],[11,-39],[5,-32],[8,-34],[11,-6],[9,-3],[10,-10],[2,-15],[11,-4],[9,-10],[8,-17],[4,-19],[9,-22],[11,-7],[6,-8],[-4,-15],[-3,-9],[3,-5],[5,-4],[12,-1],[12,-19],[6,-29],[17,-41],[20,-30],[27,-19],[13,-13],[8,-20],[6,-7],[11,-13],[10,-11],[17,-10],[6,-15],[15,-12],[13,-3],[6,-4],[10,-23],[-2,-23],[-5,-3],[-9,-12],[-5,-14],[0,-12],[2,-42],[10,-26],[10,-43],[7,-15],[6,-14],[2,-13],[6,-27],[6,-16],[5,-16],[6,-22],[8,-18],[5,-12],[2,-29],[6,-20],[9,-44],[9,-26],[6,-16],[13,-47],[8,-42],[-1,-17],[6,-23],[14,-46],[9,-22],[12,-36],[14,-68],[13,-59],[14,-39],[10,-22],[5,-30],[4,-25],[1,-29],[1,-22],[-1,-20],[4,-32],[5,-17],[-1,-19],[2,-11],[6,-7],[2,-16],[-2,-10],[4,-11],[-1,-10],[0,-2],[6,-12],[0,-6],[4,-29],[7,-28],[6,-17],[4,-11],[0,-12],[-2,-7],[-6,-19],[4,-16],[4,-49],[-1,-23],[-7,-19],[0,-1],[-9,-34],[-2,-16],[2,-50],[4,-30],[7,-35],[8,-29],[-1,-44],[-15,-46],[-15,-55],[-1,-25],[5,-14],[-9,-31],[-3,-42],[-8,-49],[-9,-19],[4,-42],[6,-11],[-10,-33],[-1,-21],[-6,-48],[-4,-31],[-14,-50],[-24,-55],[-10,-47],[-1,-25],[2,-17],[-1,-26],[-19,-30],[-96,-87],[-18,6],[-18,-33],[-44,-42],[-11,-5],[-25,2],[1,-12],[-7,-18],[-15,-18],[3,-28],[-6,-22],[-16,-27],[-26,-19],[-34,-9],[-32,16],[-28,12],[-16,5],[-21,1],[-32,-3],[-37,8],[-27,17],[-38,27],[-28,2],[-35,6],[-36,1],[-6,-10],[22,-8],[5,-8],[-2,-20],[-9,-9],[-9,5],[-22,24],[0,7],[-9,3],[-8,11],[-20,4],[-5,7],[-2,8],[-6,5],[-5,7],[-22,8],[-38,6],[-20,-1],[-3,-3],[-2,-5],[-5,-16],[-7,-23],[-6,8],[-4,15],[-1,19],[-2,6],[-8,9],[-10,0],[-11,3],[-19,7],[-13,7],[-15,2],[-5,-6],[-5,-2],[-11,0],[-13,-3],[-28,-8],[-12,8],[-13,7],[-3,14],[1,6],[-5,13],[-18,9],[-2,4],[-19,12],[-23,6],[-16,9],[-32,5],[-10,-5],[-15,-4],[-12,8],[-27,9],[-19,17],[-25,0],[-12,8],[-7,10],[-10,4],[-5,7],[-31,35],[-15,14],[-13,-1],[-23,2],[-14,19],[-12,13],[-17,27],[-20,31],[-38,52],[-25,56],[-8,15],[-16,31],[-15,38],[-12,55],[-4,51],[-12,42],[-20,50],[-20,55],[-20,71],[-16,66],[-2,41],[-2,21],[-12,14],[-30,35],[-19,19],[-18,42],[-22,15],[-8,29],[-3,32],[-19,27],[-20,20],[-12,-4],[-13,-12],[1,-22],[-3,-24],[-5,-3],[-8,1],[-14,9],[-10,-3],[-8,6],[-7,6],[-9,-8],[-13,-18],[-19,-20],[-12,-13],[-35,-32],[-16,-12],[-18,-10],[-21,-11],[-15,-7],[-8,3],[-13,11],[-25,25],[-18,29],[-12,26],[-17,10],[-8,7],[-8,14],[-9,24],[-8,3],[-7,2],[-6,-6],[-20,-5],[-9,2],[-10,-9],[-16,-5],[-9,0],[-18,-8],[-10,-2],[-7,-7],[-14,-14],[-19,-11],[-16,-1],[-16,2],[-14,5],[-6,1],[-25,-1],[-8,9],[-13,9],[-8,22],[-10,22],[-35,0],[-24,-22],[-6,-31],[-19,-13],[-24,-26],[-33,-30],[-44,-11],[-34,-30],[-45,-25],[-19,-9],[-28,-12],[-25,-9],[-29,-3],[-25,-10],[-59,-7],[-39,-2],[-31,8],[-38,7],[-44,14],[-41,31],[-44,22],[-34,14],[-47,23],[-33,21],[-54,37],[-33,19],[-21,24],[-17,6],[-16,-10],[-43,-2],[-62,28],[-13,12],[-20,-4],[-55,23],[-87,37],[-29,13],[-44,9],[-125,60],[-89,32],[-53,11],[-31,18],[-15,11],[-26,-1],[-62,13],[-44,4],[-30,10],[-49,-5],[-39,-1],[-38,-16],[-28,-1],[-24,12],[-27,35],[-52,90],[-20,32],[-18,31],[-13,33],[-19,56],[-9,30],[-6,36],[1,47],[2,26],[2,32],[2,76],[-7,135],[-6,87],[-9,95],[-16,96],[-11,73],[-17,98],[-17,48],[-36,64],[-42,56],[-62,75],[-34,48],[-28,28],[-14,15],[-6,6],[-8,8],[-29,30],[-88,73],[-14,9],[-18,14],[-126,81],[-116,63],[-97,44],[-124,26],[-57,27],[-43,64],[-11,43],[-6,23],[-4,16],[-3,13],[-3,12],[-2,8],[-3,14],[-5,20],[-1,5],[-1,31],[6,15],[-4,16],[2,13],[11,23],[13,36],[12,16],[16,12],[15,15],[8,5],[44,30],[11,10],[28,24],[46,30],[8,26],[0,13],[1,16],[2,9],[5,12],[-2,0],[-11,-1],[-8,-12],[-4,-11],[-3,-3],[-5,6],[-4,15],[1,25],[7,10],[3,10],[2,20],[5,12],[4,19],[10,24],[6,18],[6,17],[6,16],[-3,31],[0,13],[-5,12],[0,46],[-7,24],[5,48],[-3,23],[0,27],[3,33],[1,21],[-3,23],[2,27],[6,17],[0,4],[4,53],[6,22],[3,14],[3,32],[1,25],[3,12],[5,22],[0,13],[-5,0],[-6,12],[-4,7],[-2,17],[-5,29],[1,29],[4,44],[0,22],[3,12],[-6,17],[-13,3],[-10,12],[-2,14],[1,10],[-8,17],[-9,2],[-4,11],[2,10],[-1,12],[-3,7],[-4,20],[3,3],[1,14],[-6,10],[-4,20],[2,8],[4,9],[-5,11],[7,11],[-3,10],[8,5],[-1,6],[-4,0],[-18,3],[-2,9],[0,9],[-6,7],[-3,8],[-2,14],[0,22],[7,8],[-1,9],[1,9],[0,12],[-4,20],[-5,24],[-14,14],[-5,7],[0,17],[7,16],[3,17],[-3,13],[-4,12],[-2,22],[4,32],[-8,26],[-5,16],[-8,9],[-7,14],[-1,11],[-3,14],[-7,23],[-7,17],[-6,18],[1,14],[-5,15],[-6,18],[-4,16],[-5,24],[0,16],[-1,15],[0,15],[2,15],[-5,25],[5,15],[-3,17],[1,19],[3,29],[0,19],[-3,15],[-13,13],[-8,10],[-12,17],[0,10],[0,14],[-2,9],[-6,16],[-7,30],[-3,9],[4,37],[4,16],[-11,29],[-9,3],[-10,17],[-1,17],[-1,20],[-9,11],[-8,6],[-12,13],[-5,14],[-14,22],[-3,9],[-5,12],[-2,6],[-8,26],[-10,22],[-4,10],[-6,8],[-8,20],[1,20],[4,22],[5,11],[10,10],[7,10],[18,13],[10,11],[-3,7],[6,23],[-1,18],[7,8],[10,7],[0,14],[-5,20],[-3,12],[-12,20],[-6,19],[-12,13],[-5,6],[-10,10],[-12,13],[-17,20],[-7,30],[-10,21],[-3,10],[-7,22],[-11,20],[-3,9],[-7,14],[-6,12],[-10,18],[-6,10],[-14,11],[-2,11],[-6,6],[-5,7],[-2,7],[-4,9],[-6,11],[-4,7],[-2,6],[-3,4],[-7,6],[-5,5],[-5,9],[-5,19],[-9,4],[-10,2],[-3,10],[-1,6],[-6,8],[-6,3],[-8,6],[-6,12],[-4,5],[-3,9],[-4,18],[-3,5],[-4,2],[-3,6],[1,8],[1,7],[-1,5],[-3,5],[-3,3],[-8,5],[-9,7],[-7,5],[-2,10],[0,11],[-9,8],[-5,11],[1,9],[0,4],[-6,7],[-3,7],[-4,11],[-6,14],[-6,12],[-9,19],[-2,10],[-10,27],[-10,26],[-6,16],[-10,30],[-10,36],[-7,30],[-7,26],[-5,21],[-8,54],[-9,30],[-8,34],[-3,21],[-11,58],[-4,18],[-5,18],[-13,43],[-5,18],[-6,24],[-9,33],[-10,20],[-17,24],[-15,28],[-12,25],[-8,25],[-4,18],[-7,15],[-9,19],[-15,22],[-10,13],[-6,18],[-7,32],[-20,25],[-6,16],[-6,12],[-6,16],[-1,18],[0,16],[-9,11],[-10,5],[-8,-6],[-7,10],[-3,8],[1,6],[0,12],[-4,13],[4,11],[-1,6],[-6,8],[0,13],[10,6],[1,11],[4,13],[5,16],[0,14],[4,9],[1,15],[5,6],[4,7],[-1,10],[5,6],[4,8],[7,12],[1,19],[3,13],[-1,16],[-4,8],[-2,16],[-1,16],[1,12],[3,23],[2,4],[-10,19],[-8,18],[-6,28],[-4,20],[-13,41],[-5,16],[-7,25],[-5,21],[-6,1],[-5,-9],[-7,-6],[-9,3],[-3,11],[-1,3],[-10,3],[-3,4],[-10,19],[-6,3],[-4,12],[-4,13],[-7,6],[-5,2],[-4,5],[-1,7],[-2,3],[-7,10],[-15,22],[-2,13],[1,8],[-1,8],[-4,6],[-6,10],[-3,12],[-5,13],[-2,12],[-9,6],[-10,0],[-7,2],[-6,3],[-9,8],[-4,17],[-4,14],[-5,15],[-8,15],[-7,16],[-4,15],[-9,10],[-7,4],[-15,0],[-6,13],[-1,12],[-5,13],[-11,17],[-6,15],[-7,20],[-8,10],[-7,11],[-5,9],[-8,18],[-8,14],[-11,16],[-6,10],[-26,32],[-6,6],[-10,10],[-16,15],[-22,23],[-14,18],[-4,13],[-2,9],[-3,9],[-3,10],[-2,10],[-2,9],[-3,10],[3,17],[5,9],[3,11],[5,18],[12,6],[10,3],[12,6],[8,14],[8,17],[8,19],[6,24],[3,28],[-6,17],[1,16],[5,10],[1,29],[0,10],[0,28],[-9,22],[-1,24],[-2,10],[-2,22],[1,14],[-2,27],[2,27],[8,24],[6,20],[9,18],[11,21],[4,13],[6,27],[10,14],[9,12],[5,5],[7,4],[14,5],[5,5],[6,8],[6,11],[9,19],[10,14],[7,12],[8,14],[3,13],[5,16],[8,31],[5,24],[-8,18],[-2,10],[1,19],[6,13],[5,8],[3,20],[1,26],[3,16],[-2,20],[0,19],[-4,7],[2,23],[-3,22],[-2,18],[-2,16],[7,23],[4,8],[4,33],[4,13],[4,20],[8,36],[13,91],[1,45],[0,28],[9,66],[-3,10],[0,33],[3,21],[4,20],[-1,31],[-1,41],[-6,25],[-3,33],[-1,30],[-5,17],[-6,51],[-2,23],[-6,11],[0,22],[1,12],[0,16],[-8,27],[-8,29],[-5,22],[-3,9],[-5,30],[-3,7],[-5,13],[-9,24],[-7,30],[-8,13],[-15,8],[-8,15],[-5,15],[-7,10],[-8,21],[-11,9],[-8,10],[-4,16],[-8,14],[-7,10],[-7,8],[-6,8],[-9,8],[-12,17],[-18,39],[-4,21],[-5,10],[-8,8],[-6,9],[-6,13],[-5,17],[-4,14],[-13,13],[-9,12],[-7,10],[-18,18],[-7,16],[-22,12],[-22,26],[-10,9],[-21,25],[-16,12],[-24,23],[-22,17],[-23,19],[-25,25],[-19,26],[-13,15],[-8,13],[-14,30],[-9,13],[-8,13],[-13,12],[-8,3],[-14,0],[-14,-1],[-25,-13],[-7,-10],[-12,-18],[-11,-16],[-10,-10],[-24,-18],[-22,-14],[-13,-6],[-15,0],[-17,4],[-11,11],[-14,11],[-7,21],[-5,23],[-4,21],[-4,17],[-7,18],[-2,17],[-6,47],[-1,40],[2,34],[3,41],[2,28],[5,15],[-3,13],[-3,11],[1,9],[3,11],[-3,18],[0,14],[-4,13],[-4,13],[-2,14],[9,10],[0,5],[6,21],[0,15],[0,12],[0,16],[5,19],[-1,14],[5,16],[2,8],[0,9],[0,20],[2,33],[-2,22],[4,14],[1,5],[1,5],[2,8],[10,18],[2,8],[5,18],[2,6],[4,14],[9,16],[5,5],[8,8],[4,8],[2,8],[6,14],[21,22],[5,20],[9,11],[4,11],[4,7],[4,9],[16,24],[7,28],[4,9],[4,8],[2,22],[-1,18],[1,7],[4,16],[9,21],[12,20],[13,3],[4,0],[11,2],[7,-5],[12,-5],[8,-2],[9,-1],[18,-3],[7,1],[15,1],[20,5],[9,5],[18,14],[10,14],[6,5],[9,0],[9,-1],[10,-1],[9,-2],[9,-3],[9,-6],[10,-20],[3,-21],[4,-11],[11,-26],[31,-45],[62,-79],[57,-63],[51,-53],[41,-29],[51,-33],[46,-20],[9,-11],[15,-19],[19,-5],[16,5],[20,0],[11,-3],[26,-7],[22,-12],[18,-20],[22,-27],[31,-42],[13,-17],[13,-32],[10,-26],[14,-20],[20,-28],[15,-15],[7,-15],[12,-27],[13,-26],[5,-20],[6,-9],[11,-11],[8,-6],[38,-17],[45,-11],[68,-21],[28,-10],[33,-2],[51,10],[22,8],[32,2],[27,11],[13,6],[34,7],[16,1],[37,1],[12,2],[23,1],[18,0],[7,0],[12,-4],[28,-14],[16,0],[11,2],[20,1],[23,1],[11,7],[6,2],[2,0],[1,-3],[15,6],[15,2],[15,9],[13,5],[11,6],[1,0],[12,5],[13,-1],[8,5],[11,2],[41,10],[11,6],[12,5],[22,8],[17,5],[9,1],[5,3],[24,12],[40,9],[14,1],[32,14],[21,2],[14,6],[6,1],[33,12],[19,5],[20,11],[24,10],[19,11],[10,6],[8,4],[6,5],[28,9],[12,3],[17,0],[14,5],[11,7],[21,0],[13,3],[9,7],[9,2],[20,7],[19,0],[16,5],[17,8],[23,1],[28,3],[10,1],[15,-6],[13,-1],[16,-16],[17,-13],[10,-9],[29,-24],[15,4],[14,2],[16,9],[9,7],[21,3],[20,3],[19,12],[12,7],[18,14],[13,24],[12,17],[35,35],[14,14],[29,28],[38,41],[15,19],[12,15],[10,17],[16,27],[29,60],[9,33],[6,22],[7,23],[6,35],[4,36],[-7,36],[-7,17],[-12,10],[-8,6],[-25,5],[-20,10],[-15,15],[-9,15],[-16,20],[-14,31],[-8,32],[-7,11],[-9,14],[-11,8],[-7,17],[-8,24],[0,29],[5,31],[10,36],[15,29],[22,25],[25,13],[29,6],[36,-4],[31,-17],[22,-18],[31,-29],[23,-32],[42,-58],[41,-53],[42,-57],[47,-53]],[[438128,207115],[-12,-30],[-30,-6],[-25,-2],[-17,16],[-28,-10],[-10,33],[10,8],[44,31],[51,4],[18,-39],[-1,-5]],[[415901,208567],[3,-11],[8,1],[9,-5],[5,3],[11,-6],[4,-1],[5,5],[10,-6],[2,-8],[1,-7],[8,-16],[12,1],[5,-2],[6,-11],[2,-9],[3,-14],[-5,-20],[-6,-9],[-10,-1],[-5,-3],[-3,2],[-6,2],[-5,10],[0,7],[-7,4],[2,15],[1,9],[-1,10],[-7,4],[-8,-9],[-3,4],[-4,13],[-15,4],[-5,6],[-4,7],[-6,7],[-6,7],[-2,9],[0,8],[11,0]],[[414925,208922],[1,-6],[8,-13],[0,-18],[8,-2],[10,3],[7,-8],[11,-4],[8,-6],[2,-7],[12,0],[12,-8],[15,-3],[3,-6],[2,-14],[12,-3],[7,5],[13,1],[4,11],[7,12],[13,5],[14,0],[17,-8],[6,-15],[0,-11],[1,-16],[2,-16],[-4,-9],[-4,-4],[-5,-7],[-2,-1],[-5,-18],[-2,-19],[5,-22],[14,-5],[6,2],[9,-9],[20,-13],[8,-22],[3,-20],[-5,-14],[-8,-5],[-10,-11],[-5,-8],[-2,-10],[2,-19],[-1,-14],[1,-14],[3,-14],[2,-8],[0,-21],[6,-11],[1,-3],[4,-20],[-1,-13],[1,-12],[2,-9],[-4,-7],[-4,-8],[0,-11],[2,-14],[2,-8],[-4,-16],[-3,-2],[1,-9],[0,-6],[-7,-11],[4,-12],[1,-7],[-1,-12],[-4,-11],[-6,-5],[-10,-8],[1,-8],[-1,-10],[-5,-27],[-9,-21],[-21,-39],[-6,-10],[-9,-10],[-11,-20],[-11,-8],[-25,-13],[-8,-3],[-21,-1],[-15,-3],[-31,-5],[-12,5],[-12,-1],[-16,6],[-12,2],[-8,1],[-17,4],[-7,2],[-18,7],[-13,6],[-15,5],[-11,0],[-8,-1],[-11,-5],[-13,-10],[-2,-5],[-5,-9],[-5,-3],[-3,0],[-3,6],[-6,3],[-6,2],[-18,-1],[-4,-3],[-20,-5],[-5,6],[-1,3],[0,5],[-2,12],[-3,12],[-11,17],[-8,8],[-10,8],[-13,7],[-6,2],[-5,11],[1,15],[9,22],[-6,13],[-4,6],[-6,3],[-6,4],[-6,15],[-5,4],[-8,-2],[-8,3],[-5,5],[-1,8],[1,9],[-1,5],[-8,6],[-3,6],[-8,9],[1,18],[6,6],[-6,14],[4,10],[-4,8],[0,20],[0,12],[-17,23],[-9,21],[0,11],[-3,6],[4,20],[-1,7],[-4,12],[-7,8],[1,11],[7,-1],[6,3],[-2,11],[-6,7],[-5,11],[3,11],[1,11],[-1,20],[-12,7],[-5,9],[-4,14],[1,9],[-3,9],[-3,6],[0,11],[1,8],[2,12],[7,8],[9,-3],[4,-3],[11,13],[8,4],[2,-3],[6,-1],[5,3],[0,3],[9,11],[11,8],[0,5],[0,13],[6,12],[6,14],[6,2],[11,-3],[6,-5],[4,3],[6,0],[9,0],[6,2],[5,7],[6,6],[3,2],[9,5],[15,-3],[9,5],[6,4],[2,6],[-1,9],[1,16],[3,15],[4,8],[1,-2],[9,0],[6,7],[15,-6],[10,-10],[-1,-11],[6,-5],[2,6],[2,9],[6,2],[6,4],[11,5],[4,-7],[7,-2],[5,12],[-2,5],[10,-1],[4,-10],[6,-2],[9,-5],[3,4],[1,6],[3,6],[1,10],[-1,10],[5,7],[1,2],[5,5],[3,7],[6,4],[14,0],[9,-5],[14,12],[12,4],[9,-4],[3,-3],[7,-5]],[[415704,209052],[7,-8],[13,2],[4,-8],[4,0],[8,5],[12,-6],[6,-3],[2,0],[12,8],[13,-4],[2,-8],[1,-17],[6,-2],[2,-1],[6,-14],[9,-9],[13,-2],[4,-9],[4,-6],[0,-11],[-2,-7],[8,-7],[3,-10],[2,1],[-1,-23],[1,-5],[9,-14],[13,-3],[5,-5],[-1,-19],[-4,-8],[7,-13],[5,-2],[4,-11],[2,-10],[-5,-10],[-7,-6],[-1,-15],[0,-5],[-3,-13],[-1,-11],[0,-19],[-1,-24],[9,4],[6,11],[18,-3],[-1,-21],[1,-11],[-11,-12],[-4,-10],[-8,4],[-10,4],[-7,-15],[8,-17],[2,-5],[-2,-11],[-8,-16],[-14,-4],[-4,7],[-5,4],[-13,2],[-12,-4],[-8,7],[-8,14],[-4,15],[-16,15],[-1,13],[-8,6],[-8,0],[-11,4],[-2,12],[12,11],[9,2],[0,6],[-5,9],[3,7],[6,11],[-7,6],[-4,3],[-11,10],[-3,10],[-3,10],[-3,10],[-4,2],[-10,9],[0,7],[-1,9],[-5,4],[-15,3],[-6,10],[-6,11],[-7,9],[-2,10],[-6,3],[-5,0],[-15,-1],[-7,3],[-6,6],[-3,11],[1,9],[-7,9],[-2,4],[2,17],[8,9],[2,15],[0,6],[1,16],[3,12],[4,11],[3,11],[-1,9],[7,5],[6,4],[8,14],[6,8],[12,-7],[11,-4]],[[439247,210896],[3,-1],[3,0],[9,1],[3,-1],[-2,-10],[2,-4],[3,-3],[-5,-8],[-7,-1],[-7,-1],[-5,-1],[-3,1],[-5,-4],[-1,-4],[5,-2],[5,-1],[4,-2],[8,-3],[3,-1],[3,0],[7,2],[2,3],[9,0],[2,-4],[3,2],[1,-3],[11,11],[4,-3],[3,-13],[-3,-5],[-3,-3],[-4,-1],[-6,3],[-2,-1],[-1,-3],[-1,-11],[-1,-5],[5,-9],[0,-10],[-3,-3],[-8,-6],[-2,0],[-3,-8],[3,-5],[4,-3],[3,1],[5,-1],[2,-5],[4,-1],[8,-2],[2,4],[3,3],[3,-1],[-2,-6],[-4,-4],[-2,-5],[1,-6],[-3,-3],[3,-5],[-1,-12],[-3,-4],[3,-8],[1,-6],[-9,-9],[-3,1],[-4,-9],[-1,-2],[6,-8],[1,-5],[-2,-9],[-3,-5],[-5,0],[-3,1],[-4,-1],[-5,0],[0,-6],[-3,-1],[-4,-4],[-5,-1],[-6,2],[-1,-6],[0,-6],[-4,-7],[-4,2],[-3,2],[-4,-2],[1,-7],[2,-5],[-2,-4],[-3,-6],[5,-2],[5,2],[5,2],[4,-4],[2,-1],[3,0],[12,-4],[2,-6],[-3,-8],[-5,-2],[-6,-3],[-1,-3],[-4,1],[-5,-10],[0,-8],[2,-7],[0,-10],[-4,-7],[-2,-6],[-14,-3],[-2,6],[4,5],[6,7],[1,8],[0,9],[-1,6],[-1,4],[-4,4],[-3,2],[-1,4],[-3,6],[1,7],[1,10],[-5,5],[-11,1],[-3,0],[-6,-1],[-7,-1],[-2,-3],[-2,-4],[-4,1],[-2,5],[-11,2],[-4,4],[-7,4],[-2,8],[-2,3],[-5,-6],[-6,-1],[-4,3],[-4,3],[-1,10],[2,7],[2,3],[-1,4],[-3,0],[-1,7],[1,16],[-1,14],[1,12],[8,7],[10,6],[11,15],[4,7],[4,7],[2,8],[2,7],[1,7],[4,10],[2,9],[1,7],[-4,6],[0,6],[2,9],[4,5],[0,3],[6,9],[4,3],[3,10],[1,6],[5,3],[7,0],[2,-3],[5,7],[1,5],[-4,3],[1,6],[7,6],[5,-2],[2,2],[0,4],[3,3],[6,1],[1,-1]],[[439373,214055],[1,-11],[11,-1],[6,3],[1,5],[3,4],[3,1],[9,-2],[1,-5],[-1,-5],[2,-3],[-2,-6],[2,-6],[6,1],[5,-6],[3,-1],[6,-1],[4,0],[11,-2],[16,-6],[11,-10],[11,-12],[6,-8],[3,-9],[7,-10],[8,-11],[5,-12],[5,-9],[8,-9],[2,-8],[4,-9],[0,-4],[1,-9],[4,-7],[6,-5],[2,2],[-1,4],[0,4],[0,4],[3,3],[6,1],[5,0],[3,-3],[0,-4],[0,-6],[-2,-7],[1,-4],[-1,-2],[-3,-2],[-3,-1],[-2,-5],[0,-2],[-1,-3],[1,-10],[3,4],[2,-4],[0,-8],[2,-1],[1,-4],[1,-9],[1,-7],[1,-1],[2,-7],[-1,-3],[4,-4],[2,-9],[2,-2],[-2,-9],[0,-10],[1,-10],[-2,-5],[0,-9],[3,-10],[-2,-9],[1,-7],[1,-8],[4,-11],[6,-17],[2,-5],[0,-13],[2,-4],[1,-14],[0,-10],[8,-10],[5,-3],[7,-2],[12,-5],[11,-5],[6,-8],[-1,-13],[-3,-12],[-5,-9],[-6,-9],[-7,-4],[-8,-2],[-8,-7],[-5,-5],[-5,-7],[-10,-22],[-10,-40],[-5,-46],[-2,-40],[-3,-17],[-2,-11],[0,-9],[-8,-31],[-4,-21],[-8,-48],[-2,-35],[2,-21],[-4,-10],[-4,-11],[-7,-72],[-6,-58],[-2,-25],[-1,-13],[3,-26],[5,-26],[9,-43],[9,-39],[6,-18],[15,-22],[8,-7],[2,5],[5,6],[3,0],[7,1],[1,2],[-1,4],[0,5],[1,2],[5,2],[3,-1],[4,1],[3,-3],[7,-6],[2,-1],[3,-1],[1,-6],[0,-3],[-3,-6],[-1,-1],[-3,0],[-4,-3],[-4,-1],[-3,-4],[-5,-4],[-4,-5],[0,-4],[9,2],[5,1],[4,-3],[9,-2],[3,-7],[0,-7],[2,-3],[6,3],[5,8],[5,5],[7,3],[0,6],[-1,1],[-7,1],[-4,2],[-4,5],[1,8],[2,3],[4,2],[0,4],[-2,3],[-6,0],[-2,1],[-1,3],[0,5],[1,6],[1,3],[4,2],[5,-1],[4,0],[5,-4],[1,-1],[-4,-4],[-2,-5],[2,-2],[0,-3],[-2,-10],[3,-3],[3,-11],[2,-2],[4,-2],[7,-3],[1,-6],[0,-3],[-1,-3],[-3,-3],[-1,-4],[1,-6],[1,-2],[3,3],[1,5],[3,3],[4,1],[1,4],[-2,3],[-2,3],[2,5],[2,0],[3,1],[3,-5],[0,-2],[3,0],[4,1],[3,-1],[3,-3],[0,-6],[-5,-1],[-3,0],[-5,-4],[-1,-8],[2,4],[3,0],[3,-1],[5,0],[8,-6],[5,-2],[-1,-11],[8,2],[9,-1],[7,-5],[-1,-13],[11,1],[12,-8],[0,8],[6,0],[12,1],[0,-8],[4,-5],[3,-6],[-2,-6],[-2,-2],[-3,0],[-3,1],[-1,0],[-3,-2],[-1,-6],[-5,-5],[-6,-2],[-10,6],[-2,0],[-14,0],[-12,2],[-6,5],[-4,2],[-2,3],[-10,3],[0,7],[-2,6],[-4,-6],[-6,-1],[-6,0],[-5,1],[-4,0],[-10,4],[-6,5],[-1,-11],[-6,-6],[-3,4],[-7,0],[-2,-6],[10,-6],[2,3],[3,-2],[0,-10],[-5,-4],[3,-8],[1,-6],[-1,-3],[-1,-3],[-5,2],[-5,3],[-8,0],[-5,-5],[-2,-8],[-1,-6],[1,-10],[5,-3],[3,-1],[5,0],[7,1],[11,-4],[9,-7],[3,-7],[-3,-10],[-3,-4],[-8,-1],[0,-3],[-1,-10],[9,-3],[1,-10],[-6,-2],[-6,-1],[-2,-7],[3,-2],[-12,-9],[-7,-1],[0,-13],[11,1],[-3,-9],[-6,-8],[-6,2],[-3,1],[-5,-1],[-2,-1],[-2,-5],[-10,-6],[-5,1],[-1,5],[-1,7],[-2,1],[-4,0],[0,-1],[1,-5],[0,-3],[-3,0],[0,-2],[-1,-2],[-2,-2],[-2,-2],[-6,-2],[-4,0],[-1,1],[-2,2],[-1,3],[1,5],[1,4],[2,5],[1,3],[0,3],[-3,5],[-3,4],[-2,3],[-3,0],[-4,-4],[-1,-5],[1,-5],[1,-5],[0,-7],[-3,-1],[-4,-1],[-8,-2],[-4,-2],[1,-4],[4,-1],[2,-3],[0,-3],[-3,-3],[-4,-1],[-5,-2],[-5,0],[-2,1],[-1,4],[1,5],[1,4],[-2,1],[-2,0],[-4,-3],[-2,2],[-5,-4],[-2,-1],[-5,-2],[-4,-3],[-5,-1],[-7,1],[-10,1],[-1,2],[-8,7],[-1,0],[-2,4],[0,2],[-1,5],[0,4],[-3,5],[-3,3],[-7,4],[-5,3],[-3,5],[-2,5],[-1,1],[-4,-2],[-4,-1],[-5,5],[0,5],[1,6],[4,3],[0,2],[-1,5],[-1,3],[-2,5],[-3,0],[-4,0],[-3,-5],[-1,1],[-4,3],[-2,-2],[-3,-1],[-1,-2],[1,-2],[1,-3],[3,-3],[3,-4],[0,-3],[-4,-1],[-3,0],[-2,-4],[-3,-4],[-3,0],[-2,0],[-2,0],[-4,-2],[-2,-1],[-1,3],[-1,3],[3,8],[3,-1],[2,-3],[3,2],[4,2],[-1,5],[-3,1],[-3,-2],[-3,1],[-1,3],[1,6],[2,2],[-1,5],[-2,2],[-5,-3],[-4,2],[-5,1],[-5,3],[-2,-5],[2,-4],[0,-3],[-2,-1],[-3,0],[-1,-1],[-2,-5],[1,-3],[0,-3],[-2,-2],[-2,-4],[-2,-1],[-3,-2],[-2,-1],[-2,2],[-3,3],[-2,1],[-2,-1],[-2,0],[-4,0],[-1,2],[0,4],[-5,4],[1,7],[2,3],[3,3],[-3,3],[-2,4],[-3,2],[0,6],[-3,-1],[-1,0],[-1,-4],[1,-4],[0,-3],[-2,-5],[-3,-2],[-4,0],[-4,2],[-1,3],[1,8],[2,2],[1,2],[0,3],[1,5],[3,6],[3,3],[2,1],[2,-1],[3,1],[2,2],[1,3],[2,2],[2,0],[2,7],[-1,3],[-2,5],[-2,5],[-11,4],[-6,-1],[-7,3],[-17,8],[-10,5],[-10,5],[-5,12],[0,6],[-2,7],[-4,7],[-14,16],[-7,8],[-10,-2],[0,-5],[-5,-1],[-5,1],[-3,2],[-1,1],[-4,1],[-4,0],[-8,-1],[-3,3],[-8,3],[-4,0],[-2,-1],[-5,-1],[-4,1],[-5,1],[-6,3],[-3,2],[-4,-1],[-5,1],[-7,2],[-4,2],[-3,3],[-14,3],[-2,-2],[-3,-2],[-7,0],[-8,0],[-6,4],[-4,2],[-4,2],[-6,0],[-3,-2],[-1,-2],[0,-3],[-2,-6],[-2,-1],[-3,0],[-4,1],[-1,5],[2,5],[1,3],[-1,6],[-1,3],[-4,3],[-7,2],[-4,2],[-7,1],[-2,0],[-1,-3],[-1,-3],[0,-3],[0,-7],[-2,-5],[-4,-2],[-4,2],[-3,3],[-3,0],[-3,0],[-4,2],[-2,2],[-3,-1],[-2,1],[-1,0],[-4,7],[-4,4],[-5,4],[2,3],[2,1],[4,4],[-1,3],[-3,3],[0,9],[-11,11],[-2,2],[-1,3],[-1,2],[-4,3],[-1,7],[3,5],[4,2],[-1,4],[0,5],[1,7],[-2,4],[-1,6],[0,3],[-4,3],[-4,4],[-5,-2],[-5,4],[-1,4],[-5,3],[-9,2],[-2,1],[-2,4],[-5,0],[-3,0],[-9,5],[-9,-1],[-6,0],[-5,-3],[-7,-1],[-14,0],[-9,5],[-11,0],[-3,5],[-5,3],[-3,6],[-2,1],[-6,3],[-7,3],[-3,11],[1,7],[0,6],[-2,6],[-1,-1],[-4,-6],[-2,-8],[-5,-7],[-8,0],[-3,2],[-2,4],[-4,1],[-3,2],[-7,0],[-3,6],[-2,6],[2,6],[-1,10],[0,6],[0,3],[-3,3],[-1,5],[-9,8],[-5,4],[-7,8],[-8,14],[-9,5],[-13,10],[-17,12],[-17,3],[-7,11],[-5,10],[-13,22],[-2,8],[-1,5],[-2,6],[-5,13],[-13,25],[-14,25],[-9,22],[-5,24],[-10,39],[-8,27],[-2,21],[-2,39],[-1,37],[3,14],[2,6],[4,9],[3,8],[4,1],[2,3],[2,8],[0,9],[3,15],[3,19],[1,14],[2,9],[8,37],[2,14],[2,5],[2,7],[0,4],[2,11],[0,8],[0,4],[-3,6],[-3,5],[-4,7],[-2,10],[0,11],[1,8],[-1,3],[3,13],[2,5],[5,8],[4,7],[3,1],[2,4],[2,6],[1,8],[4,5],[4,4],[3,4],[6,5],[3,4],[0,4],[6,6],[9,5],[-3,3],[1,1],[2,3],[4,0],[3,1],[4,4],[5,2],[8,7],[5,8],[3,3],[3,3],[4,2],[5,2],[3,4],[3,2],[7,7],[7,4],[6,1],[3,2],[4,1],[6,2],[7,4],[6,2],[7,1],[4,0],[3,3],[4,1],[12,2],[2,2],[5,0],[3,2],[8,0],[3,2],[1,2],[2,1],[7,5],[9,1],[5,0],[7,4],[2,0],[4,-1],[2,-1],[5,3],[4,0],[11,4],[3,0],[5,-2],[5,0],[8,1],[3,-1],[1,-4],[1,0],[12,-1],[18,-4],[12,-1],[9,-2],[7,-3],[6,-3],[2,2],[4,0],[11,0],[4,0],[7,-1],[2,3],[2,2],[8,-1],[4,2],[2,2],[13,1],[7,-1],[6,0],[21,3],[10,4],[2,2],[10,5],[6,5],[4,4],[10,8],[9,8],[18,11],[18,14],[14,12],[13,13],[11,11],[2,19],[0,33],[1,15],[-1,12],[3,7],[4,4],[3,5],[1,13],[7,8],[3,1],[6,4],[4,4],[6,3],[2,1],[9,3],[11,6],[16,0],[13,-6],[10,-2],[11,0],[14,0],[6,3],[5,7],[14,4],[21,0],[-1,-12]],[[449280,215635],[-121,-29],[-10,119],[-115,320],[212,451],[9,61],[92,71],[117,2],[81,-184],[-167,-206],[-85,-345],[24,-149],[-37,-111]],[[450860,216933],[-200,-295],[-445,224],[103,399],[89,73],[241,69],[135,-18],[108,-39],[24,-238],[-55,-175]],[[452868,217724],[-91,-103],[-43,35],[-75,13],[-81,-42],[-37,-74],[-25,-99],[-15,-37],[-14,-37],[-72,-155],[-106,-64],[-87,-64],[-62,17],[0,57],[10,91],[25,47],[31,108],[16,65],[0,43],[-12,39],[-6,44],[13,91],[84,-18],[185,-4],[116,144],[69,91],[50,90],[28,104],[41,104],[50,125],[84,-10],[50,-108],[96,-114],[46,-87],[-50,-99],[-44,-43],[-44,-43],[-71,-30],[-59,-77]],[[407130,214437],[15,-1],[8,-1],[6,0],[7,-1],[4,0],[33,-2],[10,-1],[15,-1],[17,-2]],[[407245,214428],[6,17],[7,17]],[[407258,214462],[6,15],[155,413]],[[409637,215488],[10,19],[85,156]],[[411311,217049],[65,-89],[33,-366],[-65,-1946],[-98,-79],[-17,-13],[-15,-12],[-80,-64],[39,-117],[42,-167],[12,-12],[8,-20],[12,-27],[11,-23],[13,-7],[10,-23],[9,-23],[6,-12],[2,-19],[0,-13],[4,-11],[5,-11],[5,-6],[1,-21],[5,-13],[17,-30],[11,-27],[6,-18],[14,-47],[9,-25],[6,-19],[11,-9],[7,-18],[6,-14],[3,-12],[6,-12],[1,-18],[3,-17],[6,-13],[7,-6],[6,-13],[-1,-6],[1,-10],[6,-8],[10,-4],[6,-4],[6,-19],[9,-5],[9,-7],[8,-6],[-10,-20],[8,-10],[2,-15],[4,-21],[3,-5],[0,-11],[0,-10],[5,-12],[9,-8],[2,-11],[-2,-7],[-6,-10],[-1,-4],[-2,-13],[7,-22],[4,-4],[6,-5],[-1,-11],[5,-4],[10,-6],[12,-4],[9,-17],[2,-8],[11,-11],[3,3],[5,5],[5,-5],[3,-7],[5,1],[6,-8],[3,-15],[0,-12],[4,-21],[-11,-9],[-1,-9],[-8,-36],[-10,-22],[-9,-33],[-1,-11],[1,-4],[0,-14],[4,-17],[5,-15],[-1,-15],[4,-16],[13,-43],[45,24],[5,-17],[-43,-25],[3,-9],[2,-4],[4,-8],[5,-3],[4,-4],[4,-7],[4,-6],[-1,-11],[-3,-7],[-3,-4],[7,-26],[36,-113],[8,-24],[9,-28],[3,-18],[2,-14],[3,-9],[5,-13],[3,-6],[5,-5],[6,-13],[1,-10],[6,-7],[2,-9],[5,-11],[1,-8],[0,-4],[0,-2],[4,-3],[-1,-11],[2,-3],[2,-1],[0,-7],[3,-4],[1,-6],[5,-10],[-1,-6],[2,-9],[5,-12],[2,-3],[7,-13],[3,-7],[4,-9],[8,-9],[3,-12],[-1,-5],[3,-6],[3,-6],[-3,-1],[-5,1],[0,-7],[2,-7],[2,-11],[3,-5],[4,-6],[4,-7],[0,-6],[2,-11],[2,-8],[2,-9],[-1,-6],[3,-3],[-2,-3],[2,-4],[2,-6],[0,-3],[0,-3],[-1,-5],[2,-1],[3,-4],[3,-4],[3,-3],[7,-7],[-3,-10],[3,-4],[2,-13],[3,-5],[3,-3],[4,-4],[2,-6],[-1,-5],[4,-4],[0,-5],[4,2],[6,1],[5,-6],[2,-1],[7,-4],[-1,-3],[2,-4],[5,7],[4,-5],[-2,-8],[3,-9],[6,4],[5,-7],[27,18],[8,-21],[17,7],[1,-7],[-68,-38],[8,-28],[-26,-17],[-6,-7],[3,-9],[3,-2],[3,2],[6,-13],[-2,-13],[3,-4],[3,-5],[3,-13],[0,-5],[1,-2],[4,-1],[4,-3],[-3,-6],[0,-4],[-2,-3],[2,-3],[7,-13],[4,-9],[7,-15],[3,0],[4,-2],[3,-3],[5,-8],[1,-6],[7,0],[1,-4],[-1,-4],[-1,-5],[5,-15],[-1,-8],[0,-5],[1,-5],[4,-7],[3,-6],[6,-8],[3,-6],[2,-8],[0,-9],[2,-5],[4,-5],[4,-11],[1,0],[0,-4],[0,-3],[4,-5],[3,-4],[2,-1],[4,-1],[0,-5],[2,-4],[5,-3],[4,-3],[4,-2],[27,-79],[22,-72],[4,-5],[2,-4],[1,-5],[0,-3],[-1,-3],[18,-59],[59,-187],[55,-171],[52,-169],[31,-98],[6,-19],[26,-85],[22,-72],[50,-156],[38,-124],[-3,-5],[9,-21],[3,-16],[1,-13],[16,-57],[7,-8],[0,-11],[4,-6],[7,-3],[1,-7],[-1,-8],[0,-8],[4,-8],[4,-4],[3,-6],[-2,-8],[5,-3],[2,-4],[1,-5],[4,-13],[3,-15],[2,-11],[5,-6],[3,-8],[0,-8],[4,-11],[7,-19],[8,-5],[-1,-9],[0,-6],[11,-34],[5,-2],[2,-13],[2,-8],[5,-5],[-1,-13],[0,-8],[5,-9],[2,-7],[7,-30],[11,-23],[0,-17],[4,-8],[5,-5],[9,-6],[4,-4],[-3,-11],[0,-5],[5,-12],[8,-6],[4,-5],[-3,-14],[-2,-8],[3,-8],[2,-3],[0,-10],[4,-6],[0,-18],[1,-8],[3,-17],[6,12],[12,1],[1,-12],[9,-3],[-1,-12],[-4,-6],[6,-10],[-11,-12],[2,-6],[-2,-5],[16,-56],[8,-22],[15,-3],[0,-12],[12,-9],[4,5],[5,6],[7,0],[1,-5],[0,-10],[-8,-11],[-3,-14],[1,-14],[-2,-10],[3,-12],[2,-11],[-2,-10],[5,-8],[7,-31],[21,-77],[22,-62],[22,-71],[6,-16],[5,-1],[4,-2],[3,-3],[6,-9],[3,-9],[1,-11],[-1,-8],[2,-9],[-2,-8],[0,-5],[2,-6],[1,-10],[20,-57],[4,0],[4,-5],[1,-14],[3,-7],[1,-7],[2,-6],[2,-6],[2,-3],[7,-9],[3,-13],[-1,-7],[11,-34],[6,-1],[3,-2],[3,-6],[2,-12],[-1,-9],[-1,-4],[17,-50],[8,-17],[13,-13],[-2,-7],[6,-4],[1,-10],[4,-6],[4,-2],[1,-12],[-1,-5],[9,-5],[-1,-15],[5,-8],[5,-10],[-3,-7],[12,-27],[3,-9],[4,2],[6,-3],[1,-5],[-1,-6],[0,-5],[-1,-3],[14,-32],[15,-34],[18,-41],[5,-1],[4,-4],[3,-8],[2,-5],[4,-6],[0,-10],[9,-23],[5,-13],[5,-3],[2,-6],[1,-4],[8,1],[3,-6],[-2,-7],[0,-7],[11,-10],[0,-10],[2,-5],[8,-2],[5,-11],[4,-8],[0,-7],[0,-10],[1,-7],[9,-17],[11,-1],[9,-2],[0,-13],[4,-12],[2,-6],[7,-19],[9,-10],[8,-4],[3,-10],[10,-5],[8,-6],[0,-13],[-4,-10],[3,-13],[-2,-4],[2,-11],[7,-4],[4,-3],[4,-11],[-2,-10],[1,-11],[6,-4],[6,-2],[2,-8],[5,-5],[3,-7],[-2,-7],[3,-9],[10,-15],[3,0],[4,-8],[4,-13],[17,-33],[41,-78],[11,-23],[4,-2],[6,-9],[5,-7],[6,-16],[6,-11],[4,6],[6,4],[2,-5],[2,-5],[11,-12],[7,1],[16,1],[5,3],[12,4],[10,3],[12,5],[13,3],[19,-2],[14,-5],[24,-12],[19,-18],[22,-24],[21,-36],[17,-36],[20,-45],[28,-55],[11,-25],[13,-18],[10,-15],[10,-17],[4,-15],[0,-12],[3,-14],[6,-21],[6,-5],[3,-9],[0,-10],[3,-10],[3,-13],[6,-2],[-1,-7],[-1,-5],[3,-6],[15,-41],[7,-25],[4,-13],[6,-6],[6,-1],[5,-10],[4,-1],[5,4],[7,0],[9,-5],[3,-6],[1,-4],[-1,-8],[2,-6],[-3,-11],[-3,-6],[-2,-5],[3,-9],[35,-47],[27,-36],[42,-56],[25,-38],[9,-2],[13,-3],[5,-17],[8,0],[7,1],[6,-3],[7,-16],[6,-8],[3,-16],[3,-6],[6,0],[6,-2],[6,-10],[4,-13],[2,-9],[3,-9],[27,-36],[50,-63],[47,-62],[52,-68],[54,-73],[62,-80],[49,-64],[58,-74],[22,-30],[14,10],[6,-8],[20,-23],[-3,-7],[2,-18],[12,-5],[6,-6],[1,-11],[0,-7],[35,-45],[50,-65],[35,-40],[13,-6],[9,-11],[5,-10],[26,-33],[5,-13],[13,-2],[30,-42],[50,-66],[68,-87],[43,-56],[50,-68],[37,-45],[-4,-6],[18,-27],[35,-49],[52,-68],[20,-24],[5,3],[6,-1],[3,-3],[1,-8],[4,-3],[3,-1],[2,-5],[1,-4],[2,-5],[4,-6],[4,-8],[13,-4],[3,0],[7,-7],[2,-5],[2,-5],[2,-12],[2,-6],[12,-20],[20,-29],[33,-46],[49,-64],[43,-55],[42,-52],[44,-64],[49,-65],[35,-44],[2,5],[6,6],[7,0],[5,-2],[6,2],[6,-10],[1,-7],[2,-6],[22,-31],[20,-28],[6,8],[7,-13],[-3,-6],[4,-6],[27,-37],[31,-46],[10,-21],[-9,-14],[10,-15],[2,6],[12,0],[4,-2],[11,-13],[4,-12],[1,-8],[2,-7],[14,5],[12,-15],[-5,-9],[4,-9],[1,-7],[-2,-6],[3,-8],[15,-27],[48,-91],[16,-30],[9,-4],[4,4],[6,-2],[3,-8],[5,-5],[1,-12],[0,-5],[1,-8],[3,-10],[10,-20],[5,-2],[5,-5],[0,-9],[0,-6],[5,-5],[5,-9],[4,0],[4,-6],[-1,-6],[-1,-5],[11,-27],[14,-33],[7,-33],[9,-36],[7,-43],[7,-48],[5,-46],[3,-73],[-1,-54],[-4,-61],[-5,-45],[-5,-41],[32,-8],[24,-5],[17,43],[59,134],[26,61],[4,9],[6,4],[8,0],[12,-3],[7,23],[17,-7],[-3,-22],[42,-24],[-8,-34],[-61,41],[-7,-1],[-12,-19],[-34,-85],[-33,-73],[-8,-21],[23,-14],[16,-21],[-3,-4],[6,-8],[3,4],[57,-67],[5,-5],[-1,-4],[4,-5],[4,4],[25,-27],[41,78],[28,55],[5,-5],[-35,-70],[-33,-64],[22,-26],[2,-5],[-1,-7],[-15,-48],[-17,-52],[-21,-78],[-14,-47],[-26,0],[-15,-4],[-12,-10],[-12,-17],[-7,-15],[-4,-12],[2,-6],[-3,-6],[35,-24],[14,37],[13,-4],[5,4],[6,-1],[4,-7],[2,-5],[6,-4],[4,-5],[7,4],[0,6],[3,4],[3,4],[2,6],[1,8],[2,7],[4,13],[3,12],[5,7],[3,12],[15,44],[1,8],[5,1],[4,4],[-3,5],[-2,8],[5,5],[-1,8],[5,4],[1,9],[2,5],[7,9],[5,16],[17,-10],[15,-9],[23,-14],[36,-21],[19,43],[9,-14],[-104,-263],[12,-10],[61,139],[40,99],[23,70],[14,44],[7,14],[9,17],[4,13],[3,7],[6,4],[6,-3],[5,-4],[0,-11],[-1,-6],[-2,-10],[-10,-31],[-3,-19],[-2,-13],[-1,-21],[8,-11],[7,-4],[2,-15],[-1,-16],[8,-3],[14,-6],[2,-3],[6,-11],[19,-10],[7,0],[4,-3],[4,-3],[12,-4],[8,-4],[9,0],[6,10],[9,-7],[0,-5],[4,-9],[3,-3],[9,1],[4,-5],[1,-8],[6,-4],[9,-3],[11,-8],[5,0],[11,1],[10,6],[0,4],[6,1],[36,66],[11,-3],[6,5],[5,-4],[-4,-10],[21,-18],[8,-2],[1,-5],[5,-6],[7,-7],[50,-51],[30,-26],[29,-24],[34,-23],[23,-19],[27,-20],[33,-19],[24,-12],[20,-15],[33,-16],[33,-23],[42,-22],[16,-9],[28,-24],[16,-11],[33,-25],[51,-32],[18,-11],[12,-10],[18,-20],[21,-13],[61,-38],[35,-21],[19,-8],[14,-5],[15,-14],[10,-9],[24,-10],[37,-11],[25,-11],[36,-9],[39,-29],[41,-21],[33,-13],[33,-7],[22,-10],[2,-18],[-6,-10],[14,-23],[10,39],[22,-10],[-40,-146],[46,-29],[-16,-52],[76,-51],[71,-43],[10,7],[7,4],[8,2],[1,4],[2,5],[6,6],[2,3],[11,19],[50,-33],[-6,-29],[2,-5],[1,-8],[1,-4],[8,-4],[11,-5],[24,-6],[7,1],[5,5],[4,6],[4,0],[3,54],[-10,3],[1,21],[36,-5],[-1,-22],[-11,2],[-3,-56],[4,-3],[0,-11],[4,0],[2,-1],[7,-3],[3,-2],[9,-2],[33,-8],[16,-3],[17,0],[11,0],[7,-5],[20,-3],[6,5],[12,-5],[5,-2],[8,4],[3,-2],[7,105],[42,-8],[-10,-100],[3,-2],[5,-2],[3,-6],[4,3],[5,42],[3,6],[-2,4],[0,3],[7,4],[1,-5],[6,0],[2,-1],[-1,-9],[1,-7],[-4,-15],[1,-13],[-1,-14],[6,-4],[6,-1],[7,-1],[0,-7],[3,-1],[2,3],[3,1],[8,-4],[21,-8],[8,-6],[9,2],[5,-1],[3,-7],[2,-5],[3,-9],[8,4],[6,3],[4,0],[4,-7],[4,-14],[-1,-4],[1,-9],[4,-6],[2,-9],[5,-8],[4,-6],[8,-9],[4,3],[6,-7],[2,-6],[3,-4],[0,-7],[1,-5],[4,-4],[4,-6],[1,-3],[8,-4],[7,-5],[3,-6],[9,-11],[2,-7],[2,-9],[6,-7],[11,-18],[2,-2],[9,-8],[4,-11],[4,-3],[7,0],[10,-5],[6,-3],[11,-9],[5,-5],[0,-16],[3,-5],[3,-12],[2,-4],[8,4],[11,5],[9,-2],[11,-5],[7,-3],[7,-16],[-1,-7],[2,-7],[2,-3],[4,0],[22,-11],[2,-2],[2,-3],[7,-10],[2,-1],[-1,-7],[2,-3],[6,-5],[2,-9],[10,-4],[3,-4],[1,-8],[3,-5],[2,-6],[2,-5],[0,-5],[5,-2],[2,-8],[2,-2],[8,-4],[-1,-4],[-2,-6],[3,-5],[4,-3],[3,-3],[6,-6],[3,-10],[1,-10],[4,-8],[1,-12],[0,-4],[8,-4],[1,-2],[7,-4],[-1,-9],[9,-6],[2,-3],[-1,-10],[1,-13],[8,-1],[8,-8],[6,-9],[3,-10],[-1,-4],[6,-6],[1,-7],[3,-3],[2,-5],[4,-3],[4,-7],[1,-6],[-1,-7],[5,-12],[-1,-5],[9,-5],[2,-5],[5,-4],[7,0],[2,1],[8,-4],[7,-4],[10,-6],[7,-10],[4,-3],[4,-2],[2,-6],[8,-2],[1,-1],[5,-3],[3,-6],[-2,-10],[-3,-5],[-3,-4],[-1,-17],[-1,-3],[-3,-7],[1,-15],[-5,-3],[0,-21],[-2,-7],[-3,-11],[3,-17],[4,-14],[1,-12],[5,-14],[6,-14],[8,-11],[8,-26],[7,-17],[3,-15],[2,-13],[1,-18],[1,-30],[2,-3],[2,-5],[8,-14],[2,-20],[6,-24],[2,-12],[5,-13],[3,-13],[3,-14],[0,-13],[7,-14],[1,-27],[4,-17],[2,-7],[2,-11],[3,-18],[2,-8],[-1,-17],[0,-11],[5,-17],[-1,-15],[6,-16],[5,-20],[5,-32],[5,-60],[3,-39],[4,-24],[8,-36],[3,-26],[-2,-16],[3,-12],[5,-20],[1,-13],[0,-14],[-3,-23],[6,-30],[-1,-16],[-1,-18],[0,-17],[1,-18],[3,-8],[4,-15],[-2,-7],[-2,-9],[2,-11],[-4,-20],[2,-16],[-4,-14],[4,-12],[2,-7],[7,-35],[7,-63],[9,-35],[6,-22],[1,-12],[2,-15],[2,-12],[3,-27],[1,-6],[-3,-9],[2,-10],[5,-1],[2,-10],[2,-9],[1,-20],[0,-11],[0,-12],[-1,-9],[0,-5],[1,-3],[4,-9],[2,-8],[5,-24],[5,-10],[-1,-11],[6,-15],[9,-15],[5,-6],[3,-3],[10,-6],[3,-2],[3,-10],[2,-6],[4,-14],[6,-6],[6,-4],[2,-6],[14,-24],[6,-8],[4,-11],[2,-7],[3,-7],[3,-12],[0,-5],[0,-7],[0,-7],[-4,-12],[0,-10],[0,-10],[-2,-18],[-4,-4],[-5,-29],[-4,-60],[-1,-85],[-39,-15],[3,-15],[44,11],[13,-7],[12,1],[23,3],[14,7],[16,-2],[32,-9],[8,-2],[9,-6],[8,-5],[4,-7],[6,-4],[5,-10],[6,-4],[12,-15],[4,-15],[3,-9],[6,-20],[3,-7],[11,-28],[6,-17],[0,-10],[12,-18],[2,-8],[2,-9],[4,-14],[2,-3],[9,-15],[6,-16],[6,-16],[5,-15],[22,-57],[4,-10],[1,-10],[4,-29],[3,-6],[12,-30],[5,-9],[4,-23],[15,-22],[1,-9],[3,-8],[6,-9],[16,-28],[6,-8],[3,-11],[3,-5],[1,-7],[0,-12],[2,-7],[-2,-17],[-2,-2],[-8,-5],[-2,-12],[10,5],[14,-1],[9,-18],[1,-10],[0,-13],[5,-2],[5,-5],[3,-7],[1,-8],[2,-17],[1,-3],[3,-7],[7,-3],[4,-10],[0,-4],[0,-14],[3,-3],[7,-10],[1,-6],[5,-8],[1,-9],[1,-8],[2,-6],[6,-6],[3,-17],[2,-9],[3,-11],[0,-7],[3,-11],[3,-9],[-1,-5],[6,-11],[2,-2],[6,-6],[0,-5],[11,-6],[-1,-6],[1,-6],[6,-3],[3,-7],[1,-4],[16,-33],[0,-7],[2,-4],[-2,-9],[6,-3],[1,-19],[-4,-11],[1,-16],[7,-7],[4,-11],[0,-6],[7,-10],[1,-10],[6,-7],[1,-4],[2,-10],[7,-21],[6,0],[-1,-13],[6,-4],[3,-16],[6,-3],[1,-12],[8,-12],[4,4],[12,3],[8,-14],[3,-11],[-5,-11],[-7,-10],[-11,-8],[-6,-9],[-10,-8],[-5,-1],[-14,-9],[3,-24],[-5,-19],[-17,-11],[6,-30],[9,8],[10,-4],[9,-11],[7,5],[3,-2],[13,7],[9,1],[5,-4],[6,-14],[1,-11],[7,-22],[3,-17],[2,-10],[2,-3],[8,-16],[5,-22],[1,-4],[4,-11],[2,-7],[-8,-3],[-7,0],[-6,2],[-5,1],[-10,0],[-12,0],[-3,-5],[-5,-8],[-4,-2],[-2,-10],[2,-6],[2,-2],[11,4],[6,-14],[4,-1],[5,-7],[-1,-11],[0,-7],[9,0],[4,10],[2,1],[8,2],[11,5],[7,8],[7,6],[3,-4],[-1,-2],[2,-2],[3,-4],[2,-12],[0,-6],[0,-7],[2,-1],[-1,-7],[3,-3],[1,-2],[2,-11],[0,-5],[2,-3],[1,-5],[4,-5],[2,-6],[0,-10],[3,-5],[5,-4],[0,-8],[0,-7],[0,-7],[0,-8],[3,-9],[3,-10],[7,-3],[1,-7],[0,-4],[3,-5],[1,-5],[0,-7],[1,-9],[2,-6],[2,-6],[1,-9],[2,-8],[2,-11],[1,-11],[9,-33],[6,-27],[8,-19],[7,-5],[2,-7],[0,-11],[-1,-9],[2,-5],[2,-3],[5,-6],[5,-7],[3,-14],[-2,-7],[3,-7],[2,-8],[2,-4],[6,-7],[0,-9],[-2,-6],[4,-9],[4,-4],[5,-3],[2,-5],[9,-12],[4,-6],[0,-8],[2,-5],[-1,-9],[-2,-6],[-4,-2],[0,-9],[3,-2],[2,-5],[2,-10],[3,-15],[2,-10],[4,-6],[2,-11],[2,-5],[9,-9],[1,-4],[0,-4],[3,-5],[4,-4],[2,-4],[-1,-8],[4,-14],[8,-11],[0,-3],[4,-7],[2,-4],[4,-9],[-1,-7],[-1,-9],[0,-10],[4,-6],[-2,-8],[1,-7],[7,-12],[0,-7],[-1,-12],[0,-6],[0,-7],[5,-4],[3,-5],[6,-3],[9,-13],[-1,-8],[2,-9],[2,-9],[-5,-10],[4,-8],[2,-14],[0,-5],[6,-12],[-1,-10],[3,-9],[3,-15],[-5,-11],[-2,-3],[-5,-4],[-11,-10],[-10,-6],[-6,-8],[10,-29],[17,8],[4,-2],[6,1],[2,-1],[5,-3],[8,-3],[2,3],[8,-3],[0,-8],[1,-8],[7,-4],[-2,-8],[1,-6],[8,-6],[-1,-7],[4,-17],[1,-3],[-3,-10],[3,-6],[3,-3],[2,-7],[2,-12],[4,-2],[2,-5],[3,-9],[0,-7],[3,-8],[2,-5],[9,-5],[2,-6],[0,-10],[5,-19],[-2,-4],[0,-8],[1,-9],[4,-6],[8,-11],[-4,-7],[3,-7],[6,-22],[5,-8],[-5,-8],[2,-8],[3,-2],[3,-7],[-1,-8],[-2,-7],[1,-12],[1,-6],[3,-6],[2,-8],[4,-4],[6,-6],[0,-10],[2,-7],[-6,-9],[2,-4],[5,-14],[5,-6],[5,-10],[6,-33],[-2,-11],[1,-13],[3,-5],[4,-2],[6,-7],[2,-11],[-4,-10],[4,-6],[-2,-10],[8,-32],[1,-9],[4,-12],[4,-14],[0,-5],[0,-9],[2,-4],[2,-14],[7,-14],[1,-16],[0,-8],[7,-3],[0,-13],[-2,-5],[1,-11],[4,-12],[1,-9],[4,-18],[1,-8],[-3,-14],[7,-12],[-3,-9],[2,-3],[1,-9],[2,-19],[0,-23],[3,-10],[0,-10],[5,-7],[6,-8],[2,-7],[1,-8],[0,-14],[6,-18],[0,-15],[-2,-10],[3,-18],[4,-5],[4,-2],[2,-4],[4,-7],[-2,-13],[5,-7],[8,-20],[0,-9],[0,-5],[4,-6],[0,-12],[-2,-7],[3,-10],[-4,-9],[3,-4],[3,-5],[-1,-5],[4,-7],[2,-9],[1,-3],[-4,-2],[1,-10],[1,-3],[4,-14],[-1,-12],[2,-8],[1,-9],[0,-3],[-1,-13],[-2,-4],[4,-3],[2,-6],[1,-5],[0,-8],[0,-5],[-1,-1],[7,-9],[-3,-12],[0,-3],[2,-12],[1,-11],[2,-4],[2,-5],[0,-5],[-2,-4],[1,-3],[0,-13],[1,-8],[-1,-5],[1,-5],[5,-9],[-1,-6],[2,-1],[9,-1],[8,-9],[0,-3],[0,-24],[1,-3],[-1,-14],[1,-13],[1,-21],[5,-7],[2,-5],[-1,-6],[-2,-7],[-2,-5],[2,-7],[2,-3],[3,-8],[0,-9],[-3,-25],[-5,3],[8,-9],[0,-4],[-3,-5],[2,-5],[3,-5],[7,-5],[1,-6],[-4,-8],[3,-13],[0,-5],[-2,-18],[-2,-3],[0,-6],[8,-7],[4,-7],[-3,-8],[2,-3],[1,-9],[-1,-8],[1,-8],[2,-4],[0,-8],[3,-2],[5,-4],[-3,-13],[-4,-4],[2,-9],[3,-4],[3,-5],[-1,-13],[-1,-2],[2,-10],[3,-11],[1,-8],[-2,-4],[-2,-4],[7,-6],[2,-10],[3,-7],[1,-18],[-4,-7],[-2,-4],[3,-20],[-4,-9],[11,-12],[0,-3],[-5,-4],[5,-16],[4,-8],[1,-6],[1,-7],[1,-4],[-3,-7],[0,-5],[2,-6],[1,-4],[-1,-8],[2,-4],[-4,-12],[2,-7],[1,-5],[0,-9],[3,-2],[2,-9],[-4,-9],[3,-11],[-6,-6],[9,-5],[-1,-6],[-2,-7],[1,-19],[0,-4],[2,-6],[0,-5],[3,-13],[-4,-12],[2,-6],[5,-5],[0,-12],[-2,-5],[3,-4],[3,-23],[0,-4],[-3,-8],[-1,-8],[0,-6],[2,-12],[2,-6],[3,-3],[2,-7],[1,-11],[2,-5],[-3,-7],[3,-3],[2,-13],[-3,-4],[0,-11],[3,-5],[2,-13],[0,-6],[-3,-3],[3,-9],[-2,-8],[1,-9],[0,-2],[6,-15],[-2,-8],[-3,-6],[1,-11],[3,-15],[0,-18],[2,-4],[4,-19],[-1,-5],[-7,-5],[7,-11],[1,-3],[8,-11],[0,-14],[1,-3],[0,-9],[7,-1],[3,-3],[0,-6],[-12,-11],[-1,-8],[1,-9],[2,-5],[2,-23],[2,-9],[-1,-8],[-7,-11],[4,-8],[8,-19],[-1,-4],[-3,-6],[6,-14],[3,-11],[1,-4],[3,-18],[2,-18],[-4,-9],[-1,-9],[2,-14],[0,-10],[0,-8],[1,-4],[1,-7],[4,-11],[-1,-12],[1,-16],[1,-7],[4,-8],[1,-10],[-2,-12],[1,-18],[6,-21],[4,-3],[-3,-15],[0,-8],[5,-12],[1,-3],[-2,-4],[1,-6],[1,-5],[7,-16],[6,-8],[1,-7],[1,-3],[-8,-17],[3,-5],[2,-10],[-2,-11],[4,-3],[3,-15],[2,-1],[10,-26],[4,-18],[9,-18],[0,-15],[5,-9],[4,-11],[6,-14],[5,-8],[4,-5],[0,-4],[4,-10],[4,-8],[2,-8],[5,-6],[0,-10],[6,-9],[0,-8],[-1,-16],[3,-2],[5,-20],[5,-5],[2,-5],[9,-7],[18,6],[10,-4],[5,-16],[3,-8],[4,-4],[10,-7],[4,-6],[0,-8],[2,-10],[2,-7],[2,-14],[6,-4],[7,-14],[7,-4],[1,-4],[8,-8],[3,-18],[13,-6],[9,-15],[1,-9],[9,-10],[7,-10],[12,-17],[10,-14],[20,-15],[4,-18],[13,-8],[5,-19],[8,-2],[5,-9],[12,0],[6,-2],[9,-16],[5,-5],[9,-12],[8,-3],[7,2],[4,-6],[5,0],[16,-7],[3,-11],[14,-4],[16,0],[3,1],[8,-3],[10,-5],[13,-3],[4,-1],[11,-15],[10,-17],[9,5],[12,8],[14,0],[3,-4],[3,-8],[9,6],[7,-3],[7,-3],[8,0],[6,11],[19,-2],[6,-2],[10,-5],[10,-2],[0,-17],[10,-2],[8,2],[11,-2],[4,-4],[5,-3],[3,-3],[16,-2],[10,-3],[9,-14],[13,-8],[4,-10],[8,0],[4,-3],[50,-47],[18,-27],[6,-5],[2,-9],[19,-23],[17,-27],[3,-4],[17,-29],[6,-7],[5,-12],[4,-10],[6,-2],[-1,-15],[3,-13],[8,-14],[-1,-2],[7,-17],[0,-8],[5,-13],[-3,-7],[5,-10],[-2,-11],[2,-11],[4,-2],[-4,-11],[1,-7],[-4,-6],[3,-7],[0,-3],[-3,-8],[2,-15],[-1,-7],[3,-8],[1,-23],[2,-5],[3,-13],[1,-6],[-2,-6],[0,-12],[-2,-2],[-3,6],[-4,12],[-1,3],[-2,4],[-3,5],[0,2],[-8,2],[-4,-1],[0,-5],[2,-5],[2,-4],[2,-7],[0,-3],[-1,-8],[0,-10],[3,-7],[1,-4],[2,-13],[2,-8],[11,-15],[0,-7],[-3,-11],[-19,-18],[-6,-15],[7,-22],[14,-48],[11,-36],[16,-73],[17,-77],[32,-149],[21,-86],[16,-79],[14,-90],[-6,-1],[11,-80],[10,-79],[12,-87],[0,-7],[6,-76],[7,-98],[-16,-101],[-4,-21],[-3,-19],[-4,-34],[-16,-33],[-3,-33],[-5,-7],[-4,-7],[-13,-38],[1,-16],[-5,-11],[-9,-23],[-2,-4],[-1,-6],[2,-6],[0,-4],[1,-7],[0,-7],[-2,-15],[-4,-14],[2,-12],[-10,-15],[-4,-6],[-10,-14],[0,-15],[-3,-12],[2,-11],[-4,-11],[-13,-24],[-2,-8],[-5,-10],[-12,-2],[77,-26],[42,-20],[7,-4],[6,-3],[28,-13],[6,-3],[7,-3],[21,-11],[6,1],[2,4],[5,7],[2,4],[2,5],[2,6],[1,9],[0,8],[0,6],[-1,7],[1,6],[0,9],[1,10],[-2,11],[0,5],[0,4],[-3,12],[2,1],[4,1],[4,3],[3,1],[3,2],[1,5],[-1,8],[3,-2],[0,6],[0,7],[0,5],[6,14],[3,5],[1,4],[3,5],[4,0],[7,-1],[3,-1],[6,2],[2,7],[0,9],[2,7],[2,7],[-2,14],[20,33],[18,19],[8,4],[6,4],[8,2],[7,2],[4,1],[9,2],[8,3],[9,12],[4,7],[3,12],[2,13],[4,8],[4,7],[6,9],[6,8],[20,3],[21,1],[9,6],[16,5],[12,11],[23,20],[2,9],[1,8],[11,9],[7,0],[7,-2],[3,3],[5,11],[5,12],[16,12],[4,1],[12,1],[4,5],[4,7],[5,4],[7,3],[17,0],[7,0],[11,7],[5,2],[3,3],[6,0],[6,0],[5,-4],[4,-4],[3,-1],[8,0],[6,-1],[7,-1],[3,1],[5,3],[2,7],[-1,11],[2,6],[10,4],[9,0],[2,-2],[6,1],[4,0],[8,-7],[6,-2],[12,5],[7,3],[1,-1],[6,-5],[1,0],[7,3],[5,-2],[7,-9],[10,-3],[10,2],[7,4],[8,0],[6,-5],[3,-3],[9,-1],[5,-5],[3,-5],[7,-3],[4,-6],[3,-2],[4,3],[3,0],[2,-8],[5,0],[5,2],[6,2],[9,0],[9,0],[4,0],[6,-8],[11,-10],[10,-10],[12,-11],[2,0],[5,0],[5,2],[10,2],[5,-3],[9,-6],[4,-3],[2,-2],[4,-1],[10,2],[6,2],[10,-1],[2,-5],[4,-7],[11,-10],[3,0],[3,-4],[2,-4],[2,-6],[2,-3],[5,-3],[5,-8],[5,-4],[5,0],[7,0],[7,0],[11,-5],[6,-7],[10,-5],[3,2],[8,-1],[3,-4],[3,-4],[5,-6],[7,-1],[2,-1],[11,1],[4,-7],[6,-4],[2,-4],[2,-5],[1,-1],[6,-1],[3,-6],[8,-7],[5,5],[3,2],[5,3],[5,-1],[3,-5],[3,-11],[-1,-9],[2,-6],[3,-6],[6,-1],[6,-3],[4,-2],[7,2],[6,5],[3,2],[9,0],[2,-1],[5,-3],[12,3],[5,2],[9,-1],[7,-2],[5,-2],[5,-3],[6,-1],[7,-3],[3,-1],[5,-3],[8,0],[8,-1],[4,-3],[4,-3],[6,2],[7,1],[9,-4],[5,-13],[3,-6],[8,-4],[2,-6],[0,-8],[3,-1],[5,6],[5,-1],[1,-8],[1,-7],[8,-1],[3,2],[1,4],[7,3],[7,1],[14,-6],[4,-4],[8,-12],[7,3],[9,7],[9,0],[7,1],[6,0],[2,-3],[4,-11],[3,0],[1,-4],[1,-4],[3,4],[8,-1],[4,-3],[5,-3],[1,-5],[-1,-7],[2,-7],[3,-1],[8,4],[7,3],[5,0],[8,2],[8,0],[5,-6],[4,-4],[3,0],[3,2],[5,6],[6,0],[5,-5],[3,-1],[8,-4],[11,-7],[3,-3],[1,1],[4,-2],[11,-14],[3,-10],[8,-8],[10,1],[6,1],[8,8],[6,2],[4,-5],[5,-9],[7,0],[9,0],[11,0],[11,0],[6,-3],[12,-7],[10,-4],[10,-5],[3,-2],[8,-8],[14,-21],[27,-75],[4,-16],[5,-16],[3,-30],[2,-23],[3,-15],[3,-10],[5,-15],[-3,-28],[-2,-16],[-1,-13],[1,-11],[3,-9],[6,-10],[3,-27],[1,-21],[-2,-25],[-1,-12],[-8,-10],[-5,-5],[-3,-10],[6,-13],[7,-5],[2,-9],[4,-13],[4,-8],[5,-5],[4,0],[9,1],[6,-5],[3,-10],[3,-7],[4,-2],[4,0],[5,0],[4,-7],[0,-9],[0,-11],[7,-12],[4,-11],[5,-1],[4,0],[5,1],[4,-6],[5,-12],[4,-13],[1,-11],[-1,-9],[-4,-6],[-7,-10],[0,-14],[1,-12],[1,-11],[-3,-8],[-4,-12],[-6,-13],[1,-15],[5,-13],[6,-13],[4,-6],[2,-6],[-1,-4],[-1,-3],[-8,-15],[2,-7],[4,-3],[4,0],[1,-12],[-3,-5],[-6,-4],[-4,-6],[-3,-7],[0,-5],[-3,-10],[-2,-8],[-1,-4],[-3,-8],[-7,-3],[-12,-4],[-14,-11],[-6,-15],[-5,-19],[-5,-11],[-9,-9],[0,-17],[-3,-25],[1,-17],[9,-16],[6,-11],[0,-17],[-6,-10],[-6,-8],[0,-11],[3,-13],[4,-4],[5,-18],[-1,-11],[-2,-8],[1,-12],[0,-8],[-1,-9],[0,-16],[4,-3],[7,-13],[-3,-6],[-4,-9],[-2,-11],[0,-12],[-7,-7],[-5,-6],[-3,-4],[-8,-11],[-17,-15],[-21,-19],[-2,-19],[16,-26],[34,-20],[21,-10],[23,-5],[10,-1],[1,3],[19,0],[19,0],[13,-18],[-1,-22],[-7,-13],[-12,-12],[-14,-4],[-11,-12],[-4,-18],[-2,-22],[-13,-16],[1,-15],[1,-17],[0,-19],[4,-17],[9,-15],[2,-15],[-4,-10],[0,-21],[-1,-22],[-5,-37],[-17,-65],[-3,-22],[-8,-19],[-13,-17],[-13,-8],[-8,-9],[-10,-7],[-5,-10],[-5,-8],[-5,-7],[-7,-2],[-6,-2],[-6,-7],[-8,-1],[-11,-10],[-5,-11],[-4,-5],[-6,-6],[-13,-9],[-14,-8],[-18,-15],[-12,-2],[-9,-3],[-11,-7],[-5,-6],[-11,-1],[-6,-1],[-4,-3],[-4,-11],[-5,-3],[-6,-2],[-4,-3],[-3,-4],[0,-6],[3,-6],[5,-9],[5,-6],[6,-5],[15,-3],[4,0],[7,1],[18,1],[4,0],[11,-5],[6,-12],[33,-14],[22,-3],[21,2],[36,12],[35,8],[37,3],[42,-36],[81,-77],[47,-54],[24,-56],[19,-29],[-7,-15],[0,-15],[13,-12],[7,0],[13,0],[12,-8],[16,-26],[16,-28],[8,-21],[-11,-53],[9,-29],[14,16],[-5,13],[121,101],[-55,112],[22,21],[51,-105],[38,3],[26,16],[-35,104],[48,21],[31,27],[-16,64],[-44,156],[-11,23],[-3,9],[-27,93],[74,40],[211,119],[100,58],[12,-39],[89,50],[-27,93],[26,15],[172,-585],[171,92],[-17,60],[-154,533],[29,15],[44,-152],[150,80],[109,69],[25,-12],[40,-4],[26,6],[23,16],[24,16],[17,-9],[29,19],[47,51],[32,27],[18,9],[4,1],[3,7],[23,13],[11,6],[6,1],[5,0],[5,-2],[4,-6],[12,-12],[10,-4],[4,7],[6,5],[0,-8],[0,-14],[20,-63],[71,-243],[17,-60],[17,-37],[5,-29],[-4,-44],[-5,-61],[-17,-61],[-20,-44],[-24,-27],[-29,-50],[-28,-41],[-25,-11],[-14,-22],[-15,-30],[-21,-45],[-30,-60],[-26,-49],[-12,-24],[-11,-30],[-14,-26],[-17,-29],[-23,-44],[-28,-39],[-25,-23],[-1,-15],[6,-9],[12,-10],[28,-22],[17,-21],[38,55],[30,89],[5,33],[13,11],[21,3],[6,0],[13,2],[6,5],[9,12],[2,9],[2,18],[12,9],[11,-15],[40,-35],[7,15],[12,-18],[31,-26],[73,-53],[25,-23],[60,153],[18,-13],[-60,-149],[28,-21],[-13,-33],[127,-94],[120,-77],[3,10],[5,13],[1,31],[0,19],[0,18],[3,18],[6,7],[6,12],[3,14],[-2,28],[-5,28],[0,21],[8,14],[8,9],[-4,82],[-6,22],[-4,14],[-2,35],[7,21],[17,22],[-38,91],[53,279],[59,71],[58,40],[122,68],[103,59],[89,48],[87,39],[23,5],[10,1],[18,-3],[99,-25],[131,-34],[39,-2],[10,28],[1,20],[22,17],[15,-3],[23,-18],[30,-2],[40,7],[31,18],[27,24],[-11,51],[29,36],[17,25],[1,64],[-1,16],[-9,13],[-21,24],[2,12],[-7,46],[-8,11],[-9,-11],[-71,93],[-57,63],[-38,52],[-7,9],[-6,-4],[-18,9],[-14,11],[-8,-3],[-10,-18],[-10,-5],[-8,13],[2,18],[17,29],[1,16],[-7,22],[-7,11],[-28,34],[49,78],[112,182],[36,-40],[46,52],[54,66],[50,79],[19,39],[18,54],[21,52],[19,45],[63,147],[44,100],[10,32],[19,49],[16,36],[31,47],[29,39],[23,33],[16,22],[21,40],[30,32],[39,39],[29,32],[6,21],[60,86],[4,11],[-8,11],[130,210],[102,-123],[209,-254],[124,-151],[68,-80],[31,-34],[0,-3],[-5,-8],[42,-48],[83,-103],[6,5],[63,-75],[17,-19],[1,-3],[1,-4],[0,-3],[-13,-22],[50,-60],[11,20],[5,0],[3,0],[440,-530],[105,-128],[-37,-55],[7,-11],[11,-17],[13,-31],[34,-94],[21,-21],[13,-22],[6,-31],[6,-47],[-3,-19],[-20,-47],[-8,-16],[-19,-27],[-6,-2],[-4,-6],[4,-11],[-5,-1],[1,-14],[-6,-18],[-9,-27],[-12,-15],[-4,-13],[-6,-18],[-7,-11],[-13,-13],[-9,-3],[-9,-7],[-6,-8],[-4,-11],[-5,-22],[-5,-56],[-1,-31],[6,-75],[3,-14],[15,-39],[9,-10],[8,-8],[8,-6],[10,-13],[2,-7],[2,-12],[0,-9],[-1,-5],[-3,-5],[0,-7],[2,-13],[0,-11],[-4,-7],[-6,-3],[-3,0],[-3,-6],[-2,-8],[-8,-22],[-6,-19],[-1,-22],[3,-36],[93,-107],[5,0],[309,496],[148,240],[57,-69],[-55,-88],[-167,-273],[-182,-291],[-189,-305],[-220,-358],[-123,-198],[-181,-292],[-184,-297],[-150,-240],[-287,-469],[-115,-184],[-6,7],[-25,-44],[6,-8],[-36,-51],[-6,4],[-25,-40],[7,-8],[-105,-167],[-48,57],[44,73],[-66,80],[-14,-24],[-122,-201],[-50,-78],[-76,-120],[-122,-202],[-914,-1476],[-27,-56],[1,-14],[-3,-12],[-4,-5],[-4,0],[-5,-44],[-11,-87],[1,-7],[20,-65],[1302,-4110],[5,-14],[16,-11],[71,-21],[36,-4],[48,-5],[39,2],[53,12],[56,18],[1507,928],[848,556],[1098,696],[86,-9],[1202,-31],[121,-56],[1032,-526],[678,-351],[643,-334],[48,-20],[74,-2],[73,33],[56,86],[292,1083],[5,10],[5,2],[7,-2],[176,-93],[4,-10],[0,-11],[-309,-1162],[2,-6],[5,-3],[53,16],[7,-39],[167,42],[54,2],[48,-8],[38,-10],[10,-5],[0,39],[103,4],[1,-52],[60,-1],[25,-11],[15,-14],[20,-41],[23,-59],[13,-80],[332,100],[-24,38],[-17,63],[0,38],[23,70],[12,-10],[21,74],[14,19],[11,3],[20,-9],[200,779],[1862,-884],[9,-8],[4,-11],[0,-12],[-20,-83],[-5,2],[-144,-589],[-12,-41],[-14,-26],[-14,-16],[-21,-12],[-642,-143],[-36,-4],[-16,4],[-13,5],[-185,89],[-32,-127],[172,-87],[-38,-135],[872,-420],[11,1],[40,29],[10,13],[213,871],[-6,28],[-29,132],[4,12],[9,6],[85,30],[113,44],[26,11],[9,-7],[56,-46],[14,-16],[1,-22],[-31,-60],[-53,-44],[-38,-16],[-144,-59],[-234,-958],[-923,444],[-927,445],[-37,63],[57,62],[-40,78],[-107,204],[-43,58],[0,52],[-16,20],[-21,0],[-307,-94],[33,-135],[36,-144],[30,-118],[15,-169],[18,-197],[-12,-2],[1,-7],[26,-96],[22,-65],[81,36],[25,-49],[-59,-58],[240,-521],[82,75],[127,-273],[70,61],[1,10],[-425,824],[36,35],[500,-958],[9,6],[50,-9],[6,5],[19,88],[19,-7],[-17,-88],[4,-10],[53,-7],[7,7],[18,79],[19,-10],[-24,-116],[-106,12],[-7,-7],[-2,-33],[41,-73],[-21,-18],[-41,68],[-88,-77],[122,-275],[129,104],[-4,8],[-71,117],[-11,9],[-8,6],[1,15],[7,8],[8,1],[47,-74],[55,66],[15,-23],[-15,-21],[-3,6],[-23,-28],[-2,3],[-17,-20],[32,-51],[12,-18],[17,21],[57,70],[14,-20],[-57,-69],[-18,-23],[53,-88],[25,29],[62,74],[19,-22],[-52,-59],[19,-28],[-12,-15],[-11,-14],[44,-74],[17,20],[62,70],[18,-29],[82,87],[14,-23],[-81,-88],[14,-25],[-48,-53],[-4,-5],[-17,-36],[15,-22],[42,27],[19,12],[12,-34],[96,55],[10,-25],[-89,-56],[-2,-2],[10,-35],[-74,-42],[2,-10],[103,4],[20,7],[1,-4],[23,-120],[30,-27],[112,-116],[167,-173],[89,-93],[15,21],[13,18],[10,-10],[-11,-18],[-15,-25],[84,-84],[18,8],[37,-17],[30,-22],[0,25],[62,3],[121,7],[152,10],[49,12],[0,31],[0,72],[15,-1],[2,-69],[1,-16],[66,6],[54,-5],[119,4],[104,1],[77,0],[136,20],[137,-4],[185,6],[268,28],[61,-6],[76,-53],[99,-91],[34,-53],[47,-105],[18,-98],[3,-186],[16,-326],[17,-369],[11,-282],[10,-274],[8,-244],[14,-246],[13,-312],[6,-210],[4,-168],[9,-122],[-6,-112],[-6,-44],[107,-61],[17,32],[17,10],[124,29],[-4,136],[0,15],[113,61],[9,-32],[-94,-53],[-1,-34],[185,47],[20,12],[47,14],[24,-9],[23,-28],[18,-10],[36,5],[127,32],[65,-12],[16,-44],[-1,-59],[-50,-155],[-109,-234],[-112,-268],[-127,-224],[-86,-187],[-106,-208],[-70,-131],[-28,-42],[-35,-15],[-30,-2],[-33,26],[-45,24],[-43,25],[-29,46],[-9,49],[-4,68],[-1,173],[-5,244],[11,113],[5,54],[12,62],[32,91],[31,95],[37,110],[40,135],[-109,62],[-62,-183],[-42,-125],[-43,-160],[-7,-150],[3,-231],[34,-395],[8,-94],[-13,-106],[-28,-50],[-86,-79],[-51,-36],[-30,-10],[-39,3],[-31,20],[-97,102],[-71,67],[-71,38],[-69,54],[-116,77],[-100,76],[-103,86],[-80,48],[-59,34],[-294,-618],[-92,-162],[-29,13],[-11,67],[50,74],[140,287],[121,285],[28,113],[-119,159],[-19,-81],[-105,50],[24,107],[-129,100],[-139,54],[-16,-56],[-38,14],[-44,72],[-99,19],[-35,-72],[-44,26],[7,34],[-91,32],[-76,8],[-22,0],[-20,-1],[-22,-6],[-34,-6],[-28,-1],[-15,-3],[-14,-6],[-10,2],[-3,8],[-18,-6],[1,-7],[-14,-15],[-34,-26],[-25,-23],[-25,-18],[-20,-6],[-20,-3],[-27,-11],[-11,-11],[-6,-24],[-11,-18],[-19,-12],[-25,-13],[-47,-42],[-51,-56],[-33,-46],[-30,-56],[-19,-26],[-31,-61],[-24,-41],[-27,-54],[-26,-81],[-21,-58],[-9,2],[-4,-22],[5,-5],[-2,-13],[-6,-30],[-25,-121],[-14,-124],[-3,-63],[-5,-102],[1,-23],[2,-87],[11,-111],[14,-82],[5,-28],[29,-118],[43,-131],[11,-31],[9,-24],[13,-11],[9,1],[10,-19],[-7,-17],[-3,-25],[7,-27],[26,-44],[34,-42],[40,-43],[61,-48],[69,-34],[41,-8],[50,-3],[77,9],[49,17],[10,-28],[41,25],[-5,16],[30,18],[85,63],[61,81],[42,79],[32,79],[18,76],[9,41],[-12,9],[7,66],[-1,64],[-8,63],[-10,61],[-20,65],[-37,109],[-29,85],[-23,56],[-11,46],[-2,30],[7,35],[9,22],[15,16],[24,4],[24,-7],[23,-21],[20,-28],[246,-513],[34,-87],[41,-137],[14,-83],[42,-2],[30,-2],[26,-10],[8,-42],[-33,-27],[-55,-32],[18,-192],[2,-138],[-8,-73],[5,-40],[-6,-34],[0,-23],[-2,-32],[-9,-40],[4,-23],[-7,-24],[-10,-22],[0,-24],[5,-28],[-3,-27],[-12,-22],[-5,-34],[-9,-42],[-4,-42],[-4,-36],[4,-26],[5,-15],[-2,-24],[-9,-19],[1,-54],[5,-38],[16,-28],[63,-47],[4,-3],[71,-42],[89,-47],[3,-25],[-12,-7],[-119,56],[-28,-13],[-57,-102],[-65,-162],[-130,-334],[-62,-194],[-46,-183],[-49,-159],[-29,-107],[-30,-78],[-41,-134],[-39,-117],[-49,-157],[-46,-163],[-29,-130],[-33,-145],[-41,-208],[-28,-162],[-42,-264],[-25,-162],[-24,-220],[-32,-337],[-5,-280],[2,-159],[4,-179],[4,-169],[9,-154],[6,-157],[6,-164],[4,-71],[13,-38],[22,-19],[60,-49],[59,-34],[64,-15],[47,-17],[69,-11],[60,-3],[29,-6],[16,-11],[6,-14],[-2,-13],[-17,-9],[-16,-3],[-42,10],[-59,7],[-17,-26],[20,-3],[34,0],[45,-11],[37,-15],[49,-50],[55,-84],[46,-89],[36,-81],[23,-60],[15,-62],[8,-102],[0,-84],[2,-65],[0,-40],[-1,-34],[2,-27],[3,-15],[0,-22],[-7,-32],[-5,-26],[-5,-41],[-5,-34],[1,-29],[-5,-32],[-10,-44],[-4,-30],[-20,-47],[-23,-60],[-24,-58],[-18,-37],[-11,-23],[-16,-25],[-24,-45],[-26,-51],[-32,-76],[-33,-82],[-65,-121],[-50,-93],[-41,-71],[-31,-60],[-34,-60],[-33,-55],[-32,-59],[-36,-52],[-28,-41],[-17,-45],[-23,-38],[-28,-30],[-42,-41],[-27,-30],[-35,-41],[-54,-70],[-42,-54],[-48,-52],[-47,-46],[-6,-22],[-13,-25],[-41,-49],[-52,-56],[-35,-43],[-54,-48],[-41,-38],[-51,-43],[-53,-57],[-15,-13],[-29,-30],[-25,-33],[-29,-34],[-33,-26],[-33,-11],[-64,-13],[-13,-7],[-22,-2],[-24,5],[-63,-4],[-45,5],[-40,5],[-28,0],[-29,11],[-28,15],[-32,12],[-30,15],[-23,16],[-16,8],[-17,15],[-11,13],[-12,14],[-12,9],[-9,16],[-15,9],[-13,10],[-4,11],[-18,9],[-15,11],[-38,38],[-33,17],[-23,29],[-27,15],[-7,11],[-15,5],[-12,9],[-8,21],[-27,16],[-40,29],[-28,9],[-41,8],[-18,1],[-15,-5],[-12,1],[-2,7],[4,16],[11,6],[5,4],[-1,14],[-10,6],[-12,4],[-23,33],[-4,13],[-14,13],[-41,-1],[-33,-24],[-30,0],[-7,1],[-6,0],[-19,-10],[-31,-30],[-42,-58],[-60,-85],[-65,-101],[-53,-106],[-43,-104],[-28,-91],[-36,-126],[-10,-40],[-15,-48],[-7,-60],[-4,-56],[-22,-86],[-19,-125],[1,-33],[-16,-119],[-5,-92],[-4,-107],[-1,-18],[-1,-49],[0,-29],[0,-45],[2,-54],[3,-56],[9,-74],[7,-37],[1,-7],[4,-16],[2,-17],[1,-17],[2,-14],[1,-10],[4,-23],[1,-10],[0,-10],[3,-13],[0,-14],[1,-14],[5,-16],[1,-5],[7,-15],[2,-16],[3,-16],[7,-12],[10,-20],[4,-4],[9,-5],[11,-11],[10,-13],[3,1],[4,1],[2,1],[11,-9],[25,-35],[4,-10],[6,-10],[9,-8],[5,-8],[7,0],[6,-1],[15,-4],[7,-1],[6,-5],[1,-5],[3,-3],[7,-4],[157,-29],[2,5],[3,37],[5,-2],[6,0],[17,-1],[4,0],[6,0],[2,1],[5,-3],[12,-4],[8,16],[9,-3],[8,0],[38,-23],[2,7],[67,-39],[4,8],[23,-13],[6,24],[6,-2],[48,-26],[15,1],[22,-5],[4,8],[184,-124],[128,-85],[-29,-66],[34,-23],[-4,-13],[1061,-677],[-58,-155],[384,-245],[9,-2],[4,7],[1,8],[4,9],[9,10],[5,11],[1,11],[3,12],[3,13],[10,12],[3,10],[-1,4],[-4,4],[-1,16],[2,8],[-1,8],[-77,48],[70,213],[166,-105],[5,-6],[3,-11],[16,-67],[1,-12],[3,-13],[3,-7],[1,-9],[7,-17],[2,-7],[-1,-8],[0,-9],[1,-6],[-6,-13],[39,-27],[52,60],[4,8],[6,6],[1,10],[10,12],[10,14],[12,16],[11,7],[19,16],[6,10],[4,2],[1,8],[0,7],[1,5],[0,15],[-2,8],[-3,6],[-2,7],[3,10],[8,9],[4,6],[9,0],[5,0],[8,-5],[3,-4],[5,-2],[7,0],[5,3],[270,312],[13,15],[19,26],[13,24],[7,10],[4,11],[6,12],[3,19],[3,17],[2,17],[3,19],[2,27],[2,13],[0,11],[2,12],[3,32],[-3,12],[-1,17],[-1,28],[5,13],[16,19],[6,8],[8,10],[8,15],[8,20],[27,24],[5,6],[7,2],[8,6],[8,12],[6,3],[6,4],[4,9],[8,10],[13,15],[16,18],[5,11],[8,11],[9,10],[8,10],[8,14],[8,6],[11,9],[10,20],[9,12],[17,22],[9,15],[8,8],[12,13],[14,17],[12,8],[9,6],[12,16],[10,12],[16,25],[11,10],[8,13],[5,6],[12,9],[8,12],[7,12],[8,13],[12,14],[15,19],[10,13],[6,8],[13,11],[9,14],[16,12],[7,12],[9,20],[21,26],[5,6],[7,13],[8,11],[16,27],[10,8],[11,12],[6,5],[7,7],[11,13],[7,8],[11,9],[9,19],[13,11],[9,9],[11,10],[15,9],[12,5],[13,4],[15,5],[14,8],[12,2],[12,2],[14,-5],[21,-3],[20,2],[12,-4],[10,-3],[14,-7],[10,-5],[14,-8],[15,-8],[9,-8],[8,-9],[16,-16],[11,-14],[7,-6],[13,-16],[5,-6],[12,-11],[10,-9],[11,-7],[8,2],[14,2],[11,4],[13,13],[20,17],[14,17],[6,16],[10,13],[12,8],[17,16],[11,13],[10,10],[20,22],[11,12],[15,21],[13,15],[11,13],[14,10],[12,19],[-4,5],[-2,6],[-3,12],[2,12],[-3,8],[-4,10],[-5,20],[-5,10],[-10,21],[-5,8],[-7,14],[-3,9],[-6,8],[-10,33],[-4,13],[-4,15],[-22,49],[-3,10],[-83,203],[-16,54],[-2,11],[-1,12],[-1,11],[-1,12],[-1,9],[-3,13],[0,9],[4,34],[0,8],[3,6],[2,12],[2,7],[2,6],[3,12],[12,37],[3,6],[3,7],[6,17],[6,10],[9,25],[10,23],[9,32],[9,21],[7,12],[6,7],[7,10],[6,11],[4,9],[8,22],[4,12],[7,19],[3,7],[3,5],[2,5],[3,11],[2,9],[3,10],[2,9],[2,5],[5,12],[8,21],[11,15],[5,5],[4,10],[5,10],[4,9],[5,7],[3,7],[5,12],[4,9],[4,21],[4,14],[3,6],[4,7],[2,9],[2,4],[10,15],[5,17],[6,14],[6,7],[4,8],[5,10],[10,13],[6,18],[4,11],[6,10],[5,7],[5,9],[3,11],[13,12],[15,28],[5,7],[4,5],[10,14],[5,7],[4,8],[7,8],[5,7],[6,10],[4,9],[12,11],[7,7],[3,8],[4,9],[10,7],[8,7],[7,7],[5,6],[16,16],[13,12],[10,8],[4,6],[5,6],[6,5],[5,5],[7,5],[8,5],[13,6],[10,3],[18,10],[5,3],[7,2],[11,2],[9,0],[15,1],[6,0],[6,0],[5,-2],[12,1],[12,0],[12,-1],[12,0],[0,-4],[6,-3],[19,1],[8,1],[8,2],[6,2],[9,0],[10,0],[8,2],[10,0],[6,-1],[9,-5],[7,-3],[9,0],[6,2],[7,1],[7,-2],[7,0],[9,1],[8,0],[5,-1],[10,-2],[3,-2],[10,-3],[10,-1],[5,-3],[8,0],[3,0],[9,-6],[9,-4],[14,0],[5,-3],[5,0],[5,-2],[4,-2],[5,-5],[5,-2],[10,0],[6,2],[11,3],[7,-1],[10,0],[5,-3],[7,-2],[10,-3],[6,-3],[11,-2],[8,-2],[3,-1],[9,-1],[6,-1],[5,-1],[6,-1],[7,1],[11,-5],[11,-1],[7,-2],[9,0],[7,-4],[13,0],[8,-3],[12,-1],[9,-2],[8,-4],[11,1],[6,-2],[4,-4],[5,-4],[3,-3],[10,-5],[7,-3],[7,-5],[11,-9],[6,-7],[4,-3],[6,-9],[10,-19],[5,-13],[12,-8],[15,-2],[13,5],[16,3],[19,3],[19,4],[12,6],[18,8],[14,7],[10,8],[14,1],[19,12],[8,4],[7,9],[22,20],[13,12],[20,14],[12,10],[9,17],[13,22],[14,15],[14,17],[-3,6],[-3,9],[0,14],[-2,16],[-3,15],[-3,13],[-2,13],[0,15],[0,23],[0,12],[-1,6],[4,10],[4,25],[0,4],[2,7],[1,8],[-7,2],[-4,-1],[-2,-2],[-5,1],[-1,11],[2,13],[6,14],[2,4],[0,9],[-3,6],[-3,6],[2,10],[2,7],[7,7],[5,1],[7,5],[1,12],[-1,5],[1,4],[0,6],[2,5],[0,5],[4,4],[3,3],[0,5],[1,4],[-1,6],[-2,8],[-2,10],[7,12],[-3,8],[-1,5],[2,4],[3,2],[3,2],[-1,11],[1,3],[2,7],[2,4],[-5,14],[-2,9],[3,5],[0,4],[3,3],[2,2],[1,5],[-9,7],[-2,3],[-3,6],[-5,12],[-2,6],[-1,7],[-5,8],[-2,4],[-1,4],[-2,7],[-2,4],[-2,6],[-6,15],[-2,3],[0,4],[-4,9],[-6,9],[-6,0],[-3,9],[-6,6],[-1,9],[0,8],[-1,7],[0,6],[-4,14],[1,9],[-6,8],[2,7],[-1,4],[-1,6],[1,7],[-1,6],[0,6],[2,12],[0,4],[1,4],[1,6],[-2,6],[3,8],[2,9],[3,6],[3,9],[7,6],[11,15],[5,5],[3,4],[8,5],[5,4],[6,9],[17,7],[3,2],[9,6],[8,2],[8,4],[7,5],[5,8],[5,8],[3,5],[14,16],[6,7],[5,7],[3,1],[8,6],[7,10],[7,8],[8,4],[6,4],[7,4],[14,6],[3,6],[6,2],[14,10],[10,3],[9,6],[10,5],[9,1],[5,5],[6,-1],[4,3],[4,9],[5,3],[7,0],[2,5],[12,9],[8,10],[9,7],[11,9],[14,8],[9,8],[11,11],[7,8],[3,7],[15,12],[21,12],[9,7],[7,9],[8,8],[5,5],[11,5],[6,4],[8,12],[2,7],[8,11],[13,11],[6,5],[4,7],[11,8],[11,14],[5,6],[7,6],[5,7],[6,8],[4,6],[4,8],[5,7],[5,7],[7,10],[5,3],[4,5],[6,4],[3,9],[3,8],[2,7],[3,7],[3,6],[3,7],[2,5],[1,5],[8,8],[5,9],[15,13],[7,9],[9,6],[15,5],[19,3],[14,5],[9,0],[6,4],[9,7],[17,0],[9,0],[11,2],[8,6],[16,1],[9,5],[12,9],[6,6],[18,7],[13,15],[9,5],[5,11],[11,9],[5,9],[2,9],[3,7],[9,8],[7,18],[10,8],[6,9],[6,10],[8,4],[4,7],[4,4],[0,7],[-2,5],[-3,3],[3,13],[4,12],[5,15],[9,6],[6,7],[1,6],[-2,9],[1,7],[1,18],[4,10],[14,14],[9,8],[14,7],[12,2],[10,7],[12,5],[14,4],[8,-4],[7,1],[3,5],[5,3],[4,4],[5,9],[10,3],[7,4],[8,3],[5,0],[7,-6],[9,-2],[2,-8],[3,-15],[5,-3],[6,3],[8,-4],[6,0],[11,-4],[3,-2],[6,-6],[3,-8],[3,-12],[-1,-11],[2,-7],[4,-6],[7,4],[6,2],[9,6],[4,4],[5,5],[6,4],[2,7],[7,1],[9,3],[4,5],[2,-1],[7,-3],[3,3],[3,9],[4,4],[7,3],[5,1],[6,-2],[2,-8],[1,-7],[1,-6],[15,15],[4,2],[5,5],[6,2],[5,1],[7,4],[7,4],[4,1],[4,5],[3,4],[6,7],[6,5],[6,2],[5,3],[14,7],[9,-1],[8,3],[6,0],[7,1],[7,1],[7,0],[6,-1],[8,5],[7,-4],[11,-3],[2,3],[9,-5],[6,-1],[6,-4],[3,-1],[4,-1],[2,-4],[5,-4],[4,-1],[3,-4],[1,-7],[3,2],[6,1],[3,0],[3,0],[3,-3],[4,-2],[4,4],[7,2],[4,0],[5,0],[4,-3],[7,-5],[5,1],[6,-2],[2,-4],[2,-8],[-3,-3],[-2,-8],[0,-7],[2,-8],[5,-2],[1,-3],[4,-3],[0,-6],[7,-4],[0,-6],[3,-7],[5,-3],[3,-5],[3,0],[3,0],[5,0],[2,-2],[0,-9],[-5,-10],[0,-5],[0,-9],[-3,-3],[-4,-4],[1,-3],[1,-5],[-2,-5],[-1,-6],[-4,-6],[-3,-5],[-6,-9],[-3,0],[-3,-3],[0,-7],[-3,-6],[-5,-4],[-4,-8],[-3,-5],[-2,-7],[-2,-5],[-3,-5],[-8,-6],[-8,-2],[-9,-4],[-5,-3],[-6,-7],[-14,-9],[-9,-1],[0,-7],[-2,-7],[-10,-11],[-8,-5],[-10,-1],[-4,-1],[-12,-1],[-5,0],[2,-10],[0,-6],[-2,-5],[-6,-5],[-9,-4],[-6,0],[-6,0],[-3,-5],[2,-5],[4,-4],[4,-3],[8,1],[4,0],[10,-2],[9,-1],[8,-4],[3,-4],[7,-3],[1,-5],[4,-2],[2,-1],[0,-4],[2,-3],[3,-2],[6,2],[2,-13],[2,-5],[2,-3],[1,-12],[0,-12],[-4,-2],[-4,-3],[2,-3],[4,3],[2,-2],[0,-6],[0,-4],[1,-4],[3,-2],[6,1],[3,3],[4,1],[5,1],[2,-2],[2,-10],[3,-5],[0,-4],[2,-7],[5,3],[0,5],[1,4],[4,-2],[3,1],[5,-2],[5,-8],[6,-7],[-2,-5],[-3,-4],[2,-3],[5,-16],[-4,-9],[-4,-6],[-2,-7],[10,-8],[2,-8],[3,-5],[7,2],[2,-9],[6,3],[1,4],[5,3],[1,6],[0,5],[3,6],[8,1],[5,-2],[15,-16],[3,1],[3,0],[6,-4],[3,-3],[4,-9],[0,-5],[-1,-6],[3,-6],[3,-5],[3,-4],[5,-6],[2,-8],[3,-10],[3,-6],[1,-6],[2,-11],[5,-6],[5,-5],[5,-11],[4,-8],[5,-9],[6,-8],[7,-3],[-2,10],[3,11],[8,1],[5,-6],[2,-12],[4,-12],[2,-9],[-7,-9],[1,-5],[4,-4],[1,-8],[5,-8],[2,-12],[-10,2],[-5,3],[1,-8],[-2,-5],[-1,-6],[-5,4],[-7,2],[-5,5],[-5,0],[-4,4],[-1,4],[-7,-3],[2,-7],[1,-9],[1,-4],[2,-6],[5,-3],[4,-7],[5,-5],[3,-7],[-4,-9],[-4,-2],[-4,-2],[-7,1],[-2,6],[-5,-2],[-7,-2],[-1,-3],[4,-3],[-4,-8],[-1,-5],[-3,-4],[-4,-4],[-2,-4],[2,-4],[-3,-4],[-1,-5],[6,-10],[0,-4],[-9,-7],[-3,-5],[-10,-1],[-8,-1],[-2,-5],[3,-1],[8,0],[4,-3],[4,-5],[1,-4],[6,-1],[3,-4],[-4,-7],[7,-9],[-6,-5],[-1,-4],[-3,-2],[-3,-3],[2,-7],[-4,-3],[-7,-4],[-5,-2],[-12,6],[-4,-1],[0,-10],[-4,-7],[-9,-5],[-7,-4],[3,-6],[0,-11],[-5,-3],[-3,-5],[0,-7],[-4,-1],[-2,-6],[-6,-2],[-4,-3],[0,-5],[-5,-3],[0,-4],[-2,-6],[-2,-5],[-6,-1],[-7,-3],[-3,-5],[-1,-7],[-10,-6],[-2,-5],[0,-6],[-4,-3],[1,-6],[-1,-9],[-1,-8],[2,-8],[-12,-11],[-7,-8],[-4,-8],[-9,1],[-6,5],[-4,8],[-4,5],[0,-16],[-1,-7],[2,-7],[3,-5],[0,-10],[2,-8],[4,-4],[2,-2],[3,-9],[2,-4],[3,-3],[1,-6],[-4,-2],[-5,-3],[3,-9],[-2,-7],[-6,-2],[-7,-2],[-7,-3],[-11,-3],[-3,2],[0,9],[-4,3],[-8,-4],[-6,-2],[-5,-3],[-3,-6],[-4,-6],[-5,-7],[0,-4],[-6,-6],[-1,-6],[-11,-7],[-3,-6],[-7,-4],[-19,-5],[-4,3],[-11,0],[-5,7],[-4,0],[-11,-8],[-2,-3],[-5,-3],[-7,0],[-6,-1],[-10,-2],[-6,-3],[-6,-2],[-9,-4],[-7,-6],[-5,0],[-6,5],[-6,-3],[-11,-4],[-5,-4],[-6,-3],[-7,-4],[-9,2],[-3,7],[-7,-4],[-10,-3],[-8,-3],[-9,-2],[-4,1],[-4,-3],[-7,-3],[-4,-3],[-7,-1],[-7,-2],[-7,-5],[-7,-1],[-3,-4],[-10,-4],[-5,-5],[-5,1],[-8,-5],[-9,-2],[-7,0],[-8,2],[-6,0],[-5,3],[-7,5],[-4,0],[-9,8],[-4,0],[-8,8],[-5,0],[0,-5],[-4,0],[-6,7],[-4,-1],[-5,5],[-9,5],[-3,-4],[-5,-3],[-12,6],[1,4],[-1,5],[-6,3],[-15,5],[-4,0],[-8,0],[-1,12],[-5,-1],[-9,-4],[-4,0],[-4,1],[-1,5],[-8,1],[-4,2],[-4,4],[-7,1],[-6,0],[-2,1],[-2,12],[2,6],[3,3],[1,4],[-1,6],[-4,1],[-5,0],[-3,0],[-6,0],[-4,-2],[-5,0],[-7,-3],[-4,-2],[-7,5],[-6,-5],[-6,-5],[-1,-7],[0,-9],[-8,-4],[-1,-4],[-9,0],[-4,0],[-2,-3],[-1,-8],[-7,-2],[-4,-3],[4,-12],[1,-12],[0,-9],[0,-14],[-1,-15],[-1,-13],[-1,-9],[0,-13],[1,-6],[-2,-6],[-2,-7],[-6,-1],[-4,-2],[-1,-4],[0,-9],[0,-9],[-2,-6],[-4,-7],[-4,-15],[-5,-6],[-5,-6],[-5,-7],[-5,-7],[-3,-7],[-4,-7],[-6,-4],[-7,-2],[-4,1],[-6,2],[-6,3],[-6,1],[-7,-2],[-4,-3],[-8,-3],[-2,-3],[-5,-15],[-4,-12],[-9,-17],[-1,-7],[-4,-7],[-5,-3],[0,-9],[3,-5],[2,-10],[-5,-6],[-2,-3],[3,-6],[-4,-7],[-5,-3],[-13,-9],[-2,-9],[2,-7],[-4,-12],[-10,-12],[-1,-8],[-2,-5],[-15,-4],[-7,-19],[-9,-17],[-15,-13],[-11,-14],[-12,-11],[-9,-5],[-5,-7],[-11,-5],[-10,-6],[-10,-5],[-9,-9],[-10,-15],[-8,-9],[-6,-8],[-19,-1],[0,-10],[-6,-7],[-17,-3],[-7,2],[-4,7],[-10,8],[-4,-20],[0,-14],[0,-18],[0,-47],[2,-28],[7,-35],[13,-43],[1,-20],[6,-25],[6,-31],[4,-44],[8,-41],[9,-32],[1,-37],[6,-44],[26,-143],[3,-30],[7,-46],[0,-39],[10,-34],[17,-91],[0,-63],[0,-46],[10,-37],[23,-67],[8,-27],[8,-31],[3,-36],[12,-36],[9,-36],[6,-28],[7,-40],[5,-24],[10,-33],[5,-22],[10,-19],[9,-26],[8,-18],[15,-24],[19,-20],[16,-17],[9,-4],[12,-1],[5,1],[10,4],[7,3],[10,5],[10,4],[13,0],[15,-15],[4,-6],[15,-3],[13,0],[8,-4],[3,-4],[9,0],[6,-3],[5,-10],[9,-9],[5,-6],[7,-7],[6,-2],[13,-10],[14,-18],[10,-9],[15,-11],[17,-6],[7,-4],[7,0],[7,-4],[5,-4],[10,-6],[17,-1],[7,-6],[9,-8],[10,-9],[8,-11],[13,-12],[13,-7],[2,-2],[3,-2],[4,-1],[5,-2],[6,-3],[2,-3],[4,-4],[4,-3],[3,1],[6,0],[5,3],[4,2],[4,0],[4,-4],[9,-6],[3,-2],[5,-1],[4,-4],[3,-3],[10,-2],[3,-2],[8,-3],[14,-8],[12,-5],[13,-12],[10,-10],[10,-9],[9,-5],[10,0],[9,0],[7,-4],[29,-11],[12,-2],[8,-4],[8,-7],[29,-17],[18,-5],[10,-6],[6,-2],[13,0],[15,-9],[6,-12],[11,-6],[7,-8],[28,-24],[10,-11],[15,-31],[3,0],[6,-14],[2,-11],[1,-6],[6,-3],[4,-6],[-2,-17],[2,-11],[2,-9],[3,-14],[-1,-12],[-4,-12],[7,-12],[6,-10],[6,-10],[2,-4],[4,-4],[3,-4],[3,-6],[8,-3],[3,-5],[4,-6],[5,-4],[5,-3],[5,1],[2,-6],[8,-3],[2,5],[3,1],[5,-9],[5,7],[3,2],[-1,10],[4,13],[1,4],[9,5],[6,1],[4,4],[2,8],[6,5],[4,2],[1,4],[1,8],[8,-3],[10,-1],[3,0],[10,-11],[3,-3],[7,-2],[2,-7],[-2,-8],[-3,-1],[-4,-1],[-7,-2],[-3,-3],[1,-3],[-3,-6],[2,-4],[7,-4],[3,4],[4,11],[6,-12],[2,-6],[0,-12],[-1,-5],[-2,-6],[-5,-9],[7,-1],[3,-1],[6,-3],[4,-5],[-1,-9],[0,-9],[4,-3],[2,0],[4,-2],[3,-6],[6,-4],[4,2],[3,5],[2,5],[5,3],[6,0],[5,-2],[3,-6],[5,-2],[5,-3],[0,-7],[2,-11],[-5,-7],[0,-6],[0,-7],[-3,-7],[-3,-5],[-5,-7],[-1,-5],[3,-3],[4,-5],[1,-8],[-4,-3],[-1,-8],[-1,-3],[-3,-1],[0,-7],[-2,-4],[-2,-2],[-2,-2],[-1,-4],[-4,-5],[5,-3],[3,-4],[-5,-12],[-4,-8],[-8,-5],[-2,-2],[-1,-8],[2,-7],[1,-5],[4,-5],[3,-5],[1,-7],[0,-6],[-6,-2],[-1,-4],[-2,-7],[-5,-4],[-3,-3],[-1,-6],[2,-5],[7,-4],[2,-4],[-4,-11],[-8,-2],[-6,1],[-2,-2],[0,-8],[-5,0],[-7,3],[-2,-14],[0,-9],[2,-6],[4,-8],[5,-7],[6,-5],[4,-6],[5,-8],[5,-6],[4,-7],[4,-7],[3,-6],[2,-5],[3,-7],[4,-6],[3,-6],[1,-11],[1,-7],[3,-6],[3,-4],[7,-8],[5,-6],[7,-3],[6,-11],[3,-4],[3,-4],[3,-6],[-1,-8],[-2,-4],[2,-5],[2,-6],[0,-9],[0,-8],[-5,-8],[-3,-13],[-2,-8],[3,-8],[6,-7],[9,-12],[8,-4],[8,-6],[8,-8],[10,-3],[8,-4],[4,-11],[9,-1],[7,-4],[4,-4],[6,-12],[6,-6],[3,-4],[5,-5],[8,-5],[8,-7],[4,-5],[2,-8],[1,-13],[1,-6],[-1,-10],[0,-4],[-5,-13],[-3,-4],[-4,-1],[-8,-4],[-3,-3],[-2,-6],[-2,-5],[-10,-9],[0,-5],[-7,-4],[-8,-7],[-1,-7],[0,-7],[-7,-2],[-3,-3],[-3,-6],[-3,-8],[0,-7],[-2,-6],[-4,-7],[0,-5],[1,-6],[-3,-9],[-10,-13],[-11,-7],[-13,-8],[-7,-5],[-9,-1],[-10,-2],[-5,2],[-3,5],[-8,1],[-4,-1],[-6,-4],[-4,-4],[-6,-3],[-5,0],[-14,0],[-6,0],[-4,-3],[-1,-6],[-2,-9],[1,-5],[1,-4],[-1,-8],[-2,-6],[-3,-3],[-8,-3],[-5,1],[-6,-4],[-4,-1],[-3,5],[-6,-4],[-5,-2],[-6,0],[-2,9],[-6,0],[-6,-6],[-2,-5],[-2,-4],[-3,-1],[-6,-1],[-5,-3],[-7,3],[-5,0],[-5,-5],[-7,-14],[-7,-5],[-4,2],[-12,3],[-6,-2],[-10,1],[-7,2],[-2,-5],[-6,-3],[-9,-2],[-9,1],[-8,4],[-11,9],[-6,3],[-4,8],[-1,4],[0,8],[-6,-1],[-5,-4],[-9,0],[-5,-3],[-6,-1],[-9,-3],[-12,-4],[-6,-4],[-13,-6],[-4,-2],[-11,-6],[-7,-7],[-16,-6],[-9,-1],[-10,2],[-7,7],[-1,8],[1,12],[-1,10],[-9,-1],[-6,1],[-11,-1],[-17,0],[0,5],[-3,4],[-4,-6],[-4,1],[0,-6],[0,-5],[-6,-10],[-3,-4],[1,-7],[-6,-5],[0,-3],[-1,-6],[-3,-1],[-5,0],[-6,-9],[-12,7],[-3,-1],[1,-4],[-3,1],[-4,-1],[-4,-2],[-3,-2],[1,-4],[0,-4],[-5,-7],[-3,-4],[-3,-8],[-5,-3],[-9,-1],[-7,3],[-3,-2],[-4,-3],[-3,0],[-1,-2],[-1,-4],[-2,-3],[-6,-2],[-7,2],[-3,3],[-2,3],[-5,3],[-5,-2],[-2,-6],[-4,-4],[-3,0],[-3,1],[-4,2],[-3,0],[-4,0],[-7,3],[-4,1],[-3,-2],[-3,-4],[0,-4],[-2,-3],[-4,-1],[-4,-1],[-5,1],[-2,-1],[-1,-4],[2,-2],[1,-4],[-2,-5],[-4,-3],[-6,1],[-3,1],[-6,2],[-2,4],[-4,1],[-1,-2],[0,-4],[-1,-4],[-4,2],[-2,1],[-6,-2],[-4,-3],[-1,-3],[-3,-3],[0,-5],[2,-6],[0,-5],[-4,-1],[-4,1],[-2,5],[0,6],[2,5],[0,7],[-4,0],[-2,-9],[-1,-4],[-9,-3],[4,-5],[-3,-7],[-9,-3],[-5,3],[-7,1],[0,-5],[-3,-1],[-4,-2],[-7,1],[-2,0],[-10,5],[-2,5],[1,4],[-1,4],[-4,0],[-5,0],[-3,-3],[-1,-6],[-4,5],[-4,-4],[3,-4],[-3,-6],[3,-3],[-1,-9],[-2,-3],[-1,-7],[-4,-4],[-3,-2],[3,-4],[1,-4],[2,-3],[0,-5],[-2,-5],[-1,-5],[0,-9],[-11,-21],[3,-2],[6,5],[3,6],[4,7],[2,1],[3,1],[2,-2],[4,-15],[1,-3],[-6,-8],[-6,-5],[-1,-5],[-14,-9],[-8,-7],[-2,-5],[-3,-1],[-11,0],[1,-4],[4,-3],[2,-4],[3,-7],[2,-5],[-3,-4],[-5,-4],[-7,1],[-6,2],[-8,4],[-3,1],[-5,1],[-6,4],[-3,4],[0,6],[2,6],[0,9],[2,5],[-7,-2],[5,16],[-1,7],[1,7],[0,5],[-1,6],[-10,7],[-6,-4],[-1,-7],[-5,-4],[-3,-4],[0,-6],[1,-7],[-3,-14],[3,-5],[3,-2],[3,-5],[1,-7],[-4,-2],[-5,-3],[-9,-1],[-7,1],[-5,8],[-11,-5],[-2,-7],[-3,-5],[0,-9],[0,-10],[1,-9],[-4,-6],[-7,7],[-17,5],[1,5],[9,2],[-6,7],[4,3],[-4,6],[-2,1],[-10,11],[-5,2],[-4,11],[-4,6],[-3,0],[-2,-6],[-1,-5],[-5,-10],[-7,-5],[-8,-8],[-12,-5],[-7,8],[-5,4],[-1,-5],[-5,-6],[2,-5],[-3,-9],[-4,-2],[-5,-3],[0,-5],[1,-4],[-2,-6],[-4,-2],[-3,-2],[-2,-6],[-1,-7],[1,-8],[-1,-9],[0,-9],[-1,-11],[1,-9],[-2,-8],[-7,-6],[-10,-2],[-10,-1],[-7,1],[-9,3],[-7,4],[-1,4],[-3,14],[-3,3],[-2,-6],[-4,-7],[-4,-9],[-1,-4],[-7,-5],[-3,-4],[-8,-3],[-6,-2],[-8,3],[-9,4],[-9,0],[-5,4],[-2,2],[-8,8],[-2,0],[-5,1],[-4,0],[-3,1],[-3,6],[-1,7],[0,7],[-1,5],[-1,7],[5,3],[2,8],[-4,4],[-4,-2],[-5,-1],[-5,-3],[-2,-4],[-4,-1],[-3,4],[-5,3],[-5,-3],[-3,-5],[-2,-6],[-1,-7],[-1,-6],[-1,-5],[1,-7],[-3,-11],[0,-5],[2,-6],[-5,-10],[-2,-4],[-6,-3],[-2,-8],[-4,-5],[-5,1],[-9,5],[-5,-2],[-7,4],[-3,-2],[-9,-2],[-7,2],[-5,-2],[-4,-8],[-7,-1],[-5,-4],[-5,1],[-7,4],[2,-9],[-3,-5],[0,-8],[-1,-5],[-2,-9],[-1,-7],[3,-5],[7,3],[0,5],[1,8],[0,9],[2,8],[6,2],[9,0],[3,-4],[8,1],[4,-2],[1,-6],[2,-4],[2,-5],[-1,-6],[-7,-6],[-7,-3],[-14,-1],[-4,-3],[5,-8],[-1,-9],[-6,-13],[-4,-10],[-3,-8],[-4,-8],[2,-6],[1,-9],[-1,-8],[0,-12],[3,-11],[10,0],[6,0],[5,-5],[6,-5],[6,-8],[4,-9],[-2,-7],[-3,-5],[-8,2],[-3,-3],[-8,-5],[-5,0],[-5,12],[1,9],[-1,10],[-5,0],[-4,0],[-3,-1],[-5,-5],[-10,-11],[-9,-5],[-3,-3],[-8,-1],[-5,1],[-5,7],[-1,6],[3,13],[-3,5],[-2,10],[0,7],[-4,0],[-4,0],[-5,2],[-1,5],[2,3],[-1,6],[0,10],[1,7],[-1,5],[-5,4],[-3,-3],[-6,-3],[0,-3],[1,-4],[1,-4],[-1,-5],[-4,-2],[-6,4],[1,6],[0,5],[-9,-7],[0,-8],[-1,-6],[-12,-4],[-5,0],[0,-7],[4,-6],[6,-6],[2,-4],[1,-9],[-1,-5],[-5,-8],[-6,-2],[-9,6],[-5,10],[-5,5],[-9,3],[-7,3],[-2,-11],[-5,-6],[-2,-4],[-2,-7],[-2,-4],[1,-3],[4,0],[4,-2],[3,-8],[4,-12],[1,-4],[0,-9],[0,-6],[0,-7],[1,-6],[-1,-8],[-3,-4],[-6,-2],[-4,3],[-19,51],[1,11],[-5,4],[-2,-5],[-1,-4],[0,-10],[-2,-5],[-2,-5],[-2,-2],[-6,-1],[-5,-2],[-1,-9],[-4,-4],[-1,-7],[-1,-6],[-5,0],[-3,-5],[-2,-5],[0,-5],[-10,3],[-8,4],[-9,10],[-3,7],[-2,7],[-2,7],[-3,10],[-4,0],[-4,-3],[-7,-5],[-5,-2],[-5,-1],[-9,3],[-4,0],[-4,2],[-2,11],[3,11],[-4,0],[-6,-5],[-4,-4],[-5,-1],[-4,0],[-10,1],[-6,1],[-4,4],[-1,7],[-1,8],[-2,10],[-6,4],[-3,-1],[-1,-8],[0,-5],[0,-5],[1,-6],[-1,-9],[-2,-7],[-7,-7],[-1,-6],[-7,-3],[-4,-4],[-5,-5],[-8,1],[-5,5],[1,5],[0,6],[-2,8],[0,6],[1,5],[3,11],[4,5],[3,4],[0,4],[-5,1],[-6,-5],[-16,-2],[-12,-3],[-16,-1],[-6,-4],[-10,-2],[-10,0],[-11,1],[-10,0],[-3,0],[-6,0],[-10,-1],[-14,-1],[-9,0],[-24,-5],[-12,-3],[-20,-4],[-12,-2],[-12,-2],[-10,-1],[-14,-1],[-17,0],[-16,-1],[-18,-2],[-14,0],[-9,0],[-23,3],[-15,-2],[-8,2],[-10,1],[-12,3],[-11,-3],[-15,-7],[-8,-6],[-11,-2],[-8,-4],[-5,-2],[-12,-7],[-7,-1],[-3,-4],[-3,-3],[-6,-3],[-3,-1],[-6,5],[-4,4],[-3,5],[-8,-1],[-10,-3],[-9,-3],[-15,-5],[-9,-2],[-25,0],[-13,4],[-10,0],[-18,2],[-10,0],[-12,2],[-16,1],[-13,2],[-9,0],[-11,1],[-7,4],[-13,10],[-5,9],[-4,4],[-6,5],[-12,13],[-6,4],[-9,4],[-2,3],[-4,5],[0,5],[-4,12],[-2,8],[0,5],[-1,9],[0,6],[-5,4],[-5,0],[-4,4],[-8,0],[-10,4],[-10,7],[-5,3],[-7,0],[-10,8],[-5,3],[-9,2],[-4,2],[-2,4],[-2,4],[-6,2],[-2,3],[-4,4],[-4,8],[-4,4],[-4,-1],[-6,-3],[-3,-2],[-4,-12],[-3,-5],[0,-6],[0,-7],[1,-6],[0,-9],[-14,-2],[-8,3],[-6,-3],[0,-5],[0,-6],[1,-5],[-1,-7],[-10,-10],[-4,1],[-4,1],[-6,2],[0,8],[2,8],[1,11],[-2,3],[-9,-8],[2,-4],[-2,-5],[-3,-2],[-5,-2],[-3,-5],[-1,-4],[-2,-3],[-4,-4],[-1,-4],[0,-6],[-2,-4],[-4,-3],[-3,-5],[-1,-6],[-3,-7],[0,-4],[1,-4],[5,-4],[2,-6],[5,-4],[4,1],[4,0],[3,-7],[-1,-5],[-6,-9],[0,-10],[-2,-7],[-7,0],[-5,3],[0,5],[-5,7],[-4,0],[-6,1],[-1,5],[1,11],[-2,4],[-6,0],[-3,6],[0,5],[-2,2],[-3,-6],[-3,-8],[-2,-6],[-6,-8],[-5,-7],[-2,-3],[-8,-15],[-3,-6],[-11,-9],[-5,-8],[-6,-9],[-5,-9],[-5,-7],[-5,-11],[-12,-15],[-15,-8],[-15,-8],[-5,-7],[-16,-2],[-21,-8],[-6,-4],[-9,-3],[-10,-7],[-7,-5],[-18,-2],[-14,-5],[-14,-7],[-8,-9],[-15,-9],[-21,-10],[-14,-7],[-13,0],[-17,-9],[-7,-4],[-6,-7],[-5,-5],[-9,-4],[-7,0],[-12,-2],[-9,-2],[-10,-2],[-10,0],[-12,-3],[-10,2],[-2,0],[-17,-6],[-13,-5],[-4,-13],[-11,-10],[-7,-7],[-10,-15],[-4,-6],[-2,-6],[-9,-12],[-7,-5],[-5,-3],[-8,-2],[-8,0],[-16,3],[-5,1],[-5,1],[-10,1],[-9,4],[-10,0],[-15,-3],[-5,-3],[-6,-6],[-5,-10],[-12,-7],[-5,-5],[-4,-1],[-7,0],[-3,-6],[-5,-4],[-13,3],[-4,-3],[-7,-10],[-4,-3],[-11,1],[-9,-2],[-16,-17],[-10,-56],[-19,-71],[-6,-9],[-2,-19],[2,-15],[-9,-8],[-7,-21],[-1,-16],[-4,-17],[1,-40],[-2,-15],[-1,-30],[-1,-9],[-6,-12],[-2,-18],[-1,-16],[-3,-22],[2,-16],[4,-19],[0,-16],[-5,-20],[-2,-13],[9,-11],[7,-17],[7,-10],[1,-19],[-1,-17],[0,-26],[-1,-22],[-1,-17],[-2,-13],[-1,-31],[0,-16],[7,-11],[4,-13],[3,-32],[0,-7],[0,-12],[3,-8],[7,-7],[3,-7],[-6,-11],[-5,-7],[3,-10],[4,-8],[3,-11],[5,-11],[2,-8],[1,-15],[3,-6],[8,0],[13,1],[11,-5],[10,-2],[11,-7],[5,-1],[8,-4],[9,-4],[8,-3],[10,-6],[9,-5],[8,-5],[9,-5],[10,-8],[17,1],[6,-3],[39,-15],[17,-5],[14,-6],[26,-8],[20,-6],[10,-3],[13,-9],[14,-15],[12,-21],[11,-26],[19,-30],[4,-2],[7,-4],[4,-3],[7,2],[4,5],[4,0],[3,5],[5,3],[7,-2],[0,-8],[-1,-10],[-3,-4],[-3,-5],[3,-5],[3,-8],[1,-8],[1,-4],[5,-4],[6,-5],[4,-2],[5,-11],[1,-8],[3,-4],[4,-6],[-1,-9],[6,-3],[4,0],[6,-1],[3,-4],[-1,-9],[-4,-5],[-4,-7],[-2,-4],[-6,-8],[-3,-7],[2,-10],[3,-10],[9,-6],[3,-7],[8,-4],[6,3],[4,9],[7,8],[11,8],[14,8],[14,8],[11,4],[7,3],[2,7],[3,5],[5,6],[5,2],[10,3],[11,3],[14,2],[8,-6],[13,3],[17,-3],[10,-6],[12,-4],[14,-6],[13,5],[13,-1],[6,-5],[18,0],[6,-1],[6,1],[10,-3],[6,0],[7,2],[4,1],[4,0],[6,-2],[3,-3],[5,-4],[5,4],[3,1],[4,0],[2,2],[4,6],[2,4],[0,4],[-3,9],[3,2],[3,0],[2,-2],[6,3],[-3,5],[0,8],[1,3],[-1,4],[-5,0],[-5,1],[-1,10],[3,8],[3,5],[4,4],[7,5],[7,2],[3,2],[5,8],[3,6],[2,2],[3,0],[6,-1],[6,-1],[5,-1],[5,-3],[4,-3],[3,-4],[0,-5],[-3,-7],[-11,-6],[3,-6],[1,-12],[1,-5],[2,-3],[1,-4],[4,-2],[3,0],[2,4],[3,6],[5,3],[2,4],[0,4],[-1,5],[2,5],[8,9],[4,3],[5,2],[6,-3],[6,-1],[4,-2],[-1,-20],[5,-6],[1,-6],[2,-6],[0,-6],[-3,-6],[0,-6],[7,-6],[6,-8],[7,3],[10,5],[7,-3],[14,-7],[16,-1],[15,-5],[7,-1],[8,0],[14,-4],[12,-3],[11,-7],[7,-12],[17,-16],[10,-5],[22,-3],[18,-9],[19,-12],[16,-11],[14,-12],[16,-16],[11,-9],[4,-10],[0,-7],[-10,-6],[-16,-3],[-17,-4],[-16,-9],[-22,-4],[-20,-11],[-35,-6],[-16,11],[-13,4],[-7,-9],[-1,-6],[3,-4],[2,-7],[5,-7],[7,-6],[7,-9],[5,-5],[6,-6],[13,-9],[13,-26],[5,-21],[4,-17],[10,-16],[5,-5],[9,-12],[12,-22],[4,-13],[5,-10],[8,-13],[7,-8],[7,-9],[6,-11],[9,-10],[6,-3],[8,-5],[15,-16],[23,-18],[7,-7],[7,-5],[9,-4],[6,-2],[7,-7],[4,-7],[5,-9],[7,-7],[2,-8],[5,-12],[5,-5],[9,-4],[2,-6],[6,-7],[4,-3],[5,-6],[3,-14],[-3,-11],[-6,-9],[-6,-7],[-7,-6],[-5,-5],[-6,-5],[-6,-5],[-6,-2],[-3,-3],[1,-11],[-2,-7],[-2,-3],[-3,0],[0,-9],[-11,-21],[-8,-7],[-7,-5],[-14,-8],[-5,-4],[-9,-6],[-8,0],[-9,-1],[-13,-5],[-8,-4],[-6,-5],[-10,-3],[-29,-10],[-3,-3],[-3,-4],[-5,-2],[-8,-5],[-6,-1],[-3,2],[-3,0],[-1,-6],[-4,-3],[-5,-2],[-5,-1],[-6,0],[-3,0],[-3,-5],[-7,0],[0,-5],[3,-4],[3,-7],[2,-11],[4,-9],[5,-5],[5,-8],[3,-9],[4,-5],[5,-2],[1,-6],[0,-5],[-3,-1],[-3,-1],[-3,-4],[-4,2],[-4,2],[-1,7],[-3,6],[-10,0],[1,-6],[-3,-6],[-2,-3],[-15,-1],[1,-3],[3,-3],[4,0],[3,-5],[13,-13],[13,0],[2,-3],[5,-11],[4,-4],[5,-4],[7,-4],[7,0],[7,0],[6,-6],[5,-8],[2,-9],[0,-5],[-2,-8],[-4,-3],[-7,-13],[-3,-2],[-3,-5],[-3,-2],[-8,0],[-2,-3],[1,-4],[3,-2],[5,0],[3,-2],[-1,-3],[-3,-5],[1,-6],[2,-3],[3,-1],[4,-4],[1,-4],[-2,-5],[-2,-3],[0,-4],[2,-4],[5,2],[2,6],[5,4],[5,-6],[4,-7],[4,-7],[3,-3],[2,-5],[2,-16],[5,-5],[2,-9],[0,-19],[-1,-5],[-6,0],[-8,2],[-4,-2],[-2,-7],[-1,-6],[0,-7],[0,-7],[0,-6],[-1,-4],[-4,-2],[-3,-3],[0,-5],[0,-5],[-4,-4],[-7,-4],[-6,-3],[-4,-1],[-7,0],[-2,-3],[0,-6],[-1,-8],[-1,-7],[-4,-7],[-13,-11],[-5,-1],[-5,-4],[-3,-4],[-3,-4],[-2,-2],[-5,-8],[-8,-20],[-3,-15],[-15,-17],[-9,-13],[-8,-12],[-18,-15],[-7,-3],[-3,-3],[-8,0],[-1,-5],[3,-2],[4,0],[3,-2],[-1,-4],[-1,-4],[3,-2],[3,0],[3,-1],[3,0],[13,0],[3,-4],[0,-8],[2,-9],[0,-5],[-2,-2],[-6,0],[-5,-1],[-3,-13],[1,-16],[-6,-19],[0,-12],[0,-5],[1,-7],[2,-8],[0,-20],[-2,-5],[-8,-7],[2,-8],[3,-4],[-1,-4],[-3,-3],[-1,-4],[0,-5],[3,-2],[7,-7],[3,-4],[5,-2],[9,-11],[7,-11],[6,-18],[6,-4],[3,-12],[1,-16],[2,-6],[4,-5],[5,-5],[6,-2],[4,-6],[2,-14],[1,-12],[0,-9],[-4,-11],[0,-7],[9,-9],[5,2],[3,0],[2,-8],[0,-8],[0,-6],[8,-13],[10,-13],[3,-7],[6,-1],[4,-2],[8,-9],[4,-7],[3,-3],[1,-4],[-3,-6],[-1,-6],[3,-2],[4,3],[8,0],[4,-7],[1,-4],[0,-7],[1,-10],[-1,-4],[6,-3],[4,0],[7,1],[5,-1],[7,-2],[3,1],[5,9],[7,4],[9,2],[4,-1],[3,-6],[2,-8],[1,-7],[0,-5],[-3,-7],[-4,-4],[-2,-4],[-10,-6],[-2,-11],[-9,-9],[-2,-4],[-5,2],[-3,-3],[0,-6],[1,-4],[1,-6],[-3,-2],[-3,-1],[-2,-6],[-1,-6],[-1,-6],[1,-8],[-2,-6],[1,-4],[24,1],[7,1],[10,1],[68,-4],[24,0],[24,-10],[17,-10],[19,-17],[15,-16],[4,-7],[4,-4],[2,-2],[7,0],[12,6],[9,-3],[13,-8],[3,-1],[5,-8],[0,-5],[-1,-11],[-7,-26],[0,-11],[5,-8],[4,-7],[2,-2],[4,-8],[1,-8],[1,-8],[-1,-16],[0,-9],[2,-6],[3,0],[6,-3],[1,-8],[0,-8],[1,-5],[2,-2],[1,-11],[4,-6],[7,-15],[5,-10],[0,-11],[-8,-16],[-9,-33],[-5,-2],[-8,-2],[-8,-4],[0,-7],[0,-5],[0,-5],[0,-5],[3,-5],[0,-4],[-7,-10],[-2,1],[-4,2],[0,-4],[2,-5],[-4,-10],[-2,-6],[-5,-7],[-4,-6],[0,-7],[2,-6],[0,-6],[-5,-2],[-6,-4],[-1,-6],[-5,-6],[-2,-11],[-3,-5],[-1,-6],[-3,-5],[-1,-4],[0,-5],[-3,-4],[-3,-2],[-2,-4],[0,-4],[1,-5],[-2,-4],[-3,-5],[0,-7],[-2,-9],[-5,-5],[-4,-5],[0,-6],[2,-7],[0,-5],[-5,-8],[-4,-11],[-5,-5],[-5,-2],[-2,-5],[2,-6],[-3,-11],[-3,-7],[-4,-3],[-11,-2],[-4,-9],[-6,-6],[0,-4],[0,-4],[0,-6],[-1,-8],[-5,-9],[-5,-22],[-10,-24],[-4,-4],[-7,-7],[-4,-4],[-4,-4],[-5,-5],[0,-6],[2,-2],[4,-6],[-2,-7],[-2,-3],[-4,-3],[-3,-6],[-6,-5],[0,-8],[-2,-4],[-3,2],[-6,-1],[0,-3],[2,-5],[-8,1],[-7,2],[-7,4],[-5,0],[-3,-11],[-9,-3],[-5,-2],[-5,-5],[-4,-6],[-9,-2],[-2,-4],[-4,-5],[-9,0],[-2,-4],[0,-8],[-2,-7],[-4,-6],[-7,-8],[-10,-8],[-3,-5],[-8,-9],[-7,-2],[-7,0],[-4,-4],[-4,-7],[-22,-14],[-3,-3],[-2,-4],[-3,-5],[-3,-1],[-4,-4],[-2,-3],[-10,0],[-5,-3],[-2,-6],[-6,-3],[-3,-3],[-3,-5],[-2,-5],[-7,-4],[-11,-3],[-8,-9],[-2,-5],[-14,-6],[-4,0],[-3,-6],[-1,-5],[-4,-4],[-10,-1],[-5,-2],[-2,-3],[-1,-4],[-7,0],[-6,1],[-6,1],[-8,-2],[-7,-3],[-4,-3],[-4,-5],[-2,-2],[-10,-4],[-14,-5],[-9,-1],[-10,-1],[-16,9],[-6,2],[-8,0],[-6,-3],[-5,-8],[0,-6],[1,-8],[1,-6],[0,-4],[-3,-2],[-8,-2],[-5,-2],[-8,2],[-11,1],[-1,-4],[-2,-4],[-4,-3],[-5,-2],[-4,-6],[-5,-4],[-3,-2],[-4,-1],[-5,1],[-7,3],[-2,-3],[-6,-1],[-8,-1],[-6,-3],[-4,-4],[-1,-5],[-3,-3],[-5,-1],[-7,1],[-3,-1],[-4,-5],[-4,-2],[-5,-1],[-6,0],[-8,3],[-9,0],[-8,-1],[-9,-1],[-14,0],[-13,-4],[-4,-3],[-3,-3],[-5,-4],[-5,1],[-4,1],[-4,2],[-6,2],[-3,0],[-6,1],[-3,-1],[-6,-2],[-4,-3],[-10,-2],[-2,-2],[-2,-6],[-5,-1],[-6,-1],[-4,-4],[-5,-1],[-3,0],[-2,1],[-5,-4],[-12,2],[-4,3],[-6,-1],[-3,-2],[-17,-6],[-2,-3],[-9,4],[-7,0],[-7,0],[-5,1],[-5,2],[-3,0],[-2,-2],[-5,-2],[-3,2],[-4,2],[-7,11],[-5,3],[-5,2],[-5,0],[-6,2],[-3,8],[-4,11],[-3,7],[-4,2],[-8,0],[-6,13],[-3,6],[-4,7],[-2,5],[-9,8],[-1,4],[-3,6],[-2,-1],[-2,-2],[-4,-2],[-5,-7],[-4,-2],[-6,-5],[-2,-5],[-7,-2],[-9,2],[-4,0],[-4,-1],[-4,-5],[-18,-2],[-7,5],[-18,7],[-12,-1],[-16,4],[-10,3],[-8,4],[-18,14],[-5,17],[-1,15],[0,17],[-3,8],[-25,6],[-11,1],[-13,7],[-3,2],[-9,8],[-4,12],[-6,11],[-10,9],[-12,7],[-9,9],[-2,4],[-8,10],[-12,2],[-11,0],[-21,3],[-29,19],[-7,8],[-7,9],[-8,8],[-10,7],[-7,11],[2,11],[-3,8],[-7,5],[-13,4],[-2,7],[0,3],[-1,6],[-13,1],[-5,2],[-10,13],[-2,5],[-3,7],[-3,12],[-2,20],[4,20],[-5,16],[-4,17],[-4,15],[-1,121],[0,30],[6,37],[22,56],[-60,88],[-32,10],[-32,5],[-34,0],[-41,-4],[-79,-12],[-27,-3],[-32,-8],[-14,-7],[-15,-7],[-38,-21],[-100,-52],[-138,-84],[-18,-8],[-20,-3],[-16,0],[-11,-4],[-26,-17],[-13,-26],[-13,-9],[-13,-10],[-68,-67],[-91,-54],[-30,-32],[-84,-71],[-66,-39],[-27,-29],[-31,-28],[-12,-9],[-31,-24],[-77,-74],[-29,-15],[-29,-11],[-24,-13],[-24,-20],[-24,-23],[-28,-49],[-9,-18],[-22,-16],[-21,-10],[-25,-16],[-23,-16],[-31,-31],[-30,-18],[-31,-14],[-18,-13],[-20,-21],[-29,-16],[-39,-27],[-18,-18],[-15,-17],[-19,-14],[-26,-7],[-19,-7],[-11,-12],[-7,-16],[-13,-14],[-24,-14],[-10,-13],[-12,-17],[-26,-9],[-17,-6],[-24,-24],[-9,-6],[-21,-17],[-15,-13],[-12,-9],[-13,-12],[-16,-20],[-11,-14],[-15,-7],[-8,-2],[-7,-9],[-10,-4],[-10,1],[-13,-2],[-18,-10],[-9,-12],[-3,-15],[-8,-8],[-16,-4],[-12,0],[-14,-1],[-10,0],[-15,-9],[-18,-16],[-3,-2],[-10,-6],[-16,-13],[-12,-10],[-9,-8],[-12,-3],[-9,-3],[-12,-4],[-9,-4],[-12,-7],[-3,-6],[-11,-5],[-7,-7],[-3,-9],[-9,-7],[-3,-1],[-5,0],[-6,0],[-9,-1],[-6,-4],[-11,-8],[-5,-3],[-5,-4],[-19,-4],[-15,0],[-14,0],[-15,-4],[-9,-8],[-42,-25],[-10,-11],[-11,-7],[-10,-5],[-13,-11],[-13,-9],[-13,-14],[-12,-11],[-11,-6],[-15,-11],[-23,-8],[-11,-5],[-11,-11],[-8,-7],[-6,-6],[-6,-6],[-8,-7],[-8,-4],[-6,-4],[-7,-11],[-6,-13],[-9,-15],[-5,-10],[-7,-10],[-9,-12],[-8,-8],[-10,-8],[-12,-4],[-11,-4],[-7,-6],[-13,-1],[-12,-11],[-10,-8],[-13,-14],[-12,-17],[-10,-7],[-9,-10],[-5,-2],[-11,-3],[-15,-8],[-9,-3],[-26,-24],[-23,-12],[-17,-5],[-8,-6],[-54,-33],[-8,-8],[-25,-15],[-11,-15],[-10,-10],[-5,-6],[-8,-16],[-10,-1],[-9,0],[-20,-2],[-10,-12],[-8,-12],[-11,-14],[-11,-9],[-15,-9],[-20,-6],[-32,-19],[-7,-2],[-10,-6],[-15,-6],[-18,-11],[-18,-16],[-18,-19],[-9,-18],[-9,-13],[-14,-10],[-17,-7],[-17,-14],[-27,-12],[-20,-21],[-16,-13],[-15,-19],[-15,-18],[-1,-16],[-12,-16],[-23,-12],[-28,-17],[-23,-28],[-24,-27],[-6,-7],[-9,-10],[-13,-16],[-13,-6],[-7,-4],[-6,-9],[-1,-8],[-7,-6],[-20,-12],[-18,-15],[-8,-13],[-21,-13],[-18,-8],[-15,-16],[-11,-15],[-12,-17],[-27,-25],[-51,-68],[-18,-16],[-16,-16],[-11,-10],[-7,-9],[-12,-11],[-16,-11],[-18,-8],[-17,-15],[-24,-20],[-16,-15],[-18,-27],[-6,-12],[-13,-23],[-19,-24],[-34,-32],[-20,-22],[-20,-16],[-18,-11],[-23,-13],[-19,-14],[-19,-21],[-7,-8],[-15,-26],[-7,-23],[-11,-32],[-11,-16],[-14,-15],[-5,-11],[-5,-6],[-9,-3],[-7,-3],[-5,-9],[-3,-13],[-9,-12],[-11,-6],[-19,-11],[-14,-13],[-12,-21],[-2,-22],[-17,-17],[-38,-34],[-22,-32],[-11,-11],[-13,-11],[-11,-13],[-9,-11],[-13,-14],[-11,-12],[-10,-15],[-12,-13],[-10,-17],[-12,-13],[-13,-18],[-10,-34],[-14,-22],[-11,-10],[-11,-8],[-8,-8],[-13,-12],[-18,-13],[-16,-10],[-20,-25],[-16,-27],[-8,-20],[-3,-19],[-8,-12],[-7,-12],[-4,-4],[-11,-9],[-14,-14],[-4,-15],[-3,-24],[-2,-17],[-8,-12],[-13,-8],[-15,-6],[-14,-6],[-7,-11],[-6,-21],[-15,-38],[-11,-11],[-3,-5],[-7,-10],[-7,-10],[-7,-11],[-8,-17],[-10,-25],[-8,-21],[-5,-20],[-12,-24],[-38,-72],[-9,-22],[-14,-18],[-15,-19],[-21,-21],[-10,-11],[-12,-21],[-18,-39],[-10,-25],[-13,-21],[-14,-45],[-10,-16],[-8,-14],[-19,-21],[-10,-23],[-20,-38],[-13,-32],[-6,-9],[-3,-1],[-2,-5],[-2,-3],[-4,-3],[-2,-1],[-7,-3],[-3,-2],[-2,-4],[-2,-6],[-2,-18],[-9,-8],[-10,-7],[-10,-24],[-12,-20],[-13,-13],[-8,-21],[-17,-55],[-12,-24],[-14,-34],[-13,-16],[-12,-16],[-8,-23],[-15,-29],[-17,-18],[-24,-28],[-14,-46],[-11,-37],[-5,-17],[-3,-12],[-6,-19],[-6,-13],[-7,-14],[-4,-18],[-6,-16],[-13,-14],[-6,-12],[-8,-18],[-11,-22],[-13,-21],[-15,-10],[-6,-11],[-10,-17],[-17,-27],[-13,-12],[-13,-8],[-8,-5],[-8,-9],[-8,-16],[-6,-18],[-17,-22],[-13,-10],[-3,-5],[-5,-11],[-1,-12],[-1,-16],[-7,-16],[-5,-18],[-10,-6],[-18,-7],[-11,-12],[-12,-21],[-6,-35],[-2,-23],[-9,-16],[-11,-4],[-14,-4],[-8,-5],[-7,-17],[-9,-26],[0,-18],[0,-16],[-13,-17],[-18,-31],[-7,-22],[-1,-13],[-1,-12],[-4,-13],[-6,-12],[-8,-15],[-7,-19],[-2,-15],[-3,-15],[-2,-18],[-2,-13],[-10,-18],[-5,-12],[0,-16],[0,-16],[-5,-4],[-6,-18],[-1,-13],[-3,-12],[-1,-7],[-7,-10],[-2,-5],[-5,-12],[-10,-18],[-9,-11],[-2,-9],[-4,-12],[-8,-25],[-14,-57],[-30,-94],[-17,-52],[-2,-14],[-5,-16],[-1,-9],[0,-8],[-1,-15],[0,-4],[-5,-18],[-5,-19],[0,-11],[-1,-8],[-3,-13],[-5,-19],[-3,-15],[-1,-16],[-2,-22],[-2,-23],[1,-16],[-5,-43],[-2,-15],[-4,-14],[-5,-17],[-1,-15],[0,-23],[3,-9],[0,-7],[-3,-6],[-1,-5],[-5,-19],[-4,-14],[-3,-9],[-4,-18],[0,-12],[-1,-12],[-2,-10],[-3,-25],[-2,-12],[0,-7],[0,-8],[0,-16],[-4,-19],[-1,-17],[0,-11],[-2,-10],[-2,-9],[-2,-9],[-2,-8],[-1,-12],[-3,-10],[0,-12],[-1,-25],[0,-14],[0,-16],[1,-13],[1,-12],[-1,-6],[0,-7],[-3,-18],[1,-13],[-1,-14],[0,-14],[0,-13],[-1,-15],[-10,-19],[0,-33],[1,-30],[1,-18],[1,-14],[1,-17],[0,-13],[1,-17],[0,-23],[0,-9],[-1,-8],[0,-11],[-2,-9],[-1,-4],[1,-9],[3,-10],[2,-10],[-2,-10],[-1,-14],[0,-12],[0,-16],[4,-31],[2,-22],[-1,-16],[-1,-12],[0,-15],[0,-13],[1,-15],[0,-13],[-1,-10],[-2,-39],[1,-24],[2,-21],[1,-18],[0,-20],[1,-19],[4,-17],[2,-16],[4,-7],[3,-4],[0,-11],[-1,-11],[1,-14],[5,-15],[4,-14],[2,-18],[4,-21],[5,-55],[0,-20],[0,-18],[2,-17],[1,-18],[2,-32],[3,-18],[2,-10],[2,-10],[3,-15],[4,-16],[2,-13],[12,-36],[2,-16],[2,-8],[3,-7],[2,-6],[1,-7],[0,-11],[-1,-17],[1,-11],[6,-10],[9,-6],[6,-4],[-1,-14],[1,-11],[2,-9],[5,-9],[5,-6],[3,-5],[6,-8],[3,-10],[1,-16],[4,-14],[7,-10],[12,-7],[13,-5],[17,-24],[1,-11],[2,-9],[4,-11],[7,-7],[7,-7],[6,-12],[15,-25],[13,-25],[4,-6],[4,-7],[4,-4],[5,-7],[5,-7],[10,-15],[20,-11],[13,5],[7,11],[9,12],[8,5],[11,-1],[16,-16],[9,-13],[8,-10],[6,-9],[7,-10],[13,-8],[17,9],[12,2],[8,2],[9,4],[5,7],[15,4],[13,10],[6,12],[10,1],[5,4],[8,7],[3,5],[4,-1],[3,-5],[6,-4],[3,1],[2,9],[4,3],[6,6],[6,7],[5,4],[7,1],[2,2],[8,0],[6,-1],[2,-2],[5,-4],[1,-1],[33,13],[2,2],[2,2],[4,1],[3,-1],[2,-1],[5,2],[6,2],[3,1],[8,1],[5,0],[4,0],[3,0],[3,3],[3,2],[2,-1],[6,-7],[1,1],[4,8],[6,10],[3,9],[12,7],[5,-2],[6,0],[9,1],[2,4],[3,4],[3,8],[6,7],[9,8],[5,-1],[9,0],[5,1],[4,3],[8,3],[6,-1],[5,-1],[5,-2],[8,0],[3,1],[8,5],[10,9],[19,13],[4,5],[8,4],[8,0],[12,0],[4,-3],[8,-7],[10,-3],[16,-9],[6,-9],[2,-6],[4,-5],[12,1],[8,5],[8,3],[9,0],[9,1],[15,1],[8,-3],[11,-10],[15,-6],[4,-1],[8,-2],[6,-2],[9,-1],[9,-2],[9,-1],[24,-2],[11,-3],[8,1],[9,1],[16,1],[12,-2],[5,-1],[8,-7],[20,-5],[25,0],[13,-1],[14,0],[8,0],[12,-3],[28,-5],[6,0],[5,1],[5,0],[3,-1],[4,-4],[5,-4],[7,-1],[3,-3],[3,-5],[6,-10],[6,-8],[3,-11],[-1,-15],[2,-5],[0,-4],[-1,-3],[-1,-2],[0,-7],[3,-4],[4,-1],[7,0],[7,1],[6,2],[10,3],[12,2],[13,0],[2,0],[8,-3],[9,-2],[4,-1],[6,-2],[5,-3],[4,-3],[1,-4],[-1,-5],[-1,-5],[-5,-1],[-2,-3],[1,-4],[2,-1],[4,0],[5,1],[2,-1],[0,-3],[-3,-6],[-3,-4],[-7,-10],[-2,-4],[-8,-4],[-3,-6],[1,-2],[5,0],[6,0],[1,-6],[-1,-6],[-3,-5],[-7,-17],[-6,-6],[-6,-3],[-6,-6],[-5,-9],[-2,-9],[-1,-9],[-5,-3],[-4,-6],[-10,-10],[-3,-3],[-7,-2],[-7,-3],[-2,-5],[-7,-2],[-10,1],[-14,-1],[-8,-4],[-1,-6],[0,-6],[2,-8],[-2,-4],[-6,-5],[-7,-2],[-5,3],[-15,3],[-5,-5],[-3,-1],[-12,2],[-8,-1],[-5,-5],[-11,-9],[-4,-1],[-9,-2],[-7,0],[-3,-3],[-1,-4],[1,-5],[-2,-4],[-7,-4],[-8,-2],[-10,-2],[-10,1],[-8,0],[-5,-1],[-6,-3],[-2,4],[0,7],[-2,6],[-7,-1],[-5,-5],[-4,0],[-5,7],[-4,4],[-9,3],[-10,1],[-7,5],[-4,4],[-8,4],[-6,1],[-9,-1],[-6,-5],[-1,-4],[-4,-7],[-4,-4],[-2,-5],[-8,-6],[-7,-1],[-6,5],[-15,2],[-13,1],[-11,-1],[-11,-1],[-9,-1],[-7,1],[-5,6],[-8,3],[-3,-1],[-9,-3],[-10,-3],[-8,-1],[-9,-1],[-8,1],[-9,2],[-8,3],[-8,3],[-4,-1],[-13,-4],[-9,-4],[-11,-3],[-2,-5],[-2,-5],[-2,-4],[-1,-3],[-10,-5],[-3,-3],[-3,-6],[-8,-1],[-8,-2],[-10,-11],[-12,-12],[-17,-6],[-11,-3],[-8,-5],[-7,-3],[-6,-3],[-5,-1],[-10,-1],[-2,-3],[-5,-5],[-17,-8],[-6,-8],[-2,-4],[-9,-3],[-7,-2],[-3,-3],[-8,-2],[-13,-1],[-8,0],[-5,-1],[-1,-2],[4,-5],[4,-4],[4,-1],[7,-2],[4,-5],[0,-4],[0,-1],[-3,-1],[-3,-6],[2,-5],[0,-4],[-4,-8],[-7,-4],[-7,-1],[-8,-4],[0,-9],[3,-1],[8,1],[8,1],[0,-3],[-1,-3],[-1,-3],[-1,-2],[3,-5],[7,0],[1,-3],[-3,-4],[-6,-7],[-2,-1],[-7,-1],[-8,0],[-1,-2],[0,-2],[0,-3],[0,-3],[-2,-1],[-4,1],[-7,1],[-2,-2],[-7,0],[-4,1],[-1,3],[-4,3],[-4,2],[-2,-1],[-12,2],[-6,-1],[-3,-3],[0,-4],[-1,-3],[-2,-3],[-4,-3],[-4,-3],[-3,-2],[0,-6],[-12,-9],[-11,-6],[-3,-2],[-7,-3],[-5,-1],[-3,-2],[-6,-6],[-4,-7],[-4,-5],[-5,-6],[0,-5],[-2,-6],[-2,-9],[-4,-9],[-1,-2],[-2,-2],[-7,-2],[-1,-3],[-2,-8],[-2,0],[-8,-2],[1,-10],[0,-5],[-2,-2],[-12,-5],[-9,-2],[-6,-8],[-14,-10],[-1,-12],[0,-9],[1,-8],[-6,-3],[-3,-2],[-4,-4],[0,-5],[0,-6],[-1,-1],[-3,-4],[-4,-3],[-2,-3],[-6,-3],[-4,-3],[-3,-4],[-2,-4],[-6,-4],[-1,1],[-2,1],[-3,-3],[0,-1],[-2,-1],[-1,-1],[-4,-1],[-2,-1],[-2,-2],[-4,-2],[-6,0],[-6,-2],[-3,-3],[0,-4],[-1,-2],[-1,-2],[-2,-1],[0,-2],[0,-4],[-6,-1],[-7,1],[-2,-3],[-2,-3],[0,-3],[-3,-3],[-5,0],[0,-5],[0,-6],[-3,-3],[-6,-3],[-2,-4],[-3,-4],[-1,-5],[0,-4],[-1,-2],[-4,-1],[-3,-1],[-3,-2],[-3,-4],[-7,-1],[-2,-1],[-3,-4],[-4,-4],[-4,0],[-4,3],[-2,-3],[-1,-4],[-3,0],[-5,5],[-5,1],[-4,-3],[-3,-3],[-6,-4],[-4,-2],[-4,-2],[-4,-1],[-9,3],[-3,4],[-3,7],[-2,5],[-6,5],[-3,0],[-5,-2],[-3,-3],[-3,-4],[-5,-5],[-4,-5],[-3,-4],[-7,-8],[-6,-13],[-11,-13],[-9,-12],[-8,-16],[-8,-7],[-7,-7],[-5,-11],[-4,-8],[-5,-5],[-10,-11],[-30,-32],[-4,-4],[-13,-5],[-14,-5],[-7,-1],[-10,-12],[-2,-12],[-3,-15],[-7,-20],[-6,-16],[-8,-15],[-4,-13],[-5,-14],[-10,-16],[-12,-12],[-8,-7],[-11,-10],[-50,-40],[-16,-12],[-29,-18],[-16,-26],[-34,-53],[-26,-40],[-20,-21],[-4,-9],[-7,-13],[-8,-17],[-6,-13],[-9,-25],[-15,-44],[-6,-14],[-6,-11],[-2,-8],[-1,-8],[-1,-9],[-1,-13],[-2,-23],[-2,-7],[-5,-5],[-3,-11],[2,-12],[0,-3],[0,-1],[1,-2],[6,-5],[1,-3],[-1,-6],[-7,-1],[-5,0],[-7,2],[-2,2],[-2,4],[-2,1],[-3,0],[-2,0],[-1,-2],[-3,-1],[-2,-2],[-2,-2],[-5,-2],[-3,-2],[-3,-3],[-4,-3],[-6,-1],[-6,-4],[-1,-6],[4,-6],[5,-6],[7,-6],[2,-7],[3,-6],[4,-7],[2,-2],[2,-8],[4,-7],[1,-6],[1,-6],[-1,-7],[-1,-3],[-2,-5],[-8,-3],[-8,-1],[0,-1],[-1,-4],[0,-4],[-1,-2],[-1,-1],[-2,-1],[-7,-4],[0,-5],[3,-5],[5,0],[0,-1],[11,-5],[13,-6],[15,-2],[7,-1],[6,-4],[5,-2],[6,-1],[5,-1],[4,-3],[8,-1],[8,-2],[6,-4],[5,-5],[4,-3],[3,-1],[9,-1],[7,0],[4,-1],[4,-3],[4,-2],[6,0],[7,0],[8,0],[11,-1],[5,-6],[4,-6],[11,-12],[2,-6],[7,-9],[8,-7],[3,-8],[0,-7],[4,-6],[4,-6],[1,-4],[0,-6],[2,-3],[1,-3],[1,-7],[1,-3],[2,-3],[2,-1],[1,-2],[1,-3],[0,-6],[3,-7],[-2,-5],[0,-3],[-4,-1],[-4,1],[-8,2],[-13,2],[-6,0],[-4,4],[-1,4],[0,3],[-7,3],[-5,3],[-6,0],[-5,-1],[-7,1],[-4,0],[-3,-1],[0,-7],[1,-4],[-1,-5],[0,-4],[-5,-3],[-9,1],[-8,3],[-19,5],[-26,4],[-8,-1],[-6,2],[-6,3],[-7,1],[-2,-2],[-4,-3],[-4,0],[-2,-3],[-1,-1],[-2,-6],[-1,-5],[-4,-4],[-8,2],[-3,6],[-5,1],[-7,-5],[0,-6],[-2,-12],[-4,-5],[-4,-4],[-5,0],[-2,-2],[-1,-5],[0,-6],[-3,-2],[-4,-5],[0,-4],[-3,-9],[-6,-2],[-7,-1],[0,-2],[1,-3],[2,-6],[-1,-6],[-11,-2],[-11,1],[-7,8],[-5,5],[-3,6],[-6,5],[-4,2],[-7,3],[-3,4],[-7,18],[-8,11],[-4,2],[-6,2],[-7,0],[-7,0],[-9,0],[-7,0],[-3,-3],[-2,-1],[-7,0],[-4,0],[-4,-4],[-6,0],[-5,0],[-6,-2],[-6,-6],[-3,-6],[1,-2],[8,-4],[6,0],[7,-4],[3,-4],[2,-7],[-1,-4],[-2,0],[-1,0],[-17,0],[-2,-3],[3,-3],[5,-3],[0,-3],[-5,-4],[-8,1],[-16,0],[-6,3],[-5,2],[-9,-2],[0,-7],[-3,-7],[-13,-2],[-1,10],[2,6],[0,6],[2,9],[7,5],[2,2],[1,5],[-4,1],[-8,7],[-4,11],[-9,1],[-10,0],[-10,0],[-7,-1],[-6,-2],[-5,0],[-5,-3],[0,-4],[1,-5],[1,-5],[-4,-4],[-3,-5],[-6,-2],[-5,0],[-11,0],[-8,2],[-2,7],[0,9],[0,8],[9,5],[6,-3],[6,2],[5,8],[2,8],[0,4],[0,7],[0,9],[-1,11],[-2,5],[-4,6],[-4,-1],[-1,-2],[0,-3],[-2,-6],[-5,-4],[-6,-4],[-6,-3],[-5,-1],[-5,-2],[1,-2],[0,-1],[0,-3],[0,-3],[-2,-2],[-6,1],[-1,1],[-5,0],[-4,0],[-3,1],[-2,4],[-2,6],[0,2],[-2,7],[0,7],[5,12],[3,6],[8,13],[4,5],[6,7],[6,6],[11,4],[4,1],[4,0],[3,0],[3,3],[3,5],[4,9],[1,1],[4,4],[3,1],[5,0],[4,0],[4,1],[2,7],[4,3],[5,1],[2,0],[3,-2],[4,1],[4,7],[2,4],[7,7],[2,2],[3,7],[4,5],[3,2],[2,4],[-1,13],[0,11],[2,1],[3,3],[-1,3],[-4,0],[-4,0],[-4,-3],[-1,-1],[-3,-3],[-3,-2],[-6,3],[-3,2],[-1,9],[0,10],[1,12],[0,9],[3,5],[6,7],[6,13],[9,8],[5,10],[-1,13],[-5,6],[-4,3],[0,9],[-1,8],[-4,-4],[-9,-2],[-1,6],[0,10],[4,9],[9,13],[12,7],[11,6],[6,10],[3,17],[4,10],[1,13],[-2,10],[-8,9],[-12,24],[0,32],[-3,13],[-7,12],[-8,9],[-21,33],[-11,17],[-35,32],[-12,13],[-5,5],[-11,4],[-23,5],[-16,11],[-26,17],[-64,45],[-24,8],[-32,30],[-16,13],[-16,16],[-26,4],[-18,-2],[-10,-3],[-14,1],[-10,4],[-6,6],[-7,-1],[-21,3],[-18,14],[-30,17],[-9,5],[-6,4],[-15,6],[-7,3],[-9,6],[-13,8],[-17,1],[-27,8],[-3,2],[-3,4],[-4,5],[-3,0],[-9,0],[-5,-1],[-9,1],[-10,6],[-11,8],[-10,10],[-7,-1],[-30,13],[-14,-1],[-10,2],[-10,3],[-9,5],[-5,2],[-10,7],[-19,2],[-15,7],[-11,10],[-16,1],[-7,1],[-25,3],[-27,16],[-12,5],[-18,5],[-13,0],[-22,-1],[-23,15],[-13,12],[-8,14],[-12,5],[-12,-1],[-11,0],[-17,0],[-8,0],[-21,0],[-18,0],[-16,1],[-22,1],[-17,5],[-13,5],[-10,4],[-12,9],[-30,7],[-19,7],[-1,0],[-28,-5],[-20,6],[-12,4],[-24,12],[-16,8],[-34,7],[-23,0],[-29,-6],[-37,-5],[-11,-1],[-19,0],[-11,-3],[-12,-2],[-11,2],[-5,3],[-4,4],[-6,2],[-15,-4],[-11,1],[-12,8],[-18,2],[-22,-1],[-11,0],[-26,6],[-55,7],[-13,-1],[-16,-1],[-14,3],[-5,4],[-21,4],[-9,-2],[-8,1],[-7,3],[-11,13],[-2,-1],[-13,1],[-6,-7],[-15,5],[-17,8],[-13,3],[-13,18],[-6,9],[-30,-2],[-22,3],[-19,9],[-8,6],[-13,1],[-30,3],[-14,-1],[-11,-1],[-29,-6],[-33,-4],[-22,4],[-20,3],[-21,0],[-14,-3],[-17,-4],[-14,-8],[-18,-7],[-29,-5],[-58,22],[-12,1],[-28,0],[-21,5],[-22,1],[-17,-4],[-8,-4],[-4,-2],[-20,-2],[-20,4],[-11,9],[-6,-2],[-14,-8],[-28,-5],[-21,2],[-24,-2],[-15,0],[-20,1],[-30,-2],[-10,0],[-25,0],[-13,4],[-25,25],[-26,24],[-25,4],[-25,-5],[-17,-5],[-26,-1],[-15,2],[-3,6],[-5,8],[-27,4],[-24,-4],[-20,-8],[-19,-6],[-20,6],[-3,2],[-4,2],[-22,19],[-17,1],[-11,0],[-15,0],[-16,-3],[-16,-3],[-18,-3],[-10,9],[-13,1],[-5,-11],[-9,-3],[-11,9],[-13,14],[-11,1],[-5,-6],[-4,-6],[-11,-1],[-10,-4],[-13,-4],[-3,5],[-15,8],[-10,2],[-11,-2],[-13,-8],[-10,-2],[-18,2],[-11,7],[-19,13],[-9,-2],[-16,-3],[-18,6],[-11,4],[-10,5],[-15,-1],[-4,-1],[-10,1],[-14,1],[-13,4],[-12,1],[-5,2],[-16,10],[-19,4],[-11,-1],[-10,-2],[-11,-7],[-11,-3],[-9,2],[-26,7],[-7,4],[-2,2],[-15,6],[-8,-5],[-10,-8],[-13,-8],[-16,-3],[-16,1],[-9,4],[-12,2],[-11,-2],[-12,0],[-9,0],[-13,-1],[-21,7],[-8,-2],[-14,-1],[-21,-2],[-10,0],[-12,3],[-28,4],[-6,2],[-5,2],[-10,0],[-11,0],[-11,-3],[-8,0],[-10,0],[-12,3],[-8,3],[-12,6],[-10,-1],[-8,-3],[-15,3],[-21,3],[-5,2],[-4,3],[-13,0],[-10,-2],[-7,-4],[-10,-3],[-7,-5],[-11,-2],[-20,-3],[-22,-1],[-18,1],[-22,5],[-18,0],[-25,0],[-23,9],[-16,7],[-16,2],[-4,-2],[-12,2],[-10,4],[-5,4],[-7,1],[-3,-1],[-10,-8],[-7,-6],[-22,-2],[-2,5],[-20,-2],[-3,-4],[-13,-3],[-13,15],[-12,1],[-4,0],[-7,-7],[-7,2],[-6,0],[-14,2],[-5,6],[-14,3],[-5,0],[-6,-2],[-14,-7],[-13,-3],[-7,1],[-11,7],[-11,2],[-3,2],[-1,-2],[-8,1],[-3,1],[-7,2],[-10,2],[-6,-4],[-21,-13],[-7,-9],[-5,-4],[-19,-11],[-14,4],[-4,9],[-12,3],[-25,2],[-14,5],[-11,4],[-18,0],[-28,-9],[-18,-9],[-20,-5],[-22,-3],[-24,-1],[-36,4],[-17,12],[-50,23],[-17,-6],[-30,-1],[-78,15],[-30,3],[-80,-10],[-15,-9],[-16,-3],[-22,-2],[-12,3],[-16,11],[-23,0],[-14,-10],[-14,-8],[-21,-3],[-51,-6],[-32,0],[-22,-1],[-21,2],[-37,7],[-22,-4],[-15,-4],[-24,-2],[-10,-2],[-19,1],[-17,2],[-4,-6],[-18,-1],[-45,6],[-8,-1],[-12,-5],[-22,0],[-27,14],[-30,4],[-23,6],[-10,2],[-9,1],[-7,-3],[-9,-7],[-9,-4],[-13,-1],[-13,3],[-16,1],[-8,1],[-13,1],[-9,0],[-12,-5],[-19,-2],[-30,-3],[-12,-5],[-10,-5],[-13,-6],[-14,0],[-12,0],[-14,0],[-11,-2],[-12,-2],[-19,1],[-21,-7],[-12,-14],[-12,-7],[-6,-1],[-23,0],[-16,-2],[-20,4],[-11,6],[-10,4],[-12,1],[-15,-2],[-13,-3],[-10,-1],[-15,-2],[-14,-1],[-14,-1],[-67,0],[-13,5],[-12,8],[-11,10],[-8,-1],[-11,1],[-3,3],[-8,4],[-19,5],[-15,1],[-12,-4],[-9,-7],[-6,-4],[-12,-1],[-12,0],[-12,-4],[-14,-5],[-10,-3],[-6,-1],[-12,-1],[-18,2],[-5,3],[-15,2],[-10,0],[-13,-3],[-10,-4],[-13,1],[-10,0],[-12,6],[-14,3],[-9,-1],[-6,-3],[-3,-1],[-6,0],[-9,1],[-8,1],[-9,3],[-8,-4],[-8,-1],[-9,0],[-2,2],[-26,1],[-6,0],[-11,0],[-8,2],[-13,0],[-13,-3],[-4,6],[-11,-3],[-13,-12],[-12,11],[-8,1],[-9,2],[-5,1],[-10,2],[-9,0],[-3,-1],[-6,2],[-3,-2],[-10,-5],[-11,3],[-6,-5],[-7,0],[-4,-4],[-5,-4],[-16,4],[-4,0],[-12,-2],[-15,1],[-9,6],[-8,2],[-7,-1],[-9,-4],[-9,-1],[-15,-7],[-9,4],[-12,-2],[-8,-5],[-8,1],[-3,4],[-6,-1],[-9,-7],[-10,-3],[-10,-1],[-12,0],[-14,0],[-9,0],[-15,-5],[-7,-11],[-11,-5],[-14,2],[-12,1],[-3,5],[-10,3],[-8,-8],[-11,-12],[-15,-2],[-19,8],[-10,8],[-8,0],[-16,-4],[-9,-6],[-17,-1],[-19,0],[-40,-18],[-6,-9],[-12,-7],[-10,-4],[-17,-5],[-13,-2],[-7,4],[-3,0],[-5,0],[-10,2],[-8,0],[-8,0],[-11,0],[-11,3],[-3,-3],[-5,-2],[-8,-9],[-7,-4],[-6,-4],[-5,-3],[-7,-2],[-4,2],[-7,1],[-7,3],[-8,0],[-11,0],[-11,-1],[-7,-7],[-6,-6],[-6,-7],[-5,-7],[-5,-3],[-11,-3],[-6,-2],[-8,2],[-7,3],[-4,2],[-4,0],[-4,0],[-6,-2],[-9,-4],[-8,-2],[-9,2],[-11,2],[-7,1],[-5,-4],[-3,-8],[-4,-5],[-8,-5],[-5,-2],[-8,-6],[-9,-2],[-2,-1],[-4,-1],[-3,0],[-3,-1],[-5,-3],[-5,0],[-5,0],[-4,-2],[-5,-3],[-5,-2],[-6,-1],[-6,-3],[-6,-2],[-3,-1],[-5,-1],[-9,0],[-7,-4],[-8,-6],[-9,-4],[-10,-2],[-6,1],[-5,0],[-5,-2],[-6,-4],[-5,-3],[-7,-4],[-5,-1],[-4,0],[-2,1],[-12,-5],[-5,1],[-9,2],[-7,3],[-3,3],[-1,4],[-3,6],[-7,-2],[-6,-3],[-7,-1],[-10,0],[-9,4],[-12,2],[-13,3],[-16,-2],[-5,-1],[-11,-2],[-11,-5],[-11,-12],[-11,-5],[-7,-2],[-14,-3],[-14,-1],[-13,2],[-18,0],[-11,-4],[-9,-3],[-12,-1],[-12,-11],[-11,-9],[-8,-3],[-18,-1],[-8,-2],[-9,-7],[-13,-7],[-5,-9],[-6,-8],[-14,-7],[-13,-1],[-16,-1],[-5,-1],[-8,-1],[-5,-4],[-5,-5],[-3,-16],[-8,-13],[-12,-1],[-2,2],[-4,4],[-5,3],[-2,4],[-13,4],[-11,3],[-10,-1],[-3,-2],[-4,-3],[-10,-11],[-12,-10],[-12,-5],[-8,-2],[-5,-2],[-11,-2],[-15,3],[-4,0],[-12,-1],[-6,-5],[-9,-9],[-12,-6],[-9,-2],[-10,0],[-6,-2],[-15,7],[-5,-1],[-8,-3],[-5,-4],[-9,-8],[-6,-14],[-10,-13],[-13,-2],[-14,-2],[-10,-2],[-10,0],[-6,-5],[-3,-10],[-2,-14],[-6,-13],[-7,-6],[-11,1],[-15,3],[-12,-5],[-9,-9],[-6,-6],[-3,-2],[-6,-5],[-6,-4],[-7,-3],[-8,1],[-7,2],[-4,0],[-8,-7],[-8,-7],[-6,-5],[-9,-3],[-7,-2],[-8,-3],[-7,-6],[-9,0],[-6,-5],[-6,-3],[-5,0],[-6,0],[-7,-4],[-7,-3],[-5,-3],[-9,-2],[-2,-11],[-3,-8],[-6,-7],[-3,-3],[-11,-2],[-4,-7],[-1,-6],[-2,-4],[-3,-3],[-7,-4],[-9,-5],[-7,-6],[-10,-8],[-7,-2],[-4,-2],[-3,-1],[-4,-2],[-1,-6],[-2,-11],[-3,-6],[-5,-5],[-5,-6],[-9,-7],[-14,-10],[-7,-5],[-2,-4],[-2,-6],[-3,-5],[-4,-4],[-1,-5],[1,-5],[1,-5],[2,-3],[0,-6],[1,-6],[1,-7],[5,-10],[6,-7],[4,-14],[-19,-30],[-1,-4],[-2,-1],[-1,-4],[-3,0],[-1,-3],[-7,-4],[-2,2],[-3,-4],[-1,-4],[-3,-1],[-3,2],[-4,0],[-2,-2],[0,-7],[5,-7],[7,-8],[9,-6],[2,-4],[4,-8],[2,-8],[3,-6],[3,-4],[4,-3],[1,-8],[-4,0],[-3,-7],[-2,-12],[6,-9],[4,-5],[7,-4],[7,-1],[4,-3],[5,-2],[8,0],[3,-2],[6,-9],[-2,-19],[-2,-5],[-3,-9],[-6,-3],[-7,-7],[-10,-1],[-7,-1],[3,-10],[4,-4],[6,-6],[0,-4],[-2,-4],[-5,-4],[-3,-5],[-7,-3],[-6,-2],[3,-6],[-1,-4],[-8,0],[-6,2],[-3,0],[-5,1],[-4,1],[0,-3],[2,-7],[-3,-5],[-9,-6],[-2,-1],[-5,-2],[1,-5],[-10,-1],[-6,3],[-4,1],[-6,-4],[-1,-3],[-3,-3],[-4,-1],[-17,2],[-13,12],[-1,0],[-7,0],[0,-3],[4,-2],[5,-4],[1,0],[1,-1],[2,-2],[5,-6],[-2,-4],[-11,-1],[-10,-5],[-10,-5],[-7,0],[-7,-1],[-8,-1],[-9,-1],[-4,0],[-5,3],[-4,0],[-6,-1],[-5,-2],[-5,1],[-5,1],[-13,-7],[-6,-2],[-9,1],[-8,-2],[-7,-3],[-5,-4],[-6,-5],[-9,-2],[-9,0],[-9,4],[-7,2],[-4,0],[-7,-2],[-3,0],[-4,3],[-4,0],[-3,-3],[-4,-4],[-2,-2],[-7,0],[-3,-4],[0,-3],[-2,-1],[0,-2],[1,-3],[1,-2],[0,-5],[3,-5],[4,-5],[4,-4],[4,-4],[6,-11],[3,-6],[5,-5],[5,-9],[12,-11],[5,-6],[6,-5],[5,-10],[-1,-6],[0,-7],[1,-4],[2,-7],[-11,-6],[-4,-4],[-5,-5],[-8,1],[-2,4],[-8,7],[-1,-5],[-4,-2],[-8,0],[-5,4],[-3,6],[-7,12],[-3,6],[-2,4],[-6,20],[-4,6],[-7,2],[-5,2],[-7,3],[-6,-1],[-7,-6],[2,-7],[-1,-3],[-6,-1],[-1,-6],[-8,-1],[-1,-9],[-2,-10],[-7,4],[-7,10],[-5,6],[-11,3],[-8,11],[-6,0],[-6,1],[-3,-4],[0,-8],[-3,-5],[-3,-5],[0,-9],[2,-4],[3,-5],[8,-5],[2,-8],[-9,-4],[0,-3],[-1,-5],[-7,-1],[-10,0],[-9,0],[-3,-4],[1,-3],[10,1],[3,-5],[3,-2],[13,-3],[1,-6],[-1,-11],[-7,-3],[-1,-5],[8,-9],[0,-9],[-11,7],[-4,2],[2,-6],[-6,-8],[-9,-8],[-13,-2],[-8,-6],[-6,-4],[-8,-1],[-1,-8],[0,-8],[-10,-1],[-5,1],[-13,5],[-7,6],[-9,10],[-8,5],[-7,0],[-4,-1],[-7,-6],[-8,-5],[-9,0],[-3,0],[-2,5],[-1,2],[-8,2],[-7,-1],[-4,2],[-8,5],[-2,-4],[0,-6],[1,-8],[3,-10],[-3,-1],[-3,6],[-7,2],[-5,-1],[-4,3],[-3,1],[-3,3],[-2,-3],[0,-1],[-4,1],[0,-4],[0,-7],[-1,-6],[-1,-4],[-3,1],[-3,1],[1,-5],[1,-2],[3,-4],[4,-4],[3,-5],[1,-5],[-3,-10],[-5,0],[-8,-2],[-9,-2],[-3,-1],[-9,0],[-3,3],[-5,2],[-2,-1],[-1,-1],[-4,-1],[-7,0],[-9,-1],[-7,1],[-8,7],[-3,5],[-3,6],[-1,5],[-2,4],[-9,4],[-3,0],[-11,5],[-4,6],[-7,1],[-6,-3],[-5,-2],[-2,-1],[-8,0],[-4,1],[-9,-1],[3,-6],[-1,-5],[-10,2],[-5,4],[-2,1],[-5,0],[-5,3],[-3,5],[-8,3],[-23,13],[-3,5],[-3,11],[-4,8],[-5,5],[-6,1],[-7,0],[-4,2],[-4,3],[-4,4],[-2,2],[-4,1],[-6,3],[-3,7],[-11,-3],[-10,-7],[-7,-5],[-9,-6],[-12,-5],[-6,-3],[-6,1],[-1,4],[-4,-3],[-6,-7],[-6,-6],[-12,-6],[-2,-3],[-6,-1],[-8,-2],[-4,-5],[-13,-36],[-1,-7],[-2,-4],[-5,-2],[-6,-3],[-7,0],[-7,1],[-4,-4],[-2,-7],[-1,-5],[-1,-5],[-1,-3],[1,-3],[3,-4],[-1,-3],[-3,-5],[-5,-2],[-2,2],[-1,5],[-1,4],[0,5],[-4,4],[0,2],[-1,4],[-2,-1],[-1,-3],[-1,-4],[1,-2],[0,-4],[-2,-1],[-8,2],[-5,-1],[-6,-3],[-1,-5],[-1,-3],[-9,-1],[-9,-6],[-20,-6],[0,-23],[-8,-24],[-13,-5],[-15,0],[-10,-5],[-6,-12],[-11,-15],[-3,-17],[-7,-10],[-17,-9],[0,-12],[-3,-10],[-17,-8],[-1,-7],[7,-16],[0,-17],[-18,-24],[-11,-12],[-3,-13],[-9,-18],[-9,-9],[-17,-13],[-7,-14],[-27,-34],[-9,-15],[0,-3],[-2,-5],[-12,-11],[-3,-5],[-1,-3],[-6,-9],[-2,-14],[0,-27],[4,-8],[2,-8],[3,-5],[5,-4],[5,1],[6,0],[10,-6],[3,-4],[1,-7],[0,-9],[2,-14],[-1,-10],[-5,-4],[-1,-12],[0,-8],[-2,-6],[-11,0],[-15,-9],[-6,5],[-1,9],[-1,12],[-9,3],[-18,-7],[-8,-9],[-22,-57],[-11,-15],[-4,-19],[-14,-28],[-5,-10],[2,-26],[-3,-23],[-11,-28],[-4,-14],[-3,-13],[1,-35],[-3,-8],[0,-11],[2,-15],[-4,-24],[-4,-12],[-4,-14],[0,-38],[5,-45],[4,-6],[3,-23],[23,-3],[24,-32],[13,-10],[19,-28],[8,-20],[24,-45],[14,-9],[18,2],[13,11],[8,-7],[2,5],[15,4],[6,15],[18,9],[2,-4],[0,-9],[-15,-20],[-6,-14],[5,-5],[4,0],[6,-3],[1,-10],[-3,-8],[-2,-7],[3,-14],[7,-3],[5,0],[8,-5],[4,-4],[-2,-13],[-6,-5],[-1,-19],[1,-10],[4,-2],[5,11],[19,18],[10,2],[13,-27],[13,-19],[3,-30],[0,-13],[2,-12],[13,-1],[6,-4],[1,-9],[-1,-19],[-8,-6],[0,-6],[-11,-45],[8,-14],[1,-4],[-2,-3],[-3,-2],[2,-7],[7,-2],[8,0],[0,-17],[2,-9],[-12,3],[-4,6],[-13,-1],[-5,-11],[-14,-22],[-1,-8],[-10,-7],[-7,-6],[-1,-8],[-1,-6],[-13,6],[0,5],[-1,7],[-1,3],[-9,0],[-4,0],[-8,-2],[-14,-1],[-4,-3],[-2,-6],[0,-11],[-17,-6],[-5,-5],[-8,-1],[-3,-3],[-12,-4],[-5,-5],[-14,-5],[-6,-4],[-11,3],[-14,7],[-12,-5],[-9,3],[-4,-1],[-4,-7],[-4,2],[-6,11],[-10,-4],[-7,-1],[-9,1],[-7,-1],[-6,-1],[-6,0],[-4,1],[-5,10],[-24,33],[-8,8],[0,11],[-8,12],[-3,9],[-20,16],[-17,2],[-4,14],[-9,-2],[-2,5],[-9,2],[-40,-14],[-33,-2],[-8,4],[-18,-1],[-8,-2],[-11,-16],[-1,-7],[-5,-2],[-10,1],[-21,-24],[-1,-28],[-3,-15],[-5,-10],[-4,-12],[2,-20],[-1,-12],[-3,-22],[-1,-13],[8,-34],[5,-11],[0,-14],[0,-11],[0,-8],[3,-4],[5,-5],[9,-5],[6,-11],[6,-16],[0,-19],[-8,-22],[-5,-9],[-9,-5],[-7,-5],[-3,-4],[0,-7],[-3,-4],[-4,-3],[0,-6],[0,-7],[1,-7],[1,-5],[-2,-3],[-5,-1],[-8,-1],[-13,-2],[-13,-1],[-15,-1],[-8,-5],[-8,-6],[-11,-5],[-8,-6],[-3,-9],[-7,-6],[-7,-1],[-9,-2],[-8,2],[-6,1],[-6,-1],[-8,-1],[-9,3],[-11,6],[-5,3],[-7,0],[-6,-2],[-5,-3],[-3,-4],[-3,-5],[-4,-5],[-5,-2],[-5,0],[-2,-5],[-4,-9],[-4,-1],[-10,3],[-7,-3],[-2,-9],[0,-8],[-2,-7],[0,-7],[-2,-1],[-4,-1],[0,-5],[-2,-7],[-1,-1],[-5,-4],[-5,-4],[-7,-4],[-4,-5],[2,-4],[5,-4],[5,-4],[5,-13],[-3,-6],[-7,-7],[-8,-5],[-7,-2],[-7,1],[-4,-2],[0,-6],[-2,-5],[-3,-8],[-1,-7],[-2,-5],[-4,-8],[-7,-1],[-11,0],[-2,0],[-5,-6],[2,-3],[2,-4],[1,-4],[-1,-5],[-16,-9],[-15,-6],[-4,-3],[-7,-4],[-6,0],[-8,-1],[-10,1],[-6,3],[-9,2],[-5,-2],[-3,-7],[-7,-8],[-4,-8],[-6,-3],[-4,-8],[-6,-4],[-3,3],[0,6],[-2,1],[-8,-6],[-5,-3],[-7,-5],[-8,-5],[0,-4],[-5,-5],[-10,-7],[-6,-6],[-7,-6],[-8,-6],[-10,-4],[-9,-4],[-5,-5],[-4,-3],[-5,-5],[-4,-3],[-4,-2],[-11,-7],[-6,-14],[-10,-9],[-6,-4],[-9,-4],[-10,-9],[-7,-7],[-10,1],[-5,2],[-4,0],[-3,-6],[0,-7],[-1,-1],[-2,-3],[-1,-6],[-2,-4],[-4,-6],[-18,-19],[-13,-9],[-20,-11],[-5,-3],[-7,-5],[-9,-3],[-8,-3],[-9,-5],[-5,-3],[-19,-11],[-3,-6],[-1,-5],[-3,-3],[-4,-2],[-5,-2],[-6,-1],[-5,-3],[-3,-5],[-2,-2],[-4,0],[-4,-1],[0,-3],[-2,-2],[-3,1],[-5,-1],[-4,-4],[-2,-4],[-1,-3],[-3,-3],[-1,-1],[-2,-2],[-1,-3],[-1,-1],[-6,-1],[-5,-1],[-8,0],[-1,1],[-4,-1],[-2,-1],[-5,3],[-6,2],[-3,0],[-4,-2],[-2,-2],[0,-4],[0,-4],[-7,-6],[-8,-4],[-5,-3],[-6,-5],[-10,-9],[-8,-9],[-7,-6],[-7,-3],[-5,-2],[-6,-4],[-6,-4],[-8,-4],[-3,-3],[3,-5],[1,-1],[4,-2],[3,-7],[0,-8],[-1,-4],[-4,-5],[1,-3],[3,-1],[7,-1],[2,-4],[-8,-3],[-9,0],[-8,-1],[-12,-2],[-5,3],[-2,3],[-10,-2],[-8,1],[-5,-5],[-4,-2],[-6,0],[-4,-1],[-1,-9],[-2,-7],[-5,-4],[-8,-6],[-5,-7],[-8,-7],[-6,-7],[-19,-11],[-20,-18],[-6,-4],[-6,-5],[-9,-9],[-6,-2],[-12,-6],[-12,-7],[-9,-1],[-6,4],[-11,-1],[-5,-11],[-6,-2],[-2,-4],[-4,-6],[-8,-4],[-1,-5],[-2,-6],[-1,-8],[-3,-3],[-4,2],[-3,-3],[-8,-2],[-9,3],[-4,2],[-4,4],[-10,5],[-3,0],[0,-4],[-1,-8],[-4,-4],[-2,-6],[-3,-2],[4,-10],[4,-3],[14,-3],[9,-8],[12,-6],[9,-11],[0,-13],[-2,-13],[-8,-5],[-16,-2],[-15,-2],[-12,-2],[-16,3],[-9,0],[-9,12],[-8,10],[-15,15],[-5,12],[-4,7],[-3,4],[-4,-2],[-4,5],[-5,6],[-4,2],[-6,-1],[-5,-2],[-10,-4],[-1,-7],[-4,-3],[-5,2],[-4,3],[-5,-3],[-1,-6],[1,-7],[0,-3],[-3,-5],[1,-9],[3,-4],[6,-7],[-1,-3],[-9,0],[-7,0],[-6,0],[0,-4],[-8,-2],[0,-4],[-1,-6],[-9,-11],[0,-9],[1,-4],[1,-6],[2,-4],[1,-5],[2,-4],[1,-6],[-3,-5],[-4,-4],[-7,0],[-5,2],[-4,7],[-1,4],[2,3],[-2,7],[-6,-1],[-3,-2],[-5,-4],[-7,1],[-1,3],[1,6],[-2,3],[-3,0],[-3,-1],[-3,0],[-3,3],[-2,0],[-3,-4],[0,-23],[-1,-32],[-4,-18],[-5,-41],[0,-12],[-1,-7],[1,-10],[2,-6],[6,-4],[1,-5],[-5,-7],[-4,-15],[-4,-8],[-14,-4],[-11,1],[-2,-4],[4,-5],[2,-2],[9,-1],[6,-4],[1,-4],[0,-23],[0,-6],[0,-9],[-3,-6],[-3,-6],[-2,-9],[-4,-4],[-10,-4],[-12,-3],[-11,-1],[-4,-4],[-1,-8],[2,-8],[6,-10],[9,-13],[11,-8],[5,-10],[0,-10],[0,-12],[-2,-8],[-4,-7],[0,-6],[-2,-12],[-2,-7],[-2,-3],[-3,-3],[-6,-7],[-5,-1],[-3,6],[-1,7],[1,6],[-2,5],[-6,6],[-5,-4],[-3,-2],[-1,-5],[1,-4],[1,-9],[-2,-3],[-2,0],[-3,-1],[-5,-2],[0,-6],[-4,-3],[-12,1],[-3,1],[-7,0],[-4,-4],[0,-4],[2,-5],[3,0],[2,-1],[1,-5],[-1,-5],[-3,-3],[-5,0],[-4,2],[-2,1],[-2,-5],[0,-4],[0,-3],[0,-6],[-1,-3],[-2,-4],[-3,-1],[-2,-6],[-1,-6],[1,-6],[-2,-5],[-4,-5],[-1,-4],[-1,-6],[-6,0],[-4,4],[-2,6],[0,3],[-2,3],[-1,1],[-2,-1],[-6,-4],[1,-3],[2,-5],[-1,-3],[1,-9],[-2,-13],[-5,-6],[-9,-6],[-7,-6],[-4,-5],[0,-9],[0,-9],[0,-8],[-12,-14],[-8,-6],[-7,-7],[-7,-2],[-7,-3],[-6,-4],[0,-6],[0,-5],[0,-7],[-5,-3],[-4,-1],[-8,0],[-8,1],[-8,-5],[-4,-5],[-9,-3],[-9,0],[-11,0],[-8,2],[-13,-2],[-11,-2],[-4,0],[-9,1],[-8,-1],[0,-7],[-7,-5],[-9,-5],[-7,-4],[-6,-5],[-8,0],[-11,3],[-13,3],[-6,-4],[-15,-1],[-14,2],[-7,-2],[-6,-5],[-7,-6],[-2,-10],[2,-10],[-3,-7],[-4,-5],[-8,0],[-4,-3],[-5,-2],[-3,1],[-6,13],[-5,4],[-11,-1],[-1,-6],[-1,-4],[-3,-6],[-8,-1],[-7,-2],[-10,-1],[-13,4],[-6,10],[-5,15],[0,18],[-1,9],[-5,6],[-7,3],[-17,1],[-2,0],[-7,-1],[-6,-1],[-15,-5],[-11,-3],[-8,0],[-3,1],[-9,-1],[-2,-3],[-6,0],[-12,0],[-4,-5],[-7,-6],[-6,-2],[-7,1],[-8,2],[-3,1],[-9,-2],[-4,-3],[-4,-2],[-1,-11],[6,-13],[-3,-9],[-13,-1],[-11,1],[-5,8],[-4,0],[-4,-5],[-2,-4],[-8,-2],[-6,0],[-6,-6],[-1,-7],[-2,-7],[-3,-8],[3,-5],[2,-3],[5,-5],[-1,-4],[-9,-1],[-4,0],[-10,1],[-10,0],[-16,-3],[-21,-13],[-7,-9],[-10,-15],[-17,-2],[-11,2],[-9,0],[-8,-8],[-11,-18],[-12,-18],[-9,-12],[-9,-12],[-4,-8],[1,-6],[0,-9],[-5,-2],[-8,0],[-11,2],[-16,0],[-13,0],[-14,0],[-28,-2],[-10,-1],[-6,-2],[-9,-1],[-11,2],[-15,-3],[-14,-4],[-18,-6],[-12,-1],[-12,1],[-21,0],[-26,-1],[-38,1],[-72,-2],[-13,1],[-13,-2],[-14,-1],[-9,0],[-17,-1],[-11,1],[-31,1],[-30,6],[-17,0],[-18,2],[-16,6],[-10,4],[-10,6],[-13,-1],[-12,0],[-20,5],[-13,3],[-8,6],[-2,9],[-2,1],[-12,1],[-8,2],[-9,5],[-8,5],[-16,8],[-11,10],[-6,4],[-7,0],[-13,1],[-6,2],[-11,7],[-6,9],[-8,7],[-8,0],[-13,-2],[-4,3],[-13,5],[-19,12],[-36,22],[-17,23],[-23,32],[-29,44],[-21,33],[-2,19],[-4,19],[-5,21],[-2,13],[-5,14],[-20,30],[-12,13],[-16,18],[-21,16],[-7,13],[-2,17],[6,8],[-2,3],[-10,1],[-11,2],[-10,8],[0,2],[8,5],[0,4],[-2,3],[-3,2],[-10,1],[-7,5],[-8,8],[-2,7],[-6,10],[-3,1],[-3,1],[-7,2],[-3,0],[-3,3],[-1,-1],[-13,7],[-8,3],[-8,2],[-7,8],[-7,8],[-3,5],[-8,0],[-10,1],[-9,7],[-15,0],[-3,0],[-13,-3],[-30,1],[-14,-2],[-8,-3],[-13,-1],[-13,8],[-10,12],[-8,5],[-10,-1],[-7,-2],[-14,0],[-10,3],[-6,5],[-18,1],[-1,-2],[-10,-4],[-11,-2],[-26,7],[-3,3],[-4,6],[-8,6],[-17,1],[-9,0],[-10,1],[-25,13],[-11,11],[-16,8],[-12,0],[-25,-4],[-26,3],[-31,5],[-10,4],[-11,2],[-5,0],[-8,-3],[-8,-7],[0,-5],[1,-8],[4,-11],[3,-7],[5,-8],[4,-11],[1,-9],[-1,-7],[-2,-5],[-4,-2],[-13,-1],[-3,-1],[-12,2],[-9,-1],[-10,0],[-8,-2],[-13,-1],[-8,0],[-20,7],[-20,15],[-48,58],[-17,17],[-23,5],[-58,22],[-26,8],[-17,10],[-12,5],[-18,4],[-13,1],[-10,0],[-12,2],[-41,17],[-6,2],[-20,5],[-17,2],[-18,2],[-15,5],[-13,5],[-8,17],[-12,2],[-18,9],[-31,22],[-15,28],[-12,14],[-13,2],[-14,2],[-4,-5],[0,-9],[-12,-3],[-13,11],[-15,14],[-17,9],[-17,13],[-19,2],[-6,-2],[-14,-6],[-17,-3],[-4,-7],[2,-10],[5,-6],[5,-11],[-2,-7],[-15,-6],[-14,-5],[-11,-1],[-3,-5],[-4,-6],[-10,-9],[-17,1],[-11,5],[-8,2],[-10,2],[-32,30],[-12,9],[-6,3],[-20,6],[-8,0],[-4,-2],[-8,-1],[-10,2],[-8,0],[-12,5],[-4,10],[-10,6],[-21,2],[-41,21],[-21,5],[-10,8],[-22,10],[-11,8],[-17,-10],[-1,-8],[-3,-15],[-13,-9],[-19,-14],[-17,-10],[-25,-12],[-31,-5],[-29,-13],[-13,-16],[-3,-22],[-13,-10],[-57,-12],[-78,-45],[-63,-29],[-75,-26],[-84,-28],[-80,-24],[-124,-10],[-53,-15],[-139,-41],[-107,-43],[-76,-24],[-103,-34],[-141,-13],[-125,-22],[-47,0],[-77,-2],[-69,2],[-49,2],[-61,-7],[-43,-11],[-63,-26],[-63,-4],[-94,-4],[-71,-1],[-43,-1],[-61,-7],[-55,0],[-44,-1],[-35,-6],[-57,-26],[-94,-7],[-110,-16],[-46,9],[-17,12],[-6,17],[-9,9],[-25,10],[-11,-1],[-11,5],[-12,4],[-7,0],[-4,0],[-7,-2],[-8,6],[-3,8],[-7,-6],[-13,-1],[-10,8],[-6,0],[-4,-1],[-4,-6],[-3,-3],[-7,1],[-7,5],[-8,5],[-5,2],[-11,1],[-6,0],[-4,-2],[-3,-3],[-9,-5],[-7,-5],[-6,-3],[-7,-4],[-5,-3],[-7,-2],[-6,-2],[-5,-4],[-4,-1],[-7,-1],[-6,0],[-7,-3],[-7,-3],[-14,-7],[-11,-6],[-13,-6],[-15,-2],[-18,-6],[-19,-6],[-30,-10],[-26,-5],[-30,-4],[-22,1],[-12,0],[-33,11],[-10,0],[-12,-2],[-7,3],[-4,-3],[-10,-12],[-1,2],[-5,3],[-6,-2],[-9,-3],[-14,-1],[-15,-4],[-36,-18],[-11,-4],[-7,-2],[-12,-4],[-10,-6],[-18,-9],[-14,-11],[-14,-12],[-8,-5],[-7,-3],[-10,-5],[-12,-4],[-15,-1],[-10,-1],[-8,0],[-10,1],[-13,-3],[-9,-3],[-8,-2],[-11,-2],[-6,-2],[-5,-1],[-5,-2],[-8,-2],[-3,-2],[-10,-4],[-15,-5],[-8,-1],[-10,-4],[-18,-7],[-5,-3],[-13,-4],[-7,-5],[-15,-6],[-15,-4],[-22,-6],[-5,-2],[-13,-3],[-7,-1],[-5,-2],[-3,-3],[-2,-2],[-4,-3],[-8,-5],[-9,-2],[-3,-3],[-10,-4],[-13,1],[-11,0],[-11,-4],[-12,-4],[-8,-2],[-6,-2],[-6,2],[-5,3],[-3,0],[-7,-3],[-6,-3],[-5,-1],[-1,-3],[-5,0],[-2,3],[-4,-1],[-5,-2],[-5,1],[-6,0],[-5,0],[-4,-1],[-4,-3],[-4,-2],[-2,0],[-2,-1],[-3,-1],[-4,1],[-2,0],[-2,-1],[-5,0],[-2,-4],[-6,-1],[-5,0],[-5,1],[-5,2],[-4,1],[-5,-2],[0,-3],[0,-3],[-1,-3],[-1,-2],[-4,-1],[-3,0],[-2,-4],[-3,-1],[-3,1],[-1,1],[-2,0],[-4,0],[-6,-1],[-6,0],[-5,-3],[-3,-3],[-5,-2],[-5,-2],[-5,-5],[-6,-5],[-7,-1],[-8,-4],[-4,-6],[-4,-5],[-4,-4],[-4,-3],[-4,-4],[-3,-2],[-4,-3],[-2,-3],[-8,-3],[-1,-1],[-5,-2],[-5,-4],[-2,-1],[-4,-5],[-6,-3],[-11,-12],[-10,-9],[-10,-10],[-10,-10],[-11,-8],[-9,-8],[-8,-9],[-6,-6],[-13,-13],[-14,-22],[-7,-5],[-10,-4],[-8,-4],[-9,-4],[-10,-2],[-12,0],[-5,-1],[-8,-4],[-9,1],[-6,1],[-6,0],[-16,0],[-2,1],[-9,0],[-5,0],[-9,-1],[-4,-4],[-7,-4],[-8,0],[-5,1],[-5,0],[-1,-1],[-3,-5],[-3,-2],[-2,0],[-6,-1],[-15,0],[-13,5],[-6,4],[-12,2],[-5,0],[-9,0],[-8,-4],[0,-1],[-2,0],[-6,-5],[-5,-5],[-7,-4],[-7,-5],[-8,-2],[-6,1],[-6,-5],[-3,-5],[-6,-6],[-3,-5],[-5,-5],[-6,-1],[-5,-2],[0,-4],[-1,-4],[-6,-1],[-3,1],[-2,-1],[-2,-4],[-1,0],[-5,-2],[-9,-2],[-6,-7],[-8,0],[-6,0],[-4,-3],[-4,-1],[-1,0],[-2,-3],[-4,-1],[-4,-1],[-3,-4],[-1,-4],[-5,-5],[-2,-5],[-1,-5],[-3,-4],[-1,-4],[-3,-4],[-1,-2],[-3,-2],[-4,-1],[-7,1],[-3,1],[-1,-3],[-3,-9],[-3,-9],[-5,-4],[-4,-5],[-4,-3],[-7,-4],[-9,-1],[-6,0],[-5,-1],[-9,-1],[-11,-5],[-4,-3],[-14,-5],[-2,-1],[-3,-1],[-2,-1],[-2,0],[-3,-1],[-2,-2],[0,-3],[-1,-4],[-1,0],[-7,0],[-1,-4],[1,-3],[-1,-3],[-3,-2],[-5,-1],[-3,2],[-5,2],[-3,0],[-5,-2],[-2,-1],[-4,-1],[-8,-9],[-7,-3],[-3,5],[-6,4],[-3,-2],[-5,-4],[-3,-4],[-3,-3],[-3,-3],[-2,-2],[-3,-2],[-4,-1],[-5,-1],[-4,0],[-2,-2],[-1,-2],[0,-4],[-3,0],[-2,1],[-2,0],[-2,-2],[0,-2],[0,-4],[-3,0],[-3,0],[-6,-5],[-5,-4],[-20,-3],[-31,0],[-30,-13],[-24,-11],[-32,-2],[-27,5],[-12,-3],[-9,-5],[-10,-2],[-10,-1],[-11,-4],[-8,0],[-8,-6],[-6,-10],[-11,-10],[-13,-2],[-64,3],[-16,-36],[-22,-44],[-11,-21],[-16,-14],[-12,12],[-14,-10],[-15,-23],[-14,-33],[-4,0],[-7,0],[-7,-1],[-6,-5],[-6,-5],[-5,-4],[-6,-1],[-2,0],[-7,-4],[-2,-7],[0,-12],[4,-15],[-1,-3],[-1,-4],[-3,0],[-1,1],[-3,0],[-3,-5],[-2,-7],[-1,-5],[-1,-4],[-1,-3],[-5,-2],[-9,1],[-3,0],[-3,-1],[-4,-10],[3,-9],[5,-10],[4,-10],[2,-18],[6,-25],[2,-22],[1,-21],[1,-18],[-1,-15],[-1,-19],[-1,-4],[-3,-16],[-3,-36],[0,-17],[1,-21],[-1,-44],[-1,-2],[-1,-12],[2,-11],[2,-13],[-2,-17],[0,-30],[1,-17],[-6,-14],[1,-8],[4,-12],[8,-8],[3,-5],[2,-5],[3,-5],[8,-7],[3,-7],[-3,-5],[-6,-6],[0,-13],[-7,-4],[-5,3],[-11,-2],[-1,-9],[-8,-4],[-2,-10],[-1,-5],[0,-15],[3,-3],[4,-9],[2,-6],[2,-8],[-1,-8],[3,-7],[-6,-11],[2,-9],[-1,-5],[-2,-5],[-5,0],[-8,-12],[1,-3],[0,-4],[-1,-5],[-4,-1],[-6,1],[-6,3],[-2,6],[-5,1],[-6,-1],[-6,9],[-1,5],[-2,4],[-4,4],[-8,-4],[-4,-6],[1,-3],[-4,-14],[1,-8],[-3,-8],[-7,-3],[-7,0],[-2,-10],[1,-9],[-1,-12],[-8,-6],[-7,2],[-10,4],[-3,3],[-4,10],[-12,-2],[-5,9],[-3,2],[-5,5],[-5,10],[-7,-9],[-5,-13],[-5,-18],[-8,-14],[-4,-8],[-7,-13],[-6,-10],[-4,-8],[-5,-4],[-9,-10],[-6,-6],[-6,-3],[-5,-6],[-7,-7],[-10,-13],[-7,-11],[-7,-28],[-11,-20],[-9,-17],[-3,-14],[1,-12],[3,-8],[-3,-10],[-5,-13],[-4,-14],[-11,-14],[-11,-22],[-8,-11],[-15,-16],[-7,-14],[-6,-9],[-7,-8],[-6,-7],[-8,-5],[-7,-5],[-13,-4],[-11,-4],[-14,-4],[-10,-4],[-13,-1],[-10,-1],[-12,-1],[-6,-5],[-18,-8],[-12,-4],[-8,-2],[-5,-3],[-4,-3],[-7,-2],[-14,1],[-4,7],[-5,0],[-14,-1],[-4,2],[-2,9],[1,10],[-2,10],[-5,13],[-4,-6],[-7,-11],[-4,-8],[-7,-12],[-8,-5],[-15,-5],[-10,3],[-12,8],[-7,11],[-1,5],[-8,30],[-6,11],[-3,13],[-15,4],[-9,4],[-6,8],[-3,11],[-2,3],[-12,5],[-10,2],[-12,2],[-9,1],[-14,-1],[-14,-6],[-19,9],[-5,5],[-7,0],[-8,-3],[-8,-2],[-8,2],[-7,11],[-3,12],[-3,8],[-7,1],[-13,2],[-18,1],[-23,-15],[-132,-102],[-16,-3],[-10,-15],[-12,-25],[-3,-11],[-9,-22],[-10,-10],[-6,-8],[-11,-8],[-11,-3],[-7,-1],[-10,-2],[-7,-15],[-2,-2],[-2,-9],[0,-6],[-2,-4],[-5,-2],[-4,-3],[-1,-4],[-1,-3],[-5,-1],[-2,1],[-4,-1],[-1,-1],[-3,3],[-2,-2],[-3,-3],[-2,-1],[-6,-1],[-7,-3],[-7,6],[-7,2],[-12,1],[-4,-9],[-5,-6],[-5,0],[-11,1],[-5,6],[-2,10],[-2,6],[-2,7],[-6,12],[-18,4],[-8,6],[-6,3],[-11,-7],[-15,-11],[-12,-12],[-21,-5],[-14,-11],[-11,-3],[-6,-3],[-8,-4],[-12,-2],[-31,-14],[-13,-10],[-26,-6],[-9,-8],[-12,-3],[-17,-15],[-10,-7],[-4,-12],[-3,-14],[-3,-10],[-7,-16],[-2,-3],[-1,-5],[-2,-5],[-1,-5],[0,-6],[-3,-11],[-5,-3],[-4,9],[1,4],[0,7],[-7,-2],[-4,-7],[-1,-4],[1,-12],[-2,-7],[3,-6],[1,-8],[-4,-14],[-2,-2],[-2,-6],[-4,-2],[-4,-5],[0,-9],[-3,-3],[-5,-3],[-4,1],[-1,5],[-4,2],[-9,-8],[-4,3],[-4,-1],[-3,-3],[-5,-8],[-4,3],[-2,3],[-9,-1],[-4,-3],[1,-5],[3,-5],[-4,-8],[-5,-7],[-4,-3],[-7,-2],[-4,-6],[-8,2],[-4,-2],[-6,-16],[-3,-7],[-1,-9],[6,0],[9,4],[4,-4],[-5,-18],[1,-3],[-2,-8],[-2,-4],[-1,-5],[2,-5],[2,-5],[-4,-8],[0,-5],[2,-5],[5,-5],[2,-6],[-2,-11],[-10,-6],[-4,-1],[-7,4],[-4,3],[-4,0],[-1,-3],[-2,-8],[-7,-8],[-10,2],[-5,2],[-4,-4],[-7,-6],[-7,-1],[-2,-1],[-5,11],[1,6],[3,10],[1,9],[-8,2],[-8,0],[-8,-4],[-4,3],[-5,-4],[-8,-9],[-7,-1],[-2,-4],[3,-13],[8,2],[13,-6],[4,-9],[6,-4],[1,-10],[1,-6],[4,0],[3,3],[3,6],[6,4],[8,-1],[3,-8],[1,-12],[-4,-9],[-6,-8],[-1,-4],[-9,-8],[-6,1],[-8,4],[-7,0],[-5,10],[-3,5],[-4,6],[0,7],[-5,4],[-2,6],[-3,5],[-6,3],[-10,-3],[-3,-6],[-1,-7],[-7,-12],[-7,-5],[-8,0],[-9,3],[-3,3],[-5,17],[-5,1],[-9,0],[-1,0],[-3,9],[-2,5],[2,12],[3,9],[1,8],[-9,0],[-4,-4],[-8,-6],[-6,-2],[-5,-5],[-1,-10],[-5,-3],[-4,0],[-3,-4],[5,-8],[1,-9],[1,-10],[-2,-7],[-9,-13],[-7,-6],[-3,-8],[6,-11],[-1,-9],[-6,-3],[-6,-2],[-2,-1],[-7,3],[-1,3],[-1,8],[-2,4],[0,7],[0,6],[-4,7],[-4,-3],[-5,-11],[0,-10],[1,-6],[-5,-17],[-6,-4],[-3,-5],[2,-8],[-1,-5],[-2,-14],[8,-4],[5,1],[5,-3],[3,-8],[-3,-9],[-6,-4],[-3,-2],[-6,2],[-2,0],[-3,8],[1,4],[-1,8],[-4,1],[-10,-9],[-7,0],[-11,-4],[-5,1],[-7,-5],[-9,-6],[-1,-2],[2,-6],[4,-2],[4,-7],[-3,-11],[-4,-10],[-4,-5],[-8,0],[0,-6],[-8,-6],[-3,-4],[-5,-8],[-8,0],[-5,-5],[-1,-10],[2,-6],[-1,-12],[-2,-11],[3,-9],[3,-4],[4,-3],[2,-3],[1,-9],[-2,-7],[-4,-5],[-6,1],[-4,10],[-3,0],[-14,-6],[-8,1],[-2,7],[-2,-3],[0,-6],[-8,-9],[-4,-7],[-3,-8],[-4,-2],[-9,5],[-3,-4],[-5,-11],[-5,1],[-9,9],[-5,10],[-1,8],[5,3],[6,2],[8,5],[5,0],[4,6],[2,8],[-1,6],[-6,2],[-2,5],[-6,5],[-9,5],[-3,0],[-10,0],[-5,-7],[-2,-11],[-8,-7],[-2,-8],[-8,-7],[-10,-2],[-8,3],[-6,10],[1,7],[-2,10],[-1,8],[-15,-9],[-9,-9],[-12,-8],[-11,3],[-8,-7],[-16,0],[-7,6],[-11,-9],[-12,-5],[-14,-10],[-15,-8],[-13,-15],[-14,-5],[-10,-1],[-8,-6],[-7,-16],[-8,3],[-5,0],[-18,-11],[-2,-7],[-12,-21],[-4,-11],[-1,-8],[1,-18],[7,-6],[6,-7],[5,-6],[3,-4],[3,-6],[-1,-11],[-6,-5],[-5,-4],[-6,-2],[-9,0],[-6,2],[-4,5],[-3,8],[-1,9],[2,9],[1,8],[0,7],[-3,1],[-7,0],[-1,10],[-6,0],[-6,-6],[-8,-5],[-3,-10],[3,-5],[3,-6],[3,-10],[1,-9],[0,-10],[-2,-10],[-3,-5],[-3,-4],[-8,-1],[-4,1],[-2,8],[1,11],[2,10],[3,8],[0,8],[0,6],[-3,6],[-20,-4],[-7,-3],[-2,-4],[-16,-6],[-7,-3],[-2,-12],[-5,-9],[-3,-8],[-5,-14],[-6,-4],[-5,-7],[-3,-11],[-4,-8],[-9,-11],[-1,-3],[-10,-5],[-6,-1],[-3,-3],[-4,-8],[-6,-4],[-1,-5],[-7,-5],[-4,-3],[-1,-12],[-5,-9],[-6,-2],[-4,-5],[-1,-9],[-7,-9],[-5,-1],[-4,-4],[-6,-6],[1,-2],[0,-10],[-4,-4],[-6,-4],[-3,-9],[-2,-1],[-9,-9],[-2,-9],[1,-6],[3,-7],[-3,-11],[-2,-2],[-3,-8],[-1,-7],[2,-2],[4,-5],[-1,-9],[-2,-5],[0,-7],[4,-5],[0,-7],[-5,-11],[-5,-4],[-6,-4],[-2,-9],[-3,-10],[3,-6],[4,-6],[-6,-9],[1,-6],[3,-15],[-2,-11],[0,-14],[-2,-12],[-4,-9],[-5,-6],[-9,-15],[-6,-12],[-7,-4],[-10,-12],[-6,-5],[-5,-1],[-7,0],[-9,3],[-3,6],[-8,3],[-5,-5],[-9,-4],[-4,8],[-10,-2],[-7,-5],[-5,-10],[-13,-8],[-6,-17],[-5,-17],[-7,-16],[-5,-6],[-4,-11],[1,-8],[0,-9],[-2,-13],[-8,-9],[-4,-9],[-6,-15],[-5,-8],[-6,-13],[0,-10],[0,-10],[-6,-13],[-8,-11],[-10,-18],[2,-12],[4,-10],[1,-16],[4,-14],[4,-7],[4,-6],[3,-10],[-1,-15],[3,-14],[5,-11],[1,-10],[-2,-19],[-4,-7],[-6,-14],[-4,-10],[-9,-10],[-3,-8],[-3,-8],[-9,-11],[-11,-4],[-9,-2],[-6,-1],[-5,-2],[-8,-13],[-9,-6],[-7,-4],[-6,-8],[-2,-15],[9,-14],[5,-5],[8,-4],[12,-4],[9,-4],[10,-8],[8,-13],[-1,-13],[6,-20],[1,-8],[0,-16],[2,-19],[3,-10],[7,-7],[7,-6],[6,-8],[3,-7],[5,-13],[3,-14],[0,-16],[2,-14],[-2,-23],[-1,-16],[8,-8],[6,-4],[3,-9],[2,-7],[-2,-13],[0,-6],[8,-10],[2,-18],[-7,-10],[-5,-5],[0,-13],[5,-9],[3,-7],[0,-11],[-4,-11],[-5,0],[-7,-4],[2,-9],[0,-20],[6,-3],[2,-10],[7,-10],[5,-9],[2,-9],[4,-15],[4,-8],[0,-8],[2,-13],[8,-13],[3,-19],[-3,-14],[-4,-8],[-3,-15],[9,-1],[6,-3],[7,-7],[7,-1],[6,-5],[4,-8],[1,-13],[2,-8],[0,-10],[0,-16],[6,-3],[7,-7],[2,-12],[-4,-8],[0,-4],[-1,-10],[-5,-9],[-2,-9],[2,-3],[1,-5],[-1,-10],[6,1],[4,-2],[4,0],[1,-8],[1,-7],[5,0],[4,-4],[2,-2],[2,-11],[3,-6],[9,-7],[4,-6],[1,-8],[-4,-6],[-5,-13],[2,-8],[0,-9],[-5,-13],[-6,-12],[-8,-10],[4,-18],[6,-3],[5,-8],[3,-6],[0,-5],[2,-4],[-1,-5],[-1,-5],[6,-1],[3,-1],[7,-5],[1,-11],[3,-4],[4,-4],[1,-6],[1,-11],[2,-10],[5,-5],[4,-17],[-3,-5],[8,0],[5,-13],[6,0],[5,-7],[0,-10],[0,-12],[-4,-10],[-4,-5],[3,-10],[-5,-5],[-4,-10],[0,-16],[-5,-6],[0,-6],[6,-8],[-2,-13],[-2,-6],[1,-9],[-2,-17],[1,-15],[3,-32],[4,-26],[0,-6],[-3,-15],[5,-3],[8,-3],[-1,-15],[-1,-12],[4,-5],[-1,-14],[4,-6],[8,7],[8,4],[10,-4],[16,1],[5,-5],[4,-4],[9,-10],[10,7],[3,-4],[9,-9],[2,-8],[5,-17],[6,1],[13,-1],[8,-5],[-2,-10],[8,-19],[6,8],[7,8],[3,4],[8,7],[9,-1],[12,-3],[10,-10],[5,-7],[4,-4],[6,-9],[3,-8],[-2,-8],[4,-14],[7,-8],[7,-10],[1,-19],[-4,-13],[3,-12],[-4,-15],[-2,-15],[-3,-7],[-5,-27],[-1,-9],[1,-11],[-4,-9],[-3,-5],[-1,-9],[-6,-3],[-5,-2],[-3,-6],[-1,-11],[-6,-8],[-6,-6],[-4,-9],[-1,-10],[-4,-14],[-8,-11],[1,-5],[4,-5],[0,-13],[-2,-13],[-5,-7],[-3,-12],[-7,-6],[-4,-7],[0,-9],[-2,-12],[-11,-20],[-1,-8],[-2,-16],[-5,-17],[-7,-11],[-7,-9],[-8,-11],[-5,-7],[1,-6],[-3,-15],[-6,-10],[-2,-14],[3,-9],[3,-11],[-2,-13],[-4,-16],[1,-14],[-1,-16],[-7,-7],[-9,-4],[-11,3],[-5,12],[-11,7],[-11,-9],[-4,-4],[-5,-6],[-5,-6],[-5,-5],[-6,-11],[-14,-9],[-9,-7],[-8,-1],[-6,1],[-3,13],[0,18],[-8,7],[0,9],[-18,16],[-7,16],[-2,20],[0,16],[-10,27],[-10,18],[-8,17],[-7,18],[-1,2],[-15,2],[-3,5],[-4,13],[-1,6],[-2,15],[-2,7],[-1,7],[0,14],[-1,8],[2,9],[2,6],[1,9],[0,7],[0,6],[-2,11],[-1,15],[1,20],[0,5],[2,6],[7,4],[7,2],[4,4],[0,5],[-3,7],[-3,10],[-1,8],[0,14],[-1,11],[-3,25],[0,11],[1,13],[-2,15],[-11,5],[-4,19],[-3,15],[-10,14],[-18,4],[-13,6],[-6,7],[-7,5],[-9,2],[-7,5],[-5,9],[1,7],[-3,12],[-5,15],[-7,9],[-11,1],[-10,-5],[-5,-8],[-4,-12],[-4,-14],[-5,-8],[-8,-7],[-10,-1],[-10,-5],[-10,-7],[-4,-10],[-12,-20],[-5,-3],[-10,-11],[-8,-8],[-7,-6],[-15,-5],[-9,0],[-9,-8],[-8,-9],[-12,-10],[-10,-2],[-7,-5],[-6,-8],[-8,-5],[-16,-10],[-8,-4],[-9,-4],[-11,-9],[-9,-4],[-28,-1],[-8,-6],[-10,-2],[-9,5],[-7,4],[-9,-5],[-12,1],[-8,5],[-16,6],[-9,0],[-11,-6],[-14,0],[-8,1],[-5,7],[-10,6],[-2,7],[-9,14],[-13,4],[-12,-1],[-6,6],[-5,15],[0,14],[-3,4],[-4,11],[-5,11],[-7,4],[-5,4],[-3,15],[-1,15],[-5,9],[-8,3],[-11,2],[-6,5],[-4,18],[2,19],[-1,13],[-6,9],[-7,1],[-8,1],[-9,0],[-8,-2],[-11,-6],[-9,0],[-7,8],[-2,19],[5,15],[6,16],[0,15],[-11,3],[-5,9],[-7,3],[-25,3],[-8,7],[-10,14],[-5,4],[-14,-11],[-15,-10],[-9,3],[-12,16],[-14,9],[-5,9],[-16,-4],[-14,10],[-8,5],[-11,-5],[-6,-4],[-15,-17],[-6,-13],[-7,-18],[-21,-4],[-8,0],[-20,-8],[-11,-12],[-4,-4],[0,-7],[4,-9],[-13,-18],[-6,-11],[-6,-12],[-3,-14],[-11,-12],[-5,-10],[-3,-12],[-8,-11],[-6,-4],[-5,-11],[-3,-17],[-6,-20],[-8,-7],[-14,3],[-2,5],[-8,-1],[-5,-3],[-9,-1],[-2,4],[-2,18],[1,9],[-3,11],[-5,0],[-8,-11],[-6,-9],[-9,-8],[-10,1],[-3,7],[-1,18],[5,18],[8,18],[7,13],[3,16],[-3,8],[-10,1],[-12,-8],[-13,-11],[-26,-34],[-5,-18],[-10,-23],[-6,-12],[-11,-15],[-1,-16],[-7,-9],[-4,-8],[-11,-7],[-6,-4],[-8,1],[-6,-3],[-9,-10],[-9,2],[-4,12],[-6,3],[-6,7],[0,10],[1,11],[0,13],[-7,7],[-2,5],[-4,5],[-7,-2],[-9,-7],[-6,2],[-8,0],[-4,-4],[-5,-5],[-2,-5],[0,-7],[0,-10],[-4,-6],[-7,-1],[-3,11],[-7,2],[-8,-10],[-5,-10],[-7,-6],[-3,-7],[-1,-10],[0,-10],[0,-10],[-3,-9],[-6,-15],[-6,-13],[-5,-7],[-6,-13],[-12,-20],[-12,-20],[-2,-12],[-10,-24],[-10,-21],[-15,-42],[-11,-18],[-7,-14],[-16,-14],[-13,-13],[-9,-10],[-15,-9],[-8,-5],[-20,-13],[-7,-12],[-8,-16],[-4,-13],[-2,-18],[-4,-18],[-5,-13],[-4,-25],[-8,-19],[-6,-7],[-6,-15],[-2,-14],[-8,-10],[-4,-3],[-8,-6],[-4,-12],[-1,-7],[2,-11],[-3,-8],[-8,-15],[-6,-7],[-8,-8],[-10,-3],[-11,0],[-9,1],[-13,15],[-10,5],[-11,1],[-11,-4],[-13,-13],[-9,-10],[-15,-8],[-8,-3],[-15,1],[-9,-1],[-14,-7],[-12,-16],[-5,-12],[-10,-14],[-12,-5],[-21,-4],[-14,5],[-9,8],[-6,10],[-5,7],[-5,5],[-4,3],[-58,-4],[-15,0],[-20,-2],[-21,-10],[-18,-9],[-19,-3],[-33,-3],[-17,-1],[-11,-4],[-10,-2],[-15,-3],[-12,0],[-37,0],[-18,12],[-36,15],[-12,4],[-9,3],[-26,0],[-17,0],[-22,3],[-23,5],[-21,4],[-17,9],[-9,3],[-16,14],[-10,12],[-171,137],[-42,29],[-49,37],[-12,2],[-10,11],[-9,14],[-4,18],[0,14],[3,21],[2,17],[2,17],[0,17],[0,17],[1,18],[-1,17],[-1,17],[-3,17],[-1,17],[0,18],[-5,16],[-12,3],[-12,2],[-12,1],[-13,1],[-12,0],[-13,-1],[-12,-1],[-12,-1],[-13,-1],[-12,-1],[-13,-2],[-12,-2],[-12,-2],[-12,-3],[-13,-3],[-12,-4],[-12,-4],[-12,-4],[-12,-4],[-12,-4],[-12,-4],[-12,-4],[-12,-5],[-12,-5],[-12,-6],[-11,-5],[-12,-6],[-12,-5],[-12,-5],[-12,-4],[-12,-3],[-13,-1],[-12,0],[-12,0],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,0],[-13,0],[-12,-1],[-12,-1],[-13,-1],[-12,-1],[-13,-1],[-12,0],[-12,-1],[-13,0],[-12,-1],[-13,0],[-12,0],[-12,-1],[-13,-2],[-12,-2],[-12,-2],[-13,-1],[-12,-1],[-13,-1],[-12,-1],[-12,-1],[-13,-1],[-12,-1],[-13,0],[-12,0],[-12,-1],[-13,0],[-12,0],[-12,-2],[-13,-2],[-12,-3],[-12,-3],[-12,-4],[-12,-4],[-12,-4],[-13,-4],[-12,-3],[-12,-4],[-12,-4],[-12,-5],[-12,-5],[-12,-5],[-11,-5],[-13,-3],[-12,-2],[-12,0],[-13,-2],[-12,-4],[-12,-4],[-8,-3],[-4,-2],[-12,-4],[-12,-5],[-12,-4],[-12,-3],[-12,-1],[-13,-1],[-12,0],[-13,-2],[-12,-1],[-12,-1],[-13,-1],[-12,-2],[-12,-1],[-13,-3],[-12,-4],[-12,-5],[-12,-5],[-12,-4],[-12,-4],[-12,-3],[-12,-3],[-12,-3],[-12,-4],[-12,-4],[-12,-5],[-12,-5],[-12,-4],[-13,-2],[-12,-2],[-12,0],[-13,0],[-12,1],[-13,1],[-12,0],[-12,2],[-13,1],[-12,2],[-12,1],[-13,1],[-12,1],[-13,1],[-12,0],[-12,1],[-13,1],[-12,2],[-13,1],[-12,1],[-12,1],[-13,0],[-12,1],[-13,1],[-12,1],[-12,1],[-13,0],[-12,1],[-13,1],[-12,1],[-12,0],[-13,-3],[-12,-4],[-12,-4],[-10,-8],[-12,-6],[-12,-4],[-12,-4],[-12,-1],[-12,-2],[-13,-3],[-12,-3],[-12,-4],[-12,-4],[-12,-3],[-13,-3],[-12,-4],[-11,-5],[-12,-4],[-13,-3],[-12,-2],[-12,-1],[-13,-1],[-12,1],[-13,-2],[-12,-2],[-12,-4],[-12,-3],[-13,-1],[-12,3],[-12,2],[-12,3],[-12,4],[-13,4],[-12,1],[-12,0],[-13,-2],[-12,-4],[-12,-4],[-12,-2],[-13,0],[-12,0],[-12,1],[-13,1],[-12,0],[-13,1],[-12,1],[-12,1],[-13,1],[-12,0],[-13,1],[-12,0],[-12,-3],[-12,-4],[-12,-3],[-13,0],[-12,1],[-13,0],[-12,1],[-12,1],[-13,0],[-12,1],[-13,1],[-12,1],[-12,0],[-13,1],[-12,1],[-13,1],[-12,0],[-12,1],[-13,1],[-12,1],[-13,0],[-12,1],[-12,0],[-13,1],[-12,1],[-13,1],[-12,1],[-12,2],[-13,3],[-12,3],[-12,4],[-12,5],[-11,6],[-12,6],[-12,6],[-11,6],[-12,5],[-12,4],[-12,5],[-12,5],[-12,3],[-12,3],[-13,4],[-12,4],[-11,6],[-12,5],[-12,4],[-12,4],[-12,5],[-12,3],[-13,2],[-12,2],[-12,3],[-12,5],[-12,2],[-13,3],[-12,3],[-3,1],[-9,3],[-12,6],[-11,7],[-12,6],[-11,7],[-12,6],[-12,5],[-12,4],[-12,4],[-12,4],[-12,4],[-12,4],[-12,5],[-11,6],[-12,7],[-12,5],[-12,5],[-11,6],[-12,5],[-12,4],[-12,3],[-13,3],[-12,4],[-12,5],[-12,4],[-12,4],[-12,4],[-12,5],[-12,5],[-12,5],[-11,5],[-13,3],[-12,2],[-12,1],[-13,0],[-12,1],[-13,1],[-12,1],[-12,1],[-13,3],[-12,4],[-12,4],[-11,6],[-12,5],[-12,6],[-12,6],[-11,6],[-12,6],[-12,5],[-11,7],[-12,6],[-7,4],[-4,3],[-11,8],[-11,7],[-15,9],[-8,3],[-7,7],[-5,3],[-7,5],[-15,10],[-10,11],[-12,3],[-13,2],[-12,3],[-12,3],[-12,5],[-12,5],[-11,7],[-12,7],[-11,6],[-11,7],[-12,6],[-12,3],[-13,3],[-11,6],[-12,7],[-11,7],[-12,6],[-11,6],[-12,4],[-13,1],[-12,2],[-12,5],[-12,5],[-12,6],[-11,6],[-11,8],[-11,9],[-11,9],[-10,9],[-12,6],[-12,4],[-12,3],[-12,3],[-12,4],[-3,1],[-9,5],[-10,10],[-11,9],[-11,8],[-11,7],[-11,8],[-11,8],[-11,9],[-11,6],[-12,5],[-12,7],[-11,7],[-11,7],[-12,5],[-13,1],[-12,2],[-12,1],[-13,1],[-12,0],[-13,0],[-12,0],[-12,1],[-13,0],[-12,0],[-13,0],[-12,1],[-12,1],[-13,1],[-12,1],[-12,2],[-13,1],[-12,2],[-13,2],[-12,2],[-12,3],[-12,3],[-12,4],[-12,6],[-11,8],[-11,7],[-12,6],[-12,6],[-11,6],[-12,5],[-12,6],[-12,6],[-11,7],[-11,7],[-11,7],[-12,7],[-11,7],[-11,8],[-11,9],[-11,6],[-12,6],[-13,1],[-12,2],[-12,1],[-13,2],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,3],[-12,3],[-12,4],[-12,4],[-12,2],[-13,1],[-12,1],[-13,1],[-12,1],[-12,2],[-12,4],[-12,6],[-12,7],[-11,7],[-11,7],[-12,6],[-12,5],[-12,4],[-12,3],[-12,5],[-11,6],[-12,6],[-12,5],[-12,5],[-12,6],[-11,5],[-12,6],[-12,6],[-12,4],[-12,2],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,3],[-12,4],[-12,5],[-12,3],[-16,9],[-12,8],[-10,6],[-14,7],[-12,3],[-12,5],[-12,6],[-11,6],[-12,6],[-11,8],[-11,8],[-11,9],[-11,8],[-11,8],[-11,6],[-12,4],[-12,4],[-12,5],[-12,4],[-13,2],[-12,-2],[-12,-2],[-6,0],[-7,1],[-12,0],[-13,0],[-12,0],[-12,0],[-13,0],[-12,1],[-13,0],[-12,1],[-12,1],[-13,2],[-12,2],[-12,2],[-13,2],[-12,2],[-12,4],[-12,4],[-12,4],[-23,10],[-24,12],[-12,5],[-12,4],[-12,4],[-12,4],[-12,5],[-12,6],[-11,8],[-11,8],[-11,8],[-11,7],[-12,4],[-12,4],[-12,5],[-12,5],[-12,5],[-12,5],[-12,4],[-12,3],[-15,3],[-3,1],[-7,0],[-12,1],[-13,1],[-12,2],[-12,1],[-13,3],[-12,4],[-12,6],[-12,3],[-12,3],[-3,1],[-9,2],[-12,3],[-12,5],[-12,5],[-12,5],[-12,4],[-12,4],[-12,3],[-13,3],[-12,2],[-12,2],[-13,2],[-12,1],[-12,-1],[-13,1],[-12,2],[-12,2],[-13,1],[-12,2],[-12,1],[-13,4],[-12,4],[-12,4],[-12,3],[-12,2],[-13,2],[-12,2],[-12,1],[-13,2],[-12,1],[-12,2],[-13,3],[-12,2],[-12,4],[-12,2],[-13,2],[-12,3],[-12,3],[-12,3],[-13,3],[-11,6],[-12,7],[-11,7],[-11,6],[-12,6],[-12,6],[-6,3],[-5,3],[-12,6],[-12,6],[-12,5],[-12,4],[-12,3],[-12,1],[-13,1],[-12,0],[-12,-3],[-13,-3],[-12,-4],[-12,-2],[-12,0],[-13,1],[-12,0],[-12,4],[-12,7],[-11,7],[-11,8],[-11,7],[-11,8],[-12,7],[-11,7],[-11,7],[-12,4],[-13,4],[-12,2],[-12,1],[-13,-1],[-12,0],[-12,1],[-13,2],[-12,1],[-12,2],[-13,1],[-12,1],[-27,-10],[-27,-4],[-12,2],[-13,2],[-12,0],[-12,0],[-13,0],[-12,4],[-12,4],[-12,2],[-12,2],[-13,2],[-12,1],[-13,1],[-12,1],[-12,1],[-13,2],[-12,1],[-12,3],[-13,3],[-12,3],[-12,4],[-12,3],[-12,4],[-12,5],[-12,4],[-12,5],[-12,5],[-12,6],[-11,6],[-12,5],[-12,4],[-12,4],[-13,2],[-12,2],[-12,2],[-13,1],[-12,1],[-12,1],[-13,2],[-12,1],[-12,1],[-13,1],[-12,1],[-13,2],[-12,2],[-12,3],[-12,4],[-12,5],[-12,4],[-12,2],[-13,1],[-12,1],[-13,1],[-12,0],[-12,-2],[-13,-2],[-12,0],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,0],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,2],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-12,1],[-13,2],[-12,1],[-13,1],[-12,1],[-12,1],[-13,1],[-12,1],[-13,1],[-12,1],[-12,2],[-13,2],[-12,4],[-12,4],[-11,6],[-12,8],[-10,9],[-11,9],[-10,9],[-11,7],[-12,8],[-11,7],[-11,7],[-12,5],[-12,3],[-13,0],[-12,-3],[-12,-3],[-13,-2],[-12,-3],[-12,-3],[-12,-3],[-12,-4],[-12,-5],[-12,-4],[-13,-2],[-12,0],[-12,0],[-13,1],[-12,1],[-12,1],[-13,2],[-12,1],[-13,0],[-18,-1],[-14,0],[-13,-2],[-12,1],[-13,1],[-10,5],[-9,6],[-1,1],[-7,4],[-24,4],[-24,10],[-24,7],[-25,5],[-25,3],[-24,4],[-25,4],[-25,2],[-24,2],[-25,2],[-25,3],[-25,3],[-24,3],[-25,3],[-25,3],[-24,5],[-25,8],[-23,12],[-24,10],[-24,9],[-24,7],[-25,2],[-24,2],[-25,1],[-25,1],[-25,0],[-24,-4],[-25,-5],[-25,-4],[-24,-5],[-25,-2],[-25,-2],[-25,-3],[-24,-4],[-25,-1],[-25,1],[-25,2],[-24,1],[-25,2],[-25,2],[-25,2],[-24,5],[-25,5],[-24,5],[-24,8],[-25,9],[-24,5],[-25,3],[-25,1],[-24,1],[-25,2],[-25,2],[-25,2],[-24,2],[-25,3],[-25,3],[-25,4],[-24,3],[-25,2],[-25,1],[-25,1],[-24,2],[-25,6],[-24,7],[-25,2],[-25,2],[-25,1],[-24,-1],[-25,-1],[-25,-1],[-25,-1],[-25,-1],[-24,1],[-25,1],[-25,2],[-25,5],[-24,8],[-24,6],[-25,4],[-24,6],[-25,6],[-24,5],[-24,1],[-24,-8],[-23,-13],[-24,-12],[-24,-5],[-25,0],[-25,1],[-25,1],[-25,3],[-24,6],[-25,5],[-24,1],[-25,1],[-25,0],[-25,1],[-25,0],[-25,0],[-24,-3],[-25,-2],[-25,-3],[-24,-6],[-24,-10],[-24,-7],[-25,-3],[-25,1],[-19,1],[-6,0],[-24,2],[-25,4],[-24,7],[-25,6],[-24,4],[-25,1],[-25,1],[-25,0],[-25,-1],[-24,-1],[-25,-1],[-13,0],[-12,0],[-25,1],[-25,0],[-24,4],[-25,1],[-25,0],[-25,1],[-25,1],[-24,1],[-25,0],[-25,1],[-25,0],[-25,1],[-25,0],[-24,1],[-25,1],[-25,1],[-25,1],[-25,2],[-24,3],[-25,2],[-25,2],[-25,0],[-24,0],[-25,-6],[-24,-7],[-25,-7],[-26,-1],[-25,0],[-25,0],[-25,0],[-25,0],[-24,-4],[-25,-6],[-25,-1],[-24,1],[-25,0],[-25,7],[-24,7],[-23,12],[-24,11],[-21,17],[-23,14],[-25,3],[-24,-7],[-24,-10],[-24,-5],[-25,-7],[-22,-9],[-2,0],[-24,-8],[-24,-6],[-25,-2],[-25,-1],[-25,0],[-25,-1],[-24,0],[-25,0],[-25,0],[-25,-2],[-24,-9],[-24,-10],[-24,-6],[-25,-2],[-25,0],[-24,2],[-25,3],[-25,5],[-24,7],[-24,6],[-25,3],[-25,1],[-25,3],[-24,6],[-25,2],[-25,-1],[-24,-2],[-25,-4],[-24,-8],[-23,-13],[-25,-7],[-24,-2],[-25,1],[-25,0],[-25,1],[-25,-1],[-24,-4],[-25,-4],[-25,-1],[-24,0],[-25,0],[-25,0],[-25,0],[-25,2],[-24,3],[-25,4],[-25,4],[-12,2],[-12,1],[-25,2],[-25,1],[-25,0],[-25,1],[-24,2],[-25,4],[-25,5],[-24,2],[-25,1],[-25,1],[-25,0],[-25,0],[-24,0],[-25,0],[-25,-7],[-24,-4],[-27,0],[-24,-8],[-25,-6],[-24,-6],[-25,-4],[-25,-3],[-24,-3],[-25,-2],[-25,-1],[-25,1],[-25,3],[-24,6],[-24,9],[-24,6],[-25,4],[-25,0],[-25,-3],[-24,-5],[-25,-6],[-24,-5],[-25,-5],[-25,-3],[-24,-2],[-25,-2],[-25,0],[-25,0],[-25,0],[-24,1],[-25,1],[-25,0],[-25,1],[-25,1],[-24,1],[-25,0],[-25,0],[-25,-4],[-24,-4],[-25,-1],[-25,-2],[-25,-4],[-24,2],[-25,4],[-25,0],[-25,-3],[-24,-6],[-25,1],[-25,4],[-24,3],[-25,1],[-25,-1],[-25,-3],[-24,-3],[-25,-1],[-25,-1],[-25,-1],[-24,-3],[-25,-8],[-24,-9],[-24,-5],[-25,-4],[-24,-4],[-25,-4],[-25,-2],[-25,0],[-25,0],[-24,-3],[-25,-5],[-25,-3],[-24,-2],[-25,-1],[-25,0],[-25,0],[-25,-2],[-24,-3],[-25,-2],[-25,0],[-25,1],[-25,0],[-24,-1],[-25,-3],[-15,3],[-30,5],[-15,1],[-10,-2],[-16,-5],[-14,-5],[-24,2],[-23,7],[-20,-1],[-13,0],[-12,0],[-14,2],[-9,0],[-13,-1],[-9,2],[-12,3],[-11,2],[-14,-3],[-18,0],[-14,0],[-12,2],[-6,0],[-7,1],[-14,2],[-12,0],[-14,2],[-13,1],[-13,2],[-14,1],[-13,0],[-13,0],[-14,0],[-13,-1],[-14,-2],[-14,-2],[-14,-4],[-13,-2],[-14,-4],[-13,-5],[-14,-3],[-12,-2],[-14,-1],[-12,-2],[-12,-3],[-6,0],[-7,-1],[-13,-2],[-12,-3],[-14,-1],[-13,-1],[-14,-1],[-15,-1],[-14,1],[-15,1],[-13,0],[-15,0],[-15,0],[-15,1],[-13,0],[-14,-3],[-12,-3],[-14,0],[-13,1],[-13,-2],[-13,-1],[-14,0],[-13,0],[-12,0],[-14,0],[-6,-1],[-8,0],[-14,0],[-15,0],[-13,0],[-13,0],[-12,-1],[-15,-2],[-13,-2],[-14,-2],[-13,-1],[-13,-2],[-14,-1],[-13,1],[-12,1],[-6,1],[-7,0],[-14,1],[-13,0],[-15,-1],[-14,-1],[-14,-1],[-14,-1],[-14,-1],[-14,0],[-13,2],[-13,1],[-14,1],[-15,-1],[-15,-1],[-13,0],[-13,-1],[-12,-5],[-13,-1],[-14,-3],[-14,-3],[-13,-2],[-15,-3],[-13,-1],[-15,-1],[-12,-2],[-13,-2],[-13,-1],[-13,-1],[-14,-1],[-14,0],[-14,-1],[-14,-2],[-12,-1],[-14,-1],[-13,-4],[-13,-1],[-12,0],[-13,1],[-13,0],[-14,0],[-14,-1],[-13,-2],[-14,-2],[-14,0],[-13,1],[-14,1],[-12,0],[-14,-1],[-14,-2],[-12,0],[-14,1],[-14,-1],[-13,-1],[-13,-2],[-13,-3],[-14,-3],[-13,-2],[-12,-1],[-14,1],[-14,1],[-13,-1],[-14,0],[-14,-1],[-13,-4],[-14,-2],[-13,-1],[-13,-2],[-12,0],[-13,1],[-13,1],[-13,-1],[-13,-3],[-13,-1],[-13,1],[-23,0],[-29,-1],[-18,-1],[-35,-2],[-35,-3],[-49,-4],[-48,-6],[-35,-12],[-34,-12],[-46,-10],[-20,-3],[-65,-12],[-85,-18],[-70,-15],[-26,-10],[-21,-8],[-14,-6],[-20,-3],[-16,-3],[-17,-1],[-13,-1],[-14,-2],[-14,-2],[-14,-2],[-14,-2],[-14,-2],[-13,-2],[-11,-2],[-2,-1],[-13,-1],[-13,-1],[-12,-1],[-4,0],[-11,-1],[-13,-2],[-15,-3],[-13,-2],[-13,-3],[-13,-3],[-13,-2],[-14,-3],[-14,-3],[-14,-3],[-12,-2],[-14,-2],[-13,-2],[-13,-1],[-13,-1],[-12,0],[-14,0],[-14,0],[-14,1],[-15,0],[-15,0],[-15,0],[-15,0],[-14,-2],[-14,-2],[-15,-4],[-15,-3],[-12,-1],[-13,0],[-15,-1],[-15,-1],[-13,0],[-13,-1],[-14,-2],[-12,-3],[-13,-3],[-14,-3],[-12,-1],[-15,-1],[-14,0],[-13,-2],[-13,-2],[-14,-2],[-13,-2],[-13,-2],[-13,-3],[-13,-2],[-14,-2],[-13,-2],[-13,-2],[-13,-3],[-14,-2],[-14,-3],[-15,-2],[-13,-3],[-15,-4],[-12,-3],[-13,-2],[-14,-2],[-12,-1],[-13,-2],[-14,-3],[-13,-3],[-13,-4],[-15,-2],[-13,-2],[-13,-2],[-13,-2],[-14,-1],[-13,-1],[-14,-2],[-15,-2],[-13,-3],[-14,-2],[-13,-2],[-14,-2],[-14,-1],[-13,-1],[-13,-2],[-13,-1],[-14,-2],[-13,-3],[-13,-1],[-14,-4],[-15,-5],[-12,-2],[-13,-4],[-12,-3],[-15,-1],[-14,-3],[-13,-2],[-14,-2],[-14,-1],[-14,-2],[-14,-2],[-13,-1],[-14,-1],[-12,-2],[-13,-2],[-23,-3],[-6,-1],[-12,0],[-14,-1],[-12,-1],[-14,-2],[-14,-1],[-14,0],[-13,0],[-14,0],[-14,-2],[-12,-1],[-15,-2],[-13,-2],[-13,-3],[-13,-4],[-13,-2],[-13,-4],[-1,0],[-11,-1],[-13,0],[-13,0],[-15,0],[-14,0],[-14,-1],[-14,-2],[-14,-2],[-14,-3],[-14,-3],[-13,-2],[-13,-4],[-14,-4],[-13,-2],[-13,-4],[-13,-4],[-13,-2],[-14,-2],[-13,-1],[-13,-6],[-13,0],[-14,-1],[-13,-2],[-14,-2],[-14,-3],[-12,-2],[-13,-2],[-12,-3],[-13,-2],[-12,-2],[-13,-3],[-15,-2],[-14,-3],[-14,-4],[-13,-3],[-13,-3],[-13,-3],[-14,-3],[-13,-2],[-14,-2],[-12,-2],[-13,-3],[-14,-2],[-14,-2],[-13,-1],[-14,0],[-13,-1],[-14,0],[-13,-1],[-13,-1],[-13,-2],[-14,-1],[-14,-3],[-13,-2],[-14,-3],[-14,-3],[-14,-3],[-14,-2],[-14,-2],[-13,-1],[-14,0],[-13,-1],[-13,-1],[-14,-3],[-12,-3],[-13,-3],[-13,-2],[-12,-2],[-14,-2],[-14,-1],[-13,-1],[-13,-2],[-14,-3],[-13,-2],[-14,-2],[-13,-3],[-9,-2],[-5,-2],[-15,-4],[-12,-4],[-12,-2],[-1,0],[-15,-3],[-14,-4],[-13,-3],[-13,-3],[-13,-4],[-14,-4],[-13,-2],[-13,-2],[-14,-1],[-13,-1],[-13,-1],[-13,-2],[-14,-1],[-12,-2],[-13,-3],[-15,-3],[-13,-2],[-15,-3],[-12,-2],[-13,-2],[-14,0],[-14,-1],[-12,-1],[-14,-2],[-13,-1],[-12,0],[-14,-1],[-14,-2],[-14,-2],[-15,-3],[-14,-1],[-13,0],[-15,0],[-15,0],[-15,0],[-14,0],[-13,-1],[-14,0],[-14,0],[-12,-2],[-25,-4],[-13,-2],[-13,-3],[-12,-2],[-14,-1],[-13,-2],[-14,-2],[-12,-2],[-14,-1],[-12,-2],[-13,-1],[-13,-2],[-12,-2],[-14,-2],[-14,-2],[-14,-2],[-14,-1],[-13,-1],[-14,-1],[-14,-2],[-13,-1],[-13,-1],[-12,-2],[-13,-1],[-13,-3],[-13,-3],[-14,-2],[-13,-1],[-14,-3],[-15,0],[-13,-1],[-12,-1],[-13,-1],[-14,-1],[-14,-3],[-13,-1],[-13,-2],[-13,-3],[-14,-1],[-14,0],[-12,-1],[-14,-1],[-15,-2],[-13,-2],[-13,-2],[-13,-2],[-13,-2],[-13,-3],[-13,-2],[-14,0],[-13,-1],[-14,-2],[-14,-1],[-14,-1],[-13,-1],[-14,-2],[-13,-2],[-13,-2],[-13,-3],[-12,-3],[-13,-3],[-13,-4],[-12,-3],[-13,-2],[-13,-3],[-14,-2],[-12,-1],[-13,-1],[-14,-1],[-13,-2],[-12,-1],[-13,-3],[-13,-1],[-13,-2],[-13,-3],[-12,-3],[-13,-3],[-13,-2],[-13,-3],[-14,-2],[-13,-2],[-14,-1],[-13,-2],[-13,-2],[-15,-2],[-14,-2],[-14,-2],[-14,0],[-13,0],[-13,0],[-12,-1],[-13,-2],[-13,-3],[-14,-3],[-14,-2],[-14,0],[-14,0],[-13,0],[-14,-1],[-14,-2],[-14,-2],[-14,-2],[-12,-2],[-14,-2],[-13,-2],[-13,-2],[-13,-2],[-13,-3],[-13,-1],[-13,-1],[-13,-2],[-13,-1],[-13,-4],[-13,-1],[-13,-2],[-14,-3],[-13,-3],[-13,-2],[-14,0],[-13,-2],[-14,-1],[-13,0],[-6,0],[-7,0],[-14,0],[-13,0],[-13,0],[-14,0],[-13,0],[-14,-3],[-12,-5],[-12,-1],[-13,-2],[-13,-1],[-12,-1],[-2,0],[-13,-1],[-13,0],[-13,0],[-12,0],[-14,0],[-12,0],[-13,1],[-13,3],[-13,1],[-13,1],[-14,5],[-13,1],[-13,0],[-21,0],[-11,-3],[-1,-1],[-13,-4],[-14,-3],[-12,-5],[-12,-6],[-21,-4],[-3,0],[-13,-1],[-14,0],[-13,-1],[-1,0],[-12,-3],[-13,-7],[-10,-10],[-12,-9],[-12,-5],[-13,0],[-14,-1],[-12,-2],[-13,-2],[-13,-2],[-13,0],[-13,-2],[-13,-2],[-13,-1],[-12,-4],[-13,-2],[-14,-1],[-13,-3],[-12,-4],[-13,-5],[-13,-4],[-13,-4],[-13,-3],[-13,-2],[-13,-2],[-12,0],[-13,-1],[-12,-1],[-13,-1],[-13,-1],[-12,0],[-14,2],[-13,0],[-14,0],[-13,-2],[-14,-3],[-12,-3],[-13,-3],[-13,-4],[-14,-4],[-13,-3],[-13,-3],[-14,-3],[-13,-4],[-13,-1],[-14,-3],[-13,-3],[-12,-1],[-10,-2],[-3,-1],[-13,-3],[-13,-3],[-14,-1],[-14,-1],[-14,0],[-13,-2],[-13,-2],[-13,-4],[-14,-3],[-14,-4],[-13,-4],[-13,-5],[-13,-7],[-12,-6],[-13,-7],[-11,-6],[-12,-5],[-13,-5],[-14,-3],[-13,-3],[-14,-2],[-13,-2],[-12,-1],[-13,-2],[-13,-2],[-14,-4],[-14,-5],[-12,-4],[-13,-5],[-13,-4],[-14,-4],[-13,-4],[-13,-3],[-11,-6],[-13,-4],[-13,-2],[-14,-3],[-12,-4],[-14,-4],[-14,-1],[-13,-2],[-13,-2],[-13,-3],[-15,-4],[-13,-3],[-13,-3],[-13,-2],[-12,-1],[-13,-2],[-13,-2],[-13,-2],[-14,-2],[-13,-2],[-14,-2],[-13,-2],[-13,-3],[-12,-4],[-13,-4],[-14,-1],[-14,-1],[-12,-2],[-13,-2],[-12,-3],[-15,-6],[-13,-6],[-13,-4],[-13,-3],[-13,-2],[-13,-2],[-13,-2],[-14,-3],[-13,-4],[-13,-3],[-12,-4],[-12,-4],[-13,-4],[-15,-4],[-13,-3],[-13,-4],[-13,-3],[-13,-2],[-14,-2],[-13,-2],[-13,-3],[-14,-3],[-15,-3],[-14,-2],[-13,-2],[-13,-2],[-12,-1],[-14,-1],[-13,-2],[-14,-2],[-12,-1],[-14,-1],[-14,-3],[-14,-2],[-14,-3],[-13,-2],[-14,-2],[-15,-4],[-12,-4],[-13,-5],[-13,-5],[-12,-3],[-14,-4],[-14,-4],[-13,-2],[-14,-4],[-14,-4],[-13,-4],[-13,-4],[-12,-5],[-12,-4],[-13,-5],[-13,-4],[-14,-3],[-12,-4],[-14,-3],[-12,-4],[-13,-3],[-13,-3],[-12,-1],[-13,-2],[-12,-1],[-8,-1],[-23,-5],[-27,-6],[-17,-8],[-13,-5],[-13,-5],[-12,-5],[-11,-3],[-18,-3],[-18,-5],[-13,-5],[-18,-9],[-27,-10],[-26,-1],[-17,-4],[-41,-6],[-29,-3],[-14,-2],[-23,-9],[-7,-2],[-14,-5],[-26,-1],[-20,-1],[-14,-4],[-20,-4],[-20,-5],[-14,-5],[-22,-5],[-11,-2],[-19,-5],[-17,-6],[-25,-2],[-13,-3],[-37,-7],[-26,-6],[-21,-5],[-27,-5],[-29,-7],[-44,-11],[-25,-3],[-33,-1],[-21,0],[-36,-1],[-23,-6],[-39,-11],[-28,-7],[-25,-5],[-25,-7],[-31,-5],[-13,-3],[-17,-3],[-20,-4],[-21,-4],[-24,-4],[-20,-4],[-17,-5],[-18,-5],[-18,-4],[-11,-4],[-15,-5],[-8,-3],[-18,-6],[-14,-1],[-9,0],[-15,-1],[-10,-5],[-12,-3],[-10,-2],[-8,-1],[-12,-1],[-10,-2],[-13,-3],[-11,-3],[-14,-2],[-8,-2],[-9,-3],[-8,-3],[-9,-3],[-6,-1],[-8,-1],[-8,-1],[-11,-3],[-9,-2],[-12,-1],[-11,-2],[-16,-4],[-17,-5],[-9,-1],[-14,-2],[-14,-6],[-16,-2],[-14,-4],[-14,-2],[-13,-4],[-13,-4],[-14,-3],[-12,-2],[-14,-4],[-12,-4],[-12,-3],[-13,-5],[-13,-5],[-12,-5],[-13,-6],[-14,-4],[-13,-1],[-13,-2],[-13,-3],[-12,-4],[-13,-5],[-13,-5],[-13,-4],[-14,-3],[-12,-2],[-14,-4],[-19,-3],[-25,-12],[-12,-7],[-12,-10],[-12,-8],[-12,-6],[-13,-5],[-12,-3],[-13,-3],[-13,-3],[-13,-3],[-13,-2],[-14,-2],[-13,-4],[-12,-5],[-14,-2],[-14,-4],[-13,-2],[-13,-2],[-12,-1],[-13,-2],[-12,-3],[-14,-3],[-13,-4],[-13,-4],[-13,-3],[-14,-3],[-13,-3],[-12,-3],[-12,-4],[-13,-1],[-13,-2],[-12,-2],[-14,-1],[-13,0],[-13,-2],[-13,-1],[-12,-1],[-13,-2],[-13,-3],[-13,-4],[-14,-4],[-12,-5],[-12,-5],[-13,-3],[-12,-2],[-13,-3],[-13,-2],[-12,-3],[-13,-3],[-14,-1],[-14,-2],[-13,-2],[-14,-2],[-12,-3],[-13,-4],[-12,-4],[-13,-4],[-12,-4],[-14,-6],[-13,-4],[-13,-3],[-13,-2],[-13,-2],[-13,0],[-13,-2],[-14,0],[-13,-1],[-13,-3],[-13,-3],[-13,-2],[-9,-1],[-4,-1],[-14,-3],[-13,-3],[-13,-2],[-13,-4],[-13,-3],[-14,-2],[-14,-3],[-4,-1],[-10,-3],[-12,-4],[-13,-4],[-9,-2],[-3,-1],[-13,-1],[-13,-1],[-14,-2],[-12,-2],[-13,-1],[-13,-1],[-13,-1],[-14,-2],[-14,-3],[-14,-2],[-13,-4],[-14,-3],[-13,-2],[-13,-3],[-13,-3],[-12,-3],[-13,-5],[-13,-2],[-13,-3],[-14,-4],[-12,-3],[-13,-4],[-13,-3],[-14,-4],[-13,-4],[-13,-4],[-13,-1],[-13,-2],[-13,-3],[-14,-3],[-13,-3],[-13,-3],[-13,-3],[-13,-1],[-14,-4],[-12,-4],[-12,-4],[-13,-5],[-12,-4],[-14,-4],[-12,-3],[-12,-4],[-13,-4],[-14,-3],[-13,-3],[-12,-3],[-14,-5],[-14,-4],[-12,-4],[-13,-3],[-15,-4],[-12,-2],[-13,-2],[-13,-2],[-12,-4],[-13,-4],[-13,-5],[-14,-5],[-12,-3],[-13,-3],[-13,-2],[-12,-2],[-14,-4],[-14,-3],[-14,-6],[-11,-5],[-11,-4],[-13,-3],[-13,-5],[-12,-4],[-13,-6],[-14,-4],[-12,-4],[-12,-3],[-14,-4],[-13,-5],[-12,-4],[-14,-4],[-12,-5],[-13,-4],[-14,-4],[-12,-3],[-13,-4],[-13,-3],[-13,-3],[-13,-3],[-12,-3],[-13,-3],[-14,-3],[-14,-4],[-13,-3],[-13,-4],[-12,-3],[-14,-5],[-14,-4],[-12,-4],[-13,-4],[-14,-5],[-13,-4],[-14,-5],[-14,-5],[-12,-4],[-13,-5],[-13,-4],[-12,-5],[-13,-4],[-14,-3],[-13,-4],[-12,-5],[-14,-5],[-13,-5],[-13,-4],[-13,-3],[-15,-4],[-14,-3],[-13,-3],[-12,-3],[-12,-3],[-13,-3],[-13,-2],[-15,-3],[-12,-4],[-12,-4],[-15,-5],[-12,-5],[-13,-4],[-13,-4],[-14,-4],[-13,-3],[-13,-4],[-12,-4],[-13,-6],[-12,-4],[-13,-3],[-14,-4],[-13,-4],[-14,-4],[-13,-4],[-13,-4],[-13,-5],[-12,-4],[-13,-5],[-14,-4],[-14,-6],[-15,-5],[-14,-5],[-13,-4],[-12,-4],[-14,-5],[-12,-5],[-13,-4],[-13,-6],[-13,-5],[-12,-6],[-12,-5],[-14,-4],[-13,-4],[-13,-5],[-12,-3],[-13,-4],[-12,-2],[-15,-4],[-14,-2],[-14,-3],[-15,-4],[-14,-3],[-14,-4],[-14,-4],[-13,-6],[-12,-5],[-13,-6],[-14,-6],[-13,-6],[-12,-6],[-12,-7],[-12,-7],[-13,-5],[-13,-4],[-13,-5],[-13,-5],[-12,-5],[-13,-4],[-10,-4],[-3,-1],[-13,-3],[-12,-4],[-14,-3],[-12,-4],[-13,-4],[-13,-2],[-13,-3],[-13,-3],[-13,-3],[-13,-2],[-13,-2],[-13,-4],[-12,-4],[-13,-4],[-14,-4],[-12,-4],[-8,-2],[-5,-1],[-12,-3],[-13,-4],[-12,-4],[-2,0],[-11,-3],[-12,-4],[-13,-4],[-13,-4],[-13,-6],[-12,-5],[-16,-4],[-17,-1],[-14,-4],[-13,-2],[-15,-5],[-11,-3],[-14,-2],[-12,-5],[-13,-5],[-14,-4],[-13,-4],[-13,-3],[-13,-3],[-13,-4],[-14,-2],[-13,-3],[-13,-5],[-13,-4],[-12,-6],[-12,-4],[-14,-3],[-13,-3],[-13,-3],[-14,-3],[-13,-4],[-14,-5],[-14,-6],[-14,-7],[-14,-7],[-13,-5],[-12,-4],[-15,-4],[-14,-4],[-13,-2],[-13,-2],[-13,-4],[-13,-3],[-14,-3],[-14,-3],[-16,0],[-27,-4],[-13,-3],[-12,-4],[-12,-4],[-14,-4],[-13,-4],[-13,-3],[-12,-2],[-13,-3],[-14,0],[-13,0],[-13,0],[-13,-1],[-13,-4],[-13,-4],[-12,-3],[-13,-4],[-13,-5],[-12,-3],[-14,-3],[-13,-4],[-13,-3],[-13,-4],[-14,-3],[-14,-4],[-13,-4],[-13,-3],[-14,-5],[-12,-3],[-12,-3],[-13,-4],[-13,-3],[-13,-2],[-13,-3],[-12,-4],[-13,-5],[-13,-5],[-12,-4],[-13,-3],[-13,-3],[-12,-3],[-14,-3],[-13,-2],[-14,-3],[-13,-2],[-13,-3],[-14,-4],[-13,-3],[-13,-3],[-12,-2],[-14,-3],[-13,-2],[-12,-3],[-13,-4],[-14,-5],[-12,-4],[-13,-5],[-13,-5],[-13,-4],[-13,-3],[-14,-3],[-14,-3],[-14,-3],[-13,-4],[-13,-3],[-13,-5],[-12,-3],[-13,-5],[-14,-4],[-12,-4],[-13,-2],[-10,-3],[-13,-4],[-16,-7],[-13,-6],[-10,-9],[-14,-7],[-15,-4],[-13,-4],[-12,2],[-15,-5],[-14,-2],[-12,-4],[-13,-3],[-13,-3],[-13,-3],[-11,-3],[-13,-3],[-13,-2],[-13,-3],[-13,-2],[-13,-2],[-13,-1],[-13,-2],[-12,2],[-13,0],[-13,1],[-13,2],[-13,6],[-12,9],[-8,2],[-10,-3],[-9,-2],[-12,-4],[-9,-6],[-11,-6],[-10,-5],[-11,0],[-7,-2],[-6,-6],[-10,0],[-12,-4],[-19,-8],[-20,-5],[-18,-7],[-13,-3],[-15,-1],[-18,-6],[-23,-9],[-11,-5],[-8,0],[-6,5],[-11,0],[-11,-2],[-6,-10],[-17,-9],[-27,-8],[-28,-9],[-27,-11],[-25,-5],[-19,0],[-20,-7],[-11,-8],[-16,-1],[-14,-1],[-18,-5],[-18,-10],[-16,-6],[-18,-1],[-26,-9],[-26,-11],[-35,-14],[-21,-9],[-4,-1],[-16,-5],[-24,-10],[-4,-2],[-26,-12],[-62,-39],[-54,-27],[-73,-4],[-54,-4],[-123,-54],[-102,-40],[-127,-31],[-71,-21],[-49,-27],[-65,-33],[-52,-36],[-87,-13],[-71,-4],[-54,-15],[-138,-43],[-170,-64],[-119,-39],[-258,-95],[-162,-66],[-160,-72],[-102,-22],[-184,-68],[-80,-41],[-54,-24],[-40,-39],[-47,-27],[-86,-1],[-73,-19],[-62,-27],[-108,-51],[-100,-45],[-37,-15],[-50,-18],[-50,-21],[-69,-31],[-56,-24],[-58,-36],[-104,-59],[-150,-49],[-137,-29],[-71,-27],[-52,-21],[-45,-31],[-3,-2],[-39,-44],[-33,-27],[-113,-39],[-79,-31],[-47,-12],[-36,-3],[-44,-21],[-74,-31],[-46,-21],[-44,-27],[-20,-20],[-42,-56],[-58,-30],[-56,-13],[-75,-15],[-77,-42],[-17,-9],[-54,-27],[-75,-13],[-60,-30],[-69,-27],[-47,-57],[-77,-68],[-66,-21],[-65,-21],[-58,-13],[-44,-9],[-62,-39],[-39,-59],[-61,-30],[-170,-70],[-86,-30],[-124,-63],[-104,-77],[-85,-69],[-108,-33],[-79,-25],[-37,-24],[-44,-29],[-69,-45],[-49,-53],[-86,-48],[-170,-64],[-56,-34],[-56,-34],[-81,-69],[-85,-77],[-120,-80],[-92,-83],[-78,-74],[-88,-69],[-26,-20],[-114,-127],[-81,-106],[-126,-154],[-128,-159],[-120,-197],[-88,-176],[-75,-231],[-24,-199],[1,-101],[13,3],[11,2],[10,0],[13,1],[11,1],[10,0],[12,0],[11,0],[11,-1],[10,-3],[10,0],[10,0],[13,-2],[11,-4],[10,-4],[11,-4],[10,-5],[10,-5],[9,-9],[7,-10],[7,-11],[8,-11],[6,-12],[8,-10],[8,-10],[8,-8],[9,-11],[3,-3],[7,-3],[7,-11],[8,-9],[9,-8],[7,-9],[6,-13],[5,-14],[5,-13],[6,-12],[7,-13],[5,-13],[5,-14],[5,-13],[6,-12],[5,-14],[4,-13],[4,-13],[6,-13],[0,-14],[9,-8],[8,-9],[3,-13],[1,-14],[-6,-12],[6,-12],[7,-9],[2,-14],[-2,-15],[8,-6],[4,-14],[3,-13],[5,-14],[6,-11],[7,-11],[3,-14],[4,-14],[2,-14],[-3,-14],[-4,-13],[-8,-10],[-7,-10],[8,-8],[10,-7],[8,-7],[11,-6],[10,-6],[6,-11],[9,-10],[10,-8],[10,-5],[5,-12],[7,-11],[8,-11],[6,-12],[5,-12],[5,-13],[9,-7],[6,-13],[1,-14],[6,-13],[6,-15],[7,-12],[4,-13],[1,-15],[1,-15],[1,-15],[0,-15],[0,-15],[0,-15],[-1,-14],[0,-17],[-1,-14],[-1,-15],[-3,-14],[-4,-12],[-6,-13],[-6,-12],[-7,-10],[-11,-5],[-11,-1],[-10,-8],[-7,-10],[-8,-8],[10,1],[11,1],[11,1],[10,0],[12,0],[10,-2],[10,-1],[10,1],[10,-2],[11,-3],[9,-7],[9,-9],[9,-7],[3,-13],[2,-11],[7,-11],[11,-11],[7,-11],[2,-14],[0,-15],[-3,-14],[-3,-14],[0,-15],[-1,-14],[-1,-14],[-1,-14],[-3,-15],[-5,-12],[-4,-12],[-5,-13],[-6,-12],[-7,-15],[-7,-12],[-7,-13],[-6,-11],[-7,-11],[-6,-12],[-7,-12],[-6,-12],[-6,-12],[-8,-10],[-8,-14],[-9,-8],[-8,-8],[-10,-3],[-10,-6],[-7,-11],[-5,-12],[-6,-11],[-10,-7],[-7,-10],[-7,-10],[-8,-9],[-6,-12],[-9,-7],[-11,-3],[-11,-2],[-11,-1],[-11,-1],[-12,-1],[-10,-1],[-11,-1],[-12,-1],[-11,-1],[-13,-2],[-11,-1],[-11,-1],[-12,-1],[-11,0],[-11,-1],[-11,-2],[-11,-1],[-4,-1],[-7,0],[-10,-2],[-12,2],[-11,3],[-10,3],[-12,0],[-11,2],[-10,4],[-10,2],[-11,2],[-10,1],[-11,0],[-11,1],[-10,1],[-10,0],[-11,-1],[-11,-1],[-10,3],[-9,6],[-8,9],[-8,11],[-9,9],[-8,10],[-11,3],[-10,-3],[-10,-4],[-10,-3],[-10,-1],[-13,-2],[-11,-2],[-11,-1],[-12,-2],[-11,-1],[-12,-1],[-10,-1],[-11,-2],[-11,1],[-10,1],[-9,5],[-9,7],[-9,6],[-9,7],[-9,8],[-9,7],[-9,9],[-9,8],[-5,14],[-6,10],[-3,15],[-2,15],[-1,16],[-1,15],[0,14],[3,13],[2,16],[5,12],[6,12],[6,13],[6,12],[7,11],[5,12],[9,9],[11,2],[9,8],[8,9],[9,8],[10,6],[11,3],[8,10],[5,11],[6,12],[-1,8],[-4,5],[-4,0],[-6,0],[-10,0],[-10,-2],[-12,-1],[-11,-2],[-11,-1],[-10,0],[-12,-1],[-11,0],[-10,1],[-10,3],[-11,2],[-11,-1],[-10,-1],[-11,1],[-11,-1],[-11,3],[-9,8],[-9,5],[-11,-1],[-11,1],[-9,5],[-10,5],[-11,10],[-8,7],[-7,12],[-7,11],[-8,8],[-11,1],[-11,2],[-10,4],[-10,7],[-8,8],[-9,9],[-9,8],[-9,7],[-7,10],[-8,11],[-9,9],[-6,11],[-5,12],[-7,12],[-7,10],[-5,13],[-2,14],[-1,15],[-1,14],[-1,15],[-1,15],[0,14],[1,15],[3,14],[1,14],[-1,15],[4,13],[5,14],[4,13],[-1,15],[0,14],[1,16],[4,14],[5,13],[7,15],[6,15],[7,13],[6,13],[7,14],[8,11],[6,12],[8,12],[8,11],[7,9],[10,8],[10,11],[9,11],[9,8],[8,11],[6,12],[7,11],[10,9],[10,7],[8,10],[6,12],[8,11],[7,11],[8,11],[6,12],[8,12],[9,6],[9,9],[10,5],[7,10],[10,9],[10,11],[10,6],[10,8],[8,9],[9,8],[11,3],[11,3],[2,14],[-3,14],[-2,14],[5,12],[-4,13],[-7,11],[-6,12],[-4,13],[-4,14],[-6,11],[-4,14],[-3,13],[-1,14],[-1,15],[1,14],[3,13],[5,15],[4,13],[5,13],[5,14],[7,10],[8,9],[8,9],[7,11],[8,9],[9,7],[10,6],[10,6],[11,4],[10,5],[10,3],[12,9],[-13,65],[-28,78],[-40,64],[-110,150],[-88,106],[-84,90],[-126,91],[-136,83],[-166,73],[-142,39],[-90,7],[-121,1],[-127,4],[-129,7],[-80,14],[-87,-22],[-56,-21],[-98,-22],[-77,-16],[-106,-19],[-98,-39],[-106,-25],[-73,-22],[-75,-18],[-102,-39],[-87,-40],[-52,-18],[-48,-12],[-41,-13],[-14,-36],[-16,-17],[-18,1],[-21,-5],[-22,-34],[-7,-10],[-13,2],[-8,5],[-5,13],[-1,41],[-3,8],[-26,8],[-29,5],[-16,-8],[-59,-30],[-65,-39],[-72,-26],[-69,-20],[-63,-22],[-50,-24],[-73,-23],[-91,-39],[-80,-31],[-77,-30],[-35,-15],[-87,-35],[-78,-37],[-56,-21],[-72,-38],[-79,-25],[-85,-27],[-59,-19],[-46,-16],[-59,-15],[-40,-15],[-39,-23],[-48,-19],[-33,-30],[-58,-29],[-71,-43],[-66,-18],[-53,-21],[-63,-29],[-55,-29],[-31,-18],[-72,-31],[-38,-14],[-53,-15],[-54,-18],[-45,-9],[-62,-16],[-68,-23],[-54,-7],[-76,-11],[-52,-20],[-54,-27],[-28,-23],[-38,-18],[-128,-44],[-99,-39],[-98,-42],[-49,-46],[-15,-48],[-10,-31],[-52,-36],[-88,-31],[-7,-15],[-10,-10],[-13,-3],[-12,-6],[-9,-13],[6,-38],[-8,-28],[-8,-14],[-13,0],[-11,10],[-13,-4],[-11,-9],[-13,-3],[-8,14],[7,14],[19,26],[9,12],[0,18],[-10,11],[-11,8],[-12,1],[-13,-4],[-12,-9],[-13,-1],[-13,0],[-13,0],[-13,3],[-11,-9],[-10,-12],[-11,-8],[-10,-11],[-8,-14],[-19,-26],[-19,-24],[-12,-8],[-13,0],[-4,18],[0,18],[-12,9],[-12,-10],[-19,-25],[-6,-16],[-20,-23],[8,-14],[11,-9],[13,4],[12,8],[7,-15],[1,-17],[13,-2],[1,-18],[-10,-13],[-11,-12],[-11,-10],[-12,-11],[-18,-27],[-27,-40],[-18,-25],[-8,-14],[-20,-27],[-11,-10],[-9,-12],[-8,-15],[-15,-28],[-6,-16],[-9,14],[1,18],[11,33],[17,48],[1,18],[-6,16],[-13,-2],[-24,-11],[-24,-14],[-26,-9],[-11,-5],[-13,-8],[-20,-23],[-10,-13],[-8,-14],[-9,-12],[-12,-8],[-13,-8],[-13,-13],[-10,-10],[-11,-8],[-16,-23],[-12,-5],[-13,1],[-5,-14],[-11,-13],[-7,-15],[-10,-12],[-10,-10],[-12,-5],[-25,-12],[-25,-12],[-13,-6],[-13,-2],[-12,-5],[9,-13],[1,-12],[-18,-8],[-18,-1],[-8,-1],[-12,-9],[-13,-2],[-6,16],[-4,16],[-9,13],[-7,-4],[-7,-16],[-7,-7],[-13,-10],[-11,-4],[-11,1],[-12,8],[-5,16],[-6,34],[-1,35],[11,34],[11,32],[11,33],[-10,11],[-12,0],[-12,8],[-5,16],[-3,17],[-15,28],[-13,0],[-12,-8],[-23,-17],[-24,-19],[-21,-20],[-6,-17],[-10,-12],[-22,-21],[-9,-12],[-9,-13],[-8,-15],[-15,-29],[-4,-17],[2,-36],[-4,-36],[-8,-34],[-7,-35],[-9,-13],[-10,-10],[-21,-22],[-8,-14],[13,-31],[11,-53],[1,-53],[-4,-36],[-15,-51],[-14,-30],[-15,-29],[-15,-28],[-25,-42],[-14,-32],[-14,-51],[-6,-53],[9,-32],[1,-35],[-5,-35],[-2,-37],[-11,-34],[-7,-16],[-17,-26],[-21,-23],[-9,-12],[-16,-29],[-19,-25],[-18,-25],[-19,-25],[3,-6],[8,-2],[-4,-18],[-14,-31],[-7,-15],[-16,-28],[-11,-16],[-8,-9],[10,-7],[9,-13],[-3,-40],[-13,-28],[-13,-18],[-12,-15],[-9,-9],[-16,1],[-7,-12],[-8,-16],[-13,-6],[-32,45],[-7,3],[-10,-15],[-10,-5],[-12,11],[-13,11],[-11,-3],[-24,-17],[-16,-8],[-17,5],[-17,14],[-4,18],[7,20],[15,11],[6,12],[-10,14],[-23,17],[-19,30],[-11,28],[-34,28],[-39,26],[-30,23],[-35,13],[-31,4],[-30,7],[-37,7],[-22,3],[-34,9],[-34,9],[-25,13],[-34,16],[-29,17],[-26,12],[-19,16],[-19,10],[-15,-5],[-22,-9],[-32,-21],[-34,-27],[-34,-27],[-36,-27],[-33,-32],[-28,-28],[-19,-16],[-31,-34],[-20,-27],[-24,-27],[-29,-25],[-32,-28],[-33,-22],[-30,-12],[-24,-13],[-6,-4],[-6,-3],[-37,-7],[-38,-13],[-31,-17],[-29,-14],[-30,-15],[-31,-22],[-22,-16],[-25,-20],[-24,-24],[-24,-22],[-25,-35],[-20,-23],[-24,-38],[-11,-20],[-10,-28],[-10,-31],[-14,-33],[-8,-20],[-15,-23],[0,-1],[-7,-4],[-7,-6],[-7,-5],[-7,-5],[-7,-5],[-9,-6],[-7,-6],[-7,-6],[-7,-4],[-8,-2],[-9,-3],[-7,-5],[-6,-8],[-5,-9],[-4,-9],[-5,-9],[-4,-10],[-4,-9],[-3,-9],[-1,-11],[-2,-11],[-4,-9],[-5,-9],[-6,-7],[-6,-8],[-5,-8],[-6,-8],[-4,-9],[-4,-9],[-4,-10],[-3,-10],[-3,-10],[-4,-10],[-3,-11],[-4,-10],[-4,-8],[-5,-9],[-2,-11],[1,-11],[5,-8],[5,-7],[5,-8],[5,-9],[4,-9],[3,-10],[4,-10],[4,-11],[3,-10],[3,-11],[3,-11],[2,-10],[2,-12],[2,-10],[2,-10],[2,-11],[1,-10],[1,-11],[0,-11],[0,-12],[-2,-10],[-2,-11],[4,-10],[6,-7],[5,-10],[5,-10],[2,-11],[6,-6],[6,-8],[5,-9],[1,-11],[-4,-10],[6,-7],[6,-8],[0,-11],[-5,-8],[-3,-10],[0,-11],[1,-10],[0,-12],[0,-10],[1,-10],[1,-12],[2,-10],[2,-10],[2,-11],[3,-10],[4,-10],[2,-10],[0,-11],[2,-11],[1,-11],[0,-11],[-1,-12],[4,-10],[5,-9],[1,-10],[-2,-10],[1,-10],[6,-5],[6,-8],[8,-3],[0,-11],[-1,-11],[5,-10],[4,-9],[7,-5],[0,-12],[0,-10],[-1,-11],[-4,-10],[-6,-7],[3,-9],[4,-10],[1,-11],[1,-11],[1,-11],[-2,-9],[-2,-11],[2,-10],[5,-10],[4,-9],[-5,-10],[-3,-9],[7,-1],[7,-5],[6,-7],[4,-10],[3,-10],[-2,-10],[-5,-8],[-7,-7],[-8,-5],[-7,-4],[-2,-12],[0,-10],[0,-11],[0,-12],[-3,-10],[1,-10],[3,-10],[2,-11],[-2,-11],[-7,4],[-5,10],[-7,5],[0,-11],[3,-10],[6,-8],[3,-10],[0,-11],[4,-10],[6,-6],[3,-10],[-5,-7],[-8,-4],[-5,-8],[-4,-10],[5,-10],[-6,-7],[-8,-1],[-8,-2],[-2,-10],[7,-5],[7,-6],[3,-10],[-6,-7],[-7,-6],[-7,-5],[-7,-7],[-1,-10],[-2,-12],[3,-10],[-1,-11],[-2,-10],[2,-11],[0,-12],[-3,-9],[-6,-8],[-7,2],[-6,-7],[-2,-11],[-4,-9],[-3,-10],[-3,-11],[-4,-8],[-5,-9],[-2,-11],[-6,-7],[-7,-5],[-2,-11],[-7,-7],[-6,-7],[-5,-9],[-5,-8],[-3,-10],[-4,-11],[-4,-10],[-5,-9],[-3,-10],[8,0],[6,-7],[5,-9],[1,-11],[0,-12],[-4,-9],[-7,-6],[-8,0],[-6,5],[-3,10],[-5,8],[-6,-7],[-6,-7],[-5,-8],[-1,-11],[-3,-10],[-5,-8],[-6,-8],[-6,-6],[-7,-5],[-5,-9],[-5,-8],[-6,-8],[-6,-7],[-5,-8],[-7,-7],[-8,-4],[-7,-4],[-8,-5],[-7,-5],[-7,-5],[-7,-5],[-6,-6],[-3,-10],[-3,-10],[0,-12],[2,-10],[2,-11],[-4,-9],[-8,-4],[-8,-1],[-7,4],[-7,1],[-5,-8],[-1,-11],[-4,-10],[-7,-3],[-8,-1],[-8,3],[-8,-1],[-5,-8],[1,-10],[4,-9],[2,-10],[-6,-8],[-8,0],[-7,4],[-8,0],[-7,-4],[-8,1],[-9,0],[-8,-1],[-8,-4],[-5,-7],[-7,-7],[-8,-3],[-7,3],[-6,8],[-6,7],[-7,-4],[-6,-6],[-7,-4],[-8,-3],[-8,-2],[-7,-2],[-8,-2],[-7,-2],[-9,-1],[-7,-4],[-4,-10],[3,-10],[6,-8],[6,-7],[7,-5],[8,-2],[6,-7],[-7,-3],[-7,3],[-8,4],[-5,7],[-7,-4],[-8,3],[-5,8],[-1,11],[-1,11],[-7,2],[-8,-3],[-6,-8],[-7,-6],[-8,1],[-7,-5],[1,-11],[-5,-9],[-6,8],[-7,1],[-8,1],[0,-11],[-6,-8],[-8,-2],[-7,-4],[-7,-4],[-7,-5],[-7,-6],[-8,-1],[-4,9],[-5,9],[-6,5],[-5,0],[3,-10],[1,-11],[0,-12],[-7,-6],[-7,-6],[-6,-7],[-2,-11],[-7,-7],[-8,-5],[-8,-3],[-7,-4],[-8,-2],[-2,10],[-4,10],[-8,3],[-7,-8],[-7,-5],[-7,-4],[0,-12],[-4,-9],[-7,-6],[-7,-5],[-7,-5],[-6,-6],[-7,-6],[-7,-6],[-7,-5],[-8,-5],[-8,-4],[-8,-2],[-8,-2],[-8,0],[-7,6],[-8,2],[-7,3],[-7,3],[-8,2],[-8,6],[-5,7],[-8,4],[-7,-3],[-7,-4],[-4,-1],[-7,0],[-7,1],[-8,1],[-9,2],[-6,6],[-5,8],[-2,4],[-3,3],[-7,6],[-6,9],[-7,4],[-8,3],[-8,4],[-8,0],[-9,-1],[-8,0],[-9,1],[-10,0],[-8,0],[-9,-1],[-10,0],[-10,-1],[-10,0],[-10,-1],[-8,-1],[-10,-1],[-9,-2],[-7,-4],[-8,-3],[-8,-2],[-10,-2],[-10,-2],[-9,-5],[-7,-7],[-7,-7],[-8,-6],[-9,-4],[-8,-3],[-9,-2],[-8,-2],[-9,0],[-9,1],[-7,2],[-8,1],[-9,1],[-9,-1],[-10,-1],[-8,-1],[-8,-1],[-8,-1],[-8,0],[-10,-1],[-8,-2],[-8,-2],[-9,-3],[-10,-3],[-8,-4],[-7,-3],[-8,-5],[-8,-5],[-8,-4],[-8,-3],[-10,-4],[-8,-2],[-11,-1],[-10,-3],[-9,-5],[-7,-5],[-9,-4],[-7,-3],[-8,-6],[-8,-3],[-9,-3],[-9,-3],[-8,-3],[-9,-4],[-8,-1],[-7,-1],[-9,-1],[-10,-2],[-10,-1],[-10,-1],[-7,-1],[-9,-1],[-11,-1],[-9,0],[-10,0],[-9,2],[-8,5],[-6,6],[-2,11],[-5,9],[-8,1],[-7,-3],[-8,-3],[-9,1],[-7,1],[-7,-4],[-6,-7],[-9,-2],[-9,3],[-6,8],[-3,10],[-5,9],[-7,4],[-9,1],[-8,-1],[-8,-1],[-9,0],[-9,-1],[-8,0],[-7,0],[-10,-1],[-11,-2],[-8,0],[-10,-2],[-10,-3],[-7,-7],[-7,-6],[-7,-4],[-8,-1],[-8,-2],[-7,-1],[-8,-1],[-7,-1],[-8,0],[-8,-1],[-8,0],[-9,-1],[-9,0],[-7,1],[-8,0],[-8,0],[-9,0],[-9,1],[-8,1],[-8,1],[-8,1],[-8,2],[-7,2],[-10,1],[-10,0],[-16,0],[-8,-1],[-9,-2],[-8,0],[-21,-2],[-3,-1],[-5,0],[-9,-1],[-7,-1],[-8,0],[-8,0],[-9,0],[-8,0],[-8,0],[-8,-2],[-11,-6],[-8,-6],[-7,-6],[-7,-3],[-10,-2],[-9,-3],[-10,-2],[-8,0],[-9,0],[-10,1],[-11,0],[-10,-1],[-8,1],[-8,2],[-7,4],[-10,5],[-8,1],[-10,-1],[-9,0],[-9,0],[-11,-1],[-8,-1],[-10,3],[-8,4],[-8,1],[-10,1],[-8,-2],[-8,-2],[-7,-4],[-8,-5],[-8,-4],[-8,-2],[-9,-2],[-9,-1],[-10,-1],[-9,-1],[-10,-1],[-10,1],[-9,0],[-7,0],[-11,2],[-10,2],[-9,2],[-9,1],[-10,0],[-8,0],[-10,1],[-9,1],[-10,1],[-13,-1],[-14,0],[-15,0],[-14,1],[-12,2],[-9,1],[-10,2],[-10,0],[-11,-2],[-8,-1],[-10,-1],[-10,-2],[-10,-1],[-10,-1],[-11,0],[-7,-1],[-8,-1],[-11,-1],[-9,1],[-7,2],[-8,4],[-8,4],[-9,3],[-10,1],[-9,0],[-8,1],[-8,-1],[-9,0],[-8,0],[-9,0],[-9,0],[-8,1],[-8,3],[-9,5],[-9,4],[-9,2],[-4,1],[-6,1],[-8,0],[-8,-1],[-10,-1],[-9,-2],[-9,-7],[-7,-6],[-7,-3],[-11,-3],[-8,-1],[-9,-2],[-9,-2],[-10,-1],[-8,0],[-8,-1],[-9,0],[-7,-2],[-10,-1],[-8,-2],[-10,-1],[-7,-2],[-9,-1],[-8,-2],[-10,-1],[-8,-2],[-22,-4],[-11,-1],[-11,-1],[-8,0],[-9,4],[-8,2],[-7,3],[-7,4],[-8,6],[-8,5],[-9,1],[-8,0],[-7,-1],[-9,-1],[-9,0],[-9,-1],[-8,0],[-8,2],[-10,3],[-9,-1],[-8,-2],[-8,0],[-9,-1],[-9,-3],[-10,-2],[-7,-5],[-7,-8],[-8,-5],[-9,-1],[-8,-3],[-8,-3],[-7,-1],[-9,0],[-8,0],[-7,-1],[-10,-1],[-9,-1],[-9,-1],[-9,-1],[-9,-1],[-3,1],[-4,0],[-8,6],[-7,4],[-7,6],[-7,5],[-9,3],[-2,0],[-7,0],[-8,-1],[-9,0],[-9,0],[-8,0],[-9,0],[-8,1],[-9,1],[-8,-1],[-10,-3],[-6,-5],[-8,-7],[-7,-4],[-9,-4],[-8,-5],[-9,-5],[-9,-2],[-8,-1],[-10,0],[-8,-1],[-8,-1],[-8,-1],[-9,0],[-9,-1],[-7,1],[-9,0],[-8,0],[-9,1],[-9,2],[-8,-1],[-8,1],[-8,1],[-9,-1],[-7,0],[-8,0],[-8,0],[-7,4],[-8,-2],[-9,2],[-7,-4],[-7,-6],[-8,-3],[-9,-2],[-8,-2],[-6,-7],[-9,-2],[-9,-3],[-7,3],[-8,3],[-7,0],[-8,1],[-7,-6],[-8,-2],[-8,1],[-7,2],[-9,-1],[-8,1],[-7,3],[-8,1],[-8,0],[-8,1],[-8,0],[-1,0],[-8,0],[-9,0],[-8,-1],[-22,-1],[-13,-4],[-13,-4],[-13,-3],[-13,-4],[-13,-5],[-13,-5],[-13,-4],[-14,-3],[-14,-3],[-13,-1],[-13,-1],[-13,-1],[-13,-1],[-13,-3],[-13,-3],[-13,-2],[-13,-3],[-12,-4],[-13,-3],[-12,-4],[-13,-3],[-14,-2],[-13,-3],[-14,-3],[-13,-3],[-13,-3],[-12,-4],[-12,-2],[-14,-2],[-13,-2],[-13,-2],[-14,-2],[-14,-2],[-13,-2],[-12,-1],[-14,-2],[-13,-2],[-13,-1],[-13,-2],[-13,-3],[-12,-5],[-13,-5],[-13,-4],[-12,-3],[-14,-4],[-13,-3],[-13,-4],[-12,-3],[-13,-4],[-14,-2],[-13,-4],[-12,-3],[-13,-3],[-13,-2],[-13,-3],[-14,-2],[-12,-2],[-15,-3],[-12,-2],[-14,-3],[-14,-2],[-14,-2],[-14,-3],[-13,-2],[-14,-3],[-12,-2],[-13,-3],[-13,-4],[-13,-3],[-12,-5],[-13,-3],[-13,-4],[-13,-3],[-12,-4],[-14,-4],[-13,-3],[-14,-4],[-13,-3],[-14,-3],[-13,-3],[-13,-3],[-14,-4],[-12,-3],[-14,-3],[-14,-3],[-14,-2],[-12,-2],[-13,-1],[-14,-2],[-12,-2],[-14,-2],[-14,-3],[-12,-3],[-14,-4],[-13,-4],[-12,-3],[-13,-2],[-13,-2],[-13,-1],[-13,-1],[-14,-1],[-14,0],[-14,-1],[-14,-1],[-14,-3],[-12,-4],[-13,-5],[-12,-4],[-14,-3],[-12,-2],[-13,-2],[-13,-2],[-13,-3],[-12,-3],[-14,-1],[-12,-3],[-13,-4],[-14,-3],[-12,-3],[-13,-4],[-12,-3],[-14,-3],[-12,-3],[-13,-2],[-13,0],[-14,0],[-2,0],[-4,0],[-8,-1],[-9,0],[-9,1],[-7,1],[-8,-1],[-9,-2],[-9,-1],[-7,-3],[-9,-2],[-8,-2],[-8,-3],[-8,-3],[-8,-4],[-8,-1],[-8,-2],[-26,-5],[-8,0],[-10,-1],[-8,-2],[-10,2],[-10,2],[-9,-3],[-10,-6],[-8,-3],[-9,-1],[-4,-2],[-5,-1],[-8,-1],[-8,-1],[-8,-5],[-9,-5],[-8,-2],[-9,-1],[-9,-1],[-8,-1],[-9,-1],[-11,-1],[-11,-2],[-8,-1],[-10,-1],[-9,-1],[-10,-1],[-10,-1],[-11,-2],[-4,0],[-5,-1],[-10,-1],[-10,-2],[-11,-2],[-8,-2],[-7,-2],[-10,-5],[-9,-2],[-8,-3],[-8,-4],[-9,-2],[-10,-2],[-9,1],[-9,3],[-8,3],[-8,6],[-10,0],[-11,-3],[-10,-3],[-8,-2],[-9,-4],[-7,-4],[-10,-4],[-8,-3],[-8,-6],[-9,-5],[-8,-2],[-8,-1],[-9,-3],[-8,-4],[-8,0],[-7,1],[-9,-3],[-7,-2],[-9,-1],[-9,-1],[-9,-1],[-10,0],[-8,-1],[-9,-2],[-9,-5],[-7,-5],[-7,-2],[-9,-4],[-7,-5],[-8,-4],[-10,-5],[-9,-6],[-10,-8],[-7,-3],[-7,-5],[-9,-8],[-8,-7],[-7,-6],[-10,-6],[-8,-1],[-7,6],[-8,3],[-6,-9],[-7,-8],[-7,-5],[-6,-7],[-7,-4],[-8,-1],[-9,-3],[-8,-1],[-8,-4],[-7,-7],[-1,-2],[-9,-5],[-10,-4],[-10,-5],[-9,-5],[-9,-4],[-7,-5],[-8,-5],[-7,-5],[-7,-5],[-7,-5],[-7,-4],[-7,-4],[-7,-5],[-8,-4],[-8,-4],[-9,0],[-9,-4],[-9,-3],[-8,-4],[-8,-5],[-7,-5],[-9,-6],[-7,-4],[-8,-6],[-8,-7],[-8,-5],[-8,-6],[-7,-6],[-8,-7],[-9,-6],[-9,-6],[-8,-5],[-11,-5],[-9,-8],[-9,-9],[-7,-6],[-6,-7],[-7,-5],[-7,-7],[-8,-7],[-7,-9],[-6,-7],[-6,-7],[-7,-10],[-5,-7],[-7,-7],[-6,-7],[-6,-7],[-5,-9],[-5,-8],[-6,-13],[-5,-13],[-6,-9],[-7,-9],[-7,-8],[-6,-7],[-6,-6],[-8,-9],[-8,-7],[-8,-7],[-6,-7],[-6,-7],[-7,-6],[-7,-7],[-7,-8],[-6,-7],[-7,-7],[-6,-7],[-7,-5],[-6,-6],[-7,-9],[-6,-8],[-6,-9],[-5,-8],[-6,-9],[-6,-10],[-6,-9],[-7,-11],[-6,-13],[-4,-10],[-4,-9],[-5,-12],[-4,-11],[-4,-10],[-3,-10],[-3,-11],[-3,-10],[-5,-11],[-3,-11],[-4,-10],[-4,-9],[-3,-12],[-2,-11],[-2,-11],[-3,-13],[-2,-10],[-2,-10],[-1,-13],[-1,-10],[0,-13],[-3,-25],[-3,-25],[-2,-35],[-2,-28],[-3,-42],[-2,-29],[16,-6],[18,0],[19,6],[20,19],[19,21],[22,14],[7,2],[31,-16],[25,-32],[19,-41],[20,-37],[19,-37],[20,-46],[16,-41],[18,-39],[21,-42],[4,-46],[-3,-54],[-10,-50],[-9,-46],[-9,-49],[-11,-45],[-18,-39],[-28,-33],[-17,-42],[-19,-41],[-22,-35],[-27,-33],[-20,-38],[-11,-45],[1,-46],[-4,-49],[-17,-41],[-15,-40],[-21,-39],[-23,-36],[-25,-33],[-28,-27],[-28,-25],[-23,-10],[-26,-27],[-21,-40],[-24,-35],[-27,-28],[-35,-28],[-32,-13],[-32,-14],[-35,-15],[-30,-17],[-35,-13],[-32,-8],[-40,-6],[-16,0],[-26,31],[-9,14],[-33,1],[-33,-2],[-34,0],[-34,-2],[-33,-6],[-27,-31],[-32,-14],[-35,-13],[-35,-11],[-35,-10],[-34,-2],[-35,5],[-25,11],[-13,-16],[-20,-39],[-19,-42],[-20,-37],[-24,-35],[-30,-36],[-27,-26],[-26,-28],[-28,-30],[-28,-30],[-22,-37],[-19,-42],[-18,-48],[-15,-45],[-25,-28],[-30,-32],[-28,-23],[-16,-31],[1,-22],[18,-44],[-7,-28],[-20,-17],[-24,-10],[-20,10],[-27,4],[-23,-8],[-28,-9],[-6,-21],[4,-19],[21,-37],[6,-45],[0,-50],[-12,-47],[-22,-37],[-24,-33],[-28,-26],[-32,-29],[-33,-6],[-36,-7],[-34,-12],[-31,-14],[-31,-12],[-14,-6],[-33,-16],[-33,-15],[-32,-8],[-34,10],[-32,14],[-29,25],[-24,19],[-31,13],[-35,-4],[-18,-8],[-32,9],[-32,11],[-44,12],[-32,10],[-34,10],[-32,7],[-33,-13],[-35,-18],[-30,-18],[-29,-25],[-35,-32],[-31,-27],[-32,-28],[-31,-28],[-32,-25],[-31,-27],[-37,-24],[-25,-34],[-27,-35],[-30,-21],[-9,-6],[-28,-25],[-30,-23],[-38,-12],[-16,-9],[0,-23],[-4,-19],[-30,-22],[-13,-37],[2,-32],[-10,-46],[-28,-25],[-30,-31],[-26,-26],[-37,-26],[-34,-9],[-35,-8],[-23,-3],[-30,-22],[-19,-37],[-21,-43],[-27,-43],[-20,-35],[-25,-40],[-22,-41],[-20,-38],[-20,-41],[-20,-43],[-19,-40],[-19,-48],[-21,-50],[-24,-60],[-18,-48],[-14,-49],[-15,-51],[-15,-60],[4,-41],[30,-19],[33,-13],[32,-12],[34,-12],[31,-14],[29,-20],[30,-22],[30,-22],[7,-8],[26,-29],[9,-29],[-2,-20],[19,5],[5,-3],[27,-27],[18,-27],[7,-39],[0,-15],[0,-16],[0,-53],[-2,-24],[3,-26],[7,-22],[6,-12],[5,-14],[1,-12],[7,-30],[21,-19],[29,2],[14,5],[20,12],[17,-3],[1,-22],[-6,-21],[-26,-18],[-29,-13],[-2,-23],[0,-22],[-18,-42],[-33,-26],[-30,-30],[-31,-28],[-32,-16],[-36,-12],[-31,-16],[-36,-18],[-33,0],[-34,0],[-35,-2],[-33,-8],[-31,-16],[-32,-16],[-34,-10],[-32,-15],[-25,-30],[-25,-33],[-26,-32],[-25,-39],[-24,-31],[-25,-37],[-24,-38],[-21,-36],[-23,-40],[-25,-47],[-22,-36],[-23,-35],[-20,-40],[-22,-42],[-21,-39],[-19,-44],[-13,-49],[-11,-55],[-7,-44],[-3,-47],[-14,-46],[-18,-46],[-12,-52],[-6,-52],[-1,-47],[21,-34],[24,-32],[11,-46],[2,-25],[-9,-48],[-8,-45],[-27,-35],[-25,-37],[-8,-46],[-21,-37],[-20,-35],[-19,-39],[-20,-43],[-15,-48],[-15,-47],[-18,-45],[-15,-42],[-6,-48],[8,-49],[4,-49],[2,-46],[-2,-48],[-8,-49],[-13,-47],[-12,-45],[10,-47],[16,-46],[11,-43],[13,-43],[18,-46],[16,-40],[20,-41],[19,-39],[26,-27],[31,-21],[33,-16],[34,-7],[34,-10],[30,-16],[34,-20],[38,-23],[33,-20],[32,-21],[31,-23],[32,-18],[32,-12],[32,-11],[37,-3],[8,5],[10,17],[9,0],[14,-13],[9,-21],[31,-19],[32,-12],[34,-12],[34,-6],[32,-10],[35,-16],[32,-27],[7,-28],[-1,-37],[2,-28],[11,-27],[17,-37],[4,-24],[-1,-21],[-16,-17],[-10,-2],[-12,6],[-16,6],[-13,-3],[-7,-3],[-15,-1],[-5,0],[-11,7],[-3,13],[-10,10],[-13,-3],[-28,-24],[-27,-27],[-29,-26],[-32,-27],[-28,-23],[-29,-27],[-31,-25],[-29,-27],[-31,-25],[-28,-26],[-31,-30],[-27,-28],[-28,-27],[-29,-26],[-14,-46],[-3,-12],[-28,-26],[-30,-25],[-18,-40],[-11,-44],[-21,-40],[-18,-40],[-11,-42],[-17,-44],[-24,-38],[-24,-32],[-22,-35],[-18,-41],[-25,-32],[-29,-25],[-29,-25],[-29,-26],[-30,-24],[-30,-19],[-32,-22],[-27,-31],[-30,-27],[-32,-16],[-34,-5],[-33,8],[-31,19],[-22,36],[-21,38],[-14,43],[0,47],[0,46],[3,49],[12,43],[13,44],[6,49],[4,46],[2,49],[5,47],[15,43],[27,26],[12,40],[-16,41],[-29,25],[-25,30],[-20,41],[-25,31],[-34,-17],[-32,9],[-22,39],[-27,29],[-7,50],[8,47],[-4,49],[-9,46],[-9,43],[12,46],[-2,45],[-20,36],[-34,13],[-34,1],[-38,-5],[-42,-13],[-34,-18],[-29,-18],[-33,-22],[-28,-25],[-32,-28],[-25,-30],[-27,-35],[-33,-30],[-32,-19],[-29,-20],[-31,-22],[-32,-25],[-33,-7],[-32,13],[-33,18],[-33,5],[-37,-5],[-34,-4],[-34,-14],[-33,-5],[-35,-2],[-33,2],[-34,2],[-38,2],[-34,0],[-37,-5],[-33,-1],[-33,-4],[-35,-6],[-32,-9],[-34,-16],[-33,-25],[-28,-37],[-31,-19],[-40,1],[-35,1],[-38,-5],[-43,-6],[-36,-1],[-33,-1],[-40,-4],[-32,-9],[-35,-15],[-33,-23],[-32,-23],[-32,-24],[-30,-27],[-28,-23],[-17,-23],[-10,-31],[-10,-19],[-12,-14],[-2,-3],[-27,-28],[-24,-31],[-27,-29],[-19,-38],[-18,-39],[-28,-30],[-28,-28],[-31,-24],[-32,-22],[-31,-19],[-31,-14],[-32,-21],[-29,-24],[-6,-2],[-26,-10],[-32,18],[-22,35],[-3,32],[-31,16],[-34,-3],[-35,4],[-33,-3],[-35,-6],[-32,-11],[-34,-7],[-35,-9],[-33,-2],[-33,6],[-15,30],[-6,24],[-12,-11],[-4,14],[0,25],[2,26],[0,52],[-11,43],[-22,39],[-26,30],[-5,-6],[-9,-44],[-2,-51],[-7,-27],[-23,-29],[-21,11],[-13,-5],[-22,-35],[-30,-24],[-33,4],[-10,45],[-4,45],[-15,23],[-19,-12],[-26,-4],[-8,-7],[-12,-43],[-9,-9],[-32,-16],[-32,16],[-29,26],[-18,39],[3,46],[1,47],[10,46],[2,45],[-8,47],[-9,48],[-15,48],[-11,45],[-2,46],[-3,48],[-15,40],[-17,40],[-21,36],[-8,11],[-34,7],[-37,2],[-33,7],[-33,34],[-5,8],[-11,9],[-7,-18],[-4,-14],[-14,-43],[-27,-28],[-28,-22],[-30,-25],[-24,-35],[-30,-27],[-30,-24],[-31,-26],[-34,-18],[-35,-15],[-34,-14],[-36,-9],[-33,-12],[-32,-10],[-35,-4],[-34,9],[-10,45],[-19,48],[-28,28],[-27,25],[-9,44],[0,48],[1,54],[-9,-17],[-14,-42],[-21,-43],[-28,-25],[-34,-4],[-39,2],[-35,1],[-37,15],[-29,22],[-32,20],[-31,20],[-6,10],[-19,38],[-28,1],[-30,-18],[-28,-10],[-23,18],[-18,39],[-8,19],[-13,11],[-10,16],[-15,2],[-9,17],[-3,11],[-2,9],[-1,9],[-5,-9],[-3,-9],[-15,-16],[-15,4],[-4,13],[-1,20],[6,16],[6,20],[3,11],[3,9],[4,9],[1,6],[-3,3],[-5,-6],[-3,-12],[-4,-20],[-7,-19],[-9,-17],[-13,-12],[-14,-7],[-15,-3],[-13,-9],[-16,1],[-14,-10],[-15,-2],[-7,11],[-15,3],[-10,16],[3,20],[14,12],[14,8],[3,22],[11,15],[4,3],[8,-1],[-2,17],[7,18],[9,18],[7,20],[10,17],[9,17],[12,13],[13,12],[12,12],[11,17],[10,16],[12,13],[10,16],[4,0],[11,-15],[16,0],[16,2],[15,-2],[8,16],[5,4],[9,18],[4,-3],[2,-7],[6,10],[14,1],[3,1],[5,13],[-12,10],[5,11],[1,8],[10,-7],[8,-13],[-4,-12],[8,-5],[12,9],[8,21],[0,6],[15,7],[50,10],[10,1],[-1,8],[14,11],[13,11],[14,7],[16,3],[16,3],[15,1],[15,0],[16,1],[15,-1],[17,0],[15,0],[15,0],[16,-1],[16,-1],[16,-1],[16,-1],[16,0],[16,-5],[14,-5],[12,-14],[8,-9],[15,5],[12,13],[12,13],[15,5],[15,4],[15,7],[16,2],[15,3],[15,8],[14,6],[2,14],[15,-3],[6,-6],[15,8],[14,7],[14,10],[13,9],[1,6],[15,8],[15,6],[15,5],[15,3],[16,3],[14,5],[15,4],[15,6],[14,6],[15,4],[15,8],[14,7],[15,3],[16,0],[15,-1],[15,-8],[10,-4],[11,15],[13,10],[12,13],[0,22],[1,21],[5,20],[6,20],[4,22],[0,23],[0,21],[0,22],[7,20],[3,21],[2,22],[0,21],[1,21],[3,20],[-9,18],[-2,21],[-1,21],[-4,20],[-3,21],[4,21],[7,19],[10,16],[10,16],[6,20],[4,20],[1,9],[-13,11],[12,3],[4,5],[1,21],[0,21],[-2,21],[-5,20],[-1,21],[7,19],[2,7],[-13,11],[-3,20],[2,12],[-2,22],[8,5],[5,20],[5,20],[4,21],[-7,19],[-8,18],[-9,17],[-11,7],[2,7],[6,0],[-8,18],[-7,20],[-1,15],[4,20],[8,18],[3,20],[0,13],[4,20],[5,21],[5,20],[4,20],[1,11],[-11,14],[-2,3],[-8,19],[-12,16],[-13,11],[-8,19],[-5,20],[-5,20],[-7,20],[-7,19],[-6,21],[-4,21],[-6,20],[-8,21],[-5,21],[-5,23],[-5,20],[-6,21],[-7,19],[-6,20],[-5,20],[-4,21],[-6,19],[-8,19],[-5,20],[-7,21],[-6,20],[-6,20],[-6,21],[-4,20],[-6,22],[-7,21],[-6,19],[-6,19],[-6,22],[-1,0],[-84,215],[-20,30],[-47,-6],[-38,34],[-13,36],[11,26],[49,3],[15,63],[38,66],[10,58],[-17,78],[46,58],[70,72],[35,31],[2,140],[20,59],[6,39],[22,58],[100,129],[142,114],[150,101],[0,3],[12,99],[13,76],[31,53],[6,42],[3,85],[17,89],[52,148],[42,104],[66,33],[74,66],[115,17],[43,32],[145,129],[101,192],[121,306],[153,237],[93,134],[119,184],[-72,95],[-89,213],[-71,140],[-80,38],[-3,151],[23,223],[51,252],[4,239],[-15,250],[31,93],[14,76],[10,147],[-197,70],[-93,29],[-59,84],[-29,80],[-45,162],[-28,158],[-68,123],[-78,52],[-65,-1],[-102,-36],[-125,58],[-117,26],[-148,12],[-155,34],[-122,33],[-152,76],[-109,82],[-50,89],[-37,114],[-39,56],[-68,55],[-93,22],[-105,-7],[-89,33],[-109,67],[-127,126],[-66,151],[-103,182],[-117,160],[-59,72],[-88,108],[-72,54],[-84,62],[-136,83],[-166,81],[-83,77],[-140,82],[-98,36],[-91,14],[-130,42],[-152,96],[-83,123],[-60,88],[4,56],[44,92],[17,58],[42,65],[45,-9],[53,15],[29,22],[71,-2],[24,52],[-19,68],[16,58],[23,23],[24,43],[-132,90],[-25,26],[3,74],[31,37],[-1,65],[-16,179],[-55,137],[-95,153],[-104,261],[-128,296],[-111,224],[-96,90],[-187,297],[-249,248],[-407,526],[-66,75],[-227,260],[-224,207],[-168,72],[-145,41],[-175,-33],[-193,-85],[-135,3],[-210,54],[-145,75],[-43,75],[-40,26],[-32,-27],[-77,11],[-291,229],[-263,271],[-341,362],[-124,196],[-141,259],[-35,73],[-300,616],[-286,649],[-205,573],[-83,250],[-49,195],[-73,163],[-15,136],[-10,127],[11,91],[43,53],[-19,98],[-64,171],[-248,96],[-299,121],[-244,125],[-267,7],[-242,-30],[-125,-4],[-105,80],[-70,155],[-70,69],[-140,140],[-369,146],[-153,67],[-189,83],[-312,279],[-239,195],[-78,63],[-297,257],[-380,327],[-12,11],[-215,299],[-214,222],[-86,90],[-274,309],[-94,39],[-41,34],[-24,20],[-36,29],[-137,160],[-217,330],[-168,377],[-18,36],[-88,179],[-118,314],[-88,236],[-40,105],[-29,226],[-62,234],[-18,55],[-49,148],[-5,17],[-26,20],[-68,54],[-33,27],[-293,-171],[-216,8],[-83,35],[-84,57],[-37,68],[-27,25],[-32,-3],[-39,17],[-120,63],[-181,110],[-112,139],[-100,87],[-62,37],[-37,13],[-12,29],[-4,9],[-51,13],[-56,-10],[-49,13],[-189,93],[-93,45],[-66,58],[-32,12],[-67,-17],[-128,21],[-55,64],[-41,36],[-8,39],[-23,7],[-44,-45],[-26,-12],[-99,7],[-40,-20],[-14,-50],[-56,-42],[-58,-48],[-36,11],[-25,8],[-42,4],[-129,-114],[-70,-13],[-51,21],[-154,188],[-133,67],[-132,13],[-4,-78],[-23,-4],[-63,-11],[-39,141],[-314,-291],[-127,4],[-319,694],[-67,29],[-51,88],[-477,782],[-178,-260],[-32,-27],[-36,68],[46,41],[207,287],[-81,98],[-106,71],[-41,42],[-107,-22],[-51,-67],[-59,0],[-20,100],[-34,36],[-58,-15],[-151,-313],[-127,61],[-93,-82],[-362,362],[-66,53],[-88,23],[-20,-21],[-17,-88],[-40,10],[-45,29],[-47,-21],[-44,-67],[-44,-80],[7,-89],[32,-64],[3,-49],[-50,-20],[-50,26],[23,87],[-20,54],[-134,-74],[-75,-95],[-11,-77],[7,-43],[0,-55],[-30,-11],[-73,-30],[-51,-23],[-59,-26],[-46,16],[20,42],[27,25],[56,36],[43,55],[28,52],[-63,-2],[-173,-24],[-157,-38],[-87,-114],[-15,-6],[-33,-10],[-13,-3],[-9,-1],[-13,5],[-14,1],[-13,-4],[-13,-10],[-12,-8],[-11,-10],[-12,-8],[-6,0],[-2,6],[-7,15],[-11,10],[-9,0],[-12,-6],[-11,-9],[-6,-5],[-4,2],[-3,4],[-6,16],[-3,20],[-2,18],[-3,18],[-3,18],[-4,18],[-1,18],[-2,20],[-2,18],[3,18],[8,17],[12,18],[5,8],[11,9],[8,15],[11,11],[4,4],[10,11],[12,13],[10,6],[13,9],[26,10],[14,0],[14,-4],[6,8],[7,16],[-4,3],[-14,1],[-14,-3],[-11,4],[-5,5],[-4,7],[-2,6],[8,32],[5,21],[16,100],[2,64],[-15,72],[-33,93],[-32,58],[-32,53],[-26,34],[-13,16],[-41,29],[-174,92],[-8,-9],[-13,-6],[-14,4],[-16,1],[-8,0],[-16,-3],[-9,8],[8,17],[5,10],[15,8],[15,9],[5,6],[1,6],[-1,9],[-6,17],[-7,14],[-7,18],[-6,16],[-8,16],[-7,15],[-6,15],[-8,17],[-8,16],[-8,13],[-9,13],[-10,16],[-9,16],[-5,15],[7,12],[4,15],[-9,23],[-7,12],[-6,14],[-10,24],[-11,24],[-12,27],[-21,46],[-28,62],[-17,35],[-29,34],[-17,21],[-13,21],[-15,24],[-5,6],[-3,5],[-1,6],[-3,28],[-24,203],[-20,95],[-24,78],[-34,87],[-50,149],[-35,137],[-30,92],[-37,100],[-25,46],[-25,46],[-6,6],[-23,39],[-17,42],[-19,40],[-20,41],[-24,47],[-19,41],[-21,47],[-19,45],[-19,46],[-20,37],[-23,50],[-15,47],[-23,41],[-24,42],[-22,43],[-17,39],[-18,40],[-13,52],[-28,88],[-21,41],[-20,44],[-19,47],[-23,43],[-15,42],[-15,47],[-20,46],[-20,45],[-17,43],[-21,43],[-24,42],[-22,34],[-26,48],[-23,39],[-23,32],[-49,69],[-31,24],[-35,-5],[-32,-23],[-29,-18],[-27,27],[-69,155],[-14,44],[-16,45],[-18,45],[-23,54],[-22,43],[-25,49],[-22,44],[-28,49],[-18,42],[-23,36],[-24,41],[-30,41],[-25,41],[-28,36],[-23,32],[-26,27],[-24,30],[-25,37],[-14,48],[-2,49],[8,45],[-12,44],[-32,21],[-31,23],[-29,31],[-27,40],[-32,24],[-33,6],[-32,25],[-19,45],[-2,46],[-17,43],[-30,33],[-31,25],[-30,31],[-28,32],[-34,0],[-32,7],[-31,26],[-35,53],[-27,42],[-25,37],[-23,43],[-27,47],[-26,24],[-33,37],[-26,31],[-29,30],[-26,28],[-31,28],[-31,29],[-29,22],[-30,26],[-28,29],[-32,29],[-38,28],[-29,25],[-31,24],[-29,21],[-31,27],[-26,31],[-26,33],[-24,33],[-25,40],[-21,37],[-27,33],[-26,32],[-29,32],[-27,35],[-29,23],[-29,32],[-28,31],[-25,28],[-32,23],[-32,16],[-30,16],[-28,30],[-18,43],[-20,42],[-30,29],[-30,39],[-23,33],[-28,41],[-29,28],[-27,26],[-30,19],[-29,26],[-31,24],[-31,14],[-32,16],[-29,29],[-30,32],[-26,34],[-26,30],[-27,27],[-36,33],[-36,33],[-43,39],[-31,30],[-30,19],[-31,24],[-28,32],[-30,27],[-29,25],[-24,24],[-46,43],[-33,36],[-31,34],[-30,33],[-33,32],[-33,27],[-25,40],[-18,46],[-32,27],[-33,30],[-58,32],[-36,21],[-55,29],[-32,28],[-31,34],[-28,37],[-39,9],[-43,-3],[-36,16],[-23,48],[-21,48],[-9,19],[-13,80],[-24,-35],[-35,-25],[-21,-9],[-17,-7],[-39,-15],[-37,-16],[-42,-16],[-38,-14],[-45,-1],[-40,-1],[-40,0],[-45,0],[-37,5],[-40,14],[-40,12],[-38,13],[-38,8],[-41,1],[-44,0],[-44,-1],[-47,0],[-6,-9],[-7,-4],[-13,-12],[-12,-16],[-12,-14],[-14,-8],[-17,-9],[-16,-8],[-14,-12],[-12,-14],[-13,-11],[-20,-7],[-11,0],[-15,-1],[-15,-9],[-15,-7],[-14,-9],[-51,-27],[-15,-7],[-15,2],[-15,3],[-20,14],[-6,6],[-14,9],[-14,10],[-17,4],[-14,2],[-16,0],[-15,-1],[-16,-2],[-15,-7],[-17,-7],[-15,-6],[-15,-8],[-16,-7],[-16,-9],[-20,-13],[-9,-5],[-14,-8],[-15,-8],[-14,-9],[-13,-10],[-31,-4],[-15,-3],[-15,-8],[-14,-9],[-15,-11],[-27,-10],[-4,-1],[-7,-3],[-22,-10],[-36,-16],[-24,-12],[-16,-8],[-13,-10],[-12,-15],[-14,-10],[-14,-9],[-15,-9],[-5,-2],[-13,-9],[-14,-9],[-14,-8],[-13,-11],[-10,-16],[-11,-16],[-9,-17],[-9,-17],[-5,-20],[-1,-21],[0,-23],[5,-20],[10,-17],[0,-21],[-10,-16],[-7,-19],[-10,-15],[-12,-15],[-13,-11],[-13,-11],[-13,-11],[-13,-12],[-12,-15],[-11,-16],[-11,-17],[-11,-15],[-12,-14],[-11,-15],[-11,-15],[-12,-12],[-14,-7],[-16,-2],[-13,-10],[-12,-13],[-12,-15],[-11,-15],[-10,-17],[-10,-17],[-9,-19],[-1,-22],[-3,-22],[-11,-16],[-11,-15],[-9,-17],[-9,-19],[-8,-19],[-8,-20],[-5,-20],[-7,-21],[-9,-17],[-11,-14],[-11,-14],[-10,-17],[-8,-17],[7,-8],[-8,-16],[-11,-16],[-12,-14],[-11,-15],[-11,-15],[-11,-15],[-11,-13],[-5,-12],[-2,-7],[-9,-18],[-14,-5],[-13,-13],[-10,-14],[-11,-14],[-9,-18],[-2,-22],[-9,-17],[-14,-7],[-15,-6],[-12,-13],[-13,-9],[-15,-6],[-15,-3],[-15,0],[-16,0],[-16,0],[-16,1],[-16,-3],[-16,-7],[-14,-9],[-15,-6],[-15,0],[-17,1],[-16,3],[-7,3],[-7,4],[-3,-7],[-13,-8],[-13,-13],[-6,-2],[-13,-12],[-13,-11],[-13,-11],[-13,-11],[-14,-10],[-15,-10],[-15,-2],[-15,-1],[-14,-9],[-15,-9],[-14,-9],[-14,-7],[-14,-7],[-16,-7],[-13,-7],[-15,-6],[-16,-4],[-15,-5],[-14,-7],[-15,-6],[-14,-9],[-12,-11],[-13,-13],[-14,-10],[-3,-3],[-4,-3],[-9,-10],[-18,-13],[-32,-29],[-58,-61],[-48,-55],[-28,-30],[-2,-2],[-13,-13],[-13,-13],[-13,-11],[-11,-12],[-13,-14],[-12,-12],[-13,-13],[-12,-14],[-12,-14],[-11,-16],[-7,-12],[-23,-40],[-8,-15],[-10,-18],[-10,-15],[-10,-17],[-8,-18],[-7,-18],[-3,-8],[-24,-50],[-9,-21],[-28,-65],[-9,-17],[-6,-19],[-3,-7],[-13,-36],[-17,-42],[-18,-40],[-17,-37],[-25,-61],[-22,-60],[-24,-50],[-35,-75],[-18,-41],[-23,-66],[-7,-28],[1,-126],[3,-18],[5,-169],[9,-56],[29,-130],[7,-22],[10,-46],[-1,-99],[-8,-101],[-5,-18],[-28,-47],[-14,-39],[-1,-44],[-6,-20],[-4,-21],[-19,-58],[-11,-41],[-12,-63],[-11,-86],[-13,-62],[-37,-43],[-6,-19],[-1,-15],[-11,16],[-14,-6],[-13,-15],[-9,-16],[-11,-16],[-8,-3],[-5,9],[4,8],[20,22],[7,20],[3,21],[0,23],[-4,22],[-97,263],[-11,35],[-5,15],[-11,16],[-12,41],[-7,20],[-5,9],[-9,18],[-7,17],[-10,17],[-10,28],[-3,6],[-4,3],[0,7],[5,14],[-4,24],[-7,19],[-11,15],[-9,17],[-165,365],[-22,32],[-19,38],[-51,90],[-25,49],[-19,40],[-19,31],[-17,25],[-6,15],[-31,59],[-17,29],[-9,18],[-188,327],[-35,47],[-9,17],[-9,19],[-8,17],[-34,49],[-6,8],[-18,32],[-5,5],[-1,5],[-1,22],[-5,21],[-12,15],[-11,15],[-13,14],[-6,20],[1,21],[6,20],[9,15],[-3,3],[-10,-15],[-12,-28],[-15,5],[-14,12],[-9,11],[-17,19],[-27,28],[-46,52],[-7,8],[-12,12],[-22,26],[-53,50],[-15,8],[-11,14],[-16,12],[-42,31],[-29,31],[-21,22],[-24,29],[-21,32],[-12,14],[-21,34],[-11,14],[-53,84],[-12,14],[-10,11],[-25,26],[-23,20],[-12,12],[-11,15],[-2,6],[-7,-1],[-18,-10],[-5,11],[-14,-9],[4,-10],[-14,-8],[-2,4],[-23,-15],[1,-4],[-25,-14],[-20,-33],[3,-8],[-24,-16],[-6,18],[-10,-2],[-14,-9],[-6,-16],[4,-11],[-14,-11],[7,-19],[-12,-10],[-13,-12],[-12,-14],[-11,-13],[-17,3],[-14,-4],[-13,-12],[-14,-9],[-14,-7],[-12,-13],[-15,1],[-23,27],[-15,-2],[-12,-15],[-5,-20],[-7,-19],[-10,-15],[-15,-4],[-8,-6],[-6,-2],[2,-6],[-11,4],[-43,-17],[-2,11],[-8,-4],[11,-59],[4,-23],[2,-4],[0,-9],[-6,-7],[-66,-40],[-79,-37],[-3,21],[-18,-6],[-1,15],[-66,-12],[0,10],[-29,-3],[-6,2],[-14,8],[-22,-5],[-10,9],[1,21],[-1,17],[-14,-6],[-15,-8],[-14,-10],[-14,-10],[-12,-12],[-11,-14],[-10,-16],[-10,-17],[-4,-21],[-1,-11],[8,-15],[11,-17],[1,-8],[-7,-7],[-2,-2],[-13,-9],[-10,5],[-4,14],[-4,8],[-1,4],[-13,-5],[-11,-4],[-1,-3],[-12,-5],[-15,-5],[-11,15],[-7,11],[4,23],[-13,9],[-15,0],[-15,-6],[-15,-8],[-9,-4],[1,-14],[-3,-8],[-3,-6],[4,-9],[3,-1],[1,-4],[0,-8],[-3,-11],[0,-9],[0,-6],[-2,-3],[-3,4],[-4,-5],[-3,-3],[-3,-1],[-4,-7],[0,-6],[-4,-5],[-4,-5],[-6,-2],[-6,-1],[-3,1],[-7,0],[-4,3],[-10,3],[-6,4],[-4,4],[-1,6],[3,11],[4,11],[4,11],[7,3],[3,0],[5,-1],[4,-7],[1,-9],[1,-9],[4,1],[6,7],[9,12],[1,5],[2,6],[5,10],[1,11],[1,7],[0,3],[1,5],[0,10],[-2,4],[-7,-4],[-5,-3],[-8,-12],[-11,12],[14,22],[-4,9],[-9,1],[-11,-1],[-7,7],[-12,31],[5,3],[-2,7],[-21,-13],[3,16],[-2,5],[9,7],[3,7],[8,5],[-4,6],[-6,10],[-7,19],[-12,13],[-15,1],[-2,-13],[1,-6],[-2,-6],[-3,-15],[-3,-10],[-4,-5],[-6,-1],[-6,2],[-4,1],[-7,5],[0,8],[0,11],[-4,17],[-2,9],[-4,11],[-1,8],[0,10],[11,19],[15,24],[7,12],[22,20],[12,5],[-14,127],[-203,412],[-83,129],[-7,16],[4,15],[20,7],[-3,26],[-61,195],[-141,439],[-14,41],[-24,69],[-67,191],[-20,57],[-63,172],[-405,1018],[-245,492],[-122,270],[-59,131],[-21,36],[-7,20],[-12,46],[-102,181],[-89,98],[-196,-222],[-33,72],[195,199],[-415,641],[-471,560],[-444,408],[-190,146],[-177,78],[-148,-69],[-173,-9],[-80,-80],[-5,11],[-11,-13],[-3,-3],[5,-10],[-30,-32],[-33,-37],[-60,-58],[-15,-15],[-12,-9],[-28,-20],[-41,-22],[-22,-13],[-54,-24],[-11,-3],[-9,-3],[-9,-2],[-14,-9],[-16,0],[-15,-2],[-16,0],[-16,-2],[-15,-3],[-16,-2],[-15,-2],[-15,-2],[-14,-6],[-15,-5],[-15,-6],[-14,-7],[-14,-9],[-14,-8],[-15,-9],[-13,-10],[-12,-12],[-12,-12],[-7,-19],[0,-6],[0,-16],[0,-21],[25,11],[29,22],[11,33],[15,8],[8,22],[8,-15],[3,-29],[-22,-68],[-28,-46],[-20,-75],[-22,-52],[-1,-66],[3,-21],[4,-20],[-2,-22],[-15,-3],[-14,-8],[-13,-9],[1,-5],[1,-9],[-15,1],[-8,-18],[-10,-16],[-1,-21],[2,-15],[-10,15],[-15,1],[-15,-6],[4,20],[-12,11],[-8,3],[-10,-14],[-3,-6],[-8,-18],[-17,-21],[-18,-35],[-18,-38],[2,-42],[-8,-15],[-9,-11],[-23,-52],[-19,-21],[-28,-19],[-9,-8],[-31,-40],[-19,-31],[-25,-22],[-22,-25],[-10,-18],[-17,-22],[-22,-24],[-17,-18],[-19,-15],[-21,-16],[-22,-2],[-5,14],[-20,23],[-5,17],[11,21],[16,23],[16,23],[23,29],[22,25],[25,25],[7,36],[18,37],[16,29],[9,16],[9,12],[25,30],[32,24],[24,14],[13,14],[14,-2],[29,12],[32,37],[19,20],[27,36],[30,41],[-44,51],[-51,39],[-26,0],[-15,1],[-13,-11],[-13,-10],[-8,-10],[-4,-7],[-4,-7],[-6,-6],[-10,-4],[-13,-2],[-12,-9],[-13,-2],[-5,17],[4,5],[6,7],[-2,21],[-11,7],[-8,-11],[-8,-19],[-15,-2],[-10,10],[0,18],[7,16],[7,17],[7,15],[9,18],[11,16],[4,17],[-1,20],[10,12],[-6,75],[-4,22],[-7,12],[-12,10],[-13,8],[-6,4],[-10,2],[-11,-6],[-11,-12],[-10,-12],[-7,-16],[-9,-15],[-11,-13],[-10,-6],[-7,-7],[-5,-5],[-14,1],[-13,-4],[-12,6],[-13,-5],[-13,-5],[-5,10],[5,8],[6,4],[-6,12],[9,1],[7,5],[4,11],[1,12],[-4,6],[-4,4],[-7,6],[-5,3],[-4,-10],[-7,-6],[-7,-13],[-13,1],[-9,12],[-7,15],[5,23],[11,9],[4,16],[-5,12],[-3,9],[8,20],[9,8],[13,12],[13,-1],[10,14],[5,18],[3,19],[1,12],[-10,2],[-4,8],[9,14],[10,12],[12,6],[16,3],[13,1],[10,1],[-6,-14],[7,-11],[14,3],[10,3],[1,-9],[8,-1],[10,2],[8,-13],[11,-11],[14,-11],[10,-10],[19,-9],[11,-7],[13,-6],[16,3],[8,11],[9,16],[6,10],[12,13],[13,12],[24,26],[58,57],[23,23],[12,5],[7,19],[9,17],[9,18],[10,15],[12,15],[10,15],[11,15],[5,21],[5,20],[2,21],[3,21],[2,21],[2,21],[2,21],[4,21],[0,21],[1,21],[2,21],[0,21],[-1,22],[-2,21],[-3,21],[-4,20],[-7,20],[-4,21],[-4,20],[-4,21],[-5,20],[-6,21],[-6,20],[-5,21],[-3,21],[-4,20],[-5,21],[-6,20],[-4,9],[-3,9],[-7,19],[-4,21],[-6,19],[-7,19],[-7,19],[-6,19],[-2,21],[-8,19],[-6,19],[-5,21],[-8,20],[-7,18],[-5,15],[-9,25],[-7,19],[-3,14],[-2,6],[-3,22],[-3,21],[-5,19],[-4,21],[-5,20],[-8,19],[-7,19],[-8,19],[-8,20],[-12,19],[-10,16],[-7,18],[-5,23],[-3,21],[0,16],[3,21],[11,11],[11,8],[11,8],[-5,15],[-7,16],[-27,0],[-39,6],[-40,4],[-39,10],[-37,31],[-31,34],[-32,51],[-28,48],[-25,40],[-19,48],[-21,51],[-20,50],[-20,51],[-19,56],[-22,62],[-24,67],[-21,48],[-30,46],[-31,32],[-39,32],[-36,41],[-23,41],[-32,62],[-27,59],[-19,47],[-21,45],[-26,55],[-24,47],[-19,46],[-19,44],[-28,48],[-37,47],[-41,43],[-32,34],[-30,39],[-28,37],[-25,41],[-26,50],[-22,55],[-19,55],[-18,56],[-17,48],[-21,54],[-28,46],[-36,41],[-40,53],[-29,43],[-27,41],[-29,38],[-31,35],[-33,33],[-38,40],[-35,43],[-35,44],[-28,35],[-28,38],[-28,35],[-40,45],[-42,43],[-45,43],[-44,40],[-37,32],[-35,30],[-37,29],[-39,29],[-49,39],[-32,31],[-29,32],[-35,41],[-30,36],[-32,35],[-37,39],[-33,32],[-33,38],[-35,30],[-35,31],[-31,29],[-33,36],[-34,28],[-37,35],[-36,31],[-45,41],[-40,35],[-40,34],[-37,33],[-32,30],[-37,42],[-30,39],[-29,35],[-33,41],[-36,42],[-30,39],[-39,48],[-29,37],[-29,36],[-33,40],[-29,32],[-49,46],[-44,35],[-47,34],[-41,35],[-39,35],[-55,54],[-40,37],[-43,35],[-37,28],[-32,29],[-41,44],[-30,31],[-34,25],[-33,25],[-35,22],[-37,28],[-61,37],[-50,32],[-41,28],[-43,29],[-44,23],[-40,23],[-43,27],[-62,43],[-44,40],[-38,37],[-37,31],[-40,29],[-58,46],[-44,39],[-47,36],[-34,26],[-35,26],[-35,21],[-35,24],[-47,38],[-44,37],[-35,34],[-33,32],[-31,30],[-41,34],[-32,27],[-33,28],[-44,40],[-37,31],[-53,49],[-42,44],[-39,39],[-38,35],[-40,39],[-51,53],[-33,34],[-39,38],[-34,37],[-38,36],[-40,37],[-32,34],[-31,36],[-31,32],[-32,33],[-33,33],[-31,34],[-32,37],[-32,39],[-32,39],[-44,59],[-29,37],[-27,36],[-40,46],[-43,43],[-43,43],[-29,33],[-29,39],[-34,47],[-33,44],[-36,43],[-35,36],[-37,42],[-36,42],[-37,40],[-55,58],[-29,33],[-28,37],[-45,74],[-28,50],[-24,39],[-25,46],[-25,47],[-34,57],[-29,45],[-30,50],[-31,53],[-29,54],[-37,74],[-25,60],[-19,55],[-17,58],[-17,54],[-15,52],[-10,56],[-2,52],[1,67],[8,54],[-49,52],[-62,65],[-86,-72],[-129,-75],[-221,7],[-317,183],[-524,696],[-321,605],[-353,479],[-966,759],[-718,487],[-983,436],[-780,545],[-246,719],[-62,360],[-1247,-364],[-2203,2053],[157,987],[-367,613],[-565,-305],[-715,-137],[-561,-437],[-344,901],[-254,410],[-217,137],[-887,1106],[333,690],[-202,214]],[[362779,201088],[330,-392]],[[384007,214197],[3,3]],[[384029,214224],[16,18]],[[387009,216392],[64,11]],[[402104,218390],[272,-30]],[[440530,218381],[5,-8],[3,0],[4,6],[3,9],[3,5],[5,1],[16,-7],[7,-21],[7,-10],[7,-7],[7,-10],[3,-29],[5,-7],[4,-3],[10,-9],[3,-15],[-4,-7],[-12,-4],[-5,-8],[-5,-14],[-7,-4],[-7,-10],[-4,-11],[-1,-8],[-7,0],[-18,-9],[-25,8],[-28,11],[-9,8],[-2,10],[1,11],[8,10],[3,14],[5,44],[9,41],[7,33],[7,5],[3,-7],[-1,-8]],[[437704,218430],[1,-3],[4,0],[6,1],[6,-3],[-2,5],[2,2],[3,-2],[2,-2],[2,-3],[2,0],[2,-1],[-1,-5],[-1,-3],[0,-1],[2,-3],[3,1],[4,0],[3,3],[1,0],[3,-3],[1,1],[5,0],[5,-1],[0,-2],[4,-5],[0,-3],[0,-5],[4,-4],[-1,-8],[1,-2],[4,-2],[3,-4],[-1,-3],[6,-3],[9,-1],[2,-4],[-4,-10],[-3,0],[-3,-2],[-1,-8],[2,-6],[0,-5],[1,-3],[1,-3],[-1,-8],[3,-7],[1,-1],[1,-6],[0,-2],[2,0],[3,-1],[2,-2],[0,-4],[-2,-2],[-2,0],[-3,-3],[0,-4],[4,-3],[-2,-3],[6,-1],[1,-1],[0,-2],[0,-3],[-3,-3],[-1,0],[0,-8],[-1,-2],[-2,0],[-2,-1],[-3,-4],[2,-4],[0,-8],[-3,-6],[-2,-1],[-2,0],[-3,-10],[-4,0],[-4,0],[-5,-1],[-3,-5],[2,-6],[-4,-1],[-1,-1],[1,-8],[2,-1],[-2,-4],[-3,-1],[-5,-6],[-3,-4],[-2,-10],[-2,-2],[-5,-2],[-3,-4],[-3,-10],[-1,-7],[-4,0],[-6,-2],[-10,-6],[-3,-6],[-3,-4],[-5,-4],[-3,-1],[-5,-5],[-8,-5],[-4,-7],[-5,3],[-4,0],[-6,1],[-4,-3],[-3,-1],[-2,0],[-3,1],[1,2],[-1,2],[0,2],[-4,1],[-4,-3],[-1,-4],[2,-2],[-1,-5],[-2,0],[-4,-4],[-3,-3],[-2,2],[-1,0],[-10,-2],[-4,2],[-1,4],[-3,-1],[-1,3],[-3,2],[-4,5],[-3,1],[-4,2],[-3,-1],[-3,-2],[-4,-1],[-5,-2],[-2,-3],[-1,-6],[1,-9],[2,-2],[4,-3],[4,-2],[1,-4],[2,-8],[-2,-2],[-3,-4],[-6,2],[-4,2],[-1,2],[-1,2],[-2,3],[-3,5],[0,4],[-2,6],[-1,6],[-2,3],[-12,7],[-3,4],[-1,6],[-2,8],[-4,7],[-2,6],[0,4],[0,9],[-3,8],[4,6],[1,0],[6,-1],[0,4],[3,7],[5,7],[5,4],[4,2],[6,6],[2,8],[2,5],[3,9],[2,7],[-2,4],[-2,6],[-3,4],[-2,3],[-1,4],[-2,0],[-2,7],[-3,11],[3,6],[5,1],[5,5],[2,6],[0,6],[-4,7],[-5,5],[-3,6],[1,6],[3,4],[8,7],[9,6],[2,0],[7,-1],[4,-2],[6,1],[6,4],[22,22],[2,10],[5,7],[9,6],[6,4],[4,3],[-1,6],[3,4],[4,4],[4,0],[3,4],[2,2],[7,4],[2,1],[4,2],[3,3],[2,3],[0,5],[0,2],[4,4],[2,1],[2,-4]],[[449300,218651],[-133,-43],[-12,91],[-13,74],[-12,100],[-12,78],[30,129],[36,50],[27,59],[64,-15],[30,-112],[31,-113],[90,-232],[-126,-66]],[[452150,219489],[-44,-69],[-65,-26],[-56,44],[-72,-51],[-127,-16],[-86,351],[534,267],[103,-354],[-137,-107],[-50,-39]],[[449873,219776],[-47,-94],[-41,-69],[-90,-21],[-90,-21],[-30,23],[-31,-62],[15,-35],[-24,-38],[-34,-23],[-13,56],[22,57],[-19,70],[-29,31],[-27,39],[-19,48],[31,17],[59,17],[69,56],[60,-53],[55,95],[65,25],[57,95],[61,-213]],[[441004,220402],[1,-5],[5,0],[2,0],[2,-2],[-1,-4],[0,-2],[3,-5],[0,-2],[2,-1],[4,-2],[1,-3],[-2,-3],[-3,-3],[-3,-6],[-1,0],[-3,-1],[-1,5],[-2,2],[-3,4],[1,2],[1,3],[-1,2],[0,3],[0,3],[-3,3],[-2,0],[-2,-3],[-1,-1],[-2,1],[-2,0],[1,4],[3,1],[0,4],[0,3],[3,2],[3,1]],[[441095,220414],[1,-2],[1,1],[1,-1],[2,-3],[1,-4],[-2,-4],[-4,-2],[-1,-2],[-2,-3],[-2,-1],[-5,-1],[-2,2],[-3,4],[-3,1],[-1,3],[0,2],[2,4],[5,1],[1,-1],[1,-1],[2,-4],[2,-3],[1,0],[1,3],[0,4],[-1,1],[-3,2],[0,3],[3,3],[3,0],[2,-2]],[[440974,220512],[2,-1],[3,0],[2,-2],[4,-2],[1,-3],[2,-3],[2,0],[0,-5],[1,-2],[-2,-4],[0,-3],[-1,-5],[-2,-2],[0,-3],[-1,-3],[-2,0],[-1,-1],[2,-4],[-2,-4],[-1,-1],[-3,-1],[0,-7],[0,-6],[-3,-4],[-3,-1],[0,4],[-1,3],[0,4],[0,1],[-2,0],[-2,0],[-1,3],[2,4],[0,2],[-3,2],[0,1],[-2,4],[-2,0],[-1,4],[1,5],[-2,1],[-4,-2],[-1,5],[1,4],[4,0],[0,3],[-2,4],[1,2],[3,3],[1,1],[1,7],[4,2],[2,1],[0,2],[1,3],[2,-1],[1,-3],[1,-2]],[[441240,220562],[-2,-1],[-4,1],[-1,1],[-4,2],[-1,2],[0,3],[-1,4],[4,2],[1,0],[1,1],[3,0],[3,-1],[2,-1],[1,-2],[0,-3],[0,-2],[1,-3],[-3,-3]],[[441216,220595],[0,4],[1,1],[1,0],[2,-1],[2,1],[2,-1],[3,2],[1,-4],[1,4],[-1,2],[1,1],[2,-2],[2,-1],[1,-2],[-1,-1],[0,-4],[1,-1],[1,-2],[2,3],[2,3],[5,0],[0,-3],[-2,-1],[-1,-2],[-4,-1],[-1,-2],[-5,2],[0,-1],[-2,-6],[1,-2],[-1,-2],[-2,-3],[-1,3],[-3,1],[-1,1],[-1,2],[0,1],[3,3],[2,1],[0,3],[-2,1],[-2,1],[-2,-1],[-2,2],[-2,-1],[0,2]],[[441258,220596],[-2,-2],[-3,0],[-1,0],[-4,1],[-1,3],[1,5],[3,2],[5,1],[3,1],[1,-4],[0,-4],[0,-2],[-2,-1]],[[441009,220624],[-2,-2],[-1,1],[-1,3],[-1,2],[1,2],[0,1],[1,1],[1,1],[2,0],[0,-2],[0,-3],[1,-2],[-1,-2]],[[441216,220595],[-2,-1],[-3,0],[-5,-4],[0,-6],[3,-3],[0,-3],[-3,-3],[-5,-1],[-7,2],[-4,5],[-3,-2],[-1,-11],[1,-1],[-4,-3],[1,-6],[2,-4],[1,-2],[-3,-5],[3,-7],[-1,-7],[-2,-3],[-5,4],[-1,4],[-4,-4],[-7,2],[-1,4],[-2,-6],[4,-2],[0,-5],[0,-4],[-6,-3],[-3,2],[-3,3],[-4,-2],[-4,-5],[-4,-1],[-4,-4],[-1,-1],[-4,-7],[-3,-1],[-1,-10],[-4,1],[-6,-3],[0,-1],[-3,-1],[-2,-1],[-1,-3],[-1,-4],[0,-8],[2,-1],[4,3],[5,3],[4,-1],[0,-5],[0,-7],[-3,0],[-3,1],[-5,1],[-3,-2],[-4,3],[-1,-10],[-1,-2],[1,0],[1,-6],[-5,0],[0,-1],[2,-9],[-2,-3],[-6,-6],[-3,0],[-3,2],[-5,-3],[-3,-3],[5,-3],[-3,-3],[-3,0],[-3,4],[-2,-2],[-1,-5],[-3,-3],[-4,-3],[-4,2],[0,1],[3,4],[-8,-2],[-9,-1],[-2,0],[-2,-2],[-1,-2],[-3,-2],[-2,-2],[0,-2],[1,-4],[2,-3],[3,-1],[4,-4],[0,-1],[-6,-4],[-2,1],[-3,-2],[-4,-1],[-2,1],[-1,0],[-3,0],[-2,-1],[1,5],[-1,2],[0,1],[3,6],[4,0],[3,1],[-2,9],[-2,-1],[-8,-3],[-3,2],[-7,-3],[-4,-1],[-1,5],[4,5],[-2,0],[-10,0],[-2,0],[-3,0],[-4,-2],[-3,-1],[-3,1],[-5,-3],[-2,0],[-2,-2],[-3,-1],[-6,-4],[-2,0],[-4,3],[-1,5],[2,5],[2,2],[2,5],[1,2],[1,4],[2,5],[3,-1],[1,-5],[0,-5],[1,-4],[2,0],[3,-1],[2,0],[2,2],[4,2],[2,2],[5,0],[2,2],[1,0],[4,-1],[1,2],[2,0],[5,2],[0,2],[3,2],[-4,0],[-2,1],[-2,-1],[-1,1],[-3,3],[0,3],[4,2],[4,1],[0,4],[-1,4],[1,4],[-1,3],[-1,8],[0,13],[-3,10],[0,6],[1,2],[-1,2],[-1,1],[-1,2],[-2,2],[0,4],[1,2],[-1,3],[-1,2],[0,2],[0,4],[0,5],[0,2],[1,3],[-1,1],[-1,2],[-1,3],[1,4],[-2,11],[2,12],[-2,11],[-1,13],[4,10],[3,3],[0,13],[2,9],[7,7],[0,8],[0,7],[2,8],[6,2],[4,4],[3,2],[8,7],[2,6],[1,5],[2,12],[-2,13],[1,14],[0,18],[-4,9],[-6,22],[-1,16],[-1,13],[0,16],[1,4],[-12,24],[-7,13],[0,8],[4,11],[8,3],[117,-9],[32,-95],[49,33],[-3,-49],[1,-28],[3,-27],[6,-22],[7,-20],[4,-7],[2,-3],[-2,-2],[-1,-2],[1,-4],[1,0],[4,3],[2,-1],[2,-2],[0,-2],[1,-2],[3,-1],[1,-2],[1,-3],[0,-2],[-1,-3],[-1,-1],[-4,-1],[-5,-2],[-2,-3],[-3,1],[-3,1],[-10,-3],[-18,-13],[3,-4],[3,-6]],[[441035,221379],[0,-4],[-3,-1],[-3,1],[-2,1],[-1,1],[-4,-4],[0,1],[-6,4],[0,7],[3,6],[4,-3],[8,-7],[4,-2]],[[441106,221414],[0,-2],[-1,-6],[0,-8],[3,-5],[-1,-4],[-2,-2],[-3,-4],[-4,-4],[-3,-2],[-5,-2],[-4,3],[-2,1],[-4,9],[-5,7],[1,8],[1,6],[6,5],[3,0],[4,0],[4,2],[7,0],[5,-2]],[[441084,221431],[-2,-6],[0,-2],[-4,-1],[-4,4],[-2,0],[-6,0],[-1,4],[-1,3],[3,6],[4,2],[4,0],[5,-1],[5,-5],[-1,-4]],[[441081,221446],[-3,0],[-3,0],[0,2],[1,3],[5,2],[1,-1],[0,-5],[-1,-1]],[[441046,221449],[2,-2],[2,0],[1,0],[2,-1],[3,-2],[0,-3],[-3,-3],[-3,0],[0,6],[-1,-1],[0,-8],[-2,-5],[-7,-2],[-5,1],[-2,4],[1,8],[-1,4],[1,8],[2,3],[3,-1],[4,-4],[3,-2]],[[441074,221449],[-6,-4],[-5,1],[-5,1],[-4,4],[-1,4],[1,8],[4,7],[7,2],[9,0],[1,-1],[2,-6],[0,-9],[0,-2],[-3,-5]],[[441089,221470],[-1,-2],[-2,1],[-1,0],[-2,1],[-2,2],[-1,1],[0,3],[0,2],[1,1],[1,1],[2,-3],[3,-1],[1,-1],[1,-3],[0,-2]],[[441014,221466],[-1,-2],[-1,2],[-3,2],[-3,1],[-2,3],[-1,2],[3,4],[1,1],[1,3],[2,1],[4,0],[2,-1],[0,-4],[0,-5],[-1,-4],[-1,-3]],[[441114,221500],[-3,-2],[-2,4],[1,4],[4,4],[4,1],[1,-2],[-1,-6],[-4,-3]],[[441034,221501],[-2,-7],[-3,0],[0,7],[1,5],[1,2],[0,3],[-2,6],[-2,2],[-1,5],[5,4],[5,3],[5,-1],[1,-6],[-3,-6],[1,-4],[-1,-3],[-1,-2],[-3,0],[0,-4],[-1,-4]],[[454227,221913],[3,-11],[0,-22],[-6,-13],[-19,-14],[-50,-38],[-6,-22],[1,-9],[6,-5],[14,-6],[8,-7],[4,-9],[-2,-7],[-16,-3],[-4,-5],[-13,-3],[-6,-1],[-6,-3],[-11,-11],[-11,-35],[-6,-8],[-24,4],[-16,14],[-5,1],[-14,-1],[-9,-11],[-6,-33],[4,-18],[4,-12],[7,-11],[13,-11],[10,-18],[4,-10],[4,-13],[2,-13],[5,-20],[3,-15],[3,-7],[15,-13],[7,-13],[5,-14],[7,-14],[-2,-13],[-12,-10],[-11,-1],[-16,-2],[-16,6],[-17,-13],[-5,-8],[-21,3],[-4,10],[-3,21],[-1,43],[-5,6],[-20,32],[-2,9],[-1,26],[4,6],[2,12],[-10,11],[-10,0],[-19,-2],[-11,2],[-5,6],[-9,11],[-8,10],[-10,20],[2,19],[8,38],[10,5],[19,11],[16,3],[7,10],[-7,11],[-17,0],[-21,4],[-11,5],[0,13],[0,19],[2,7],[9,16],[12,7],[6,6],[53,0],[8,1],[8,15],[5,8],[4,11],[10,-6],[12,0],[4,13],[-1,24],[6,18],[10,8],[12,7],[20,2],[17,-6],[11,1],[16,2],[6,9],[22,7],[17,1],[29,-5],[9,-9]],[[441923,222039],[-2,-2],[-1,1],[-2,1],[-1,-5],[0,-1],[-2,0],[-1,0],[-2,-3],[-1,-1],[-1,-2],[-4,-2],[-1,0],[-3,0],[-2,0],[-1,-1],[0,-2],[2,-1],[3,0],[2,-1],[0,-4],[0,-2],[-1,-1],[-2,0],[-3,-1],[-3,0],[-2,2],[-1,2],[0,2],[-2,0],[-1,1],[-2,1],[-1,1],[-1,4],[0,2],[1,2],[2,2],[1,0],[3,4],[0,3],[-1,1],[-2,2],[-1,1],[0,3],[1,2],[1,2],[0,3],[-1,1],[-1,2],[0,5],[1,5],[2,3],[3,0],[0,6],[0,2],[0,2],[2,2],[1,1],[2,1],[1,3],[0,4],[0,3],[0,3],[2,3],[4,2],[4,4],[3,2],[3,1],[2,-1],[2,-1],[1,0],[2,-2],[2,-4],[2,-2],[-1,-2],[-2,-3],[0,-4],[2,-1],[1,0],[3,-1],[2,-2],[0,-3],[-1,-2],[0,-3],[1,-1],[1,-1],[0,-4],[1,-2],[1,-1],[0,-1],[-2,-1],[0,-1],[-1,-3],[-1,-1],[-4,-1],[-1,-1],[-1,-4],[-1,-1],[-1,0],[-2,-3],[-1,0],[-2,-1],[2,-2],[1,-1],[1,0],[0,-3],[0,-3],[-1,-1]],[[453969,222068],[8,-23],[4,-7],[2,-24],[-4,-27],[-12,-22],[-30,-13],[-19,-7],[-21,-4],[-20,-10],[-12,-1],[-2,-13],[-20,-8],[-16,-14],[-1,-17],[6,-13],[12,-6],[4,-18],[-23,-4],[-27,0],[-13,-4],[-10,-16],[1,-9],[7,-14],[9,-2],[17,-2],[10,-10],[4,-15],[-6,-10],[-9,-2],[-15,2],[-3,8],[-14,16],[-2,-10],[-11,-17],[-23,-3],[-15,-4],[-7,-15],[0,-16],[5,-10],[12,-16],[10,-23],[-1,-27],[-10,-29],[-22,-18],[-16,-2],[-18,-9],[-10,-8],[-18,-35],[-10,-16],[-12,-2],[-6,9],[3,14],[6,14],[4,18],[-10,13],[-22,-2],[-7,-7],[-7,5],[-9,16],[-1,9],[-11,8],[-23,12],[-6,0],[-10,17],[0,10],[-1,21],[14,18],[56,27],[15,5],[31,6],[10,23],[-1,24],[4,38],[9,19],[22,14],[16,7],[14,20],[1,8],[15,20],[6,5],[12,20],[2,23],[14,20],[8,6],[39,20],[87,7],[14,3],[4,11],[-6,18],[-10,11],[-18,10],[-31,-1],[-9,15],[1,25],[6,13],[17,8],[12,-1],[19,-8],[21,-17],[16,-6],[20,-5],[11,-14]],[[454834,222204],[-32,-5],[-10,1],[-2,11],[10,37],[55,58],[46,96],[18,21],[21,15],[27,-15],[6,-32],[3,-38],[0,-25],[-12,-17],[-64,-76],[-19,-15],[-28,-14],[-19,-2]],[[442131,222452],[4,-1],[2,1],[3,-8],[0,-4],[-2,-8],[-3,-5],[1,-6],[-3,-2],[-3,-7],[0,-5],[1,-3],[1,-4],[1,-4],[1,-2],[2,-3],[4,-3],[3,0],[0,-2],[3,-8],[9,1],[4,-1],[3,-2],[5,0],[1,-2],[-1,-2],[2,-3],[4,-4],[3,-7],[0,-5],[-2,-1],[-2,0],[-1,-2],[0,-3],[0,-4],[-2,-4],[-5,-1],[-2,-2],[9,-2],[0,-3],[1,-2],[1,-2],[0,-8],[-6,-6],[-11,-1],[-24,-10],[0,-3],[3,-2],[4,2],[4,2],[6,2],[6,2],[7,3],[5,1],[3,-2],[1,-4],[3,-6],[1,0],[-1,-5],[-2,-7],[-7,0],[-6,-1],[-5,-3],[-5,-1],[-1,-4],[2,-2],[4,-1],[-2,-4],[-1,-2],[4,-1],[2,-2],[1,-3],[-1,-7],[-3,-2],[-4,-1],[0,-1],[-1,-2],[-3,-6],[-4,-3],[-6,-1],[-2,-7],[-4,-1],[-4,-1],[-1,-6],[-3,-5],[-2,2],[-3,0],[-3,-3],[-10,3],[2,-10],[-1,-4],[0,-1],[1,-3],[-2,-5],[-7,-1],[-3,2],[-2,4],[-3,-2],[-1,-6],[-4,-7],[3,-6],[3,-5],[0,-10],[-4,-4],[-4,-1],[-2,1],[-2,-4],[-3,0],[-4,0],[-5,-5],[-5,0],[1,-7],[-2,-5],[-7,0],[1,-6],[2,-2],[1,-1],[7,2],[2,-9],[3,-3],[3,-2],[0,-5],[-2,-5],[0,-8],[3,-7],[0,-3],[-1,-4],[1,-3],[2,-3],[3,-3],[7,5],[-4,6],[-1,8],[2,4],[4,1],[2,-2],[7,-8],[3,-8],[-3,-2],[-3,-2],[-3,0],[1,-7],[-1,-3],[1,-8],[3,-2],[-6,-1],[-3,2],[-5,-2],[-3,-2],[0,-3],[-2,-5],[-2,-4],[-4,-4],[3,-3],[1,-3],[2,-3],[1,-5],[3,-7],[-3,-14],[-1,-1],[0,-3],[-4,-6],[-4,-2],[-2,-6],[2,-4],[-1,-4],[-1,-4],[4,-4],[6,-5],[0,-7],[2,-15],[-2,-5],[-7,-1],[-6,1],[-7,-3],[-5,-1],[-3,-1],[-7,3],[-3,-2],[-3,-2],[-3,-7],[2,-2],[1,-2],[2,-8],[5,-2],[-1,-6],[-2,-5],[-2,-5],[-4,0],[-3,3],[-2,1],[-4,-3],[-4,3],[-3,4],[-3,4],[-2,5],[-2,3],[-5,4],[0,7],[-1,6],[-2,5],[0,4],[3,4],[1,4],[1,6],[-3,5],[0,3],[1,5],[0,5],[-2,17],[-1,2],[2,4],[3,4],[2,8],[-2,4],[1,4],[6,2],[5,2],[0,6],[-4,3],[-1,2],[-1,11],[4,7],[7,0],[1,4],[8,11],[1,11],[-1,9],[-6,4],[-7,-4],[-3,-3],[-7,-1],[-3,-2],[-4,0],[-3,-1],[-8,0],[-3,0],[-5,4],[0,5],[3,3],[6,4],[1,7],[0,4],[1,3],[3,3],[9,6],[0,7],[-1,8],[0,7],[5,4],[7,0],[-3,6],[-3,8],[2,7],[3,3],[2,5],[0,8],[3,5],[1,5],[-1,6],[3,12],[2,4],[4,1],[3,0],[5,-2],[5,5],[3,3],[0,2],[3,4],[1,5],[1,6],[1,13],[2,4],[4,4],[1,11],[-1,9],[-1,6],[0,6],[-2,5],[-1,2],[2,12],[-3,9],[-1,1],[-1,7],[4,6],[2,1],[0,11],[3,11],[-2,10],[4,8],[0,10],[0,7],[-2,7],[2,10],[3,2],[5,4],[0,2],[10,7],[4,4],[7,1],[9,5],[1,4],[4,2],[1,0],[6,0],[2,1],[10,10],[6,3],[2,-1]],[[442682,222601],[5,-5],[3,-4],[2,-3],[5,-2],[7,1],[7,0],[3,1],[1,4],[2,3],[1,4],[5,3],[2,-2],[3,-3],[1,-3],[2,-3],[2,-1],[4,1],[4,1],[5,-4],[4,-4],[7,-3],[4,-3],[8,-2],[6,-1],[4,-1],[5,-1],[4,-2],[3,-3],[5,-3],[3,-4],[4,-2],[6,-1],[4,-3],[3,-1],[2,-2],[4,-4],[2,-2],[4,-6],[1,-1],[1,-6],[2,-2],[1,-5],[2,-3],[3,-2],[1,0],[1,-4],[0,-6],[0,-8],[-4,-8],[-3,-6],[-4,-5],[-3,-3],[-3,-3],[-2,-3],[-1,-2],[1,-2],[1,-3],[1,-5],[2,-5],[1,-1],[4,0],[2,-1],[2,-1],[0,-1],[-1,-3],[-2,-2],[-2,-4],[-2,-2],[0,-2],[1,-2],[0,-2],[2,-2],[3,-1],[3,-1],[3,0],[4,0],[0,-1],[4,-1],[1,0],[1,-2],[1,-2],[0,-3],[0,-4],[-1,-1],[-1,-2],[-2,-2],[0,-5],[-2,-1],[-1,-2],[-1,-4],[0,-3],[0,-6],[1,0],[0,-3],[0,-4],[0,-3],[-2,1],[-3,-1],[-1,-1],[-9,1],[-8,0],[-8,-1],[-5,-7],[-5,-7],[-10,-3],[-4,4],[-10,3],[-7,0],[-4,2],[-5,5],[-7,7],[-5,4],[-5,3],[-6,0],[-5,-6],[-5,-4],[-7,0],[-3,3],[-4,4],[-6,2],[-7,-3],[-6,-6],[-4,-7],[-9,-8],[-8,-3],[-7,-2],[-6,0],[-7,3],[-4,3],[-1,4],[1,6],[2,9],[1,6],[2,5],[2,10],[-1,5],[-5,2],[-5,2],[-3,4],[-6,3],[-2,7],[-4,6],[-4,11],[-3,6],[-1,9],[-3,5],[-6,3],[-5,3],[-5,3],[-1,4],[-2,3],[0,4],[1,9],[1,11],[0,15],[0,8],[-1,6],[-2,15],[-1,5],[4,11],[1,8],[4,8],[4,7],[3,2],[7,2],[5,0],[6,-1],[7,3],[7,5],[7,6],[5,2],[7,2],[4,-2],[4,-5],[7,-7]],[[455430,222724],[17,-13],[2,-19],[-6,-13],[-5,-6],[-32,1],[-12,14],[-14,4],[-14,2],[-26,-18],[-24,-9],[-18,-25],[-9,-21],[-14,-33],[-19,-3],[-12,4],[-18,-2],[-13,-27],[-58,-103],[-21,-18],[-8,-1],[-13,13],[-3,11],[-11,35],[-6,13],[-8,15],[-5,12],[-15,28],[-7,10],[10,33],[8,16],[-2,22],[0,8],[12,22],[5,6],[15,17],[12,3],[11,3],[14,1],[19,-5],[21,-9],[12,-8],[13,1],[15,8],[5,9],[5,39],[4,15],[13,3],[8,-6],[18,-30],[15,6],[3,15],[0,23],[-1,27],[-1,19],[11,10],[16,16],[15,8],[5,-2],[17,-5],[14,-14],[6,-16],[14,-15],[11,-36],[10,-17],[19,-18]],[[442598,223461],[6,-1],[7,1],[4,-2],[5,-4],[7,-5],[7,-6],[5,-4],[5,-2],[4,-1],[8,0],[4,3],[3,5],[1,7],[-2,6],[1,8],[2,3],[8,0],[11,-3],[9,-3],[12,-3],[9,-3],[9,-3],[6,-2],[5,-1],[4,1],[6,3],[6,1],[2,0],[4,-4],[3,-7],[1,-8],[2,-12],[6,-12],[6,-11],[5,-10],[3,-10],[5,-4],[7,-7],[5,-6],[3,-4],[3,-8],[1,-4],[5,-8],[6,-5],[8,-7],[6,-3],[4,-4],[1,-5],[0,-7],[-2,-4],[-3,-2],[-1,0],[-3,-1],[-4,-3],[-5,-4],[-4,0],[-2,2],[-4,5],[-3,-1],[-3,-4],[-4,-6],[-6,-11],[-5,-8],[-10,-16],[-8,-14],[-9,-15],[-5,-11],[-6,-8],[-3,-4],[-5,-3],[-2,-7],[-5,-12],[-4,-7],[-5,-2],[-5,0],[-5,1],[-7,0],[-9,-4],[-10,-10],[-7,-9],[-9,-8],[-7,-1],[-3,-1],[-2,-10],[-5,-7],[-6,-5],[-7,-3],[-7,-3],[-5,-3],[-5,-7],[-3,-4],[-3,-7],[-3,-10],[-4,-10],[-2,-7],[-5,-4],[-4,-4],[-1,0],[-2,2],[-2,1],[0,5],[0,5],[-5,0],[-4,2],[-5,-2],[-6,-4],[-5,-3],[-5,-4],[-2,-4],[0,-4],[-4,-3],[-5,1],[-2,2],[-5,0],[-6,-2],[-6,-2],[-4,0],[-5,1],[-6,2],[-9,2],[-5,-1],[-5,-8],[-7,-4],[-7,0],[-5,2],[-7,2],[-4,0],[-5,-1],[-7,-7],[-8,-8],[-4,-6],[-5,-6],[-4,-6],[-4,-7],[-3,-7],[-5,-6],[-4,-5],[-7,-4],[-7,-3],[-9,-5],[-11,-3],[-4,-1],[-8,0],[-7,-3],[-6,-4],[-8,-5],[-6,-6],[-6,-6],[-6,-9],[-4,-6],[-5,-9],[-7,-5],[-7,-3],[-6,0],[-5,0],[-6,-1],[-8,-3],[-7,-5],[-8,-4],[-7,-1],[-9,1],[-7,6],[-5,6],[-8,11],[-7,6],[-6,6],[-9,8],[-6,7],[-10,10],[-11,9],[-10,8],[-14,10],[-9,9],[-10,7],[-7,6],[-7,5],[-5,6],[-8,11],[-6,10],[-4,11],[-4,12],[-4,14],[-2,10],[-3,5],[-5,6],[-6,6],[-3,9],[-1,8],[-1,10],[-2,9],[-1,1],[-5,4],[-1,4],[-1,9],[0,6],[-3,9],[-2,6],[-1,6],[0,10],[1,6],[2,5],[5,1],[5,1],[1,3],[2,4],[4,-1],[2,2],[1,4],[3,5],[3,3],[4,2],[6,4],[8,6],[4,7],[5,7],[8,11],[7,10],[7,9],[4,5],[4,-1],[4,-1],[7,-2],[6,1],[6,3],[15,9],[41,26],[-9,30],[-7,-4],[-2,8],[33,19],[2,-5],[-9,-7],[9,-29],[36,19],[1,-3],[5,1],[0,6],[4,1],[4,0],[2,4],[5,0],[4,-8],[6,-10],[7,1],[9,-1],[6,1],[15,4],[8,1],[6,1],[6,1],[8,2],[4,4],[4,9],[5,8],[3,5],[6,4],[4,-2],[1,-4],[3,-3],[3,3],[2,3],[2,3],[1,5],[2,6],[2,3],[2,3],[3,3],[2,1],[5,1],[3,2],[2,6],[1,8],[0,4],[-1,3],[-1,7],[1,6],[3,7],[3,4],[5,1],[10,0],[8,0],[9,0],[11,2],[2,-1],[8,0],[13,-1],[10,-3],[8,-3],[7,0],[5,1],[4,5],[4,7],[4,7],[3,5],[8,2],[8,1],[6,0],[6,0],[4,-5],[3,-4],[4,-8],[3,-1]],[[445581,224996],[4,-10],[4,-10],[6,-6],[8,1],[9,6],[7,2],[10,1],[9,2],[10,0],[9,-5],[7,-5],[6,-8],[4,-10],[3,-12],[2,-10],[4,-10],[5,-10],[5,-9],[4,-10],[6,-7],[7,3],[8,2],[8,0],[8,1],[9,2],[8,-7],[2,-10],[-1,-12],[-2,-10],[-4,-10],[-6,-10],[-9,-5],[-8,-2],[-8,0],[-1,1],[-6,7],[-8,6],[-7,-3],[2,-11],[3,-10],[-2,-14],[-3,-9],[-2,-12],[-2,-10],[-5,-8],[-7,-9],[-7,-9],[-8,-4],[-9,-3],[-10,-4],[-8,-3],[-8,-3],[-11,-2],[-12,-1],[-8,0],[-10,0],[-9,0],[-9,-1],[-8,-2],[-8,4],[-7,7],[-7,7],[-6,7],[0,11],[9,4],[8,1],[3,9],[-7,5],[-7,4],[-7,5],[-8,2],[-8,2],[-11,6],[-9,8],[-9,4],[-9,5],[-8,6],[-7,8],[-7,8],[-7,9],[-2,12],[7,5],[7,5],[8,4],[6,5],[-2,9],[-9,1],[-8,-2],[-8,-1],[-6,4],[4,9],[8,5],[7,2],[10,1],[7,2],[10,3],[8,6],[6,10],[-8,-1],[-8,-2],[-8,-2],[-9,-1],[-10,-3],[-7,-4],[-7,-5],[-7,7],[0,14],[3,12],[7,5],[7,3],[9,4],[7,4],[8,2],[8,3],[8,2],[10,3],[7,-6],[3,-12],[5,-9],[3,11],[0,12],[-2,12],[-7,3],[-5,9],[5,7],[9,2],[8,-3],[8,3],[8,6],[8,2],[12,1],[10,-1],[5,-8]],[[444915,225357],[-7,-21],[0,-5],[7,-7],[6,6],[11,-3],[-1,-10],[3,-12],[-1,-13],[-6,-13],[-9,-16],[-3,-15],[-4,-13],[-3,-11],[-2,-13],[0,-8],[5,-2],[9,-1],[6,-5],[1,-2],[0,-5],[-3,-3],[-3,0],[-2,0],[0,-2],[-1,0],[-3,-5],[-3,-7],[-12,-7],[-7,5],[1,29],[-8,12],[3,14],[6,14],[8,17],[7,13],[-6,27],[-19,-18],[-13,-1],[-2,-9],[-1,-15],[-4,-7],[-10,0],[-8,3],[-5,0],[-4,-5],[0,-10],[-1,-14],[-5,-3],[-7,2],[-8,7],[0,9],[-2,7],[-3,7],[-3,17],[-8,18],[2,10],[13,-1],[0,16],[4,4],[7,4],[4,16],[4,7],[7,2],[5,-1],[9,8],[7,-3],[21,23],[10,2],[9,5],[12,0],[3,-7],[-3,-11]],[[453807,227265],[23,-28],[19,-33],[5,-18],[9,-49],[2,-16],[2,-21],[12,-37],[8,-12],[5,-8],[1,-10],[2,-5],[1,-8],[3,-7],[4,-17],[3,-4],[3,0],[3,-1],[1,-5],[-1,-5],[-1,-2],[2,-6],[3,-1],[4,-1],[7,0],[2,-1],[1,-9],[-1,-2],[0,-7],[3,-2],[2,-3],[0,-7],[0,-13],[-4,-3],[-2,0],[-3,2],[-1,1],[-7,0],[-5,1],[-5,4],[-5,6],[-1,4],[-6,3],[-6,3],[-4,1],[-4,5],[-11,0],[-8,-5],[-5,-2],[-4,3],[0,-1],[0,-7],[0,-8],[-8,1],[-7,4],[-2,4],[0,8],[0,3],[-9,1],[-6,-1],[-3,0],[-3,1],[-4,2],[-5,2],[-4,0],[-7,-1],[-6,-1],[-4,-5],[-4,-5],[-5,-1],[-3,1],[-8,0],[-4,-3],[-2,-4],[-11,-11],[-4,-6],[-5,-4],[-2,-3],[0,-6],[0,-8],[2,-17],[1,-3],[3,-4],[2,-4],[-1,-4],[-3,-3],[-6,1],[-4,3],[-5,1],[-6,3],[-4,5],[-3,3],[-4,4],[-6,0],[-8,1],[-6,3],[-6,6],[-3,4],[-3,2],[-4,-2],[-3,-4],[-4,-2],[-6,-2],[-8,-5],[-3,-2],[-1,-4],[-3,-4],[-1,-2],[-2,-2],[-1,-3],[-2,-1],[-3,-1],[-2,0],[-2,1],[-2,3],[-12,10],[-36,64],[-73,129],[-45,101],[-34,2],[-6,14],[1,4],[5,4],[2,0],[16,13],[0,8],[1,5],[3,5],[4,4],[4,0],[2,-6],[32,16],[0,-17],[11,-25],[13,2],[0,5],[13,2],[0,-6],[14,1],[0,27],[-2,0],[-1,1],[-1,0],[-4,0],[-4,2],[-3,0],[-4,0],[-5,3],[-1,7],[0,4],[-3,4],[-3,0],[-7,0],[-2,1],[-3,6],[-2,4],[1,8],[5,3],[4,2],[6,4],[23,22],[6,12],[7,6],[8,4],[9,8],[18,6],[10,4],[29,10],[17,4],[14,-3],[87,-38],[63,-54]],[[445636,227540],[0,-5],[0,-5],[3,-4],[1,-3],[2,-8],[1,-10],[3,-7],[1,-8],[2,-4],[-1,-4],[0,-4],[0,-7],[-4,-8],[-3,-5],[-4,0],[-4,0],[-9,-1],[-4,-2],[-3,-15],[1,-8],[1,-6],[0,-8],[-2,-22],[-1,-6],[-3,-4],[-4,-8],[-5,-3],[-3,0],[-8,-1],[-1,-3],[0,-4],[0,-4],[0,-7],[1,-5],[2,-3],[2,-1],[5,-2],[2,-4],[0,-8],[1,-4],[0,-5],[-5,-3],[-2,-2],[3,-1],[6,-1],[5,0],[2,-3],[4,-6],[2,-7],[0,-4],[0,-5],[0,-7],[-1,-1],[-1,-1],[-4,-2],[-1,1],[-2,3],[-1,3],[0,4],[-1,6],[0,5],[-1,3],[-2,4],[-2,1],[-2,0],[-3,0],[-2,-2],[-3,-4],[-1,-4],[-4,-3],[-5,-3],[-3,-5],[0,-2],[0,-5],[-3,-3],[-5,-3],[-2,-2],[-6,4],[-1,2],[0,4],[1,2],[2,5],[1,2],[1,1],[4,4],[1,0],[1,3],[0,6],[1,4],[3,2],[3,1],[3,5],[0,35],[-1,3],[-2,1],[-5,0],[-8,-2],[-11,-7],[-9,-9],[-10,-5],[-6,-8],[-3,-2],[-12,-6],[-17,-2],[-9,-2],[-9,-13],[-4,-23],[0,-23],[3,-11],[6,-9],[7,-1],[16,0],[7,-5],[-1,-7],[-5,-9],[-3,-6],[-2,-11],[2,-40],[-5,-15],[-7,-12],[-2,-11],[0,-12],[2,-6],[3,-4],[0,-5],[-2,-4],[-1,-5],[-1,-6],[-1,-7],[-2,-11],[-1,-19],[-2,-4],[-2,-3],[-2,-2],[-2,-2],[-4,-1],[-3,-1],[-6,0],[-5,5],[-2,6],[0,7],[-1,9],[0,7],[-1,1],[-5,0],[-6,-1],[-3,-2],[-3,-2],[-6,-3],[-4,-2],[-20,0],[-6,7],[-5,2],[-1,5],[1,6],[1,1],[6,0],[4,-1],[5,1],[9,4],[7,14],[2,10],[3,5],[9,6],[9,6],[7,8],[3,12],[-4,10],[-15,20],[-9,15],[-2,4],[0,2],[0,2],[0,3],[-1,1],[-3,0],[-3,0],[-3,-1],[-5,1],[-3,2],[-3,1],[-1,0],[-2,-2],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-3],[-5,-2],[0,-1],[-4,-5],[-4,0],[-5,0],[-5,1],[-4,4],[-1,8],[0,9],[2,6],[2,5],[2,6],[-4,11],[-1,4],[-2,3],[-2,6],[0,6],[0,5],[-1,1],[-5,0],[-2,1],[-10,12],[-12,0],[-7,0],[-6,0],[-3,4],[-1,23],[1,4],[1,3],[2,0],[7,9],[1,4],[2,4],[0,1],[2,1],[3,0],[2,0],[1,4],[0,5],[1,2],[0,1],[1,5],[0,3],[0,5],[0,2],[3,7],[1,6],[4,8],[3,0],[5,0],[1,0],[3,3],[4,3],[3,3],[3,1],[0,2],[2,6],[3,7],[0,8],[2,4],[4,8],[2,4],[9,6],[2,-1],[5,-3],[3,-1],[3,-1],[2,1],[5,0],[1,-2],[3,-6],[1,0],[2,0],[2,0],[5,1],[2,2],[1,1],[3,2],[5,0],[5,0],[5,2],[8,17],[0,10],[1,7],[4,7],[7,13],[0,6],[1,3],[3,4],[2,3],[3,4],[7,3],[2,0],[5,5],[5,6],[5,1],[5,0],[4,0],[6,-2],[2,-2],[1,-4],[0,-4],[0,-5],[0,-9],[0,-4],[-2,-2],[-2,-3],[-3,-2],[-3,-2],[-1,0],[0,-6],[-4,-3],[-1,-1],[-2,-1],[-3,-1],[-1,-2],[-1,-3],[-5,-1],[-4,0],[-2,-2],[0,-4],[-1,-3],[0,-4],[1,-4],[1,-2],[5,-4],[0,-4],[-3,-2],[-7,0],[-6,-1],[-6,-6],[-1,-5],[-1,-20],[0,-17],[6,-10],[7,-8],[8,-5],[8,2],[11,11],[4,6],[7,8],[12,1],[5,-5],[2,-2],[2,-3],[2,-2],[4,1],[1,1],[2,2],[4,5],[1,3],[2,7],[0,3],[1,7],[0,5],[3,17],[4,16],[1,3],[5,21],[2,4],[3,4],[6,0],[5,0],[3,0],[2,0],[6,1],[3,4],[1,7],[0,6],[-3,5],[-2,3],[-4,9],[-1,0],[0,2],[-9,9],[-2,7],[-1,5],[0,9],[0,3],[1,6],[0,2],[0,1],[1,2],[1,1],[2,0],[2,0],[2,0],[4,-2],[3,-3],[1,-1],[5,2],[1,4],[1,3],[10,1],[4,-3],[1,-5]],[[444773,227607],[4,-9],[8,3],[8,3],[9,2],[8,0],[6,-8],[4,-10],[6,-7],[3,10],[6,6],[9,6],[9,0],[10,-2],[6,-5],[9,2],[6,8],[6,9],[8,-3],[6,-5],[4,-10],[-5,-8],[4,-9],[5,-11],[2,-12],[-3,-11],[-5,-10],[-6,-10],[1,-14],[10,6],[12,-1],[0,-11],[-4,-11],[-7,-13],[-6,-9],[-5,-8],[-2,-11],[5,-9],[4,-12],[4,-11],[6,-11],[7,-9],[5,-7],[8,-2],[7,7],[7,8],[7,6],[8,3],[7,-4],[9,-6],[12,1],[8,3],[8,1],[8,-1],[10,2],[7,0],[8,2],[7,4],[8,6],[7,7],[1,10],[-5,8],[-4,11],[1,14],[5,9],[8,4],[7,-1],[6,6],[7,8],[7,2],[6,-8],[3,11],[0,12],[8,7],[9,6],[8,-4],[3,-11],[2,-13],[4,-13],[0,-10],[-4,-13],[-1,-13],[8,0],[-3,-11],[1,-12],[8,-1],[1,10],[2,11],[3,10],[5,11],[8,3],[6,-8],[4,-10],[4,-9],[4,-12],[0,-13],[-5,-9],[-8,-5],[-6,-9],[4,-10],[4,-9],[2,-17],[-1,-13],[-1,-16],[5,-11],[6,-10],[7,-2],[9,3],[8,-5],[6,11],[6,7],[9,0],[9,-12],[4,-8],[9,-1],[7,-7],[-5,-9],[-4,-9],[-8,-8],[-8,-7],[-6,-12],[6,-6],[4,-11],[0,-11],[2,-20],[-6,-5],[-8,-3],[-7,0],[-8,-1],[-8,-3],[-8,0],[-12,2],[-8,-2],[-8,-5],[-8,-7],[-7,-7],[-7,-8],[-4,-10],[1,-10],[-7,-7],[-8,-6],[-8,-4],[-8,-3],[-8,-3],[-9,-2],[-8,2],[-8,-6],[0,-11],[3,-10],[-9,-7],[-8,-5],[-8,-6],[-8,-2],[-6,6],[-8,6],[3,12],[7,9],[7,6],[10,10],[6,8],[8,7],[7,7],[7,6],[7,8],[6,6],[6,6],[4,10],[-8,3],[-10,-4],[-7,-4],[-9,-6],[-7,-6],[-5,-9],[-5,-9],[-9,-7],[-6,5],[-8,-5],[-9,-4],[-5,8],[-2,11],[-4,15],[4,12],[-2,11],[-12,-7],[-5,-9],[-5,-11],[-7,1],[-6,10],[-8,-2],[-8,1],[-9,0],[-8,5],[5,8],[7,2],[9,2],[4,11],[-5,11],[-3,10],[3,12],[-6,11],[-6,9],[-4,11],[-8,6],[-8,1],[-9,-5],[-9,-1],[-9,-4],[-9,-4],[-5,-8],[-7,-9],[-2,-11],[-4,-11],[-4,-10],[-5,-9],[-8,-9],[-8,-1],[-8,-1],[-7,-8],[-5,-8],[-8,-9],[-7,-6],[-9,1],[-3,12],[-7,6],[-7,-3],[-9,-1],[-4,11],[7,8],[5,11],[3,12],[7,6],[5,9],[6,7],[8,5],[8,2],[10,1],[5,8],[4,9],[6,10],[-3,10],[-5,12],[-5,11],[-8,8],[-8,-5],[-7,-4],[-8,3],[-5,8],[3,11],[-2,11],[0,11],[-5,10],[-8,7],[-9,3],[-9,6],[-8,5],[-7,3],[-7,-5],[-9,-8],[-7,-7],[-12,-9],[-6,-10],[1,-12],[-6,-8],[-6,-7],[-7,-6],[-8,-4],[-10,3],[-1,-11],[-7,-5],[-11,4],[-5,8],[1,11],[-8,-3],[-6,-6],[-7,-4],[-8,3],[-9,1],[-7,4],[-4,10],[-2,13],[1,11],[1,12],[2,12],[3,11],[2,11],[1,13],[3,15],[1,11],[4,10],[7,6],[8,6],[2,12],[-6,7],[-6,4],[-8,-2],[-10,-3],[-9,1],[-5,9],[-3,10],[-1,11],[5,10],[8,-1],[7,-2],[10,-3],[11,3],[9,4],[8,-3],[5,8],[5,9],[5,8],[2,10],[3,11],[3,10],[4,10],[5,8],[8,2],[8,-1],[8,0],[8,-3],[9,-3],[4,8],[3,11],[6,5],[8,6],[10,2],[5,-9]],[[436829,227684],[2,-3],[6,1],[2,-5],[5,-5],[7,-17],[5,-9],[4,-7],[5,-7],[2,-7],[3,-5],[4,-6],[4,-10],[1,-4],[9,-10],[3,-2],[2,-2],[0,-4],[1,-3],[3,-4],[-3,-8],[2,-6],[2,-3],[3,-2],[1,-5],[1,-1],[1,-5],[0,-6],[0,-7],[2,-6],[5,-7],[8,-11],[10,-13],[10,-9],[7,-10],[4,-9],[4,-14],[4,-21],[4,-24],[3,-20],[6,-17],[6,-14],[5,-20],[10,-25],[11,-19],[5,-14],[5,-11],[5,-7],[3,-6],[3,-2],[3,-4],[3,-1],[5,-7],[-1,-7],[3,-5],[6,0],[4,-2],[-5,-2],[3,-7],[2,-3],[4,-4],[2,-2],[8,-5],[1,-8],[-3,-6],[3,-5],[2,0],[-1,-4],[3,-4],[-1,-5],[-3,-4],[1,-4],[-2,-7],[-4,-5],[-8,-2],[-1,4],[-3,2],[-3,-2],[0,-4],[-1,-5],[0,-5],[-5,-5],[-9,3],[-3,5],[-9,-2],[-2,1],[-6,-3],[0,-4],[0,-7],[-5,-3],[-11,7],[1,8],[-2,1],[-4,0],[-6,0],[-2,-5],[-4,2],[-5,1],[-7,-2],[-5,-1],[-3,1],[1,3],[-2,7],[-5,3],[-8,0],[-25,-2],[-16,-7],[-10,-4],[-7,-3],[-7,-2],[-7,-3],[-10,-4],[-16,-7],[-5,-1],[-11,-6],[-4,-1],[-14,-4],[-5,-1],[-3,-3],[-7,-4],[-6,-4],[-19,-11],[-12,-9],[-17,-16],[-20,-23],[-15,-29],[-15,-23],[-15,-35],[-12,-18],[-9,-20],[-10,-29],[-7,-20],[-10,-15],[-10,-9],[-4,-7],[-11,-34],[-4,-8],[-3,-13],[-1,-21],[-4,-18],[-3,-17],[1,-12],[-5,-46],[1,-9],[-1,-14],[3,-15],[0,-14],[1,-13],[-1,-9],[1,-12],[6,-20],[2,-6],[3,-9],[1,-10],[2,-11],[-3,-10],[-4,-15],[-3,-18],[-4,-20],[-7,-38],[-2,-46],[3,-41],[5,-34],[9,-41],[9,-30],[12,-29],[17,-34],[11,-24],[7,-18],[12,-28],[13,-28],[34,-62],[44,-64],[59,-81],[71,-75],[6,5],[14,-17],[-6,-7],[59,-61],[61,-52],[42,-30],[5,-2],[4,2],[4,3],[7,4],[2,1],[3,2],[3,-1],[4,0],[5,-4],[0,-4],[2,-3],[2,0],[2,0],[4,-3],[-1,-4],[1,-4],[2,-2],[1,-3],[-1,-7],[-9,-6],[-2,-2],[-3,-6],[0,-4],[1,-1],[2,-4],[-3,-6],[-3,-1],[-4,-3],[-1,-4],[1,-6],[0,-2],[-1,-6],[-4,-5],[-2,-2],[-5,-5],[-3,-3],[-4,-6],[-1,-1],[-3,-4],[-3,-9],[-1,-6],[-2,-14],[0,-6],[2,-5],[1,-4],[0,-7],[3,-6],[2,-3],[1,-1],[-2,-4],[-2,-1],[-1,-1],[0,-13],[-2,-6],[0,-6],[-4,-5],[-3,-1],[-1,-2],[-1,-3],[0,-8],[0,-8],[4,-13],[4,-11],[3,-16],[2,-6],[4,-7],[3,-6],[7,-18],[0,-23],[-1,-22],[0,-6],[0,-7],[0,-11],[2,-10],[3,-13],[1,-17],[5,-19],[5,-14],[2,-17],[4,-9],[6,-12],[5,-8],[12,-16],[12,-19],[12,-17],[8,-18],[4,-11],[3,-10],[2,-10],[5,-9],[2,-8],[5,-8],[2,-14],[8,-12],[11,-8],[9,-9],[16,-10],[14,-14],[9,-15],[4,-3],[28,-18],[32,-17],[44,-12],[28,-5],[48,-4],[64,-10],[26,-4],[27,-9],[20,-11],[5,-2],[8,-1],[13,1],[1,0],[4,1],[3,11],[1,3],[8,16],[5,8],[11,17],[2,5],[2,1],[2,3],[4,3],[2,5],[2,8],[5,7],[3,5],[2,3],[2,3],[3,2],[3,10],[2,3],[1,1],[2,4],[1,1],[5,4],[2,3],[3,2],[4,3],[3,5],[4,7],[3,2],[3,2],[5,8],[5,3],[1,10],[4,5],[4,5],[12,8],[4,8],[5,6],[6,6],[10,5],[9,4],[2,5],[6,6],[7,5],[7,3],[13,3],[10,0],[5,5],[2,5],[11,4],[11,1],[7,-4],[6,-3],[5,0],[7,0],[12,1],[6,0],[4,1],[4,2],[4,2],[20,1],[5,1],[3,5],[0,11],[-4,12],[-3,15],[-2,11],[-1,11],[-3,15],[-4,3],[-3,2],[-5,6],[-9,5],[-3,4],[-4,5],[-9,4],[-2,7],[-1,7],[-6,3],[-3,4],[-1,6],[-2,5],[-8,1],[-6,1],[-7,2],[-4,2],[-6,0],[-3,0],[-4,-3],[-4,-2],[-6,-3],[-3,-3],[-4,-6],[-7,1],[-4,-2],[-5,-3],[-3,-2],[-4,-12],[-1,-9],[-2,-12],[-1,-4],[-5,-4],[-21,3],[-3,0],[-2,0],[-7,1],[-1,3],[-5,1],[-3,4],[-7,2],[-1,3],[-5,3],[-6,-1],[-1,-4],[-1,-2],[-3,-1],[-4,1],[-3,5],[-7,-1],[-4,1],[-1,5],[-1,0],[-2,2],[0,3],[-6,3],[-1,0],[-5,0],[-4,-3],[-3,0],[-4,-1],[-3,1],[-3,2],[-5,0],[-4,1],[-5,2],[-2,4],[-1,6],[-6,3],[-1,3],[-1,2],[-1,7],[1,2],[1,5],[1,4],[1,2],[-1,5],[-1,0],[-5,2],[-2,5],[-1,5],[1,10],[1,1],[3,7],[0,3],[0,6],[1,3],[0,4],[-3,2],[-3,-1],[1,4],[-1,6],[-2,1],[-2,1],[0,4],[-1,2],[-3,1],[0,4],[1,5],[3,3],[3,1],[-1,6],[-3,2],[-2,1],[-1,3],[-1,8],[1,1],[2,2],[0,4],[-1,3],[0,4],[1,1],[2,1],[1,3],[-3,1],[-2,0],[-2,3],[0,2],[0,4],[-2,2],[0,2],[-1,4],[-2,0],[0,6],[-1,2],[-1,2],[-1,4],[2,9],[2,3],[2,2],[1,2],[0,3],[-5,5],[0,1],[-1,10],[1,2],[0,4],[1,4],[0,3],[-1,3],[-3,1],[-3,0],[-3,2],[-2,5],[1,5],[1,4],[1,1],[2,5],[-1,4],[2,3],[1,1],[1,5],[0,5],[-1,5],[-7,3],[-1,5],[0,1],[-3,4],[1,5],[-2,2],[-2,0],[-3,8],[1,2],[-2,4],[-4,0],[-2,4],[3,6],[0,1],[2,4],[-2,1],[-1,4],[2,2],[1,1],[1,8],[2,3],[0,2],[-1,0],[-2,6],[-3,2],[-3,-8],[-2,2],[0,5],[-6,2],[0,2],[7,4],[3,1],[2,0],[3,6],[2,2],[3,2],[3,2],[2,3],[4,2],[1,3],[0,5],[0,6],[0,4],[-1,0],[-1,1],[-1,-3],[-4,1],[-2,6],[1,5],[1,3],[4,2],[3,2],[1,3],[-2,5],[-2,2],[-1,5],[0,10],[0,8],[0,2],[1,6],[1,4],[4,2],[5,4],[4,2],[4,0],[2,2],[2,3],[-3,4],[0,6],[2,1],[3,-4],[4,0],[2,1],[2,2],[6,0],[1,-1],[4,2],[8,0],[5,0],[2,1],[2,1],[2,3],[3,2],[3,1],[1,3],[1,1],[2,3],[2,1],[4,0],[1,7],[2,1],[5,3],[2,0],[3,4],[3,1],[-2,4],[1,3],[3,8],[3,1],[5,1],[3,-2],[2,1],[-1,4],[1,3],[-2,1],[0,6],[0,4],[6,1],[-1,4],[2,2],[1,1],[3,-1],[1,3],[0,4],[4,3],[3,1],[2,0],[6,2],[1,2],[3,1],[5,1],[3,1],[5,4],[4,0],[9,3],[0,1],[7,0],[4,0],[6,0],[14,4],[21,6],[7,5],[3,1],[1,8],[1,2],[-1,5],[3,7],[-1,4],[1,3],[2,3],[4,1],[1,4],[2,2],[2,1],[0,5],[2,2],[2,6],[-1,1],[0,3],[-2,2],[-1,3],[2,6],[4,-3],[3,2],[-1,3],[3,9],[4,1],[6,5],[3,0],[-1,3],[2,4],[2,1],[0,1],[0,10],[1,1],[0,3],[1,5],[3,5],[3,3],[3,1],[3,3],[2,1],[3,5],[2,4],[1,2],[0,1],[-1,4],[-2,0],[-5,-4],[-2,-1],[0,3],[2,6],[3,0],[1,1],[0,7],[2,1],[4,-3],[1,3],[2,1],[1,-1],[1,-5],[2,-1],[5,5],[2,6],[2,4],[4,10],[3,-1],[2,6],[5,2],[3,4],[1,6],[4,5],[4,2],[3,4],[2,6],[5,4],[4,2],[3,0],[3,-1],[1,2],[4,1],[3,2],[1,4],[0,6],[1,6],[3,4],[3,2],[7,-1],[1,-1],[3,0],[2,6],[2,1],[2,0],[7,3],[3,3],[5,1],[4,5],[1,3],[0,6],[0,6],[1,4],[3,4],[2,0],[5,4],[4,-2],[4,0],[4,3],[1,6],[-1,6],[1,4],[6,1],[5,0],[5,2],[2,1],[3,0],[1,-1],[0,-2],[0,-6],[6,-1],[7,0],[2,1],[2,1],[3,2],[1,0],[14,6],[27,22],[21,18],[22,19],[18,17],[30,35],[25,32],[30,44],[25,73],[10,44],[2,6],[2,5],[2,6],[-1,3],[0,5],[2,10],[2,11],[-3,6],[-1,9],[2,5],[2,1],[0,10],[0,3],[-4,1],[-4,4],[-1,7],[-3,1],[-1,2],[-1,0],[-1,5],[-3,2],[-2,-1],[-3,3],[-1,2],[1,1],[-3,3],[0,3],[0,4],[-3,4],[-4,-1],[-5,4],[-3,4],[-2,4],[0,2],[-1,0],[-3,6],[0,1],[-1,3],[-3,2],[-2,-1],[-2,-3],[-2,1],[-5,3],[1,4],[0,1],[0,4],[-4,0],[-3,4],[-3,0],[-4,-3],[-1,5],[0,3],[-7,-2],[1,-5],[-1,-1],[-3,0],[-1,-3],[0,-7],[-3,-1],[-3,-1],[-1,-1],[-2,1],[-1,5],[-3,0],[-1,1],[0,2],[1,5],[0,3],[1,0],[2,4],[-7,5],[0,4],[-1,5],[-5,-2],[-3,-3],[-4,0],[-5,1],[-1,2],[0,5],[-1,3],[-4,4],[-1,1],[-2,2],[-4,-1],[-5,1],[-1,-2],[-3,-2],[-6,1],[1,5],[-1,2],[-4,1],[-1,4],[-1,2],[-1,2],[-2,3],[-1,1],[-1,2],[-2,1],[-2,1],[-2,4],[1,2],[0,2],[1,2],[-2,6],[1,2],[-2,3],[-1,1],[-2,5],[3,1],[1,-1],[3,7],[3,3],[2,2],[3,0],[-1,-1],[1,-2],[5,3],[2,2],[2,3],[0,3],[1,4],[6,5],[0,2],[-3,4],[4,5],[2,-1],[2,-3],[4,2],[2,5],[3,6],[-3,0],[-3,3],[0,9],[2,5],[4,1],[1,1],[1,6],[-1,2],[-1,5],[2,2],[-2,10],[1,6],[-1,1],[-2,0],[-1,5],[-1,2],[0,3],[5,3],[1,3],[0,1],[4,2],[0,2],[3,7],[-2,7],[2,7],[-1,1],[0,4],[3,0],[2,4],[1,9],[3,1],[2,2],[1,4],[-2,9],[-6,-2],[-3,-2],[-5,2],[3,5],[4,3],[3,6],[2,4],[0,5],[4,2],[-1,3],[2,3],[1,5],[2,4],[-1,7],[1,6],[-2,3],[0,3],[3,2],[1,0],[1,6],[1,5],[-2,2],[-1,6],[4,0],[1,1],[1,2],[-5,5],[0,4],[2,3],[-2,6],[-1,-1],[-5,-6],[-4,1],[-4,0],[-3,-2],[0,3],[0,4],[2,-1],[3,0],[2,1],[2,1],[2,1],[0,5],[4,3],[-2,5],[2,2],[3,3],[0,4],[-1,1],[-2,0],[-4,-1],[-1,1],[1,5],[1,0],[2,3],[1,2],[4,5],[1,1],[4,5],[1,1],[2,4],[1,1],[3,0],[1,-5],[-1,-3],[2,-3],[0,-2],[2,1],[3,2],[2,4],[1,2],[2,2],[2,4],[0,3],[0,1],[3,1],[2,0],[2,-1],[1,-2],[3,-3],[2,0],[3,3],[0,3],[1,1],[1,0],[4,-1],[2,-3],[1,-5],[-2,-3],[0,-3],[4,-2],[3,-2],[2,3],[5,6],[4,-1],[7,6],[0,2],[-1,11],[2,3],[2,3],[0,5],[1,4],[4,1],[5,1],[3,-2],[4,-2],[6,2],[0,1],[1,6],[4,2],[3,2],[3,0],[2,-2],[7,1],[4,2],[0,4],[2,3],[2,7],[2,5],[2,2],[0,4],[2,-1],[4,-1],[2,3],[6,0],[6,0],[3,1],[4,4],[-1,2],[-5,4],[0,5],[2,2],[4,0],[3,0],[4,3],[1,-1],[3,-1],[4,-3],[0,-3],[1,-2],[1,-1],[3,0],[4,3],[2,2],[4,2],[2,-1],[3,-3],[4,0],[5,-3],[4,3],[4,4],[2,2],[2,4],[2,-3],[6,0],[1,1],[3,2],[3,3],[2,3],[0,4],[0,3],[6,0],[4,-3],[4,-4],[3,1],[3,0],[1,2],[3,3],[3,0],[7,0],[4,-1],[2,2],[7,5],[4,8],[6,3],[4,-1],[3,0],[6,-2],[6,0],[5,-3],[7,5],[3,-1],[5,3],[1,3],[5,1],[6,2],[0,-1],[5,0],[2,1],[-1,5],[2,4],[2,1],[1,0],[2,-1],[0,-3],[-1,-3],[3,0],[0,1],[5,1],[2,-2],[2,0],[1,0],[2,-3],[3,1],[2,-1],[0,-3],[-4,-2],[-3,0],[-3,2],[-2,-4],[1,-8],[4,-2],[5,-2],[3,-4],[-4,-4],[6,-4],[7,-3],[5,-2],[5,-8],[4,-2],[12,2],[6,-2],[6,2],[9,0],[7,0],[3,-1],[6,-1],[6,-3],[3,0],[11,0],[8,-1],[9,0],[11,2],[4,2],[5,2],[7,0],[9,3],[6,3],[2,2],[3,2],[1,0],[3,1],[3,1],[2,3],[2,2],[3,1],[2,1],[2,6],[1,4],[5,4],[1,1],[3,6],[1,1],[1,6],[4,4],[2,3],[1,3],[0,2],[-1,4],[-1,3],[2,8],[1,1],[2,5],[-1,2],[-3,3],[0,3],[2,4],[4,-1],[5,2],[1,-1],[5,3],[4,3],[2,2],[1,1],[6,2],[7,-1],[5,0],[1,-1],[3,-2],[3,-4],[6,0],[2,-1],[4,-2],[1,-1],[1,-2],[5,-2],[4,1],[2,-2],[-3,-5],[1,-2],[5,4],[3,0],[6,-4],[-1,-4],[3,-4],[2,-3],[8,-1],[7,-3],[2,-3],[3,-2],[3,-3],[1,-2],[2,-7],[3,-3],[2,6],[5,2],[4,-2],[1,-2],[1,-6],[2,-3],[-2,1],[-1,-3],[-2,-1],[-1,-4],[1,-4],[-1,-2],[2,-3],[1,-3],[2,-3],[0,-4],[-1,-2],[-3,-1],[-2,-4],[0,-2],[2,-4],[0,-2],[-2,-1],[-1,-4],[-3,1],[-2,-1],[-2,-2],[-2,-6],[0,-4],[1,-3],[0,-7],[0,-4],[2,-1],[2,-1],[1,-4],[-1,-4],[0,-2],[1,-4],[2,-1],[1,-4],[0,-1],[3,-5],[1,-1],[3,0],[2,-2],[-1,-3],[-1,0],[-1,-2],[1,-1],[2,-2],[1,-3],[-1,-3],[-2,-1],[0,-1],[2,-10],[4,-9],[1,-4],[2,-5],[1,-6],[4,-6],[1,-5],[0,-2],[2,-3],[3,0],[1,3],[3,2],[2,-1],[-1,-5],[-2,-5],[1,-2],[0,-6],[4,-10],[12,-17],[14,-16],[17,-14],[25,-19],[23,-12],[20,-6],[23,-5],[37,0],[6,1],[5,1],[2,1],[5,5],[2,4],[3,2],[3,3],[3,5],[3,3],[4,4],[5,0],[5,7],[3,2],[6,0],[4,3],[3,0],[3,2],[5,-2],[6,3],[3,-3],[5,-3],[5,2],[1,-1],[4,-4],[3,-5],[4,1],[9,0],[5,-3],[3,-2],[1,-3],[6,-2],[1,2],[-3,3],[-2,4],[3,6],[0,1],[7,0],[1,0],[2,1],[2,0],[2,0],[2,-1],[2,-2],[2,-1],[3,1],[2,-2],[1,-3],[-2,-3],[-1,0],[0,-2],[1,-3],[-2,-5],[0,-2],[2,0],[4,-4],[-1,-3],[-5,0],[-3,3],[-3,-2],[1,-8],[2,-2],[4,-4],[2,-5],[2,-5],[2,-7],[5,-2],[2,-2],[3,3],[2,-1],[2,-2],[1,-6],[3,-2],[2,-2],[0,-4],[3,-7],[5,-2],[4,-2],[0,-5],[3,-5],[6,-7],[3,-3],[4,-5],[5,-12],[3,-6],[3,-5],[6,-3],[4,-4],[6,-1],[6,-1],[9,0],[8,0],[13,5],[14,3],[4,1],[5,3],[3,2],[4,0],[3,3],[0,2],[0,2],[2,2],[2,1],[2,0],[2,-2],[0,-1],[1,-1],[0,-3],[3,0],[8,1],[22,3],[16,3],[6,2],[7,2],[6,3],[12,3],[6,0],[4,2],[1,2],[5,0],[2,0],[7,4],[-1,3],[2,6],[5,1],[4,5],[-1,1],[0,6],[1,3],[2,2],[4,2],[2,-1],[1,-2],[0,-3],[-1,-4],[-4,-2],[3,-4],[2,0],[6,-3],[2,-3],[5,4],[2,4],[2,2],[7,1],[4,-4],[10,-1],[2,-3],[4,2],[10,0],[8,3],[4,2],[3,1],[6,0],[5,-1],[7,0],[3,2],[2,3],[1,4],[3,1],[5,2],[1,0],[4,0],[1,-1],[4,-2],[0,-2],[1,-2],[3,0],[1,3],[1,1],[3,1],[8,0],[5,-4],[5,0],[0,-2],[0,-3],[7,-4],[4,0],[8,0],[3,0],[3,0],[4,-3],[2,-4],[0,-8],[15,0],[3,4],[1,1],[5,1],[4,0],[5,-3],[2,0],[3,-5],[4,-2],[5,1],[3,0],[3,2],[5,-6],[-3,-7],[6,1],[7,-1],[12,2],[3,2],[-1,10],[-2,5],[3,1],[4,1],[4,2],[2,-3],[4,2],[2,0],[2,0],[4,1],[1,-2],[3,-3],[3,-5],[4,0],[4,4],[0,-6],[-3,-6],[1,-2],[3,0],[3,3],[3,-2],[-1,-7],[-3,-3],[-2,-3],[6,-2],[1,-7],[9,0],[3,5],[5,7],[1,1],[3,6],[1,4],[5,2],[3,0],[2,-3],[4,0],[2,0],[2,0],[2,-3],[-1,-5],[-1,-4],[-2,-6],[2,-3],[3,-2],[6,2],[5,-9],[3,-2],[8,0],[5,-9],[0,-10],[4,-9],[4,-8],[3,-5],[3,-2],[3,-2],[7,-2],[9,4],[3,3],[3,3],[10,9],[2,-7],[7,1],[4,2],[4,0],[3,-2],[3,-4],[-1,-6],[-1,-4],[3,-5],[4,1],[11,1],[15,13],[8,8],[3,6],[8,10],[8,0],[3,0],[13,1],[6,-11],[17,-3],[5,0],[5,3],[3,3],[8,3],[3,-1],[3,0],[15,-1],[6,0],[6,-1],[6,0],[17,0],[7,4],[8,0],[9,-3],[31,-8],[30,-14],[8,-3],[25,-7],[18,-6],[17,-8],[53,-27],[94,-48],[11,51],[142,-73],[-6,-27],[80,-39],[3,-4],[1,-7],[3,-10],[6,-8],[4,-1],[4,3],[1,2],[2,1],[1,1],[5,-4],[2,-5],[3,-5],[3,-3],[4,-4],[3,-3],[3,-4],[3,-3],[8,-5],[3,-1],[3,-3],[5,-3],[5,-5],[3,-1],[3,-5],[-1,-2],[1,-5],[3,-4],[4,4],[3,0],[1,-6],[1,-1],[0,-5],[1,-2],[3,1],[2,1],[0,-4],[3,-3],[2,3],[0,-1],[3,-1],[3,-1],[1,-1],[2,-8],[2,-4],[2,3],[1,-2],[3,-3],[5,-3],[1,-1],[2,3],[4,-2],[3,-7],[4,-5],[1,-2],[2,-5],[2,2],[1,-6],[4,-7],[4,0],[5,-6],[4,-3],[4,-7],[0,-6],[-1,-6],[2,-6],[1,-8],[3,-2],[3,-1],[0,-3],[0,-4],[-1,-5],[2,-3],[1,-1],[2,-5],[2,-5],[2,0],[2,-5],[1,-3],[0,-2],[0,-3],[2,-2],[2,-2],[1,-3],[-1,-3],[1,-2],[2,0],[2,-1],[1,-4],[1,-5],[1,-1],[1,-4],[0,-4],[2,-1],[1,0],[2,0],[0,-4],[-3,-3],[2,-4],[3,1],[1,0],[2,-2],[0,-2],[-1,-2],[1,-4],[0,-2],[2,-3],[-1,-3],[2,-2],[1,-4],[0,-3],[1,-3],[3,3],[2,-1],[3,-4],[5,-5],[0,-2],[0,-6],[0,-4],[-1,-7],[4,-1],[1,-2],[2,-1],[2,0],[1,-4],[0,-7],[0,-3],[-1,-7],[-3,-4],[-1,-1],[0,-6],[-3,-3],[-6,2],[0,3],[-3,-1],[-3,-3],[-1,-3],[2,-3],[3,-8],[-4,0],[-1,-3],[2,-4],[-2,-5],[-5,-3],[-1,-7],[-5,-3],[1,-6],[-3,-3],[-5,-7],[0,-3],[4,-4],[0,-7],[-3,-2],[-3,-8],[-3,-4],[3,-4],[-4,-3],[1,-4],[0,-4],[-2,-2],[0,-6],[-3,0],[-3,-1],[-1,-3],[-3,-3],[-3,1],[-1,0],[-6,-7],[-3,2],[-7,-8],[-1,-4],[1,-5],[-3,-5],[1,-2],[1,-4],[2,-3],[-2,-5],[-4,-3],[-3,2],[-4,-1],[-1,-4],[1,-4],[-2,-6],[-7,2],[-5,-1],[-2,-4],[0,-4],[-1,-5],[-5,-6],[-5,-4],[-6,-6],[-11,-24],[-4,-7],[-3,-18],[-2,-29],[-10,-51],[-2,-12],[-6,-29],[-4,-18],[0,-15],[-4,-20],[-6,-14],[-6,-16],[-3,-17],[-1,-13],[-1,-22],[-1,-29],[0,-8],[1,-15],[0,-22],[1,-12],[5,-10],[3,-6],[0,-17],[6,-20],[0,-3],[0,-11],[2,-7],[0,-9],[2,-9],[6,-7],[0,-7],[2,-7],[3,-4],[1,-8],[-1,-12],[6,-15],[2,-1],[1,-2],[-1,-6],[2,-1],[0,-1],[4,-2],[1,-4],[0,-5],[0,-4],[1,-4],[2,-3],[1,-3],[2,-1],[1,-1],[0,-1],[2,-1],[0,-3],[1,-1],[1,-1],[1,-2],[0,-2],[1,-4],[1,-2],[2,-1],[-1,-4],[0,-4],[1,-1],[2,-1],[0,-1],[0,-2],[0,-1],[0,-1],[2,-1],[0,-4],[2,-1],[1,-1],[1,-2],[0,-2],[-1,-2],[2,-2],[-1,-4],[0,-3],[1,-1],[2,-6],[2,-1],[1,-4],[2,-2],[0,-3],[1,-1],[4,-2],[0,-2],[2,-1],[0,-2],[2,-3],[1,0],[0,-6],[2,-5],[2,-5],[1,-3],[-1,0],[-2,-1],[-1,-2],[1,-1],[1,-3],[2,-1],[0,-1],[0,-2],[4,-1],[0,-1],[0,-4],[0,-3],[3,-4],[4,-7],[1,-3],[1,0],[1,-4],[1,-4],[2,-5],[-2,-6],[0,-7],[0,-1],[1,-5],[0,-5],[1,-6],[1,-6],[5,-6],[0,-7],[1,-24],[3,-10],[4,-27],[1,-11],[6,-19],[6,-18],[5,-13],[6,-22],[3,-15],[4,-21],[4,-16],[7,-45],[0,-9],[6,-15],[5,-8],[3,-7],[4,-6],[6,-5],[6,-7],[5,-4],[4,-2],[2,-3],[1,-2],[2,-1],[4,0],[7,-7],[5,-3],[4,-3],[4,-6],[6,-1],[2,-2],[7,-4],[10,-8],[2,-1],[4,-5],[8,-3],[5,-5],[3,-2],[6,-3],[4,-2],[3,-5],[2,-3],[3,-10],[8,-9],[3,-7],[1,-7],[2,-7],[1,-5],[0,-7],[4,-12],[5,-11],[2,-10],[2,-7],[0,-9],[1,-19],[2,-11],[3,-9],[2,-2],[2,-3],[0,-5],[-2,-6],[-2,-7],[1,-7],[1,-4],[1,-7],[-1,-5],[-2,-8],[5,-8],[-1,-5],[-1,-1],[5,-6],[-1,-9],[0,-3],[-1,-5],[-2,-3],[0,-5],[4,-3],[4,0],[3,-6],[2,-6],[-3,-7],[-2,-6],[-4,-5],[-2,-4],[-1,-4],[2,-2],[-1,-5],[-2,-5],[1,-5],[6,-7],[3,-2],[4,-2],[0,-4],[-4,-2],[-3,-3],[-1,-2],[1,-4],[1,-3],[2,-5],[-3,-1],[-5,-1],[1,-2],[2,-3],[3,-1],[4,2],[2,-3],[-1,-5],[4,-2],[2,1],[3,0],[1,1],[3,2],[1,2],[3,-2],[0,-3],[-1,-4],[-3,-3],[-2,0],[-2,3],[-2,-1],[-2,-6],[-4,-2],[-1,-2],[-2,-1],[-1,6],[-1,-1],[-1,-8],[-2,-5],[-1,-3],[-2,-5],[1,-3],[3,3],[5,-1],[0,-2],[0,-4],[-4,-4],[-4,-3],[0,-3],[-1,-5],[-2,-3],[-2,1],[-8,-1],[-2,-9],[-4,-10],[-6,-12],[-7,-11],[-8,-11],[-9,-11],[-5,-14],[-10,-22],[-19,-35],[-28,-44],[-43,-77],[-13,-32],[-2,-6],[-3,-7],[-5,-9],[-4,-17],[-4,-7],[-5,-15],[-4,-10],[-4,-13],[-2,-11],[-6,-17],[0,-12],[0,-8],[-4,-11],[0,-3],[-3,-4],[-3,-5],[-3,-10],[-1,-9],[-3,-9],[-3,-4],[-1,-9],[-3,-7],[1,-10],[-2,-8],[-3,-5],[0,-4],[6,-5],[0,-6],[8,-4],[5,-4],[6,-3],[1,-1],[1,-1],[4,-2],[3,-1],[3,-4],[5,-2],[1,-4],[1,-1],[5,-4],[2,-1],[0,-4],[4,-2],[0,-3],[-2,-8],[6,-4],[2,4],[2,-1],[3,-2],[4,-2],[-1,-2],[-1,-5],[0,-3],[-1,-4],[-1,-3],[0,-2],[0,-4],[1,-1],[3,-3],[1,-4],[2,-2],[1,1],[3,2],[2,-1],[2,-3],[3,-2],[-2,-6],[-3,0],[-1,-4],[0,-3],[-3,-6],[-1,-4],[-2,-5],[1,-6],[1,-2],[3,0],[2,2],[3,1],[2,-2],[0,-4],[-3,-4],[-3,-3],[-1,-1],[-2,5],[-2,2],[-3,-2],[1,-1],[-3,-8],[-4,-4],[-2,-12],[-3,-11],[-1,-6],[0,-11],[1,-2],[4,0],[4,0],[1,-8],[3,-2],[0,-1],[-2,-2],[-4,-3],[-2,-3],[1,-3],[5,0],[5,-2],[-2,-4],[-4,-5],[-4,1],[-1,-1],[-5,-1],[-2,-3],[-3,-1],[-5,0],[-1,0],[-3,-3],[-1,-5],[-1,-5],[-2,2],[-3,-1],[-2,-3],[-3,-4],[-1,-4],[0,-2],[0,-3],[2,0],[2,-4],[-2,-3],[-4,0],[0,4],[-4,4],[-3,1],[-5,-6],[-3,-6],[1,-5],[1,-2],[-3,-7],[-6,-1],[-4,3],[-6,0],[-8,-4],[-7,-6],[-6,-7],[-7,-5],[-9,-10],[-4,-8],[-3,-6],[-7,-7],[-12,-10],[-5,-4],[0,-4],[0,-3],[-1,-4],[-4,0],[-1,2],[-3,0],[-3,-4],[-5,-3],[-7,-9],[-3,-8],[-7,-10],[-3,-6],[-2,-3],[2,-3],[0,-4],[-4,-3],[-2,1],[-2,5],[0,-5],[-9,-11],[-1,-2],[-4,-6],[-2,-2],[-5,-8],[-2,-6],[1,-4],[1,-3],[1,-4],[-7,1],[-2,3],[-1,-1],[-2,-4],[3,-3],[-1,-9],[-3,-1],[0,-4],[5,-3],[0,-3],[-3,-4],[-5,-1],[-2,-2],[0,-4],[-5,-2],[-2,2],[-4,1],[-6,-10],[-5,-5],[-4,-6],[0,-9],[-2,-10],[-4,-14],[0,-6],[0,-8],[-2,-5],[-1,-5],[-7,-14],[0,-5],[-2,-11],[-3,-10],[-1,-7],[0,-10],[-3,-9],[-5,-7],[-1,-9],[-10,-5],[-2,-3],[-3,-8],[-2,-6],[-4,-1],[-8,-2],[-2,-7],[-1,-6],[-5,-4],[-5,-7],[-9,-2],[-4,-3],[-3,-6],[-7,-3],[-3,-6],[-1,-10],[-6,-5],[-5,-6],[-3,-6],[-5,-3],[-6,-7],[-4,-4],[-15,-1],[-8,-3],[-16,-6],[-8,0],[-6,-1],[-6,0],[-8,-1],[-8,-4],[-8,-7],[-6,-5],[-7,-4],[-26,-15],[-39,-21],[-43,-25],[-95,-47],[-36,-19],[-53,-27],[-54,-28],[-45,-27],[-43,-30],[-10,-7],[-13,-30],[-7,-8],[-2,-10],[-6,-15],[-2,-9],[-4,-12],[-5,-13],[-1,-18],[-6,-18],[-9,-18],[-2,-7],[-11,-18],[-3,-9],[-12,-20],[-4,-14],[-1,-14],[-1,-16],[0,-7],[-7,-17],[-5,-13],[-4,-4],[-1,-8],[-9,-10],[-11,-14],[-10,-7],[-14,0],[-11,-14],[-1,-4],[-1,-7],[-7,-1],[-11,3],[-5,4],[-14,-1],[-9,0],[-5,-5],[-7,-6],[-3,1],[-4,4],[-1,6],[-6,3],[-7,-1],[-8,-4],[-9,0],[-12,3],[-10,0],[-1,7],[0,8],[-4,2],[-2,1],[-7,-3],[-8,-2],[-5,-2],[-4,-4],[-1,-6],[-8,-9],[-3,-3],[-4,-5],[-2,-9],[-7,-7],[-12,-3],[-6,2],[-10,0],[-5,-3],[-7,-10],[-8,-13],[-8,-12],[-8,-11],[-8,-9],[-12,-5],[-27,-2],[-20,-1],[-40,-7],[-48,-16],[-40,-16],[-90,-48],[-22,-12],[-23,-15],[-15,-13],[-22,-20],[-11,-13],[-14,-13],[-20,-7],[-21,-10],[-18,-8],[-48,-21],[-33,-15],[-37,-22],[-16,-14],[-55,-31],[-52,-36],[-81,-59],[-71,-52],[-52,-40],[-35,-27],[-78,-53],[-56,-45],[-43,-36],[-49,-40],[-87,-72],[-60,-50],[-39,-36],[-68,-65],[-61,-62],[-50,-42],[-17,-16],[-20,-19],[-30,-20],[-40,-28],[-16,-15],[-25,-25],[-17,-18],[-21,-23],[-21,-26],[-16,-19],[-13,-12],[-29,-17],[-35,-19],[-50,-37],[-50,-51],[-37,-38],[-23,-29],[-49,-54],[-67,-84],[-153,-195],[-43,-57],[-19,-29],[-6,-9],[-3,-9],[-5,-16],[-8,-15],[-4,-5],[-2,-9],[-1,-6],[-8,-11],[-7,-7],[-3,-1],[-9,1],[-2,-1],[-13,-3],[-5,-2],[-6,-4],[-5,-6],[-6,-13],[-6,-15],[-18,-15],[-39,-46],[-34,-49],[-40,-60],[-32,-61],[-17,-43],[-17,-38],[-7,-16],[-11,-16],[-16,-22],[-15,-18],[-23,-42],[-22,-43],[-23,-55],[-11,-39],[-13,-35],[-4,-22],[-4,-18],[-7,-23],[-6,-21],[-8,-33],[-4,-17],[-3,-27],[-4,-19],[1,-19],[2,-18],[5,-9],[4,-8],[2,-12],[4,-12],[6,-6],[10,-11],[5,-6],[4,-10],[14,-18],[8,-11],[9,-4],[6,0],[6,-7],[3,-26],[5,-15],[-1,-9],[0,-6],[-2,-9],[-1,-13],[2,-6],[2,-5],[1,-4],[7,-2],[1,-20],[-11,-19],[-1,-19],[2,-8],[1,-4],[-2,-7],[-1,-6],[0,-9],[3,-4],[2,-7],[3,0],[2,-2],[3,0],[-2,-10],[-1,-2],[-3,-2],[-4,-1],[-3,-5],[0,-6],[0,-5],[0,-9],[11,-4],[-5,-25],[-4,-21],[-3,-11],[-4,-14],[-4,-10],[-3,-9],[-6,-5],[-8,-5],[-5,-5],[-3,-8],[-7,-5],[-5,-1],[-2,-4],[-3,-14],[0,-6],[1,-8],[2,-7],[2,-9],[0,-6],[-3,-3],[-2,1],[-8,2],[-5,0],[-8,-2],[-8,-11],[-7,-8],[-10,-10],[-9,-14],[-8,-19],[-6,-15],[-12,-26],[-13,-27],[-11,-16],[-14,-15],[-21,-24],[-30,-29],[-33,-27],[-34,-28],[-33,-18],[-26,-9],[-19,-1],[-16,0],[-17,0],[-14,0],[-12,-1],[-15,-3],[-12,-7],[-11,-9],[-13,-14],[-13,-21],[-21,-33],[-26,-41],[-22,-45],[-12,-32],[-2,-4],[0,-7],[0,-4],[-2,-6],[-5,-2],[-3,-2],[-2,-4],[-2,-2],[-4,-5],[-20,-40],[-34,-74],[-38,-81],[-5,-12],[-2,-11],[-2,-6],[-3,-13],[-1,-7],[-7,-42],[0,-6],[0,-6],[-3,-16],[-12,-38],[-3,-2],[-8,-14],[-7,-22],[-46,-127],[-10,-27],[-1,-3],[-2,-7],[-3,-8],[-1,-9],[0,-11],[0,-7],[2,-11],[0,-11],[-16,-18],[-13,-11],[-5,-18],[-10,-15],[-17,-14],[-20,3],[-17,-3],[-8,-4],[-10,-4],[-5,-3],[-9,-4],[-10,-4],[-10,-5],[-10,-2],[-10,-2],[-9,0],[-7,0],[-13,-4],[-7,0],[-8,-2],[-7,-3],[-13,-6],[-6,0],[-12,-6],[-7,-3],[-30,1],[-7,0],[-12,-1],[-9,0],[-12,-3],[-11,-1],[-9,0],[-10,0],[-14,0],[-9,3],[-10,0],[-9,0],[-5,-2],[-9,-5],[-6,-1],[-8,-4],[-8,-9],[-5,-8],[-5,-2],[-5,2],[-6,0],[-14,1],[-4,2],[0,5],[-4,5],[-6,4],[-6,1],[-5,-3],[-4,-4],[-3,-1],[-5,0],[-6,5],[-6,0],[-6,0],[-8,-2],[-4,0],[-6,6],[-4,5],[-2,3],[-6,3],[-6,0],[-32,-2],[-38,-3],[-23,-1],[-24,-11],[-14,-13],[-7,-14],[-9,-15],[-7,-8],[-10,-7],[-11,-7],[-7,-9],[-11,-18],[-5,-7],[-5,-7],[-12,-23],[-5,-12],[-2,-13],[-4,-15],[-2,-4],[-6,-11],[-2,-10],[-2,-16],[-1,-12],[-2,-15],[3,-2],[7,-2],[0,-4],[1,-6],[-3,-10],[-3,-4],[0,-6],[-5,-13],[2,-17],[2,-3],[-6,-14],[-6,-9],[2,-13],[0,-3],[-2,-14],[-1,-7],[-1,-12],[0,-9],[2,-10],[0,-16],[1,-11],[2,-2],[2,-7],[0,-9],[2,-4],[3,-8],[2,-10],[3,-17],[1,-10],[-1,-8],[0,-13],[0,-4],[3,-10],[2,-9],[2,-14],[1,-8],[5,-19],[-1,-13],[0,-14],[3,-7],[3,-15],[0,-10],[2,-9],[1,-11],[0,-7],[0,-13],[1,-7],[-1,-8],[1,-15],[3,-6],[1,-14],[-2,-9],[1,-10],[3,-12],[-1,-10],[2,-21],[1,-4],[0,-28],[1,-8],[0,-10],[2,-15],[3,-10],[0,-7],[0,-7],[1,-11],[2,-22],[3,-15],[1,-19],[1,-18],[0,-10],[3,-23],[2,-16],[1,-15],[2,-16],[2,-15],[1,-5],[4,-30],[1,-8],[1,-17],[2,-21],[3,-15],[3,-25],[1,-14],[1,-23],[0,-12],[2,-24],[3,-5],[4,1],[1,-10],[-1,-6],[-2,-5],[-2,-7],[2,-8],[1,-7],[3,-3],[1,-3],[2,-8],[4,-10],[1,-6],[1,-6],[-2,-10],[0,-7],[2,-5],[1,-8],[0,-5],[1,-13],[1,-10],[0,-8],[0,-8],[0,-5],[2,-11],[1,-9],[0,-16],[2,-13],[4,-16],[2,-7],[2,-10],[9,-6],[7,-2],[1,-10],[3,-8],[-1,-8],[10,-15],[4,-3],[8,-3],[3,-1],[7,-4],[6,-8],[0,-6],[2,-5],[3,-8],[3,-3],[1,-6],[4,-7],[2,-2],[2,-5],[15,-27],[3,-8],[4,-7],[2,-10],[4,-7],[5,-6],[5,-4],[4,-9],[5,-6],[7,-7],[1,-9],[3,-20],[-3,-9],[-9,-8],[-2,-11],[-2,-24],[-3,-20],[-2,-19],[-2,-31],[1,-33],[3,-48],[2,-58],[3,-52],[3,-36],[5,-47],[2,-51],[5,-47],[3,-23],[2,-16],[4,-11],[1,-14],[-2,-13],[0,-8],[1,-19],[-1,-10],[-3,-10],[-3,-7],[-5,-11],[-3,-5],[-6,-8],[-1,-37],[-4,-7],[-3,-25],[-4,-12],[-3,-4],[1,-34],[0,-9],[0,-140],[7,-126],[9,-132],[8,-155],[12,-112],[8,-71],[0,-20],[-1,-22],[-5,-92],[5,-52],[13,-67],[15,-54],[11,-25],[18,-19],[27,-17],[24,-8],[31,-10],[13,-3],[3,0],[2,-1],[1,-1],[3,0],[4,-3],[4,5],[4,-1],[3,3],[4,-3],[5,-3],[4,-3],[2,1],[2,-1],[3,0],[2,-7],[0,-2],[4,-3],[-1,-2],[0,-3],[0,-2],[-1,-4],[-1,-3],[1,-2],[-3,-4],[2,-6],[2,-3],[-1,-3],[-1,-3],[1,-2],[-1,-4],[2,-7],[4,1],[2,-2],[1,-6],[-2,-2],[6,-2],[-4,-12],[2,-2],[-2,-8],[-1,-1],[4,-7],[2,-2],[0,-6],[-2,-3],[0,-3],[1,-4],[-2,-5],[1,-4],[-2,-6],[1,-3],[7,-35],[19,-70],[24,-70],[14,-35],[15,-27],[16,-19],[20,27],[9,11],[9,11],[1,-2],[-1,-4],[-3,-5],[2,-7],[-1,-1],[-2,-3],[0,-2],[0,-2],[1,-3],[5,-11],[4,-2],[17,-15],[9,-7],[36,-28],[40,-27],[42,-27],[24,9],[17,-13],[36,-43],[11,-16],[26,-31],[-8,-13],[-14,-3],[0,-5],[-5,-2],[0,-10],[-2,-4],[-5,-5],[-5,-1],[-4,-6],[-3,-1],[-5,0],[-2,-3],[-3,2],[-3,-4],[0,-5],[-2,-2],[-15,-3],[-5,-1],[-3,1],[-4,-2],[-1,-2],[-9,-9],[-7,-3],[-18,-19],[-11,-20],[-5,-23],[-2,-17],[-2,-17],[-3,-7],[-7,-12],[-46,-47],[-54,-42],[-49,-49],[-20,-26],[-18,-25],[-13,-24],[-10,-23],[-6,-18],[-6,-24],[-2,-12],[4,-1],[-1,-13],[-5,-1],[-2,-38],[-1,-72],[0,-20],[0,-39],[1,-11],[2,-11],[2,-8],[1,-6],[1,-5],[1,-17],[0,-27],[7,0],[0,-7],[2,0],[0,-9],[-4,0],[0,-16],[7,-12],[1,-12],[-2,-5],[0,-2],[0,-3],[-1,-2],[-2,-1],[-1,-1],[-1,-3],[-1,-1],[-3,-1],[-1,-1],[-1,-1],[0,-7],[-1,-8],[1,-8],[-1,-3],[-3,-4],[-2,-5],[-1,-3],[2,-1],[2,-1],[0,-4],[-1,-2],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,-3],[0,-5],[-2,-5],[1,-2],[-3,-21],[-1,-30],[-3,-33],[-3,-58],[-2,-44],[0,-31],[1,-26],[4,-46],[6,-36],[4,-15],[4,-16],[4,-30],[5,-15],[4,-8],[4,-10],[0,-9],[0,-9],[0,-9],[2,-8],[2,-13],[13,-54],[22,-80],[13,-49],[4,-11],[2,-14],[3,-1],[2,-3],[3,-4],[2,-3],[1,-3],[1,-3],[-1,-4],[1,-2],[0,-2],[1,-3],[-1,-2],[0,-3],[1,-3],[2,0],[0,-1],[2,-2],[0,-2],[0,-2],[1,-2],[0,-1],[1,-6],[1,-1],[3,-4],[-1,-8],[4,-1],[1,-1],[1,-11],[2,-3],[2,-5],[2,-5],[1,-2],[4,-5],[1,-1],[2,-1],[1,-3],[0,-4],[2,-6],[1,-6],[11,-16],[5,3],[3,-2],[1,-2],[-1,-2],[-1,-2],[-2,-3],[8,-22],[15,-31],[10,-17],[14,-19],[15,-18],[31,-36],[23,-26],[11,-15],[9,-12],[14,-21],[8,-17],[8,-18],[10,-22],[8,-20],[16,-38],[5,-11],[9,-22],[6,-23],[7,-27],[2,-9],[8,-36],[4,-25],[1,-12],[2,-17],[2,-30],[0,-37],[-1,-18],[0,-25],[-1,-15],[-5,-24],[-5,-21],[-11,-25],[-12,-22],[-17,-20],[-9,-16],[-5,-10],[-8,-11],[-2,-12],[-1,-9],[3,-18],[8,1],[3,-22],[-5,-6],[11,-60],[42,-140],[14,-28],[18,-31],[79,-101],[6,-5],[8,10],[20,-26],[29,35],[46,-26],[24,78],[13,17],[31,-3],[8,28],[17,-8],[21,-9],[7,-19],[-10,-36],[11,-13],[134,-138],[27,-21],[26,-19],[17,-15],[54,-41],[19,-11],[13,-3],[19,1],[17,-1],[13,-3],[18,-5],[15,-8],[20,-15],[18,-14],[28,-22],[39,-30],[54,-39],[40,-26],[33,-20],[29,-14],[28,-14],[24,-15],[29,-25],[29,-21],[45,-29],[47,-28],[53,-25],[27,-8],[29,-9],[23,-8],[29,9],[37,26],[-1,35],[0,25],[4,8],[4,3],[24,-9],[16,-4],[7,1],[15,4],[8,8],[13,7],[9,10],[34,35],[52,44],[14,16],[9,7],[19,-3],[17,-7],[15,-1],[21,-8],[76,-16],[35,1],[195,35],[116,155],[25,40],[-3,4],[12,18],[3,-5],[23,31],[18,18],[201,139],[69,14],[100,-80],[0,-12],[144,-358],[6,-6],[0,-14],[1,-13],[9,-16],[21,-62],[29,-60],[4,-15],[51,-129],[2,-15],[47,-106],[3,-18],[1,-15],[4,-9],[2,-10],[-6,-10],[1,-9],[2,-12],[0,-5],[-1,-12],[-6,-18],[-3,-13],[-2,-16],[-10,-37],[-5,-3],[-4,2],[-15,22],[-5,3],[-7,0],[-56,-26],[-41,-1],[-16,-6],[-10,5],[-15,-6],[-6,-1],[-3,-2],[-19,4],[-6,-1],[-7,-2],[-36,-22],[-93,-72],[-21,-20],[-27,-32],[-14,-10],[-21,-22],[-18,-12],[-20,-17],[-9,-10],[-4,-3],[-6,-3],[-25,-11],[-7,-2],[-6,-3],[-66,-48],[-5,-6],[-2,-7],[-9,-20],[-6,-2],[-5,2],[-3,5],[-3,0],[-18,-12],[-36,-29],[-185,-117],[-3,0],[-31,20],[-13,-8],[-40,-53],[-6,-30],[-8,-24],[-133,-142],[-21,-74],[-14,-77],[-6,-65],[-8,-117],[7,-12],[3,-3],[5,-2],[3,-2],[22,-6],[5,-4],[43,-25],[6,-4],[2,-1],[18,-13],[14,-6],[28,-22],[3,-4],[0,-2],[-8,-21],[-3,-2],[-5,0],[-6,-4],[-5,-4],[-8,-13],[-7,-11],[-16,-39],[-2,-11],[-1,-9],[-6,-20],[-1,-12],[-4,-10],[-6,-3],[-5,-14],[-3,-10],[-4,-19],[-6,-40],[-13,-45],[5,-4],[-8,-25],[-3,1],[-10,-32],[5,-10],[-36,-134],[8,-8],[-6,-14],[-6,1],[-5,-9],[5,-4],[-17,-52],[-4,-2],[-10,0],[-3,1],[-6,-3],[-7,-4],[-5,-5],[-2,-4],[-2,-5],[-4,-16],[-5,-21],[-8,-15],[0,-9],[-3,-8],[0,-15],[-2,-4],[-1,-4],[-1,-13],[-1,-4],[-5,-13],[-5,-34],[-3,-7],[1,-10],[-4,-17],[-16,-89],[-1,-23],[13,-22],[13,-14],[4,-5],[9,-7],[18,-22],[5,-18],[1,-5],[-4,-27],[-3,-18],[-5,-9],[-3,-13],[-17,-45],[-51,-122],[-4,-12],[-3,-4],[-1,-4],[2,-8],[0,-4],[-6,-14],[-1,0],[0,-2],[-11,-22],[-4,-13],[-9,-20],[0,-6],[-1,-2],[-2,-4],[-4,-8],[-2,-4],[0,-10],[-1,-7],[-7,-15],[-6,-8],[-2,-4],[-8,-22],[-18,-38],[-4,-14],[-5,-18],[-6,-17],[-78,-185],[-4,-6],[-2,-6],[-6,-17],[-22,-53],[-2,-10],[-4,-15],[-8,-15],[-2,-2],[-3,-4],[-1,-7],[-36,-101],[-15,-39],[-11,-25],[-13,-35],[-10,-23],[-6,-9],[-25,-13],[-17,-5],[-7,1],[-13,10],[-2,-3],[-2,2],[-18,-15],[-6,-2],[-8,-1],[-5,-2],[-20,-1],[-8,1],[-17,4],[-14,-1],[-59,1],[-199,4],[-1,-44],[-2,-79],[-1,-6],[-2,-3],[-8,-5],[-8,0],[-9,3],[-18,0],[-10,-2],[-14,1],[-6,-1],[-2,1],[-2,11],[-2,3],[1,7],[-1,4],[1,13],[1,4],[-3,23],[2,25],[-5,18],[0,6],[-5,12],[0,12],[-237,19],[-2,2],[-2,1],[-21,0],[-2,2],[-8,1],[-28,4],[-12,-1],[-18,4],[-1,0],[-8,0],[-7,3],[-1,1],[-11,2],[-2,1],[-7,0],[-12,10],[-13,26],[-8,20],[0,10],[-4,9],[-19,67],[-9,20],[-2,10],[-2,5],[-9,25],[-6,7],[-5,19],[-5,5],[-6,9],[-6,16],[0,7],[-2,2],[-4,25],[-12,29],[3,11],[-5,24],[-3,5],[-1,11],[-13,39],[3,5],[-35,93],[13,9],[-5,16],[-15,-8],[-77,199],[-1,21],[6,21],[7,17],[3,13],[11,8],[11,2],[17,3],[11,6],[13,5],[9,1],[8,0],[11,4],[8,2],[10,3],[25,7],[6,2],[6,1],[10,6],[13,3],[40,11],[63,17],[44,18],[38,14],[10,5],[1,1],[2,1],[2,1],[13,7],[13,11],[5,12],[-2,2],[0,6],[6,11],[2,10],[-3,13],[-3,4],[1,3],[0,6],[0,7],[0,8],[0,8],[1,9],[0,9],[0,9],[0,8],[0,9],[-1,9],[-1,9],[2,7],[-5,16],[-1,5],[-1,7],[-1,9],[-1,8],[-1,3],[-1,7],[0,7],[-1,7],[0,7],[-1,6],[0,6],[-2,3],[-2,4],[-2,6],[0,6],[0,7],[-1,6],[0,2],[-1,5],[-1,6],[0,7],[0,1],[0,5],[0,6],[-1,6],[0,7],[-1,9],[-1,8],[0,8],[-1,8],[-1,9],[-1,8],[-1,8],[-1,7],[0,2],[-8,-1],[-7,32],[-1,4],[-1,4],[0,2],[4,4],[7,3],[10,3],[18,7],[5,4],[-2,3],[1,8],[0,6],[-1,3],[10,10],[1,1],[9,4],[-27,152],[28,11],[10,4],[0,1],[5,3],[-4,8],[-7,-2],[-2,4],[-1,10],[0,4],[-2,10],[2,8],[61,17],[1,3],[1,3],[1,4],[1,5],[1,6],[1,6],[1,6],[1,7],[1,7],[2,6],[-2,3],[1,5],[0,9],[0,8],[0,8],[0,3],[0,6],[1,3],[-1,5],[0,6],[2,10],[-1,6],[-2,8],[-5,7],[-1,4],[0,6],[-2,10],[0,11],[2,11],[-2,7],[-1,2],[-2,6],[-1,8],[0,4],[0,6],[2,10],[-1,10],[4,8],[3,13],[4,25],[0,23],[2,19],[4,67],[5,97],[1,19],[-1,2],[0,2],[0,7],[0,7],[-1,6],[-1,2],[1,2],[-1,2],[0,1],[-1,8],[0,3],[1,3],[2,9],[-1,8],[1,5],[2,6],[1,5],[-2,4],[-2,4],[0,2],[1,13],[-5,16],[-2,5],[-2,7],[-2,5],[-13,20],[-5,8],[-220,318],[-54,43],[-37,31],[-35,24],[-23,14],[-18,7],[-15,5],[-42,10],[-74,18],[-15,6],[-92,22],[-6,0],[-34,4],[-23,7],[-9,7],[-7,6],[-12,-3],[-95,-45],[0,-3],[-1,-3],[1,-4],[-2,-5],[-7,-8],[-3,-5],[-3,-4],[-3,-3],[-3,-4],[0,-4],[-1,-4],[-3,-5],[-16,-12],[-4,-4],[-6,-8],[-4,-6],[-10,-13],[-2,-4],[-2,-2],[-6,-7],[-8,-9],[-1,-2],[-1,-5],[-2,-8],[-1,-8],[-11,-19],[-3,-6],[0,-9],[-3,-12],[-10,-21],[-4,-6],[-5,-7],[-5,-9],[-3,-7],[-3,-12],[-4,-11],[-1,-8],[-5,-7],[-4,-8],[-5,-8],[-4,-7],[-4,-6],[-5,-8],[-5,-9],[-3,-7],[-2,-11],[-1,-7],[0,-6],[-1,-5],[-3,-13],[-9,-33],[-6,-13],[-7,-26],[-3,-19],[2,-3],[1,-5],[-1,-13],[-1,-8],[1,-6],[3,-5],[5,-6],[5,-9],[1,-10],[5,-15],[2,-4],[5,-4],[1,-4],[3,-12],[0,-10],[2,-8],[2,-4],[1,-5],[2,-4],[0,-7],[1,-10],[3,-7],[1,-8],[0,-13],[3,-5],[4,-3],[3,-4],[3,-3],[4,-12],[3,-7],[4,-4],[4,-9],[3,-16],[2,-11],[1,-14],[3,-6],[0,-7],[0,-6],[-2,-6],[-2,-6],[2,-7],[-3,-6],[3,-7],[-3,-8],[-2,-4],[-1,-16],[-1,-12],[1,-7],[-2,-11],[-2,-13],[3,-20],[2,-7],[3,-7],[2,-9],[2,-6],[6,-15],[3,-8],[2,-3],[1,-2],[2,-7],[1,-6],[3,-12],[4,-2],[5,-5],[6,-7],[2,-2],[3,-7],[5,-9],[5,-15],[4,-7],[2,-4],[3,-4],[-1,-8],[0,-6],[3,-7],[1,-10],[4,-3],[2,-3],[3,-4],[3,-5],[3,-7],[-2,-7],[2,-14],[1,-6],[3,-17],[6,-2],[3,-2],[3,-3],[-2,-10],[0,-6],[1,-5],[4,-4],[2,-3],[3,-4],[5,-2],[2,-2],[2,-7],[5,-5],[2,-1],[5,-8],[5,-4],[2,-3],[1,-2],[0,-3],[0,-7],[2,-5],[4,-4],[6,-2],[5,-3],[3,-2],[2,-2],[0,-2],[-1,-7],[1,-4],[4,-2],[2,-3],[3,-2],[4,-3],[3,-4],[-1,-4],[-4,-4],[1,-5],[2,-6],[-4,-9],[0,-5],[-8,-6],[-2,-4],[-2,-3],[-14,-5],[-5,-5],[-13,-2],[-5,-4],[0,-6],[-3,-6],[1,-4],[-4,-6],[1,-3],[-3,-13],[-2,-4],[-2,-7],[-13,-6],[-1,-3],[-15,0],[-2,-2],[-8,1],[-6,3],[-10,-6],[0,-13],[-1,-5],[-8,-5],[-12,-3],[-19,-1],[-12,-6],[-7,-6],[-5,-5],[5,-9],[-1,-4],[-2,-4],[-2,-2],[-6,-3],[-1,-2],[-5,3],[-3,-3],[-3,-2],[-3,1],[-3,0],[-1,-4],[0,-6],[-2,-6],[-4,-1],[-4,2],[-3,6],[-8,-5],[-13,-5],[-4,-3],[-8,-4],[-8,-4],[-1,0],[-9,2],[-7,4],[-4,4],[-10,-7],[-12,-4],[-2,-3],[-3,-3],[-3,-1],[-4,-2],[-4,-2],[-1,-5],[0,-4],[2,-4],[-1,-7],[-3,-8],[-6,-8],[-9,-8],[-8,1],[-8,-7],[-8,-2],[-4,3],[-7,3],[-10,1],[-6,0],[-7,-1],[-5,-3],[-23,-19],[-11,-18],[-4,-6],[-5,-7],[-7,-9],[-6,-12],[-7,-11],[-6,-18],[-4,-7],[-5,-7],[-5,-6],[-7,-8],[3,-28],[3,-24],[4,-8],[44,-70],[7,-1],[54,48],[5,-9],[-79,-66],[-52,-45],[-27,-23],[-10,-8],[-8,-5],[-3,1],[0,4],[-6,8],[-5,10],[-21,43],[-6,-5],[-11,-8],[-8,-7],[-13,-11],[-4,-3],[-9,-8],[-5,-9],[-3,-4],[-4,-6],[-3,-8],[-3,-8],[-2,-6],[2,-7],[-4,-12],[0,-14],[4,-12],[0,-5],[1,-6],[-1,-3],[-2,-4],[2,-8],[-1,-11],[9,-1],[-2,-7],[-1,-6],[1,-2],[2,-4],[1,-2],[-3,-5],[-2,-2],[-2,-2],[2,-5],[5,2],[4,1],[3,0],[3,-2],[3,-4],[-1,-5],[3,-6],[1,-3],[3,-2],[-1,-6],[3,-3],[-2,-8],[-1,-4],[1,-3],[-1,-8],[3,-5],[1,-5],[-6,-5],[-7,0],[-3,-4],[-2,-3],[0,-3],[4,-6],[-1,-5],[3,-2],[3,-5],[1,-5],[-1,-5],[-4,-4],[-3,-7],[-6,-5],[-4,-2],[-6,-3],[-9,0],[-2,0],[-3,3],[-5,3],[-2,-1],[-6,-5],[-2,-5],[-3,-5],[-8,-3],[-4,0],[-3,-2],[-2,-7],[-5,-3],[-4,-1],[-6,-2],[-5,1],[-5,0],[-7,-8],[-7,-4],[-3,-4],[-13,-5],[-14,-5],[-2,-4],[-3,-3],[-7,-4],[-11,-6],[-8,-5],[-9,-3],[-9,-4],[-2,-1],[-3,-2],[-6,-5],[-7,1],[-6,0],[-4,-4],[-13,-3],[-3,-4],[-3,-5],[-4,-3],[-7,-3],[-12,-6],[-1,-1],[-4,-4],[-7,-6],[-3,-2],[-3,-2],[-3,-2],[-4,-3],[-3,-4],[-9,5],[-4,1],[-13,-5],[-24,-14],[-10,-7],[-19,-10],[-8,-5],[-11,-11],[-8,-9],[-18,-13],[-1,-4],[-11,-11],[-6,-5],[-16,-12],[-12,-14],[-6,-7],[-4,-5],[-7,-7],[-3,-4],[0,-3],[-4,-9],[-6,-8],[-4,-9],[-3,-6],[-3,-4],[-1,-5],[-5,-10],[-3,-6],[2,-3],[-2,-7],[-2,-4],[-3,-4],[-3,-1],[-3,-4],[4,-4],[1,-5],[2,-2],[-1,-5],[1,-3],[-1,-4],[0,-7],[-9,-7],[-5,2],[-2,-7],[2,-2],[-2,-5],[-1,-4],[2,-2],[2,-4],[0,-9],[-1,-3],[0,-4],[-3,-5],[-2,-3],[0,-2],[1,-3],[2,1],[3,-2],[3,1],[1,1],[0,2],[1,3],[3,-2],[3,2],[1,0],[3,-3],[2,-1],[2,-3],[1,-5],[2,-3],[1,-2],[0,-5],[2,-1],[2,-3],[2,-1],[1,-2],[0,-3],[3,-4],[2,-3],[2,-3],[2,-3],[2,-3],[0,-4],[0,-5],[4,-1],[1,0],[3,-1],[2,-3],[2,-4],[-1,-3],[-2,-2],[-5,-1],[-3,-4],[4,-4],[4,-4],[4,-6],[4,-7],[-1,-16],[-1,-6],[-1,-6],[-1,-6],[-3,-4],[-1,-3],[2,-2],[3,-5],[-1,-4],[-2,-3],[-1,-1],[1,-4],[2,-3],[2,-3],[-1,-2],[-1,-2],[2,-3],[7,-2],[3,-2],[5,-2],[1,-2],[1,-3],[2,-6],[-1,-4],[-2,-3],[-1,-4],[-11,-1],[3,-7],[-3,-7],[-2,-5],[-4,-9],[-13,-5],[-5,-7],[-6,-6],[-7,-3],[-8,-4],[-7,-1],[-3,-2],[-12,-4],[-6,0],[-3,-3],[-7,-2],[-6,1],[-8,5],[-8,1],[-3,-1],[-7,1],[-9,-4],[-5,1],[-4,4],[-8,1],[-8,6],[-8,0],[-10,1],[-3,-5],[-2,-5],[-4,-6],[-1,-1],[1,-7],[-3,-6],[3,-3],[4,-4],[0,-4],[-6,-3],[-5,-1],[-6,1],[-1,-1],[3,-3],[8,1],[5,-3],[4,-2],[5,-3],[6,-4],[2,-5],[3,-9],[-1,-4],[-6,-3],[-15,1],[-17,5],[-14,2],[-1,1],[-17,-1],[-6,-1],[-5,-5],[-7,1],[-4,0],[-3,1],[-7,-1],[-3,-3],[-4,3],[-4,-4],[-5,2],[-3,-2],[-2,-3],[-6,0],[-4,-5],[-8,-7],[-4,-9],[-4,-5],[-2,-10],[-4,-4],[-8,-6],[1,-3],[-5,-7],[-3,-5],[-2,-8],[-2,-7],[-4,-5],[-6,-7],[-10,-4],[-2,-4],[-5,-5],[0,-7],[-11,-6],[-5,-6],[-9,-8],[-12,-2],[-7,-2],[-4,-12],[-15,-9],[-7,-11],[-9,-9],[-18,-15],[-2,-2],[-10,-9],[-6,-5],[-26,-13],[-4,-3],[-8,-5],[-14,-6],[-13,-6],[-15,-8],[-12,-4],[-6,-1],[-18,-9],[-11,-7],[-11,-8],[-11,-8],[-4,-4],[-17,-8],[-20,-14],[-23,-13],[-7,-6],[-8,-8],[-17,-13],[-17,-10],[-15,-7],[-5,-3],[-3,-4],[-10,-7],[-23,-13],[-5,-5],[-3,0],[-5,-6],[0,-6],[-1,-4],[-2,-5],[-1,-5],[-3,-4],[-2,-1],[-4,-4],[-7,0],[-2,1],[-2,-1],[-1,0],[-4,3],[-4,2],[-6,-5],[-4,-1],[-4,-5],[-4,-2],[-2,-1],[-1,-3],[-4,-1],[-4,-1],[-4,0],[-4,0],[-5,-2],[-3,-2],[-4,-1],[-6,-5],[-5,-1],[-7,0],[-12,-5],[-2,-1],[-7,-6],[-4,-3],[-8,0],[-3,-3],[-8,-4],[-7,-4],[-2,-2],[-8,-3],[-4,-3],[-6,-1],[-1,-4],[-3,1],[-5,1],[-2,-3],[-1,-3],[-2,-4],[-3,-2],[-7,-2],[-4,-3],[-1,-2],[-3,-2],[-2,-2],[0,-2],[-2,-4],[-4,-3],[-4,-10],[-2,-4],[-5,-8],[-2,-5],[-2,-4],[0,-4],[-6,-9],[-3,-5],[-1,-3],[-1,-5],[-4,-8],[-6,-12],[-1,-4],[-1,-4],[-3,-5],[-4,-8],[-1,-3],[-3,-5],[-4,-4],[-2,-1],[-1,-3],[-4,-5],[0,-2],[0,-2],[-3,-3],[-3,-2],[-2,-4],[-1,-2],[0,-3],[1,-3],[-1,-2],[-2,-3],[-1,-3],[1,-3],[1,-2],[1,-1],[-3,-2],[-3,-3],[1,-2],[3,-3],[-2,-3],[-1,-4],[0,-2],[0,-3],[0,-2],[-1,-2],[-2,-3],[1,-3],[1,-2],[3,-1],[2,-2],[3,1],[0,-1],[3,-2],[2,2],[0,-3],[2,-2],[3,1],[1,-3],[1,-6],[-1,-4],[0,-2],[1,-2],[-2,-3],[1,-3],[-5,-1],[0,-2],[-2,-2],[-1,1],[-3,-4],[1,-4],[-1,-3],[3,-3],[-6,-2],[0,-4],[-2,-1],[-2,0],[-3,-1],[-1,3],[0,2],[-2,1],[-4,7],[0,4],[-4,2],[1,3],[-4,1],[-5,3],[0,4],[-2,4],[-1,-1],[-4,-1],[-1,0],[-3,-2],[0,-2],[-2,-6],[0,-1],[-2,-2],[-1,-3],[-1,-3],[0,-4],[-1,-5],[-3,-2],[-1,-2],[1,-3],[-4,-2],[-1,0],[-4,-2],[-3,-2],[-2,0],[-2,-2],[-3,-1],[-4,-1],[1,-4],[0,-3],[-1,-3],[-5,-3],[-5,0],[-1,2],[0,3],[0,4],[1,1],[0,4],[-4,3],[-1,4],[-4,1],[-2,2],[-4,-1],[0,-2],[-1,-3],[4,-2],[1,-1],[2,-2],[1,-3],[-1,-3],[-4,-2],[-2,0],[-4,3],[-1,2],[2,6],[-6,1],[-2,3],[-5,3],[-4,1],[-2,0],[0,-1],[-3,2],[-2,3],[1,6],[-2,2],[-8,9],[-3,4],[-2,3],[-3,2],[-2,0],[-3,3],[-1,3],[-1,4],[1,3],[-3,6],[0,4],[-3,4],[-1,2],[-1,3],[-1,5],[0,5],[1,6],[1,9],[-1,3],[-2,5],[-1,3],[-3,5],[-2,11],[-1,7],[-4,4],[-2,7],[1,10],[2,4],[-1,3],[0,1],[-2,4],[-3,2],[-3,4],[-3,5],[-1,2],[-1,7],[4,3],[2,-1],[2,5],[2,1],[1,3],[2,2],[2,5],[-2,3],[0,1],[1,6],[-1,4],[0,4],[2,1],[1,4],[-3,1],[0,5],[5,0],[1,6],[0,1],[-2,1],[-1,3],[0,2],[-4,2],[-2,1],[-2,1],[-1,-1],[-2,-3],[-2,1],[-3,1],[-2,4],[2,5],[-1,8],[2,6],[-1,3],[2,3],[-4,4],[3,2],[3,2],[-1,6],[3,1],[2,3],[7,-2],[3,4],[4,-2],[0,-1],[5,-2],[1,0],[4,-4],[6,12],[9,22],[1,6],[-2,7],[1,4],[0,3],[-1,0],[-1,5],[-4,2],[-2,0],[-3,7],[0,6],[4,2],[-1,0],[0,3],[2,3],[1,3],[-2,3],[-2,2],[-1,0],[-2,3],[-2,5],[-1,4],[2,5],[1,3],[-1,4],[2,3],[3,2],[5,-1],[7,-2],[3,1],[2,1],[4,3],[1,3],[0,7],[2,3],[5,9],[2,8],[2,6],[-3,5],[-5,2],[-4,35],[5,3],[1,4],[2,0],[4,-1],[4,-5],[5,1],[6,9],[3,28],[8,57],[14,91],[12,73],[11,85],[14,77],[12,94],[10,79],[10,84],[-2,7],[-4,37],[-3,34],[-8,29],[-7,21],[-13,28],[-16,25],[-18,26],[-30,41],[-28,36],[-29,30],[-32,29],[-57,34],[-84,49],[-56,31],[-77,30],[-51,18],[-51,12],[-91,18],[-79,10],[-53,3],[-52,1],[-43,0],[-50,-2],[-22,0],[-27,-1],[-20,0],[-15,-1],[-20,-2],[-6,1],[-9,0],[-13,-3],[-5,-2],[-10,1],[-3,-1],[-9,1],[-3,0],[-5,-3],[2,-6],[4,-3],[4,-4],[-2,-6],[-7,-1],[-5,1],[-5,5],[-2,3],[0,4],[-6,2],[0,-4],[-3,-3],[-5,0],[-9,4],[-6,-3],[-9,1],[-7,3],[-2,2],[-2,11],[1,6],[-1,10],[-4,1],[-7,9],[-2,8],[-8,2],[-9,1],[-9,5],[-5,3],[-11,1],[-18,1],[-6,0],[-8,5],[-8,5],[-9,4],[-1,-3],[-4,-5],[-4,-1],[-7,-2],[-3,4],[-3,0],[-4,3],[-3,2],[1,4],[3,6],[4,2],[-6,6],[-2,2],[2,2],[-2,4],[1,7],[-2,7],[-3,0],[-3,5],[2,10],[0,3],[-3,1],[-3,4],[-3,1],[-3,-1],[-1,2],[-1,5],[-3,4],[-4,3],[-3,1],[-1,-3],[-4,-2],[-7,-1],[-2,8],[-1,4],[-1,4],[-5,3],[-2,9],[4,6],[2,1],[2,1],[2,-3],[3,-7],[3,-1],[2,3],[7,1],[4,2],[4,1],[1,1],[0,4],[4,5],[2,1],[2,3],[0,3],[2,9],[3,7],[5,4],[4,6],[1,2],[1,7],[1,4],[5,5],[2,-1],[1,3],[4,0],[3,3],[7,-3],[8,3],[2,1],[6,3],[8,-2],[4,3],[2,3],[0,4],[4,0],[4,-1],[5,-5],[3,-5],[2,-2],[7,1],[3,-1],[4,2],[6,1],[2,1],[15,0],[13,1],[6,0],[2,0],[10,1],[11,6],[7,1],[6,6],[4,4],[3,5],[2,6],[9,5],[2,7],[4,6],[2,8],[2,1],[2,4],[3,8],[3,9],[3,4],[7,8],[10,1],[4,3],[4,6],[4,4],[6,-1],[8,1],[7,8],[6,11],[2,5],[8,17],[6,3],[7,4],[12,9],[5,8],[30,22],[17,5],[47,39],[22,23],[15,22],[11,24],[11,13],[6,15],[-1,43],[0,63],[-6,54],[-5,72],[-5,84],[-4,45],[-2,32],[-7,47],[-14,74],[-21,94],[-26,101],[-31,105],[-226,619],[-37,90],[-18,50],[-12,54],[-4,40],[-1,72],[4,53],[-3,39],[-10,65],[-3,53],[-7,56],[-10,47],[-15,51],[-23,67],[-12,32],[-7,19],[-25,59],[-20,42],[-39,70],[-73,117],[-63,98],[-65,94],[-51,61],[-48,53],[-56,56],[-53,45],[-57,47],[-58,42],[-80,51],[-57,37],[-90,48],[-44,16],[-39,13],[-49,13],[-55,15],[-75,22],[-51,14],[-71,24],[-60,18],[-93,30],[-101,28],[-47,11],[-34,5],[-55,10],[-34,5],[-42,5],[-54,4],[-59,-2],[-43,-3],[-41,-6],[-32,-6],[-28,-3],[-47,-1],[-40,-5],[-38,-13],[-38,-10],[-32,-4],[-43,-10],[-52,-13],[-56,-14],[-106,-19],[-63,-19],[-69,-14],[-99,-21],[-44,-9],[-45,-14],[-41,-19],[-29,-16],[-29,-18],[-14,-10],[20,-102],[-84,-29],[-77,-24],[-21,122],[-26,-10],[-3,17],[-7,2],[-9,-4],[-17,-3],[-2,-1],[-105,-35],[-10,51],[-24,-4],[-30,-10],[-31,-16],[-32,-21],[-64,-36],[-60,-39],[-43,-29],[-90,-60],[-19,-14],[-7,-4],[-5,-2],[-2,-4],[-2,-7],[-2,-5],[-3,-4],[-7,4],[-4,4],[-4,-1],[-4,-3],[-5,-6],[-8,-2],[-5,2],[-6,3],[-7,-3],[-6,-1],[-2,1],[-4,1],[-7,4],[-1,9],[-1,6],[5,5],[-1,7],[-2,8],[-2,5],[1,5],[2,6],[2,2],[2,7],[7,10],[3,9],[0,6],[1,9],[2,7],[5,3],[2,10],[1,6],[-4,22],[-2,10],[-9,20],[-11,11],[-14,10],[-9,-21],[-11,8],[-12,10],[-12,2],[-5,-4],[-7,-5],[-9,-1],[-14,2],[-11,-4],[-3,0],[-5,-2],[-4,-1],[-5,-1],[-6,0],[-5,-1],[-3,0],[-8,0],[-5,2],[-4,3],[-6,-1],[-2,3],[-3,4],[-3,3],[-11,0],[-5,-2],[-7,-5],[-7,-6],[-9,-6],[-6,-1],[-10,1],[-10,2],[-6,-1],[-5,0],[-7,0],[-8,1],[-9,4],[-5,4],[-4,4],[-1,5],[-5,11],[-1,6],[-2,2],[-6,1],[-4,-1],[-6,-6],[-6,-2],[-9,-1],[-12,-1],[-8,5],[-7,4],[-9,5],[-8,4],[-7,0],[-6,2],[-4,3],[-2,0],[-7,0],[-4,2],[-7,3],[-9,0],[-7,4],[-8,3],[-16,7],[-3,3],[-4,2],[-2,4],[-7,4],[-3,4],[-4,7],[-4,7],[-3,9],[-9,10],[-6,4],[-4,1],[-3,0],[-8,-3],[-5,-2],[-11,-3],[-7,-1],[-5,-3],[-4,0],[-11,0],[-10,1],[-6,2],[-3,4],[-3,2],[-6,0],[-15,1],[-7,0],[-9,0],[-7,1],[-2,0],[-6,2],[-3,4],[-6,6],[-6,4],[-4,2],[-9,1],[-6,4],[-7,5],[-6,7],[-2,18],[0,15],[-2,11],[2,13],[2,19],[-2,3],[0,4],[0,7],[-5,6],[-8,24],[13,1],[-5,21],[-4,16],[1,13],[5,9],[6,3],[8,5],[1,10],[-8,4],[-7,19],[-2,16],[-20,0],[-2,37],[-1,8],[-8,3],[-3,2],[-5,2],[-6,9],[0,2],[4,11],[5,4],[6,4],[3,6],[1,7],[0,6],[-1,13],[4,8],[2,4],[0,4],[-6,6],[-3,3],[-4,0],[-5,4],[-1,9],[-4,9],[-12,-2],[-19,-3],[-38,10],[-37,4],[-44,-4],[-43,-9],[-66,-22],[-57,-23],[-64,-39],[-56,-29],[-13,-11],[-18,-2],[-24,7],[-15,-1],[-17,8],[-27,18],[-20,23],[-26,21],[-44,21],[-137,58],[-54,27],[-24,9],[-15,7],[-20,10],[-34,14],[-23,8],[-10,1],[-9,-2],[-5,-3],[-6,-5],[-11,-2],[-14,5],[-7,11],[-6,15],[-1,13],[1,10],[1,15],[9,14],[11,6],[16,-1],[11,-7],[9,-13],[3,-5],[3,-8],[2,-7],[43,-19],[12,-6],[37,-14],[11,-5],[4,-1],[4,-1],[17,-10],[16,-7],[34,-14],[34,-14],[40,-19],[25,-10],[34,-13],[52,-21],[3,19],[-1,6],[0,8],[6,5],[0,9],[-1,1],[1,7],[1,6],[3,4],[1,14],[2,17],[2,10],[2,11],[9,48],[2,11],[2,10],[-3,6],[4,8],[2,4],[10,59],[10,62],[6,30],[0,8],[10,-4],[2,9],[19,-6],[5,27],[2,9],[0,6],[1,6],[1,4],[1,9],[2,10],[2,5],[0,3],[-2,1],[8,39],[20,110],[21,130],[16,92],[-39,23],[-41,20],[-48,25],[-6,-8],[-4,2],[-5,3],[-5,5],[0,3],[-1,3],[-4,5],[-3,1],[-7,6],[-13,0],[-4,-3],[-7,-9],[-2,-3],[-5,-10],[-7,-16],[-3,-6],[-4,-11],[-3,-9],[-27,-84],[-32,-97],[-27,-80],[-24,-63],[-3,-6],[-1,-8],[-2,-13],[-2,-7],[-3,-3],[-10,-19],[-11,7],[-3,-1],[-3,1],[-2,4],[0,5],[0,4],[1,4],[-1,5],[1,8],[3,8],[8,11],[5,8],[4,9],[14,35],[16,55],[13,44],[3,13],[3,15],[3,10],[2,6],[5,5],[11,30],[-8,11],[7,29],[3,5],[1,10],[16,43],[-1,7],[3,10],[0,10],[-4,12],[-10,26],[-11,14],[-4,12],[-14,8],[-55,29],[-36,25],[-41,31],[-15,11],[-24,2],[-45,-9],[-88,-12],[-70,-7],[-32,-2],[-32,-1],[-17,-1],[-23,-6],[-14,-9],[-12,-17],[-20,-27],[-37,-24],[-61,-22],[-55,-21],[-35,-21],[-64,-52],[-60,-63],[-4,-3],[-4,-7],[-5,-6],[-2,-6],[-5,-5],[-10,-10],[-15,-15],[-17,-18],[-5,-6],[-24,-23],[-6,-7],[-7,-10],[-23,-21],[-25,-32],[-16,-8],[-23,-23],[-25,-32],[-26,-31],[-18,-24],[-17,-21],[-11,-17],[-14,-20],[-10,-15],[-9,-18],[-5,-15],[0,-10],[2,-21],[-9,-12],[-12,-11],[-10,-4],[-7,2],[-8,-3],[-13,-8],[0,-11],[-1,-13],[-3,-6],[-5,-3],[-16,-6],[-7,-3],[-5,-3],[-9,-10],[-8,0],[-9,5],[-8,-2],[-9,-7],[-9,-6],[-6,4],[-9,-13],[-9,5],[-13,9],[-2,8],[-2,8],[-8,5],[-16,2],[-9,8],[-17,12],[-2,9],[-7,7],[-8,10],[-10,12],[-8,19],[-4,9],[-3,2],[-6,8],[-3,13],[1,10],[3,25],[-1,10],[2,11],[-2,12],[-1,9],[-6,11],[-4,10],[-4,11],[-7,9],[-12,8],[-2,4],[-3,1],[-8,2],[-28,6],[-11,-2],[-26,0],[-12,-1],[-27,-9],[-7,-5],[-21,-10],[-22,-11],[-21,-13],[-12,-9],[-17,-9],[-29,-7],[-2,-2],[-7,-1],[-10,-1],[-8,0],[-9,5],[-10,0],[-11,3],[-6,5],[-3,5],[1,10],[-6,8],[-6,8],[-7,5],[-4,2],[-5,1],[-29,-16],[-23,-19],[-49,-47],[-37,-39],[-77,-75],[-29,-36],[-69,-68],[-19,-17],[-46,-35],[-10,-9],[-11,-13],[-10,-11],[-10,-14],[-14,-13],[-17,-18],[-8,-9],[-12,-14],[-15,-8],[-8,-5],[-15,-7],[-7,-8],[-26,-25],[-67,-56],[-57,-38],[-53,-34],[-195,-118],[-61,-39],[8,-22],[-9,-4],[-18,-12],[-9,-6],[-11,-11],[-10,-6],[-34,-24],[-27,-18],[-9,-8],[-15,-15],[-14,-14],[-8,-9],[-4,-7],[-2,-10],[-6,-7],[-3,-8],[1,-16],[0,-11],[2,-14],[1,-4],[-2,-14],[0,-6],[0,-9],[4,-12],[-1,-7],[3,-8],[2,-6],[0,-8],[2,-9],[2,-4],[4,-8],[-1,-9],[3,-9],[0,-9],[2,-8],[0,-7],[4,-7],[1,-8],[1,-4],[2,-6],[1,-3],[0,-13],[1,-8],[3,-8],[2,-6],[0,-4],[2,-11],[4,-14],[0,-2],[2,-6],[0,-3],[-1,-6],[1,-10],[1,-7],[3,-10],[2,-10],[2,-9],[1,-10],[2,-11],[2,-4],[1,-6],[2,-10],[3,-6],[1,-10],[2,-9],[1,-10],[-1,-17],[6,-30],[2,-6],[1,-5],[0,-9],[3,-8],[0,-8],[0,-7],[-2,-2],[-2,-6],[-3,-1],[-7,2],[-2,6],[-2,13],[-5,45],[-9,52],[-12,54],[-14,61],[-11,47],[-16,86],[-7,33],[-20,89],[-21,81],[-10,35],[-4,11],[-2,7],[-2,19],[-6,1],[-4,16],[-16,22],[11,13],[-7,15],[-13,9],[-16,9],[-23,11],[-27,10],[-8,1],[-19,0],[-22,0],[-28,8],[-54,10],[-42,1],[-10,-4],[-19,-5],[-24,-8],[-27,-9],[-38,-12],[-17,-8],[-11,-7],[-24,-15],[-18,-9],[-22,-5],[-3,-1],[-20,1],[-16,0],[-17,-5],[-7,-3],[-3,-6],[-6,-16],[0,-6],[-5,-16],[-3,-11],[-6,-9],[-10,-6],[-6,-2],[-10,-6],[-10,-5],[-6,-1],[-7,3],[-7,4],[-4,5],[-11,6],[-33,-8],[-83,-51],[-88,-56],[-105,-74],[-78,-54],[-38,-28],[-93,-74],[-50,-36],[-52,-41],[-70,-61],[-126,-117],[-13,-12],[-27,-25],[-64,-49],[-78,-73],[-95,-101],[-46,-54],[-48,-60],[-46,-54],[-35,-48],[-32,-40],[-21,-33],[-20,-28],[-6,-12],[-11,-13],[-7,-14],[-7,-12],[-6,-12],[-13,-16],[-8,-5],[-5,-7],[-3,-10],[-2,-7],[-5,-10],[-6,-7],[-3,0],[-2,4],[-1,8],[-5,3],[-10,-22],[-5,-16],[1,-9],[4,-10],[-3,-11],[-11,-8],[-4,1],[-7,-2],[-8,-1],[-17,-19],[-15,-20],[-16,-23],[-18,-34],[-26,-40],[-29,-41],[-31,-56],[-31,-54],[0,-15],[-5,-11],[0,-11],[-2,-9],[0,-8],[-4,-8],[-9,-3],[-9,2],[-9,0],[-13,0],[-12,-8],[-1,-8],[5,-4],[9,-9],[3,-2],[8,-5],[1,-4],[0,-8],[-4,-14],[-5,-8],[-2,-9],[-4,-12],[0,-7],[-2,-7],[-1,-3],[-3,-10],[-2,-7],[-1,-7],[-2,-6],[-3,-25],[-1,-6],[-4,-8],[3,-11],[-2,-9],[-1,-9],[2,-5],[1,-7],[-1,-8],[-6,-10],[-6,-15],[-9,-18],[-1,-5],[-2,-7],[-1,-8],[-3,-12],[2,-7],[-5,-13],[0,-12],[-4,-7],[-13,-1],[-8,-17],[-4,-3],[-3,-6],[-4,-8],[-5,-6],[-8,-12],[-7,-12],[-6,-9],[0,-11],[-5,-13],[-4,-12],[-8,-5],[-5,-9],[-11,-9],[-3,-13],[-7,-3],[5,-12],[-1,-9],[-6,-9],[-7,-5],[-5,-3],[-3,-6],[-6,-9],[-4,-4],[-7,12],[-2,-6],[-5,-9],[-9,-10],[-1,-7],[-6,-5],[-3,-6],[-4,-11],[-6,-7],[-4,-9],[-5,-5],[-4,-4],[-1,-3],[-2,-7],[-7,-5],[-7,-3],[-2,-4],[-6,-2],[-8,-9],[-5,-5],[-5,-2],[-4,-7],[-3,-9],[-12,-10],[-8,-6],[-6,-8],[-5,-8],[-8,-9],[-7,-6],[-11,-8],[-11,-15],[-9,-9],[-4,-4],[-8,-11],[-10,-12],[-5,-12],[-15,-15],[-7,-5],[-3,-7],[-7,-12],[-9,-10],[-6,-7],[-12,-10],[-7,-11],[-5,-11],[-16,-22],[-8,-14],[-6,-8],[-9,-14],[-15,-22],[-13,-24],[-3,-5],[-6,-6],[-7,-10],[-6,-10],[-6,-9],[-5,-8],[-6,-14],[-10,-17],[-4,-6],[-9,-25],[-9,-12],[-11,-13],[-6,-11],[-3,-6],[-4,-6],[-2,-3],[-6,-4],[-2,-7],[0,-11],[-9,-2],[-2,-7],[-5,-4],[-5,-4],[-2,-2],[-5,-11],[6,-6],[3,-7],[2,-7],[-4,-3],[-6,2],[-8,0],[-6,-6],[-4,-11],[-4,-5],[-5,-12],[-4,-6],[-9,-16],[-1,0],[-8,-15],[-1,-12],[-7,-14],[-2,-5],[-2,-7],[-3,-3],[0,-4],[-1,-5],[-6,-13],[-2,-7],[-2,-7],[-4,-6],[-2,-8],[-4,-9],[-5,-2],[-5,4],[-4,-1],[-2,-7],[-5,-7],[1,-3],[-1,-7],[-4,-8],[2,-3],[-4,-8],[-5,-10],[-2,-5],[-2,-10],[-6,-2],[-5,-1],[2,-5],[0,-5],[2,-5],[1,-4],[-2,-4],[-2,0],[-1,-1],[-4,-6],[-2,-1],[-3,1],[-4,6],[-3,3],[-2,3],[-2,-2],[1,-6],[-1,-5],[1,-8],[0,-4],[-1,-3],[-7,0],[-8,5],[-7,6],[-3,9],[-2,3],[-4,-2],[-4,-4],[-9,-9],[-1,-13],[-5,-6],[-5,-9],[-2,-7],[-5,-5],[-10,-13],[-2,-3],[-5,-9],[-3,-4],[-2,-8],[-7,-2],[-1,-11],[-2,-5],[-5,-7],[-10,-17],[-1,-5],[-4,-8],[-7,-6],[-4,-7],[-5,-13],[-6,-6],[-5,-9],[-3,-7],[-5,-9],[-1,-4],[-7,-10],[-1,-5],[-4,-8],[-3,-5],[-4,-9],[4,-4],[-17,-35],[-3,0],[-5,-1],[-6,-3],[-8,-8],[-8,-19],[-9,-15],[-9,-20],[-13,-24],[-4,-3],[-3,-8],[-2,-9],[-3,-8],[-4,-6],[-2,-7],[-3,-4],[-3,-7],[-4,-4],[-7,-10],[-4,-5],[-3,-6],[-3,-3],[0,-4],[-1,-7],[-3,-7],[0,-3],[-8,-5],[-1,-5],[-1,-1],[-2,-5],[-5,-10],[-2,-4],[0,-7],[-3,-5],[-3,-7],[-1,-5],[-5,-5],[-1,-4],[-1,-9],[-4,-10],[-3,-5],[-4,-6],[-1,-6],[-3,-5],[-2,-2],[-4,-7],[-1,-5],[-3,-5],[-2,-3],[-3,-11],[-4,-6],[-2,-9],[-3,-7],[-6,-7],[-1,-5],[0,-5],[-2,-10],[-3,2],[-2,-5],[-4,-6],[0,-5],[-3,-7],[-1,-2],[0,-6],[-4,-7],[-4,-6],[0,-8],[-5,-7],[-3,-6],[-1,-6],[-5,-10],[-4,-4],[-3,-4],[-2,-3],[-2,-10],[-4,-4],[-1,-6],[-2,-8],[-3,-10],[-5,-7],[-5,-15],[-3,-7],[-2,-5],[-4,-11],[-1,-5],[-5,-11],[-5,-6],[-2,-8],[-4,-4],[-4,-6],[1,-11],[-4,-8],[-4,-3],[-3,-8],[-4,-9],[-3,-5],[-1,-9],[-3,-6],[-3,-5],[-3,-9],[-4,-5],[-3,-6],[-5,-7],[1,-7],[-3,-7],[-4,-5],[-1,-5],[-2,-6],[-3,-5],[-2,-6],[-2,-6],[-3,-7],[-5,-7],[0,-4],[0,-5],[-4,-7],[-5,-9],[0,-7],[-7,-7],[-1,-5],[0,-4],[-4,-8],[-6,-3],[-2,-9],[0,-8],[-5,-5],[-2,-2],[-1,-4],[0,-5],[-6,-9],[-3,-10],[-6,-10],[-4,-8],[-3,-8],[-2,-4],[-3,-3],[-2,-8],[-1,-4],[-1,-3],[-1,-5],[-4,-7],[-5,-6],[-2,-9],[0,-11],[-7,-7],[-3,-7],[-3,-6],[-4,-4],[-3,-5],[0,-11],[-1,-5],[-4,-8],[-7,-15],[0,-3],[-1,-3],[-1,-5],[-1,-1],[-2,-1],[-2,-7],[-1,-8],[-5,-5],[-1,-10],[0,-3],[-4,-9],[-1,-5],[-2,-3],[-1,-4],[-1,-5],[-4,-5],[-1,-2],[0,-5],[-4,-11],[-4,-4],[-2,-9],[-4,-5],[-1,-4],[-3,-4],[0,-15],[-5,-7],[-9,-12],[-1,-8],[-7,-13],[-10,-7],[-2,-9],[-5,-16],[-6,-11],[-1,-11],[-7,-6],[-8,-13],[-6,-10],[-1,-4],[-4,-2],[0,-7],[-3,-8],[-5,-6],[1,-1],[-2,-11],[-4,-2],[-4,-3],[-1,-4],[0,-9],[-3,-4],[-5,-2],[-2,-6],[0,-10],[-1,-4],[-4,-3],[-3,-5],[-1,-5],[-2,-4],[-2,-2],[-1,-5],[-2,-5],[-1,-6],[-5,-6],[-2,-3],[-2,-2],[0,-4],[-2,-5],[-3,-2],[-1,-4],[-3,-5],[-2,-4],[1,-5],[-6,-5],[-3,-5],[-1,-2],[-2,-5],[-3,-3],[-2,-6],[-4,-3],[-2,-5],[0,-5],[-1,-3],[-3,-3],[-2,-5],[-1,-2],[-4,-7],[-2,-5],[-3,-2],[-2,-7],[-3,-4],[-6,-4],[-4,-5],[-1,-5],[-3,-4],[-4,-4],[-1,-5],[-4,-3],[-2,-4],[2,-11],[-7,-7],[-1,-2],[-3,-3],[-3,-4],[-2,-2],[-1,-4],[-3,-5],[-2,-5],[0,-3],[-1,-4],[-7,-4],[-1,-2],[-1,-3],[0,-4],[-3,-2],[-3,-4],[-7,-9],[-5,-8],[-1,-7],[-6,-13],[-6,-7],[-8,-10],[-5,-6],[-7,-10],[-4,-7],[-19,-11],[-10,-5],[-7,-3],[-6,-4],[-8,-3],[-80,-98],[-141,-148],[-67,-74],[-8,-7],[-9,-11],[-9,-7],[-9,0],[-12,0],[-13,-13],[-59,19],[-147,-13],[-68,10],[-37,8],[-74,27],[-5,-4],[-1,-2],[-3,-5],[-10,-4],[-9,1],[-18,7],[-8,-1],[-3,-8],[-10,-6],[-9,-8],[-1,-4],[-1,-10],[-3,-5],[-2,-6],[-10,-4],[-11,-3],[-10,-6],[-7,-1],[-3,-3],[-12,-9],[-7,-5],[-3,-1],[-8,-1],[-9,-3],[-7,1],[-5,3],[-4,-2],[-7,3],[-4,5],[-2,2],[-12,4],[-9,5],[-16,6],[-6,1],[-13,-4],[-56,27],[-1,27],[-6,45],[-8,32],[-12,36],[-9,20],[-15,23],[-15,17],[-13,4],[-15,3],[-8,4],[-16,8],[-11,2],[-5,-7],[-13,-3],[-12,1],[-11,1],[-11,1],[-6,1],[0,6],[-5,6],[-10,6],[-10,4],[-12,19],[-5,9],[-8,8],[-2,8],[-5,2],[-6,9],[-14,19],[-8,8],[-16,11],[-9,13],[-63,36],[-41,20],[-4,-2],[-4,-4],[-8,-1],[-6,5],[-11,9],[-2,2],[-12,-2],[-5,-7],[-2,-3],[-5,-3],[-3,-6],[-1,-8],[-3,-5],[-7,-7],[-3,5],[0,10],[3,9],[3,9],[4,11],[-3,10],[-4,12],[-6,11],[-12,9],[-8,8],[-12,11],[-17,11],[-25,16],[-9,5],[-15,4],[-11,7],[-9,6],[-4,1],[-9,-1],[-4,-2],[-13,5],[-6,4],[-6,4],[-10,4],[-5,2],[-4,6],[1,2],[1,9],[-5,17],[-1,2],[-7,8],[-7,8],[-16,10],[-13,9],[-24,11],[-17,9],[-38,25],[-54,27],[-33,16],[-33,17],[-37,14],[-36,18],[-9,3],[-8,4],[-7,7],[-17,8],[-20,13],[-4,3],[-4,2],[-8,8],[-11,8],[-4,3],[-11,1],[-17,13],[-6,6],[-3,7],[-4,9],[-5,3],[-13,6],[-4,4],[-20,15],[-110,116],[-9,2],[-9,3],[-11,10],[-28,16],[-12,8],[-14,10],[-14,7],[-13,5],[-7,7],[-16,0],[-3,5],[-10,14],[-15,12],[-5,7],[-5,13],[-7,15],[-16,20],[-36,35],[-33,37],[-34,43],[-32,36],[-21,25],[-16,28],[-3,2],[-4,5],[-6,6],[-7,3],[-10,-3],[-4,0],[-4,10],[0,6],[1,9],[4,6],[3,5],[-3,13],[-2,3],[-3,5],[-2,11],[-1,5],[-1,10],[0,2],[-3,10],[1,9],[1,12],[3,7],[-1,6],[-5,13],[-6,8],[-3,0],[1,18],[0,6],[0,12],[0,11],[-2,8],[3,18],[2,8],[11,18],[7,12],[6,21],[4,17],[1,10],[6,11],[5,14],[2,47],[10,18],[5,24],[0,11],[-2,11],[-9,29],[-16,17],[-75,82],[-74,55],[-42,8],[-46,-19],[-5,-4],[-10,-6],[-5,-6],[-8,-7],[-4,-2],[-12,-6],[-8,-1],[-15,2],[-11,6],[-10,6],[-16,7],[-6,2],[-10,10],[-20,15],[-32,27],[-12,18],[-19,18],[-25,31],[-8,7],[-4,3],[-4,7],[-3,6],[-7,6],[-10,5],[-14,-4],[-8,-12],[-4,-10],[-5,-8],[-1,-6],[-1,-6],[0,-7],[2,-9],[0,-6],[-2,-8],[0,-9],[2,-5],[2,-7],[8,-10],[3,-7],[6,-10],[2,-7],[3,-9],[0,-9],[-1,-10],[-1,-6],[-5,-5],[-5,-3],[-9,0],[-1,1],[-5,4],[-4,3],[-8,2],[-4,2],[-5,2],[-5,12],[-2,7],[-3,16],[0,7],[0,8],[-4,8],[-9,3],[-12,-2],[-7,0],[-36,-1],[-5,-3],[-1,-5],[-1,-5],[-1,-8],[-1,-8],[-3,-3],[-7,-2],[-6,1],[-3,3],[-1,7],[-2,10],[-1,6],[-2,9],[-14,7],[-20,5],[-14,2],[-7,-3],[-13,-1],[-8,-1],[-4,-2],[-10,2],[-2,6],[3,14],[5,9],[0,9],[-2,10],[-3,20],[-5,29],[-10,9],[-6,7],[-8,14],[-13,36],[-7,30],[1,32],[8,24],[3,16],[-1,2],[-2,10],[5,3],[-1,15],[2,11],[4,9],[0,5],[-2,1],[-1,0],[-1,2],[-2,10],[-2,5],[1,6],[2,8],[3,3],[1,7],[0,4],[-3,2],[-2,0],[-6,2],[-3,3],[-2,6],[1,8],[2,3],[-3,12],[-3,5],[-5,2],[-1,11],[2,3],[-7,7],[-3,5],[0,8],[-1,7],[1,12],[4,4],[6,6],[9,-1],[6,-1],[5,4],[5,0],[4,-1],[2,8],[-1,8],[-11,9],[-7,5],[-1,11],[6,18],[0,2],[3,9],[3,7],[3,4],[1,1],[5,1],[3,1],[2,8],[-4,6],[-3,3],[-4,5],[-3,-3],[-8,-3],[-4,4],[-4,7],[-2,10],[0,7],[6,7],[4,3],[3,5],[0,7],[-3,12],[-1,4],[-6,9],[-5,5],[-2,5],[1,8],[-1,1],[-3,12],[0,5],[-4,6],[-10,0],[-4,0],[-5,6],[-3,6],[-1,4],[1,16],[3,6],[6,4],[6,-1],[3,5],[-2,5],[0,6],[0,8],[4,5],[4,9],[-1,3],[-2,6],[-9,2],[-5,0],[-7,6],[-3,1],[-2,6],[-1,13],[0,6],[1,6],[2,10],[1,4],[3,6],[2,2],[4,0],[8,1],[4,-2],[5,-3],[2,-5],[5,-6],[-1,-12],[1,-5],[0,-11],[0,-8],[0,-5],[0,-6],[2,-4],[4,-3],[5,0],[4,2],[3,7],[0,6],[-3,12],[1,4],[0,9],[-1,9],[4,11],[2,5],[8,6],[2,6],[0,9],[-2,5],[0,6],[3,4],[6,2],[1,11],[1,6],[-1,6],[-5,4],[-12,0],[-4,0],[-5,-5],[-2,0],[-11,3],[-10,10],[-3,3],[-2,7],[-1,11],[1,11],[1,10],[4,3],[6,5],[5,4],[6,3],[6,5],[2,2],[5,6],[3,3],[4,4],[5,4],[8,6],[2,11],[8,9],[3,4],[2,2],[11,2],[7,-1],[3,0],[5,6],[1,3],[4,2],[4,0],[7,-1],[6,-5],[8,-4],[7,-10],[8,-7],[7,-4],[12,-1],[40,12],[14,8],[4,10],[-2,10],[7,8],[6,5],[7,5],[2,5],[1,9],[4,5],[2,15],[4,7],[11,2],[9,-4],[3,2],[2,4],[2,2],[7,5],[8,5],[3,4],[5,5],[10,2],[6,0],[8,1],[6,2],[8,2],[10,-5],[4,-7],[6,2],[8,6],[1,3],[-4,9],[0,11],[2,6],[4,0],[6,4],[6,0],[7,0],[7,2],[3,9],[3,8],[7,14],[4,6],[5,3],[10,1],[3,-3],[6,-1],[3,-3],[6,-5],[4,5],[0,10],[-7,6],[-4,2],[-3,10],[-2,3],[-8,3],[1,4],[-10,2],[-4,4],[-1,11],[-6,6],[-8,8],[-9,15],[-4,11],[-8,14],[-17,13],[-7,14],[-5,14],[-2,12],[-4,37],[-1,16],[-1,9],[-1,24],[0,8],[-1,9],[-3,15],[-1,16],[-1,23],[0,11],[4,17],[4,28],[2,9],[2,18],[3,15],[2,14],[4,14],[9,17],[6,12],[4,8],[2,10],[3,7],[5,8],[6,8],[10,6],[6,2],[10,2],[7,3],[3,3],[-1,2],[4,9],[4,8],[2,3],[2,7],[1,5],[2,4],[0,5],[2,14],[6,8],[2,1],[4,6],[0,4],[-1,14],[2,11],[0,11],[-2,7],[-4,1],[-6,-3],[-6,-7],[-4,-6],[-5,-6],[-6,-3],[-7,-2],[-5,-1],[-9,-6],[-8,-2],[-16,1],[-10,3],[-10,6],[-12,4],[-4,4],[-11,3],[-7,6],[-4,8],[-15,24],[-6,3],[-5,8],[-8,13],[-12,12],[-5,11],[-3,5],[-3,17],[-4,18],[-10,29],[-5,8],[-4,10],[-4,5],[-7,4],[-7,3],[-4,-1],[-13,-1],[-3,-1],[-7,-1],[-8,1],[-6,0],[-10,-1],[-7,4],[-1,9],[1,5],[-7,10],[-23,19],[-30,21],[-20,13],[-18,9],[-30,19],[-15,15],[-18,13],[-33,16],[-12,10],[-17,14],[-14,2],[-35,20],[-66,11],[-25,6],[-5,-2],[-8,0],[-24,-1],[-6,2],[-11,7],[-4,11],[-2,6],[-6,10],[-6,10],[-19,34],[-38,42],[-73,69],[-66,58],[-56,37],[-68,36],[-72,34],[-80,41],[-58,22],[-76,40],[-58,39],[-44,29],[-37,30],[-67,61],[-33,40],[-10,15],[-4,12],[1,11],[-8,12],[-11,-6],[-7,-1],[-15,5],[-36,54],[-17,26],[-34,44],[-26,24],[-25,18],[-28,27],[-17,14],[-28,18],[-16,13],[-20,6],[-4,7],[-35,15],[-33,22],[-32,13],[-29,17],[-15,14],[-13,9],[-82,73],[-37,31],[-30,28],[-21,21],[-11,20],[-4,30],[-9,17],[-24,37],[-20,24],[-17,18],[-19,15],[-16,20],[-16,27],[-10,20],[-9,14],[-22,20],[-18,13],[-31,36],[-29,36],[-54,42],[-53,39],[-34,30],[-25,21],[-42,35],[-50,45],[-33,34],[-27,33],[-18,24],[-9,17],[-7,9],[-23,43],[-13,32],[-13,24],[-51,159],[1,21],[-3,28],[-8,32],[-5,25],[-14,42],[-2,33],[-12,42],[-7,24],[-5,31],[-4,29],[-6,41],[-18,50],[-21,37],[-22,38],[-45,47],[-39,46],[-11,8],[-13,3],[-5,8],[-5,7],[-3,10],[-14,19],[-31,32],[-51,50],[-27,32],[-20,40],[-11,26],[-6,18],[-17,15],[-23,19],[-32,22],[-39,17],[-25,7],[-26,19],[-18,16],[-17,26],[-6,32],[-17,28],[-12,18],[-27,22],[-10,9],[-25,21],[-17,29],[-20,30],[-16,17],[-11,14],[-7,16],[-25,40],[-11,26],[-7,16],[-9,6],[-40,41],[-18,25],[-17,24],[-28,26],[-14,19],[-21,16],[-16,24],[-20,30],[-20,22],[-13,25],[-31,65],[-17,57],[-14,59],[-9,54],[-6,33],[-10,35],[-4,26],[1,25],[1,21],[-3,25],[0,28],[3,26],[-6,30],[-1,41],[-3,26],[1,22],[1,26],[9,25],[5,31],[5,18],[9,23],[2,17],[4,8],[4,15],[8,20],[13,13],[5,7],[7,10],[5,7],[11,24],[0,17],[4,23],[14,29],[0,10],[-3,11],[-4,9],[-1,3],[-2,10],[-9,5],[-9,0],[-7,6],[-1,11],[-3,8],[11,5],[3,-4],[0,-2],[7,-7],[3,-9],[4,-3],[17,-3],[16,7],[5,10],[12,19],[5,14],[12,9],[7,18],[8,17],[9,28],[20,41],[18,23],[14,43],[16,51],[14,29],[9,22],[16,17],[10,12],[6,15],[19,18],[16,9],[12,4],[15,0],[8,-6],[11,-6],[-4,10],[-11,15],[-3,5],[-3,12],[-5,19],[2,24],[11,31],[5,11],[17,52],[4,46],[0,50],[7,23],[18,22],[20,1],[8,-5],[15,-17],[8,-12],[17,-13],[11,6],[19,46],[-12,6],[-30,3],[-14,12],[-21,17],[-6,3],[-24,16],[-2,13],[0,38],[-1,36],[-2,33],[-1,14],[0,21],[10,22],[8,17],[7,15],[9,15],[9,18],[6,6],[14,1],[7,6],[0,17],[2,21],[3,25],[10,27],[6,16],[8,10],[16,12],[14,8],[9,10],[21,15],[6,7],[22,17],[12,26],[4,2],[29,31],[-1,-2],[16,4],[3,11],[2,17],[10,22],[4,7],[10,26],[8,17],[6,18],[5,6],[7,12],[21,37],[23,28],[17,34],[8,17],[4,10],[14,14],[4,7],[6,9],[6,9],[16,19],[12,14],[8,8],[7,7],[7,9],[6,4],[11,15],[9,1],[8,4],[5,9],[12,22],[7,16],[5,6],[9,6],[5,8],[5,17],[1,10],[-3,21],[-9,17],[-5,26],[-4,1],[-1,5],[2,7],[1,18],[3,19],[1,19],[6,28],[5,25],[7,15],[6,15],[3,5],[4,4],[-2,9],[3,12],[8,16],[7,13],[10,15],[3,13],[2,7],[6,5],[2,8],[9,7],[9,13],[7,4],[9,10],[5,0],[7,7],[4,3],[6,1],[1,9],[0,11],[2,15],[2,9],[5,16],[3,26],[3,13],[2,12],[3,8],[4,10],[5,27],[14,18],[8,18],[4,14],[7,10],[13,22],[9,22],[5,11],[9,17],[5,16],[-2,7],[-2,12],[2,8],[-2,6],[-2,9],[-2,8],[1,20],[-3,18],[0,17],[5,14],[2,5],[-1,4],[-1,12],[3,12],[3,7],[1,14],[5,7],[6,4],[14,11],[8,9],[15,11],[11,3],[9,0],[28,-19],[10,-8],[12,-4],[7,-5],[2,-2],[17,-5],[6,-2],[4,-3],[2,-8],[-1,-8],[3,-6],[12,-14],[0,-1],[10,-6],[3,1],[5,-1],[2,-10],[0,-4],[5,-9],[1,-2],[7,-1],[5,-6],[2,-7],[3,-7],[4,-6],[7,-6],[4,0],[4,0],[10,13],[-2,4],[-8,5],[-5,0],[-6,9],[-2,4],[-7,2],[-7,6],[-3,10],[-6,5],[-4,9],[-2,10],[-4,13],[-1,10],[-3,5],[-5,5],[-5,5],[-10,7],[-10,5],[-7,2],[-5,2],[-4,0],[-14,9],[-17,13],[-13,14],[-12,12],[-27,30],[-14,14],[-13,12],[-23,8],[-31,0],[-22,0],[-12,5],[-23,4],[-8,0],[-12,0],[-12,7],[-1,16],[8,10],[7,20],[10,4],[2,14],[5,5],[19,5],[6,9],[8,10],[7,1],[8,3],[3,5],[5,9],[8,10],[8,3],[12,10],[17,12],[8,-1],[9,2],[3,9],[5,9],[8,5],[14,9],[9,14],[3,8],[11,11],[4,13],[-1,12],[0,12],[4,18],[7,14],[-1,11],[3,7],[3,13],[0,16],[9,15],[10,10],[-1,10],[-7,0],[-11,7],[6,17],[12,-1],[2,0],[7,11],[-2,4],[3,9],[0,11],[3,14],[3,0],[3,2],[5,9],[2,10],[6,7],[8,5],[5,5],[9,13],[7,10],[8,7],[-1,7],[6,8],[7,2],[2,7],[4,10],[6,7],[-1,5],[4,3],[-1,8],[4,7],[7,5],[7,8],[9,0],[3,7],[2,11],[12,21],[5,6],[2,8],[3,14],[12,14],[6,2],[-1,5],[-5,3],[1,11],[7,8],[11,2],[8,3],[5,9],[0,6],[-1,7],[3,9],[5,8],[7,19],[8,18],[4,15],[11,25],[6,21],[3,23],[0,17],[6,14],[6,16],[4,19],[9,15],[12,10],[3,8],[-2,8],[0,11],[4,11],[8,10],[1,14],[1,7],[-2,22],[1,8],[3,6],[5,-2],[2,-5],[11,0],[7,5],[5,0],[8,1],[14,6],[-3,11],[-3,11],[3,2],[9,1],[13,0],[3,1],[-3,6],[4,17],[3,8],[9,9],[12,7],[11,5],[7,2],[9,13],[14,0],[2,6],[3,15],[18,7],[13,-1],[10,8],[14,1],[11,7],[3,14],[4,8],[16,3],[6,11],[6,16],[9,21],[10,14],[6,12],[14,17],[10,6],[7,16],[3,18],[8,26],[4,8],[-1,11],[8,13],[13,11],[-7,12],[5,13],[12,10],[4,15],[4,17],[5,19],[5,13],[-1,23],[3,18],[18,26],[15,28],[20,23],[6,18],[1,18],[3,22],[12,1],[5,2],[7,13],[12,12],[-5,11],[15,9],[6,-2],[2,10],[5,7],[13,4],[10,6],[2,8],[4,2],[1,14],[11,16],[20,-3],[8,2],[16,2],[1,7],[18,20],[14,3],[13,-2],[12,-7],[16,43],[18,30],[29,47],[-19,10],[6,20],[15,19],[1,22],[21,31],[-7,32],[20,29],[-4,16],[-8,40],[0,32],[10,24],[1,7],[-9,15],[-10,9],[-4,13],[5,19],[17,13],[12,13],[8,18],[3,31],[14,13],[14,-6],[30,35],[6,30],[13,10],[32,5],[7,10],[27,-4],[10,10],[10,10],[49,14],[28,-6],[12,3],[31,-12],[22,-5],[21,-13],[13,3],[13,5],[26,-5],[17,-14],[11,-10],[1,-14],[14,-4],[15,-28],[18,-29],[3,-25],[-1,-24],[0,-7],[5,-6],[10,-12],[12,-2],[13,6],[17,-1],[9,-5],[1,-9],[2,-17],[17,-3],[9,-12],[-4,-17],[4,-14],[6,-4],[3,-1],[17,-3],[14,0],[9,15],[19,1],[6,9],[13,-3],[12,-2],[8,-3],[17,-13],[3,-3],[3,-15],[28,10],[-2,10],[2,19],[10,4],[7,9],[2,13],[11,11],[4,8],[-5,6],[-14,9],[-3,9],[5,4],[11,6],[9,0],[11,3],[11,9],[10,11],[2,5],[-2,10],[0,12],[-4,7],[23,7],[3,-1],[12,2],[9,-19],[3,-10],[16,18],[-4,11],[6,11],[14,7],[12,-1],[6,-8],[8,6],[6,13],[3,8],[11,16],[30,17],[10,-9],[9,21],[3,3],[18,-9],[13,-1],[8,-3],[18,-4],[15,-9],[-3,-22],[14,-5],[11,-14],[14,7],[11,-15],[10,-10],[12,-3],[11,8],[13,8],[11,7],[8,0],[3,1],[0,8],[3,6],[6,3],[6,3],[5,4],[13,7],[7,8],[2,3],[5,7],[7,8],[8,10],[3,8],[6,7],[2,5],[-1,4],[-2,7],[-2,8],[3,5],[1,12],[3,17],[3,7],[19,3],[8,7],[0,13],[9,8],[7,-1],[11,-3],[22,-1],[2,1],[14,9],[4,4],[7,9],[5,14],[6,5],[-2,14],[9,6],[6,-6],[2,10],[0,3],[8,6],[11,8],[6,9],[1,12],[4,-1],[8,15],[-3,10],[-8,7],[5,15],[14,-3],[-1,17],[4,9],[5,3],[12,-4],[1,9],[0,7],[5,12],[-1,6],[5,10],[2,0],[9,21],[-1,7],[11,-2],[13,11],[-4,9],[9,4],[8,12],[8,4],[12,-6],[6,15],[3,2],[9,-3],[13,4],[5,-3],[8,-5],[1,11],[6,3],[12,3],[1,11],[-3,10],[2,13],[9,11],[14,-6],[4,0],[7,4],[13,1],[5,2],[10,5],[9,5],[11,6],[3,3],[11,9],[3,4],[5,7],[8,11],[8,-3],[3,1],[8,2],[3,7],[-3,7],[-1,10],[10,6],[11,-1],[6,1],[0,8],[9,15],[14,25],[14,0],[13,13],[3,10],[12,4],[7,7],[5,18],[8,9],[4,-1],[19,-5],[10,0],[0,-5],[4,-3],[1,-2],[9,-3],[0,-3],[4,-8],[-1,-4],[5,-4],[8,1],[1,-5],[4,-12],[10,-12],[7,-15],[5,-9],[5,9],[5,5],[7,3],[2,12],[5,6],[7,-1],[7,-5],[3,8],[6,2],[3,16],[-2,15],[-1,13],[2,18],[-8,2],[-3,9],[-1,12],[15,9],[18,-4],[4,14],[5,7],[-4,11],[5,13],[-4,14],[-6,7],[-4,10],[-9,0],[2,30],[9,-6],[-4,17],[-5,10],[3,7],[9,2],[3,23],[8,6],[3,15],[-3,18],[-4,7],[1,16],[10,9],[4,10],[-1,6],[16,1],[3,-1],[7,-8],[18,0],[3,3],[6,7],[3,6],[6,5],[5,10],[0,11],[9,9],[-12,7],[-4,5],[5,9],[9,-1],[2,-5],[2,3],[3,8],[1,12],[-8,13],[-2,7],[10,4],[1,16],[5,9],[8,2],[7,-2],[2,10],[3,9],[10,10],[9,7],[-3,8],[-1,12],[6,14],[5,8],[8,-5],[1,-2],[10,4],[6,15],[-3,24],[-6,12],[-1,7],[1,7],[-4,12],[3,16],[1,3],[7,-15],[0,-9],[1,4],[2,5],[6,1],[8,10],[5,14],[1,10],[7,14],[18,11],[8,1],[-1,11],[-1,5],[2,5],[7,6],[5,-5],[4,2],[8,9],[4,18],[2,12],[6,7],[-2,9],[1,11],[-2,8],[1,18],[-8,6],[-2,2],[1,13],[7,7],[-10,10],[-2,9],[12,9],[5,12],[13,9],[6,5],[4,14],[4,9],[14,2],[6,1],[11,5],[0,9],[3,12],[7,6],[3,4],[0,5],[9,14],[7,15],[10,-3],[3,-2],[9,7],[5,8],[5,0],[0,7],[1,12],[-3,12],[5,4],[4,2],[4,0],[11,-10],[2,4],[5,7],[14,1],[10,7],[6,-3],[6,1],[3,9],[3,9],[7,3],[10,0],[-1,6],[5,11],[10,-4],[0,8],[4,3],[7,-1],[4,-4],[5,6],[6,4],[7,4],[12,-3],[3,0],[3,3],[-4,9],[2,7],[3,8],[1,5],[7,8],[13,9],[8,5],[15,12],[19,2],[2,-2],[3,-6],[-3,-12],[-3,-8],[4,-11],[3,-3],[3,1],[5,9],[2,10],[6,13],[10,10],[2,1],[6,0],[6,7],[3,5],[7,5],[4,0],[12,1],[7,0],[4,6],[9,-3],[8,3],[12,2],[4,12],[16,0],[11,3],[3,6],[20,-3],[14,-7],[7,-5],[6,-4],[5,8],[4,2],[16,1],[6,-1],[5,6],[0,2],[12,6],[5,8],[9,1],[0,13],[18,-3],[7,3],[8,-1],[4,11],[1,16],[12,15],[9,4],[3,-4],[5,3],[2,10],[7,2],[10,0],[4,-9],[3,0],[10,0],[5,8],[7,4],[5,11],[8,5],[12,3],[4,7],[6,8],[-3,25],[4,6],[6,4],[6,10],[5,8],[6,-4],[4,-2],[-2,-4],[6,8],[5,1],[6,-2],[4,0],[6,1],[7,3],[8,-9],[7,6],[-2,8],[-2,6],[-1,10],[3,8],[-1,4],[-1,3],[-7,3],[-5,-4],[-5,-3],[-5,8],[-6,4],[0,16],[10,4],[4,-5],[5,-9],[7,-4],[9,-1],[4,-3],[8,-3],[-1,-13],[-3,-6],[6,-11],[5,11],[2,1],[9,2],[9,0],[2,-3],[3,-6],[5,-6],[-4,-10],[-7,-18],[9,1],[8,5],[5,-3],[9,4],[3,1],[8,1],[6,11],[10,-1],[10,-1],[5,5],[2,7],[4,5],[12,20],[10,1],[5,2],[15,0],[4,1],[16,-3],[1,-1],[4,-9],[1,-6],[3,-8],[3,-11],[0,-12],[4,-10],[9,-3],[10,3],[6,5],[6,-4],[0,-10],[-2,-11],[-5,-8],[2,-9],[5,-4],[8,3],[7,-4],[10,-1],[5,4],[2,0],[5,4],[1,8],[7,7],[9,-3],[6,-5],[2,-12],[10,-3],[3,9],[8,1],[11,4],[-3,14],[-2,12],[7,5],[2,4],[-3,8],[0,7],[7,5],[11,-3],[-1,10],[-2,15],[5,6],[8,0],[6,-2],[14,-8],[2,-7],[7,0],[4,-6],[3,-3],[9,-11],[10,0],[3,8],[-2,11],[10,6],[16,0],[12,4],[2,11],[6,4],[9,2],[7,7],[0,8],[3,7],[4,0],[12,2],[1,9],[6,-3],[7,-9],[5,-4],[-1,-7],[5,-3],[2,9],[2,3],[4,2],[6,2],[9,7],[2,5],[8,4],[3,0],[2,2],[7,-10],[3,-3],[3,2],[7,-1],[6,-3],[2,11],[9,2],[8,-2],[3,-4],[1,-8],[-3,-13],[-9,-9],[-5,-6],[-10,-4],[-6,-1],[-14,-2],[-6,0],[-2,-9],[10,-2],[12,-8],[7,0],[6,-6],[9,-7],[7,12],[3,-1],[5,1],[6,5],[7,-3],[4,-3],[2,0],[12,2],[-4,7],[11,13],[5,-4],[8,-8],[4,2],[0,2],[17,-1],[3,-9],[10,-2],[-3,13],[-1,6],[16,0],[4,7],[2,9],[-2,4],[-12,-1],[-2,3],[-3,9],[0,10],[3,3],[-1,7],[3,16],[4,6],[3,1],[6,4],[4,-1],[14,-5],[5,5],[12,1],[10,-3],[14,-1],[10,5],[15,-7],[4,-3],[3,-7],[15,-4],[4,-6],[11,-7],[6,-2],[9,-5],[5,4],[10,15],[10,1],[5,12],[7,10],[0,8],[8,4],[6,4],[11,11],[-1,5],[-1,10],[-3,14],[-2,11],[8,9],[9,6],[16,-7],[3,-15],[1,-3],[3,-10],[13,2],[9,5],[6,11],[3,21],[-5,9],[-6,2],[-11,4],[-5,5],[0,17],[-7,7],[5,19],[9,6],[6,5],[2,9],[1,7],[4,3],[8,3],[3,6],[6,12],[6,12],[8,5],[6,1],[2,8],[3,5],[9,3],[10,0],[5,-2],[12,7],[9,0],[8,1],[5,2],[-1,9],[2,12],[7,7],[7,-1],[8,-4],[5,-3],[4,2],[9,-4],[2,-2],[6,-1],[11,10],[13,-3],[4,0],[1,-3],[1,3],[4,7],[3,0],[8,-3],[2,-7],[-3,-4],[-3,-2],[-9,-2],[-4,1],[-4,-9],[0,-5],[4,-4],[-2,-16],[0,-5],[4,-20],[-1,-7],[10,-1],[7,0],[6,3],[5,6],[-3,9],[4,11],[6,1],[1,6],[-4,7],[-2,2],[-5,2],[-9,1],[-1,5],[4,3],[2,6],[9,5],[8,-5],[0,-7],[6,-6],[3,-3],[5,-1],[4,-2],[0,-2],[3,-6],[4,6],[10,4],[3,3],[3,8],[-3,4],[-6,-2],[-7,3],[-5,3],[-4,1],[-7,2],[-5,4],[1,11],[4,7],[2,4],[3,7],[-1,6],[0,5],[6,4],[4,0],[11,2],[11,4],[7,-3],[7,1],[9,-2],[7,8],[8,3],[4,-7],[10,3],[13,-1],[8,-4],[4,-1],[4,-2],[4,6],[6,6],[2,1],[3,1],[4,0],[3,-1],[5,0],[3,0],[6,-2],[5,-3],[9,-2],[5,4],[6,4],[3,4],[9,1],[6,-5],[5,0],[4,-2],[2,-2],[4,-6],[4,-2],[4,-1],[1,-7],[0,-4],[0,-7],[5,-1],[5,0],[5,1],[6,-2],[0,-1],[7,-3],[12,3],[8,-1],[13,1],[4,-2],[5,-1],[8,0],[10,3],[6,5],[6,3],[7,0],[3,-1],[1,-2],[2,-5],[4,-1],[1,0],[5,-2],[0,-6],[5,-1],[2,3],[7,4],[8,0],[3,-3],[2,-4],[1,-6],[1,-3],[3,-3],[3,-7],[4,0],[5,0],[6,2],[6,-1],[3,3],[4,6],[7,2],[4,0],[4,0],[11,1],[2,-3],[3,-5],[0,-3],[6,0],[3,0],[5,7],[2,6],[8,5],[3,1],[5,5],[5,1],[6,-1],[2,1],[3,-6],[9,-4],[2,-4],[12,-6],[4,5],[3,3],[8,0],[6,-2],[5,1],[1,6],[9,10],[5,2],[6,1],[12,1],[4,-3],[2,-3],[5,-6],[1,-7],[3,-3],[8,4],[2,0],[2,2],[7,1],[3,0],[4,-1],[5,3],[9,3],[6,-2],[2,-1],[8,-2],[1,-3],[2,-4],[1,-2],[0,-9],[4,-1],[8,-2],[1,-1],[6,0],[6,-2],[4,-2],[5,-2],[3,-1],[8,-6],[0,-6],[1,-8],[1,-9],[0,-4],[2,-6],[3,0],[3,6],[5,5],[10,0],[4,-1],[5,-6],[3,-3],[7,-1],[4,-1],[3,-2],[4,-3],[5,-8],[4,-6],[5,-4],[3,1],[9,1],[10,0],[4,-2],[2,-2],[4,-5],[3,-4],[-1,-4],[1,-2],[3,2],[8,0],[4,-4],[5,-4],[4,-6],[7,0],[4,-3],[6,-3],[4,-2],[3,1],[8,0],[15,-3],[10,-6],[7,-5],[5,-4],[2,-13],[5,-5],[2,-3],[3,-5],[6,-8],[2,-3],[5,-5],[5,-2],[4,0],[7,-2],[7,-6],[4,-1],[3,4],[7,-3],[7,-4],[13,-1],[3,-1],[2,-3],[1,-2],[3,-4],[4,-6],[2,-10],[-2,-9],[1,-8],[3,-7],[3,-2],[3,2],[6,8],[4,3],[4,2],[14,0],[4,-1],[5,-5],[3,-6],[0,-10],[-1,-4],[0,-8],[-1,-6],[0,-8],[7,-1],[5,3],[6,7],[3,9],[0,6],[3,3],[8,-1],[5,-2],[8,2],[6,5],[4,9],[2,7],[5,5],[7,1],[8,0],[9,4],[6,3],[8,0],[6,2],[4,4],[5,2],[9,-4],[3,-7],[3,-9],[1,-8],[7,-5],[7,-3],[7,1],[3,3],[3,9],[2,3],[15,0],[6,7],[3,1],[7,2],[10,4],[8,0],[9,-1],[11,0],[6,1],[11,1],[4,1],[18,1],[7,-1],[5,6],[4,8],[4,3],[7,2],[14,7],[7,-1],[13,1],[3,0],[3,-1],[7,0],[8,8],[7,5],[7,7],[1,2],[6,2],[12,1],[8,-6],[4,-5],[4,3],[12,2],[3,3],[14,0],[10,-6],[3,-2],[3,-7],[1,-11],[4,-3],[7,1],[8,0],[4,-5],[9,0],[8,-3],[8,-6],[5,-2],[5,-6],[9,-1],[8,1],[4,4],[8,7],[7,3],[6,2],[8,7],[8,7],[2,4],[0,14],[0,6],[1,9],[2,11],[1,12],[-3,6],[0,9],[-2,8],[0,7],[0,8],[-1,20],[-4,12],[-4,9],[-5,10],[-1,3],[-1,9],[-3,24],[-4,9],[0,9],[0,7],[-4,21],[-1,19],[-4,14],[1,14],[1,17],[-1,17],[4,10],[5,9],[9,17],[10,16],[6,13],[9,7],[13,6],[9,16],[6,9],[10,4],[6,6],[4,11],[2,6],[6,4],[5,5],[7,9],[3,9],[5,4],[7,3],[16,2],[4,9],[3,4],[2,3],[8,10],[2,10],[9,7],[10,2],[4,10],[3,7],[8,5],[10,2],[8,5],[4,3],[6,2],[1,3],[13,4],[8,8],[6,6],[14,7],[12,1],[7,-1],[5,0],[9,-4],[10,-5],[10,-1],[4,-1],[7,-6],[18,-7],[3,-4],[14,-8],[4,-2],[10,-9],[6,-5],[7,-7],[4,-6],[10,-5],[2,-1],[5,4],[0,10],[-9,17],[-6,11],[-3,12],[0,7],[-7,22],[-4,18],[-2,11],[-3,14],[1,13],[-1,7],[-1,7],[-2,7],[1,8],[2,11],[5,16],[2,10],[7,6],[7,8],[4,9],[8,5],[13,7],[7,7],[5,4],[15,3],[15,9],[10,10],[13,7],[9,0],[9,0],[12,0],[10,5],[7,1],[11,2],[9,2],[28,4],[7,-2],[10,-6],[8,1],[4,-1],[12,-2],[1,0],[18,0],[11,-5],[11,-3],[5,-6],[4,-2],[3,-2],[19,-5],[11,5],[20,12],[6,11],[14,7],[11,13],[12,15],[9,12],[8,10],[3,13],[3,11],[1,13],[3,13],[14,20],[6,6],[8,8],[3,6],[1,11],[5,5],[5,2],[5,2],[1,4],[7,2],[4,7],[8,9],[6,7],[5,4],[3,11],[8,11],[0,6],[1,8],[2,6],[2,2],[3,6],[2,5],[3,2],[6,4],[0,8],[3,6],[5,2],[2,8],[1,7],[12,0],[4,3],[2,5],[-1,11],[1,8],[5,9],[1,4],[0,5],[7,9],[3,2],[7,3],[7,2],[2,6],[3,12],[4,9],[12,14],[12,5],[7,2],[5,1],[3,8],[0,4],[5,10],[7,3],[14,1],[5,5],[4,5],[8,2],[8,5],[7,0],[5,-1],[4,3],[3,4],[5,10],[-3,12],[3,3],[5,2],[10,5],[3,1],[6,1],[3,-2],[2,0],[3,7],[3,2],[3,-1],[2,0],[2,-2],[3,-2],[2,2],[1,0],[19,7],[4,1],[3,0],[3,3],[8,1],[4,-3],[4,-3],[0,-6],[1,-5],[10,-1],[6,0],[5,0],[7,1],[9,0],[7,0],[5,-3],[8,4],[1,6],[5,5],[9,1],[4,-2],[5,-2],[3,-5],[2,-2],[7,6],[3,7],[1,10],[2,10],[4,13],[6,10],[4,10],[4,10],[22,53],[15,43],[7,35],[9,24],[5,15],[5,22],[4,33],[-3,25],[4,27],[-2,16],[3,12],[1,1],[3,10],[1,10],[-2,4],[1,35],[-4,15],[-2,18],[-1,8],[1,13],[6,11],[7,8],[7,5],[5,3],[11,17],[14,26],[8,19],[2,20],[-1,16],[-2,14],[-6,43],[0,15],[-1,10],[5,8],[2,6],[4,7],[4,9],[3,12],[3,8],[3,23],[0,29],[-4,13],[-3,11],[-4,11],[-8,7],[-4,13],[-3,20],[0,9],[1,14],[3,14],[-1,21],[0,10],[8,8],[2,10],[-33,148],[-4,15],[0,20],[-1,17],[-4,20],[-2,8],[-14,13],[-5,12],[-13,-2],[-6,28],[7,9],[-13,48],[-5,19],[-2,34],[-6,36],[-7,9],[-4,5],[-5,18],[5,17],[-1,10],[-1,6],[-7,5],[-5,1],[-8,2],[-7,6],[-7,10],[-4,7],[-7,5],[-19,13],[-7,8],[-12,6],[-5,1],[-15,5],[-12,5],[-10,4],[-21,16],[-44,10],[-49,-1],[-40,-13],[-26,-17],[-56,-36],[-20,-15],[-21,-20],[-16,-30],[-1,-30],[4,-31],[14,-13],[7,-24],[-3,-28],[-9,-5],[-9,0],[-16,1],[-21,0],[-20,7],[-13,13],[-19,16],[-9,33],[-7,29],[-22,21],[-8,14],[2,19],[13,10],[9,2],[13,4],[14,7],[15,1],[48,12],[18,2],[41,21],[20,15],[36,21],[51,31],[25,2],[4,2],[50,1],[20,-1],[24,-9],[23,-17],[14,-4],[14,-2],[11,0],[7,3],[5,4],[-2,8],[4,8],[3,1],[23,1],[4,0],[8,7],[17,1],[5,2],[8,4],[2,7],[5,5],[8,4],[3,1],[7,8],[14,9],[6,6],[10,4],[2,19],[3,4],[7,0],[3,9],[4,11],[-1,74],[49,0],[5,-15],[0,-9],[9,-4],[4,2],[0,8],[0,10],[5,4],[11,0],[6,0],[12,0],[0,-6],[3,-15],[6,-2],[15,-3],[6,-1],[3,-1],[5,2],[1,6],[3,5],[7,0],[6,1],[1,-2],[3,0],[0,-7],[1,-5],[4,0],[5,2],[16,1],[0,7],[8,23],[1,9],[4,8],[6,-4],[-1,-7],[4,-11],[0,-9],[6,-10],[2,0],[4,-3],[17,2],[7,-2],[5,-3],[3,3],[6,4],[24,1],[5,-12],[23,-2],[10,0],[12,-4],[2,2],[7,-7],[10,-6],[25,-19],[18,-7],[21,-3],[22,2],[7,6],[3,7],[-1,2],[-3,4],[1,6],[6,2],[4,-5],[-2,-8],[2,-3],[8,7],[3,5],[9,1],[3,-3],[11,-14],[5,1],[9,5],[2,-7],[0,-8],[3,-4],[9,-4],[5,-2],[8,3],[6,1],[9,-3],[1,-4],[6,-4],[7,-2],[13,-1],[8,0],[11,-4],[6,-5],[4,-3],[12,-7],[9,-5],[16,-10],[2,-3],[15,-10],[9,-4],[15,-3],[16,0],[13,-3],[14,-6],[26,-10],[9,0],[12,-1],[6,-1],[15,-3],[14,0],[11,6],[10,3],[12,2],[20,1],[36,0],[11,-4],[25,-4],[15,-8],[10,6],[14,7],[26,1],[20,-7],[33,1],[4,1],[19,4],[7,6],[13,11],[14,12],[14,12],[13,0],[11,-5],[6,-2],[7,-8],[11,-6],[14,-9],[17,-12],[24,-8],[38,-3],[17,1],[10,3],[18,0],[7,-2],[14,-7],[12,-12],[10,-6],[11,-5],[10,1],[9,-4],[7,-6],[27,-21],[13,-9],[10,-5],[23,-14],[13,-9],[22,-7],[14,1],[6,2],[8,0],[7,-4],[2,-5],[2,-3],[8,-7],[6,-2],[5,3],[2,6],[7,10],[8,-1],[4,0],[13,-7],[4,2],[13,2],[12,0],[6,-5],[5,0],[9,-4],[5,-10],[2,-8],[6,-5],[8,-4],[8,4],[7,5],[13,-1],[5,-3],[7,0],[9,1],[31,0],[13,-9],[5,-6],[16,-2],[7,-1],[8,0],[27,-1],[9,-2],[4,-4],[16,-4],[10,0],[7,5],[13,0],[11,1],[15,-9],[15,-8],[18,-5],[28,-2],[30,-1],[34,-11],[31,-18],[33,-27],[39,-34],[40,-34],[47,-38],[42,-30],[10,-5],[18,1],[42,-14],[17,-10],[27,-20],[36,-29],[34,-29],[27,-21],[53,-41],[77,-64],[75,-58],[73,-54],[53,-52],[79,-73],[71,-72],[44,-59],[49,-66],[45,-65],[40,-60],[32,-49],[27,-34],[29,-36],[32,-47],[49,-53],[42,-47],[6,-10],[5,-5],[7,-4],[3,1],[24,-13],[26,-27],[26,-37],[17,-22],[28,-35],[17,-15],[23,-24],[16,-25],[17,-7],[15,-6],[55,-28],[16,-2],[20,-8],[13,-6],[15,-10],[26,-16],[24,-17],[12,-11],[7,-8],[6,-16],[13,-12],[31,-24],[14,-10],[15,-12],[16,-14],[11,-7],[9,-3],[47,-29],[23,-22],[14,-15],[3,-9],[18,-28],[11,-28],[16,-18],[16,-16],[25,-35],[23,-31],[26,-33],[18,-30],[46,-85],[23,-51],[29,-67],[25,-54],[24,-50],[21,-35],[21,-31],[32,-45],[27,-47],[19,-49],[17,-36],[15,-28],[16,-3],[4,-9],[-4,-8],[-6,-9],[4,-6],[12,-30],[10,-18],[8,-16],[6,-10],[52,-97],[44,-77],[24,-43],[11,-16],[6,-1],[2,-4],[6,-18],[18,10],[17,-1],[12,-7],[15,-19],[93,-136],[95,-131],[24,-31],[5,0],[4,-4],[-1,-4],[0,-6],[3,-7],[4,-13],[8,-12],[3,-2],[3,-3],[6,-7],[2,-14],[1,-11],[1,-18],[3,-15],[10,-23],[4,-16],[23,-36],[26,-37],[51,-78],[26,-40],[86,-123],[49,-47],[15,-8],[7,-2],[6,-6],[2,-5],[4,-13],[3,-6],[7,-12],[4,-5],[2,-5],[2,-2],[12,-18],[5,-11],[8,-16],[3,-7],[2,-7],[6,-16],[3,-11],[3,-19],[2,-17],[1,-20],[5,-27],[3,-12],[37,-3],[-1,19],[0,8],[12,7],[8,0],[4,-2],[22,1],[12,2],[6,0],[15,-5],[25,0],[11,-7],[11,-5],[28,-11],[23,-13],[23,-12],[70,-48],[52,-28],[10,-6],[38,-20],[67,-37],[32,-14],[69,-29],[28,-4],[14,1],[5,5],[5,4],[7,-3],[2,-3],[11,-4],[12,0],[5,1],[8,1],[5,-2],[3,-2],[5,1],[3,0],[12,1],[18,6],[19,3],[3,4],[40,4],[16,7],[10,4],[30,5],[19,4],[39,6],[13,1],[19,7],[20,11],[13,7],[29,14],[26,17],[16,10],[15,17],[15,3],[4,9],[3,14],[6,11],[7,7],[9,1],[11,0],[8,2],[11,-7],[1,-11],[0,-16],[1,-12],[8,0],[5,11],[2,11],[0,14],[-1,11],[-4,17],[-6,11],[-4,18],[4,13],[9,20],[3,14],[15,7],[20,0],[7,5],[2,3],[4,7],[22,11],[9,6],[6,6],[10,0],[9,2],[13,0],[6,-1],[12,7],[5,2],[7,2],[8,9],[6,8],[5,9],[5,8],[14,8],[8,12],[14,7],[10,10],[14,11],[6,6],[5,6],[9,12],[11,11],[7,9],[14,20],[6,8],[8,6],[9,4],[17,11],[11,3],[16,8],[16,5],[7,1],[48,14],[34,12],[75,26],[135,48],[-3,31],[11,1],[1,-8],[25,0],[10,6],[3,-4],[18,-1],[48,13],[167,58],[65,13],[65,11],[48,1],[83,1],[60,-7],[40,-10],[65,-19],[48,-17],[37,-15],[33,-13],[3,7],[3,0],[3,-2],[2,-3],[-2,-6],[29,-15],[34,-19],[44,-32],[43,-33],[29,-23],[8,3],[6,1],[5,0],[5,2],[13,5],[3,3],[7,5],[6,4],[5,4],[9,5],[0,-5],[-2,-9],[-1,-6],[9,-1],[4,5],[5,-3],[1,-4],[6,-2],[2,-1],[4,-5],[8,0],[3,0],[1,-2],[2,-2],[2,2],[4,-4],[1,-4],[-2,-6],[0,-2],[2,0],[3,-2],[3,-2],[3,-4],[1,-6],[5,-1],[3,0],[4,1],[4,0],[2,-1],[4,-2],[2,-1],[1,1],[2,-5],[3,-5],[1,-5],[4,-4],[3,1],[9,0],[7,1],[7,-1],[7,0],[26,-4],[12,-6],[17,-6],[4,-10],[2,-8],[-2,-12],[4,-5],[15,-5],[11,-1],[5,-12],[8,-6],[10,-6],[10,-27],[9,-12],[7,-6],[13,-3],[11,-11],[5,-5],[8,-3],[9,-7],[10,-6],[16,-11],[18,-18],[8,-6],[12,-15],[6,-6],[7,-15],[11,-11],[21,-10],[13,-8],[24,-9],[4,3],[5,-8],[-4,-9],[6,-20],[15,-13],[12,-4],[11,0],[16,-2],[15,-5],[9,-1],[18,0],[13,0],[10,-2],[10,-4],[28,21],[37,37],[33,85],[15,38],[-4,4],[23,62],[7,-1],[7,26],[7,13],[15,19],[8,14],[0,11],[-1,18],[7,23],[8,8],[11,3],[10,-2],[21,-9],[21,-14],[9,-5],[-3,-17],[5,-4],[5,-8],[1,-4],[-1,-5],[-1,-4],[4,-6],[1,-7],[3,-4],[5,0],[4,-2],[4,-2],[3,-3],[4,-1],[4,-5],[-1,-3],[2,-1],[1,-3],[6,0],[2,-2],[0,-2],[4,-1],[8,-2],[6,-2],[7,-5],[2,-5],[6,-7],[9,0],[5,3],[13,-11],[-1,-4],[5,-4],[7,2],[10,0],[4,-3],[6,-6],[1,-8],[1,-7],[3,-4],[9,-5],[8,-4],[15,-1],[7,-2],[7,-8],[5,-3],[12,0],[4,-2],[10,-2],[20,-1],[8,0],[11,1],[5,3],[9,6],[7,7],[6,12],[13,11],[17,3],[6,-9],[-3,-12],[-1,-19],[3,-15],[3,-11],[8,-5],[9,27],[22,-15],[11,-15],[27,-11],[11,-14],[4,-11],[7,-16],[-3,-17],[0,-6],[6,0],[0,-17],[-10,-3],[0,-9],[9,-12],[0,-9],[-2,-11],[-3,-5],[-3,0],[-4,-1],[-1,-5],[-2,-7],[-3,-1],[-1,-6],[2,-3],[1,-5],[-2,-3],[4,-4],[2,-3],[-1,-5],[-1,0],[-5,0],[-2,-3],[-1,-6],[-3,-11],[1,-16],[0,-3],[-2,-8],[-3,-4],[-2,-8],[-3,-4],[3,-10],[2,-9],[-3,-6],[-5,2],[-2,-3],[-2,-9],[-2,-10],[-5,-7],[-2,-6],[-1,-7],[0,-5],[-1,-4],[-3,-3],[-2,-3],[-4,-5],[-2,-8],[-2,-8],[-5,-8],[-3,-8],[-1,-6],[-3,-5],[-2,-3],[-5,-5],[-3,-32],[-1,-7],[-1,-9],[9,-7],[-7,-30],[-16,8],[-3,-5],[-5,-7],[-5,2],[-10,0],[-5,4],[-7,0],[-3,-2],[-4,-4],[-11,-6],[-8,-5],[-10,2],[-8,4],[-3,9],[-5,4],[-8,2],[-5,4],[-12,0],[-7,1],[-6,5],[-10,2],[-32,4],[-23,-3],[-20,-12],[-3,-3],[-14,-24],[-9,-22],[-7,-22],[0,-8],[2,-4],[-2,-15],[-1,-22],[2,-16],[12,-36],[10,-10],[24,-12],[19,-3],[-7,18],[-17,19],[-7,14],[-3,15],[2,21],[7,9],[5,15],[10,12],[14,-1],[8,-8],[-5,-22],[-4,-12],[7,-10],[7,-5],[5,-3],[6,-6],[7,-7],[12,-9],[2,-16],[8,-7],[10,-4],[10,-11],[12,-3],[13,2],[13,-1],[5,2],[15,-2],[8,-6],[12,-5],[9,4],[14,1],[31,5],[4,4],[8,0],[17,5],[11,-1],[10,1],[9,-1],[13,4],[16,3],[10,19],[9,9],[7,15],[6,13],[6,9],[13,14],[7,16],[-4,13],[1,21],[-5,7],[-1,20],[1,4],[4,13],[9,12],[10,1],[14,5],[0,3],[4,5],[10,10],[12,5],[-1,6],[2,2],[7,1],[6,12],[3,2],[9,13],[12,5],[9,8],[4,4],[7,9],[9,7],[12,14],[5,16],[5,16],[3,13],[9,12],[5,5],[11,4],[7,5],[16,7],[12,0],[11,4],[12,10],[17,18],[10,14],[18,15],[8,7],[10,0],[13,0],[8,-1],[12,0],[8,14],[1,14],[8,16],[9,12],[17,16],[8,0],[15,1],[13,-3],[11,-4],[18,-5],[13,-11],[8,-18],[3,-14],[-4,-15],[-8,-8],[1,-24],[1,-10],[8,-5],[6,8],[11,20],[5,7],[6,10],[7,14],[6,17],[3,19],[-2,15],[1,18],[4,13],[11,17],[8,11],[8,9],[12,8],[16,0],[9,-4],[9,-5],[6,12],[4,5],[4,4],[15,23],[-1,13],[-1,9],[-1,19],[2,13],[4,9],[8,17],[5,23],[-12,28],[0,3],[6,15],[-3,4],[-7,-3],[-5,4],[-7,2],[-14,5],[-5,6],[-8,10],[-10,5],[-12,9],[-4,8],[0,24],[2,14],[-2,25],[0,14],[-3,18],[-6,18],[-5,18],[-6,24],[-18,40],[-3,45],[2,18],[1,24],[-6,23],[1,4],[-4,12],[-5,21],[0,11],[-4,5],[-3,13],[4,15],[-11,21],[1,10],[-14,36],[-5,55],[-6,7],[-8,23],[-8,17],[-3,16],[-5,16],[-9,25],[-3,30],[-6,18],[1,34],[1,20],[7,37],[7,17],[20,49],[16,42],[10,37],[10,23],[14,27],[13,22],[7,29],[4,38],[0,37],[-3,32],[-4,8],[-12,-2],[-5,1],[-3,4],[0,12],[5,7],[7,4],[-1,19],[-4,25],[-6,28],[1,33],[3,34],[4,29],[10,44],[11,46],[20,68],[9,38],[-11,9],[15,54],[13,9],[9,9],[18,31],[9,30],[8,30],[12,26],[24,66],[39,107],[19,46],[8,33],[8,24],[-1,12],[-1,12],[0,10],[-6,20],[-1,7],[-3,4],[-4,7],[-3,11],[1,18],[1,5],[-6,8],[0,7],[3,19],[-3,17],[-5,22],[-1,16],[-4,13],[-1,24],[-6,17],[-1,11],[2,4],[-12,13],[-6,7],[-5,9],[-6,8],[-13,10],[-31,1],[-5,2],[-5,3],[-14,-1],[-9,7],[-10,6],[-5,11],[-111,34],[-40,30],[-63,18],[-499,119],[7,48],[320,-81],[24,189],[-99,25],[17,127],[119,-27],[0,12],[7,15],[4,12],[4,6],[3,9],[0,8],[5,18],[4,12],[3,12],[6,18],[3,36],[0,21],[3,16],[-2,4],[-3,3],[0,14],[1,11],[1,10],[5,16],[6,7],[5,13],[1,11],[-2,9],[-5,6],[-5,5],[1,12],[1,26],[4,16],[12,91],[10,0],[3,57],[-1,19],[7,32],[3,26],[5,21],[2,21],[-1,19],[2,14],[2,22],[2,21],[2,24],[0,21],[3,26],[2,16],[3,8],[-1,8],[-12,2],[1,21],[23,-5],[3,10],[-8,5],[-12,6],[10,89],[14,3],[14,121],[3,17],[34,317],[-6,19],[-3,24],[1,14],[1,6],[9,22],[14,10],[21,0],[8,-2],[-1,13],[38,-6],[2,-13],[24,-6],[16,-9],[20,-8],[14,-13],[19,-18],[12,-15],[7,-13],[32,-11],[7,7],[6,1],[11,-3],[9,-4],[9,-4],[8,-2],[11,0],[10,-4],[26,-10],[15,-2],[14,-6],[20,-9],[10,-6],[9,-14],[11,-12],[14,-7],[14,-11],[8,-3],[6,-6],[7,-9],[3,-6],[14,-17],[8,-6],[-2,-15],[0,-6],[-2,-9],[1,-7],[2,-11],[4,-5],[2,-15],[5,-12],[4,-3],[11,-18],[1,-5],[7,-17],[8,-14],[1,-6],[7,-5],[3,-5],[3,-5],[5,-7],[6,-9],[6,-12],[3,-7],[5,-6],[3,-4],[6,-9],[11,-15],[7,-9],[7,-10],[4,-12],[5,-9],[17,-27],[11,-17],[6,-12],[3,-8],[5,-9],[9,-8],[11,-12],[8,-8],[12,-9],[11,-7],[14,-5],[20,-7],[16,-2],[20,-2],[40,-2],[30,4],[117,41],[4,5],[4,5],[10,8],[12,8],[5,5],[11,13],[2,4],[3,8],[2,4],[5,10],[8,6],[29,17],[30,25],[24,23],[22,25],[33,49],[25,38],[14,23],[16,22],[2,3],[-2,12],[4,7],[6,10],[11,10],[24,42],[14,36],[5,15],[5,19],[2,14],[-1,2],[-1,5],[0,6],[1,6],[2,3],[3,4],[6,4],[1,2],[5,7],[2,3],[2,3],[2,4],[0,2],[0,7],[0,5],[2,5],[3,3],[7,8],[9,8],[14,20],[15,30],[13,21],[15,31],[5,12],[6,13],[10,20],[11,24],[11,23],[6,19],[5,24],[0,7],[1,4],[0,3],[-1,6],[0,7],[1,6],[0,5],[2,8],[2,19],[1,5],[1,8],[0,7],[0,17],[0,15],[1,24],[2,27],[2,22],[5,23],[9,29],[8,21],[12,23],[13,25],[15,23],[1,2],[3,4],[0,2],[0,3],[1,1],[4,0],[9,11],[16,16],[15,13],[12,11],[4,4],[6,3],[2,3],[4,2],[2,1],[4,4],[1,1],[2,3],[0,2],[1,1],[2,2],[5,-1],[9,2],[6,4],[4,3],[4,3],[6,3],[5,3],[5,1],[3,2],[4,1],[4,0],[4,1],[10,0],[6,-1],[6,-3],[5,0],[6,-3],[7,-4],[8,-5],[9,-7],[11,-5],[10,-7],[5,-5],[7,-8],[8,-2],[4,-5],[8,-6],[1,-4],[2,-7],[12,-21],[2,-4],[2,-6],[5,-8],[3,-10],[3,-9],[3,-7],[5,-11],[4,-9],[4,-5],[2,-6],[2,-5],[9,-10],[2,-4],[1,-2],[2,-3],[6,-5],[2,-2],[1,-2],[-1,-6],[-1,-11],[-1,-4],[0,-9],[0,-3],[0,-11],[-1,-6],[-1,-3],[-3,-6],[0,-5],[0,-4],[-1,-5],[-2,-3],[-2,-4],[2,-9],[-2,-10],[0,-11],[1,-3],[1,-4],[-2,-6],[1,-5],[0,-3],[-1,-3],[1,-3],[3,-9],[0,-4],[1,-4],[2,-7],[3,-4],[1,-8],[-1,-2],[0,-3],[1,-2],[1,-2],[2,-4],[1,-2],[2,-3],[2,-6],[-1,-4],[0,-2],[-1,-2],[2,-3],[2,-5],[-1,-3],[1,-6],[1,-11],[2,-12],[2,-9],[5,-22],[1,-4],[1,-9],[5,-13],[4,-10],[6,-10],[5,-4],[5,-10],[3,-6],[4,-8],[5,-12],[10,-15],[2,-5],[1,-5],[2,-8],[3,-8],[1,-8],[2,-5],[2,-6],[0,-3],[1,-4],[4,-9],[3,-4],[1,-3],[2,-4],[0,-5],[0,-5],[-4,1],[-2,0],[-2,-1],[0,-10],[0,-2],[1,-6],[1,-3],[1,-3],[1,-6],[-2,-4],[0,-6],[-3,-10],[-2,-3],[-3,-5],[-3,-4],[-1,-2],[0,-2],[-5,-8],[-2,-3],[0,-3],[0,-1],[1,-3],[0,-3],[0,-3],[-4,-2],[-2,-1],[1,-2],[3,0],[6,-1],[5,0],[3,-3],[4,-1],[5,-4],[7,-4],[3,-2],[5,-2],[6,-5],[6,-6],[8,-4],[11,-1],[11,-1],[3,0],[4,1],[4,0],[2,0],[3,2],[3,0],[8,0],[3,-2],[2,-3],[3,-2],[2,-3],[3,-4],[1,-2],[24,-9],[60,-17],[41,-11],[43,-4],[11,0],[1,4],[5,0],[4,-1],[5,-1],[9,-2],[21,-4],[33,-2],[18,3],[1,0],[3,2],[1,2],[1,5],[0,2],[1,3],[5,0],[1,-1],[1,-1],[3,-2],[1,0],[1,-1],[1,0],[1,-3],[1,-1],[2,1],[1,-1],[4,1],[1,-1],[3,0],[3,2],[4,1],[2,1],[3,2],[1,2],[0,3],[2,0],[0,4],[2,2],[3,1],[3,1],[3,0],[2,-3],[3,-5],[2,-2],[9,0],[16,1],[27,6],[4,1],[2,1],[2,-1],[1,0],[1,1],[1,2],[10,2],[16,5],[29,11],[24,11],[25,13],[28,19],[5,3],[7,6],[5,0],[12,8],[18,17],[4,6],[1,5],[1,3],[5,1],[3,1],[4,1],[8,3],[14,9],[14,10],[37,30],[10,8],[47,40],[33,31],[29,32],[52,58],[38,49],[60,80],[50,71],[39,62],[46,85],[43,75],[26,50],[28,66],[23,56],[19,57],[9,37],[9,40],[11,24],[11,24],[6,12],[6,27],[7,37],[3,13],[2,19],[0,18],[0,18],[0,16],[-15,47],[-10,22],[-3,12],[-5,10],[-9,16],[-7,24],[-4,13],[-6,11],[-7,8],[-6,5],[-8,9],[-3,5],[-8,7],[-5,6],[-1,4],[-3,4],[-9,10],[-11,18],[-3,4],[-5,10],[-5,8],[-10,6],[0,2],[-7,7],[-2,6],[0,6],[-2,5],[-1,6],[-1,7],[0,3],[-2,6],[-3,5],[-2,0],[-3,2],[-3,3],[-1,6],[-3,6],[-2,0],[-3,1],[-3,11],[1,9],[-1,11],[1,5],[-1,3],[2,10],[2,6],[1,2],[0,13],[0,2],[1,5],[1,2],[-1,3],[0,5],[1,7],[0,4],[1,3],[0,4],[0,3],[0,5],[-1,3],[1,5],[-3,2],[0,3],[1,6],[-1,1],[0,6],[1,5],[1,5],[1,0],[1,1],[0,4],[2,2],[2,0],[3,0],[0,4],[0,2],[1,5],[2,2],[3,4],[2,2],[0,5],[3,3],[2,1],[2,1],[3,3],[2,4],[0,3],[0,3],[0,1],[-2,2],[-1,1],[1,3],[0,3],[0,1],[0,2],[1,2],[1,1],[2,3],[1,0],[3,0],[1,1],[4,7],[3,3],[0,2],[5,9],[5,4],[2,2],[4,4],[3,3],[2,4],[4,8],[4,4],[1,4],[3,3],[4,4],[0,1],[1,4],[0,1],[6,6],[0,1],[4,1],[2,2],[0,2],[1,7],[1,1],[2,0],[4,1],[1,1],[1,2],[-1,3],[-2,-1],[-2,1],[1,5],[2,7],[1,1],[2,0],[3,2],[1,1],[2,2],[1,1],[1,1],[1,0],[1,0],[1,-1],[2,-1],[1,-3],[2,0],[3,2],[0,1],[1,1],[1,1],[2,1],[1,0],[0,-3],[1,2],[2,1],[2,1],[1,-1],[1,-3],[2,-2],[3,4],[0,3],[2,3],[2,1],[1,2],[-2,4],[1,1],[1,2],[3,-1],[2,-4],[-2,-3],[1,-1],[3,-1],[3,2],[6,3],[0,2],[3,2],[1,3],[3,1],[2,1],[2,1],[1,-1],[3,2],[2,-1],[1,0],[2,1],[3,0],[2,-4],[2,1],[2,0],[2,-1],[0,-2],[0,-2],[2,0],[2,1],[2,4],[-1,2],[4,4],[3,1],[2,2],[3,4],[2,0],[3,4],[4,-1],[4,3],[3,1],[1,-1],[4,2],[3,2],[8,10],[1,2],[2,3],[1,1],[2,3],[4,7],[2,1],[2,4],[1,1],[0,5],[1,4],[1,1],[1,1],[2,1],[12,15],[21,35],[13,26],[8,14],[11,22],[8,25],[13,41],[18,70],[8,40],[4,20],[2,17],[1,17],[1,20],[0,16],[-2,10],[0,1],[-1,1],[-6,3],[-1,-1],[-1,-4],[-1,-1],[-1,-2],[-3,0],[-3,1],[0,4],[1,4],[1,2],[1,2],[1,2],[1,1],[-1,2],[0,2],[-1,3],[-1,0],[-5,1],[0,-1],[-1,-2],[-1,-3],[-1,-1],[-2,-1],[-1,1],[0,1],[0,3],[-1,2],[-1,2],[0,2],[-1,1],[-1,0],[-1,-2],[0,-1],[0,-2],[2,-3],[0,-2],[0,-1],[1,-2],[-1,-4],[-2,-3],[-1,-2],[-2,-1],[-1,-1],[-1,0],[-1,2],[-2,3],[-3,0],[-1,0],[-1,2],[0,2],[0,4],[-1,1],[-1,4],[-2,1],[0,2],[-1,3],[3,3],[5,0],[3,0],[1,1],[0,2],[-2,0],[-1,3],[0,3],[-2,-1],[-4,-4],[-2,-1],[-2,0],[-1,0],[-1,2],[1,6],[2,3],[0,1],[2,2],[2,1],[1,0],[1,-2],[3,2],[2,2],[2,2],[2,3],[4,0],[1,-3],[0,-4],[1,-1],[1,3],[1,2],[3,4],[1,1],[1,3],[0,3],[0,2],[-1,2],[-1,0],[-3,-1],[-2,-1],[-5,0],[-1,1],[0,3],[-1,3],[0,1],[3,4],[1,0],[2,0],[3,1],[4,0],[2,-1],[0,-2],[1,-3],[2,-1],[1,0],[1,4],[1,1],[-1,1],[-2,2],[0,3],[0,2],[3,2],[2,-2],[3,1],[1,2],[-1,1],[1,3],[1,1],[2,1],[0,3],[0,4],[2,2],[1,1],[2,3],[3,2],[1,0],[1,-2],[1,-3],[0,-2],[-1,-2],[0,-4],[0,-3],[0,-2],[1,-2],[2,-1],[1,0],[2,1],[1,4],[0,2],[0,4],[-1,0],[0,2],[2,4],[1,2],[2,2],[1,1],[1,2],[4,0],[1,-2],[2,-4],[-1,-1],[2,0],[1,0],[1,0],[2,-3],[1,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,-2],[1,-1],[1,0],[2,0],[2,0],[1,0],[2,2],[1,0],[2,-2],[1,-2],[0,-3],[-1,-1],[0,-1],[1,-2],[1,0],[1,2],[1,0],[1,-1],[0,-2],[0,-1],[-2,-1],[-1,0],[0,-1],[1,-2],[4,-2],[1,-2],[1,1],[1,1],[1,0],[3,0],[2,-2],[1,-1],[2,1],[1,2],[0,1],[0,1],[-1,0],[-1,1],[-1,2],[1,6],[3,1],[1,-1],[1,-2],[1,-1],[3,1],[1,2],[1,1],[2,0],[1,-1],[1,-3],[0,-2],[0,-2],[1,-1],[2,2],[2,0],[2,-1],[0,-1],[1,-1],[1,-2],[0,-2],[1,-2],[3,2],[1,0],[7,5],[1,1],[1,1],[0,1],[2,4],[1,1],[0,2],[-1,2],[-1,2],[0,2],[2,2],[0,2],[0,1],[0,1],[-1,2],[1,1],[0,1],[-2,0],[-1,2],[0,3],[2,1],[2,0],[1,-2],[0,-1],[0,-2],[2,-1],[2,-3],[2,-1],[4,2],[2,3],[1,2],[-1,2],[-2,2],[-2,1],[-1,1],[-1,2],[0,2],[0,2],[1,4],[1,0],[2,1],[1,0],[2,1],[1,1],[2,0],[1,1],[2,1],[1,-1],[2,1],[0,2],[-1,1],[-2,0],[0,2],[-2,3],[2,2],[2,2],[1,-2],[2,0],[2,-1],[0,-1],[2,-1],[1,1],[0,1],[2,1],[-1,5],[2,3],[0,2],[3,-1],[1,-2],[1,0],[1,2],[1,3],[2,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,3],[-1,4],[1,3],[1,1],[1,0],[2,0],[0,3],[1,1],[2,3],[2,0],[1,2],[0,1],[0,1],[-1,0],[-3,1],[0,2],[2,3],[1,1],[0,1],[1,3],[0,1],[1,0],[2,-1],[0,-1],[1,-2],[1,-1],[0,1],[2,1],[2,0],[3,-3],[0,1],[1,3],[-1,1],[-1,3],[1,2],[1,1],[3,1],[0,1],[-1,4],[1,2],[1,2],[2,0],[3,3],[1,1],[1,0],[2,-1],[0,-2],[2,-1],[1,0],[1,0],[1,-3],[1,-3],[3,-2],[3,0],[2,1],[1,2],[1,2],[1,1],[1,1],[-1,2],[-1,1],[-1,1],[-3,0],[-2,-1],[-1,1],[0,3],[1,1],[2,0],[1,0],[2,1],[2,1],[1,3],[1,1],[3,1],[0,1],[2,2],[1,0],[1,0],[1,-1],[1,-1],[1,1],[4,1],[2,0],[2,0],[2,-1],[0,-2],[1,-1],[1,-1],[3,1],[3,-1],[1,0],[2,-1],[1,-1],[3,0],[2,-1],[1,-1],[1,-2],[2,1],[1,1],[3,0],[1,-2],[2,0],[1,2],[1,0],[2,-4],[1,-2],[0,-2],[-1,-1],[1,-1],[1,-2],[1,-3],[0,-3],[0,-1],[1,-1],[1,-3],[0,-2],[0,-2],[0,-2],[1,-2],[1,2],[0,1],[1,1],[1,-1],[1,-1],[1,3],[0,2],[-2,2],[-1,3],[1,2],[1,0],[1,0],[2,3],[1,1],[2,1],[1,-2],[2,-3],[2,-1],[2,-4],[-1,-3],[0,-1],[-4,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-3],[2,0],[3,1],[1,-1],[1,-1],[1,-2],[2,-3],[1,-1],[4,0],[2,0],[2,1],[1,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[2,1],[1,0],[0,1],[2,-1],[1,-1],[0,-1],[0,-3],[1,-1],[1,-1],[1,2],[2,2],[1,2],[0,2],[0,1],[1,3],[1,2],[0,1],[-1,3],[0,1],[0,2],[0,3],[1,1],[0,3],[3,2],[1,1],[2,0],[1,-1],[3,-2],[1,0],[1,-3],[1,-1],[0,-2],[-1,-2],[-1,-2],[1,-3],[2,-1],[2,-1],[2,1],[1,2],[1,2],[2,1],[1,0],[0,1],[0,3],[1,3],[0,2],[0,1],[2,1],[2,2],[0,1],[2,2],[1,2],[2,4],[1,1],[0,1],[1,3],[-1,2],[0,1],[0,1],[2,1],[1,-1],[1,-1],[0,-3],[1,-1],[2,-1],[1,0],[1,-2],[2,-1],[1,1],[1,4],[-1,1],[0,3],[0,1],[2,2],[2,1],[0,2],[2,1],[1,0],[4,1],[1,1],[2,0],[1,1],[0,1],[1,1],[2,0],[0,2],[0,2],[2,1],[1,1],[1,0],[3,-1],[-1,-3],[2,-1],[1,-1],[2,0],[1,1],[0,2],[0,2],[1,0],[1,0],[1,2],[-1,0],[0,2],[1,2],[2,1],[1,1],[0,1],[1,1],[1,0],[1,-1],[0,-3],[1,-1],[1,-2],[0,-1],[2,0],[2,2],[0,1],[0,3],[1,1],[0,2],[-1,1],[-2,0],[-2,1],[0,1],[0,3],[1,0],[2,1],[2,-2],[2,0],[0,1],[1,1],[2,-1],[2,-2],[2,0],[1,0],[1,1],[2,1],[1,-2],[5,-1],[2,2],[6,1],[1,3],[1,1],[-1,1],[-3,0],[-3,1],[1,5],[1,5],[1,1],[1,1],[-1,4],[1,1],[1,2],[4,0],[1,-2],[0,-3],[-2,-1],[-2,0],[0,-4],[2,-2],[1,2],[2,2],[8,2],[1,-1],[4,0],[1,3],[1,3],[2,0],[2,-3],[0,-2],[0,-2],[-2,-3],[3,2],[2,5],[2,1],[3,1],[2,0],[2,-1],[1,-2],[-1,-3],[1,-4],[1,1],[7,0],[1,-1],[2,0],[2,3],[1,1],[0,2],[1,4],[1,3],[6,1],[3,-3],[1,2],[3,0],[3,-2],[1,-2],[3,-5],[1,-3],[3,-3],[16,9],[33,17],[25,4],[24,16],[16,22],[23,30],[30,36],[27,37],[23,35],[11,15],[7,10],[8,12],[8,12],[8,12],[4,7],[3,4],[4,7],[2,5],[3,5],[-2,6],[0,4],[2,3],[2,1],[4,1],[4,1],[6,4],[3,7],[5,4],[7,2],[7,6],[5,6],[5,9],[7,7],[5,5],[3,4],[4,5],[4,4],[4,4],[2,2],[3,2],[5,0]],[[439933,229835],[1,-6],[-2,-3],[1,0],[2,-4],[0,-1],[0,-5],[0,-2],[1,-2],[-1,-2],[-5,0],[0,1],[-2,0],[-4,-1],[-2,1],[-1,1],[-1,-1],[-1,-2],[-4,-2],[-1,-7],[-2,-2],[-1,1],[-3,0],[-1,-1],[-1,-2],[0,-8],[4,-8],[2,-5],[2,3],[-2,4],[0,3],[1,6],[4,-2],[1,0],[3,-7],[-2,-3],[3,-3],[2,1],[0,3],[0,2],[1,3],[-1,2],[1,4],[0,2],[1,5],[3,0],[1,-3],[2,-4],[2,-4],[-2,-3],[-3,-2],[1,-3],[2,-3],[3,-1],[1,6],[1,1],[0,7],[1,3],[2,1],[3,1],[2,1],[4,0],[2,-4],[-1,-3],[-5,-2],[-1,0],[-2,-1],[-3,-1],[-1,-3],[1,-3],[1,-1],[3,-2],[3,0],[1,2],[3,5],[1,3],[4,1],[2,0],[1,-2],[1,-2],[2,-3],[0,-3],[-1,0],[0,-3],[3,-2],[2,-1],[0,-6],[1,-3],[2,1],[4,-1],[4,-6],[-2,-3],[-2,-2],[0,-2],[2,-1],[1,-3],[0,-2],[1,-9],[1,-3],[2,-6],[6,-13],[13,-29],[7,-9],[17,-15],[6,0],[2,1],[3,-1],[2,-1],[0,-3],[3,-3],[5,-1],[7,-3],[6,-3],[10,-2],[7,-3],[14,-12],[6,-1],[3,0],[3,1],[12,2],[6,0],[4,-1],[3,-2],[7,1],[2,4],[9,0],[3,-4],[2,-6],[3,0],[1,4],[3,3],[4,-2],[0,-6],[-1,-2],[2,-5],[-3,-8],[0,-3],[0,-2],[3,-3],[0,-2],[3,-5],[2,-1],[3,-1],[5,-3],[5,-2],[5,0],[9,0],[6,3],[3,2],[3,6],[2,6],[1,7],[1,5],[4,7],[5,5],[2,1],[8,4],[2,0],[2,-1],[2,-3],[2,3],[0,4],[3,3],[4,2],[4,1],[2,1],[0,-1],[4,0],[8,0],[5,-1],[4,-3],[1,-3],[1,-4],[-1,-4],[-1,-3],[-3,-4],[0,-2],[1,-4],[-2,-3],[-1,0],[0,-5],[-1,-4],[-1,-1],[2,-8],[-1,-1],[3,0],[-2,-7],[-2,-4],[1,-3],[2,-2],[3,-1],[-2,-6],[-1,-3],[1,-2],[3,-6],[2,1],[3,3],[3,-1],[0,-2],[-1,-4],[-6,-3],[0,-6],[-2,-1],[-2,3],[-2,4],[-2,-1],[0,-4],[-4,-4],[-2,2],[-2,1],[-1,-2],[-4,-1],[-1,-1],[-3,-6],[0,-8],[1,-3],[2,-1],[3,1],[2,2],[4,4],[3,2],[10,1],[2,-2],[2,-3],[2,-5],[0,-4],[-2,-2],[-2,0],[-2,-5],[1,-8],[2,0],[-2,-6],[-4,0],[-2,-3],[-2,-7],[2,-11],[1,-4],[1,3],[1,2],[2,2],[1,-1],[3,-3],[-1,-3],[0,-2],[-3,0],[0,-3],[1,-3],[1,-2],[1,1],[3,2],[2,0],[2,-1],[1,-2],[-1,-2],[0,-2],[-2,0],[-3,-1],[2,-4],[2,-2],[1,-3],[0,-3],[0,-8],[1,-2],[-1,-5],[-1,-1],[-2,-1],[0,-2],[0,-8],[0,-1],[-1,-3],[-2,-2],[-2,-2],[-1,-3],[-1,-3],[-1,-2],[-2,-2],[-2,-3],[0,-4],[2,-5],[3,-7],[3,-3],[1,-4],[2,-3],[1,-1],[2,-3],[-1,-4],[3,-3],[0,-3],[1,-4],[5,-13],[1,-8],[-1,-3],[1,-5],[2,-4],[5,-14],[3,-5],[15,-21],[9,-13],[14,-21],[19,-25],[8,-13],[13,-25],[7,-16],[6,-12],[3,0],[6,-5],[2,-3],[3,-10],[5,-15],[13,-25],[7,-13],[3,-3],[4,0],[3,0],[4,-1],[12,-4],[4,-6],[16,-22],[18,-20],[12,-15],[3,-5],[1,-8],[1,-12],[0,-7],[6,-2],[7,-9],[20,-30],[20,-28],[22,-28],[27,-32],[6,2],[7,-3],[8,-11],[26,-31],[25,-25],[30,-31],[15,-14],[43,-35],[49,-35],[40,-23],[26,-12],[36,-14],[31,-10],[24,-7],[37,-9],[41,-6],[39,-4],[49,-6],[32,-3],[56,-2],[26,0],[42,1],[53,7],[22,4],[44,13],[50,18],[43,22],[50,32],[41,31],[29,28],[20,24],[10,16],[0,3],[1,6],[2,5],[5,5],[-1,3],[-2,4],[-1,3],[1,3],[1,3],[-2,6],[1,6],[-3,4],[-2,2],[-2,4],[0,13],[-2,4],[-2,4],[0,7],[1,6],[0,2],[-1,9],[-2,4],[-3,-3],[-2,2],[-1,6],[-1,2],[-1,2],[-1,6],[-2,12],[1,5],[1,2],[-2,4],[0,8],[-2,5],[0,2],[-2,5],[-1,5],[-1,4],[0,1],[-2,6],[-1,2],[-3,-2],[-7,3],[-2,1],[0,-6],[1,-1],[-2,-4],[-2,0],[-2,-6],[-1,-4],[-3,2],[-2,3],[-1,6],[-3,2],[-2,8],[1,9],[1,3],[7,0],[3,-2],[3,4],[-4,4],[-2,5],[2,5],[3,5],[1,5],[3,2],[2,3],[0,2],[-1,2],[0,3],[2,4],[6,2],[2,-2],[1,-5],[1,0],[2,0],[2,1],[2,1],[4,4],[0,5],[0,7],[0,5],[2,4],[3,8],[-1,5],[0,9],[2,8],[0,2],[-3,5],[1,3],[5,4],[1,3],[-1,3],[-3,8],[1,6],[1,5],[0,8],[3,9],[2,4],[6,11],[5,9],[8,10],[6,9],[12,9],[6,5],[19,10],[3,4],[10,10],[10,2],[5,1],[3,6],[10,6],[3,-2],[4,0],[7,-2],[5,-7],[-1,-4],[-1,-8],[-2,-4],[-7,0],[-4,-4],[0,-10],[3,-4],[3,-1],[5,-2],[4,-4],[4,-3],[9,-22],[3,-10],[0,-16],[0,-7],[3,-16],[1,-14],[-1,-3],[-6,-8],[-1,-8],[0,-12],[2,-12],[4,-8],[8,-10],[8,-2],[5,1],[5,0],[6,-6],[8,-7],[3,-8],[4,-11],[0,-12],[-1,-7],[0,-6],[2,-5],[-6,-9],[0,-7],[2,-7],[-2,-7],[-3,-4],[-1,-1],[-2,-6],[-4,-8],[-2,1],[-4,-11],[1,-5],[-1,-8],[5,-5],[3,1],[3,9],[13,-2],[5,-2],[2,-5],[3,-7],[3,0],[8,-10],[10,-2],[2,-2],[3,-11],[2,-5],[3,-14],[2,-12],[1,-5],[0,-7],[-1,-9],[5,-4],[1,-4],[10,-1],[5,-4],[2,-5],[0,-3],[-3,-6],[-1,-4],[2,-6],[4,0],[5,-3],[2,-6],[5,-3],[0,-7],[-2,-6],[-5,1],[-2,4],[-8,2],[-1,-6],[-5,-2],[-1,-13],[-1,-3],[0,-5],[3,-10],[3,-7],[-2,-13],[0,-8],[5,-6],[-3,-12],[2,-2],[3,-5],[1,-2],[9,-1],[4,-6],[1,-4],[-1,-3],[1,-5],[2,-1],[-1,-5],[0,-2],[1,-3],[5,-4],[1,1],[3,-1],[4,-2],[1,-6],[0,-4],[3,-2],[1,-3],[3,-5],[1,-6],[0,-10],[2,-17],[-1,-8],[0,-7],[3,-2],[1,-1],[6,-9],[4,-2],[3,-1],[8,-7],[0,-12],[-1,-3],[-2,-4],[-1,-2],[-2,-2],[-4,-2],[-5,-1],[-3,0],[2,-4],[3,-3],[-3,-7],[2,-4],[6,0],[2,-4],[1,-5],[-2,-3],[2,-1],[2,-5],[0,-3],[-2,-4],[4,-5],[2,-1],[0,-5],[1,-15],[-1,-4],[-2,-4],[4,-5],[0,-3],[-1,-5],[-1,-7],[-1,-2],[1,-8],[1,-7],[3,-2],[1,-4],[-1,-5],[2,-6],[3,-3],[-1,-8],[-2,-5],[-3,-1],[-1,-1],[-2,-8],[-2,-7],[0,-6],[-3,-4],[-2,-6],[1,-3],[0,-4],[-1,-1],[-2,-2],[-1,-6],[-2,-2],[-2,-2],[-2,-1],[-2,-8],[0,-5],[0,-7],[-2,-3],[-2,-2],[-3,-2],[-3,-6],[-2,-6],[-3,-4],[2,-4],[1,-3],[-1,-3],[-2,1],[-4,2],[-1,0],[-2,-2],[-2,-2],[-1,-1],[0,-1],[-2,-1],[-6,-3],[-2,-1],[-6,-1],[-2,-2],[-3,-1],[-2,-2],[-4,0],[-3,0],[-4,-4],[-3,-2],[-1,-1],[-3,0],[-1,0],[-3,-2],[-1,-2],[-1,-3],[-1,-5],[-2,-1],[-3,-2],[-4,-2],[-4,-3],[-6,-4],[-3,0],[-3,-3],[-2,-3],[-1,-2],[-3,-4],[-3,1],[-2,0],[-3,-1],[-3,-2],[-5,-1],[-4,-4],[-3,1],[-2,3],[-4,-1],[-6,0],[-2,0],[-6,-3],[-2,0],[-6,-5],[-9,-6],[-3,-8],[-2,-4],[-5,-3],[-6,-8],[-3,-4],[-2,-7],[1,-6],[2,-8],[-4,-4],[-1,-4],[-3,-3],[-3,0],[-3,-6],[-1,-7],[-2,-6],[-1,-2],[-6,-3],[1,-4],[0,-10],[-3,-3],[-5,-4],[3,-4],[-7,-5],[-2,-1],[-4,0],[-2,-1],[-3,-5],[-3,-1],[-2,-4],[-2,-2],[-1,-6],[-1,-3],[-4,-4],[-2,-1],[-4,-6],[0,-2],[-4,-11],[-3,-9],[-3,-11],[2,-8],[1,-3],[5,-5],[3,-4],[1,-3],[0,-7],[0,-3],[-1,-9],[-1,-4],[-5,-4],[-1,-2],[-2,-5],[-4,-3],[-1,0],[-2,-9],[2,-6],[-3,-4],[-4,-4],[-5,0],[-2,1],[-7,4],[-4,0],[-1,-4],[-3,-3],[-1,0],[-2,-8],[-2,-2],[-4,-1],[-3,-1],[-2,-4],[-5,-4],[-2,-3],[-1,-3],[-5,-2],[-2,2],[-3,-2],[-2,-1],[-3,-1],[-5,1],[-3,2],[-2,3],[-2,1],[-3,0],[-3,0],[-1,3],[-4,1],[-1,4],[0,4],[-3,2],[-7,1],[-2,1],[-4,1],[-3,1],[-2,-5],[1,-3],[2,-4],[-1,-6],[-2,-3],[1,-4],[0,-3],[-1,1],[-1,0],[-5,-2],[-2,-2],[-2,-1],[-4,2],[-3,-4],[-10,6],[-2,5],[-4,1],[-5,1],[-5,4],[-2,0],[-4,0],[-2,2],[-2,-2],[-2,-1],[-3,-2],[-1,-1],[-1,-1],[-6,-4],[-2,-2],[-7,-5],[-3,-4],[0,-7],[-1,-2],[-3,-3],[-4,0],[-1,1],[-5,-1],[-1,-2],[-3,-1],[-2,2],[-4,0],[-5,0],[-1,-3],[2,0],[2,-2],[0,-5],[0,-3],[-3,-3],[-2,0],[-2,0],[-2,0],[-2,1],[-2,4],[-1,2],[-1,1],[-1,3],[0,5],[-3,0],[-3,-2],[-1,-2],[1,-3],[0,-3],[-2,-1],[0,-4],[-2,-2],[-1,0],[-2,1],[0,3],[0,2],[-1,2],[-1,1],[-2,0],[-2,0],[-1,-1],[-2,-1],[-3,-2],[-2,-1],[-2,0],[-1,1],[-2,2],[-3,-1],[-7,0],[-4,0],[-5,2],[-4,2],[-4,0],[-2,-4],[-4,-1],[-3,0],[-3,-3],[-2,-3],[-2,-4],[-2,-4],[-3,-2],[-4,-4],[-6,0],[-5,-3],[-1,-1],[0,-9],[0,-3],[-1,-1],[-3,-3],[0,-1],[-3,-1],[-1,-2],[-1,-3],[-2,-1],[-3,-2],[-3,0],[0,-5],[-1,-2],[-3,-1],[-3,0],[-5,0],[-5,0],[-7,0],[-6,0],[-6,-4],[-6,-4],[-6,-2],[-8,-3],[-5,-1],[-7,0],[-9,0],[-25,-1],[-10,0],[-6,1],[-11,0],[-9,0],[-5,-1],[-3,2],[-3,2],[-8,6],[-4,4],[-1,4],[-3,3],[-5,4],[-4,0],[-3,0],[-10,2],[-5,5],[-10,11],[-4,5],[-12,8],[-14,13],[-5,5],[-9,4],[-8,1],[-8,-2],[-1,-3],[1,-5],[1,0],[1,-4],[0,-1],[-1,-2],[-2,-4],[1,-1],[3,-2],[-2,-6],[-2,-2],[-3,2],[0,4],[1,2],[-1,1],[-1,2],[-1,4],[0,2],[0,4],[1,4],[-3,0],[-4,1],[-1,-3],[-1,-3],[-2,-3],[-6,0],[-2,-2],[-1,-2],[0,-5],[-2,-4],[-2,0],[-3,3],[-1,4],[0,4],[-1,0],[-2,1],[-9,0],[-3,0],[-9,7],[-4,2],[-7,7],[-5,4],[-5,3],[-8,5],[-12,6],[-11,2],[-11,1],[-5,1],[-14,-2],[-59,-21],[-138,-54],[-132,-48],[-100,-40],[-60,-25],[2,-4],[3,-3],[-11,-17],[-5,-1],[-12,-26],[-8,-19],[2,-8],[-3,-8],[-4,-6],[-3,-2],[-2,-1],[-2,-1],[-2,0],[-4,0],[-2,1],[-1,-6],[-3,0],[-3,2],[-5,-4],[-11,-1],[-3,2],[-2,4],[-4,-2],[-2,-1],[-2,-1],[-2,-4],[-45,3],[-2,6],[-2,3],[-3,2],[-3,3],[-1,2],[-3,3],[-5,29],[-6,-4],[-5,-3],[-4,3],[-3,0],[-3,0],[-5,1],[-3,1],[-4,-2],[-5,-3],[-3,1],[-6,0],[-4,3],[-6,1],[0,3],[-4,-2],[-1,-1],[-2,0],[-10,-1],[-4,1],[-1,6],[-1,8],[5,8],[1,1],[-2,1],[-5,-1],[-2,-5],[-4,-2],[-5,-3],[-5,-1],[-4,8],[1,7],[2,7],[-2,5],[1,4],[3,14],[4,3],[5,1],[9,1],[1,-6],[8,-2],[2,3],[0,5],[-2,3],[-3,1],[-1,6],[0,6],[-3,8],[-2,4],[-6,10],[-3,2],[-5,-3],[-4,0],[-5,0],[-8,-2],[-7,2],[-5,8],[0,11],[-1,5],[-7,6],[-3,-2],[-4,1],[-4,2],[-10,0],[-8,-1],[-1,-5],[-4,-6],[-7,-5],[-4,-3],[-6,0],[-5,0],[-5,2],[-6,3],[-5,1],[-3,4],[-5,-1],[-4,-3],[-12,-6],[-10,0],[-10,9],[-9,20],[-9,5],[-5,-2],[-9,-5],[-10,-2],[-14,8],[-16,-6],[-5,2],[-11,0],[-5,6],[-6,8],[-12,9],[-6,14],[-3,15],[-3,4],[-7,10],[-9,23],[-7,12],[-8,3],[-9,8],[-6,7],[-2,12],[-4,8],[-6,11],[-5,7],[-7,7],[-4,5],[-6,12],[-8,20],[-7,6],[-2,11],[-2,8],[-5,4],[-3,3],[0,7],[-1,13],[-3,5],[-2,9],[-4,2],[-2,-4],[-3,-4],[2,-3],[1,-4],[-1,-4],[-3,-2],[-1,-1],[-4,1],[-2,3],[-3,-2],[-5,0],[-1,2],[-2,4],[-1,3],[-1,4],[-1,6],[-2,5],[-1,4],[-3,0],[-1,-1],[-3,-8],[-3,2],[-2,-2],[-4,-6],[-2,0],[-3,0],[-4,0],[-4,-2],[-1,1],[-1,2],[-1,0],[0,5],[1,9],[1,2],[3,0],[3,-1],[2,-4],[1,0],[2,2],[1,3],[-2,5],[0,3],[2,3],[1,4],[-3,2],[-3,2],[-3,2],[-1,2],[-2,6],[0,6],[2,3],[6,4],[5,0],[6,-1],[3,-1],[3,-5],[1,1],[1,3],[6,0],[2,3],[-1,5],[0,2],[3,2],[0,4],[0,1],[3,7],[2,1],[2,-1],[1,0],[2,-1],[0,5],[1,4],[-1,6],[2,1],[2,0],[0,1],[1,6],[1,4],[0,3],[0,3],[-1,1],[0,4],[1,2],[3,4],[-1,3],[2,6],[2,0],[1,2],[0,8],[-1,1],[-2,-1],[-7,-1],[-3,0],[-2,2],[0,4],[3,3],[0,8],[0,3],[0,3],[2,2],[2,3],[-1,3],[0,3],[2,4],[3,2],[7,1],[2,-2],[1,-2],[2,2],[3,3],[0,2],[1,2],[1,4],[2,4],[4,2],[1,-2],[2,1],[1,4],[-2,4],[-2,4],[0,5],[4,5],[3,2],[0,8],[0,6],[2,4],[1,4],[-3,4],[-1,3],[0,6],[1,8],[-1,4],[-1,7],[2,7],[3,3],[2,1],[1,5],[-1,0],[-2,1],[-1,2],[1,3],[2,3],[1,3],[3,0],[4,-3],[0,-3],[2,0],[1,2],[4,2],[3,-1],[1,4],[0,1],[2,2],[3,0],[3,-2],[2,3],[1,3],[-1,3],[3,3],[3,9],[0,9],[0,10],[0,15],[0,5],[-1,6],[-1,7],[0,6],[-2,5],[-1,3],[-1,4],[1,1],[2,11],[-1,4],[1,6],[0,8],[0,6],[3,4],[0,3],[0,1],[-1,2],[1,4],[4,2],[2,2],[3,0],[2,-1],[2,-2],[-1,-3],[2,-3],[2,1],[1,2],[2,3],[1,1],[2,4],[4,5],[3,0],[5,3],[4,1],[-1,6],[2,7],[-4,3],[-1,4],[0,7],[2,8],[1,4],[1,5],[3,12],[4,10],[4,16],[1,20],[-1,9],[2,13],[3,21],[2,27],[0,18],[0,50],[0,22],[-2,14],[-1,13],[-2,14],[1,21],[0,29],[-1,25],[-3,41],[-8,40],[-9,44],[-17,79],[-17,59],[-13,29],[-13,26],[-16,27],[-8,13],[-8,6],[-20,-2],[2,-3],[-2,-2],[-4,2],[-1,5],[-1,-1],[-5,3],[-4,-8],[-6,-1],[-5,-1],[-3,-3],[0,-6],[-1,-4],[-4,-3],[-3,0],[-6,-3],[-3,-5],[0,-2],[-4,-1],[-2,4],[-2,0],[-2,0],[-2,-2],[-1,-5],[-1,-1],[-4,-5],[1,-2],[0,-1],[-1,-2],[-2,-1],[0,-2],[-2,-2],[-5,2],[0,2],[-2,-4],[-2,-2],[-3,-2],[-3,-3],[-6,-1],[1,2],[1,3],[1,5],[6,5],[0,4],[1,2],[2,2],[0,2],[-5,3],[-3,1],[-4,-1],[-6,1],[-1,-1],[-6,-3],[-2,3],[-8,-1],[-4,-6],[-2,-2],[-3,-5],[-3,1],[-3,2],[-2,1],[-5,0],[-2,-1],[-1,-2],[2,0],[4,-1],[0,-3],[-1,-2],[-1,-1],[-2,0],[-2,-1],[-3,1],[-1,1],[-6,1],[-1,4],[0,2],[1,2],[-2,2],[-2,3],[-3,4],[-2,2],[-4,-1],[-6,0],[-1,-1],[-1,-2],[-2,-1],[-4,-4],[-2,1],[-1,3],[-3,1],[-1,-2],[-1,-3],[0,-2],[2,-1],[2,-1],[0,-3],[-2,-3],[-1,-1],[-2,-2],[-2,2],[1,3],[-1,2],[-6,0],[-2,3],[-2,-2],[-5,2],[-2,-2],[-1,-2],[-3,0],[-3,-1],[-2,-1],[-3,3],[-3,-1],[0,1],[-2,-3],[-1,-1],[-2,0],[-1,1],[-2,3],[-2,1],[-1,0],[-6,0],[-1,-1],[1,-6],[1,-4],[1,-3],[-2,-2],[-4,0],[-4,1],[-1,3],[-1,1],[-5,-2],[-4,0],[-4,0],[-2,-2],[-2,-5],[-6,-1],[-4,2],[-5,-4],[-1,-3],[-2,0],[-4,2],[-2,1],[-2,-2],[-5,-2],[-2,-3],[-3,-4],[-3,-3],[-1,-3],[1,-2],[2,-2],[0,-1],[1,-2],[0,-3],[-4,-1],[0,-7],[-1,-5],[-2,-2],[-3,-2],[-2,-3],[-1,-7],[-3,-2],[0,-6],[-3,-3],[-3,-1],[-4,1],[-3,-6],[-3,-1],[-2,2],[0,6],[-3,-4],[-2,1],[-1,4],[-4,3],[-2,-1],[-2,-5],[-4,-4],[-5,-2],[-4,0],[-6,1],[-1,3],[-5,6],[0,13],[-2,3],[-2,1],[-5,-3],[-7,10],[-4,2],[-10,6],[1,7],[-1,4],[1,8],[0,6],[5,1],[6,2],[3,6],[1,3],[-2,6],[-1,8],[-1,1],[-3,-1],[-2,-4],[0,-2],[1,-3],[0,-4],[-2,-3],[-4,-2],[-4,1],[-2,3],[0,3],[3,2],[0,2],[-1,2],[1,3],[3,2],[0,3],[-1,5],[1,5],[0,3],[-3,0],[-2,3],[0,2],[-3,1],[-3,1],[-2,4],[0,2],[1,5],[-1,4],[-3,1],[-3,2],[0,3],[-2,2],[-2,2],[-3,-4],[-4,-2],[-5,2],[-2,3],[-2,1],[-3,-2],[-2,1],[-4,2],[-2,2],[-1,4],[-3,2],[-5,2],[-5,1],[-1,3],[2,7],[-3,1],[-1,1],[-2,3],[0,6],[1,5],[2,5],[4,2],[3,1],[1,1],[0,3],[-1,6],[0,4],[0,3],[2,3],[2,2],[0,3],[1,4],[1,2],[2,1],[2,0],[2,3],[1,7],[-1,6],[1,3],[2,5],[5,3],[2,0],[6,1],[1,2],[3,4],[0,4],[2,4],[2,3],[-1,2],[-4,-2],[-2,2],[2,8],[4,1],[2,-2],[1,-2],[4,3],[1,3],[3,-3],[1,5],[5,2],[3,0],[-2,-5],[1,-7],[1,-2],[3,-1],[5,1],[4,1],[4,-2],[5,-2],[3,-7],[4,4],[2,3],[5,0],[2,-1],[4,4],[1,3],[1,6],[0,7],[1,2],[-3,2],[0,6],[1,5],[-2,2],[-2,2],[0,2],[1,2],[-2,5],[1,4],[3,1],[3,-2],[3,3],[4,-2],[3,1],[2,0],[3,5],[3,1],[6,-3],[1,-4],[4,1],[1,1],[2,2],[5,7],[-2,6],[-3,3],[-2,0],[-1,4],[-1,4],[0,3],[-1,5],[0,6],[3,1],[4,-4],[1,-3],[2,0],[1,2],[4,-3],[3,-2],[3,1],[1,1],[-1,5],[-2,3],[-3,1],[-1,4],[0,5],[3,5],[2,1],[4,-2],[5,-4],[2,3],[0,1],[0,5],[-1,4],[-3,1],[-3,4],[1,4],[1,1],[1,2],[0,2],[-2,3],[0,3],[0,5],[2,4],[0,5],[1,0],[0,5],[3,1],[1,0],[1,-2],[2,-2],[2,2],[0,3],[1,0],[3,1],[2,1],[0,2],[3,1],[2,0],[3,-2],[2,-1],[1,-3],[3,-1],[0,1],[0,3],[1,2],[1,3],[3,5],[4,4],[4,4],[1,7],[2,6],[1,9],[0,6],[-1,9],[-1,4],[3,7],[0,3],[4,2],[2,2],[1,2],[1,7],[1,6],[-1,3],[-1,1],[-1,2],[2,8],[3,1],[3,-1],[1,-3],[2,1],[3,6],[3,4],[5,4],[2,11],[-2,5],[2,8],[2,4],[-2,7],[2,4],[4,6],[6,5],[5,7],[1,4],[4,4],[4,1],[7,1],[1,6],[0,5],[5,11],[6,7],[6,6],[6,4],[5,4],[6,8],[4,7],[14,15],[5,6],[5,4],[5,6],[4,6],[5,2],[19,1],[2,2],[4,2],[5,2],[3,-1],[4,2],[4,1],[10,0],[2,3],[3,0],[4,7],[4,4],[3,0],[4,3],[7,2],[7,1],[10,7],[7,2],[2,7],[7,3],[6,-1],[2,4],[2,1],[11,0],[3,-1],[3,-1],[6,4],[8,-1],[1,1],[3,0],[3,2],[6,4],[2,1],[3,0],[1,-3],[0,-2],[3,0],[2,-2],[2,-1],[3,-2],[1,2],[-1,3],[0,2],[1,2],[2,-1],[1,1],[-1,3],[0,1],[2,2],[4,3],[4,1],[2,-2],[-3,-4],[-4,-3],[-2,-2],[1,-2],[0,-1],[3,-3],[4,1],[4,1],[4,5],[0,3],[-1,4],[1,2],[2,4],[3,2],[5,0],[4,0],[1,1],[2,0],[3,-1],[1,-2],[0,-2],[0,-2],[0,-4],[1,1],[2,4],[1,1],[1,1],[0,3],[1,3],[3,3],[3,-2],[0,-3],[-2,-3],[0,-1],[-1,-2],[1,-2]],[[451488,230037],[1,-3],[1,1],[6,0],[1,1],[2,-2],[1,-3],[0,-2],[2,0],[2,1],[1,-1],[1,0],[3,0],[1,-3],[0,-2],[0,-1],[2,-1],[3,-3],[1,-2],[-1,-2],[3,-5],[2,0],[2,0],[2,0],[3,-2],[2,0],[3,-2],[2,-1],[1,-2],[2,-2],[0,-3],[2,-2],[0,-2],[0,-7],[0,-2],[0,-3],[-1,-3],[-2,-2],[-4,-1],[-2,-5],[-2,-2],[-3,-2],[-1,1],[-2,3],[-1,3],[1,3],[-5,2],[-2,2],[-2,4],[-1,-1],[-3,-1],[-4,1],[-2,-2],[-1,-2],[-1,-2],[0,-3],[0,-4],[1,-3],[-1,-6],[1,-2],[-1,-4],[-1,-2],[-3,-3],[0,-3],[-1,-3],[-3,0],[-3,0],[-6,-2],[-2,2],[-3,2],[-2,-1],[-1,-2],[-1,-6],[2,-3],[0,-2],[-2,-2],[1,-2],[0,-6],[-1,0],[-2,-3],[-3,0],[-3,-1],[-3,-1],[-3,0],[-2,0],[-1,2],[-2,1],[-4,-1],[-2,3],[-1,2],[-1,3],[-1,2],[-3,0],[0,-1],[-1,-2],[0,-1],[-1,-3],[-1,0],[-1,0],[-3,-2],[-4,-1],[-2,0],[-2,0],[-1,1],[-3,-2],[-1,-1],[-3,-3],[0,-2],[-3,-2],[-3,0],[-1,-1],[-1,-3],[1,-4],[2,-2],[0,-4],[1,-4],[0,-1],[0,-2],[1,-2],[-1,-2],[0,-1],[0,-3],[-1,-3],[-3,-5],[-1,-2],[-1,-1],[-2,-1],[1,-3],[-1,-3],[-1,-2],[-2,-2],[-1,0],[-2,-1],[-2,0],[-2,-1],[-3,-2],[-1,-2],[-1,-2],[-3,-3],[-2,-3],[0,-1],[-1,-3],[1,-2],[0,-1],[2,-2],[2,-1],[1,-1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-3],[0,-3],[-1,-5],[1,-4],[-1,-1],[-1,-1],[-1,-2],[0,-3],[-1,-2],[-1,0],[-2,-1],[0,-4],[0,-1],[-2,-3],[-1,-1],[-3,-5],[-1,-3],[-1,0],[-1,2],[-1,3],[-1,2],[-2,3],[-3,2],[-1,1],[-4,-1],[0,-2],[1,-8],[0,-1],[-2,-3],[-1,-1],[-2,0],[-2,0],[-1,-3],[0,-2],[0,-3],[1,-1],[0,-3],[-1,-3],[-1,-1],[0,-3],[-2,-4],[-1,-3],[-1,-5],[-3,-4],[0,-2],[-1,-2],[-2,-5],[0,-1],[0,-5],[-1,-5],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-2,0],[-1,1],[-1,1],[-3,0],[-1,-3],[-1,-1],[1,-5],[1,-5],[-1,-3],[0,-2],[-1,-2],[-2,-2],[-2,-2],[0,-3],[0,-4],[1,-4],[-1,-3],[-3,0],[-1,-2],[0,-2],[-1,0],[-2,0],[-1,-2],[-2,1],[-1,2],[-1,3],[-1,3],[0,2],[-3,1],[-2,1],[-6,0],[0,1],[0,4],[0,3],[2,4],[0,4],[-3,10],[1,1],[2,2],[0,3],[0,3],[2,4],[0,2],[1,6],[-2,4],[-2,1],[-2,4],[2,4],[1,3],[0,3],[0,4],[-2,3],[-2,1],[-1,0],[-3,-1],[-1,0],[-2,-3],[-1,-1],[-2,-2],[-1,-2],[0,-3],[-1,-2],[-2,-2],[-4,0],[-2,1],[-2,3],[-2,1],[-4,1],[-6,-2],[-1,1],[-1,5],[0,4],[2,3],[3,3],[3,3],[2,3],[1,3],[3,4],[1,5],[2,3],[3,3],[0,3],[1,4],[-2,6],[0,3],[1,5],[0,2],[1,6],[1,4],[1,2],[2,5],[0,3],[1,2],[1,4],[2,3],[3,2],[3,1],[2,1],[4,1],[5,-3],[1,-3],[0,-3],[2,0],[0,-2],[0,-1],[2,0],[1,-2],[1,-1],[1,2],[0,2],[1,2],[2,0],[2,-2],[3,-1],[2,2],[0,2],[0,4],[0,4],[1,2],[4,1],[2,-2],[0,-3],[0,-4],[1,-3],[1,-3],[0,-1],[4,-8],[1,-2],[2,-6],[0,-2],[0,-1],[-1,-3],[0,-3],[0,-5],[0,-2],[0,-1],[1,0],[2,0],[1,3],[2,2],[3,1],[1,0],[2,-1],[3,-3],[1,0],[2,1],[3,-1],[1,2],[0,3],[0,3],[-3,5],[-4,0],[-2,2],[1,4],[0,2],[-2,4],[-1,4],[1,4],[0,2],[-1,2],[-5,2],[-4,5],[0,4],[1,6],[0,3],[0,4],[0,4],[2,3],[1,1],[3,-1],[0,1],[2,4],[0,3],[0,6],[1,3],[3,2],[2,0],[2,-2],[5,-4],[1,1],[0,3],[1,3],[1,2],[1,3],[4,3],[-1,2],[0,4],[-1,3],[0,3],[-1,2],[0,2],[1,3],[0,2],[1,3],[-1,3],[-1,2],[-2,0],[-2,1],[-1,0],[-2,1],[-2,1],[-2,1],[-1,2],[0,3],[0,4],[0,2],[0,3],[-2,6],[-1,2],[-2,7],[2,3],[2,2],[2,2],[-1,2],[2,2],[3,2],[2,0],[1,1],[0,2],[2,1],[0,1],[0,1],[1,2],[2,0],[0,2],[1,2],[1,2],[3,3],[4,3],[1,1],[7,-1],[3,-2],[2,-5],[1,-3],[3,1],[1,3],[-1,3],[3,3],[0,2],[3,0],[8,1],[7,0],[1,1],[4,2],[1,1],[1,3],[3,4],[5,0],[1,0],[2,3],[7,3],[2,-1],[3,3],[1,2],[3,3],[3,1],[1,2],[2,1],[1,0],[6,4],[2,2],[2,2],[1,-1],[1,-2],[0,-3],[1,0],[1,-1],[2,1],[1,0],[1,1],[0,2],[-1,2],[-1,-1],[-2,2],[1,3],[3,2],[1,1],[1,1],[3,1],[4,-1],[3,-3],[-2,-1],[-1,0]],[[450936,230286],[-1,-2],[4,0],[7,1],[4,0],[6,2],[5,-1],[3,0],[2,1],[3,-1],[4,0],[4,0],[2,0],[3,-3],[2,-4],[3,4],[1,1],[2,2],[5,-2],[3,-3],[1,-6],[0,-5],[-1,-3],[-2,-2],[-3,-3],[0,-1],[0,-3],[2,-5],[2,-1],[0,-2],[2,-3],[3,-3],[2,-3],[2,-5],[0,-5],[2,-3],[0,-4],[0,-5],[1,-3],[2,-2],[0,-5],[-3,-5],[1,-6],[0,-4],[2,-2],[0,-6],[-3,-3],[0,-8],[-2,-7],[4,-3],[0,-6],[3,-4],[0,-3],[1,-2],[4,0],[2,3],[3,2],[0,1],[-1,3],[0,1],[-2,4],[2,3],[4,2],[1,-2],[2,0],[1,0],[3,3],[2,1],[2,0],[2,0],[1,0],[1,-1],[0,-4],[-2,-3],[-1,-1],[-2,-4],[1,-7],[-2,-3],[-3,3],[-3,5],[-3,0],[-1,-1],[1,-3],[-1,-5],[0,-6],[-1,-2],[-5,-2],[-1,-6],[-8,-4],[-2,-4],[-3,-4],[-2,-7],[-1,3],[-3,0],[-7,-7],[-4,4],[-2,-2],[0,-4],[3,0],[0,-5],[-2,-3],[1,-4],[0,-5],[-2,0],[-5,0],[-2,7],[-2,-2],[-3,-1],[-5,4],[-2,5],[-3,0],[-6,-2],[-5,0],[-3,-4],[1,-6],[0,-3],[-1,-3],[-3,-2],[-1,-1],[-4,4],[1,6],[-2,4],[-1,0],[-5,2],[-5,0],[-1,-3],[-9,-1],[0,-2],[-2,-1],[-2,-3],[0,-3],[0,-2],[-2,-2],[-2,-3],[-3,-2],[-1,-2],[-2,-3],[-1,-1],[-3,-5],[-2,0],[0,-5],[-1,0],[-3,4],[-3,3],[0,2],[0,4],[-7,-4],[-2,-4],[-1,-2],[-8,-2],[-1,-1],[-3,-3],[-3,-1],[-1,-2],[-5,-2],[0,1],[-1,0],[-1,2],[-3,0],[-3,1],[-3,7],[-2,5],[-1,3],[-1,4],[0,1],[-1,3],[-1,5],[2,4],[2,7],[-3,7],[2,7],[-3,0],[0,2],[0,4],[2,7],[1,2],[0,5],[-2,3],[2,1],[0,7],[-5,4],[-4,4],[0,7],[0,4],[0,6],[3,3],[7,3],[0,5],[0,3],[0,6],[1,4],[2,2],[5,3],[4,-2],[3,3],[0,4],[0,5],[-2,3],[1,3],[5,5],[6,1],[2,-1],[4,-2],[1,2],[1,6],[4,6],[4,4],[2,7],[4,5],[4,4],[0,1],[-1,6],[4,2],[3,-2],[6,4],[1,1],[2,6],[4,3],[2,2],[2,4],[0,1],[-5,3],[-3,-1],[-2,1],[-1,6],[0,2],[1,4],[6,3],[5,3],[5,0],[3,-1],[3,-3],[1,-5]],[[437652,230321],[-7,-5],[-6,9],[4,13],[9,16],[7,-1],[6,-12],[-2,-6],[-1,-4],[-10,-10]],[[437745,230559],[-1,-2],[-8,3],[-8,1],[-6,11],[1,13],[3,7],[9,11],[5,0],[-1,7],[-2,5],[1,3],[5,7],[9,5],[6,-3],[0,-10],[-5,-8],[-4,-3],[-1,-3],[-2,-10],[1,-7],[1,-9],[4,-4],[-3,-10],[-4,-4]],[[437982,230607],[6,-6],[-6,-15],[-2,-35],[11,-17],[4,-32],[-4,-30],[9,18],[25,9],[2,-29],[5,-35],[4,-12],[2,-35],[-6,-17],[-4,-33],[-19,12],[-8,-3],[-8,-33],[-2,-29],[-2,-21],[-21,-15],[-14,-9],[-36,-35],[-12,-4],[-11,0],[-16,9],[-17,29],[-11,20],[-13,32],[-4,9],[-4,8],[-9,6],[-12,9],[-7,8],[-23,15],[6,52],[2,27],[0,17],[8,12],[6,6],[23,21],[4,3],[4,15],[4,9],[-8,17],[-17,17],[12,33],[10,23],[9,12],[12,-5],[15,12],[19,0],[10,6],[34,0],[12,1],[-15,32],[0,14],[23,9],[25,-14],[4,-8],[1,-50]],[[437772,230698],[3,-7],[4,1],[6,4],[9,0],[19,-1],[5,-6],[-1,-7],[0,-8],[8,-6],[8,-5],[1,-4],[-8,-8],[-5,-2],[-6,-5],[-7,2],[-5,2],[-7,-4],[-9,6],[-7,5],[0,8],[-2,5],[-3,6],[-5,1],[-10,0],[-5,1],[-3,5],[-4,12],[12,8],[11,-2],[1,-1]],[[437838,230736],[4,-7],[3,2],[7,-9],[1,-8],[-4,-5],[-4,0],[-9,5],[-5,12],[0,9],[-7,10],[2,7],[2,5],[-3,7],[0,3],[-3,5],[0,10],[4,7],[4,-4],[3,-11],[8,-3],[1,-6],[0,-6],[-5,-6],[-1,-4],[3,-6],[-1,-2],[0,-5]],[[437612,230792],[2,-7],[8,0],[4,-3],[3,-9],[-7,-5],[-4,-2],[-1,-4],[1,-6],[3,-2],[0,-5],[-1,-9],[-3,-5],[-2,-5],[-5,-3],[-5,1],[-1,3],[-4,4],[-5,-3],[-3,-1],[-1,1],[0,9],[-3,0],[-4,-5],[-3,-8],[-2,-5],[4,-9],[1,-3],[0,-5],[-4,-2],[-4,2],[-6,0],[-7,0],[-5,4],[-1,2],[2,13],[2,8],[-1,5],[-5,2],[-6,-3],[-5,4],[-1,4],[0,10],[3,13],[-2,5],[2,4],[7,-2],[4,-3],[3,-5],[1,-10],[-2,-5],[1,-5],[6,3],[5,-7],[4,1],[6,-1],[3,3],[-1,10],[1,10],[-1,9],[3,8],[4,6],[6,6],[6,0],[7,-2],[3,-1]],[[437943,230791],[4,-3],[1,0],[6,-4],[3,-5],[2,-4],[-1,-10],[6,-4],[3,-6],[1,-7],[-2,-5],[-4,-2],[-4,-3],[-7,-4],[-5,0],[-5,1],[-2,2],[-2,5],[-4,8],[-2,0],[-7,3],[-2,9],[0,7],[-6,-1],[0,-10],[5,-9],[1,-6],[-4,-10],[-6,-3],[-10,4],[-8,-1],[-1,7],[-4,16],[1,10],[2,16],[-4,7],[-3,2],[-2,7],[0,7],[2,8],[6,3],[1,10],[1,4],[3,2],[5,16],[13,-8],[3,-6],[3,-7],[2,-8],[-2,-6],[4,-7],[-1,-3],[9,-2],[7,-5],[4,-5]],[[437718,230766],[-11,-8],[-8,4],[-3,4],[2,21],[0,3],[-4,6],[-2,0],[-14,2],[-1,12],[3,9],[4,9],[6,6],[6,4],[6,7],[10,8],[4,2],[3,-8],[1,-7],[9,-13],[5,-6],[4,-8],[6,-13],[-2,-6],[-8,-9],[-9,-11],[-7,-8]],[[437777,230815],[-4,-6],[-9,1],[-5,9],[-1,5],[-3,6],[-5,6],[-8,3],[-8,9],[-1,11],[0,8],[5,9],[11,0],[8,-4],[6,-1],[9,-8],[3,-7],[1,-18],[3,-12],[-2,-11]],[[437836,230902],[-10,-1],[-7,4],[-6,12],[-1,8],[7,3],[9,1],[9,1],[4,-6],[2,-12],[-3,-10],[-4,0]],[[437690,230886],[6,-15],[-3,-5],[-8,0],[-6,2],[-4,-1],[0,-12],[2,-4],[-8,-1],[-3,3],[-3,0],[-3,-6],[-5,1],[1,-10],[4,-6],[1,-7],[4,-20],[-6,-8],[-3,-5],[-4,-6],[-4,-3],[-12,0],[-2,4],[-4,13],[-5,11],[-5,-6],[-6,-2],[0,5],[-3,6],[-1,5],[-2,4],[0,5],[-8,5],[0,15],[0,5],[-3,7],[0,15],[6,11],[5,4],[2,10],[2,8],[1,13],[1,7],[-1,15],[4,3],[3,3],[10,-1],[4,-8],[7,-2],[5,-6],[3,-4],[0,-8],[-1,-7],[4,-9],[1,-3],[-1,-8],[4,-2],[4,-9],[3,-10],[4,7],[2,1],[-4,4],[-3,8],[-1,19],[3,3],[2,4],[4,11],[4,6],[4,4],[-1,3],[0,7],[6,7],[5,1],[3,-10],[5,-3],[0,-11],[-2,-2],[-4,-1],[-4,-6],[-1,-2],[-5,-7],[1,-3],[2,-7],[1,-11],[3,-3],[1,-3],[2,-2]],[[437625,230989],[-3,-3],[-4,2],[-5,2],[-6,4],[0,4],[4,6],[6,0],[7,0],[3,-2],[0,-2],[-2,-11]],[[437673,230973],[-7,0],[-2,1],[-3,8],[-3,6],[0,7],[2,11],[0,5],[12,9],[5,-2],[4,-4],[0,-6],[3,-6],[1,-5],[0,-10],[-2,-10],[-3,-3],[-7,-1]],[[437598,231004],[-2,0],[-2,5],[-2,3],[0,7],[4,6],[5,0],[3,-1],[1,-2],[3,-7],[0,-3],[-2,-5],[-2,-1],[-3,-2],[-3,0]],[[437620,231043],[-7,-4],[-5,3],[-4,5],[-2,8],[-3,3],[-4,4],[-4,4],[0,6],[0,5],[1,8],[0,4],[6,3],[4,0],[6,-5],[8,-8],[-1,-5],[8,-8],[1,-6],[-1,-5],[-3,-12]],[[437724,231079],[-3,0],[-4,0],[-3,4],[0,10],[1,5],[4,8],[2,4],[11,0],[2,-2],[3,-7],[-3,-8],[-1,-5],[-3,-5],[-6,-4]],[[437628,231116],[-2,-2],[-4,1],[-7,-3],[-7,4],[-3,3],[-4,12],[2,10],[4,8],[3,2],[5,1],[13,-3],[1,-8],[-1,-6],[-4,-5],[4,-14]],[[454757,232740],[4,-4],[3,0],[4,0],[2,-3],[-6,-10],[-4,-3],[0,-4],[2,-1],[3,-1],[6,-1],[3,-3],[3,-1],[4,0],[1,0],[3,-4],[3,-6],[3,-5],[4,-4],[3,-4],[2,-5],[4,-5],[3,-4],[2,-4],[0,-6],[1,-3],[4,-3],[0,-6],[0,-2],[-5,1],[-3,2],[-2,-5],[-1,-5],[-3,1],[-4,1],[0,-5],[1,-5],[6,-6],[5,-6],[-4,-10],[-1,-5],[-2,-5],[-1,-4],[-6,-7],[1,-3],[5,-3],[4,-5],[4,-5],[7,-7],[1,-5],[-5,-4],[-9,-2],[-5,-5],[-2,-5],[-1,-7],[-1,-4],[0,-4],[-6,-2],[-3,3],[-1,4],[0,5],[0,3],[1,3],[0,3],[-3,0],[-2,0],[-2,-1],[-2,-1],[-3,2],[-2,1],[-3,-2],[1,-5],[0,-5],[-6,-2],[-9,-1],[-5,0],[-5,-3],[-9,-4],[-4,-3],[0,-5],[1,-7],[-1,-5],[-2,-3],[2,-5],[5,-8],[0,-6],[-2,-2],[-2,0],[-6,0],[-7,0],[-2,-1],[-1,-5],[1,-1],[3,-4],[1,-5],[0,-6],[0,-2],[-1,-6],[1,-1],[1,-1],[1,-3],[-1,-2],[-1,-1],[-1,-4],[-1,-7],[0,-2],[-3,-3],[-1,-3],[-2,-1],[-1,-3],[-2,-2],[-4,-2],[-5,-1],[-9,3],[-5,3],[-6,0],[-4,0],[-7,2],[-7,2],[-5,3],[-1,5],[-1,10],[3,7],[0,2],[-3,0],[-4,0],[-1,-2],[-2,-1],[-9,0],[-5,6],[-1,10],[0,7],[1,8],[2,5],[4,8],[0,10],[0,6],[-5,15],[-1,8],[1,9],[0,5],[-1,4],[-3,6],[-3,8],[0,2],[-4,2],[-1,3],[-1,-1],[-2,1],[-1,1],[0,6],[-1,3],[0,9],[1,4],[3,5],[2,7],[7,0],[2,0],[3,8],[2,5],[9,11],[5,6],[1,6],[4,5],[3,3],[3,7],[2,3],[6,1],[5,0],[4,3],[2,1],[4,1],[7,6],[4,9],[5,0],[2,2],[2,3],[4,2],[1,9],[0,3],[-2,1],[-1,1],[-1,2],[0,4],[1,7],[6,3],[3,0],[4,2],[-1,0],[-2,1],[0,7],[3,7],[4,0],[4,0],[6,1],[4,2],[5,4],[5,3],[6,2],[3,-1],[0,-3],[-1,-3],[0,-4]],[[450709,236082],[3,-1],[3,2],[3,1],[6,2],[0,-2],[-1,-3],[-1,-2],[-2,-2],[1,-2],[6,-2],[3,0],[5,2],[8,6],[14,4],[6,4],[6,1],[3,1],[7,4],[8,2],[5,0],[5,3],[-1,4],[1,8],[2,1],[3,1],[1,0],[3,4],[3,1],[3,0],[1,0],[1,-2],[0,-3],[0,-5],[0,-2],[-2,-2],[0,-2],[1,-4],[3,0],[4,-2],[2,2],[2,1],[1,4],[3,4],[4,2],[1,2],[2,5],[5,1],[2,-4],[0,-6],[0,-7],[-1,-4],[-7,-5],[-3,-10],[7,-8],[4,-2],[5,1],[6,0],[6,0],[2,-2],[3,-5],[2,-6],[2,-4],[5,-6],[36,-25],[33,-25],[3,3],[7,1],[5,-10],[-4,-12],[-6,2],[-18,-105],[-3,-38],[2,-85],[-32,-1],[4,-30],[3,-21],[0,-7],[0,-7],[0,-6],[-2,-9],[1,-3],[2,-1],[4,-1],[3,-1],[6,-4],[12,-9],[22,-31],[11,-17],[4,-7],[4,-7],[3,-11],[2,-7],[5,-9],[4,-10],[3,-8],[3,-6],[4,-1],[6,0],[4,-4],[2,-6],[5,-8],[7,-8],[3,-4],[4,-6],[2,-7],[1,-7],[2,-5],[5,-6],[7,-7],[4,-4],[6,0],[5,-3],[3,-5],[5,-5],[4,-2],[11,-7],[2,-2],[4,-4],[2,-3],[3,-2],[1,-1],[3,-2],[4,-3],[4,-2],[3,0],[4,-1],[8,-5],[5,-2],[2,12],[22,-9],[-3,-11],[19,-8],[2,10],[21,-8],[-3,-13],[46,-21],[102,-47],[21,-7],[9,-4],[14,-4],[26,-9],[11,-7],[3,-3],[13,-6],[5,-3],[4,-5],[13,0],[8,-1],[10,-4],[10,0],[8,0],[9,1],[3,0],[10,0],[1,-14],[-1,-9],[-2,-5],[-3,-10],[-3,-7],[-4,-12],[-1,-16],[0,-14],[-4,-12],[-5,-14],[-5,-29],[1,-12],[7,-3],[8,-5],[10,-12],[0,-9],[-2,-8],[-7,-5],[-20,-8],[-7,-8],[-2,-11],[-1,-10],[-2,-9],[-18,-6],[-9,4],[0,8],[1,12],[2,3],[3,4],[1,7],[-2,0],[-6,-2],[-7,-3],[-8,-4],[-8,-5],[-3,-12],[-6,-10],[-3,-7],[-8,-10],[-20,-21],[-13,-6],[-11,8],[-7,2],[-12,-25],[-1,-12],[-1,-12],[-2,-15],[-4,-9],[-6,-5],[-10,-3],[-21,2],[-8,0],[-17,1],[-21,-4],[-6,-2],[-5,-4],[-6,-5],[-18,-1],[-11,-3],[-7,-7],[-3,-5],[-13,-3],[-13,0],[-8,-3],[-10,-1],[-14,-6],[-4,-3],[-19,-4],[-15,-5],[-22,-11],[-11,-8],[-16,-6],[-9,-5],[-1,-10],[-2,-9],[-13,-5],[-13,-1],[-4,0],[-14,7],[-4,7],[-8,9],[-6,3],[-11,8],[-13,2],[-19,4],[-7,0],[-11,0],[-39,9],[-35,1],[-2,-17],[-21,-16],[-14,-13],[-12,-43],[-13,-14],[-6,-16],[-1,-14],[-2,-10],[2,-7],[6,-1],[3,-1],[5,-17],[0,-9],[-1,-6],[-6,-6],[-7,-6],[-2,-6],[-10,-1],[-7,4],[-1,4],[-5,2],[-11,-12],[0,-8],[2,-10],[3,-7],[-1,-14],[-7,-10],[-1,-11],[1,-10],[1,-9],[-1,-8],[-4,-1],[-7,1],[-2,3],[1,5],[-2,-2],[-7,-6],[-4,-7],[-2,-11],[-1,-12],[-3,-8],[0,-8],[-5,-10],[-11,-32],[-4,-15],[-1,-5],[0,-11],[-1,-8],[-6,-11],[0,-10],[4,-9],[3,-2],[8,-5],[-3,-9],[-6,-5],[-4,-2],[0,-5],[5,-18],[0,-11],[-1,-3],[-9,-5],[-17,-5],[-14,14],[-21,-1],[-11,-12],[0,-16],[7,-15],[0,-12],[-14,-15],[-17,0],[-21,11],[-12,-16],[1,-15],[-25,-20],[-37,-20],[-28,2],[-27,17],[-7,-2],[-7,-2],[-3,2],[-4,6],[-12,12],[-8,4],[-8,1],[-6,-3],[-12,3],[-8,8],[-7,7],[-11,4],[-7,1],[-10,-1],[-7,0],[-9,-1],[-5,2],[-5,7],[-4,3],[-4,3],[-5,-1],[-6,-3],[-5,-2],[-8,0],[-5,2],[-9,8],[-1,4],[-4,0],[-2,-1],[-3,-2],[-11,1],[-7,3],[-8,3],[-6,4],[-1,7],[-6,6],[-9,0],[-4,-4],[-7,-4],[-5,-5],[-4,-6],[-3,-4],[-7,4],[-7,9],[-6,0],[-6,-6],[-1,-7],[2,-6],[1,-8],[0,-6],[-1,-1],[-9,-3],[-10,2],[-8,2],[-8,0],[-6,4],[-4,5],[0,6],[0,4],[0,5],[2,2],[2,1],[1,5],[0,3],[-1,4],[-2,4],[-4,9],[-4,-1],[-2,-2],[-2,-3],[-4,-1],[-2,2],[-4,5],[0,2],[-2,5],[-1,4],[-1,1],[-6,4],[-8,3],[-6,4],[-5,0],[-7,5],[-11,6],[-4,2],[-8,6],[-4,1],[-8,5],[-8,2],[-2,4],[-5,4],[-1,6],[2,6],[5,4],[4,4],[5,2],[6,4],[3,6],[-1,4],[-2,4],[0,1],[-5,5],[-8,3],[-2,3],[-3,7],[1,10],[1,5],[3,7],[-1,5],[-4,0],[-8,4],[-5,6],[-1,10],[1,5],[2,11],[0,8],[-8,5],[-9,2],[-7,-1],[-9,2],[-5,10],[-3,15],[1,8],[-4,7],[-5,7],[-3,15],[1,7],[-4,6],[-4,4],[-4,10],[-5,13],[-1,5],[-1,9],[-1,5],[-2,9],[-2,4],[-2,0],[-8,0],[-3,7],[-3,4],[-4,5],[-1,4],[-3,0],[-2,-1],[-3,-2],[0,-2],[-3,-1],[-3,1],[-1,5],[-5,19],[-2,7],[0,4],[-2,4],[-2,1],[-3,-1],[-2,-2],[-1,3],[-1,11],[-3,7],[-1,8],[1,15],[2,6],[2,6],[6,1],[4,-2],[5,-1],[5,-3],[1,-4],[0,-4],[0,-7],[0,-6],[1,-3],[3,-4],[3,1],[4,2],[5,3],[0,4],[0,8],[1,4],[2,6],[3,3],[2,2],[1,4],[0,3],[-1,2],[-2,2],[0,3],[-1,6],[0,23],[-1,5],[-2,3],[-2,3],[-1,2],[-2,5],[0,4],[0,6],[0,7],[5,12],[1,1],[0,2],[3,3],[2,1],[2,0],[2,-2],[0,-1],[1,-3],[2,-2],[2,-4],[2,-3],[2,-2],[1,0],[3,1],[0,1],[-1,6],[0,5],[0,3],[2,3],[1,3],[0,4],[2,6],[2,3],[4,1],[3,2],[1,4],[1,4],[-2,11],[0,2],[-4,14],[-3,11],[-11,18],[-1,4],[-2,3],[-2,5],[-2,5],[-3,4],[-2,2],[-2,6],[-1,6],[-1,5],[-3,14],[-1,6],[0,8],[0,21],[7,8],[7,4],[4,9],[5,4],[7,1],[8,1],[4,1],[3,4],[4,0],[1,-4],[3,0],[7,3],[4,5],[10,6],[4,3],[6,4],[7,-1],[3,1],[3,4],[5,7],[7,5],[2,6],[3,4],[2,5],[1,4],[2,7],[3,2],[4,0],[11,7],[2,1],[7,6],[1,7],[1,6],[0,4],[1,1],[7,3],[8,-2],[7,-2],[13,6],[8,5],[4,3],[3,5],[7,5],[2,6],[14,2],[1,0],[4,0],[6,3],[1,-4],[2,-4],[4,-1],[7,4],[5,3],[8,1],[8,0],[5,1],[6,0],[6,0],[4,-4],[4,-2],[5,-3],[5,-1],[4,-2],[11,1],[0,1],[6,3],[5,1],[6,7],[4,4],[3,2],[3,1],[1,7],[1,5],[2,4],[3,2],[5,1],[3,6],[1,3],[7,-4],[6,-7],[17,27],[17,67],[14,74],[2,21],[-3,10],[-7,4],[-4,0],[-4,0],[-6,2],[-1,6],[0,7],[1,6],[1,5],[-2,7],[0,6],[0,8],[0,5],[-1,6],[1,6],[2,11],[2,13],[-1,5],[0,6],[0,5],[5,5],[5,4],[5,5],[1,6],[2,9],[7,18],[1,13],[1,14],[1,24],[-2,16],[0,10],[0,8],[0,5],[-7,16],[0,27],[-2,61],[-1,2],[-1,5],[-1,2],[-1,7],[-2,9],[-1,5],[0,6],[0,5],[2,4],[6,4],[11,1],[5,1],[5,0],[5,2],[4,1],[1,3],[3,2],[3,0],[3,-2],[5,0],[3,2],[3,5],[4,7],[3,3],[3,4],[3,6],[3,3],[6,2],[9,3],[9,4],[25,24],[15,17],[5,3],[4,5],[5,3],[5,5],[6,7],[4,3],[6,5],[5,2],[1,5],[2,7],[-1,6],[5,21],[9,19],[10,15],[11,17],[7,25],[19,42],[12,19],[24,20],[18,25],[9,9],[5,-1],[4,-2],[4,-3],[5,-2],[2,-3],[3,-3],[2,-1],[5,-5],[6,-8],[1,-3],[3,-4],[1,-4],[2,-5],[1,-1],[3,-3],[2,-5],[0,-4],[2,-4],[6,-5],[12,-8],[5,-4],[4,-1],[5,-1],[3,0],[5,-1],[5,-2],[5,-2],[4,-4]],[[453784,238042],[2,-5],[3,0],[5,-2],[4,-4],[2,-13],[-2,-5],[-1,-8],[-1,-4],[-3,-9],[-6,-8],[-5,-3],[-1,-3],[1,-6],[-5,-2],[-4,2],[-2,2],[-4,1],[-3,-5],[2,-2],[1,-3],[-1,-4],[-1,-1],[-3,-7],[-1,-3],[-3,-4],[-2,1],[-3,1],[-4,3],[-1,1],[-3,1],[0,-3],[0,-5],[-1,-5],[-2,-4],[-3,-3],[-1,-2],[3,-6],[4,-2],[2,-2],[1,-5],[0,-2],[-1,-1],[3,-4],[2,-1],[-3,-4],[-1,-1],[-4,-7],[-1,-7],[-1,-3],[0,-6],[-1,-7],[1,-8],[3,-3],[4,-4],[3,-1],[3,1],[6,-1],[5,-2],[0,-5],[0,-4],[-1,-3],[-1,-5],[-1,-3],[10,-17],[4,-5],[4,-6],[3,-4],[0,-5],[0,-5],[-2,-7],[0,-8],[3,-3],[3,-5],[1,-2],[6,-11],[3,-1],[3,-3],[-2,-7],[1,-6],[1,-3],[-1,-9],[-1,-3],[-2,-4],[-1,-4],[2,-4],[5,-4],[2,-6],[1,-7],[0,-11],[1,-5],[-1,-8],[0,-4],[0,-7],[1,-3],[10,-32],[9,-24],[20,-52],[21,-51],[25,-36],[22,-30],[9,1],[2,2],[4,2],[6,-3],[3,-4],[2,-6],[8,-3],[3,-3],[6,-12],[3,-6],[3,-7],[2,-5],[2,-4],[21,-25],[33,-41],[30,-38],[5,8],[6,-8],[-8,-19],[24,-41],[25,-39],[18,-22],[7,-2],[4,-2],[6,0],[8,0],[7,-1],[14,-8],[7,-4],[6,-3],[3,-2],[4,-7],[9,-9],[10,-6],[7,-4],[11,-2],[10,-4],[5,0],[12,-4],[5,0],[13,-3],[11,1],[4,0],[20,13],[10,16],[12,6],[11,1],[4,5],[2,8],[10,4],[11,0],[4,4],[2,5],[0,6],[0,6],[1,13],[4,5],[5,-1],[4,-3],[5,-2],[4,3],[2,3],[2,5],[6,11],[2,3],[-3,1],[-3,0],[-2,2],[0,4],[1,3],[3,2],[-4,2],[-1,4],[2,5],[5,2],[4,1],[2,1],[1,5],[4,3],[2,1],[4,-1],[-1,4],[0,3],[3,4],[3,0],[0,1],[0,4],[3,3],[4,0],[2,-3],[1,-4],[-4,-3],[-2,-2],[2,-2],[2,-3],[-2,-4],[-2,-3],[-5,0],[-1,-9],[13,4],[12,0],[14,-2],[7,-2],[7,-1],[3,6],[1,8],[2,7],[3,5],[5,4],[8,8],[5,4],[13,8],[8,4],[4,5],[7,4],[6,-1],[6,-3],[6,-2],[3,0],[4,4],[5,4],[6,0],[4,-2],[3,-1],[1,-3],[1,-6],[-1,-2],[-3,-6],[-1,-3],[0,-6],[3,-4],[3,-3],[2,-3],[5,-8],[0,-3],[-2,-15],[-3,-5],[-4,-5],[-4,-8],[-3,-6],[-3,-6],[-3,-6],[0,-3],[1,-2],[6,-16],[2,-9],[1,-12],[-1,-13],[4,-9],[3,-14],[0,-8],[0,-9],[2,-14],[-3,-9],[0,-19],[5,-11],[6,-16],[8,-14],[1,-2],[7,0],[5,0],[5,-5],[5,-3],[4,-4],[4,-5],[5,-5],[5,-4],[1,-3],[2,-10],[0,-9],[-3,-5],[-3,0],[-5,1],[-4,3],[-3,2],[-5,2],[-5,-4],[-1,-5],[-4,-12],[-4,-9],[-4,-11],[-2,-7],[1,-6],[22,-22],[8,-7],[7,0],[8,-1],[6,-4],[4,-1],[8,0],[6,0],[6,-1],[4,-1],[2,-2],[6,-2],[4,-1],[4,0],[3,2],[3,0],[5,0],[4,-1],[2,-5],[0,-4],[-1,-4],[0,-4],[5,-3],[6,-1],[3,-4],[3,-3],[3,-2],[0,-4],[3,-6],[3,-4],[2,-4],[1,-4],[-1,-4],[2,-1],[1,-6],[1,-3],[-1,-8],[0,-5],[-1,-6],[-1,-3],[2,-15],[0,-11],[-3,-13],[-2,-4],[-3,-10],[0,-6],[-1,-6],[-3,-8],[-9,-7],[-6,-5],[-4,-5],[-5,-8],[-3,-6],[-1,-7],[-1,-6],[-1,-9],[1,-7],[-1,-8],[-2,-6],[-1,-4],[-4,-6],[-2,0],[-3,-2],[-4,-1],[-3,-1],[-4,-1],[-4,-1],[-3,-3],[-3,-6],[2,-4],[0,-7],[-2,-10],[-5,-4],[-7,-3],[-5,-4],[-10,0],[-6,0],[-12,0],[-8,0],[-7,-3],[-9,-1],[-6,-3],[-4,-3],[-4,-4],[-5,-9],[-5,-17],[-6,-20],[4,-2],[0,-10],[-4,-5],[-1,-3],[-3,-9],[-2,-7],[-1,-8],[1,-14],[-2,-12],[-2,-9],[-6,-5],[-8,0],[-8,0],[-9,-2],[-1,-4],[-1,-6],[-2,-12],[-6,-7],[-9,-3],[-6,0],[-12,0],[-6,-3],[-11,-21],[0,-7],[0,-3],[-16,-20],[1,-9],[3,-8],[4,-4],[4,-9],[3,-7],[2,-7],[-1,-8],[-4,-12],[-3,-9],[-11,-6],[-9,0],[-5,2],[-4,9],[-4,5],[-4,-1],[-6,0],[-8,-3],[-8,-8],[-8,-6],[2,-14],[1,-6],[0,-9],[-4,-13],[-4,-9],[-8,-5],[-9,7],[-4,5],[-3,2],[-8,0],[-6,-2],[-9,-3],[-14,-9],[-7,-3],[-6,0],[-6,-1],[-4,1],[-7,1],[-4,3],[-6,6],[-5,9],[-5,9],[-1,4],[-4,9],[-14,8],[-16,2],[-3,0],[-7,-2],[-4,-3],[-27,-17],[-4,-6],[-15,-7],[-2,-16],[-3,-10],[-5,-17],[-9,-7],[-9,-6],[-12,-10],[-7,-5],[-8,-10],[0,-9],[0,-10],[-3,-10],[-5,-14],[-2,-2],[-3,-9],[-3,-8],[-4,-5],[-7,-7],[-8,-5],[-8,-5],[-3,0],[-11,1],[-6,-16],[-5,-17],[-4,-17],[4,-12],[3,-16],[2,-11],[0,-6],[-1,-10],[-2,-7],[-3,-12],[7,-4],[3,0],[1,-5],[0,-7],[-3,-9],[-2,-3],[-11,-19],[-3,-7],[-3,-16],[-3,-18],[-3,-7],[-7,-7],[-7,0],[-7,2],[-3,4],[-10,6],[-3,6],[-4,3],[-4,4],[-3,7],[-11,7],[-9,-3],[-11,-7],[-6,-5],[-5,-12],[0,-7],[-3,-12],[-3,-3],[-8,-1],[-6,-5],[-3,-8],[-3,-7],[0,-5],[-6,-10],[-5,-10],[-4,-1],[-5,0],[-4,0],[-4,3],[-2,1],[-7,-1],[-5,0],[-4,-1],[-2,-4],[-2,-9],[-3,-5],[-6,-6],[-8,-4],[-2,0],[-6,-2],[-4,-3],[-18,-15],[-6,-7],[-4,-7],[-5,-6],[-2,-6],[-3,-6],[-2,-2],[-1,-7],[-2,-15],[-5,-3],[-9,0],[-6,5],[-4,9],[-3,10],[-3,8],[-3,4],[-6,7],[-7,3],[-7,0],[-4,-1],[-3,0],[-9,-5],[-3,-6],[-4,-8],[-1,-5],[0,-5],[0,-10],[0,-7],[-5,-7],[-6,-10],[-6,-3],[-4,-2],[-9,-1],[-8,0],[-5,3],[-3,4],[-7,-1],[-3,-2],[-7,-3],[-6,-9],[-4,-1],[-2,-1],[-7,-3],[-2,2],[-3,1],[-3,0],[-3,0],[-4,-6],[-4,-4],[-6,0],[-3,-1],[-3,0],[-6,-1],[-5,0],[-13,7],[-17,-7],[-8,5],[-18,7],[-1,3],[-2,8],[-2,4],[-5,3],[-11,0],[-6,6],[-2,6],[-7,5],[-2,0],[-7,-3],[-5,-2],[-3,-1],[-7,-5],[-5,-6],[-7,-6],[0,-5],[3,-8],[1,-5],[-2,-5],[0,-5],[-1,-4],[-4,-3],[-2,-1],[-4,0],[-3,1],[-3,2],[-2,2],[-5,-3],[-5,-1],[-5,-3],[-8,-9],[1,-10],[0,-9],[-1,-6],[-10,-9],[-8,0],[-10,3],[-6,-1],[-1,-6],[-1,-7],[-1,-5],[-8,-9],[-2,-2],[-8,-5],[3,-10],[0,-3],[-4,-12],[-4,-10],[-2,-7],[4,-8],[4,-1],[3,-3],[4,-1],[1,-7],[-1,-4],[-5,-7],[-4,-1],[-4,-2],[0,-5],[0,-4],[3,-5],[5,-3],[2,-1],[0,-3],[0,-5],[-1,-6],[-5,-7],[-17,-12],[-5,-5],[-4,-10],[0,-11],[-2,-7],[-3,-10],[-3,-7],[-2,-5],[-3,-7],[-2,-13],[-2,-10],[-1,-12],[-1,-11],[-1,-12],[-4,-6],[-1,-9],[0,-7],[0,-8],[-3,-49],[-1,-14],[-1,-18],[0,-13],[-1,-13],[1,-17],[0,-11],[0,-10],[-3,-19],[-2,-14],[-3,-10],[-2,-10],[-3,-12],[-1,-10],[-3,-9],[-14,-34],[-11,-24],[-20,-27],[-19,-23],[-20,-12],[-24,-12],[-33,-12],[-22,-16],[-19,-16],[-26,-28],[-21,-37],[-17,-38],[-12,-42],[-9,-38],[-2,-69],[4,-30],[0,-42],[9,-31],[15,-64],[14,-116],[45,-219],[34,-101],[26,-63],[26,-87],[25,-131],[-1,-33],[41,-196],[4,-22],[4,-15],[2,-7],[2,-18],[-4,-7],[8,-27],[3,-9],[10,-6],[9,1],[23,10],[2,-7],[-20,-13],[10,-4],[1,-46],[-19,-10],[5,-38],[16,-10],[15,-117],[6,-39],[15,-3],[86,21],[0,4],[39,7],[3,-30],[-38,-10],[0,7],[-101,-31],[16,-93],[15,-52],[8,-19],[20,2],[10,-1],[0,5],[13,6],[3,-12],[106,42],[9,-25],[-119,-44],[2,-10],[10,-53],[24,5],[3,-27],[-41,-16],[5,-29],[-1,-15],[-2,-12],[-4,-12],[-9,-8],[-5,-2],[-25,-17],[-32,-25],[7,-33],[19,-58],[50,-120],[75,-118],[18,-17],[69,-64],[39,-23],[46,19],[43,32],[33,23],[10,22],[-7,28],[-17,73],[96,73],[-3,13],[105,67],[55,19],[5,-31],[27,-2],[6,22],[16,-11],[-10,-23],[9,-24],[28,-44],[13,-13],[19,-9],[26,-2],[19,7],[13,-1],[13,-7],[9,-4],[18,-2],[17,0],[30,-10],[32,-20],[11,-7],[8,0],[7,2],[14,-5],[6,-4],[5,2],[4,0],[4,-5],[21,-16],[20,-9],[24,-5],[20,2],[12,2],[15,2],[14,5],[-1,8],[18,-1],[15,-6],[14,-13],[6,-12],[7,-17],[1,-10],[0,-11],[-2,-7],[5,-7],[-1,-7],[-2,-4],[2,-9],[0,-6],[-17,-49],[-2,-80],[-8,-120],[6,-44],[8,-31],[-17,-19],[-3,-35],[3,-29],[8,-18],[3,-23],[0,-26],[-1,-13],[4,-12],[22,-15],[24,-36],[-42,-62],[9,-15],[-8,-12],[-10,14],[-16,-24],[-9,-62],[-7,2],[12,70],[-16,20],[-20,30],[-16,-1],[-23,-11],[-19,-16],[-34,-35],[-20,-39],[-20,-47],[-5,-17],[14,-28],[79,-107],[5,4],[3,0],[2,-2],[1,0],[6,2],[7,1],[14,9],[3,-8],[-21,-12],[-6,0],[-15,-7],[-92,132],[-7,-17],[-25,-15],[-96,-37],[5,-39],[-9,-11],[-6,-7],[-8,1],[-4,8],[-4,5],[-1,2],[-2,8],[-15,7],[-6,6],[-11,1],[-5,-2],[-10,-5],[-6,-5],[-4,-6],[-16,-15],[-5,-10],[-8,-9],[-7,-5],[-6,-5],[-5,-6],[-2,-5],[-6,-9],[-4,-7],[-3,-9],[-2,-3],[-3,-9],[-6,-14],[-3,-8],[-6,-8],[-5,-10],[-3,-8],[-4,-7],[-11,-14],[-4,-3],[-4,-3],[-14,-10],[-4,-6],[-8,-9],[-5,-3],[-5,-5],[-2,-3],[-4,-5],[-8,-21],[-4,-14],[-8,-13],[-7,-7],[-5,-8],[-1,-10],[-3,-6],[-15,-12],[-11,-20],[-19,-103],[5,-48],[51,-20],[34,-44],[-65,-136],[-30,14],[-90,55],[-14,8],[-19,-13],[-130,-50],[-57,-43],[-35,-50],[-8,-40],[14,-12],[2,-7],[4,-1],[6,0],[0,-4],[-1,-3],[-3,-7],[-4,-1],[-1,-11],[1,-13],[0,-9],[-4,-11],[-2,-5],[-5,-19],[-14,-15],[-21,-34],[-30,-20],[-46,-51],[-32,-42],[-15,-46],[15,-21],[1,-6],[1,-3],[-3,-21],[-5,-10],[-4,-6],[-5,-5],[-4,-8],[-2,-7],[-1,-2],[-8,-20],[-4,-9],[-1,-12],[0,-3],[-1,-5],[-2,-5],[-2,-3],[-10,-12],[-6,0],[-5,0],[-14,-6],[-6,-3],[-7,-3],[-6,-6],[-4,-4],[-4,-4],[-2,-5],[-5,-9],[-2,-3],[-11,-23],[-4,-10],[-6,-10],[-4,-8],[-3,-8],[-3,-4],[-6,-6],[-3,-3],[-8,-13],[-7,-16],[-7,-11],[-6,-5],[-2,-5],[-3,-10],[-2,-9],[-2,-5],[-14,-20],[-7,-6],[-12,-11],[-12,-12],[-12,-17],[-4,-13],[-9,-7],[-4,-10],[-3,-4],[-5,-3],[-6,-2],[-3,-1],[-1,1],[-2,3],[0,5],[1,6],[2,7],[2,5],[0,4],[-2,3],[-6,3],[-5,0],[-13,-1],[-7,4],[-8,1],[-10,0],[-3,0],[-9,0],[-3,1],[-7,0],[-21,0],[-16,2],[-9,3],[-8,2],[-10,6],[-13,6],[-8,7],[-7,11],[-5,12],[-3,8],[-43,51],[-80,38],[-45,27],[-51,18],[-80,21],[-101,6],[-5,-23],[-7,-1],[-8,-6],[-3,-12],[-4,-5],[-6,-7],[-6,-4],[-8,-8],[-7,-9],[-3,-8],[-7,-25],[-106,48],[-1,-7],[-6,5],[6,44],[-7,13],[-7,19],[-19,30],[-10,17],[-16,20],[-29,35],[-22,19],[-36,28],[-56,37],[-37,35],[-30,34],[-27,23],[-22,21],[-16,11],[-14,8],[-9,-36],[-10,4],[10,37],[-18,7],[-13,7],[-10,7],[-37,26],[-32,19],[-25,13],[-34,17],[-29,16],[-18,10],[-36,16],[-26,9],[-25,8],[-24,11],[-19,14],[-39,39],[-32,32],[-24,22],[-13,22],[-5,26],[-1,16],[-1,33],[4,21],[10,19],[13,31],[13,13],[14,9],[22,21],[14,12],[52,76],[22,40],[20,35],[11,22],[12,15],[15,9],[22,5],[21,0],[19,-2],[21,-8],[32,-7],[47,1],[89,-12],[153,1],[25,0],[35,2],[29,-7],[15,-1],[35,13],[56,33],[63,50],[54,54],[22,39],[10,30],[2,31],[5,38],[8,20],[11,17],[2,16],[16,30],[17,93],[13,81],[27,228],[-4,99],[-10,278],[-28,260],[-3,26],[-23,158],[-67,267],[-66,186],[-41,85],[-5,5],[-7,22],[0,10],[0,7],[-6,14],[-8,22],[-16,-1],[-9,-1],[-9,0],[-6,3],[-5,11],[0,8],[1,5],[0,6],[-65,4],[0,12],[23,-1],[0,-7],[41,1],[0,9],[-3,5],[0,2],[2,4],[5,3],[4,3],[0,7],[-5,6],[-5,6],[-6,7],[1,8],[2,4],[3,2],[2,5],[-2,7],[-4,6],[-3,4],[2,7],[2,3],[4,2],[4,10],[-2,2],[-1,5],[0,7],[2,4],[-2,4],[1,7],[1,2],[1,5],[5,5],[4,-2],[5,3],[4,5],[3,3],[1,7],[2,2],[3,3],[8,-2],[3,-9],[4,0],[3,0],[1,-3],[5,0],[7,-4],[0,-8],[-4,-6],[-3,-10],[0,-8],[4,-4],[1,0],[3,0],[4,3],[5,0],[5,-2],[6,1],[6,5],[8,3],[2,4],[6,4],[6,9],[7,4],[96,148],[21,33],[30,69],[22,23],[14,16],[30,37],[0,8],[4,12],[3,17],[5,17],[15,13],[8,7],[5,5],[10,6],[11,4],[4,10],[1,20],[-1,21],[-7,78],[-16,83],[-3,57],[-9,41],[-47,200],[-43,142],[-72,169],[-65,132],[-28,67],[-42,71],[-61,123],[-247,403],[-35,76],[-37,84],[-29,75],[-16,66],[-2,55],[4,58],[16,48],[19,39],[16,48],[34,86],[15,53],[3,37],[9,42],[13,24],[22,19],[52,31],[27,6],[26,0],[30,-5],[32,-1],[32,4],[26,8],[28,3],[17,-2],[46,-26],[30,-9],[18,-1],[27,10],[33,17],[29,21],[16,16],[6,15],[10,6],[5,0],[15,36],[14,13],[35,73],[32,86],[15,-9],[4,8],[10,6],[9,-1],[7,-8],[2,-11],[5,-8],[3,-5],[1,-8],[24,2],[7,4],[3,2],[24,45],[21,50],[0,8],[5,12],[10,-7],[45,99],[39,91],[20,134],[14,130],[7,127],[1,122],[-4,63],[-7,0],[-12,125],[-6,57],[-7,46],[-43,40],[-2,-2],[-10,5],[-2,8],[0,7],[0,8],[-2,8],[-8,37],[-6,4],[-6,6],[-2,7],[-11,11],[-6,-5],[-5,3],[-2,7],[0,5],[3,1],[4,1],[1,3],[-1,3],[0,2],[0,1],[0,3],[-2,3],[-3,0],[-3,-1],[2,27],[13,0],[2,-2],[1,-2],[-1,-3],[-2,-2],[-1,-5],[-2,-3],[-1,-3],[0,-3],[2,-1],[3,0],[1,-2],[-1,-1],[-1,-1],[-1,-3],[0,-2],[0,-4],[1,-3],[0,-2],[4,-3],[4,-3],[3,-3],[3,-2],[3,-3],[1,-4],[2,-1],[3,1],[3,-1],[2,-1],[4,-2],[1,0],[6,-3],[1,0],[3,0],[7,-2],[3,-2],[8,2],[3,5],[2,2],[2,-4],[1,-1],[5,0],[3,-3],[3,-3],[4,-2],[8,-4],[5,-5],[3,-3],[5,-2],[5,0],[3,2],[3,0],[4,4],[4,4],[1,5],[2,3],[1,5],[1,4],[2,8],[3,3],[2,2],[4,0],[2,-3],[1,-4],[-1,-4],[-2,-6],[-1,-3],[-1,-5],[0,-4],[-1,-5],[13,-16],[32,-28],[17,-15],[30,-29],[47,-37],[55,-39],[25,-16],[21,-6],[8,-6],[45,-19],[40,-12],[33,-4],[0,14],[4,0],[1,-14],[21,1],[2,10],[8,10],[18,13],[14,12],[-1,15],[4,1],[1,-10],[8,14],[5,12],[-3,17],[-1,9],[-3,11],[-5,4],[-2,6],[2,8],[2,7],[2,3],[4,-2],[3,-3],[3,-1],[4,-1],[3,-2],[10,-1],[3,1],[4,3],[1,7],[-2,7],[-1,4],[-2,5],[1,6],[4,4],[4,-2],[2,-2],[1,-3],[2,1],[5,2],[12,6],[5,2],[2,2],[3,3],[4,7],[0,6],[3,4],[5,0],[3,-1],[2,-1],[5,5],[7,2],[4,6],[2,5],[3,3],[6,6],[2,4],[-1,6],[2,4],[5,2],[0,2],[7,1],[3,-2],[4,-1],[3,1],[2,3],[1,6],[2,8],[3,4],[2,2],[4,1],[1,7],[2,4],[-3,4],[1,5],[5,5],[5,3],[4,4],[2,3],[4,-1],[3,-2],[1,-2],[6,-1],[3,-2],[3,-2],[3,-3],[5,0],[3,1],[5,0],[8,2],[6,2],[7,2],[5,0],[3,0],[3,4],[3,2],[3,3],[2,3],[4,8],[4,2],[5,2],[5,3],[6,3],[4,4],[4,3],[1,5],[2,4],[0,5],[1,6],[1,5],[1,2],[1,1],[0,8],[3,4],[4,-2],[3,-1],[2,-2],[1,-3],[1,-2],[1,-4],[0,-2],[1,-4],[-1,-3],[0,-2],[4,-3],[2,-2],[2,-1],[7,6],[5,6],[3,4],[1,4],[0,3],[3,3],[5,5],[3,2],[5,0],[3,-2],[3,-1],[7,-4],[1,8],[-4,5],[-6,5],[-2,8],[5,9],[1,2],[0,3],[5,6],[5,4],[7,7],[3,6],[8,-2]],[[448306,239042],[13,-8],[12,-11],[7,-16],[3,-13],[9,-3],[4,3],[4,7],[2,12],[11,-1],[10,-9],[6,-7],[2,-12],[-3,-7],[-4,-7],[-5,-9],[-1,-3],[6,-7],[12,2],[7,4],[9,5],[12,1],[10,-4],[1,-8],[0,-8],[8,-11],[6,-5],[8,1],[9,1],[7,0],[3,-3],[1,-1],[-2,-5],[-3,-3],[-4,-1],[-2,-2],[-3,-1],[-2,-10],[14,-28],[5,-2],[8,-1],[6,1],[3,0],[6,2],[8,6],[3,3],[2,-5],[4,-4],[2,5],[10,0],[12,-6],[5,-3],[13,-1],[13,-9],[10,-3],[8,-1],[6,-3],[10,-4],[11,-3],[8,-1],[16,4],[8,2],[9,0],[8,-2],[6,-3],[8,-8],[6,-7],[7,-11],[0,-7],[0,-6],[0,-4],[-3,-1],[-3,0],[-5,-1],[-4,-1],[-5,-1],[-3,-1],[-5,0],[-8,1],[-5,1],[-4,3],[-9,5],[-5,2],[-8,-6],[-5,-4],[-5,-3],[-11,2],[-6,0],[-4,0],[-5,0],[-5,0],[-5,0],[-4,-4],[-7,-15],[1,-10],[0,-11],[0,-7],[0,-5],[-4,-10],[-1,-10],[0,-5],[2,-8],[3,-7],[5,-7],[6,-3],[3,1],[4,-2],[9,3],[5,2],[5,3],[3,4],[5,5],[5,1],[6,1],[6,3],[6,4],[7,4],[7,2],[3,-4],[5,-13],[0,-7],[-2,-8],[-3,-6],[-5,-2],[-4,-5],[-4,-2],[-6,-13],[-1,-6],[0,-6],[0,-7],[6,-19],[0,-4],[4,-17],[3,-15],[7,-10],[6,-10],[8,-8],[6,-6],[11,-6],[21,-20],[11,-9],[13,-8],[4,-7],[6,-9],[13,-12],[16,-19],[9,-10],[10,-7],[7,-5],[32,-30],[37,-35],[0,-7],[3,-2],[5,-3],[2,-9],[4,-1],[9,-7],[6,-4],[8,-8],[7,-7],[5,-4],[19,-21],[7,-6],[5,-6],[6,-6],[7,-5],[26,-20],[6,-6],[15,-10],[13,-13],[7,-2],[13,2],[6,-1],[6,-4],[1,-3],[2,-7],[2,-7],[10,-12],[6,-7],[5,-5],[2,-6],[-3,-8],[-3,-7],[-3,-6],[-6,-3],[-5,-4],[-6,-6],[-5,-3],[-4,-6],[-1,-1],[-3,0],[-1,0],[-29,24],[-14,14],[-8,16],[-6,15],[-9,11],[-11,10],[-7,12],[-24,23],[-25,26],[-14,7],[-17,11],[-8,9],[-12,16],[-13,13],[-4,4],[-11,5],[-5,2],[-7,-3],[-3,-5],[-3,-5],[-1,-4],[0,-12],[1,-6],[-1,-9],[-1,-5],[-5,-5],[-2,-3],[-2,-3],[-5,-8],[-4,-2],[-7,0],[-6,-1],[-6,0],[-4,0],[-5,0],[-6,4],[-4,5],[-5,10],[-4,7],[-1,2],[0,10],[-2,17],[0,12],[1,13],[5,10],[5,5],[6,15],[3,14],[0,8],[-5,11],[-10,7],[-15,11],[-20,23],[-7,6],[-19,14],[-10,9],[-2,4],[-8,6],[-16,12],[-13,11],[-8,15],[-10,13],[-13,13],[-7,5],[-9,5],[-13,-2],[-2,-1],[-6,6],[-3,4],[-5,0],[-7,-7],[3,-24],[0,-4],[-2,-8],[-8,0],[-4,0],[-2,-1],[-1,-4],[-3,-15],[-2,-10],[-1,-6],[2,-11],[0,-13],[-6,-9],[-9,-4],[-8,0],[-11,8],[-5,4],[-6,6],[-7,6],[-5,2],[-2,-2],[-3,-5],[0,-10],[-4,-6],[-5,0],[-7,5],[-3,-1],[-3,-4],[-1,-7],[5,-15],[3,-8],[-1,-7],[-7,1],[-5,9],[-4,4],[-6,-3],[-5,-2],[-2,-10],[-7,-10],[-7,0],[-7,3],[-7,0],[-3,-1],[-4,-8],[0,-16],[-3,-8],[-7,-9],[-16,-31],[-6,-8],[-4,-7],[-3,-6],[-7,0],[-4,-1],[-8,-13],[-2,-8],[-2,5],[0,13],[-1,6],[-8,4],[-2,6],[-3,9],[-3,2],[-4,-4],[-6,-9],[-6,-6],[-7,-3],[-8,-2],[-8,-4],[-6,-4],[-3,-13],[-6,-8],[-6,-2],[-12,-9],[-5,-7],[-8,-3],[-7,-7],[-4,-7],[-8,-11],[-11,-5],[-6,-10],[-4,-17],[8,-13],[0,-3],[1,-13],[0,-11],[-8,-6],[-5,1],[-4,6],[-1,3],[-8,3],[-4,6],[-2,4],[-7,6],[-4,0],[-5,-5],[-6,-14],[-7,-9],[-6,-7],[-3,-4],[-7,1],[-8,5],[-4,8],[-3,5],[-10,0],[-6,-2],[-7,-10],[-1,-10],[-2,-12],[-6,-11],[-11,0],[-2,1],[0,3],[-2,0],[-2,0],[-1,3],[-1,2],[-4,1],[-6,0],[-1,3],[-2,2],[-4,2],[-3,0],[-2,1],[-1,3],[-2,2],[-5,4],[-10,9],[-3,1],[-1,1],[-5,6],[-8,5],[-9,2],[-5,3],[-3,5],[-5,2],[-3,5],[-2,2],[-8,3],[-2,2],[-5,0],[-3,1],[-3,4],[-4,2],[-4,1],[-4,3],[0,4],[-1,3],[-3,2],[-5,-1],[-1,1],[0,4],[-2,2],[-1,-1],[-3,0],[-1,-1],[-3,5],[-5,2],[-4,4],[-10,6],[-7,8],[-7,6],[-3,2],[-3,10],[-5,6],[-7,4],[-3,4],[-3,8],[-2,9],[-1,8],[-12,16],[-4,7],[0,5],[-2,5],[-6,10],[-1,6],[0,9],[-3,2],[-5,0],[-1,6],[-2,1],[-4,2],[-2,6],[0,6],[-1,9],[-5,14],[-3,10],[-2,8],[-5,9],[-6,6],[-4,6],[-2,10],[1,6],[2,8],[2,6],[4,4],[4,0],[2,-2],[3,5],[0,13],[1,13],[1,17],[1,10],[-1,6],[-3,13],[-4,11],[0,7],[1,7],[0,6],[-1,2],[-2,9],[0,11],[0,13],[2,9],[0,5],[1,6],[1,9],[0,11],[1,17],[1,8],[1,1],[5,2],[0,6],[0,8],[0,7],[0,10],[-1,10],[3,6],[3,8],[0,11],[0,10],[2,12],[5,7],[4,5],[4,9],[3,13],[3,4],[4,2],[2,6],[7,7],[7,3],[10,4],[18,15],[7,5],[11,3],[11,3],[7,4],[12,0],[3,0],[0,6],[0,3],[6,1],[5,1],[0,4],[0,7],[1,8],[5,3],[8,2],[10,-2],[10,-3],[12,-6],[9,-4],[4,0],[7,0],[7,3],[4,8],[4,5],[7,9],[0,7],[-1,7],[2,8],[10,4],[16,3],[11,5],[10,2],[12,-2],[14,-6],[11,1],[8,2],[8,0],[18,-1],[10,-1],[2,-2],[2,-2],[7,-3],[5,0],[6,2],[4,2],[7,-1],[13,-1],[17,-1],[4,7],[4,12],[5,9],[12,17],[13,16],[21,14],[11,3],[8,-1],[3,2]],[[869399,831399],[33,-627],[11,-195],[66,-1267],[27,-515],[138,-2617],[21,-401],[157,-2983],[68,-1305],[54,-1017],[22,-412],[-27,3],[-22,73],[-20,55],[-32,58],[-12,54],[-56,38],[-63,-16],[-46,-67],[-39,-94],[-4,-9],[-155,-253],[-54,-24],[-68,-21],[-44,-37],[-3,-103],[-119,-24],[-58,9],[-42,43],[-61,0],[-18,30],[-26,0],[-12,-58],[-24,-58],[-8,-69],[-109,-16],[-143,-79],[-70,-18],[-79,40],[-59,67],[-50,21],[-32,-37],[-17,-75],[-41,-16],[-43,67],[-44,-3],[-53,35],[-122,-17],[-66,25],[-31,-31],[0,-73],[10,-109],[-10,-58],[-98,-64],[-53,13],[-38,57],[-153,52],[-54,21],[-57,-24],[-84,-58],[-53,-7],[-26,-78],[-12,-73],[40,-21],[35,-18],[12,-79],[-10,-79],[-27,-55],[18,-70],[-6,-64],[-44,-54],[-90,11],[-61,-20],[-119,-9],[-70,21],[-61,27],[-50,31],[-48,33],[-45,55],[-20,60],[-36,31],[-28,-22],[-5,-39],[39,-49],[36,-51],[14,-49],[-24,-88],[-96,-33],[-79,12],[-50,-34],[-51,19],[-38,-61],[-4,-73],[26,-52],[12,-70],[-40,-9],[-54,-15],[-42,-6],[-17,-54],[-8,-58],[-16,-82],[-12,-70],[-46,-67],[-61,-18],[-52,-6],[-38,-3],[-16,-43],[2,-42],[32,-25],[24,-48],[20,-55],[-6,-79],[-30,-52],[-40,-30],[-51,15],[-52,-6],[-70,-21],[-31,42],[-32,52],[-38,31],[-40,-10],[-33,-64],[-26,-69],[-8,-76],[-14,-61],[-30,9],[-24,30],[-26,37],[-31,39],[8,52],[35,18],[10,43],[-16,45],[-33,-6],[-18,-64],[-12,-97],[-48,-30],[-12,-108],[-28,-20],[-31,40],[-8,73],[-38,3],[-99,-34],[-14,-67],[-24,-59],[-48,-10],[-36,-70],[18,-46],[52,-24],[36,-21],[-4,-49],[-54,-49],[-36,-118],[-31,-52],[-36,-85],[-10,-42],[20,-37],[36,-15],[-4,-33],[-78,-55],[-44,-30],[-25,15],[-37,-6],[-14,-64],[-17,-21],[-10,-79],[-18,-94],[-83,-98],[-123,-167],[-86,-115],[-20,-82],[-119,-6],[-61,-40],[-98,-6],[-123,-70],[-73,13],[-66,-16],[-147,-70],[-60,-63],[-73,-18],[-26,-55],[-20,-64],[-55,-36],[-54,8],[-20,80],[-56,21],[-41,-21],[-48,-79],[-22,-85],[38,-67],[26,-85],[8,-85],[-34,-37],[-50,9],[-85,125],[-24,64],[-26,70],[-53,21],[-24,7],[-24,8],[-28,-43],[16,-72],[58,-44],[-3,-41],[-93,-95],[-1,-63],[-27,-58],[-39,-128],[16,-79],[41,-88],[16,-118],[-26,-49],[-39,-17],[-80,154],[-32,21],[-22,-39],[-12,-109],[-3,-59],[-46,-55],[-36,-84],[-2,-88],[48,-27],[80,-39],[28,-27],[-4,-48],[-74,-9],[-24,-91],[-40,-30],[-4,-69],[28,-66],[-14,-82],[-72,-60],[-114,-72],[-46,-24],[-38,-12],[-4,-34],[21,-93],[35,-160],[28,-87],[16,-144],[20,-40],[-16,-45],[-38,0],[-54,18],[-62,-54],[-13,-63],[-62,24],[14,-90],[57,-19],[94,-256],[0,-84],[-16,-75],[-44,-12],[-20,-30],[22,-36],[38,-34],[40,-57],[-42,-123],[-26,-76],[-34,-48],[-91,-9],[-86,-24],[-82,-81],[-16,-53],[-16,-53],[-8,-114],[30,-69],[-14,-40],[0,-48],[24,-21],[4,-72],[40,-36],[26,-30],[-20,-49],[14,-129],[10,-154],[-6,-81],[30,-54],[2,-54],[-64,9],[-70,-27],[-56,-40],[-20,-93],[22,-90],[0,-61],[-38,-9],[-108,-114],[-119,-79],[-44,-85],[10,-104],[-48,-87],[34,-256],[-13,-108],[-128,-174],[-32,-44],[-47,-19],[-3,-80],[-35,-3],[-71,-20],[-70,-56],[2,-75],[48,-18],[56,-40],[39,-91],[29,-148],[69,-174],[-23,-70],[-151,-166],[-125,-46],[-58,32],[-46,113],[-110,-12],[-127,-122],[-110,-151],[-7,-52],[-45,-26],[-31,11],[-28,32],[-31,-3],[-47,-61],[-13,-64],[-8,-101],[-73,-3],[-146,-38],[-58,-67],[-2,-125],[15,-102],[21,-74],[2,-51],[-17,-137],[-52,-66],[-71,-56],[-77,-17],[-34,-21],[-111,-69],[-71,32],[-108,99],[-77,142],[-29,160],[-47,96],[-57,20],[-143,96],[-102,24],[-106,-91],[-104,-11],[-120,-44],[-98,9],[-35,52],[-29,92],[-40,-39],[-68,-6],[-27,72],[10,146],[27,99],[100,35],[33,107],[-37,55],[-102,15],[-102,-15],[-131,-192],[-58,-32],[-17,146],[-39,99],[29,113],[-44,38],[-27,-50],[-25,56],[10,99],[13,107],[50,61],[31,82],[-10,90],[-52,32],[-69,-21],[-42,-14],[-16,-41],[8,-43],[-14,-77],[-54,-25],[-54,-122],[-79,-181],[-57,-183],[-110,-99],[-104,-81],[-54,93],[-68,32],[-79,-61],[-279,-270],[-102,-134],[-122,-146],[-127,-194],[-104,-41],[-91,-82],[-108,-211],[-135,-157],[-79,-18],[-61,32],[-56,50],[-155,-130],[-117,-60],[-27,-232],[-25,-47],[-12,-70],[-63,6],[-46,6],[-74,-61],[-56,14],[-59,-23],[-120,-328],[4,-76],[5,-352],[-24,-29],[-35,18],[-15,-30],[11,-87],[-17,-58],[27,-32],[31,-26],[34,-67],[45,-5],[13,-70],[-19,-64],[2,-114],[13,-244],[0,-163],[-44,-61],[-52,-128],[6,-137],[60,-26],[48,-29],[48,-58],[-54,-131],[-2,-49],[46,-61],[-25,-96],[10,-53],[63,-5],[76,-3],[30,-26],[26,-32],[-39,-12],[-35,-15],[-11,-43],[-60,-58],[-83,-6],[-31,67],[-42,-9],[4,-105],[-21,-75],[-33,6],[-104,-56],[-6,-55],[-43,-17],[-25,-44],[-3,-76],[-79,-37],[-78,52],[8,154],[-31,-3],[-31,-46],[-25,8],[-50,-17],[-11,-102],[19,-78],[-13,-76],[-91,0],[-68,-87],[-46,0],[4,61],[-33,22],[-67,-28],[-29,35],[-58,-35],[10,-29],[-16,-44],[20,-43],[44,11],[15,-43],[0,-79],[81,-136],[-25,-29],[-79,64],[-40,69],[-31,-17],[13,-35],[20,-35],[29,-76],[27,-20],[-4,-29],[-52,-14],[-4,69],[-21,6],[-2,-102],[-43,18],[-86,67],[-58,11],[-33,-75],[52,-38],[33,-18],[4,-72],[-33,3],[-8,49],[-42,-29],[-39,0],[-38,-44],[-49,-8],[4,-29],[31,3],[25,-6],[6,-56],[22,-40],[-7,-55],[-27,0],[-34,34],[-43,41],[-38,73],[-56,46],[-96,50],[-89,-15],[-69,-82],[-56,-52],[-68,-32],[-123,-69],[-21,35],[-37,17],[-27,-32],[21,-64],[-23,-241],[-35,0],[-34,14],[5,61],[-17,47],[-52,-6],[-42,-41],[-25,-43],[-32,-1],[-13,-31],[20,-70],[-14,-73],[-54,-81],[-85,-35],[-40,0],[-14,-52],[-13,-44],[-71,-17],[-33,-18],[-31,12],[-23,-15],[-7,-74],[16,-65],[-11,-44],[-29,6],[-23,-20],[-10,-117],[-19,-55],[-62,-96],[-38,32],[-29,-20],[-52,26],[-33,125],[-15,67],[-37,8],[-62,24],[-42,70],[10,40],[-16,55],[-60,-5],[-7,43],[19,50],[37,0],[32,55],[-23,38],[-44,-21],[-48,-20],[-37,-32],[-46,-73],[7,-64],[-13,-104],[-27,-12],[-31,38],[-52,-23],[-50,-32],[-29,-12],[-35,-76],[-73,-96],[-61,-40],[-66,-21],[-67,-17],[-61,-38],[-18,-84],[-133,-348],[-22,-135],[-19,79],[-39,52],[-48,-3],[-27,-81],[-2,-70],[18,-102],[90,-32],[-5,-46],[-47,-26],[-58,40],[-40,-26],[-19,64],[-41,-12],[-22,-66],[-28,-85],[-29,-122],[-44,-3],[-41,-11],[-15,-133],[-48,-16],[-60,6],[-16,-72],[-3,-76],[-28,-58],[-13,-58],[-38,-30],[-68,12],[-48,-49],[-31,-3],[-40,-15],[-39,-14],[23,-314],[-23,-34],[-25,-80],[-63,-29],[-74,-32],[-152,-331],[-46,-36],[4,-66],[-50,32],[38,-87],[-62,6],[-19,-44],[35,-93],[-77,17],[-39,-26],[-31,-99],[29,-35],[25,-34],[-5,-56],[-25,-55],[9,-64],[-19,-49],[35,-29],[-6,-61],[-39,-24],[-42,-64],[-60,38],[-69,47],[-23,58],[-26,29],[-131,-143],[-19,-52],[31,-26],[4,-61],[-25,-50],[-68,-5],[-63,75],[-43,-27],[-19,-48],[2,-108],[77,-38],[25,-46],[-10,-60],[-11,-60],[-17,-66],[-52,-44],[-54,-32],[-33,31],[-37,1],[-29,-44],[0,-49],[29,-52],[25,-35],[-23,-67],[-71,-58],[-44,-85],[-13,-28],[-63,-146],[-65,-44],[-45,-23],[-36,-29],[-33,-52],[-4,-70],[18,-75],[-2,-65],[-22,0],[-57,41],[-62,44],[-48,-44],[-73,12],[-26,-47],[-84,-17],[-79,-44],[-33,-76],[-4,-90],[10,-75],[21,-61],[27,-50],[-21,-32],[-35,18],[-37,20],[-36,15],[-47,-21],[-25,28],[-21,-16],[-6,-50],[10,-116],[-23,-19],[-12,-54],[2,-66],[-58,29],[-46,-12],[-31,-38],[-34,26],[-48,12],[-26,-29],[-7,-79],[13,-66],[60,-12],[19,-41],[-58,-84],[-71,-20],[-98,32],[-102,61],[-74,-76],[-71,-93],[-63,-64],[-60,-41],[-52,-85],[-85,-80],[-135,-70],[-112,-93],[-40,-41],[-60,-67],[-39,-32],[-46,3],[-98,-55],[-93,-102],[-138,-43],[-133,-82],[-104,-81],[-106,-53],[-101,9],[-31,32],[-23,23],[-133,-61],[-13,-35],[-102,-61],[-35,0],[-31,-23],[-50,-29],[-38,-9],[-33,-3],[4,-46],[-20,-9],[-34,9],[-31,-12],[-25,15],[-39,-26],[-2,-79],[-13,-70],[-17,-62],[7,-60],[-36,6],[-37,17],[-29,-9],[-40,9],[-40,13],[-18,-63],[0,-86],[-40,-53],[-29,-45],[-29,-119],[-55,-36],[-15,-87],[-37,3],[-50,-6],[-15,-41],[-12,-67],[-46,-46],[-21,-79],[-41,-12],[-54,-66],[-23,-85],[-83,9],[-42,12],[-23,-27],[13,-49],[47,-49],[11,-44],[-61,9],[-106,-12],[-106,15],[-29,23],[-33,-32],[-29,-81],[-44,-9],[-58,9],[-29,-59],[-44,-98],[-60,-44],[-79,-9],[-70,67],[-40,67],[-79,-15],[-46,-90],[-41,-87],[-48,-67],[-81,-38],[-98,12],[-79,9],[-52,64],[-53,12],[-36,25],[-27,50],[-17,49],[-33,-11],[-27,-50],[-48,-58],[-50,-75],[-22,-79],[-17,-96],[-28,-73],[-55,-26],[-53,14],[-55,-22],[-65,-114],[-75,-87],[-39,-116],[-35,-76],[-84,-52],[-93,-38],[-40,-55],[-81,-12],[-45,38],[-83,-26],[-94,-41],[-96,-38],[-52,-14],[-26,-50],[-30,18],[-16,56],[-56,-39],[-11,-52],[-87,-38],[-73,67],[-64,-70],[-83,-99],[-44,-122],[-85,-41],[-92,-32],[-101,-5],[-82,-21],[-64,2],[-58,-51],[-9,-64],[-41,19],[-54,-25],[-38,-58],[-4,-73],[-4,-55],[-25,6],[-40,34],[-68,-40],[-43,-79],[0,-107],[-81,-58],[-133,-114],[-53,21],[-66,-21],[-93,-3],[-36,6],[-16,-49],[-8,-68],[-30,-17],[-43,6],[-46,-52],[-9,-93],[-22,-58],[-54,-50],[-81,-14],[-65,29],[-60,55],[-69,-6],[-48,-17],[-66,73],[-77,69],[-52,-6],[-31,-5],[-15,-47],[31,-70],[34,-58],[20,-49],[-10,-58],[-64,-3],[-9,-47],[9,-67],[39,-84],[23,-65],[-8,-63],[-69,-180],[-119,-251]],[[806124,830886],[-359,473]],[[785671,914513],[485,85],[274,44],[238,71],[274,89],[178,53],[165,162],[128,205],[29,215],[-29,399],[-121,355],[-86,227],[-136,215],[-35,205],[114,269],[136,280],[-22,265],[43,209],[271,334],[350,172],[179,248],[42,144],[15,50],[-36,205],[-50,237],[4,220],[155,667],[39,223],[19,217],[-60,393],[-36,193],[52,200],[37,134],[23,80],[-12,93],[-11,93],[-3,142],[19,172],[43,214],[37,169],[2,73],[-44,62],[-57,145],[-68,148],[-33,142],[-24,103],[-52,83],[-111,113],[-61,124],[-101,149],[-141,332],[-60,82],[-58,7],[-563,-537],[-240,-170],[-51,-32],[-74,30],[-77,46],[-62,128],[-27,79],[-16,104],[-48,134],[-53,52],[-48,55],[-39,14],[-64,-24],[-80,-11],[-61,55],[-6,61],[3,59],[11,65],[6,67],[-11,54],[-17,74],[-18,79],[-13,43],[-9,27],[5,42],[5,38],[8,33],[-16,34],[-21,73],[-5,55],[1,95],[18,107],[7,81],[-12,71],[-24,42],[-11,19],[-3,41],[-2,37],[-26,88],[-27,61],[-32,12],[-68,-17],[-51,-23],[-62,31],[-51,36],[-28,34],[-36,-11],[-29,17],[-23,16],[-44,-14],[-45,31],[-56,3],[-42,-1],[-13,0],[-16,-17],[-22,-32],[-35,-29],[-45,-7],[-42,10],[-40,11],[-29,0],[-27,-14],[-36,-24],[-52,-47],[-55,-32],[-54,-21],[-41,-11],[-32,-11],[-25,-18],[-14,-29],[-12,-38],[-14,-20],[-10,-11],[-28,2],[-29,4],[-35,14],[-21,30],[-12,26],[-6,38],[-5,30],[-12,29],[-12,25],[-12,19],[-15,11],[-72,51],[-71,50],[-49,35],[-21,22],[-27,31],[-6,22],[-18,10],[-34,32],[-16,16],[-43,26],[-142,58],[-78,32],[-45,8],[-34,-2],[-38,-7],[-17,-1],[-27,8],[-24,13],[-19,20],[-18,36],[-26,59],[-13,86],[-6,69],[6,73],[16,103],[23,141],[9,82],[5,52],[-1,37],[-8,33],[-19,34],[-31,37],[-18,45],[-16,57],[-5,46],[-2,45],[6,58],[-10,59],[-17,57],[-38,76],[-41,74],[-29,95],[-24,91],[-3,78],[12,105],[9,98],[-5,130],[8,188],[-7,89],[-63,196],[-49,170],[-22,154],[-1,65],[-15,31],[-10,43],[-41,7],[-45,25],[-14,31],[-18,46],[19,19],[0,15],[-11,31],[1,36],[3,51],[-5,16],[-8,17],[-15,4],[-15,19],[-12,14],[-10,31],[-3,30],[-12,12],[-19,-10],[-11,31],[-32,0],[-15,2],[-7,9],[-5,20],[-11,46],[-2,52],[-17,56],[-21,17],[-9,56],[-2,53],[-20,63],[-15,15],[-23,39],[8,50],[-11,44],[-12,54],[-6,38],[9,19],[-6,24],[-26,13],[-8,28],[-23,13],[-20,0],[-14,-20],[-37,1],[-32,13],[-14,20],[-5,11],[12,23],[4,35],[-10,49],[-2,53],[-4,33],[-15,61],[-27,102],[-45,168],[-35,117],[-3,36],[11,44],[41,79],[48,129],[27,52],[31,30],[38,36],[24,74],[5,64],[20,32],[67,33],[20,36],[-15,71],[-56,118],[0,68],[13,61],[46,57],[45,60],[40,9],[16,-17],[18,-57],[19,-20],[45,0],[56,55],[22,47],[29,82],[-7,71],[5,53],[20,71],[35,150],[42,220],[12,82],[99,123],[112,165],[54,192],[48,82],[38,55],[56,27],[88,88],[61,181],[51,202],[73,132],[62,71],[25,145],[29,64],[91,30],[115,58],[56,76],[87,66],[98,279],[55,214],[54,99],[55,11],[65,60],[55,203],[26,258],[46,49],[44,-11],[29,16],[51,6],[54,55],[55,60],[11,55],[29,98],[47,99],[7,104],[37,121],[109,197],[40,110],[-15,126],[-22,175],[34,134],[-19,173],[0,110],[51,126],[80,132],[316,312],[17,76],[36,164],[74,149],[69,126],[127,44],[244,110],[58,104],[22,66],[-62,274],[-84,131],[-42,19],[-20,10],[-7,29],[-6,30],[8,49],[18,105],[42,131],[51,164],[73,110],[105,60],[33,137],[40,236],[-37,104],[0,88],[92,94],[105,38],[43,115],[64,232],[74,124],[142,99],[189,87],[134,44],[273,159],[240,241],[55,150],[29,91],[-7,97],[-15,78],[2,35],[48,84],[27,143],[32,151],[41,97],[31,107],[12,200],[23,29],[17,43],[21,46],[9,57],[-29,88],[22,122],[44,101],[13,103],[57,78],[52,68],[50,75],[78,121],[41,30],[118,51],[61,30],[36,32],[26,38],[43,62],[43,242],[42,448],[10,103],[19,71],[35,45],[58,-20],[75,10],[97,38],[96,5],[60,-66],[50,162],[29,71],[25,65],[83,32],[75,151],[7,156],[10,157],[25,183],[-17,167],[-14,183],[35,108],[66,32],[64,23],[62,49],[-2,61],[-4,88],[128,44],[84,159],[107,110],[109,42],[42,94],[26,213],[32,65],[61,0],[111,-70],[90,-69],[81,31],[221,286],[187,277],[128,317],[85,241],[0,134],[-56,129],[10,189],[68,173],[53,-5],[111,107],[43,124],[-4,97],[44,62],[85,164],[70,20],[33,39],[54,-10],[32,-49],[47,-3],[33,50],[66,99],[25,75],[58,113],[-18,113],[-29,92],[89,59],[232,280],[29,76],[186,107],[71,205],[4,162],[263,369],[22,32],[93,136],[31,17],[135,17],[31,26],[42,114],[74,140],[41,103],[25,59],[39,24],[8,25],[1,19],[5,12],[29,26],[37,26],[33,-7],[19,7],[9,7],[36,61],[73,75],[29,64],[1,51],[-14,38],[-43,78],[15,57],[18,11],[30,59],[28,11],[7,40],[-16,54],[3,70],[154,46],[81,27],[35,5],[68,-46],[43,30],[32,16],[-18,97],[-10,78],[0,119],[-29,51],[2,43],[27,5],[14,46],[21,67],[75,61],[45,82],[25,-54],[63,8],[60,100],[65,73],[91,102],[112,119],[66,48],[54,35],[-9,49],[3,64],[15,32],[46,3],[67,52],[42,-14],[95,3],[-11,94],[-11,48],[36,38],[64,-3],[22,38],[26,0],[29,19],[30,38],[95,53],[118,73],[68,38],[79,22],[28,56],[32,35],[28,-24],[61,56],[45,70],[39,3],[13,11],[5,118],[9,81],[29,-36],[21,-15],[9,38],[-18,45],[23,22],[64,-19],[22,54],[41,54],[14,35],[-3,54],[-33,24],[-23,35],[-21,22],[-7,35],[-9,53],[3,57],[-5,67],[4,62],[26,67],[27,23],[43,37],[34,51],[9,126],[-3,187],[-15,186],[7,148],[22,132],[33,126],[120,104],[152,66],[146,82],[160,60],[138,39],[105,60],[80,159],[10,182],[39,74],[84,30],[49,87],[-14,77],[-36,71],[-5,155],[32,84],[70,29],[45,-41],[49,-179],[48,-19],[55,9],[24,82],[-3,137],[22,71],[58,28],[121,-1],[72,17],[27,96],[29,110],[19,59],[41,81],[56,-4],[48,-40],[85,-71],[87,16],[26,121],[39,43],[102,-60],[55,-44],[51,-5],[72,11],[51,33],[59,82],[7,109],[-40,72],[-61,75],[-56,89],[0,99],[66,27],[61,-93],[70,-44],[54,-27],[33,66],[-7,131],[47,115],[131,50],[116,11],[98,11],[127,-66],[59,-86],[24,-20],[30,-14],[29,-45],[34,-40],[20,-5],[15,-17],[9,-19],[14,-8],[23,-4],[11,14],[19,-10],[21,8],[10,16],[0,16],[18,15],[23,-7],[26,11],[11,19],[20,4],[31,11],[13,7],[25,13],[17,1],[17,-2],[11,-27],[18,11],[14,-6],[37,-4],[24,-6],[29,-15],[26,2],[16,-19],[21,5],[16,-10],[13,-16],[10,-28],[2,-28],[-1,-20],[10,-35],[17,-53],[26,-47],[40,-30],[23,-32],[25,-12],[25,-13],[30,-3],[26,-9],[20,-21],[10,-14],[15,-5],[59,-29],[32,-21],[14,1],[7,1],[12,-16],[4,-17],[19,-1],[20,-1],[21,-16],[6,-29],[4,-18],[2,-9],[17,-16],[16,-7],[24,-6],[23,10],[53,26]],[[800816,958022],[18,-42],[18,-43],[16,-41],[25,-46],[35,-33],[42,-26],[38,-4],[34,4],[44,6],[16,13],[15,12],[28,38],[18,42],[12,54],[1,54],[-3,87],[5,55],[10,39],[18,60],[23,38],[34,33],[28,20],[41,10],[37,-12],[32,-26],[30,-19],[34,-13],[36,-14],[38,7],[38,17],[23,25],[26,26],[28,26],[29,30],[26,46],[14,46],[13,58],[21,69],[13,63],[13,52],[19,55],[17,56],[21,52],[28,61],[32,30],[35,18],[34,4],[32,-3],[34,-16],[35,-29],[33,-16],[27,6],[41,7],[30,-12],[30,-27],[36,-8],[50,5],[54,20],[61,24],[59,30],[56,25],[83,53],[100,64],[77,45],[62,55],[45,48],[44,20],[39,-20],[19,-48],[2,-5],[13,-59],[24,-50],[44,-53],[29,-49],[29,-44],[49,-58],[42,-50],[42,-56],[51,-54],[54,-38],[48,-27],[49,-25],[62,-22],[48,-8],[43,7],[47,25],[46,31],[30,29],[33,38],[26,40],[40,60],[39,63],[43,49],[36,29],[40,22],[52,7],[43,20],[28,33],[16,50],[10,54],[16,41],[4,12],[25,56],[21,61],[14,65],[15,72],[21,107],[19,81],[20,103],[6,78],[0,76],[-2,47],[0,1],[1,64],[-2,57],[6,49],[13,56],[19,93],[14,94],[15,125],[3,189],[-7,156],[-9,148],[-12,121],[-4,82],[-7,52],[-1,60],[14,49],[26,25],[36,0],[45,-3],[24,14],[29,9],[27,-8],[24,-23],[25,-30],[18,-18],[10,-34],[5,-39],[11,-40],[29,-33],[15,-27],[2,-47],[-9,-53],[-4,-48],[10,-61],[19,-48],[33,-69],[41,-76],[36,-54],[31,-35],[19,-17],[25,-12],[30,21],[22,13],[27,0],[32,-13],[37,19],[39,27],[44,36],[57,48],[58,66],[46,44],[53,44],[34,28],[27,26],[31,20],[23,19],[27,11],[35,9],[35,16],[60,24],[38,12],[40,12],[49,13],[54,19],[55,30],[51,21],[49,7],[36,-1],[44,-5],[51,-10],[6,-1],[42,-6],[31,-8],[32,-24],[22,-19],[17,-35],[22,-63],[6,-49],[3,-64],[0,-66],[0,-70],[0,-74],[0,-69],[-1,-61],[4,-71],[18,-64],[30,-68],[11,-28],[11,-29],[6,-40],[7,-28],[23,-22],[16,-16],[3,-23],[6,-31],[23,-43],[20,-42],[16,-48],[24,-56],[29,-67],[17,-35],[9,-19],[29,-41],[32,-31],[29,-11],[33,0],[43,-2],[42,-5],[48,-3],[31,-4],[20,-4],[9,-2],[45,-26],[25,-19],[24,-11],[28,-5],[30,-13],[38,-14],[34,-9],[39,-6],[54,-4],[39,-12],[43,-17],[34,-5],[41,-1],[32,17],[29,6],[34,-9],[31,-10],[39,1],[47,2],[50,-1],[65,-5],[66,-2],[59,5],[61,8],[91,40],[55,51],[39,25],[31,14],[34,12],[29,4],[34,-3],[29,-12],[36,-29],[30,-49],[23,-50],[16,-69],[9,-60],[28,-47],[24,-36],[16,-35],[13,-61],[4,-60],[5,-75],[-12,-74],[-9,-80],[7,-85],[9,-98],[4,-71],[7,-51],[3,-40],[6,-38],[12,-34],[8,-40],[4,-38],[4,-37],[1,-13],[5,-52],[1,-48],[5,-67],[5,-45],[1,-29],[-7,-32],[-13,-32],[-25,-24],[-29,-14],[-43,-7],[-50,-11],[-65,-7],[-66,-12],[-60,-5],[-43,0],[-58,11],[-53,13],[-54,34],[-58,41],[-40,23],[-41,22],[-60,26],[-64,25],[-41,16],[-57,11],[-50,5],[-62,-13],[-39,-19],[-36,-26],[-24,-27],[-17,-44],[-4,-31],[5,-46],[20,-56],[27,-48],[26,-61],[12,-30],[12,-43],[8,-50],[0,-42],[-14,-62],[-19,-50],[-68,-103],[-76,-126],[-46,-70],[-60,-92],[-43,-58],[-53,-58],[-38,-34],[-46,-32],[-47,-23],[-64,-11],[-92,-10],[-125,10],[-50,-10],[-30,-14],[-33,-32],[-24,-38],[-3,-46],[15,-65],[25,-68],[50,-106],[42,-86],[31,-68],[38,-57],[48,-68],[8,-12],[72,-90],[74,-73],[54,-82],[32,-48],[13,-50],[4,-13],[7,-58],[-13,-49],[-32,-21],[-34,1],[-45,11],[-57,13],[-53,6],[-49,-13],[-42,-37],[-38,-47],[-54,-64],[-39,-79],[-21,-71],[-16,-92],[-5,-73],[7,-58],[-4,-54],[-15,-59],[-27,-39],[-43,-21],[-35,-13],[-42,-40],[-17,-60],[-14,-37],[-16,-29],[-60,-34],[-42,-2],[-31,12],[-30,27],[-28,16],[-36,-10],[-33,-30],[-41,-52],[-35,-65],[-33,-68],[-28,-55],[-25,-66],[-18,-63],[-18,-61],[-9,-92],[7,-67],[20,-74],[32,-52],[27,-20],[33,16],[6,51],[6,55],[2,48],[11,48],[16,21],[20,5],[17,-9],[12,-21],[9,-50],[13,-70],[30,-80],[27,-66],[27,-60],[31,-49],[42,-44],[43,-74],[22,-66],[21,-88],[14,-79],[6,-43],[1,-45],[-12,-56],[-25,-55],[-29,-37],[-34,-13],[-33,2],[-38,19],[-18,5],[-14,-10],[-19,-21],[-3,-5],[-18,-24],[-56,-94],[-40,-84],[-45,-101],[-25,-76],[-23,-61],[-23,-42],[-33,-22],[-43,-5],[-55,33],[-42,64],[-58,137],[-46,97],[-60,68],[-41,30],[-36,20],[-31,9],[-33,-15],[-14,-30],[-10,-34],[11,-54],[16,-53],[21,-63],[26,-45],[25,-56],[12,-42],[2,-42],[-3,-45],[-3,-44],[3,-62],[9,-42],[10,-66],[1,-5],[15,-53],[2,-68],[-3,-42],[-5,-68],[-6,-65],[-5,-122],[-10,-126],[-17,-72],[-26,-65],[-33,-67],[-35,-55],[-60,-83],[-40,-33],[-38,-36],[-29,-28],[-33,-52],[-20,-53],[-23,-58],[-26,-80],[-16,-98],[-3,-124],[10,-123],[17,-82],[22,-98],[1,-80],[-15,-60],[-22,-36],[-45,-47],[-69,-66],[-49,-50],[-47,-49],[-47,-40],[-72,-61],[-51,-65],[-38,-79],[-15,-136],[-5,-182],[-1,-165],[6,-151],[35,-116],[5,-20],[62,-128],[87,-157],[88,-83],[104,-83],[148,-85],[184,-101],[123,-43],[115,-35],[179,-28],[190,-40],[184,-50],[166,-84],[24,-12],[87,-98],[66,-121],[10,-107],[10,-114],[56,-229],[31,-99],[60,-125],[-26,-192],[0,-181],[46,-262],[-86,-201],[-27,-144],[-49,-196],[-31,-184],[-24,-199],[-33,-186],[-42,-257],[-55,-541],[-53,-367],[-70,-428],[-44,-292],[-38,-133],[-23,-121],[-25,-108],[-15,-141],[11,-134],[19,-186],[13,-186],[7,-204],[-22,-136],[-23,-141],[-17,-123],[-28,-164],[-35,-128],[-39,-94],[-48,-156],[-20,-176],[-60,-637],[-24,-178],[-9,-66],[-5,-63],[-4,-70],[-3,-64],[-1,-41],[1,-64],[-1,-49],[-4,-48],[-5,-51],[-3,-48],[-5,-55],[-2,-61],[5,-57],[7,-60],[-8,-79],[-14,-67],[-10,-75],[2,-71],[1,-77],[-3,-89],[-20,-88],[-24,-83],[-10,-66],[-26,-68],[-50,-95],[-22,-32],[-18,-33],[-11,-42],[-10,-60],[6,-103],[18,-98],[21,-73],[27,-90],[39,-131],[13,-93],[4,-36],[-3,-30],[-9,-21],[-17,-3],[-12,11],[-27,26],[-35,38],[-24,52],[-31,85],[-22,99],[-24,55],[-25,10],[-16,-23],[1,-46],[-14,-34],[-31,-2],[-25,26],[-27,22],[-55,42],[-39,59],[-19,82],[-24,41],[-37,34],[-46,4],[-45,37],[-76,95],[-57,92],[-40,24],[-29,14],[-20,-5],[-12,-35],[-5,-48],[-5,-59],[-28,-29],[-28,-18],[-28,-21],[-20,-44],[-28,-44],[-28,-39],[-20,-39],[-6,-50],[18,-65],[9,-143],[-30,-63],[-46,-26],[-53,-23],[-44,-19],[-124,-88],[-96,-68],[-159,-148],[-70,-66],[-133,-127],[-164,-154],[-163,-161],[-76,-52],[-99,-27],[-80,-10],[-67,-23],[-44,-39],[-37,-73],[-24,-121],[-11,-77],[-23,-63],[-43,-42],[-76,-12],[-29,4],[-16,-31],[-1,-57],[-21,-54],[-48,-5],[-35,46],[-21,44],[-43,31],[-70,13],[-38,16],[-35,-7],[-45,-22],[-43,-37],[-47,-12],[-34,-11],[-47,5],[-99,-73],[-68,0],[-99,-12],[-96,-66],[-147,-107],[-43,-49],[-15,-51],[-3,-61],[69,-149],[33,-126],[30,-121],[4,-67],[3,-66],[5,-68],[-10,-52],[-27,-77],[-59,-150],[-27,-90],[-27,-77],[-15,-72],[7,-73],[7,-21],[16,-49],[52,-55],[62,-89],[32,-47],[26,-38],[61,-67],[65,-108],[59,-157],[28,-155],[5,-121],[2,-34],[4,-149],[3,-138],[5,-135],[26,-289],[2,-132],[2,-132],[15,-134],[35,-123],[68,-151],[72,-201],[65,-152],[9,-17],[32,-58],[106,-199],[50,-174],[38,-140],[22,-96],[22,-136],[1,-237],[-4,-133],[-1,-5],[-25,-205],[-33,-256],[-35,-181],[0,-131],[30,-79],[17,-44],[62,-83],[34,-46],[16,-23],[78,-123],[102,-148],[113,-136],[124,-159],[50,-133],[30,-126],[6,-113],[22,-146],[63,-113],[114,-61],[133,-60],[103,-6],[71,-21],[62,-56],[19,-91],[12,-117],[6,-68],[29,-85],[29,-76],[36,-68],[54,-85],[92,-104],[108,-97],[49,-37],[68,-51],[78,-68],[95,-91],[60,-76],[60,-68],[49,-44],[75,-39],[89,-13],[62,26],[70,63],[59,31],[49,4],[51,-18],[73,-70],[107,-78],[94,-39],[73,-23],[60,-43],[48,-33],[95,-52],[85,-20],[58,-3],[76,22],[68,3],[76,-29],[84,-60],[81,-59],[71,-105],[86,-132],[70,-86],[88,-60],[92,-24],[106,-2],[26,5],[31,-26],[17,-41],[15,-72],[-9,-101],[-13,-112],[-1,-132],[9,-144],[-1,-90],[-11,-91],[-17,-88],[-6,-118],[-7,-123],[4,-93],[-2,-82],[-2,-71],[0,-102],[-3,-129],[-10,-123],[-13,-137],[-5,-110],[-16,-106],[-23,-112],[-6,-69],[-2,-23],[-9,-127],[-4,-83],[-18,-159],[-7,-93],[-15,-51],[-6,-47],[-5,-108],[14,-67],[4,-86],[-7,-111],[-12,-99],[-4,-120],[3,-68],[8,-64],[1,-56],[-2,-44],[-4,-60],[3,-70],[1,-67],[20,-92],[20,-83],[-1,-80],[-14,-78],[-9,-94],[0,-91],[3,-76],[3,-100],[-1,-99],[13,-84],[3,-72],[3,-100],[13,-119],[13,-127],[11,-72],[16,-65],[22,-83],[32,-93],[33,-46],[24,-78],[17,-110],[9,-80],[16,-114],[26,-120],[2,-13],[22,-125],[22,-114],[13,-107],[3,-116],[-4,-85],[10,-73],[24,-88],[17,-54],[5,-49],[6,-91],[20,-126],[15,-60],[16,-52],[19,-65],[5,-49],[6,-60],[2,-73],[3,-107],[-4,-128],[-14,-97],[-20,-105],[-16,-116],[-12,-110],[11,-117],[16,-86],[26,-94],[26,-104],[18,-108],[31,-107],[57,-148],[40,-100],[47,-130],[38,-95],[21,-109],[26,-97],[42,-84],[54,-47],[49,-28],[97,-41],[118,-105],[82,-115],[73,-132],[43,-101],[21,-93],[24,-127],[31,-97],[39,-76],[74,-74],[109,-78],[23,-52],[3,-60],[5,-50],[1,-61],[-7,-105],[2,-41],[5,-74],[7,-143],[-6,-106],[10,-107],[20,-83],[32,-67],[20,-91],[40,-601],[22,-150],[26,-122],[26,-117],[14,-78],[14,-106],[3,-32],[7,-64],[5,-141],[-4,-97],[-3,-133],[-5,-96],[0,-140],[14,-117],[9,-131],[11,-102],[24,-147],[17,-110],[13,-75],[6,-35],[27,-132],[23,-98],[18,-96],[11,-99],[-15,-105],[-47,-89],[-47,-61],[-71,-62],[-97,-14],[-135,-7],[-162,3],[-102,38],[-103,32],[-181,30],[-141,25],[-177,64],[-67,28],[-68,13],[-40,-23],[-42,-41],[-41,-109],[-20,-122],[-33,-137],[-9,-82],[-24,-39],[-41,-48],[-73,-52],[-65,-71],[-57,-130],[-38,-112],[-11,-169],[14,-153],[2,-231],[-24,-235],[-12,-185],[4,-219],[18,-110],[22,-60],[30,-47],[17,-63],[21,-47],[6,-57],[7,-68],[3,-51],[-13,-34],[-27,-26],[-21,-33],[-10,-53],[-7,-64],[0,-7],[-3,-60],[-8,-71],[-9,-57],[-16,-41],[-23,-17],[-36,-3],[-37,23],[-44,22],[-32,5],[-25,-6],[-28,-2],[-31,-9],[-17,-25],[-11,-30],[-21,-63],[-14,-63],[-32,-32],[-52,5],[-45,22],[-30,20],[-29,16],[-26,13],[-42,6],[-50,15],[-52,17],[-55,-2],[-48,-32],[-25,-53],[-17,-78],[-2,-87],[1,-89],[-7,-91],[-17,-75],[-29,-81],[-24,-59],[-28,-54],[-26,-57],[-19,-88],[-16,-69],[3,-79],[12,-80],[0,-86],[1,-21],[-6,-103],[-7,-95],[-6,-86],[13,-102],[25,-77],[26,-83],[15,-89],[4,-29],[4,-38],[1,-62],[0,-64],[-5,-66],[-9,-83],[-24,-94],[-24,-78],[-37,-62],[-30,-52],[-27,-61],[-28,-108],[-16,-132],[-20,-103],[-10,-100],[-5,-69],[-14,-86],[-25,-87],[-24,-77],[-9,-45],[-16,-70],[-12,-84],[-4,-82],[1,-110],[16,-110],[18,-84],[36,-93],[21,-92],[9,-99],[15,-99],[11,-43],[11,-43],[31,-76],[33,-50],[19,-29],[148,-229],[340,-247],[260,-65],[216,-121],[296,-377],[121,-108],[163,-144],[176,-149],[62,-140],[-142,-163],[-111,-200],[-28,-210],[-8,-68],[-3,-28],[-12,-95],[-16,-137],[-6,-91],[-6,-111],[-4,-100],[-4,-88],[1,-109],[5,-104],[2,-27],[19,-119],[46,-134],[27,-67],[17,-75],[12,-55],[9,-64],[5,-65],[-1,-68],[-3,-59],[-2,-67],[-2,-102],[-2,-70],[-2,-60],[-8,-63],[-8,-58],[-19,-54],[-21,-36],[-26,-28],[-31,-4],[-31,15],[-29,25],[-60,66],[-90,73],[-72,31],[-42,4],[-41,-8],[-29,-33],[-20,-56],[-6,-133],[0,-101],[7,-118],[1,-122],[-6,-94],[-6,-68],[-15,-50],[-29,-39],[-38,-5],[-50,32],[-54,43],[-46,59],[-58,69],[-69,58],[-52,33],[-55,22],[-50,-15],[-41,-29],[-26,-47],[-28,-61],[-35,-93],[-20,-80],[-18,-75],[-26,-107],[-24,-125],[-27,-124],[-20,-96],[-29,-97],[-42,-59],[-48,-29],[-56,-9],[-56,8],[-47,20],[-59,31],[-53,54],[-25,28],[-21,50],[-15,46],[-9,61],[3,53],[29,93],[15,75],[-2,72],[-21,52],[-25,28],[-31,20],[-34,0],[-44,-33],[-31,-65],[-12,-70],[2,-68],[4,-72],[-2,-73],[-22,-115],[-31,-117],[-37,-105],[-47,-114],[-47,-125],[-51,-139],[-41,-150],[-44,-167],[-37,-161],[-42,-179],[-29,-132],[-21,-107],[-13,-70],[-17,-97],[-15,-109],[-16,-109],[-22,-191],[-6,-136],[-5,-184],[-4,-73],[-18,-210],[-10,-106],[0,-73],[13,-82],[17,-59],[27,-58],[33,-66],[20,-58],[8,-23],[7,-69],[2,-68],[2,-77],[5,-112],[11,-96],[19,-87],[25,-87],[36,-110],[30,-105],[33,-140],[22,-95],[16,-47],[17,-48],[37,-70],[39,-68],[42,-70],[56,-107],[65,-111],[9,-17],[34,-61],[33,-50],[21,-36],[20,-58],[10,-75],[1,-90],[22,-89],[45,-74],[67,-76],[34,-49],[29,-52],[28,-78],[11,-61],[2,-71],[-12,-91],[-26,-132],[-30,-93],[-27,-52],[-27,-54],[-8,-39],[-4,-46],[10,-72],[12,-53],[31,-63],[13,-73],[-1,-100],[-11,-59],[-8,-49],[9,-39],[32,-24],[52,-18],[61,-15],[54,-33],[52,-81],[18,-62],[38,-96],[59,-75],[67,-80],[53,-70],[78,-87],[88,-59],[57,6],[36,34],[23,50],[25,45],[35,27],[53,0],[61,-10],[57,-9],[20,-8],[33,-13],[51,-20],[34,-50],[16,-68],[-2,-68],[-4,-130],[-7,-93],[-13,-157],[-12,-86],[23,-52],[44,-14],[35,8],[35,12],[43,-11],[42,-30],[56,-41],[25,-27],[8,-42],[-2,-50],[-6,-26],[-13,-51],[-30,-110],[2,-65],[-2,-50],[-10,-39],[-19,-58],[-26,-94],[-14,-77],[-9,-73],[-2,-18],[-12,-87],[1,-114],[16,-160],[-9,-111],[-25,-116],[-25,-84],[-58,-47],[0,-1],[-88,2],[-45,-5],[-47,-36],[-38,-78],[-29,-104],[-26,-139],[-26,-93],[-13,-64],[-8,-110],[-21,-166],[-17,-80],[-25,-79],[-38,-96],[-36,-160],[-25,-68],[-28,-45],[-37,-22],[-74,-31],[-116,-33],[-128,-9],[-116,-4],[-89,-8],[-41,-37],[-20,-61],[-30,-66],[-31,-71],[-46,-74],[-40,-53],[-50,-34],[-54,-26],[-54,-27],[-59,-19],[-57,-19],[-69,-17],[-67,6],[-62,40],[-56,46],[-41,55],[-22,54],[-14,66],[-2,55],[11,36],[20,25],[25,20],[29,19],[28,51],[16,43],[1,32],[-14,34],[-26,28],[-47,23],[-60,40],[-38,44],[-32,71],[-2,70],[7,77],[-13,69],[-33,37],[-43,20],[-53,27],[-69,13],[-119,5],[-80,8],[-45,25],[-38,61],[-19,60],[-6,51],[9,81],[-5,75],[-13,123],[-12,87],[-14,103],[-13,99],[-19,130],[-14,86],[-27,60],[-27,49],[-37,52],[-27,88],[-30,67],[-30,58],[-37,39],[-39,21],[-41,12],[-40,6],[-33,-3],[-48,-15],[-45,-32],[-34,-46],[-26,-52],[-20,-75],[12,-116],[24,-75],[24,-55],[16,-57],[15,-76],[9,-65],[-4,-72],[-9,-82],[-28,-90],[-30,-69],[-27,-64],[-25,-55],[-16,-68],[-10,-318],[0,-215],[-19,-184],[-25,-173],[-21,-129],[-14,-111],[-9,-93],[-6,-59],[-18,-95],[-23,-104],[-25,-109],[-22,-112],[-17,-123],[-13,-96],[3,-102],[5,-88],[1,-58],[-5,-52],[-11,-57],[-36,-78],[-33,-68],[-31,-99],[-25,-103],[-28,-91],[-33,-122],[-45,-148],[-53,-143],[-49,-133],[-31,-120],[-14,-96],[-10,-65],[-9,-60],[-27,-74],[-25,-91],[-38,-111],[-17,-61],[-32,-91],[-38,-105],[-34,-110],[-23,-85],[-15,-108],[-7,-93],[-6,-119],[6,-165],[14,-212],[17,-207],[20,-124],[32,-131],[20,-49],[27,-54],[37,-58],[38,-33],[63,-23],[56,-4],[48,21],[45,23],[52,33],[73,26],[78,21],[66,36],[53,41],[71,46],[53,25],[48,1],[48,-13],[58,-21],[59,-39],[82,-55],[76,-49],[93,-82],[73,-55],[65,-32],[36,-13],[36,-3],[29,12],[25,38],[26,86],[24,99],[19,111],[19,89],[27,52],[39,21],[38,-9],[29,-42],[20,-63],[39,-131],[78,-196],[27,-35],[50,-14],[47,-13],[59,-6],[56,14],[76,25],[64,30],[52,13],[40,2],[35,-16],[41,-32],[67,-72],[44,-71],[38,-65],[43,-58],[62,-23],[41,-32],[30,-58],[13,-55],[0,-69],[0,-121],[-11,-97],[-18,-114],[-3,-16],[-6,-38],[-8,-59],[1,-77],[-5,-78],[-10,-62],[-24,-62],[-21,-56],[-5,-49],[11,-65],[21,-70],[15,-48],[10,-36],[5,-58],[9,-101],[2,-91],[3,-84],[11,-85],[16,-64],[15,-41],[21,-61],[20,-78],[12,-58],[7,-51],[0,-52],[-13,-46],[-19,-56],[-25,-67],[-20,-59],[-5,-36],[-13,-23],[-20,-20],[-19,-14],[-28,-36],[-22,-39],[-14,-44],[-8,-24],[-15,-21],[-32,7],[-22,14],[-20,3],[-24,-22],[-15,-41],[-18,-52],[-22,-78],[-17,-68],[-9,-37],[-10,-59],[-8,-55],[-2,-39],[4,-56],[15,-92],[8,-53],[6,-59],[-8,-40],[-19,-46],[-9,-42],[-3,-44],[-12,-74],[-10,-60],[-30,-15],[-32,-8],[-33,-4],[-32,-19],[-36,-29],[-17,-52],[-16,-83],[-16,-73],[-7,-59],[-18,-84],[-6,-70],[-33,-140],[-26,-65],[-12,-68],[-5,-59],[-6,-84],[-6,-84],[-13,-68],[-29,-56],[-46,-51],[-27,-48],[-17,-39],[-4,-53],[11,-91],[-5,-103],[-35,-143],[-28,-100],[-35,-99],[-35,-75],[-35,-49],[-42,-64],[-45,-46],[-69,-86],[-51,-68],[-63,-75],[-29,-42],[-22,-45],[-10,-43],[-7,-78],[-15,-66],[-14,-48],[-22,-58],[-38,-61],[-41,-46],[-36,-32],[-35,-29],[-26,-44],[-16,-54],[-14,-63],[-24,-67],[-49,-23],[-39,-12],[-35,-11],[-29,-23],[-21,-55],[-37,-37],[-30,-30],[-45,-23],[-35,6],[-32,17],[-38,38],[-41,21],[-35,12],[-39,-9],[-31,-40],[-17,-71],[-4,-81],[-11,-62],[-15,-65],[-25,-65],[-30,-54],[-42,-62],[-39,-61],[-28,-62],[-27,-62],[-11,-44],[-11,-44],[-5,-23],[-14,-68],[-14,-97],[1,-101],[-4,-82],[1,-91],[-16,-77],[-16,-75],[-12,-98],[-16,-74],[-12,-48],[-2,-45],[1,-57],[7,-71],[0,-83],[1,-76],[-10,-73],[-21,-63],[-9,-58],[-2,-58],[3,-74],[-2,-69],[-4,-76],[-5,-71],[-7,-71],[-7,-64],[-12,-63],[-19,-61],[-22,-42],[-18,-40],[-34,-35],[-37,-29],[-48,-42],[-48,-61],[-61,-82],[-52,-74],[-60,-85],[-70,-114],[-52,-127],[-53,-146],[-34,-97],[-24,-122],[-10,-94],[-9,-73],[-6,-90],[10,-126],[0,-79],[3,-35],[10,-26],[20,-22],[27,-7],[24,-17],[26,-27],[29,-36],[24,-47],[20,-43],[27,-51],[25,-60],[13,-57],[1,-57],[-2,-62],[-17,-31],[-30,-1],[-38,24],[-25,16],[-18,-12],[-5,-11],[-5,-12],[-24,-52],[-17,-36],[-23,-45],[-32,-61],[-24,-67],[-30,-76],[-18,-66],[-1,-71],[-1,-27],[-15,-28],[-33,-64],[-32,-53],[-41,-53],[-41,-56],[-36,-76],[-33,-60],[-30,-56],[-44,-68],[-32,-51],[-19,-66],[-12,-98],[-5,-159],[15,-88],[39,-118],[37,-84],[27,-34],[19,-21],[39,-32],[55,-26],[30,-38],[17,-27],[32,-53],[51,-36],[33,-23],[65,-15],[123,-16],[67,-41],[52,-59],[16,-20],[24,-38],[54,-88],[79,-95],[100,-68],[97,10],[98,8],[108,-51],[42,-115],[141,-153],[65,-120],[110,-185],[70,-134],[104,-171],[111,-110],[119,-47],[150,-23],[120,19],[115,99],[123,81],[49,129],[42,213],[66,291],[55,92],[82,48],[175,160],[80,129],[85,116],[129,46],[98,-65],[156,-106],[147,-88],[164,-171],[127,-221],[101,-185],[22,-115],[41,-122],[60,-17],[68,-95],[54,-76],[61,42],[49,101],[83,102],[147,191],[187,183],[51,83],[50,83],[110,19],[5,-4],[102,-93],[71,-101],[30,-42],[104,-153],[33,-65],[23,-46],[76,-60],[71,37],[47,69],[17,24],[64,92],[14,-1],[54,-4],[67,-69],[40,-42],[43,-46],[107,-51],[104,37],[173,42],[142,-92],[77,-43],[98,-54],[468,-19],[126,-65],[122,-73],[80,-102],[18,-143],[31,-126],[95,-162],[114,-190],[116,-95],[98,-143],[33,-153],[25,-226],[-9,-199],[-46,-226],[-95,-116],[-104,-104],[-132,-12],[-686,384],[-138,42],[-147,4],[-67,-23],[-37,-83],[3,-97],[-30,-111],[-40,-92],[-65,-37],[-217,-171],[-209,-386],[-137,-182],[-242,-194],[-80,-65],[-73,-143],[-121,-108],[-107,-42],[-121,30],[-101,9],[-83,-65],[-132,-138],[-104,-28],[-89,-134],[-70,-162],[-18,-180],[18,-129],[58,-102],[58,-92],[34,-120],[12,-139],[-33,-125],[-80,-113],[-41,-90],[-20,-171],[-40,-115],[-86,-116],[-64,-171],[-107,-74],[-95,-106],[-55,-143],[-31,-134],[55,-139],[104,-180],[86,-124],[14,-16],[87,-95],[1,-1],[82,-59],[116,-79],[83,-111],[138,-180],[122,-134],[123,-60],[107,-5],[165,79],[316,71],[214,8],[132,8],[158,-37],[69,-74],[21,-138],[-34,-120],[40,-111],[73,-74],[98,-9],[117,-16],[312,-39],[180,-77],[197,-6],[70,-51],[71,-65],[71,-113],[226,-123],[183,-36],[175,23],[104,106],[64,148],[34,175],[-58,102],[-110,83],[-86,129],[-74,176],[-42,194],[0,139],[64,78],[76,51],[37,65],[-19,69],[-51,143],[-22,194],[6,171],[-9,152],[-40,153],[-73,152],[0,195],[79,115],[252,180],[186,55],[261,47],[260,23],[331,217],[208,305],[180,204],[114,128],[168,93],[141,106],[398,559],[103,67],[142,21],[120,-28],[92,-46],[58,-102],[70,-157],[68,-65],[95,-64],[64,18],[101,23],[98,-64],[184,-259],[172,-357],[210,-780],[122,-451],[44,-163],[79,-143],[114,-55],[92,18],[150,134],[251,69],[331,120],[180,95],[218,76],[257,23],[142,-54],[38,-49],[185,-236],[47,-59],[186,-237],[126,-161],[415,-411],[7,-8],[6,-20],[28,-97],[9,-32],[17,-106],[14,-111],[29,-225],[65,-243],[42,-122],[1,-5],[3,-166],[-48,-197],[-5,-20],[-101,-200],[-137,-272],[-17,-35],[-185,-366],[-3,-6],[-76,-183],[-12,-28],[-17,-131],[-9,-67],[-2,-22],[-4,-25],[-6,-46],[-6,-280],[6,-25],[6,-24],[64,-264],[13,-39],[49,-144],[88,-112],[120,-83],[94,-35],[154,-51],[50,-16],[66,-21],[110,18],[158,184],[95,333],[22,78],[12,27],[13,31],[211,495],[143,361],[7,18],[0,1],[22,56],[15,150],[4,38],[-3,149],[22,127],[11,57],[59,107],[73,79],[82,61],[12,7],[181,111],[40,24],[164,64],[220,70],[65,21],[413,78],[19,4],[197,68],[115,88],[88,67],[430,445],[200,143],[195,24],[96,-56],[94,-200],[118,-242],[9,-20],[12,-52],[21,-88],[0,-3],[-2,-18],[-20,-154],[-3,-22],[-2,-18],[-46,-98],[-15,-32],[-166,-243],[-146,-213],[-113,-165],[-18,-35],[-244,-471],[-40,-78],[-27,-101],[-3,-10],[-53,-204],[-1,-23],[-13,-249],[21,-37],[47,-82],[55,-55],[34,-34],[142,-141],[453,-175],[187,-196],[58,-59],[185,-163],[69,-134],[20,-37],[167,-127],[65,-34],[81,-41],[57,-29],[369,-273],[32,-23],[162,-28],[148,231],[132,121],[113,9],[85,-37],[80,-118],[139,-190],[187,-256],[137,-152],[64,-116],[15,-97],[-6,-97],[-63,-69],[-173,-301],[-166,-153],[-42,-91],[-25,-192],[-49,-146],[-6,-212],[-46,-166],[68,-134],[73,-74],[9,-3],[12,-5],[71,-25],[104,-16],[187,77],[113,-5],[98,-92],[101,-56],[135,-37],[2,0],[121,-9],[153,-28],[135,9],[122,-23],[101,-9],[107,-97],[84,-17],[69,31],[135,22],[120,19],[107,-55],[12,-18],[62,-93],[26,-62],[28,-67],[19,-190],[-3,-61],[-5,-128],[81,-92],[147,-23],[169,27],[190,45],[220,-17],[157,-49],[94,-90],[113,-203],[111,-143],[149,-40],[81,-22],[262,37],[224,31],[163,100],[159,46],[61,116],[53,145],[51,40],[215,18],[237,-14],[179,-55],[119,18],[40,74],[52,162],[92,23],[206,-98],[357,-18],[420,-44],[211,-143],[373,-253],[170,-74],[98,-38],[107,-16],[61,-37],[49,-97],[2,-1],[68,-34],[176,-52],[226,-130],[79,-97],[19,-120],[-25,-203],[-15,-194],[12,-130],[46,-97],[80,-46],[119,23],[95,-83],[67,-14],[306,-74],[135,-64],[155,-111],[66,-46],[165,-130],[126,-138],[55,-116],[82,-92],[135,-97],[80,-83],[55,-148],[46,-194],[103,-349],[42,-158],[47,-177],[74,-297],[9,-179],[64,-121],[167,-319],[112,-3],[83,-23],[450,286],[126,31],[116,92],[126,169],[178,74],[202,30],[232,30],[99,104],[180,137],[130,64],[124,59],[202,51],[65,60],[120,31],[64,70],[103,88],[122,20],[4,1],[139,14],[222,44],[95,97],[44,101],[241,202],[184,20],[246,108],[91,31],[55,18],[125,148],[68,23],[104,-23],[131,42],[558,348],[557,183],[282,106],[132,-27],[140,9],[120,-19],[64,33],[28,1],[46,3],[64,56],[17,-10],[29,-18],[61,-65],[49,-37],[12,-69],[-30,-102],[-12,-152],[-10,-162],[-27,-166],[0,-199],[24,-217],[25,-198],[12,-241],[16,-91],[13,-79],[-17,-135],[-52,-129],[-3,-226],[0,-314],[3,-287],[33,-127],[44,-168],[18,-162],[-6,-176],[-18,-189],[-28,-199],[61,-231],[13,-240],[91,-245],[95,-189],[98,-148],[101,-189],[52,-116],[34,-120],[0,-148],[12,-203],[16,-120],[57,-101],[114,-223],[138,-180],[74,-106],[27,-39],[89,-127],[1,-2],[192,-169],[153,-203],[125,-208],[151,-222],[220,-259],[98,-74],[86,-27],[125,-51],[117,-5],[31,13],[134,56],[190,102],[116,129],[117,70],[113,9],[156,-32],[242,-125],[101,-129],[34,-171],[106,-177],[246,-272],[171,-244],[59,-176],[-3,-291],[-59,-341],[-18,-218],[-9,-217],[30,-166],[108,-217],[31,-187],[-22,-174],[-110,-268],[-28,-208],[-8,-230],[11,-121],[49,-124],[92,-109],[129,-62],[147,-28],[128,-69],[114,-83],[73,-144],[74,-208],[339,-582],[150,-203],[102,-92],[76,51],[107,207],[123,74],[58,180],[34,310],[0,296],[61,503],[9,148],[60,131],[151,433],[62,161],[82,97],[114,97],[144,28],[58,65],[43,87],[33,107],[55,27],[135,97],[104,97],[98,144],[52,175],[34,231],[31,194],[85,153],[172,175],[39,18],[151,70],[92,5],[79,-65],[239,-342],[61,-123],[46,-226],[-17,-147],[-75,-77],[-49,-32],[-39,-102],[24,-115],[58,-74],[153,-28],[138,-46],[98,28],[61,78],[117,37],[95,-74],[76,-129],[6,-180],[40,-264],[83,-240],[89,-92],[36,-79],[-2,-85],[-10,-224],[38,-215],[27,-293],[55,-162],[58,-180],[4,-9],[97,-181],[65,-196],[137,-256],[104,-97],[123,-51],[47,-7],[48,-7],[183,15],[112,-22],[170,-25],[165,50],[190,88],[139,134],[262,300],[198,143],[139,93],[178,32],[184,-27],[208,-19],[230,37],[38,18],[223,105],[134,25],[339,23],[359,74],[275,79],[239,133],[175,74],[184,-9],[122,-97],[181,-101],[95,-84],[70,-134],[40,-175],[63,-196],[72,-118],[482,-332],[69,-30],[291,-123],[98,-102],[116,-254],[107,-125],[83,-41],[83,-65],[92,-69],[171,-301],[89,-207],[83,-130],[107,-78],[104,-33],[76,42],[92,88],[111,92],[85,102],[77,18],[3,0],[67,-74],[62,-106],[79,-134],[61,-129],[68,-56],[85,0],[59,88],[55,134],[43,111],[-34,166],[-55,120],[-9,120],[33,125],[71,88],[61,28],[83,-51],[70,27],[74,162],[32,109],[7,25],[-7,42],[-35,203],[-46,360],[-3,167],[52,152],[6,153],[-25,859],[16,171],[35,90],[41,104],[132,258],[132,245],[91,153],[108,92],[101,83],[101,97],[131,79],[132,9],[141,-42],[802,-46],[135,-14],[300,-18],[67,-23],[65,-93],[131,-55],[46,-72],[46,-145],[104,-148],[86,46],[83,-23],[52,-74],[6,-83],[-31,-134],[-15,-235],[-3,-231],[15,-278],[101,-346],[25,-467],[46,-143],[101,-74],[119,-74],[98,14],[120,19],[86,-37],[113,-65],[92,-60],[70,-195],[28,-78],[116,-258],[104,-144],[173,-23],[127,14],[120,74],[104,171],[18,189],[31,268],[55,227],[89,124],[125,107],[111,4],[131,-124],[110,-176],[117,-46],[61,74],[101,134],[515,591],[193,143],[358,171],[86,44],[95,49],[159,37],[107,-42],[61,-111],[34,-194],[144,-263],[291,-393],[162,-162],[119,-157],[80,-129],[55,-111],[55,-88],[129,-78],[104,-33],[86,56],[95,111],[73,129],[46,185],[95,106],[104,95],[90,49],[23,-11],[86,-36],[58,-92],[16,-134],[-12,-171],[-190,-682],[-34,-122],[-196,-850],[-37,-309],[-9,-148],[9,-125],[49,-106],[89,-143],[107,-84],[49,-152],[19,-129],[27,-227],[5,-192],[-42,-210],[3,-180],[37,-185],[61,-120],[117,-198],[107,-245],[135,-245],[477,-559],[242,-217],[144,-51],[153,-115],[147,-153],[49,-138],[62,-150],[70,-142],[22,-110],[-25,-153],[52,-125],[74,-97],[24,-87],[-3,-107],[-37,-69],[-46,-88],[-21,-97],[9,-101],[32,-45]],[[919050,816932],[-11,-117],[11,-59],[29,-44],[197,-281],[110,-227],[40,-114],[22,-108],[17,-138],[36,-116],[43,-97],[38,-39],[33,-22],[33,-31],[65,-58],[66,-122],[110,-110],[194,-197],[28,-26],[33,-34],[51,-56],[39,-67],[29,-63],[17,-70],[-2,-77],[-11,-67],[-18,-61],[-33,-72],[-46,-97],[-89,-94],[-99,-113],[-79,-69],[-112,102],[-88,53],[-64,25],[-48,-42],[-36,-50],[-37,-100],[-40,-171],[-41,-139],[-57,-99],[-110,-89],[-70,-44],[-35,-86],[-67,-94],[-87,-103],[-103,-108],[-82,-77],[-101,-66],[-94,-37],[-91,-5],[-331,8],[-391,8],[-167,7],[-50,-8],[-34,-21],[-38,-36],[-38,-23],[-34,-98],[-93,-131],[2,-43],[-21,-17],[-24,-20],[-19,-72],[-38,-37],[-29,-49],[-20,-60],[-135,-246],[-19,-31],[-8,-52],[-176,-306],[-224,-420],[-91,-178],[-92,-179],[-68,-148],[-52,-172],[-22,-209],[-21,-279],[-24,-241],[-44,-252],[-130,-877],[-67,-401],[-160,-975],[-27,-165],[-91,-655],[-125,-890],[-46,-375],[-83,-409],[-36,-315],[-161,-1187],[-57,-380],[-78,-306],[-345,-938],[-91,-344],[-29,-231],[-24,-63],[-131,-37],[-55,-69],[-28,-112],[-57,-120],[-787,-721],[-38,-51],[-57,-26],[-42,-60],[32,-66],[-3,-97],[34,-92],[47,-74],[2,-100],[53,-34],[42,-75],[51,-20],[6,-54],[-19,-49],[-49,-20],[-14,-60],[6,-34],[-17,-40],[-29,3],[-11,-29],[30,-49],[-13,-85],[-6,-98],[-34,-228],[-49,-141],[-66,-154],[-15,-46],[11,-189],[-29,-40],[-13,-40],[8,-43],[-72,-143],[-76,-166],[-12,-88],[-24,-209],[-8,-60],[34,-137],[38,-186],[6,-163],[-4,-55],[-47,-40],[-75,-119],[-58,-135],[-23,-69],[-87,-37],[-172,-95],[-37,-51],[-49,-9],[-38,-48],[-57,-26],[-51,-52],[-23,-68],[2,-57],[-85,-178],[-38,0],[-34,12],[-25,-35],[-13,-40],[9,-43],[25,-3],[4,-57],[-47,-126],[-40,-28],[2,-46],[26,-17],[-40,-220],[-94,-223],[-95,-152],[-14,-89],[-1,-57],[-33,-26],[-36,12],[-91,-40],[-43,-3],[-143,-155],[-485,-446],[-82,-89],[-79,-94],[-84,-126],[-87,-129],[-38,-85],[-47,-78],[-25,-40],[-24,-85],[-27,-264],[-85,-572],[-80,-635],[-169,-1253],[-13,-154],[-19,-100],[-59,-149],[-59,-83],[-206,-226],[-237,-272],[-32,-34],[-31,-34],[482,-189],[78,-39],[413,-386],[40,-35],[65,-43],[61,-30],[88,-13],[112,20],[99,38],[85,68],[153,55],[78,55],[66,73],[32,85],[25,77],[15,86],[25,55],[126,160],[93,123],[50,-35],[76,-45],[57,10],[277,158],[96,35],[148,-40],[37,-3],[64,40],[301,5],[38,25],[50,40],[38,30],[39,13],[41,-3],[63,-47],[53,-70],[65,-158],[47,-161],[58,-250],[116,-376],[49,-86],[108,-104],[38,-70],[141,-380],[55,-116],[56,-106],[24,-25],[38,-26],[88,-24],[24,-16],[365,56],[131,107],[161,187],[77,100],[109,30],[291,-100],[65,-17],[84,15],[53,37],[172,138],[422,137],[792,-217],[31,-43],[59,-127],[82,-83],[374,180],[119,-13],[182,133],[90,160],[97,60],[18,30],[150,180],[122,164],[199,173],[265,83],[292,-10],[217,-53],[387,-237],[398,-273],[236,-20],[246,-20],[212,-50],[256,-50],[159,10],[111,50],[126,93],[170,14],[128,-14],[184,34],[345,3],[228,-87],[81,-90],[89,-100],[113,-63],[97,13],[79,60],[288,370],[108,54],[223,16],[323,-130],[86,187],[241,477],[60,120],[88,77],[659,276],[414,177],[628,410],[13,-60],[0,-2],[13,-161],[11,-43],[2,-50],[-22,-24],[-26,10],[-22,27],[-27,-10],[7,-33],[-9,-37],[22,-20],[13,-23],[-2,-37],[-31,0],[-35,-17],[4,-26],[11,-47],[-22,-140],[27,-37],[48,-3],[33,23],[7,-57],[-20,-50],[-35,-3],[-27,17],[-17,-17],[-5,-30],[21,-10],[30,-7],[-20,-36],[-2,-47],[-18,-23],[-53,56],[-9,-33],[27,-37],[60,-63],[121,-123],[-26,-37],[-14,-9],[-13,-48],[27,-2],[8,15],[25,-6],[-31,-67],[23,-50],[32,10],[22,-10],[-2,-43],[-33,-4],[-18,10],[-15,-26],[13,-20],[37,0],[54,-44],[44,-63],[-20,-77],[9,-267],[-16,-50],[-29,-43],[-28,-3],[-29,-7],[-2,-37],[0,-36],[-29,-4],[-22,44],[-24,-14],[-9,-30],[0,-63],[24,-97],[-13,-46],[-22,-9],[-33,-168],[2,-30],[33,-17],[40,94],[20,23],[13,-33],[-2,-70],[-25,-21],[-13,-43],[66,-23],[0,-54],[-6,-53],[-18,-50],[-26,0],[-16,-50],[11,-57],[18,-46],[-36,-64],[-13,-43],[-31,0],[5,37],[-14,63],[-31,-50],[-72,-27],[6,-50],[33,-40],[22,-23],[-11,-27],[-28,10],[-76,-43],[-4,-107],[-111,-754],[-92,-483],[22,-70],[-25,-57],[7,-30],[-15,-50],[-27,20],[-15,83],[-67,4],[-6,-30],[20,-17],[8,-90],[-37,6],[-64,-33],[-36,40],[-39,20],[-47,-15],[-42,19],[-38,-94],[-42,-26],[-28,13],[-25,-13],[-19,13],[11,40],[-65,73],[-97,14],[-26,-87],[-60,30],[-9,-53],[29,-20],[2,-37],[-7,-30],[-26,-27],[-35,20],[-71,-40],[-5,-60],[-22,-130],[-53,-47],[27,-73],[-69,-87],[-53,-36],[18,-27],[31,-67],[-18,-6],[-24,16],[-51,-16],[-27,-54],[23,-26],[28,3],[9,-50],[-37,-10],[-14,-43],[-11,-80],[-37,-40],[6,-81],[-55,-33],[-20,-43],[27,-17],[0,-63],[37,-17],[-6,-40],[-53,-43],[4,56],[-16,40],[-39,-63],[0,-97],[-25,-6],[-31,50],[-22,-64],[-75,24],[-31,-104],[-29,47],[-7,64],[-43,16],[-11,-60],[39,-57],[7,-73],[-11,-37],[-35,-10],[-12,34],[-2,63],[-17,23],[-49,-2],[-35,-28],[17,-76],[-30,-15],[-43,48],[-58,-40],[7,-103],[45,-51],[-27,-30],[-57,67],[-95,-28],[-14,-42],[38,-57],[-113,-93],[13,-60],[-22,-63],[-45,-21],[-3,-59],[-32,-11],[-63,-106],[-38,27],[-55,-84],[-133,-26],[2,-47],[49,-60],[-42,-44],[-90,0],[-43,-53],[25,-80],[-34,-10],[-33,10],[7,-73],[-18,-84],[-46,-33],[-5,-47],[-64,-16],[-70,-117],[-54,-20],[-4,-47],[24,-17],[3,-33],[-34,-33],[-42,-34],[-33,-66],[14,-34],[-25,-56],[22,-57],[22,-37],[3,-40],[-25,-30],[-17,-40],[15,-73],[11,-30],[-2,-54],[-44,31],[-58,-4],[-2,-47],[-73,-66],[2,-34],[-28,-26],[-40,53],[-86,-140],[-34,3],[-37,-36],[29,-24],[61,-13],[27,-123],[7,-70],[-21,10],[-37,43],[-35,-77],[-40,-26],[-33,-24],[-22,-93],[26,10],[11,-34],[-26,-173],[46,30],[102,30],[68,63],[56,104],[483,621],[24,24],[41,-24],[247,-324],[255,-268],[67,-101],[65,-166],[16,-158],[-33,-138],[-67,-190],[-75,-122],[-32,-77],[-6,-251],[6,-158],[48,-98],[183,-271],[271,-215],[8,-89],[-102,-110],[-105,-158],[-53,-178],[-102,-182],[-49,-134],[-19,-146],[-34,-154],[-57,-113],[-54,-61],[-164,56],[-69,53],[-68,85],[-64,69],[-124,73],[-147,-49],[-116,8],[-115,-72],[-67,16],[-33,16],[-62,8],[-56,-20],[-51,-81],[-16,-81],[-35,-130],[-75,-851],[-30,-178],[-51,-77],[-94,-77],[-38,-69],[0,-158],[-48,-211],[-64,-105],[-137,-158],[-186,-240],[-97,-162],[-69,-129],[-19,-110],[5,-182],[43,-134],[43,-53],[27,-109],[-16,-77],[-81,-97],[-83,-90],[-97,-247],[-139,-275],[-315,-171],[-107,-117],[-148,-272],[-99,-121],[-38,-102],[-38,-89],[-75,-105],[-67,-28],[-73,8],[-23,6],[-77,20],[-101,-10],[-51,-16],[-40,-33],[-17,-44],[-21,-53],[64,40],[49,-16],[37,-48],[46,-114],[78,-61],[78,-12],[126,57],[121,113],[143,163],[75,28],[64,-4],[65,-41],[113,-125],[118,-122],[115,-28],[105,32],[195,52],[101,1],[64,-41],[46,-77],[51,-223],[32,-105],[43,-85],[67,-110],[51,-215],[97,-344],[24,-125],[-3,-122],[-2,-138],[5,-89],[43,-178],[27,-166],[21,-240],[-16,-214],[-29,-134],[-32,-97],[-22,-65],[-11,-102],[24,-113],[81,-284],[83,-211],[57,-145],[59,-86],[91,-68],[89,-4],[91,4],[94,8],[81,-25],[67,-40],[175,-126],[164,-48],[131,36],[92,85],[53,110],[19,97],[16,198],[41,77],[43,29],[48,24],[94,0],[261,-73],[56,37],[35,69],[78,133],[80,118],[73,69],[99,0],[102,-16],[84,-57],[102,-179],[54,-137],[29,-122],[5,-211],[-2,-121],[5,-102],[19,-77],[148,-206],[64,-45],[65,-4],[121,4],[566,138],[113,4],[86,-28],[398,-130],[260,-37],[291,-113],[126,-114],[64,-101],[46,-130],[48,-105],[89,-77],[73,-36],[91,8],[73,65],[26,85],[16,113],[11,93],[47,-38],[200,-262],[33,-77],[86,-279],[96,-126],[132,-239],[137,-442],[13,-89],[17,-130],[56,-129],[94,-114],[121,-146],[115,-287],[17,-86],[16,-198],[104,-515],[38,-89],[65,-41],[123,-72],[46,-94],[-6,-89],[-21,-146],[-54,-259],[-45,-118],[2,-113],[35,-97],[14,-122],[0,-219],[-6,-69],[-158,-275],[-35,-73],[-24,-45],[-3,-73],[75,-178],[51,-243],[27,-102],[51,-129],[40,-134],[6,-101],[-6,-77],[-26,-57],[-60,-41],[-206,-73],[-156,-52],[-221,-138],[-96,-37],[-180,-89],[-135,-109],[-83,-110],[-126,-300],[-92,-413],[-10,-109],[-3,-219],[-21,-114],[-25,-93],[-13,-166],[-3,-118],[-19,-81],[-48,-56],[-64,20],[-51,65],[-33,77],[-29,48],[-43,29],[-283,36],[-131,49],[-121,36],[-113,-69],[-150,-109],[-177,-109],[-266,-236],[-202,-12],[-148,33],[-56,28],[-62,85],[-86,122],[-274,174],[-223,89],[-70,8],[-54,-52],[-37,-73],[-62,-118],[-72,-85],[-81,-69],[-124,-53],[-96,-12],[-100,0],[-75,17],[-99,28],[-78,28],[-68,8],[-51,-60],[-72,-118],[-100,-280],[-34,-93],[-27,-109],[10,-122],[41,-65],[43,-73],[72,-26],[81,-95],[357,-592],[14,-61],[2,-56],[-51,-86],[-56,-85],[-40,-40],[-30,-57],[-13,-316],[-19,-73],[-97,-292],[8,-93],[8,-77],[-11,-109],[-43,-94],[-37,-24],[-70,-45],[-94,-40],[-75,-69],[-35,-53],[-49,-125],[-35,-37],[-56,-14],[-62,-18],[-86,-65],[-75,-45],[-102,-32],[-97,-37],[-448,-267],[-72,-68],[-68,-74],[-51,-122],[-27,-113],[-8,-219],[0,-158],[-30,-134],[-64,-158],[-24,-77],[-14,-65],[-13,-133],[-3,-329],[-21,-137],[-57,-118],[-119,-128],[-82,-87],[-49,-101],[-14,-71],[-61,-310],[-102,-231],[-236,-458],[-25,-89],[27,-77],[143,-166],[150,-203],[67,-259],[62,-106],[70,-44],[91,-77],[35,-41],[27,-89],[-24,-130],[-30,-81],[11,-87],[126,-265],[89,-102],[180,-239],[99,-125],[38,-110],[40,-405],[-16,-207],[-48,-259],[-22,-393],[41,-102],[373,-741],[89,-94],[290,-263],[150,-113],[260,-525],[-2,-26],[-6,-82],[37,-668],[-32,-503],[-43,-341],[-8,-202],[51,-349],[-3,-90],[15,-254],[-69,-1796],[60,-241],[100,-228],[77,-242],[54,-249],[-40,-547],[12,-332],[37,-258],[51,-564],[-11,-199],[-10,-319],[30,-232],[74,-568],[40,-547],[49,-487],[-146,-715],[-160,-426],[-23,-194],[-51,-241],[-137,-323],[-60,-241],[-46,-194],[-20,-181],[-65,-727],[11,-254],[109,-457],[102,-297],[115,-172],[131,-168],[105,-99],[78,-61],[25,-51],[3,-78],[-11,-73],[-46,-52],[-66,-69],[-65,-99],[-40,-142],[-20,-116],[70,-479],[21,-288],[0,-228],[-37,-202],[-37,-39],[-54,-26],[-120,-43],[-83,-39],[-46,-34],[-31,-103],[-66,-595],[-23,-249],[15,-190],[51,-172],[414,-1662],[100,-599],[111,-469],[32,-216],[25,-417],[32,-354],[3,-232],[-20,-323],[-18,-474],[-28,-86],[-40,-56],[-163,-146],[-54,-61],[-20,-68],[-6,-164],[49,-289],[-9,-241],[-28,-194],[-6,-314],[37,-383],[14,-211],[-40,-164],[-97,-224],[-145,-215],[-212,-306],[-102,-103],[-163,-82],[-231,-65],[-69,-34],[-63,-78],[-65,-142],[-48,-301],[-13,-82],[385,-542],[589,-787],[606,-892],[878,-1207],[775,-1153],[36,-35],[506,646],[54,32],[785,-258],[83,-81],[279,-316],[173,-63],[166,6],[235,51],[253,90],[278,176],[249,192],[209,132],[45,80],[41,70],[206,39],[128,-26],[106,-13],[79,20],[88,73],[61,79],[98,43],[104,16],[117,16],[112,3],[99,-26],[131,-73],[123,-108],[-3623,-8084],[-282,-648],[-4947,-11396],[254,-170],[254,-170],[394,-229],[338,-397],[278,-574],[215,-314],[84,-72],[85,-71],[131,-32],[366,-68],[770,-50],[783,23],[687,-227],[455,-362],[384,-416],[263,-350],[326,-230],[1137,-578],[776,-416],[377,-254],[265,-314],[135,-437],[96,-480],[157,-552],[203,-382],[191,-254],[239,-186],[296,-188],[357,-403],[295,-403],[315,-595],[237,-679],[304,-611],[433,-518],[461,-322],[597,-153],[647,-161],[889,-594],[563,-612],[315,-348],[191,-203],[276,-272],[180,-305],[163,-357],[96,-458],[22,-433],[85,-272],[213,-280],[287,-139],[535,-22],[491,175],[48,18],[3,1],[921,128],[214,136],[148,191],[184,132],[332,-51],[410,-187],[189,-190],[230,-386],[112,-267],[112,-436],[53,-633],[-7,-747],[-9,-1182],[9,-831],[-112,-521],[-93,-675],[-84,-648],[7,-612],[-14,-764],[-40,-3839],[-9,-894],[-248,-2463],[-162,-1893],[-1728,-10280],[-470,-3113],[-518,-2689],[-15,-116],[-155,-1143],[14,-304],[2,-45],[200,-292],[148,-52],[274,-2],[440,8],[217,-39],[189,-95],[158,-130],[156,-186],[808,-1316],[79,-60],[77,-32],[77,4],[51,-29],[45,-68],[44,-72],[49,-28],[53,-15],[82,25],[89,4],[196,-67],[340,-25],[259,-63],[117,24],[140,50],[184,60],[184,10],[89,-21],[77,-46],[124,-98],[74,17],[126,106],[150,176],[65,49],[124,197],[51,92],[5,70],[-17,49],[-30,57],[-61,126],[-11,81],[16,88],[49,166],[133,133],[228,159],[224,193],[119,109],[80,120],[175,292],[37,74],[58,60],[69,-6],[83,2],[231,21],[158,67],[63,53],[108,158],[114,64],[86,0],[171,-32],[126,-49],[79,91],[191,35],[56,67],[66,25],[16,63],[-2,67],[-17,60],[10,74],[30,60],[81,35],[75,88],[33,102],[32,84],[42,60],[10,46],[-10,42],[-18,42],[-5,50],[23,28],[33,0],[35,14],[2,60],[7,56],[136,461],[28,28],[49,-25],[35,25],[14,56],[35,71],[51,98],[79,11],[115,21],[18,25],[0,66],[0,67],[35,46],[56,-14],[40,35],[26,74],[56,148],[30,14],[69,28],[64,63],[191,117],[107,140],[38,81],[91,28],[128,-52],[112,-81],[63,22],[140,97],[89,138],[70,45],[46,-42],[14,-63],[-25,-88],[7,-46],[39,-7],[33,60],[47,3],[14,-67],[72,64],[147,21],[207,113],[252,77],[294,32],[198,-16],[187,-51],[240,-137],[210,-169],[154,-141],[168,-169],[131,-190],[70,-46],[40,7],[2,64],[28,281],[-5,74],[-32,70],[-63,88],[-26,67],[21,60],[44,25],[33,31],[-11,48],[-33,100],[2,88],[21,99],[-14,35],[-40,28],[-53,46],[-77,28],[-82,21],[-47,-14],[-51,-113],[-51,-17],[-5,123],[-35,60],[-9,45],[123,78],[3,53],[-42,59],[-12,36],[12,42],[42,49],[21,78],[42,42],[51,-57],[19,-70],[-3,-112],[7,-64],[33,-17],[35,-7],[70,17],[61,21],[70,46],[53,0],[91,-28],[96,-102],[53,-53],[49,11],[108,84],[72,35],[19,42],[-5,50],[-33,70],[-9,70],[26,60],[46,7],[38,-49],[30,-53],[65,-17],[52,14],[79,-21],[56,-7],[212,-60],[75,88],[135,-95],[66,98],[56,109],[35,127],[37,18],[28,-21],[9,-205],[10,-95],[-12,-348],[12,-380],[-33,-134],[-119,-243],[-44,-162],[-192,-302],[-44,-99],[-35,-116],[-5,-98],[24,-95],[37,-39],[72,-7],[70,39],[73,56],[32,53],[124,74],[47,3],[44,-28],[28,-32],[11,-74],[26,-7],[28,4],[110,274],[-7,43],[39,35],[126,-32],[313,-49],[89,-74],[460,-481]],[[950284,578950],[0,-1],[-8,-196]],[[948870,575502],[39,-166],[80,-346]],[[994238,559318],[454,-2654],[21,-124],[654,-4117],[856,-6899],[-163,-3111],[-787,-9823],[-483,-2102],[-606,-2525],[-432,-1654],[-673,-2056],[-1016,-2972],[-1742,-1951],[-1539,-1723],[-591,-526],[-1657,-1475],[-1807,-1363],[-281,-204],[-1288,-937],[-1622,-1178],[-2042,-1485],[-1735,-1261],[-1106,-795],[-1789,-1370],[-155,-120],[-797,-613],[-1136,-875],[-936,-720],[-323,-249],[-2161,-1751],[-4037,-3478],[-4909,-4170],[-2753,-2284],[-1501,-1594],[-390,-494],[-234,-407],[-58,-100],[-132,-374],[79,-480],[36,-321],[-51,-266]],[[953480,489251],[0,-1],[2,-41]],[[929920,488042],[-137,-46],[-1,0]],[[924483,487159],[-181,-15],[-1,0]],[[858542,663142],[473,-596]],[[869399,831399],[49,-81],[60,-6],[192,77],[68,19],[61,-30],[111,-53],[81,-68],[188,-158],[167,-119],[102,-86],[113,-158],[166,-155],[166,-155],[134,-93],[36,-25],[16,-11],[48,-34],[247,-194],[273,-142],[148,-196],[16,-20],[52,-70],[100,-120],[62,-105],[26,-127],[52,-98],[14,-18],[20,-23],[50,-61],[114,-85],[131,-67],[127,-51],[79,-20],[65,41],[36,89],[41,96],[60,56],[82,20],[30,17],[62,37],[63,8],[88,-37],[50,-52],[16,-69],[29,-65],[120,-53],[142,-23],[147,-5],[18,-1],[138,4],[81,-17],[89,-23],[63,-55],[91,-114],[219,-373],[48,-115],[37,-139],[32,-127],[44,-76],[171,-293],[132,-200],[44,-127],[161,-164],[177,-169],[141,-110],[69,-71],[44,-27],[55,-54],[54,-11],[47,8],[56,-68],[80,-25],[47,-34],[49,-68],[54,-48],[88,6],[60,26],[28,92],[140,58],[258,97],[138,26],[124,0],[166,106],[196,111],[143,59],[138,12],[82,-29],[47,-31],[60,-87],[26,-124],[13,-99],[26,-85],[39,-70],[25,-21],[24,-21],[58,-48],[58,-31],[79,2],[95,15],[110,5],[107,-8],[140,-68],[80,-20],[73,-14],[96,17],[61,40],[165,189],[348,380],[355,480],[314,587],[48,75],[302,480],[312,409],[247,248],[213,124],[202,147],[247,282],[213,299],[105,231],[3,11],[53,164],[122,244],[93,116],[83,169],[49,114],[79,91],[86,73],[97,40],[116,84],[168,198],[516,558],[161,147],[79,39],[101,-22],[142,-45],[131,-40],[119,-62],[169,-182],[85,-138],[77,-80],[64,-46],[120,-12],[81,42],[60,59],[17,149],[38,275],[65,267],[116,298],[67,117],[109,37],[88,-32],[131,-69],[113,-111],[95,-176],[250,-585],[194,-372],[92,-112],[106,-53],[119,64],[89,69],[70,234],[38,315],[174,658],[67,138],[98,85],[117,43],[116,-11],[131,-42],[97,-91],[96,-90],[113,0],[106,-21],[81,-48],[81,-80],[92,-144],[53,-170],[84,-111],[117,-101],[116,-54],[120,-16],[723,32],[37,-24],[18,-12],[19,-12],[49,-101],[85,-180],[141,-245],[130,-101],[85,-11],[102,43],[102,85],[113,106],[97,168],[46,124],[136,139],[90,167],[137,145],[202,315],[8,11],[68,50],[48,35],[99,11],[95,-106],[46,-128],[49,-95],[11,-22],[63,-165],[78,-90],[99,-38],[77,-69],[78,-58],[102,-32],[120,5],[109,43],[247,218],[144,43],[150,7],[143,61],[53,80],[60,149],[18,287],[-4,272],[4,303],[49,298],[64,202],[63,58],[317,38],[151,-62],[332,-34],[74,16],[107,-114],[49,-99],[7,-187],[-82,-196],[-56,-213],[28,-239],[39,-176],[74,-345],[95,-389],[64,-250],[109,-143],[145,-32],[116,-122],[95,-144],[88,-170],[92,-91],[123,-63],[113,26],[173,-10],[120,-91],[102,-112],[106,-74],[84,21],[60,75],[22,143],[176,277],[201,117],[169,32],[166,53],[88,-21],[67,-149],[127,-91],[56,-143],[159,10],[137,6],[177,228],[96,30],[86,-56],[78,-89],[31,-98],[-34,-140],[19,-146],[36,-64],[0,-108],[42,-58],[79,-63],[127,-52],[118,-51],[80,47],[71,65],[96,-9],[90,-19],[68,61],[50,79],[46,94],[65,102],[87,99],[95,56],[90,-20],[289,-144],[173,-168],[22,-121],[9,-173],[18,-131],[28,-187],[37,-131],[47,-102],[74,-56],[96,37],[105,93],[369,301],[139,78],[149,37],[148,-56],[149,19],[145,-5],[115,-56],[90,-70],[86,-122],[106,-140],[241,-289],[353,-294],[217,-112],[312,-192],[168,-28],[164,42],[272,84],[167,84],[74,77],[78,82],[235,233],[99,157],[62,35],[68,-23],[65,-38],[93,-28],[155,-56],[136,-98],[53,-107],[49,-103],[134,-178],[195,-238],[219,-187],[446,-382],[81,-131],[52,-131],[9,-27],[41,-122],[22,-187],[0,-187],[-56,-154],[-99,-150],[-102,-149],[-103,-168],[-49,-136],[-34,-135],[15,-145],[53,-65],[102,-38],[121,-56],[167,-88],[155,-61],[263,-196],[235,-173],[167,-140],[115,-131],[206,-181],[218,-113],[142,5],[158,46],[155,98],[97,143],[15,21],[80,196],[31,215],[-22,233],[-55,140],[-49,73],[-44,68],[-109,102],[-80,103],[-115,163],[-142,201],[-43,131],[37,150],[80,58],[133,30],[106,-28],[83,-70],[94,-63],[39,-26],[285,-112],[226,-51],[198,-9],[208,4],[173,33],[331,93],[301,5],[130,-28],[65,-103],[9,-84],[-25,-210],[-28,-275],[-6,-1103],[-49,-471],[-158,-738],[-22,-140],[22,-122],[74,-37],[74,14],[99,79],[149,108],[628,649],[140,103],[114,88],[140,33],[139,-5],[139,-14],[90,-56],[81,-130],[27,-187],[28,-234],[40,-229],[96,-261],[106,-252],[216,-402],[861,-1485],[189,-313],[176,-205],[233,-197],[201,-116],[164,-67],[326,-70],[151,-31],[142,-70],[121,-75],[77,-98],[36,-105],[17,-49],[49,-164],[10,-159],[-7,-168],[-31,-182],[-38,-83],[-116,-253],[-28,-140],[18,-145],[65,-107],[61,-24],[35,-14],[106,-23],[120,19],[118,42],[121,84],[114,102],[99,141],[90,177],[87,210],[62,150],[71,102],[102,52],[112,18],[114,-37],[81,-65],[49,-103],[33,-129],[48,-161],[71,-107],[93,-65],[123,-47],[137,19],[151,56],[183,37],[118,-9],[124,-70],[86,-103],[90,-178],[50,-233],[-4,-248],[-24,-224],[-13,-243],[60,-186],[107,-131],[130,-61],[124,-5],[99,28],[109,84],[55,136],[10,154],[-16,182],[-43,150],[-74,126],[-62,140],[-41,103],[0,144],[25,131],[84,56],[83,19],[146,-14],[139,-84],[87,-145],[68,-182],[46,-290],[47,-257],[49,-149],[72,-140],[68,-112],[74,-56],[93,-61],[79,-26],[113,-45],[86,-24],[84,-40],[235,-290],[78,-126],[80,-79],[30,-28],[105,-27]],[[792246,985928],[-19,-2],[-4,-1],[-15,-1],[-13,-14],[-14,-13],[-14,-3],[-12,0],[-10,-19],[-7,-17],[-6,-7],[-19,-4],[-14,0],[-15,-3],[-9,-6],[-7,-12],[-9,-15],[-18,-2],[-17,-13],[-23,5],[-17,2],[-8,-15],[-11,-23],[-37,-33],[-50,-23],[-15,-22],[-28,-43],[-14,-18],[-14,-18],[-11,-7],[-6,-4],[-19,-10],[-28,-31],[-14,-3],[-13,-4],[-14,-16],[-13,-19],[-10,-15],[-2,-18],[1,-15],[-6,-20],[-8,-22],[-7,-21],[-15,-20],[-9,-12],[-10,-24],[-16,-12],[-19,-7],[-10,-3],[-8,-15],[-7,-23],[-6,-21],[-7,-24],[-20,-21],[-15,-6],[-5,-14],[4,-13],[16,-33],[18,-28],[9,-26],[2,-30],[0,-40],[3,-24],[6,-11],[7,-17],[6,-29],[-4,-26],[-13,-12],[-13,-8],[-6,-12],[-8,-9],[-3,4],[-4,9],[-7,6],[-4,12],[2,6],[5,12],[-8,20],[-19,2],[-15,-12],[-15,-10],[-12,-1],[-4,-16],[-10,0],[-12,28],[-9,32],[-11,22],[-23,16],[-19,-8],[-2,-20],[9,-21],[-3,-25],[-15,-18],[-10,-20],[-2,-24],[9,-16],[5,-13],[15,-40],[-6,-52],[-20,-76],[-6,-85],[-6,-89],[3,-43],[18,-26],[25,-7],[36,-30],[12,-46],[-4,-58],[-16,-84],[-37,-114],[-52,-130],[-39,-105],[-35,-37],[-31,-10],[-32,29],[-54,31],[-43,26],[-30,52],[-16,35],[-21,43],[-24,56],[-23,23],[-48,29],[-48,8],[-46,-13],[-58,-28],[-46,-27],[-27,0],[-47,31],[-68,33],[-47,-4],[-12,-33],[-1,-70],[4,-52],[-9,-80],[-15,-68],[-34,-29],[-21,-26],[-31,-118],[-26,-96],[3,-80],[-5,-29],[-30,-6],[-19,-27],[-17,-56],[-31,-59],[-55,-48],[-31,-26],[-37,-36],[-58,-37],[-19,-24],[-13,-31],[-28,-46],[-28,-47],[-28,-19],[-40,-14],[-42,-15],[-7,-11],[-20,-32],[-4,-60],[-18,-64],[-12,-59],[-26,-66],[-32,-9],[-20,-4],[-17,-41],[-13,-45],[-1,-42],[1,-37],[-28,-8],[-8,25],[5,27],[-28,3],[-28,-34],[-13,-83],[-38,-52],[-37,-51],[-45,-35],[-41,-10],[-47,-71],[-34,-80],[-35,-33],[-28,-27],[-33,-9],[-53,-21],[-17,-7],[7,-31],[-27,-4],[-27,6],[-23,-36],[-15,-28],[-27,0],[-9,21],[0,27],[1,33],[-14,8],[-15,-39],[-20,-10],[-14,49],[-30,33],[-42,20],[-50,83],[-17,31],[-37,17],[-45,12],[-39,-12],[-45,5],[-26,15],[-24,-20],[-21,-44],[-28,-55],[-19,-42],[-24,0],[-14,-28],[-51,-5],[-36,-18],[-31,-4],[-38,10],[-12,33],[-2,29],[-18,0],[-15,2],[-18,27],[-16,33],[-4,24],[11,29],[-16,9],[-27,-5],[-24,-14],[-32,-31],[-34,-23],[-56,-35],[-53,-37],[-28,-1],[-26,-19],[-8,-42],[-12,-55],[-16,-106],[-4,-34],[-2,-17],[-17,-32],[-51,-52],[-57,-44],[-14,-27],[-14,-27],[-16,-20],[-40,-8],[-16,-18],[-13,-26],[-9,-29],[-19,-42],[-25,-34],[-21,-32],[-12,-42],[-14,-23],[-40,-89],[-59,-94],[-80,-111],[-52,-84],[-62,-54],[-72,-42],[-67,-42],[-117,-66],[-96,-62],[-41,-21],[-35,-10],[-67,19],[-39,17],[-13,-33],[-4,-40],[-22,-33],[-24,-59],[-31,-69],[-50,-132],[-46,-149],[-45,-109],[-47,-66],[-56,-35],[-72,-26],[-63,-10],[-47,-2],[-78,23],[-60,17],[-32,10],[-36,2],[-33,9],[-44,-7],[-41,-37],[-20,-40],[-16,-83],[-22,-84],[-17,-63],[-14,-179],[-8,-151],[-16,-52],[-29,-73],[-29,-78],[-26,-53],[-8,-16],[-8,-16],[-37,-19],[-36,-31],[-146,-139],[-45,-36],[-33,-49],[-33,-66],[-28,-43],[-79,-83],[-103,-141],[-39,-50],[-34,-66],[-38,-59],[-19,-52],[10,-45],[-49,-156],[-50,-123],[-72,-210],[-61,-167],[-35,-76],[-42,-83],[-35,-51],[-57,-76],[-32,-3],[-43,19],[-96,53],[-25,14],[-22,-15],[-26,-11],[-25,-34],[-24,-40],[-5,-56],[-9,-45],[-33,-38],[-1,-21],[18,-33],[16,-36],[3,-42],[-19,0],[-14,28],[-22,5],[-31,5],[-28,11],[3,-33],[5,-19],[-21,-16],[-64,-7],[-6,-33],[6,-24],[30,12],[12,-28],[-23,-24],[19,-10],[14,-25],[-16,-26],[-33,-26],[-36,-10],[-9,-24],[-5,-46],[27,-34],[8,-21],[1,-43],[-12,-40],[-18,-37],[-22,-19],[-25,7],[-27,-6],[-4,-32],[-8,-38],[24,-33],[-5,-35],[-35,-2],[-34,21],[-28,-24],[-22,-43],[-25,-49],[-36,-88],[-17,-55],[-5,-63],[-5,-73],[-11,-71],[-26,-37],[-33,-43],[-30,-33],[-39,-28],[-6,-27],[6,-35],[-10,-40],[-26,-21],[-5,-25],[-15,-24],[-10,1],[-20,1],[-25,-12],[-25,-21],[-19,-43],[-9,-52],[-5,-59],[-13,-38],[-17,-28],[-23,-36],[-24,-33],[13,-52],[9,-42],[13,-40],[-5,-33],[-4,-32],[-37,-16],[-37,-23],[-35,-24],[-40,-52],[-4,-3],[-43,-34],[-54,-43],[-59,-7],[-61,7],[-56,5],[-21,-5],[-11,-24],[-8,-42],[-36,-12],[-17,-33],[-23,-28],[-21,-36],[0,-35],[8,-33],[30,-7],[40,-9],[2,-22],[-10,-20],[-13,-24],[-24,16],[-23,-7],[-41,-3],[-16,-38],[29,-18],[14,18],[23,-9],[16,-19],[8,-24],[-14,-11],[-41,-5],[-28,-24],[29,-9],[18,-38],[11,-47],[25,-24],[-2,-28],[-39,-7],[-17,14],[-21,2],[-17,-28],[-37,5],[-6,17],[-1,4],[-9,47],[-10,29],[-23,-29],[-8,-38],[-14,-49],[-19,-24],[-26,-29],[-35,-13],[-8,-24],[-3,-39],[-23,-20],[-23,-42],[-29,-5],[-19,-7],[4,-31],[26,-7],[1,-16],[0,-2],[1,-17],[-35,0],[-25,-15],[-30,7],[-11,-29],[8,-32],[14,-38],[-9,-52],[-25,-30],[-28,-76],[-34,-17],[-17,-51],[-14,-85],[-8,-44],[-26,-18],[-39,14],[-55,29],[-26,-38],[-32,-57],[2,-63],[-13,-31],[-39,11],[-20,-35],[-46,-36],[-40,-30],[-28,-35],[-13,-45],[-27,-7],[-34,-11],[-13,18],[-48,49],[-41,45],[-37,5],[-49,-7],[-58,-5],[-33,-24],[-11,-28],[-3,-76],[-19,-49],[-64,-30],[-65,-30],[-47,-23],[-43,26],[-12,50],[-33,23],[-44,3],[-34,-17],[-36,-5],[-34,33],[-21,15],[-43,-53],[-43,-25],[-28,-73],[-27,-57],[-40,22],[-35,-29],[0,-54],[-33,-36],[1,-36],[-8,-42],[-23,-14],[-16,35],[-15,45],[-41,38],[-17,-9],[-3,-38],[8,-54],[31,-22],[45,-68],[21,-26],[-2,-35],[-20,-24],[-33,0],[-31,-3],[-30,-30],[-16,-29],[-8,-59],[0,-45],[-7,-103],[3,-45],[-4,-48],[-12,-33],[-28,-7],[-47,0],[-67,22],[-69,23],[-61,26],[-16,1],[-14,-15],[-6,-21],[-1,-9],[11,-23],[8,-15],[7,-2],[9,-20],[-4,-22],[-6,-20],[-13,-16],[-26,-16],[-28,-3],[-28,-2],[-25,10],[-15,11],[-14,22],[-20,16],[-12,2],[-25,-6],[-6,-15],[2,-19],[16,-29],[12,-28],[14,-28],[5,-15],[-4,-33],[-11,-11],[1,-20],[7,-53],[10,-43],[-2,-37],[-6,-82],[-3,-49],[26,-50],[11,-47],[-7,-48],[-8,-40],[17,-53],[4,-40],[-15,-22],[-26,5],[-25,15],[-16,53],[-25,44],[-41,35],[-22,-11],[-22,-48],[-16,-51],[-23,-24],[-20,-34],[-18,-9],[-6,-4],[-26,6],[-30,25],[-15,29],[-14,19],[-11,-2],[-12,-2],[-5,-11],[-6,-32],[-5,-29],[-9,-22],[-17,5],[-12,-12],[-2,-27],[7,-49],[-3,-29],[-2,-36],[12,-33],[-4,-22],[-17,4],[-10,25],[-12,-12],[-15,-16],[-7,-37],[5,-21],[-7,-11],[-13,-7],[-89,-4],[-15,1],[-13,0],[-10,15],[-12,25],[-13,8],[-15,-10],[-7,-40],[1,-28],[-12,-5],[-12,16],[-7,44],[-16,5],[-11,-8],[-18,-31],[-13,-46],[-4,-15],[-22,-5],[-12,8],[-3,17],[15,37],[17,46],[2,36],[-13,17],[-14,-13],[-2,-29],[-2,-14],[-15,-12],[-13,2],[-44,24],[-12,0],[-8,-17],[-6,-23],[6,-19],[35,-57],[11,1],[11,-16],[-6,-24],[-19,-2],[-28,-3],[-32,-4],[-51,-19],[-16,-14],[-9,-25],[-1,-40],[-8,-35],[-27,-13],[-19,-2],[-5,-16],[9,-58],[3,-70],[1,-56],[-9,-77],[-9,-53],[8,-49],[-8,-17],[-17,-24],[-15,-9],[-34,9],[-46,13],[-29,15],[-10,-2],[-3,-17],[7,-20],[1,-37],[-3,-20],[-14,-7],[-16,-9],[-30,-24],[-10,-14],[-7,-9],[1,-23],[3,-18],[-5,-37],[-18,-36],[-25,-42],[-5,-17],[3,-24],[-16,-36],[-18,-35],[-24,-25],[-14,-49],[-8,-52],[-15,-36],[-15,-33],[-8,-16],[-19,3],[-9,-31],[1,-51],[-3,-44],[-5,-20],[-12,-7],[-16,-4],[-30,12],[-24,21],[-7,-5],[-4,-13],[5,-17],[18,-44],[22,-46],[3,-45],[-10,-8],[-17,8],[-10,27],[4,29],[-16,13],[-19,-13],[-2,-5],[-15,-28],[-25,2],[-15,8],[-3,26],[2,21],[17,15],[0,16],[-29,26],[-10,-4],[-6,-18],[4,-16],[1,-9],[-8,-11],[-25,-6],[-16,7],[-2,22],[-7,15],[-8,10],[-14,-5],[3,-18],[1,-9],[-7,-13],[-20,-13],[-13,-31],[-9,-16],[-7,-27],[2,-30],[6,-11],[13,-4],[12,13],[18,20],[9,-11],[7,-19],[22,5],[14,8],[14,-10],[-4,-21],[-28,-16],[-41,-18],[-18,-11],[-16,-15],[-22,-30],[-11,-20],[-3,-29],[4,-30],[-1,-22],[-11,-17],[-14,-9],[-20,-46],[-30,-96],[-35,-85],[-47,-93],[-39,-78],[-29,-18],[-73,25],[-47,32],[-57,33],[-51,-13],[-58,-26],[-33,2],[-29,48],[-12,42],[9,51],[-9,29],[-29,4],[-42,-15],[-63,-38],[-63,-35],[-35,-66],[-30,-82],[-26,-71],[-21,-42],[-40,-37],[-24,-9],[-17,9],[-16,21],[-9,39],[-15,39],[-38,18],[-26,29],[-21,11],[-1,-28],[26,-54],[28,-66],[16,-46],[26,-23],[-11,-75],[-22,-19],[-40,-87],[-31,-113],[-22,-81],[-30,-65],[-46,-66],[-24,-46],[-12,-40],[-22,-20],[-17,-3],[-7,6],[-10,8],[-15,42],[-2,18],[-1,8],[-17,2],[-16,-8],[-13,-43],[-19,-9],[-11,-17],[8,-41],[8,-32],[-6,-29],[-29,-37],[-6,-29],[4,-28],[-20,-40],[-22,-5],[1,36],[-22,47],[-27,2],[-20,33],[-29,9],[-30,39],[-10,5],[-7,-9],[1,-20],[6,-31],[-12,-17],[-6,-31],[14,-25],[20,-15],[6,-15],[0,-23],[-13,-11],[-51,56],[-21,5],[-18,-12],[-2,-35],[11,-40],[0,-31],[-30,-13],[-20,8],[-10,32],[-17,-7],[-23,-6],[-21,39],[-14,19],[-19,9],[-20,-10],[-7,-33],[-5,-58],[4,-15],[4,-16],[-1,-15],[-13,-4],[-39,19],[-10,-1],[-11,-37],[2,-26],[24,-28],[5,-25],[-20,-20],[-22,-6],[-9,-16],[2,-23],[-2,-17],[-27,2],[-17,-10],[-23,-24],[-7,-40],[-13,-53],[-17,-13],[-29,11],[-22,26],[-24,21],[-12,-3],[-9,-24],[-15,-14],[-10,5],[-13,22],[-31,1],[-37,-9],[-9,-2],[-7,-22],[-2,-20],[14,-30],[1,-40],[-24,-37],[-5,-31],[0,-35],[-10,-20],[-22,-24],[-18,-38],[-32,-35],[-41,6],[-125,9],[-62,15],[-20,16],[-11,27],[-23,54],[-23,21],[-34,33],[-12,39],[-1,31],[11,16],[10,5],[3,7],[4,6],[-3,9],[-5,17],[-5,14],[5,18],[-2,14],[-6,4],[-5,3],[-9,-8],[-21,-10],[-17,7],[-13,29],[-11,4],[-6,-10],[-21,-29],[-11,-5],[-10,11],[-16,15],[-30,-22],[-31,-4],[-13,4],[-13,4],[-12,-5],[-6,-15],[1,-29],[-11,-13],[-23,-1],[-25,7],[-25,-19],[-9,-10],[-2,-25],[-17,-4],[-17,4],[-23,11],[-20,-14],[-8,-25],[-20,6],[-17,-12],[1,-23],[0,-3],[-8,-10],[-15,-12],[-7,-5],[-11,1],[-9,16],[-10,16],[-18,-12],[-26,-42],[-26,-26],[-6,-26],[8,-18],[25,-17],[16,-4],[0,-20],[-21,-15],[-31,5],[-21,-8],[-25,-13],[-41,-29],[-29,-26],[-37,-31],[-30,-26],[-33,-36],[-25,-43],[-16,-39],[-9,-22],[0,-27],[9,-27],[-6,-12],[-17,-3],[-30,-28],[-21,1],[-20,1],[-16,-3],[-15,7],[-11,-12],[-3,-13],[-11,-15],[-7,-2],[-15,-5],[-27,-13],[-12,0],[-8,-8],[-10,-23],[-11,-27],[-22,-21],[-17,-29],[-8,-34],[-6,-14],[-13,-12],[-9,-6],[-20,11],[-11,-1],[-10,-10],[-4,-29],[10,-29],[3,-29],[-2,-13],[-2,-2],[-23,-4],[0,-8],[0,-8],[16,-22],[-1,-26],[-12,-22],[-13,-11],[-25,13],[-24,0],[-29,-25],[-56,-19],[-30,-7],[-38,-12],[-21,6],[-19,8],[-27,7],[-31,1],[-31,6],[-13,10],[-23,35],[-25,26],[-27,21],[-18,-2],[-34,-2],[-40,-6],[-32,-10],[-29,-16],[-12,-7],[-3,-2],[-3,-2],[-10,-19],[-7,-32],[-9,-24],[-18,-27],[-20,-23],[-24,-18],[-24,-23],[-20,-26],[-13,-40],[-5,-41],[-11,-68],[-12,-56],[-17,-19],[-35,-24],[-16,-18],[-42,-50],[-31,-44],[-32,-19],[-17,-10],[-15,-37],[-6,-21],[7,-32],[5,-6],[-2,-18],[-19,-20],[-82,-61],[-60,-42],[-36,-34],[-40,-38],[-39,-65],[-21,-31],[-2,-38],[-16,-21],[-23,-19],[-49,-27],[-8,-20],[2,-18],[7,-23],[-2,-12],[-10,-2],[-23,-5],[-25,-9],[-53,-64],[-19,-50],[-18,-34],[-10,-39],[-1,-75],[-4,-9],[-5,-9],[-32,-24],[-26,-18],[-20,-58],[-28,-81],[-21,-95],[-15,-64],[-23,-33],[-34,-29],[-23,-26],[-38,6],[-22,12],[-35,46],[-22,15],[-19,-11],[-17,-27],[-40,-9],[-23,-19],[-38,-15],[-30,-11],[-21,-25],[-29,-8],[-35,3],[-21,-8],[-13,-16],[-21,-6],[-31,1],[-48,-1],[-26,11],[-31,17],[-10,21],[-4,34],[6,28],[11,20],[6,23],[-4,46],[-19,17],[-13,26],[-11,34],[-10,31],[-13,9],[-25,7],[-35,-13],[-29,-23],[-28,-23],[-21,-8],[-29,5],[-23,1],[-17,2],[-11,12],[-11,17],[-15,12],[-27,4],[-39,-3],[-17,5],[-14,11],[-4,19],[-16,11],[-17,5],[-21,-4],[-12,-24],[-21,-17],[-24,-6],[-31,3],[-21,-8],[-3,-16],[-16,-10],[-32,-5],[-35,-1],[-56,0],[-28,-1],[-21,-7],[-18,-23],[-9,-26],[-8,-56],[-8,-34],[-17,-15],[-30,8],[-40,15],[-50,26],[-40,17],[-31,20],[-16,19],[-16,39],[-20,70],[-27,72],[-14,55],[-3,60],[-7,43],[-13,4],[-31,-19],[-30,-21],[-12,-23],[-11,-16],[-23,-11],[-16,-18],[-8,-41],[-23,-28],[-36,-34],[-9,-44],[1,-53],[-4,-14],[-5,-14],[-5,-17],[-6,-17],[6,-37],[7,-44],[13,-35],[13,-56],[6,-46],[-4,-46],[-13,-22],[-32,20],[-28,-5],[-39,6],[-12,-13],[-12,-22],[-19,-28],[-37,-80],[-36,-126],[6,-37],[26,-7],[29,20],[16,0],[12,-37],[12,-67],[-17,-33],[-17,-28],[-32,0],[-15,-42],[-9,-33],[-13,-22],[-32,11],[-29,16],[-28,17],[-12,-26],[3,-29],[-10,-25],[-19,-5],[3,-26],[9,-17],[-3,-29],[-16,-18],[-11,16],[-17,-13],[9,-29],[-19,-33],[-15,-31],[-3,-35],[-16,-27],[-3,-26],[9,-33],[-13,-12],[-16,-6],[-9,-24],[23,-36],[-2,-40],[7,-33],[11,-44],[9,-42],[13,-19],[21,4],[11,37],[14,16],[19,2],[5,-44],[-4,-53],[3,-44],[-4,-33],[-16,-21],[-21,25],[-22,13],[-14,-25],[29,-43],[19,-55],[11,-27],[-22,-22],[-29,-6],[6,-21],[21,-17],[-6,-37],[19,-31],[1,-38],[-12,-21],[-24,1],[-8,-28],[-6,-38],[-27,16],[-21,-16],[0,-24],[19,-29],[-29,-51],[-28,5],[-22,-16],[-7,-46],[1,-31],[22,0],[24,27],[14,-11],[12,-34],[31,-33],[17,-24],[28,-51],[10,-70],[-4,-44],[0,-31],[3,-25],[-23,-6],[-20,15],[-17,-20],[9,-24],[10,-24],[6,-27],[-25,-31],[6,-37],[-2,-42],[-17,-44],[-28,-64],[-10,-14],[-9,-4],[-10,5],[-11,15],[-17,11],[-17,12],[-9,-6],[8,-21],[6,-33],[-1,-25],[-27,-14],[-33,-50],[-34,-77],[-12,-25],[-14,-19],[-24,-3],[-29,-5],[-26,-11],[-23,-5],[-28,8],[-16,21],[-11,32],[-25,34],[-29,14],[-26,-1],[-30,-17],[-29,-15],[-25,-26],[-22,-38],[-11,-58],[3,-38],[4,-33],[-1,-32],[-12,-22],[-19,-24],[-10,-29],[-16,-15],[-20,-1],[-16,17],[-22,23],[-14,40],[-15,35],[-29,40],[-34,59],[-12,32],[-10,16],[-25,38],[-31,14],[-31,7],[-47,13],[-159,-42],[-129,-34],[-30,-24],[-48,-82],[-41,-66],[-21,-45],[-54,-193],[-32,-132],[-58,-206],[-17,-64],[-22,-39],[-34,-32],[-15,-21],[-10,-41],[6,-45],[10,-48],[9,-45],[-5,-45],[4,-34],[-2,-27],[-16,-23],[-10,-23],[-19,-21],[-25,-13],[-4,-18],[-20,-22],[-29,-5],[-35,5],[-52,-19],[-13,10],[-14,0],[-27,-23],[-17,-16],[-27,-38],[-48,-68],[-16,-13],[-18,-12],[-18,-1],[-28,-10],[-22,-24],[-2,-40],[-1,-19],[-17,-12],[-4,-20],[5,-13],[-12,-44],[-14,-35],[-13,-35],[-23,-32],[-23,-32],[-10,-14],[-10,-15],[-10,-28],[-16,-41],[-11,-56],[-1,-27],[-1,-26],[0,-16],[-1,-16],[-9,-11],[-9,-10],[-17,-37],[-15,-15],[-18,-2],[-19,2],[-19,-16],[-15,-7],[-21,-43],[-41,-79],[-18,-59],[-17,-43],[-14,-9],[-24,1],[-25,6],[-26,2],[-20,-14],[-6,-26],[-2,-26],[-4,-16],[-14,-2],[-23,2],[-22,13],[-11,-4],[0,-23],[5,-13],[-10,-9],[-6,-28],[-7,-8],[-20,2],[-19,2],[-3,10],[14,38],[5,17],[-11,7],[-10,-4],[-8,-13],[-16,5],[-17,4],[-19,-14],[-11,-13],[-15,18],[-11,25],[10,29],[-7,28],[-15,34],[-20,28],[-20,57],[-24,15],[-32,-1],[-39,10],[-30,29],[-33,17],[-71,28],[-26,19],[-26,20],[-28,14],[-18,-8],[-19,-12],[-38,-8],[-64,10],[-47,5],[-47,4],[-39,-7],[-21,-14],[-20,-15],[-40,-50],[-30,-59],[-37,-87],[-14,-48],[-8,-52],[-1,-66],[6,-46],[-5,-13],[-5,-8],[-5,-8],[-13,-12],[-12,-12],[-9,-19],[-3,-42],[-7,-52],[-16,-44],[-17,-37],[-29,-28],[-35,-24],[-32,-10],[-27,-1],[-23,2],[-18,5],[-25,11],[-23,8],[-8,5],[-8,5],[-9,-2],[-9,-2],[-26,-11],[-33,-22],[-23,-15],[-30,-9],[-25,-10],[-19,-9],[-975,-687],[-432,-154],[-416,11],[-186,5],[-5,1],[-7,0],[-172,-3],[-170,-71],[-225,-187],[-360,-272],[-632,-371],[-295,-132],[-226,-18],[-210,18],[-156,62],[-87,0],[-65,53],[-108,150],[-96,35],[-144,22],[-85,53],[-85,119],[-32,119],[-61,66],[-73,1],[-82,-85],[-98,-113],[-11,-12],[-196,-235],[-163,-89],[-1013,-221],[-134,-62],[-123,-115],[-92,-78],[-2,-1],[-73,-95],[-56,-130],[-20,-69],[-6,-54],[8,-81],[25,-90],[42,-148],[6,-88],[3,-64],[-24,-110],[-26,-100],[-10,-94],[6,-56],[20,-99],[25,-104],[22,-185],[13,-159],[-76,-397],[-2,-680],[3,-454],[14,-470],[-84,-575],[18,-293],[55,-243],[95,-278],[133,-335],[150,-274],[210,-295],[70,-164],[33,-150],[22,-141],[5,-216],[-17,-190],[20,-159],[79,-252],[44,-238],[-11,-261],[-82,-260],[-158,-318],[-129,-247],[-23,-50],[-44,-100],[-68,-150],[-164,-379],[-32,-62],[9,-168],[32,-62],[32,-62],[106,9],[128,159],[166,217],[93,33],[122,14],[123,-78],[295,-474],[249,-436],[221,-528],[153,-337],[191,-421],[622,-1513],[302,-732],[28,-86],[28,-86],[169,-503],[249,-653],[170,-340],[108,-186],[337,-352],[196,-221],[69,-94],[27,-124],[27,-440],[11,-190],[21,-132],[32,-119],[114,-162],[77,-61],[137,-86],[210,-124],[299,-114],[313,-151],[73,-185],[-2,-90],[-119,-125],[-106,-64],[-107,-65],[-110,-3],[-223,-6],[-170,-18],[-187,0],[-232,-67],[-332,-246],[-282,-157],[-281,-158],[-336,-96],[-410,-88],[-567,-104],[-269,7],[-293,115],[-176,185],[-100,156],[-110,91],[-113,31],[-122,-34],[-244,-67],[-130,62],[-187,276],[-141,377],[-70,141],[-123,73],[-76,10],[-175,-48],[-422,-194],[-181,-79],[-240,-150],[-228,-159],[-186,-155],[-189,-242],[-61,-173],[-73,-366],[-29,-406]],[[713470,900302],[-715,276],[-431,127],[-399,142],[-200,101],[-182,92],[-172,127],[-238,177],[-243,313],[-276,268],[-318,248],[-253,120],[-219,156],[-116,172],[-169,303],[-153,364],[-68,142],[-89,169],[-70,82],[-71,48],[-54,10],[-105,14],[-406,-62],[-243,-44],[-243,-31],[-319,-32],[-27,3],[-45,5],[-75,50],[-32,24],[-51,37],[-99,64],[-8,5],[-81,53],[-51,28],[-58,30],[-33,18],[-42,22],[-46,13],[-48,4],[-99,-11],[-21,5],[-62,31],[-40,46],[-67,99],[-52,103],[-56,72],[-36,40],[-53,18],[-119,43],[-293,42],[-86,34],[-77,96],[-74,110],[-118,174],[-134,289],[-45,185],[-15,813],[60,1146],[-10,330],[-82,345],[-122,280],[-159,279],[-154,154],[-191,174],[-186,144],[-236,97],[-230,-29],[-268,-48],[-160,-39],[-128,-38],[-192,-97],[-159,-125],[-134,-154],[-103,-347],[-76,-222],[-71,-193],[-115,-125],[-70,87],[0,202],[19,338],[-10,255],[-60,255],[-172,261],[-320,481],[-453,502],[-563,472],[-453,347],[-1598,964],[-97,124],[-35,129],[10,118],[25,92],[61,70],[236,345],[124,215],[35,181],[1,186],[-55,234],[-35,146],[-70,164],[-118,129],[-233,116],[-299,67],[-193,124],[-307,302],[-628,775],[-447,637],[-310,548],[-115,410],[-164,786],[-36,420],[2,52],[12,449],[1,38],[95,389],[5,20],[285,431],[202,392],[297,761],[106,527],[123,394],[247,483],[368,546],[264,399],[369,472],[1024,960],[2359,1277],[482,256],[237,40],[153,-59],[154,-48],[157,-184],[293,-786],[264,-560],[214,-97],[329,21],[971,399],[171,140],[129,237],[71,312],[36,949],[-42,646],[-94,700],[29,280],[121,237],[150,97],[457,-75],[193,0],[214,248],[260,494],[49,93],[20,38],[750,1195],[264,259],[300,68],[286,-36],[371,205],[307,506],[286,550],[101,377],[49,571],[102,235],[269,347],[257,247],[300,108],[236,86],[211,-49],[132,-102],[100,-161],[107,-184],[207,-161],[136,-129],[57,-173],[21,-129],[79,-159],[128,-67],[343,-97],[189,-108],[190,-32],[201,70],[277,199],[186,86],[285,108],[360,-27],[262,156],[223,320],[427,187],[507,43],[392,86],[258,-22],[218,-160],[165,-122],[366,-418],[308,-183],[314,-140],[457,75],[709,348],[405,245],[328,97],[265,4],[271,9],[249,71],[178,150],[823,692],[294,169],[313,-18],[407,-97],[357,-32],[193,172],[136,194],[114,135],[86,101],[28,34],[11,16],[180,257],[666,793],[938,1088],[225,181],[241,73],[282,-9],[187,-64],[252,-154],[1118,-190],[17,-1],[368,-8],[153,34],[172,111],[234,181],[313,390],[175,218],[114,91],[87,41],[72,-10],[111,-31],[118,-46],[117,-118],[615,-771],[10,-13],[436,-522],[147,-54],[116,-22],[194,22],[132,36],[139,45],[210,69],[141,31],[127,-22],[171,-73],[235,-145],[117,4],[114,46],[135,72],[151,50],[132,-27],[204,-118],[295,-272],[319,-562],[120,-91],[186,-74],[247,83],[198,272],[163,318],[84,290],[90,308],[138,526],[103,200],[148,105],[168,-23],[201,-127],[932,-1243],[234,-163],[217,-82],[306,127],[145,145],[186,109],[123,3],[190,-212],[113,-254],[103,-236],[156,-217],[187,-182],[198,-118],[133,-54],[168,-136],[436,-176],[243,-42],[235,-81],[378,-163],[235,-119],[223,-172],[154,-94],[70,-48],[20,-13],[50,-34],[94,6],[58,94],[3,127],[-7,133],[-58,435],[-86,422],[-253,1012],[-45,146],[-15,118],[21,91],[102,381],[36,263],[-6,299],[-21,163],[-75,155],[-265,480],[-322,471],[-6,78],[6,86],[56,129],[44,66],[165,368],[168,349],[93,78],[109,49],[191,71],[127,-1],[3,0],[60,-18],[118,-79],[90,4],[78,41],[42,68],[72,131],[85,268],[57,281],[54,472],[54,77],[75,82],[108,22],[294,-81],[110,-78],[101,-190],[46,-100],[117,-95],[81,-50],[111,0],[118,59],[201,109],[186,113],[62,34],[41,43],[24,55],[0,150],[-6,226],[18,259],[27,281],[69,277],[138,222],[78,104],[39,141],[178,612],[-9,123],[-54,226],[-39,232],[-25,222],[3,140],[43,123],[51,100],[186,331],[54,145],[3,81],[-48,241],[-81,231],[-35,97],[-11,122],[18,119],[41,119],[53,135],[5,93],[-13,150],[-27,124],[-61,165],[-86,238],[-146,394],[-93,226],[-69,132],[-105,95],[-159,20],[-95,-24],[-50,27],[-18,75],[68,279],[94,218],[142,139],[145,45],[200,61],[55,136],[31,177],[36,210],[32,347],[31,245],[9,191],[-9,190],[27,177],[77,184],[194,183],[316,245],[302,228],[148,167],[64,81],[13,136],[-63,477],[-140,959],[-54,401],[23,313],[36,231],[30,113],[58,114],[455,528],[480,445],[575,533],[86,59],[66,40],[66,41],[94,105],[57,142],[20,119],[-11,116],[-19,94],[-2,43],[18,49],[27,54],[44,32],[124,48],[37,14],[95,81],[128,161],[61,146],[103,307],[72,242],[93,458],[35,323],[-21,199],[-93,297],[-111,274],[-571,878],[-271,485],[-172,377],[28,124],[358,377],[153,194],[99,162],[62,132],[43,178],[43,63],[43,63],[75,34],[103,47],[43,81],[21,177],[-14,141],[-57,479],[4,215],[17,157],[47,113],[61,86],[100,43],[549,81],[472,210],[268,161],[250,54],[292,-27],[418,11],[454,54],[267,81],[240,145],[128,162],[129,172],[136,221],[299,512],[157,299],[157,300],[9,18],[297,622],[86,261],[37,407],[39,293],[38,293],[129,595],[146,518],[70,135],[121,231],[214,380],[436,1230],[-4,155],[-3,156],[-79,237],[-165,185],[-142,160],[-114,344],[-96,1006],[-133,287],[-264,205],[-371,75],[-236,162],[-486,570],[-107,184],[-57,226],[-11,302],[54,194],[93,97],[132,32],[168,70],[221,151],[89,113],[43,108],[4,318],[-86,689],[-7,243],[23,222],[27,98],[50,342],[15,88],[46,278],[107,334],[100,254],[71,231],[64,334],[-13,543],[-12,470],[4,142],[39,279],[32,119],[43,102],[57,113],[93,54],[140,65],[60,11],[57,91],[0,108],[-30,89],[-15,44],[-15,45],[-100,134],[-86,97],[-29,146],[-21,188],[25,232],[61,253],[96,205],[93,107],[97,85],[41,110],[62,166],[27,204],[25,188],[-4,183],[32,291],[68,232],[104,145],[260,318],[23,107],[-23,227],[-21,205],[-9,59],[-9,60],[-61,214],[-124,241],[-168,422],[-118,453],[-65,307],[-60,318],[-32,291],[14,150],[32,70],[46,44],[51,8],[42,8],[722,328],[373,163],[193,76],[153,-22],[161,-92],[428,-290],[162,-34],[142,56],[596,360],[118,16],[161,-64],[371,-539],[164,-194],[254,-145],[171,-97],[243,-92],[211,65],[160,-27],[197,-108],[426,-517],[128,-91],[185,-59],[136,9],[331,114],[447,172],[201,145],[92,125],[164,339],[143,232],[64,129],[29,156],[32,264],[31,178],[-27,242],[0,162],[28,43],[14,21],[15,22],[64,119],[136,242],[139,102],[53,119],[36,167],[43,199],[104,129],[125,22],[135,-49],[195,-103],[102,-31],[96,32],[94,122],[188,417],[125,253],[139,145],[86,65],[136,37],[121,121],[100,101],[175,53],[146,33],[211,-54],[137,-71],[8,-5],[117,-74],[135,-94],[92,-42],[132,65],[65,81],[64,183],[70,569],[37,164],[121,87],[179,144],[180,144],[247,198],[135,172],[259,332],[290,544],[60,167],[-1,184],[-64,314],[-75,366],[-10,213],[3,148],[1,57],[-11,415],[-28,318],[10,107],[65,97],[64,43],[171,124],[93,81],[75,65],[57,70],[68,54],[82,21],[122,5],[289,49],[250,75],[186,119],[68,92],[6,87],[-161,328],[-121,312],[-50,247],[-24,215],[-12,190],[5,167],[7,190],[5,163],[18,-2],[37,-5],[43,4],[52,-21],[69,-22],[69,-26],[92,-26],[98,-48],[22,-23],[44,-46],[95,-22],[86,39],[75,22],[77,43],[84,26],[62,28],[47,72],[6,69],[37,70],[69,17],[129,113],[92,74],[41,60],[17,96],[32,130],[34,56],[58,52],[54,31],[52,8],[35,-21],[25,-52],[49,-52],[92,-52],[150,-9],[57,-35],[61,-35],[49,-78],[63,-47],[72,-57],[66,-17],[75,-30],[71,-13],[90,-35],[80,-9],[92,44],[52,52],[106,78],[161,160],[135,122],[64,99],[93,120],[103,125],[71,20],[38,-9],[25,-56],[29,-122],[35,-160],[106,-278],[52,-130],[43,-143],[57,-134],[78,-161],[46,-100],[52,-65],[22,-11],[107,-54],[98,0],[57,57],[9,86],[3,96],[-12,95],[-43,61],[-26,87],[23,108],[0,87],[32,69],[23,135],[17,134],[4,19],[25,137],[20,40],[55,108],[66,26],[89,9],[127,-22],[86,-22],[67,-4],[68,35],[69,26],[414,-13],[52,-48],[49,-43],[77,-53],[44,-78],[17,-121],[31,-200],[26,-203],[20,-139],[41,-117],[34,-135],[38,-108],[20,-117],[28,-152],[32,-139],[3,-130],[14,-169],[21,-134],[45,-127],[26,-199],[52,-282],[32,-147],[37,-161],[40,-74],[64,-95],[43,-83],[43,-108],[40,-87],[37,-65],[49,-52],[49,-65],[69,-43],[66,-48],[41,-65],[14,-74],[-3,-74],[-17,-60],[-49,-39],[-29,-57],[-14,-56],[9,-70],[37,-39],[69,-60],[66,-31],[69,-56],[78,-30],[66,-39],[52,-13],[54,8],[95,65],[78,78],[51,22],[38,-30],[3,-61],[-18,-82],[-25,-83],[-38,-91],[-20,-78],[-34,-82],[2,-61],[32,-52],[40,-26],[55,-44],[46,-43],[23,-69],[17,-87],[66,-126],[18,-31],[37,-64],[52,-91],[88,-116],[41,-54],[118,-156],[40,-65],[52,-52],[43,-56],[35,-39],[37,-18],[35,13],[34,39],[20,57],[38,39],[46,39],[51,52],[58,74],[46,65],[17,39],[6,14],[11,25],[32,56],[37,61],[46,9],[49,-9],[35,-48],[8,-91],[18,-104],[9,-36],[25,-103],[75,-195],[69,-138],[62,-85],[49,-109],[24,-54],[15,-27],[28,-51],[52,-43],[40,-5],[75,-26],[38,3],[17,2],[48,17],[32,56],[55,26],[52,0],[37,-17],[37,-48],[38,-56],[31,-70],[15,-69],[5,-78],[-40,-61],[-14,-16],[-26,-31],[-36,-14],[-22,-8],[-49,-26],[-2,-48],[31,-13],[18,-43],[28,-44],[35,-39],[40,0],[52,0],[46,13],[40,44],[37,69],[23,74],[3,61],[-11,60],[-25,48],[-4,9],[-37,65],[-15,99],[29,96],[26,52],[57,17],[61,5],[57,-39],[46,-70],[61,-52],[51,-74],[35,-56],[14,-78],[-5,-78],[-23,-61],[-41,-36],[-3,-3],[-28,-61],[20,-65],[40,-8],[52,4],[46,39],[25,41],[21,33],[10,11],[30,32],[60,22],[140,-76],[47,-7],[58,-13],[69,-26],[43,-65],[29,-65],[17,-65],[12,-56],[20,-78],[37,-57],[52,-21],[54,0],[44,-26],[17,-52],[8,-61],[-5,-61],[3,-69],[46,-61],[40,-30],[17,-91],[23,-96],[17,-215],[0,-2],[43,-104],[52,-52],[63,-69],[40,-36],[12,-12],[86,-43],[84,-26],[46,-48],[23,-83],[85,-237],[10,-27],[21,-15],[31,-20],[40,-9],[52,18],[60,4],[49,-17],[49,-48],[34,-69],[32,-65],[46,-26],[43,-18],[49,-24],[3,-2],[51,-39],[35,-56],[23,-52],[6,-20],[17,-63],[24,-54],[39,-24],[43,-17],[46,4],[26,6],[29,7],[46,35],[49,22],[49,0],[40,-13],[20,-52],[9,-92],[-29,-78],[-29,-52],[-43,-26],[-37,-13],[-55,-4],[-49,4],[-51,9],[-58,13],[-46,17],[-8,-4],[-47,-22],[-40,-47],[-8,-26],[-26,-83],[-35,-104],[-9,-45],[-23,-110],[-11,-53],[-3,-13],[-34,-169],[-82,-231],[-2,-4],[-37,-130],[-14,-103],[-3,-27],[-5,-21],[-16,-79],[-7,-25],[-13,-44],[-30,-39],[-13,-17],[-69,-70],[-19,-46],[-33,-75],[-60,-143],[-62,-180],[-53,-137],[-26,-152],[3,-117],[3,-91],[6,-91],[26,-152],[31,-104],[28,-72],[18,-49],[41,-66],[106,-169],[67,-39],[51,-26],[66,0],[95,-26],[66,18],[60,30],[58,61],[46,60],[43,74],[52,69],[89,18],[89,-22],[75,-17],[57,-35],[41,-40],[17,-16],[57,-70],[81,-22],[14,-4],[66,5],[61,-9],[71,-35],[84,-65],[75,-73],[43,-61],[53,-70],[45,-66],[71,-51],[75,-34],[63,-48],[49,-31],[46,-21],[38,-44],[43,-52],[29,-65],[40,-78],[34,-65],[58,-65],[112,-100],[121,-95],[57,-65],[69,-87],[33,-42],[28,-36],[12,-21],[31,-53],[80,-78],[35,-65],[34,-39],[43,-13],[40,23],[29,68],[55,52],[32,29],[26,23],[69,44],[57,56],[55,48],[42,31],[61,8],[23,-50],[3,-7],[23,-60],[52,-18],[40,-4],[49,9],[46,26],[60,21],[32,39],[29,57],[17,48],[-17,73],[14,91],[24,81],[5,15],[34,74],[41,60],[37,22],[55,-13],[86,-13],[66,-4],[86,0],[21,1],[120,7],[107,0],[103,44],[124,32],[84,20],[37,8],[146,57],[89,47],[92,31],[92,30],[64,18],[71,34],[52,31],[49,56],[43,52],[23,43],[35,65],[46,35],[43,18],[43,8],[46,-13],[23,-48],[-23,-56],[-35,-52],[-43,-56],[-28,-61],[-29,-52],[-32,-57],[-52,-39],[-57,-21],[-60,-35],[-38,-95],[3,-109],[-26,-104],[-29,-104],[-40,-48],[-46,-47],[-40,-48],[-35,-22],[-40,-13],[-40,-22],[-49,-21],[-7,-72],[-68,-84],[-60,-39],[-69,-44],[-38,-3],[-86,-1],[-69,-52],[-54,-35],[-58,-100],[-72,-99],[-52,-78],[-100,-61],[-204,-182],[-19,-26],[-88,-118],[-109,-203],[-75,-174],[-83,-173],[-72,-222],[3,-104],[14,-32],[7,-15],[4,-9],[4,-9],[40,-21],[40,13],[35,47],[9,23],[22,55],[35,104],[43,105],[66,147],[58,78],[37,100],[10,18],[33,64],[40,35],[58,39],[57,26],[58,-26],[77,17],[72,0],[84,-4],[86,-17],[109,-44],[130,-17],[104,-20],[143,-28],[118,-82],[167,-130],[109,-31],[109,-30],[112,-100],[170,-100],[216,-169],[71,-52],[58,-65],[46,-26],[49,17],[60,27],[89,65],[66,47],[78,-26],[89,-47],[89,-52],[80,-21],[84,6],[66,39],[55,32],[69,78],[69,26],[75,-9],[54,-47],[58,8],[43,44],[60,104],[92,189],[9,19],[84,147],[126,178],[37,91],[18,74],[-3,78],[-23,87],[-12,49],[-8,38],[0,117],[11,126],[15,69],[34,56],[60,65],[72,44],[58,13],[37,-22],[43,-82],[46,-18],[43,-8],[52,21],[46,35],[26,52],[9,70],[8,108],[0,113],[-5,117],[15,186],[13,174],[20,134],[15,74],[37,26],[52,22],[37,39],[64,61],[77,99],[38,13],[26,-47],[20,-57],[49,-43],[60,-35],[55,-9],[66,-30],[92,-56],[89,-48],[80,-43],[81,-52],[63,-96],[78,-87],[54,-60],[66,-48],[116,-48],[161,9],[175,22],[451,91],[150,-22],[149,-26],[58,-39],[80,-26],[127,48],[75,30],[80,121],[127,207],[54,58],[52,56],[141,204],[60,78],[61,70],[52,21],[54,13],[69,-17],[61,-39],[51,-52],[52,-56],[75,-48],[83,-39],[72,-4],[83,-39],[87,-35],[146,-65],[110,-52],[57,-5],[32,39],[46,13],[54,-4],[61,-13],[72,-22],[77,-39],[72,-30],[43,-30],[44,-47],[45,-49],[22,-29],[17,-18],[19,-7],[24,-13],[16,-24],[32,-65],[39,-78]],[[983726,672284],[-88,-19],[-407,17]],[[919050,816932],[67,7],[58,24],[56,52],[96,121],[50,173],[9,289],[-22,299],[-40,322],[-40,184],[12,199],[53,122],[89,70],[87,42],[87,-23],[96,-75],[90,-108],[24,-177],[19,-182],[49,-150],[130,-116],[134,-18],[130,32],[117,56],[102,126],[84,163],[31,173],[-3,135],[-37,108],[-56,98],[-62,61],[-71,46],[-96,28],[-127,-23],[-152,19],[-89,42],[-72,65],[-52,108],[12,135],[40,98],[65,47],[65,14],[72,14],[112,25],[386,3],[105,79],[105,80],[95,89],[101,37],[89,23],[81,-37],[74,-103],[96,-126],[189,-257],[145,-5],[134,70],[154,108],[99,98],[106,42],[93,-84],[86,-145],[65,-229],[170,-439],[165,-280],[101,-139],[134,-99],[152,9],[86,75],[81,145],[34,205],[-3,224],[-22,196],[-65,206],[-84,187],[-34,135],[34,201],[62,168],[155,224],[149,229],[195,178],[99,51],[62,28],[62,34],[74,36],[6,70],[-22,93],[-40,80],[-68,126],[-102,154],[-93,117],[-25,107],[10,89],[46,75],[65,79],[136,173],[71,117],[28,46],[59,140],[59,164],[50,159],[37,116],[62,38],[86,60],[325,192],[226,112],[137,79],[133,61],[102,145],[77,103],[62,116],[65,117],[68,98],[81,42],[117,35],[78,7],[105,14],[142,66],[200,143],[172,123],[105,51],[84,8],[59,6],[145,-4],[11,-6],[60,-32],[68,-60],[134,-52],[204,-61],[80,24],[65,32],[127,80],[130,126],[96,131],[137,88],[105,-4],[77,-38],[87,-84],[71,-121],[50,-84],[80,-140],[73,-52],[104,-51],[547,-159],[72,-60],[71,-80],[53,-98],[30,-131],[87,-541],[56,-159],[114,-164],[96,-88],[90,-75],[99,-33],[90,5],[108,28],[103,61],[164,191],[99,47],[96,9],[89,-14],[93,-33],[102,-60],[3,-3],[81,-86],[65,-177],[77,-159],[93,-94],[84,-116],[37,-192],[-40,-107],[-59,-145],[-155,-154],[-12,-164],[15,-87],[87,-156],[87,-60],[116,-92],[97,-179],[44,-150],[102,-224],[121,-37],[105,28],[80,61],[10,149],[-53,220],[-50,177],[-6,206],[16,158],[55,122],[87,135],[180,94],[108,116],[164,145],[93,-19],[80,-79],[53,-93],[25,-159],[31,-187],[18,-224],[10,-276],[40,-149],[74,-117],[136,-159],[38,-121],[6,-98],[-22,-103],[-34,-124],[-31,-91],[34,-107],[127,-140],[168,-199],[213,-189],[384,-266],[294,-170],[393,-180],[90,-75],[40,-107],[34,-145],[50,-117],[62,-112],[67,-15],[224,108],[74,112],[31,122],[-9,107],[61,84],[90,42],[177,47],[52,-14],[41,-61],[-13,-79],[9,-187],[44,-247],[83,-224],[96,-207],[140,-172],[631,-434],[480,-392],[50,-108],[27,-131],[-46,-523],[16,-165],[21,-157],[13,-135],[43,-70],[96,0],[93,70],[80,116],[31,122],[19,117],[6,163],[-12,145],[-22,135],[-3,154],[-16,127],[28,144],[56,145],[77,65],[84,10],[87,-42],[80,-61],[84,-131],[46,-116],[53,-192],[55,-173],[50,-168],[105,-182],[406,-381],[80,-77],[68,-3],[50,83],[-6,121],[-25,154],[-12,215],[52,150],[96,93],[105,51],[112,-32],[108,-108],[130,-159],[149,-140],[108,-112],[75,-121],[74,-80],[158,-18],[164,18],[49,61],[37,75],[31,135],[-21,145],[-50,145],[-59,103],[-58,135],[-22,159],[28,117],[71,28],[71,-5],[81,-47],[59,-75],[46,-102],[40,-112],[-9,-126],[18,-94],[28,-121],[22,-126],[12,-122],[13,-107],[-16,-98],[-69,-105],[-64,-110],[-31,-150],[-15,-284],[31,-215],[31,-178],[96,-205],[101,-182],[131,-225],[111,-98],[106,-14],[61,75],[50,164],[37,163],[43,135],[31,122],[28,149],[75,173],[111,145],[102,140],[71,163],[65,159],[-6,159],[-25,126],[-18,136],[49,70],[93,9],[189,-19],[245,-28],[263,-60],[161,-75],[52,-122],[35,-126],[37,-112],[55,-42],[75,-18],[68,14],[59,37],[43,84],[9,112],[-28,126],[-62,234],[-24,107],[-28,140],[-47,94],[-49,70],[-56,56],[-62,37],[-158,5],[-143,-55],[-107,-43],[-62,-24],[-62,-14],[-41,38],[-12,79],[19,103],[34,107],[46,154],[93,173],[127,135],[173,155],[127,88],[158,94],[136,140],[75,131],[24,168],[-18,121],[-37,103],[-50,112],[-59,70],[-74,84],[-46,103],[0,131],[43,74],[56,38],[93,-10],[120,-46],[81,-94],[46,-103],[16,-154],[-56,-313],[22,-191],[21,-149],[50,-187],[90,-136],[86,-89],[211,-9],[127,94],[114,144],[50,164],[49,103],[44,74],[90,0],[52,-84],[53,-140],[25,-191],[3,-229],[-3,-182],[-41,-150],[-77,-130],[-108,-85],[-121,-18],[-149,23],[-124,61],[-133,75],[-80,-14],[-40,-47],[3,-94],[55,-28],[78,-37],[201,-93],[204,-56],[443,-61],[285,56],[114,65],[62,98],[167,351],[84,56],[56,-61],[15,-84],[-31,-103],[-93,-187],[-71,-186],[-127,-313],[-59,-182],[-61,-80],[-88,-63],[-21,-119],[31,-131],[57,-58],[58,2],[154,89],[158,79],[127,52],[133,-5],[314,12],[182,109],[594,379],[152,70],[80,4],[65,-28],[47,-107],[18,-126],[-31,-140],[-55,-140],[-62,-145],[-41,-126],[-40,-94],[6,-85],[22,-63],[62,-43],[53,19],[62,51],[40,79],[46,103],[34,122],[59,74],[71,38],[75,32],[58,52],[25,46],[53,61],[65,61],[109,174],[346,87],[39,5],[106,14],[112,-51],[87,-52],[71,-42],[52,-65],[56,-131],[40,-159],[0,-210],[-21,-187],[-31,-126],[-22,-112],[50,-74],[83,18],[102,33],[131,98],[80,98],[77,140],[34,523],[28,94],[37,191],[34,220],[31,210],[78,70],[179,60],[94,-8],[52,-76],[121,-355],[55,-219],[22,-145],[93,-453],[74,-89],[87,-48],[105,34],[99,99],[62,112],[25,130],[-28,80],[-59,-5],[-83,33],[-96,98],[-100,131],[-74,191],[-46,210],[15,178],[161,509],[53,154],[34,98],[52,26],[87,30],[92,-11],[549,-43],[167,-13],[164,8],[96,16],[118,103],[505,379],[130,23],[176,-42],[138,-16],[215,86],[158,70],[182,56],[217,10],[195,0],[112,-38],[71,-219],[34,-187],[43,-70],[84,-9],[93,102],[127,332],[96,234],[182,242],[223,243],[133,117],[102,112],[47,89],[29,145],[5,23],[28,173],[9,261],[19,206],[46,154],[74,145],[44,112],[-10,107],[-46,80],[-71,56],[-365,205],[-62,19],[-50,98],[-12,135],[15,140],[133,360],[87,126],[50,121],[105,214],[130,263],[96,107],[74,61],[96,61],[111,42],[131,32],[108,23],[6,1],[112,0],[337,74],[68,28],[93,0],[114,-46],[130,-47],[152,-28],[68,-33],[257,-244],[106,-69],[95,-60],[72,-131],[71,-163],[22,-131],[77,-243],[68,-206],[56,-84],[85,-61],[104,-32],[96,28],[108,42],[124,37],[192,10],[238,-66],[328,-56],[307,19],[198,9],[535,224],[133,77],[288,166],[192,145],[50,122],[37,154],[31,242],[19,169],[2,15],[29,157],[55,108],[112,93],[210,138],[25,16],[96,40],[68,68],[19,74],[9,150],[19,201],[37,221],[40,235],[28,111],[31,73],[68,23],[124,-9],[96,-47],[80,-42],[223,-56],[220,28],[164,61],[70,58],[83,70],[119,184],[47,145],[8,54],[17,105],[35,137],[79,148],[112,117],[120,112],[202,121],[120,14],[112,42],[130,-47],[105,-18],[173,14],[155,-28],[75,4],[65,-32],[46,-52],[28,-88],[62,-117],[59,-108],[136,-172],[164,-117],[89,-15],[37,-6],[320,86],[70,62],[19,18],[109,79],[111,0],[28,-7],[297,-82],[30,5],[165,23],[93,37],[84,33],[83,75],[127,168],[41,126],[0,108],[-22,121],[-15,106],[-13,146],[40,61],[81,-28],[68,-84],[65,-75],[68,-112],[12,-98],[-31,-145],[-37,-158],[0,-215],[56,-182],[80,-98],[202,-89],[14,-4],[116,-29],[105,33],[9,135],[-18,108],[-44,102],[-73,120],[-13,128],[49,135],[84,19],[156,-59],[30,-11],[133,9],[195,-65],[127,-65],[52,-75],[13,-140],[43,-112],[59,-145],[52,-164],[47,-98],[83,-60],[96,-10],[239,75],[251,163],[114,14],[170,-37],[214,-135],[124,-66],[65,-65],[12,-79],[-80,-136],[-124,-103],[-51,-49],[-72,-77],[-54,-140],[45,-106],[61,-137],[124,-93],[139,-98],[105,-80],[170,-42],[223,-74],[228,-141],[73,-224],[52,-154],[84,-79],[151,-2],[180,72],[71,47],[64,-19],[86,-51],[61,-61],[37,-173],[15,-176],[65,-67],[99,-56],[78,-84],[18,-103],[-27,-214],[-41,-299],[-55,-173],[-10,-79],[31,-80],[41,-11],[137,51],[327,245],[170,140],[65,145],[28,140],[50,159],[72,51],[172,28],[105,-42],[93,-84],[96,-131],[78,-130],[108,-80],[127,-135],[43,-159],[59,-164],[87,-107],[170,-112],[347,-234],[1000,-859],[210,-140],[260,-313],[397,-439],[253,-397],[257,-443],[233,-407],[191,-364],[84,-176],[3,-174],[-56,-150],[-74,-102],[-114,-80],[-89,-85],[-23,-102],[59,-46],[77,-10],[109,33],[86,28],[44,65],[24,146],[56,88],[47,-14],[43,-97],[19,-197],[21,-117],[22,-154],[49,-126],[65,-38],[103,-14],[99,-56],[65,-84],[49,-168],[31,-168],[16,-93],[62,-61],[111,-108],[127,-14],[93,-116],[43,-126],[65,-178],[62,-224],[16,-173],[37,-168],[43,-47],[65,-4],[59,98],[6,84],[-12,103],[-31,130],[-3,136],[58,112],[84,65],[77,33],[59,-28],[56,-61],[43,-112],[-40,-191],[-49,-75],[-53,-53],[-62,-139],[-12,-154],[0,-158],[3,-158],[15,-113],[-43,-173],[-62,-66],[-22,-91],[42,-91],[51,5],[65,84],[66,110],[95,40],[81,-24],[50,-65],[54,-97],[13,-146],[-9,-220],[-6,-154],[46,-224],[53,-84],[74,-51],[74,-5],[115,24],[78,4],[83,19],[74,-38],[53,-70],[13,-82],[0,-101],[2,-111],[50,-89],[158,-141],[226,-48],[133,-16],[114,51],[124,98],[164,150],[169,90],[90,29],[156,-44],[231,27],[119,164],[119,165],[79,177],[-9,196],[-130,167],[-99,74],[-76,-7],[-66,64],[-5,43],[13,60],[56,58],[75,-1],[282,38],[273,96],[159,-77],[141,-42],[151,31],[71,60],[45,96],[15,205],[-17,222],[70,128],[55,68],[94,23],[92,-29],[69,-58],[98,-181],[172,-178],[167,154],[148,341],[186,186],[189,463],[113,312],[123,155],[134,1],[320,-231],[165,-118],[284,-71],[346,-270],[225,-293],[105,-174],[27,-182],[-11,-190],[42,-166],[89,-63],[158,-79],[105,-95],[47,-48],[118,-156],[123,-168],[131,-32],[215,245],[179,277],[141,103],[263,-44],[50,-94],[31,-61],[45,-355],[84,-229],[147,-135],[141,40],[200,158],[209,55],[194,-23],[275,-16],[47,42],[114,104],[226,243],[161,-8],[102,-284],[-126,-332],[-19,-49],[112,-253],[60,-137],[258,-235],[11,-227],[-222,-336],[314,-435],[185,-239],[299,-61],[274,-252],[-119,-267],[-227,-101],[-84,-37],[-19,-204],[347,-470],[118,-470],[-151,-325],[-62,-327],[62,-241],[301,38],[173,-216],[86,-325],[-16,-421],[-232,-236],[-88,-74],[-154,-129],[-43,-357],[86,-713],[37,-63],[92,-156],[81,-317],[4,-902],[1,-363],[-62,-988],[170,-1049],[382,-1209],[290,-446],[55,-259],[198,-74],[86,18],[704,152],[393,41],[500,-438],[279,-101],[291,-85],[307,-8],[129,194],[32,203],[194,341],[263,397],[232,503],[183,479],[112,438],[135,268],[194,57],[354,-292],[355,-382],[33,-381],[-162,-324],[-145,-276],[-43,-325],[86,-422],[113,-397],[-140,-244],[-226,-97],[-242,97],[-145,168],[-226,-54],[-102,-284],[75,-284],[183,-270],[468,-257],[317,24],[350,706],[226,0],[204,-276],[26,-1108],[3,-139],[276,-547],[239,-475],[301,-207],[351,-105],[630,145],[331,-69],[176,-176],[39,-264],[-19,-306],[-159,-190],[-129,-245],[-27,-149],[23,-110],[106,-155],[389,-169],[661,-229],[279,-217],[4,-11],[118,-320],[98,-674],[18,-915],[-109,-1196],[129,-1542],[164,-720],[-163,-924],[-813,-3801],[-236,-2649],[-8,-90],[-108,-3434],[122,-2738],[298,-1942],[210,-825],[210,-826],[-41,-375],[-582,-181],[-298,-777],[-109,-1431],[-674,-1146],[-481,-1873],[-579,-690],[-207,-247],[-711,-1398],[-518,-590],[-481,-936],[-520,-1376],[-317,-1013],[-462,-419],[-488,132],[-735,-134],[-785,-669],[-735,-879],[-532,-898],[-532,-1013],[-469,-1071],[-208,-284],[-223,-1149],[-253,-1089],[-216,-1013],[-291,-861],[13,-860],[-216,-630],[-621,-1204],[-507,-994],[-319,-1049],[-499,-815],[-271,-296],[-330,-573],[-278,-746],[-317,-879],[0,-178],[0,-395],[-127,-440],[-240,-554],[-305,-536],[-202,-688],[-19,-36],[-387,-747],[-773,-707],[-354,-880],[-430,-901],[-470,-532],[-481,-822],[-419,-535],[-342,-765],[-192,-740],[-210,-253],[-555,-670],[-791,-955],[-862,-535],[-443,-746],[-400,-789],[-323,-561],[-456,-666],[-751,-1114],[-633,-1714],[-810,-1498],[-494,-1171],[-407,-717],[-557,-1775],[-179,-417],[-265,-996],[-427,-2155],[-155,-846],[-279,-2085],[3,-1503],[17,-1704],[2,-191],[308,-2664],[512,-3006],[688,-2945],[939,-4496],[441,-1305],[19,-999],[312,-777],[571,444],[474,-528],[381,-1388],[234,-853],[42,-97],[162,-379],[484,-1135],[101,-237],[323,-1068],[3,2],[629,-2504],[350,-1610],[459,-1193],[589,-833],[497,-749],[478,-472],[368,-499],[847,-500],[699,-666],[423,-444],[478,-250],[460,-388],[350,-250],[344,-214],[373,-397],[429,-404],[13,932],[312,360],[223,-598],[366,-734],[-37,754],[120,89],[819,-913],[262,-453],[-50,-1220]],[[792246,985928],[27,-51],[2,-4],[25,-35],[28,-36],[37,-37],[80,-64],[70,-56],[149,-112],[126,-89],[26,-13],[29,-13],[48,-22],[1,-1],[68,-24],[84,-36],[110,-19],[113,-32],[74,-35],[27,-12],[92,-49],[76,-36],[61,-21],[71,-20],[48,-16],[47,-7],[55,2],[36,-4],[40,-10],[39,-16],[52,-23],[56,-12],[67,1],[48,9],[35,12],[32,21],[31,24],[36,27],[34,15],[33,-4],[27,-17],[24,-20],[22,-33],[17,-36],[15,-45],[3,-21],[2,-20],[-1,-16],[-3,-33],[-4,-62],[2,-46],[6,-32],[5,-24],[10,-37],[13,-42],[18,-48],[24,-62],[19,-62],[22,-83],[24,-85],[37,-91],[33,-72],[55,-72],[57,-78],[56,-114],[50,-96],[46,-74],[50,-52],[37,-35],[25,-8],[24,-2],[35,9],[25,17],[20,35],[9,40],[9,67],[4,99],[-3,83],[-6,64],[-1,36],[5,27],[8,20],[14,16],[16,6],[27,0],[27,-11],[43,-41],[65,-70],[73,-80],[56,-79],[51,-90],[25,-80],[9,-37],[3,-47],[-8,-41],[-14,-31],[-20,-20],[-19,-21],[-34,-21],[-44,2],[-29,6],[-34,6],[-48,0],[-39,-6],[-46,-25],[-50,-28],[-35,-13],[-19,-18],[-15,-32],[-4,-37],[7,-44],[13,-33],[18,-24],[20,-11],[48,-3],[54,13],[73,25],[87,33],[63,20],[60,27],[56,23],[48,37],[55,56],[43,61],[21,30],[17,60],[6,64],[3,62],[-8,50],[-5,36],[-11,36],[-12,36],[-22,71],[-12,37],[-7,40],[9,34],[16,31],[10,21],[28,46],[14,19],[22,13],[21,-3],[23,-4],[16,-16],[31,-24],[31,-19],[43,-46],[33,-42],[25,-50],[21,-56],[24,-81],[13,-61],[1,-63],[-2,-54],[-13,-48],[-27,-38],[-28,-12],[-34,-7],[-27,-21],[-16,-16],[-30,-52],[-18,-47],[-4,-38],[4,-39],[8,-49],[20,-47],[10,-41],[15,-59],[37,-52],[48,-46],[56,-25],[38,0],[35,21],[31,33],[22,49],[14,43],[23,50],[34,36],[40,8],[40,-29],[40,-50],[56,-48],[49,-38],[39,-77],[33,-96],[26,-81],[28,-32],[40,6],[131,86],[38,2],[27,-12],[33,-17],[17,-38],[-5,-77],[-29,-165],[7,-39],[17,-30],[24,0],[25,25],[20,30],[24,46],[36,-1],[34,-23],[46,-35],[37,-25],[21,-4],[17,9],[11,20],[6,29],[0,61],[-3,41],[-11,36],[-44,111],[-70,141],[-14,52],[2,45],[9,48],[24,43],[34,36],[35,32],[29,16],[27,14],[28,9],[34,-12],[17,-13],[12,-29],[21,-55],[34,-146],[9,-73],[-3,-43],[-13,-30],[-19,-25],[-16,-35],[-3,-39],[6,-61],[13,-100],[16,-66],[10,-89],[1,-63],[9,-86],[21,-83],[18,-56],[7,-67],[1,-63],[-10,-65],[-14,-70],[-31,-95],[-11,-55],[9,-60],[17,-47],[25,-36],[21,-23],[79,-31],[63,-18],[40,-9],[22,-28],[18,-77],[-3,-96],[-3,-104],[12,-65],[12,-48],[16,-82],[67,-221],[18,-58],[19,-87],[10,-124],[-6,-86],[-6,-58],[-27,-46],[-88,-52],[-49,-41],[-33,-35],[-13,-46],[11,-53],[36,-61],[49,-36],[45,-13],[34,-6],[51,15],[49,24],[33,30],[30,36],[14,65],[3,36],[0,30],[-52,111],[-3,33],[5,38],[20,33],[32,7],[62,-9],[65,-27],[58,-10],[39,-32],[30,-54],[34,-82],[-1,-158],[-58,-213],[-19,-61],[-9,-112],[16,-102],[40,-65],[50,-25],[67,-13],[66,28],[50,44],[56,14],[48,-56],[38,-76],[28,-17],[36,15],[26,39],[36,81],[22,53],[3,52],[-5,66],[-13,187],[22,92],[29,80],[-9,57],[-5,88],[23,113],[31,55],[46,9],[101,65],[100,133],[51,105],[30,60],[86,119],[76,-57],[70,91],[83,24],[149,45],[76,-52],[40,-191],[100,-160],[13,-21],[165,-255],[116,-182],[122,-98],[137,-116],[158,-113],[64,-146],[44,-139],[46,-95],[100,-80],[94,-55],[105,-94],[94,-19],[123,-49],[51,-196],[-87,-208],[-9,-257],[-89,-174],[-67,-160],[-77,-267],[-196,-527],[-56,-227],[-56,-274],[-62,-268],[-1,-4],[-46,-308],[-8,-128],[-6,-116],[93,-215],[78,-50],[311,-127],[245,-22],[215,2],[181,-62],[22,-129],[-161,-301],[-116,-203],[-113,-92],[-102,-76],[-134,-106],[-41,-162],[36,-151],[65,-82],[89,-98],[138,-198],[285,-285],[187,-196],[29,-84],[-6,-203],[98,-310],[89,-406],[123,-395],[-75,-310],[-73,-151],[-31,-64],[-136,-252],[-147,-386],[-140,-149],[-197,-207],[-212,-252],[-138,-172],[-110,-105],[-98,-102],[-32,-90],[38,-175],[61,-191],[72,-171],[65,-106],[72,-140],[78,-123],[79,-133],[69,-159],[16,-107],[-13,-165],[-68,-248],[-49,-201],[-68,-202],[-93,-82],[-139,10],[-160,17],[-136,13],[-117,-20],[-97,-17],[-59,-71],[-62,-196],[-32,-207],[-22,-450],[-4,-19],[-49,-269],[-125,-184],[-166,-195],[-140,-310],[22,-187],[138,-177],[36,-45],[146,-188],[165,-247],[60,-299],[248,-634],[126,-721],[1,-10],[8,-22],[2,-4],[16,-46],[11,-31],[79,-221],[100,-420],[42,-136],[79,-261],[84,-276],[91,-189],[54,-110],[98,-256],[101,-251],[46,-173],[23,-161],[6,-45],[-3,-153],[-33,-99],[-140,-39],[-95,-5],[-70,-25],[-96,-4],[-66,34],[-84,44],[-108,-14],[-85,-59],[-49,-138],[7,-91],[19,-126],[82,-113],[94,-45],[74,25],[24,35],[43,68],[49,15],[49,20],[39,-10],[16,-64],[-10,-79],[-55,-74],[-91,-113],[-69,-88],[-56,-84],[-78,-59],[-62,-45],[-127,-29],[-65,-49],[-62,-74],[-27,-52],[-17,-74],[24,-66],[52,-69],[65,-25],[42,0],[35,27],[25,67],[25,80],[19,43],[28,26],[26,10],[26,-17],[19,-39],[10,-98],[27,-106],[29,-84],[16,-47],[29,-123],[17,-113],[6,-113],[-9,-58],[-16,-62],[-45,-85],[-43,-93],[-12,-29],[-3,-38],[3,-47]]],"transform":{"scale":[0.0000039308059636087374,0.0000026057291066688268],"translate":[-44.88932055080272,-23.368931962939712]}} diff --git a/docs/source/tutorials/tutorials.rst b/docs/source/tutorials/tutorials.rst index 24182c7..edad7e1 100644 --- a/docs/source/tutorials/tutorials.rst +++ b/docs/source/tutorials/tutorials.rst @@ -31,4 +31,4 @@ Dengue, Zika, Chikungunya ------------------------- #. :doc:`Dengue` #. :doc:`Zika` -#. :doc:`Chikungunya` \ No newline at end of file +#. :doc:`Chikungunya` diff --git a/pysus/__init__.py b/pysus/__init__.py index 67c1494..4165183 100644 --- a/pysus/__init__.py +++ b/pysus/__init__.py @@ -1,9 +1,10 @@ # type: ignore[attr-defined] """PySUS Python package""" -from . import preprocessing, utilities from importlib import metadata as importlib_metadata +from . import preprocessing, utilities + def get_version() -> str: try: diff --git a/pysus/data/__init__.py b/pysus/data/__init__.py index 85e8ab9..55e534f 100644 --- a/pysus/data/__init__.py +++ b/pysus/data/__init__.py @@ -1,6 +1,6 @@ +import logging import os import struct -import logging from datetime import datetime from pathlib import Path diff --git a/pysus/dataset/geocode_by_cities.json b/pysus/dataset/geocode_by_cities.json index f404e65..6887292 100644 --- a/pysus/dataset/geocode_by_cities.json +++ b/pysus/dataset/geocode_by_cities.json @@ -5290,4 +5290,4 @@ "\u00c9rico Cardoso": 2900504, "\u00d3bidos": 1505106, "\u00d3leo": 3533809 -} \ No newline at end of file +} diff --git a/pysus/ftp/__init__.py b/pysus/ftp/__init__.py index 9a6d96a..d8d0030 100644 --- a/pysus/ftp/__init__.py +++ b/pysus/ftp/__init__.py @@ -1,17 +1,18 @@ from __future__ import annotations + import asyncio import os import pathlib from datetime import datetime from ftplib import FTP -from typing import Any, Dict, List, Optional, Set, Union, Tuple -from typing_extensions import Self +from typing import Any, Dict, List, Optional, Set, Tuple, Union import humanize from aioftp import Client from loguru import logger from pysus.data.local import Data from tqdm import tqdm +from typing_extensions import Self CACHEPATH = os.getenv( "PYSUS_CACHEPATH", os.path.join(str(pathlib.Path.home()), "pysus") @@ -66,11 +67,7 @@ def __init__(self, path: str, name: str, info: dict) -> None: else path + "/" + self.basename ) ppath = self.path.replace(self.basename, "") - self.parent_path = ( - ppath[:-1] - if ppath.endswith("/") - else ppath - ) + self.parent_path = ppath[:-1] if ppath.endswith("/") else ppath self.__info__ = info def __str__(self) -> str: @@ -353,7 +350,7 @@ def reload(self): def is_parent(self, other: Union[Self, File]) -> bool: """ - Checks if Directory or File is inside (or at any subdir) of self. + Checks if Directory or File is inside (or at any subdir) of self. """ if self.path == "/": return True diff --git a/pysus/ftp/databases/ciha.py b/pysus/ftp/databases/ciha.py index 6f5f027..c1a4da8 100644 --- a/pysus/ftp/databases/ciha.py +++ b/pysus/ftp/databases/ciha.py @@ -1,7 +1,7 @@ -from typing import List, Union, Optional +from typing import List, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list, parse_UFs, UFs, MONTHS +from pysus.ftp.utils import MONTHS, UFs, parse_UFs, to_list, zfill_year class CIHA(Database): @@ -68,9 +68,11 @@ def get_files( month: Optional[Union[list, str, int]] = None, group: Union[List[str], str] = "CIHA", ) -> List[File]: - files = list(filter( - lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files - )) + files = list( + filter( + lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files + ) + ) groups = [gr.upper() for gr in to_list(group)] diff --git a/pysus/ftp/databases/cnes.py b/pysus/ftp/databases/cnes.py index 6675a10..1c92852 100644 --- a/pysus/ftp/databases/cnes.py +++ b/pysus/ftp/databases/cnes.py @@ -1,7 +1,7 @@ -from typing import List, Union, Optional +from typing import List, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list, parse_UFs, UFs, MONTHS +from pysus.ftp.utils import MONTHS, UFs, parse_UFs, to_list, zfill_year class CNES(Database): @@ -42,7 +42,7 @@ def load( groups: Union[str, List[str]] = None, ): """ - Loads CNES Groups into content. Will convert the files and directories + Loads CNES Groups into content. Will convert the files and directories found within FTP Directories into self.content """ if not self.__content__: diff --git a/pysus/ftp/databases/ibge_datasus.py b/pysus/ftp/databases/ibge_datasus.py index e21edfb..962cf29 100644 --- a/pysus/ftp/databases/ibge_datasus.py +++ b/pysus/ftp/databases/ibge_datasus.py @@ -1,8 +1,8 @@ -from typing import Optional, List, Union, Literal -from loguru import logger +from typing import List, Literal, Optional, Union +from loguru import logger from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list +from pysus.ftp.utils import to_list, zfill_year class IBGEDATASUS(Database): @@ -16,7 +16,7 @@ class IBGEDATASUS(Database): ) metadata = { "long_name": "Populaçao Residente, Censos, Contagens " - "Populacionais e Projeçoes Intercensitarias", + "Populacionais e Projeçoes Intercensitarias", "source": "ftp://ftp.datasus.gov.br/dissemin/publicos/IBGE", "description": ( "São aqui apresentados informações sobre a população residente, " @@ -28,12 +28,12 @@ class IBGEDATASUS(Database): def describe(self, file: File) -> dict: if file.extension.upper() in [".ZIP"]: - year = file.name.split('.')[0][-2:] + year = file.name.split(".")[0][-2:] description = { "name": str(file.basename), "year": zfill_year(year), "size": file.info["size"], - "last_update": file.info["modify"] + "last_update": file.info["modify"], } return description elif file.extension.upper() == ".DBF": @@ -42,19 +42,20 @@ def describe(self, file: File) -> dict: "name": str(file.basename), "year": zfill_year(year), "size": file.info["size"], - "last_update": file.info["modify"] + "last_update": file.info["modify"], } return description return {} def format(self, file: File) -> tuple: - return file.name[-2:], + return (file.name[-2:],) def get_files( self, source: Literal["POP", "censo", "POPTCU", "projpop"] = "POPTCU", year: Optional[Union[str, int, list]] = None, - *args, **kwargs + *args, + **kwargs, ) -> List[File]: sources = ["POP", "censo", "POPTCU", "projpop"] source_dir = None @@ -71,12 +72,14 @@ def get_files( if year: if isinstance(year, (str, int)): files = [ - f for f in files if - self.describe(f)["year"] == zfill_year(year) + f + for f in files + if self.describe(f)["year"] == zfill_year(year) ] elif isinstance(year, list): files = [ - f for f in files + f + for f in files if str(self.describe(f)["year"]) in [str(zfill_year(y)) for y in year] ] diff --git a/pysus/ftp/databases/pni.py b/pysus/ftp/databases/pni.py index 9faac7b..3843f3c 100644 --- a/pysus/ftp/databases/pni.py +++ b/pysus/ftp/databases/pni.py @@ -1,14 +1,12 @@ -from typing import List, Union, Optional, Literal +from typing import List, Literal, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list, parse_UFs, UFs +from pysus.ftp.utils import UFs, parse_UFs, to_list, zfill_year class PNI(Database): name = "PNI" - paths = ( - Directory("/dissemin/publicos/PNI/DADOS"), - ) + paths = (Directory("/dissemin/publicos/PNI/DADOS"),) metadata = { "long_name": "Sistema de Informações do Programa Nacional de Imunizações", "source": ( @@ -69,9 +67,11 @@ def get_files( uf: Optional[Union[List[str], str]] = None, year: Optional[Union[list, str, int]] = None, ) -> List[File]: - files = list(filter( - lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files - )) + files = list( + filter( + lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files + ) + ) groups = [gr.upper() for gr in to_list(group)] diff --git a/pysus/ftp/databases/sia.py b/pysus/ftp/databases/sia.py index f58ac30..c91b0b5 100644 --- a/pysus/ftp/databases/sia.py +++ b/pysus/ftp/databases/sia.py @@ -1,7 +1,7 @@ -from typing import List, Union, Optional +from typing import List, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list, parse_UFs, UFs, MONTHS +from pysus.ftp.utils import MONTHS, UFs, parse_UFs, to_list, zfill_year class SIA(Database): @@ -71,10 +71,10 @@ def describe(self, file: File) -> dict: def format(self, file: File) -> tuple: if file.extension.upper() in [".DBC", ".DBF"]: - digits = ''.join([d for d in file.name if d.isdigit()]) + digits = "".join([d for d in file.name if d.isdigit()]) if "_" in file.name: name, _ = file.name.split("_") - digits = ''.join([d for d in name if d.isdigit()]) + digits = "".join([d for d in name if d.isdigit()]) chars, _ = file.name.split(digits) year, month = digits[:2], digits[2:] group, uf = chars[:-2].upper(), chars[-2:].upper() @@ -88,9 +88,11 @@ def get_files( year: Optional[Union[list, str, int]] = None, month: Optional[Union[list, str, int]] = None, ) -> List[File]: - files = list(filter( - lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files - )) + files = list( + filter( + lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files + ) + ) groups = [gr.upper() for gr in to_list(group)] diff --git a/pysus/ftp/databases/sih.py b/pysus/ftp/databases/sih.py index 6e763b0..42a7bc5 100644 --- a/pysus/ftp/databases/sih.py +++ b/pysus/ftp/databases/sih.py @@ -1,7 +1,7 @@ -from typing import List, Union, Optional +from typing import List, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list, parse_UFs, UFs, MONTHS +from pysus.ftp.utils import MONTHS, UFs, parse_UFs, to_list, zfill_year class SIH(Database): @@ -72,9 +72,11 @@ def get_files( year: Optional[Union[list, str, int]] = None, month: Optional[Union[list, str, int]] = None, ) -> List[File]: - files = list(filter( - lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files - )) + files = list( + filter( + lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files + ) + ) groups = [gr.upper() for gr in to_list(group)] diff --git a/pysus/ftp/databases/sim.py b/pysus/ftp/databases/sim.py index fb18972..ccb1bc2 100644 --- a/pysus/ftp/databases/sim.py +++ b/pysus/ftp/databases/sim.py @@ -1,7 +1,7 @@ -from typing import List, Union, Optional +from typing import List, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list, parse_UFs, UFs +from pysus.ftp.utils import UFs, parse_UFs, to_list, zfill_year class SIM(Database): diff --git a/pysus/ftp/databases/sinan.py b/pysus/ftp/databases/sinan.py index 8f2b146..5a1c787 100644 --- a/pysus/ftp/databases/sinan.py +++ b/pysus/ftp/databases/sinan.py @@ -1,7 +1,7 @@ -from typing import Optional, List, Union +from typing import List, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list +from pysus.ftp.utils import to_list, zfill_year class SINAN(Database): @@ -94,7 +94,7 @@ def describe(self, file: File) -> dict: "disease": self.diseases[dis_code], "year": zfill_year(year), "size": file.info["size"], - "last_update": file.info["modify"] + "last_update": file.info["modify"], } return description return {} @@ -118,9 +118,11 @@ def get_files( dis_code: Optional[Union[str, list]] = None, year: Optional[Union[str, int, list]] = None, ) -> List[File]: - files = list(filter( - lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files - )) + files = list( + filter( + lambda f: f.extension.upper() in [".DBC", ".DBF"], self.files + ) + ) if dis_code: codes = [c.upper() for c in to_list(dis_code)] @@ -134,9 +136,7 @@ def get_files( files = list(filter(lambda f: self.format(f)[0] in codes, files)) if year or str(year) in ["0", "00"]: - years = ( - [zfill_year(str(y)[-2:]) for y in to_list(year)] - ) + years = [zfill_year(str(y)[-2:]) for y in to_list(year)] files = list(filter(lambda f: self.format(f)[1] in years, files)) return files diff --git a/pysus/ftp/databases/sinasc.py b/pysus/ftp/databases/sinasc.py index 2769c6c..c365960 100644 --- a/pysus/ftp/databases/sinasc.py +++ b/pysus/ftp/databases/sinasc.py @@ -1,7 +1,7 @@ -from typing import List, Union, Optional +from typing import List, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list, parse_UFs, UFs +from pysus.ftp.utils import UFs, parse_UFs, to_list, zfill_year class SINASC(Database): diff --git a/pysus/ftp/databases/territory.py b/pysus/ftp/databases/territory.py index 2e7932c..bfa65e1 100644 --- a/pysus/ftp/databases/territory.py +++ b/pysus/ftp/databases/territory.py @@ -1,13 +1,11 @@ -from typing import Optional, List, Union +from typing import List, Optional, Union from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import zfill_year, to_list +from pysus.ftp.utils import to_list, zfill_year + class Territory(Database): - paths = ( - Directory('/territorio/tabelas'), - Directory('territorio/mapas') - ) + paths = (Directory("/territorio/tabelas"), Directory("territorio/mapas")) def get_files(self): - return [f for f in self.files if f.extension.upper() == '.ZIP'] \ No newline at end of file + return [f for f in self.files if f.extension.upper() == ".ZIP"] diff --git a/pysus/online_data/CIHA.py b/pysus/online_data/CIHA.py index 263fa62..9be4ecc 100644 --- a/pysus/online_data/CIHA.py +++ b/pysus/online_data/CIHA.py @@ -9,9 +9,8 @@ from typing import Union from loguru import logger - -from pysus.ftp.databases.ciha import CIHA from pysus.ftp import CACHEPATH +from pysus.ftp.databases.ciha import CIHA from pysus.ftp.utils import parse_UFs ciha = CIHA().load() @@ -19,7 +18,7 @@ def get_available_years( states: Union[list, str] = None, -) -> dict[str:set[int]]: +) -> dict[str : set[int]]: """ Fetch available years for the `states`. :param states: UF code. E.g: "SP" or ["SP", "RJ"] diff --git a/pysus/online_data/CNES.py b/pysus/online_data/CNES.py index 9f3b45c..a3b1188 100644 --- a/pysus/online_data/CNES.py +++ b/pysus/online_data/CNES.py @@ -1,29 +1,27 @@ from typing import Union from loguru import logger - -from pysus.ftp.databases.cnes import CNES from pysus.ftp import CACHEPATH +from pysus.ftp.databases.cnes import CNES from pysus.ftp.utils import parse_UFs - cnes = CNES().load() group_dict = { - 'LT': ['Leitos - A partir de Out/2005', 10, 2005], - 'ST': ['Estabelecimentos - A partir de Ago/2005', 8, 2005], - 'DC': ['Dados Complementares - A partir de Ago/2005', 8, 2005], - 'EQ': ['Equipamentos - A partir de Ago/2005', 8, 2005], - 'SR': ['Serviço Especializado - A partir de Ago/2005', 8, 2005], - 'HB': ['Habilitação - A partir de Mar/2007', 3, 2007], - 'PF': ['Profissional - A partir de Ago/2005', 8, 2005], - 'EP': ['Equipes - A partir de Abr/2007', 5, 2007], - 'IN': ['Incentivos - A partir de Nov/2007', 11, 2007], - 'RC': ['Regra Contratual - A partir de Mar/2007', 3, 2007], - 'EE': ['Estabelecimento de Ensino - A partir de Mar/2007', 3, 2007], - 'EF': ['Estabelecimento Filantrópico - A partir de Mar/2007', 3, 2007], - 'GM': ['Gestão e Metas - A partir de Jun/2007', 6, 2007], + "LT": ["Leitos - A partir de Out/2005", 10, 2005], + "ST": ["Estabelecimentos - A partir de Ago/2005", 8, 2005], + "DC": ["Dados Complementares - A partir de Ago/2005", 8, 2005], + "EQ": ["Equipamentos - A partir de Ago/2005", 8, 2005], + "SR": ["Serviço Especializado - A partir de Ago/2005", 8, 2005], + "HB": ["Habilitação - A partir de Mar/2007", 3, 2007], + "PF": ["Profissional - A partir de Ago/2005", 8, 2005], + "EP": ["Equipes - A partir de Abr/2007", 5, 2007], + "IN": ["Incentivos - A partir de Nov/2007", 11, 2007], + "RC": ["Regra Contratual - A partir de Mar/2007", 3, 2007], + "EE": ["Estabelecimento de Ensino - A partir de Mar/2007", 3, 2007], + "EF": ["Estabelecimento Filantrópico - A partir de Mar/2007", 3, 2007], + "GM": ["Gestão e Metas - A partir de Jun/2007", 6, 2007], } diff --git a/pysus/online_data/ESUS.py b/pysus/online_data/ESUS.py index 52eef5a..dbe9008 100644 --- a/pysus/online_data/ESUS.py +++ b/pysus/online_data/ESUS.py @@ -1,10 +1,9 @@ import os -import pandas as pd - from datetime import date -from loguru import logger -from elasticsearch import Elasticsearch, helpers +import pandas as pd +from elasticsearch import Elasticsearch, helpers +from loguru import logger from pysus.ftp import CACHEPATH @@ -17,49 +16,49 @@ def download(uf, cache=True, checkmemory=True): other an iterator of chunks of size 1000. """ uf = uf.lower() - user = 'user-public-notificacoes' - pwd = 'Za4qNXdyQNSa9YaA' + user = "user-public-notificacoes" + pwd = "Za4qNXdyQNSa9YaA" today = date.today() - dt = today.strftime('_%d_%m_%Y') - base = f'desc-esus-notifica-estado-{uf}' # desc-notificacoes-esusve- - url = f'https://{user}:{pwd}@elasticsearch-saps.saude.gov.br' - out = f'ESUS_{uf}_{dt}.parquet' + dt = today.strftime("_%d_%m_%Y") + base = f"desc-esus-notifica-estado-{uf}" # desc-notificacoes-esusve- + url = f"https://{user}:{pwd}@elasticsearch-saps.saude.gov.br" + out = f"ESUS_{uf}_{dt}.parquet" cachefile = os.path.join(CACHEPATH, out) - tempfile = os.path.join(CACHEPATH, f'ESUS_temp_{uf.upper()}.csv.gz') + tempfile = os.path.join(CACHEPATH, f"ESUS_temp_{uf.upper()}.csv.gz") if os.path.exists(cachefile): - logger.info(f'Local parquet file found at {cachefile}') + logger.info(f"Local parquet file found at {cachefile}") df = pd.read_parquet(cachefile) elif os.path.exists(tempfile): - logger.info(f'Local csv file found at {tempfile}') + logger.info(f"Local csv file found at {tempfile}") df = pd.read_csv(tempfile, chunksize=1000) else: fname = fetch(base, uf, url) size = os.stat(fname).st_size if size > 50e6 and checkmemory: - print(f'Downloaded data is to large:{size / 1e6} MB compressed.') + print(f"Downloaded data is to large:{size / 1e6} MB compressed.") print( - 'Only loading the first 1000 rows. If your computer has enough' + "Only loading the first 1000 rows. If your computer has enough" + " memory, set 'checkmemory' to False" ) - print(f'The full data is in {fname}') + print(f"The full data is in {fname}") df = pd.read_csv(fname, chunksize=1000) else: df = pd.read_csv(fname, low_memory=False) - print(f'{df.shape[0]} records downloaded.') + print(f"{df.shape[0]} records downloaded.") os.unlink(fname) if cache: df.to_parquet(cachefile) - logger.info(f'Data stored as parquet at {cachefile}') + logger.info(f"Data stored as parquet at {cachefile}") return df def fetch(base, uf, url): UF = uf.upper() - print(f'Reading ESUS data for {UF}') - es = Elasticsearch([url], send_get_body_as='POST') - body = {'query': {'match_all': {}}} + print(f"Reading ESUS data for {UF}") + es = Elasticsearch([url], send_get_body_as="POST") + body = {"query": {"match_all": {}}} results = helpers.scan(es, query=body, index=base) # df = pd.DataFrame.from_dict( # [document['_source'] for document in results] @@ -67,18 +66,18 @@ def fetch(base, uf, url): chunker = chunky_fetch(results, 3000) h = 1 - tempfile = os.path.join(CACHEPATH, f'ESUS_temp_{UF}.csv.gz') + tempfile = os.path.join(CACHEPATH, f"ESUS_temp_{UF}.csv.gz") for ch in chunker: df = pd.DataFrame.from_dict(ch) - df.sintomas = df['sintomas'].str.replace( - ';', - '', + df.sintomas = df["sintomas"].str.replace( + ";", + "", ) # remove os ; if h: df.to_csv(tempfile) h = 0 else: - df.to_csv(tempfile, mode='a', header=False) + df.to_csv(tempfile, mode="a", header=False) # df = pd.read_csv('temp.csv.gz') return tempfile @@ -89,7 +88,7 @@ def chunky_fetch(results, chunk_size=3000): data = [] i = 0 for d in results: - data.append(d['_source']) + data.append(d["_source"]) i += 1 if i == chunk_size: yield data diff --git a/pysus/online_data/IBGE.py b/pysus/online_data/IBGE.py index 014abcc..bfa5f7c 100644 --- a/pysus/online_data/IBGE.py +++ b/pysus/online_data/IBGE.py @@ -1,39 +1,38 @@ """ Helper functions to download official statistics from IBGE SIDRA """ -from typing import Literal, Optional +import ssl # Builtin from pathlib import Path -from zipfile import ZipFile from tempfile import TemporaryDirectory +from typing import Literal, Optional +from urllib.error import HTTPError +from zipfile import ZipFile -import ssl # Builtin -import urllib3 -import requests import pandas as pd - +import requests +import urllib3 from pysus.data.local import ParquetSet from pysus.ftp.databases.ibge_datasus import IBGEDATASUS # requests.packages.urllib3.util.ssl_.DEFAULT_CIPHERS = 'ALL:@SECLEVEL=1' -from urllib.error import HTTPError -APIBASE = 'https://servicodados.ibge.gov.br/api/v3/' +APIBASE = "https://servicodados.ibge.gov.br/api/v3/" ibge = IBGEDATASUS().load() def get_sidra_table( - table_id, - territorial_level, - geocode='all', - period=None, - variables=None, - classification=None, - categories=None, - format=None, - decimals=None, - headers=None, + table_id, + territorial_level, + geocode="all", + period=None, + variables=None, + classification=None, + categories=None, + format=None, + decimals=None, + headers=None, ): """ Wrapper for the SIDRA API. More information here: http://apisidra.ibge.gov.br/home/ajuda @@ -89,32 +88,32 @@ def get_sidra_table( :param headers: `y` para receber o header (valor default, caso o parâmetro h não seja especificado). `n` para não receber o header. :return: """ - base_url = 'https://apisidra.ibge.gov.br/values' - query = f'/t/{table_id}/n{territorial_level}/{geocode}' + base_url = "https://apisidra.ibge.gov.br/values" + query = f"/t/{table_id}/n{territorial_level}/{geocode}" if period is not None: - query += f'/p/{period}' + query += f"/p/{period}" if variables is not None: - query += f'/v/{variables}' + query += f"/v/{variables}" if classification is not None: - query += f'/c{classification}' + query += f"/c{classification}" if categories is not None: - query += f'/{categories}' + query += f"/{categories}" if format is not None: - query += f'/f/{format}' + query += f"/f/{format}" if decimals is not None: - query += f'/d/{decimals}' + query += f"/d/{decimals}" if headers is not None: - query += f'/h/{headers}' + query += f"/h/{headers}" url = base_url + query - print(f'Requesting data from {url}') + print(f"Requesting data from {url}") try: with (get_legacy_session() as s, s.get(url) as response): df = pd.DataFrame(response.json()) except HTTPError as exc: response = requests.get(url) - print(f'Consulta falhou: {response.text}') + print(f"Consulta falhou: {response.text}") return None return df @@ -127,14 +126,14 @@ def list_agregados(**kwargs): :param kwargs: parâmetros válidos: período, assunto, classificacao, periodicidade,nivel. :return: Dataframe """ - url = APIBASE + 'agregados?' - url += '&'.join([f'{k}={v}' for k, v in kwargs.items()]) - print(f'Fetching Data groupings from {url}') + url = APIBASE + "agregados?" + url += "&".join([f"{k}={v}" for k, v in kwargs.items()]) + print(f"Fetching Data groupings from {url}") try: with (get_legacy_session() as s, s.get(url) as response): table = pd.DataFrame(response.json()) except requests.exceptions.SSLError as e: - print(f'Failed fetching aggregates: {e}') + print(f"Failed fetching aggregates: {e}") return pd.DataFrame() return table @@ -147,12 +146,12 @@ def localidades_por_agregado(agregado: int, nivel: str): delimitados pelo caracter | (pipe). p.ex. N7|N6 :return: """ - url = APIBASE + f'agregados/{agregado}/localidades/{nivel}' + url = APIBASE + f"agregados/{agregado}/localidades/{nivel}" try: with (get_legacy_session() as s, s.get(url) as response): table = pd.DataFrame(response.json()) except Exception as e: - print(f'Could not download from {url}\n{e}') + print(f"Could not download from {url}\n{e}") return None return table @@ -163,12 +162,12 @@ def metadados(agregado: int): :param agregado: Identificador do agregado """ - url = APIBASE + f'agregados/{agregado}/metadados' + url = APIBASE + f"agregados/{agregado}/metadados" try: with (get_legacy_session() as s, s.get(url) as response): data = response.json() except Exception as e: - print(f'Could not download from {url}\n{e}') + print(f"Could not download from {url}\n{e}") return None return data @@ -179,7 +178,7 @@ def lista_periodos(agregado: int): :param agregado: :return: pd.DataFrame com os períodos de atualização """ - url = APIBASE + f'agregados/{agregado}/periodos' + url = APIBASE + f"agregados/{agregado}/periodos" try: with (get_legacy_session() as s, s.get(url) as response): table = pd.DataFrame(response.json()) @@ -240,19 +239,19 @@ class FetchData: """ def __init__( - self, agregado: int, periodos: str, variavel: str = 'allxp', **kwargs + self, agregado: int, periodos: str, variavel: str = "allxp", **kwargs ): self.url = ( APIBASE - + f'agregados/{agregado}/periodos/{periodos}/variaveis/{variavel}?' + + f"agregados/{agregado}/periodos/{periodos}/variaveis/{variavel}?" ) - self.url += '&'.join([f'{k}={v}' for k, v in kwargs.items()]) + self.url += "&".join([f"{k}={v}" for k, v in kwargs.items()]) self.JSON = None self._fetch_JSON() def _fetch_JSON(self): try: - print(f'Fetching {self.url}') + print(f"Fetching {self.url}") with (get_legacy_session() as s, s.get(self.url) as response): self.JSON = response.json() except Exception as e: @@ -294,28 +293,28 @@ def get_legacy_session(): ctx = ssl.create_default_context(ssl.Purpose.SERVER_AUTH) ctx.options |= 0x4 # OP_LEGACY_SERVER_CONNECT session = requests.session() - session.mount('https://', CustomHttpAdapter(ctx)) + session.mount("https://", CustomHttpAdapter(ctx)) return session def get_population( year: int, source: Literal["POP", "censo", "POPTCU", "projpop"] = "POPTCU", - censo_data: Literal["ALF", "ESCA", "ESCB", "IDOSO", "RENDA"] = "ALF" + censo_data: Literal["ALF", "ESCA", "ESCB", "IDOSO", "RENDA"] = "ALF", ) -> pd.DataFrame: """ Get population data from IBGE as shared by DATASUS :param year: year of the data - :param source: - "POP" - 1992-presente: Estimativas populacionais estratificadas por + :param source: + "POP" - 1992-presente: Estimativas populacionais estratificadas por idade e sexo. "censo" - 1991, 2000 e 2010: Censos Demográficos "POPTCU" - 1992-presente: Estimativas populacionais enviadas para o TCU, estratificadas por idade e sexo pelo MS/SGEP/Datasus. - "projpop": Estimativas preliminares para os anos intercensitários dos - totais populacionais, estratificadas por idade e sexo pelo + "projpop": Estimativas preliminares para os anos intercensitários dos + totais populacionais, estratificadas por idade e sexo pelo MS/SGEP/Datasus. - :param censo_data: + :param censo_data: "ALF": Censo Demográfico "ESCA": Censo Escolar da Educação Básica "ESCB": Censo Escolar da Educação Superior diff --git a/pysus/online_data/Infodengue.py b/pysus/online_data/Infodengue.py index 112830e..96ce55f 100644 --- a/pysus/online_data/Infodengue.py +++ b/pysus/online_data/Infodengue.py @@ -10,15 +10,15 @@ # from loguru import logger APP_DIR = Path(__file__).resolve(strict=True).parent.parent -CID10 = {'dengue': 'A90', 'chikungunya': 'A92.0', 'zika': 'A928'} +CID10 = {"dengue": "A90", "chikungunya": "A92.0", "zika": "A928"} -with open(APP_DIR / 'dataset/geocode_by_cities.json', 'r') as f: +with open(APP_DIR / "dataset/geocode_by_cities.json", "r") as f: geocode_by_cities = json.load(f) def normalize(s): for p in string.punctuation: - s = s.replace(p, '') + s = s.replace(p, "") return unidecode.unidecode(s.lower().strip()) @@ -39,7 +39,7 @@ def search_string(substr: str) -> Dict[str, int]: matching_cities = [ get_close_matches(i, normalized_list, n=55) - for i in normalize(substr).split('.') + for i in normalize(substr).split(".") ] return { @@ -54,7 +54,7 @@ def download( eyw_start: int, eyw_end: int, city_name: str, - format='csv', + format="csv", ) -> pd.DataFrame: """ Download InfoDengue API data by municipality and disease @@ -77,38 +77,38 @@ def download( if disease not in CID10.keys(): raise Exception( - f'The diseases available are: {[k for k in CID10.keys()]}' + f"The diseases available are: {[k for k in CID10.keys()]}" ) elif len(str(eyw_start)) != 6 or len(str(eyw_end)) != 6: raise Exception( - 'The epidemiological week must contain 6 digits, ' - 'started in the year 2010 until 2022. Example: 202248' + "The epidemiological week must contain 6 digits, " + "started in the year 2010 until 2022. Example: 202248" ) elif geocode is None: list_of_cities = search_string(city_name) - print(f'You must choose one of these city names: {list_of_cities}') + print(f"You must choose one of these city names: {list_of_cities}") else: s_yw = str(eyw_start) e_yw = str(eyw_end) ew_start, ey_start = s_yw[-2:], s_yw[:4] ew_end, ey_end = e_yw[-2:], e_yw[:4] - url = 'https://info.dengue.mat.br/api/alertcity' + url = "https://info.dengue.mat.br/api/alertcity" params = ( - '&disease=' - + f'{disease}' - + '&geocode=' - + f'{geocode}' - + '&format=' - + f'{format}' - + '&ew_start=' - + f'{ew_start}' - + '&ew_end=' - + f'{ew_end}' - + '&ey_start=' - + f'{ey_start}' - + '&ey_end=' - + f'{ey_end}' + "&disease=" + + f"{disease}" + + "&geocode=" + + f"{geocode}" + + "&format=" + + f"{format}" + + "&ew_start=" + + f"{ew_start}" + + "&ew_end=" + + f"{ew_end}" + + "&ey_start=" + + f"{ey_start}" + + "&ey_end=" + + f"{ey_end}" ) - url_resp = '?'.join([url, params]) - return pd.read_csv(url_resp, index_col='SE').T + url_resp = "?".join([url, params]) + return pd.read_csv(url_resp, index_col="SE").T diff --git a/pysus/online_data/Infogripe.py b/pysus/online_data/Infogripe.py index e01983e..642d35b 100644 --- a/pysus/online_data/Infogripe.py +++ b/pysus/online_data/Infogripe.py @@ -4,12 +4,12 @@ import pandas as pd -BASEURL = r'https://gitlab.fiocruz.br/marcelo.gomes/infogripe/-/raw/master/Dados/InfoGripe/' +BASEURL = r"https://gitlab.fiocruz.br/marcelo.gomes/infogripe/-/raw/master/Dados/InfoGripe/" DATASETS = { - 'Alerta de situação': r'tabela_de_alerta.csv', - 'Casos por idade, sexo e virus': r'dados_semanais_faixa_etaria_sexo_virus.csv.gz', - 'Casos Totais e estimativas': r'serie_temporal_com_estimativas_recentes.csv.gz', - 'Valores esperados por localidades': 'valores_esperados_por_localidade.csv', + "Alerta de situação": r"tabela_de_alerta.csv", + "Casos por idade, sexo e virus": r"dados_semanais_faixa_etaria_sexo_virus.csv.gz", + "Casos Totais e estimativas": r"serie_temporal_com_estimativas_recentes.csv.gz", + "Valores esperados por localidades": "valores_esperados_por_localidade.csv", } @@ -19,5 +19,5 @@ def list_datasets(): def download(dataset_name): url = BASEURL + DATASETS[dataset_name] - df = pd.read_csv(url, delimiter=';', decimal=',') + df = pd.read_csv(url, delimiter=";", decimal=",") return df diff --git a/pysus/online_data/PNI.py b/pysus/online_data/PNI.py index a7e5225..2df41c1 100644 --- a/pysus/online_data/PNI.py +++ b/pysus/online_data/PNI.py @@ -1,15 +1,13 @@ """ Download data from the national immunization program """ -from typing import Union, Literal +from typing import Literal, Union from loguru import logger - -from pysus.ftp.databases.pni import PNI from pysus.ftp import CACHEPATH +from pysus.ftp.databases.pni import PNI from pysus.ftp.utils import parse_UFs - pni = PNI().load() diff --git a/pysus/online_data/SIA.py b/pysus/online_data/SIA.py index 222b0c2..19ff22a 100644 --- a/pysus/online_data/SIA.py +++ b/pysus/online_data/SIA.py @@ -10,7 +10,6 @@ from typing import Dict, Tuple, Union from loguru import logger - from pysus.ftp import CACHEPATH from pysus.ftp.databases.sia import SIA from pysus.ftp.utils import parse_UFs @@ -90,7 +89,5 @@ def download( :param group: SIA groups. For all groups, refer to `sia.groups` :return: list of downloaded ParquetData """ - files = sia.get_files( - group=groups, uf=states, year=years, month=months - ) + files = sia.get_files(group=groups, uf=states, year=years, month=months) return sia.download(files, local_dir=data_dir) diff --git a/pysus/online_data/SIH.py b/pysus/online_data/SIH.py index 98f8ff3..67749f5 100644 --- a/pysus/online_data/SIH.py +++ b/pysus/online_data/SIH.py @@ -7,7 +7,6 @@ from typing import Union from loguru import logger - from pysus.ftp import CACHEPATH from pysus.ftp.databases.sih import SIH from pysus.ftp.utils import parse_UFs @@ -61,7 +60,5 @@ def download( :param data_dir: Directory where parquets will be downloaded. :return: list with the downloaded files as ParquetData objects """ - files = sih.get_files( - group=groups, uf=states, month=months, year=years - ) + files = sih.get_files(group=groups, uf=states, month=months, year=years) return sih.download(files, local_dir=data_dir) diff --git a/pysus/online_data/SIM.py b/pysus/online_data/SIM.py index 6f7c2d0..47bdc3a 100644 --- a/pysus/online_data/SIM.py +++ b/pysus/online_data/SIM.py @@ -7,15 +7,14 @@ import os from ftplib import FTP, error_perm from typing import Union + import pandas as pd from dbfread import DBF from loguru import logger - from pysus.ftp import CACHEPATH from pysus.ftp.databases.sim import SIM from pysus.ftp.utils import parse_UFs - sim = SIM().load() diff --git a/pysus/online_data/SINAN.py b/pysus/online_data/SINAN.py index 83901fe..5872fd9 100644 --- a/pysus/online_data/SINAN.py +++ b/pysus/online_data/SINAN.py @@ -1,11 +1,10 @@ from pathlib import Path from typing import Union -import pandas as pd +import pandas as pd from pysus.ftp import CACHEPATH from pysus.ftp.databases.sinan import SINAN - sinan = SINAN().load() diff --git a/pysus/online_data/SINASC.py b/pysus/online_data/SINASC.py index ec09fa4..2469d88 100644 --- a/pysus/online_data/SINASC.py +++ b/pysus/online_data/SINASC.py @@ -7,7 +7,6 @@ from typing import Union from loguru import logger - from pysus.ftp import CACHEPATH from pysus.ftp.databases.sinasc import SINASC from pysus.ftp.utils import parse_UFs diff --git a/pysus/online_data/territory.py b/pysus/online_data/territory.py index 2accd56..ddf5a62 100644 --- a/pysus/online_data/territory.py +++ b/pysus/online_data/territory.py @@ -1,27 +1,33 @@ - from pathlib import Path -from typing import Union, Dict, List -import pandas as pd +from typing import Dict, List, Union -from pysus.ftp import CACHEPATH, File, Directory +import pandas as pd +from pysus.ftp import CACHEPATH, Directory, File from pysus.ftp.databases.territory import Territory ter = Territory().load() -def list_tables()-> List[File]: - d = Directory('/territorio/tabelas') - tabelas = [f for f in d.content if 'territor' in f.name] + +def list_tables() -> List[File]: + d = Directory("/territorio/tabelas") + tabelas = [f for f in d.content if "territor" in f.name] return tabelas -def list_maps()-> List[File]: - d = Directory('/territorio/mapas') - mapas = [f for f in d.content if 'mapas' in f.name] + +def list_maps() -> List[File]: + d = Directory("/territorio/mapas") + mapas = [f for f in d.content if "mapas" in f.name] return mapas -def download(fname: Union[str,list], data_path: str = CACHEPATH): - files = Directory('/territorio/tabelas').content + Directory('/territorio/mapas').content + +def download(fname: Union[str, list], data_path: str = CACHEPATH): + files = ( + Directory("/territorio/tabelas").content + + Directory("/territorio/mapas").content + ) for file in files: - if fname in [str(file), file.name]: # handles suffixed and no suffixed `fname`s + if fname in [ + str(file), + file.name, + ]: # handles suffixed and no suffixed `fname`s return file.download() - - diff --git a/pysus/online_data/vaccine.py b/pysus/online_data/vaccine.py index 5be1a20..5a01943 100644 --- a/pysus/online_data/vaccine.py +++ b/pysus/online_data/vaccine.py @@ -5,16 +5,15 @@ - COVID-19 in 2020-2021 Downloaded as described [here](http://opendatasus.saude.gov.br/dataset/b772ee55-07cd-44d8-958f-b12edd004e0b/resource/5916b3a4-81e7-4ad5-adb6-b884ff198dc1/download/manual_api_vacina_covid-19.pdf) """ -import os import json -import requests -import pandas as pd - -from loguru import logger +import os from json import JSONDecodeError -from requests.auth import HTTPBasicAuth +import pandas as pd +import requests +from loguru import logger from pysus.ftp import CACHEPATH +from requests.auth import HTTPBasicAuth def download_covid(uf=None, only_header=False): @@ -24,25 +23,25 @@ def download_covid(uf=None, only_header=False): :param only_header: Used to see the header of the data before downloading. :return: dataframe iterator as returned by pandas `read_csv('Vaccine_temp_.csv.gz', chunksize=5000)` """ - user = 'imunizacao_public' - pwd = 'qlto5t&7r_@+#Tlstigi' - index = 'desc-imunizacao' - url = f'https://imunizacao-es.saude.gov.br/_search?scroll=1m' + user = "imunizacao_public" + pwd = "qlto5t&7r_@+#Tlstigi" + index = "desc-imunizacao" + url = f"https://imunizacao-es.saude.gov.br/_search?scroll=1m" if uf is None: - query = {'query': {'match_all': {}}, 'size': 10000} - UF = 'BR' + query = {"query": {"match_all": {}}, "size": 10000} + UF = "BR" else: UF = uf.upper() query = { - 'query': {'match': {'paciente_endereco_uf': UF}}, - 'size': 10000, + "query": {"match": {"paciente_endereco_uf": UF}}, + "size": 10000, } - logger.info(f'Searching for COVID data of {UF}') - tempfile = os.path.join(CACHEPATH, f'Vaccine_temp_{UF}.csv.gz') + logger.info(f"Searching for COVID data of {UF}") + tempfile = os.path.join(CACHEPATH, f"Vaccine_temp_{UF}.csv.gz") if os.path.exists(tempfile): print( - 'loading from cache. Returning an iterator of Dataframes in chunks of 5000.' + "loading from cache. Returning an iterator of Dataframes in chunks of 5000." ) return pd.read_csv(tempfile, chunksize=5000) @@ -52,7 +51,7 @@ def download_covid(uf=None, only_header=False): if only_header: df = pd.DataFrame(next(data_gen)) logger.warning( - f'Downloading data sample for visualization of {df.shape[0]} rows...' + f"Downloading data sample for visualization of {df.shape[0]} rows..." ) return df @@ -63,9 +62,9 @@ def download_covid(uf=None, only_header=False): df.to_csv(tempfile) h = 0 else: - df.to_csv(tempfile, mode='a', header=False) + df.to_csv(tempfile, mode="a", header=False) - logger.info(f'{tempfile} stored at {CACHEPATH}.') + logger.info(f"{tempfile} stored at {CACHEPATH}.") df = pd.read_csv(tempfile, chunksize=5000) return df @@ -73,21 +72,21 @@ def download_covid(uf=None, only_header=False): def elasticsearch_fetch(uri, auth, json_body={}): headers = { - 'Content-Type': 'application/json', + "Content-Type": "application/json", } - scroll_id = '' + scroll_id = "" total = 0 while True: if scroll_id: - uri = 'https://imunizacao-es.saude.gov.br/_search/scroll' - json_body['scroll_id'] = scroll_id - json_body['scroll'] = '1m' - if 'query' in json_body: + uri = "https://imunizacao-es.saude.gov.br/_search/scroll" + json_body["scroll_id"] = scroll_id + json_body["scroll"] = "1m" + if "query" in json_body: del json_body[ - 'query' + "query" ] # for the continuation of the download, query parameter is not allowed - del json_body['size'] + del json_body["size"] try: s = requests.Session() response = s.post(uri, auth=auth, headers=headers, json=json_body) @@ -97,22 +96,22 @@ def elasticsearch_fetch(uri, auth, json_body={}): except JSONDecodeError: resp = text except Exception as error: - print('\nelasticsearch_fetch() error:', error) + print("\nelasticsearch_fetch() error:", error) raise error try: - if resp['hits']['hits'] == []: + if resp["hits"]["hits"] == []: break except KeyError as e: logger.error(e) print(resp) - total += len(resp['hits']['hits']) - print(f'Downloaded {total} records\r', end='') + total += len(resp["hits"]["hits"]) + print(f"Downloaded {total} records\r", end="") # print(resp) # print(uri) - yield [h['_source'] for h in resp['hits']['hits']] - if '_scroll_id' in resp: - scroll_id = resp['_scroll_id'] + yield [h["_source"] for h in resp["hits"]["hits"]] + if "_scroll_id" in resp: + scroll_id = resp["_scroll_id"] -if __name__ == '__main__': - print(download_covid('ba', only_header=True)) +if __name__ == "__main__": + print(download_covid("ba", only_header=True)) diff --git a/pysus/preprocessing/ESUS.py b/pysus/preprocessing/ESUS.py index 3487eb9..b52b308 100644 --- a/pysus/preprocessing/ESUS.py +++ b/pysus/preprocessing/ESUS.py @@ -1,6 +1,5 @@ import numpy as np import pandas as pd - from pysus.online_data.ESUS import download @@ -22,14 +21,17 @@ def cases_by_age_and_sex(UF, start="2020-03-01", end="2020-08-31"): # Eliminando os valores nulos nas colunas com datas importantes old_size = len(df) df.dropna( - subset=["dataNotificacao", "dataInicioSintomas", "dataTeste"], inplace=True + subset=["dataNotificacao", "dataInicioSintomas", "dataTeste"], + inplace=True, ) print( f"Removed {old_size - len(df)} rows with missing dates of symptoms, notification or testing" ) # Desconsiderando os resultados negativos ou inconclusivos - df = df.loc[~df.resultadoTeste.isin(["Negativo", "Inconclusivo ou Indeterminado"])] + df = df.loc[ + ~df.resultadoTeste.isin(["Negativo", "Inconclusivo ou Indeterminado"]) + ] # Removendo sexo indeterminado df = df.loc[df.sexo.isin(["Masculino", "Feminino"])] @@ -50,9 +52,13 @@ def cases_by_age_and_sex(UF, start="2020-03-01", end="2020-08-31"): faixa_etaria = {f"[{i},{f})": (i, f) for i, f in zip(ini, fin)} labels = list(faixa_etaria.keys()) - df["faixa_etaria"] = [labels[i - 1] for i in np.digitize(df.idade, bins=ini)] + df["faixa_etaria"] = [ + labels[i - 1] for i in np.digitize(df.idade, bins=ini) + ] - agreg = df[["sexo", "faixa_etaria"]].groupby(["faixa_etaria", "sexo"]).size() + agreg = ( + df[["sexo", "faixa_etaria"]].groupby(["faixa_etaria", "sexo"]).size() + ) agreg = agreg.reset_index() agreg.columns = ["faixa_etaria", "sexo", "n"] return agreg diff --git a/pysus/preprocessing/SIM.py b/pysus/preprocessing/SIM.py index 5ff7ba4..7a43501 100644 --- a/pysus/preprocessing/SIM.py +++ b/pysus/preprocessing/SIM.py @@ -1,5 +1,5 @@ # -*- coding:utf-8 -*- -u""" +""" This module contains a set of functions to process data on SIM Created on 16/08/2020 by gabrielmcf @@ -17,7 +17,9 @@ def logical_and_from_dict(dataframe, dictionary): if dictionary == {}: return np.array([True] * len(dataframe), dtype=bool) - return np.logical_and.reduce([dataframe[k] == v for k, v in dictionary.items()]) + return np.logical_and.reduce( + [dataframe[k] == v for k, v in dictionary.items()] + ) def relax_filter(dictionary, fields): @@ -39,7 +41,9 @@ def group_and_count( :param count_columns: nome da coluna de counts a ser criada. :return: """ - counts = dataframe.groupby(group_columns).size().reset_index(name=count_column) + counts = ( + dataframe.groupby(group_columns).size().reset_index(name=count_column) + ) if decimal_counts: counts[count_column] = counts[count_column].apply(lambda x: Decimal(x)) @@ -72,7 +76,9 @@ def redistribute_missing( variables_dict = [{x: nan_string} for x in filter_columns] - variables_condition = [logical_and_from_dict(counts, x) for x in variables_dict] + variables_condition = [ + logical_and_from_dict(counts, x) for x in variables_dict + ] # Primeiro item da tupla é != nan, segundo é o == nan variables_tuples = [(np.logical_not(x), x) for x in variables_condition] @@ -82,7 +88,9 @@ def redistribute_missing( del variables_product[0] # Lista todos os dados faltantes por grupos de colunas faltantes - list_missing_data = [counts[np.logical_and.reduce(x)] for x in variables_product] + list_missing_data = [ + counts[np.logical_and.reduce(x)] for x in variables_product + ] # Remove as colunas de dado faltante dos dataframes list_missing_data = [ x.drop(columns=x.columns[x.isin([nan_string]).any()].tolist()) @@ -96,7 +104,9 @@ def redistribute_missing( # Executa para cada conjunto de dados faltantes for missing_count in list_missing_data: - counts = redistribute_rows_pro_rata(counts, filter_columns, missing_count) + counts = redistribute_rows_pro_rata( + counts, filter_columns, missing_count + ) return counts @@ -140,7 +150,9 @@ def redistribute_rows_pro_rata( # Evita alerta na atribuição de múltiplos itens com máscara (.loc) pd.set_option("mode.chained_assignment", None) - not_filter_columns = list(set(counts.columns.to_list()) - set(filter_columns)) + not_filter_columns = list( + set(counts.columns.to_list()) - set(filter_columns) + ) for row in redistribute_list.itertuples(index=False): row_dict = dict(row._asdict()) @@ -152,7 +164,9 @@ def redistribute_rows_pro_rata( row_dict = relax_filter(row_dict, filter_columns) condition = logical_and_from_dict(counts, row_dict) sum_data = counts[condition][count_columns].sum() - counts.loc[condition, count_columns] = counts[condition][count_columns].apply( + counts.loc[condition, count_columns] = counts[condition][ + count_columns + ].apply( lambda x: pro_rata_model(x, getattr(row, count_columns), sum_data) ) diff --git a/pysus/preprocessing/decoders.py b/pysus/preprocessing/decoders.py index 664cab9..4463545 100644 --- a/pysus/preprocessing/decoders.py +++ b/pysus/preprocessing/decoders.py @@ -13,11 +13,7 @@ import numpy as np import pandas as pd - -from pysus.online_data.SIM import ( - get_CID10_chapters_table, - get_municipios, -) +from pysus.online_data.SIM import get_CID10_chapters_table, get_municipios @np.vectorize @@ -119,9 +115,11 @@ def is_valid_geocode(geocodigo): def get_valid_geocodes(): tab_mun = get_municipios() df = tab_mun[(tab_mun["SITUACAO"] != "IGNOR")] - return pd.concat( - [df["MUNCODDV"], df["MUNCOD"]], ignore_index=True - ).astype("int64").values + return ( + pd.concat([df["MUNCODDV"], df["MUNCOD"]], ignore_index=True) + .astype("int64") + .values + ) def calculate_digit(geocode): @@ -154,14 +152,14 @@ def columns_as_category(series, nan_string=None): def translate_variables_SIM( - dataframe: pd.DataFrame, - age_unit: str = "Y", - age_classes=None, - classify_args: dict = {}, - classify_cid10_chapters=False, - geocode_dv=True, - nan_marker=None, - category_columns=True, + dataframe: pd.DataFrame, + age_unit: str = "Y", + age_classes=None, + classify_args: dict = {}, + classify_cid10_chapters=False, + geocode_dv=True, + nan_marker=None, + category_columns=True, ): variables_names = dataframe.columns.tolist() df = dataframe @@ -180,7 +178,7 @@ def translate_variables_SIM( # SEXO if "SEXO" in variables_names: - df['SEXO'] = df.SEXO.replace( + df["SEXO"] = df.SEXO.replace( {0: None, 9: None, 1: "Masculino", 2: "Feminino"} ) df["SEXO"] = df["SEXO"].astype("category") @@ -204,20 +202,24 @@ def translate_variables_SIM( # RACACOR if "RACACOR" in variables_names: - df["RACACOR"] = df["RACACOR"].str.strip().replace( - { - "0": None, - "1": "Branca", - "2": "Preta", - "3": "Amarela", - "4": "Parda", - "5": "Indígena", - "6": None, - "7": None, - "8": None, - "9": None, - "": None, - }, + df["RACACOR"] = ( + df["RACACOR"] + .str.strip() + .replace( + { + "0": None, + "1": "Branca", + "2": "Preta", + "3": "Amarela", + "4": "Parda", + "5": "Indígena", + "6": None, + "7": None, + "8": None, + "9": None, + "": None, + }, + ) ) df["RACACOR"] = df["RACACOR"].astype("category") df["RACACOR"] = df["RACACOR"].cat.add_categories(["NA"]) @@ -233,7 +235,13 @@ def translate_variables_SIM( def classify_age( - serie, start=0, end=90, freq=None, open_end=True, closed="left", interval=None + serie, + start=0, + end=90, + freq=None, + open_end=True, + closed="left", + interval=None, ): """ Classifica idade segundo parâmetros ou IntervalIndex @@ -272,9 +280,9 @@ def get_CID10_code_index(datasus_chapters): number_range_start = int(chapter_range[0][1:3]) number_range_finish = int(chapter_range[1][1:3]) for code in range(number_range_start, number_range_finish + 1): - code_index[ - f"{start_letter}{str(code).zfill(2)}" - ] = ch_array_index + 1 + code_index[f"{start_letter}{str(code).zfill(2)}"] = ( + ch_array_index + 1 + ) else: string_range_start = chapter_range[0][0] string_range_end = chapter_range[1][0] @@ -294,7 +302,9 @@ def get_CID10_code_index(datasus_chapters): else: # Middle letters number_range_start = 0 number_range_end = 99 - for code_number in range(number_range_start, number_range_end + 1): + for code_number in range( + number_range_start, number_range_end + 1 + ): code_index[f"{letter}{str(code_number).zfill(2)}"] = ( ch_array_index + 1 ) diff --git a/pysus/preprocessing/geodata.py b/pysus/preprocessing/geodata.py index a9e5c9a..e516bcf 100644 --- a/pysus/preprocessing/geodata.py +++ b/pysus/preprocessing/geodata.py @@ -7,15 +7,16 @@ """ __docformat__ = "restructuredtext en" -import pandas as pd # from geobr import read_municipality import warnings +import pandas as pd + warnings.warn( "The 'geodata' module is deprecated and will be removed in a future release. " "Please use 'new_module' instead.", DeprecationWarning, - stacklevel=2 + stacklevel=2, ) diff --git a/pysus/preprocessing/sinan.py b/pysus/preprocessing/sinan.py index ae73016..bf4076a 100644 --- a/pysus/preprocessing/sinan.py +++ b/pysus/preprocessing/sinan.py @@ -49,7 +49,9 @@ def get_geocodes(geoc): """ url = ( "http://cidades.ibge.gov.br/services/jSonpMuns.php?" - "busca=330&featureClass=P&style=full&maxRows=5&name_startsWith={}".format(geoc) + "busca=330&featureClass=P&style=full&maxRows=5&name_startsWith={}".format( + geoc + ) ) resp = requests.get(url) for d in resp.json()["municipios"]: @@ -70,7 +72,9 @@ def _address_generator(df, default=""): line["cidade"] = default yield line[ "NU_NOTIFIC" - ], "{NM_LOGRADO}, {NU_NUMERO}, {NM_BAIRRO}, {cidade}, Brasil".format(**line) + ], "{NM_LOGRADO}, {NU_NUMERO}, {NM_BAIRRO}, {cidade}, Brasil".format( + **line + ) def geocode(sinan_df, outfile, default_city): @@ -109,7 +113,9 @@ def geocode(sinan_df, outfile, default_city): location = geocoder.google(ad) try: of.write( - "{},{},{}\n".format(nu, location.latlng[0], location.latlng[1]) + "{},{},{}\n".format( + nu, location.latlng[0], location.latlng[1] + ) ) print("Successfully geolocated {}".format(ad)) except IndexError: diff --git a/pysus/tests/__init__.py b/pysus/tests/__init__.py index a2f17c1..91cf9cb 100644 --- a/pysus/tests/__init__.py +++ b/pysus/tests/__init__.py @@ -1,5 +1,5 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 19/07/16 by fccoelho license: GPL V3 or Later diff --git a/pysus/tests/test_data/__init__.py b/pysus/tests/test_data/__init__.py index d536164..6289536 100644 --- a/pysus/tests/test_data/__init__.py +++ b/pysus/tests/test_data/__init__.py @@ -1,4 +1,4 @@ -u""" +""" Created on 12/12/18 by fccoelho license: GPL V3 or Later diff --git a/pysus/tests/test_data/test_Infogripe.py b/pysus/tests/test_data/test_Infogripe.py index 8f2fd98..35a52ef 100644 --- a/pysus/tests/test_data/test_Infogripe.py +++ b/pysus/tests/test_data/test_Infogripe.py @@ -1,7 +1,7 @@ import unittest -import pytest -from pysus.online_data.Infogripe import download, DATASETS +import pytest +from pysus.online_data.Infogripe import DATASETS, download class InfoGripeTestCase(unittest.TestCase): @@ -13,5 +13,5 @@ def test_download(self): self.assertGreater(len(df), 0) # add assertion here -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/pysus/tests/test_data/test_vaccine.py b/pysus/tests/test_data/test_vaccine.py index 012f44d..01696cb 100644 --- a/pysus/tests/test_data/test_vaccine.py +++ b/pysus/tests/test_data/test_vaccine.py @@ -1,13 +1,13 @@ import unittest -import pytest import pandas as pd - +import pytest from pysus.online_data.vaccine import download_covid class VaccineTestCase(unittest.TestCase): pytest.mark.timeout(5) + def test_Download(self): """Careful! this download can take a long time""" df = download_covid("BA", only_header=True) diff --git a/pysus/tests/test_decoders.py b/pysus/tests/test_decoders.py index adf2f43..8f3e994 100644 --- a/pysus/tests/test_decoders.py +++ b/pysus/tests/test_decoders.py @@ -1,17 +1,16 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 19/07/16 by fccoelho license: GPL V3 or Later """ import unittest -import pytest import numpy as np import pandas as pd +import pytest from numpy.testing import * - from pysus.online_data.SIM import download, get_CID10_chapters_table from pysus.preprocessing import decoders from pysus.preprocessing.SIM import ( @@ -79,7 +78,8 @@ def test_translate_variables(self): assert sex_array <= set(["Masculino", "Feminino", "NA"]) raca_array = set(df["RACACOR"].unique().tolist()) assert raca_array <= set( - ["Branca", "Preta", "Amarela", "nan", "Parda", "Indígena", "NA"]) + ["Branca", "Preta", "Amarela", "nan", "Parda", "Indígena", "NA"] + ) @pytest.mark.timeout(60) def test_get_cid_chapter(self): @@ -107,7 +107,8 @@ def test_get_cid_chapter(self): lambda x: get_CID10_code(code_index, x) ) assert_array_equal( - results, [1, 1, 2, -1, 3, 7, 7, 8, -1, 20, 20, -1, 22]) + results, [1, 1, 2, -1, 3, 7, 7, 8, -1, 20, 20, -1, 22] + ) @pytest.mark.timeout(60) def test_group_and_count(self): @@ -116,8 +117,9 @@ def test_group_and_count(self): variables = ["CODMUNRES", "SEXO", "IDADE_ANOS"] counts = group_and_count(df, variables) sample = ( - counts[counts["COUNTS"] != 0]["COUNTS"].sample( - 20, random_state=0).tolist() + counts[counts["COUNTS"] != 0]["COUNTS"] + .sample(20, random_state=0) + .tolist() ) self.assertGreater(sum(sample), 0) @@ -137,19 +139,22 @@ def test_redistribute(self): assert_almost_equal(sum_original, sum_redistributed, 10) sample = ( - counts[counts["COUNTS"] != 0]["COUNTS"].sample( - 20, random_state=0).tolist() + counts[counts["COUNTS"] != 0]["COUNTS"] + .sample(20, random_state=0) + .tolist() ) assert len(sample) == 20 counts = redistribute_cid_chapter( - counts, ["CODMUNRES", "SEXO", "IDADE_ANOS"]) + counts, ["CODMUNRES", "SEXO", "IDADE_ANOS"] + ) sum_redistributed = counts["COUNTS"].sum() assert_almost_equal(sum_original, sum_redistributed, 10) sample = ( - counts[counts["COUNTS"] != 0]["COUNTS"].sample( - 20, random_state=0).tolist() + counts[counts["COUNTS"] != 0]["COUNTS"] + .sample(20, random_state=0) + .tolist() ) assert len(sample) == 20 diff --git a/pysus/tests/test_esus.py b/pysus/tests/test_esus.py index 858a1d1..68f159b 100644 --- a/pysus/tests/test_esus.py +++ b/pysus/tests/test_esus.py @@ -1,6 +1,6 @@ import unittest -import pytest +import pytest from pysus.online_data.ESUS import download diff --git a/pysus/tests/test_ftp/test_File.py b/pysus/tests/test_ftp/test_File.py index 83b2240..2586f47 100644 --- a/pysus/tests/test_ftp/test_File.py +++ b/pysus/tests/test_ftp/test_File.py @@ -1,28 +1,26 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/12 by luabida license: GPL V3 or Later """ -import unittest import datetime +import unittest from pathlib import Path import pandas as pd - -from pysus.ftp import File, CACHEPATH from pysus.data.local import ParquetSet +from pysus.ftp import CACHEPATH, File class TestFile(unittest.TestCase): - def setUp(self): path = "/dissemin/publicos/SIM/CID10/DORES/" name = "DOAC1996.dbc" info = { "size": 76107, "type": "file", - "modify": datetime.datetime(2020, 1, 31, 14, 48) + "modify": datetime.datetime(2020, 1, 31, 14, 48), } self.file = File(path, name, info) @@ -40,9 +38,9 @@ def test_file_initialization(self): self.assertEqual(file.basename, "DOAC1996.dbc") expected_info = { - 'size': '76.1 kB', - 'type': 'DBC file', - 'modify': '2020-01-31 02:48PM' + "size": "76.1 kB", + "type": "DBC file", + "modify": "2020-01-31 02:48PM", } self.assertEqual(file.info, expected_info) diff --git a/pysus/tests/test_ftp/test_databases/test_CIHA.py b/pysus/tests/test_ftp/test_databases/test_CIHA.py index f975732..50e5ba8 100644 --- a/pysus/tests/test_ftp/test_databases/test_CIHA.py +++ b/pysus/tests/test_ftp/test_databases/test_CIHA.py @@ -1,94 +1,96 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/12 by luabida license: GPL V3 or Later """ -import unittest import datetime +import unittest +from unittest.mock import MagicMock, patch -from unittest.mock import patch, MagicMock - -from pysus.ftp.databases.ciha import CIHA from pysus.ftp import File +from pysus.ftp.databases.ciha import CIHA class TestCIHADatabase(unittest.TestCase): - def test_ciha(self): mock_content = { "CIHAAC1101.dbc": File( path="/dissemin/publicos/CIHA/201101_/Dados/CIHAAC1101.dbc", name="CIHAAC1101.dbc", info={ - 'size': 7803, - 'type': 'file', - 'modify': datetime.datetime(2023, 10, 6, 10, 17) - } + "size": 7803, + "type": "file", + "modify": datetime.datetime(2023, 10, 6, 10, 17), + }, ), "CIHAAC1102.dbc": File( path="/dissemin/publicos/CIHA/201101_/Dados/CIHAAC1102.dbc", name="CIHAAC1102.dbc", info={ - 'size': 9959, - 'type': 'file', - 'modify': datetime.datetime(2023, 10, 6, 10, 17) - } + "size": 9959, + "type": "file", + "modify": datetime.datetime(2023, 10, 6, 10, 17), + }, ), "CIHAAC1103.dbc": File( path="/dissemin/publicos/CIHA/201101_/Dados/CIHAAC1103.dbc", name="CIHAAC1103.dbc", info={ - 'size': 8308, - 'type': 'file', - 'modify': datetime.datetime(2023, 10, 6, 10, 17) - } + "size": 8308, + "type": "file", + "modify": datetime.datetime(2023, 10, 6, 10, 17), + }, ), } with patch( - 'pysus.ftp.databases.ciha.CIHA', - return_value=MagicMock(__content__=mock_content) + "pysus.ftp.databases.ciha.CIHA", + return_value=MagicMock(__content__=mock_content), ) as mock_ciha: ciha = CIHA() ciha.__content__ = mock_ciha().__content__ descriptions = [ciha.describe(file) for file in ciha.files] expected_descriptions = [ - {'name': 'CIHAAC1101.dbc', - 'group': 'Comunicação de Internação Hospitalar e Ambulatorial', - 'uf': 'Acre', - 'month': 'Janeiro', - 'year': 2011, - 'size': '7.8 kB', - 'last_update': '2023-10-06 10:17AM'}, - {'name': 'CIHAAC1102.dbc', - 'group': 'Comunicação de Internação Hospitalar e Ambulatorial', - 'uf': 'Acre', - 'month': 'Fevereiro', - 'year': 2011, - 'size': '10.0 kB', - 'last_update': '2023-10-06 10:17AM'}, - {'name': 'CIHAAC1103.dbc', - 'group': 'Comunicação de Internação Hospitalar e Ambulatorial', - 'uf': 'Acre', - 'month': 'Março', - 'year': 2011, - 'size': '8.3 kB', - 'last_update': '2023-10-06 10:17AM'} + { + "name": "CIHAAC1101.dbc", + "group": "Comunicação de Internação Hospitalar e Ambulatorial", + "uf": "Acre", + "month": "Janeiro", + "year": 2011, + "size": "7.8 kB", + "last_update": "2023-10-06 10:17AM", + }, + { + "name": "CIHAAC1102.dbc", + "group": "Comunicação de Internação Hospitalar e Ambulatorial", + "uf": "Acre", + "month": "Fevereiro", + "year": 2011, + "size": "10.0 kB", + "last_update": "2023-10-06 10:17AM", + }, + { + "name": "CIHAAC1103.dbc", + "group": "Comunicação de Internação Hospitalar e Ambulatorial", + "uf": "Acre", + "month": "Março", + "year": 2011, + "size": "8.3 kB", + "last_update": "2023-10-06 10:17AM", + }, ] self.assertEqual(descriptions, expected_descriptions) formats = [ciha.format(file) for file in ciha.files] expected_formats = [ - ('CIHA', 'AC', 2011, '01'), - ('CIHA', 'AC', 2011, '02'), - ('CIHA', 'AC', 2011, '03') + ("CIHA", "AC", 2011, "01"), + ("CIHA", "AC", 2011, "02"), + ("CIHA", "AC", 2011, "03"), ] self.assertEqual(formats, expected_formats) - get_files = ciha.get_files( - uf='AC', year=2011, month=1 - ) + get_files = ciha.get_files(uf="AC", year=2011, month=1) self.assertEqual(get_files, [ciha.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_CNES.py b/pysus/tests/test_ftp/test_databases/test_CNES.py index 9a03269..c9f921c 100644 --- a/pysus/tests/test_ftp/test_databases/test_CNES.py +++ b/pysus/tests/test_ftp/test_databases/test_CNES.py @@ -1,92 +1,96 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/12 by luabida license: GPL V3 or Later """ -import unittest import datetime +import unittest +from unittest.mock import MagicMock, patch -from unittest.mock import patch, MagicMock - -from pysus.ftp.databases.cnes import CNES from pysus.ftp import File +from pysus.ftp.databases.cnes import CNES class TestCNESDatabase(unittest.TestCase): - def test_cnes(self): mock_content = { "STAC0508.dbc": File( path="/dissemin/publicos/CNES/200508_/Dados/ST/STAC0508.dbc", name="STAC0508.dbc", info={ - 'size': 18515, - 'type': 'file', - 'modify': datetime.datetime(2014, 6, 5, 9, 30) - } + "size": 18515, + "type": "file", + "modify": datetime.datetime(2014, 6, 5, 9, 30), + }, ), "STAC0509.dbc": File( path="/dissemin/publicos/CNES/200508_/Dados/ST/STAC0509.dbc", name="STAC0509.dbc", info={ - 'size': 18713, - 'type': 'file', - 'modify': datetime.datetime(2014, 6, 5, 9, 30) - } + "size": 18713, + "type": "file", + "modify": datetime.datetime(2014, 6, 5, 9, 30), + }, ), "STAC0510.dbc": File( path="/dissemin/publicos/CNES/200508_/Dados/ST/STAC0510.dbc", name="STAC0510.dbc", info={ - 'size': 17665, - 'type': 'file', - 'modify': datetime.datetime(2014, 6, 5, 9, 30) - } + "size": 17665, + "type": "file", + "modify": datetime.datetime(2014, 6, 5, 9, 30), + }, ), } with patch( - 'pysus.ftp.databases.cnes.CNES', - return_value=MagicMock(__content__=mock_content) + "pysus.ftp.databases.cnes.CNES", + return_value=MagicMock(__content__=mock_content), ) as mock_cnes: cnes = CNES().load("ST") cnes.__content__ = mock_cnes().__content__ descriptions = [cnes.describe(file) for file in cnes.files] expected_descriptions = [ - {'name': 'STAC0508.dbc', - 'group': 'Estabelecimentos', - 'uf': 'Acre', - 'month': 'Agosto', - 'year': 2005, - 'size': '18.5 kB', - 'last_update': '2014-06-05 09:30AM'}, - {'name': 'STAC0509.dbc', - 'group': 'Estabelecimentos', - 'uf': 'Acre', - 'month': 'Setembro', - 'year': 2005, - 'size': '18.7 kB', - 'last_update': '2014-06-05 09:30AM'}, - {'name': 'STAC0510.dbc', - 'group': 'Estabelecimentos', - 'uf': 'Acre', - 'month': 'Outubro', - 'year': 2005, - 'size': '17.7 kB', - 'last_update': '2014-06-05 09:30AM'} + { + "name": "STAC0508.dbc", + "group": "Estabelecimentos", + "uf": "Acre", + "month": "Agosto", + "year": 2005, + "size": "18.5 kB", + "last_update": "2014-06-05 09:30AM", + }, + { + "name": "STAC0509.dbc", + "group": "Estabelecimentos", + "uf": "Acre", + "month": "Setembro", + "year": 2005, + "size": "18.7 kB", + "last_update": "2014-06-05 09:30AM", + }, + { + "name": "STAC0510.dbc", + "group": "Estabelecimentos", + "uf": "Acre", + "month": "Outubro", + "year": 2005, + "size": "17.7 kB", + "last_update": "2014-06-05 09:30AM", + }, ] self.assertEqual(descriptions, expected_descriptions) formats = [cnes.format(file) for file in cnes.files] expected_formats = [ - ('ST', 'AC', 2005, '08'), - ('ST', 'AC', 2005, '09'), - ('ST', 'AC', 2005, '10') + ("ST", "AC", 2005, "08"), + ("ST", "AC", 2005, "09"), + ("ST", "AC", 2005, "10"), ] self.assertEqual(formats, expected_formats) - get_files = cnes.get_files(group='ST', uf='AC', year=2005, month=8) + get_files = cnes.get_files(group="ST", uf="AC", year=2005, month=8) self.assertEqual(get_files, [cnes.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_IBGEDATASUS.py b/pysus/tests/test_ftp/test_databases/test_IBGEDATASUS.py index 95a834c..84586ff 100644 --- a/pysus/tests/test_ftp/test_databases/test_IBGEDATASUS.py +++ b/pysus/tests/test_ftp/test_databases/test_IBGEDATASUS.py @@ -1,11 +1,11 @@ import unittest from unittest.mock import MagicMock, patch + from pysus.ftp.databases import ibge_datasus class IBGEDATASUSTests(unittest.TestCase): - - @patch('pysus.ftp.databases.ibge_datasus.File') + @patch("pysus.ftp.databases.ibge_datasus.File") def test_describe_zip_file(self, mock_file): mock_file.extension.upper.return_value = ".ZIP" mock_file.name = "POPTBR12.zip" @@ -15,12 +15,15 @@ def test_describe_zip_file(self, mock_file): ibge = ibge_datasus.IBGEDATASUS() result = ibge.describe(mock_file) - self.assertEqual(result, { - "name": "POPTBR12.zip", - "year": 2012, - "size": 100, - "last_update": "2022-01-01" - }) + self.assertEqual( + result, + { + "name": "POPTBR12.zip", + "year": 2012, + "size": 100, + "last_update": "2022-01-01", + }, + ) # @patch('pysus.ftp.databases.ibge_datasus.File') # def describe_dbf_file(self, mock_file): @@ -48,7 +51,7 @@ def test_describe_zip_file(self, mock_file): # # self.assertEqual(result, {}) - @patch('pysus.ftp.databases.ibge_datasus.File') + @patch("pysus.ftp.databases.ibge_datasus.File") def format_file(self, mock_file): mock_file.name = "file20.zip" @@ -57,8 +60,8 @@ def format_file(self, mock_file): self.assertEqual(result, "20.zip") - @patch('pysus.ftp.databases.ibge_datasus.File') - @patch('pysus.ftp.databases.ibge_datasus.to_list') + @patch("pysus.ftp.databases.ibge_datasus.File") + @patch("pysus.ftp.databases.ibge_datasus.to_list") def test_get_files_with_year(self, mock_to_list, mock_file): mock_file.extension.upper.return_value = ".ZIP" mock_file.basename = "POPTBR12.zip" @@ -71,7 +74,7 @@ def test_get_files_with_year(self, mock_to_list, mock_file): self.assertEqual(result[0].name, mock_file.name) - @patch('pysus.ftp.databases.ibge_datasus.File') + @patch("pysus.ftp.databases.ibge_datasus.File") def get_files_without_year(self, mock_file): mock_file.extension.upper.return_value = ".ZIP" mock_file.name = "file20.zip" @@ -83,5 +86,5 @@ def get_files_without_year(self, mock_file): self.assertEqual(result, [mock_file]) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/pysus/tests/test_ftp/test_databases/test_PNI.py b/pysus/tests/test_ftp/test_databases/test_PNI.py index 9fe1cdc..1441e9f 100644 --- a/pysus/tests/test_ftp/test_databases/test_PNI.py +++ b/pysus/tests/test_ftp/test_databases/test_PNI.py @@ -1,88 +1,92 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/12 by luabida license: GPL V3 or Later """ -import unittest import datetime +import unittest +from unittest.mock import MagicMock, patch -from unittest.mock import patch, MagicMock - -from pysus.ftp.databases.pni import PNI from pysus.ftp import File +from pysus.ftp.databases.pni import PNI class TestPNIDatabase(unittest.TestCase): - def test_pni(self): mock_content = { "CPNIAC00.DBF": File( path="/dissemin/publicos/PNI/DADOS/CPNIAC00.DBF", name="CPNIAC00.DBF", info={ - 'size': 14843, - 'type': 'file', - 'modify': datetime.datetime(2019, 5, 23, 17, 19) - } + "size": 14843, + "type": "file", + "modify": datetime.datetime(2019, 5, 23, 17, 19), + }, ), "CPNIAC01.DBF": File( path="/dissemin/publicos/PNI/DADOS/CPNIAC01.DBF", name="CPNIAC01.DBF", info={ - 'size': 14843, - 'type': 'file', - 'modify': datetime.datetime(2019, 5, 23, 16, 39) - } + "size": 14843, + "type": "file", + "modify": datetime.datetime(2019, 5, 23, 16, 39), + }, ), "CPNIAC02.DBF": File( path="/dissemin/publicos/PNI/DADOS/CPNIAC02.DBF", name="CPNIAC02.DBF", info={ - 'size': 14843, - 'type': 'file', - 'modify': datetime.datetime(2019, 5, 23, 16, 39) - } + "size": 14843, + "type": "file", + "modify": datetime.datetime(2019, 5, 23, 16, 39), + }, ), } with patch( - 'pysus.ftp.databases.pni.PNI', - return_value=MagicMock(__content__=mock_content) + "pysus.ftp.databases.pni.PNI", + return_value=MagicMock(__content__=mock_content), ) as mock_pni: pni = PNI() pni.__content__ = mock_pni().__content__ descriptions = [pni.describe(file) for file in pni.files] expected_descriptions = [ - {'name': 'CPNIAC00.DBF', - 'group': 'Cobertura Vacinal', - 'uf': 'Acre', - 'year': 2000, - 'size': '14.8 kB', - 'last_update': '2019-05-23 05:19PM'}, - {'name': 'CPNIAC01.DBF', - 'group': 'Cobertura Vacinal', - 'uf': 'Acre', - 'year': 2001, - 'size': '14.8 kB', - 'last_update': '2019-05-23 04:39PM'}, - {'name': 'CPNIAC02.DBF', - 'group': 'Cobertura Vacinal', - 'uf': 'Acre', - 'year': 2002, - 'size': '14.8 kB', - 'last_update': '2019-05-23 04:39PM'} + { + "name": "CPNIAC00.DBF", + "group": "Cobertura Vacinal", + "uf": "Acre", + "year": 2000, + "size": "14.8 kB", + "last_update": "2019-05-23 05:19PM", + }, + { + "name": "CPNIAC01.DBF", + "group": "Cobertura Vacinal", + "uf": "Acre", + "year": 2001, + "size": "14.8 kB", + "last_update": "2019-05-23 04:39PM", + }, + { + "name": "CPNIAC02.DBF", + "group": "Cobertura Vacinal", + "uf": "Acre", + "year": 2002, + "size": "14.8 kB", + "last_update": "2019-05-23 04:39PM", + }, ] self.assertEqual(descriptions, expected_descriptions) formats = [pni.format(file) for file in pni.files] expected_formats = [ - ('CPNI', 'AC', 2000), - ('CPNI', 'AC', 2001), - ('CPNI', 'AC', 2002) + ("CPNI", "AC", 2000), + ("CPNI", "AC", 2001), + ("CPNI", "AC", 2002), ] self.assertEqual(formats, expected_formats) - get_files = pni.get_files(group='CPNI', uf='AC', year=2000) + get_files = pni.get_files(group="CPNI", uf="AC", year=2000) self.assertEqual(get_files, [pni.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SIA.py b/pysus/tests/test_ftp/test_databases/test_SIA.py index efa2825..acd5ab7 100644 --- a/pysus/tests/test_ftp/test_databases/test_SIA.py +++ b/pysus/tests/test_ftp/test_databases/test_SIA.py @@ -1,94 +1,96 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/11 by luabida license: GPL V3 or Later """ -import unittest import datetime +import unittest +from unittest.mock import MagicMock, patch -from unittest.mock import patch, MagicMock - -from pysus.ftp.databases.sia import SIA from pysus.ftp import File +from pysus.ftp.databases.sia import SIA class TestSIADatabase(unittest.TestCase): - def test_sia(self): mock_content = { "ABDF1112.dbc": File( path="/dissemin/publicos/SIASUS/200801_/Dados/ABDF1112.dbc", name="ABDF1112.dbc", info={ - 'size': 2971, - 'type': 'file', - 'modify': datetime.datetime(2019, 3, 12, 12, 3) - } + "size": 2971, + "type": "file", + "modify": datetime.datetime(2019, 3, 12, 12, 3), + }, ), "ABMG1112.dbc": File( path="/dissemin/publicos/SIASUS/200801_/Dados/ABMG1112.dbc", name="ABMG1112.dbc", info={ - 'size': 3183, - 'type': 'file', - 'modify': datetime.datetime(2019, 3, 12, 12, 3) - } + "size": 3183, + "type": "file", + "modify": datetime.datetime(2019, 3, 12, 12, 3), + }, ), "ABOAC1502.dbc": File( path="/dissemin/publicos/SIASUS/200801_/Dados/ABOAC1502.dbc", name="ABOAC1502.dbc", info={ - 'size': 3143, - 'type': 'file', - 'modify': datetime.datetime(2016, 9, 12, 8, 45) - } + "size": 3143, + "type": "file", + "modify": datetime.datetime(2016, 9, 12, 8, 45), + }, ), } with patch( - 'pysus.ftp.databases.sia.SIA', - return_value=MagicMock(__content__=mock_content) + "pysus.ftp.databases.sia.SIA", + return_value=MagicMock(__content__=mock_content), ) as mock_sia: sia = SIA() sia.__content__ = mock_sia().__content__ descriptions = [sia.describe(file) for file in sia.files] expected_descriptions = [ - {'name': 'ABDF1112.dbc', - 'group': 'APAC de Cirurgia Bariátrica', - 'uf': 'Distrito Federal', - 'month': 'Dezembro', - 'year': 2011, - 'size': '3.0 kB', - 'last_update': '2019-03-12 12:03PM'}, - {'name': 'ABMG1112.dbc', - 'group': 'APAC de Cirurgia Bariátrica', - 'uf': 'Minas Gerais', - 'month': 'Dezembro', - 'year': 2011, - 'size': '3.2 kB', - 'last_update': '2019-03-12 12:03PM'}, - {'name': 'ABOAC1502.dbc', - 'group': 'APAC de Acompanhamento Pós Cirurgia Bariátrica', - 'uf': 'Acre', - 'month': 'Fevereiro', - 'year': 2015, - 'size': '3.1 kB', - 'last_update': '2016-09-12 08:45AM'} + { + "name": "ABDF1112.dbc", + "group": "APAC de Cirurgia Bariátrica", + "uf": "Distrito Federal", + "month": "Dezembro", + "year": 2011, + "size": "3.0 kB", + "last_update": "2019-03-12 12:03PM", + }, + { + "name": "ABMG1112.dbc", + "group": "APAC de Cirurgia Bariátrica", + "uf": "Minas Gerais", + "month": "Dezembro", + "year": 2011, + "size": "3.2 kB", + "last_update": "2019-03-12 12:03PM", + }, + { + "name": "ABOAC1502.dbc", + "group": "APAC de Acompanhamento Pós Cirurgia Bariátrica", + "uf": "Acre", + "month": "Fevereiro", + "year": 2015, + "size": "3.1 kB", + "last_update": "2016-09-12 08:45AM", + }, ] self.assertEqual(descriptions, expected_descriptions) formats = [sia.format(file) for file in sia.files] expected_formats = [ - ('AB', 'DF', 2011, '12'), - ('AB', 'MG', 2011, '12'), - ('ABO', 'AC', 2015, '02') + ("AB", "DF", 2011, "12"), + ("AB", "MG", 2011, "12"), + ("ABO", "AC", 2015, "02"), ] self.assertEqual(formats, expected_formats) - get_files = sia.get_files( - group='AB', uf='DF', year=2011, month=12 - ) + get_files = sia.get_files(group="AB", uf="DF", year=2011, month=12) self.assertEqual(get_files, [sia.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SIH.py b/pysus/tests/test_ftp/test_databases/test_SIH.py index e044c75..045dcaa 100644 --- a/pysus/tests/test_ftp/test_databases/test_SIH.py +++ b/pysus/tests/test_ftp/test_databases/test_SIH.py @@ -1,94 +1,96 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/11 by luabida license: GPL V3 or Later """ -import unittest import datetime +import unittest +from unittest.mock import MagicMock, patch -from unittest.mock import patch, MagicMock - -from pysus.ftp.databases.sih import SIH from pysus.ftp import File +from pysus.ftp.databases.sih import SIH class TestSIHDatabase(unittest.TestCase): - def test_sih(self): mock_content = { "CHBR1901.dbc": File( path="/dissemin/publicos/SIHSUS/200801_/Dados/CHBR1901.dbc", name="CHBR1901.dbc", info={ - 'size': 196476, - 'type': 'file', - 'modify': datetime.datetime(2020, 3, 10, 14, 43) - } + "size": 196476, + "type": "file", + "modify": datetime.datetime(2020, 3, 10, 14, 43), + }, ), "CHBR1902.dbc": File( path="/dissemin/publicos/SIHSUS/200801_/Dados/CHBR1902.dbc", name="CHBR1902.dbc", info={ - 'size': 196287, - 'type': 'file', - 'modify': datetime.datetime(2020, 3, 10, 14, 43) - } + "size": 196287, + "type": "file", + "modify": datetime.datetime(2020, 3, 10, 14, 43), + }, ), "CHBR1903.dbc": File( path="/dissemin/publicos/SIHSUS/200801_/Dados/CHBR1903.dbc", name="CHBR1903.dbc", info={ - 'size': 196081, - 'type': 'file', - 'modify': datetime.datetime(2020, 3, 10, 14, 43) - } + "size": 196081, + "type": "file", + "modify": datetime.datetime(2020, 3, 10, 14, 43), + }, ), } with patch( - 'pysus.ftp.databases.sih.SIH', - return_value=MagicMock(__content__=mock_content) + "pysus.ftp.databases.sih.SIH", + return_value=MagicMock(__content__=mock_content), ) as mock_sih: sih = SIH() sih.__content__ = mock_sih().__content__ descriptions = [sih.describe(file) for file in sih.files] expected_descriptions = [ - {'name': 'CHBR1901.dbc', - 'group': 'Cadastro Hospitalar', - 'uf': 'Brasil', - 'month': 'Janeiro', - 'year': 2019, - 'size': '196.5 kB', - 'last_update': '2020-03-10 02:43PM'}, - {'name': 'CHBR1902.dbc', - 'group': 'Cadastro Hospitalar', - 'uf': 'Brasil', - 'month': 'Fevereiro', - 'year': 2019, - 'size': '196.3 kB', - 'last_update': '2020-03-10 02:43PM'}, - {'name': 'CHBR1903.dbc', - 'group': 'Cadastro Hospitalar', - 'uf': 'Brasil', - 'month': 'Março', - 'year': 2019, - 'size': '196.1 kB', - 'last_update': '2020-03-10 02:43PM'} + { + "name": "CHBR1901.dbc", + "group": "Cadastro Hospitalar", + "uf": "Brasil", + "month": "Janeiro", + "year": 2019, + "size": "196.5 kB", + "last_update": "2020-03-10 02:43PM", + }, + { + "name": "CHBR1902.dbc", + "group": "Cadastro Hospitalar", + "uf": "Brasil", + "month": "Fevereiro", + "year": 2019, + "size": "196.3 kB", + "last_update": "2020-03-10 02:43PM", + }, + { + "name": "CHBR1903.dbc", + "group": "Cadastro Hospitalar", + "uf": "Brasil", + "month": "Março", + "year": 2019, + "size": "196.1 kB", + "last_update": "2020-03-10 02:43PM", + }, ] self.assertEqual(descriptions, expected_descriptions) formats = [sih.format(file) for file in sih.files] expected_formats = [ - ('CH', 'BR', 2019, '01'), - ('CH', 'BR', 2019, '02'), - ('CH', 'BR', 2019, '03') + ("CH", "BR", 2019, "01"), + ("CH", "BR", 2019, "02"), + ("CH", "BR", 2019, "03"), ] self.assertEqual(formats, expected_formats) - get_files = sih.get_files( - group='CH', uf='BR', year=2019, month=1 - ) + get_files = sih.get_files(group="CH", uf="BR", year=2019, month=1) self.assertEqual(get_files, [sih.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SIM.py b/pysus/tests/test_ftp/test_databases/test_SIM.py index a884ca6..71c0cfa 100644 --- a/pysus/tests/test_ftp/test_databases/test_SIM.py +++ b/pysus/tests/test_ftp/test_databases/test_SIM.py @@ -1,91 +1,101 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/11 by luabida license: GPL V3 or Later """ import unittest from datetime import datetime +from unittest.mock import MagicMock, patch -from unittest.mock import patch, MagicMock - -from pysus.ftp.databases.sim import SIM from pysus.ftp import File +from pysus.ftp.databases.sim import SIM class TestSIMDatabase(unittest.TestCase): - def test_sim(self): - date_format = '%Y-%m-%d %I:%M%p' + date_format = "%Y-%m-%d %I:%M%p" mock_content = { "DOAC1996.dbc": File( path="/dissemin/publicos/SIM/CID10/DORES/DOAC1996.dbc", name="DOAC1996.dbc", info={ - 'size': 78054.4, - 'type': 'DBC file', - 'modify': datetime.strptime('2020-01-31 02:48PM', date_format) - } + "size": 78054.4, + "type": "DBC file", + "modify": datetime.strptime( + "2020-01-31 02:48PM", date_format + ), + }, ), "DOAC1997.dbc": File( path="/dissemin/publicos/SIM/CID10/DORES/DOAC1997.dbc", name="DOAC1997.dbc", info={ - 'size': 79084.8, - 'type': 'DBC file', - 'modify': datetime.strptime('2020-01-31 02:48PM', date_format) - } + "size": 79084.8, + "type": "DBC file", + "modify": datetime.strptime( + "2020-01-31 02:48PM", date_format + ), + }, ), "DOAC1998.dbc": File( path="/dissemin/publicos/SIM/CID10/DORES/DOAC1998.dbc", name="DOAC1998.dbc", info={ - 'size': 79084.8, - 'type': 'DBC file', - 'modify': datetime.strptime('2020-01-31 02:48PM', date_format) - } + "size": 79084.8, + "type": "DBC file", + "modify": datetime.strptime( + "2020-01-31 02:48PM", date_format + ), + }, ), } with patch( - 'pysus.ftp.databases.sim.SIM', - return_value=MagicMock(__content__=mock_content) + "pysus.ftp.databases.sim.SIM", + return_value=MagicMock(__content__=mock_content), ) as mock_sim: sim = SIM() sim.__content__ = mock_sim().__content__ descriptions = [sim.describe(file) for file in sim.files] expected_descriptions = [ - {'name': 'DOAC1996.dbc', - 'uf': 'Acre', - 'year': 1996, - 'group': 'CID10', - 'size': '78.1 kB', - 'last_update': '2020-01-31 02:48PM'}, - {'name': 'DOAC1997.dbc', - 'uf': 'Acre', - 'year': 1997, - 'group': 'CID10', - 'size': '79.1 kB', - 'last_update': '2020-01-31 02:48PM'}, - {'name': 'DOAC1998.dbc', - 'uf': 'Acre', - 'year': 1998, - 'group': 'CID10', - 'size': '79.1 kB', - 'last_update': '2020-01-31 02:48PM'} + { + "name": "DOAC1996.dbc", + "uf": "Acre", + "year": 1996, + "group": "CID10", + "size": "78.1 kB", + "last_update": "2020-01-31 02:48PM", + }, + { + "name": "DOAC1997.dbc", + "uf": "Acre", + "year": 1997, + "group": "CID10", + "size": "79.1 kB", + "last_update": "2020-01-31 02:48PM", + }, + { + "name": "DOAC1998.dbc", + "uf": "Acre", + "year": 1998, + "group": "CID10", + "size": "79.1 kB", + "last_update": "2020-01-31 02:48PM", + }, ] self.assertEqual(descriptions, expected_descriptions) formats = [sim.format(file) for file in sim.files] expected_formats = [ - ('DO', 'AC', 1996), ('DO', 'AC', 1997), ('DO', 'AC', 1998) + ("DO", "AC", 1996), + ("DO", "AC", 1997), + ("DO", "AC", 1998), ] self.assertEqual(formats, expected_formats) - get_files = sim.get_files( - group='CID10', uf='AC', year='1996' - ) + get_files = sim.get_files(group="CID10", uf="AC", year="1996") self.assertEqual(get_files, [sim.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SINAN.py b/pysus/tests/test_ftp/test_databases/test_SINAN.py index 30cbb4e..a3819b3 100644 --- a/pysus/tests/test_ftp/test_databases/test_SINAN.py +++ b/pysus/tests/test_ftp/test_databases/test_SINAN.py @@ -1,82 +1,86 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/12 by luabida license: GPL V3 or Later """ -import unittest import datetime +import unittest +from unittest.mock import MagicMock, patch -from unittest.mock import patch, MagicMock - -from pysus.ftp.databases.sinan import SINAN from pysus.ftp import File +from pysus.ftp.databases.sinan import SINAN class TestSINANDatabase(unittest.TestCase): - def test_sinan(self): mock_content = { "ACBIBR06.dbc": File( path="/dissemin/publicos/SINAN/DADOS/FINAIS/ACBIBR06.dbc", name="ACBIBR06.dbc", info={ - 'size': 28326, - 'type': 'file', - 'modify': datetime.datetime(2023, 1, 16, 14, 15) - } + "size": 28326, + "type": "file", + "modify": datetime.datetime(2023, 1, 16, 14, 15), + }, ), "ACBIBR07.dbc": File( path="/dissemin/publicos/SINAN/DADOS/FINAIS/ACBIBR07.dbc", name="ACBIBR07.dbc", info={ - 'size': 673314, - 'type': 'file', - 'modify': datetime.datetime(2023, 1, 16, 14, 15) - } + "size": 673314, + "type": "file", + "modify": datetime.datetime(2023, 1, 16, 14, 15), + }, ), "ACBIBR08.dbc": File( path="/dissemin/publicos/SINAN/DADOS/FINAIS/ACBIBR08.dbc", name="ACBIBR08.dbc", info={ - 'size': 1048406, - 'type': 'file', - 'modify': datetime.datetime(2023, 1, 16, 14, 15) - } + "size": 1048406, + "type": "file", + "modify": datetime.datetime(2023, 1, 16, 14, 15), + }, ), } with patch( - 'pysus.ftp.databases.sinan.SINAN', - return_value=MagicMock(__content__=mock_content) + "pysus.ftp.databases.sinan.SINAN", + return_value=MagicMock(__content__=mock_content), ) as mock_sinan: sinan = SINAN() sinan.__content__ = mock_sinan().__content__ descriptions = [sinan.describe(file) for file in sinan.files] expected_descriptions = [ - {'name': 'ACBIBR06.dbc', - 'disease': 'Acidente de trabalho com material biológico', - 'year': 2006, - 'size': '28.3 kB', - 'last_update': '2023-01-16 02:15PM'}, - {'name': 'ACBIBR07.dbc', - 'disease': 'Acidente de trabalho com material biológico', - 'year': 2007, - 'size': '673.3 kB', - 'last_update': '2023-01-16 02:15PM'}, - {'name': 'ACBIBR08.dbc', - 'disease': 'Acidente de trabalho com material biológico', - 'year': 2008, - 'size': '1.0 MB', - 'last_update': '2023-01-16 02:15PM'} + { + "name": "ACBIBR06.dbc", + "disease": "Acidente de trabalho com material biológico", + "year": 2006, + "size": "28.3 kB", + "last_update": "2023-01-16 02:15PM", + }, + { + "name": "ACBIBR07.dbc", + "disease": "Acidente de trabalho com material biológico", + "year": 2007, + "size": "673.3 kB", + "last_update": "2023-01-16 02:15PM", + }, + { + "name": "ACBIBR08.dbc", + "disease": "Acidente de trabalho com material biológico", + "year": 2008, + "size": "1.0 MB", + "last_update": "2023-01-16 02:15PM", + }, ] self.assertEqual(descriptions, expected_descriptions) formats = [sinan.format(file) for file in sinan.files] - expected_formats = [('ACBI', 2006), ('ACBI', 2007), ('ACBI', 2008)] + expected_formats = [("ACBI", 2006), ("ACBI", 2007), ("ACBI", 2008)] self.assertEqual(formats, expected_formats) - get_files = sinan.get_files(dis_code='ACBI', year=2006) + get_files = sinan.get_files(dis_code="ACBI", year=2006) self.assertEqual(get_files, [sinan.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SINASC.py b/pysus/tests/test_ftp/test_databases/test_SINASC.py index ca11e87..727122f 100644 --- a/pysus/tests/test_ftp/test_databases/test_SINASC.py +++ b/pysus/tests/test_ftp/test_databases/test_SINASC.py @@ -1,89 +1,93 @@ # -*- coding:utf-8 -*- -u""" +""" Created on 2023/12/12 by luabida license: GPL V3 or Later """ -import unittest import datetime +import unittest +from unittest.mock import MagicMock, patch -from unittest.mock import patch, MagicMock - -from pysus.ftp.databases.sinasc import SINASC from pysus.ftp import File +from pysus.ftp.databases.sinasc import SINASC class TestSINASCDatabase(unittest.TestCase): - def test_sinasc(self): mock_content = { "DNAC1996.DBC": File( path="/dissemin/publicos/SINASC/NOV/DNRES/DNAC1996.DBC", name="DNAC1996.DBC", info={ - 'size': 247527, - 'type': 'file', - 'modify': datetime.datetime(2020, 1, 27, 12, 5) - } + "size": 247527, + "type": "file", + "modify": datetime.datetime(2020, 1, 27, 12, 5), + }, ), "DNAC1997.DBC": File( path="/dissemin/publicos/SINASC/NOV/DNRES/DNAC1997.DBC", name="DNAC1997.DBC", info={ - 'size': 266815, - 'type': 'file', - 'modify': datetime.datetime(2020, 1, 27, 12, 5) - } + "size": 266815, + "type": "file", + "modify": datetime.datetime(2020, 1, 27, 12, 5), + }, ), "DNAC1998.DBC": File( path="/dissemin/publicos/SINASC/NOV/DNRES/DNAC1998.DBC", name="DNAC1998.DBC", info={ - 'size': 242404, - 'type': 'file', - 'modify': datetime.datetime(2020, 1, 27, 12, 5) - } + "size": 242404, + "type": "file", + "modify": datetime.datetime(2020, 1, 27, 12, 5), + }, ), } with patch( - 'pysus.ftp.databases.sinasc.SINASC', - return_value=MagicMock(__content__=mock_content) + "pysus.ftp.databases.sinasc.SINASC", + return_value=MagicMock(__content__=mock_content), ) as mock_sinasc: sinasc = SINASC() sinasc.__content__ = mock_sinasc().__content__ descriptions = [sinasc.describe(file) for file in sinasc.files] expected_descriptions = [ - {'name': 'DNAC1996.DBC', - 'group': 'Declarações de Nascidos Vivos', - 'uf': 'Acre', - 'year': 1996, - 'size': '247.5 kB', - 'last_update': '2020-01-27 12:05PM'}, - {'name': 'DNAC1997.DBC', - 'group': 'Declarações de Nascidos Vivos', - 'uf': 'Acre', - 'year': 1997, - 'size': '266.8 kB', - 'last_update': '2020-01-27 12:05PM'}, - {'name': 'DNAC1998.DBC', - 'group': 'Declarações de Nascidos Vivos', - 'uf': 'Acre', - 'year': 1998, - 'size': '242.4 kB', - 'last_update': '2020-01-27 12:05PM'} + { + "name": "DNAC1996.DBC", + "group": "Declarações de Nascidos Vivos", + "uf": "Acre", + "year": 1996, + "size": "247.5 kB", + "last_update": "2020-01-27 12:05PM", + }, + { + "name": "DNAC1997.DBC", + "group": "Declarações de Nascidos Vivos", + "uf": "Acre", + "year": 1997, + "size": "266.8 kB", + "last_update": "2020-01-27 12:05PM", + }, + { + "name": "DNAC1998.DBC", + "group": "Declarações de Nascidos Vivos", + "uf": "Acre", + "year": 1998, + "size": "242.4 kB", + "last_update": "2020-01-27 12:05PM", + }, ] self.assertEqual(descriptions, expected_descriptions) formats = [sinasc.format(file) for file in sinasc.files] expected_formats = [ - ('DN', 'AC', 1996), - ('DN', 'AC', 1997), - ('DN', 'AC', 1998) + ("DN", "AC", 1996), + ("DN", "AC", 1997), + ("DN", "AC", 1998), ] self.assertEqual(formats, expected_formats) - get_files = sinasc.get_files(group='DN', uf='AC', year=1996) + get_files = sinasc.get_files(group="DN", uf="AC", year=1996) self.assertEqual(get_files, [sinasc.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_territory.py b/pysus/tests/test_ftp/test_databases/test_territory.py index aaa7fa5..d64494c 100644 --- a/pysus/tests/test_ftp/test_databases/test_territory.py +++ b/pysus/tests/test_ftp/test_databases/test_territory.py @@ -1,11 +1,12 @@ import unittest + from pysus.ftp.databases.territory import Territory from pysus.online_data import territory -class TestTerritory(unittest.TestCase): +class TestTerritory(unittest.TestCase): def test_load_database(self): T = Territory().load() def test_download(self): - territory.download('todos_mapas_2013.zip') \ No newline at end of file + territory.download("todos_mapas_2013.zip") diff --git a/pysus/tests/test_ibge.py b/pysus/tests/test_ibge.py index dd15910..4623cbc 100644 --- a/pysus/tests/test_ibge.py +++ b/pysus/tests/test_ibge.py @@ -1,7 +1,7 @@ import unittest -import pytest import pandas as pd +import pytest from pysus.online_data import IBGE @@ -14,7 +14,7 @@ def test_get_aggregates(self): @pytest.mark.skip(reason="This test takes too long") def test_localidades_por_agregado(self): - df = IBGE.localidades_por_agregado(475, nivel='N3') + df = IBGE.localidades_por_agregado(475, nivel="N3") self.assertIsInstance(df, pd.DataFrame) self.assertGreater(df.size, 0) @@ -27,8 +27,14 @@ def test_lista_periodos(self): @pytest.mark.timeout(120) def test_get_sidra_table(self): - df = IBGE.get_sidra_table(200, territorial_level=6, geocode=4220000, period='last', classification=2, - categories='all') + df = IBGE.get_sidra_table( + 200, + territorial_level=6, + geocode=4220000, + period="last", + classification=2, + categories="all", + ) self.assertIsInstance(df, pd.DataFrame) self.assertGreater(df.size, 0) @@ -40,8 +46,14 @@ def test_metadata(self): @pytest.mark.timeout(120) def test_FetchData(self): - ds = IBGE.FetchData(475, periodos=1996, variavel=93, localidades='N3[all]', - classificacao='58[all]|2[4,5]|1[all]', view='flat') + ds = IBGE.FetchData( + 475, + periodos=1996, + variavel=93, + localidades="N3[all]", + classificacao="58[all]|2[4,5]|1[all]", + view="flat", + ) self.assertIsInstance(ds, IBGE.FetchData) self.assertGreater(len(ds.JSON), 0) @@ -50,10 +62,10 @@ def test_get_population(self): l = IBGE.get_population(year=2021, source="POP") self.assertEqual(type(l), pd.DataFrame) self.assertEqual(len(l), 5570) - l = IBGE.get_population(year=2012, source='projpop') + l = IBGE.get_population(year=2012, source="projpop") self.assertEqual(type(l), pd.DataFrame) self.assertEqual(len(l), 182) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/pysus/tests/test_utilities.py b/pysus/tests/test_utilities.py index b9dfc69..129bcc8 100644 --- a/pysus/tests/test_utilities.py +++ b/pysus/tests/test_utilities.py @@ -1,11 +1,10 @@ import unittest -import pytest +import pytest from pysus.utilities.brasil import get_city_name_by_geocode class TestGetMunNameByGeocode(unittest.TestCase): - @pytest.mark.timeout(5) def test_get_mun_name_by_geocode(self): rio = get_city_name_by_geocode(3304557) diff --git a/pysus/utilities/brasil.py b/pysus/utilities/brasil.py index e2655c9..0024a7e 100644 --- a/pysus/utilities/brasil.py +++ b/pysus/utilities/brasil.py @@ -3,7 +3,7 @@ from typing import Union with open( - f"{Path(__file__).parent}/municipios.json", 'r', encoding='utf-8-sig' + f"{Path(__file__).parent}/municipios.json", "r", encoding="utf-8-sig" ) as muns: MUNICIPALITIES = json.loads(muns.read()) diff --git a/setup.cfg b/setup.cfg index 11db31b..44a2447 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,4 +29,4 @@ skip = docs/ test = pytest [tool:pytest] -addopts = --ignore=setup.py \ No newline at end of file +addopts = --ignore=setup.py From 6385d1c9023e6e1d0376fef740523e97d9c6307f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 10:39:19 -0300 Subject: [PATCH 3/9] include pre-commit before testing --- .github/workflows/python-package.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index e981445..42ce4c6 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -36,7 +36,8 @@ jobs: run: | make run-jupyter-pysus - - name: Test with pytest + - name: Linting & Tests run: | poetry install + pre-commit run --all-files make test-pysus From 9dc598709a877e26aed4788517bb48d19e8b1e0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 10:43:26 -0300 Subject: [PATCH 4/9] include pre-commit before commiting --- .pre-commit-config.yaml | 8 ++------ poetry.lock | 3 +-- pysus/online_data/SINAN.py | 6 ++++-- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 73d6d51..eebb692 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,5 @@ +default_stages: [commit, push] + repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.1.0 @@ -16,8 +18,6 @@ repos: files: "" language: system pass_filenames: true - stages: - - commit types: - python - file @@ -30,8 +30,6 @@ repos: language: python name: flake8 pass_filenames: true - stages: - - commit types: - python @@ -42,7 +40,5 @@ repos: language: python name: isort pass_filenames: true - stages: - - commit types: - python diff --git a/poetry.lock b/poetry.lock index 3a28cf1..7145797 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aioftp" @@ -990,7 +990,6 @@ files = [ {file = "fastparquet-2024.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5626fc72204001b7e82fedb4b02174ecb4e2d4143b38b4ea8d2f9eb65f6b000e"}, {file = "fastparquet-2024.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c8b2e86fe6488cce0e3d41263bb0296ef9bbb875a2fca09d67d7685640017a66"}, {file = "fastparquet-2024.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2a951106782d51e5ab110beaad29c4aa0537f045711bb0bf146f65aeaed14174"}, - {file = "fastparquet-2024.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:cd3473d3e299bfb04c0ac7726cca5d13ee450cc2387ee7fd70587ca150647315"}, {file = "fastparquet-2024.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:47695037fdc534ef4247f25ccf17dcbd8825be6ecb70c54ca54d588a794f4a6d"}, {file = "fastparquet-2024.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fc3d35ff8341cd65baecac71062e9d73393d7afda207b3421709c1d3f4baa194"}, {file = "fastparquet-2024.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:691348cc85890663dd3c0bb02544d38d4c07a0c3d68837324dc01007301150b5"}, diff --git a/pysus/online_data/SINAN.py b/pysus/online_data/SINAN.py index 5872fd9..fe5692d 100644 --- a/pysus/online_data/SINAN.py +++ b/pysus/online_data/SINAN.py @@ -16,8 +16,10 @@ def list_diseases() -> dict: def get_available_years(disease_code: str) -> list: """ Fetch available years for data related to specific disease - :param disease_code: Disease code. See `SINAN.list_diseases` for valid codes - :return: A list of DBC files from a specific disease found in the FTP Server. + :param disease_code: + Disease code. See `SINAN.list_diseases` for valid codes + :return: + A list of DBC files from a specific disease found in the FTP Server. """ files = sinan.get_files(dis_code=disease_code) return sorted(list(set(sinan.describe(f)["year"] for f in files))) From b128d2588d11d68b56ac8b4e14759229548bec5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 12:27:37 -0300 Subject: [PATCH 5/9] linting pt.1 --- README.md | 14 +- condarecipe/pysus/meta.yaml | 6 +- docker/docker-compose.yaml | 2 +- docs/source/conf.py | 2 +- docs/source/rio.html | 193 +++++++++++----------- docs/source/tutorials/tutorials.rst | 2 +- pysus/ftp/databases/cnes.py | 15 +- pysus/ftp/databases/pni.py | 29 ++-- pysus/ftp/databases/sia.py | 22 +-- pysus/ftp/databases/sinan.py | 29 ++-- pysus/online_data/IBGE.py | 239 +++++++++++++++++----------- pysus/preprocessing/ESUS.py | 9 +- pysus/preprocessing/decoders.py | 21 ++- pysus/preprocessing/geodata.py | 88 ---------- pysus/preprocessing/sinan.py | 22 +-- setup.cfg | 2 +- 16 files changed, 340 insertions(+), 355 deletions(-) delete mode 100644 pysus/preprocessing/geodata.py diff --git a/README.md b/README.md index 45fa7c8..9881ba7 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ First, clone the Pysus repository: ```bash git clone https://github.com/fccoelho/PySUS.git -``` +``` then from within the PySUS directory build the container ```bash @@ -72,7 +72,7 @@ Point your browser to [http://127.0.0.1:8888](http://127.0.0.1:8888) and have fu Once you are done, you can stop the container with a simple `ctrl-c` from the terminal you started it or use the following command: ```bash # to find the container ID -docker ps +docker ps docker stop ``` ### Mounting your working directory in the container @@ -105,7 +105,7 @@ setx PYSUS_CACHEPATH "C:\Users\Me\desired\path\.pysus" In Docker, just add an extra parameter `-e PYSUS_CACHEPATH="/home/me/desired/path/.pysus"` when starting the container: ```bash -docker run -p 8888:8888 -e PYSUS_CACHEPATH="/home/me/desired/path/.pysus" pysus:latest +docker run -p 8888:8888 -e PYSUS_CACHEPATH="/home/me/desired/path/.pysus" pysus:latest ``` ## Examples @@ -164,7 +164,7 @@ Downloading and reading SINASC data: In[1]: from pysus.online_data.sinasc import download In[2]: df = download('SE', 2015) In[3]: df.head() -Out[3]: +Out[3]: NUMERODN CODINST ORIGEM ... TPROBSON PARIDADE KOTELCHUCK 0 19533794 MSE2805100001 1 ... 11 1 9 1 52927108 MSE2802700001 1 ... 11 1 9 @@ -180,7 +180,7 @@ Dowloading and reading SIM data: In[1]: from pysus.online_data.SIM import download In[2]: df = download('ba', 2007) In[3]: df.head() -Out[3]: +Out[3]: NUMERODO TIPOBITO DTOBITO ... UFINFORM CODINST CB_PRE 0 01499664 2 30072007 ... 29 RBA2914800001 C229 1 09798190 2 04072007 ... 29 RBA2914800001 R98 @@ -196,7 +196,7 @@ Dowloading and reading CIHA data: In[1]: from pysus.online_data.CIHA import download In[2]: df = download('mg', 2009, 7) In[3]: df.head() -Out[3]: +Out[3]: ANO_CMPT MES_CMPT ESPEC CGC_HOSP ... CAR_INT HOMONIMO CNES FONTE 0 2009 07 16505851000126 ... 2126796 1 1 2009 07 16505851000126 ... 2126796 2 @@ -212,7 +212,7 @@ Dowloading and reading SIA data: In[1]: from pysus.online_data.SIA import download In[2]: bi, ps = download('AC', 2020, 3, group=["BI", "PS"]) In[3]: bi.head() -Out[3]: +Out[3]: CODUNI GESTAO CONDIC UFMUN TPUPS ... VL_APROV UFDIF MNDIF ETNIA NAT_JUR 0 2000733 120000 EP 120040 07 ... 24.2 0 0 1023 1 2001063 120000 EP 120040 36 ... 7.3 0 0 1023 diff --git a/condarecipe/pysus/meta.yaml b/condarecipe/pysus/meta.yaml index e793e8d..1eeaaef 100644 --- a/condarecipe/pysus/meta.yaml +++ b/condarecipe/pysus/meta.yaml @@ -47,10 +47,10 @@ about: home: "https://github.com/fccoelho/PySUS" license: gpl-v3 license_family: GPL3 - license_file: + license_file: summary: "Tools for dealing with Brazil's Public health data" - doc_url: - dev_url: + doc_url: + dev_url: extra: recipe-maintainers: diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index d07f685..28d5fd7 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -1,5 +1,5 @@ version: '3.3' -services: +services: jupyter: build: context: ".." diff --git a/docs/source/conf.py b/docs/source/conf.py index 2bbb46b..7beac09 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -75,7 +75,7 @@ language = 'en' locale_dirs = ['locale'] -gettext_compact = False +gettext_compact = False # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/docs/source/rio.html b/docs/source/rio.html index 60bedc7..e140521 100644 --- a/docs/source/rio.html +++ b/docs/source/rio.html @@ -1,95 +1,95 @@ - - + + - - - + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - + + + + - - - + + + - - - + + + - - - + + +
- - - + + + - diff --git a/docs/source/tutorials/tutorials.rst b/docs/source/tutorials/tutorials.rst index edad7e1..67bdc29 100644 --- a/docs/source/tutorials/tutorials.rst +++ b/docs/source/tutorials/tutorials.rst @@ -5,7 +5,7 @@ Tutorials PySUS includes some Jupyter notebooks in its distribution package to serve as tutorials. -Preprocessing DATASUS data +Preprocessing DATASUS data -------------------------- #. :doc:`Preprocessing SINAN` #. :doc:`Preprocessing SIM` diff --git a/pysus/ftp/databases/cnes.py b/pysus/ftp/databases/cnes.py index 1c92852..e6e6427 100644 --- a/pysus/ftp/databases/cnes.py +++ b/pysus/ftp/databases/cnes.py @@ -11,13 +11,14 @@ class CNES(Database): "long_name": "Cadastro Nacional de Estabelecimentos de Saúde", "source": "https://cnes.datasus.gov.br/", "description": ( - "O Cadastro Nacional de Estabelecimentos de Saúde (CNES) é o sistema " - "de informação oficial de cadastramento de informações de todos os " - "estabelecimentos de saúde no país, independentemente de sua natureza " - "jurídica ou de integrarem o Sistema Único de Saúde (SUS). Trata-se do " - "cadastro oficial do Ministério da Saúde (MS) no tocante à realidade da " - "capacidade instalada e mão-de-obra assistencial de saúde no Brasil em " - "estabelecimentos de saúde públicos ou privados, com convênio SUS ou não." + "O Cadastro Nacional de Estabelecimentos de Saúde (CNES) é o " + "sistema de informação oficial de cadastramento de informações " + "de todos os estabelecimentos de saúde no país, independentemente " + "de sua natureza jurídica ou de integrarem o Sistema Único de " + "Saúde (SUS). Trata-se do cadastro oficial do Ministério da " + "Saúde (MS) no tocante à realidade da capacidade instalada e " + "mão-de-obra assistencial de saúde no Brasil em estabelecimentos " + "de saúde públicos ou privados, com convênio SUS ou não." ), } groups = { diff --git a/pysus/ftp/databases/pni.py b/pysus/ftp/databases/pni.py index 3843f3c..6fa7d11 100644 --- a/pysus/ftp/databases/pni.py +++ b/pysus/ftp/databases/pni.py @@ -8,22 +8,25 @@ class PNI(Database): name = "PNI" paths = (Directory("/dissemin/publicos/PNI/DADOS"),) metadata = { - "long_name": "Sistema de Informações do Programa Nacional de Imunizações", + "long_name": ( + "Sistema de Informações do Programa Nacional de Imunizações" + ), "source": ( - "https://datasus.saude.gov.br/acesso-a-informacao/morbidade-hospitalar-do-sus-sih-sus/", - "https://datasus.saude.gov.br/acesso-a-informacao/producao-hospitalar-sih-sus/", + "https://datasus.saude.gov.br/acesso-a-informacao/morbidade-hospitalar-do-sus-sih-sus/", # noqa + "https://datasus.saude.gov.br/acesso-a-informacao/producao-hospitalar-sih-sus/", # noqa ), "description": ( - "O SI-PNI é um sistema desenvolvido para possibilitar aos gestores " - "envolvidos no Programa Nacional de Imunização, a avaliação dinâmica " - "do risco quanto à ocorrência de surtos ou epidemias, a partir do " - "registro dos imunobiológicos aplicados e do quantitativo populacional " - "vacinado, agregados por faixa etária, período de tempo e área geográfica. " - "Possibilita também o controle do estoque de imunobiológicos necessário " - "aos administradores que têm a incumbência de programar sua aquisição e " - "distribuição. Controla as indicações de aplicação de vacinas de " - "imunobiológicos especiais e seus eventos adversos, dentro dos Centros " - "de Referências em imunobiológicos especiais." + "O SI-PNI é um sistema desenvolvido para possibilitar aos " + "gestores envolvidos no Programa Nacional de Imunização, a " + "avaliação dinâmica do risco quanto à ocorrência de surtos ou " + "epidemias, a partir do registro dos imunobiológicos aplicados e " + "do quantitativo populacional vacinado, agregados por faixa " + "etária, período de tempo e área geográfica. Possibilita também " + "o controle do estoque de imunobiológicos necessário aos " + "administradores que têm a incumbência de programar sua aquisição " + "e distribuição. Controla as indicações de aplicação de " + "vacinas de imunobiológicos especiais e seus eventos adversos, " + "dentro dos Centros de Referências em imunobiológicos especiais." ), } groups = { diff --git a/pysus/ftp/databases/sia.py b/pysus/ftp/databases/sia.py index c91b0b5..d3873e9 100644 --- a/pysus/ftp/databases/sia.py +++ b/pysus/ftp/databases/sia.py @@ -14,16 +14,18 @@ class SIA(Database): "long_name": "Sistema de Informações Ambulatoriais", "source": "http://sia.datasus.gov.br/principal/index.php", "description": ( - "O Sistema de Informação Ambulatorial (SIA) foi instituído pela Portaria " - "GM/MS n.º 896 de 29 de junho de 1990. Originalmente, o SIA foi concebido " - "a partir do projeto SICAPS (Sistema de Informação e Controle Ambulatorial " - "da Previdência Social), em que os conceitos, os objetivos e as diretrizes " - "criados para o desenvolvimento do SICAPS foram extremamente importantes e " - "amplamente utilizados para o desenvolvimento do SIA, tais como: (i) o " - "acompanhamento das programações físicas e orçamentárias; (ii) o " - "acompanhamento das ações de saúde produzidas; (iii) a agilização do " - "pagamento e controle orçamentário e financeiro; e (iv) a formação de " - "banco de dados para contribuir com a construção do SUS." + "O Sistema de Informação Ambulatorial (SIA) foi instituído pela " + "Portaria GM/MS n.º 896 de 29 de junho de 1990. Originalmente, o " + "SIA foi concebido a partir do projeto SICAPS (Sistema de " + "Informação e Controle Ambulatorial da Previdência Social), em " + "que os conceitos, os objetivos e as diretrizes criados para o " + "desenvolvimento do SICAPS foram extremamente importantes e " + "amplamente utilizados para o desenvolvimento do SIA, tais" + " como: (i) o acompanhamento das programações físicas e " + "orçamentárias; (ii) o acompanhamento das ações de saúde " + "produzidas; (iii) a agilização do pagamento e controle " + "orçamentário e financeiro; e (iv) a formação de banco de dados " + "para contribuir com a construção do SUS." ), } groups = { diff --git a/pysus/ftp/databases/sinan.py b/pysus/ftp/databases/sinan.py index 5a1c787..2c664e2 100644 --- a/pysus/ftp/databases/sinan.py +++ b/pysus/ftp/databases/sinan.py @@ -16,20 +16,21 @@ class SINAN(Database): "description": ( "The Notifiable Diseases Information System - Sinan is primarily" "fed by the notification and investigation of cases of diseases " - "and conditions listed in the national list of compulsorily notifiable " - "diseases (Consolidation Ordinance No. 4, September 28, 2017, Annex)." - "However, states and municipalities are allowed to include other " - "important health problems in their region, such as difilobotriasis " - "in the municipality of São Paulo. Its effective use enables the dynamic " - "diagnosis of the occurrence of an event in the population, providing " - "evidence for causal explanations of compulsorily notifiable diseases " - "and indicating risks to which people are exposed. This contributes to " - "identifying the epidemiological reality of a specific geographical area. " - "Its systematic, decentralized use contributes to the democratization of " - "information, allowing all healthcare professionals to access and make " - "it available to the community. Therefore, it is a relevant tool to assist" - " in health planning, define intervention priorities, and evaluate the " - "impact of interventions." + "and conditions listed in the national list of compulsorily " + "notifiable diseases (Consolidation Ordinance No. 4, September 28," + " 2017, Annex). However, states and municipalities are allowed to " + "include other important health problems in their region, such as " + "difilobotriasis in the municipality of São Paulo. Its effective " + "use enables the dynamic diagnosis of the occurrence of an event " + "in the population, providing evidence for causal explanations of " + "compulsorily notifiable diseases and indicating risks to which " + "people are exposed. This contributes to identifying the " + "epidemiological reality of a specific geographical area. Its " + "systematic, decentralized use contributes to the democratization " + "of information, allowing all healthcare professionals to access " + "and make it available to the community. Therefore, it is a " + "relevant tool to assist in health planning, define intervention " + "priorities, and evaluate the impact of interventions." ), } diff --git a/pysus/online_data/IBGE.py b/pysus/online_data/IBGE.py index bfa5f7c..3771b2e 100644 --- a/pysus/online_data/IBGE.py +++ b/pysus/online_data/IBGE.py @@ -4,7 +4,7 @@ import ssl # Builtin from pathlib import Path from tempfile import TemporaryDirectory -from typing import Literal, Optional +from typing import Literal from urllib.error import HTTPError from zipfile import ZipFile @@ -35,57 +35,90 @@ def get_sidra_table( headers=None, ): """ - Wrapper for the SIDRA API. More information here: http://apisidra.ibge.gov.br/home/ajuda - :param table_id: código da tabela de onde se deseja extrair os dados. código pode ser obtido aqui: https://sidra.ibge.gov.br/acervo#/S/Q - :param territorial_level: 1 – Brasil, 2 – Grande Região, 3 – Unidade da Federação, 6 – Município, etc - :param geocode: geocódigo do IBGE: 3304557,3550308 – especifica os municípios do Rio de Janeiro e São Paulo. - all – especifica todos os municípios. in n3 11,12 - especifica os municípios contidos nas Unidades da Federação Rondônia e Acre. - - :param period: Os períodos podem ser especificados de forma avulsa, separados por vírgula (,), em faixas, separados por traço (-), ou de ambas as formas - Um período pode ter o formato AAAA, de 4 dígitos, que representa um ano, ou o formato AAAADD, de 6 dígitos, onde AAAA representa um ano e DD seu correspondente mês (01 a 12), trimestre (01 a 04), semestre (01 a 02), etc, de acordo com a periodicidade de divulgação dos dados da tabela. - - Exemplo 1: /p/2008,2010-2012 – especifica os anos de 2008, e 2010 a 2012. - - Exemplo 2: /p/201101-201112,201204,201208 – especifica os meses de janeiro a dezembro de 2012, abril de 2012 e agosto de 2012. - - O parâmetro p pode ser seguido pela constante all para especificar todos os períodos disponíveis. + Wrapper for the SIDRA API. + More information here: http://apisidra.ibge.gov.br/home/ajuda + :param table_id: código da tabela de onde se deseja extrair os dados. + código pode ser obtido aqui: https://sidra.ibge.gov.br/acervo#/S/Q + :param territorial_level: + 1 – Brasil, + 2 – Grande Região, + 3 – Unidade da Federação, + 6 – Município, etc + :param geocode: geocódigo do IBGE: 3304557,3550308 – especifica os + municípios do Rio de Janeiro e São Paulo. + all – especifica todos os municípios. in n3 11,12 - especifica os + municípios contidos nas Unidades da Federação Rondônia e Acre. + + :param period: Os períodos podem ser especificados de forma avulsa, + separados por vírgula (,), em faixas, separados por traço (-), ou de + ambas as formas. Um período pode ter o formato AAAA, de 4 dígitos, que + representa um ano, ou o formato AAAADD, de 6 dígitos, onde AAAA + representa um ano e DD seu correspondente mês (01 a 12), + trimestre (01 a 04), semestre (01 a 02), etc, de acordo com a + periodicidade de divulgação dos dados da tabela. + + Exemplo 1: /p/2008,2010-2012 – 2008, e 2010 a 2012. + + Exemplo 2: /p/201101-201112,201204,201208 – janeiro a dezembro de 2012, + abril de 2012 e agosto de 2012. + + O parâmetro p pode ser seguido pela constante all para especificar + todos os períodos disponíveis. Exemplo 3: /p/all - O parâmetro p pode ser seguido pela constante first e um número de períodos, indicando os primeiros períodos da lista de períodos disponíveis (períodos mais antigos). - O número de períodos pode ser omitido quando se tratar de apenas um aperíodo. + O parâmetro p pode ser seguido pela constante first e um número de + períodos, indicando os primeiros períodos da lista de períodos + disponíveis (períodos mais antigos). + O número de períodos pode ser omitido quando se tratar de apenas um + aperíodo. Exemplo 4: /p/first 12 Exemplo 5: /p/first - O parâmetro p pode ser seguido pela constante last e um número de períodos, indicando os últimos períodos da série (períodos mais recentes). - O número de períodos pode ser omitido quando se tratar de apenas um período. + O parâmetro p pode ser seguido pela constante last e um número de + períodos, indicando os últimos períodos da série (períodos mais + recentes). O número de períodos pode ser omitido quando se tratar de + apenas um período. Exemplo 6: /p/last 12 - Exemplo 7: /p/last (valor default, quando não especificado o parâmetro p) - :param variables:As variáveis são especificadas através de seus códigos, separados por vírgula (,). - A lista de variáveis pode incluir também as variáveis de percentual geradas automaticamente pelo Sidra (são variáveis cujos códigos são superiores a 1.000.000). + Exemplo 7: /p/last (default, quando não especificado o parâmetro p) + :param variables: As variáveis são especificadas através de seus códigos, + separados por vírgula (,). + A lista de variáveis pode incluir também as variáveis de percentual + geradas automaticamente pelo Sidra (são variáveis cujos códigos são + superiores a 1.000.000). - Exemplo 1: /v/63,69 – especifica o percentual no mês e o percentual acumulado no ano do IPCA. + Exemplo 1: /v/63,69 – especifica o percentual no mês e o percentual + acumulado no ano do IPCA. - O parâmetro v pode ser seguido pela constante all para especificar todas as variáveis da tabela, inclusive as variáveis de percentual geradas automaticamente pelo Sidra. + O parâmetro v pode ser seguido pela constante all para especificar + todas as variáveis da tabela, inclusive as variáveis de percentual + geradas automaticamente pelo Sidra. Exemplo 2: /v/all - O parâmetro v pode ser seguido pela constante allxp para especificar todas as variáveis da tabela, exceto as variáveis de percentual geradas automaticamente pelo Sidra. - - Exemplo 3: /v/allxp (valor default, quando não especificado o parâmetro v) - :param classification: informa o código de uma das classificações da tabela. - Como exemplos, temos 1 – Situação do domicílio, 2 – Sexo, 81 – Produto da lavoura temporária, etc. - :param categories: As categorias são especificadas através de seus códigos, de forma individual ou para compor uma soma, separadas por vírgula (,). + O parâmetro v pode ser seguido pela constante allxp para especificar + todas as variáveis da tabela, exceto as variáveis de percentual + geradas automaticamente pelo Sidra. + + Exemplo 3: /v/allxp (default, quando não especificado o parâmetro v) + :param classification: informa o código de uma das classificações da tabela + Como exemplos, temos 1 – Situação do domicílio, 2 – Sexo, 81 – Produto + da lavoura temporária, etc. + :param categories: As categorias são especificadas através de seus + códigos, de forma individual ou para compor uma soma, separadas por + vírgula (,). As categorias que compõem a soma devem ser separadas por espaço. - Exemplo 1: /c81/2692,2702,2694 2695 – especifica os produtos da lavoura temporária arroz, feijão e (batata doce + batata inglesa) + Exemplo 1: /c81/2692,2702,2694 2695 – especifica os produtos da lavoura + temporária arroz, feijão e (batata doce + batata inglesa) :param format: :param decimals: - :param headers: `y` para receber o header (valor default, caso o parâmetro h não seja especificado). `n` para não receber o header. + :param headers: `y` para receber o header (valor default, caso o parâmetro + h não seja especificado). `n` para não receber o header. :return: """ base_url = "https://apisidra.ibge.gov.br/values" @@ -111,7 +144,7 @@ def get_sidra_table( try: with (get_legacy_session() as s, s.get(url) as response): df = pd.DataFrame(response.json()) - except HTTPError as exc: + except HTTPError: response = requests.get(url) print(f"Consulta falhou: {response.text}") return None @@ -120,8 +153,8 @@ def get_sidra_table( def list_agregados(**kwargs): """ - Lista de agregados agrupados por pesquisa. - veja https://servicodados.ibge.gov.br/api/docs/agregados?versao=3#api-Agregados-agregadosGet + Lista de agregados agrupados por pesquisa. Veja + https://servicodados.ibge.gov.br/api/docs/agregados?versao=3#api-Agregados-agregadosGet # noqa para maiores detalhes :param kwargs: parâmetros válidos: período, assunto, classificacao, periodicidade,nivel. :return: Dataframe @@ -140,9 +173,11 @@ def list_agregados(**kwargs): def localidades_por_agregado(agregado: int, nivel: str): """ - Obtém as localidades associadas ao agregado de acordo com um ou mais níveis geográficos. + Obtém as localidades associadas ao agregado de acordo com um ou mais níveis + geográficos. :param agregado: codigo numérico do agregado - :param nivel: Identificador do nível geográfico ao qual pertence as localidades. Pode conter um ou mais níveis + :param nivel: Identificador do nível geográfico ao qual pertence as + localidades. Pode conter um ou mais níveis delimitados pelo caracter | (pipe). p.ex. N7|N6 :return: """ @@ -182,60 +217,82 @@ def lista_periodos(agregado: int): try: with (get_legacy_session() as s, s.get(url) as response): table = pd.DataFrame(response.json()) - except: + except Exception: return None return table class FetchData: """ - Obtém o conjunto de variáveis a partir do identificador do agregado, períodos pesquisados e identificador das variáveis - :param agregado: identifocador do agregados - :param periodos: Período do qual se deseja obter os resultados. Consulte os identificadores dos períodos na Base de - identificadores. Informe valores negativos para obter os últimos resultados. Pode conter um ou mais períodos - delimitados pelo caracter | (pipe) - :param variavel: Um ou mais identificadores de variável separados pelo caracter | (pipe). Caso omitido, assume o - valor allxp, que retorna quaisquer variáveis relacionada ao agregado. Para saber mais sobre as variáveis de cada - agregado, acesse seus respectivos metadados - :kwargs: parametros adicionais: - - **localidades**: Uma ou mais localidades delimitadas pelo caracter | (pipe). No caso do Brasil, o identificador é - BR. Para qualquer outra localidade que NÃO seja Brasil, essa deve seguir o padrão N[], - em que pode ser uma ou mais localidades separadas por vírgula. É possível ainda generalizar o - resultado, informando a classe da localidade, conforme os exemplos a seguir - - https://servicodados.ibge.gov.br/api/v3/agregados/1705/variaveis?localidades=N7 - - Obtém os resultados referentes às variáveis do agregado 1705 cujas localidades sejam regiões metropolitanas (N7) - - https://servicodados.ibge.gov.br/api/v3/agregados/1705/variaveis?localidades=N7[3501,3301] - - Obtém os resultados referentes às variáveis do agregado 1705 cujas localidades sejam as regiões metropolitanas - (N7) de São Paulo e Rio de Janeiro (3501,3301). Observe que 3501 e 3301 são, respectivamente, os identificadores - das regiões metropolitanas de São Paulo e Rio de Janeiro. Não podem ser confundidos, portanto, com os - identificadores dos municípios de São Paulo/SP e Rio de Janeiro/RJ, que são 3550308 e 3304557, respectivamente - - - **classificacao**: Além de estar relacionado à uma dada localidade e um determinado período, os resultados das - variáveis podem estar relacionados à outros conjuntos de dados, que na nomenclatura do SIDRA recebe o nome de - classificação. Como exemplo, considere o agregado Produção, venda, valor da produção e área colhida da lavoura - temporária nos estabelecimentos agropecuários. Além da localidade e do período, os resultados produzidos por - esse agregado referem-se aos produtos produzidos, condição do produtor, grupos de atividades econômica, grupos - de área, grupos de área colhida e pronafiano, que são as classificações do agregado - Para conhecer as - classificações de cada agregado, acesse seus respectivos metadados. Aos componentes da classificação, dar-se o - nome de categoria. Na prática, você fará uso das classificações para restringir a consulta, conforme os exemplos a seguir - - https://servicodados.ibge.gov.br/api/v3/agregados/1712/variaveis?classificacao=226[4844]&localidades=BR - - Obtém os resultados referentes às variáveis do agregado 1712 cujo produto produzido (226) seja abacaxi (4844) - no Brasil (BR) - - https://servicodados.ibge.gov.br/api/v3/agregados/1712/variaveis?classificacao=226[4844]|218[4780]&localidades=BR - - Obtém os resultados referentes às variáveis do agregado 1712 cujo produto produzido (226) seja abacaxi (4844) e - cuja condição do produtor (218) seja proprietário (4780) no Brasil (BR) - - **view**: Modo de visualização. Caso deseje que a resposta seja renderizada usando notação OLAP, configure - esse parâmetro com o valor OLAP - https://servicodados.ibge.gov.br/api/v3/agregados/1705/variaveis?view=OLAP&localidades=BR. - A outra opção é configurar esse parâmetro com o valor flat. No modo flat, o primeiro elemento do Array são - metadados, de forma que os resultados vêm a partir do segundo elemento + Obtém o conjunto de variáveis a partir do identificador do agregado, + períodos pesquisados e identificador das variáveis. + + :param agregado: Identificador do agregado. + :param periodos: Período do qual se deseja obter os resultados. Consulte os + identificadores dos períodos na Base de Identificadores. Informe + valores negativos para obter os últimos resultados. Pode conter um ou + mais períodos delimitados pelo caractere | (pipe). + :param variavel: Um ou mais identificadores de variável separados pelo + caractere | (pipe). Caso omitido, assume o valor allxp, que retorna + quaisquer variáveis relacionadas ao agregado. Para saber mais sobre as + variáveis de cada agregado, acesse seus respectivos metadados. + :kwargs: Parâmetros adicionais: + - **localidades**: Uma ou mais localidades delimitadas pelo caractere | + (pipe). No caso do Brasil, o identificador é BR. Para qualquer + outra localidade que NÃO seja Brasil, essa deve seguir o padrão + N[], em que pode ser uma + ou mais localidades separadas por vírgula. É possível ainda + generalizar o resultado, informando a classe da localidade, + conforme os exemplos a seguir: + + https://servicodados.ibge.gov.br/api/v3/agregados/1705/variaveis?localidades=N7 # noqa + + Obtém os resultados referentes às variáveis do agregado 1705 cujas + localidades sejam regiões metropolitanas (N7). + + https://servicodados.ibge.gov.br/api/v3/agregados/1705/variaveis?localidades=N7[3501,3301] # noqa + + Obtém os resultados referentes às variáveis do agregado 1705 cujas + localidades sejam as regiões metropolitanas (N7) de São Paulo e Rio + de Janeiro (3501,3301). Observe que 3501 e 3301 são os + identificadores das regiões metropolitanas de São Paulo e Rio de + Janeiro. Não podem ser confundidos com os identificadores dos + municípios de São Paulo/SP e Rio de Janeiro/RJ, que são 3550308 + e 3304557, respectivamente. + + - **classificacao**: Além de estar relacionado a uma dada localidade e + a um determinado período, os resultados das variáveis podem estar + relacionados a outros conjuntos de dados, que na nomenclatura do + SIDRA recebem o nome de classificação. Como exemplo, considere o + agregado Produção, venda, valor da produção e área colhida da + lavoura temporária nos estabelecimentos agropecuários. Além da + localidade e do período, os resultados produzidos por esse agregado + referem-se aos produtos produzidos, condição do produtor, grupos de + atividades econômicas, grupos de área, grupos de área colhida e + pronafiano, que são as classificações do agregado. Para conhecer as + classificações de cada agregado, acesse seus respectivos metadados. + Aos componentes da classificação, dá-se o nome de categoria. Na + prática, você fará uso das classificações para restringir a + consulta, conforme os exemplos a seguir: + + https://servicodados.ibge.gov.br/api/v3/agregados/1712/variaveis?classificacao=226[4844]&localidades=BR # noqa + + Obtém os resultados referentes às variáveis do agregado 1712 cujo + produto produzido (226) seja abacaxi (4844) no Brasil (BR). + + https://servicodados.ibge.gov.br/api/v3/agregados/1712/variaveis?classificacao=226[4844]|218[4780]&localidades=BR # noqa + + Obtém os resultados referentes às variáveis do agregado 1712 cujo + produto produzido (226) seja abacaxi (4844) e cuja condição do + produtor (218) seja proprietário (4780) no Brasil (BR). + + - **view**: Modo de visualização. Caso deseje que a resposta seja + renderizada usando notação OLAP, configure esse parâmetro com o + valor OLAP - + https://servicodados.ibge.gov.br/api/v3/agregados/1705/variaveis?view=OLAP&localidades=BR. # noqa + A outra opção é configurar esse parâmetro com o valor flat. No modo + flat, o primeiro elemento do array são metadados, de forma que os + resultados vêm a partir do segundo elemento. """ def __init__( @@ -262,11 +319,11 @@ def to_dataframe(self): """ -HTTPSConnectionPool(host='servicodados.ibge.gov.br', port=443): - Max retries exceeded with url: - /api/v3/agregados/{...} +HTTPSConnectionPool(host='servicodados.ibge.gov.br', port=443): + Max retries exceeded with url: + /api/v3/agregados/{...} Caused by SSLError( - SSLError(1, '[SSL: UNSAFE_LEGACY_RENEGOTIATION_DISABLED] + SSLError(1, '[SSL: UNSAFE_LEGACY_RENEGOTIATION_DISABLED] unsafe legacy renegotiation disabled (_ssl.c:1129)' SOLUTION: https://github.com/scrapy/scrapy/issues/5491#issuecomment-1241862323 @@ -309,8 +366,8 @@ def get_population( "POP" - 1992-presente: Estimativas populacionais estratificadas por idade e sexo. "censo" - 1991, 2000 e 2010: Censos Demográficos - "POPTCU" - 1992-presente: Estimativas populacionais enviadas para o TCU, - estratificadas por idade e sexo pelo MS/SGEP/Datasus. + "POPTCU" - 1992-presente: Estimativas populacionais enviadas para o + TCU, estratificadas por idade e sexo pelo MS/SGEP/Datasus. "projpop": Estimativas preliminares para os anos intercensitários dos totais populacionais, estratificadas por idade e sexo pelo MS/SGEP/Datasus. diff --git a/pysus/preprocessing/ESUS.py b/pysus/preprocessing/ESUS.py index b52b308..5552f58 100644 --- a/pysus/preprocessing/ESUS.py +++ b/pysus/preprocessing/ESUS.py @@ -5,7 +5,8 @@ def cases_by_age_and_sex(UF, start="2020-03-01", end="2020-08-31"): """ - Fetches ESUS covid line list and aggregates by age and sex returning these counts between start and end dates. + Fetches ESUS covid line list and aggregates by age and sex returning these + counts between start and end dates. :param UF: State code :param start: Start date :param end: end date @@ -25,7 +26,8 @@ def cases_by_age_and_sex(UF, start="2020-03-01", end="2020-08-31"): inplace=True, ) print( - f"Removed {old_size - len(df)} rows with missing dates of symptoms, notification or testing" + f"Removed {old_size - len(df)} rows with missing dates of symptoms," + " notification or testing" ) # Desconsiderando os resultados negativos ou inconclusivos @@ -42,7 +44,8 @@ def cases_by_age_and_sex(UF, start="2020-03-01", end="2020-08-31"): df.set_index("datesint", inplace=True) df.sort_index(inplace=True, ascending=True) - # vamos limitar a data inicial e a data final considerando apenas a primeira onda + # vamos limitar a data inicial e a data final considerando apenas a + # primeira onda df = df.loc[start:end] diff --git a/pysus/preprocessing/decoders.py b/pysus/preprocessing/decoders.py index 4463545..23215a6 100644 --- a/pysus/preprocessing/decoders.py +++ b/pysus/preprocessing/decoders.py @@ -19,9 +19,10 @@ @np.vectorize def decodifica_idade_SINAN(idade, unidade: str = "Y"): """ - Em tabelas do SINAN frequentemente a idade é representada como um inteiro que precisa ser parseado - para retornar a idade em uma unidade cronológica padrão. - :param unidade: unidade da idade: 'Y': anos, 'M' meses, 'D': dias, 'H': horas + Em tabelas do SINAN frequentemente a idade é representada como um inteiro + que precisa ser parseado para retornar a idade em uma unidade cronológica + padrão. + :param unidade: unidade da idade: 'Y' anos, 'M' meses, 'D' dias, 'H' horas :param idade: inteiro ou sequencia de inteiros codificados. :return: """ @@ -61,7 +62,9 @@ def decodifica_idade_SIM(idade, unidade="D"): """ Em tabelas do SIM a idade encontra-se codificada :param idade: valor original da tabela do SIM - :param unidade: Unidade de saida desejada: 'Y': anos, 'M' meses, 'D': dias, 'H': horas, 'm': minutos. Valor default: 'D' + :param unidade: Unidade de saida desejada: + 'Y' anos, 'M' meses, 'D' dias, 'H' horas, 'm' minutos. + Valor default: 'D' :return: """ fator = {"Y": 365.0, "M": 30.0, "D": 1.0, "H": 1 / 24.0, "m": 1 / 1440.0} @@ -249,9 +252,13 @@ def classify_age( :param start: início do primeiro grupo :param end: fim do último grupo :param freq: tamanho dos grupos. Por padrão considera cada valor um grupo. - :param open_end: cria uma classe no final da lista de intervalos que contém todos acima daquele último valor. Default True - :param closed: onde os intervalos devem ser fechados. Possíveis valores: {'left', 'right', 'both', 'neither'}. Default 'left' - :param interval: IntervalIndex do pandas. Caso seja passado todos os outros parâmetros de intervalo são desconsiderados. Defaul None + :param open_end: cria uma classe no final da lista de intervalos que contém + todos acima daquele último valor. Default True + :param closed: onde os intervalos devem ser fechados. + Possíveis valores: {'left', 'right', 'both', 'neither'}. + Default 'left' + :param interval: IntervalIndex do pandas. Caso seja passado todos os outros + parâmetros de intervalo são desconsiderados. Defaul None :return: """ if interval: diff --git a/pysus/preprocessing/geodata.py b/pysus/preprocessing/geodata.py deleted file mode 100644 index e516bcf..0000000 --- a/pysus/preprocessing/geodata.py +++ /dev/null @@ -1,88 +0,0 @@ -""" -This module contains a set of functions to deal with geodatadecode -commonly encoded variables -Created on 15/10/2020 -by gabrielmcf -license: GPL V3 or Later -""" - -__docformat__ = "restructuredtext en" -# from geobr import read_municipality -import warnings - -import pandas as pd - -warnings.warn( - "The 'geodata' module is deprecated and will be removed in a future release. " - "Please use 'new_module' instead.", - DeprecationWarning, - stacklevel=2, -) - - -# def add_data_to_municipality( -# counts, -# map_year=2019, -# codmun_col="CODMUNRES", -# title_cols=["SEXO", "IDADE_ANOS"], -# value_col="COUNTS", -# nan_string="nan", -# ): -# -# """ -# Adiciona dados de mortalidade aos seus respectivos municípios. Gera um GeoDataFrame do GeoPandas. -# :param counts: dataframe contendo os dados a serem agregados. -# :param map_year: ano do mapa a ser usado (biblioteca geobr). -# :param codmun_col: coluna com geocode do município -# :param title_cols: colunas que serão utilizadas para formar o título das colunas no GeoDataFrame. -# :param value_col: coluna com o valor a ser adicionado ao GeoDataFrame -# :return: -# """ -# -# # Extrai código do estado dos municípios. -# # 2 primeiros dígitos do código são o estado -# states = ( -# counts[counts[codmun_col] != nan_string][codmun_col] -# .apply(lambda x: str(x)[:2]) -# .unique() -# ) -# geo_df = read_municipality(code_muni=states[0], year=map_year) -# -# all_fields = [codmun_col] + title_cols + [value_col] -# -# if len(states) > 1: -# for state in states[1:]: -# geo_df = geo_df.append(read_municipality(code_muni=state, year=map_year)) -# -# column_names = column_name_list(counts, title_cols) -# geo_df[column_names] = 0 -# -# for i, mun in geo_df.iterrows(): -# data = counts[ -# (counts[codmun_col] == mun["code_muni"]) & (counts[value_col] > 0.0) -# ] -# for _, item in data.iterrows(): -# geo_df.loc[i, column_name(item, title_cols)] = item[value_col] -# -# return geo_df.fillna(0) -# -# -# def column_name_list(df, title_cols): -# unique_indices = pd.DataFrame(df.groupby(title_cols).indices.keys()) -# titles = unique_indices.apply(column_name, axis=1) -# return titles.tolist() -# -# -# def column_name(item, title_cols=None): -# if title_cols: -# name = item[title_cols[0]] -# if len(title_cols) > 1: -# for col in title_cols[1:]: -# name = f"{name}-{item[col]}" -# else: -# name = item[0] -# if len(item) > 1: -# for col in item[1:]: -# name = f"{name}-{col}" -# -# return name diff --git a/pysus/preprocessing/sinan.py b/pysus/preprocessing/sinan.py index bf4076a..cb6945e 100644 --- a/pysus/preprocessing/sinan.py +++ b/pysus/preprocessing/sinan.py @@ -49,10 +49,8 @@ def get_geocodes(geoc): """ url = ( "http://cidades.ibge.gov.br/services/jSonpMuns.php?" - "busca=330&featureClass=P&style=full&maxRows=5&name_startsWith={}".format( - geoc - ) - ) + "busca=330&featureClass=P&style=full&maxRows=5&name_startsWith={}" + ).format(geoc) resp = requests.get(url) for d in resp.json()["municipios"]: if int(geoc) == int(d["c"]): @@ -80,7 +78,8 @@ def _address_generator(df, default=""): def geocode(sinan_df, outfile, default_city): """ Geocode cases based on addresses included. - :param default_city: default city to use in case of bad Geocode found in file. It can be "city, state" + :param default_city: default city to use in case of bad Geocode found in + file. It can be "city, state" :param sinan_df: Dataframe generated from sinan DBF :param outfile: File on Which """ @@ -104,9 +103,10 @@ def geocode(sinan_df, outfile, default_city): raise NameError("Google could not find {}".format(ad)) if location.latlng == []: print( - "Search for {} returned {} as coordinates, trying reduced address:".format( - ad, location.latlng - ) + ( + "Search for {} returned {} as coordinates, trying " + "reduced address:" + ).format(ad, location.latlng) ) ad = ",".join(ad.split(",")[2:]) print(ad) @@ -120,8 +120,8 @@ def geocode(sinan_df, outfile, default_city): print("Successfully geolocated {}".format(ad)) except IndexError: print( - "Search for {} returned {} as coordinates, skipping".format( - ad, location.latlng - ) + ( + "Search for {} returned {} as coordinates, " "skipping" + ).format(ad, location.latlng) ) of.write("{},nan,nan\n".format(nu)) diff --git a/setup.cfg b/setup.cfg index 44a2447..157d9df 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ license_file = LICENSE [options] packages = find: -include = +include = pysus [build_sphinx] From e3bd000995e044eba06ec011e849a39d3b0eb1d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 13:18:53 -0300 Subject: [PATCH 6/9] linting pt.2 --- docs/source/conf.py | 10 ++++++-- pysus/__init__.py | 2 -- pysus/data/__init__.py | 1 - pysus/ftp/__init__.py | 6 ++--- pysus/ftp/databases/ciha.py | 31 +++++++++++++----------- pysus/ftp/databases/ibge_datasus.py | 5 ++-- pysus/ftp/databases/sih.py | 19 ++++++++------- pysus/ftp/databases/territory.py | 11 --------- pysus/online_data/Infogripe.py | 8 +++---- pysus/online_data/SIM.py | 4 ++-- pysus/online_data/territory.py | 13 +++------- pysus/online_data/vaccine.py | 19 ++++++++------- pysus/preprocessing/SIM.py | 37 ++++++++++++++++++----------- 13 files changed, 82 insertions(+), 84 deletions(-) delete mode 100644 pysus/ftp/databases/territory.py diff --git a/docs/source/conf.py b/docs/source/conf.py index 7beac09..a006f43 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -154,7 +154,7 @@ # html_logo = None # The name of an image file (relative to this directory) to use as a favicon of -# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 +# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. # # html_favicon = None @@ -265,7 +265,13 @@ # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, "PySUS.tex", "PySUS Documentation", "Flavio Codeco Coelho", "manual"), + ( + master_doc, + "PySUS.tex", + "PySUS Documentation", + "Flavio Codeco Coelho", + "manual" + ), ] # The name of an image file (relative to this directory) to place at the top of diff --git a/pysus/__init__.py b/pysus/__init__.py index 4165183..0ba1d68 100644 --- a/pysus/__init__.py +++ b/pysus/__init__.py @@ -3,8 +3,6 @@ from importlib import metadata as importlib_metadata -from . import preprocessing, utilities - def get_version() -> str: try: diff --git a/pysus/data/__init__.py b/pysus/data/__init__.py index 55e534f..c6ca202 100644 --- a/pysus/data/__init__.py +++ b/pysus/data/__init__.py @@ -1,4 +1,3 @@ -import logging import os import struct from datetime import datetime diff --git a/pysus/ftp/__init__.py b/pysus/ftp/__init__.py index d8d0030..71f50d0 100644 --- a/pysus/ftp/__init__.py +++ b/pysus/ftp/__init__.py @@ -5,7 +5,7 @@ import pathlib from datetime import datetime from ftplib import FTP -from typing import Any, Dict, List, Optional, Set, Tuple, Union +from typing import Any, Dict, List, Optional, Tuple, Union import humanize from aioftp import Client @@ -473,8 +473,8 @@ def __repr__(self) -> str: def content(self) -> List[Union[Directory, File]]: """ Lists Database content. The `paths` will be loaded if this property is - called or if explicitly using `load()`. To add specific Directory inside - content, `load()` the directory and call `content` again. + called or if explicitly using `load()`. To add specific Directory + inside content, `load()` the directory and call `content` again. """ if not self.__content__: logger.info( diff --git a/pysus/ftp/databases/ciha.py b/pysus/ftp/databases/ciha.py index c1a4da8..7e7ac38 100644 --- a/pysus/ftp/databases/ciha.py +++ b/pysus/ftp/databases/ciha.py @@ -11,20 +11,23 @@ class CIHA(Database): "long_name": "Comunicação de Internação Hospitalar e Ambulatorial", "source": "http://ciha.datasus.gov.br/CIHA/index.php", "description": ( - "A CIHA foi criada para ampliar o processo de planejamento, programação, " - "controle, avaliação e regulação da assistência à saúde permitindo um " - "conhecimento mais abrangente e profundo dos perfis nosológico e " - "epidemiológico da população brasileira, da capacidade instalada e do " - "potencial de produção de serviços do conjunto de estabelecimentos de saúde " - "do País. O sistema permite o acompanhamento das ações e serviços de saúde " - "custeados por: planos privados de assistência à saúde; planos públicos; " - "pagamento particular por pessoa física; pagamento particular por pessoa " - "jurídica; programas e projetos federais (PRONON, PRONAS, PROADI); recursos " - "próprios das secretarias municipais e estaduais de saúde; DPVAT; gratuidade " - "e, a partir da publicação da Portaria GM/MS nº 2.905/2022, consórcios públicos. " - "As informações registradas na CIHA servem como base para o processo de " - "Certificação de Entidades Beneficentes de Assistência Social em Saúde (CEBAS) " - "e para monitoramento dos programas PRONAS e PRONON." + "A CIHA foi criada para ampliar o processo de planejamento, " + "programação, controle, avaliação e regulação da assistência à " + "saúde permitindo um conhecimento mais abrangente e profundo dos " + "perfis nosológico e epidemiológico da população brasileira, da " + "capacidade instalada e do potencial de produção de serviços do " + "conjunto de estabelecimentos de saúde do País. O sistema permite " + "o acompanhamento das ações e serviços de saúde custeados " + "por: planos privados de assistência à saúde; planos públicos; " + "pagamento particular por pessoa física; pagamento particular por " + "pessoa jurídica; programas e projetos federais (PRONON, PRONAS, " + "PROADI); recursos próprios das secretarias municipais e estaduais" + " de saúde; DPVAT; gratuidade e, a partir da publicação da " + "Portaria GM/MS nº 2.905/2022, consórcios públicos. As " + "informações registradas na CIHA servem como base para o processo " + "de Certificação de Entidades Beneficentes de Assistência Social " + "em Saúde (CEBAS) e para monitoramento dos programas PRONAS e " + "PRONON" ), } groups = { diff --git a/pysus/ftp/databases/ibge_datasus.py b/pysus/ftp/databases/ibge_datasus.py index 962cf29..e7b2732 100644 --- a/pysus/ftp/databases/ibge_datasus.py +++ b/pysus/ftp/databases/ibge_datasus.py @@ -1,8 +1,7 @@ from typing import List, Literal, Optional, Union -from loguru import logger from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import to_list, zfill_year +from pysus.ftp.utils import zfill_year class IBGEDATASUS(Database): @@ -12,7 +11,7 @@ class IBGEDATASUS(Database): Directory("/dissemin/publicos/IBGE/censo"), Directory("/dissemin/publicos/IBGE/POPTCU"), Directory("/dissemin/publicos/IBGE/projpop"), - # Directory("/dissemin/publicos/IBGE/Auxiliar") # this has a different file name pattern + # Directory("/dissemin/publicos/IBGE/Auxiliar") # this has a different file name pattern # noqa ) metadata = { "long_name": "Populaçao Residente, Censos, Contagens " diff --git a/pysus/ftp/databases/sih.py b/pysus/ftp/databases/sih.py index 42a7bc5..e0289e2 100644 --- a/pysus/ftp/databases/sih.py +++ b/pysus/ftp/databases/sih.py @@ -13,20 +13,21 @@ class SIH(Database): metadata = { "long_name": "Sistema de Informações Hospitalares", "source": ( - "https://datasus.saude.gov.br/acesso-a-informacao/morbidade-hospitalar-do-sus-sih-sus/", - "https://datasus.saude.gov.br/acesso-a-informacao/producao-hospitalar-sih-sus/", + "https://datasus.saude.gov.br/acesso-a-informacao/morbidade-hospitalar-do-sus-sih-sus/", # noqa + "https://datasus.saude.gov.br/acesso-a-informacao/producao-hospitalar-sih-sus/", # noqa ), "description": ( "A finalidade do AIH (Sistema SIHSUS) é a de transcrever todos os " "atendimentos que provenientes de internações hospitalares que " "foram financiadas pelo SUS, e após o processamento, gerarem " - "relatórios para os gestores que lhes possibilitem fazer os pagamentos " - "dos estabelecimentos de saúde. Além disso, o nível Federal recebe " - "mensalmente uma base de dados de todas as internações autorizadas " - "(aprovadas ou não para pagamento) para que possam ser repassados às " - "Secretarias de Saúde os valores de Produção de Média e Alta complexidade " - "além dos valores de CNRAC, FAEC e de Hospitais Universitários – em suas " - "variadas formas de contrato de gestão." + "relatórios para os gestores que lhes possibilitem fazer os " + "pagamentos dos estabelecimentos de saúde. Além disso, o nível " + "Federal recebe mensalmente uma base de dados de todas as " + "internações autorizadas (aprovadas ou não para pagamento) para " + "que possam ser repassados às Secretarias de Saúde os valores de " + "Produção de Média e Alta complexidade além dos valores de CNRAC, " + "FAEC e de Hospitais Universitários – em suas variadas formas de " + "contrato de gestão." ), } groups = { diff --git a/pysus/ftp/databases/territory.py b/pysus/ftp/databases/territory.py deleted file mode 100644 index bfa65e1..0000000 --- a/pysus/ftp/databases/territory.py +++ /dev/null @@ -1,11 +0,0 @@ -from typing import List, Optional, Union - -from pysus.ftp import Database, Directory, File -from pysus.ftp.utils import to_list, zfill_year - - -class Territory(Database): - paths = (Directory("/territorio/tabelas"), Directory("territorio/mapas")) - - def get_files(self): - return [f for f in self.files if f.extension.upper() == ".ZIP"] diff --git a/pysus/online_data/Infogripe.py b/pysus/online_data/Infogripe.py index 642d35b..a576219 100644 --- a/pysus/online_data/Infogripe.py +++ b/pysus/online_data/Infogripe.py @@ -4,12 +4,12 @@ import pandas as pd -BASEURL = r"https://gitlab.fiocruz.br/marcelo.gomes/infogripe/-/raw/master/Dados/InfoGripe/" +BASEURL = r"https://gitlab.fiocruz.br/marcelo.gomes/infogripe/-/raw/master/Dados/InfoGripe/" # noqa DATASETS = { "Alerta de situação": r"tabela_de_alerta.csv", - "Casos por idade, sexo e virus": r"dados_semanais_faixa_etaria_sexo_virus.csv.gz", - "Casos Totais e estimativas": r"serie_temporal_com_estimativas_recentes.csv.gz", - "Valores esperados por localidades": "valores_esperados_por_localidade.csv", + "Casos por idade, sexo e virus": r"dados_semanais_faixa_etaria_sexo_virus.csv.gz", # noqa + "Casos Totais e estimativas": r"serie_temporal_com_estimativas_recentes.csv.gz", # noqa + "Valores esperados por localidades": "valores_esperados_por_localidade.csv", # noqa } diff --git a/pysus/online_data/SIM.py b/pysus/online_data/SIM.py index 47bdc3a..c021111 100644 --- a/pysus/online_data/SIM.py +++ b/pysus/online_data/SIM.py @@ -227,7 +227,7 @@ def get_municipios(cache=True): try: ftp.retrbinary("RETR {}".format(fname), open(fname, "wb").write) - except: + except Exception: raise Exception("Could not download {}".format(fname)) dbf = DBF(fname, encoding="iso-8859-1") @@ -272,7 +272,7 @@ def get_ocupations(cache=True): try: ftp.retrbinary("RETR {}".format(fname), open(fname, "wb").write) - except: + except Exception: raise Exception("Could not download {}".format(fname)) dbf = DBF(fname, encoding="iso-8859-1") diff --git a/pysus/online_data/territory.py b/pysus/online_data/territory.py index ddf5a62..404a5ad 100644 --- a/pysus/online_data/territory.py +++ b/pysus/online_data/territory.py @@ -1,11 +1,6 @@ -from pathlib import Path -from typing import Dict, List, Union +from typing import List, Union -import pandas as pd from pysus.ftp import CACHEPATH, Directory, File -from pysus.ftp.databases.territory import Territory - -ter = Territory().load() def list_tables() -> List[File]: @@ -26,8 +21,6 @@ def download(fname: Union[str, list], data_path: str = CACHEPATH): + Directory("/territorio/mapas").content ) for file in files: - if fname in [ - str(file), - file.name, - ]: # handles suffixed and no suffixed `fname`s + if fname in [str(file), file.name]: + # handles suffixed and no suffixed `fname`s return file.download() diff --git a/pysus/online_data/vaccine.py b/pysus/online_data/vaccine.py index 5a01943..28b4275 100644 --- a/pysus/online_data/vaccine.py +++ b/pysus/online_data/vaccine.py @@ -3,7 +3,7 @@ This module contains function to download from specific campains: -- COVID-19 in 2020-2021 Downloaded as described [here](http://opendatasus.saude.gov.br/dataset/b772ee55-07cd-44d8-958f-b12edd004e0b/resource/5916b3a4-81e7-4ad5-adb6-b884ff198dc1/download/manual_api_vacina_covid-19.pdf) +- COVID-19 in 2020-2021 Downloaded as described [here](http://opendatasus.saude.gov.br/dataset/b772ee55-07cd-44d8-958f-b12edd004e0b/resource/5916b3a4-81e7-4ad5-adb6-b884ff198dc1/download/manual_api_vacina_covid-19.pdf) # noqa """ import json import os @@ -21,12 +21,12 @@ def download_covid(uf=None, only_header=False): Download covid vaccination data for a give UF :param uf: 'RJ' | 'SP', etc. :param only_header: Used to see the header of the data before downloading. - :return: dataframe iterator as returned by pandas `read_csv('Vaccine_temp_.csv.gz', chunksize=5000)` + :return: dataframe iterator as returned by pandas + `read_csv('Vaccine_temp_.csv.gz', chunksize=5000)` """ user = "imunizacao_public" pwd = "qlto5t&7r_@+#Tlstigi" - index = "desc-imunizacao" - url = f"https://imunizacao-es.saude.gov.br/_search?scroll=1m" + url = "https://imunizacao-es.saude.gov.br/_search?scroll=1m" if uf is None: query = {"query": {"match_all": {}}, "size": 10000} UF = "BR" @@ -41,7 +41,8 @@ def download_covid(uf=None, only_header=False): tempfile = os.path.join(CACHEPATH, f"Vaccine_temp_{UF}.csv.gz") if os.path.exists(tempfile): print( - "loading from cache. Returning an iterator of Dataframes in chunks of 5000." + "loading from cache. Returning an iterator of Dataframes in chunks" + " of 5000." ) return pd.read_csv(tempfile, chunksize=5000) @@ -51,7 +52,7 @@ def download_covid(uf=None, only_header=False): if only_header: df = pd.DataFrame(next(data_gen)) logger.warning( - f"Downloading data sample for visualization of {df.shape[0]} rows..." + f"Downloading data sample for visualization of {df.shape[0]} rows" ) return df @@ -83,9 +84,9 @@ def elasticsearch_fetch(uri, auth, json_body={}): json_body["scroll_id"] = scroll_id json_body["scroll"] = "1m" if "query" in json_body: - del json_body[ - "query" - ] # for the continuation of the download, query parameter is not allowed + del json_body["query"] + # for the continuation of the download, + # query parameter is not allowed del json_body["size"] try: s = requests.Session() diff --git a/pysus/preprocessing/SIM.py b/pysus/preprocessing/SIM.py index 7a43501..5db5f78 100644 --- a/pysus/preprocessing/SIM.py +++ b/pysus/preprocessing/SIM.py @@ -34,10 +34,12 @@ def group_and_count( dataframe, group_columns, count_column="COUNTS", decimal_counts=False ): """ - Agrupa e conta as variáveis passadas como parâmetro no dataframe. Cria uma nova - coluna de contagem, com o tipo Decimal para possibilitar redistribuição pro rata posterior e maior precisão. + Agrupa e conta as variáveis passadas como parâmetro no dataframe. Cria uma + nova coluna de contagem, com o tipo Decimal para possibilitar + redistribuição pro rata posterior e maior precisão. :param dataframe: dataframe pandas - :param group_columns: lista de string contendo o nome das colunas a serem agrupadas no dataframe. + :param group_columns: lista de string contendo o nome das colunas a serem + agrupadas no dataframe. :param count_columns: nome da coluna de counts a ser criada. :return: """ @@ -57,11 +59,13 @@ def redistribute_missing( counts, filter_columns, count_column="COUNTS", nan_string="nan" ): """ - Realiza redistribuição pro rata das contagens do SIM com algum dado faltante. - O dataframe deve conter uma coluna float64 chamada CONTAGEM e as demais colunas devem ser - do tipo category, tendo os dados faltantes em uma categoria definida pelo parâmetro nan_string. + Realiza redistribuição pro rata das contagens do SIM com algum dado + faltante. O dataframe deve conter uma coluna float64 chamada CONTAGEM e as + demais colunas devem ser do tipo category, tendo os dados faltantes em uma + categoria definida pelo parâmetro nan_string. :param counts: dataframe pandas contendo coluna com soma chamada CONTAGEM - :param filter_columns: variáveis a serem consideradas para filtro de redistribuição pro rata + :param filter_columns: variáveis a serem consideradas para filtro de + redistribuição pro rata :param count_columns: nome da coluna de counts. :param nan_string: string usada na categoria de dado faltante :return: @@ -72,7 +76,7 @@ def redistribute_missing( condition_dict = {var: nan_string, count_column: 0.0} counts = counts[~logical_and_from_dict(counts, condition_dict)] - ### Dataframes de dados faltantes + # Dataframes de dados faltantes variables_dict = [{x: nan_string} for x in filter_columns] @@ -119,10 +123,12 @@ def redistribute_cid_chapter( count_columns="COUNTS", ): """ - Realiza redistribuição pro rata das contagens do SIM de um capítulo do CID10 passado. - Por padrão o capítulo XVIII, de causas mal definidas, é redistribuído. + Realiza redistribuição pro rata das contagens do SIM de um capítulo do + CID10 passado. Por padrão o capítulo XVIII, de causas mal definidas, + é redistribuído. :param counts: dataframe pandas contendo coluna com contagem - :param filter_columns: variáveis a serem consideradas para filtro na redistribuição pro rata + :param filter_columns: variáveis a serem consideradas para filtro na + redistribuição pro rata :param chapter: capítulo do CID10 a ser redistribuído :param chapter_column: nome da coluna de capítulo :param count_columns: nome da coluna de counts @@ -140,10 +146,13 @@ def redistribute_rows_pro_rata( counts, filter_columns, redistribute_list, count_columns="COUNTS" ): """ - Redistribui as contagens do dataframe conforme as colunas de filtro passadas. + Redistribui as contagens do dataframe conforme as colunas de filtro + passadas. :param counts: dataframe pandas contendo coluna de contagem - :param filter_columns: variáveis a serem consideradas para filtro na redistribuição pro rata - :param redistribute_list: dataframe contendo as linhas que serão redistribuídas + :param filter_columns: variáveis a serem consideradas para filtro na + redistribuição pro rata + :param redistribute_list: dataframe contendo as linhas que serão + redistribuídas :param count_columns: nome da coluna de counts :return: """ From 49712374fe5afaac868960eb3f0ccbbd0116b2bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 14:47:42 -0300 Subject: [PATCH 7/9] replace mocked tests by endpoint tests --- pysus/Notebooks/.gitkeep | 0 pysus/tests/test_ftp.py | 164 ++++++++++++++++++ pysus/tests/test_ftp/__init__.py | 0 pysus/tests/test_ftp/test_File.py | 61 ------- .../tests/test_ftp/test_databases/__init__.py | 0 .../test_ftp/test_databases/test_CIHA.py | 96 ---------- .../test_ftp/test_databases/test_CNES.py | 96 ---------- .../test_databases/test_IBGEDATASUS.py | 90 ---------- .../tests/test_ftp/test_databases/test_PNI.py | 92 ---------- .../tests/test_ftp/test_databases/test_SIA.py | 96 ---------- .../tests/test_ftp/test_databases/test_SIH.py | 96 ---------- .../tests/test_ftp/test_databases/test_SIM.py | 101 ----------- .../test_ftp/test_databases/test_SINAN.py | 86 --------- .../test_ftp/test_databases/test_SINASC.py | 93 ---------- .../test_ftp/test_databases/test_territory.py | 12 -- 15 files changed, 164 insertions(+), 919 deletions(-) delete mode 100644 pysus/Notebooks/.gitkeep create mode 100644 pysus/tests/test_ftp.py delete mode 100644 pysus/tests/test_ftp/__init__.py delete mode 100644 pysus/tests/test_ftp/test_File.py delete mode 100644 pysus/tests/test_ftp/test_databases/__init__.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_CIHA.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_CNES.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_IBGEDATASUS.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_PNI.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_SIA.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_SIH.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_SIM.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_SINAN.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_SINASC.py delete mode 100644 pysus/tests/test_ftp/test_databases/test_territory.py diff --git a/pysus/Notebooks/.gitkeep b/pysus/Notebooks/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/pysus/tests/test_ftp.py b/pysus/tests/test_ftp.py new file mode 100644 index 0000000..de98cef --- /dev/null +++ b/pysus/tests/test_ftp.py @@ -0,0 +1,164 @@ +import unittest +from pathlib import Path + +import pandas as pd + +from pysus.ftp import File, Directory, Database, CACHE +from pysus.data.local import ParquetSet +from pysus.ftp.databases import ( + ciha, + cnes, + pni, + ibge_datasus, + sinan, + sih, + sinasc, + sia, + sim, +) + + +def _test_file(testcase: unittest.TestCase, file: File): + testcase.assertTrue(isinstance(file, File)) + testcase.assertTrue(set(["size", "type", "modify"]) == set(file.info)) + testcase.assertTrue(bool(file.basename)) + testcase.assertTrue(bool(file.name)) + testcase.assertTrue(bool(file.path)) + testcase.assertTrue(str(Path(file.path).parent) == file.parent_path) + + +def _test_database(testcase: unittest.TestCase, database: Database): + testcase.assertTrue(isinstance(database, Database)) + testcase.assertTrue(bool(database.content)) + testcase.assertTrue( + set(["description", "long_name", "source"]) == set(database.metadata) + ) + + downloaded_file = ( + database.download(database.files[0]) + if database.files[0].extension != ".zip" + else database.download(database.files[-1]) + ) + testcase.assertTrue(isinstance(downloaded_file, ParquetSet)) + testcase.assertTrue(Path(downloaded_file.path).exists()) + testcase.assertTrue( + isinstance(downloaded_file.to_dataframe(), pd.DataFrame) + ) + testcase.assertTrue(not downloaded_file.to_dataframe().empty) + + +class TestDirectoryAndFile(unittest.TestCase): + def setUp(self): + self.root = Directory("/").load() + + def test_root_load(self): + self.assertTrue(self.root.loaded) + self.assertTrue(Directory("/dissemin") in self.root.content) + + def test_root_reload(self): + root = self.root.reload() + self.assertTrue(root.content == self.root.content) + + def test_root_directory(self): + self.assertTrue(self.root.name == "/") + self.assertTrue(self.root.path == "/") + self.assertTrue(self.root.parent == self.root) # outermost parent + + def test_directory_cache(self): + self.assertTrue(CACHE["/"] == self.root) + + def test_sinan_file(self): + file = Directory("/dissemin/publicos/SINAN/DADOS/FINAIS").content[0] + _test_file(self, file) + + +class TestDatabases(unittest.TestCase): + def test_ciha(self): + database = ciha.CIHA().load() + _test_database(self, database) + self.assertTrue(database.name == "CIHA") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'group', 'last_update', 'month', 'name', 'size', 'uf', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 4) + + def test_cnes(self): + database = cnes.CNES().load("DC") + _test_database(self, database) + self.assertTrue(database.name == "CNES") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'group', 'last_update', 'month', 'name', 'size', 'uf', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 4) + + def test_pni(self): + database = pni.PNI().load() + _test_database(self, database) + self.assertTrue(database.name == "PNI") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'group', 'last_update', 'name', 'size', 'uf', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 3) + + def test_ibge_datasus(self): + database = ibge_datasus.IBGEDATASUS().load() + _test_database(self, database) + self.assertTrue(database.name == "IBGE-DataSUS") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'last_update', 'name', 'size', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 1) + + def test_sinan(self): + database = sinan.SINAN().load() + _test_database(self, database) + self.assertTrue(database.name == "SINAN") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'disease', 'last_update', 'name', 'size', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 2) + + def test_sih(self): + database = sih.SIH().load() + _test_database(self, database) + self.assertTrue(database.name == "SIH") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'group', 'last_update', 'month', 'name', 'size', 'uf', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 4) + + def test_sinasc(self): + database = sinasc.SINASC().load() + _test_database(self, database) + self.assertTrue(database.name == "SINASC") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'group', 'last_update', 'name', 'size', 'uf', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 3) + + def test_sia(self): + database = sia.SIA().load() + _test_database(self, database) + self.assertTrue(database.name == "SIA") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'group', 'last_update', 'month', 'name', 'size', 'uf', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 4) + + def test_sim(self): + database = sim.SIM().load() + _test_database(self, database) + self.assertTrue(database.name == "SIM") + self.assertSetEqual( + set(database.describe(database.files[0])), + {'group', 'last_update', 'name', 'size', 'uf', 'year'} + ) + self.assertEqual(len(database.format(database.files[0])), 3) diff --git a/pysus/tests/test_ftp/__init__.py b/pysus/tests/test_ftp/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/pysus/tests/test_ftp/test_File.py b/pysus/tests/test_ftp/test_File.py deleted file mode 100644 index 2586f47..0000000 --- a/pysus/tests/test_ftp/test_File.py +++ /dev/null @@ -1,61 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/12 -by luabida -license: GPL V3 or Later -""" -import datetime -import unittest -from pathlib import Path - -import pandas as pd -from pysus.data.local import ParquetSet -from pysus.ftp import CACHEPATH, File - - -class TestFile(unittest.TestCase): - def setUp(self): - path = "/dissemin/publicos/SIM/CID10/DORES/" - name = "DOAC1996.dbc" - info = { - "size": 76107, - "type": "file", - "modify": datetime.datetime(2020, 1, 31, 14, 48), - } - - self.file = File(path, name, info) - - def test_file_initialization(self): - file = self.file - - expected_path = "/dissemin/publicos/SIM/CID10/DORES/DOAC1996.dbc" - self.assertEqual(file.path, expected_path) - - self.assertEqual(file.name, "DOAC1996") - - self.assertEqual(file.extension, ".dbc") - - self.assertEqual(file.basename, "DOAC1996.dbc") - - expected_info = { - "size": "76.1 kB", - "type": "DBC file", - "modify": "2020-01-31 02:48PM", - } - self.assertEqual(file.info, expected_info) - - def test_file_download(self): - parquet = self.file.download() - - self.assertIsInstance(parquet, ParquetSet) - - self.assertTrue("size" in parquet.info) - - local_cache = Path(CACHEPATH) - expected_local_path = local_cache / "DOAC1996.parquet" - self.assertTrue(expected_local_path.exists()) - self.assertEqual(Path(str(parquet)), expected_local_path) - - df = parquet.to_dataframe() - self.assertIsInstance(df, pd.DataFrame) - self.assertFalse(df.empty) diff --git a/pysus/tests/test_ftp/test_databases/__init__.py b/pysus/tests/test_ftp/test_databases/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/pysus/tests/test_ftp/test_databases/test_CIHA.py b/pysus/tests/test_ftp/test_databases/test_CIHA.py deleted file mode 100644 index 50e5ba8..0000000 --- a/pysus/tests/test_ftp/test_databases/test_CIHA.py +++ /dev/null @@ -1,96 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/12 -by luabida -license: GPL V3 or Later -""" -import datetime -import unittest -from unittest.mock import MagicMock, patch - -from pysus.ftp import File -from pysus.ftp.databases.ciha import CIHA - - -class TestCIHADatabase(unittest.TestCase): - def test_ciha(self): - mock_content = { - "CIHAAC1101.dbc": File( - path="/dissemin/publicos/CIHA/201101_/Dados/CIHAAC1101.dbc", - name="CIHAAC1101.dbc", - info={ - "size": 7803, - "type": "file", - "modify": datetime.datetime(2023, 10, 6, 10, 17), - }, - ), - "CIHAAC1102.dbc": File( - path="/dissemin/publicos/CIHA/201101_/Dados/CIHAAC1102.dbc", - name="CIHAAC1102.dbc", - info={ - "size": 9959, - "type": "file", - "modify": datetime.datetime(2023, 10, 6, 10, 17), - }, - ), - "CIHAAC1103.dbc": File( - path="/dissemin/publicos/CIHA/201101_/Dados/CIHAAC1103.dbc", - name="CIHAAC1103.dbc", - info={ - "size": 8308, - "type": "file", - "modify": datetime.datetime(2023, 10, 6, 10, 17), - }, - ), - } - - with patch( - "pysus.ftp.databases.ciha.CIHA", - return_value=MagicMock(__content__=mock_content), - ) as mock_ciha: - ciha = CIHA() - ciha.__content__ = mock_ciha().__content__ - - descriptions = [ciha.describe(file) for file in ciha.files] - expected_descriptions = [ - { - "name": "CIHAAC1101.dbc", - "group": "Comunicação de Internação Hospitalar e Ambulatorial", - "uf": "Acre", - "month": "Janeiro", - "year": 2011, - "size": "7.8 kB", - "last_update": "2023-10-06 10:17AM", - }, - { - "name": "CIHAAC1102.dbc", - "group": "Comunicação de Internação Hospitalar e Ambulatorial", - "uf": "Acre", - "month": "Fevereiro", - "year": 2011, - "size": "10.0 kB", - "last_update": "2023-10-06 10:17AM", - }, - { - "name": "CIHAAC1103.dbc", - "group": "Comunicação de Internação Hospitalar e Ambulatorial", - "uf": "Acre", - "month": "Março", - "year": 2011, - "size": "8.3 kB", - "last_update": "2023-10-06 10:17AM", - }, - ] - - self.assertEqual(descriptions, expected_descriptions) - - formats = [ciha.format(file) for file in ciha.files] - expected_formats = [ - ("CIHA", "AC", 2011, "01"), - ("CIHA", "AC", 2011, "02"), - ("CIHA", "AC", 2011, "03"), - ] - self.assertEqual(formats, expected_formats) - - get_files = ciha.get_files(uf="AC", year=2011, month=1) - self.assertEqual(get_files, [ciha.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_CNES.py b/pysus/tests/test_ftp/test_databases/test_CNES.py deleted file mode 100644 index c9f921c..0000000 --- a/pysus/tests/test_ftp/test_databases/test_CNES.py +++ /dev/null @@ -1,96 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/12 -by luabida -license: GPL V3 or Later -""" -import datetime -import unittest -from unittest.mock import MagicMock, patch - -from pysus.ftp import File -from pysus.ftp.databases.cnes import CNES - - -class TestCNESDatabase(unittest.TestCase): - def test_cnes(self): - mock_content = { - "STAC0508.dbc": File( - path="/dissemin/publicos/CNES/200508_/Dados/ST/STAC0508.dbc", - name="STAC0508.dbc", - info={ - "size": 18515, - "type": "file", - "modify": datetime.datetime(2014, 6, 5, 9, 30), - }, - ), - "STAC0509.dbc": File( - path="/dissemin/publicos/CNES/200508_/Dados/ST/STAC0509.dbc", - name="STAC0509.dbc", - info={ - "size": 18713, - "type": "file", - "modify": datetime.datetime(2014, 6, 5, 9, 30), - }, - ), - "STAC0510.dbc": File( - path="/dissemin/publicos/CNES/200508_/Dados/ST/STAC0510.dbc", - name="STAC0510.dbc", - info={ - "size": 17665, - "type": "file", - "modify": datetime.datetime(2014, 6, 5, 9, 30), - }, - ), - } - - with patch( - "pysus.ftp.databases.cnes.CNES", - return_value=MagicMock(__content__=mock_content), - ) as mock_cnes: - cnes = CNES().load("ST") - cnes.__content__ = mock_cnes().__content__ - - descriptions = [cnes.describe(file) for file in cnes.files] - expected_descriptions = [ - { - "name": "STAC0508.dbc", - "group": "Estabelecimentos", - "uf": "Acre", - "month": "Agosto", - "year": 2005, - "size": "18.5 kB", - "last_update": "2014-06-05 09:30AM", - }, - { - "name": "STAC0509.dbc", - "group": "Estabelecimentos", - "uf": "Acre", - "month": "Setembro", - "year": 2005, - "size": "18.7 kB", - "last_update": "2014-06-05 09:30AM", - }, - { - "name": "STAC0510.dbc", - "group": "Estabelecimentos", - "uf": "Acre", - "month": "Outubro", - "year": 2005, - "size": "17.7 kB", - "last_update": "2014-06-05 09:30AM", - }, - ] - - self.assertEqual(descriptions, expected_descriptions) - - formats = [cnes.format(file) for file in cnes.files] - expected_formats = [ - ("ST", "AC", 2005, "08"), - ("ST", "AC", 2005, "09"), - ("ST", "AC", 2005, "10"), - ] - self.assertEqual(formats, expected_formats) - - get_files = cnes.get_files(group="ST", uf="AC", year=2005, month=8) - self.assertEqual(get_files, [cnes.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_IBGEDATASUS.py b/pysus/tests/test_ftp/test_databases/test_IBGEDATASUS.py deleted file mode 100644 index 84586ff..0000000 --- a/pysus/tests/test_ftp/test_databases/test_IBGEDATASUS.py +++ /dev/null @@ -1,90 +0,0 @@ -import unittest -from unittest.mock import MagicMock, patch - -from pysus.ftp.databases import ibge_datasus - - -class IBGEDATASUSTests(unittest.TestCase): - @patch("pysus.ftp.databases.ibge_datasus.File") - def test_describe_zip_file(self, mock_file): - mock_file.extension.upper.return_value = ".ZIP" - mock_file.name = "POPTBR12.zip" - mock_file.basename = "POPTBR12.zip" - mock_file.info = {"size": 100, "modify": "2022-01-01"} - - ibge = ibge_datasus.IBGEDATASUS() - result = ibge.describe(mock_file) - - self.assertEqual( - result, - { - "name": "POPTBR12.zip", - "year": 2012, - "size": 100, - "last_update": "2022-01-01", - }, - ) - - # @patch('pysus.ftp.databases.ibge_datasus.File') - # def describe_dbf_file(self, mock_file): - # mock_file.extension.upper.return_value = ".DBF" - # mock_file.name = "file20.dbf" - # mock_file.info = {"size": 100, "modify": "2022-01-01"} - # - # ibge = ibge_datasus.IBGEDATASUS() - # result = ibge.describe(mock_file) - # - # self.assertEqual(result, { - # "name": "file20", - # "year": "2020", - # "size": 100, - # "last_update": "2022-01-01" - # }) - - # @patch('pysus.ftp.databases.ibge_datasus.File') - # def describe_other_file(self, mock_file): - # mock_file.extension.upper.return_value = ".TXT" - # mock_file.name = "file20.txt" - # - # ibge = ibge_datasus.IBGEDATASUS() - # result = ibge.describe(mock_file) - # - # self.assertEqual(result, {}) - - @patch("pysus.ftp.databases.ibge_datasus.File") - def format_file(self, mock_file): - mock_file.name = "file20.zip" - - ibge = ibge_datasus.IBGEDATASUS() - result = ibge.format(mock_file) - - self.assertEqual(result, "20.zip") - - @patch("pysus.ftp.databases.ibge_datasus.File") - @patch("pysus.ftp.databases.ibge_datasus.to_list") - def test_get_files_with_year(self, mock_to_list, mock_file): - mock_file.extension.upper.return_value = ".ZIP" - mock_file.basename = "POPTBR12.zip" - mock_file.name = "POPTBR12" - mock_to_list.return_value = ["2012"] - - ibge = ibge_datasus.IBGEDATASUS() - ibge.__content__ = {"POPTBR12.zip": mock_file} - result = ibge.get_files(year="2012") - - self.assertEqual(result[0].name, mock_file.name) - - @patch("pysus.ftp.databases.ibge_datasus.File") - def get_files_without_year(self, mock_file): - mock_file.extension.upper.return_value = ".ZIP" - mock_file.name = "file20.zip" - - ibge = ibge_datasus.IBGEDATASUS() - ibge.files = [mock_file] - result = ibge.get_files() - - self.assertEqual(result, [mock_file]) - - -if __name__ == "__main__": - unittest.main() diff --git a/pysus/tests/test_ftp/test_databases/test_PNI.py b/pysus/tests/test_ftp/test_databases/test_PNI.py deleted file mode 100644 index 1441e9f..0000000 --- a/pysus/tests/test_ftp/test_databases/test_PNI.py +++ /dev/null @@ -1,92 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/12 -by luabida -license: GPL V3 or Later -""" -import datetime -import unittest -from unittest.mock import MagicMock, patch - -from pysus.ftp import File -from pysus.ftp.databases.pni import PNI - - -class TestPNIDatabase(unittest.TestCase): - def test_pni(self): - mock_content = { - "CPNIAC00.DBF": File( - path="/dissemin/publicos/PNI/DADOS/CPNIAC00.DBF", - name="CPNIAC00.DBF", - info={ - "size": 14843, - "type": "file", - "modify": datetime.datetime(2019, 5, 23, 17, 19), - }, - ), - "CPNIAC01.DBF": File( - path="/dissemin/publicos/PNI/DADOS/CPNIAC01.DBF", - name="CPNIAC01.DBF", - info={ - "size": 14843, - "type": "file", - "modify": datetime.datetime(2019, 5, 23, 16, 39), - }, - ), - "CPNIAC02.DBF": File( - path="/dissemin/publicos/PNI/DADOS/CPNIAC02.DBF", - name="CPNIAC02.DBF", - info={ - "size": 14843, - "type": "file", - "modify": datetime.datetime(2019, 5, 23, 16, 39), - }, - ), - } - - with patch( - "pysus.ftp.databases.pni.PNI", - return_value=MagicMock(__content__=mock_content), - ) as mock_pni: - pni = PNI() - pni.__content__ = mock_pni().__content__ - - descriptions = [pni.describe(file) for file in pni.files] - expected_descriptions = [ - { - "name": "CPNIAC00.DBF", - "group": "Cobertura Vacinal", - "uf": "Acre", - "year": 2000, - "size": "14.8 kB", - "last_update": "2019-05-23 05:19PM", - }, - { - "name": "CPNIAC01.DBF", - "group": "Cobertura Vacinal", - "uf": "Acre", - "year": 2001, - "size": "14.8 kB", - "last_update": "2019-05-23 04:39PM", - }, - { - "name": "CPNIAC02.DBF", - "group": "Cobertura Vacinal", - "uf": "Acre", - "year": 2002, - "size": "14.8 kB", - "last_update": "2019-05-23 04:39PM", - }, - ] - self.assertEqual(descriptions, expected_descriptions) - - formats = [pni.format(file) for file in pni.files] - expected_formats = [ - ("CPNI", "AC", 2000), - ("CPNI", "AC", 2001), - ("CPNI", "AC", 2002), - ] - self.assertEqual(formats, expected_formats) - - get_files = pni.get_files(group="CPNI", uf="AC", year=2000) - self.assertEqual(get_files, [pni.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SIA.py b/pysus/tests/test_ftp/test_databases/test_SIA.py deleted file mode 100644 index acd5ab7..0000000 --- a/pysus/tests/test_ftp/test_databases/test_SIA.py +++ /dev/null @@ -1,96 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/11 -by luabida -license: GPL V3 or Later -""" -import datetime -import unittest -from unittest.mock import MagicMock, patch - -from pysus.ftp import File -from pysus.ftp.databases.sia import SIA - - -class TestSIADatabase(unittest.TestCase): - def test_sia(self): - mock_content = { - "ABDF1112.dbc": File( - path="/dissemin/publicos/SIASUS/200801_/Dados/ABDF1112.dbc", - name="ABDF1112.dbc", - info={ - "size": 2971, - "type": "file", - "modify": datetime.datetime(2019, 3, 12, 12, 3), - }, - ), - "ABMG1112.dbc": File( - path="/dissemin/publicos/SIASUS/200801_/Dados/ABMG1112.dbc", - name="ABMG1112.dbc", - info={ - "size": 3183, - "type": "file", - "modify": datetime.datetime(2019, 3, 12, 12, 3), - }, - ), - "ABOAC1502.dbc": File( - path="/dissemin/publicos/SIASUS/200801_/Dados/ABOAC1502.dbc", - name="ABOAC1502.dbc", - info={ - "size": 3143, - "type": "file", - "modify": datetime.datetime(2016, 9, 12, 8, 45), - }, - ), - } - - with patch( - "pysus.ftp.databases.sia.SIA", - return_value=MagicMock(__content__=mock_content), - ) as mock_sia: - sia = SIA() - sia.__content__ = mock_sia().__content__ - - descriptions = [sia.describe(file) for file in sia.files] - expected_descriptions = [ - { - "name": "ABDF1112.dbc", - "group": "APAC de Cirurgia Bariátrica", - "uf": "Distrito Federal", - "month": "Dezembro", - "year": 2011, - "size": "3.0 kB", - "last_update": "2019-03-12 12:03PM", - }, - { - "name": "ABMG1112.dbc", - "group": "APAC de Cirurgia Bariátrica", - "uf": "Minas Gerais", - "month": "Dezembro", - "year": 2011, - "size": "3.2 kB", - "last_update": "2019-03-12 12:03PM", - }, - { - "name": "ABOAC1502.dbc", - "group": "APAC de Acompanhamento Pós Cirurgia Bariátrica", - "uf": "Acre", - "month": "Fevereiro", - "year": 2015, - "size": "3.1 kB", - "last_update": "2016-09-12 08:45AM", - }, - ] - - self.assertEqual(descriptions, expected_descriptions) - - formats = [sia.format(file) for file in sia.files] - expected_formats = [ - ("AB", "DF", 2011, "12"), - ("AB", "MG", 2011, "12"), - ("ABO", "AC", 2015, "02"), - ] - self.assertEqual(formats, expected_formats) - - get_files = sia.get_files(group="AB", uf="DF", year=2011, month=12) - self.assertEqual(get_files, [sia.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SIH.py b/pysus/tests/test_ftp/test_databases/test_SIH.py deleted file mode 100644 index 045dcaa..0000000 --- a/pysus/tests/test_ftp/test_databases/test_SIH.py +++ /dev/null @@ -1,96 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/11 -by luabida -license: GPL V3 or Later -""" -import datetime -import unittest -from unittest.mock import MagicMock, patch - -from pysus.ftp import File -from pysus.ftp.databases.sih import SIH - - -class TestSIHDatabase(unittest.TestCase): - def test_sih(self): - mock_content = { - "CHBR1901.dbc": File( - path="/dissemin/publicos/SIHSUS/200801_/Dados/CHBR1901.dbc", - name="CHBR1901.dbc", - info={ - "size": 196476, - "type": "file", - "modify": datetime.datetime(2020, 3, 10, 14, 43), - }, - ), - "CHBR1902.dbc": File( - path="/dissemin/publicos/SIHSUS/200801_/Dados/CHBR1902.dbc", - name="CHBR1902.dbc", - info={ - "size": 196287, - "type": "file", - "modify": datetime.datetime(2020, 3, 10, 14, 43), - }, - ), - "CHBR1903.dbc": File( - path="/dissemin/publicos/SIHSUS/200801_/Dados/CHBR1903.dbc", - name="CHBR1903.dbc", - info={ - "size": 196081, - "type": "file", - "modify": datetime.datetime(2020, 3, 10, 14, 43), - }, - ), - } - - with patch( - "pysus.ftp.databases.sih.SIH", - return_value=MagicMock(__content__=mock_content), - ) as mock_sih: - sih = SIH() - sih.__content__ = mock_sih().__content__ - - descriptions = [sih.describe(file) for file in sih.files] - expected_descriptions = [ - { - "name": "CHBR1901.dbc", - "group": "Cadastro Hospitalar", - "uf": "Brasil", - "month": "Janeiro", - "year": 2019, - "size": "196.5 kB", - "last_update": "2020-03-10 02:43PM", - }, - { - "name": "CHBR1902.dbc", - "group": "Cadastro Hospitalar", - "uf": "Brasil", - "month": "Fevereiro", - "year": 2019, - "size": "196.3 kB", - "last_update": "2020-03-10 02:43PM", - }, - { - "name": "CHBR1903.dbc", - "group": "Cadastro Hospitalar", - "uf": "Brasil", - "month": "Março", - "year": 2019, - "size": "196.1 kB", - "last_update": "2020-03-10 02:43PM", - }, - ] - - self.assertEqual(descriptions, expected_descriptions) - - formats = [sih.format(file) for file in sih.files] - expected_formats = [ - ("CH", "BR", 2019, "01"), - ("CH", "BR", 2019, "02"), - ("CH", "BR", 2019, "03"), - ] - self.assertEqual(formats, expected_formats) - - get_files = sih.get_files(group="CH", uf="BR", year=2019, month=1) - self.assertEqual(get_files, [sih.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SIM.py b/pysus/tests/test_ftp/test_databases/test_SIM.py deleted file mode 100644 index 71c0cfa..0000000 --- a/pysus/tests/test_ftp/test_databases/test_SIM.py +++ /dev/null @@ -1,101 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/11 -by luabida -license: GPL V3 or Later -""" -import unittest -from datetime import datetime -from unittest.mock import MagicMock, patch - -from pysus.ftp import File -from pysus.ftp.databases.sim import SIM - - -class TestSIMDatabase(unittest.TestCase): - def test_sim(self): - date_format = "%Y-%m-%d %I:%M%p" - - mock_content = { - "DOAC1996.dbc": File( - path="/dissemin/publicos/SIM/CID10/DORES/DOAC1996.dbc", - name="DOAC1996.dbc", - info={ - "size": 78054.4, - "type": "DBC file", - "modify": datetime.strptime( - "2020-01-31 02:48PM", date_format - ), - }, - ), - "DOAC1997.dbc": File( - path="/dissemin/publicos/SIM/CID10/DORES/DOAC1997.dbc", - name="DOAC1997.dbc", - info={ - "size": 79084.8, - "type": "DBC file", - "modify": datetime.strptime( - "2020-01-31 02:48PM", date_format - ), - }, - ), - "DOAC1998.dbc": File( - path="/dissemin/publicos/SIM/CID10/DORES/DOAC1998.dbc", - name="DOAC1998.dbc", - info={ - "size": 79084.8, - "type": "DBC file", - "modify": datetime.strptime( - "2020-01-31 02:48PM", date_format - ), - }, - ), - } - - with patch( - "pysus.ftp.databases.sim.SIM", - return_value=MagicMock(__content__=mock_content), - ) as mock_sim: - sim = SIM() - sim.__content__ = mock_sim().__content__ - - descriptions = [sim.describe(file) for file in sim.files] - expected_descriptions = [ - { - "name": "DOAC1996.dbc", - "uf": "Acre", - "year": 1996, - "group": "CID10", - "size": "78.1 kB", - "last_update": "2020-01-31 02:48PM", - }, - { - "name": "DOAC1997.dbc", - "uf": "Acre", - "year": 1997, - "group": "CID10", - "size": "79.1 kB", - "last_update": "2020-01-31 02:48PM", - }, - { - "name": "DOAC1998.dbc", - "uf": "Acre", - "year": 1998, - "group": "CID10", - "size": "79.1 kB", - "last_update": "2020-01-31 02:48PM", - }, - ] - - self.assertEqual(descriptions, expected_descriptions) - - formats = [sim.format(file) for file in sim.files] - expected_formats = [ - ("DO", "AC", 1996), - ("DO", "AC", 1997), - ("DO", "AC", 1998), - ] - self.assertEqual(formats, expected_formats) - - get_files = sim.get_files(group="CID10", uf="AC", year="1996") - self.assertEqual(get_files, [sim.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SINAN.py b/pysus/tests/test_ftp/test_databases/test_SINAN.py deleted file mode 100644 index a3819b3..0000000 --- a/pysus/tests/test_ftp/test_databases/test_SINAN.py +++ /dev/null @@ -1,86 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/12 -by luabida -license: GPL V3 or Later -""" -import datetime -import unittest -from unittest.mock import MagicMock, patch - -from pysus.ftp import File -from pysus.ftp.databases.sinan import SINAN - - -class TestSINANDatabase(unittest.TestCase): - def test_sinan(self): - mock_content = { - "ACBIBR06.dbc": File( - path="/dissemin/publicos/SINAN/DADOS/FINAIS/ACBIBR06.dbc", - name="ACBIBR06.dbc", - info={ - "size": 28326, - "type": "file", - "modify": datetime.datetime(2023, 1, 16, 14, 15), - }, - ), - "ACBIBR07.dbc": File( - path="/dissemin/publicos/SINAN/DADOS/FINAIS/ACBIBR07.dbc", - name="ACBIBR07.dbc", - info={ - "size": 673314, - "type": "file", - "modify": datetime.datetime(2023, 1, 16, 14, 15), - }, - ), - "ACBIBR08.dbc": File( - path="/dissemin/publicos/SINAN/DADOS/FINAIS/ACBIBR08.dbc", - name="ACBIBR08.dbc", - info={ - "size": 1048406, - "type": "file", - "modify": datetime.datetime(2023, 1, 16, 14, 15), - }, - ), - } - - with patch( - "pysus.ftp.databases.sinan.SINAN", - return_value=MagicMock(__content__=mock_content), - ) as mock_sinan: - sinan = SINAN() - sinan.__content__ = mock_sinan().__content__ - - descriptions = [sinan.describe(file) for file in sinan.files] - expected_descriptions = [ - { - "name": "ACBIBR06.dbc", - "disease": "Acidente de trabalho com material biológico", - "year": 2006, - "size": "28.3 kB", - "last_update": "2023-01-16 02:15PM", - }, - { - "name": "ACBIBR07.dbc", - "disease": "Acidente de trabalho com material biológico", - "year": 2007, - "size": "673.3 kB", - "last_update": "2023-01-16 02:15PM", - }, - { - "name": "ACBIBR08.dbc", - "disease": "Acidente de trabalho com material biológico", - "year": 2008, - "size": "1.0 MB", - "last_update": "2023-01-16 02:15PM", - }, - ] - - self.assertEqual(descriptions, expected_descriptions) - - formats = [sinan.format(file) for file in sinan.files] - expected_formats = [("ACBI", 2006), ("ACBI", 2007), ("ACBI", 2008)] - self.assertEqual(formats, expected_formats) - - get_files = sinan.get_files(dis_code="ACBI", year=2006) - self.assertEqual(get_files, [sinan.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_SINASC.py b/pysus/tests/test_ftp/test_databases/test_SINASC.py deleted file mode 100644 index 727122f..0000000 --- a/pysus/tests/test_ftp/test_databases/test_SINASC.py +++ /dev/null @@ -1,93 +0,0 @@ -# -*- coding:utf-8 -*- -""" -Created on 2023/12/12 -by luabida -license: GPL V3 or Later -""" -import datetime -import unittest -from unittest.mock import MagicMock, patch - -from pysus.ftp import File -from pysus.ftp.databases.sinasc import SINASC - - -class TestSINASCDatabase(unittest.TestCase): - def test_sinasc(self): - mock_content = { - "DNAC1996.DBC": File( - path="/dissemin/publicos/SINASC/NOV/DNRES/DNAC1996.DBC", - name="DNAC1996.DBC", - info={ - "size": 247527, - "type": "file", - "modify": datetime.datetime(2020, 1, 27, 12, 5), - }, - ), - "DNAC1997.DBC": File( - path="/dissemin/publicos/SINASC/NOV/DNRES/DNAC1997.DBC", - name="DNAC1997.DBC", - info={ - "size": 266815, - "type": "file", - "modify": datetime.datetime(2020, 1, 27, 12, 5), - }, - ), - "DNAC1998.DBC": File( - path="/dissemin/publicos/SINASC/NOV/DNRES/DNAC1998.DBC", - name="DNAC1998.DBC", - info={ - "size": 242404, - "type": "file", - "modify": datetime.datetime(2020, 1, 27, 12, 5), - }, - ), - } - - with patch( - "pysus.ftp.databases.sinasc.SINASC", - return_value=MagicMock(__content__=mock_content), - ) as mock_sinasc: - sinasc = SINASC() - sinasc.__content__ = mock_sinasc().__content__ - - descriptions = [sinasc.describe(file) for file in sinasc.files] - expected_descriptions = [ - { - "name": "DNAC1996.DBC", - "group": "Declarações de Nascidos Vivos", - "uf": "Acre", - "year": 1996, - "size": "247.5 kB", - "last_update": "2020-01-27 12:05PM", - }, - { - "name": "DNAC1997.DBC", - "group": "Declarações de Nascidos Vivos", - "uf": "Acre", - "year": 1997, - "size": "266.8 kB", - "last_update": "2020-01-27 12:05PM", - }, - { - "name": "DNAC1998.DBC", - "group": "Declarações de Nascidos Vivos", - "uf": "Acre", - "year": 1998, - "size": "242.4 kB", - "last_update": "2020-01-27 12:05PM", - }, - ] - - self.assertEqual(descriptions, expected_descriptions) - - formats = [sinasc.format(file) for file in sinasc.files] - expected_formats = [ - ("DN", "AC", 1996), - ("DN", "AC", 1997), - ("DN", "AC", 1998), - ] - self.assertEqual(formats, expected_formats) - - get_files = sinasc.get_files(group="DN", uf="AC", year=1996) - self.assertEqual(get_files, [sinasc.files[0]]) diff --git a/pysus/tests/test_ftp/test_databases/test_territory.py b/pysus/tests/test_ftp/test_databases/test_territory.py deleted file mode 100644 index d64494c..0000000 --- a/pysus/tests/test_ftp/test_databases/test_territory.py +++ /dev/null @@ -1,12 +0,0 @@ -import unittest - -from pysus.ftp.databases.territory import Territory -from pysus.online_data import territory - - -class TestTerritory(unittest.TestCase): - def test_load_database(self): - T = Territory().load() - - def test_download(self): - territory.download("todos_mapas_2013.zip") From 3df93af7a68d47e41a044606048b1de7d1f9bf96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 14:57:00 -0300 Subject: [PATCH 8/9] remove compose-go --- poetry.lock | 985 ++++++++++++++++++++++++------------------------- pyproject.toml | 2 - 2 files changed, 480 insertions(+), 507 deletions(-) diff --git a/poetry.lock b/poetry.lock index 7145797..5942b20 100644 --- a/poetry.lock +++ b/poetry.lock @@ -273,21 +273,20 @@ uvloop = ["uvloop (>=0.15.2)"] [[package]] name = "bleach" -version = "6.1.0" +version = "6.2.0" description = "An easy safelist-based HTML-sanitizing tool." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "bleach-6.1.0-py3-none-any.whl", hash = "sha256:3225f354cfc436b9789c66c4ee030194bee0568fbf9cbdad3bc8b5c26c5f12b6"}, - {file = "bleach-6.1.0.tar.gz", hash = "sha256:0a31f1837963c41d46bbf1331b8778e1308ea0791db03cc4e7357b97cf42a8fe"}, + {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"}, + {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"}, ] [package.dependencies] -six = ">=1.9.0" webencodings = "*" [package.extras] -css = ["tinycss2 (>=1.1.0,<1.3)"] +css = ["tinycss2 (>=1.1.0,<1.5)"] [[package]] name = "branca" @@ -557,90 +556,67 @@ traitlets = ">=4" [package.extras] test = ["pytest"] -[[package]] -name = "compose-go" -version = "2.29.7" -description = "Docker Compose v2 (GoLang) wrapped in a Python Package" -optional = false -python-versions = "<4.0.0,>=3.7.0" -files = [ - {file = "compose_go-2.29.7-cp312-cp312-manylinux_2_35_x86_64.whl", hash = "sha256:57d530bd9cb473524e968ed655eca531c137c2d41b7bb2e133d1a093b380b025"}, - {file = "compose_go-2.29.7-cp313-cp313-manylinux_2_35_x86_64.whl", hash = "sha256:5f12a550b36a73f9ded81e8b23a4779e99ebc984028ea929541316dddd48c43d"}, - {file = "compose_go-2.29.7.tar.gz", hash = "sha256:6abf27e0869e7386f76cb79094164aa7010b606f26d8e09695aabeb472b289dc"}, -] - [[package]] name = "contourpy" -version = "1.3.0" +version = "1.3.1" description = "Python library for calculating contours of 2D quadrilateral grids" optional = false -python-versions = ">=3.9" +python-versions = ">=3.10" files = [ - {file = "contourpy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7"}, - {file = "contourpy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42"}, - {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7"}, - {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab"}, - {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589"}, - {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41"}, - {file = "contourpy-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d"}, - {file = "contourpy-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223"}, - {file = "contourpy-1.3.0-cp310-cp310-win32.whl", hash = "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f"}, - {file = "contourpy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b"}, - {file = "contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad"}, - {file = "contourpy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49"}, - {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66"}, - {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081"}, - {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1"}, - {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d"}, - {file = "contourpy-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c"}, - {file = "contourpy-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb"}, - {file = "contourpy-1.3.0-cp311-cp311-win32.whl", hash = "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c"}, - {file = "contourpy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67"}, - {file = "contourpy-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f"}, - {file = "contourpy-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6"}, - {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639"}, - {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c"}, - {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06"}, - {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09"}, - {file = "contourpy-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd"}, - {file = "contourpy-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35"}, - {file = "contourpy-1.3.0-cp312-cp312-win32.whl", hash = "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb"}, - {file = "contourpy-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b"}, - {file = "contourpy-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3"}, - {file = "contourpy-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7"}, - {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84"}, - {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0"}, - {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b"}, - {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da"}, - {file = "contourpy-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14"}, - {file = "contourpy-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8"}, - {file = "contourpy-1.3.0-cp313-cp313-win32.whl", hash = "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294"}, - {file = "contourpy-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087"}, - {file = "contourpy-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8"}, - {file = "contourpy-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b"}, - {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973"}, - {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18"}, - {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8"}, - {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6"}, - {file = "contourpy-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2"}, - {file = "contourpy-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927"}, - {file = "contourpy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8"}, - {file = "contourpy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c"}, - {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca"}, - {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f"}, - {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc"}, - {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2"}, - {file = "contourpy-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e"}, - {file = "contourpy-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800"}, - {file = "contourpy-1.3.0-cp39-cp39-win32.whl", hash = "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5"}, - {file = "contourpy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843"}, - {file = "contourpy-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c"}, - {file = "contourpy-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779"}, - {file = "contourpy-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4"}, - {file = "contourpy-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0"}, - {file = "contourpy-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102"}, - {file = "contourpy-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb"}, - {file = "contourpy-1.3.0.tar.gz", hash = "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4"}, + {file = "contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab"}, + {file = "contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2f926efda994cdf3c8d3fdb40b9962f86edbc4457e739277b961eced3d0b4c1"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adce39d67c0edf383647a3a007de0a45fd1b08dedaa5318404f1a73059c2512b"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abbb49fb7dac584e5abc6636b7b2a7227111c4f771005853e7d25176daaf8453"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0cffcbede75c059f535725c1680dfb17b6ba8753f0c74b14e6a9c68c29d7ea3"}, + {file = "contourpy-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab29962927945d89d9b293eabd0d59aea28d887d4f3be6c22deaefbb938a7277"}, + {file = "contourpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974d8145f8ca354498005b5b981165b74a195abfae9a8129df3e56771961d595"}, + {file = "contourpy-1.3.1-cp310-cp310-win32.whl", hash = "sha256:ac4578ac281983f63b400f7fe6c101bedc10651650eef012be1ccffcbacf3697"}, + {file = "contourpy-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:174e758c66bbc1c8576992cec9599ce8b6672b741b5d336b5c74e35ac382b18e"}, + {file = "contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b"}, + {file = "contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c"}, + {file = "contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291"}, + {file = "contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f"}, + {file = "contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375"}, + {file = "contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9"}, + {file = "contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ffa84be8e0bd33410b17189f7164c3589c229ce5db85798076a3fa136d0e509"}, + {file = "contourpy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805617228ba7e2cbbfb6c503858e626ab528ac2a32a04a2fe88ffaf6b02c32bc"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade08d343436a94e633db932e7e8407fe7de8083967962b46bdfc1b0ced39454"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47734d7073fb4590b4a40122b35917cd77be5722d80683b249dac1de266aac80"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ba94a401342fc0f8b948e57d977557fbf4d515f03c67682dd5c6191cb2d16ec"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efa874e87e4a647fd2e4f514d5e91c7d493697127beb95e77d2f7561f6905bd9"}, + {file = "contourpy-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf98051f1045b15c87868dbaea84f92408337d4f81d0e449ee41920ea121d3b"}, + {file = "contourpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61332c87493b00091423e747ea78200659dc09bdf7fd69edd5e98cef5d3e9a8d"}, + {file = "contourpy-1.3.1-cp312-cp312-win32.whl", hash = "sha256:e914a8cb05ce5c809dd0fe350cfbb4e881bde5e2a38dc04e3afe1b3e58bd158e"}, + {file = "contourpy-1.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:08d9d449a61cf53033612cb368f3a1b26cd7835d9b8cd326647efe43bca7568d"}, + {file = "contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2"}, + {file = "contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c"}, + {file = "contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3"}, + {file = "contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1"}, + {file = "contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82"}, + {file = "contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd"}, + {file = "contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30"}, + {file = "contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda"}, + {file = "contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242"}, + {file = "contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1"}, + {file = "contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1"}, + {file = "contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b457d6430833cee8e4b8e9b6f07aa1c161e5e0d52e118dc102c8f9bd7dd060d6"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb76c1a154b83991a3cbbf0dfeb26ec2833ad56f95540b442c73950af2013750"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:44a29502ca9c7b5ba389e620d44f2fbe792b1fb5734e8b931ad307071ec58c53"}, + {file = "contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699"}, ] [package.dependencies] @@ -805,37 +781,37 @@ files = [ [[package]] name = "debugpy" -version = "1.8.7" +version = "1.8.9" description = "An implementation of the Debug Adapter Protocol for Python" optional = false python-versions = ">=3.8" files = [ - {file = "debugpy-1.8.7-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:95fe04a573b8b22896c404365e03f4eda0ce0ba135b7667a1e57bd079793b96b"}, - {file = "debugpy-1.8.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:628a11f4b295ffb4141d8242a9bb52b77ad4a63a2ad19217a93be0f77f2c28c9"}, - {file = "debugpy-1.8.7-cp310-cp310-win32.whl", hash = "sha256:85ce9c1d0eebf622f86cc68618ad64bf66c4fc3197d88f74bb695a416837dd55"}, - {file = "debugpy-1.8.7-cp310-cp310-win_amd64.whl", hash = "sha256:29e1571c276d643757ea126d014abda081eb5ea4c851628b33de0c2b6245b037"}, - {file = "debugpy-1.8.7-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:caf528ff9e7308b74a1749c183d6808ffbedbb9fb6af78b033c28974d9b8831f"}, - {file = "debugpy-1.8.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cba1d078cf2e1e0b8402e6bda528bf8fda7ccd158c3dba6c012b7897747c41a0"}, - {file = "debugpy-1.8.7-cp311-cp311-win32.whl", hash = "sha256:171899588bcd412151e593bd40d9907133a7622cd6ecdbdb75f89d1551df13c2"}, - {file = "debugpy-1.8.7-cp311-cp311-win_amd64.whl", hash = "sha256:6e1c4ffb0c79f66e89dfd97944f335880f0d50ad29525dc792785384923e2211"}, - {file = "debugpy-1.8.7-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:4d27d842311353ede0ad572600c62e4bcd74f458ee01ab0dd3a1a4457e7e3706"}, - {file = "debugpy-1.8.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:703c1fd62ae0356e194f3e7b7a92acd931f71fe81c4b3be2c17a7b8a4b546ec2"}, - {file = "debugpy-1.8.7-cp312-cp312-win32.whl", hash = "sha256:2f729228430ef191c1e4df72a75ac94e9bf77413ce5f3f900018712c9da0aaca"}, - {file = "debugpy-1.8.7-cp312-cp312-win_amd64.whl", hash = "sha256:45c30aaefb3e1975e8a0258f5bbd26cd40cde9bfe71e9e5a7ac82e79bad64e39"}, - {file = "debugpy-1.8.7-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:d050a1ec7e925f514f0f6594a1e522580317da31fbda1af71d1530d6ea1f2b40"}, - {file = "debugpy-1.8.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2f4349a28e3228a42958f8ddaa6333d6f8282d5edaea456070e48609c5983b7"}, - {file = "debugpy-1.8.7-cp313-cp313-win32.whl", hash = "sha256:11ad72eb9ddb436afb8337891a986302e14944f0f755fd94e90d0d71e9100bba"}, - {file = "debugpy-1.8.7-cp313-cp313-win_amd64.whl", hash = "sha256:2efb84d6789352d7950b03d7f866e6d180284bc02c7e12cb37b489b7083d81aa"}, - {file = "debugpy-1.8.7-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:4b908291a1d051ef3331484de8e959ef3e66f12b5e610c203b5b75d2725613a7"}, - {file = "debugpy-1.8.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da8df5b89a41f1fd31503b179d0a84a5fdb752dddd5b5388dbd1ae23cda31ce9"}, - {file = "debugpy-1.8.7-cp38-cp38-win32.whl", hash = "sha256:b12515e04720e9e5c2216cc7086d0edadf25d7ab7e3564ec8b4521cf111b4f8c"}, - {file = "debugpy-1.8.7-cp38-cp38-win_amd64.whl", hash = "sha256:93176e7672551cb5281577cdb62c63aadc87ec036f0c6a486f0ded337c504596"}, - {file = "debugpy-1.8.7-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:90d93e4f2db442f8222dec5ec55ccfc8005821028982f1968ebf551d32b28907"}, - {file = "debugpy-1.8.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6db2a370e2700557a976eaadb16243ec9c91bd46f1b3bb15376d7aaa7632c81"}, - {file = "debugpy-1.8.7-cp39-cp39-win32.whl", hash = "sha256:a6cf2510740e0c0b4a40330640e4b454f928c7b99b0c9dbf48b11efba08a8cda"}, - {file = "debugpy-1.8.7-cp39-cp39-win_amd64.whl", hash = "sha256:6a9d9d6d31846d8e34f52987ee0f1a904c7baa4912bf4843ab39dadf9b8f3e0d"}, - {file = "debugpy-1.8.7-py2.py3-none-any.whl", hash = "sha256:57b00de1c8d2c84a61b90880f7e5b6deaf4c312ecbde3a0e8912f2a56c4ac9ae"}, - {file = "debugpy-1.8.7.zip", hash = "sha256:18b8f731ed3e2e1df8e9cdaa23fb1fc9c24e570cd0081625308ec51c82efe42e"}, + {file = "debugpy-1.8.9-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:cfe1e6c6ad7178265f74981edf1154ffce97b69005212fbc90ca22ddfe3d017e"}, + {file = "debugpy-1.8.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ada7fb65102a4d2c9ab62e8908e9e9f12aed9d76ef44880367bc9308ebe49a0f"}, + {file = "debugpy-1.8.9-cp310-cp310-win32.whl", hash = "sha256:c36856343cbaa448171cba62a721531e10e7ffb0abff838004701454149bc037"}, + {file = "debugpy-1.8.9-cp310-cp310-win_amd64.whl", hash = "sha256:17c5e0297678442511cf00a745c9709e928ea4ca263d764e90d233208889a19e"}, + {file = "debugpy-1.8.9-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:b74a49753e21e33e7cf030883a92fa607bddc4ede1aa4145172debc637780040"}, + {file = "debugpy-1.8.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62d22dacdb0e296966d7d74a7141aaab4bec123fa43d1a35ddcb39bf9fd29d70"}, + {file = "debugpy-1.8.9-cp311-cp311-win32.whl", hash = "sha256:8138efff315cd09b8dcd14226a21afda4ca582284bf4215126d87342bba1cc66"}, + {file = "debugpy-1.8.9-cp311-cp311-win_amd64.whl", hash = "sha256:ff54ef77ad9f5c425398efb150239f6fe8e20c53ae2f68367eba7ece1e96226d"}, + {file = "debugpy-1.8.9-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:957363d9a7a6612a37458d9a15e72d03a635047f946e5fceee74b50d52a9c8e2"}, + {file = "debugpy-1.8.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e565fc54b680292b418bb809f1386f17081d1346dca9a871bf69a8ac4071afe"}, + {file = "debugpy-1.8.9-cp312-cp312-win32.whl", hash = "sha256:3e59842d6c4569c65ceb3751075ff8d7e6a6ada209ceca6308c9bde932bcef11"}, + {file = "debugpy-1.8.9-cp312-cp312-win_amd64.whl", hash = "sha256:66eeae42f3137eb428ea3a86d4a55f28da9bd5a4a3d369ba95ecc3a92c1bba53"}, + {file = "debugpy-1.8.9-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:957ecffff80d47cafa9b6545de9e016ae8c9547c98a538ee96ab5947115fb3dd"}, + {file = "debugpy-1.8.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1efbb3ff61487e2c16b3e033bc8595aea578222c08aaf3c4bf0f93fadbd662ee"}, + {file = "debugpy-1.8.9-cp313-cp313-win32.whl", hash = "sha256:7c4d65d03bee875bcb211c76c1d8f10f600c305dbd734beaed4077e902606fee"}, + {file = "debugpy-1.8.9-cp313-cp313-win_amd64.whl", hash = "sha256:e46b420dc1bea64e5bbedd678148be512442bc589b0111bd799367cde051e71a"}, + {file = "debugpy-1.8.9-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:472a3994999fe6c0756945ffa359e9e7e2d690fb55d251639d07208dbc37caea"}, + {file = "debugpy-1.8.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:365e556a4772d7d0d151d7eb0e77ec4db03bcd95f26b67b15742b88cacff88e9"}, + {file = "debugpy-1.8.9-cp38-cp38-win32.whl", hash = "sha256:54a7e6d3014c408eb37b0b06021366ee985f1539e12fe49ca2ee0d392d9ceca5"}, + {file = "debugpy-1.8.9-cp38-cp38-win_amd64.whl", hash = "sha256:8e99c0b1cc7bf86d83fb95d5ccdc4ad0586d4432d489d1f54e4055bcc795f693"}, + {file = "debugpy-1.8.9-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:7e8b079323a56f719977fde9d8115590cb5e7a1cba2fcee0986ef8817116e7c1"}, + {file = "debugpy-1.8.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6953b335b804a41f16a192fa2e7851bdcfd92173cbb2f9f777bb934f49baab65"}, + {file = "debugpy-1.8.9-cp39-cp39-win32.whl", hash = "sha256:7e646e62d4602bb8956db88b1e72fe63172148c1e25c041e03b103a25f36673c"}, + {file = "debugpy-1.8.9-cp39-cp39-win_amd64.whl", hash = "sha256:3d9755e77a2d680ce3d2c5394a444cf42be4a592caaf246dbfbdd100ffcf7ae5"}, + {file = "debugpy-1.8.9-py2.py3-none-any.whl", hash = "sha256:cc37a6c9987ad743d9c3a14fa1b1a14b7e4e6041f9dd0c8abf8895fe7a97b899"}, + {file = "debugpy-1.8.9.zip", hash = "sha256:1339e14c7d980407248f09824d1b25ff5c5616651689f1e0f0e51bdead3ea13e"}, ] [[package]] @@ -962,43 +938,51 @@ devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benc [[package]] name = "fastparquet" -version = "2024.5.0" +version = "2024.11.0" description = "Python support for Parquet file format" optional = false python-versions = ">=3.9" files = [ - {file = "fastparquet-2024.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:9dfbed87b4b58b0794b2cb3aa4abcb43fc01480a10c7779a323d2dd1599f6acd"}, - {file = "fastparquet-2024.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07fc5a45450a39cd07c6ef0e0219ac4b1879f8b27c825ee4ba5d87a3ae505f11"}, - {file = "fastparquet-2024.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a2045c21f90358541286f26f0735bfb2265b075413fbced3b876fc8848eda52"}, - {file = "fastparquet-2024.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f411056152b5d3cc82b6624d9da80535d10d9277d921fdb2e9516e93c8c227e8"}, - {file = "fastparquet-2024.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc99d7c0f1816394d53aadd47919bba70bb81355259d8788d28e35913816aee0"}, - {file = "fastparquet-2024.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:42149929b71d9122bd501aa695681f40a04a9fa3f5b802cf0fb6aa4e95ccf2dd"}, - {file = "fastparquet-2024.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e5b1ed889f4ac7ea059ff95f4a01f5c07c825c50c2e1bc9e2b64c814df94c243"}, - {file = "fastparquet-2024.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:f5c3cabcfa2f534e4b23343c1ab84c37d336da73770005e608d1894ab1084600"}, - {file = "fastparquet-2024.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:56d03b0a291d6a575ab365516c53b4da8e040347f8d43af79be25893c591b38c"}, - {file = "fastparquet-2024.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:784989ee2c251960b8f00dc38c6c730f784712c8e3d08cc7e0ce842055476af1"}, - {file = "fastparquet-2024.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d20bba5c39139a88d8d6931764b830ba14042742d802238d9edf86d4d765ad7a"}, - {file = "fastparquet-2024.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08358d99278c5d3fb523d819fff5c74d572d8f67ebbe2215a2c7bfca7e3664cf"}, - {file = "fastparquet-2024.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e9de270e17a6ae2f02c716421d60e18d35d4718037f561b3e359989db19f700a"}, - {file = "fastparquet-2024.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ba251231b005c0f3f7e56f6e9cd1939be99b2d810ab5b05039271e260c0196c6"}, - {file = "fastparquet-2024.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1496d83d7a77c19abae796e3b582539884fc893d75a3ad4f90df12f8f23a902a"}, - {file = "fastparquet-2024.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:ea3796c4a38ef8b372a3056b5cef52ca8182fa554fa51c7637c2421e69ee56e5"}, - {file = "fastparquet-2024.5.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e1fa068ef1826bff6d4a9106a6f9e9d6fd20b8b516da4b82d87840cb5fd3947c"}, - {file = "fastparquet-2024.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3a60f7b0b308d6b9f12c642cf5237a05d754926fb31ce865ff7072bceab19fbb"}, - {file = "fastparquet-2024.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e6ac308a2f391ce589c99b8376e7cdfe4241ef5770ac4cf4c1c93f940bda83c"}, - {file = "fastparquet-2024.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b3cf7b4eb1b06e87b97a3a5c9124e4b1c08a8903ba017052c5fe2c482414a3d"}, - {file = "fastparquet-2024.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5626fc72204001b7e82fedb4b02174ecb4e2d4143b38b4ea8d2f9eb65f6b000e"}, - {file = "fastparquet-2024.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c8b2e86fe6488cce0e3d41263bb0296ef9bbb875a2fca09d67d7685640017a66"}, - {file = "fastparquet-2024.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2a951106782d51e5ab110beaad29c4aa0537f045711bb0bf146f65aeaed14174"}, - {file = "fastparquet-2024.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:47695037fdc534ef4247f25ccf17dcbd8825be6ecb70c54ca54d588a794f4a6d"}, - {file = "fastparquet-2024.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fc3d35ff8341cd65baecac71062e9d73393d7afda207b3421709c1d3f4baa194"}, - {file = "fastparquet-2024.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:691348cc85890663dd3c0bb02544d38d4c07a0c3d68837324dc01007301150b5"}, - {file = "fastparquet-2024.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfdc8aaec67edd30814c2c2f0e291eb3c3044525d18c87e835ef8793d6e2ea2d"}, - {file = "fastparquet-2024.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0034d1b5af3a71cc2fb29c590f442c0b514f710d6d6996794ae375dcfe050c05"}, - {file = "fastparquet-2024.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:b562be0f43a007493014512602ab6b0207d13ea4ae85e0d94d61febf08efa1ee"}, - {file = "fastparquet-2024.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:611da9043f9dab1c63e6c90a6b124e3d2789c34fefa00d45356517f1e8a09c83"}, - {file = "fastparquet-2024.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:cb93e8951f46943c8567c9a555cb3d24d2c78efdf78e95fd72177d80da73a10f"}, - {file = "fastparquet-2024.5.0.tar.gz", hash = "sha256:dffd1d0ac6e89e31c5b6dacf67a8d299d4afbbcf0bf8b797373904c819c48f51"}, + {file = "fastparquet-2024.11.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:60ccf587410f0979105e17036df61bb60e1c2b81880dc91895cdb4ee65b71e7f"}, + {file = "fastparquet-2024.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a5ad5fc14b0567e700bea3cd528a0bd45a6f9371370b49de8889fb3d10a6574a"}, + {file = "fastparquet-2024.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b74333914f454344458dab9d1432fda9b70d62e28dc7acb1512d937ef1424ee"}, + {file = "fastparquet-2024.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41d1610130b5cb1ce36467766191c5418cba8631e2bfe3affffaf13f9be4e7a8"}, + {file = "fastparquet-2024.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d281edd625c33628ba028d3221180283d6161bc5ceb55eae1f0ca1678f864f26"}, + {file = "fastparquet-2024.11.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fa56b19a29008c34cfe8831e810f770080debcbffc69aabd1df4d47572181f9c"}, + {file = "fastparquet-2024.11.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5914ecfa766b7763201b9f49d832a5e89c2dccad470ca4f9c9b228d9a8349756"}, + {file = "fastparquet-2024.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:561202e8f0e859ccc1aa77c4aaad1d7901b2d50fd6f624ca018bae4c3c7a62ce"}, + {file = "fastparquet-2024.11.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:374cdfa745aa7d5188430528d5841cf823eb9ad16df72ad6dadd898ccccce3be"}, + {file = "fastparquet-2024.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4c8401bfd86cccaf0ab7c0ade58c91ae19317ff6092e1d4ad96c2178197d8124"}, + {file = "fastparquet-2024.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9cca4c6b5969df5561c13786f9d116300db1ec22c7941e237cfca4ce602f59b"}, + {file = "fastparquet-2024.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a9387e77ac608d8978774caaf1e19de67eaa1386806e514dcb19f741b19cfe5"}, + {file = "fastparquet-2024.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6595d3771b3d587a31137e985f751b4d599d5c8e9af9c4858e373fdf5c3f8720"}, + {file = "fastparquet-2024.11.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:053695c2f730b78a2d3925df7cd5c6444d6c1560076af907993361cc7accf3e2"}, + {file = "fastparquet-2024.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0a52eecc6270ae15f0d51347c3f762703dd667ca486f127dc0a21e7e59856ae5"}, + {file = "fastparquet-2024.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:e29ff7a367fafa57c6896fb6abc84126e2466811aefd3e4ad4070b9e18820e54"}, + {file = "fastparquet-2024.11.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:dbad4b014782bd38b58b8e9f514fe958cfa7a6c4e187859232d29fd5c5ddd849"}, + {file = "fastparquet-2024.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:403d31109d398b6be7ce84fa3483fc277c6a23f0b321348c0a505eb098a041cb"}, + {file = "fastparquet-2024.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cbbb9057a26acf0abad7adf58781ee357258b7708ee44a289e3bee97e2f55d42"}, + {file = "fastparquet-2024.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63e0e416e25c15daa174aad8ba991c2e9e5b0dc347e5aed5562124261400f87b"}, + {file = "fastparquet-2024.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e2d7f02f57231e6c86d26e9ea71953737202f20e948790e5d4db6d6a1a150dc"}, + {file = "fastparquet-2024.11.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fbe4468146b633d8f09d7b196fea0547f213cb5ce5f76e9d1beb29eaa9593a93"}, + {file = "fastparquet-2024.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:29d5c718817bcd765fc519b17f759cad4945974421ecc1931d3bdc3e05e57fa9"}, + {file = "fastparquet-2024.11.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:59e5c5b51083d5b82572cdb7aed0346e3181e3ac9d2e45759da2e804bdafa7ee"}, + {file = "fastparquet-2024.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdadf7b6bad789125b823bfc5b0a719ba5c4a2ef965f973702d3ea89cff057f6"}, + {file = "fastparquet-2024.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46b2db02fc2a1507939d35441c8ab211d53afd75d82eec9767d1c3656402859b"}, + {file = "fastparquet-2024.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3afdef2895c9f459135a00a7ed3ceafebfbce918a9e7b5d550e4fae39c1b64d"}, + {file = "fastparquet-2024.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:36b5c9bd2ffaaa26ff45d59a6cefe58503dd748e0c7fad80dd905749da0f2b9e"}, + {file = "fastparquet-2024.11.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:6b7df5d3b61a19d76e209fe8d3133759af1c139e04ebc6d43f3cc2d8045ef338"}, + {file = "fastparquet-2024.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8b35823ac7a194134e5f82fa4a9659e42e8f9ad1f2d22a55fbb7b9e4053aabbb"}, + {file = "fastparquet-2024.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:d20632964e65530374ff7cddd42cc06aa0a1388934903693d6d22592a5ba827b"}, + {file = "fastparquet-2024.11.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ae953c0e3832ae3936b6d92fde493ac7d8b775d7d59d02f7f46f67e1c21ed24"}, + {file = "fastparquet-2024.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:869e167a4067116b4a27eb7adbe597130b2e2e9cfc0f3e84f60e2e182a933f23"}, + {file = "fastparquet-2024.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb3356862fba2f9b2ea8e679d66901f466c92be8e023439fe854bc392fbf40a6"}, + {file = "fastparquet-2024.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc475993232c6a64f350aeb928013a807eb93f78675810fd019cbcff39f6baf3"}, + {file = "fastparquet-2024.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d24c923a2d9d22a5e7564245f856e6462d524d57982ac8f7479cde991ff73362"}, + {file = "fastparquet-2024.11.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:6b936dcf40ca5fff9e70383d48811b1482b871ff74af857cb4db5f4d072f01ab"}, + {file = "fastparquet-2024.11.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4abd3426607335e5ad09be29ef4eeccdf097710e44420deac16893cee64ea0d8"}, + {file = "fastparquet-2024.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:6ec7b398a86432993441d0a08dfae59e29649c803ed64ec4b1d7c3e0855b14cb"}, + {file = "fastparquet-2024.11.0.tar.gz", hash = "sha256:e3b1fc73fd3e1b70b0de254bae7feb890436cb67e99458b88cb9bd3cc44db419"}, ] [package.dependencies] @@ -1065,59 +1049,61 @@ testing = ["pytest"] [[package]] name = "fonttools" -version = "4.54.1" +version = "4.55.0" description = "Tools to manipulate font files" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.54.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ed7ee041ff7b34cc62f07545e55e1468808691dddfd315d51dd82a6b37ddef2"}, - {file = "fonttools-4.54.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41bb0b250c8132b2fcac148e2e9198e62ff06f3cc472065dff839327945c5882"}, - {file = "fonttools-4.54.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7965af9b67dd546e52afcf2e38641b5be956d68c425bef2158e95af11d229f10"}, - {file = "fonttools-4.54.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:278913a168f90d53378c20c23b80f4e599dca62fbffae4cc620c8eed476b723e"}, - {file = "fonttools-4.54.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0e88e3018ac809b9662615072dcd6b84dca4c2d991c6d66e1970a112503bba7e"}, - {file = "fonttools-4.54.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4aa4817f0031206e637d1e685251ac61be64d1adef111060df84fdcbc6ab6c44"}, - {file = "fonttools-4.54.1-cp310-cp310-win32.whl", hash = "sha256:7e3b7d44e18c085fd8c16dcc6f1ad6c61b71ff463636fcb13df7b1b818bd0c02"}, - {file = "fonttools-4.54.1-cp310-cp310-win_amd64.whl", hash = "sha256:dd9cc95b8d6e27d01e1e1f1fae8559ef3c02c76317da650a19047f249acd519d"}, - {file = "fonttools-4.54.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5419771b64248484299fa77689d4f3aeed643ea6630b2ea750eeab219588ba20"}, - {file = "fonttools-4.54.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:301540e89cf4ce89d462eb23a89464fef50915255ece765d10eee8b2bf9d75b2"}, - {file = "fonttools-4.54.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ae5091547e74e7efecc3cbf8e75200bc92daaeb88e5433c5e3e95ea8ce5aa7"}, - {file = "fonttools-4.54.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82834962b3d7c5ca98cb56001c33cf20eb110ecf442725dc5fdf36d16ed1ab07"}, - {file = "fonttools-4.54.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d26732ae002cc3d2ecab04897bb02ae3f11f06dd7575d1df46acd2f7c012a8d8"}, - {file = "fonttools-4.54.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:58974b4987b2a71ee08ade1e7f47f410c367cdfc5a94fabd599c88165f56213a"}, - {file = "fonttools-4.54.1-cp311-cp311-win32.whl", hash = "sha256:ab774fa225238986218a463f3fe151e04d8c25d7de09df7f0f5fce27b1243dbc"}, - {file = "fonttools-4.54.1-cp311-cp311-win_amd64.whl", hash = "sha256:07e005dc454eee1cc60105d6a29593459a06321c21897f769a281ff2d08939f6"}, - {file = "fonttools-4.54.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:54471032f7cb5fca694b5f1a0aaeba4af6e10ae989df408e0216f7fd6cdc405d"}, - {file = "fonttools-4.54.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fa92cb248e573daab8d032919623cc309c005086d743afb014c836636166f08"}, - {file = "fonttools-4.54.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a911591200114969befa7f2cb74ac148bce5a91df5645443371aba6d222e263"}, - {file = "fonttools-4.54.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93d458c8a6a354dc8b48fc78d66d2a8a90b941f7fec30e94c7ad9982b1fa6bab"}, - {file = "fonttools-4.54.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5eb2474a7c5be8a5331146758debb2669bf5635c021aee00fd7c353558fc659d"}, - {file = "fonttools-4.54.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c9c563351ddc230725c4bdf7d9e1e92cbe6ae8553942bd1fb2b2ff0884e8b714"}, - {file = "fonttools-4.54.1-cp312-cp312-win32.whl", hash = "sha256:fdb062893fd6d47b527d39346e0c5578b7957dcea6d6a3b6794569370013d9ac"}, - {file = "fonttools-4.54.1-cp312-cp312-win_amd64.whl", hash = "sha256:e4564cf40cebcb53f3dc825e85910bf54835e8a8b6880d59e5159f0f325e637e"}, - {file = "fonttools-4.54.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6e37561751b017cf5c40fce0d90fd9e8274716de327ec4ffb0df957160be3bff"}, - {file = "fonttools-4.54.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:357cacb988a18aace66e5e55fe1247f2ee706e01debc4b1a20d77400354cddeb"}, - {file = "fonttools-4.54.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e953cc0bddc2beaf3a3c3b5dd9ab7554677da72dfaf46951e193c9653e515a"}, - {file = "fonttools-4.54.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:58d29b9a294573d8319f16f2f79e42428ba9b6480442fa1836e4eb89c4d9d61c"}, - {file = "fonttools-4.54.1-cp313-cp313-win32.whl", hash = "sha256:9ef1b167e22709b46bf8168368b7b5d3efeaaa746c6d39661c1b4405b6352e58"}, - {file = "fonttools-4.54.1-cp313-cp313-win_amd64.whl", hash = "sha256:262705b1663f18c04250bd1242b0515d3bbae177bee7752be67c979b7d47f43d"}, - {file = "fonttools-4.54.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ed2f80ca07025551636c555dec2b755dd005e2ea8fbeb99fc5cdff319b70b23b"}, - {file = "fonttools-4.54.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9dc080e5a1c3b2656caff2ac2633d009b3a9ff7b5e93d0452f40cd76d3da3b3c"}, - {file = "fonttools-4.54.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d152d1be65652fc65e695e5619e0aa0982295a95a9b29b52b85775243c06556"}, - {file = "fonttools-4.54.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8583e563df41fdecef31b793b4dd3af8a9caa03397be648945ad32717a92885b"}, - {file = "fonttools-4.54.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0d1d353ef198c422515a3e974a1e8d5b304cd54a4c2eebcae708e37cd9eeffb1"}, - {file = "fonttools-4.54.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:fda582236fee135d4daeca056c8c88ec5f6f6d88a004a79b84a02547c8f57386"}, - {file = "fonttools-4.54.1-cp38-cp38-win32.whl", hash = "sha256:e7d82b9e56716ed32574ee106cabca80992e6bbdcf25a88d97d21f73a0aae664"}, - {file = "fonttools-4.54.1-cp38-cp38-win_amd64.whl", hash = "sha256:ada215fd079e23e060157aab12eba0d66704316547f334eee9ff26f8c0d7b8ab"}, - {file = "fonttools-4.54.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f5b8a096e649768c2f4233f947cf9737f8dbf8728b90e2771e2497c6e3d21d13"}, - {file = "fonttools-4.54.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4e10d2e0a12e18f4e2dd031e1bf7c3d7017be5c8dbe524d07706179f355c5dac"}, - {file = "fonttools-4.54.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:31c32d7d4b0958600eac75eaf524b7b7cb68d3a8c196635252b7a2c30d80e986"}, - {file = "fonttools-4.54.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c39287f5c8f4a0c5a55daf9eaf9ccd223ea59eed3f6d467133cc727d7b943a55"}, - {file = "fonttools-4.54.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a7a310c6e0471602fe3bf8efaf193d396ea561486aeaa7adc1f132e02d30c4b9"}, - {file = "fonttools-4.54.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d3b659d1029946f4ff9b6183984578041b520ce0f8fb7078bb37ec7445806b33"}, - {file = "fonttools-4.54.1-cp39-cp39-win32.whl", hash = "sha256:e96bc94c8cda58f577277d4a71f51c8e2129b8b36fd05adece6320dd3d57de8a"}, - {file = "fonttools-4.54.1-cp39-cp39-win_amd64.whl", hash = "sha256:e8a4b261c1ef91e7188a30571be6ad98d1c6d9fa2427244c545e2fa0a2494dd7"}, - {file = "fonttools-4.54.1-py3-none-any.whl", hash = "sha256:37cddd62d83dc4f72f7c3f3c2bcf2697e89a30efb152079896544a93907733bd"}, - {file = "fonttools-4.54.1.tar.gz", hash = "sha256:957f669d4922f92c171ba01bef7f29410668db09f6c02111e22b2bce446f3285"}, + {file = "fonttools-4.55.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:51c029d4c0608a21a3d3d169dfc3fb776fde38f00b35ca11fdab63ba10a16f61"}, + {file = "fonttools-4.55.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bca35b4e411362feab28e576ea10f11268b1aeed883b9f22ed05675b1e06ac69"}, + {file = "fonttools-4.55.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ce4ba6981e10f7e0ccff6348e9775ce25ffadbee70c9fd1a3737e3e9f5fa74f"}, + {file = "fonttools-4.55.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31d00f9852a6051dac23294a4cf2df80ced85d1d173a61ba90a3d8f5abc63c60"}, + {file = "fonttools-4.55.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e198e494ca6e11f254bac37a680473a311a88cd40e58f9cc4dc4911dfb686ec6"}, + {file = "fonttools-4.55.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7208856f61770895e79732e1dcbe49d77bd5783adf73ae35f87fcc267df9db81"}, + {file = "fonttools-4.55.0-cp310-cp310-win32.whl", hash = "sha256:e7e6a352ff9e46e8ef8a3b1fe2c4478f8a553e1b5a479f2e899f9dc5f2055880"}, + {file = "fonttools-4.55.0-cp310-cp310-win_amd64.whl", hash = "sha256:636caaeefe586d7c84b5ee0734c1a5ab2dae619dc21c5cf336f304ddb8f6001b"}, + {file = "fonttools-4.55.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fa34aa175c91477485c44ddfbb51827d470011e558dfd5c7309eb31bef19ec51"}, + {file = "fonttools-4.55.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:37dbb3fdc2ef7302d3199fb12468481cbebaee849e4b04bc55b77c24e3c49189"}, + {file = "fonttools-4.55.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5263d8e7ef3c0ae87fbce7f3ec2f546dc898d44a337e95695af2cd5ea21a967"}, + {file = "fonttools-4.55.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f307f6b5bf9e86891213b293e538d292cd1677e06d9faaa4bf9c086ad5f132f6"}, + {file = "fonttools-4.55.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f0a4b52238e7b54f998d6a56b46a2c56b59c74d4f8a6747fb9d4042190f37cd3"}, + {file = "fonttools-4.55.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3e569711464f777a5d4ef522e781dc33f8095ab5efd7548958b36079a9f2f88c"}, + {file = "fonttools-4.55.0-cp311-cp311-win32.whl", hash = "sha256:2b3ab90ec0f7b76c983950ac601b58949f47aca14c3f21eed858b38d7ec42b05"}, + {file = "fonttools-4.55.0-cp311-cp311-win_amd64.whl", hash = "sha256:aa046f6a63bb2ad521004b2769095d4c9480c02c1efa7d7796b37826508980b6"}, + {file = "fonttools-4.55.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:838d2d8870f84fc785528a692e724f2379d5abd3fc9dad4d32f91cf99b41e4a7"}, + {file = "fonttools-4.55.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f46b863d74bab7bb0d395f3b68d3f52a03444964e67ce5c43ce43a75efce9246"}, + {file = "fonttools-4.55.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33b52a9cfe4e658e21b1f669f7309b4067910321757fec53802ca8f6eae96a5a"}, + {file = "fonttools-4.55.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:732a9a63d6ea4a81b1b25a1f2e5e143761b40c2e1b79bb2b68e4893f45139a40"}, + {file = "fonttools-4.55.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7dd91ac3fcb4c491bb4763b820bcab6c41c784111c24172616f02f4bc227c17d"}, + {file = "fonttools-4.55.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1f0e115281a32ff532118aa851ef497a1b7cda617f4621c1cdf81ace3e36fb0c"}, + {file = "fonttools-4.55.0-cp312-cp312-win32.whl", hash = "sha256:6c99b5205844f48a05cb58d4a8110a44d3038c67ed1d79eb733c4953c628b0f6"}, + {file = "fonttools-4.55.0-cp312-cp312-win_amd64.whl", hash = "sha256:f8c8c76037d05652510ae45be1cd8fb5dd2fd9afec92a25374ac82255993d57c"}, + {file = "fonttools-4.55.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8118dc571921dc9e4b288d9cb423ceaf886d195a2e5329cc427df82bba872cd9"}, + {file = "fonttools-4.55.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01124f2ca6c29fad4132d930da69158d3f49b2350e4a779e1efbe0e82bd63f6c"}, + {file = "fonttools-4.55.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81ffd58d2691f11f7c8438796e9f21c374828805d33e83ff4b76e4635633674c"}, + {file = "fonttools-4.55.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5435e5f1eb893c35c2bc2b9cd3c9596b0fcb0a59e7a14121562986dd4c47b8dd"}, + {file = "fonttools-4.55.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d12081729280c39d001edd0f4f06d696014c26e6e9a0a55488fabc37c28945e4"}, + {file = "fonttools-4.55.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a7ad1f1b98ab6cb927ab924a38a8649f1ffd7525c75fe5b594f5dab17af70e18"}, + {file = "fonttools-4.55.0-cp313-cp313-win32.whl", hash = "sha256:abe62987c37630dca69a104266277216de1023cf570c1643bb3a19a9509e7a1b"}, + {file = "fonttools-4.55.0-cp313-cp313-win_amd64.whl", hash = "sha256:2863555ba90b573e4201feaf87a7e71ca3b97c05aa4d63548a4b69ea16c9e998"}, + {file = "fonttools-4.55.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:00f7cf55ad58a57ba421b6a40945b85ac7cc73094fb4949c41171d3619a3a47e"}, + {file = "fonttools-4.55.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f27526042efd6f67bfb0cc2f1610fa20364396f8b1fc5edb9f45bb815fb090b2"}, + {file = "fonttools-4.55.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8e67974326af6a8879dc2a4ec63ab2910a1c1a9680ccd63e4a690950fceddbe"}, + {file = "fonttools-4.55.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61dc0a13451143c5e987dec5254d9d428f3c2789a549a7cf4f815b63b310c1cc"}, + {file = "fonttools-4.55.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:b2e526b325a903868c62155a6a7e24df53f6ce4c5c3160214d8fe1be2c41b478"}, + {file = "fonttools-4.55.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:b7ef9068a1297714e6fefe5932c33b058aa1d45a2b8be32a4c6dee602ae22b5c"}, + {file = "fonttools-4.55.0-cp38-cp38-win32.whl", hash = "sha256:55718e8071be35dff098976bc249fc243b58efa263768c611be17fe55975d40a"}, + {file = "fonttools-4.55.0-cp38-cp38-win_amd64.whl", hash = "sha256:553bd4f8cc327f310c20158e345e8174c8eed49937fb047a8bda51daf2c353c8"}, + {file = "fonttools-4.55.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f901cef813f7c318b77d1c5c14cf7403bae5cb977cede023e22ba4316f0a8f6"}, + {file = "fonttools-4.55.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8c9679fc0dd7e8a5351d321d8d29a498255e69387590a86b596a45659a39eb0d"}, + {file = "fonttools-4.55.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd2820a8b632f3307ebb0bf57948511c2208e34a4939cf978333bc0a3f11f838"}, + {file = "fonttools-4.55.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23bbbb49bec613a32ed1b43df0f2b172313cee690c2509f1af8fdedcf0a17438"}, + {file = "fonttools-4.55.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a656652e1f5d55b9728937a7e7d509b73d23109cddd4e89ee4f49bde03b736c6"}, + {file = "fonttools-4.55.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f50a1f455902208486fbca47ce33054208a4e437b38da49d6721ce2fef732fcf"}, + {file = "fonttools-4.55.0-cp39-cp39-win32.whl", hash = "sha256:161d1ac54c73d82a3cded44202d0218ab007fde8cf194a23d3dd83f7177a2f03"}, + {file = "fonttools-4.55.0-cp39-cp39-win_amd64.whl", hash = "sha256:ca7fd6987c68414fece41c96836e945e1f320cda56fc96ffdc16e54a44ec57a2"}, + {file = "fonttools-4.55.0-py3-none-any.whl", hash = "sha256:12db5888cd4dd3fcc9f0ee60c6edd3c7e1fd44b7dd0f31381ea03df68f8a153f"}, + {file = "fonttools-4.55.0.tar.gz", hash = "sha256:7636acc6ab733572d5e7eec922b254ead611f1cdad17be3f0be7418e8bfaca71"}, ] [package.extras] @@ -1147,13 +1133,13 @@ files = [ [[package]] name = "fsspec" -version = "2024.9.0" +version = "2024.10.0" description = "File-system specification" optional = false python-versions = ">=3.8" files = [ - {file = "fsspec-2024.9.0-py3-none-any.whl", hash = "sha256:a0947d552d8a6efa72cc2c730b12c41d043509156966cca4fb157b0f2a0c574b"}, - {file = "fsspec-2024.9.0.tar.gz", hash = "sha256:4b0afb90c2f21832df142f292649035d80b421f60a9e1c027802e5a0da2b04e8"}, + {file = "fsspec-2024.10.0-py3-none-any.whl", hash = "sha256:03b9a6785766a4de40368b88906366755e2819e758b83705c88cd7cb5fe81871"}, + {file = "fsspec-2024.10.0.tar.gz", hash = "sha256:eda2d8a4116d4f2429db8550f2457da57279247dd930bb12f821b58391359493"}, ] [package.extras] @@ -1226,13 +1212,13 @@ files = [ [[package]] name = "httpcore" -version = "1.0.6" +version = "1.0.7" description = "A minimal low-level HTTP client." optional = false python-versions = ">=3.8" files = [ - {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, - {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, + {file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"}, + {file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"}, ] [package.dependencies] @@ -1286,13 +1272,13 @@ tests = ["freezegun", "pytest", "pytest-cov"] [[package]] name = "identify" -version = "2.6.1" +version = "2.6.2" description = "File identification library for Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "identify-2.6.1-py2.py3-none-any.whl", hash = "sha256:53863bcac7caf8d2ed85bd20312ea5dcfc22226800f6d6881f232d861db5a8f0"}, - {file = "identify-2.6.1.tar.gz", hash = "sha256:91478c5fb7c3aac5ff7bf9b4344f803843dc586832d5f110d672b19aa1984c98"}, + {file = "identify-2.6.2-py2.py3-none-any.whl", hash = "sha256:c097384259f49e372f4ea00a19719d95ae27dd5ff0fd77ad630aa891306b82f3"}, + {file = "identify-2.6.2.tar.gz", hash = "sha256:fab5c716c24d7a789775228823797296a2994b075fb6080ac83a102772a98cbd"}, ] [package.extras] @@ -1369,13 +1355,13 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio [[package]] name = "ipython" -version = "8.28.0" +version = "8.29.0" description = "IPython: Productive Interactive Computing" optional = false python-versions = ">=3.10" files = [ - {file = "ipython-8.28.0-py3-none-any.whl", hash = "sha256:530ef1e7bb693724d3cdc37287c80b07ad9b25986c007a53aa1857272dac3f35"}, - {file = "ipython-8.28.0.tar.gz", hash = "sha256:0d0d15ca1e01faeb868ef56bc7ee5a0de5bd66885735682e8a322ae289a13d1a"}, + {file = "ipython-8.29.0-py3-none-any.whl", hash = "sha256:0188a1bd83267192123ccea7f4a8ed0a78910535dbaa3f37671dca76ebd429c8"}, + {file = "ipython-8.29.0.tar.gz", hash = "sha256:40b60e15b22591450eef73e40a027cf77bd652e757523eebc5bd7c7c498290eb"}, ] [package.dependencies] @@ -1435,22 +1421,22 @@ colors = ["colorama (>=0.4.6)"] [[package]] name = "jedi" -version = "0.19.1" +version = "0.19.2" description = "An autocompletion tool for Python that can be used for text editors." optional = false python-versions = ">=3.6" files = [ - {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"}, - {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"}, + {file = "jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9"}, + {file = "jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0"}, ] [package.dependencies] -parso = ">=0.8.3,<0.9.0" +parso = ">=0.8.4,<0.9.0" [package.extras] docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] -testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] +testing = ["Django", "attrs", "colorama", "docopt", "pytest (<9.0.0)"] [[package]] name = "jinja2" @@ -1471,15 +1457,18 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "json5" -version = "0.9.25" +version = "0.9.28" description = "A Python implementation of the JSON5 data format." optional = false -python-versions = ">=3.8" +python-versions = ">=3.8.0" files = [ - {file = "json5-0.9.25-py3-none-any.whl", hash = "sha256:34ed7d834b1341a86987ed52f3f76cd8ee184394906b6e22a1e0deb9ab294e8f"}, - {file = "json5-0.9.25.tar.gz", hash = "sha256:548e41b9be043f9426776f05df8635a00fe06104ea51ed24b67f908856e151ae"}, + {file = "json5-0.9.28-py3-none-any.whl", hash = "sha256:29c56f1accdd8bc2e037321237662034a7e07921e2b7223281a5ce2c46f0c4df"}, + {file = "json5-0.9.28.tar.gz", hash = "sha256:1f82f36e615bc5b42f1bbd49dbc94b12563c56408c6ffa06414ea310890e9a6e"}, ] +[package.extras] +dev = ["build (==1.2.2.post1)", "coverage (==7.5.3)", "mypy (==1.13.0)", "pip (==24.3.1)", "pylint (==3.2.3)", "ruff (==0.7.3)", "twine (==5.1.1)", "uv (==0.5.1)"] + [[package]] name = "jsonpointer" version = "3.0.0" @@ -1672,13 +1661,13 @@ test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (> [[package]] name = "jupyterlab" -version = "4.2.5" +version = "4.3.1" description = "JupyterLab computational environment" optional = false python-versions = ">=3.8" files = [ - {file = "jupyterlab-4.2.5-py3-none-any.whl", hash = "sha256:73b6e0775d41a9fee7ee756c80f58a6bed4040869ccc21411dc559818874d321"}, - {file = "jupyterlab-4.2.5.tar.gz", hash = "sha256:ae7f3a1b8cb88b4f55009ce79fa7c06f99d70cd63601ee4aa91815d054f46f75"}, + {file = "jupyterlab-4.3.1-py3-none-any.whl", hash = "sha256:2d9a1c305bc748e277819a17a5d5e22452e533e835f4237b2f30f3b0e491e01f"}, + {file = "jupyterlab-4.3.1.tar.gz", hash = "sha256:a4a338327556443521731d82f2a6ccf926df478914ca029616621704d47c3c65"}, ] [package.dependencies] @@ -1698,9 +1687,9 @@ tornado = ">=6.2.0" traitlets = "*" [package.extras] -dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.3.5)"] -docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<7.3.0)", "sphinx-copybutton"] -docs-screenshots = ["altair (==5.3.0)", "ipython (==8.16.1)", "ipywidgets (==8.1.2)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.1.post2)", "matplotlib (==3.8.3)", "nbconvert (>=7.0.0)", "pandas (==2.2.1)", "scipy (==1.12.0)", "vega-datasets (==0.9.0)"] +dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.6.9)"] +docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<8.1.0)", "sphinx-copybutton"] +docs-screenshots = ["altair (==5.4.1)", "ipython (==8.16.1)", "ipywidgets (==8.1.5)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.2.post3)", "matplotlib (==3.9.2)", "nbconvert (>=7.0.0)", "pandas (==2.2.3)", "scipy (==1.14.1)", "vega-datasets (==0.9.0)"] test = ["coverage", "pytest (>=7.0)", "pytest-check-links (>=0.7)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "pytest-timeout", "pytest-tornasync", "requests", "requests-cache", "virtualenv"] upgrade-extension = ["copier (>=9,<10)", "jinja2-time (<0.3)", "pydantic (<3.0)", "pyyaml-include (<3.0)", "tomli-w (<2.0)"] @@ -2274,13 +2263,13 @@ files = [ [[package]] name = "packaging" -version = "24.1" +version = "24.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, + {file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"}, + {file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"}, ] [[package]] @@ -2646,51 +2635,54 @@ tests = ["pytest"] [[package]] name = "pyarrow" -version = "17.0.0" +version = "18.0.0" description = "Python library for Apache Arrow" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pyarrow-17.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:a5c8b238d47e48812ee577ee20c9a2779e6a5904f1708ae240f53ecbee7c9f07"}, - {file = "pyarrow-17.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:db023dc4c6cae1015de9e198d41250688383c3f9af8f565370ab2b4cb5f62655"}, - {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da1e060b3876faa11cee287839f9cc7cdc00649f475714b8680a05fd9071d545"}, - {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75c06d4624c0ad6674364bb46ef38c3132768139ddec1c56582dbac54f2663e2"}, - {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:fa3c246cc58cb5a4a5cb407a18f193354ea47dd0648194e6265bd24177982fe8"}, - {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f7ae2de664e0b158d1607699a16a488de3d008ba99b3a7aa5de1cbc13574d047"}, - {file = "pyarrow-17.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5984f416552eea15fd9cee03da53542bf4cddaef5afecefb9aa8d1010c335087"}, - {file = "pyarrow-17.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:1c8856e2ef09eb87ecf937104aacfa0708f22dfeb039c363ec99735190ffb977"}, - {file = "pyarrow-17.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e19f569567efcbbd42084e87f948778eb371d308e137a0f97afe19bb860ccb3"}, - {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b244dc8e08a23b3e352899a006a26ae7b4d0da7bb636872fa8f5884e70acf15"}, - {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72e87fe3e1db343995562f7fff8aee354b55ee83d13afba65400c178ab2597"}, - {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dc5c31c37409dfbc5d014047817cb4ccd8c1ea25d19576acf1a001fe07f5b420"}, - {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e3343cb1e88bc2ea605986d4b94948716edc7a8d14afd4e2c097232f729758b4"}, - {file = "pyarrow-17.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:a27532c38f3de9eb3e90ecab63dfda948a8ca859a66e3a47f5f42d1e403c4d03"}, - {file = "pyarrow-17.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9b8a823cea605221e61f34859dcc03207e52e409ccf6354634143e23af7c8d22"}, - {file = "pyarrow-17.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f1e70de6cb5790a50b01d2b686d54aaf73da01266850b05e3af2a1bc89e16053"}, - {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0071ce35788c6f9077ff9ecba4858108eebe2ea5a3f7cf2cf55ebc1dbc6ee24a"}, - {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:757074882f844411fcca735e39aae74248a1531367a7c80799b4266390ae51cc"}, - {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ba11c4f16976e89146781a83833df7f82077cdab7dc6232c897789343f7891a"}, - {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b0c6ac301093b42d34410b187bba560b17c0330f64907bfa4f7f7f2444b0cf9b"}, - {file = "pyarrow-17.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:392bc9feabc647338e6c89267635e111d71edad5fcffba204425a7c8d13610d7"}, - {file = "pyarrow-17.0.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:af5ff82a04b2171415f1410cff7ebb79861afc5dae50be73ce06d6e870615204"}, - {file = "pyarrow-17.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:edca18eaca89cd6382dfbcff3dd2d87633433043650c07375d095cd3517561d8"}, - {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c7916bff914ac5d4a8fe25b7a25e432ff921e72f6f2b7547d1e325c1ad9d155"}, - {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f553ca691b9e94b202ff741bdd40f6ccb70cdd5fbf65c187af132f1317de6145"}, - {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0cdb0e627c86c373205a2f94a510ac4376fdc523f8bb36beab2e7f204416163c"}, - {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:d7d192305d9d8bc9082d10f361fc70a73590a4c65cf31c3e6926cd72b76bc35c"}, - {file = "pyarrow-17.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:02dae06ce212d8b3244dd3e7d12d9c4d3046945a5933d28026598e9dbbda1fca"}, - {file = "pyarrow-17.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:13d7a460b412f31e4c0efa1148e1d29bdf18ad1411eb6757d38f8fbdcc8645fb"}, - {file = "pyarrow-17.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b564a51fbccfab5a04a80453e5ac6c9954a9c5ef2890d1bcf63741909c3f8df"}, - {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32503827abbc5aadedfa235f5ece8c4f8f8b0a3cf01066bc8d29de7539532687"}, - {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a155acc7f154b9ffcc85497509bcd0d43efb80d6f733b0dc3bb14e281f131c8b"}, - {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:dec8d129254d0188a49f8a1fc99e0560dc1b85f60af729f47de4046015f9b0a5"}, - {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a48ddf5c3c6a6c505904545c25a4ae13646ae1f8ba703c4df4a1bfe4f4006bda"}, - {file = "pyarrow-17.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:42bf93249a083aca230ba7e2786c5f673507fa97bbd9725a1e2754715151a204"}, - {file = "pyarrow-17.0.0.tar.gz", hash = "sha256:4beca9521ed2c0921c1023e68d097d0299b62c362639ea315572a58f3f50fd28"}, -] - -[package.dependencies] -numpy = ">=1.16.6" + {file = "pyarrow-18.0.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:2333f93260674e185cfbf208d2da3007132572e56871f451ba1a556b45dae6e2"}, + {file = "pyarrow-18.0.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:4c381857754da44326f3a49b8b199f7f87a51c2faacd5114352fc78de30d3aba"}, + {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:603cd8ad4976568954598ef0a6d4ed3dfb78aff3d57fa8d6271f470f0ce7d34f"}, + {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58a62549a3e0bc9e03df32f350e10e1efb94ec6cf63e3920c3385b26663948ce"}, + {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bc97316840a349485fbb137eb8d0f4d7057e1b2c1272b1a20eebbbe1848f5122"}, + {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:2e549a748fa8b8715e734919923f69318c953e077e9c02140ada13e59d043310"}, + {file = "pyarrow-18.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:606e9a3dcb0f52307c5040698ea962685fb1c852d72379ee9412be7de9c5f9e2"}, + {file = "pyarrow-18.0.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d5795e37c0a33baa618c5e054cd61f586cf76850a251e2b21355e4085def6280"}, + {file = "pyarrow-18.0.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:5f0510608ccd6e7f02ca8596962afb8c6cc84c453e7be0da4d85f5f4f7b0328a"}, + {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:616ea2826c03c16e87f517c46296621a7c51e30400f6d0a61be645f203aa2b93"}, + {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1824f5b029ddd289919f354bc285992cb4e32da518758c136271cf66046ef22"}, + {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:6dd1b52d0d58dd8f685ced9971eb49f697d753aa7912f0a8f50833c7a7426319"}, + {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:320ae9bd45ad7ecc12ec858b3e8e462578de060832b98fc4d671dee9f10d9954"}, + {file = "pyarrow-18.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:2c992716cffb1088414f2b478f7af0175fd0a76fea80841b1706baa8fb0ebaad"}, + {file = "pyarrow-18.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:e7ab04f272f98ebffd2a0661e4e126036f6936391ba2889ed2d44c5006237802"}, + {file = "pyarrow-18.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:03f40b65a43be159d2f97fd64dc998f769d0995a50c00f07aab58b0b3da87e1f"}, + {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be08af84808dff63a76860847c48ec0416928a7b3a17c2f49a072cac7c45efbd"}, + {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c70c1965cde991b711a98448ccda3486f2a336457cf4ec4dca257a926e149c9"}, + {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:00178509f379415a3fcf855af020e3340254f990a8534294ec3cf674d6e255fd"}, + {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a71ab0589a63a3e987beb2bc172e05f000a5c5be2636b4b263c44034e215b5d7"}, + {file = "pyarrow-18.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:fe92efcdbfa0bcf2fa602e466d7f2905500f33f09eb90bf0bcf2e6ca41b574c8"}, + {file = "pyarrow-18.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:907ee0aa8ca576f5e0cdc20b5aeb2ad4d3953a3b4769fc4b499e00ef0266f02f"}, + {file = "pyarrow-18.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:66dcc216ebae2eb4c37b223feaf82f15b69d502821dde2da138ec5a3716e7463"}, + {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc1daf7c425f58527900876354390ee41b0ae962a73ad0959b9d829def583bb1"}, + {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:871b292d4b696b09120ed5bde894f79ee2a5f109cb84470546471df264cae136"}, + {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:082ba62bdcb939824ba1ce10b8acef5ab621da1f4c4805e07bfd153617ac19d4"}, + {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:2c664ab88b9766413197733c1720d3dcd4190e8fa3bbdc3710384630a0a7207b"}, + {file = "pyarrow-18.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:dc892be34dbd058e8d189b47db1e33a227d965ea8805a235c8a7286f7fd17d3a"}, + {file = "pyarrow-18.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:28f9c39a56d2c78bf6b87dcc699d520ab850919d4a8c7418cd20eda49874a2ea"}, + {file = "pyarrow-18.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:f1a198a50c409ab2d009fbf20956ace84567d67f2c5701511d4dd561fae6f32e"}, + {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5bd7fd32e3ace012d43925ea4fc8bd1b02cc6cc1e9813b518302950e89b5a22"}, + {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:336addb8b6f5208be1b2398442c703a710b6b937b1a046065ee4db65e782ff5a"}, + {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:45476490dd4adec5472c92b4d253e245258745d0ccaabe706f8d03288ed60a79"}, + {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:b46591222c864e7da7faa3b19455196416cd8355ff6c2cc2e65726a760a3c420"}, + {file = "pyarrow-18.0.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:eb7e3abcda7e1e6b83c2dc2909c8d045881017270a119cc6ee7fdcfe71d02df8"}, + {file = "pyarrow-18.0.0-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:09f30690b99ce34e0da64d20dab372ee54431745e4efb78ac938234a282d15f9"}, + {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d5ca5d707e158540312e09fd907f9f49bacbe779ab5236d9699ced14d2293b8"}, + {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6331f280c6e4521c69b201a42dd978f60f7e129511a55da9e0bfe426b4ebb8d"}, + {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3ac24b2be732e78a5a3ac0b3aa870d73766dd00beba6e015ea2ea7394f8b4e55"}, + {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b30a927c6dff89ee702686596f27c25160dd6c99be5bcc1513a763ae5b1bfc03"}, + {file = "pyarrow-18.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:8f40ec677e942374e3d7f2fad6a67a4c2811a8b975e8703c6fd26d3b168a90e2"}, + {file = "pyarrow-18.0.0.tar.gz", hash = "sha256:a6aa027b1a9d2970cf328ccd6dbe4a996bc13c39fd427f502782f5bdb9ca20f5"}, +] [package.extras] test = ["cffi", "hypothesis", "pandas", "pytest", "pytz"] @@ -3101,105 +3093,105 @@ rpds-py = ">=0.7.0" [[package]] name = "regex" -version = "2024.9.11" +version = "2024.11.6" description = "Alternative regular expression module, to replace re." optional = false python-versions = ">=3.8" files = [ - {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408"}, - {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d"}, - {file = "regex-2024.9.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a"}, - {file = "regex-2024.9.11-cp310-cp310-win32.whl", hash = "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0"}, - {file = "regex-2024.9.11-cp310-cp310-win_amd64.whl", hash = "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623"}, - {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df"}, - {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268"}, - {file = "regex-2024.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1"}, - {file = "regex-2024.9.11-cp311-cp311-win32.whl", hash = "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9"}, - {file = "regex-2024.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf"}, - {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7"}, - {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231"}, - {file = "regex-2024.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a"}, - {file = "regex-2024.9.11-cp312-cp312-win32.whl", hash = "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776"}, - {file = "regex-2024.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009"}, - {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784"}, - {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36"}, - {file = "regex-2024.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8"}, - {file = "regex-2024.9.11-cp313-cp313-win32.whl", hash = "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8"}, - {file = "regex-2024.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f"}, - {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4"}, - {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e"}, - {file = "regex-2024.9.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd"}, - {file = "regex-2024.9.11-cp38-cp38-win32.whl", hash = "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771"}, - {file = "regex-2024.9.11-cp38-cp38-win_amd64.whl", hash = "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508"}, - {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066"}, - {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62"}, - {file = "regex-2024.9.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35"}, - {file = "regex-2024.9.11-cp39-cp39-win32.whl", hash = "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142"}, - {file = "regex-2024.9.11-cp39-cp39-win_amd64.whl", hash = "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919"}, - {file = "regex-2024.9.11.tar.gz", hash = "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd"}, + {file = "regex-2024.11.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ff590880083d60acc0433f9c3f713c51f7ac6ebb9adf889c79a261ecf541aa91"}, + {file = "regex-2024.11.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:658f90550f38270639e83ce492f27d2c8d2cd63805c65a13a14d36ca126753f0"}, + {file = "regex-2024.11.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:164d8b7b3b4bcb2068b97428060b2a53be050085ef94eca7f240e7947f1b080e"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3660c82f209655a06b587d55e723f0b813d3a7db2e32e5e7dc64ac2a9e86fde"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d22326fcdef5e08c154280b71163ced384b428343ae16a5ab2b3354aed12436e"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1ac758ef6aebfc8943560194e9fd0fa18bcb34d89fd8bd2af18183afd8da3a2"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:997d6a487ff00807ba810e0f8332c18b4eb8d29463cfb7c820dc4b6e7562d0cf"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:02a02d2bb04fec86ad61f3ea7f49c015a0681bf76abb9857f945d26159d2968c"}, + {file = "regex-2024.11.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f02f93b92358ee3f78660e43b4b0091229260c5d5c408d17d60bf26b6c900e86"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:06eb1be98df10e81ebaded73fcd51989dcf534e3c753466e4b60c4697a003b67"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:040df6fe1a5504eb0f04f048e6d09cd7c7110fef851d7c567a6b6e09942feb7d"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabbfc59f2c6edba2a6622c647b716e34e8e3867e0ab975412c5c2f79b82da2"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8447d2d39b5abe381419319f942de20b7ecd60ce86f16a23b0698f22e1b70008"}, + {file = "regex-2024.11.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da8f5fc57d1933de22a9e23eec290a0d8a5927a5370d24bda9a6abe50683fe62"}, + {file = "regex-2024.11.6-cp310-cp310-win32.whl", hash = "sha256:b489578720afb782f6ccf2840920f3a32e31ba28a4b162e13900c3e6bd3f930e"}, + {file = "regex-2024.11.6-cp310-cp310-win_amd64.whl", hash = "sha256:5071b2093e793357c9d8b2929dfc13ac5f0a6c650559503bb81189d0a3814519"}, + {file = "regex-2024.11.6-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5478c6962ad548b54a591778e93cd7c456a7a29f8eca9c49e4f9a806dcc5d638"}, + {file = "regex-2024.11.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2c89a8cc122b25ce6945f0423dc1352cb9593c68abd19223eebbd4e56612c5b7"}, + {file = "regex-2024.11.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:94d87b689cdd831934fa3ce16cc15cd65748e6d689f5d2b8f4f4df2065c9fa20"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1062b39a0a2b75a9c694f7a08e7183a80c63c0d62b301418ffd9c35f55aaa114"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:167ed4852351d8a750da48712c3930b031f6efdaa0f22fa1933716bfcd6bf4a3"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d548dafee61f06ebdb584080621f3e0c23fff312f0de1afc776e2a2ba99a74f"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a19f302cd1ce5dd01a9099aaa19cae6173306d1302a43b627f62e21cf18ac0"}, + {file = "regex-2024.11.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bec9931dfb61ddd8ef2ebc05646293812cb6b16b60cf7c9511a832b6f1854b55"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9714398225f299aa85267fd222f7142fcb5c769e73d7733344efc46f2ef5cf89"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:202eb32e89f60fc147a41e55cb086db2a3f8cb82f9a9a88440dcfc5d37faae8d"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:4181b814e56078e9b00427ca358ec44333765f5ca1b45597ec7446d3a1ef6e34"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:068376da5a7e4da51968ce4c122a7cd31afaaec4fccc7856c92f63876e57b51d"}, + {file = "regex-2024.11.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ac10f2c4184420d881a3475fb2c6f4d95d53a8d50209a2500723d831036f7c45"}, + {file = "regex-2024.11.6-cp311-cp311-win32.whl", hash = "sha256:c36f9b6f5f8649bb251a5f3f66564438977b7ef8386a52460ae77e6070d309d9"}, + {file = "regex-2024.11.6-cp311-cp311-win_amd64.whl", hash = "sha256:02e28184be537f0e75c1f9b2f8847dc51e08e6e171c6bde130b2687e0c33cf60"}, + {file = "regex-2024.11.6-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:52fb28f528778f184f870b7cf8f225f5eef0a8f6e3778529bdd40c7b3920796a"}, + {file = "regex-2024.11.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdd6028445d2460f33136c55eeb1f601ab06d74cb3347132e1c24250187500d9"}, + {file = "regex-2024.11.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805e6b60c54bf766b251e94526ebad60b7de0c70f70a4e6210ee2891acb70bf2"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b85c2530be953a890eaffde05485238f07029600e8f098cdf1848d414a8b45e4"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb26437975da7dc36b7efad18aa9dd4ea569d2357ae6b783bf1118dabd9ea577"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abfa5080c374a76a251ba60683242bc17eeb2c9818d0d30117b4486be10c59d3"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b7fa6606c2881c1db9479b0eaa11ed5dfa11c8d60a474ff0e095099f39d98e"}, + {file = "regex-2024.11.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c32f75920cf99fe6b6c539c399a4a128452eaf1af27f39bce8909c9a3fd8cbe"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:982e6d21414e78e1f51cf595d7f321dcd14de1f2881c5dc6a6e23bbbbd68435e"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a7c2155f790e2fb448faed6dd241386719802296ec588a8b9051c1f5c481bc29"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:149f5008d286636e48cd0b1dd65018548944e495b0265b45e1bffecce1ef7f39"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:e5364a4502efca094731680e80009632ad6624084aff9a23ce8c8c6820de3e51"}, + {file = "regex-2024.11.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0a86e7eeca091c09e021db8eb72d54751e527fa47b8d5787caf96d9831bd02ad"}, + {file = "regex-2024.11.6-cp312-cp312-win32.whl", hash = "sha256:32f9a4c643baad4efa81d549c2aadefaeba12249b2adc5af541759237eee1c54"}, + {file = "regex-2024.11.6-cp312-cp312-win_amd64.whl", hash = "sha256:a93c194e2df18f7d264092dc8539b8ffb86b45b899ab976aa15d48214138e81b"}, + {file = "regex-2024.11.6-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a6ba92c0bcdf96cbf43a12c717eae4bc98325ca3730f6b130ffa2e3c3c723d84"}, + {file = "regex-2024.11.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:525eab0b789891ac3be914d36893bdf972d483fe66551f79d3e27146191a37d4"}, + {file = "regex-2024.11.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:086a27a0b4ca227941700e0b31425e7a28ef1ae8e5e05a33826e17e47fbfdba0"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bde01f35767c4a7899b7eb6e823b125a64de314a8ee9791367c9a34d56af18d0"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b583904576650166b3d920d2bcce13971f6f9e9a396c673187f49811b2769dc7"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c4de13f06a0d54fa0d5ab1b7138bfa0d883220965a29616e3ea61b35d5f5fc7"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3cde6e9f2580eb1665965ce9bf17ff4952f34f5b126beb509fee8f4e994f143c"}, + {file = "regex-2024.11.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0d7f453dca13f40a02b79636a339c5b62b670141e63efd511d3f8f73fba162b3"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:59dfe1ed21aea057a65c6b586afd2a945de04fc7db3de0a6e3ed5397ad491b07"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b97c1e0bd37c5cd7902e65f410779d39eeda155800b65fc4d04cc432efa9bc6e"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f9d1e379028e0fc2ae3654bac3cbbef81bf3fd571272a42d56c24007979bafb6"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:13291b39131e2d002a7940fb176e120bec5145f3aeb7621be6534e46251912c4"}, + {file = "regex-2024.11.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4f51f88c126370dcec4908576c5a627220da6c09d0bff31cfa89f2523843316d"}, + {file = "regex-2024.11.6-cp313-cp313-win32.whl", hash = "sha256:63b13cfd72e9601125027202cad74995ab26921d8cd935c25f09c630436348ff"}, + {file = "regex-2024.11.6-cp313-cp313-win_amd64.whl", hash = "sha256:2b3361af3198667e99927da8b84c1b010752fa4b1115ee30beaa332cabc3ef1a"}, + {file = "regex-2024.11.6-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:3a51ccc315653ba012774efca4f23d1d2a8a8f278a6072e29c7147eee7da446b"}, + {file = "regex-2024.11.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ad182d02e40de7459b73155deb8996bbd8e96852267879396fb274e8700190e3"}, + {file = "regex-2024.11.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ba9b72e5643641b7d41fa1f6d5abda2c9a263ae835b917348fc3c928182ad467"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40291b1b89ca6ad8d3f2b82782cc33807f1406cf68c8d440861da6304d8ffbbd"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cdf58d0e516ee426a48f7b2c03a332a4114420716d55769ff7108c37a09951bf"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a36fdf2af13c2b14738f6e973aba563623cb77d753bbbd8d414d18bfaa3105dd"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1cee317bfc014c2419a76bcc87f071405e3966da434e03e13beb45f8aced1a6"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50153825ee016b91549962f970d6a4442fa106832e14c918acd1c8e479916c4f"}, + {file = "regex-2024.11.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea1bfda2f7162605f6e8178223576856b3d791109f15ea99a9f95c16a7636fb5"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:df951c5f4a1b1910f1a99ff42c473ff60f8225baa1cdd3539fe2819d9543e9df"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:072623554418a9911446278f16ecb398fb3b540147a7828c06e2011fa531e773"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f654882311409afb1d780b940234208a252322c24a93b442ca714d119e68086c"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:89d75e7293d2b3e674db7d4d9b1bee7f8f3d1609428e293771d1a962617150cc"}, + {file = "regex-2024.11.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:f65557897fc977a44ab205ea871b690adaef6b9da6afda4790a2484b04293a5f"}, + {file = "regex-2024.11.6-cp38-cp38-win32.whl", hash = "sha256:6f44ec28b1f858c98d3036ad5d7d0bfc568bdd7a74f9c24e25f41ef1ebfd81a4"}, + {file = "regex-2024.11.6-cp38-cp38-win_amd64.whl", hash = "sha256:bb8f74f2f10dbf13a0be8de623ba4f9491faf58c24064f32b65679b021ed0001"}, + {file = "regex-2024.11.6-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5704e174f8ccab2026bd2f1ab6c510345ae8eac818b613d7d73e785f1310f839"}, + {file = "regex-2024.11.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:220902c3c5cc6af55d4fe19ead504de80eb91f786dc102fbd74894b1551f095e"}, + {file = "regex-2024.11.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e7e351589da0850c125f1600a4c4ba3c722efefe16b297de54300f08d734fbf"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5056b185ca113c88e18223183aa1a50e66507769c9640a6ff75859619d73957b"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2e34b51b650b23ed3354b5a07aab37034d9f923db2a40519139af34f485f77d0"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5670bce7b200273eee1840ef307bfa07cda90b38ae56e9a6ebcc9f50da9c469b"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08986dce1339bc932923e7d1232ce9881499a0e02925f7402fb7c982515419ef"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:93c0b12d3d3bc25af4ebbf38f9ee780a487e8bf6954c115b9f015822d3bb8e48"}, + {file = "regex-2024.11.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:764e71f22ab3b305e7f4c21f1a97e1526a25ebdd22513e251cf376760213da13"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f056bf21105c2515c32372bbc057f43eb02aae2fda61052e2f7622c801f0b4e2"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:69ab78f848845569401469da20df3e081e6b5a11cb086de3eed1d48f5ed57c95"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:86fddba590aad9208e2fa8b43b4c098bb0ec74f15718bb6a704e3c63e2cef3e9"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:684d7a212682996d21ca12ef3c17353c021fe9de6049e19ac8481ec35574a70f"}, + {file = "regex-2024.11.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a03e02f48cd1abbd9f3b7e3586d97c8f7a9721c436f51a5245b3b9483044480b"}, + {file = "regex-2024.11.6-cp39-cp39-win32.whl", hash = "sha256:41758407fc32d5c3c5de163888068cfee69cb4c2be844e7ac517a52770f9af57"}, + {file = "regex-2024.11.6-cp39-cp39-win_amd64.whl", hash = "sha256:b2837718570f95dd41675328e111345f9b7095d821bac435aac173ac80b19983"}, + {file = "regex-2024.11.6.tar.gz", hash = "sha256:7ab159b063c52a0333c884e4679f8d7a85112ee3078fe3d9004b2dd875585519"}, ] [[package]] @@ -3250,114 +3242,101 @@ files = [ [[package]] name = "rpds-py" -version = "0.20.0" +version = "0.21.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, - {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, - {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, - {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, - {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, - {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, - {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, - {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, - {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, - {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, - {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, - {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, - {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, - {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, - {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, + {file = "rpds_py-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a017f813f24b9df929674d0332a374d40d7f0162b326562daae8066b502d0590"}, + {file = "rpds_py-0.21.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:20cc1ed0bcc86d8e1a7e968cce15be45178fd16e2ff656a243145e0b439bd250"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad116dda078d0bc4886cb7840e19811562acdc7a8e296ea6ec37e70326c1b41c"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:808f1ac7cf3b44f81c9475475ceb221f982ef548e44e024ad5f9e7060649540e"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de552f4a1916e520f2703ec474d2b4d3f86d41f353e7680b597512ffe7eac5d0"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:efec946f331349dfc4ae9d0e034c263ddde19414fe5128580f512619abed05f1"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b80b4690bbff51a034bfde9c9f6bf9357f0a8c61f548942b80f7b66356508bf5"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:085ed25baac88953d4283e5b5bd094b155075bb40d07c29c4f073e10623f9f2e"}, + {file = "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:daa8efac2a1273eed2354397a51216ae1e198ecbce9036fba4e7610b308b6153"}, + {file = "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:95a5bad1ac8a5c77b4e658671642e4af3707f095d2b78a1fdd08af0dfb647624"}, + {file = "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3e53861b29a13d5b70116ea4230b5f0f3547b2c222c5daa090eb7c9c82d7f664"}, + {file = "rpds_py-0.21.0-cp310-none-win32.whl", hash = "sha256:ea3a6ac4d74820c98fcc9da4a57847ad2cc36475a8bd9683f32ab6d47a2bd682"}, + {file = "rpds_py-0.21.0-cp310-none-win_amd64.whl", hash = "sha256:b8f107395f2f1d151181880b69a2869c69e87ec079c49c0016ab96860b6acbe5"}, + {file = "rpds_py-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5555db3e618a77034954b9dc547eae94166391a98eb867905ec8fcbce1308d95"}, + {file = "rpds_py-0.21.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:97ef67d9bbc3e15584c2f3c74bcf064af36336c10d2e21a2131e123ce0f924c9"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ab2c2a26d2f69cdf833174f4d9d86118edc781ad9a8fa13970b527bf8236027"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4e8921a259f54bfbc755c5bbd60c82bb2339ae0324163f32868f63f0ebb873d9"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a7ff941004d74d55a47f916afc38494bd1cfd4b53c482b77c03147c91ac0ac3"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5145282a7cd2ac16ea0dc46b82167754d5e103a05614b724457cffe614f25bd8"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de609a6f1b682f70bb7163da745ee815d8f230d97276db049ab447767466a09d"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:40c91c6e34cf016fa8e6b59d75e3dbe354830777fcfd74c58b279dceb7975b75"}, + {file = "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d2132377f9deef0c4db89e65e8bb28644ff75a18df5293e132a8d67748397b9f"}, + {file = "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0a9e0759e7be10109645a9fddaaad0619d58c9bf30a3f248a2ea57a7c417173a"}, + {file = "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e20da3957bdf7824afdd4b6eeb29510e83e026473e04952dca565170cd1ecc8"}, + {file = "rpds_py-0.21.0-cp311-none-win32.whl", hash = "sha256:f71009b0d5e94c0e86533c0b27ed7cacc1239cb51c178fd239c3cfefefb0400a"}, + {file = "rpds_py-0.21.0-cp311-none-win_amd64.whl", hash = "sha256:e168afe6bf6ab7ab46c8c375606298784ecbe3ba31c0980b7dcbb9631dcba97e"}, + {file = "rpds_py-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:30b912c965b2aa76ba5168fd610087bad7fcde47f0a8367ee8f1876086ee6d1d"}, + {file = "rpds_py-0.21.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ca9989d5d9b1b300bc18e1801c67b9f6d2c66b8fd9621b36072ed1df2c977f72"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f54e7106f0001244a5f4cf810ba8d3f9c542e2730821b16e969d6887b664266"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fed5dfefdf384d6fe975cc026886aece4f292feaf69d0eeb716cfd3c5a4dd8be"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:590ef88db231c9c1eece44dcfefd7515d8bf0d986d64d0caf06a81998a9e8cab"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f983e4c2f603c95dde63df633eec42955508eefd8d0f0e6d236d31a044c882d7"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b229ce052ddf1a01c67d68166c19cb004fb3612424921b81c46e7ea7ccf7c3bf"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ebf64e281a06c904a7636781d2e973d1f0926a5b8b480ac658dc0f556e7779f4"}, + {file = "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:998a8080c4495e4f72132f3d66ff91f5997d799e86cec6ee05342f8f3cda7dca"}, + {file = "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:98486337f7b4f3c324ab402e83453e25bb844f44418c066623db88e4c56b7c7b"}, + {file = "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a78d8b634c9df7f8d175451cfeac3810a702ccb85f98ec95797fa98b942cea11"}, + {file = "rpds_py-0.21.0-cp312-none-win32.whl", hash = "sha256:a58ce66847711c4aa2ecfcfaff04cb0327f907fead8945ffc47d9407f41ff952"}, + {file = "rpds_py-0.21.0-cp312-none-win_amd64.whl", hash = "sha256:e860f065cc4ea6f256d6f411aba4b1251255366e48e972f8a347cf88077b24fd"}, + {file = "rpds_py-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ee4eafd77cc98d355a0d02f263efc0d3ae3ce4a7c24740010a8b4012bbb24937"}, + {file = "rpds_py-0.21.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:688c93b77e468d72579351a84b95f976bd7b3e84aa6686be6497045ba84be560"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c38dbf31c57032667dd5a2f0568ccde66e868e8f78d5a0d27dcc56d70f3fcd3b"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2d6129137f43f7fa02d41542ffff4871d4aefa724a5fe38e2c31a4e0fd343fb0"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:520ed8b99b0bf86a176271f6fe23024323862ac674b1ce5b02a72bfeff3fff44"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaeb25ccfb9b9014a10eaf70904ebf3f79faaa8e60e99e19eef9f478651b9b74"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af04ac89c738e0f0f1b913918024c3eab6e3ace989518ea838807177d38a2e94"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b9b76e2afd585803c53c5b29e992ecd183f68285b62fe2668383a18e74abe7a3"}, + {file = "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5afb5efde74c54724e1a01118c6e5c15e54e642c42a1ba588ab1f03544ac8c7a"}, + {file = "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:52c041802a6efa625ea18027a0723676a778869481d16803481ef6cc02ea8cb3"}, + {file = "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ee1e4fc267b437bb89990b2f2abf6c25765b89b72dd4a11e21934df449e0c976"}, + {file = "rpds_py-0.21.0-cp313-none-win32.whl", hash = "sha256:0c025820b78817db6a76413fff6866790786c38f95ea3f3d3c93dbb73b632202"}, + {file = "rpds_py-0.21.0-cp313-none-win_amd64.whl", hash = "sha256:320c808df533695326610a1b6a0a6e98f033e49de55d7dc36a13c8a30cfa756e"}, + {file = "rpds_py-0.21.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:2c51d99c30091f72a3c5d126fad26236c3f75716b8b5e5cf8effb18889ced928"}, + {file = "rpds_py-0.21.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cbd7504a10b0955ea287114f003b7ad62330c9e65ba012c6223dba646f6ffd05"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6dcc4949be728ede49e6244eabd04064336012b37f5c2200e8ec8eb2988b209c"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f414da5c51bf350e4b7960644617c130140423882305f7574b6cf65a3081cecb"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9afe42102b40007f588666bc7de82451e10c6788f6f70984629db193849dced1"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b929c2bb6e29ab31f12a1117c39f7e6d6450419ab7464a4ea9b0b417174f044"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8404b3717da03cbf773a1d275d01fec84ea007754ed380f63dfc24fb76ce4592"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e12bb09678f38b7597b8346983d2323a6482dcd59e423d9448108c1be37cac9d"}, + {file = "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:58a0e345be4b18e6b8501d3b0aa540dad90caeed814c515e5206bb2ec26736fd"}, + {file = "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c3761f62fcfccf0864cc4665b6e7c3f0c626f0380b41b8bd1ce322103fa3ef87"}, + {file = "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c2b2f71c6ad6c2e4fc9ed9401080badd1469fa9889657ec3abea42a3d6b2e1ed"}, + {file = "rpds_py-0.21.0-cp39-none-win32.whl", hash = "sha256:b21747f79f360e790525e6f6438c7569ddbfb1b3197b9e65043f25c3c9b489d8"}, + {file = "rpds_py-0.21.0-cp39-none-win_amd64.whl", hash = "sha256:0626238a43152918f9e72ede9a3b6ccc9e299adc8ade0d67c5e142d564c9a83d"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6b4ef7725386dc0762857097f6b7266a6cdd62bfd209664da6712cb26acef035"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:6bc0e697d4d79ab1aacbf20ee5f0df80359ecf55db33ff41481cf3e24f206919"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da52d62a96e61c1c444f3998c434e8b263c384f6d68aca8274d2e08d1906325c"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:98e4fe5db40db87ce1c65031463a760ec7906ab230ad2249b4572c2fc3ef1f9f"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30bdc973f10d28e0337f71d202ff29345320f8bc49a31c90e6c257e1ccef4333"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:faa5e8496c530f9c71f2b4e1c49758b06e5f4055e17144906245c99fa6d45356"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32eb88c30b6a4f0605508023b7141d043a79b14acb3b969aa0b4f99b25bc7d4a"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a89a8ce9e4e75aeb7fa5d8ad0f3fecdee813802592f4f46a15754dcb2fd6b061"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:241e6c125568493f553c3d0fdbb38c74babf54b45cef86439d4cd97ff8feb34d"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:3b766a9f57663396e4f34f5140b3595b233a7b146e94777b97a8413a1da1be18"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:af4a644bf890f56e41e74be7d34e9511e4954894d544ec6b8efe1e21a1a8da6c"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:3e30a69a706e8ea20444b98a49f386c17b26f860aa9245329bab0851ed100677"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:031819f906bb146561af051c7cef4ba2003d28cff07efacef59da973ff7969ba"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:b876f2bc27ab5954e2fd88890c071bd0ed18b9c50f6ec3de3c50a5ece612f7a6"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc5695c321e518d9f03b7ea6abb5ea3af4567766f9852ad1560f501b17588c7b"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b4de1da871b5c0fd5537b26a6fc6814c3cc05cabe0c941db6e9044ffbb12f04a"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:878f6fea96621fda5303a2867887686d7a198d9e0f8a40be100a63f5d60c88c9"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8eeec67590e94189f434c6d11c426892e396ae59e4801d17a93ac96b8c02a6c"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ff2eba7f6c0cb523d7e9cff0903f2fe1feff8f0b2ceb6bd71c0e20a4dcee271"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a429b99337062877d7875e4ff1a51fe788424d522bd64a8c0a20ef3021fdb6ed"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:d167e4dbbdac48bd58893c7e446684ad5d425b407f9336e04ab52e8b9194e2ed"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:4eb2de8a147ffe0626bfdc275fc6563aa7bf4b6db59cf0d44f0ccd6ca625a24e"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e78868e98f34f34a88e23ee9ccaeeec460e4eaf6db16d51d7a9b883e5e785a5e"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4991ca61656e3160cdaca4851151fd3f4a92e9eba5c7a530ab030d6aee96ec89"}, + {file = "rpds_py-0.21.0.tar.gz", hash = "sha256:ed6378c9d66d0de903763e7706383d60c33829581f0adff47b6535f1802fa6db"}, ] [[package]] @@ -3399,23 +3378,23 @@ win32 = ["pywin32"] [[package]] name = "setuptools" -version = "75.2.0" +version = "75.6.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "setuptools-75.2.0-py3-none-any.whl", hash = "sha256:a7fcb66f68b4d9e8e66b42f9876150a3371558f98fa32222ffaa5bced76406f8"}, - {file = "setuptools-75.2.0.tar.gz", hash = "sha256:753bb6ebf1f465a1912e19ed1d41f403a79173a9acf66a42e7e6aec45c3c16ec"}, + {file = "setuptools-75.6.0-py3-none-any.whl", hash = "sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d"}, + {file = "setuptools-75.6.0.tar.gz", hash = "sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6"}, ] [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.7.0)"] +core = ["importlib_metadata (>=6)", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib_metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (>=1.12,<1.14)", "pytest-mypy"] [[package]] name = "six" @@ -3664,13 +3643,13 @@ typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] [[package]] name = "tinycss2" -version = "1.3.0" +version = "1.4.0" description = "A tiny CSS parser" optional = false python-versions = ">=3.8" files = [ - {file = "tinycss2-1.3.0-py3-none-any.whl", hash = "sha256:54a8dbdffb334d536851be0226030e9505965bb2f30f21a4a82c55fb2a80fae7"}, - {file = "tinycss2-1.3.0.tar.gz", hash = "sha256:152f9acabd296a8375fbca5b84c961ff95971fcfc32e79550c8df8e29118c54d"}, + {file = "tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289"}, + {file = "tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7"}, ] [package.dependencies] @@ -3682,33 +3661,33 @@ test = ["pytest", "ruff"] [[package]] name = "tomli" -version = "2.0.2" +version = "2.1.0" description = "A lil' TOML parser" optional = false python-versions = ">=3.8" files = [ - {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, - {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, + {file = "tomli-2.1.0-py3-none-any.whl", hash = "sha256:a5c57c3d1c56f5ccdf89f6523458f60ef716e210fc47c4cfb188c5ba473e0391"}, + {file = "tomli-2.1.0.tar.gz", hash = "sha256:3f646cae2aec94e17d04973e4249548320197cfabdf130015d023de4b74d8ab8"}, ] [[package]] name = "tornado" -version = "6.4.1" +version = "6.4.2" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." optional = false python-versions = ">=3.8" files = [ - {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8"}, - {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698"}, - {file = "tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d"}, - {file = "tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7"}, - {file = "tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9"}, + {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1"}, + {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a017d239bd1bb0919f72af256a970624241f070496635784d9bf0db640d3fec"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36e62ce8f63409301537222faffcef7dfc5284f27eec227389f2ad11b09d946"}, + {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:304463bd0772442ff4d0f5149c6f1c2135a1fae045adf070821c6cdc76980634"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:c82c46813ba483a385ab2a99caeaedf92585a1f90defb5693351fa7e4ea0bf73"}, + {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:932d195ca9015956fa502c6b56af9eb06106140d844a335590c1ec7f5277d10c"}, + {file = "tornado-6.4.2-cp38-abi3-win32.whl", hash = "sha256:2876cef82e6c5978fde1e0d5b1f919d756968d5b4282418f3146b79b58556482"}, + {file = "tornado-6.4.2-cp38-abi3-win_amd64.whl", hash = "sha256:908b71bf3ff37d81073356a5fadcc660eb10c1476ee6e2725588626ce7e5ca38"}, + {file = "tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b"}, ] [[package]] @@ -3864,13 +3843,13 @@ zmq = ["zmq"] [[package]] name = "virtualenv" -version = "20.27.0" +version = "20.27.1" description = "Virtual Python Environment builder" optional = false python-versions = ">=3.8" files = [ - {file = "virtualenv-20.27.0-py3-none-any.whl", hash = "sha256:44a72c29cceb0ee08f300b314848c86e57bf8d1f13107a5e671fb9274138d655"}, - {file = "virtualenv-20.27.0.tar.gz", hash = "sha256:2ca56a68ed615b8fe4326d11a0dca5dfbe8fd68510fb6c6349163bed3c15f2b2"}, + {file = "virtualenv-20.27.1-py3-none-any.whl", hash = "sha256:f11f1b8a29525562925f745563bfd48b189450f61fb34c4f9cc79dd5aa32a1f4"}, + {file = "virtualenv-20.27.1.tar.gz", hash = "sha256:142c6be10212543b32c6c45d3d3893dff89112cc588b7d0879ae5a1ec03a47ba"}, ] [package.dependencies] @@ -3895,19 +3874,15 @@ files = [ [[package]] name = "webcolors" -version = "24.8.0" +version = "24.11.1" description = "A library for working with the color formats defined by HTML and CSS." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "webcolors-24.8.0-py3-none-any.whl", hash = "sha256:fc4c3b59358ada164552084a8ebee637c221e4059267d0f8325b3b560f6c7f0a"}, - {file = "webcolors-24.8.0.tar.gz", hash = "sha256:08b07af286a01bcd30d583a7acadf629583d1f79bfef27dd2c2c5c263817277d"}, + {file = "webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9"}, + {file = "webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6"}, ] -[package.extras] -docs = ["furo", "sphinx", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-notfound-page", "sphinxext-opengraph"] -tests = ["coverage[toml]"] - [[package]] name = "webencodings" version = "0.5.1" @@ -3965,4 +3940,4 @@ preprocessing = [] [metadata] lock-version = "2.0" python-versions = ">=3.10,<3.13" -content-hash = "d8f1ab74bcda4891e9d5acc6b00d4186884639607cdb3d2f30eb86f5b38742fc" +content-hash = "021837e1f5e10af896165f7078bc0e1ae871108215ddce09c91f8f5b9b187e4b" diff --git a/pyproject.toml b/pyproject.toml index ca4a350..380b280 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,10 +30,8 @@ bigtree = "^0.12.2" aioftp = "^0.21.4" humanize = "^4.8.0" typing-extensions = "^4.9.0" -compose-go = "^2.29.1" [tool.poetry.group.dev.dependencies] -compose-go = "^2.21.0" pytest = ">=6.1.0" black = "^22.6.0" flake8 = "^5.0.4" From 6b848f7ef846bd2bd8cb6792e325bda552ae7f2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=A3=20Bida=20Vacaro?= Date: Mon, 25 Nov 2024 15:02:05 -0300 Subject: [PATCH 9/9] linting pt.3 final --- .github/workflows/python-package.yml | 1 + Makefile | 3 +-- docker/Dockerfile | 6 +++-- pysus/tests/test_decoders.py | 36 +++++++++++++++++----------- pysus/tests/test_ftp.py | 29 +++++++++++----------- pysus/tests/test_ibge.py | 12 +++++----- 6 files changed, 48 insertions(+), 39 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 42ce4c6..e335718 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -35,6 +35,7 @@ jobs: - name: Run jupyterlab with PySUS run: | make run-jupyter-pysus + # make test-jupyter-pysus ## takes too long - name: Linting & Tests run: | diff --git a/Makefile b/Makefile index 7606bb3..cf48908 100644 --- a/Makefile +++ b/Makefile @@ -48,11 +48,10 @@ down-jupyter-pysus: ## stop and remove containers for all services #* Tests .PHONY: test-jupyter-pysus test-jupyter-pysus: ## run pytest for notebooks inside jupyter container - $(DOCKER) exec -T jupyter bash /test_notebooks.sh + $(DOCKER) exec -T jupyter pytest -vv --nbmake .PHONY: test-pysus test-pysus: ## run tests quickly with the default Python - cp docs/source/**/*.ipynb pysus/Notebooks poetry run pytest -vv pysus/tests/ # RELEASE diff --git a/docker/Dockerfile b/docker/Dockerfile index fd03b3a..8269439 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -30,6 +30,10 @@ RUN useradd -ms /bin/bash pysus \ && chmod -R a+rwx /opt/conda /tmp \ && sudo chown -R pysus:pysus /usr/src +USER pysus + +RUN mkdir -p /home/pysus/Notebooks/ + COPY --chown=pysus:pysus conda/dev.yaml /tmp/dev.yaml COPY --chown=pysus:pysus docker/scripts/entrypoint.sh /entrypoint.sh COPY --chown=pysus:pysus docker/scripts/poetry-install.sh /tmp/poetry-install.sh @@ -38,8 +42,6 @@ COPY --chown=pysus:pysus pysus /usr/src/pysus COPY --chown=pysus:pysus docs/source/**/*.ipynb /home/pysus/Notebooks/ COPY --chown=pysus:pysus docs/source/data /home/pysus/Notebooks/ -USER pysus - RUN mamba env create -n $ENV_NAME --file /tmp/dev.yaml \ && mamba clean -afy diff --git a/pysus/tests/test_decoders.py b/pysus/tests/test_decoders.py index 8f3e994..2ced897 100644 --- a/pysus/tests/test_decoders.py +++ b/pysus/tests/test_decoders.py @@ -10,7 +10,7 @@ import numpy as np import pandas as pd import pytest -from numpy.testing import * +from numpy.testing import * # noqa from pysus.online_data.SIM import download, get_CID10_chapters_table from pysus.preprocessing import decoders from pysus.preprocessing.SIM import ( @@ -43,28 +43,36 @@ def test_decodifica_idade_retorna_em_anos(self): @pytest.mark.timeout(10) def test_decodifica_lista_idades_retorna_em_anos(self): res = decoders.decodifica_idade_SINAN([4010] * 3, unidade="Y") - assert_array_equal(res, np.array([10] * 3)) + assert_array_equal(res, np.array([10] * 3)) # noqa res = decoders.decodifica_idade_SINAN([3120] * 4, unidade="Y") - assert_array_equal(res, np.array([10] * 4)) + assert_array_equal(res, np.array([10] * 4)) # noqa res = decoders.decodifica_idade_SINAN([2365] * 2, unidade="Y") - assert_array_equal(res, np.array([1, 1])) + assert_array_equal(res, np.array([1, 1])) # noqa res = decoders.decodifica_idade_SINAN([1480] * 5, unidade="Y") - assert_array_almost_equal(res, np.array([0.0547] * 5), decimal=3) + assert_array_almost_equal( # noqa + res, np.array([0.0547] * 5), decimal=3 + ) # noqa @pytest.mark.timeout(10) def test_decodifica_idade_retorna_em_anos_SIM(self): res = decoders.decodifica_idade_SIM(["501"], unidade="Y") - assert_array_equal(res, np.array([101])) + assert_array_equal(res, np.array([101])) # noqa res = decoders.decodifica_idade_SIM(["401"] * 2, unidade="Y") - assert_array_equal(res, np.array([1] * 2)) + assert_array_equal(res, np.array([1] * 2)) # noqa res = decoders.decodifica_idade_SIM(["311"] * 3, unidade="Y") - assert_array_almost_equal(res, np.array([0.904109589] * 3), decimal=3) + assert_array_almost_equal( # noqa + res, np.array([0.904109589] * 3), decimal=3 + ) # noqa res = decoders.decodifica_idade_SIM(["224"] * 4, unidade="Y") - assert_array_almost_equal(res, np.array([0.065753425] * 4), decimal=3) + assert_array_almost_equal( # noqa + res, np.array([0.065753425] * 4), decimal=3 + ) # noqa res = decoders.decodifica_idade_SIM(["130"] * 5, unidade="Y") - assert_array_almost_equal(res, np.array([0.00274] * 5), decimal=3) + assert_array_almost_equal( # noqa + res, np.array([0.00274] * 5), decimal=3 + ) # noqa res = decoders.decodifica_idade_SIM(["010"] * 6, unidade="m") - assert_array_almost_equal(res, np.array([10.0] * 6)) + assert_array_almost_equal(res, np.array([10.0] * 6)) # noqa @pytest.mark.timeout(10) def test_verifica_geocodigo(self): @@ -106,7 +114,7 @@ def test_get_cid_chapter(self): results = test_causes["causas"].map( lambda x: get_CID10_code(code_index, x) ) - assert_array_equal( + assert_array_equal( # noqa results, [1, 1, 2, -1, 3, 7, 7, 8, -1, 20, 20, -1, 22] ) @@ -136,7 +144,7 @@ def test_redistribute(self): counts = redistribute_missing(counts, variables) sum_redistributed = counts["COUNTS"].sum() - assert_almost_equal(sum_original, sum_redistributed, 10) + assert_almost_equal(sum_original, sum_redistributed, 10) # noqa sample = ( counts[counts["COUNTS"] != 0]["COUNTS"] @@ -150,7 +158,7 @@ def test_redistribute(self): ) sum_redistributed = counts["COUNTS"].sum() - assert_almost_equal(sum_original, sum_redistributed, 10) + assert_almost_equal(sum_original, sum_redistributed, 10) # noqa sample = ( counts[counts["COUNTS"] != 0]["COUNTS"] diff --git a/pysus/tests/test_ftp.py b/pysus/tests/test_ftp.py index de98cef..19e1e01 100644 --- a/pysus/tests/test_ftp.py +++ b/pysus/tests/test_ftp.py @@ -2,19 +2,18 @@ from pathlib import Path import pandas as pd - -from pysus.ftp import File, Directory, Database, CACHE from pysus.data.local import ParquetSet +from pysus.ftp import CACHE, Database, Directory, File from pysus.ftp.databases import ( ciha, cnes, - pni, ibge_datasus, - sinan, - sih, - sinasc, + pni, sia, + sih, sim, + sinan, + sinasc, ) @@ -79,7 +78,7 @@ def test_ciha(self): self.assertTrue(database.name == "CIHA") self.assertSetEqual( set(database.describe(database.files[0])), - {'group', 'last_update', 'month', 'name', 'size', 'uf', 'year'} + {"group", "last_update", "month", "name", "size", "uf", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 4) @@ -89,7 +88,7 @@ def test_cnes(self): self.assertTrue(database.name == "CNES") self.assertSetEqual( set(database.describe(database.files[0])), - {'group', 'last_update', 'month', 'name', 'size', 'uf', 'year'} + {"group", "last_update", "month", "name", "size", "uf", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 4) @@ -99,7 +98,7 @@ def test_pni(self): self.assertTrue(database.name == "PNI") self.assertSetEqual( set(database.describe(database.files[0])), - {'group', 'last_update', 'name', 'size', 'uf', 'year'} + {"group", "last_update", "name", "size", "uf", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 3) @@ -109,7 +108,7 @@ def test_ibge_datasus(self): self.assertTrue(database.name == "IBGE-DataSUS") self.assertSetEqual( set(database.describe(database.files[0])), - {'last_update', 'name', 'size', 'year'} + {"last_update", "name", "size", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 1) @@ -119,7 +118,7 @@ def test_sinan(self): self.assertTrue(database.name == "SINAN") self.assertSetEqual( set(database.describe(database.files[0])), - {'disease', 'last_update', 'name', 'size', 'year'} + {"disease", "last_update", "name", "size", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 2) @@ -129,7 +128,7 @@ def test_sih(self): self.assertTrue(database.name == "SIH") self.assertSetEqual( set(database.describe(database.files[0])), - {'group', 'last_update', 'month', 'name', 'size', 'uf', 'year'} + {"group", "last_update", "month", "name", "size", "uf", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 4) @@ -139,7 +138,7 @@ def test_sinasc(self): self.assertTrue(database.name == "SINASC") self.assertSetEqual( set(database.describe(database.files[0])), - {'group', 'last_update', 'name', 'size', 'uf', 'year'} + {"group", "last_update", "name", "size", "uf", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 3) @@ -149,7 +148,7 @@ def test_sia(self): self.assertTrue(database.name == "SIA") self.assertSetEqual( set(database.describe(database.files[0])), - {'group', 'last_update', 'month', 'name', 'size', 'uf', 'year'} + {"group", "last_update", "month", "name", "size", "uf", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 4) @@ -159,6 +158,6 @@ def test_sim(self): self.assertTrue(database.name == "SIM") self.assertSetEqual( set(database.describe(database.files[0])), - {'group', 'last_update', 'name', 'size', 'uf', 'year'} + {"group", "last_update", "name", "size", "uf", "year"}, ) self.assertEqual(len(database.format(database.files[0])), 3) diff --git a/pysus/tests/test_ibge.py b/pysus/tests/test_ibge.py index 4623cbc..f20c5fe 100644 --- a/pysus/tests/test_ibge.py +++ b/pysus/tests/test_ibge.py @@ -59,12 +59,12 @@ def test_FetchData(self): @pytest.mark.timeout(120) def test_get_population(self): - l = IBGE.get_population(year=2021, source="POP") - self.assertEqual(type(l), pd.DataFrame) - self.assertEqual(len(l), 5570) - l = IBGE.get_population(year=2012, source="projpop") - self.assertEqual(type(l), pd.DataFrame) - self.assertEqual(len(l), 182) + l1 = IBGE.get_population(year=2021, source="POP") + self.assertEqual(type(l1), pd.DataFrame) + self.assertEqual(len(l1), 5570) + l2 = IBGE.get_population(year=2012, source="projpop") + self.assertEqual(type(l2), pd.DataFrame) + self.assertEqual(len(l2), 182) if __name__ == "__main__":