diff --git a/CNAME b/CNAME deleted file mode 100644 index 01ea0fe..0000000 --- a/CNAME +++ /dev/null @@ -1,2 +0,0 @@ -opentaba.info -jerusalem.opentaba.info diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md new file mode 100644 index 0000000..7e8b16b --- /dev/null +++ b/DEPLOYMENT.md @@ -0,0 +1,22 @@ +##Municipality Index File +The municipality index file resides in "data/index.js", and has some needed +information about each municipality. + +Mandatory fields: ++ "display" - the Hebrew (or whatever) display name for the municipality + +Optional fields: ++ "server" - the base url for the server that hosts this municipality's plans. + If not defined it is "http://opentaba-server-.herokuapp.com/" ++ "center" - the center point of the municipality's gush map ++ "bounds" - the boundaries to the municipality. the user will not be able + to go past these. ++ "file" - path in the repository to the municipality's gush map. + If not defined it is "https://api.github.com/repos/niryariv/israel_gushim/contents/.topojson" + This file will be downloaded using Github's contents API, so it must not + exceed 1MB in size. Files from other static hosts will probably be loaded fine + as long as the "Accept" header is ignored. ++ "fb_link" - link to the municipality's facebook page. + If not defined the facebook icon will open a "share on facebook" window ++ "twitter_link" - link to the municipality's twitter page. + If not defined the twitter icon will open a "tweet" window diff --git a/README.md b/README.md index 0993deb..df5cbf9 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -[![Build Status](https://travis-ci.org/niryariv/opentaba-client.png?branch=master)](https://travis-ci.org/niryariv/opentaba-client) Client code for OpenTaba - details will arrive soon, but the code is pretty simple to understand. If you came looking for the server side of opentaba It's [here](https://github.com/niryariv/opentaba-server). ##Testing: see [what's needed](tests/testing.md) with testing. ##Want to help? look at the issues. Lots of work here \ No newline at end of file +[![Build Status](https://travis-ci.org/niryariv/opentaba-client.png?branch=master)](https://travis-ci.org/niryariv/opentaba-client) Client code for OpenTaba - details will arrive soon, but the code is pretty simple to understand. If you came looking for the server side of opentaba It's [here](https://github.com/niryariv/opentaba-server). ##Testing see [what's needed](tests/testing.md) with testing. ##Production ###Architecture The production environment is made up of a github pages site per municipality, all being updated from one main repository's master branch: [niryariv/opentaba-client](http://github.com/niryariv/opentaba-client/). This is done mainly to support different subdomains for different municipalities, but also to provide the ability to modify certain municipalities' sites without modifying all of them. ###Maintenance Maintenance is done using [fabric](http://fabfile.org), by activating different tasks defined in fabfile.py (for a list of all tasks, run `fab -l`, and for details about a specific task run `fab -d `) To execute a task, run: `fab task-name:arg1,arg2...` or `fab task-name:arg1=val1,arg2=val2...` For step-by-step instructions on how to add a new municipality, check out [opentaba-server's Deployment Readme](http://github.com/niryariv/opentaba-server/blob/master/DEPLOYMENT.md#deploy-a-new-municipality) For information about the municipality index file's syntax, check out [The Deployment Readme](DEPLOYMENT.md) Main tasks: + create_site (site_name) : create a new github repo, add a new remote to the local git repository for the new repo, push (deploy) only to gh_pages branch, and edit the new repository's CNAME file for subdomain attaching. + delete_site (site_name) : delete a github repository and remove it from the local git repository's remotes. + deploy_client_all () : push all changes done in the local repository to all remote repositories defined in the remote "all_sites". ##Want to help? look at the issues. Lots of work here \ No newline at end of file diff --git a/app.js b/app.js index 61d7a41..169e6cb 100644 --- a/app.js +++ b/app.js @@ -1,6 +1,5 @@ // deprecating, replacing with serverless mode var RUNNING_LOCAL = (document.location.host.indexOf('localhost') > -1 || document.location.host.indexOf('127.0.0.1') > -1 || document.location.protocol == 'file:'); -var API_URL = RUNNING_LOCAL ? 'http://0.0.0.0:5000/' : 'http://opentaba-server.herokuapp.com/'; // get the requested url. we do this because the subdomains will just be frames redirecting to the main domain, and since we // can't do cross-site with them we can't just use parent.location @@ -16,6 +15,8 @@ if (muni == undefined) { muni = municipalities['jerusalem']; } +var API_URL = RUNNING_LOCAL ? 'http://0.0.0.0:5000/' : (muni.server == undefined) ? 'http://opentaba-server-' + muni_name + '.herokuapp.com/' : muni.server; + var gushim; var gushimLayer; leafletPip.bassackwards = true; @@ -176,6 +177,9 @@ function get_gush_by_addr(addr) { if (gid && gid.length > 0) { get_gush(gid[0].gushid); var pp = L.popup().setLatLng([lat, lon]).setContent('' + addr + '').openOn(map); + + // show search note after a successful search + $('#search-note-p').show(); } else { $('#search-error-p').html('לא נמצא גוש התואם לכתובת'); // TODO: when enabling multiple cities change the message to point users to try a differenct city } @@ -272,6 +276,7 @@ $(document).ready(function(){ function() { $('#scrobber').show(); $('#search-error-p').html(''); + $('#search-note-p').hide(); var search_val = $('#search-text').val(); @@ -281,7 +286,7 @@ $(document).ready(function(){ var result = find_gush(parseInt(search_val)); if (result) get_gush(parseInt(search_val)); - else + else $('#search-error-p').html('גוש מספר ' + search_val + ' לא נמצא במפה'); $('#scrobber').hide(); @@ -318,7 +323,7 @@ $(document).ready(function(){ }); -var map = L.map('map', { scrollWheelZoom: true, attributionControl: false }).setView(muni.center, DEFAULT_ZOOM); +var map = L.map('map', { scrollWheelZoom: true, attributionControl: false }); // tile_url = 'http://{s}.tile.cloudmade.com/424caca899ea4a53b055c5e3078524ca/997/256/{z}/{x}/{y}.png'; // tile_url = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png'; @@ -334,10 +339,11 @@ L.tileLayer(tile_url, { L.control.locate({position: 'topleft', keepCurrentZoomLevel: true}).addTo(map); $.ajax({ - url: muni.file, + url: (muni.file == undefined) ? 'https://api.github.com/repos/niryariv/israel_gushim/contents/' + muni_name + '.topojson' : muni.file, + headers: { Accept: 'application/vnd.github.raw' }, dataType: 'json' }).done(function(res) { - gushim = topojson.feature(res, res.objects.gushim).features; + gushim = topojson.feature(res, res.objects[muni_name]).features; gushimLayer = L.geoJson(gushim, { @@ -349,6 +355,10 @@ $.ajax({ } } ).addTo(map); + + // set center and boundaries as defined in the index.js file or according to the gushimLayer + map.setView((muni.center == undefined) ? gushimLayer.getBounds().getCenter() : muni.center, DEFAULT_ZOOM); + map.setMaxBounds((muni.bounds == undefined) ? gushimLayer.getBounds() : muni.bounds); // if the direct gush address mapping was used go ahead and jump to the wanted gush if (got_gushim_delegate) { diff --git a/css/stylesheet.css b/css/stylesheet.css index 7b18a11..5425c2d 100644 --- a/css/stylesheet.css +++ b/css/stylesheet.css @@ -26,11 +26,11 @@ body{ @font-face { font-family: 'Alef'; - src: url('font/Alef-bold.eot'); - src: url('font/Alef-bold.eot?#iefix') format('embedded-opentype'), - url('font/Alef-bold.woff') format('woff'), - url('font/Alef-bold.ttf') format('truetype'), - url('font/Alef-bold.svg#alefbold') format('svg'); + src: url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Bold.eot'); + src: url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Bold.eot?#iefix') format('embedded-opentype'), + url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Bold.woff2') format('woff2'), + url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Bold.woff') format('woff'), + url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Bold.ttf') format('truetype'); font-weight: bold; font-style: normal; @@ -38,11 +38,11 @@ body{ @font-face { font-family: 'Alef'; - src: url('font/Alef-regular.eot'); - src: url('font/Alef-regular.eot?#iefix') format('embedded-opentype'), - url('font/Alef-regular.woff') format('woff'), - url('font/Alef-regular.ttf') format('truetype'), - url('font/Alef-regular.svg#alefregular') format('svg'); + src: url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Regular.eot'); + src: url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Regular.eot?#iefix') format('embedded-opentype'), + url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Regular.woff2') format('woff2'), + url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Regular.woff') format('woff'), + url('//fonts.gstatic.com/ea/alefhebrew/v4/Alef-Regular.ttf') format('truetype'); font-weight: normal; font-style: normal; diff --git a/data/cities.js b/data/cities.js new file mode 100644 index 0000000..ca9f3df --- /dev/null +++ b/data/cities.js @@ -0,0 +1 @@ +var cities={"orakiva": {"JsonFile": "data/gushim/or.akiva.gush.js", "Heroku": "", "Name": "or.akiva", "Display": "אור עקיבא", "Center": [32.497068, 34.926202]}, "eilat": {"JsonFile": "data/gushim/eilat.gush.js", "Heroku": "", "Name": "eilat", "Display": "אילת", "Center": [29.526127, 34.936862]}, "elad": {"JsonFile": "data/gushim/elad.gush.js", "Heroku": "", "Name": "elad", "Display": "אלעד", "Center": [32.050830, 34.951382]}, "ariel": {"JsonFile": "data/gushim/ariel.gush.js", "Heroku": "", "Name": "ariel", "Display": "אריאל", "Center": [32.098749, 35.165782]}, "ashkelon": {"JsonFile": "data/gushim/ashkelon.gush.js", "Heroku": "", "Name": "ashkelon", "Display": "אשקלון", "Center": [31.665516, 34.575736]}, "beeryaakov": {"JsonFile": "data/gushim/beer.yaakov.gush.js", "Heroku": "", "Name": "beer.yaakov", "Display": "באר יעקב", "Center": [31.941981, 34.840188]}, "beersheva": {"JsonFile": "data/gushim/beer.sheva.gush.js", "Heroku": "http://ot-bsheva.herokuapp.com/", "Name": "beer.sheva", "Display": "באר שבע", "Center": [31.242583, 34.794570]}, "maalenaftali": {"JsonFile": "data/gushim/maale.naftali.gush.js", "Heroku": "", "Name": "maale.naftali", "Display": "בית ג'אן, ג'יש, חורפיש ומעלות תרשיחא", "Center": [33.009174, 35.324332]}, "beitshemesh": {"JsonFile": "data/gushim/beit.shemesh.gush.js", "Heroku": "", "Name": "beit.shemesh", "Display": "בית שמש", "Center": [31.721856, 34.979223]}, "bneibrak": {"JsonFile": "data/gushim/bnei.brak.gush.js", "Heroku": "", "Name": "bnei.brak", "Display": "בני ברק", "Center": [32.086798, 34.838869]}, "binyamina": {"JsonFile": "data/gushim/binyamina.gush.js", "Heroku": "", "Name": "binyamina", "Display": "בנימינה", "Center": [32.525732, 34.952369]}, "batyam": {"JsonFile": "data/gushim/bat.yam.gush.js", "Heroku": "", "Name": "bat.yam", "Display": "בת-ים", "Center": [32.013315, 34.747690]}, "givatada": {"JsonFile": "data/gushim/givat.ada.gush.js", "Heroku": "", "Name": "givat.ada", "Display": "גבעת עדה", "Center": [32.526699, 35.001303]}, "gedera": {"JsonFile": "data/gushim/gedera.gush.js", "Heroku": "", "Name": "gedera", "Display": "גדרה", "Center": [31.814558, 34.781026]},"jaserazarka": {"JsonFile": "data/gushim/jaser.a.zarka.gush.js", "Heroku": "", "Name": "jaser.a.zarka", "Display": "ג'סר א-זרקא", "Center": [32.538683, 34.908600]}, "herzeliya": {"JsonFile": "data/gushim/herzeliya.gush.js", "Heroku": "", "Name": "herzeliya", "Display": "הרצליה", "Center": [32.173471, 34.832054]}, "zichronyaakov": {"JsonFile": "data/gushim/zichron.yaakov.gush.js", "Heroku": "", "Name": "zichron.yaakov", "Display": "זכרון יעקב", "Center": [32.565226, 34.962361]}, "holon": {"JsonFile": "data/gushim/holon.gush.js", "Heroku": "", "Name": "holon", "Display": "חולון", "Center": [32.015282, 34.781481]}, "haifa": {"JsonFile": "data/gushim/haifa.gush.js", "Heroku": "", "Name": "haifa", "Display": "חיפה", "Center": [32.821019, 35.023265]}, "tveria": {"JsonFile": "data/gushim/tveria.gush.js", "Heroku": "", "Name": "tveria", "Display": "טבריה", "Center": [32.795940, 35.536360]}, "yehud": {"JsonFile": "data/gushim/yehud.gush.js", "Heroku": "", "Name": "yehud", "Display": "יהוד מונוסון", "Center": [32.032119, 34.893166]}, "jerusalem": {"JsonFile": "data/gushim/jerusalem.gush.js", "Heroku": "http://opentaba-server.herokuapp.com/", "Name": "jerusalem", "Display": "ירושלים", "Center": [31.800657, 35.175851]}, "kochavyair": {"JsonFile": "data/gushim/kochav.yair.gush.js", "Heroku": "", "Name": "kochav.yair", "Display": "כוכב יאיר", "Center": [32.226399, 34.999196]}, "nazratillit": {"JsonFile": "data/gushim/nazrat.illit.gush.js", "Heroku": "", "Name": "nazrat.illit", "Display": "נצרת עילית", "Center": [32.725592, 35.347938]}, "sachnin": {"JsonFile": "data/gushim/sachnin.gush.js", "Heroku": "", "Name": "sachnin", "Display": "סכנין", "Center": [32.866313, 35.299124]}, "arabe": {"JsonFile": "data/gushim/arabe.gush.js", "Heroku": "", "Name": "arabe", "Display": "עראבה", "Center": [32.854521, 35.353199]}, "faradis": {"JsonFile": "data/gushim/faradis.gush.js", "Heroku": "", "Name": "faradis", "Display": "פורדיס", "Center": [32.598924, 34.953535]}, "pardeshanacarcur": {"JsonFile": "data/gushim/pardes.hana.carcur.gush.js", "Heroku": "", "Name": "pardes.hana.carcur", "Display": "פרדס חנה-כרכור", "Center": [32.472061, 34.980023]}, "petachtikva": {"JsonFile": "data/gushim/petach.tikva.gush.js", "Heroku": "", "Name": "petach.tikva", "Display": "פתח תקווה", "Center": [32.089328, 34.892497]}, "kiryatarba": {"JsonFile": "data/gushim/kiryat.arba.gush.js", "Heroku": "", "Name": "kiryat.arba", "Display": "קרית ארבע", "Center": [31.541449, 35.139595]}, "kiryatgat": {"JsonFile": "data/gushim/kiryat.gat.gush.js", "Heroku": "", "Name": "kiryat.gat", "Display": "קרית גת", "Center": [31.601572, 34.784268]}, "rishon": {"JsonFile": "data/gushim/rishon.gush.js", "Heroku": "", "Name": "rishon", "Display": "ראשון לציון", "Center": [31.971751, 34.781867]}, "rehovot": {"JsonFile": "data/gushim/rehovot.gush.js", "Heroku": "", "Name": "rehovot", "Display": "רחובות", "Center": [31.895751, 34.805375]}, "ramatgan": {"JsonFile": "data/gushim/ramat.gan.gush.js", "Heroku": "", "Name": "ramat.gan", "Display": "רמת גן", "Center": [32.070302, 34.822833]}, "ramathasharon": {"JsonFile": "data/gushim/ramat.hasharon.gush.js", "Heroku": "", "Name": "ramat.hasharon", "Display": "רמת השרון", "Center": [32.138317, 34.830057]}, "sderot": {"JsonFile": "data/gushim/sderot.gush.js", "Heroku": "", "Name": "sderot", "Display": "שדרות", "Center": [31.536406, 34.605781]}, "telaviv": {"JsonFile": "data/gushim/tel.aviv.gush.js", "Heroku": "", "Name": "tel.aviv", "Display": "תל אביב-יפו", "Center": [32.081958, 34.801029]}} diff --git a/data/contrib/README.md b/data/contrib/README.md index bb9292e..a6379f2 100644 --- a/data/contrib/README.md +++ b/data/contrib/README.md @@ -1 +1 @@ -###Contributed gushim maps These are gushim maps contributed to the project by various sources. Original versions are in original directory. \ No newline at end of file +###Contributed gushim maps These are gushim maps contributed to the project by various sources. Only original versions are kept here. diff --git a/data/contrib/givataiim.gush.js b/data/contrib/givataiim.gush.js new file mode 100644 index 0000000..5941b94 --- /dev/null +++ b/data/contrib/givataiim.gush.js @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"geometry":{"type":"Polygon","coordinates":[[[34.810069,32.075506,0],[34.810068,32.075417,0],[34.809938,32.075402,0],[34.80982,32.075372,0],[34.809904,32.075212,0],[34.809885,32.075191,0],[34.80991,32.07517,0],[34.809986,32.075087,0],[34.809935,32.075071,0],[34.809872,32.075044,0],[34.80983,32.07501,0],[34.809789,32.074967,0],[34.809761,32.074904,0],[34.809751,32.074867,0],[34.80973,32.074813,0],[34.809697,32.074787,0],[34.809666,32.074775,0],[34.809642,32.074766,0],[34.809551,32.074735,0],[34.809542,32.074713,0],[34.809512,32.074675,0],[34.809486,32.074649,0],[34.80946,32.074635,0],[34.809393,32.074593,0],[34.809355,32.074571,0],[34.809301,32.074544,0],[34.809248,32.074505,0],[34.809202,32.074467,0],[34.80915,32.074463,0],[34.808714,32.074426,0],[34.808668,32.074418,0],[34.808628,32.074413,0],[34.808552,32.074407,0],[34.808395,32.074395,0],[34.808298,32.074387,0],[34.808196,32.074378,0],[34.808083,32.074369,0],[34.807971,32.07436,0],[34.807909,32.074355,0],[34.807739,32.074342,0],[34.807514,32.074324,0],[34.807253,32.074303,0],[34.807159,32.074295,0],[34.807079,32.074288,0],[34.806864,32.074272,0],[34.806579,32.074252,0],[34.806503,32.074245,0],[34.806062,32.074208,0],[34.805783,32.074186,0],[34.805573,32.07417,0],[34.805367,32.074154,0],[34.804995,32.074122,0],[34.804601,32.074089,0],[34.804125,32.07405,0],[34.803793,32.074023,0],[34.803687,32.074015,0],[34.803319,32.073988,0],[34.802988,32.073963,0],[34.802958,32.073961,0],[34.802907,32.073956,0],[34.802893,32.073955,0],[34.80256,32.073931,0],[34.802507,32.073927,0],[34.802271,32.07391,0],[34.802261,32.07391,0],[34.802102,32.073896,0],[34.801813,32.073877,0],[34.801774,32.073874,0],[34.801338,32.07384,0],[34.80118,32.073828,0],[34.801151,32.073826,0],[34.801031,32.073816,0],[34.801601,32.075288,0],[34.801669,32.075463,0],[34.801706,32.075556,0],[34.80222,32.076817,0],[34.802308,32.07682,0],[34.802687,32.07683,0],[34.802992,32.076836,0],[34.803066,32.076839,0],[34.803153,32.076841,0],[34.803254,32.076844,0],[34.803391,32.076848,0],[34.803532,32.076852,0],[34.803599,32.076854,0],[34.803713,32.076856,0],[34.803834,32.07686,0],[34.803943,32.076864,0],[34.804101,32.07687,0],[34.804302,32.076877,0],[34.804372,32.07688,0],[34.804443,32.076882,0],[34.804501,32.076884,0],[34.804575,32.076885,0],[34.80464,32.076886,0],[34.805419,32.076913,0],[34.805872,32.076994,0],[34.805879,32.076942,0],[34.805883,32.076897,0],[34.805883,32.076862,0],[34.805883,32.076779,0],[34.805891,32.076624,0],[34.805895,32.076539,0],[34.805895,32.076498,0],[34.805883,32.076371,0],[34.80588,32.076351,0],[34.805848,32.07622,0],[34.805809,32.076097,0],[34.805795,32.076063,0],[34.805771,32.075992,0],[34.805751,32.075936,0],[34.805735,32.075893,0],[34.805723,32.075866,0],[34.805688,32.075781,0],[34.805661,32.075713,0],[34.805643,32.075667,0],[34.805611,32.075594,0],[34.80557,32.0755,0],[34.805517,32.0754,0],[34.805454,32.075287,0],[34.805405,32.075214,0],[34.805561,32.075189,0],[34.80567,32.075169,0],[34.805725,32.075163,0],[34.805758,32.075161,0],[34.80599,32.075169,0],[34.806455,32.075188,0],[34.806533,32.075191,0],[34.80673,32.075198,0],[34.806935,32.075206,0],[34.807006,32.075208,0],[34.807043,32.075209,0],[34.80712,32.075212,0],[34.807216,32.075215,0],[34.807301,32.07522,0],[34.807432,32.07525,0],[34.807482,32.07526,0],[34.807635,32.075292,0],[34.807799,32.075322,0],[34.807842,32.075328,0],[34.807993,32.075345,0],[34.808085,32.075356,0],[34.808137,32.075284,0],[34.808288,32.075291,0],[34.808576,32.075308,0],[34.808674,32.075314,0],[34.80886,32.075325,0],[34.808983,32.075329,0],[34.809033,32.075347,0],[34.809214,32.075416,0],[34.809295,32.075448,0],[34.809491,32.075526,0],[34.809656,32.075589,0],[34.809688,32.075602,0],[34.809867,32.075671,0],[34.809944,32.075701,0],[34.81005,32.075701,0],[34.810187,32.075699,0],[34.810329,32.075698,0],[34.81045,32.075698,0],[34.810409,32.075683,0],[34.810367,32.075669,0],[34.810344,32.075659,0],[34.810324,32.075651,0],[34.810279,32.075649,0],[34.810206,32.075646,0],[34.810159,32.075645,0],[34.810135,32.075631,0],[34.810098,32.075612,0],[34.810084,32.075558,0],[34.810069,32.075506,0]]]},"type":"Feature","properties":{"Name":"6155"}},{"geometry":{"type":"Polygon","coordinates":[[[34.818283,32.079874,0],[34.818318,32.079892,0],[34.818392,32.079918,0],[34.81852,32.079968,0],[34.818608,32.080001,0],[34.818667,32.080018,0],[34.818764,32.080055,0],[34.818816,32.080072,0],[34.818919,32.080115,0],[34.818958,32.080131,0],[34.819015,32.080151,0],[34.81911,32.080184,0],[34.819248,32.080234,0],[34.819292,32.080251,0],[34.819325,32.080265,0],[34.819392,32.080288,0],[34.819472,32.080319,0],[34.819528,32.080341,0],[34.819663,32.080393,0],[34.819797,32.08044,0],[34.81985,32.080456,0],[34.819865,32.080461,0],[34.819959,32.080497,0],[34.820048,32.080534,0],[34.820034,32.080485,0],[34.820004,32.080369,0],[34.819978,32.080304,0],[34.819954,32.080222,0],[34.819916,32.080091,0],[34.819872,32.07996,0],[34.819833,32.079831,0],[34.819807,32.079756,0],[34.819792,32.079695,0],[34.819788,32.079676,0],[34.819755,32.07956,0],[34.819742,32.079527,0],[34.819729,32.079466,0],[34.819721,32.079426,0],[34.819709,32.079372,0],[34.819694,32.079287,0],[34.819679,32.079212,0],[34.819662,32.079109,0],[34.819653,32.079012,0],[34.81964,32.078934,0],[34.819621,32.078882,0],[34.819608,32.078849,0],[34.819571,32.078757,0],[34.819539,32.078676,0],[34.819524,32.078628,0],[34.81948,32.078494,0],[34.819452,32.078391,0],[34.819442,32.078365,0],[34.819398,32.078244,0],[34.819372,32.078157,0],[34.81936,32.07813,0],[34.819355,32.078109,0],[34.819306,32.077979,0],[34.819284,32.077908,0],[34.819259,32.077844,0],[34.819216,32.07772,0],[34.819209,32.077696,0],[34.819181,32.077593,0],[34.819129,32.07746,0],[34.81911,32.07741,0],[34.819093,32.077318,0],[34.819073,32.077195,0],[34.819049,32.077067,0],[34.819043,32.077,0],[34.819024,32.076932,0],[34.818992,32.076801,0],[34.818956,32.076666,0],[34.818926,32.076539,0],[34.818891,32.076405,0],[34.818859,32.076271,0],[34.818826,32.076143,0],[34.818791,32.076011,0],[34.818787,32.075989,0],[34.818747,32.075997,0],[34.818701,32.076006,0],[34.818516,32.076043,0],[34.818407,32.07606,0],[34.818261,32.076096,0],[34.818135,32.076123,0],[34.817906,32.076185,0],[34.817833,32.076201,0],[34.817789,32.076219,0],[34.81741,32.07633,0],[34.817427,32.076353,0],[34.817549,32.07649,0],[34.817127,32.076762,0],[34.817016,32.076645,0],[34.816895,32.076519,0],[34.816768,32.076385,0],[34.816714,32.076328,0],[34.816553,32.076159,0],[34.816436,32.076101,0],[34.816387,32.076136,0],[34.816229,32.076249,0],[34.816129,32.076321,0],[34.816024,32.076395,0],[34.81583,32.076534,0],[34.815752,32.07659,0],[34.81573,32.076606,0],[34.815636,32.07667,0],[34.815436,32.076817,0],[34.815225,32.076968,0],[34.815037,32.077068,0],[34.814854,32.077154,0],[34.81468,32.077215,0],[34.814565,32.077241,0],[34.814429,32.077241,0],[34.814307,32.077232,0],[34.814122,32.077177,0],[34.814061,32.077134,0],[34.813969,32.07707,0],[34.813872,32.076986,0],[34.813827,32.076945,0],[34.813728,32.076865,0],[34.813702,32.076836,0],[34.813566,32.076712,0],[34.81354,32.076691,0],[34.813302,32.076483,0],[34.813256,32.076445,0],[34.812983,32.076217,0],[34.81274,32.076069,0],[34.812548,32.075952,0],[34.812296,32.075799,0],[34.812306,32.0757,0],[34.812274,32.0757,0],[34.812074,32.0757,0],[34.811857,32.0757,0],[34.811709,32.0757,0],[34.811552,32.0757,0],[34.811399,32.0757,0],[34.811251,32.0757,0],[34.8111,32.0757,0],[34.810954,32.0757,0],[34.810803,32.0757,0],[34.810662,32.0757,0],[34.8105,32.0757,0],[34.81045,32.075698,0],[34.810329,32.075698,0],[34.810187,32.075699,0],[34.81005,32.075701,0],[34.809944,32.075701,0],[34.809867,32.075671,0],[34.809688,32.075602,0],[34.809656,32.075589,0],[34.809491,32.075526,0],[34.809295,32.075448,0],[34.809214,32.075416,0],[34.809033,32.075347,0],[34.808983,32.075329,0],[34.80886,32.075325,0],[34.808674,32.075314,0],[34.808576,32.075308,0],[34.808288,32.075291,0],[34.808137,32.075284,0],[34.808085,32.075356,0],[34.807993,32.075345,0],[34.807842,32.075328,0],[34.807799,32.075322,0],[34.807635,32.075292,0],[34.807482,32.07526,0],[34.807432,32.07525,0],[34.807301,32.07522,0],[34.807216,32.075215,0],[34.80712,32.075212,0],[34.806935,32.075206,0],[34.80673,32.075198,0],[34.806533,32.075191,0],[34.806455,32.075188,0],[34.80599,32.075169,0],[34.805758,32.075161,0],[34.805725,32.075163,0],[34.80567,32.075169,0],[34.805561,32.075189,0],[34.805405,32.075214,0],[34.805451,32.075282,0],[34.805454,32.075287,0],[34.805487,32.075345,0],[34.805517,32.0754,0],[34.80557,32.0755,0],[34.805593,32.075552,0],[34.805611,32.075594,0],[34.805643,32.075667,0],[34.805661,32.075713,0],[34.805688,32.075781,0],[34.805714,32.075844,0],[34.805724,32.075866,0],[34.805735,32.075893,0],[34.805795,32.076063,0],[34.805809,32.076097,0],[34.805836,32.076182,0],[34.805848,32.07622,0],[34.80588,32.076351,0],[34.805883,32.076371,0],[34.805895,32.076498,0],[34.805895,32.076532,0],[34.805885,32.07675,0],[34.805883,32.076779,0],[34.805883,32.076889,0],[34.80588,32.076933,0],[34.805872,32.076994,0],[34.806261,32.077064,0],[34.806379,32.077095,0],[34.807198,32.07724,0],[34.807529,32.077296,0],[34.808036,32.077396,0],[34.808122,32.077413,0],[34.808581,32.077499,0],[34.808636,32.077511,0],[34.808778,32.077526,0],[34.808827,32.077531,0],[34.808893,32.077542,0],[34.809005,32.077557,0],[34.80905,32.077563,0],[34.809209,32.07758,0],[34.809435,32.077603,0],[34.809806,32.077649,0],[34.809839,32.077654,0],[34.809913,32.077662,0],[34.810241,32.077698,0],[34.810293,32.077705,0],[34.810563,32.077745,0],[34.810707,32.077762,0],[34.810872,32.077786,0],[34.81101,32.077802,0],[34.811308,32.077842,0],[34.81156,32.077877,0],[34.811888,32.077917,0],[34.813191,32.078078,0],[34.813264,32.078087,0],[34.813279,32.07809,0],[34.813342,32.078097,0],[34.813511,32.078117,0],[34.813604,32.07813,0],[34.813661,32.078148,0],[34.813724,32.078175,0],[34.813804,32.078205,0],[34.81395,32.078256,0],[34.81405,32.078295,0],[34.814075,32.078306,0],[34.814101,32.078314,0],[34.814226,32.078362,0],[34.814336,32.078402,0],[34.814371,32.078416,0],[34.814526,32.078471,0],[34.814645,32.078515,0],[34.814666,32.078523,0],[34.814801,32.078576,0],[34.81494,32.078626,0],[34.815003,32.078649,0],[34.815047,32.078665,0],[34.815085,32.07868,0],[34.815157,32.078709,0],[34.815209,32.078728,0],[34.815225,32.078736,0],[34.815377,32.078791,0],[34.815498,32.07884,0],[34.815518,32.078847,0],[34.815631,32.078888,0],[34.815662,32.0789,0],[34.815759,32.078939,0],[34.815796,32.078949,0],[34.815922,32.078997,0],[34.816008,32.079029,0],[34.816068,32.079048,0],[34.816166,32.079087,0],[34.816206,32.079099,0],[34.816238,32.079109,0],[34.816345,32.079148,0],[34.816459,32.07919,0],[34.816516,32.079211,0],[34.816648,32.079264,0],[34.816789,32.079317,0],[34.816939,32.079374,0],[34.817086,32.079428,0],[34.817199,32.079472,0],[34.81722,32.079477,0],[34.817234,32.079479,0],[34.817276,32.079492,0],[34.817353,32.079525,0],[34.817497,32.079579,0],[34.817634,32.07963,0],[34.817681,32.079649,0],[34.817731,32.079666,0],[34.817786,32.079689,0],[34.817925,32.079739,0],[34.817996,32.079765,0],[34.818069,32.079792,0],[34.818218,32.07985,0],[34.818239,32.079858,0],[34.818283,32.079874,0]]]},"type":"Feature","properties":{"Name":"6168"}},{"geometry":{"type":"Polygon","coordinates":[[[34.808461,32.06464,0],[34.808462,32.065274,0],[34.80855,32.065319,0],[34.808777,32.065439,0],[34.808851,32.065342,0],[34.808907,32.065273,0],[34.809128,32.065271,0],[34.809482,32.065267,0],[34.809744,32.065265,0],[34.810126,32.065262,0],[34.810157,32.065262,0],[34.810621,32.065257,0],[34.810815,32.065256,0],[34.811303,32.065251,0],[34.812487,32.065243,0],[34.812996,32.065248,0],[34.813089,32.065223,0],[34.813286,32.065188,0],[34.813494,32.06516,0],[34.813696,32.065133,0],[34.813927,32.065108,0],[34.814158,32.065079,0],[34.814367,32.065048,0],[34.814605,32.065001,0],[34.815018,32.06488,0],[34.814976,32.064777,0],[34.814859,32.064524,0],[34.814812,32.064421,0],[34.814565,32.063887,0],[34.814459,32.063657,0],[34.814337,32.063392,0],[34.81436,32.063276,0],[34.81438,32.06319,0],[34.814393,32.063136,0],[34.814413,32.063071,0],[34.814436,32.062996,0],[34.814465,32.062925,0],[34.814489,32.06286,0],[34.814521,32.062793,0],[34.81455,32.062729,0],[34.814583,32.062667,0],[34.814619,32.062599,0],[34.814659,32.062534,0],[34.814696,32.062475,0],[34.814742,32.062417,0],[34.814781,32.062367,0],[34.81483,32.062306,0],[34.814871,32.062254,0],[34.814924,32.062187,0],[34.81494,32.062171,0],[34.814978,32.062133,0],[34.81503,32.062079,0],[34.815082,32.062033,0],[34.815146,32.061976,0],[34.815204,32.061931,0],[34.815267,32.061881,0],[34.815301,32.061851,0],[34.815339,32.061817,0],[34.815363,32.061801,0],[34.815374,32.061777,0],[34.815378,32.061751,0],[34.815374,32.061726,0],[34.815362,32.061702,0],[34.815343,32.061682,0],[34.815318,32.061666,0],[34.81529,32.061657,0],[34.81526,32.061654,0],[34.81523,32.061657,0],[34.814612,32.061825,0],[34.814225,32.06193,0],[34.814141,32.061953,0],[34.813721,32.062067,0],[34.813815,32.062267,0],[34.813368,32.062272,0],[34.813364,32.062169,0],[34.81296,32.062274,0],[34.812324,32.062279,0],[34.811784,32.062424,0],[34.811692,32.062498,0],[34.811676,32.06251,0],[34.81166,32.062519,0],[34.811646,32.062529,0],[34.811636,32.062528,0],[34.811616,32.062527,0],[34.81159,32.062524,0],[34.811563,32.06249,0],[34.81157,32.06245,0],[34.811615,32.062286,0],[34.811463,32.062287,0],[34.810656,32.062292,0],[34.810467,32.062294,0],[34.810249,32.062295,0],[34.810179,32.062297,0],[34.809919,32.062298,0],[34.809769,32.0623,0],[34.809463,32.062303,0],[34.809157,32.062302,0],[34.808935,32.062304,0],[34.808516,32.062304,0],[34.808441,32.062304,0],[34.808443,32.062335,0],[34.808445,32.062585,0],[34.80845,32.062952,0],[34.80845,32.063188,0],[34.80845,32.063357,0],[34.808453,32.063494,0],[34.808457,32.063687,0],[34.808459,32.064003,0],[34.80846,32.064191,0],[34.80846,32.064382,0],[34.808324,32.064544,0],[34.808461,32.06464,0]]]},"type":"Feature","properties":{"Name":"6162"}},{"geometry":{"type":"Polygon","coordinates":[[[34.818159,32.057681,0],[34.818217,32.057875,0],[34.818408,32.057842,0],[34.818443,32.058048,0],[34.818475,32.058232,0],[34.818471,32.058274,0],[34.818446,32.058308,0],[34.818413,32.058324,0],[34.818392,32.058326,0],[34.818368,32.058325,0],[34.818354,32.058319,0],[34.818397,32.058469,0],[34.818474,32.058714,0],[34.818577,32.059044,0],[34.818591,32.059088,0],[34.818617,32.059169,0],[34.818675,32.059321,0],[34.818748,32.059339,0],[34.818878,32.059372,0],[34.81878,32.059632,0],[34.818705,32.05981,0],[34.818852,32.059845,0],[34.818901,32.05999,0],[34.819023,32.060018,0],[34.818961,32.0602,0],[34.818883,32.060423,0],[34.819063,32.060472,0],[34.819078,32.060521,0],[34.819138,32.060709,0],[34.819166,32.060791,0],[34.819302,32.061181,0],[34.819379,32.061401,0],[34.819453,32.06162,0],[34.819508,32.061754,0],[34.819559,32.06191,0],[34.819679,32.062257,0],[34.819694,32.062302,0],[34.819813,32.062639,0],[34.819886,32.062856,0],[34.820272,32.063957,0],[34.820324,32.064106,0],[34.82047,32.064521,0],[34.82053,32.064514,0],[34.826184,32.06378,0],[34.826152,32.063698,0],[34.825991,32.063247,0],[34.825892,32.062984,0],[34.825758,32.062625,0],[34.825678,32.062407,0],[34.825468,32.061891,0],[34.825334,32.061537,0],[34.825313,32.061477,0],[34.825298,32.061436,0],[34.825266,32.061345,0],[34.825252,32.061308,0],[34.825199,32.061157,0],[34.824937,32.060464,0],[34.824894,32.060357,0],[34.824781,32.060048,0],[34.824714,32.059843,0],[34.824715,32.059842,0],[34.824627,32.059583,0],[34.824598,32.05933,0],[34.824559,32.059068,0],[34.824546,32.058983,0],[34.824514,32.058812,0],[34.824493,32.058689,0],[34.824469,32.058563,0],[34.82443,32.058322,0],[34.824423,32.058243,0],[34.824371,32.057975,0],[34.824359,32.057897,0],[34.824347,32.057804,0],[34.824312,32.057606,0],[34.8243,32.057563,0],[34.824282,32.057449,0],[34.824222,32.057157,0],[34.824195,32.057041,0],[34.824151,32.056834,0],[34.824138,32.056771,0],[34.824123,32.056685,0],[34.82409,32.05661,0],[34.824029,32.056467,0],[34.824021,32.056433,0],[34.823965,32.056182,0],[34.823944,32.056079,0],[34.823912,32.055962,0],[34.82388,32.055802,0],[34.823822,32.055542,0],[34.823809,32.055498,0],[34.823764,32.055282,0],[34.823711,32.055048,0],[34.823711,32.055035,0],[34.823658,32.055048,0],[34.823634,32.055053,0],[34.823541,32.055071,0],[34.823505,32.055082,0],[34.823182,32.055148,0],[34.823021,32.055183,0],[34.822841,32.055217,0],[34.822604,32.055266,0],[34.822532,32.055281,0],[34.821971,32.055392,0],[34.821677,32.055452,0],[34.821594,32.055467,0],[34.821362,32.055514,0],[34.821129,32.055559,0],[34.821009,32.055584,0],[34.820942,32.055594,0],[34.81975,32.05584,0],[34.81968,32.055853,0],[34.819429,32.055903,0],[34.819346,32.05592,0],[34.819091,32.055967,0],[34.818848,32.05601,0],[34.818765,32.056036,0],[34.818813,32.05612,0],[34.818816,32.056156,0],[34.818805,32.056175,0],[34.818779,32.056188,0],[34.818551,32.056284,0],[34.818526,32.056293,0],[34.818099,32.056465,0],[34.818029,32.056484,0],[34.817887,32.056536,0],[34.817816,32.056572,0],[34.81785,32.056678,0],[34.817915,32.056888,0],[34.81798,32.057101,0],[34.818035,32.057286,0],[34.818096,32.057483,0],[34.818159,32.057681,0]]]},"type":"Feature","properties":{"Name":"6144"}},{"geometry":{"type":"Polygon","coordinates":[[[34.819755,32.072929,0],[34.819557,32.072934,0],[34.819359,32.07294,0],[34.819156,32.072948,0],[34.818961,32.072957,0],[34.818763,32.072965,0],[34.818517,32.07297,0],[34.818426,32.072979,0],[34.818406,32.073107,0],[34.818378,32.073267,0],[34.818347,32.073449,0],[34.818341,32.073484,0],[34.818316,32.073568,0],[34.818568,32.074959,0],[34.818777,32.075972,0],[34.819024,32.076973,0],[34.819085,32.077377,0],[34.819636,32.078922,0],[34.81973,32.079459,0],[34.819859,32.079453,0],[34.823467,32.079296,0],[34.82542,32.079229,0],[34.825481,32.079227,0],[34.82564,32.079226,0],[34.825948,32.079216,0],[34.826194,32.079209,0],[34.826517,32.079195,0],[34.826632,32.079189,0],[34.826922,32.079182,0],[34.826961,32.079058,0],[34.827011,32.078896,0],[34.82705,32.078738,0],[34.827091,32.078575,0],[34.827141,32.078403,0],[34.827205,32.078214,0],[34.827327,32.077788,0],[34.827494,32.077299,0],[34.827537,32.077193,0],[34.827555,32.077116,0],[34.827559,32.077076,0],[34.827623,32.076647,0],[34.827626,32.076593,0],[34.82766,32.076392,0],[34.827758,32.075501,0],[34.827772,32.075241,0],[34.827784,32.075018,0],[34.827799,32.074799,0],[34.827814,32.074639,0],[34.827815,32.074593,0],[34.827821,32.074481,0],[34.827832,32.074287,0],[34.827842,32.074112,0],[34.827849,32.073951,0],[34.827864,32.073798,0],[34.827874,32.073602,0],[34.827903,32.073085,0],[34.827938,32.072624,0],[34.827807,32.072627,0],[34.827595,32.072635,0],[34.82739,32.072644,0],[34.827188,32.072652,0],[34.826996,32.072658,0],[34.826791,32.072669,0],[34.826596,32.072669,0],[34.826404,32.072678,0],[34.826209,32.072686,0],[34.82601,32.072695,0],[34.825812,32.0727,0],[34.82556,32.072708,0],[34.825304,32.072716,0],[34.825041,32.072726,0],[34.824883,32.072732,0],[34.824567,32.072745,0],[34.824274,32.072758,0],[34.824009,32.072772,0],[34.823983,32.072773,0],[34.823828,32.072778,0],[34.823733,32.07278,0],[34.823663,32.072782,0],[34.823504,32.072787,0],[34.82339,32.072794,0],[34.823334,32.0728,0],[34.823262,32.072797,0],[34.823174,32.072803,0],[34.822975,32.07281,0],[34.822777,32.072817,0],[34.822583,32.072823,0],[34.822444,32.072828,0],[34.822202,32.072837,0],[34.82199,32.072846,0],[34.821773,32.072853,0],[34.821559,32.072861,0],[34.821441,32.07287,0],[34.820963,32.072889,0],[34.820751,32.072895,0],[34.820559,32.072897,0],[34.820368,32.072909,0],[34.820166,32.07292,0],[34.819957,32.072923,0],[34.819755,32.072929,0]]]},"type":"Feature","properties":{"Name":"6158"}},{"geometry":{"type":"Polygon","coordinates":[[[34.808457,32.063687,0],[34.808453,32.063494,0],[34.808454,32.063361,0],[34.80845,32.063188,0],[34.80845,32.062952,0],[34.808445,32.062585,0],[34.808443,32.062335,0],[34.808435,32.061704,0],[34.808437,32.061682,0],[34.808345,32.061454,0],[34.808293,32.061322,0],[34.808213,32.061123,0],[34.808167,32.061009,0],[34.808106,32.060848,0],[34.808017,32.060623,0],[34.807994,32.060573,0],[34.807975,32.060521,0],[34.807859,32.060222,0],[34.807704,32.059847,0],[34.80708,32.058295,0],[34.806625,32.057153,0],[34.806392,32.056656,0],[34.805957,32.056064,0],[34.805598,32.05614,0],[34.80581,32.056726,0],[34.805289,32.056786,0],[34.805015,32.056793,0],[34.805192,32.057023,0],[34.805115,32.057074,0],[34.805018,32.05713,0],[34.804903,32.05722,0],[34.804843,32.057168,0],[34.804478,32.057499,0],[34.804169,32.057242,0],[34.804071,32.057164,0],[34.80403,32.057296,0],[34.803707,32.058129,0],[34.803676,32.058307,0],[34.803588,32.059134,0],[34.803584,32.059172,0],[34.803547,32.059537,0],[34.803516,32.059839,0],[34.8035,32.059989,0],[34.803485,32.060129,0],[34.803473,32.060275,0],[34.803467,32.060323,0],[34.803441,32.060645,0],[34.803417,32.060876,0],[34.803415,32.060896,0],[34.803401,32.061009,0],[34.803398,32.06105,0],[34.803395,32.061083,0],[34.803361,32.061415,0],[34.803343,32.061594,0],[34.803312,32.061904,0],[34.8033,32.062004,0],[34.803291,32.062118,0],[34.803291,32.062134,0],[34.803281,32.062223,0],[34.803269,32.06233,0],[34.803264,32.062364,0],[34.803262,32.06238,0],[34.80326,32.062404,0],[34.803233,32.062665,0],[34.803227,32.062761,0],[34.803218,32.062842,0],[34.803209,32.06296,0],[34.803206,32.062991,0],[34.803179,32.063229,0],[34.803156,32.063461,0],[34.803063,32.064389,0],[34.802893,32.066105,0],[34.802854,32.066491,0],[34.802939,32.066497,0],[34.802968,32.066223,0],[34.805825,32.066466,0],[34.805797,32.066727,0],[34.807215,32.066844,0],[34.807426,32.066861,0],[34.807945,32.066904,0],[34.808487,32.06695,0],[34.808524,32.066951,0],[34.808529,32.06681,0],[34.808546,32.06635,0],[34.808563,32.06615,0],[34.808569,32.066082,0],[34.80858,32.066003,0],[34.808604,32.065867,0],[34.808646,32.065727,0],[34.808697,32.065594,0],[34.808728,32.065533,0],[34.808756,32.065484,0],[34.80878,32.065441,0],[34.80855,32.065319,0],[34.808462,32.065274,0],[34.808461,32.064658,0],[34.808327,32.064552,0],[34.80846,32.064383,0],[34.80846,32.064193,0],[34.808459,32.064003,0],[34.808457,32.063687,0]]]},"type":"Feature","properties":{"Name":"6164"}},{"geometry":{"type":"Polygon","coordinates":[[[34.816977,32.071405,0],[34.817188,32.071404,0],[34.817396,32.071403,0],[34.817606,32.071401,0],[34.817818,32.0714,0],[34.818094,32.071399,0],[34.817915,32.071052,0],[34.817898,32.071011,0],[34.817845,32.070901,0],[34.817655,32.070529,0],[34.817528,32.070276,0],[34.817173,32.069165,0],[34.81715,32.069089,0],[34.81709,32.068914,0],[34.817081,32.068887,0],[34.817031,32.068741,0],[34.816965,32.06855,0],[34.816925,32.068431,0],[34.816857,32.068233,0],[34.816547,32.067364,0],[34.816302,32.066665,0],[34.815329,32.065349,0],[34.815237,32.065229,0],[34.815108,32.065058,0],[34.815018,32.06488,0],[34.814605,32.065001,0],[34.814367,32.065048,0],[34.814158,32.065079,0],[34.813927,32.065108,0],[34.813696,32.065133,0],[34.813286,32.065188,0],[34.813089,32.065223,0],[34.812996,32.065248,0],[34.812487,32.065243,0],[34.811375,32.065251,0],[34.810963,32.065255,0],[34.810621,32.065257,0],[34.810157,32.065261,0],[34.810126,32.065262,0],[34.809744,32.065265,0],[34.809601,32.065266,0],[34.809482,32.065267,0],[34.809241,32.06527,0],[34.809202,32.06527,0],[34.809128,32.065271,0],[34.808907,32.065273,0],[34.808851,32.065342,0],[34.808777,32.065439,0],[34.808728,32.065533,0],[34.808699,32.065593,0],[34.808646,32.065727,0],[34.808604,32.065867,0],[34.80858,32.066003,0],[34.80857,32.066081,0],[34.808546,32.06635,0],[34.808541,32.066464,0],[34.808524,32.066951,0],[34.808487,32.06695,0],[34.808483,32.067184,0],[34.808487,32.067339,0],[34.808491,32.067502,0],[34.808495,32.067669,0],[34.808499,32.067835,0],[34.8085,32.06786,0],[34.8085,32.068017,0],[34.808508,32.068189,0],[34.808523,32.068816,0],[34.808531,32.069129,0],[34.808536,32.069332,0],[34.80854,32.069493,0],[34.808546,32.06973,0],[34.80855,32.069896,0],[34.808553,32.070028,0],[34.808557,32.070186,0],[34.808561,32.070351,0],[34.808565,32.070513,0],[34.808568,32.070653,0],[34.808572,32.070776,0],[34.808574,32.070888,0],[34.808578,32.071021,0],[34.808581,32.071159,0],[34.808583,32.071266,0],[34.808586,32.071367,0],[34.80859,32.071455,0],[34.808654,32.071455,0],[34.808751,32.071455,0],[34.808981,32.071453,0],[34.809199,32.071452,0],[34.809406,32.07145,0],[34.809626,32.071448,0],[34.809871,32.071447,0],[34.810112,32.071445,0],[34.810343,32.071444,0],[34.810604,32.071441,0],[34.811089,32.071437,0],[34.811563,32.071435,0],[34.812563,32.071427,0],[34.812619,32.071427,0],[34.812708,32.071426,0],[34.812891,32.071426,0],[34.813173,32.071425,0],[34.813437,32.071424,0],[34.813709,32.071422,0],[34.813962,32.071419,0],[34.813987,32.071419,0],[34.814267,32.071417,0],[34.814544,32.071416,0],[34.8149,32.071414,0],[34.814932,32.071413,0],[34.815391,32.071412,0],[34.81548,32.071411,0],[34.816108,32.071409,0],[34.816364,32.071408,0],[34.816459,32.071407,0],[34.816558,32.071407,0],[34.816771,32.071406,0],[34.816977,32.071405,0]]]},"type":"Feature","properties":{"Name":"6161"}},{"geometry":{"type":"Polygon","coordinates":[[[34.808536,32.069332,0],[34.808531,32.069129,0],[34.808523,32.068816,0],[34.808508,32.068189,0],[34.8085,32.068017,0],[34.8085,32.06786,0],[34.808499,32.067835,0],[34.808495,32.067669,0],[34.808491,32.067502,0],[34.808487,32.067339,0],[34.808484,32.067197,0],[34.808483,32.067184,0],[34.808487,32.06695,0],[34.808133,32.06692,0],[34.807945,32.066904,0],[34.807765,32.066889,0],[34.807572,32.066873,0],[34.807362,32.066856,0],[34.807158,32.066839,0],[34.806958,32.066822,0],[34.806506,32.066785,0],[34.806404,32.066777,0],[34.806174,32.066758,0],[34.805982,32.066742,0],[34.805797,32.066727,0],[34.805822,32.066489,0],[34.805825,32.066466,0],[34.802968,32.066223,0],[34.802939,32.066497,0],[34.802854,32.066491,0],[34.802512,32.069862,0],[34.802509,32.069903,0],[34.802501,32.069984,0],[34.802496,32.070041,0],[34.802479,32.070204,0],[34.802473,32.070255,0],[34.802436,32.070611,0],[34.801466,32.071909,0],[34.799364,32.072086,0],[34.798979,32.072122,0],[34.798911,32.072518,0],[34.798566,32.072843,0],[34.798689,32.073192,0],[34.798715,32.073183,0],[34.798734,32.073167,0],[34.798752,32.073138,0],[34.798768,32.073079,0],[34.798787,32.073036,0],[34.798811,32.073007,0],[34.798827,32.072973,0],[34.798846,32.072955,0],[34.798858,32.07294,0],[34.798875,32.072928,0],[34.798896,32.072922,0],[34.798917,32.072921,0],[34.798938,32.072926,0],[34.799182,32.073017,0],[34.799264,32.073053,0],[34.799362,32.073085,0],[34.799505,32.07313,0],[34.799537,32.07314,0],[34.799604,32.073154,0],[34.799671,32.073163,0],[34.79974,32.073166,0],[34.799808,32.073163,0],[34.799876,32.073154,0],[34.799943,32.07314,0],[34.800007,32.07312,0],[34.800069,32.073094,0],[34.800127,32.073063,0],[34.800181,32.073028,0],[34.800277,32.073001,0],[34.800375,32.07298,0],[34.800474,32.072966,0],[34.800574,32.072959,0],[34.800675,32.072957,0],[34.801031,32.073816,0],[34.801151,32.073826,0],[34.801484,32.073851,0],[34.801652,32.073864,0],[34.801951,32.073886,0],[34.802167,32.073902,0],[34.80227,32.073906,0],[34.802289,32.073912,0],[34.80256,32.073931,0],[34.802684,32.073939,0],[34.802907,32.073956,0],[34.802958,32.073961,0],[34.803135,32.073974,0],[34.803408,32.073995,0],[34.803687,32.074015,0],[34.803793,32.074023,0],[34.804011,32.074041,0],[34.804233,32.074059,0],[34.804428,32.074075,0],[34.804598,32.074089,0],[34.804906,32.074115,0],[34.805176,32.074138,0],[34.805441,32.07416,0],[34.805706,32.074179,0],[34.806062,32.074208,0],[34.806222,32.074221,0],[34.806469,32.074242,0],[34.806503,32.074245,0],[34.806579,32.074252,0],[34.806917,32.074275,0],[34.807113,32.074291,0],[34.807437,32.074318,0],[34.807601,32.074331,0],[34.807739,32.074342,0],[34.807909,32.074355,0],[34.808083,32.074369,0],[34.808231,32.074381,0],[34.808395,32.074395,0],[34.808628,32.074413,0],[34.808668,32.074418,0],[34.808643,32.073565,0],[34.808636,32.07334,0],[34.80863,32.073099,0],[34.808624,32.072884,0],[34.808611,32.072472,0],[34.808605,32.072165,0],[34.808604,32.072018,0],[34.808598,32.071859,0],[34.808594,32.07169,0],[34.80859,32.071526,0],[34.808586,32.071367,0],[34.808583,32.071266,0],[34.808581,32.071159,0],[34.808578,32.071021,0],[34.808574,32.070888,0],[34.808572,32.070776,0],[34.808568,32.070653,0],[34.808565,32.070513,0],[34.808561,32.070351,0],[34.808557,32.070186,0],[34.808553,32.070028,0],[34.80855,32.069896,0],[34.808546,32.06973,0],[34.80854,32.069493,0],[34.808536,32.069332,0]]]},"type":"Feature","properties":{"Name":"6154"}},{"geometry":{"type":"Polygon","coordinates":[[[34.801473,32.077496,0],[34.800833,32.077691,0],[34.800872,32.077786,0],[34.800937,32.07794,0],[34.80096,32.077996,0],[34.801027,32.078087,0],[34.801116,32.078205,0],[34.801125,32.078217,0],[34.801144,32.078242,0],[34.801405,32.078203,0],[34.801414,32.078285,0],[34.801473,32.078852,0],[34.801483,32.078942,0],[34.801489,32.078972,0],[34.802387,32.079048,0],[34.803132,32.079111,0],[34.803555,32.079147,0],[34.803886,32.079176,0],[34.803942,32.07918,0],[34.804019,32.079187,0],[34.804074,32.079192,0],[34.804508,32.079229,0],[34.804964,32.079268,0],[34.805035,32.079273,0],[34.80508,32.079277,0],[34.805073,32.079359,0],[34.805114,32.079373,0],[34.8051,32.07951,0],[34.805093,32.079537,0],[34.805089,32.079603,0],[34.805064,32.079792,0],[34.805603,32.079827,0],[34.805752,32.079836,0],[34.806245,32.079878,0],[34.806291,32.079883,0],[34.806362,32.079889,0],[34.806714,32.079916,0],[34.807056,32.079939,0],[34.807366,32.07996,0],[34.807432,32.079964,0],[34.807512,32.079972,0],[34.807583,32.079973,0],[34.807937,32.079997,0],[34.808046,32.080012,0],[34.808235,32.080007,0],[34.808601,32.08001,0],[34.808689,32.079969,0],[34.809052,32.079817,0],[34.809125,32.079802,0],[34.809189,32.07978,0],[34.809313,32.079771,0],[34.80939,32.079759,0],[34.80979,32.079718,0],[34.810003,32.079691,0],[34.810257,32.079659,0],[34.810304,32.079652,0],[34.810464,32.079635,0],[34.810764,32.079598,0],[34.810959,32.079573,0],[34.811431,32.07952,0],[34.811492,32.079525,0],[34.811939,32.079612,0],[34.812134,32.079997,0],[34.812244,32.079982,0],[34.812316,32.079978,0],[34.812634,32.079934,0],[34.812688,32.079787,0],[34.812726,32.079675,0],[34.812779,32.079501,0],[34.812806,32.079409,0],[34.812961,32.078958,0],[34.812993,32.078876,0],[34.813059,32.078688,0],[34.813105,32.07854,0],[34.813155,32.0784,0],[34.813235,32.078167,0],[34.813244,32.078135,0],[34.813261,32.078088,0],[34.813184,32.078078,0],[34.81296,32.07805,0],[34.812703,32.078018,0],[34.812427,32.077984,0],[34.812376,32.077977,0],[34.811881,32.077915,0],[34.811555,32.077874,0],[34.811218,32.077831,0],[34.810861,32.077785,0],[34.810556,32.077745,0],[34.810238,32.077702,0],[34.80991,32.077663,0],[34.809834,32.077654,0],[34.809804,32.077649,0],[34.809411,32.077601,0],[34.809343,32.077592,0],[34.809211,32.077576,0],[34.809052,32.077562,0],[34.809003,32.077555,0],[34.808892,32.077541,0],[34.808825,32.077532,0],[34.808776,32.077525,0],[34.808728,32.077518,0],[34.808574,32.077495,0],[34.808419,32.077467,0],[34.808139,32.077418,0],[34.808121,32.077415,0],[34.80804,32.077399,0],[34.807659,32.077325,0],[34.807486,32.077291,0],[34.807199,32.07724,0],[34.807168,32.077234,0],[34.806715,32.077154,0],[34.806381,32.077095,0],[34.806257,32.077068,0],[34.80597,32.077013,0],[34.805872,32.076994,0],[34.805419,32.076913,0],[34.804575,32.076885,0],[34.804501,32.076884,0],[34.804443,32.076882,0],[34.804101,32.07687,0],[34.803713,32.076856,0],[34.803599,32.076854,0],[34.802992,32.076836,0],[34.802741,32.076831,0],[34.80234,32.076821,0],[34.802308,32.07682,0],[34.80222,32.076817,0],[34.802241,32.076837,0],[34.802169,32.076869,0],[34.801958,32.076961,0],[34.801785,32.077049,0],[34.801598,32.077121,0],[34.801521,32.077133,0],[34.801504,32.077212,0],[34.801486,32.077274,0],[34.801473,32.077496,0]]]},"type":"Feature","properties":{"Name":"6167"}},{"geometry":{"type":"Polygon","coordinates":[[[34.809784,32.082386,0],[34.809797,32.082274,0],[34.809793,32.082236,0],[34.80976,32.081953,0],[34.809675,32.081693,0],[34.80961,32.081497,0],[34.809518,32.081224,0],[34.809459,32.081049,0],[34.809412,32.080906,0],[34.809337,32.080684,0],[34.809229,32.080361,0],[34.80905,32.079822,0],[34.809034,32.079829,0],[34.808779,32.079939,0],[34.808593,32.080015,0],[34.80837,32.080015,0],[34.808042,32.080016,0],[34.80754,32.07998,0],[34.807476,32.079976,0],[34.80743,32.079971,0],[34.807416,32.07997,0],[34.807229,32.079955,0],[34.807033,32.079941,0],[34.806832,32.079927,0],[34.806709,32.079915,0],[34.80663,32.079909,0],[34.806367,32.079892,0],[34.806345,32.07989,0],[34.806285,32.079886,0],[34.806228,32.079882,0],[34.806212,32.079882,0],[34.805729,32.079842,0],[34.805702,32.079841,0],[34.80566,32.079841,0],[34.805583,32.079831,0],[34.805509,32.079827,0],[34.805061,32.079794,0],[34.805042,32.079793,0],[34.805064,32.079601,0],[34.805097,32.079366,0],[34.80504,32.079362,0],[34.805052,32.079271,0],[34.805021,32.079271,0],[34.804955,32.079265,0],[34.804762,32.07925,0],[34.804575,32.079233,0],[34.804513,32.079229,0],[34.804391,32.079221,0],[34.804067,32.079192,0],[34.804012,32.079186,0],[34.803935,32.07918,0],[34.803892,32.079177,0],[34.803561,32.079151,0],[34.803384,32.079136,0],[34.8032,32.07912,0],[34.803131,32.079115,0],[34.803015,32.079106,0],[34.80285,32.079088,0],[34.802685,32.079077,0],[34.802379,32.07905,0],[34.802347,32.07905,0],[34.802136,32.079031,0],[34.801928,32.079012,0],[34.801715,32.078994,0],[34.80149,32.078972,0],[34.801495,32.079059,0],[34.80149,32.079164,0],[34.801488,32.079285,0],[34.801487,32.079345,0],[34.801485,32.079385,0],[34.801483,32.079575,0],[34.801479,32.079695,0],[34.801478,32.079727,0],[34.801475,32.07989,0],[34.801472,32.080072,0],[34.80147,32.080153,0],[34.801469,32.080185,0],[34.801461,32.080599,0],[34.801459,32.080697,0],[34.801458,32.08074,0],[34.801456,32.080835,0],[34.801456,32.080861,0],[34.801454,32.080938,0],[34.801452,32.081029,0],[34.801451,32.081065,0],[34.801449,32.081197,0],[34.801446,32.081298,0],[34.801446,32.081334,0],[34.801445,32.081362,0],[34.801443,32.08147,0],[34.80144,32.081602,0],[34.80144,32.081636,0],[34.8014,32.081661,0],[34.801362,32.081683,0],[34.8013,32.08172,0],[34.801258,32.081744,0],[34.801213,32.08177,0],[34.80117,32.081796,0],[34.801126,32.081821,0],[34.801156,32.081924,0],[34.80119,32.082073,0],[34.801197,32.082093,0],[34.801205,32.082108,0],[34.801228,32.082122,0],[34.801244,32.082131,0],[34.801116,32.082112,0],[34.801115,32.082169,0],[34.801443,32.082212,0],[34.802019,32.082457,0],[34.802994,32.082733,0],[34.803094,32.082767,0],[34.803265,32.082814,0],[34.80325,32.08284,0],[34.8032,32.082929,0],[34.803583,32.082952,0],[34.804075,32.083046,0],[34.806735,32.083764,0],[34.807286,32.083912,0],[34.807642,32.084023,0],[34.807849,32.084079,0],[34.808239,32.084196,0],[34.808529,32.084271,0],[34.808838,32.084362,0],[34.808876,32.084373,0],[34.808966,32.084216,0],[34.809074,32.084031,0],[34.809183,32.083848,0],[34.809286,32.083689,0],[34.809628,32.083129,0],[34.809675,32.083045,0],[34.809727,32.082958,0],[34.809772,32.082879,0],[34.809791,32.082787,0],[34.809794,32.082762,0],[34.809786,32.082694,0],[34.809783,32.082605,0],[34.809765,32.082534,0],[34.809784,32.082386,0]]]},"type":"Feature","properties":{"Name":"6128"}},{"geometry":{"type":"Polygon","coordinates":[[[34.811711,32.057536,0],[34.811708,32.057536,0],[34.811698,32.057538,0],[34.811706,32.057549,0],[34.811719,32.057568,0],[34.81174,32.057648,0],[34.811772,32.057644,0],[34.811892,32.057818,0],[34.811977,32.057941,0],[34.811917,32.057945,0],[34.811976,32.058302,0],[34.81218,32.058271,0],[34.812204,32.058267,0],[34.812359,32.058488,0],[34.812442,32.058609,0],[34.812526,32.058731,0],[34.81253,32.058746,0],[34.812588,32.059147,0],[34.812602,32.059253,0],[34.812691,32.059873,0],[34.812728,32.059954,0],[34.812842,32.060201,0],[34.812848,32.060214,0],[34.812831,32.060325,0],[34.812799,32.060449,0],[34.812753,32.06057,0],[34.812727,32.060618,0],[34.812688,32.060694,0],[34.812628,32.060775,0],[34.812575,32.060841,0],[34.812886,32.061014,0],[34.813093,32.060735,0],[34.813651,32.061916,0],[34.813721,32.062067,0],[34.81523,32.061657,0],[34.81526,32.061654,0],[34.81529,32.061657,0],[34.815318,32.061666,0],[34.815343,32.061682,0],[34.815362,32.061702,0],[34.815374,32.061726,0],[34.815378,32.061751,0],[34.815374,32.061777,0],[34.815363,32.061801,0],[34.815267,32.061881,0],[34.815146,32.061976,0],[34.81503,32.062079,0],[34.814924,32.062187,0],[34.814696,32.062475,0],[34.814619,32.062599,0],[34.81455,32.062729,0],[34.814489,32.06286,0],[34.814436,32.062996,0],[34.814393,32.063136,0],[34.81436,32.063276,0],[34.814337,32.063392,0],[34.814459,32.063657,0],[34.814565,32.063887,0],[34.814688,32.064154,0],[34.814812,32.064421,0],[34.814859,32.064524,0],[34.814976,32.064777,0],[34.815108,32.065058,0],[34.815329,32.065349,0],[34.815448,32.065317,0],[34.815489,32.065307,0],[34.815782,32.065234,0],[34.816003,32.065179,0],[34.816247,32.065118,0],[34.816277,32.065111,0],[34.816461,32.065065,0],[34.816581,32.065035,0],[34.816609,32.065028,0],[34.816651,32.065018,0],[34.81687,32.064963,0],[34.817098,32.064906,0],[34.817353,32.064842,0],[34.81757,32.064788,0],[34.81762,32.064776,0],[34.818042,32.06467,0],[34.818218,32.064627,0],[34.81843,32.064574,0],[34.818648,32.06452,0],[34.818847,32.06447,0],[34.819058,32.064417,0],[34.819102,32.064406,0],[34.819237,32.064373,0],[34.81963,32.064275,0],[34.819682,32.064262,0],[34.819949,32.064195,0],[34.820305,32.064106,0],[34.820324,32.064102,0],[34.81981,32.062629,0],[34.819715,32.062356,0],[34.819699,32.062312,0],[34.819558,32.061907,0],[34.819503,32.061749,0],[34.819454,32.06161,0],[34.819381,32.061399,0],[34.819141,32.060712,0],[34.819063,32.060469,0],[34.818883,32.060423,0],[34.818967,32.060185,0],[34.819023,32.060018,0],[34.818901,32.05999,0],[34.818852,32.059845,0],[34.818705,32.05981,0],[34.81878,32.059632,0],[34.818878,32.059372,0],[34.818675,32.059321,0],[34.818617,32.059169,0],[34.818591,32.059088,0],[34.818577,32.059044,0],[34.818495,32.058785,0],[34.818472,32.058711,0],[34.818397,32.058465,0],[34.818351,32.058314,0],[34.818377,32.058319,0],[34.818401,32.058318,0],[34.818424,32.058312,0],[34.818444,32.058301,0],[34.81846,32.058286,0],[34.81847,32.058267,0],[34.818475,32.058247,0],[34.818472,32.058227,0],[34.818441,32.058046,0],[34.818407,32.057841,0],[34.818278,32.05786,0],[34.818218,32.057871,0],[34.818159,32.057677,0],[34.818098,32.057477,0],[34.818038,32.05728,0],[34.817986,32.057112,0],[34.817981,32.057096,0],[34.817943,32.056971,0],[34.817925,32.056913,0],[34.817852,32.056674,0],[34.81782,32.056569,0],[34.817242,32.056761,0],[34.817218,32.056765,0],[34.817193,32.056763,0],[34.81717,32.056756,0],[34.81715,32.056743,0],[34.817134,32.056728,0],[34.816935,32.056406,0],[34.81683,32.056428,0],[34.816529,32.056493,0],[34.816267,32.05655,0],[34.816,32.056608,0],[34.815741,32.056664,0],[34.815662,32.056681,0],[34.815409,32.056736,0],[34.815158,32.05679,0],[34.815075,32.056808,0],[34.814826,32.056862,0],[34.814567,32.056918,0],[34.814487,32.056935,0],[34.814198,32.056998,0],[34.813869,32.057069,0],[34.813746,32.057095,0],[34.813755,32.057128,0],[34.813762,32.057154,0],[34.813415,32.057218,0],[34.81341,32.0572,0],[34.813372,32.057208,0],[34.813362,32.057178,0],[34.813063,32.057243,0],[34.812982,32.057261,0],[34.812695,32.057323,0],[34.812412,32.057384,0],[34.812333,32.057401,0],[34.812061,32.05746,0],[34.812043,32.057389,0],[34.81169,32.057459,0],[34.811711,32.057536,0]]]},"type":"Feature","properties":{"Name":"6156"}},{"geometry":{"type":"Polygon","coordinates":[[[34.812886,32.061014,0],[34.812575,32.060841,0],[34.812628,32.060775,0],[34.812688,32.060694,0],[34.812753,32.06057,0],[34.812799,32.060449,0],[34.812831,32.060325,0],[34.812848,32.060214,0],[34.812728,32.059954,0],[34.812691,32.059873,0],[34.812602,32.059253,0],[34.812588,32.059147,0],[34.812531,32.058746,0],[34.812526,32.058731,0],[34.812358,32.058488,0],[34.812204,32.058267,0],[34.811976,32.058302,0],[34.811917,32.057945,0],[34.811977,32.057941,0],[34.811892,32.057818,0],[34.811873,32.05779,0],[34.811746,32.057607,0],[34.811698,32.057538,0],[34.811591,32.057366,0],[34.811565,32.057222,0],[34.811382,32.056613,0],[34.811335,32.056488,0],[34.811201,32.056136,0],[34.811115,32.055996,0],[34.811039,32.055739,0],[34.81094,32.055559,0],[34.810801,32.055465,0],[34.810671,32.055204,0],[34.810506,32.054911,0],[34.810392,32.054989,0],[34.810275,32.05507,0],[34.810183,32.054999,0],[34.810145,32.054955,0],[34.809966,32.055079,0],[34.80968,32.055252,0],[34.809327,32.055441,0],[34.809234,32.055491,0],[34.808774,32.055707,0],[34.808681,32.055744,0],[34.808307,32.055907,0],[34.807831,32.056083,0],[34.807221,32.056288,0],[34.807202,32.056246,0],[34.807075,32.055984,0],[34.806951,32.055719,0],[34.80692,32.055651,0],[34.806938,32.055633,0],[34.806946,32.055579,0],[34.806814,32.055394,0],[34.806778,32.055354,0],[34.806723,32.055284,0],[34.806662,32.055194,0],[34.80636,32.05526,0],[34.805979,32.055341,0],[34.805936,32.055345,0],[34.805763,32.055378,0],[34.805638,32.055413,0],[34.805957,32.056064,0],[34.806392,32.056656,0],[34.806476,32.056834,0],[34.806625,32.057153,0],[34.80768,32.059805,0],[34.807708,32.059849,0],[34.807859,32.060222,0],[34.807973,32.06052,0],[34.808017,32.06063,0],[34.808102,32.060849,0],[34.808165,32.061007,0],[34.80821,32.061125,0],[34.808289,32.061323,0],[34.808341,32.061452,0],[34.808436,32.061682,0],[34.80843,32.061702,0],[34.808441,32.062304,0],[34.808516,32.062304,0],[34.808935,32.062304,0],[34.809157,32.062302,0],[34.809447,32.062303,0],[34.809459,32.062303,0],[34.809461,32.062303,0],[34.809463,32.062303,0],[34.809769,32.0623,0],[34.809919,32.062298,0],[34.810179,32.062297,0],[34.810249,32.062295,0],[34.810467,32.062294,0],[34.810656,32.062292,0],[34.811463,32.062287,0],[34.811615,32.062286,0],[34.811567,32.062462,0],[34.811563,32.06249,0],[34.81159,32.062524,0],[34.811646,32.062529,0],[34.811692,32.062498,0],[34.811784,32.062424,0],[34.812154,32.062324,0],[34.812324,32.062279,0],[34.81296,32.062274,0],[34.813362,32.062167,0],[34.813368,32.062272,0],[34.813815,32.062267,0],[34.813721,32.062067,0],[34.813651,32.061916,0],[34.813093,32.060735,0],[34.812886,32.061014,0]]]},"type":"Feature","properties":{"Name":"6163"}},{"geometry":{"type":"Polygon","coordinates":[[[34.801144,32.078242,0],[34.80096,32.077996,0],[34.800833,32.077691,0],[34.800779,32.077694,0],[34.800719,32.077691,0],[34.800711,32.07769,0],[34.800644,32.07767,0],[34.800528,32.077703,0],[34.800494,32.077633,0],[34.800252,32.077715,0],[34.800236,32.077726,0],[34.800222,32.077735,0],[34.800187,32.077765,0],[34.800166,32.077758,0],[34.800101,32.077783,0],[34.800005,32.077812,0],[34.79998,32.077819,0],[34.799839,32.077862,0],[34.799756,32.077907,0],[34.799522,32.078002,0],[34.799449,32.078031,0],[34.79935,32.078086,0],[34.799348,32.078269,0],[34.79934,32.078292,0],[34.799302,32.078389,0],[34.799349,32.078452,0],[34.799363,32.078471,0],[34.799406,32.078529,0],[34.799415,32.078542,0],[34.79947,32.078617,0],[34.799479,32.078628,0],[34.799421,32.078681,0],[34.799361,32.078735,0],[34.799339,32.078755,0],[34.799307,32.078784,0],[34.799293,32.078796,0],[34.79925,32.078836,0],[34.799271,32.078856,0],[34.799295,32.078879,0],[34.799257,32.078904,0],[34.799216,32.078932,0],[34.799205,32.07894,0],[34.799146,32.07898,0],[34.799089,32.079017,0],[34.799062,32.078995,0],[34.799023,32.078964,0],[34.79901,32.078975,0],[34.798986,32.078995,0],[34.798973,32.079005,0],[34.79891,32.079056,0],[34.798855,32.079101,0],[34.798838,32.079093,0],[34.798776,32.079064,0],[34.798699,32.079027,0],[34.798646,32.079003,0],[34.798586,32.079009,0],[34.798481,32.079018,0],[34.798247,32.079158,0],[34.798137,32.079224,0],[34.79803,32.079337,0],[34.797832,32.079515,0],[34.797521,32.079672,0],[34.797482,32.079692,0],[34.79735,32.079759,0],[34.797393,32.079826,0],[34.797406,32.079858,0],[34.797462,32.080045,0],[34.797552,32.080316,0],[34.797569,32.080376,0],[34.79759,32.080435,0],[34.79762,32.080493,0],[34.797649,32.080537,0],[34.797664,32.080554,0],[34.797685,32.080578,0],[34.797727,32.080615,0],[34.797748,32.080632,0],[34.797798,32.080671,0],[34.797886,32.080727,0],[34.797971,32.080778,0],[34.798021,32.080809,0],[34.798068,32.080844,0],[34.798109,32.080883,0],[34.798132,32.080917,0],[34.798162,32.080948,0],[34.798196,32.080976,0],[34.798235,32.080998,0],[34.798278,32.081015,0],[34.798323,32.081027,0],[34.798371,32.081033,0],[34.79847,32.081021,0],[34.798556,32.081008,0],[34.798663,32.080997,0],[34.798749,32.080994,0],[34.798786,32.080985,0],[34.798865,32.080967,0],[34.798893,32.08096,0],[34.798923,32.080958,0],[34.798952,32.080964,0],[34.798995,32.080995,0],[34.799036,32.081028,0],[34.799095,32.081062,0],[34.799122,32.081078,0],[34.799213,32.081112,0],[34.799322,32.081156,0],[34.799393,32.08119,0],[34.799491,32.081237,0],[34.799597,32.081282,0],[34.799676,32.081319,0],[34.799756,32.081353,0],[34.799838,32.081383,0],[34.799925,32.081412,0],[34.799971,32.081428,0],[34.800014,32.081448,0],[34.800053,32.081474,0],[34.800088,32.081503,0],[34.800165,32.081569,0],[34.800245,32.081639,0],[34.800249,32.081642,0],[34.800278,32.081569,0],[34.800309,32.081492,0],[34.800397,32.081536,0],[34.800455,32.081565,0],[34.800483,32.081579,0],[34.800574,32.081624,0],[34.800648,32.081662,0],[34.800732,32.081704,0],[34.800783,32.081729,0],[34.800798,32.081737,0],[34.800857,32.081766,0],[34.800875,32.081776,0],[34.800963,32.081819,0],[34.800985,32.081831,0],[34.801052,32.081864,0],[34.801092,32.08184,0],[34.801127,32.081819,0],[34.801169,32.081795,0],[34.801213,32.08177,0],[34.801257,32.081743,0],[34.801299,32.081719,0],[34.801321,32.081706,0],[34.801361,32.081682,0],[34.801399,32.08166,0],[34.801441,32.081635,0],[34.801442,32.081601,0],[34.801445,32.081471,0],[34.801447,32.081367,0],[34.801447,32.081362,0],[34.801447,32.081298,0],[34.80145,32.081197,0],[34.801452,32.081075,0],[34.801454,32.081029,0],[34.801458,32.080861,0],[34.801459,32.080697,0],[34.801461,32.080599,0],[34.801462,32.080526,0],[34.801464,32.080439,0],[34.801466,32.08034,0],[34.801467,32.080271,0],[34.801468,32.080245,0],[34.801468,32.080236,0],[34.80147,32.080186,0],[34.80147,32.080153,0],[34.801472,32.080072,0],[34.801472,32.080039,0],[34.801476,32.079979,0],[34.801478,32.079879,0],[34.801477,32.079803,0],[34.80148,32.079728,0],[34.801482,32.079587,0],[34.801483,32.079503,0],[34.801485,32.079419,0],[34.801485,32.07938,0],[34.801486,32.079371,0],[34.801486,32.079356,0],[34.801487,32.079345,0],[34.801484,32.079284,0],[34.801488,32.079164,0],[34.801492,32.079059,0],[34.801489,32.078972,0],[34.801483,32.078942,0],[34.801477,32.078884,0],[34.801446,32.078594,0],[34.801439,32.078521,0],[34.801422,32.078368,0],[34.801415,32.078293,0],[34.801405,32.078203,0],[34.801144,32.078242,0]]]},"type":"Feature","properties":{"Name":"7105"}},{"geometry":{"type":"Polygon","coordinates":[[[34.818341,32.073484,0],[34.818347,32.073449,0],[34.818378,32.073267,0],[34.818406,32.073107,0],[34.818426,32.072979,0],[34.818405,32.072829,0],[34.818387,32.072697,0],[34.818364,32.072531,0],[34.818249,32.071709,0],[34.818094,32.071399,0],[34.818028,32.071399,0],[34.817721,32.071401,0],[34.817483,32.071402,0],[34.81737,32.071403,0],[34.816898,32.071405,0],[34.814932,32.071413,0],[34.8149,32.071414,0],[34.814544,32.071416,0],[34.814071,32.071418,0],[34.813987,32.071419,0],[34.81365,32.071423,0],[34.813357,32.071424,0],[34.813056,32.071425,0],[34.812708,32.071426,0],[34.812563,32.071427,0],[34.812213,32.07143,0],[34.811824,32.071433,0],[34.811563,32.071435,0],[34.811246,32.071439,0],[34.81095,32.071441,0],[34.810675,32.071442,0],[34.810647,32.071442,0],[34.810343,32.071444,0],[34.810002,32.071446,0],[34.809715,32.071448,0],[34.809406,32.07145,0],[34.809073,32.071452,0],[34.808807,32.071455,0],[34.808654,32.071455,0],[34.80859,32.071455,0],[34.808605,32.072165,0],[34.808611,32.072472,0],[34.808624,32.072884,0],[34.80863,32.073099,0],[34.808636,32.07334,0],[34.808643,32.073565,0],[34.808668,32.074418,0],[34.80874,32.074427,0],[34.809202,32.074467,0],[34.809254,32.074469,0],[34.809591,32.074491,0],[34.809741,32.074478,0],[34.809904,32.074465,0],[34.810069,32.074451,0],[34.810223,32.074443,0],[34.810284,32.074439,0],[34.810387,32.074427,0],[34.810449,32.074419,0],[34.810555,32.07441,0],[34.81065,32.074408,0],[34.810723,32.074402,0],[34.81079,32.074396,0],[34.810888,32.074387,0],[34.811054,32.074368,0],[34.81122,32.074354,0],[34.811393,32.07434,0],[34.811426,32.074341,0],[34.811565,32.074326,0],[34.811765,32.074312,0],[34.812061,32.074286,0],[34.812265,32.074269,0],[34.812346,32.074262,0],[34.812429,32.074253,0],[34.81255,32.074244,0],[34.812639,32.074235,0],[34.812682,32.074232,0],[34.812752,32.074226,0],[34.81291,32.074213,0],[34.812954,32.074209,0],[34.813005,32.074205,0],[34.812993,32.07418,0],[34.813223,32.074166,0],[34.813427,32.074151,0],[34.813675,32.074135,0],[34.813655,32.074146,0],[34.813821,32.074128,0],[34.813927,32.074122,0],[34.815576,32.073977,0],[34.815788,32.073961,0],[34.815867,32.073948,0],[34.815925,32.073938,0],[34.816343,32.07387,0],[34.816608,32.073826,0],[34.816767,32.073807,0],[34.81684,32.073795,0],[34.816858,32.073793,0],[34.816889,32.073788,0],[34.816915,32.073784,0],[34.816997,32.073771,0],[34.817137,32.073749,0],[34.817183,32.073742,0],[34.817664,32.073668,0],[34.817706,32.073661,0],[34.817776,32.07365,0],[34.817956,32.073622,0],[34.81826,32.073575,0],[34.818316,32.073568,0],[34.818341,32.073484,0]]]},"type":"Feature","properties":{"Name":"6160"}},{"geometry":{"type":"Polygon","coordinates":[[[34.802501,32.069984,0],[34.802509,32.069903,0],[34.802512,32.069862,0],[34.802547,32.069611,0],[34.802574,32.069351,0],[34.802854,32.066491,0],[34.802873,32.066303,0],[34.802893,32.066105,0],[34.802935,32.06568,0],[34.802996,32.065064,0],[34.803063,32.064389,0],[34.803071,32.064252,0],[34.803111,32.063885,0],[34.803146,32.063529,0],[34.803145,32.063515,0],[34.803117,32.063514,0],[34.802922,32.06352,0],[34.802834,32.063523,0],[34.802637,32.06353,0],[34.802551,32.063532,0],[34.802048,32.06355,0],[34.801859,32.063556,0],[34.801651,32.063564,0],[34.801558,32.063568,0],[34.801444,32.063572,0],[34.801145,32.063596,0],[34.801029,32.063583,0],[34.800825,32.063587,0],[34.800812,32.063589,0],[34.80069,32.063594,0],[34.800661,32.063596,0],[34.800625,32.063598,0],[34.800544,32.0636,0],[34.800378,32.063604,0],[34.800341,32.063605,0],[34.800297,32.063605,0],[34.800133,32.06361,0],[34.800113,32.06361,0],[34.800073,32.063696,0],[34.799924,32.063659,0],[34.799945,32.063617,0],[34.799929,32.063614,0],[34.799797,32.063622,0],[34.799719,32.063624,0],[34.799573,32.06363,0],[34.799512,32.063631,0],[34.79938,32.063636,0],[34.799304,32.063638,0],[34.799216,32.06364,0],[34.799188,32.063644,0],[34.799026,32.063649,0],[34.798899,32.063653,0],[34.798829,32.06365,0],[34.798686,32.06366,0],[34.798641,32.063662,0],[34.798449,32.063665,0],[34.798435,32.063666,0],[34.798252,32.063676,0],[34.79822,32.063677,0],[34.798064,32.06368,0],[34.798022,32.063681,0],[34.797981,32.063681,0],[34.797876,32.063685,0],[34.797822,32.063687,0],[34.797671,32.063691,0],[34.79768,32.063641,0],[34.797709,32.06333,0],[34.797719,32.063225,0],[34.797722,32.06317,0],[34.797737,32.063018,0],[34.797763,32.062742,0],[34.797145,32.062704,0],[34.796885,32.062689,0],[34.796267,32.062656,0],[34.796177,32.062649,0],[34.795587,32.062622,0],[34.795503,32.062617,0],[34.795284,32.062605,0],[34.795436,32.062989,0],[34.795461,32.063043,0],[34.795486,32.063113,0],[34.795534,32.06322,0],[34.795692,32.063222,0],[34.795738,32.063222,0],[34.795739,32.063425,0],[34.795736,32.063731,0],[34.795781,32.06383,0],[34.795787,32.063848,0],[34.795838,32.063973,0],[34.795889,32.064091,0],[34.79589,32.06411,0],[34.795951,32.06426,0],[34.795975,32.064318,0],[34.796072,32.064539,0],[34.796136,32.064715,0],[34.796173,32.064825,0],[34.796194,32.064894,0],[34.796209,32.064934,0],[34.796227,32.064968,0],[34.796303,32.065182,0],[34.796323,32.06522,0],[34.796331,32.065242,0],[34.796337,32.065266,0],[34.796351,32.065317,0],[34.796376,32.065415,0],[34.796453,32.065625,0],[34.796479,32.065752,0],[34.796509,32.065899,0],[34.796567,32.066135,0],[34.796574,32.066164,0],[34.796638,32.066427,0],[34.79667,32.066589,0],[34.796601,32.066598,0],[34.796334,32.066642,0],[34.796288,32.066648,0],[34.796335,32.066767,0],[34.796436,32.067047,0],[34.796552,32.067352,0],[34.796579,32.067421,0],[34.796616,32.06752,0],[34.79666,32.067646,0],[34.796683,32.067698,0],[34.796689,32.067715,0],[34.796749,32.067867,0],[34.796767,32.067937,0],[34.7968,32.068027,0],[34.796835,32.068131,0],[34.796851,32.068172,0],[34.796864,32.068202,0],[34.796869,32.068214,0],[34.796885,32.068248,0],[34.796926,32.068381,0],[34.796948,32.068438,0],[34.796969,32.068498,0],[34.797011,32.068625,0],[34.797028,32.06867,0],[34.797056,32.068731,0],[34.797107,32.068868,0],[34.797128,32.068922,0],[34.797144,32.068965,0],[34.797169,32.06903,0],[34.797228,32.069187,0],[34.797235,32.069213,0],[34.797242,32.069234,0],[34.797321,32.06944,0],[34.797403,32.069665,0],[34.797424,32.069728,0],[34.797508,32.069956,0],[34.797591,32.070185,0],[34.797601,32.070209,0],[34.797683,32.070433,0],[34.79775,32.070613,0],[34.797765,32.070658,0],[34.79779,32.070726,0],[34.79786,32.070922,0],[34.797933,32.071118,0],[34.798007,32.071312,0],[34.798013,32.071331,0],[34.798031,32.071392,0],[34.798037,32.071405,0],[34.798051,32.071443,0],[34.798091,32.071552,0],[34.798111,32.071601,0],[34.798163,32.071743,0],[34.798312,32.072155,0],[34.798388,32.072364,0],[34.798458,32.072555,0],[34.798491,32.072645,0],[34.798566,32.072843,0],[34.798911,32.072518,0],[34.798979,32.072122,0],[34.799364,32.072086,0],[34.800431,32.071996,0],[34.801466,32.071909,0],[34.801877,32.071359,0],[34.801888,32.071344,0],[34.802298,32.070797,0],[34.802436,32.070611,0],[34.802473,32.070255,0],[34.802479,32.070204,0],[34.802496,32.070041,0],[34.802501,32.069984,0]]]},"type":"Feature","properties":{"Name":"6150"}},{"geometry":{"type":"Polygon","coordinates":[[[34.817776,32.07365,0],[34.817766,32.073652,0],[34.817706,32.073661,0],[34.817664,32.073668,0],[34.817365,32.073714,0],[34.817183,32.073742,0],[34.817137,32.073749,0],[34.816997,32.073771,0],[34.816976,32.073774,0],[34.816767,32.073807,0],[34.816726,32.073813,0],[34.816539,32.073837,0],[34.816238,32.073889,0],[34.816148,32.073903,0],[34.815867,32.073948,0],[34.815788,32.073961,0],[34.815576,32.073977,0],[34.815135,32.074016,0],[34.814856,32.07404,0],[34.814516,32.07407,0],[34.814309,32.074088,0],[34.814124,32.074105,0],[34.814032,32.074113,0],[34.813927,32.074122,0],[34.813655,32.074146,0],[34.813674,32.074135,0],[34.813461,32.074148,0],[34.813223,32.074166,0],[34.812993,32.07418,0],[34.813004,32.074204,0],[34.812954,32.074209,0],[34.81291,32.074213,0],[34.812752,32.074226,0],[34.812685,32.074232,0],[34.812639,32.074235,0],[34.81255,32.074244,0],[34.812346,32.074262,0],[34.812265,32.074269,0],[34.812061,32.074286,0],[34.811879,32.074302,0],[34.811765,32.074312,0],[34.811697,32.074317,0],[34.811506,32.074332,0],[34.811426,32.074341,0],[34.811309,32.074347,0],[34.810987,32.074376,0],[34.81079,32.074396,0],[34.81065,32.074408,0],[34.810449,32.074419,0],[34.810284,32.074439,0],[34.810069,32.074451,0],[34.810018,32.074455,0],[34.809591,32.074491,0],[34.80955,32.074489,0],[34.809454,32.074481,0],[34.809367,32.074476,0],[34.809202,32.074467,0],[34.809248,32.074505,0],[34.809301,32.074544,0],[34.809355,32.074571,0],[34.809434,32.074618,0],[34.80946,32.074635,0],[34.809486,32.074649,0],[34.809512,32.074675,0],[34.809542,32.074713,0],[34.809551,32.074735,0],[34.809642,32.074766,0],[34.809697,32.074787,0],[34.80973,32.074813,0],[34.80974,32.074839,0],[34.809751,32.074867,0],[34.809761,32.074904,0],[34.809771,32.074928,0],[34.809789,32.074967,0],[34.809815,32.074994,0],[34.80983,32.07501,0],[34.809872,32.075044,0],[34.8099,32.075056,0],[34.809935,32.075071,0],[34.809986,32.075087,0],[34.80991,32.07517,0],[34.809885,32.075191,0],[34.809904,32.075212,0],[34.809881,32.075256,0],[34.809821,32.075372,0],[34.809938,32.075402,0],[34.810068,32.075417,0],[34.810069,32.075506,0],[34.810098,32.075612,0],[34.81016,32.075644,0],[34.810324,32.075651,0],[34.810367,32.075669,0],[34.810409,32.075683,0],[34.81045,32.075698,0],[34.8105,32.0757,0],[34.810662,32.0757,0],[34.810803,32.0757,0],[34.810954,32.0757,0],[34.8111,32.0757,0],[34.811251,32.0757,0],[34.811399,32.0757,0],[34.811552,32.0757,0],[34.811709,32.0757,0],[34.811857,32.0757,0],[34.812074,32.0757,0],[34.812274,32.0757,0],[34.812306,32.0757,0],[34.812296,32.075799,0],[34.812518,32.075934,0],[34.812548,32.075952,0],[34.81274,32.076069,0],[34.812983,32.076217,0],[34.813302,32.076483,0],[34.81354,32.076691,0],[34.813566,32.076712,0],[34.813702,32.076836,0],[34.813728,32.076865,0],[34.813827,32.076945,0],[34.813872,32.076986,0],[34.813969,32.07707,0],[34.814061,32.077134,0],[34.814122,32.077177,0],[34.814307,32.077232,0],[34.814429,32.077241,0],[34.814565,32.077241,0],[34.81468,32.077215,0],[34.814854,32.077154,0],[34.815037,32.077068,0],[34.815225,32.076968,0],[34.815436,32.076817,0],[34.815636,32.07667,0],[34.81573,32.076606,0],[34.815752,32.07659,0],[34.81583,32.076534,0],[34.815924,32.076466,0],[34.816024,32.076395,0],[34.816129,32.076321,0],[34.816229,32.076249,0],[34.816387,32.076136,0],[34.816436,32.076101,0],[34.816553,32.076159,0],[34.816714,32.076328,0],[34.816768,32.076385,0],[34.816895,32.076519,0],[34.816998,32.076626,0],[34.817016,32.076645,0],[34.817127,32.076762,0],[34.817549,32.07649,0],[34.817427,32.076353,0],[34.81741,32.07633,0],[34.817789,32.076219,0],[34.817833,32.076201,0],[34.817879,32.076191,0],[34.817906,32.076185,0],[34.818135,32.076123,0],[34.818261,32.076096,0],[34.818407,32.07606,0],[34.818516,32.076043,0],[34.818701,32.076006,0],[34.818781,32.07599,0],[34.818674,32.075474,0],[34.818484,32.074494,0],[34.818467,32.074401,0],[34.818316,32.073568,0],[34.81826,32.073575,0],[34.817956,32.073622,0],[34.817915,32.073629,0],[34.817776,32.07365,0]]]},"type":"Feature","properties":{"Name":"6166"}}]} diff --git a/data/contrib/givataiim.zip b/data/contrib/givataiim.zip new file mode 100644 index 0000000..ced0f4a Binary files /dev/null and b/data/contrib/givataiim.zip differ diff --git a/data/contrib/kiryat_ono.dwg b/data/contrib/kiryat_ono.dwg new file mode 100644 index 0000000..5802980 Binary files /dev/null and b/data/contrib/kiryat_ono.dwg differ diff --git a/data/givataiim.json b/data/givataiim.json deleted file mode 100644 index 749a11d..0000000 --- a/data/givataiim.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"Topology","objects":{"gushim":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"6155","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]]},{"type":"Polygon","id":"6168","arcs":[[59,60,61,62,63,64,65,66,67,68,69,-55,70,-53,71,72,-50,73,-48,74,75,-45,76,-43,77,78,79]]},{"type":"Polygon","id":"6162","arcs":[[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,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124]]},{"type":"Polygon","id":"6144","arcs":[[125,126,127,128,129]]},{"type":"Polygon","id":"6158","arcs":[[130,131]]},{"type":"Polygon","id":"6164","arcs":[[132,-122,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,-81,150,-124]]},{"type":"Polygon","id":"6161","arcs":[[151,152,153,-91,154,-89,155,156,-86,157,158,-83,159,160,-148,161,162,-145,163,164,165,166,167,168,169,170,171,172,173,174,175,176]]},{"type":"Polygon","id":"6154","arcs":[[177,-164,178,179,180,-141,181,182,183,184,185,186,-30,187,188,-27,189,-25,190,191,-22,192,-20,193,194,195,-16,196,197,-166]]},{"type":"Polygon","id":"6167","arcs":[[198,199,200,201,202,203,-40,204,-38,205,206,-35,207,208,-32,209]]},{"type":"Polygon","id":"6128","arcs":[[210,211,212,213,214,215]]},{"type":"Polygon","id":"6156","arcs":[[216,217,218,219,220,221,222,223,224,225,226,-107,227,228,229,230,231,232,233,234,235,236,237,-95,238,-93,239,240,241,242,-128,243,-126,244]]},{"type":"Polygon","id":"6163","arcs":[[245,-224,246,-222,247,248,249,-218,250,251,-137,252,253,254,-120,255,-118,256,-116,257,258,-113,259,-111,260,-109,-226]]},{"type":"Polygon","id":"7105","arcs":[[261,262,263,264,-214,265,-212,266,267,-203,268,-201]]},{"type":"Polygon","id":"6160","arcs":[[269,270,-176,271,272,273,274,275,276,277,-168,278,-197,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,-131]]},{"type":"Polygon","id":"6150","arcs":[[308,309,310,311,-186,312,313,-183]]},{"type":"Polygon","id":"6166","arcs":[[314,-305,315,-303,316,317,-300,318,319,320,-296,321,-294,322,-292,323,-290,324,325,326,327,328,329,330,331,332,-14,333,-12,334,-10,335,-8,336,337,-5,338,-3,339,-1,340,341,342,-56,-70,343,-68,344,-66,345,-64,346,-62,347,-60,348,-308,349]]}]}},"arcs":[[[45277,69903,0],[-3,-302],[-398,-51]],[[44876,69550,0],[-361,-102],[257,-543]],[[44772,68905,0],[-58,-71],[76,-72],[233,-281],[-156,-55]],[[44867,68426,0],[-193,-91]],[[44674,68335,0],[-129,-116]],[[44545,68219,0],[-125,-146]],[[44420,68073,0],[-86,-213]],[[44334,67860,0],[-31,-126]],[[44303,67734,0],[-64,-183]],[[44239,67551,0],[-101,-89]],[[44138,67462,0],[-95,-40],[-73,-31]],[[43970,67391,0],[-279,-105],[-28,-75],[-91,-129],[-80,-88],[-80,-47]],[[43412,66947,0],[-205,-143],[-116,-75]],[[43091,66729,0],[-166,-91],[-162,-133],[-141,-129]],[[42622,66376,0],[-159,-13],[-1335,-126],[-141,-27]],[[40987,66210,0],[-123,-17]],[[40864,66193,0],[-232,-20],[-481,-41]],[[40151,66132,0],[-297,-27],[-313,-31],[-346,-30]],[[39195,66044,0],[-343,-31],[-189,-17]],[[38663,65996,0],[-521,-44]],[[38142,65952,0],[-689,-61],[-799,-71],[-288,-27],[-245,-24],[-659,-54],[-872,-68]],[[34590,65647,0],[-233,-24]],[[34357,65623,0],[-1351,-126]],[[33006,65497,0],[-854,-74],[-643,-55],[-631,-54],[-1139,-109],[-1207,-112],[-1457,-132],[-1017,-92]],[[26058,64869,0],[-325,-27]],[[25733,64842,0],[-1127,-91],[-1013,-85],[-92,-7]],[[23501,64659,0],[-156,-17]],[[23345,64642,0],[-43,-3],[-1020,-82]],[[22282,64557,0],[-162,-13],[-723,-58],[-31,0],[-487,-48],[-885,-64],[-119,-10],[-1335,-116],[-484,-41],[-89,-6]],[[17967,64201,0],[-367,-34]],[[17600,64167,0],[1745,4996],[208,594],[114,316],[1574,4280]],[[21241,74353,0],[269,10]],[[21510,74363,0],[1161,34],[934,20]],[[23605,74417,0],[226,10],[267,7],[309,10],[420,14],[432,13],[205,7]],[[25464,74478,0],[349,7]],[[25813,74485,0],[370,14],[334,13],[484,21]],[[27001,74533,0],[616,23],[214,10],[217,7]],[[28048,74573,0],[178,7],[227,3]],[[28453,74583,0],[199,4],[2385,92]],[[31037,74679,0],[1387,274]],[[32424,74953,0],[22,-176],[12,-153],[0,-119],[0,-281]],[[32458,74224,0],[25,-526],[12,-289],[0,-139]],[[32495,73270,0],[-37,-431],[-9,-68],[-98,-445]],[[32351,72326,0],[-119,-417]],[[32232,71909,0],[-43,-116]],[[32189,71793,0],[-74,-241],[-61,-190],[-49,-146]],[[32005,71216,0],[-37,-91],[-107,-289]],[[31861,70836,0],[-83,-231],[-55,-156],[-98,-247]],[[31625,70202,0],[-125,-319]],[[31500,69883,0],[-163,-340]],[[31337,69543,0],[-193,-383]],[[31144,69160,0],[-150,-248]],[[30994,68912,0],[478,-85],[334,-68],[168,-20],[101,-7],[711,27],[1424,65],[239,10],[603,24],[628,27]],[[35680,68885,0],[217,6],[114,4],[235,10]],[[36246,68905,0],[294,10],[261,17],[401,102],[153,34],[468,109],[503,101],[131,21],[463,57],[282,38],[159,-245],[462,24],[882,58],[300,20],[570,38],[377,13],[153,61],[554,234],[248,109],[600,265],[506,214],[98,44],[548,234],[236,102],[324,0],[420,-7],[435,-3],[370,0]],[[46444,70555,0],[-125,-51],[-129,-48]],[[46190,70456,0],[-71,-34],[-61,-27]],[[46058,70395,0],[-138,-7],[-223,-10],[-144,-3],[-74,-48],[-113,-64]],[[45366,70263,0],[-43,-184],[-46,-176]],[[71712,71600,0],[-567,126],[-334,57],[-447,122],[-386,92],[-701,211]],[[69277,72208,0],[-223,54]],[[69054,72262,0],[-135,61],[-1161,377],[52,78],[374,465],[-1292,923],[-340,-397]],[[66552,73769,0],[-371,-428]],[[66181,73341,0],[-389,-455],[-165,-193],[-493,-574],[-359,-197],[-150,119],[-483,384],[-307,244],[-321,251]],[[63514,72920,0],[-594,472]],[[62920,73392,0],[-239,190],[-68,54],[-287,218],[-613,499],[-646,512],[-576,340],[-560,291],[-533,208],[-352,88],[-417,0],[-373,-31],[-567,-186],[-187,-146],[-281,-218],[-297,-285],[-138,-139],[-303,-271],[-80,-99],[-417,-421],[-79,-71],[-729,-706]],[[55178,73219,0],[-141,-129],[-836,-774]],[[54201,72316,0],[-744,-502],[-588,-397]],[[52869,71417,0],[-772,-520]],[[52097,70897,0],[31,-336],[-98,0],[-613,0],[-664,0],[-453,0],[-481,0],[-469,0],[-453,0],[-462,0],[-447,0],[-463,0],[-432,0],[-496,0],[-153,-6]],[[36246,68905,0],[-566,-20]],[[30994,68912,0],[141,231],[9,17]],[[31144,69160,0],[101,196],[92,187]],[[31500,69883,0],[70,176],[55,143]],[[31861,70836,0],[80,214],[30,75],[34,91]],[[32005,71216,0],[184,577]],[[32232,71909,0],[82,288],[37,129]],[[32495,73270,0],[0,115],[-31,740],[-6,99]],[[32458,74224,0],[0,373],[-9,149],[-25,207]],[[32424,74953,0],[1192,238],[361,105],[2508,492],[1014,190],[1552,340],[264,58],[1405,291],[169,41],[435,51],[150,17],[202,37],[343,51],[138,21],[487,57],[692,78],[1136,157],[101,17],[227,27],[1004,122],[159,24],[827,135],[441,58],[505,82],[423,54],[913,136],[771,118],[1005,136],[3990,547],[224,30],[46,10],[192,24],[518,68],[285,44],[174,61],[193,92],[245,102],[447,173],[307,132],[76,38],[80,27],[383,163],[336,135],[108,48],[474,187],[365,149],[64,27],[413,180],[426,170],[193,78],[135,54],[116,51],[221,98],[159,65],[49,27],[465,187],[371,166],[61,24],[346,139],[95,41],[297,132],[114,34],[385,163],[264,109],[184,64],[300,132],[122,41],[98,34],[328,132],[349,143],[174,71],[405,180],[432,180],[459,194],[450,183],[346,149],[64,17],[43,7],[129,44],[236,112],[441,183],[419,173],[144,65],[153,58],[169,78],[425,169],[218,89],[223,91],[457,197],[64,27],[135,55],[107,61],[227,88],[391,170],[270,112],[181,57],[297,126],[159,58],[315,146],[120,54],[174,68],[291,112],[423,170],[135,57],[101,48],[205,78],[245,105],[171,75],[414,176],[410,160],[162,54],[46,17],[288,122],[273,126],[-43,-167],[-92,-393],[-80,-221],[-73,-278],[-116,-445],[-135,-444],[-120,-438],[-79,-255],[-46,-207],[-12,-64],[-101,-394],[-40,-112],[-40,-207],[-25,-136],[-36,-183],[-46,-289],[-46,-254],[-52,-350],[-28,-329],[-40,-265],[-58,-176],[-40,-112],[-113,-313],[-98,-275],[-46,-162],[-135,-455],[-85,-350],[-31,-88],[-135,-411],[-79,-295],[-37,-92],[-15,-71],[-150,-441],[-68,-241],[-76,-218],[-132,-420],[-22,-82],[-85,-349],[-160,-452],[-58,-170],[-52,-312],[-61,-417],[-74,-435],[-18,-227],[-58,-231],[-98,-445],[-110,-458],[-92,-431],[-107,-455],[-98,-455],[-101,-434],[-108,-448],[-12,-75],[-122,27],[-141,31]],[[40356,35174,0],[270,153]],[[40626,35327,0],[695,407]],[[41321,35734,0],[226,-329],[172,-235],[677,-6]],[[42396,35164,0],[1084,-14]],[[43480,35150,0],[802,-7]],[[44282,35143,0],[1170,-10]],[[45452,35133,0],[95,0],[1421,-17]],[[46968,35116,0],[594,-3],[1494,-17],[3626,-27]],[[52682,35069,0],[1559,17],[285,-85],[603,-119]],[[55129,34882,0],[637,-95],[619,-92]],[[56385,34695,0],[707,-85],[707,-98],[640,-105],[729,-160],[1265,-411]],[[60433,33836,0],[-129,-349]],[[60304,33487,0],[-358,-859],[-144,-349]],[[59802,32279,0],[-756,-1813]],[[59046,30466,0],[-325,-781],[-373,-899],[70,-394]],[[58418,28392,0],[61,-292],[40,-183]],[[58519,27917,0],[61,-221],[71,-254]],[[58651,27442,0],[89,-241],[73,-221]],[[58813,26980,0],[98,-227],[89,-217]],[[59000,26536,0],[101,-211],[110,-231]],[[59211,26094,0],[123,-220],[113,-201]],[[59447,25673,0],[141,-196],[119,-170],[150,-207],[126,-177],[162,-227]],[[60145,24696,0],[49,-54],[117,-129],[159,-184]],[[60470,24329,0],[159,-156],[196,-193]],[[60825,23980,0],[178,-153],[193,-170]],[[61196,23657,0],[104,-101],[116,-116],[74,-54]],[[61490,23386,0],[33,-82],[12,-88],[-12,-85],[-37,-81],[-58,-68],[-76,-54],[-86,-31],[-92,-10],[-92,10]],[[61082,22897,0],[-1892,570],[-1185,357],[-258,78],[-1286,387]],[[56461,24289,0],[288,679],[-1369,16]],[[55380,24984,0],[-12,-349],[-1237,356]],[[54131,24991,0],[-1948,17]],[[52183,25008,0],[-1654,492]],[[50529,25500,0],[-281,252]],[[50248,25752,0],[-49,40],[-49,31],[-43,34]],[[50107,25857,0],[-31,-4],[-61,-3],[-80,-10]],[[49935,25840,0],[-82,-116]],[[49853,25724,0],[21,-135],[138,-557]],[[50012,25032,0],[-466,3],[-2471,17],[-579,7],[-667,4],[-215,6],[-796,4],[-459,7],[-937,10]],[[43422,25090,0],[-938,-4]],[[42484,25086,0],[-679,7],[-1284,0],[-229,0]],[[40292,25093,0],[6,105]],[[40298,25198,0],[6,849],[15,1246],[0,801]],[[40319,28094,0],[0,573],[9,465]],[[40328,29132,0],[13,655],[6,1073]],[[40347,30860,0],[3,638],[0,648],[-417,550],[420,326],[3,2152]],[[71332,14028,0],[43,149],[80,275],[177,516]],[[71632,14968,0],[224,61],[398,112]],[[72254,15141,0],[-300,883],[-230,604],[450,119],[150,492],[374,95]],[[72698,17334,0],[-190,618],[-239,757]],[[72269,18709,0],[551,166],[46,166],[184,638],[86,279],[416,1323],[236,747],[227,743],[168,455],[156,530],[368,1178],[46,152],[364,1144],[224,737],[1182,3737],[159,505],[447,1409],[184,-24],[17315,-2491],[-98,-278],[-493,-1531],[-304,-893],[-410,-1218],[-245,-740],[-643,-1752],[-410,-1201],[-65,-204],[-46,-139],[-98,-309],[-43,-126],[-162,-512],[-802,-2352],[-132,-363],[-346,-1049],[-205,-696],[3,-3],[-270,-879],[-88,-859],[-120,-889],[-40,-289],[-98,-580],[-64,-418],[-73,-427],[-120,-818],[-21,-269],[-160,-909],[-36,-265],[-37,-316],[-107,-672],[-37,-146],[-55,-387],[-184,-991],[-82,-393],[-135,-703],[-40,-214],[-46,-292],[-101,-254],[-187,-486],[-24,-115],[-172,-852],[-64,-350],[-98,-397],[-98,-543],[-178,-882],[-40,-150],[-137,-733],[-163,-794],[0,-44],[-162,44],[-73,17],[-285,61],[-111,37],[-989,224],[-493,119],[-551,116],[-726,166],[-220,51],[-1718,377],[-901,203],[-254,51],[-710,160],[-714,152],[-367,85],[-205,34],[-3651,835],[-214,44],[-769,170],[-254,58],[-781,159],[-744,146],[-254,88],[147,286],[9,122],[-34,64],[-79,44],[-699,326],[-76,31],[-1308,584],[-214,64],[-435,177],[-217,122],[104,359],[199,713],[199,723],[168,628],[187,669],[193,672],[178,658],[585,-112],[107,700],[98,624],[-13,143],[-76,115],[-101,54],[-64,7],[-74,-3],[-43,-21],[132,509],[236,832],[315,1120]],[[70870,61326,0],[-62,434],[-85,543],[-95,618],[-19,119],[-76,285]],[[70533,63325,0],[771,4721],[641,3439],[756,3397],[187,1371],[1687,5244],[288,1823],[395,-20],[11049,-533],[5981,-228],[187,-6],[487,-4],[943,-34],[753,-23],[989,-48],[353,-20],[888,-24],[119,-421],[153,-550],[120,-536],[125,-553],[153,-584],[196,-642],[374,-1446],[511,-1659],[132,-360],[55,-261],[12,-136],[196,-1456],[10,-184],[104,-682],[300,-3024],[43,-883],[36,-756],[46,-744],[46,-543],[3,-156],[19,-380],[33,-659],[31,-594],[21,-546],[46,-519],[31,-666],[89,-1754],[107,-1565],[-401,10],[-649,27],[-628,31],[-619,27],[-588,20],[-628,38],[-597,0],[-588,30],[-597,27],[-609,31],[-607,17],[-771,27],[-784,27],[-806,34],[-484,20],[-967,45],[-898,44],[-811,47],[-80,4],[-474,17],[-291,6],[-215,7],[-487,17],[-349,24],[-171,20],[-221,-10],[-269,20],[-610,24],[-606,24],[-594,20],[-426,17],[-741,31],[-649,30],[-665,24],[-655,27],[-361,31],[-1464,64],[-649,21],[-588,7],[-585,40],[-619,38],[-640,10],[-618,20],[-607,17],[-606,20],[-622,28],[-597,30],[-606,27],[-754,17],[-278,31]],[[40328,29132,0],[4,-451],[-13,-587]],[[40298,25198,0],[-25,-2141],[7,-75],[-282,-774],[-159,-448],[-245,-675],[-141,-387],[-187,-547],[-273,-764],[-70,-169],[-58,-177],[-356,-1015]],[[38509,18026,0],[-474,-1272],[-1911,-5268],[-1394,-3876]],[[34730,7610,0],[-713,-1687]],[[34017,5923,0],[-1332,-2010]],[[32685,3913,0],[-1100,258],[650,1989],[-1596,204],[-839,24],[542,780],[-236,174],[-297,190],[-352,305],[-184,-176],[-1117,1123],[-947,-872],[-300,-265],[-125,448],[-990,2827],[-94,605],[-270,2807],[-12,129],[-114,1238],[-94,1025],[-49,510],[-46,475],[-37,495],[-19,163],[-79,1093],[-74,784],[-6,68],[-43,384],[-9,139],[-9,112],[-104,1127],[-55,607],[-95,1052],[-37,340],[-28,387],[0,54],[-30,302],[-37,363],[-15,116],[-6,54],[-6,82],[-83,885],[-19,326],[-27,275],[-28,401],[-9,105],[-82,808],[-71,787],[-285,3150]],[[23822,32170,0],[-520,5824]],[[23302,37994,0],[-120,1310]],[[23182,39304,0],[261,21],[88,-930],[8750,825]],[[32281,39220,0],[-86,885]],[[32195,40105,0],[4342,398],[646,57],[1590,146]],[[38773,40706,0],[1660,156]],[[40433,40862,0],[113,4]],[[40546,40866,0],[15,-479],[52,-1561]],[[40613,38826,0],[52,-679],[19,-231],[33,-268]],[[40717,37648,0],[74,-461],[129,-476]],[[40920,36711,0],[156,-451],[95,-207]],[[41171,36053,0],[85,-166],[74,-146],[-704,-414]],[[40356,35174,0],[-3,-2091],[-410,-360],[407,-573],[0,-645],[-3,-645]],[[69853,55963,0],[-548,-1178],[-52,-139],[-163,-373],[-581,-1263],[-389,-859],[-1088,-3771],[-70,-257],[-184,-594],[-27,-92],[-153,-496],[-203,-648],[-122,-404],[-208,-672],[-950,-2949],[-750,-2373],[-2980,-4467]],[[61385,35428,0],[-281,-407],[-395,-580]],[[60709,34441,0],[-276,-605]],[[56385,34695,0],[-1256,187]],[[52682,35069,0],[-3405,27],[-1262,13],[-1047,7]],[[46968,35116,0],[-1421,14],[-95,3]],[[44282,35143,0],[-438,4],[-364,3]],[[43480,35150,0],[-738,10],[-120,0],[-226,4]],[[41321,35734,0],[-150,319]],[[41171,36053,0],[-89,204],[-162,454]],[[40717,37648,0],[-30,265],[-74,913]],[[40613,38826,0],[-15,387],[-52,1653]],[[40433,40862,0],[-13,795]],[[40420,41657,0],[13,526]],[[40433,42183,0],[12,553],[12,567],[12,563],[3,85],[0,533],[25,584],[46,2128],[24,1062],[16,689],[12,547],[18,804],[13,564],[9,448],[12,536],[12,560],[12,550],[10,475],[12,417],[6,381],[12,451],[9,468],[7,364],[9,342]],[[40736,55854,0],[12,299]],[[40748,56153,0],[196,0]],[[40944,56153,0],[297,0],[704,-7],[668,-3],[634,-7]],[[43247,56136,0],[674,-7],[750,-3],[738,-7],[707,-3]],[[46116,56116,0],[800,-10],[1485,-14],[1452,-7]],[[49853,56085,0],[3062,-27]],[[52915,56058,0],[171,0],[273,-3]],[[53359,56055,0],[560,0],[864,-4],[808,-3],[833,-7],[775,-10],[77,0]],[[57276,56031,0],[857,-7],[848,-3]],[[58981,56021,0],[1091,-7],[98,-3]],[[60170,56011,0],[1405,-4],[273,-3],[1923,-7],[784,-3],[291,-4],[303,0],[652,-3],[631,-4],[646,-3],[637,-3],[643,-7],[650,-4],[845,-3]],[[40433,42183,0],[-10,-482],[-3,-44]],[[40433,40862,0],[-1084,-101],[-576,-55]],[[38773,40706,0],[-551,-51],[-591,-54],[-644,-58],[-624,-57],[-613,-58],[-1384,-126],[-312,-27],[-705,-64],[-588,-55],[-566,-51]],[[32195,40105,0],[76,-807],[10,-78]],[[23182,39304,0],[-1047,11442]],[[22135,50746,0],[-9,139],[-25,275],[-15,194],[-52,553],[-19,173],[-113,1208]],[[21902,53288,0],[-2970,4406]],[[18932,57694,0],[-6437,601]],[[12495,58295,0],[-1180,122],[-208,1344],[-1056,1103]],[[10051,60864,0],[376,1185],[80,-31],[58,-54],[55,-98],[49,-201],[59,-146],[73,-98],[49,-116],[58,-61],[37,-51],[52,-40],[64,-21],[65,-3],[64,17],[747,309],[251,122],[300,109],[438,152],[98,34],[205,48],[206,30],[211,11],[208,-11],[208,-30],[206,-48],[196,-68],[189,-88],[178,-105],[165,-119],[294,-91],[301,-72],[303,-47],[306,-24],[309,-7],[1091,2916]],[[17967,64201,0],[1020,85],[514,44],[916,74],[661,55],[316,13],[58,21],[830,64]],[[22282,64557,0],[380,27],[683,58]],[[23501,64659,0],[542,44],[836,71],[854,68]],[[26058,64869,0],[667,61],[680,62],[597,54],[521,47],[943,89],[827,78],[812,74],[811,65],[1090,98]],[[33006,65497,0],[490,44],[757,72],[104,10]],[[34590,65647,0],[1035,78],[600,54],[992,92],[502,44],[423,37]],[[38663,65996,0],[532,48]],[[39195,66044,0],[454,40],[502,48]],[[40151,66132,0],[713,61]],[[40987,66210,0],[-77,-2895],[-21,-764],[-18,-818],[-19,-730],[-40,-1398],[-18,-1042]],[[40794,58563,0],[-3,-499],[-18,-540],[-13,-573],[-12,-557],[-12,-540]],[[16993,77319,0],[120,323],[199,522],[70,190]],[[17382,78354,0],[205,309],[273,401],[27,40],[59,85]],[[17946,79189,0],[799,-132]],[[18745,79057,0],[27,278],[181,1925],[31,305]],[[18984,81565,0],[18,102]],[[19002,81667,0],[2750,258],[2282,214],[1295,122],[1014,99],[171,13],[236,24],[168,17],[1329,125],[1397,133],[217,17],[138,13],[-21,279],[125,47],[-43,465],[-21,92],[-12,224],[-77,641],[1651,119],[456,31],[1510,142],[141,17],[217,21],[1078,91],[1047,78],[950,72],[202,13],[245,27],[217,4],[1084,81],[334,51],[579,-17],[1121,10],[269,-139],[1112,-516],[223,-51],[196,-74],[380,-31],[236,-41],[1225,-139],[652,-91],[778,-109],[144,-24],[490,-58],[919,-125],[597,-85],[1445,-180],[187,17],[1369,295],[597,1307],[337,-51],[220,-13],[974,-150],[166,-499],[116,-380],[162,-590],[83,-313],[475,-1530],[98,-279],[202,-638],[141,-502],[153,-475],[245,-791],[27,-109],[52,-159],[-235,-34],[-686,-95],[-787,-109],[-846,-115],[-156,-24],[-1516,-211],[-998,-139],[-1032,-146],[-1093,-156],[-934,-136],[-974,-145],[-1005,-133],[-232,-30],[-92,-17],[-1204,-163],[-208,-31],[-404,-54],[-487,-48],[-150,-23],[-340,-48],[-205,-31],[-150,-23],[-147,-24],[-472,-78],[-475,-95],[-857,-166],[-55,-11],[-248,-54],[-1167,-251],[-530,-116],[-879,-173],[-95,-20],[-1387,-272],[-1023,-200],[-379,-91],[-879,-187],[-301,-65]],[[31037,74679,0],[-2584,-96]],[[28048,74573,0],[-1047,-40]],[[27001,74533,0],[-1188,-48]],[[25464,74478,0],[-1859,-61]],[[23605,74417,0],[-769,-17],[-1228,-34],[-98,-3]],[[21241,74353,0],[64,68],[-221,108],[-646,312],[-529,299],[-573,244],[-236,41],[-52,268],[-55,211],[-40,753],[-1960,662]],[[18996,82933,0],[-6,136],[-6,645],[-13,407],[-3,109],[-9,553],[-9,618]],[[18950,85401,0],[-6,275]],[[18944,85676,0],[-3,108],[-25,1405]],[[18916,87189,0],[-6,333]],[[18910,87522,0],[-3,146],[-6,322],[0,89],[-6,261],[-6,309],[-3,122],[-6,448],[-10,343],[0,122],[-3,95],[-6,367],[-9,448],[0,115],[-122,85],[-117,75],[-190,125],[-128,82],[-138,88]],[[18157,91164,0],[-132,88],[-135,85],[92,350],[104,505],[22,68],[24,51],[71,48],[49,30],[-392,-64],[-3,193],[1004,146],[1764,832],[2986,937],[306,115],[524,159],[-46,89],[-153,302],[1173,78],[1506,319],[8146,2437],[1688,502],[1090,377],[634,190],[1194,397],[888,255],[947,309],[116,37],[276,-533],[330,-628],[334,-621],[315,-540],[1048,-1900],[144,-285],[159,-296],[138,-268],[58,-312],[9,-85],[-24,-231],[-10,-302],[-55,-241],[59,-502],[39,-380],[-12,-129],[-101,-961],[-260,-882],[-199,-666],[-282,-926],[-181,-594],[-144,-486],[-229,-753],[-331,-1096],[-548,-1830],[-49,24],[-781,373],[-570,258],[-683,0],[-1004,4],[-1537,-123],[-196,-13],[-141,-17],[-43,-4],[-573,-50],[-600,-48],[-616,-47],[-376,-41],[-242,-21],[-806,-57],[-67,-7],[-184,-14],[-174,-13],[-49,0],[-1479,-136],[-83,-3],[-129,0],[-236,-34],[-226,-14],[-1372,-112],[-58,-3],[67,-652],[101,-798],[-174,-13],[36,-309],[-95,0],[-202,-20],[-591,-51],[-572,-58],[-190,-14],[-374,-27],[-992,-98],[-169,-21],[-235,-20],[-132,-10],[-1014,-88],[-542,-51],[-563,-55],[-211,-17],[-356,-30],[-505,-61],[-505,-38],[-937,-91],[-98,0],[-647,-65],[-637,-64],[-652,-61],[-689,-75],[15,295],[-15,357],[-6,410],[-3,204]],[[50266,8916,0],[24,38],[40,64],[65,272],[98,-14],[367,591]],[[50860,9867,0],[260,417],[-183,14],[180,1212]],[[51117,11510,0],[625,-106],[73,-13]],[[51815,11391,0],[475,750],[254,411],[258,414]],[[52802,12966,0],[12,51],[177,1361]],[[52991,14378,0],[43,359],[273,2105],[113,275]],[[53420,17117,0],[349,838],[19,44]],[[53788,17999,0],[-52,377],[-98,421],[-141,411]],[[53497,19208,0],[-80,163],[-119,257]],[[53298,19628,0],[-184,275],[-162,224],[952,588],[634,-947],[1709,4008],[214,513]],[[56461,24289,0],[4621,-1392]],[[61490,23386,0],[-294,271]],[[61196,23657,0],[-371,323]],[[60825,23980,0],[-355,349]],[[60470,24329,0],[-325,367]],[[60145,24696,0],[-698,977]],[[59447,25673,0],[-236,421]],[[59211,26094,0],[-211,442]],[[59000,26536,0],[-187,444]],[[58813,26980,0],[-162,462]],[[58651,27442,0],[-132,475]],[[58519,27917,0],[-101,475]],[[59046,30466,0],[376,906],[380,907]],[[60304,33487,0],[405,954]],[[60709,34441,0],[676,987]],[[61385,35428,0],[365,-108],[125,-34],[898,-248],[676,-187],[748,-207],[92,-23],[563,-157],[368,-101],[85,-24],[129,-34],[671,-187],[698,-193],[781,-218],[664,-183],[153,-41],[1293,-359],[539,-146],[649,-180],[667,-183],[610,-170],[646,-180],[135,-37],[413,-112],[1204,-333],[159,-44],[818,-228],[1090,-302],[58,-13],[-1574,-5000],[-291,-926],[-49,-150],[-432,-1374],[-168,-537],[-150,-471],[-224,-717],[-735,-2331],[-239,-825],[-551,-156]],[[72269,18709,0],[257,-808],[172,-567]],[[72254,15141,0],[-622,-173]],[[71332,14028,0],[-251,-879],[-71,-251],[-229,-835],[-141,-513],[80,17],[73,-3],[71,-20],[61,-38],[49,-51],[30,-64],[16,-68],[-10,-68],[-94,-614],[-105,-696],[-395,64],[-183,38],[-181,-659],[-187,-679],[-184,-668],[-159,-570],[-15,-55],[-117,-424],[-55,-197],[-223,-811],[-98,-356],[-1770,651],[-74,14],[-76,-7],[-71,-24],[-61,-44],[-49,-51],[-609,-1093],[-322,75],[-922,221],[-802,193],[-818,197],[-793,190],[-242,58],[-775,186],[-768,184],[-254,61],[-763,183],[-793,190],[-245,58],[-885,214],[-1008,241],[-376,88],[27,112],[22,88],[-1063,217],[-15,-61],[-117,27],[-30,-101],[-916,220],[-248,61],[-879,211],[-867,207],[-241,57],[-833,201],[-56,-241],[-1081,237],[65,262],[-9,0],[-31,6]],[[53298,19628,0],[199,-420]],[[53788,17999,0],[-368,-882]],[[52991,14378,0],[-174,-1361],[-15,-51]],[[52802,12966,0],[-515,-825],[-472,-750]],[[51815,11391,0],[-698,119]],[[50860,9867,0],[-58,-95],[-389,-621],[-147,-235]],[[50266,8916,0],[-328,-583],[-79,-489],[-561,-2067],[-144,-424],[-410,-1195],[-263,-475],[-233,-873],[-303,-611],[-426,-319],[-398,-886],[-505,-994],[-350,265],[-358,275],[-282,-241],[-116,-150],[-548,421],[-876,587],[-1081,642],[-285,170],[-1408,733],[-285,125],[-1146,554],[-1457,597],[-1868,696],[-59,-143],[-388,-889],[-380,-900],[-95,-230],[55,-61],[24,-184],[-404,-628],[-110,-135],[-168,-238],[-187,-305],[-925,224],[-1167,274],[-132,14],[-529,112],[-383,119],[977,2209]],[[34017,5923,0],[257,604],[456,1083]],[[34730,7610,0],[3231,9001],[86,149],[462,1266]],[[38509,18026,0],[350,1012],[134,373],[261,744],[193,536],[137,400],[242,672],[160,438],[290,781],[-18,68],[34,2043]],[[42484,25086,0],[889,4],[36,0],[6,0],[7,0]],[[50012,25032,0],[-147,597],[-12,95]],[[49935,25840,0],[172,17]],[[50107,25857,0],[141,-105]],[[50529,25500,0],[1133,-339],[521,-153]],[[54131,24991,0],[1231,-363],[18,356]],[[17946,79189,0],[-564,-835]],[[17382,78354,0],[-389,-1035]],[[16993,77319,0],[-165,10],[-184,-10],[-24,-3],[-206,-68],[-355,112],[-104,-238],[-741,279],[-49,37],[-43,31],[-107,101],[-64,-23],[-200,84],[-293,99],[-77,24],[-432,146],[-254,152],[-717,323],[-223,98],[-303,187],[-6,621],[-25,78],[-116,329],[144,214],[42,65],[132,196],[28,45],[168,254],[28,38],[-178,179],[-184,184],[-67,68],[-98,98],[-43,41],[-132,135],[65,68],[73,78],[-116,85],[-126,95],[-33,27],[-181,136],[-175,126],[-82,-75],[-120,-105],[-40,37],[-73,68],[-40,34],[-193,173],[-168,153],[-52,-27],[-190,-99],[-236,-125],[-162,-82],[-184,21],[-322,30],[-716,475],[-337,224],[-328,384],[-606,604],[-952,533],[-120,68],[-404,227],[132,228],[39,108],[172,635],[275,920],[53,204],[64,200],[92,197],[89,149],[45,58],[65,81],[128,126],[65,57],[153,133],[269,190],[261,173],[153,105],[144,119],[125,132],[71,116],[92,105],[104,95],[119,75],[132,57],[138,41],[147,20],[303,-40],[263,-44],[328,-38],[263,-10],[113,-30],[242,-62],[86,-23],[92,-7],[89,20],[131,105],[126,113],[181,115],[82,54],[279,116],[334,149],[217,115],[300,160],[325,153],[242,125],[245,116],[251,101],[267,99],[140,54],[132,68],[119,88],[108,99],[235,224],[245,237],[13,11],[89,-248],[94,-262],[270,150],[178,98],[85,48],[279,152],[227,129],[257,143],[156,85],[46,27],[181,98],[55,34],[269,146],[68,41],[205,112],[122,-81],[107,-72],[129,-81],[135,-85]],[[18157,91164,0],[135,-92],[128,-81],[68,-44],[122,-82],[116,-74],[129,-85],[3,-116],[9,-441],[6,-353],[0,-17],[0,-217],[10,-343],[6,-414],[6,-156],[12,-570],[3,-557]],[[18916,87189,0],[3,-247],[7,-296],[6,-336],[3,-234],[3,-88],[0,-31],[6,-169],[0,-112]],[[18950,85401,0],[0,-112],[12,-204],[6,-339],[-3,-258],[10,-255],[6,-478],[3,-286],[6,-285],[0,-132],[3,-31],[0,-51],[3,-37]],[[18996,82933,0],[-9,-207],[12,-407],[12,-357],[-9,-295]],[[18984,81565,0],[-19,-197],[-95,-984],[-21,-248],[-52,-519],[-22,-255],[-30,-305]],[[70870,61326,0],[-65,-509],[-55,-448],[-70,-564],[-352,-2790],[-475,-1052]],[[69853,55963,0],[-202,0],[-940,7],[-729,3],[-346,4],[-1446,6],[-6020,28]],[[58981,56021,0],[-1448,7],[-257,3]],[[57276,56031,0],[-1032,14],[-898,3],[-921,3],[-1066,4]],[[53359,56055,0],[-444,3]],[[52915,56058,0],[-1072,10],[-1191,10],[-799,7]],[[49853,56085,0],[-971,14],[-907,7],[-842,3],[-86,0],[-931,7]],[[46116,56116,0],[-1044,7],[-879,6],[-946,7]],[[43247,56136,0],[-1020,7],[-814,10],[-469,0]],[[40748,56153,0],[46,2410]],[[40987,66210,0],[220,31],[1415,135]],[[42622,66376,0],[159,7],[1032,75]],[[43813,66458,0],[460,-44],[499,-44],[505,-48]],[[45277,66322,0],[472,-27],[187,-14]],[[45936,66281,0],[315,-40],[190,-28]],[[46441,66213,0],[325,-30],[291,-7]],[[47057,66176,0],[223,-20],[205,-21]],[[47485,66135,0],[300,-30],[509,-65],[508,-47],[530,-48],[101,4]],[[49433,65949,0],[426,-51],[612,-48]],[[50471,65850,0],[907,-88]],[[51378,65762,0],[624,-58],[248,-23]],[[52250,65681,0],[255,-31],[370,-31]],[[52875,65619,0],[273,-30]],[[53148,65589,0],[131,-10],[215,-21]],[[53494,65558,0],[484,-44],[134,-13]],[[54112,65501,0],[156,-14],[-36,-85]],[[54232,65402,0],[704,-47]],[[54936,65355,0],[625,-51],[759,-54],[-61,37]],[[56259,65287,0],[508,-61],[325,-21]],[[57092,65205,0],[5050,-492]],[[62142,64713,0],[649,-54],[242,-44]],[[63033,64615,0],[178,-34],[1280,-231],[811,-149],[487,-65]],[[65789,64136,0],[224,-41],[55,-6],[95,-17],[79,-14],[251,-44]],[[66493,64014,0],[429,-75],[141,-23]],[[67063,63916,0],[1473,-252]],[[68536,63664,0],[129,-23]],[[68665,63641,0],[214,-38]],[[68879,63603,0],[551,-95]],[[69430,63508,0],[931,-159],[172,-24]],[[22135,50746,0],[107,-852],[83,-882],[857,-9708]],[[23182,39304,0],[58,-638],[62,-672]],[[23302,37994,0],[128,-1442],[187,-2091],[205,-2291]],[[23822,32170,0],[25,-465],[122,-1246],[107,-1208],[-3,-48],[-85,-3],[-598,20],[-269,11],[-603,23],[-264,7],[-1540,61],[-579,21],[-637,27],[-285,13],[-349,14],[-915,81],[-356,-44],[-624,14],[-40,7],[-374,17],[-89,6],[-110,7],[-248,7],[-508,14],[-114,3],[-134,0],[-503,17],[-61,0],[-122,292],[-457,-126],[65,-142],[-49,-11],[-404,28],[-239,6],[-447,21],[-187,3],[-404,17],[-233,7],[-270,7],[-85,13],[-497,17],[-388,14],[-215,-10],[-438,34],[-138,6],[-588,11],[-42,3],[-561,34],[-98,3],[-478,10],[-128,4],[-126,0],[-321,13],[-166,7],[-462,14],[27,-170],[89,-1055],[31,-357],[9,-187],[46,-515],[80,-937],[-1893,-129],[-796,-51],[-1893,-112],[-275,-24],[-1807,-92],[-257,-17],[-671,-40],[465,1303],[77,183],[77,238],[147,363],[483,7],[141,0],[3,689],[-9,1039],[138,336],[18,61],[157,424],[156,400],[3,65],[187,509],[73,197],[297,750],[196,597],[113,374],[65,234],[46,136],[55,115],[233,727],[61,128],[24,75],[19,82],[43,173],[76,332],[236,713],[80,431],[91,499],[178,801],[21,99],[196,892],[98,550],[-211,31],[-817,149],[-141,20],[144,404],[309,951],[355,1035],[83,234],[113,336],[135,428],[70,176],[19,58],[183,516],[56,237],[101,306],[107,353],[49,139],[40,102],[15,41],[49,115],[125,451],[68,194],[64,204],[129,431],[52,152],[86,207],[156,465],[64,184],[49,146],[77,220],[180,533],[22,88],[21,72],[242,699],[251,764],[64,213],[258,774],[254,778],[31,81],[251,760],[205,611],[46,153],[76,231],[215,665],[223,665],[227,659],[18,64],[55,207],[19,44],[43,129],[122,370],[61,167],[160,482],[456,1398],[233,709],[214,649],[101,305],[230,672]],[[12495,58295,0],[3267,-306],[3170,-295]],[[18932,57694,0],[1258,-1867],[34,-51],[1256,-1856],[422,-632]],[[68879,63603,0],[-31,7],[-183,31]],[[68536,63664,0],[-916,157],[-557,95]],[[66493,64014,0],[-64,10],[-640,112]],[[65789,64136,0],[-125,21],[-573,81],[-922,177],[-275,47],[-861,153]],[[62142,64713,0],[-1351,133],[-854,81],[-1041,102],[-634,61],[-567,58],[-281,27],[-322,30]],[[57092,65205,0],[-833,82]],[[56259,65287,0],[58,-37],[-652,44],[-729,61]],[[54232,65402,0],[33,82],[-153,17]],[[53494,65558,0],[-206,21],[-140,10]],[[52875,65619,0],[-625,62]],[[51378,65762,0],[-558,54],[-349,34]],[[50471,65850,0],[-208,17],[-585,51],[-245,31]],[[49433,65949,0],[-358,20],[-986,98],[-604,68]],[[47485,66135,0],[-428,41]],[[47057,66176,0],[-616,37]],[[46441,66213,0],[-505,68]],[[45936,66281,0],[-659,41]],[[45277,66322,0],[-156,14],[-1308,122]],[[43813,66458,0],[-125,-7],[-294,-27],[-266,-17],[-506,-31]],[[43091,66729,0],[242,160],[79,58]],[[43970,67391,0],[168,71]],[[44239,67551,0],[31,88],[33,95]],[[44334,67860,0],[31,81],[55,132]],[[44420,68073,0],[79,92],[46,54]],[[44674,68335,0],[86,41],[107,50]],[[44772,68905,0],[-70,149],[-184,394],[358,102]],[[45277,69903,0],[89,360]],[[45366,70263,0],[190,108],[502,24]],[[46058,70395,0],[132,61]],[[52097,70897,0],[680,459],[92,61]],[[54201,72316,0],[977,903]],[[62920,73392,0],[288,-231],[306,-241]],[[66181,73341,0],[316,363],[55,65]],[[69054,72262,0],[141,-34],[82,-20]],[[71712,71600,0],[245,-54],[-328,-1752],[-582,-3326],[-52,-316],[-462,-2827]],[[69430,63508,0],[-125,24],[-426,71]]],"transform":{"scale":[3.265432654326628e-7,2.9462294622948554e-7],"translate":[34.795284,32.054911]}} diff --git a/data/gushim/faradis.gush.js b/data/gushim/faradis.gush.js new file mode 100644 index 0000000..7638380 --- /dev/null +++ b/data/gushim/faradis.gush.js @@ -0,0 +1 @@ +var gushim={"type":"FeatureCollection","features":[{"geometry":{"type":"Polygon","coordinates":[[[34.951381,32.603437,0],[34.950102,32.603597,0],[34.948593,32.603719,0],[34.94788,32.603779,0],[34.947167,32.603835,0],[34.946661,32.603868,0],[34.946449,32.603886,0],[34.946313,32.603898,0],[34.945793,32.603946,0],[34.945687,32.603959,0],[34.94486,32.604004,0],[34.944738,32.60401,0],[34.943998,32.604055,0],[34.943563,32.604086,0],[34.943473,32.60409,0],[34.94338,32.604095,0],[34.943215,32.604103,0],[34.943041,32.604116,0],[34.94288,32.604126,0],[34.942556,32.604147,0],[34.94224,32.604166,0],[34.942102,32.604173,0],[34.941983,32.604183,0],[34.941793,32.604196,0],[34.941671,32.604201,0],[34.941553,32.604209,0],[34.941413,32.60422,0],[34.941228,32.60423,0],[34.941071,32.604239,0],[34.940948,32.604248,0],[34.940888,32.604258,0],[34.941432,32.605022,0],[34.941583,32.605576,0],[34.941894,32.607963,0],[34.95192,32.606233,0],[34.951953,32.60622,0],[34.951982,32.606203,0],[34.952008,32.606181,0],[34.952029,32.606157,0],[34.952038,32.606142,0],[34.952886,32.60946,0],[34.953268,32.609418,0],[34.953271,32.609417,0],[34.954491,32.609276,0],[34.954569,32.609242,0],[34.954362,32.608855,0],[34.954047,32.607611,0],[34.953732,32.607078,0],[34.953457,32.606011,0],[34.953368,32.60561,0],[34.953251,32.605083,0],[34.952992,32.604741,0],[34.952367,32.603321,0],[34.95229,32.60334,0],[34.951859,32.603383,0],[34.951704,32.603395,0],[34.951381,32.603437,0]]]},"type":"Feature","properties":{"Name":"10937"}},{"geometry":{"type":"Polygon","coordinates":[[[34.953368,32.60561,0],[34.953457,32.606011,0],[34.955332,32.605763,0],[34.958008,32.606778,0],[34.958021,32.606776,0],[34.964554,32.605845,0],[34.96483,32.605613,0],[34.964691,32.605095,0],[34.964363,32.605026,0],[34.964345,32.605023,0],[34.964118,32.604953,0],[34.963948,32.604834,0],[34.963755,32.604699,0],[34.963495,32.604695,0],[34.963487,32.604691,0],[34.963291,32.604597,0],[34.96288,32.604399,0],[34.962879,32.604398,0],[34.962795,32.604318,0],[34.962789,32.604312,0],[34.962515,32.604001,0],[34.962513,32.603999,0],[34.962136,32.603773,0],[34.962132,32.603771,0],[34.962047,32.603719,0],[34.961859,32.603669,0],[34.961844,32.603661,0],[34.96158,32.603524,0],[34.961297,32.603377,0],[34.961151,32.603306,0],[34.960671,32.603232,0],[34.960606,32.603201,0],[34.960506,32.603111,0],[34.960382,32.603,0],[34.960294,32.602871,0],[34.960253,32.602769,0],[34.960223,32.602694,0],[34.960193,32.602601,0],[34.960062,32.60238,0],[34.959931,32.60216,0],[34.959351,32.601294,0],[34.958917,32.600645,0],[34.956655,32.601518,0],[34.955943,32.60189,0],[34.955935,32.601894,0],[34.955715,32.601999,0],[34.955349,32.602793,0],[34.954417,32.602988,0],[34.953069,32.603207,0],[34.952367,32.603321,0],[34.952992,32.604741,0],[34.953251,32.605083,0],[34.953368,32.60561,0]]]},"type":"Feature","properties":{"Name":"10964"}},{"geometry":{"type":"Polygon","coordinates":[[[34.951622,32.59834,0],[34.951657,32.598318,0],[34.951718,32.598306,0],[34.951716,32.598271,0],[34.951757,32.598222,0],[34.951747,32.598182,0],[34.951797,32.598133,0],[34.951886,32.598112,0],[34.95195,32.598247,0],[34.952388,32.598073,0],[34.952954,32.597403,0],[34.952837,32.597168,0],[34.95276,32.597077,0],[34.95268,32.596799,0],[34.952703,32.59648,0],[34.952604,32.596211,0],[34.952471,32.59606,0],[34.952206,32.59596,0],[34.952192,32.595905,0],[34.952164,32.595581,0],[34.952052,32.595317,0],[34.952039,32.595152,0],[34.951869,32.595203,0],[34.951808,32.595184,0],[34.95169,32.594872,0],[34.951337,32.594854,0],[34.951394,32.594502,0],[34.95129,32.594415,0],[34.951211,32.594468,0],[34.951136,32.594685,0],[34.951085,32.594935,0],[34.951074,32.594975,0],[34.951071,32.595009,0],[34.951009,32.595143,0],[34.950972,32.59519,0],[34.950913,32.595233,0],[34.950851,32.595255,0],[34.950872,32.595283,0],[34.950849,32.595574,0],[34.950843,32.595573,0],[34.95083,32.595727,0],[34.950835,32.595728,0],[34.950848,32.595805,0],[34.950814,32.596294,0],[34.95088,32.596775,0],[34.950836,32.596976,0],[34.950691,32.597282,0],[34.95063,32.598049,0],[34.950696,32.598285,0],[34.950914,32.59826,0],[34.950888,32.59817,0],[34.951098,32.598132,0],[34.951107,32.598079,0],[34.951118,32.597995,0],[34.951501,32.597954,0],[34.951499,32.598036,0],[34.95152,32.598037,0],[34.951501,32.598135,0],[34.951533,32.598176,0],[34.951524,32.598263,0],[34.951606,32.598252,0],[34.951622,32.59834,0]]]},"type":"Feature","properties":{"Name":"112"}},{"geometry":{"type":"Polygon","coordinates":[[[34.945126,32.59369,0],[34.945428,32.593685,0],[34.945591,32.593682,0],[34.945808,32.593682,0],[34.945923,32.593681,0],[34.946035,32.59368,0],[34.946202,32.593679,0],[34.946347,32.593677,0],[34.946503,32.593676,0],[34.946652,32.593675,0],[34.946756,32.593675,0],[34.94681,32.593675,0],[34.946983,32.593674,0],[34.947266,32.593672,0],[34.947722,32.5936,0],[34.948026,32.593516,0],[34.948474,32.593342,0],[34.948591,32.593297,0],[34.948722,32.593248,0],[34.949382,32.593193,0],[34.949393,32.593198,0],[34.949401,32.593201,0],[34.94942,32.59321,0],[34.949333,32.592945,0],[34.949571,32.592962,0],[34.949561,32.59295,0],[34.949397,32.592747,0],[34.949241,32.592492,0],[34.948819,32.592077,0],[34.948792,32.59205,0],[34.948429,32.591784,0],[34.948332,32.591747,0],[34.948126,32.591675,0],[34.948042,32.591657,0],[34.947864,32.591611,0],[34.947786,32.591582,0],[34.947563,32.591479,0],[34.947447,32.59141,0],[34.947193,32.591248,0],[34.946921,32.591065,0],[34.946264,32.590631,0],[34.946201,32.590591,0],[34.946178,32.590587,0],[34.94617,32.590579,0],[34.946119,32.590567,0],[34.94608,32.59051,0],[34.946041,32.590454,0],[34.946,32.590399,0],[34.945959,32.590344,0],[34.945916,32.59029,0],[34.945876,32.590241,0],[34.945793,32.590148,0],[34.945454,32.590318,0],[34.943809,32.591095,0],[34.943152,32.59141,0],[34.942535,32.591701,0],[34.942289,32.591818,0],[34.942303,32.591909,0],[34.942475,32.593,0],[34.942435,32.593249,0],[34.942706,32.593318,0],[34.942692,32.593426,0],[34.942672,32.593551,0],[34.943368,32.593597,0],[34.943606,32.593701,0],[34.944357,32.593672,0],[34.944698,32.593694,0],[34.944913,32.593692,0],[34.945126,32.59369,0]]]},"type":"Feature","properties":{"Name":"11277"}},{"geometry":{"type":"Polygon","coordinates":[[[34.946559,32.597554,0],[34.946655,32.597527,0],[34.946678,32.59752,0],[34.946878,32.597465,0],[34.947039,32.597421,0],[34.947194,32.597378,0],[34.947363,32.597337,0],[34.947546,32.597296,0],[34.947734,32.597254,0],[34.947919,32.597211,0],[34.948107,32.597167,0],[34.948291,32.597124,0],[34.948417,32.597072,0],[34.948624,32.596987,0],[34.948772,32.596926,0],[34.948847,32.596886,0],[34.949057,32.596778,0],[34.949166,32.596649,0],[34.949357,32.596498,0],[34.949491,32.596401,0],[34.949762,32.596245,0],[34.949938,32.596053,0],[34.949899,32.596003,0],[34.949963,32.595971,0],[34.949999,32.595953,0],[34.950002,32.595954,0],[34.95003,32.595938,0],[34.950008,32.595903,0],[34.950087,32.595855,0],[34.950158,32.595766,0],[34.950239,32.595691,0],[34.950229,32.595678,0],[34.950323,32.595599,0],[34.950398,32.595535,0],[34.950503,32.59546,0],[34.950521,32.595449,0],[34.95054,32.595438,0],[34.950558,32.595426,0],[34.950575,32.595414,0],[34.950593,32.595402,0],[34.950599,32.595397,0],[34.950698,32.595322,0],[34.95068,32.595297,0],[34.950739,32.595275,0],[34.950817,32.595207,0],[34.950754,32.595131,0],[34.950656,32.594958,0],[34.950598,32.594838,0],[34.950574,32.594772,0],[34.950543,32.594714,0],[34.950513,32.594659,0],[34.950453,32.594561,0],[34.950386,32.594434,0],[34.950342,32.594369,0],[34.95031,32.594311,0],[34.950321,32.594275,0],[34.95025,32.594157,0],[34.950177,32.594028,0],[34.950043,32.593792,0],[34.950034,32.593775,0],[34.949972,32.593652,0],[34.949901,32.59352,0],[34.949833,32.593394,0],[34.949803,32.593332,0],[34.949787,32.593257,0],[34.949713,32.593308,0],[34.949591,32.593238,0],[34.949489,32.593242,0],[34.94942,32.59321,0],[34.949382,32.593193,0],[34.948722,32.593248,0],[34.948591,32.593297,0],[34.948474,32.593342,0],[34.948026,32.593516,0],[34.947722,32.5936,0],[34.947266,32.593672,0],[34.946983,32.593674,0],[34.94681,32.593675,0],[34.946756,32.593675,0],[34.946652,32.593675,0],[34.946503,32.593676,0],[34.946347,32.593677,0],[34.946202,32.593679,0],[34.946035,32.59368,0],[34.945923,32.593681,0],[34.945808,32.593682,0],[34.945591,32.593682,0],[34.945428,32.593685,0],[34.945126,32.59369,0],[34.944913,32.593692,0],[34.944698,32.593694,0],[34.944703,32.593729,0],[34.944732,32.593729,0],[34.945107,32.595771,0],[34.945266,32.596511,0],[34.945568,32.597888,0],[34.945578,32.597929,0],[34.945604,32.597919,0],[34.945647,32.597901,0],[34.945711,32.597873,0],[34.94577,32.597847,0],[34.945869,32.597809,0],[34.945968,32.597769,0],[34.946103,32.597715,0],[34.946235,32.597661,0],[34.946335,32.597619,0],[34.946366,32.597608,0],[34.946559,32.597554,0]]]},"type":"Feature","properties":{"Name":"11278"}},{"geometry":{"type":"Polygon","coordinates":[[[34.937953,32.602302,0],[34.938119,32.60228,0],[34.93831,32.602201,0],[34.938483,32.602131,0],[34.938659,32.602059,0],[34.938839,32.601986,0],[34.938872,32.601972,0],[34.938906,32.601957,0],[34.938939,32.601942,0],[34.938972,32.601926,0],[34.939004,32.60191,0],[34.939012,32.601907,0],[34.939182,32.601817,0],[34.939259,32.601779,0],[34.939361,32.601727,0],[34.939592,32.601608,0],[34.939705,32.601548,0],[34.939778,32.601511,0],[34.939899,32.601449,0],[34.939977,32.601409,0],[34.940088,32.601351,0],[34.940161,32.601277,0],[34.940229,32.601209,0],[34.940381,32.60106,0],[34.940534,32.600912,0],[34.940684,32.600769,0],[34.940841,32.600665,0],[34.941012,32.600554,0],[34.941271,32.600387,0],[34.941405,32.600301,0],[34.941795,32.600049,0],[34.942185,32.599797,0],[34.942579,32.599544,0],[34.942775,32.599419,0],[34.942978,32.599346,0],[34.943251,32.599249,0],[34.943361,32.599207,0],[34.94338,32.599201,0],[34.94358,32.599129,0],[34.943786,32.599055,0],[34.944058,32.598855,0],[34.944418,32.598594,0],[34.944517,32.598522,0],[34.944614,32.598451,0],[34.944702,32.598387,0],[34.944892,32.59825,0],[34.944985,32.598202,0],[34.94508,32.598152,0],[34.945176,32.598103,0],[34.945274,32.598054,0],[34.945489,32.597964,0],[34.945529,32.597949,0],[34.945559,32.597937,0],[34.945578,32.597929,0],[34.945568,32.597888,0],[34.945266,32.596511,0],[34.945107,32.595771,0],[34.944732,32.593729,0],[34.944703,32.593729,0],[34.944698,32.593694,0],[34.944357,32.593672,0],[34.943606,32.593701,0],[34.943368,32.593597,0],[34.942672,32.593551,0],[34.942692,32.593426,0],[34.942706,32.593318,0],[34.942435,32.593249,0],[34.942475,32.593,0],[34.942303,32.591909,0],[34.942289,32.591818,0],[34.942002,32.591954,0],[34.94086,32.592501,0],[34.940744,32.59256,0],[34.94071,32.592504,0],[34.940204,32.592493,0],[34.940005,32.592483,0],[34.939996,32.59261,0],[34.939968,32.592963,0],[34.940005,32.593208,0],[34.940063,32.593309,0],[34.939943,32.593358,0],[34.939761,32.593441,0],[34.939574,32.593521,0],[34.939385,32.5936,0],[34.939204,32.593678,0],[34.939027,32.593759,0],[34.93884,32.593837,0],[34.938662,32.593916,0],[34.938474,32.594,0],[34.938346,32.594053,0],[34.938112,32.594158,0],[34.937929,32.594239,0],[34.937752,32.594314,0],[34.937571,32.594392,0],[34.937393,32.594471,0],[34.937219,32.594544,0],[34.937048,32.594625,0],[34.93686,32.594702,0],[34.936682,32.594776,0],[34.936314,32.594937,0],[34.936439,32.595814,0],[34.936574,32.596759,0],[34.936844,32.59863,0],[34.937099,32.600169,0],[34.937275,32.601235,0],[34.937476,32.601939,0],[34.937581,32.602353,0],[34.937953,32.602302,0]]]},"type":"Feature","properties":{"Name":"11279"}},{"geometry":{"type":"Polygon","coordinates":[[[34.946198,32.599927,0],[34.946233,32.600077,0],[34.94632,32.600421,0],[34.946649,32.601622,0],[34.946716,32.601852,0],[34.946799,32.602132,0],[34.94692,32.602583,0],[34.946821,32.602692,0],[34.946747,32.602777,0],[34.946729,32.602799,0],[34.946453,32.603099,0],[34.94636,32.603233,0],[34.946274,32.603354,0],[34.946141,32.60354,0],[34.946034,32.60364,0],[34.945979,32.603691,0],[34.945805,32.60385,0],[34.945802,32.603852,0],[34.945711,32.603935,0],[34.945687,32.603959,0],[34.945793,32.603946,0],[34.946313,32.603898,0],[34.946449,32.603886,0],[34.946661,32.603868,0],[34.947167,32.603835,0],[34.94788,32.603779,0],[34.948593,32.603719,0],[34.948582,32.603547,0],[34.948571,32.603372,0],[34.948561,32.603201,0],[34.948551,32.603026,0],[34.948541,32.602855,0],[34.948533,32.602682,0],[34.948524,32.602505,0],[34.948512,32.602289,0],[34.948505,32.602157,0],[34.948495,32.601984,0],[34.94849,32.601813,0],[34.948487,32.601727,0],[34.948481,32.601553,0],[34.948478,32.601468,0],[34.948467,32.601226,0],[34.948461,32.601102,0],[34.948333,32.601107,0],[34.947971,32.601119,0],[34.948036,32.601021,0],[34.948214,32.600755,0],[34.948266,32.600677,0],[34.948318,32.6006,0],[34.948372,32.600519,0],[34.948429,32.600434,0],[34.948562,32.600236,0],[34.948802,32.599876,0],[34.948929,32.599687,0],[34.949043,32.599517,0],[34.949107,32.59942,0],[34.949181,32.59931,0],[34.949159,32.599231,0],[34.94915,32.599243,0],[34.949115,32.599104,0],[34.949095,32.599025,0],[34.949074,32.598942,0],[34.949053,32.598858,0],[34.94905,32.598849,0],[34.949024,32.598745,0],[34.949013,32.598697,0],[34.948973,32.598522,0],[34.948935,32.598354,0],[34.948917,32.598275,0],[34.948898,32.598186,0],[34.94889,32.598153,0],[34.948883,32.598115,0],[34.948879,32.598096,0],[34.948859,32.597992,0],[34.948848,32.597931,0],[34.948833,32.597854,0],[34.9488,32.597685,0],[34.948797,32.597668,0],[34.94877,32.597524,0],[34.948755,32.597447,0],[34.94873,32.597366,0],[34.948706,32.597289,0],[34.948684,32.597218,0],[34.948632,32.597047,0],[34.948643,32.597042,0],[34.948624,32.596987,0],[34.948417,32.597072,0],[34.948291,32.597124,0],[34.948107,32.597167,0],[34.947919,32.597211,0],[34.947734,32.597254,0],[34.947546,32.597296,0],[34.947363,32.597337,0],[34.947194,32.597378,0],[34.947039,32.597421,0],[34.946878,32.597465,0],[34.946678,32.59752,0],[34.946655,32.597527,0],[34.946559,32.597554,0],[34.946366,32.597608,0],[34.946335,32.597619,0],[34.946235,32.597661,0],[34.946103,32.597715,0],[34.945968,32.597769,0],[34.945869,32.597809,0],[34.94577,32.597847,0],[34.945711,32.597873,0],[34.945726,32.597924,0],[34.945754,32.598041,0],[34.945769,32.598103,0],[34.945785,32.598173,0],[34.945802,32.598244,0],[34.94582,32.59832,0],[34.945853,32.598461,0],[34.945885,32.598592,0],[34.945916,32.598727,0],[34.945946,32.598861,0],[34.945963,32.598935,0],[34.945981,32.599006,0],[34.946018,32.599163,0],[34.946047,32.599288,0],[34.946051,32.599305,0],[34.946087,32.599461,0],[34.946106,32.599538,0],[34.946123,32.599612,0],[34.946139,32.599681,0],[34.946198,32.599927,0]]]},"type":"Feature","properties":{"Name":"11280"}},{"geometry":{"type":"Polygon","coordinates":[[[34.949159,32.599231,0],[34.949181,32.59931,0],[34.949213,32.599262,0],[34.949239,32.599244,0],[34.949348,32.599177,0],[34.949484,32.599089,0],[34.949943,32.59879,0],[34.950124,32.598545,0],[34.950394,32.598329,0],[34.950535,32.598058,0],[34.950547,32.598048,0],[34.950566,32.598045,0],[34.95063,32.598049,0],[34.950691,32.597282,0],[34.950836,32.596976,0],[34.95088,32.596775,0],[34.950814,32.596294,0],[34.950848,32.595805,0],[34.950835,32.595728,0],[34.95083,32.595727,0],[34.950843,32.595573,0],[34.950849,32.595574,0],[34.950872,32.595283,0],[34.950817,32.595207,0],[34.950739,32.595275,0],[34.95068,32.595297,0],[34.950698,32.595322,0],[34.950599,32.595397,0],[34.950593,32.595402,0],[34.950575,32.595414,0],[34.950558,32.595426,0],[34.95054,32.595438,0],[34.950521,32.595449,0],[34.950503,32.59546,0],[34.950398,32.595535,0],[34.950323,32.595599,0],[34.950229,32.595678,0],[34.950239,32.595691,0],[34.950158,32.595766,0],[34.950087,32.595855,0],[34.950008,32.595903,0],[34.95003,32.595938,0],[34.950002,32.595954,0],[34.949999,32.595953,0],[34.949963,32.595971,0],[34.949899,32.596003,0],[34.949938,32.596053,0],[34.949762,32.596245,0],[34.949491,32.596401,0],[34.949357,32.596498,0],[34.949166,32.596649,0],[34.949057,32.596778,0],[34.948847,32.596886,0],[34.948772,32.596926,0],[34.948624,32.596987,0],[34.948643,32.597042,0],[34.948632,32.597047,0],[34.948684,32.597218,0],[34.948706,32.597289,0],[34.94873,32.597366,0],[34.948755,32.597447,0],[34.94877,32.597524,0],[34.948797,32.597668,0],[34.9488,32.597685,0],[34.948833,32.597854,0],[34.948848,32.597931,0],[34.948859,32.597992,0],[34.948879,32.598096,0],[34.948883,32.598115,0],[34.94889,32.598153,0],[34.948898,32.598186,0],[34.948917,32.598275,0],[34.948935,32.598354,0],[34.948973,32.598522,0],[34.949013,32.598697,0],[34.949024,32.598745,0],[34.94905,32.598849,0],[34.949053,32.598858,0],[34.949074,32.598942,0],[34.949095,32.599025,0],[34.949115,32.599104,0],[34.94915,32.599243,0],[34.949159,32.599231,0]]]},"type":"Feature","properties":{"Name":"11281"}},{"geometry":{"type":"Polygon","coordinates":[[[34.948582,32.603547,0],[34.948593,32.603719,0],[34.950102,32.603597,0],[34.951381,32.603437,0],[34.951704,32.603395,0],[34.951859,32.603383,0],[34.95229,32.60334,0],[34.952367,32.603321,0],[34.952337,32.603299,0],[34.951967,32.602629,0],[34.951886,32.602484,0],[34.951849,32.602365,0],[34.951719,32.60194,0],[34.951651,32.601718,0],[34.951611,32.601587,0],[34.951594,32.601532,0],[34.951539,32.601352,0],[34.951524,32.601304,0],[34.951459,32.601091,0],[34.951404,32.600907,0],[34.951374,32.600772,0],[34.951365,32.600728,0],[34.951319,32.600519,0],[34.951286,32.600366,0],[34.951267,32.600302,0],[34.951231,32.600174,0],[34.95115,32.599885,0],[34.951101,32.599715,0],[34.951049,32.599532,0],[34.951023,32.599437,0],[34.950978,32.599279,0],[34.950783,32.598589,0],[34.950773,32.598555,0],[34.950746,32.598459,0],[34.950715,32.59835,0],[34.950696,32.598285,0],[34.95063,32.598049,0],[34.950566,32.598045,0],[34.950547,32.598048,0],[34.950535,32.598058,0],[34.950394,32.598329,0],[34.950124,32.598545,0],[34.949943,32.59879,0],[34.949484,32.599089,0],[34.949348,32.599177,0],[34.949239,32.599244,0],[34.949213,32.599262,0],[34.949181,32.59931,0],[34.949107,32.59942,0],[34.949043,32.599517,0],[34.948929,32.599687,0],[34.948802,32.599876,0],[34.948562,32.600236,0],[34.948429,32.600434,0],[34.948372,32.600519,0],[34.948318,32.6006,0],[34.948266,32.600677,0],[34.948214,32.600755,0],[34.9481,32.600925,0],[34.948036,32.601021,0],[34.947971,32.601119,0],[34.948333,32.601107,0],[34.948461,32.601102,0],[34.948467,32.601226,0],[34.948478,32.601468,0],[34.948481,32.601553,0],[34.948487,32.601727,0],[34.94849,32.601813,0],[34.948495,32.601984,0],[34.948505,32.602157,0],[34.948512,32.602289,0],[34.948524,32.602505,0],[34.948533,32.602682,0],[34.948541,32.602855,0],[34.948551,32.603026,0],[34.948561,32.603201,0],[34.948571,32.603372,0],[34.948582,32.603547,0]]]},"type":"Feature","properties":{"Name":"11282"}},{"geometry":{"type":"Polygon","coordinates":[[[34.945979,32.603691,0],[34.946034,32.60364,0],[34.946141,32.60354,0],[34.946274,32.603354,0],[34.94636,32.603233,0],[34.946453,32.603099,0],[34.946729,32.602799,0],[34.946747,32.602777,0],[34.946821,32.602692,0],[34.94692,32.602583,0],[34.946799,32.602132,0],[34.946716,32.601852,0],[34.946649,32.601622,0],[34.94632,32.600421,0],[34.946233,32.600077,0],[34.946198,32.599927,0],[34.946139,32.599681,0],[34.946123,32.599612,0],[34.946106,32.599538,0],[34.946087,32.599461,0],[34.946047,32.599288,0],[34.946018,32.599163,0],[34.945981,32.599006,0],[34.945963,32.598935,0],[34.945946,32.598861,0],[34.945916,32.598727,0],[34.945885,32.598592,0],[34.945853,32.598461,0],[34.94582,32.59832,0],[34.945802,32.598244,0],[34.945785,32.598173,0],[34.945769,32.598103,0],[34.945754,32.598041,0],[34.945726,32.597924,0],[34.945711,32.597873,0],[34.945647,32.597901,0],[34.945604,32.597919,0],[34.945578,32.597929,0],[34.945559,32.597937,0],[34.945529,32.597949,0],[34.945489,32.597964,0],[34.945274,32.598054,0],[34.945176,32.598103,0],[34.94508,32.598152,0],[34.944985,32.598202,0],[34.944892,32.59825,0],[34.944702,32.598387,0],[34.944614,32.598451,0],[34.944517,32.598522,0],[34.944418,32.598594,0],[34.944058,32.598855,0],[34.943786,32.599055,0],[34.94358,32.599129,0],[34.94338,32.599201,0],[34.943361,32.599207,0],[34.943251,32.599249,0],[34.942978,32.599346,0],[34.942775,32.599419,0],[34.942579,32.599544,0],[34.942605,32.599595,0],[34.942987,32.60129,0],[34.943006,32.601367,0],[34.943395,32.603259,0],[34.943477,32.603674,0],[34.943563,32.604086,0],[34.943998,32.604055,0],[34.944738,32.60401,0],[34.94486,32.604004,0],[34.945687,32.603959,0],[34.945711,32.603935,0],[34.945802,32.603852,0],[34.945805,32.60385,0],[34.945979,32.603691,0]]]},"type":"Feature","properties":{"Name":"11283"}},{"geometry":{"type":"Polygon","coordinates":[[[34.941071,32.604239,0],[34.941228,32.60423,0],[34.941413,32.60422,0],[34.941553,32.604209,0],[34.941671,32.604201,0],[34.941793,32.604196,0],[34.941983,32.604183,0],[34.942102,32.604173,0],[34.94224,32.604166,0],[34.942556,32.604147,0],[34.94288,32.604126,0],[34.943041,32.604116,0],[34.943215,32.604103,0],[34.94338,32.604095,0],[34.943473,32.60409,0],[34.943563,32.604086,0],[34.943477,32.603674,0],[34.943395,32.603259,0],[34.943006,32.601367,0],[34.942987,32.60129,0],[34.942605,32.599595,0],[34.942579,32.599544,0],[34.942185,32.599797,0],[34.941795,32.600049,0],[34.941405,32.600301,0],[34.941271,32.600387,0],[34.941012,32.600554,0],[34.940841,32.600665,0],[34.940684,32.600769,0],[34.940534,32.600912,0],[34.940381,32.60106,0],[34.940229,32.601209,0],[34.940161,32.601277,0],[34.940088,32.601351,0],[34.939977,32.601409,0],[34.939899,32.601449,0],[34.939778,32.601511,0],[34.939705,32.601548,0],[34.939592,32.601608,0],[34.939361,32.601727,0],[34.939259,32.601779,0],[34.939182,32.601817,0],[34.939012,32.601907,0],[34.938979,32.601923,0],[34.938946,32.601939,0],[34.938913,32.601954,0],[34.93888,32.601969,0],[34.938846,32.601983,0],[34.938839,32.601986,0],[34.938659,32.602059,0],[34.938483,32.602131,0],[34.93831,32.602201,0],[34.938119,32.60228,0],[34.937953,32.602302,0],[34.937581,32.602353,0],[34.937594,32.602408,0],[34.938273,32.605358,0],[34.938287,32.605393,0],[34.938409,32.605335,0],[34.938519,32.605283,0],[34.938627,32.605232,0],[34.938798,32.605151,0],[34.939135,32.604992,0],[34.939308,32.60491,0],[34.939417,32.604857,0],[34.939525,32.604804,0],[34.939634,32.604753,0],[34.939799,32.604672,0],[34.939872,32.604639,0],[34.940042,32.604558,0],[34.940119,32.604522,0],[34.940263,32.604454,0],[34.940422,32.604378,0],[34.940509,32.604336,0],[34.94058,32.60432,0],[34.94073,32.60429,0],[34.940888,32.604258,0],[34.940948,32.604248,0],[34.941071,32.604239,0]]]},"type":"Feature","properties":{"Name":"11284"}},{"geometry":{"type":"Polygon","coordinates":[[[34.951365,32.600728,0],[34.951374,32.600772,0],[34.951404,32.600907,0],[34.951459,32.601091,0],[34.951524,32.601304,0],[34.951539,32.601352,0],[34.951594,32.601532,0],[34.951611,32.601587,0],[34.951651,32.601718,0],[34.951719,32.60194,0],[34.951849,32.602365,0],[34.951886,32.602484,0],[34.951967,32.602629,0],[34.952337,32.603299,0],[34.952367,32.603321,0],[34.953069,32.603207,0],[34.954417,32.602988,0],[34.954446,32.600753,0],[34.954427,32.600745,0],[34.953967,32.6003,0],[34.953823,32.600027,0],[34.953422,32.599174,0],[34.953224,32.598934,0],[34.953104,32.598691,0],[34.953048,32.598454,0],[34.953241,32.59795,0],[34.953258,32.597752,0],[34.952954,32.597403,0],[34.952388,32.598073,0],[34.95195,32.598247,0],[34.951886,32.598112,0],[34.951797,32.598133,0],[34.951747,32.598182,0],[34.951757,32.598222,0],[34.951716,32.598271,0],[34.951718,32.598306,0],[34.951657,32.598318,0],[34.951622,32.59834,0],[34.951606,32.598252,0],[34.951524,32.598263,0],[34.951533,32.598176,0],[34.951501,32.598135,0],[34.95152,32.598037,0],[34.951499,32.598036,0],[34.951501,32.597954,0],[34.951118,32.597995,0],[34.951107,32.598079,0],[34.951098,32.598132,0],[34.950888,32.59817,0],[34.950914,32.59826,0],[34.950696,32.598285,0],[34.950715,32.59835,0],[34.950746,32.598459,0],[34.950773,32.598555,0],[34.950783,32.598589,0],[34.950978,32.599279,0],[34.951023,32.599437,0],[34.951049,32.599532,0],[34.951101,32.599715,0],[34.95115,32.599885,0],[34.951231,32.600174,0],[34.951267,32.600302,0],[34.951286,32.600366,0],[34.951319,32.600519,0],[34.951365,32.600728,0]]]},"type":"Feature","properties":{"Name":"11285"}},{"geometry":{"type":"Polygon","coordinates":[[[34.950754,32.595131,0],[34.950817,32.595207,0],[34.950851,32.595255,0],[34.950913,32.595233,0],[34.950972,32.59519,0],[34.951009,32.595143,0],[34.951071,32.595009,0],[34.951074,32.594975,0],[34.951085,32.594935,0],[34.951136,32.594685,0],[34.951211,32.594468,0],[34.95129,32.594415,0],[34.951394,32.594502,0],[34.951337,32.594854,0],[34.95169,32.594872,0],[34.951808,32.595184,0],[34.951869,32.595203,0],[34.952039,32.595152,0],[34.951983,32.594916,0],[34.952103,32.594729,0],[34.952263,32.594481,0],[34.952567,32.594323,0],[34.952614,32.594306,0],[34.952633,32.594338,0],[34.953807,32.593876,0],[34.954514,32.593378,0],[34.954896,32.592939,0],[34.954499,32.592631,0],[34.954468,32.592607,0],[34.954685,32.592431,0],[34.954896,32.592152,0],[34.955058,32.59194,0],[34.955109,32.591755,0],[34.95532,32.590754,0],[34.955519,32.590236,0],[34.95546,32.590206,0],[34.95587,32.589627,0],[34.955814,32.589591,0],[34.955784,32.589573,0],[34.954894,32.589077,0],[34.954824,32.589038,0],[34.954764,32.589071,0],[34.954761,32.589068,0],[34.954753,32.58906,0],[34.954745,32.589053,0],[34.954737,32.589045,0],[34.95473,32.589037,0],[34.954723,32.589029,0],[34.954716,32.589021,0],[34.954601,32.588825,0],[34.954619,32.588668,0],[34.954589,32.588808,0],[34.954396,32.589499,0],[34.954303,32.589808,0],[34.954296,32.589833,0],[34.954284,32.589866,0],[34.954273,32.5899,0],[34.95426,32.589933,0],[34.954247,32.589966,0],[34.95417,32.590146,0],[34.953765,32.590854,0],[34.953743,32.590887,0],[34.953635,32.591057,0],[34.953633,32.59106,0],[34.953625,32.591073,0],[34.953616,32.591085,0],[34.953607,32.591097,0],[34.953598,32.591109,0],[34.953589,32.591121,0],[34.953579,32.591133,0],[34.953569,32.591144,0],[34.953566,32.591148,0],[34.953468,32.591244,0],[34.953445,32.591264,0],[34.953363,32.591322,0],[34.953271,32.591376,0],[34.952996,32.591502,0],[34.952809,32.591579,0],[34.952703,32.591616,0],[34.952627,32.591637,0],[34.952438,32.591678,0],[34.952314,32.591702,0],[34.952182,32.591718,0],[34.95209,32.591731,0],[34.951917,32.591745,0],[34.951885,32.591746,0],[34.951763,32.591752,0],[34.951641,32.591756,0],[34.951619,32.591753,0],[34.951531,32.591743,0],[34.951419,32.591733,0],[34.950849,32.591675,0],[34.950756,32.591674,0],[34.950663,32.591675,0],[34.950436,32.591696,0],[34.949632,32.59178,0],[34.949056,32.591807,0],[34.949025,32.591805,0],[34.948994,32.591802,0],[34.948963,32.591799,0],[34.948931,32.591795,0],[34.9489,32.59179,0],[34.94834,32.591714,0],[34.948332,32.591747,0],[34.948429,32.591784,0],[34.948792,32.59205,0],[34.948819,32.592077,0],[34.949241,32.592492,0],[34.949397,32.592747,0],[34.949452,32.592815,0],[34.949561,32.59295,0],[34.949571,32.592962,0],[34.949333,32.592945,0],[34.94942,32.59321,0],[34.949489,32.593242,0],[34.949591,32.593238,0],[34.949713,32.593308,0],[34.949787,32.593257,0],[34.949803,32.593332,0],[34.949833,32.593394,0],[34.949901,32.59352,0],[34.949972,32.593652,0],[34.950034,32.593775,0],[34.950043,32.593792,0],[34.950177,32.594028,0],[34.95025,32.594157,0],[34.950321,32.594275,0],[34.95031,32.594311,0],[34.950342,32.594369,0],[34.950386,32.594434,0],[34.950453,32.594561,0],[34.950513,32.594659,0],[34.950543,32.594714,0],[34.950574,32.594772,0],[34.950598,32.594838,0],[34.950656,32.594958,0],[34.950754,32.595131,0]]]},"type":"Feature","properties":{"Name":"11286"}},{"geometry":{"type":"Polygon","coordinates":[[[34.955109,32.591755,0],[34.955058,32.59194,0],[34.954896,32.592152,0],[34.954685,32.592431,0],[34.954468,32.592607,0],[34.954499,32.592631,0],[34.954896,32.592939,0],[34.954514,32.593378,0],[34.953807,32.593876,0],[34.953661,32.593933,0],[34.952633,32.594338,0],[34.952614,32.594306,0],[34.952567,32.594323,0],[34.952263,32.594481,0],[34.951983,32.594916,0],[34.952039,32.595152,0],[34.952052,32.595317,0],[34.952164,32.595581,0],[34.952192,32.595905,0],[34.952206,32.59596,0],[34.952471,32.59606,0],[34.952604,32.596211,0],[34.952703,32.59648,0],[34.95268,32.596799,0],[34.95276,32.597077,0],[34.952837,32.597168,0],[34.952954,32.597403,0],[34.953258,32.597752,0],[34.953241,32.59795,0],[34.953048,32.598454,0],[34.953104,32.598691,0],[34.953127,32.598738,0],[34.953224,32.598934,0],[34.953422,32.599174,0],[34.953823,32.600027,0],[34.953967,32.6003,0],[34.954427,32.600745,0],[34.954446,32.600753,0],[34.954417,32.602988,0],[34.955349,32.602793,0],[34.955715,32.601999,0],[34.955935,32.601894,0],[34.955943,32.60189,0],[34.956655,32.601518,0],[34.958917,32.600645,0],[34.958952,32.600619,0],[34.958668,32.600533,0],[34.958363,32.600582,0],[34.958063,32.600658,0],[34.958113,32.600382,0],[34.957936,32.600213,0],[34.957872,32.599595,0],[34.958246,32.599398,0],[34.957921,32.599197,0],[34.957948,32.599114,0],[34.958433,32.599099,0],[34.958702,32.598765,0],[34.959517,32.599042,0],[34.962762,32.596455,0],[34.962568,32.595961,0],[34.962502,32.595722,0],[34.96233,32.595158,0],[34.962237,32.595031,0],[34.962161,32.594906,0],[34.962104,32.594786,0],[34.962065,32.594706,0],[34.962051,32.594643,0],[34.961902,32.594037,0],[34.961834,32.593824,0],[34.961774,32.593712,0],[34.961731,32.593611,0],[34.961698,32.593543,0],[34.961643,32.593492,0],[34.961531,32.593306,0],[34.961468,32.593079,0],[34.961502,32.592814,0],[34.961509,32.592476,0],[34.961511,32.592202,0],[34.96154,32.592067,0],[34.961551,32.592014,0],[34.961708,32.591728,0],[34.961625,32.591367,0],[34.961116,32.590728,0],[34.960799,32.590524,0],[34.960169,32.589634,0],[34.959939,32.589022,0],[34.95973,32.588605,0],[34.959088,32.588388,0],[34.9579,32.588466,0],[34.957654,32.58854,0],[34.957044,32.588682,0],[34.956805,32.588795,0],[34.956552,32.588955,0],[34.956345,32.589122,0],[34.955916,32.589646,0],[34.95587,32.589627,0],[34.95546,32.590206,0],[34.955519,32.590236,0],[34.95532,32.590754,0],[34.955109,32.591755,0]]]},"type":"Feature","properties":{"Name":"11288"}},{"geometry":{"type":"Polygon","coordinates":[[[34.964118,32.604953,0],[34.964161,32.604968,0],[34.964691,32.605095,0],[34.965633,32.604766,0],[34.966429,32.604728,0],[34.966172,32.604366,0],[34.966302,32.603707,0],[34.966895,32.603765,0],[34.968531,32.60391,0],[34.970624,32.604106,0],[34.97062,32.603872,0],[34.970635,32.603775,0],[34.970724,32.60365,0],[34.970755,32.603563,0],[34.970708,32.603086,0],[34.970678,32.602599,0],[34.966194,32.599641,0],[34.965906,32.599449,0],[34.964462,32.598503,0],[34.964118,32.59827,0],[34.963917,32.598096,0],[34.963365,32.597635,0],[34.963239,32.597503,0],[34.963188,32.597385,0],[34.963129,32.597276,0],[34.963081,32.597143,0],[34.962758,32.596458,0],[34.961527,32.597439,0],[34.960619,32.598163,0],[34.959517,32.599042,0],[34.958702,32.598765,0],[34.958433,32.599099,0],[34.957948,32.599114,0],[34.957921,32.599197,0],[34.958246,32.599398,0],[34.957872,32.599595,0],[34.957936,32.600213,0],[34.958113,32.600382,0],[34.958063,32.600658,0],[34.958363,32.600582,0],[34.958668,32.600533,0],[34.958952,32.600619,0],[34.958917,32.600645,0],[34.959351,32.601294,0],[34.959931,32.60216,0],[34.960062,32.60238,0],[34.960193,32.602601,0],[34.960223,32.602694,0],[34.960253,32.602769,0],[34.960294,32.602871,0],[34.960382,32.603,0],[34.960606,32.603201,0],[34.960671,32.603232,0],[34.961151,32.603306,0],[34.961297,32.603377,0],[34.961859,32.603669,0],[34.962047,32.603719,0],[34.962132,32.603771,0],[34.962515,32.604001,0],[34.962709,32.604221,0],[34.962789,32.604312,0],[34.96288,32.604399,0],[34.963291,32.604597,0],[34.963495,32.604695,0],[34.963755,32.604699,0],[34.963948,32.604834,0],[34.964118,32.604953,0]]]},"type":"Feature","properties":{"Name":"11289"}}]} \ No newline at end of file diff --git a/data/gushim/givat.ada.gush.js b/data/gushim/givat.ada.gush.js new file mode 100644 index 0000000..cca8308 --- /dev/null +++ b/data/gushim/givat.ada.gush.js @@ -0,0 +1 @@ +var gushim={"type":"FeatureCollection","features":[{"geometry":{"type":"Polygon","coordinates":[[[35.015935,32.523761,0],[35.015661,32.523766,0],[35.015492,32.523769,0],[35.015024,32.523773,0],[35.015004,32.524158,0],[35.014997,32.524269,0],[35.014987,32.524342,0],[35.014985,32.52436,0],[35.014964,32.524659,0],[35.014964,32.524698,0],[35.014914,32.525545,0],[35.01489,32.525946,0],[35.014868,32.526389,0],[35.014864,32.526477,0],[35.01486,32.526568,0],[35.014858,32.52661,0],[35.014871,32.526647,0],[35.014919,32.52678,0],[35.015152,32.527408,0],[35.015252,32.527682,0],[35.015437,32.527992,0],[35.015544,32.528101,0],[35.015626,32.528188,0],[35.01573,32.528266,0],[35.015801,32.528376,0],[35.015909,32.528563,0],[35.016054,32.528626,0],[35.016509,32.528639,0],[35.01764,32.528692,0],[35.01859,32.528752,0],[35.0194,32.5288,0],[35.020069,32.528838,0],[35.020853,32.528896,0],[35.021114,32.528913,0],[35.021473,32.52892,0],[35.02206,32.528964,0],[35.022317,32.528975,0],[35.022926,32.529006,0],[35.023331,32.529041,0],[35.023134,32.52914,0],[35.023078,32.529267,0],[35.023061,32.529699,0],[35.022967,32.529822,0],[35.022922,32.529877,0],[35.02289,32.52989,0],[35.022709,32.529961,0],[35.022609,32.53004,0],[35.022345,32.530255,0],[35.022229,32.530426,0],[35.022224,32.530598,0],[35.022241,32.531023,0],[35.022247,32.531054,0],[35.022261,32.531304,0],[35.022217,32.531457,0],[35.022156,32.531743,0],[35.022259,32.531805,0],[35.022215,32.531951,0],[35.022025,32.532063,0],[35.021634,32.532149,0],[35.021549,32.532183,0],[35.021445,32.532225,0],[35.021393,32.532248,0],[35.021251,32.532339,0],[35.021085,32.532405,0],[35.020946,32.532403,0],[35.020648,32.532385,0],[35.020542,32.532709,0],[35.020376,32.532773,0],[35.020322,32.532979,0],[35.020256,32.533229,0],[35.020117,32.533784,0],[35.019973,32.534237,0],[35.019795,32.534733,0],[35.019683,32.53513,0],[35.019673,32.535168,0],[35.019557,32.535581,0],[35.019766,32.535496,0],[35.01985,32.535462,0],[35.020014,32.535394,0],[35.020462,32.535203,0],[35.020549,32.535168,0],[35.020859,32.535034,0],[35.021308,32.534834,0],[35.022856,32.534183,0],[35.023083,32.534135,0],[35.023286,32.534091,0],[35.023362,32.534112,0],[35.023371,32.534114,0],[35.024693,32.534499,0],[35.025037,32.535096,0],[35.025216,32.535384,0],[35.025357,32.535613,0],[35.025371,32.535636,0],[35.025414,32.535708,0],[35.025679,32.536187,0],[35.026134,32.536601,0],[35.026171,32.536635,0],[35.026803,32.53722,0],[35.027659,32.537448,0],[35.028051,32.537551,0],[35.028349,32.537624,0],[35.029667,32.537683,0],[35.029777,32.537686,0],[35.030135,32.537702,0],[35.0302,32.537708,0],[35.030273,32.537872,0],[35.030426,32.538255,0],[35.030584,32.538631,0],[35.030758,32.539052,0],[35.030982,32.539586,0],[35.031184,32.539527,0],[35.031989,32.539456,0],[35.03244,32.53899,0],[35.032813,32.538683,0],[35.033022,32.538495,0],[35.033274,32.538306,0],[35.033328,32.53828,0],[35.033419,32.538246,0],[35.034171,32.53814,0],[35.034841,32.538047,0],[35.034996,32.538041,0],[35.035184,32.538026,0],[35.035816,32.538235,0],[35.035972,32.538287,0],[35.036352,32.538417,0],[35.036478,32.538526,0],[35.03656,32.538689,0],[35.03688,32.538911,0],[35.037012,32.539003,0],[35.037064,32.539047,0],[35.037264,32.539107,0],[35.037301,32.538938,0],[35.037281,32.538634,0],[35.037262,32.538299,0],[35.037214,32.538141,0],[35.037191,32.538107,0],[35.037179,32.538071,0],[35.03699,32.537812,0],[35.036783,32.53753,0],[35.036596,32.537351,0],[35.036435,32.5371,0],[35.036162,32.536686,0],[35.036031,32.536422,0],[35.035877,32.536116,0],[35.035855,32.536118,0],[35.035365,32.536177,0],[35.03514,32.535694,0],[35.035048,32.535493,0],[35.035032,32.535456,0],[35.034863,32.535087,0],[35.034607,32.534603,0],[35.03444,32.534197,0],[35.034367,32.533937,0],[35.034362,32.533819,0],[35.034391,32.533801,0],[35.034472,32.533742,0],[35.034564,32.533677,0],[35.034586,32.533381,0],[35.034689,32.532678,0],[35.034753,32.532234,0],[35.034787,32.532014,0],[35.034842,32.531768,0],[35.034871,32.531487,0],[35.034852,32.53134,0],[35.034847,32.531266,0],[35.034841,32.531199,0],[35.034862,32.531065,0],[35.034889,32.530951,0],[35.034941,32.530557,0],[35.034972,32.53042,0],[35.034993,32.530238,0],[35.035161,32.530049,0],[35.035189,32.529977,0],[35.035349,32.529621,0],[35.035506,32.529326,0],[35.035675,32.529028,0],[35.035721,32.528978,0],[35.035782,32.528871,0],[35.035846,32.528765,0],[35.035945,32.528596,0],[35.035545,32.528424,0],[35.035348,32.528337,0],[35.035219,32.528274,0],[35.035093,32.528166,0],[35.034744,32.527894,0],[35.034695,32.527857,0],[35.03439,32.527622,0],[35.034188,32.527511,0],[35.033818,32.527404,0],[35.033615,32.527362,0],[35.03352,32.52734,0],[35.033252,32.52725,0],[35.033027,32.527128,0],[35.032424,32.5268,0],[35.032227,32.526706,0],[35.032126,32.526654,0],[35.031988,32.526602,0],[35.031937,32.526584,0],[35.031786,32.526529,0],[35.031584,32.526486,0],[35.031437,32.526454,0],[35.031126,32.526356,0],[35.030861,32.526284,0],[35.030693,32.5263,0],[35.030618,32.526308,0],[35.030488,32.526319,0],[35.030242,32.526373,0],[35.029916,32.526486,0],[35.029758,32.526541,0],[35.029771,32.526385,0],[35.029784,32.526214,0],[35.029803,32.525972,0],[35.029832,32.525784,0],[35.029919,32.525435,0],[35.029947,32.525379,0],[35.029991,32.525332,0],[35.030083,32.525291,0],[35.030084,32.52529,0],[35.029747,32.525259,0],[35.029814,32.524995,0],[35.029672,32.524972,0],[35.029433,32.52494,0],[35.029097,32.524903,0],[35.029014,32.524893,0],[35.028031,32.524787,0],[35.027802,32.524757,0],[35.027699,32.524732,0],[35.026926,32.524514,0],[35.026071,32.524277,0],[35.025652,32.524161,0],[35.02558,32.524143,0],[35.025461,32.524113,0],[35.025189,32.52403,0],[35.024849,32.523945,0],[35.024122,32.523781,0],[35.023763,32.523732,0],[35.023488,32.523726,0],[35.023177,32.52373,0],[35.022596,32.523741,0],[35.021241,32.523708,0],[35.020731,32.523693,0],[35.02025,32.523682,0],[35.019832,32.523672,0],[35.019575,32.523668,0],[35.019313,32.523643,0],[35.018951,32.523601,0],[35.018704,32.523564,0],[35.018177,32.52349,0],[35.017739,32.523464,0],[35.017326,32.523461,0],[35.015889,32.52349,0],[35.015935,32.523761,0]]]},"type":"Feature","properties":{"Name":"12421"}},{"geometry":{"type":"Polygon","coordinates":[[[35.002488,32.534861,0],[35.002488,32.535138,0],[35.002016,32.535176,0],[35.001762,32.535214,0],[35.001435,32.535256,0],[35.001104,32.5352,0],[35.000909,32.535307,0],[35.000814,32.535446,0],[35.000539,32.535676,0],[35.000163,32.535762,0],[34.999927,32.53609,0],[34.999704,32.536343,0],[34.999602,32.536487,0],[34.999596,32.536639,0],[34.999587,32.536771,0],[34.999522,32.536956,0],[34.999323,32.537242,0],[34.999022,32.537526,0],[34.998739,32.537593,0],[34.998551,32.537651,0],[34.998404,32.537701,0],[34.998066,32.537809,0],[34.997755,32.537899,0],[34.997545,32.538089,0],[34.997255,32.538351,0],[34.997032,32.538704,0],[34.996484,32.538535,0],[34.996375,32.538696,0],[34.995953,32.539331,0],[34.995838,32.539399,0],[34.995685,32.539393,0],[34.995256,32.539329,0],[34.994804,32.539108,0],[34.994933,32.53922,0],[34.994987,32.539303,0],[34.995021,32.539362,0],[34.995067,32.539427,0],[34.99553,32.539845,0],[34.99578,32.540045,0],[34.996556,32.540661,0],[34.997123,32.541243,0],[34.997593,32.541732,0],[34.997642,32.541849,0],[34.997685,32.541952,0],[34.99769,32.541986,0],[34.997689,32.542071,0],[34.997695,32.542149,0],[34.997749,32.542252,0],[34.997873,32.542381,0],[34.997886,32.542424,0],[34.997926,32.542561,0],[34.997922,32.542614,0],[34.997935,32.542964,0],[34.998042,32.543212,0],[34.998129,32.543353,0],[34.998175,32.543483,0],[34.99821,32.543572,0],[34.998263,32.543706,0],[34.998346,32.543767,0],[34.9984,32.543804,0],[34.998479,32.54402,0],[34.998508,32.54411,0],[34.998576,32.544295,0],[34.999027,32.545089,0],[34.999301,32.545569,0],[34.999436,32.545712,0],[34.999518,32.546017,0],[34.999811,32.546292,0],[34.999736,32.546406,0],[34.999689,32.546528,0],[34.999736,32.546587,0],[34.999862,32.547253,0],[34.99998,32.547936,0],[35.000044,32.548308,0],[35.000087,32.548578,0],[35.000131,32.548619,0],[35.000247,32.548726,0],[35.000519,32.548977,0],[35.00082,32.549267,0],[35.000863,32.54931,0],[35.000905,32.549346,0],[35.001046,32.549491,0],[35.001354,32.54979,0],[35.001711,32.550212,0],[35.001943,32.550489,0],[35.002053,32.550621,0],[35.002125,32.550705,0],[35.002186,32.550743,0],[35.002445,32.550933,0],[35.002599,32.551043,0],[35.002754,32.551154,0],[35.003171,32.551458,0],[35.003308,32.551556,0],[35.003488,32.551608,0],[35.003641,32.551648,0],[35.003845,32.551656,0],[35.004002,32.549577,0],[35.004076,32.548575,0],[35.004087,32.54843,0],[35.004092,32.548358,0],[35.004108,32.54815,0],[35.004099,32.547954,0],[35.004373,32.548355,0],[35.004502,32.548383,0],[35.004645,32.548412,0],[35.004985,32.548482,0],[35.005236,32.548314,0],[35.005177,32.548136,0],[35.004957,32.547803,0],[35.00471,32.547426,0],[35.004623,32.547225,0],[35.004695,32.54718,0],[35.005311,32.546812,0],[35.005752,32.546913,0],[35.005907,32.546914,0],[35.005966,32.546914,0],[35.006302,32.546917,0],[35.006592,32.547014,0],[35.006761,32.547129,0],[35.006921,32.54724,0],[35.006887,32.547339,0],[35.007153,32.547613,0],[35.007187,32.547648,0],[35.007438,32.547909,0],[35.008415,32.548087,0],[35.009592,32.546972,0],[35.009489,32.546461,0],[35.009481,32.546419,0],[35.009465,32.546339,0],[35.009523,32.54631,0],[35.009585,32.546279,0],[35.00963,32.54626,0],[35.00971,32.546248,0],[35.009847,32.546231,0],[35.009944,32.54618,0],[35.010034,32.546132,0],[35.01005,32.546124,0],[35.010545,32.545864,0],[35.011106,32.545576,0],[35.011206,32.545579,0],[35.011201,32.545487,0],[35.011075,32.545277,0],[35.010902,32.544989,0],[35.011049,32.544902,0],[35.011159,32.544835,0],[35.011268,32.544623,0],[35.01137,32.544531,0],[35.011459,32.544454,0],[35.011687,32.544304,0],[35.011729,32.544413,0],[35.011758,32.544486,0],[35.011767,32.544641,0],[35.011691,32.544729,0],[35.011602,32.544828,0],[35.01168,32.544892,0],[35.011719,32.544928,0],[35.011653,32.545019,0],[35.011751,32.545121,0],[35.011811,32.545184,0],[35.011969,32.545166,0],[35.012027,32.545255,0],[35.012063,32.545339,0],[35.012095,32.545434,0],[35.011956,32.545496,0],[35.011814,32.54556,0],[35.012051,32.545709,0],[35.012219,32.545811,0],[35.012436,32.545947,0],[35.01267,32.545989,0],[35.012763,32.54612,0],[35.013005,32.546061,0],[35.013348,32.546226,0],[35.014067,32.546451,0],[35.014155,32.546307,0],[35.014853,32.546436,0],[35.014777,32.546588,0],[35.014864,32.546766,0],[35.014936,32.54691,0],[35.014788,32.547165,0],[35.015412,32.547352,0],[35.015266,32.547731,0],[35.015534,32.547993,0],[35.015602,32.548112,0],[35.015732,32.548345,0],[35.016003,32.54853,0],[35.016274,32.54871,0],[35.01663,32.548736,0],[35.016879,32.548755,0],[35.017345,32.548667,0],[35.017961,32.548542,0],[35.018019,32.548531,0],[35.01818,32.548501,0],[35.018559,32.548429,0],[35.018836,32.548288,0],[35.019379,32.548011,0],[35.019859,32.547762,0],[35.020576,32.548186,0],[35.020746,32.548292,0],[35.020977,32.548438,0],[35.021236,32.548594,0],[35.021341,32.548658,0],[35.021545,32.548783,0],[35.021719,32.548889,0],[35.021734,32.548897,0],[35.022083,32.54894,0],[35.023005,32.549051,0],[35.023514,32.549113,0],[35.023541,32.549089,0],[35.02392,32.548809,0],[35.024156,32.548623,0],[35.024311,32.548501,0],[35.0244,32.548431,0],[35.024533,32.548325,0],[35.024627,32.54824,0],[35.024664,32.548207,0],[35.024677,32.548193,0],[35.025314,32.547897,0],[35.02546,32.547829,0],[35.02564,32.5476,0],[35.025908,32.547273,0],[35.026209,32.546962,0],[35.026191,32.546632,0],[35.026321,32.546473,0],[35.026271,32.546271,0],[35.026271,32.545954,0],[35.026252,32.545634,0],[35.026059,32.545294,0],[35.026062,32.544894,0],[35.025481,32.543828,0],[35.025267,32.543387,0],[35.025094,32.543301,0],[35.02469,32.543251,0],[35.024363,32.54313,0],[35.024064,32.543137,0],[35.023868,32.542953,0],[35.023483,32.54294,0],[35.023102,32.542802,0],[35.023063,32.542872,0],[35.023296,32.543043,0],[35.023093,32.543211,0],[35.023222,32.543334,0],[35.023612,32.543552,0],[35.023396,32.543696,0],[35.023231,32.543473,0],[35.023145,32.543697,0],[35.02292,32.543692,0],[35.022871,32.543891,0],[35.022703,32.543856,0],[35.022482,32.543944,0],[35.022593,32.544136,0],[35.022504,32.544152,0],[35.022147,32.54464,0],[35.021677,32.544584,0],[35.021582,32.544005,0],[35.021395,32.543509,0],[35.021353,32.543056,0],[35.02135,32.543023,0],[35.021341,32.542944,0],[35.021335,32.542883,0],[35.021303,32.542582,0],[35.021065,32.542316,0],[35.021132,32.542234,0],[35.021004,32.542139,0],[35.020552,32.5418,0],[35.020201,32.541455,0],[35.019763,32.541235,0],[35.018882,32.540566,0],[35.017374,32.539786,0],[35.016974,32.53969,0],[35.016805,32.539566,0],[35.016913,32.539413,0],[35.0161,32.538975,0],[35.016077,32.538963,0],[35.016286,32.538563,0],[35.016307,32.538517,0],[35.016464,32.538411,0],[35.01667,32.538272,0],[35.017057,32.537922,0],[35.017121,32.537839,0],[35.017229,32.537701,0],[35.017406,32.537631,0],[35.017556,32.537568,0],[35.018065,32.537323,0],[35.018164,32.537277,0],[35.018212,32.537232,0],[35.018253,32.537197,0],[35.018542,32.536933,0],[35.018735,32.536755,0],[35.018841,32.536596,0],[35.018854,32.536575,0],[35.018868,32.536547,0],[35.019006,32.536281,0],[35.019056,32.536174,0],[35.018506,32.535909,0],[35.017534,32.535442,0],[35.017269,32.535623,0],[35.017231,32.535649,0],[35.015918,32.53527,0],[35.015283,32.535072,0],[35.015367,32.534887,0],[35.015372,32.534874,0],[35.015387,32.534837,0],[35.015476,32.534603,0],[35.015151,32.5344,0],[35.014473,32.533974,0],[35.014048,32.53371,0],[35.014007,32.533679,0],[35.013869,32.533586,0],[35.013828,32.53356,0],[35.013689,32.533469,0],[35.013319,32.533449,0],[35.012933,32.53343,0],[35.012621,32.533416,0],[35.012504,32.53339,0],[35.01195,32.533272,0],[35.011807,32.533578,0],[35.011781,32.533628,0],[35.011445,32.533533,0],[35.011108,32.533736,0],[35.011076,32.533858,0],[35.011058,32.53391,0],[35.011024,32.53402,0],[35.010981,32.534163,0],[35.010921,32.534364,0],[35.010886,32.534479,0],[35.01079,32.534787,0],[35.010882,32.534959,0],[35.010949,32.535086,0],[35.011001,32.535189,0],[35.010943,32.535258,0],[35.01086,32.535357,0],[35.010688,32.535558,0],[35.010395,32.535694,0],[35.010085,32.535839,0],[35.009984,32.535842,0],[35.009979,32.535678,0],[35.010219,32.535478,0],[35.01052,32.535232,0],[35.010245,32.535237,0],[35.010043,32.535038,0],[35.009635,32.535014,0],[35.00948,32.535006,0],[35.009328,32.534998,0],[35.009285,32.534996,0],[35.009267,32.535013,0],[35.008997,32.535344,0],[35.008842,32.53553,0],[35.008741,32.535653,0],[35.008431,32.53603,0],[35.008409,32.536053,0],[35.008323,32.535891,0],[35.008214,32.535685,0],[35.008323,32.535477,0],[35.008498,32.53514,0],[35.008568,32.535225,0],[35.00864,32.535312,0],[35.008762,32.535099,0],[35.009102,32.53473,0],[35.009494,32.534305,0],[35.009843,32.533926,0],[35.009922,32.533836,0],[35.009839,32.533868,0],[35.009752,32.533902,0],[35.009523,32.533973,0],[35.009217,32.534067,0],[35.008984,32.533954,0],[35.008906,32.533915,0],[35.008815,32.533868,0],[35.008546,32.534101,0],[35.008441,32.533904,0],[35.008281,32.533601,0],[35.007766,32.532618,0],[35.007346,32.533251,0],[35.007001,32.533187,0],[35.006912,32.532564,0],[35.006917,32.532075,0],[35.007081,32.531793,0],[35.007036,32.531236,0],[35.006913,32.531167,0],[35.006863,32.531137,0],[35.006808,32.531137,0],[35.006138,32.531139,0],[35.005823,32.531061,0],[35.005788,32.531052,0],[35.005747,32.531058,0],[35.005489,32.5311,0],[35.005451,32.531105,0],[35.005378,32.531121,0],[35.004999,32.531326,0],[35.004895,32.531388,0],[35.004854,32.531409,0],[35.004808,32.531428,0],[35.004745,32.531447,0],[35.004572,32.531403,0],[35.004289,32.53131,0],[35.003947,32.531101,0],[35.003828,32.531025,0],[35.003916,32.531135,0],[35.004002,32.531231,0],[35.004244,32.531372,0],[35.004253,32.531379,0],[35.004616,32.53172,0],[35.004641,32.532072,0],[35.004723,32.532674,0],[35.004605,32.533122,0],[35.004603,32.533431,0],[35.004528,32.533563,0],[35.00445,32.533958,0],[35.004448,32.534387,0],[35.004536,32.534534,0],[35.004348,32.534532,0],[35.00405,32.534571,0],[35.003753,32.534672,0],[35.003692,32.534683,0],[35.003542,32.534681,0],[35.00249,32.534788,0],[35.002488,32.534861,0]]]},"type":"Feature","properties":{"Name":"12413"}},{"geometry":{"type":"Polygon","coordinates":[[[35.009982,32.5192,0],[35.009825,32.519196,0],[35.009794,32.519204,0],[35.009764,32.519212,0],[35.009734,32.519221,0],[35.009704,32.51923,0],[35.009457,32.519309,0],[35.009422,32.519283,0],[35.009405,32.519268,0],[35.009391,32.519256,0],[35.009246,32.519133,0],[35.00909,32.519001,0],[35.009086,32.518997,0],[35.009073,32.518987,0],[35.008902,32.518841,0],[35.00881,32.518763,0],[35.008728,32.518729,0],[35.008528,32.518647,0],[35.008008,32.518829,0],[35.007927,32.518704,0],[35.008075,32.518123,0],[35.007864,32.517878,0],[35.007719,32.517753,0],[35.007521,32.517962,0],[35.007429,32.518058,0],[35.007165,32.518336,0],[35.00706,32.518448,0],[35.006501,32.519037,0],[35.006196,32.519357,0],[35.005935,32.519634,0],[35.005802,32.519773,0],[35.005649,32.519935,0],[35.005411,32.520187,0],[35.005068,32.520548,0],[35.004864,32.520764,0],[35.004725,32.520912,0],[35.004782,32.520914,0],[35.005863,32.52098,0],[35.005943,32.521034,0],[35.006947,32.522076,0],[35.007142,32.522268,0],[35.007896,32.522957,0],[35.007993,32.522776,0],[35.008057,32.522656,0],[35.008175,32.522437,0],[35.00846,32.522455,0],[35.008506,32.522348,0],[35.008606,32.522115,0],[35.008687,32.521932,0],[35.008744,32.5218,0],[35.008761,32.521762,0],[35.008771,32.52174,0],[35.008811,32.521653,0],[35.008922,32.521756,0],[35.009308,32.52213,0],[35.009338,32.522158,0],[35.009516,32.522307,0],[35.009801,32.522467,0],[35.010003,32.522531,0],[35.010203,32.522546,0],[35.010584,32.522518,0],[35.010916,32.522411,0],[35.011214,32.522249,0],[35.011434,32.522036,0],[35.011574,32.521838,0],[35.011677,32.521619,0],[35.011716,32.521442,0],[35.011746,32.521198,0],[35.011769,32.520991,0],[35.01186,32.520759,0],[35.011966,32.520486,0],[35.012066,32.520231,0],[35.012123,32.520086,0],[35.012015,32.519882,0],[35.011968,32.519786,0],[35.011848,32.519825,0],[35.011791,32.519848,0],[35.011739,32.519864,0],[35.011662,32.519873,0],[35.011641,32.519873,0],[35.011621,32.519873,0],[35.011601,32.519873,0],[35.01158,32.519872,0],[35.01156,32.51987,0],[35.01154,32.519868,0],[35.011468,32.519855,0],[35.011396,32.519834,0],[35.01138,32.519828,0],[35.011344,32.519812,0],[35.011297,32.519757,0],[35.011293,32.51975,0],[35.011289,32.519743,0],[35.011285,32.519736,0],[35.011281,32.519729,0],[35.011278,32.519722,0],[35.011275,32.519715,0],[35.011268,32.519675,0],[35.011269,32.519662,0],[35.011271,32.519649,0],[35.011273,32.519636,0],[35.011276,32.519624,0],[35.011279,32.519611,0],[35.011283,32.519599,0],[35.011256,32.519584,0],[35.011229,32.519571,0],[35.011202,32.519558,0],[35.011174,32.519546,0],[35.010894,32.519422,0],[35.010742,32.519375,0],[35.01047,32.519299,0],[35.010238,32.519234,0],[35.010135,32.519206,0],[35.009982,32.5192,0]]]},"type":"Feature","properties":{"Name":"12106"}},{"geometry":{"type":"Polygon","coordinates":[[[35.009514,32.522317,0],[35.009333,32.522165,0],[35.008928,32.521774,0],[35.008818,32.52167,0],[35.008757,32.521804,0],[35.00864,32.52207,0],[35.008512,32.522366,0],[35.008467,32.522473,0],[35.008438,32.522471,0],[35.008182,32.522455,0],[35.008063,32.522674,0],[35.008024,32.522747,0],[35.007999,32.522793,0],[35.007902,32.522975,0],[35.007869,32.523037,0],[35.008156,32.523153,0],[35.008307,32.523198,0],[35.008446,32.523255,0],[35.00889,32.523435,0],[35.009352,32.523682,0],[35.009598,32.52386,0],[35.009779,32.523956,0],[35.010129,32.524131,0],[35.010158,32.524148,0],[35.010354,32.524214,0],[35.010562,32.524265,0],[35.010774,32.524311,0],[35.011624,32.524487,0],[35.011951,32.524514,0],[35.012095,32.524528,0],[35.012381,32.524527,0],[35.012991,32.524475,0],[35.013402,32.524462,0],[35.01398,32.52454,0],[35.014418,32.524511,0],[35.014599,32.524452,0],[35.014911,32.524372,0],[35.014994,32.524359,0],[35.015008,32.524286,0],[35.015031,32.523791,0],[35.015937,32.523777,0],[35.015893,32.523505,0],[35.016493,32.523494,0],[35.01732,32.523478,0],[35.017729,32.523479,0],[35.017755,32.523481,0],[35.018171,32.523506,0],[35.018936,32.523616,0],[35.019365,32.52366,0],[35.019564,32.523681,0],[35.020344,32.523699,0],[35.020723,32.523706,0],[35.021242,32.523724,0],[35.022587,32.523755,0],[35.023491,32.523738,0],[35.023769,32.523745,0],[35.024128,32.523792,0],[35.024853,32.523958,0],[35.0252,32.524043,0],[35.025461,32.524113,0],[35.025405,32.52392,0],[35.025287,32.523809,0],[35.025081,32.523639,0],[35.02476,32.523308,0],[35.024648,32.523204,0],[35.024553,32.523096,0],[35.024521,32.52304,0],[35.024357,32.522848,0],[35.024287,32.522746,0],[35.024121,32.52241,0],[35.024088,32.522348,0],[35.023879,32.521941,0],[35.023861,32.521913,0],[35.023305,32.521068,0],[35.022987,32.520579,0],[35.022387,32.520085,0],[35.022294,32.520012,0],[35.02204,32.519806,0],[35.021995,32.519771,0],[35.021325,32.519282,0],[35.021259,32.51922,0],[35.020316,32.518196,0],[35.019987,32.518054,0],[35.019733,32.517944,0],[35.0197,32.517928,0],[35.019451,32.517806,0],[35.019202,32.517685,0],[35.018954,32.517562,0],[35.018707,32.517438,0],[35.018459,32.517314,0],[35.018286,32.517227,0],[35.01781,32.516988,0],[35.017337,32.516752,0],[35.016711,32.51647,0],[35.016703,32.516476,0],[35.015388,32.517403,0],[35.014634,32.517932,0],[35.014247,32.51816,0],[35.014084,32.518256,0],[35.013935,32.518344,0],[35.013527,32.518585,0],[35.013005,32.518896,0],[35.012833,32.519048,0],[35.012595,32.519257,0],[35.012572,32.519278,0],[35.012057,32.519731,0],[35.011854,32.519842,0],[35.011974,32.519803,0],[35.012021,32.5199,0],[35.012129,32.520104,0],[35.011775,32.521009,0],[35.011723,32.52146,0],[35.011679,32.521645,0],[35.011581,32.521856,0],[35.011441,32.522054,0],[35.01122,32.522266,0],[35.011151,32.522304,0],[35.010922,32.522428,0],[35.010874,32.522444,0],[35.01059,32.522535,0],[35.010533,32.52254,0],[35.010352,32.522553,0],[35.010209,32.522564,0],[35.010191,32.522562,0],[35.01001,32.522549,0],[35.009838,32.522494,0],[35.009808,32.522485,0],[35.009671,32.522408,0],[35.009523,32.522324,0],[35.009514,32.522317,0]]]},"type":"Feature","properties":{"Name":"12105"}},{"geometry":{"type":"Polygon","coordinates":[[[35.014904,32.524355,0],[35.014593,32.524434,0],[35.014411,32.524494,0],[35.013973,32.524523,0],[35.013395,32.524444,0],[35.012984,32.524458,0],[35.012764,32.524477,0],[35.012374,32.52451,0],[35.012089,32.524511,0],[35.011944,32.524497,0],[35.011618,32.52447,0],[35.010767,32.524293,0],[35.010714,32.524282,0],[35.010556,32.524248,0],[35.010347,32.524196,0],[35.010151,32.524131,0],[35.010123,32.524114,0],[35.009952,32.52403,0],[35.009772,32.523939,0],[35.009591,32.523843,0],[35.009346,32.523665,0],[35.009073,32.523521,0],[35.008883,32.523418,0],[35.00848,32.523254,0],[35.008301,32.523181,0],[35.008149,32.523135,0],[35.007863,32.52302,0],[35.007389,32.523787,0],[35.007027,32.524377,0],[35.006739,32.524845,0],[35.006581,32.525001,0],[35.005626,32.525963,0],[35.005555,32.526226,0],[35.005551,32.526245,0],[35.005331,32.527075,0],[35.005263,32.527328,0],[35.00526,32.527344,0],[35.005147,32.527789,0],[35.005107,32.527946,0],[35.005117,32.52813,0],[35.005258,32.528314,0],[35.005495,32.528618,0],[35.005574,32.528722,0],[35.006164,32.529486,0],[35.006175,32.529761,0],[35.006041,32.530019,0],[35.006032,32.530034,0],[35.00594,32.530212,0],[35.005861,32.530367,0],[35.005789,32.530502,0],[35.005746,32.530583,0],[35.005679,32.530716,0],[35.005641,32.530782,0],[35.005545,32.530945,0],[35.005451,32.531105,0],[35.005489,32.5311,0],[35.005747,32.531058,0],[35.005788,32.531052,0],[35.005823,32.531061,0],[35.006138,32.531139,0],[35.006808,32.531137,0],[35.006863,32.531137,0],[35.006913,32.531167,0],[35.007036,32.531236,0],[35.007081,32.531793,0],[35.006917,32.532075,0],[35.006912,32.532564,0],[35.007001,32.533187,0],[35.007346,32.533251,0],[35.007766,32.532618,0],[35.008281,32.533601,0],[35.008441,32.533904,0],[35.008546,32.534101,0],[35.008815,32.533868,0],[35.008906,32.533915,0],[35.008984,32.533954,0],[35.009194,32.533816,0],[35.009313,32.533739,0],[35.009382,32.533694,0],[35.009543,32.533617,0],[35.009949,32.533425,0],[35.010036,32.533384,0],[35.010143,32.533289,0],[35.010311,32.533138,0],[35.010551,32.532973,0],[35.01059,32.532947,0],[35.010624,32.532924,0],[35.010693,32.532899,0],[35.01081,32.532858,0],[35.011004,32.532791,0],[35.011428,32.532568,0],[35.011907,32.532284,0],[35.011967,32.532258,0],[35.012433,32.532119,0],[35.012635,32.532048,0],[35.012977,32.531926,0],[35.013208,32.531843,0],[35.013332,32.531816,0],[35.013396,32.53179,0],[35.013489,32.531747,0],[35.013926,32.531593,0],[35.013959,32.531581,0],[35.014098,32.531535,0],[35.014342,32.53145,0],[35.014373,32.531439,0],[35.01469,32.53134,0],[35.014967,32.531253,0],[35.015218,32.531195,0],[35.015341,32.531167,0],[35.015421,32.531148,0],[35.016097,32.530979,0],[35.016191,32.530955,0],[35.016674,32.53084,0],[35.016659,32.530769,0],[35.016556,32.530282,0],[35.016469,32.530059,0],[35.016397,32.529804,0],[35.016368,32.529627,0],[35.016285,32.52939,0],[35.016253,32.52929,0],[35.016232,32.529223,0],[35.016161,32.529043,0],[35.016061,32.528812,0],[35.016041,32.528778,0],[35.016022,32.528743,0],[35.016017,32.528734,0],[35.01593,32.528594,0],[35.015909,32.528563,0],[35.015801,32.528376,0],[35.01573,32.528266,0],[35.015626,32.528188,0],[35.015544,32.528101,0],[35.015437,32.527992,0],[35.015252,32.527682,0],[35.015152,32.527408,0],[35.014919,32.52678,0],[35.014871,32.526647,0],[35.014858,32.52661,0],[35.01486,32.526568,0],[35.014864,32.526477,0],[35.014868,32.526389,0],[35.01489,32.525946,0],[35.014914,32.525545,0],[35.014964,32.524698,0],[35.014964,32.524659,0],[35.014985,32.52436,0],[35.014987,32.524342,0],[35.014904,32.524355,0]]]},"type":"Feature","properties":{"Name":"12098"}},{"geometry":{"type":"Polygon","coordinates":[[[34.999312,32.521987,0],[34.999027,32.521851,0],[34.99897,32.521791,0],[34.998673,32.521479,0],[34.998385,32.521177,0],[34.99834,32.521132,0],[34.997809,32.52059,0],[34.997658,32.520437,0],[34.997543,32.520319,0],[34.997135,32.519931,0],[34.996834,32.519722,0],[34.996574,32.519541,0],[34.995715,32.518922,0],[34.995283,32.518789,0],[34.99428,32.518457,0],[34.994196,32.518438,0],[34.994087,32.518413,0],[34.992993,32.518138,0],[34.992923,32.51812,0],[34.992207,32.51794,0],[34.991988,32.517884,0],[34.991867,32.517857,0],[34.991802,32.517922,0],[34.990891,32.518801,0],[34.990509,32.519562,0],[34.990288,32.52001,0],[34.990193,32.520195,0],[34.990036,32.520617,0],[34.989726,32.520997,0],[34.989608,32.521142,0],[34.989266,32.521434,0],[34.989213,32.521485,0],[34.988209,32.522353,0],[34.987761,32.522745,0],[34.987653,32.522931,0],[34.987558,32.523103,0],[34.987191,32.523748,0],[34.98711,32.523883,0],[34.987007,32.524012,0],[34.986909,32.524145,0],[34.986701,32.524408,0],[34.986285,32.52495,0],[34.986139,32.52512,0],[34.986008,32.525273,0],[34.985873,32.525427,0],[34.985961,32.525474,0],[34.985985,32.52545,0],[34.986096,32.525477,0],[34.98757,32.525844,0],[34.988125,32.525984,0],[34.988222,32.526007,0],[34.989,32.526201,0],[34.989098,32.526224,0],[34.989139,32.526236,0],[34.989552,32.526344,0],[34.99064,32.526536,0],[34.991842,32.526747,0],[34.99221,32.526781,0],[34.992239,32.526786,0],[34.992349,32.526811,0],[34.996476,32.527721,0],[34.996549,32.527738,0],[34.99648,32.526511,0],[34.996832,32.526396,0],[34.997119,32.526303,0],[34.9983,32.525918,0],[34.998816,32.525751,0],[34.999027,32.525682,0],[34.999553,32.525512,0],[35.000002,32.525367,0],[35.000003,32.525114,0],[35.000007,32.524766,0],[35.000008,32.524695,0],[35.000013,32.5244,0],[35.000021,32.524048,0],[35.000018,32.524033,0],[34.999973,32.523794,0],[34.999891,32.523357,0],[34.999861,32.523195,0],[34.999788,32.522981,0],[34.999666,32.522624,0],[34.999545,32.522278,0],[34.999468,32.522063,0],[34.999312,32.521987,0]]]},"type":"Feature","properties":{"Name":"12083"}},{"geometry":{"type":"Polygon","coordinates":[[[34.998276,32.525927,0],[34.997124,32.526302,0],[34.996804,32.526406,0],[34.996483,32.526511,0],[34.996489,32.526612,0],[34.996495,32.526716,0],[34.996518,32.527117,0],[34.996545,32.527571,0],[34.996554,32.527739,0],[34.996616,32.527751,0],[34.996673,32.527944,0],[34.996748,32.528202,0],[34.996799,32.528223,0],[34.997189,32.528387,0],[34.997711,32.528605,0],[34.998336,32.528867,0],[34.998352,32.528874,0],[34.999408,32.529323,0],[34.999416,32.529327,0],[34.999807,32.529493,0],[34.99987,32.529519,0],[34.999872,32.52952,0],[35.000848,32.529936,0],[35.000849,32.529937,0],[35.000936,32.529974,0],[35.000939,32.529975,0],[35.001947,32.530408,0],[35.002802,32.530705,0],[35.003828,32.531025,0],[35.004226,32.531271,0],[35.004289,32.53131,0],[35.004572,32.531403,0],[35.004745,32.531447,0],[35.004808,32.531428,0],[35.004854,32.531409,0],[35.005086,32.531279,0],[35.005378,32.531121,0],[35.005451,32.531105,0],[35.005679,32.53072,0],[35.005862,32.530371,0],[35.006041,32.530024,0],[35.006177,32.529766,0],[35.006167,32.529488,0],[35.005497,32.528621,0],[35.00512,32.528132,0],[35.00511,32.527947,0],[35.005266,32.527328,0],[35.005335,32.527075,0],[35.005555,32.526246,0],[35.005561,32.526225,0],[35.005629,32.525962,0],[35.004546,32.525721,0],[35.004149,32.525619,0],[35.004023,32.525587,0],[35.003597,32.525473,0],[35.003491,32.52545,0],[35.003327,32.525414,0],[35.003157,32.525232,0],[35.002852,32.524904,0],[35.002706,32.524752,0],[35.002651,32.52469,0],[35.002567,32.524598,0],[35.002481,32.524508,0],[35.002397,32.524419,0],[35.002316,32.524329,0],[35.002264,32.52429,0],[35.002001,32.524094,0],[35.001734,32.523894,0],[35.001684,32.523856,0],[35.001464,32.523692,0],[35.001244,32.523527,0],[35.001191,32.523482,0],[35.000984,32.523303,0],[35.000872,32.523206,0],[35.000651,32.522986,0],[34.999998,32.522332,0],[34.999564,32.52211,0],[34.99947,32.522063,0],[34.999603,32.522438,0],[34.999863,32.523195,0],[34.999894,32.523364,0],[34.999975,32.523796,0],[35.000021,32.524043,0],[35.000022,32.524048,0],[35.000015,32.524395,0],[35.00001,32.524711,0],[35.000009,32.524768,0],[35.000005,32.525114,0],[35.000004,32.525367,0],[34.999539,32.525518,0],[34.999016,32.525687,0],[34.998809,32.525754,0],[34.998355,32.525902,0],[34.998276,32.525927,0]]]},"type":"Feature","properties":{"Name":"12082"}},{"geometry":{"type":"Polygon","coordinates":[[[34.986806,32.524277,0],[34.98691,32.524145,0],[34.987013,32.524007,0],[34.987111,32.523883,0],[34.987123,32.523866,0],[34.987203,32.523731,0],[34.987291,32.523573,0],[34.987379,32.523418,0],[34.987466,32.523265,0],[34.98756,32.523103,0],[34.987655,32.522932,0],[34.987762,32.522746,0],[34.987962,32.522572,0],[34.98821,32.522353,0],[34.988453,32.522145,0],[34.988711,32.521922,0],[34.988941,32.521722,0],[34.989225,32.521476,0],[34.989267,32.521435,0],[34.989609,32.521143,0],[34.990038,32.520618,0],[34.990195,32.520196,0],[34.990207,32.52017,0],[34.990289,32.52001,0],[34.99051,32.519563,0],[34.990892,32.518802,0],[34.991804,32.517923,0],[34.99163,32.517854,0],[34.991457,32.51779,0],[34.990856,32.517563,0],[34.990205,32.517316,0],[34.990104,32.517278,0],[34.989843,32.517181,0],[34.989719,32.517046,0],[34.989458,32.517027,0],[34.989423,32.516956,0],[34.989412,32.516934,0],[34.988766,32.516686,0],[34.988739,32.516672,0],[34.98806,32.516415,0],[34.987478,32.516191,0],[34.987387,32.516192,0],[34.987317,32.516181,0],[34.986705,32.516207,0],[34.986275,32.516225,0],[34.986208,32.516226,0],[34.986145,32.516229,0],[34.986081,32.516232,0],[34.986018,32.516232,0],[34.985641,32.516224,0],[34.98547,32.516237,0],[34.985299,32.516252,0],[34.985088,32.516236,0],[34.984627,32.516253,0],[34.984573,32.516273,0],[34.983929,32.516277,0],[34.983828,32.516293,0],[34.983597,32.516296,0],[34.983058,32.516265,0],[34.982823,32.516236,0],[34.982435,32.516223,0],[34.98229,32.516221,0],[34.982038,32.516201,0],[34.98165,32.516186,0],[34.981511,32.516184,0],[34.98115,32.516169,0],[34.980736,32.516146,0],[34.980704,32.516142,0],[34.979901,32.516108,0],[34.979897,32.516134,0],[34.980704,32.516205,0],[34.980688,32.516327,0],[34.980679,32.516402,0],[34.980476,32.518074,0],[34.98032,32.519329,0],[34.980544,32.519352,0],[34.980538,32.519383,0],[34.980074,32.523366,0],[34.98052,32.523501,0],[34.980664,32.523583,0],[34.980962,32.52364,0],[34.981043,32.523666,0],[34.981403,32.523761,0],[34.981849,32.523805,0],[34.98207,32.52382,0],[34.982014,32.523911,0],[34.983972,32.524443,0],[34.98415,32.524487,0],[34.984583,32.524731,0],[34.985874,32.525428,0],[34.98601,32.525274,0],[34.986141,32.525121,0],[34.986286,32.52495,0],[34.986411,32.52479,0],[34.986508,32.524665,0],[34.986607,32.524534,0],[34.986702,32.524409,0],[34.986806,32.524277,0]]]},"type":"Feature","properties":{"Name":"10138"}},{"geometry":{"type":"Polygon","coordinates":[[[34.970331,32.518228,0],[34.970958,32.519274,0],[34.970996,32.519337,0],[34.971047,32.519413,0],[34.972437,32.521636,0],[34.972993,32.522529,0],[34.973071,32.522654,0],[34.973519,32.522675,0],[34.974041,32.522703,0],[34.97456,32.522728,0],[34.975572,32.522778,0],[34.976061,32.522803,0],[34.976599,32.522829,0],[34.977126,32.522859,0],[34.977652,32.522887,0],[34.978181,32.522912,0],[34.978454,32.522926,0],[34.978682,32.522936,0],[34.979146,32.523079,0],[34.979615,32.523227,0],[34.980074,32.523366,0],[34.980194,32.522344,0],[34.980321,32.521261,0],[34.980438,32.520243,0],[34.980538,32.519383,0],[34.980544,32.519352,0],[34.98032,32.519329,0],[34.980334,32.519212,0],[34.980476,32.518074,0],[34.980679,32.516402,0],[34.980688,32.516327,0],[34.980704,32.516205,0],[34.980521,32.516189,0],[34.980361,32.516174,0],[34.980311,32.516169,0],[34.980174,32.516157,0],[34.980033,32.516145,0],[34.979968,32.516139,0],[34.979897,32.516134,0],[34.979687,32.51611,0],[34.97942,32.516082,0],[34.978987,32.516041,0],[34.978071,32.515958,0],[34.977723,32.515925,0],[34.977376,32.515892,0],[34.976957,32.515855,0],[34.976411,32.515804,0],[34.97602,32.515766,0],[34.975688,32.515738,0],[34.975301,32.5157,0],[34.974912,32.515662,0],[34.974536,32.515627,0],[34.97398,32.51558,0],[34.973864,32.515568,0],[34.9738,32.515565,0],[34.973514,32.51554,0],[34.972976,32.515487,0],[34.97269,32.515462,0],[34.97239,32.515433,0],[34.971954,32.515394,0],[34.97149,32.51535,0],[34.971141,32.51532,0],[34.970778,32.515284,0],[34.970206,32.51523,0],[34.96972,32.515184,0],[34.969383,32.515155,0],[34.968881,32.515109,0],[34.968942,32.515228,0],[34.968978,32.515312,0],[34.969047,32.515472,0],[34.969247,32.516075,0],[34.969693,32.517119,0],[34.970331,32.518228,0]]]},"type":"Feature","properties":{"Name":"10137"}},{"geometry":{"type":"Polygon","coordinates":[[[34.976411,32.515804,0],[34.976957,32.515855,0],[34.977376,32.515892,0],[34.977723,32.515925,0],[34.978071,32.515958,0],[34.978987,32.516041,0],[34.97942,32.516082,0],[34.979687,32.51611,0],[34.979897,32.516134,0],[34.979901,32.516108,0],[34.979971,32.516112,0],[34.980023,32.516113,0],[34.980179,32.516121,0],[34.980313,32.516126,0],[34.980366,32.516128,0],[34.980528,32.516135,0],[34.980703,32.516142,0],[34.980736,32.516146,0],[34.980904,32.516156,0],[34.980934,32.516157,0],[34.98115,32.516169,0],[34.981254,32.516173,0],[34.981511,32.516184,0],[34.98165,32.516186,0],[34.982038,32.516201,0],[34.98229,32.516221,0],[34.982435,32.516223,0],[34.982618,32.516229,0],[34.982823,32.516236,0],[34.983058,32.516265,0],[34.98317,32.516271,0],[34.983521,32.516292,0],[34.983597,32.516296,0],[34.983828,32.516293,0],[34.983929,32.516277,0],[34.984281,32.516275,0],[34.984573,32.516273,0],[34.984627,32.516253,0],[34.985088,32.516236,0],[34.985214,32.516245,0],[34.985299,32.516252,0],[34.985442,32.516239,0],[34.985484,32.516236,0],[34.985641,32.516224,0],[34.986018,32.516232,0],[34.986113,32.516231,0],[34.986208,32.516226,0],[34.986275,32.516225,0],[34.986705,32.516207,0],[34.986837,32.516203,0],[34.987035,32.516195,0],[34.9872,32.516187,0],[34.987317,32.516181,0],[34.987198,32.515248,0],[34.986941,32.513251,0],[34.986936,32.513193,0],[34.986927,32.513159,0],[34.986903,32.513146,0],[34.9869,32.513139,0],[34.986895,32.51313,0],[34.986891,32.513119,0],[34.986873,32.513093,0],[34.98686,32.513089,0],[34.986833,32.513081,0],[34.9868,32.513071,0],[34.986768,32.51305,0],[34.986733,32.513027,0],[34.986644,32.512993,0],[34.986591,32.512989,0],[34.98655,32.512983,0],[34.986536,32.512981,0],[34.986469,32.512964,0],[34.986447,32.512965,0],[34.986417,32.512973,0],[34.986382,32.512984,0],[34.986349,32.512992,0],[34.986335,32.512991,0],[34.986313,32.512989,0],[34.98629,32.512974,0],[34.986229,32.512925,0],[34.986211,32.512881,0],[34.986204,32.512865,0],[34.986152,32.51272,0],[34.986107,32.512678,0],[34.986079,32.512653,0],[34.986014,32.512589,0],[34.985976,32.512576,0],[34.985887,32.512555,0],[34.985826,32.512562,0],[34.9858,32.512575,0],[34.985613,32.51268,0],[34.985569,32.512705,0],[34.98553,32.512706,0],[34.985473,32.512704,0],[34.985347,32.512699,0],[34.98532,32.512695,0],[34.985241,32.512678,0],[34.985222,32.512671,0],[34.985196,32.51266,0],[34.98518,32.512652,0],[34.985142,32.512618,0],[34.985098,32.512588,0],[34.985057,32.512558,0],[34.985045,32.512551,0],[34.985022,32.51254,0],[34.985006,32.512532,0],[34.984973,32.512528,0],[34.984936,32.512535,0],[34.984871,32.512564,0],[34.984848,32.512576,0],[34.984798,32.512587,0],[34.984751,32.512593,0],[34.98469,32.512585,0],[34.984667,32.51258,0],[34.984629,32.512565,0],[34.984607,32.512541,0],[34.9846,32.512532,0],[34.984571,32.512475,0],[34.984567,32.512459,0],[34.984569,32.512397,0],[34.984594,32.512337,0],[34.984598,32.512295,0],[34.984588,32.512255,0],[34.984569,32.512199,0],[34.984551,32.512172,0],[34.984539,32.512154,0],[34.984485,32.512116,0],[34.984323,32.512046,0],[34.984271,32.512017,0],[34.984247,32.511983,0],[34.984216,32.511938,0],[34.984188,32.511905,0],[34.984161,32.511873,0],[34.984117,32.511837,0],[34.984095,32.511821,0],[34.98407,32.511806,0],[34.984004,32.511763,0],[34.983937,32.511726,0],[34.983845,32.511679,0],[34.983796,32.511665,0],[34.98373,32.51167,0],[34.983674,32.511681,0],[34.983645,32.511689,0],[34.983498,32.511743,0],[34.983433,32.511761,0],[34.983356,32.511765,0],[34.983315,32.511766,0],[34.98328,32.511763,0],[34.983263,32.511754,0],[34.983247,32.511738,0],[34.983235,32.511722,0],[34.983223,32.511683,0],[34.983222,32.511674,0],[34.983226,32.511645,0],[34.983229,32.511637,0],[34.98325,32.511595,0],[34.98329,32.511533,0],[34.983312,32.511478,0],[34.983315,32.511457,0],[34.983318,32.511418,0],[34.983305,32.511382,0],[34.983273,32.511353,0],[34.983229,32.511333,0],[34.983178,32.511334,0],[34.983135,32.51135,0],[34.98304,32.511408,0],[34.983001,32.511409,0],[34.982975,32.511388,0],[34.982972,32.511383,0],[34.982968,32.511365,0],[34.982966,32.511346,0],[34.982971,32.511316,0],[34.982993,32.511271,0],[34.983005,32.511237,0],[34.983027,32.511178,0],[34.983031,32.511105,0],[34.98303,32.511084,0],[34.983022,32.511036,0],[34.98301,32.511004,0],[34.983,32.510982,0],[34.982988,32.510965,0],[34.982916,32.510889,0],[34.982868,32.510851,0],[34.982854,32.510843,0],[34.982824,32.510831,0],[34.982797,32.510821,0],[34.982779,32.510818,0],[34.982738,32.510818,0],[34.982719,32.510821,0],[34.98269,32.510829,0],[34.982628,32.510863,0],[34.98257,32.51089,0],[34.982531,32.510903,0],[34.982487,32.510905,0],[34.982466,32.5109,0],[34.982385,32.51085,0],[34.982395,32.510831,0],[34.982304,32.510766,0],[34.982142,32.510825,0],[34.982108,32.510838,0],[34.982082,32.51085,0],[34.982011,32.51089,0],[34.981988,32.510898,0],[34.981951,32.510903,0],[34.981863,32.510908,0],[34.981764,32.51088,0],[34.981742,32.510869,0],[34.981698,32.510829,0],[34.981655,32.510782,0],[34.981631,32.510758,0],[34.981613,32.510746,0],[34.981584,32.510733,0],[34.981544,32.510721,0],[34.981459,32.510705,0],[34.981439,32.510703,0],[34.98131,32.510692,0],[34.981238,32.510692,0],[34.9812,32.510695,0],[34.981129,32.510702,0],[34.981083,32.510709,0],[34.981001,32.510728,0],[34.980981,32.510733,0],[34.980939,32.510757,0],[34.980804,32.510849,0],[34.980734,32.510881,0],[34.980712,32.510889,0],[34.980658,32.510895,0],[34.980601,32.510893,0],[34.980532,32.510871,0],[34.980483,32.510853,0],[34.98005,32.510666,0],[34.979896,32.510601,0],[34.979807,32.510571,0],[34.97973,32.510553,0],[34.97971,32.51055,0],[34.97968,32.51055,0],[34.979635,32.510553,0],[34.979577,32.510574,0],[34.979485,32.510647,0],[34.979359,32.510763,0],[34.979339,32.510776,0],[34.979201,32.510762,0],[34.97905,32.510737,0],[34.978925,32.510708,0],[34.978672,32.510643,0],[34.978532,32.510603,0],[34.978442,32.510584,0],[34.978356,32.510557,0],[34.978293,32.510517,0],[34.97822,32.51045,0],[34.97819,32.510415,0],[34.978121,32.510275,0],[34.97807,32.510165,0],[34.978033,32.510079,0],[34.978014,32.510039,0],[34.977976,32.510011,0],[34.977907,32.509996,0],[34.977724,32.509963,0],[34.97769,32.509958,0],[34.97757,32.509945,0],[34.977526,32.509947,0],[34.977505,32.509948,0],[34.977371,32.509967,0],[34.977267,32.509973,0],[34.977221,32.509971,0],[34.977186,32.509969,0],[34.977136,32.509965,0],[34.977106,32.509965,0],[34.977092,32.509967,0],[34.976897,32.510011,0],[34.976739,32.510034,0],[34.976696,32.510029,0],[34.976661,32.510015,0],[34.976635,32.510003,0],[34.976546,32.509964,0],[34.97647,32.509931,0],[34.976396,32.509915,0],[34.976322,32.509918,0],[34.976295,32.509928,0],[34.976222,32.509952,0],[34.97619,32.509958,0],[34.976017,32.509981,0],[34.975987,32.509981,0],[34.975969,32.509976,0],[34.975739,32.50988,0],[34.975531,32.50979,0],[34.975332,32.50971,0],[34.975302,32.509701,0],[34.975202,32.509672,0],[34.97495,32.509626,0],[34.974878,32.509614,0],[34.974716,32.509594,0],[34.974594,32.509614,0],[34.974577,32.50964,0],[34.97452,32.50972,0],[34.97449,32.509752,0],[34.974478,32.509767,0],[34.974405,32.509884,0],[34.974385,32.5099,0],[34.974367,32.509912,0],[34.974349,32.509922,0],[34.974305,32.50994,0],[34.974283,32.509947,0],[34.974257,32.509952,0],[34.974174,32.509953,0],[34.974077,32.510006,0],[34.973854,32.510114,0],[34.973617,32.510227,0],[34.97362,32.510284,0],[34.973631,32.510714,0],[34.973664,32.510586,0],[34.973675,32.510775,0],[34.973779,32.512405,0],[34.973822,32.513076,0],[34.973938,32.51491,0],[34.973975,32.515509,0],[34.97398,32.51558,0],[34.974536,32.515627,0],[34.974912,32.515662,0],[34.975301,32.5157,0],[34.975688,32.515738,0],[34.97602,32.515766,0],[34.976411,32.515804,0]]]},"type":"Feature","properties":{"Name":"10136"}},{"geometry":{"type":"Polygon","coordinates":[[[34.987857,32.508039,0],[34.987171,32.510389,0],[34.986995,32.510992,0],[34.986449,32.512859,0],[34.986417,32.512973,0],[34.986447,32.512965,0],[34.986469,32.512964,0],[34.986536,32.512981,0],[34.986572,32.512986,0],[34.986608,32.51299,0],[34.986644,32.512993,0],[34.986733,32.513027,0],[34.9868,32.513071,0],[34.98688,32.513096,0],[34.9869,32.513139,0],[34.98693,32.51316,0],[34.986936,32.513193,0],[34.986941,32.513251,0],[34.987317,32.516181,0],[34.987387,32.516192,0],[34.987478,32.516191,0],[34.988043,32.516408,0],[34.988739,32.516672,0],[34.988766,32.516686,0],[34.989412,32.516934,0],[34.989423,32.516956,0],[34.989458,32.517027,0],[34.989719,32.517046,0],[34.989843,32.517181,0],[34.990104,32.517278,0],[34.991211,32.517697,0],[34.99163,32.517854,0],[34.991804,32.517923,0],[34.992048,32.51768,0],[34.992036,32.517582,0],[34.992011,32.517374,0],[34.991997,32.517251,0],[34.991988,32.517183,0],[34.991787,32.515674,0],[34.991788,32.515654,0],[34.991841,32.515653,0],[34.991895,32.515653,0],[34.991948,32.515655,0],[34.991953,32.515637,0],[34.992166,32.514927,0],[34.992212,32.514939,0],[34.99224,32.514871,0],[34.992344,32.514518,0],[34.992948,32.512381,0],[34.993312,32.511108,0],[34.993291,32.511101,0],[34.9937,32.50969,0],[34.993824,32.509256,0],[34.993838,32.509201,0],[34.992969,32.509026,0],[34.99153,32.508732,0],[34.99109,32.508638,0],[34.987871,32.507989,0],[34.987857,32.508039,0]]]},"type":"Feature","properties":{"Name":"10135"}},{"geometry":{"type":"Polygon","coordinates":[[[34.992203,32.517939,0],[34.994089,32.518414,0],[34.994281,32.518458,0],[34.994682,32.51859,0],[34.995284,32.518789,0],[34.995381,32.518739,0],[34.996346,32.51822,0],[34.996418,32.518181,0],[34.996885,32.517931,0],[34.996906,32.51792,0],[34.997066,32.517832,0],[34.997248,32.517735,0],[34.997333,32.51769,0],[34.997367,32.517672,0],[34.998194,32.517228,0],[34.998679,32.516965,0],[34.999189,32.516691,0],[34.999275,32.516641,0],[34.998802,32.516319,0],[34.998885,32.516273,0],[34.999437,32.515969,0],[35.00051,32.515385,0],[35.000833,32.515209,0],[35.001316,32.514946,0],[35.001739,32.514716,0],[35.001874,32.514642,0],[35.002766,32.514157,0],[35.003021,32.514018,0],[35.000125,32.513125,0],[35.000491,32.512311,0],[35.000679,32.511886,0],[35.000888,32.510906,0],[35.000997,32.510377,0],[35.00035,32.510262,0],[35.000233,32.510685,0],[34.99794,32.510155,0],[34.997809,32.510125,0],[34.997694,32.510105,0],[34.997633,32.510089,0],[34.997615,32.510085,0],[34.997257,32.509953,0],[34.996649,32.509822,0],[34.99608,32.509696,0],[34.995943,32.509666,0],[34.995509,32.509583,0],[34.995142,32.509517,0],[34.995116,32.509513,0],[34.994815,32.509432,0],[34.994396,32.509316,0],[34.994133,32.509261,0],[34.993838,32.509201,0],[34.993824,32.509256,0],[34.9937,32.50969,0],[34.993529,32.51028,0],[34.993464,32.510503,0],[34.993291,32.511101,0],[34.993312,32.511108,0],[34.993284,32.511204,0],[34.993238,32.511367,0],[34.993214,32.511451,0],[34.992948,32.512381,0],[34.99294,32.512412,0],[34.992765,32.513033,0],[34.992699,32.513267,0],[34.992581,32.51368,0],[34.992438,32.514188,0],[34.992344,32.514518,0],[34.992241,32.514871,0],[34.992212,32.514939,0],[34.992166,32.514927,0],[34.991965,32.515599,0],[34.991957,32.515625,0],[34.991953,32.515637,0],[34.991948,32.515655,0],[34.991854,32.515653,0],[34.991788,32.515654,0],[34.991787,32.515674,0],[34.99186,32.516221,0],[34.991989,32.517193,0],[34.991997,32.517251,0],[34.992011,32.517374,0],[34.992049,32.51768,0],[34.991869,32.517858,0],[34.991989,32.517885,0],[34.992169,32.517931,0],[34.992203,32.517939,0]]]},"type":"Feature","properties":{"Name":"10134"}},{"geometry":{"type":"Polygon","coordinates":[[[35.001468,32.518092,0],[35.00124,32.517942,0],[35.00027,32.517303,0],[34.999272,32.516642,0],[34.999186,32.516692,0],[34.998676,32.516966,0],[34.998191,32.517228,0],[34.997364,32.517672,0],[34.997245,32.517736,0],[34.997063,32.517832,0],[34.996912,32.517914,0],[34.996808,32.517971,0],[34.996415,32.518181,0],[34.996343,32.518221,0],[34.995379,32.51874,0],[34.995282,32.51879,0],[34.995714,32.518923,0],[34.996572,32.519542,0],[34.997133,32.519932,0],[34.997541,32.52032,0],[34.997703,32.520484,0],[34.997753,32.520535,0],[34.998075,32.520866,0],[34.998383,32.521178,0],[34.999026,32.521852,0],[34.99942,32.522041,0],[34.999561,32.522111,0],[34.999995,32.522333,0],[35.000869,32.523207,0],[35.001241,32.523527,0],[35.002104,32.524175,0],[35.002314,32.524329,0],[35.002387,32.524412,0],[35.002558,32.524592,0],[35.002703,32.524752,0],[35.002852,32.524907,0],[35.003054,32.525125,0],[35.003229,32.525313,0],[35.003325,32.525415,0],[35.003594,32.525474,0],[35.00402,32.525587,0],[35.004543,32.525721,0],[35.005626,32.525963,0],[35.006579,32.525005,0],[35.006736,32.524845,0],[35.007024,32.524378,0],[35.00786,32.523021,0],[35.007893,32.522958,0],[35.007139,32.522269,0],[35.006945,32.522076,0],[35.00594,32.521035,0],[35.005861,32.520981,0],[35.005498,32.520959,0],[35.005402,32.520953,0],[35.005092,32.520934,0],[35.004779,32.520915,0],[35.004722,32.520912,0],[35.004707,32.520927,0],[35.00467,32.520974,0],[35.004464,32.520832,0],[35.004243,32.520683,0],[35.00401,32.520526,0],[35.003707,32.520323,0],[35.003446,32.520149,0],[35.003197,32.519981,0],[35.002932,32.519802,0],[35.002694,32.51964,0],[35.002453,32.51948,0],[35.002216,32.519321,0],[35.002195,32.519304,0],[35.001745,32.519005,0],[35.001463,32.518814,0],[35.001239,32.518666,0],[35.001674,32.518433,0],[35.001759,32.518388,0],[35.00169,32.518338,0],[35.001591,32.518273,0],[35.001571,32.518256,0],[35.001532,32.518134,0],[35.001468,32.518092,0]]]},"type":"Feature","properties":{"Name":"10133"}},{"geometry":{"type":"Polygon","coordinates":[[[35.007247,32.517372,0],[35.007061,32.517279,0],[35.006999,32.517248,0],[35.006603,32.516956,0],[35.006173,32.516638,0],[35.005997,32.516397,0],[35.005883,32.516302,0],[35.005767,32.515904,0],[35.005732,32.515779,0],[35.005729,32.515769,0],[35.005683,32.515603,0],[35.005653,32.515496,0],[35.00561,32.51534,0],[35.005584,32.515454,0],[35.005544,32.51563,0],[35.005502,32.515814,0],[35.005447,32.515878,0],[35.005273,32.516063,0],[35.005145,32.516197,0],[35.004555,32.51682,0],[35.004505,32.516868,0],[35.003491,32.51795,0],[35.003431,32.518017,0],[35.003353,32.51811,0],[35.003133,32.518343,0],[35.002894,32.518597,0],[35.002465,32.519055,0],[35.002269,32.519264,0],[35.002219,32.51932,0],[35.002298,32.519373,0],[35.002456,32.519479,0],[35.002696,32.51964,0],[35.002935,32.519801,0],[35.0032,32.51998,0],[35.003449,32.520149,0],[35.004246,32.520682,0],[35.004672,32.520974,0],[35.00471,32.520927,0],[35.004725,32.520912,0],[35.004859,32.52077,0],[35.004988,32.520633,0],[35.005216,32.520393,0],[35.005437,32.520159,0],[35.005649,32.519935,0],[35.005802,32.519773,0],[35.005889,32.519682,0],[35.006042,32.519521,0],[35.006196,32.519357,0],[35.00635,32.519195,0],[35.006501,32.519037,0],[35.006662,32.518868,0],[35.006811,32.518712,0],[35.006964,32.518548,0],[35.007407,32.518081,0],[35.007504,32.51798,0],[35.007719,32.517753,0],[35.007623,32.517675,0],[35.007598,32.517655,0],[35.007564,32.517606,0],[35.007429,32.517394,0],[35.007393,32.517339,0],[35.007289,32.517394,0],[35.007247,32.517372,0]]]},"type":"Feature","properties":{"Name":"10132"}},{"geometry":{"type":"Polygon","coordinates":[[[35.002334,32.519195,0],[35.002465,32.519055,0],[35.002894,32.518597,0],[35.003133,32.518343,0],[35.003351,32.518113,0],[35.003432,32.518016,0],[35.003491,32.51795,0],[35.004484,32.51689,0],[35.004505,32.516868,0],[35.004555,32.51682,0],[35.004594,32.516779,0],[35.005103,32.51624,0],[35.005192,32.516147,0],[35.005273,32.516063,0],[35.005447,32.515878,0],[35.005502,32.515814,0],[35.005544,32.51563,0],[35.005584,32.515454,0],[35.00561,32.51534,0],[35.005435,32.515363,0],[35.005314,32.515379,0],[35.005249,32.515387,0],[35.005141,32.515401,0],[35.005137,32.515402,0],[35.005053,32.515376,0],[35.004982,32.515355,0],[35.004819,32.515305,0],[35.004637,32.515118,0],[35.004431,32.514906,0],[35.004398,32.514872,0],[35.004314,32.514862,0],[35.002804,32.514668,0],[35.003105,32.514116,0],[35.003021,32.514018,0],[35.002955,32.514054,0],[35.002766,32.514157,0],[35.001874,32.514642,0],[35.001739,32.514716,0],[35.001736,32.514717,0],[35.001316,32.514946,0],[35.000836,32.515207,0],[34.999437,32.515969,0],[34.998802,32.516319,0],[34.999275,32.516641,0],[34.999407,32.516728,0],[34.999782,32.516977,0],[34.999932,32.517076,0],[35.000221,32.517268,0],[35.000529,32.517471,0],[35.00069,32.517577,0],[35.000966,32.517759,0],[35.001534,32.518133,0],[35.001574,32.518255,0],[35.001594,32.518272,0],[35.001651,32.518309,0],[35.001707,32.518348,0],[35.001762,32.518387,0],[35.001421,32.51857,0],[35.001316,32.518626,0],[35.001241,32.518666,0],[35.001465,32.518813,0],[35.002198,32.519304,0],[35.002219,32.51932,0],[35.002269,32.519264,0],[35.002334,32.519195,0]]]},"type":"Feature","properties":{"Name":"10131"}},{"geometry":{"type":"Polygon","coordinates":[[[35.006161,32.516622,0],[35.006393,32.516797,0],[35.006616,32.516962,0],[35.006983,32.517233,0],[35.007088,32.517286,0],[35.007293,32.517392,0],[35.007393,32.517339,0],[35.007441,32.517412,0],[35.007564,32.517606,0],[35.007598,32.517655,0],[35.007733,32.517765,0],[35.007864,32.517878,0],[35.008075,32.518123,0],[35.008014,32.518354,0],[35.007926,32.518704,0],[35.008008,32.518829,0],[35.008528,32.518647,0],[35.00881,32.518763,0],[35.008971,32.5189,0],[35.009194,32.51909,0],[35.009246,32.519133,0],[35.009338,32.519211,0],[35.009405,32.519268,0],[35.009422,32.519283,0],[35.009457,32.519309,0],[35.009709,32.519229,0],[35.009735,32.51922,0],[35.009808,32.519201,0],[35.009825,32.519196,0],[35.009946,32.519198,0],[35.010135,32.519206,0],[35.010742,32.519375,0],[35.010894,32.519422,0],[35.011167,32.519542,0],[35.011174,32.519546,0],[35.011241,32.519577,0],[35.011283,32.519599,0],[35.011278,32.519618,0],[35.011275,32.519627,0],[35.011268,32.519675,0],[35.011271,32.519691,0],[35.011275,32.519715,0],[35.011286,32.519737,0],[35.011297,32.519757,0],[35.011327,32.519793,0],[35.011343,32.519812,0],[35.01138,32.519828,0],[35.011396,32.519834,0],[35.011468,32.519855,0],[35.01154,32.519868,0],[35.011568,32.51987,0],[35.011603,32.519873,0],[35.011662,32.519873,0],[35.011739,32.519864,0],[35.011791,32.519848,0],[35.011848,32.519825,0],[35.01189,32.519802,0],[35.01195,32.519768,0],[35.01197,32.519758,0],[35.012018,32.519732,0],[35.012048,32.519715,0],[35.012083,32.519685,0],[35.01217,32.519608,0],[35.012606,32.519225,0],[35.012826,32.519031,0],[35.012999,32.518878,0],[35.01352,32.518568,0],[35.013928,32.518327,0],[35.014096,32.518228,0],[35.014627,32.517915,0],[35.01505,32.517619,0],[35.015382,32.517386,0],[35.016099,32.516881,0],[35.016704,32.516453,0],[35.015562,32.515757,0],[35.015168,32.515388,0],[35.014411,32.51468,0],[35.013976,32.514401,0],[35.013882,32.514348,0],[35.013424,32.514073,0],[35.01328,32.513987,0],[35.012229,32.51348,0],[35.010855,32.51288,0],[35.0107,32.512833,0],[35.010346,32.512734,0],[35.009784,32.512491,0],[35.009226,32.51205,0],[35.008897,32.511713,0],[35.005953,32.512934,0],[35.004842,32.513395,0],[35.004239,32.513645,0],[35.004114,32.513697,0],[35.003105,32.514116,0],[35.002804,32.514668,0],[35.004302,32.51486,0],[35.004398,32.514872,0],[35.004431,32.514906,0],[35.004637,32.515118,0],[35.004819,32.515305,0],[35.005053,32.515376,0],[35.005137,32.515402,0],[35.005249,32.515387,0],[35.005435,32.515363,0],[35.00561,32.51534,0],[35.005767,32.515904,0],[35.005799,32.516013,0],[35.00582,32.516085,0],[35.005883,32.516302,0],[35.005997,32.516397,0],[35.006076,32.516505,0],[35.006161,32.516622,0]]]},"type":"Feature","properties":{"Name":"10130"}},{"geometry":{"type":"Polygon","coordinates":[[[35.004236,32.513647,0],[35.004917,32.513364,0],[35.005065,32.513303,0],[35.008897,32.511713,0],[35.0105,32.511061,0],[35.010971,32.510699,0],[35.011097,32.510537,0],[35.011747,32.509666,0],[35.011451,32.509121,0],[35.010972,32.508576,0],[35.010479,32.50811,0],[35.010423,32.508072,0],[35.009721,32.507531,0],[35.009358,32.507233,0],[35.008658,32.506821,0],[35.008632,32.506743,0],[35.007651,32.506232,0],[35.007405,32.506134,0],[35.007085,32.505883,0],[35.006677,32.505505,0],[35.005872,32.505032,0],[35.005837,32.505023,0],[35.005166,32.504644,0],[35.004403,32.50416,0],[35.003974,32.504161,0],[35.003456,32.50386,0],[35.003453,32.50383,0],[35.002471,32.503603,0],[35.002345,32.503351,0],[35.002112,32.502917,0],[35.00206,32.502818,0],[35.001754,32.502395,0],[35.001632,32.502381,0],[35.001772,32.50269,0],[35.001329,32.50367,0],[35.000914,32.504262,0],[35.00058,32.505249,0],[34.999794,32.506438,0],[34.999748,32.50651,0],[34.99969,32.506595,0],[34.998812,32.507908,0],[34.998457,32.508425,0],[34.998071,32.509283,0],[34.997694,32.510105,0],[34.997809,32.510125,0],[34.997925,32.510152,0],[35.000233,32.510685,0],[35.00035,32.510262,0],[35.000997,32.510377,0],[35.000888,32.510906,0],[35.000679,32.511885,0],[35.000125,32.513125,0],[35.002862,32.513969,0],[35.002986,32.514008,0],[35.003021,32.514018,0],[35.003105,32.514116,0],[35.004114,32.513698,0],[35.004236,32.513647,0]]]},"type":"Feature","properties":{"Name":"10129"}},{"geometry":{"type":"Polygon","coordinates":[[[35.00058,32.505249,0],[35.000914,32.504262,0],[35.001329,32.50367,0],[35.001772,32.50269,0],[35.001632,32.502381,0],[35.001754,32.502395,0],[35.001846,32.502408,0],[35.001747,32.50224,0],[35.001719,32.502185,0],[35.001655,32.502168,0],[35.001609,32.502156,0],[35.001514,32.502119,0],[35.001477,32.502096,0],[35.001394,32.50205,0],[35.00129,32.502019,0],[35.001256,32.502021,0],[35.00118,32.502049,0],[35.001059,32.502151,0],[35.000929,32.502219,0],[35.000805,32.502275,0],[35.000762,32.502278,0],[35.00072,32.502261,0],[35.00065,32.502098,0],[35.000615,32.502065,0],[35.000557,32.502054,0],[35.000489,32.502098,0],[35.000391,32.502158,0],[35.000167,32.502252,0],[35.000078,32.502268,0],[35.0,32.502249,0],[34.999967,32.502231,0],[34.999939,32.502203,0],[34.999904,32.502135,0],[34.999889,32.502049,0],[34.9999,32.502024,0],[34.999991,32.501984,0],[35.000019,32.501921,0],[35.00001,32.501848,0],[34.999964,32.50175,0],[34.99988,32.501743,0],[34.999774,32.501792,0],[34.999724,32.501785,0],[34.999584,32.501787,0],[34.999522,32.501801,0],[34.99943,32.50184,0],[34.99935,32.501919,0],[34.999228,32.50197,0],[34.99913,32.501996,0],[34.998947,32.502009,0],[34.998918,32.502019,0],[34.998584,32.502187,0],[34.998416,32.5022,0],[34.998258,32.50223,0],[34.997571,32.502372,0],[34.997292,32.502419,0],[34.997125,32.502423,0],[34.996972,32.502444,0],[34.996886,32.502469,0],[34.996769,32.50252,0],[34.996636,32.502602,0],[34.996555,32.502633,0],[34.99648,32.502671,0],[34.996439,32.502725,0],[34.996413,32.502807,0],[34.996424,32.503166,0],[34.996421,32.503235,0],[34.996301,32.503319,0],[34.995715,32.50362,0],[34.995547,32.503674,0],[34.995382,32.503706,0],[34.995055,32.503698,0],[34.994976,32.503766,0],[34.994909,32.503904,0],[34.994747,32.503983,0],[34.994685,32.503999,0],[34.994491,32.504002,0],[34.994365,32.504003,0],[34.994001,32.50392,0],[34.993682,32.503818,0],[34.9936,32.503828,0],[34.993328,32.503988,0],[34.992991,32.504052,0],[34.992647,32.504148,0],[34.99251,32.504266,0],[34.992395,32.504374,0],[34.992305,32.504445,0],[34.992174,32.504489,0],[34.992032,32.504505,0],[34.991745,32.504515,0],[34.991623,32.504515,0],[34.991503,32.50453,0],[34.991294,32.504563,0],[34.991003,32.504642,0],[34.990891,32.504642,0],[34.990792,32.504629,0],[34.990613,32.50456,0],[34.990527,32.504538,0],[34.990432,32.504543,0],[34.990376,32.504589,0],[34.990329,32.504744,0],[34.990239,32.504777,0],[34.990034,32.504793,0],[34.989978,32.504735,0],[34.989995,32.504626,0],[34.990005,32.504558,0],[34.989986,32.504499,0],[34.989938,32.504453,0],[34.989847,32.504426,0],[34.989815,32.504428,0],[34.989737,32.504477,0],[34.989628,32.504616,0],[34.989598,32.504697,0],[34.989604,32.504758,0],[34.989589,32.504892,0],[34.989556,32.504987,0],[34.989555,32.505071,0],[34.9895,32.505106,0],[34.989388,32.505034,0],[34.98931,32.504989,0],[34.989244,32.504969,0],[34.988897,32.505083,0],[34.988759,32.505107,0],[34.988673,32.505112,0],[34.988445,32.505151,0],[34.988461,32.505196,0],[34.988468,32.505225,0],[34.988462,32.505269,0],[34.988454,32.505293,0],[34.987782,32.507927,0],[34.987871,32.507989,0],[34.989889,32.508395,0],[34.990139,32.508445,0],[34.990648,32.508548,0],[34.99117,32.508655,0],[34.99153,32.508732,0],[34.992123,32.508854,0],[34.992503,32.50893,0],[34.992551,32.50894,0],[34.992969,32.509026,0],[34.993418,32.509116,0],[34.993838,32.509201,0],[34.994133,32.509261,0],[34.994396,32.509316,0],[34.994815,32.509432,0],[34.995116,32.509513,0],[34.995142,32.509517,0],[34.995509,32.509583,0],[34.995943,32.509666,0],[34.99608,32.509696,0],[34.996649,32.509822,0],[34.997257,32.509953,0],[34.997539,32.510057,0],[34.997615,32.510085,0],[34.997694,32.510105,0],[34.998071,32.509283,0],[34.998389,32.508576,0],[34.998457,32.508425,0],[34.998812,32.507908,0],[34.99969,32.506595,0],[34.999748,32.50651,0],[34.999794,32.506438,0],[35.00058,32.505249,0]]]},"type":"Feature","properties":{"Name":"10128"}},{"geometry":{"type":"Polygon","coordinates":[[[34.987857,32.508039,0],[34.987871,32.507989,0],[34.987782,32.507927,0],[34.988454,32.505293,0],[34.988462,32.505269,0],[34.988468,32.505225,0],[34.988461,32.505196,0],[34.988445,32.505151,0],[34.988054,32.505218,0],[34.987935,32.505226,0],[34.987832,32.505214,0],[34.987713,32.505158,0],[34.987472,32.504982,0],[34.98731,32.504927,0],[34.987234,32.50492,0],[34.987086,32.504956,0],[34.986925,32.505031,0],[34.986803,32.505064,0],[34.986634,32.505048,0],[34.986567,32.505065,0],[34.986503,32.505066,0],[34.986472,32.50506,0],[34.986437,32.505044,0],[34.986368,32.505004,0],[34.986353,32.50498,0],[34.986358,32.504934,0],[34.986391,32.504856,0],[34.986388,32.504823,0],[34.986358,32.504797,0],[34.986311,32.504799,0],[34.986214,32.504846,0],[34.986173,32.504855,0],[34.986116,32.504874,0],[34.986001,32.504925,0],[34.985929,32.504951,0],[34.985882,32.504962,0],[34.985612,32.504947,0],[34.985525,32.504959,0],[34.985488,32.50497,0],[34.985448,32.504983,0],[34.985429,32.504994,0],[34.985418,32.505004,0],[34.985412,32.505035,0],[34.985421,32.505064,0],[34.985443,32.505105,0],[34.985484,32.505151,0],[34.985616,32.505252,0],[34.985644,32.505294,0],[34.985649,32.505316,0],[34.985645,32.50534,0],[34.985643,32.505357,0],[34.985633,32.505368,0],[34.985608,32.505372,0],[34.985579,32.50537,0],[34.985517,32.505349,0],[34.985327,32.505215,0],[34.985247,32.505209,0],[34.985206,32.505219,0],[34.985096,32.505268,0],[34.985076,32.505284,0],[34.985055,32.505306,0],[34.985029,32.505342,0],[34.985008,32.505376,0],[34.984995,32.505403,0],[34.98494,32.505594,0],[34.984863,32.50577,0],[34.984841,32.505809,0],[34.984757,32.505938,0],[34.984727,32.505967,0],[34.984645,32.506028,0],[34.98461,32.506049,0],[34.984575,32.506059,0],[34.984446,32.50608,0],[34.984309,32.506072,0],[34.984262,32.506076,0],[34.98405,32.506143,0],[34.983987,32.506171,0],[34.983826,32.506262,0],[34.983668,32.506366,0],[34.983469,32.506474,0],[34.983424,32.506494,0],[34.983286,32.506535,0],[34.983197,32.506588,0],[34.98315,32.506623,0],[34.983116,32.506655,0],[34.983053,32.506749,0],[34.98303,32.506812,0],[34.983015,32.506862,0],[34.982948,32.506987,0],[34.982916,32.507044,0],[34.98277,32.507265,0],[34.982721,32.507317,0],[34.982672,32.507351,0],[34.982638,32.507363,0],[34.98255,32.50736,0],[34.982186,32.507267,0],[34.982087,32.50726,0],[34.981946,32.507275,0],[34.981862,32.507315,0],[34.981774,32.507397,0],[34.981711,32.507528,0],[34.981659,32.507533,0],[34.981632,32.507527,0],[34.981476,32.507444,0],[34.981384,32.507421,0],[34.981312,32.507436,0],[34.98117,32.507489,0],[34.981113,32.507488,0],[34.981061,32.507433,0],[34.981029,32.507373,0],[34.981032,32.507288,0],[34.981149,32.507041,0],[34.981165,32.50697,0],[34.981169,32.506861,0],[34.981165,32.506832,0],[34.98112,32.50674,0],[34.98107,32.506716,0],[34.980961,32.506678,0],[34.980877,32.506664,0],[34.980613,32.506663,0],[34.980439,32.506754,0],[34.98043,32.506769,0],[34.980379,32.506814,0],[34.980316,32.506861,0],[34.980211,32.506922,0],[34.980146,32.50694,0],[34.97965,32.50706,0],[34.979535,32.507092,0],[34.979473,32.507133,0],[34.979457,32.507201,0],[34.979477,32.507338,0],[34.979466,32.507359,0],[34.979448,32.507373,0],[34.979394,32.507399,0],[34.979244,32.507386,0],[34.979122,32.507321,0],[34.979033,32.507254,0],[34.978949,32.507179,0],[34.978731,32.506964,0],[34.978564,32.506837,0],[34.978516,32.506803,0],[34.978438,32.506756,0],[34.978133,32.506654,0],[34.977988,32.506621,0],[34.977579,32.506554,0],[34.977389,32.506564,0],[34.977081,32.506642,0],[34.977045,32.506647,0],[34.976971,32.506646,0],[34.976838,32.506639,0],[34.976485,32.506651,0],[34.97613,32.506642,0],[34.975583,32.506586,0],[34.975454,32.506624,0],[34.975406,32.506625,0],[34.975368,32.506615,0],[34.975257,32.506544,0],[34.975115,32.506439,0],[34.975082,32.506428,0],[34.974945,32.506397,0],[34.974874,32.506315,0],[34.974847,32.506292,0],[34.974816,32.506272,0],[34.974768,32.50626,0],[34.974702,32.506267,0],[34.974569,32.506327,0],[34.974461,32.50638,0],[34.974324,32.506419,0],[34.974277,32.506409,0],[34.974225,32.506363,0],[34.974177,32.506271,0],[34.974147,32.506163,0],[34.974097,32.506058,0],[34.974037,32.505982,0],[34.974012,32.505967,0],[34.973984,32.505965,0],[34.973912,32.505976,0],[34.97387,32.506005,0],[34.973693,32.506237,0],[34.973656,32.506254,0],[34.973575,32.506245,0],[34.973534,32.506226,0],[34.973441,32.506158,0],[34.973427,32.506198,0],[34.97342,32.506219,0],[34.973394,32.506293,0],[34.973398,32.506316,0],[34.973484,32.50784,0],[34.973527,32.508574,0],[34.973599,32.509884,0],[34.973617,32.510227,0],[34.973854,32.510114,0],[34.974077,32.510006,0],[34.974174,32.509953,0],[34.974257,32.509952,0],[34.974283,32.509947,0],[34.974305,32.50994,0],[34.974349,32.509922,0],[34.974367,32.509912,0],[34.974385,32.5099,0],[34.974405,32.509884,0],[34.974478,32.509767,0],[34.97449,32.509752,0],[34.97452,32.50972,0],[34.974577,32.50964,0],[34.974594,32.509614,0],[34.974716,32.509594,0],[34.974878,32.509614,0],[34.97495,32.509626,0],[34.975202,32.509672,0],[34.975302,32.509701,0],[34.975332,32.50971,0],[34.975531,32.50979,0],[34.975739,32.50988,0],[34.975969,32.509976,0],[34.975987,32.509981,0],[34.976017,32.509981,0],[34.97619,32.509958,0],[34.976222,32.509952,0],[34.976295,32.509928,0],[34.976322,32.509918,0],[34.976396,32.509915,0],[34.97647,32.509931,0],[34.976546,32.509964,0],[34.976635,32.510003,0],[34.976661,32.510015,0],[34.976696,32.510029,0],[34.976739,32.510034,0],[34.976897,32.510011,0],[34.977092,32.509967,0],[34.977106,32.509965,0],[34.977136,32.509965,0],[34.977186,32.509969,0],[34.977221,32.509971,0],[34.977267,32.509973,0],[34.977371,32.509967,0],[34.977505,32.509948,0],[34.977526,32.509947,0],[34.97757,32.509945,0],[34.97769,32.509958,0],[34.977724,32.509963,0],[34.977907,32.509996,0],[34.977976,32.510011,0],[34.978014,32.510039,0],[34.978033,32.510079,0],[34.97807,32.510165,0],[34.978121,32.510275,0],[34.97819,32.510415,0],[34.97822,32.51045,0],[34.978293,32.510517,0],[34.978356,32.510557,0],[34.978442,32.510584,0],[34.978532,32.510603,0],[34.978672,32.510643,0],[34.978925,32.510708,0],[34.97905,32.510737,0],[34.979201,32.510762,0],[34.979339,32.510776,0],[34.979359,32.510763,0],[34.979485,32.510647,0],[34.979568,32.51058,0],[34.979577,32.510574,0],[34.979624,32.510555,0],[34.979635,32.510553,0],[34.97968,32.51055,0],[34.97971,32.51055,0],[34.97973,32.510553,0],[34.979807,32.510571,0],[34.979896,32.510601,0],[34.98005,32.510666,0],[34.980483,32.510853,0],[34.980532,32.510871,0],[34.980601,32.510893,0],[34.980658,32.510895,0],[34.980712,32.510889,0],[34.980734,32.510881,0],[34.980804,32.510849,0],[34.980939,32.510757,0],[34.980981,32.510733,0],[34.981001,32.510728,0],[34.981083,32.510709,0],[34.981129,32.510702,0],[34.9812,32.510695,0],[34.981238,32.510692,0],[34.98131,32.510692,0],[34.981439,32.510703,0],[34.981459,32.510705,0],[34.981544,32.510721,0],[34.981584,32.510733,0],[34.981613,32.510746,0],[34.981631,32.510758,0],[34.981655,32.510782,0],[34.981698,32.510829,0],[34.981742,32.510869,0],[34.981764,32.51088,0],[34.981863,32.510908,0],[34.981951,32.510903,0],[34.981988,32.510898,0],[34.982011,32.51089,0],[34.982082,32.51085,0],[34.982108,32.510838,0],[34.982142,32.510825,0],[34.982304,32.510766,0],[34.982395,32.510831,0],[34.982385,32.51085,0],[34.982392,32.510858,0],[34.982466,32.5109,0],[34.982487,32.510905,0],[34.982531,32.510903,0],[34.98257,32.51089,0],[34.982628,32.510863,0],[34.98269,32.510829,0],[34.982719,32.510821,0],[34.982738,32.510818,0],[34.982779,32.510818,0],[34.982797,32.510821,0],[34.982824,32.510831,0],[34.982854,32.510843,0],[34.982868,32.510851,0],[34.982916,32.510889,0],[34.982988,32.510965,0],[34.983,32.510982,0],[34.98301,32.511004,0],[34.983022,32.511036,0],[34.98303,32.511084,0],[34.983031,32.511105,0],[34.983027,32.511178,0],[34.983005,32.511237,0],[34.982993,32.511271,0],[34.982971,32.511316,0],[34.982966,32.511346,0],[34.982968,32.511365,0],[34.982972,32.511383,0],[34.983001,32.511409,0],[34.98304,32.511408,0],[34.983135,32.51135,0],[34.983178,32.511334,0],[34.983189,32.511331,0],[34.983229,32.511333,0],[34.983273,32.511353,0],[34.983305,32.511382,0],[34.983318,32.511418,0],[34.983315,32.511457,0],[34.983312,32.511478,0],[34.98329,32.511533,0],[34.98325,32.511595,0],[34.983229,32.511637,0],[34.983222,32.511674,0],[34.983223,32.511683,0],[34.983235,32.511722,0],[34.983247,32.511738,0],[34.983263,32.511754,0],[34.98328,32.511763,0],[34.983315,32.511766,0],[34.983356,32.511765,0],[34.983433,32.511761,0],[34.983498,32.511743,0],[34.983645,32.511689,0],[34.983674,32.511681,0],[34.98373,32.51167,0],[34.983796,32.511665,0],[34.983808,32.511665,0],[34.983845,32.511679,0],[34.983937,32.511726,0],[34.984004,32.511763,0],[34.98407,32.511806,0],[34.984095,32.511821,0],[34.984117,32.511837,0],[34.984161,32.511873,0],[34.984188,32.511905,0],[34.984216,32.511938,0],[34.984247,32.511983,0],[34.984271,32.512017,0],[34.984323,32.512046,0],[34.984485,32.512116,0],[34.984539,32.512154,0],[34.984551,32.512172,0],[34.984569,32.512199,0],[34.984588,32.512255,0],[34.984598,32.512295,0],[34.984594,32.512337,0],[34.984569,32.512397,0],[34.984567,32.512459,0],[34.984571,32.512475,0],[34.9846,32.512532,0],[34.984607,32.512541,0],[34.984629,32.512565,0],[34.984667,32.51258,0],[34.98469,32.512585,0],[34.984751,32.512593,0],[34.984798,32.512587,0],[34.984848,32.512576,0],[34.984871,32.512564,0],[34.984936,32.512535,0],[34.984973,32.512528,0],[34.985006,32.512532,0],[34.985022,32.51254,0],[34.985045,32.512551,0],[34.985057,32.512558,0],[34.985098,32.512588,0],[34.985142,32.512618,0],[34.98518,32.512652,0],[34.985196,32.51266,0],[34.985222,32.512671,0],[34.985241,32.512678,0],[34.98532,32.512695,0],[34.985347,32.512699,0],[34.985473,32.512704,0],[34.98553,32.512706,0],[34.985569,32.512705,0],[34.985613,32.51268,0],[34.9858,32.512575,0],[34.985826,32.512562,0],[34.985887,32.512555,0],[34.985976,32.512576,0],[34.986014,32.512589,0],[34.986079,32.512653,0],[34.986107,32.512678,0],[34.986152,32.51272,0],[34.986204,32.512865,0],[34.986211,32.512881,0],[34.986229,32.512925,0],[34.98629,32.512974,0],[34.986313,32.512989,0],[34.986335,32.512991,0],[34.986349,32.512992,0],[34.986382,32.512984,0],[34.986417,32.512973,0],[34.986449,32.512859,0],[34.986506,32.512665,0],[34.986995,32.510992,0],[34.98716,32.510426,0],[34.987171,32.510389,0],[34.987791,32.508266,0],[34.987829,32.508137,0],[34.987857,32.508039,0]]]},"type":"Feature","properties":{"Name":"10127"}},{"geometry":{"type":"Polygon","coordinates":[[[34.96972,32.515184,0],[34.970206,32.51523,0],[34.970778,32.515284,0],[34.971141,32.51532,0],[34.97149,32.51535,0],[34.971954,32.515394,0],[34.97239,32.515433,0],[34.97269,32.515462,0],[34.972976,32.515487,0],[34.973514,32.51554,0],[34.9738,32.515565,0],[34.973864,32.515568,0],[34.97398,32.51558,0],[34.973976,32.515524,0],[34.973938,32.51491,0],[34.973822,32.513076,0],[34.973779,32.512405,0],[34.973675,32.510775,0],[34.973664,32.510586,0],[34.973631,32.510714,0],[34.97362,32.510284,0],[34.973617,32.510227,0],[34.973599,32.509884,0],[34.973527,32.508574,0],[34.973484,32.50784,0],[34.973398,32.506316,0],[34.973394,32.506293,0],[34.97342,32.506219,0],[34.973427,32.506198,0],[34.973441,32.506158,0],[34.973459,32.506098,0],[34.973389,32.505789,0],[34.973329,32.505706,0],[34.973268,32.505654,0],[34.973185,32.505623,0],[34.973063,32.505619,0],[34.972947,32.505624,0],[34.972894,32.505639,0],[34.972864,32.505669,0],[34.972821,32.50582,0],[34.972749,32.505898,0],[34.972733,32.505928,0],[34.972711,32.506178,0],[34.972694,32.506201,0],[34.972663,32.506214,0],[34.972616,32.506211,0],[34.972589,32.506192,0],[34.972436,32.506019,0],[34.972326,32.505957,0],[34.97219,32.505881,0],[34.971963,32.505693,0],[34.971869,32.505661,0],[34.971827,32.505648,0],[34.97162,32.505547,0],[34.971544,32.505522,0],[34.971476,32.505512,0],[34.971415,32.505515,0],[34.971364,32.50553,0],[34.971302,32.505582,0],[34.971297,32.505635,0],[34.971298,32.505702,0],[34.97128,32.505807,0],[34.971258,32.505822,0],[34.971211,32.505807,0],[34.971162,32.505774,0],[34.971095,32.505722,0],[34.971025,32.5057,0],[34.970968,32.505703,0],[34.970913,32.505713,0],[34.970857,32.505707,0],[34.970824,32.505682,0],[34.970803,32.505651,0],[34.970771,32.50556,0],[34.970752,32.505542,0],[34.970714,32.505525,0],[34.970627,32.505493,0],[34.970576,32.505489,0],[34.970528,32.505493,0],[34.970467,32.505508,0],[34.970437,32.505533,0],[34.970372,32.505626,0],[34.970348,32.505646,0],[34.970319,32.505647,0],[34.970254,32.50562,0],[34.970239,32.505599,0],[34.97024,32.505571,0],[34.970329,32.505302,0],[34.970363,32.505236,0],[34.970386,32.50521,0],[34.970472,32.505135,0],[34.970554,32.5051,0],[34.970539,32.50504,0],[34.970517,32.505025,0],[34.970493,32.505,0],[34.970466,32.504956,0],[34.970451,32.504939,0],[34.97038,32.504908,0],[34.970302,32.50488,0],[34.970233,32.504865,0],[34.970134,32.504851,0],[34.970083,32.504854,0],[34.970051,32.504864,0],[34.970034,32.504889,0],[34.97002,32.505062,0],[34.970006,32.505105,0],[34.969995,32.505131,0],[34.969962,32.505159,0],[34.969927,32.505178,0],[34.969892,32.505186,0],[34.969799,32.505186,0],[34.969631,32.505174,0],[34.969528,32.50516,0],[34.969399,32.505128,0],[34.969319,32.50509,0],[34.96923,32.505,0],[34.969137,32.504844,0],[34.969096,32.504789,0],[34.969072,32.504778,0],[34.969011,32.504769,0],[34.968864,32.504783,0],[34.968709,32.504749,0],[34.968416,32.504735,0],[34.968221,32.504713,0],[34.968147,32.5047,0],[34.968014,32.504666,0],[34.967834,32.504616,0],[34.967728,32.504589,0],[34.967662,32.504537,0],[34.967592,32.504488,0],[34.967521,32.504457,0],[34.967415,32.504443,0],[34.967193,32.504511,0],[34.966956,32.504526,0],[34.966677,32.504467,0],[34.96659,32.504385,0],[34.966552,32.504357,0],[34.966511,32.504347,0],[34.966441,32.504354,0],[34.966204,32.504418,0],[34.965859,32.504492,0],[34.965676,32.504447,0],[34.965445,32.504393,0],[34.965402,32.504407,0],[34.965368,32.504443,0],[34.96537,32.504521,0],[34.965391,32.504571,0],[34.965528,32.504721,0],[34.965544,32.504758,0],[34.965536,32.504815,0],[34.965515,32.504851,0],[34.965409,32.504973,0],[34.965305,32.505059,0],[34.96535,32.505179,0],[34.965368,32.505234,0],[34.965397,32.505294,0],[34.965429,32.50539,0],[34.965503,32.505592,0],[34.965589,32.505829,0],[34.96567,32.506052,0],[34.965676,32.506076,0],[34.965757,32.506288,0],[34.965861,32.506561,0],[34.9659,32.506665,0],[34.965974,32.506853,0],[34.96614,32.507285,0],[34.966217,32.507503,0],[34.966326,32.507773,0],[34.966352,32.50785,0],[34.966428,32.508133,0],[34.966503,32.50841,0],[34.966611,32.508819,0],[34.966725,32.509225,0],[34.966823,32.509588,0],[34.966875,32.509774,0],[34.96703,32.510348,0],[34.967203,32.51098,0],[34.967217,32.511043,0],[34.967226,32.511063,0],[34.967285,32.511181,0],[34.967473,32.511303,0],[34.967503,32.51142,0],[34.967799,32.512617,0],[34.967933,32.513154,0],[34.967957,32.513234,0],[34.968016,32.513463,0],[34.968355,32.514217,0],[34.968728,32.515035,0],[34.968752,32.515088,0],[34.968881,32.515109,0],[34.969383,32.515155,0],[34.96972,32.515184,0]]]},"type":"Feature","properties":{"Name":"10126"}}]} \ No newline at end of file diff --git a/data/gushim/jaser.a.zarka.gush.js b/data/gushim/jaser.a.zarka.gush.js new file mode 100644 index 0000000..ddbf8e1 --- /dev/null +++ b/data/gushim/jaser.a.zarka.gush.js @@ -0,0 +1 @@ +var gushim={"type":"FeatureCollection","features":[{"geometry":{"type":"Polygon","coordinates":[[[34.913115,32.53053,0],[34.911468,32.531075,0],[34.911332,32.532455,0],[34.911266,32.532982,0],[34.91124,32.533343,0],[34.911212,32.533668,0],[34.911209,32.533719,0],[34.911185,32.533996,0],[34.911167,32.534376,0],[34.911148,32.534551,0],[34.911138,32.534666,0],[34.911107,32.534991,0],[34.911412,32.534887,0],[34.911435,32.53488,0],[34.911481,32.534871,0],[34.911504,32.534914,0],[34.91184,32.534886,0],[34.911895,32.534752,0],[34.911929,32.534745,0],[34.912906,32.534399,0],[34.913241,32.534285,0],[34.914044,32.534011,0],[34.914054,32.534063,0],[34.91548,32.533681,0],[34.91551,32.533674,0],[34.915452,32.533559,0],[34.915447,32.533543,0],[34.915478,32.53352,0],[34.915729,32.533359,0],[34.915735,32.533336,0],[34.915791,32.533135,0],[34.915829,32.532989,0],[34.915855,32.532827,0],[34.915867,32.532732,0],[34.915846,32.532662,0],[34.915766,32.532375,0],[34.915728,32.53225,0],[34.915503,32.531466,0],[34.915492,32.531408,0],[34.915486,32.531337,0],[34.915456,32.531082,0],[34.915444,32.530997,0],[34.915402,32.530654,0],[34.915386,32.530534,0],[34.915435,32.529787,0],[34.91355,32.530392,0],[34.913115,32.53053,0]]]},"type":"Feature","properties":{"Name":"10400"}},{"geometry":{"type":"Polygon","coordinates":[[[34.91548,32.533681,0],[34.91551,32.533674,0],[34.915549,32.533752,0],[34.915558,32.533772,0],[34.915565,32.533932,0],[34.915578,32.534012,0],[34.915598,32.534142,0],[34.915617,32.534266,0],[34.915638,32.534403,0],[34.915658,32.534533,0],[34.915683,32.534658,0],[34.915681,32.534699,0],[34.915678,32.534788,0],[34.915673,32.534903,0],[34.915673,32.534922,0],[34.915665,32.53512,0],[34.915663,32.535174,0],[34.915657,32.535311,0],[34.915652,32.535434,0],[34.915651,32.53547,0],[34.915648,32.535521,0],[34.915643,32.535638,0],[34.915638,32.535762,0],[34.915633,32.535878,0],[34.915632,32.535897,0],[34.915627,32.535998,0],[34.915625,32.536066,0],[34.915629,32.536121,0],[34.915634,32.536173,0],[34.91564,32.536246,0],[34.915645,32.536309,0],[34.91565,32.536371,0],[34.915654,32.536427,0],[34.91566,32.536499,0],[34.915665,32.536561,0],[34.915671,32.536626,0],[34.915676,32.536694,0],[34.915683,32.536777,0],[34.915686,32.536821,0],[34.915697,32.53695,0],[34.915699,32.536976,0],[34.915707,32.537076,0],[34.915716,32.537178,0],[34.915718,32.537212,0],[34.915728,32.537335,0],[34.915731,32.537363,0],[34.915739,32.537467,0],[34.915745,32.537544,0],[34.915722,32.537552,0],[34.913971,32.537648,0],[34.91398,32.537724,0],[34.913984,32.537796,0],[34.913991,32.537871,0],[34.914,32.53796,0],[34.914013,32.538066,0],[34.914021,32.538181,0],[34.913421,32.538527,0],[34.913285,32.538396,0],[34.913217,32.53839,0],[34.912503,32.538402,0],[34.912195,32.538425,0],[34.912,32.538439,0],[34.911566,32.538427,0],[34.911525,32.538437,0],[34.91106,32.538422,0],[34.91099,32.53843,0],[34.910974,32.53834,0],[34.91096,32.538257,0],[34.910949,32.538188,0],[34.910937,32.538108,0],[34.910924,32.538023,0],[34.910912,32.537948,0],[34.910899,32.537862,0],[34.910888,32.537789,0],[34.910878,32.537721,0],[34.910872,32.537658,0],[34.91088,32.537629,0],[34.910883,32.537591,0],[34.910574,32.537743,0],[34.910522,32.537769,0],[34.910452,32.537731,0],[34.910377,32.53769,0],[34.910304,32.537651,0],[34.910232,32.537619,0],[34.91025,32.537528,0],[34.910304,32.537389,0],[34.910402,32.537337,0],[34.910379,32.537268,0],[34.910356,32.5372,0],[34.910336,32.537142,0],[34.910308,32.537081,0],[34.910345,32.537033,0],[34.910308,32.537003,0],[34.910209,32.536774,0],[34.910183,32.536714,0],[34.910166,32.53667,0],[34.910162,32.536658,0],[34.910143,32.536603,0],[34.910125,32.536549,0],[34.91011,32.536504,0],[34.910109,32.536435,0],[34.910108,32.536381,0],[34.910107,32.53631,0],[34.910106,32.536252,0],[34.910106,32.536201,0],[34.910024,32.536211,0],[34.910001,32.536213,0],[34.910019,32.536124,0],[34.910038,32.536029,0],[34.910059,32.53594,0],[34.910075,32.535856,0],[34.91009,32.535776,0],[34.91064,32.535765,0],[34.910621,32.535675,0],[34.910573,32.535533,0],[34.910524,32.535383,0],[34.910655,32.535306,0],[34.910788,32.535227,0],[34.91091,32.535156,0],[34.911037,32.535079,0],[34.911076,32.535057,0],[34.911107,32.534991,0],[34.911412,32.534887,0],[34.911435,32.53488,0],[34.911481,32.534871,0],[34.911504,32.534914,0],[34.91184,32.534886,0],[34.911895,32.534752,0],[34.911929,32.534745,0],[34.912906,32.534399,0],[34.913241,32.534285,0],[34.914044,32.534011,0],[34.914054,32.534063,0],[34.91548,32.533681,0]]]},"type":"Feature","properties":{"Name":"10399"}},{"geometry":{"type":"Polygon","coordinates":[[[34.908266,32.539372,0],[34.908298,32.539421,0],[34.908328,32.539463,0],[34.90836,32.539509,0],[34.908396,32.539561,0],[34.908433,32.539604,0],[34.908477,32.539653,0],[34.908513,32.539695,0],[34.908548,32.539734,0],[34.908592,32.539785,0],[34.908628,32.539825,0],[34.90867,32.539874,0],[34.908705,32.539914,0],[34.908751,32.539966,0],[34.908796,32.540017,0],[34.908846,32.540075,0],[34.908896,32.540132,0],[34.908946,32.540189,0],[34.908992,32.540241,0],[34.909057,32.540315,0],[34.90912,32.540387,0],[34.909183,32.540459,0],[34.909238,32.540521,0],[34.909308,32.5406,0],[34.909373,32.540693,0],[34.909435,32.540783,0],[34.909562,32.540964,0],[34.909637,32.541072,0],[34.909707,32.541172,0],[34.90978,32.541278,0],[34.90986,32.541391,0],[34.909933,32.541497,0],[34.910012,32.541607,0],[34.910088,32.541717,0],[34.910248,32.541948,0],[34.910327,32.542063,0],[34.910408,32.542181,0],[34.910505,32.542322,0],[34.910588,32.542442,0],[34.910833,32.542797,0],[34.911017,32.543214,0],[34.911098,32.543397,0],[34.911185,32.543592,0],[34.911272,32.543787,0],[34.911364,32.543995,0],[34.91146,32.544211,0],[34.911548,32.544408,0],[34.911639,32.544613,0],[34.911727,32.544811,0],[34.911816,32.545012,0],[34.911897,32.545194,0],[34.911977,32.545373,0],[34.912051,32.54554,0],[34.912098,32.545645,0],[34.912993,32.545775,0],[34.915035,32.547007,0],[34.915629,32.547579,0],[34.915663,32.547517,0],[34.916051,32.546648,0],[34.915927,32.546008,0],[34.915963,32.545959,0],[34.916106,32.54477,0],[34.916144,32.544068,0],[34.916107,32.543887,0],[34.916035,32.54347,0],[34.916046,32.543433,0],[34.916348,32.542449,0],[34.916356,32.542417,0],[34.916316,32.542273,0],[34.916269,32.542102,0],[34.916224,32.541939,0],[34.91618,32.541778,0],[34.916138,32.541625,0],[34.916124,32.541574,0],[34.916095,32.541469,0],[34.916056,32.541316,0],[34.916051,32.541266,0],[34.916039,32.541148,0],[34.916026,32.541014,0],[34.916013,32.540878,0],[34.916015,32.540845,0],[34.916011,32.540745,0],[34.915998,32.540601,0],[34.915987,32.540469,0],[34.915976,32.540336,0],[34.915965,32.540205,0],[34.915955,32.540083,0],[34.915946,32.539972,0],[34.915943,32.539943,0],[34.915936,32.539855,0],[34.915933,32.53982,0],[34.915926,32.539737,0],[34.915922,32.539692,0],[34.915916,32.539609,0],[34.915911,32.539551,0],[34.915906,32.539493,0],[34.9159,32.539425,0],[34.915896,32.539377,0],[34.915889,32.539296,0],[34.915886,32.539258,0],[34.915879,32.539175,0],[34.915877,32.539146,0],[34.915869,32.539034,0],[34.915857,32.538912,0],[34.915853,32.538877,0],[34.915722,32.537552,0],[34.915699,32.537553,0],[34.913971,32.537648,0],[34.91398,32.537724,0],[34.913984,32.537796,0],[34.913991,32.537871,0],[34.914,32.53796,0],[34.914013,32.538066,0],[34.914021,32.538181,0],[34.913421,32.538527,0],[34.913285,32.538396,0],[34.913217,32.53839,0],[34.912503,32.538402,0],[34.912,32.538439,0],[34.911566,32.538427,0],[34.911525,32.538437,0],[34.91106,32.538422,0],[34.91099,32.53843,0],[34.910974,32.53834,0],[34.91096,32.538257,0],[34.910949,32.538188,0],[34.910937,32.538108,0],[34.910924,32.538023,0],[34.910912,32.537948,0],[34.910899,32.537862,0],[34.910888,32.537789,0],[34.910878,32.537721,0],[34.910872,32.537658,0],[34.910599,32.53782,0],[34.908173,32.539226,0],[34.908202,32.539272,0],[34.908235,32.539323,0],[34.908266,32.539372,0]]]},"type":"Feature","properties":{"Name":"10398"}},{"geometry":{"type":"Polygon","coordinates":[[[34.906215,32.538169,0],[34.90618,32.538159,0],[34.906139,32.538146,0],[34.906098,32.538135,0],[34.905949,32.538149,0],[34.905805,32.538166,0],[34.90563,32.538139,0],[34.905417,32.538187,0],[34.904897,32.538243,0],[34.904842,32.538253,0],[34.903795,32.538484,0],[34.903592,32.53855,0],[34.903443,32.538597,0],[34.902923,32.53885,0],[34.902404,32.539235,0],[34.902305,32.539379,0],[34.902315,32.539437,0],[34.901904,32.539734,0],[34.901869,32.539734,0],[34.901702,32.53964,0],[34.901234,32.539432,0],[34.900928,32.539459,0],[34.900899,32.539461,0],[34.900867,32.53945,0],[34.900898,32.539254,0],[34.900912,32.539126,0],[34.900928,32.539095,0],[34.90095,32.539074,0],[34.90103,32.538992,0],[34.901029,32.538839,0],[34.901578,32.537586,0],[34.901604,32.537404,0],[34.901371,32.536989,0],[34.901317,32.536396,0],[34.901615,32.535734,0],[34.901613,32.535698,0],[34.901431,32.535146,0],[34.90144,32.535085,0],[34.901687,32.53438,0],[34.901597,32.533771,0],[34.900845,32.532186,0],[34.900909,32.53204,0],[34.906476,32.531534,0],[34.906543,32.531527,0],[34.90854,32.531345,0],[34.909534,32.531253,0],[34.911405,32.531085,0],[34.911468,32.531075,0],[34.911332,32.532455,0],[34.911266,32.532982,0],[34.91124,32.533343,0],[34.911212,32.533668,0],[34.911209,32.533719,0],[34.911185,32.533996,0],[34.911167,32.534376,0],[34.911148,32.534551,0],[34.911138,32.534666,0],[34.911107,32.534991,0],[34.911076,32.535057,0],[34.911037,32.535079,0],[34.91091,32.535156,0],[34.910788,32.535227,0],[34.910655,32.535306,0],[34.910524,32.535383,0],[34.910573,32.535533,0],[34.910621,32.535675,0],[34.91064,32.535765,0],[34.91009,32.535776,0],[34.910001,32.536213,0],[34.910106,32.536201,0],[34.91011,32.536504,0],[34.910166,32.53667,0],[34.910308,32.537003,0],[34.910345,32.537033,0],[34.910308,32.537081,0],[34.910336,32.537142,0],[34.910402,32.537337,0],[34.910304,32.537389,0],[34.91025,32.537528,0],[34.910232,32.537619,0],[34.910304,32.537651,0],[34.910522,32.537769,0],[34.910883,32.537591,0],[34.91088,32.537629,0],[34.910872,32.537658,0],[34.910599,32.53782,0],[34.908173,32.539225,0],[34.90815,32.539195,0],[34.908128,32.539171,0],[34.908099,32.539146,0],[34.908076,32.53912,0],[34.908045,32.539095,0],[34.908011,32.539068,0],[34.907982,32.53904,0],[34.907962,32.539022,0],[34.90794,32.538999,0],[34.907909,32.53897,0],[34.907875,32.538948,0],[34.907844,32.538921,0],[34.907735,32.538817,0],[34.907707,32.538794,0],[34.907687,32.538775,0],[34.907654,32.538748,0],[34.907627,32.538722,0],[34.907603,32.538703,0],[34.907574,32.538677,0],[34.907539,32.538653,0],[34.907514,32.538629,0],[34.907481,32.538601,0],[34.907454,32.538575,0],[34.907429,32.538546,0],[34.907404,32.538524,0],[34.907375,32.538509,0],[34.907335,32.5385,0],[34.907299,32.53849,0],[34.907259,32.538477,0],[34.907221,32.538467,0],[34.907145,32.538447,0],[34.907113,32.538437,0],[34.90707,32.538426,0],[34.907038,32.538417,0],[34.906993,32.538403,0],[34.906956,32.538393,0],[34.906923,32.538379,0],[34.906885,32.538371,0],[34.906845,32.53836,0],[34.906803,32.538347,0],[34.906773,32.538338,0],[34.906736,32.538325,0],[34.906698,32.538312,0],[34.906663,32.5383,0],[34.906624,32.538288,0],[34.906583,32.538277,0],[34.906551,32.538267,0],[34.906507,32.538256,0],[34.906467,32.538247,0],[34.906438,32.538236,0],[34.906405,32.538225,0],[34.90633,32.538202,0],[34.906291,32.538191,0],[34.906258,32.538179,0],[34.906215,32.538169,0]]]},"type":"Feature","properties":{"Name":"10397"}}]} \ No newline at end of file diff --git a/data/gushim/zichron.yaakov.gush.js b/data/gushim/zichron.yaakov.gush.js new file mode 100644 index 0000000..ec6e555 --- /dev/null +++ b/data/gushim/zichron.yaakov.gush.js @@ -0,0 +1 @@ +var gushim={"type":"FeatureCollection","features":[{"geometry":{"type":"Polygon","coordinates":[[[34.962781,32.563286,0],[34.962592,32.563367,0],[34.962401,32.563449,0],[34.962195,32.563537,0],[34.962089,32.563582,0],[34.961862,32.563679,0],[34.961636,32.563776,0],[34.961525,32.563824,0],[34.961586,32.564051,0],[34.961613,32.564152,0],[34.961636,32.564319,0],[34.961638,32.564336,0],[34.961645,32.564475,0],[34.961648,32.564529,0],[34.961651,32.564584,0],[34.961658,32.564736,0],[34.961661,32.564794,0],[34.961654,32.564915,0],[34.961654,32.564975,0],[34.961654,32.565079,0],[34.961653,32.565216,0],[34.961617,32.565406,0],[34.961614,32.565449,0],[34.961607,32.565583,0],[34.961626,32.565601,0],[34.961809,32.565846,0],[34.961838,32.565922,0],[34.961869,32.566042,0],[34.961878,32.566173,0],[34.961698,32.566235,0],[34.96169,32.566238,0],[34.961604,32.566267,0],[34.961633,32.566329,0],[34.961633,32.566331,0],[34.961634,32.566332,0],[34.961634,32.566333,0],[34.961635,32.566334,0],[34.961635,32.566336,0],[34.961636,32.566337,0],[34.961636,32.566338,0],[34.961636,32.56634,0],[34.961637,32.566341,0],[34.961637,32.566342,0],[34.961637,32.566343,0],[34.961637,32.566345,0],[34.961638,32.566346,0],[34.961638,32.566347,0],[34.961638,32.566349,0],[34.961638,32.56635,0],[34.961638,32.566351,0],[34.961638,32.566353,0],[34.961639,32.566354,0],[34.961639,32.566355,0],[34.961639,32.566357,0],[34.961639,32.566358,0],[34.961639,32.566359,0],[34.961638,32.56636,0],[34.961638,32.566362,0],[34.961638,32.566363,0],[34.961638,32.566364,0],[34.961638,32.566366,0],[34.961638,32.566367,0],[34.961638,32.566368,0],[34.961637,32.56637,0],[34.961637,32.566371,0],[34.961637,32.566372,0],[34.961636,32.566374,0],[34.961636,32.566375,0],[34.961636,32.566376,0],[34.961635,32.566377,0],[34.961635,32.566379,0],[34.961634,32.56638,0],[34.961634,32.566381,0],[34.961633,32.566382,0],[34.961633,32.566384,0],[34.961632,32.566385,0],[34.961632,32.566386,0],[34.961631,32.566387,0],[34.96163,32.566388,0],[34.96163,32.56639,0],[34.961629,32.566391,0],[34.961628,32.566392,0],[34.961627,32.566393,0],[34.961627,32.566394,0],[34.961626,32.566395,0],[34.961625,32.566397,0],[34.961624,32.566398,0],[34.961623,32.566399,0],[34.961623,32.5664,0],[34.961622,32.566401,0],[34.961621,32.566402,0],[34.96162,32.566403,0],[34.961619,32.566404,0],[34.961618,32.566405,0],[34.961617,32.566406,0],[34.961616,32.566407,0],[34.961615,32.566408,0],[34.961614,32.566409,0],[34.961613,32.56641,0],[34.961611,32.566411,0],[34.96161,32.566412,0],[34.961609,32.566413,0],[34.961608,32.566414,0],[34.961607,32.566414,0],[34.961606,32.566415,0],[34.961604,32.566416,0],[34.961603,32.566417,0],[34.961602,32.566418,0],[34.961601,32.566418,0],[34.961599,32.566419,0],[34.961597,32.566421,0],[34.961596,32.566421,0],[34.961595,32.566422,0],[34.961594,32.566423,0],[34.961593,32.566424,0],[34.961592,32.566425,0],[34.961591,32.566426,0],[34.96159,32.566427,0],[34.961589,32.566428,0],[34.961588,32.566429,0],[34.961587,32.56643,0],[34.961587,32.566431,0],[34.961586,32.566432,0],[34.961585,32.566433,0],[34.961585,32.566434,0],[34.961584,32.566435,0],[34.961584,32.566436,0],[34.961583,32.566438,0],[34.961583,32.566439,0],[34.961582,32.56644,0],[34.961582,32.566441,0],[34.961582,32.566442,0],[34.961582,32.566444,0],[34.961581,32.566445,0],[34.961581,32.566446,0],[34.961581,32.566447,0],[34.961581,32.566449,0],[34.961581,32.56645,0],[34.961581,32.566451,0],[34.961581,32.566452,0],[34.961582,32.566454,0],[34.961582,32.566455,0],[34.961582,32.566456,0],[34.961582,32.566457,0],[34.961582,32.566458,0],[34.961582,32.566459,0],[34.961583,32.56646,0],[34.961583,32.566461,0],[34.961583,32.566462,0],[34.961583,32.566463,0],[34.961583,32.566464,0],[34.961583,32.566465,0],[34.961583,32.566466,0],[34.961583,32.566467,0],[34.961583,32.566468,0],[34.961583,32.566469,0],[34.961583,32.56647,0],[34.961583,32.566471,0],[34.961583,32.566472,0],[34.961583,32.566473,0],[34.961583,32.566474,0],[34.961583,32.566475,0],[34.961583,32.566475,0],[34.961583,32.566476,0],[34.961583,32.566477,0],[34.961583,32.566478,0],[34.961583,32.566479,0],[34.961583,32.56648,0],[34.961583,32.566481,0],[34.961583,32.566482,0],[34.961583,32.566483,0],[34.961583,32.566484,0],[34.961583,32.566485,0],[34.961583,32.566486,0],[34.961583,32.566487,0],[34.961583,32.566488,0],[34.961582,32.566489,0],[34.961742,32.566435,0],[34.961779,32.566422,0],[34.96186,32.566394,0],[34.961847,32.566543,0],[34.961842,32.566568,0],[34.961845,32.566574,0],[34.961847,32.566581,0],[34.961849,32.566587,0],[34.961852,32.566593,0],[34.961854,32.566599,0],[34.961857,32.566605,0],[34.961859,32.566611,0],[34.961861,32.566618,0],[34.961863,32.566624,0],[34.961866,32.56663,0],[34.961868,32.566636,0],[34.96187,32.566642,0],[34.961873,32.566648,0],[34.961877,32.56666,0],[34.96191,32.566758,0],[34.96193,32.566822,0],[34.961949,32.566885,0],[34.961966,32.566949,0],[34.961982,32.567013,0],[34.961996,32.567078,0],[34.96229,32.566952,0],[34.962291,32.566958,0],[34.962293,32.566965,0],[34.962295,32.566972,0],[34.962296,32.566979,0],[34.962298,32.566986,0],[34.9623,32.566995,0],[34.962301,32.567002,0],[34.962303,32.567008,0],[34.962304,32.567015,0],[34.962307,32.567028,0],[34.962309,32.567035,0],[34.96231,32.567042,0],[34.962312,32.567049,0],[34.962313,32.567055,0],[34.962314,32.567062,0],[34.962316,32.567069,0],[34.962317,32.567076,0],[34.962319,32.567082,0],[34.96232,32.567089,0],[34.962321,32.567096,0],[34.962323,32.567103,0],[34.962324,32.56711,0],[34.962325,32.567116,0],[34.962326,32.567123,0],[34.962328,32.56713,0],[34.962329,32.567137,0],[34.96233,32.567144,0],[34.962331,32.56715,0],[34.962333,32.567157,0],[34.962334,32.567164,0],[34.962335,32.567171,0],[34.962336,32.567178,0],[34.962337,32.567185,0],[34.962338,32.567191,0],[34.96234,32.567198,0],[34.962341,32.567205,0],[34.962342,32.567212,0],[34.962343,32.567219,0],[34.962344,32.567225,0],[34.962345,32.567232,0],[34.962346,32.567239,0],[34.962348,32.567251,0],[34.962349,32.56726,0],[34.96235,32.567269,0],[34.962351,32.567277,0],[34.962353,32.567286,0],[34.962354,32.567295,0],[34.962355,32.567304,0],[34.962356,32.567313,0],[34.962357,32.567322,0],[34.962358,32.567331,0],[34.962359,32.56734,0],[34.962361,32.567349,0],[34.962362,32.567358,0],[34.962363,32.567367,0],[34.962364,32.567376,0],[34.962365,32.567385,0],[34.962366,32.567394,0],[34.962367,32.567403,0],[34.962367,32.567412,0],[34.962368,32.567421,0],[34.962369,32.56743,0],[34.96237,32.567439,0],[34.962371,32.567448,0],[34.962372,32.567457,0],[34.962373,32.567465,0],[34.962374,32.567474,0],[34.962374,32.567483,0],[34.962375,32.567492,0],[34.962376,32.567501,0],[34.962377,32.56751,0],[34.962377,32.567519,0],[34.962378,32.567528,0],[34.962379,32.567537,0],[34.962379,32.567546,0],[34.96238,32.567555,0],[34.962381,32.567564,0],[34.962381,32.567573,0],[34.962382,32.567582,0],[34.962382,32.567591,0],[34.962383,32.5676,0],[34.962384,32.567609,0],[34.962384,32.567618,0],[34.962385,32.567627,0],[34.962385,32.567636,0],[34.962386,32.567645,0],[34.962386,32.567654,0],[34.962386,32.567663,0],[34.962387,32.567672,0],[34.962387,32.567684,0],[34.962327,32.567685,0],[34.962324,32.567918,0],[34.962324,32.567925,0],[34.962324,32.567932,0],[34.962323,32.567939,0],[34.962323,32.567946,0],[34.962322,32.567953,0],[34.962322,32.56796,0],[34.962321,32.567967,0],[34.962321,32.567974,0],[34.96232,32.567981,0],[34.96232,32.567988,0],[34.962319,32.567995,0],[34.962319,32.568002,0],[34.962318,32.568009,0],[34.962318,32.568016,0],[34.962317,32.568023,0],[34.962317,32.56803,0],[34.962316,32.568037,0],[34.962315,32.568044,0],[34.962315,32.568051,0],[34.962314,32.568058,0],[34.962313,32.568066,0],[34.962313,32.568073,0],[34.962312,32.56808,0],[34.962311,32.568087,0],[34.962311,32.568094,0],[34.96231,32.568101,0],[34.962309,32.568108,0],[34.962308,32.568115,0],[34.962308,32.568122,0],[34.962307,32.568129,0],[34.962306,32.568136,0],[34.962305,32.568143,0],[34.962304,32.56815,0],[34.962304,32.568157,0],[34.962303,32.568164,0],[34.962302,32.568171,0],[34.962301,32.568178,0],[34.9623,32.568185,0],[34.962299,32.568192,0],[34.962298,32.568199,0],[34.962297,32.568206,0],[34.962296,32.568213,0],[34.962295,32.56822,0],[34.962294,32.568227,0],[34.962293,32.568234,0],[34.962292,32.568241,0],[34.962291,32.568248,0],[34.962289,32.56826,0],[34.962289,32.568262,0],[34.962289,32.568264,0],[34.962288,32.568266,0],[34.962288,32.568268,0],[34.962288,32.56827,0],[34.962287,32.568272,0],[34.962287,32.568274,0],[34.962287,32.568276,0],[34.962286,32.568278,0],[34.962286,32.56828,0],[34.962285,32.568282,0],[34.962285,32.568284,0],[34.962285,32.568286,0],[34.962284,32.568288,0],[34.962284,32.56829,0],[34.962283,32.568292,0],[34.962283,32.568294,0],[34.962282,32.568296,0],[34.962282,32.568298,0],[34.962282,32.5683,0],[34.962281,32.568302,0],[34.962281,32.568304,0],[34.96228,32.568306,0],[34.96228,32.568308,0],[34.962279,32.56831,0],[34.962279,32.568312,0],[34.962278,32.568314,0],[34.962278,32.568316,0],[34.962278,32.568318,0],[34.962277,32.56832,0],[34.962277,32.568322,0],[34.962276,32.568324,0],[34.962276,32.568326,0],[34.962275,32.568327,0],[34.962275,32.568329,0],[34.962274,32.568331,0],[34.962274,32.568333,0],[34.962273,32.568335,0],[34.962273,32.568337,0],[34.962272,32.568339,0],[34.962272,32.568341,0],[34.962271,32.568343,0],[34.962271,32.568345,0],[34.96227,32.568347,0],[34.962269,32.568349,0],[34.962269,32.568351,0],[34.962268,32.568353,0],[34.962268,32.568355,0],[34.962267,32.568357,0],[34.962267,32.568359,0],[34.962266,32.568361,0],[34.962266,32.568363,0],[34.962265,32.568365,0],[34.962264,32.568367,0],[34.962264,32.568369,0],[34.962263,32.568371,0],[34.962263,32.568373,0],[34.962262,32.568375,0],[34.962262,32.568377,0],[34.962261,32.568379,0],[34.96226,32.56838,0],[34.96226,32.568382,0],[34.962259,32.568384,0],[34.962259,32.568386,0],[34.962258,32.568388,0],[34.962257,32.56839,0],[34.962257,32.568392,0],[34.962256,32.568394,0],[34.962255,32.568396,0],[34.962255,32.568398,0],[34.962254,32.5684,0],[34.962254,32.568402,0],[34.962253,32.568404,0],[34.962252,32.568406,0],[34.962252,32.568408,0],[34.962251,32.56841,0],[34.96225,32.568412,0],[34.96225,32.568414,0],[34.962249,32.568415,0],[34.962248,32.568417,0],[34.962248,32.568419,0],[34.962247,32.568421,0],[34.962246,32.568423,0],[34.962246,32.568425,0],[34.962245,32.568427,0],[34.962244,32.568429,0],[34.962243,32.568431,0],[34.962243,32.568433,0],[34.962242,32.568435,0],[34.962241,32.568437,0],[34.962241,32.568439,0],[34.96224,32.568441,0],[34.962239,32.568442,0],[34.962238,32.568444,0],[34.962238,32.568446,0],[34.962237,32.568448,0],[34.962236,32.56845,0],[34.962235,32.568452,0],[34.962235,32.568454,0],[34.962234,32.568456,0],[34.962233,32.568458,0],[34.962232,32.56846,0],[34.962232,32.568462,0],[34.962231,32.568464,0],[34.96223,32.568465,0],[34.962229,32.568467,0],[34.962229,32.568469,0],[34.962228,32.568471,0],[34.962227,32.568473,0],[34.962226,32.568475,0],[34.962225,32.568477,0],[34.962225,32.568479,0],[34.962224,32.568481,0],[34.962223,32.568483,0],[34.962222,32.568484,0],[34.962221,32.568486,0],[34.962221,32.568488,0],[34.96222,32.56849,0],[34.962219,32.568492,0],[34.962218,32.568494,0],[34.962217,32.568496,0],[34.962216,32.568498,0],[34.962216,32.5685,0],[34.962215,32.568501,0],[34.962214,32.568503,0],[34.962213,32.568505,0],[34.962212,32.568507,0],[34.962211,32.568509,0],[34.962211,32.568511,0],[34.96221,32.568513,0],[34.962209,32.568515,0],[34.962208,32.568516,0],[34.962207,32.568518,0],[34.962206,32.56852,0],[34.962205,32.568522,0],[34.962204,32.568524,0],[34.962203,32.568526,0],[34.962203,32.568528,0],[34.962202,32.56853,0],[34.962201,32.568531,0],[34.9622,32.568533,0],[34.962199,32.568535,0],[34.962198,32.568537,0],[34.962197,32.568539,0],[34.962196,32.568541,0],[34.962195,32.568543,0],[34.962194,32.568544,0],[34.962193,32.568546,0],[34.962192,32.568548,0],[34.962192,32.56855,0],[34.962191,32.568552,0],[34.96219,32.568554,0],[34.962189,32.568556,0],[34.962188,32.568557,0],[34.962187,32.568559,0],[34.962186,32.568561,0],[34.962185,32.568563,0],[34.962184,32.568565,0],[34.962183,32.568567,0],[34.962182,32.568568,0],[34.962181,32.56857,0],[34.96218,32.568572,0],[34.962179,32.568574,0],[34.962178,32.568576,0],[34.962177,32.568578,0],[34.962176,32.568579,0],[34.962175,32.568581,0],[34.962174,32.568583,0],[34.962173,32.568585,0],[34.962172,32.568587,0],[34.962171,32.568589,0],[34.96217,32.56859,0],[34.962169,32.568592,0],[34.962168,32.568594,0],[34.962167,32.568596,0],[34.962166,32.568598,0],[34.962165,32.568599,0],[34.962164,32.568601,0],[34.962163,32.568603,0],[34.962161,32.568606,0],[34.962279,32.568601,0],[34.96317,32.568602,0],[34.963354,32.568603,0],[34.963483,32.568604,0],[34.964223,32.568607,0],[34.966051,32.56865,0],[34.965996,32.568531,0],[34.965827,32.568165,0],[34.965796,32.568083,0],[34.965635,32.567652,0],[34.965572,32.567525,0],[34.96548,32.567337,0],[34.965401,32.567168,0],[34.965337,32.567034,0],[34.965271,32.566897,0],[34.965214,32.566777,0],[34.965097,32.566533,0],[34.965036,32.566407,0],[34.964826,32.565971,0],[34.964795,32.565891,0],[34.964747,32.565768,0],[34.964693,32.565634,0],[34.964671,32.565576,0],[34.964568,32.565327,0],[34.964563,32.565314,0],[34.964491,32.565141,0],[34.96449,32.565138,0],[34.964403,32.564927,0],[34.964397,32.564918,0],[34.964337,32.564781,0],[34.96433,32.564763,0],[34.96422,32.564508,0],[34.963903,32.563855,0],[34.963748,32.563535,0],[34.963656,32.563346,0],[34.963529,32.562966,0],[34.96348,32.562987,0],[34.96335,32.563043,0],[34.96316,32.563124,0],[34.96297,32.563205,0],[34.962781,32.563286,0]]]},"type":"Feature","properties":{"Name":"12728"}},{"geometry":{"type":"Polygon","coordinates":[[[34.979904,32.532165,0],[34.980209,32.531345,0],[34.980318,32.531048,0],[34.980329,32.531019,0],[34.980366,32.530914,0],[34.980408,32.530793,0],[34.980481,32.530585,0],[34.980528,32.530488,0],[34.980692,32.530302,0],[34.980906,32.530061,0],[34.981099,32.529894,0],[34.981461,32.529579,0],[34.981507,32.529539,0],[34.981581,32.529475,0],[34.98165,32.529414,0],[34.981718,32.529356,0],[34.98176,32.529319,0],[34.981832,32.529262,0],[34.981703,32.529347,0],[34.981571,32.529462,0],[34.981496,32.529525,0],[34.981447,32.529563,0],[34.981262,32.529715,0],[34.981197,32.529768,0],[34.980745,32.530138,0],[34.980592,32.530263,0],[34.980216,32.530711,0],[34.980061,32.531058,0],[34.980038,32.531154,0],[34.979897,32.53172,0],[34.97983,32.531993,0],[34.979795,32.532136,0],[34.979789,32.532154,0],[34.979746,32.532265,0],[34.979714,32.532341,0],[34.979611,32.532601,0],[34.979594,32.532639,0],[34.979417,32.532866,0],[34.979192,32.533074,0],[34.979298,32.533108,0],[34.97947,32.533164,0],[34.979955,32.533213,0],[34.980288,32.533251,0],[34.980362,32.533307,0],[34.980369,32.533312,0],[34.980484,32.533377,0],[34.980535,32.533389,0],[34.980852,32.533447,0],[34.980943,32.533546,0],[34.981142,32.533651,0],[34.981252,32.533838,0],[34.981665,32.533893,0],[34.981755,32.534128,0],[34.981968,32.53437,0],[34.982331,32.534509,0],[34.98275,32.534586,0],[34.982808,32.534596,0],[34.983083,32.534584,0],[34.983315,32.534603,0],[34.984102,32.534897,0],[34.984149,32.535121,0],[34.984609,32.535184,0],[34.985013,32.535431,0],[34.985045,32.535456,0],[34.985226,32.535459,0],[34.985145,32.535256,0],[34.985085,32.535107,0],[34.985069,32.535067,0],[34.985131,32.534981,0],[34.985177,32.534917,0],[34.9852,32.534888,0],[34.98518,32.53488,0],[34.985012,32.534815,0],[34.984925,32.534782,0],[34.984716,32.5347,0],[34.984603,32.534639,0],[34.984252,32.53445,0],[34.983688,32.533851,0],[34.983389,32.533531,0],[34.983371,32.53351,0],[34.98308,32.533159,0],[34.983043,32.533113,0],[34.982986,32.533066,0],[34.982902,32.532901,0],[34.982865,32.532828,0],[34.982817,32.532731,0],[34.982689,32.532584,0],[34.982594,32.532496,0],[34.981903,32.532402,0],[34.981823,32.532382,0],[34.981669,32.532341,0],[34.981556,32.532311,0],[34.981056,32.532271,0],[34.980569,32.532233,0],[34.979959,32.532182,0],[34.9799,32.532175,0],[34.979904,32.532165,0]]]},"type":"Feature","properties":{"Name":"12079"}},{"geometry":{"type":"Polygon","coordinates":[[[34.990541,32.537439,0],[34.990496,32.537419,0],[34.990442,32.5374,0],[34.990381,32.537378,0],[34.990279,32.537341,0],[34.990115,32.537337,0],[34.990003,32.537336,0],[34.989918,32.537333,0],[34.989879,32.537333,0],[34.989824,32.537308,0],[34.989788,32.537295,0],[34.989594,32.537204,0],[34.989584,32.537199,0],[34.989555,32.537186,0],[34.989422,32.537143,0],[34.989316,32.537105,0],[34.989024,32.53692,0],[34.988742,32.536765,0],[34.98867,32.536725,0],[34.988584,32.536732,0],[34.988487,32.536736,0],[34.988455,32.536736,0],[34.988084,32.53672,0],[34.98803,32.536717,0],[34.98783,32.536638,0],[34.987617,32.536555,0],[34.987404,32.536472,0],[34.987271,32.536419,0],[34.987113,32.536274,0],[34.986888,32.536107,0],[34.98677,32.53602,0],[34.986734,32.535993,0],[34.986677,32.535952,0],[34.986654,32.535896,0],[34.986592,32.535745,0],[34.986575,32.535704,0],[34.986546,32.535632,0],[34.986522,32.53557,0],[34.986482,32.535521,0],[34.986305,32.535293,0],[34.986198,32.535158,0],[34.986168,32.535121,0],[34.986091,32.535026,0],[34.986056,32.535012,0],[34.985832,32.534932,0],[34.985699,32.534883,0],[34.985647,32.534865,0],[34.985577,32.534859,0],[34.985499,32.534856,0],[34.985418,32.534853,0],[34.985251,32.534878,0],[34.9852,32.534888,0],[34.985177,32.534917,0],[34.985131,32.534981,0],[34.985069,32.535067,0],[34.985085,32.535107,0],[34.985145,32.535256,0],[34.985226,32.535459,0],[34.985045,32.535456,0],[34.984971,32.535533,0],[34.984918,32.535586,0],[34.984902,32.535658,0],[34.98489,32.53572,0],[34.984992,32.536111,0],[34.985044,32.536323,0],[34.985163,32.53623,0],[34.985218,32.536216,0],[34.985283,32.536224,0],[34.98529,32.536184,0],[34.9855,32.536207,0],[34.985542,32.536489,0],[34.98605,32.536642,0],[34.986986,32.537101,0],[34.987077,32.537153,0],[34.987558,32.53718,0],[34.988058,32.537307,0],[34.988142,32.537438,0],[34.988159,32.537517,0],[34.988448,32.537648,0],[34.988475,32.537661,0],[34.988604,32.537841,0],[34.988735,32.538025,0],[34.988775,32.538045,0],[34.988884,32.538099,0],[34.989218,32.538265,0],[34.989258,32.538285,0],[34.989319,32.538315,0],[34.989435,32.538371,0],[34.989548,32.538427,0],[34.989657,32.53847,0],[34.989842,32.538543,0],[34.990253,32.537647,0],[34.990306,32.537533,0],[34.990411,32.53743,0],[34.99053,32.537577,0],[34.990635,32.537595,0],[34.990591,32.537458,0],[34.990541,32.537439,0]]]},"type":"Feature","properties":{"Name":"12078"}},{"geometry":{"type":"Polygon","coordinates":[[[34.990306,32.537533,0],[34.990253,32.537647,0],[34.989842,32.538543,0],[34.990769,32.538858,0],[34.992308,32.539449,0],[34.992637,32.539451,0],[34.994058,32.539626,0],[34.994364,32.539542,0],[34.994445,32.539481,0],[34.994453,32.539387,0],[34.994592,32.539174,0],[34.994678,32.539144,0],[34.994783,32.539246,0],[34.994873,32.539272,0],[34.994987,32.539303,0],[34.994933,32.53922,0],[34.994804,32.539108,0],[34.994533,32.53873,0],[34.994498,32.538703,0],[34.994351,32.538592,0],[34.994128,32.538426,0],[34.994075,32.538383,0],[34.994047,32.538375,0],[34.993818,32.538313,0],[34.993677,32.538274,0],[34.993306,32.538173,0],[34.993255,32.538158,0],[34.993022,32.538135,0],[34.992845,32.538119,0],[34.992367,32.538073,0],[34.992327,32.538063,0],[34.991784,32.537917,0],[34.991439,32.537819,0],[34.991157,32.537691,0],[34.991086,32.537661,0],[34.991015,32.537631,0],[34.990781,32.537535,0],[34.990617,32.53747,0],[34.990591,32.537458,0],[34.990635,32.537595,0],[34.99053,32.537577,0],[34.990411,32.53743,0],[34.990306,32.537533,0]]]},"type":"Feature","properties":{"Name":"12077"}},{"geometry":{"type":"Polygon","coordinates":[[[34.99715,32.555116,0],[34.997187,32.555071,0],[34.997979,32.554113,0],[34.997893,32.554122,0],[34.997767,32.554028,0],[34.997653,32.553888,0],[34.997544,32.553786,0],[34.997495,32.55366,0],[34.997388,32.55353,0],[34.997351,32.553481,0],[34.997268,32.553363,0],[34.997131,32.553126,0],[34.99721,32.552987,0],[34.997479,32.552758,0],[34.99763,32.552661,0],[34.996197,32.552193,0],[34.995718,32.552107,0],[34.995266,32.551273,0],[34.995046,32.549633,0],[34.994153,32.548979,0],[34.991294,32.547867,0],[34.990463,32.547486,0],[34.990023,32.547646,0],[34.98983,32.547811,0],[34.989553,32.547326,0],[34.989464,32.547203,0],[34.988626,32.546081,0],[34.988579,32.546012,0],[34.988523,32.546045,0],[34.988124,32.546314,0],[34.987839,32.546516,0],[34.987714,32.546817,0],[34.987297,32.547209,0],[34.987033,32.547557,0],[34.986819,32.547685,0],[34.986686,32.547756,0],[34.986496,32.548223,0],[34.986328,32.548669,0],[34.986302,32.548746,0],[34.986296,32.548888,0],[34.986262,32.549059,0],[34.986215,32.549291,0],[34.985912,32.549946,0],[34.985496,32.550388,0],[34.98525,32.550997,0],[34.984995,32.551125,0],[34.98464,32.551564,0],[34.984248,32.551887,0],[34.984277,32.55252,0],[34.985089,32.553414,0],[34.986101,32.554257,0],[34.985955,32.553823,0],[34.986661,32.553818,0],[34.987082,32.553079,0],[34.988137,32.552836,0],[34.988782,32.553029,0],[34.988924,32.553399,0],[34.989391,32.554621,0],[34.989355,32.554717,0],[34.989638,32.55474,0],[34.989782,32.554758,0],[34.989929,32.554777,0],[34.990036,32.554769,0],[34.990189,32.554757,0],[34.990388,32.554781,0],[34.990508,32.554795,0],[34.990619,32.5548,0],[34.990678,32.554803,0],[34.99074,32.55478,0],[34.991128,32.554635,0],[34.991165,32.554619,0],[34.991214,32.554597,0],[34.991417,32.554542,0],[34.991627,32.554484,0],[34.991699,32.554464,0],[34.991864,32.554451,0],[34.991871,32.554506,0],[34.991888,32.55485,0],[34.99216,32.555732,0],[34.992795,32.556981,0],[34.99391,32.557723,0],[34.995417,32.558545,0],[34.995909,32.558362,0],[34.995998,32.557354,0],[34.996537,32.556305,0],[34.996783,32.555826,0],[34.997003,32.555398,0],[34.99715,32.555116,0]]]},"type":"Feature","properties":{"Name":"12074"}},{"geometry":{"type":"Polygon","coordinates":[[[34.98737,32.565111,0],[34.988906,32.565761,0],[34.989519,32.566217,0],[34.989402,32.56664,0],[34.989891,32.567646,0],[34.990074,32.567558,0],[34.990123,32.567532,0],[34.990181,32.567018,0],[34.990583,32.566537,0],[34.991118,32.566406,0],[34.991903,32.566338,0],[34.99345,32.566727,0],[34.994534,32.567015,0],[34.994756,32.567197,0],[34.994825,32.567142,0],[34.994892,32.567089,0],[34.994865,32.566726,0],[34.995393,32.566131,0],[34.996721,32.565961,0],[34.996862,32.565942,0],[34.995983,32.565364,0],[34.995327,32.563583,0],[34.997274,32.562579,0],[34.997432,32.562354,0],[34.997798,32.562182,0],[34.997822,32.562065,0],[34.99793,32.561601,0],[34.997941,32.561545,0],[34.998246,32.560919,0],[34.998262,32.560852,0],[34.998425,32.560724,0],[34.998513,32.560571,0],[34.998708,32.560441,0],[34.99873,32.560391,0],[34.998751,32.560389,0],[34.998844,32.560292,0],[34.99863,32.560232,0],[34.99854,32.560201,0],[34.998499,32.560171,0],[34.998395,32.560114,0],[34.998314,32.560072,0],[34.998236,32.560005,0],[34.998145,32.559942,0],[34.998024,32.55989,0],[34.997883,32.55981,0],[34.997949,32.559748,0],[34.998151,32.559559,0],[34.998175,32.559549,0],[34.998199,32.559467,0],[34.997409,32.559048,0],[34.997151,32.558948,0],[34.997046,32.558887,0],[34.996977,32.558874,0],[34.996911,32.558846,0],[34.996851,32.558842,0],[34.99679,32.55883,0],[34.996694,32.558797,0],[34.996655,32.558773,0],[34.996606,32.55874,0],[34.996358,32.558614,0],[34.996141,32.558477,0],[34.995991,32.558386,0],[34.995909,32.558362,0],[34.995417,32.558545,0],[34.99391,32.557723,0],[34.992795,32.556981,0],[34.99216,32.555732,0],[34.991888,32.55485,0],[34.991871,32.554506,0],[34.991864,32.554451,0],[34.991699,32.554464,0],[34.991627,32.554484,0],[34.991417,32.554542,0],[34.991214,32.554597,0],[34.991165,32.554619,0],[34.991128,32.554635,0],[34.99074,32.55478,0],[34.990678,32.554803,0],[34.990619,32.5548,0],[34.990508,32.554795,0],[34.990388,32.554781,0],[34.990189,32.554757,0],[34.990036,32.554769,0],[34.989929,32.554777,0],[34.989782,32.554758,0],[34.989638,32.55474,0],[34.989355,32.554717,0],[34.989391,32.554621,0],[34.988924,32.553399,0],[34.988782,32.553029,0],[34.988137,32.552836,0],[34.987082,32.553079,0],[34.986661,32.553818,0],[34.985955,32.553823,0],[34.986101,32.554257,0],[34.986557,32.554571,0],[34.98697,32.554792,0],[34.987341,32.5552,0],[34.987287,32.555457,0],[34.98727,32.55552,0],[34.987176,32.555881,0],[34.987025,32.556489,0],[34.987008,32.556575,0],[34.986996,32.556641,0],[34.986975,32.556747,0],[34.986833,32.557495,0],[34.986676,32.558425,0],[34.986426,32.559416,0],[34.986202,32.559774,0],[34.986014,32.560075,0],[34.985808,32.560399,0],[34.985885,32.560849,0],[34.985859,32.561329,0],[34.985832,32.561543,0],[34.985828,32.561572,0],[34.985782,32.561933,0],[34.985949,32.562395,0],[34.985916,32.562845,0],[34.985568,32.56322,0],[34.985544,32.563252,0],[34.985495,32.563317,0],[34.98548,32.563337,0],[34.985417,32.56342,0],[34.985462,32.563522,0],[34.985664,32.563983,0],[34.985757,32.564418,0],[34.98601,32.565668,0],[34.986104,32.566547,0],[34.98611,32.566604,0],[34.986368,32.566556,0],[34.986513,32.565942,0],[34.986773,32.5655,0],[34.98721,32.565199,0],[34.98737,32.565111,0]]]},"type":"Feature","properties":{"Name":"12069"}},{"geometry":{"type":"Polygon","coordinates":[[[34.98587,32.570813,0],[34.985737,32.571085,0],[34.98409,32.571937,0],[34.983691,32.572133,0],[34.983361,32.572435,0],[34.983031,32.572963,0],[34.983035,32.573006,0],[34.98306,32.573285,0],[34.98303,32.573889,0],[34.983077,32.574051,0],[34.983192,32.574448,0],[34.983564,32.575253,0],[34.984108,32.575761,0],[34.985136,32.576639,0],[34.985608,32.57677,0],[34.986244,32.576814,0],[34.98701,32.577013,0],[34.987601,32.577113,0],[34.988519,32.576111,0],[34.988675,32.57573,0],[34.988759,32.575803,0],[34.98922,32.576094,0],[34.989901,32.575998,0],[34.990708,32.576218,0],[34.990776,32.576105,0],[34.991016,32.575901,0],[34.991128,32.57588,0],[34.991202,32.575853,0],[34.991244,32.575838,0],[34.991301,32.575793,0],[34.991326,32.575773,0],[34.991391,32.575727,0],[34.991513,32.575604,0],[34.991555,32.575575,0],[34.991689,32.575483,0],[34.991815,32.575428,0],[34.991813,32.575386,0],[34.991808,32.574661,0],[34.993307,32.574662,0],[34.993418,32.574663,0],[34.994122,32.575025,0],[34.994662,32.575027,0],[34.995413,32.575059,0],[34.99535,32.574644,0],[34.995346,32.574397,0],[34.995314,32.573634,0],[34.995475,32.572752,0],[34.994363,32.571206,0],[34.995659,32.570833,0],[34.996333,32.570354,0],[34.996547,32.570115,0],[34.996649,32.569991,0],[34.996641,32.569741,0],[34.996631,32.569537,0],[34.995159,32.567567,0],[34.994756,32.567197,0],[34.994534,32.567015,0],[34.99345,32.566727,0],[34.991903,32.566338,0],[34.991118,32.566406,0],[34.990583,32.566537,0],[34.990181,32.567018,0],[34.990123,32.567532,0],[34.990074,32.567558,0],[34.989891,32.567646,0],[34.989402,32.56664,0],[34.989519,32.566217,0],[34.988906,32.565761,0],[34.98737,32.565111,0],[34.98721,32.565199,0],[34.986773,32.5655,0],[34.986513,32.565942,0],[34.986368,32.566556,0],[34.98611,32.566604,0],[34.986178,32.566829,0],[34.98623,32.566979,0],[34.986512,32.568081,0],[34.986503,32.569031,0],[34.986545,32.569036,0],[34.986221,32.570093,0],[34.986146,32.570247,0],[34.986099,32.570343,0],[34.98587,32.570813,0]]]},"type":"Feature","properties":{"Name":"12068"}},{"geometry":{"type":"Polygon","coordinates":[[[34.994332,32.58131,0],[34.994125,32.58204,0],[34.994023,32.582562,0],[34.993913,32.583069,0],[34.994243,32.58363,0],[34.994788,32.583673,0],[34.995245,32.583687,0],[34.995964,32.583527,0],[34.996985,32.583532,0],[34.998211,32.584015,0],[34.998649,32.584182,0],[34.999276,32.584151,0],[35.00014,32.582081,0],[35.000638,32.581684,0],[35.001408,32.581895,0],[35.001713,32.580796,0],[35.001867,32.580216,0],[35.001913,32.580048,0],[35.002516,32.580167,0],[35.002719,32.580049,0],[35.00273,32.57995,0],[35.002796,32.579425,0],[35.002865,32.579102,0],[35.002897,32.578969,0],[35.002969,32.578639,0],[35.003013,32.578432,0],[35.003033,32.57823,0],[35.003052,32.578043,0],[35.003088,32.577698,0],[35.00312,32.577387,0],[35.003133,32.577233,0],[35.003137,32.577178,0],[35.003066,32.577143,0],[35.00303,32.577128,0],[35.002693,32.57698,0],[35.000662,32.576677,0],[35.000596,32.576671,0],[35.000345,32.576605,0],[34.9995,32.576422,0],[34.998548,32.575933,0],[34.997812,32.575451,0],[34.99749,32.575274,0],[34.995467,32.575307,0],[34.995413,32.575059,0],[34.994662,32.575027,0],[34.994122,32.575025,0],[34.993418,32.574663,0],[34.993307,32.574662,0],[34.991808,32.574661,0],[34.991813,32.575386,0],[34.991815,32.575428,0],[34.991689,32.575483,0],[34.991555,32.575575,0],[34.991513,32.575604,0],[34.991391,32.575727,0],[34.991326,32.575773,0],[34.991301,32.575793,0],[34.991244,32.575838,0],[34.991202,32.575853,0],[34.991128,32.57588,0],[34.991016,32.575901,0],[34.990776,32.576105,0],[34.990708,32.576218,0],[34.989901,32.575998,0],[34.98922,32.576094,0],[34.988759,32.575803,0],[34.988675,32.57573,0],[34.988519,32.576111,0],[34.987601,32.577113,0],[34.989982,32.578284,0],[34.990241,32.579245,0],[34.990882,32.579402,0],[34.991314,32.578021,0],[34.991391,32.577816,0],[34.991546,32.577399,0],[34.992072,32.57729,0],[34.992372,32.577446,0],[34.992387,32.577513,0],[34.993898,32.57979,0],[34.994092,32.579859,0],[34.995047,32.57949,0],[34.995063,32.579539,0],[34.994896,32.579831,0],[34.994455,32.580631,0],[34.994332,32.58131,0]]]},"type":"Feature","properties":{"Name":"12066"}},{"geometry":{"type":"Polygon","coordinates":[[[34.976614,32.557973,0],[34.976612,32.557959,0],[34.976606,32.557919,0],[34.976603,32.557903,0],[34.976594,32.557842,0],[34.976568,32.557769,0],[34.976569,32.557724,0],[34.976413,32.557712,0],[34.97641,32.557631,0],[34.976264,32.557663,0],[34.976194,32.557665,0],[34.976123,32.557668,0],[34.976053,32.557672,0],[34.975912,32.557681,0],[34.975913,32.557658,0],[34.975791,32.557666,0],[34.975492,32.557687,0],[34.975334,32.557723,0],[34.975273,32.557748,0],[34.975345,32.557838,0],[34.975373,32.557899,0],[34.975255,32.55804,0],[34.975161,32.558158,0],[34.975194,32.558307,0],[34.975262,32.558571,0],[34.97534,32.558579,0],[34.975342,32.558594,0],[34.975347,32.558653,0],[34.975349,32.558668,0],[34.975357,32.558748,0],[34.97537,32.558883,0],[34.975294,32.558893,0],[34.975304,32.559032,0],[34.975358,32.559032,0],[34.97539,32.559032,0],[34.975388,32.559049,0],[34.975406,32.559191,0],[34.975407,32.559204,0],[34.975417,32.55928,0],[34.975416,32.559312,0],[34.975646,32.559246,0],[34.975672,32.559239,0],[34.975864,32.559184,0],[34.975915,32.559,0],[34.976149,32.559019,0],[34.976162,32.558957,0],[34.976308,32.558912,0],[34.976341,32.558901,0],[34.976292,32.558796,0],[34.976265,32.558736,0],[34.976214,32.558619,0],[34.976381,32.558521,0],[34.976369,32.558428,0],[34.976365,32.558405,0],[34.976496,32.55841,0],[34.976527,32.558235,0],[34.976393,32.558253,0],[34.976382,32.558149,0],[34.97638,32.558129,0],[34.976621,32.55802,0],[34.976614,32.557973,0]]]},"type":"Feature","properties":{"Name":"11725"}},{"geometry":{"type":"Polygon","coordinates":[[[34.977488,32.556059,0],[34.977402,32.556094,0],[34.977376,32.556105,0],[34.977314,32.55613,0],[34.976888,32.556303,0],[34.976806,32.556336,0],[34.976491,32.556464,0],[34.974924,32.554051,0],[34.974823,32.554148,0],[34.974214,32.554297,0],[34.974156,32.554323,0],[34.974016,32.55432,0],[34.97318,32.554334,0],[34.972638,32.554143,0],[34.972016,32.553874,0],[34.970783,32.553346,0],[34.970188,32.553833,0],[34.970175,32.554146,0],[34.970359,32.554982,0],[34.970563,32.555696,0],[34.971058,32.5571,0],[34.97127,32.557817,0],[34.97142,32.558404,0],[34.971743,32.559246,0],[34.972243,32.560164,0],[34.97301,32.561293,0],[34.973335,32.561775,0],[34.973384,32.561843,0],[34.973593,32.562145,0],[34.975209,32.563112,0],[34.976358,32.563767,0],[34.977294,32.563957,0],[34.977373,32.563962,0],[34.977458,32.563967,0],[34.977632,32.563977,0],[34.979027,32.564058,0],[34.979096,32.564062,0],[34.979154,32.564067,0],[34.979605,32.56411,0],[34.979663,32.564115,0],[34.979685,32.564117,0],[34.979752,32.564124,0],[34.979827,32.564129,0],[34.979878,32.564133,0],[34.980088,32.564159,0],[34.980303,32.564181,0],[34.98088,32.564346,0],[34.981088,32.56445,0],[34.98113,32.56447,0],[34.981336,32.564573,0],[34.981414,32.564559,0],[34.981479,32.564548,0],[34.981496,32.564545,0],[34.981583,32.564529,0],[34.981714,32.564506,0],[34.981775,32.564496,0],[34.981778,32.564401,0],[34.981779,32.564345,0],[34.981785,32.56416,0],[34.981721,32.563957,0],[34.981567,32.56347,0],[34.981455,32.563244,0],[34.981419,32.562947,0],[34.981384,32.562651,0],[34.981427,32.562213,0],[34.981727,32.561573,0],[34.982068,32.561437,0],[34.982455,32.561282,0],[34.982651,32.561292,0],[34.983088,32.561121,0],[34.98306,32.56108,0],[34.982914,32.560865,0],[34.98289,32.56083,0],[34.982801,32.5607,0],[34.982295,32.559957,0],[34.982081,32.55941,0],[34.982001,32.559206,0],[34.981864,32.559065,0],[34.981651,32.558849,0],[34.980884,32.558282,0],[34.980868,32.55827,0],[34.980783,32.558173,0],[34.980564,32.557929,0],[34.98053,32.557883,0],[34.980349,32.557416,0],[34.980192,32.557025,0],[34.980153,32.556785,0],[34.980049,32.556218,0],[34.979849,32.555787,0],[34.979848,32.555785,0],[34.979793,32.555669,0],[34.979766,32.55555,0],[34.979763,32.555534,0],[34.97974,32.555437,0],[34.979704,32.555275,0],[34.979501,32.55531,0],[34.97889,32.555416,0],[34.978847,32.555507,0],[34.978427,32.555678,0],[34.97831,32.555725,0],[34.978149,32.55579,0],[34.977932,32.555879,0],[34.977488,32.556059,0]]]},"type":"Feature","properties":{"Name":"11724"}},{"geometry":{"type":"Polygon","coordinates":[[[34.987176,32.555881,0],[34.98727,32.55552,0],[34.986356,32.555252,0],[34.985284,32.554986,0],[34.985148,32.554952,0],[34.98447,32.554779,0],[34.984058,32.554469,0],[34.983806,32.554279,0],[34.983527,32.554114,0],[34.983272,32.55397,0],[34.982393,32.553303,0],[34.982241,32.553258,0],[34.981928,32.55315,0],[34.980916,32.552812,0],[34.980379,32.552653,0],[34.980253,32.55261,0],[34.980257,32.552648,0],[34.980049,32.552861,0],[34.97976,32.553159,0],[34.979641,32.55337,0],[34.97956,32.55377,0],[34.979527,32.554099,0],[34.979563,32.554686,0],[34.979587,32.55485,0],[34.979704,32.555275,0],[34.97974,32.555437,0],[34.979763,32.555534,0],[34.979793,32.555669,0],[34.979849,32.555787,0],[34.980049,32.556218,0],[34.980153,32.556785,0],[34.980192,32.557025,0],[34.980349,32.557416,0],[34.98053,32.557883,0],[34.980564,32.557929,0],[34.980783,32.558173,0],[34.980839,32.558237,0],[34.980884,32.558282,0],[34.981403,32.558666,0],[34.981659,32.558855,0],[34.981693,32.55889,0],[34.981969,32.559173,0],[34.982001,32.559206,0],[34.982295,32.559957,0],[34.982576,32.56037,0],[34.98306,32.56108,0],[34.983088,32.561121,0],[34.982651,32.561292,0],[34.982455,32.561282,0],[34.982068,32.561437,0],[34.981727,32.561573,0],[34.981427,32.562213,0],[34.981384,32.562651,0],[34.981419,32.562947,0],[34.981455,32.563244,0],[34.981567,32.56347,0],[34.981721,32.563957,0],[34.981785,32.56416,0],[34.981779,32.564345,0],[34.981778,32.564401,0],[34.981775,32.564496,0],[34.982377,32.564366,0],[34.982837,32.564266,0],[34.983393,32.564163,0],[34.983804,32.564078,0],[34.984123,32.564014,0],[34.984572,32.563765,0],[34.984955,32.563577,0],[34.98536,32.563446,0],[34.985417,32.56342,0],[34.98548,32.563337,0],[34.985495,32.563317,0],[34.985544,32.563252,0],[34.985568,32.56322,0],[34.985916,32.562845,0],[34.985949,32.562395,0],[34.985782,32.561933,0],[34.985828,32.561572,0],[34.985832,32.561543,0],[34.985859,32.561329,0],[34.985885,32.560849,0],[34.985808,32.560399,0],[34.986014,32.560075,0],[34.986202,32.559774,0],[34.986426,32.559416,0],[34.986676,32.558425,0],[34.986833,32.557495,0],[34.986975,32.556747,0],[34.986996,32.556641,0],[34.987008,32.556575,0],[34.987025,32.556489,0],[34.987176,32.555881,0]]]},"type":"Feature","properties":{"Name":"11723"}},{"geometry":{"type":"Polygon","coordinates":[[[34.975401,32.550627,0],[34.975105,32.550494,0],[34.974627,32.5504,0],[34.974176,32.550167,0],[34.973932,32.550036,0],[34.97382,32.549989,0],[34.973176,32.549726,0],[34.973088,32.549694,0],[34.972451,32.549232,0],[34.971848,32.548758,0],[34.971495,32.548645,0],[34.971281,32.548548,0],[34.970794,32.548254,0],[34.97039,32.548043,0],[34.969614,32.547393,0],[34.969033,32.546897,0],[34.968883,32.546727,0],[34.968847,32.546687,0],[34.968846,32.546685,0],[34.968845,32.546685,0],[34.968845,32.546684,0],[34.968844,32.546683,0],[34.968843,32.546682,0],[34.968842,32.546681,0],[34.96884,32.546678,0],[34.968836,32.546673,0],[34.968829,32.546666,0],[34.968824,32.54666,0],[34.968804,32.546638,0],[34.968797,32.546629,0],[34.968793,32.546625,0],[34.968784,32.546614,0],[34.968746,32.546572,0],[34.968418,32.546664,0],[34.96802,32.546618,0],[34.96723,32.546494,0],[34.967091,32.546616,0],[34.966987,32.547023,0],[34.966849,32.547081,0],[34.966824,32.547264,0],[34.966498,32.54755,0],[34.966461,32.547797,0],[34.967081,32.547989,0],[34.967267,32.548025,0],[34.96718,32.548292,0],[34.966519,32.548297,0],[34.966586,32.549453,0],[34.966758,32.54967,0],[34.96709,32.549837,0],[34.967331,32.550348,0],[34.967305,32.550646,0],[34.967408,32.550954,0],[34.967678,32.551219,0],[34.968123,32.551426,0],[34.968341,32.551597,0],[34.9702,32.55371,0],[34.970144,32.553737,0],[34.970188,32.553833,0],[34.970783,32.553346,0],[34.972016,32.553874,0],[34.972638,32.554143,0],[34.97318,32.554334,0],[34.974016,32.55432,0],[34.974156,32.554323,0],[34.974214,32.554297,0],[34.974823,32.554148,0],[34.974924,32.554051,0],[34.976491,32.556464,0],[34.976685,32.556385,0],[34.97679,32.556343,0],[34.976806,32.556336,0],[34.976888,32.556303,0],[34.977314,32.55613,0],[34.977376,32.556105,0],[34.977402,32.556094,0],[34.977932,32.555879,0],[34.97831,32.555725,0],[34.978427,32.555678,0],[34.978847,32.555507,0],[34.97889,32.555416,0],[34.979704,32.555275,0],[34.979587,32.55485,0],[34.979563,32.554686,0],[34.979527,32.554099,0],[34.97956,32.55377,0],[34.979641,32.55337,0],[34.97976,32.553159,0],[34.980049,32.552861,0],[34.980257,32.552648,0],[34.980253,32.55261,0],[34.978757,32.552053,0],[34.977355,32.551348,0],[34.976773,32.551101,0],[34.975401,32.550627,0]]]},"type":"Feature","properties":{"Name":"11722"}},{"geometry":{"type":"Polygon","coordinates":[[[34.961306,32.548011,0],[34.961389,32.548081,0],[34.962277,32.54716,0],[34.963119,32.546417,0],[34.963394,32.546353,0],[34.963465,32.546364,0],[34.963527,32.546343,0],[34.964076,32.546879,0],[34.9647,32.547579,0],[34.965228,32.548348,0],[34.965387,32.54858,0],[34.96572,32.548836,0],[34.965819,32.549171,0],[34.965862,32.549207,0],[34.966511,32.549359,0],[34.966575,32.549439,0],[34.966586,32.549453,0],[34.966519,32.548297,0],[34.96718,32.548292,0],[34.967267,32.548025,0],[34.967081,32.547989,0],[34.966461,32.547797,0],[34.966498,32.54755,0],[34.966824,32.547264,0],[34.966849,32.547081,0],[34.966987,32.547023,0],[34.967091,32.546616,0],[34.96723,32.546494,0],[34.96802,32.546618,0],[34.968418,32.546664,0],[34.968746,32.546572,0],[34.968716,32.546535,0],[34.968372,32.54592,0],[34.967623,32.545042,0],[34.967609,32.545005,0],[34.967481,32.544863,0],[34.967354,32.544719,0],[34.967229,32.544571,0],[34.967116,32.544439,0],[34.966993,32.544318,0],[34.966667,32.543906,0],[34.966114,32.543497,0],[34.965763,32.54323,0],[34.965336,32.542971,0],[34.965044,32.542879,0],[34.964098,32.542551,0],[34.962224,32.541962,0],[34.961921,32.541868,0],[34.961553,32.541753,0],[34.961177,32.54164,0],[34.960821,32.541523,0],[34.960832,32.541465,0],[34.960761,32.541436,0],[34.959033,32.540958,0],[34.958962,32.540948,0],[34.958891,32.540937,0],[34.958843,32.54093,0],[34.956214,32.539825,0],[34.95541,32.53944,0],[34.955386,32.539486,0],[34.954557,32.540535,0],[34.954976,32.541484,0],[34.955478,32.542356,0],[34.955514,32.542316,0],[34.956004,32.543341,0],[34.956112,32.543556,0],[34.956554,32.543825,0],[34.957214,32.544164,0],[34.957975,32.544563,0],[34.958251,32.544718,0],[34.958346,32.544762,0],[34.958642,32.544929,0],[34.958901,32.545068,0],[34.959445,32.545335,0],[34.959855,32.545577,0],[34.959956,32.545745,0],[34.960213,32.546186,0],[34.960337,32.546401,0],[34.960487,32.546666,0],[34.960916,32.547397,0],[34.961236,32.547984,0],[34.961306,32.548011,0]]]},"type":"Feature","properties":{"Name":"11721"}},{"geometry":{"type":"Polygon","coordinates":[[[34.981117,32.564773,0],[34.981123,32.564791,0],[34.981163,32.564902,0],[34.981059,32.565186,0],[34.980976,32.565243,0],[34.979921,32.565964,0],[34.979809,32.56621,0],[34.979794,32.566244,0],[34.97968,32.566374,0],[34.979551,32.566514,0],[34.979475,32.566597,0],[34.979458,32.566615,0],[34.979421,32.566654,0],[34.979363,32.566717,0],[34.979202,32.566891,0],[34.978222,32.566999,0],[34.977701,32.568338,0],[34.97779,32.568713,0],[34.978483,32.569466,0],[34.978549,32.570374,0],[34.978354,32.57081,0],[34.978133,32.570855,0],[34.978186,32.571261,0],[34.978115,32.572063,0],[34.97808,32.572754,0],[34.978135,32.573284,0],[34.978179,32.57386,0],[34.978053,32.574912,0],[34.97815,32.575334,0],[34.978213,32.575337,0],[34.978246,32.575339,0],[34.979344,32.575312,0],[34.979639,32.575352,0],[34.980046,32.575263,0],[34.980456,32.575296,0],[34.980828,32.575128,0],[34.981047,32.575004,0],[34.981258,32.574934,0],[34.981953,32.574764,0],[34.982303,32.574594,0],[34.982089,32.574364,0],[34.981863,32.573572,0],[34.982583,32.573417,0],[34.982895,32.573352,0],[34.98297,32.573311,0],[34.98306,32.573285,0],[34.983035,32.573006,0],[34.983031,32.572963,0],[34.983361,32.572435,0],[34.983691,32.572133,0],[34.98409,32.571937,0],[34.985737,32.571085,0],[34.98587,32.570813,0],[34.986099,32.570343,0],[34.986146,32.570247,0],[34.986221,32.570093,0],[34.986545,32.569036,0],[34.986503,32.569031,0],[34.986512,32.568081,0],[34.98623,32.566979,0],[34.986178,32.566829,0],[34.98611,32.566604,0],[34.986104,32.566547,0],[34.98601,32.565668,0],[34.985757,32.564418,0],[34.985664,32.563983,0],[34.985465,32.563529,0],[34.985427,32.563442,0],[34.985417,32.56342,0],[34.98536,32.563446,0],[34.984955,32.563577,0],[34.984572,32.563765,0],[34.984123,32.564014,0],[34.983804,32.564078,0],[34.983393,32.564163,0],[34.982837,32.564266,0],[34.981775,32.564496,0],[34.981714,32.564506,0],[34.981583,32.564529,0],[34.981496,32.564545,0],[34.981479,32.564548,0],[34.981414,32.564559,0],[34.981336,32.564573,0],[34.981159,32.564625,0],[34.981146,32.564629,0],[34.981073,32.564651,0],[34.981117,32.564773,0]]]},"type":"Feature","properties":{"Name":"11712"}},{"geometry":{"type":"Polygon","coordinates":[[[34.96677,32.573246,0],[34.966588,32.573493,0],[34.967373,32.575317,0],[34.968824,32.575963,0],[34.969889,32.575815,0],[34.970238,32.575655,0],[34.971694,32.574969,0],[34.972488,32.5746,0],[34.973129,32.574698,0],[34.973826,32.574802,0],[34.974146,32.574843,0],[34.974355,32.575063,0],[34.974768,32.575332,0],[34.974826,32.575622,0],[34.975083,32.575788,0],[34.97545,32.575773,0],[34.976023,32.575633,0],[34.976091,32.575614,0],[34.977334,32.575304,0],[34.97815,32.575334,0],[34.978053,32.574912,0],[34.978179,32.57386,0],[34.978135,32.573284,0],[34.97808,32.572754,0],[34.978115,32.572063,0],[34.978186,32.571261,0],[34.978133,32.570855,0],[34.978354,32.57081,0],[34.978549,32.570374,0],[34.978483,32.569466,0],[34.97779,32.568713,0],[34.977701,32.568338,0],[34.977385,32.567934,0],[34.976957,32.567655,0],[34.976154,32.567406,0],[34.97519,32.567326,0],[34.97437,32.567507,0],[34.974146,32.567661,0],[34.974264,32.568234,0],[34.974304,32.568319,0],[34.974168,32.56974,0],[34.969806,32.570226,0],[34.968266,32.570401,0],[34.966886,32.570557,0],[34.96695,32.57069,0],[34.966981,32.57138,0],[34.966953,32.571928,0],[34.96692,32.572563,0],[34.966864,32.572979,0],[34.966842,32.573148,0],[34.96677,32.573246,0]]]},"type":"Feature","properties":{"Name":"11711"}},{"geometry":{"type":"Polygon","coordinates":[[[34.974304,32.568319,0],[34.974264,32.568234,0],[34.974146,32.567661,0],[34.97437,32.567507,0],[34.97519,32.567326,0],[34.976154,32.567406,0],[34.976957,32.567655,0],[34.977385,32.567934,0],[34.977701,32.568338,0],[34.978222,32.566999,0],[34.979202,32.566891,0],[34.979363,32.566717,0],[34.979421,32.566654,0],[34.979475,32.566597,0],[34.979492,32.566578,0],[34.979551,32.566514,0],[34.97968,32.566374,0],[34.979794,32.566244,0],[34.979809,32.56621,0],[34.979921,32.565964,0],[34.980976,32.565243,0],[34.981059,32.565186,0],[34.981163,32.564902,0],[34.981123,32.564791,0],[34.981117,32.564773,0],[34.981073,32.564651,0],[34.981146,32.564629,0],[34.981159,32.564625,0],[34.981336,32.564573,0],[34.98113,32.56447,0],[34.981088,32.56445,0],[34.98088,32.564346,0],[34.980303,32.564181,0],[34.980088,32.564159,0],[34.979878,32.564133,0],[34.979827,32.564129,0],[34.979663,32.564115,0],[34.979154,32.564067,0],[34.977632,32.563977,0],[34.977458,32.563967,0],[34.977373,32.563962,0],[34.977294,32.563957,0],[34.976358,32.563767,0],[34.975209,32.563112,0],[34.973593,32.562145,0],[34.973384,32.561843,0],[34.973335,32.561775,0],[34.972313,32.561846,0],[34.971809,32.562026,0],[34.971043,32.562349,0],[34.970685,32.563176,0],[34.970486,32.563298,0],[34.969701,32.563527,0],[34.969185,32.563855,0],[34.968179,32.564496,0],[34.966605,32.56538,0],[34.965444,32.565708,0],[34.965127,32.565804,0],[34.965023,32.565832,0],[34.964798,32.565893,0],[34.964812,32.56597,0],[34.964955,32.566263,0],[34.965147,32.566652,0],[34.965395,32.567158,0],[34.965482,32.567334,0],[34.965544,32.567467,0],[34.965647,32.567685,0],[34.9657,32.567825,0],[34.965822,32.568141,0],[34.965871,32.568271,0],[34.966047,32.568648,0],[34.966075,32.568705,0],[34.966365,32.569296,0],[34.966425,32.569426,0],[34.966538,32.569777,0],[34.966593,32.569903,0],[34.966886,32.570557,0],[34.968266,32.570401,0],[34.969806,32.570226,0],[34.974168,32.56974,0],[34.974304,32.568319,0]]]},"type":"Feature","properties":{"Name":"11710"}},{"geometry":{"type":"Polygon","coordinates":[[[34.965444,32.565708,0],[34.966605,32.56538,0],[34.968179,32.564496,0],[34.969185,32.563855,0],[34.969701,32.563527,0],[34.970486,32.563298,0],[34.970685,32.563176,0],[34.971043,32.562349,0],[34.971809,32.562026,0],[34.972313,32.561846,0],[34.973335,32.561775,0],[34.97301,32.561293,0],[34.972243,32.560164,0],[34.971743,32.559246,0],[34.97142,32.558404,0],[34.97127,32.557817,0],[34.971058,32.5571,0],[34.970563,32.555696,0],[34.968259,32.557011,0],[34.968089,32.557148,0],[34.96665,32.559625,0],[34.966774,32.559721,0],[34.966884,32.559819,0],[34.967004,32.559924,0],[34.967112,32.560035,0],[34.967221,32.560152,0],[34.967254,32.560187,0],[34.967372,32.56033,0],[34.96747,32.560464,0],[34.967556,32.560608,0],[34.967629,32.560753,0],[34.967687,32.560894,0],[34.967737,32.561044,0],[34.967769,32.561198,0],[34.967793,32.561345,0],[34.967803,32.561482,0],[34.967805,32.561532,0],[34.967803,32.561615,0],[34.9678,32.561755,0],[34.967794,32.561882,0],[34.967785,32.562011,0],[34.967782,32.562052,0],[34.967775,32.562155,0],[34.967756,32.56227,0],[34.967732,32.562397,0],[34.9677,32.562521,0],[34.967657,32.562672,0],[34.967618,32.562789,0],[34.967578,32.562915,0],[34.967569,32.562937,0],[34.967525,32.56304,0],[34.967471,32.563175,0],[34.96746,32.563196,0],[34.967412,32.563292,0],[34.967343,32.563424,0],[34.967326,32.563448,0],[34.967308,32.56348,0],[34.967245,32.563578,0],[34.96717,32.563702,0],[34.967157,32.563718,0],[34.967083,32.563815,0],[34.966996,32.563918,0],[34.966981,32.563935,0],[34.966903,32.564029,0],[34.966807,32.564135,0],[34.966787,32.564155,0],[34.966704,32.564236,0],[34.966601,32.564341,0],[34.966577,32.564363,0],[34.9665,32.564433,0],[34.966392,32.564523,0],[34.966367,32.564545,0],[34.966283,32.564608,0],[34.966187,32.56469,0],[34.966162,32.564708,0],[34.966079,32.564774,0],[34.965978,32.564853,0],[34.965955,32.564872,0],[34.965879,32.564935,0],[34.965785,32.565012,0],[34.965758,32.565028,0],[34.9657,32.565081,0],[34.965605,32.565174,0],[34.965539,32.565243,0],[34.965502,32.565285,0],[34.965471,32.565321,0],[34.965443,32.565344,0],[34.965409,32.56539,0],[34.965352,32.565464,0],[34.965319,32.565505,0],[34.965278,32.565564,0],[34.965212,32.565667,0],[34.965127,32.565804,0],[34.965444,32.565708,0]]]},"type":"Feature","properties":{"Name":"11709"}},{"geometry":{"type":"Polygon","coordinates":[[[34.962095,32.55656,0],[34.962039,32.556603,0],[34.961942,32.556676,0],[34.961617,32.556922,0],[34.961277,32.557179,0],[34.96112,32.557297,0],[34.961001,32.557388,0],[34.960618,32.557677,0],[34.96074,32.557768,0],[34.960939,32.557884,0],[34.960968,32.557897,0],[34.961071,32.557704,0],[34.961092,32.557664,0],[34.961197,32.557445,0],[34.961468,32.557562,0],[34.961706,32.557659,0],[34.96178,32.557508,0],[34.962065,32.557487,0],[34.962333,32.557468,0],[34.962418,32.557462,0],[34.962487,32.557457,0],[34.962505,32.557456,0],[34.962641,32.557446,0],[34.962951,32.557424,0],[34.963468,32.557388,0],[34.963771,32.557366,0],[34.964773,32.557295,0],[34.96482,32.557292,0],[34.964889,32.55723,0],[34.965089,32.557049,0],[34.965172,32.557116,0],[34.965291,32.557211,0],[34.965476,32.55736,0],[34.965496,32.557376,0],[34.965532,32.557345,0],[34.965627,32.557261,0],[34.965708,32.557341,0],[34.965869,32.557501,0],[34.96603,32.557712,0],[34.966038,32.557724,0],[34.966175,32.557904,0],[34.966276,32.558037,0],[34.966186,32.558087,0],[34.966103,32.558137,0],[34.966051,32.558175,0],[34.965988,32.55822,0],[34.96596,32.55827,0],[34.965931,32.558316,0],[34.965908,32.558402,0],[34.96589,32.558491,0],[34.965891,32.55858,0],[34.965895,32.558665,0],[34.96589,32.558772,0],[34.965892,32.558846,0],[34.965896,32.558944,0],[34.965922,32.559043,0],[34.965956,32.559102,0],[34.966011,32.559156,0],[34.966045,32.559188,0],[34.966099,32.559239,0],[34.966183,32.559301,0],[34.966273,32.559363,0],[34.966349,32.559412,0],[34.966396,32.559443,0],[34.966522,32.559533,0],[34.96665,32.559625,0],[34.968089,32.557148,0],[34.968259,32.557011,0],[34.970563,32.555696,0],[34.970359,32.554982,0],[34.970175,32.554146,0],[34.970188,32.553833,0],[34.970144,32.553737,0],[34.9702,32.55371,0],[34.968341,32.551597,0],[34.968123,32.551426,0],[34.968069,32.551458,0],[34.96715,32.552168,0],[34.967096,32.552519,0],[34.966944,32.552785,0],[34.966688,32.553025,0],[34.966375,32.553076,0],[34.966077,32.553004,0],[34.965102,32.55297,0],[34.965068,32.552986,0],[34.964367,32.554292,0],[34.964204,32.554597,0],[34.964137,32.554721,0],[34.963955,32.555062,0],[34.963924,32.555119,0],[34.963871,32.555218,0],[34.963741,32.555316,0],[34.963443,32.555542,0],[34.963052,32.555837,0],[34.962992,32.555883,0],[34.962589,32.556187,0],[34.962095,32.55656,0]]]},"type":"Feature","properties":{"Name":"11708"}},{"geometry":{"type":"Polygon","coordinates":[[[34.962589,32.556187,0],[34.962992,32.555883,0],[34.963052,32.555837,0],[34.963443,32.555542,0],[34.963741,32.555316,0],[34.963871,32.555218,0],[34.963924,32.555119,0],[34.963955,32.555062,0],[34.964137,32.554721,0],[34.964204,32.554597,0],[34.964367,32.554292,0],[34.965068,32.552986,0],[34.965102,32.55297,0],[34.966077,32.553004,0],[34.966375,32.553076,0],[34.966688,32.553025,0],[34.966944,32.552785,0],[34.967096,32.552519,0],[34.96715,32.552168,0],[34.968069,32.551458,0],[34.968123,32.551426,0],[34.967678,32.551219,0],[34.967408,32.550954,0],[34.967305,32.550646,0],[34.967331,32.550348,0],[34.96709,32.549837,0],[34.966758,32.54967,0],[34.966575,32.549439,0],[34.966511,32.549359,0],[34.965862,32.549207,0],[34.965819,32.549171,0],[34.96572,32.548836,0],[34.965387,32.54858,0],[34.965228,32.548348,0],[34.9647,32.547579,0],[34.964076,32.546879,0],[34.963527,32.546343,0],[34.963465,32.546364,0],[34.963394,32.546353,0],[34.963119,32.546417,0],[34.962277,32.54716,0],[34.961389,32.548081,0],[34.959959,32.549609,0],[34.957472,32.552269,0],[34.957364,32.552463,0],[34.957251,32.552667,0],[34.957199,32.553057,0],[34.957347,32.553723,0],[34.957357,32.553767,0],[34.957387,32.554127,0],[34.957417,32.554487,0],[34.957473,32.554661,0],[34.957626,32.555133,0],[34.957533,32.555562,0],[34.95741,32.556125,0],[34.957547,32.556936,0],[34.95783,32.557943,0],[34.957871,32.558194,0],[34.957873,32.558241,0],[34.958003,32.558254,0],[34.959344,32.558386,0],[34.960005,32.558138,0],[34.960208,32.557986,0],[34.960292,32.557922,0],[34.960226,32.557877,0],[34.960275,32.557836,0],[34.960301,32.557815,0],[34.960539,32.557618,0],[34.960618,32.557677,0],[34.961001,32.557388,0],[34.96112,32.557297,0],[34.961277,32.557179,0],[34.961617,32.556922,0],[34.961942,32.556676,0],[34.962042,32.556601,0],[34.962095,32.55656,0],[34.962589,32.556187,0]]]},"type":"Feature","properties":{"Name":"11707"}},{"geometry":{"type":"Polygon","coordinates":[[[34.955774,32.5573,0],[34.955864,32.557224,0],[34.95596,32.55716,0],[34.956566,32.557083,0],[34.956959,32.557029,0],[34.957342,32.556977,0],[34.957358,32.556975,0],[34.957413,32.556967,0],[34.957547,32.556936,0],[34.95741,32.556125,0],[34.957626,32.555133,0],[34.957417,32.554487,0],[34.957357,32.553767,0],[34.957199,32.553057,0],[34.957251,32.552667,0],[34.957472,32.552269,0],[34.957371,32.552215,0],[34.957181,32.552317,0],[34.957079,32.552337,0],[34.956904,32.552318,0],[34.954713,32.552082,0],[34.954251,32.55217,0],[34.953337,32.55197,0],[34.952294,32.552862,0],[34.951154,32.554123,0],[34.951266,32.554731,0],[34.951194,32.555401,0],[34.95151,32.557316,0],[34.951436,32.55858,0],[34.95149,32.559721,0],[34.951364,32.560977,0],[34.951437,32.561014,0],[34.952053,32.560968,0],[34.952635,32.560769,0],[34.953442,32.560448,0],[34.953541,32.560073,0],[34.953657,32.559612,0],[34.953726,32.559428,0],[34.954299,32.558724,0],[34.954466,32.558534,0],[34.95464,32.558347,0],[34.954808,32.558189,0],[34.954843,32.558156,0],[34.954923,32.558073,0],[34.955094,32.557895,0],[34.955423,32.557579,0],[34.955456,32.557548,0],[34.955467,32.557538,0],[34.955507,32.557502,0],[34.955774,32.5573,0]]]},"type":"Feature","properties":{"Name":"11706"}},{"geometry":{"type":"Polygon","coordinates":[[[34.974612,32.543321,0],[34.974556,32.543286,0],[34.974322,32.543506,0],[34.974329,32.544182,0],[34.974201,32.544925,0],[34.974136,32.54547,0],[34.974076,32.546015,0],[34.974076,32.546608,0],[34.974111,32.546825,0],[34.97424,32.547311,0],[34.974177,32.548176,0],[34.974144,32.548627,0],[34.974049,32.549211,0],[34.97393,32.549947,0],[34.973932,32.550036,0],[34.974176,32.550167,0],[34.974627,32.5504,0],[34.975105,32.550494,0],[34.975401,32.550627,0],[34.976773,32.551101,0],[34.977355,32.551348,0],[34.978757,32.552053,0],[34.980253,32.55261,0],[34.980379,32.552653,0],[34.980916,32.552812,0],[34.981928,32.55315,0],[34.982241,32.553258,0],[34.982393,32.553303,0],[34.983272,32.55397,0],[34.983527,32.554114,0],[34.983806,32.554279,0],[34.984058,32.554469,0],[34.98447,32.554779,0],[34.985148,32.554952,0],[34.985284,32.554986,0],[34.986356,32.555252,0],[34.98727,32.55552,0],[34.987287,32.555457,0],[34.987341,32.5552,0],[34.98697,32.554792,0],[34.986557,32.554571,0],[34.986101,32.554257,0],[34.985089,32.553414,0],[34.984277,32.55252,0],[34.984248,32.551887,0],[34.98464,32.551564,0],[34.984995,32.551125,0],[34.98525,32.550997,0],[34.985496,32.550388,0],[34.985912,32.549946,0],[34.986215,32.549291,0],[34.986262,32.549059,0],[34.986296,32.548888,0],[34.984939,32.549333,0],[34.984281,32.549561,0],[34.983781,32.549111,0],[34.983699,32.548884,0],[34.983579,32.549035,0],[34.983276,32.549417,0],[34.982869,32.549947,0],[34.982581,32.549785,0],[34.982546,32.549768,0],[34.982525,32.549561,0],[34.98175,32.549065,0],[34.981811,32.548646,0],[34.981701,32.547965,0],[34.981487,32.546879,0],[34.980836,32.546051,0],[34.980254,32.545425,0],[34.979601,32.54486,0],[34.978846,32.544638,0],[34.978589,32.544483,0],[34.977229,32.544301,0],[34.976874,32.544126,0],[34.976241,32.54396,0],[34.975736,32.543811,0],[34.974612,32.543321,0]]]},"type":"Feature","properties":{"Name":"11703"}},{"geometry":{"type":"Polygon","coordinates":[[[34.983656,32.539684,0],[34.982998,32.539822,0],[34.982529,32.53975,0],[34.982396,32.539597,0],[34.98141,32.540082,0],[34.981285,32.540264,0],[34.981027,32.54083,0],[34.980844,32.541587,0],[34.980948,32.54181,0],[34.980653,32.541925,0],[34.980073,32.541531,0],[34.979833,32.541406,0],[34.979643,32.541307,0],[34.978877,32.540978,0],[34.978185,32.540891,0],[34.977748,32.540878,0],[34.977342,32.541247,0],[34.977303,32.541283,0],[34.976883,32.541633,0],[34.976699,32.541539,0],[34.975941,32.542437,0],[34.975805,32.542366,0],[34.975672,32.542396,0],[34.974992,32.542954,0],[34.974556,32.543286,0],[34.974612,32.543321,0],[34.975736,32.543811,0],[34.976241,32.54396,0],[34.976874,32.544126,0],[34.977229,32.544301,0],[34.978589,32.544483,0],[34.978846,32.544638,0],[34.979601,32.54486,0],[34.980254,32.545425,0],[34.980836,32.546051,0],[34.981487,32.546879,0],[34.981701,32.547965,0],[34.981811,32.548646,0],[34.98175,32.549065,0],[34.982525,32.549561,0],[34.982546,32.549768,0],[34.982581,32.549785,0],[34.982869,32.549947,0],[34.983276,32.549417,0],[34.983579,32.549035,0],[34.983699,32.548884,0],[34.983781,32.549111,0],[34.984281,32.549561,0],[34.984939,32.549333,0],[34.986296,32.548888,0],[34.986302,32.548746,0],[34.986328,32.548669,0],[34.986496,32.548223,0],[34.986686,32.547756,0],[34.986819,32.547685,0],[34.987033,32.547557,0],[34.987297,32.547209,0],[34.987714,32.546817,0],[34.987839,32.546516,0],[34.988124,32.546314,0],[34.988523,32.546045,0],[34.988579,32.546012,0],[34.988134,32.545529,0],[34.987826,32.545193,0],[34.987046,32.543999,0],[34.98668,32.543101,0],[34.98625,32.541514,0],[34.985981,32.54076,0],[34.985471,32.539407,0],[34.98526,32.538543,0],[34.985192,32.538541,0],[34.98399,32.539451,0],[34.983767,32.539645,0],[34.983656,32.539684,0]]]},"type":"Feature","properties":{"Name":"11702"}},{"geometry":{"type":"Polygon","coordinates":[[[34.985192,32.538541,0],[34.98526,32.538543,0],[34.985472,32.539407,0],[34.985981,32.54076,0],[34.986105,32.540622,0],[34.986328,32.53962,0],[34.986892,32.538972,0],[34.987283,32.538258,0],[34.987973,32.538055,0],[34.988735,32.538028,0],[34.988477,32.537657,0],[34.988161,32.537518,0],[34.988143,32.53744,0],[34.988056,32.537308,0],[34.987558,32.537183,0],[34.987076,32.537158,0],[34.986986,32.537103,0],[34.986049,32.536645,0],[34.985541,32.536502,0],[34.985499,32.536219,0],[34.985295,32.536198,0],[34.985285,32.536239,0],[34.985219,32.536233,0],[34.985168,32.536245,0],[34.985044,32.536324,0],[34.984994,32.536114,0],[34.984892,32.535724,0],[34.984917,32.535589,0],[34.98497,32.535536,0],[34.985043,32.535459,0],[34.985012,32.535431,0],[34.984611,32.535187,0],[34.984147,32.535125,0],[34.984098,32.534905,0],[34.983315,32.534613,0],[34.983084,32.53459,0],[34.982811,32.534599,0],[34.982326,32.534511,0],[34.981969,32.53437,0],[34.981756,32.534131,0],[34.981665,32.533895,0],[34.981252,32.533837,0],[34.981139,32.533648,0],[34.980941,32.533549,0],[34.980847,32.533446,0],[34.980486,32.533379,0],[34.980363,32.533307,0],[34.980288,32.533255,0],[34.979472,32.533175,0],[34.979294,32.533121,0],[34.979192,32.533078,0],[34.979043,32.533279,0],[34.978557,32.533729,0],[34.977242,32.534731,0],[34.977209,32.534773,0],[34.976812,32.535201,0],[34.976727,32.535303,0],[34.976454,32.535737,0],[34.9762,32.536281,0],[34.978344,32.53746,0],[34.978267,32.537565,0],[34.978308,32.537581,0],[34.980921,32.538691,0],[34.981324,32.538862,0],[34.981306,32.538906,0],[34.981307,32.538939,0],[34.981273,32.539155,0],[34.981259,32.539187,0],[34.981351,32.539381,0],[34.981387,32.539519,0],[34.981388,32.539524,0],[34.981411,32.539598,0],[34.981425,32.539805,0],[34.981436,32.539964,0],[34.98141,32.540082,0],[34.982396,32.539597,0],[34.982529,32.53975,0],[34.982998,32.539822,0],[34.983656,32.539684,0],[34.983767,32.539645,0],[34.98399,32.539451,0],[34.985192,32.538541,0]]]},"type":"Feature","properties":{"Name":"11701"}},{"geometry":{"type":"Polygon","coordinates":[[[34.950855,32.582403,0],[34.950791,32.582334,0],[34.950391,32.582687,0],[34.950285,32.582781,0],[34.949333,32.583107,0],[34.948742,32.583309,0],[34.947676,32.583378,0],[34.947394,32.583633,0],[34.947278,32.583709,0],[34.948061,32.583914,0],[34.948185,32.584088,0],[34.948198,32.584084,0],[34.948206,32.584082,0],[34.948215,32.584079,0],[34.948223,32.584077,0],[34.948232,32.584074,0],[34.94824,32.584072,0],[34.948248,32.584069,0],[34.948257,32.584067,0],[34.948265,32.584064,0],[34.948274,32.584062,0],[34.948282,32.584059,0],[34.94829,32.584056,0],[34.948299,32.584054,0],[34.948307,32.584051,0],[34.948315,32.584049,0],[34.948324,32.584046,0],[34.948332,32.584043,0],[34.948341,32.584041,0],[34.948349,32.584038,0],[34.948357,32.584035,0],[34.948366,32.584033,0],[34.948374,32.58403,0],[34.948382,32.584027,0],[34.948391,32.584025,0],[34.948399,32.584022,0],[34.948407,32.584019,0],[34.948415,32.584016,0],[34.948424,32.584013,0],[34.948432,32.584011,0],[34.94844,32.584008,0],[34.948449,32.584005,0],[34.948457,32.584002,0],[34.948465,32.583999,0],[34.948473,32.583997,0],[34.948482,32.583994,0],[34.94849,32.583991,0],[34.948498,32.583988,0],[34.948506,32.583985,0],[34.948515,32.583982,0],[34.948523,32.583979,0],[34.948531,32.583976,0],[34.948539,32.583973,0],[34.948548,32.58397,0],[34.948556,32.583967,0],[34.948564,32.583964,0],[34.948572,32.583961,0],[34.94858,32.583958,0],[34.948589,32.583955,0],[34.948597,32.583952,0],[34.948605,32.583949,0],[34.948613,32.583946,0],[34.948621,32.583943,0],[34.948629,32.58394,0],[34.948638,32.583937,0],[34.948646,32.583934,0],[34.948654,32.583931,0],[34.948662,32.583928,0],[34.94867,32.583925,0],[34.948678,32.583921,0],[34.948686,32.583918,0],[34.948694,32.583915,0],[34.948702,32.583912,0],[34.948711,32.583909,0],[34.948719,32.583905,0],[34.948727,32.583902,0],[34.948735,32.583899,0],[34.948743,32.583896,0],[34.948751,32.583893,0],[34.948759,32.583889,0],[34.948767,32.583886,0],[34.948775,32.583883,0],[34.948783,32.583879,0],[34.948791,32.583876,0],[34.948799,32.583873,0],[34.948807,32.583869,0],[34.948815,32.583866,0],[34.948823,32.583863,0],[34.948831,32.583859,0],[34.948839,32.583856,0],[34.948847,32.583853,0],[34.948855,32.583849,0],[34.948863,32.583846,0],[34.948871,32.583842,0],[34.948879,32.583839,0],[34.948887,32.583835,0],[34.948895,32.583832,0],[34.948903,32.583828,0],[34.948911,32.583825,0],[34.948918,32.583821,0],[34.948926,32.583818,0],[34.948934,32.583814,0],[34.948942,32.583811,0],[34.94895,32.583807,0],[34.948958,32.583804,0],[34.948966,32.5838,0],[34.948974,32.583797,0],[34.948981,32.583793,0],[34.948989,32.583789,0],[34.948997,32.583786,0],[34.949005,32.583782,0],[34.949013,32.583779,0],[34.949021,32.583775,0],[34.949028,32.583771,0],[34.949036,32.583768,0],[34.949044,32.583764,0],[34.949052,32.58376,0],[34.94906,32.583756,0],[34.949067,32.583753,0],[34.949075,32.583749,0],[34.949083,32.583745,0],[34.949091,32.583742,0],[34.949098,32.583738,0],[34.949106,32.583734,0],[34.949114,32.58373,0],[34.949121,32.583726,0],[34.949177,32.583735,0],[34.949245,32.58381,0],[34.949551,32.584142,0],[34.949752,32.584271,0],[34.949747,32.584274,0],[34.949743,32.584276,0],[34.949739,32.584278,0],[34.949736,32.58428,0],[34.949732,32.584282,0],[34.949728,32.584284,0],[34.949724,32.584286,0],[34.94972,32.584288,0],[34.949716,32.58429,0],[34.949712,32.584292,0],[34.949708,32.584294,0],[34.949704,32.584296,0],[34.9497,32.584298,0],[34.949697,32.5843,0],[34.949693,32.584302,0],[34.949689,32.584304,0],[34.949685,32.584306,0],[34.949681,32.584309,0],[34.949677,32.584311,0],[34.949673,32.584313,0],[34.94967,32.584315,0],[34.949666,32.584317,0],[34.949662,32.584319,0],[34.949658,32.584321,0],[34.949654,32.584323,0],[34.94965,32.584325,0],[34.949647,32.584328,0],[34.949643,32.58433,0],[34.949639,32.584332,0],[34.949635,32.584334,0],[34.949631,32.584336,0],[34.949628,32.584338,0],[34.949624,32.58434,0],[34.94962,32.584343,0],[34.949616,32.584345,0],[34.949613,32.584347,0],[34.949609,32.584349,0],[34.949605,32.584351,0],[34.949601,32.584354,0],[34.949597,32.584356,0],[34.949594,32.584358,0],[34.94959,32.58436,0],[34.949586,32.584362,0],[34.949582,32.584365,0],[34.949579,32.584367,0],[34.949575,32.584369,0],[34.949571,32.584371,0],[34.949568,32.584374,0],[34.949564,32.584376,0],[34.94956,32.584378,0],[34.949556,32.58438,0],[34.949553,32.584383,0],[34.949549,32.584385,0],[34.949545,32.584387,0],[34.949542,32.584389,0],[34.949538,32.584392,0],[34.949534,32.584394,0],[34.949531,32.584396,0],[34.949527,32.584399,0],[34.949523,32.584401,0],[34.94952,32.584403,0],[34.949516,32.584406,0],[34.949512,32.584408,0],[34.949509,32.58441,0],[34.949505,32.584413,0],[34.949501,32.584415,0],[34.949498,32.584417,0],[34.949494,32.58442,0],[34.94949,32.584422,0],[34.949487,32.584424,0],[34.949483,32.584427,0],[34.94948,32.584429,0],[34.949476,32.584432,0],[34.949472,32.584434,0],[34.949469,32.584436,0],[34.949465,32.584439,0],[34.949462,32.584441,0],[34.949458,32.584443,0],[34.949454,32.584446,0],[34.949451,32.584448,0],[34.949447,32.584451,0],[34.949444,32.584453,0],[34.94944,32.584456,0],[34.949437,32.584458,0],[34.949433,32.58446,0],[34.94943,32.584463,0],[34.949426,32.584465,0],[34.949423,32.584468,0],[34.949419,32.58447,0],[34.949415,32.584473,0],[34.949412,32.584475,0],[34.949408,32.584478,0],[34.949405,32.58448,0],[34.949401,32.584483,0],[34.949398,32.584485,0],[34.949394,32.584488,0],[34.949391,32.58449,0],[34.949387,32.584493,0],[34.949384,32.584495,0],[34.949381,32.584498,0],[34.949377,32.5845,0],[34.949374,32.584503,0],[34.94937,32.584505,0],[34.949367,32.584508,0],[34.949363,32.58451,0],[34.94936,32.584513,0],[34.949356,32.584516,0],[34.949353,32.584518,0],[34.94935,32.584521,0],[34.949346,32.584523,0],[34.949343,32.584526,0],[34.949339,32.584528,0],[34.949336,32.584531,0],[34.949333,32.584534,0],[34.949329,32.584536,0],[34.949326,32.584539,0],[34.949322,32.584541,0],[34.949319,32.584544,0],[34.949316,32.584547,0],[34.949312,32.584549,0],[34.949309,32.584552,0],[34.949306,32.584555,0],[34.949302,32.584557,0],[34.949299,32.58456,0],[34.949295,32.584562,0],[34.949292,32.584565,0],[34.949289,32.584568,0],[34.949286,32.58457,0],[34.949282,32.584573,0],[34.949279,32.584576,0],[34.949276,32.584578,0],[34.949272,32.584581,0],[34.949269,32.584584,0],[34.949266,32.584586,0],[34.949262,32.584589,0],[34.949259,32.584592,0],[34.949256,32.584595,0],[34.949253,32.584597,0],[34.949249,32.5846,0],[34.949246,32.584603,0],[34.949243,32.584605,0],[34.94924,32.584608,0],[34.949236,32.584611,0],[34.949233,32.584614,0],[34.94923,32.584616,0],[34.949227,32.584619,0],[34.949223,32.584622,0],[34.94922,32.584625,0],[34.949217,32.584627,0],[34.949214,32.58463,0],[34.949211,32.584633,0],[34.949207,32.584636,0],[34.949204,32.584638,0],[34.949201,32.584641,0],[34.949198,32.584644,0],[34.949195,32.584647,0],[34.949192,32.58465,0],[34.949188,32.584652,0],[34.949185,32.584655,0],[34.949182,32.584658,0],[34.949179,32.584661,0],[34.949176,32.584664,0],[34.949173,32.584666,0],[34.94917,32.584669,0],[34.949169,32.58467,0],[34.949167,32.584671,0],[34.949166,32.584673,0],[34.949165,32.584674,0],[34.949163,32.584675,0],[34.949162,32.584677,0],[34.94916,32.584678,0],[34.949159,32.584679,0],[34.949158,32.584681,0],[34.949156,32.584682,0],[34.949155,32.584683,0],[34.949153,32.584685,0],[34.949152,32.584686,0],[34.94915,32.584687,0],[34.949149,32.584689,0],[34.949148,32.58469,0],[34.949146,32.584691,0],[34.949145,32.584693,0],[34.949144,32.584694,0],[34.949142,32.584696,0],[34.949141,32.584697,0],[34.949139,32.584698,0],[34.949138,32.5847,0],[34.949137,32.584701,0],[34.949135,32.584702,0],[34.949134,32.584704,0],[34.949133,32.584705,0],[34.949131,32.584707,0],[34.94913,32.584708,0],[34.949128,32.584709,0],[34.949127,32.584711,0],[34.949126,32.584712,0],[34.949124,32.584714,0],[34.949123,32.584715,0],[34.949122,32.584716,0],[34.94912,32.584718,0],[34.949119,32.584719,0],[34.949118,32.584721,0],[34.949116,32.584722,0],[34.949115,32.584723,0],[34.949114,32.584725,0],[34.949112,32.584726,0],[34.949111,32.584728,0],[34.94911,32.584729,0],[34.949108,32.58473,0],[34.949107,32.584732,0],[34.949106,32.584733,0],[34.949105,32.584735,0],[34.949103,32.584736,0],[34.949102,32.584737,0],[34.949101,32.584739,0],[34.949099,32.58474,0],[34.949098,32.584742,0],[34.949097,32.584743,0],[34.949095,32.584745,0],[34.949094,32.584746,0],[34.949093,32.584748,0],[34.949092,32.584749,0],[34.94909,32.58475,0],[34.949089,32.584752,0],[34.949088,32.584753,0],[34.949087,32.584755,0],[34.949085,32.584756,0],[34.949084,32.584758,0],[34.949083,32.584759,0],[34.949082,32.584761,0],[34.94908,32.584762,0],[34.949079,32.584763,0],[34.949078,32.584765,0],[34.949077,32.584766,0],[34.949075,32.584768,0],[34.949074,32.584769,0],[34.949073,32.584771,0],[34.949072,32.584772,0],[34.94907,32.584774,0],[34.949069,32.584775,0],[34.949068,32.584777,0],[34.949067,32.584778,0],[34.949066,32.58478,0],[34.949064,32.584781,0],[34.949063,32.584783,0],[34.949062,32.584784,0],[34.949061,32.584786,0],[34.949059,32.584787,0],[34.949058,32.584789,0],[34.949057,32.58479,0],[34.949056,32.584792,0],[34.949055,32.584793,0],[34.949054,32.584795,0],[34.949052,32.584796,0],[34.949051,32.584798,0],[34.94905,32.584799,0],[34.949049,32.584801,0],[34.949048,32.584802,0],[34.949046,32.584804,0],[34.949045,32.584805,0],[34.949044,32.584807,0],[34.949043,32.584808,0],[34.949042,32.58481,0],[34.949041,32.584811,0],[34.94904,32.584813,0],[34.949038,32.584814,0],[34.949037,32.584816,0],[34.949036,32.584817,0],[34.949035,32.584819,0],[34.949034,32.58482,0],[34.949033,32.584822,0],[34.949032,32.584823,0],[34.949031,32.584825,0],[34.949029,32.584826,0],[34.949028,32.584828,0],[34.949027,32.584829,0],[34.949026,32.584831,0],[34.949025,32.584832,0],[34.949024,32.584834,0],[34.949023,32.584836,0],[34.949022,32.584837,0],[34.949021,32.584839,0],[34.949019,32.58484,0],[34.949018,32.584842,0],[34.949017,32.584843,0],[34.949016,32.584845,0],[34.949015,32.584846,0],[34.949014,32.584848,0],[34.949013,32.584849,0],[34.949012,32.584851,0],[34.949011,32.584853,0],[34.94901,32.584854,0],[34.949008,32.584857,0],[34.949007,32.584859,0],[34.949006,32.58486,0],[34.949005,32.584862,0],[34.949004,32.584863,0],[34.949003,32.584865,0],[34.949002,32.584866,0],[34.949001,32.584868,0],[34.948999,32.58487,0],[34.948998,32.584871,0],[34.948997,32.584873,0],[34.948996,32.584874,0],[34.948995,32.584876,0],[34.948994,32.584878,0],[34.948993,32.584879,0],[34.948992,32.584881,0],[34.948991,32.584882,0],[34.94899,32.584884,0],[34.948989,32.584885,0],[34.948988,32.584887,0],[34.948987,32.584889,0],[34.948986,32.584891,0],[34.948985,32.584892,0],[34.948984,32.584894,0],[34.948983,32.584896,0],[34.948982,32.584897,0],[34.948981,32.584899,0],[34.94898,32.5849,0],[34.948979,32.584902,0],[34.948978,32.584904,0],[34.948977,32.584905,0],[34.948976,32.584907,0],[34.948976,32.584908,0],[34.948975,32.58491,0],[34.948974,32.584912,0],[34.948973,32.584913,0],[34.948972,32.584915,0],[34.948971,32.584916,0],[34.94897,32.584918,0],[34.948969,32.58492,0],[34.948968,32.584921,0],[34.948967,32.584923,0],[34.948966,32.584925,0],[34.948965,32.584926,0],[34.948964,32.584928,0],[34.948963,32.584929,0],[34.948963,32.584931,0],[34.948962,32.584933,0],[34.948961,32.584934,0],[34.94896,32.584936,0],[34.948959,32.584938,0],[34.948958,32.584939,0],[34.948957,32.584941,0],[34.948956,32.584943,0],[34.948955,32.584944,0],[34.948955,32.584946,0],[34.948954,32.584947,0],[34.949015,32.584997,0],[34.949576,32.585445,0],[34.949702,32.585546,0],[34.949799,32.58556,0],[34.949816,32.585556,0],[34.949829,32.585553,0],[34.949841,32.585551,0],[34.949854,32.585548,0],[34.949866,32.585546,0],[34.949879,32.585544,0],[34.949892,32.585542,0],[34.949904,32.585541,0],[34.949917,32.585539,0],[34.94993,32.585538,0],[34.949943,32.585537,0],[34.949955,32.585536,0],[34.949968,32.585535,0],[34.949981,32.585535,0],[34.949994,32.585535,0],[34.949996,32.585535,0],[34.949997,32.585535,0],[34.949999,32.585535,0],[34.950001,32.585535,0],[34.950003,32.585535,0],[34.950005,32.585535,0],[34.950006,32.585535,0],[34.950008,32.585535,0],[34.95001,32.585535,0],[34.950012,32.585535,0],[34.950014,32.585535,0],[34.950015,32.585535,0],[34.950017,32.585535,0],[34.950019,32.585535,0],[34.950021,32.585535,0],[34.950023,32.585535,0],[34.950024,32.585535,0],[34.950026,32.585535,0],[34.950028,32.585535,0],[34.95003,32.585535,0],[34.950032,32.585535,0],[34.950033,32.585535,0],[34.950035,32.585535,0],[34.950037,32.585535,0],[34.950039,32.585535,0],[34.950041,32.585535,0],[34.950042,32.585535,0],[34.950044,32.585535,0],[34.950046,32.585535,0],[34.950048,32.585535,0],[34.95005,32.585535,0],[34.950051,32.585535,0],[34.950053,32.585535,0],[34.950055,32.585536,0],[34.950057,32.585536,0],[34.950059,32.585536,0],[34.95006,32.585536,0],[34.950062,32.585536,0],[34.950064,32.585536,0],[34.950066,32.585536,0],[34.950068,32.585536,0],[34.950069,32.585536,0],[34.950071,32.585536,0],[34.950073,32.585536,0],[34.950075,32.585536,0],[34.950076,32.585537,0],[34.950078,32.585537,0],[34.95008,32.585537,0],[34.950082,32.585537,0],[34.950084,32.585537,0],[34.950086,32.585537,0],[34.950088,32.585537,0],[34.95009,32.585537,0],[34.950091,32.585538,0],[34.950093,32.585538,0],[34.950095,32.585538,0],[34.950097,32.585538,0],[34.950099,32.585538,0],[34.9501,32.585538,0],[34.950102,32.585538,0],[34.950104,32.585538,0],[34.950106,32.585539,0],[34.950108,32.585539,0],[34.950109,32.585539,0],[34.950111,32.585539,0],[34.950113,32.585539,0],[34.950115,32.585539,0],[34.950117,32.58554,0],[34.950118,32.58554,0],[34.95012,32.58554,0],[34.950122,32.58554,0],[34.950124,32.58554,0],[34.950125,32.58554,0],[34.950127,32.585541,0],[34.950129,32.585541,0],[34.950131,32.585541,0],[34.950133,32.585541,0],[34.950134,32.585541,0],[34.950136,32.585541,0],[34.950138,32.585542,0],[34.95014,32.585542,0],[34.950142,32.585542,0],[34.950143,32.585542,0],[34.950145,32.585542,0],[34.950147,32.585543,0],[34.950149,32.585543,0],[34.95015,32.585543,0],[34.950152,32.585543,0],[34.950154,32.585543,0],[34.950156,32.585544,0],[34.950158,32.585544,0],[34.950159,32.585544,0],[34.950161,32.585544,0],[34.950163,32.585545,0],[34.950165,32.585545,0],[34.950167,32.585545,0],[34.950168,32.585545,0],[34.95017,32.585546,0],[34.950172,32.585546,0],[34.950174,32.585546,0],[34.950175,32.585546,0],[34.950177,32.585546,0],[34.950179,32.585547,0],[34.950181,32.585547,0],[34.950183,32.585547,0],[34.950184,32.585548,0],[34.950186,32.585548,0],[34.950188,32.585548,0],[34.95019,32.585548,0],[34.950191,32.585549,0],[34.950193,32.585549,0],[34.950195,32.585549,0],[34.950197,32.585549,0],[34.950198,32.58555,0],[34.9502,32.58555,0],[34.950202,32.58555,0],[34.950204,32.585551,0],[34.950206,32.585551,0],[34.950207,32.585551,0],[34.950209,32.585551,0],[34.950211,32.585552,0],[34.950213,32.585552,0],[34.950214,32.585552,0],[34.950216,32.585553,0],[34.950218,32.585553,0],[34.95022,32.585553,0],[34.950221,32.585554,0],[34.950223,32.585554,0],[34.950225,32.585554,0],[34.950227,32.585554,0],[34.950228,32.585555,0],[34.95023,32.585555,0],[34.950232,32.585555,0],[34.950234,32.585556,0],[34.950235,32.585556,0],[34.950237,32.585556,0],[34.950239,32.585557,0],[34.950241,32.585557,0],[34.950243,32.585559,0],[34.950245,32.585559,0],[34.950247,32.58556,0],[34.950248,32.58556,0],[34.95025,32.585561,0],[34.950252,32.585561,0],[34.950254,32.585561,0],[34.950255,32.585562,0],[34.950257,32.585562,0],[34.950259,32.585562,0],[34.950261,32.585563,0],[34.950262,32.585563,0],[34.950264,32.585563,0],[34.950266,32.585564,0],[34.950268,32.585564,0],[34.950269,32.585565,0],[34.950271,32.585565,0],[34.950273,32.585565,0],[34.950275,32.585566,0],[34.950276,32.585566,0],[34.950278,32.585567,0],[34.95028,32.585567,0],[34.950282,32.585567,0],[34.950283,32.585568,0],[34.950285,32.585568,0],[34.950287,32.585569,0],[34.950288,32.585569,0],[34.95029,32.585569,0],[34.950292,32.58557,0],[34.950294,32.58557,0],[34.950295,32.585571,0],[34.950297,32.585571,0],[34.950299,32.585572,0],[34.950301,32.585572,0],[34.950302,32.585572,0],[34.950304,32.585573,0],[34.950306,32.585573,0],[34.950307,32.585574,0],[34.950309,32.585574,0],[34.950311,32.585575,0],[34.950313,32.585575,0],[34.950314,32.585575,0],[34.950316,32.585576,0],[34.950318,32.585576,0],[34.950319,32.585577,0],[34.950321,32.585577,0],[34.950323,32.585578,0],[34.950325,32.585578,0],[34.950326,32.585579,0],[34.950328,32.585579,0],[34.95033,32.58558,0],[34.950331,32.58558,0],[34.950333,32.585581,0],[34.950335,32.585581,0],[34.950337,32.585582,0],[34.950338,32.585582,0],[34.95034,32.585583,0],[34.950342,32.585583,0],[34.950343,32.585584,0],[34.950345,32.585584,0],[34.950347,32.585585,0],[34.950349,32.585585,0],[34.95035,32.585586,0],[34.950352,32.585586,0],[34.950354,32.585587,0],[34.950355,32.585587,0],[34.950357,32.585588,0],[34.950359,32.585588,0],[34.95036,32.585589,0],[34.950362,32.585589,0],[34.950364,32.58559,0],[34.950365,32.58559,0],[34.950367,32.585591,0],[34.950369,32.585591,0],[34.950371,32.585592,0],[34.950372,32.585592,0],[34.950374,32.585593,0],[34.950376,32.585593,0],[34.950377,32.585594,0],[34.950379,32.585594,0],[34.950381,32.585595,0],[34.950382,32.585596,0],[34.950384,32.585596,0],[34.950386,32.585597,0],[34.950387,32.585597,0],[34.950389,32.585598,0],[34.950391,32.585598,0],[34.950392,32.585599,0],[34.950394,32.585599,0],[34.950396,32.5856,0],[34.950397,32.585601,0],[34.950399,32.585601,0],[34.950401,32.585602,0],[34.950402,32.585602,0],[34.950404,32.585603,0],[34.950406,32.585603,0],[34.950407,32.585604,0],[34.950409,32.585605,0],[34.950411,32.585605,0],[34.950412,32.585606,0],[34.950414,32.585606,0],[34.950416,32.585607,0],[34.950417,32.585608,0],[34.950419,32.585608,0],[34.950421,32.585609,0],[34.950422,32.585609,0],[34.950424,32.58561,0],[34.950426,32.585611,0],[34.950427,32.585611,0],[34.950429,32.585612,0],[34.95043,32.585612,0],[34.950432,32.585613,0],[34.950434,32.585614,0],[34.950435,32.585614,0],[34.950437,32.585615,0],[34.950439,32.585616,0],[34.95044,32.585616,0],[34.950442,32.585617,0],[34.950444,32.585618,0],[34.950445,32.585618,0],[34.950447,32.585619,0],[34.950448,32.585619,0],[34.95045,32.58562,0],[34.950452,32.585621,0],[34.950453,32.585621,0],[34.950455,32.585622,0],[34.950457,32.585623,0],[34.950458,32.585623,0],[34.95046,32.585624,0],[34.950461,32.585625,0],[34.950463,32.585625,0],[34.950465,32.585626,0],[34.950466,32.585627,0],[34.950468,32.585627,0],[34.95047,32.585628,0],[34.950471,32.585629,0],[34.950473,32.585629,0],[34.950474,32.58563,0],[34.950476,32.585631,0],[34.950478,32.585632,0],[34.950479,32.585632,0],[34.950481,32.585633,0],[34.950482,32.585634,0],[34.950484,32.585634,0],[34.950486,32.585635,0],[34.950487,32.585636,0],[34.950489,32.585636,0],[34.95049,32.585637,0],[34.950492,32.585638,0],[34.950494,32.585639,0],[34.950495,32.585639,0],[34.950497,32.58564,0],[34.950498,32.585641,0],[34.9505,32.585641,0],[34.950501,32.585642,0],[34.950503,32.585643,0],[34.950505,32.585644,0],[34.950506,32.585644,0],[34.950508,32.585645,0],[34.950509,32.585646,0],[34.950511,32.585646,0],[34.950513,32.585647,0],[34.950514,32.585648,0],[34.950516,32.585649,0],[34.950517,32.585649,0],[34.950519,32.58565,0],[34.95052,32.585651,0],[34.950522,32.585652,0],[34.950524,32.585652,0],[34.950525,32.585653,0],[34.950527,32.585654,0],[34.950528,32.585655,0],[34.95053,32.585656,0],[34.950531,32.585656,0],[34.950533,32.585657,0],[34.950534,32.585658,0],[34.950536,32.585659,0],[34.950538,32.585659,0],[34.950539,32.58566,0],[34.950541,32.585661,0],[34.950542,32.585662,0],[34.950544,32.585662,0],[34.950545,32.585663,0],[34.950547,32.585664,0],[34.950548,32.585665,0],[34.95055,32.585666,0],[34.950551,32.585666,0],[34.950553,32.585667,0],[34.950554,32.585668,0],[34.950556,32.585669,0],[34.950557,32.58567,0],[34.950559,32.58567,0],[34.950561,32.585671,0],[34.950562,32.585672,0],[34.950564,32.585673,0],[34.950565,32.585674,0],[34.950567,32.585675,0],[34.950568,32.585675,0],[34.95057,32.585676,0],[34.950571,32.585677,0],[34.950573,32.585678,0],[34.950574,32.585679,0],[34.950576,32.585679,0],[34.950577,32.58568,0],[34.950579,32.585681,0],[34.95058,32.585682,0],[34.950582,32.585683,0],[34.950583,32.585684,0],[34.950585,32.585685,0],[34.950586,32.585685,0],[34.950588,32.585686,0],[34.950589,32.585687,0],[34.950591,32.585688,0],[34.950592,32.585689,0],[34.950594,32.58569,0],[34.950595,32.585691,0],[34.950597,32.585691,0],[34.950598,32.585692,0],[34.9506,32.585693,0],[34.950601,32.585694,0],[34.950603,32.585695,0],[34.950604,32.585696,0],[34.950606,32.585697,0],[34.950607,32.585697,0],[34.950608,32.585698,0],[34.95061,32.585699,0],[34.950611,32.5857,0],[34.950613,32.585701,0],[34.950614,32.585702,0],[34.950616,32.585703,0],[34.950617,32.585704,0],[34.950619,32.585705,0],[34.95062,32.585705,0],[34.950622,32.585706,0],[34.950623,32.585707,0],[34.950624,32.585708,0],[34.950626,32.585709,0],[34.950627,32.58571,0],[34.950629,32.585711,0],[34.95063,32.585712,0],[34.950632,32.585713,0],[34.950633,32.585714,0],[34.950635,32.585715,0],[34.950636,32.585715,0],[34.950637,32.585716,0],[34.950639,32.585717,0],[34.95064,32.585718,0],[34.950642,32.585719,0],[34.950643,32.58572,0],[34.950645,32.585721,0],[34.950646,32.585722,0],[34.950647,32.585723,0],[34.950649,32.585724,0],[34.95065,32.585725,0],[34.950652,32.585726,0],[34.950653,32.585727,0],[34.950654,32.585728,0],[34.950656,32.585729,0],[34.950657,32.58573,0],[34.950659,32.58573,0],[34.95066,32.585731,0],[34.950662,32.585732,0],[34.950663,32.585733,0],[34.950664,32.585734,0],[34.950666,32.585735,0],[34.950667,32.585736,0],[34.950668,32.585737,0],[34.95067,32.585738,0],[34.950671,32.585739,0],[34.950673,32.58574,0],[34.950674,32.585741,0],[34.950675,32.585742,0],[34.950677,32.585743,0],[34.950678,32.585744,0],[34.95068,32.585745,0],[34.950681,32.585746,0],[34.950682,32.585747,0],[34.950684,32.585748,0],[34.950685,32.585749,0],[34.950686,32.58575,0],[34.950688,32.585751,0],[34.950689,32.585752,0],[34.95069,32.585753,0],[34.950692,32.585754,0],[34.950693,32.585755,0],[34.950695,32.585756,0],[34.950696,32.585757,0],[34.950697,32.585758,0],[34.950699,32.585759,0],[34.950701,32.585761,0],[34.950702,32.585762,0],[34.950704,32.585763,0],[34.950705,32.585764,0],[34.950706,32.585765,0],[34.950708,32.585766,0],[34.950709,32.585767,0],[34.95071,32.585768,0],[34.950712,32.585769,0],[34.950713,32.58577,0],[34.950714,32.585771,0],[34.950715,32.585772,0],[34.950717,32.585773,0],[34.950718,32.585774,0],[34.950719,32.585775,0],[34.950721,32.585776,0],[34.950722,32.585777,0],[34.950723,32.585778,0],[34.950725,32.585779,0],[34.950726,32.58578,0],[34.950727,32.585781,0],[34.950729,32.585782,0],[34.95073,32.585783,0],[34.950731,32.585785,0],[34.950732,32.585786,0],[34.950734,32.585787,0],[34.950735,32.585788,0],[34.950736,32.585789,0],[34.950738,32.58579,0],[34.950739,32.585791,0],[34.95074,32.585792,0],[34.950741,32.585793,0],[34.950743,32.585794,0],[34.950744,32.585795,0],[34.950745,32.585796,0],[34.950747,32.585798,0],[34.950749,32.585799,0],[34.95075,32.5858,0],[34.950751,32.585801,0],[34.950752,32.585802,0],[34.950754,32.585803,0],[34.950755,32.585805,0],[34.950756,32.585806,0],[34.950757,32.585807,0],[34.950759,32.585808,0],[34.95076,32.585809,0],[34.950761,32.58581,0],[34.950762,32.585811,0],[34.950764,32.585812,0],[34.950765,32.585813,0],[34.950766,32.585814,0],[34.950767,32.585816,0],[34.950768,32.585817,0],[34.95077,32.585818,0],[34.950771,32.585819,0],[34.950772,32.58582,0],[34.950773,32.585821,0],[34.950775,32.585822,0],[34.950776,32.585823,0],[34.950777,32.585825,0],[34.950778,32.585826,0],[34.950779,32.585827,0],[34.950781,32.585828,0],[34.950782,32.585829,0],[34.950783,32.58583,0],[34.950784,32.585831,0],[34.950785,32.585832,0],[34.950787,32.585834,0],[34.950788,32.585835,0],[34.950789,32.585836,0],[34.95079,32.585837,0],[34.950791,32.585838,0],[34.950793,32.585839,0],[34.950794,32.58584,0],[34.950795,32.585842,0],[34.950796,32.585843,0],[34.950797,32.585844,0],[34.950798,32.585845,0],[34.9508,32.585847,0],[34.950758,32.585872,0],[34.950967,32.585933,0],[34.951191,32.585997,0],[34.951449,32.586046,0],[34.951731,32.586093,0],[34.951598,32.586627,0],[34.951816,32.586713,0],[34.952113,32.586764,0],[34.95244,32.586748,0],[34.952589,32.586748,0],[34.952855,32.586754,0],[34.953112,32.58676,0],[34.953261,32.586765,0],[34.953544,32.586775,0],[34.953564,32.58661,0],[34.953731,32.586482,0],[34.954985,32.583969,0],[34.955012,32.583695,0],[34.954487,32.583615,0],[34.954491,32.583569,0],[34.954481,32.58333,0],[34.954441,32.583162,0],[34.953938,32.583303,0],[34.953929,32.58328,0],[34.953926,32.583274,0],[34.953925,32.583271,0],[34.953923,32.583267,0],[34.953922,32.583264,0],[34.95392,32.58326,0],[34.953919,32.583257,0],[34.953917,32.583253,0],[34.953916,32.583249,0],[34.953914,32.583246,0],[34.953912,32.583242,0],[34.953911,32.583239,0],[34.953909,32.583235,0],[34.953908,32.583232,0],[34.953906,32.583228,0],[34.953905,32.583225,0],[34.953903,32.583221,0],[34.953901,32.583218,0],[34.9539,32.583214,0],[34.953898,32.583211,0],[34.953896,32.583207,0],[34.953895,32.583204,0],[34.953893,32.5832,0],[34.953892,32.583197,0],[34.95389,32.583193,0],[34.953888,32.58319,0],[34.953887,32.583186,0],[34.953885,32.583183,0],[34.953883,32.583179,0],[34.953881,32.583176,0],[34.95388,32.583172,0],[34.953878,32.583169,0],[34.953876,32.583166,0],[34.953875,32.583162,0],[34.953873,32.583159,0],[34.953871,32.583155,0],[34.953869,32.583152,0],[34.953868,32.583148,0],[34.953866,32.583145,0],[34.953864,32.583141,0],[34.953862,32.583138,0],[34.953861,32.583134,0],[34.953859,32.583131,0],[34.953857,32.583128,0],[34.953855,32.583124,0],[34.953853,32.583121,0],[34.953852,32.583117,0],[34.95385,32.583114,0],[34.953848,32.58311,0],[34.953846,32.583107,0],[34.953844,32.583104,0],[34.953841,32.583098,0],[34.953839,32.583095,0],[34.953838,32.583091,0],[34.953836,32.583088,0],[34.953834,32.583085,0],[34.953832,32.583081,0],[34.95383,32.583078,0],[34.953828,32.583074,0],[34.953826,32.583071,0],[34.953824,32.583068,0],[34.953822,32.583064,0],[34.95382,32.583061,0],[34.953818,32.583057,0],[34.953817,32.583054,0],[34.953815,32.583051,0],[34.953813,32.583047,0],[34.953811,32.583044,0],[34.953809,32.58304,0],[34.953807,32.583037,0],[34.953805,32.583034,0],[34.953803,32.58303,0],[34.953801,32.583027,0],[34.953799,32.583024,0],[34.953797,32.58302,0],[34.953795,32.583017,0],[34.953793,32.583014,0],[34.953791,32.58301,0],[34.953789,32.583007,0],[34.953787,32.583004,0],[34.953784,32.583,0],[34.953782,32.582997,0],[34.95378,32.582994,0],[34.953778,32.58299,0],[34.953776,32.582987,0],[34.953774,32.582984,0],[34.953772,32.58298,0],[34.95377,32.582977,0],[34.953768,32.582974,0],[34.953766,32.58297,0],[34.953764,32.582967,0],[34.953761,32.582964,0],[34.953759,32.58296,0],[34.953757,32.582957,0],[34.953755,32.582954,0],[34.953753,32.582951,0],[34.953751,32.582947,0],[34.953749,32.582944,0],[34.953746,32.582941,0],[34.953744,32.582937,0],[34.953742,32.582934,0],[34.953731,32.582917,0],[34.953635,32.582777,0],[34.953528,32.582621,0],[34.953421,32.582465,0],[34.953363,32.582379,0],[34.953362,32.582378,0],[34.953361,32.582377,0],[34.953361,32.582376,0],[34.95336,32.582375,0],[34.953359,32.582375,0],[34.953359,32.582374,0],[34.953358,32.582373,0],[34.953357,32.582372,0],[34.953357,32.582371,0],[34.953356,32.58237,0],[34.953355,32.582369,0],[34.953355,32.582368,0],[34.953354,32.582367,0],[34.953353,32.582366,0],[34.953353,32.582365,0],[34.953352,32.582365,0],[34.953351,32.582364,0],[34.953351,32.582363,0],[34.95335,32.582362,0],[34.953349,32.582361,0],[34.953349,32.58236,0],[34.953348,32.582359,0],[34.953348,32.582358,0],[34.953347,32.582357,0],[34.953346,32.582357,0],[34.953345,32.582356,0],[34.953345,32.582355,0],[34.953344,32.582354,0],[34.953343,32.582353,0],[34.953343,32.582352,0],[34.953342,32.582351,0],[34.953341,32.58235,0],[34.953341,32.582349,0],[34.95334,32.582349,0],[34.953339,32.582348,0],[34.953339,32.582347,0],[34.953338,32.582346,0],[34.953337,32.582345,0],[34.953337,32.582344,0],[34.953336,32.582343,0],[34.953335,32.582342,0],[34.953334,32.582342,0],[34.953334,32.582341,0],[34.953333,32.58234,0],[34.953332,32.582339,0],[34.953332,32.582338,0],[34.953331,32.582337,0],[34.95333,32.582336,0],[34.95333,32.582335,0],[34.953329,32.582335,0],[34.953328,32.582334,0],[34.953327,32.582333,0],[34.953327,32.582332,0],[34.953326,32.582331,0],[34.953325,32.58233,0],[34.953324,32.582329,0],[34.953324,32.582329,0],[34.953323,32.582328,0],[34.953322,32.582327,0],[34.953322,32.582326,0],[34.953321,32.582325,0],[34.95332,32.582324,0],[34.953319,32.582323,0],[34.953319,32.582323,0],[34.953318,32.582322,0],[34.953317,32.582321,0],[34.953316,32.58232,0],[34.953316,32.582319,0],[34.953315,32.582318,0],[34.953314,32.582317,0],[34.953313,32.582317,0],[34.953313,32.582316,0],[34.953312,32.582315,0],[34.953311,32.582314,0],[34.95331,32.582313,0],[34.95331,32.582312,0],[34.953309,32.582312,0],[34.953308,32.582311,0],[34.953307,32.58231,0],[34.953306,32.582309,0],[34.953306,32.582308,0],[34.953305,32.582307,0],[34.953304,32.582307,0],[34.953303,32.582306,0],[34.953303,32.582305,0],[34.953302,32.582304,0],[34.953301,32.582303,0],[34.9533,32.582302,0],[34.953299,32.582302,0],[34.953299,32.582301,0],[34.953298,32.5823,0],[34.953297,32.582299,0],[34.953296,32.582298,0],[34.953296,32.582298,0],[34.953283,32.582285,0],[34.953282,32.582284,0],[34.953281,32.582283,0],[34.953281,32.582283,0],[34.95328,32.582282,0],[34.953279,32.582281,0],[34.953278,32.58228,0],[34.953277,32.582279,0],[34.953276,32.582279,0],[34.953276,32.582278,0],[34.953275,32.582277,0],[34.953274,32.582276,0],[34.953273,32.582275,0],[34.953272,32.582275,0],[34.953271,32.582274,0],[34.953271,32.582273,0],[34.95327,32.582272,0],[34.953269,32.582272,0],[34.953268,32.582271,0],[34.953267,32.58227,0],[34.953266,32.582269,0],[34.953265,32.582268,0],[34.953265,32.582268,0],[34.953264,32.582267,0],[34.953263,32.582266,0],[34.953262,32.582265,0],[34.953261,32.582265,0],[34.95326,32.582264,0],[34.953259,32.582263,0],[34.953259,32.582262,0],[34.953258,32.582262,0],[34.953257,32.582261,0],[34.953256,32.58226,0],[34.953255,32.582259,0],[34.953254,32.582259,0],[34.953253,32.582258,0],[34.953252,32.582257,0],[34.953252,32.582256,0],[34.953251,32.582255,0],[34.95325,32.582255,0],[34.953249,32.582254,0],[34.953248,32.582253,0],[34.953247,32.582253,0],[34.953246,32.582252,0],[34.953245,32.582251,0],[34.953245,32.58225,0],[34.953244,32.58225,0],[34.953243,32.582249,0],[34.953242,32.582248,0],[34.953241,32.582247,0],[34.95324,32.582247,0],[34.953239,32.582246,0],[34.953238,32.582245,0],[34.953237,32.582244,0],[34.953236,32.582244,0],[34.953236,32.582243,0],[34.953235,32.582242,0],[34.953234,32.582241,0],[34.953233,32.582241,0],[34.953232,32.58224,0],[34.953231,32.582239,0],[34.95323,32.582239,0],[34.953229,32.582238,0],[34.953228,32.582237,0],[34.953227,32.582236,0],[34.953226,32.582236,0],[34.953226,32.582235,0],[34.953225,32.582234,0],[34.953224,32.582234,0],[34.953223,32.582233,0],[34.953222,32.582232,0],[34.953221,32.582231,0],[34.95322,32.582231,0],[34.953219,32.58223,0],[34.953218,32.582229,0],[34.953217,32.582229,0],[34.953216,32.582228,0],[34.953215,32.582227,0],[34.953214,32.582226,0],[34.953213,32.582226,0],[34.953213,32.582225,0],[34.953212,32.582224,0],[34.953211,32.582224,0],[34.95321,32.582223,0],[34.953209,32.582222,0],[34.953208,32.582222,0],[34.953207,32.582221,0],[34.953206,32.58222,0],[34.953205,32.58222,0],[34.953204,32.582219,0],[34.953203,32.582218,0],[34.953202,32.582218,0],[34.953201,32.582217,0],[34.9532,32.582216,0],[34.953199,32.582215,0],[34.953198,32.582215,0],[34.953197,32.582214,0],[34.953196,32.582213,0],[34.953195,32.582213,0],[34.953194,32.582212,0],[34.953193,32.582211,0],[34.953192,32.582211,0],[34.953192,32.58221,0],[34.953191,32.582209,0],[34.95319,32.582209,0],[34.953189,32.582208,0],[34.953188,32.582207,0],[34.953187,32.582207,0],[34.953186,32.582206,0],[34.953185,32.582206,0],[34.953184,32.582205,0],[34.953183,32.582204,0],[34.953182,32.582204,0],[34.953181,32.582203,0],[34.95318,32.582202,0],[34.953179,32.582202,0],[34.953178,32.582201,0],[34.953177,32.5822,0],[34.953176,32.5822,0],[34.953175,32.582199,0],[34.953174,32.582198,0],[34.953173,32.582198,0],[34.953172,32.582197,0],[34.953171,32.582196,0],[34.95317,32.582196,0],[34.953169,32.582195,0],[34.953168,32.582195,0],[34.953167,32.582194,0],[34.953166,32.582193,0],[34.953165,32.582193,0],[34.953164,32.582192,0],[34.953163,32.582191,0],[34.953162,32.582191,0],[34.953161,32.58219,0],[34.95316,32.58219,0],[34.953159,32.582189,0],[34.953158,32.582188,0],[34.953157,32.582188,0],[34.953156,32.582187,0],[34.953155,32.582187,0],[34.953154,32.582186,0],[34.953153,32.582185,0],[34.953152,32.582185,0],[34.953151,32.582184,0],[34.95315,32.582183,0],[34.953149,32.582183,0],[34.953148,32.582182,0],[34.953147,32.582182,0],[34.953145,32.582181,0],[34.953144,32.58218,0],[34.953143,32.58218,0],[34.953142,32.582179,0],[34.953141,32.582179,0],[34.95314,32.582178,0],[34.953139,32.582178,0],[34.953138,32.582177,0],[34.953137,32.582176,0],[34.953136,32.582176,0],[34.953135,32.582175,0],[34.953134,32.582175,0],[34.953133,32.582174,0],[34.953132,32.582173,0],[34.953131,32.582173,0],[34.95313,32.582172,0],[34.953129,32.582172,0],[34.953128,32.582171,0],[34.953127,32.582171,0],[34.953126,32.58217,0],[34.953125,32.582169,0],[34.953124,32.582169,0],[34.953123,32.582168,0],[34.953121,32.582168,0],[34.95312,32.582167,0],[34.953119,32.582167,0],[34.953118,32.582166,0],[34.953117,32.582165,0],[34.953116,32.582165,0],[34.953115,32.582164,0],[34.953114,32.582164,0],[34.953113,32.582163,0],[34.953112,32.582163,0],[34.953111,32.582162,0],[34.95311,32.582162,0],[34.953109,32.582161,0],[34.953108,32.582161,0],[34.953107,32.58216,0],[34.953105,32.582159,0],[34.953104,32.582159,0],[34.953103,32.582158,0],[34.953102,32.582158,0],[34.953101,32.582157,0],[34.9531,32.582157,0],[34.953099,32.582156,0],[34.953098,32.582156,0],[34.953097,32.582155,0],[34.953096,32.582155,0],[34.953095,32.582154,0],[34.953094,32.582154,0],[34.953093,32.582153,0],[34.953091,32.582153,0],[34.95309,32.582152,0],[34.953089,32.582152,0],[34.953088,32.582151,0],[34.953081,32.582147,0],[34.953079,32.582147,0],[34.953078,32.582146,0],[34.953077,32.582146,0],[34.953075,32.582145,0],[34.953074,32.582145,0],[34.953073,32.582144,0],[34.953072,32.582144,0],[34.953071,32.582143,0],[34.95307,32.582143,0],[34.953069,32.582142,0],[34.953068,32.582142,0],[34.953067,32.582141,0],[34.953066,32.582141,0],[34.953064,32.58214,0],[34.953063,32.58214,0],[34.953062,32.582139,0],[34.953061,32.582139,0],[34.95306,32.582138,0],[34.953059,32.582138,0],[34.953058,32.582137,0],[34.953057,32.582137,0],[34.953055,32.582137,0],[34.953054,32.582136,0],[34.953053,32.582136,0],[34.953052,32.582135,0],[34.953051,32.582135,0],[34.95305,32.582134,0],[34.953049,32.582134,0],[34.953048,32.582133,0],[34.953046,32.582133,0],[34.953045,32.582132,0],[34.953044,32.582132,0],[34.953043,32.582132,0],[34.953042,32.582131,0],[34.953041,32.582131,0],[34.95304,32.58213,0],[34.953039,32.58213,0],[34.953037,32.582129,0],[34.953036,32.582129,0],[34.953035,32.582128,0],[34.953034,32.582128,0],[34.953033,32.582128,0],[34.953032,32.582127,0],[34.953031,32.582127,0],[34.953029,32.582126,0],[34.953028,32.582126,0],[34.953027,32.582125,0],[34.953026,32.582125,0],[34.953025,32.582125,0],[34.953024,32.582124,0],[34.953023,32.582124,0],[34.953021,32.582123,0],[34.95302,32.582123,0],[34.953019,32.582122,0],[34.953018,32.582122,0],[34.953017,32.582122,0],[34.953016,32.582121,0],[34.953015,32.582121,0],[34.953013,32.58212,0],[34.953012,32.58212,0],[34.953011,32.58212,0],[34.95301,32.582119,0],[34.953009,32.582119,0],[34.953008,32.582118,0],[34.953006,32.582118,0],[34.953005,32.582118,0],[34.953004,32.582117,0],[34.953003,32.582117,0],[34.953002,32.582116,0],[34.953001,32.582116,0],[34.953,32.582116,0],[34.952998,32.582115,0],[34.952997,32.582115,0],[34.952996,32.582115,0],[34.952995,32.582114,0],[34.952994,32.582114,0],[34.952993,32.582113,0],[34.952991,32.582113,0],[34.95299,32.582113,0],[34.952989,32.582112,0],[34.952988,32.582112,0],[34.952987,32.582112,0],[34.952985,32.582111,0],[34.952984,32.582111,0],[34.952983,32.58211,0],[34.952982,32.58211,0],[34.952981,32.58211,0],[34.95298,32.582109,0],[34.952978,32.582109,0],[34.952977,32.582109,0],[34.952976,32.582108,0],[34.952975,32.582108,0],[34.952974,32.582108,0],[34.952973,32.582107,0],[34.952971,32.582107,0],[34.95297,32.582107,0],[34.952969,32.582106,0],[34.952968,32.582106,0],[34.952967,32.582106,0],[34.952965,32.582105,0],[34.952964,32.582105,0],[34.952963,32.582105,0],[34.952962,32.582104,0],[34.952961,32.582104,0],[34.95296,32.582104,0],[34.952958,32.582103,0],[34.952957,32.582103,0],[34.952956,32.582103,0],[34.952955,32.582102,0],[34.952954,32.582102,0],[34.952952,32.582102,0],[34.952951,32.582101,0],[34.95295,32.582101,0],[34.952949,32.582101,0],[34.952948,32.5821,0],[34.952946,32.5821,0],[34.952945,32.5821,0],[34.952944,32.582099,0],[34.952943,32.582099,0],[34.952942,32.582099,0],[34.95294,32.582099,0],[34.952939,32.582098,0],[34.952938,32.582098,0],[34.952937,32.582098,0],[34.952936,32.582097,0],[34.952934,32.582097,0],[34.952933,32.582097,0],[34.952932,32.582097,0],[34.952931,32.582096,0],[34.95293,32.582096,0],[34.952928,32.582096,0],[34.952927,32.582095,0],[34.952926,32.582095,0],[34.952925,32.582095,0],[34.952924,32.582095,0],[34.952922,32.582094,0],[34.952921,32.582094,0],[34.95292,32.582094,0],[34.952919,32.582093,0],[34.952918,32.582093,0],[34.952916,32.582093,0],[34.952915,32.582093,0],[34.952914,32.582092,0],[34.952913,32.582092,0],[34.952912,32.582092,0],[34.95291,32.582092,0],[34.952909,32.582091,0],[34.952908,32.582091,0],[34.952907,32.582091,0],[34.952905,32.582091,0],[34.952904,32.58209,0],[34.952903,32.58209,0],[34.952902,32.58209,0],[34.952901,32.58209,0],[34.952899,32.582089,0],[34.952898,32.582089,0],[34.952897,32.582089,0],[34.952896,32.582089,0],[34.952895,32.582089,0],[34.952893,32.582088,0],[34.952892,32.582088,0],[34.952891,32.582088,0],[34.95289,32.582088,0],[34.952888,32.582087,0],[34.952887,32.582087,0],[34.952886,32.582087,0],[34.952885,32.582087,0],[34.952884,32.582086,0],[34.952882,32.582086,0],[34.952881,32.582086,0],[34.95288,32.582086,0],[34.952879,32.582086,0],[34.952877,32.582085,0],[34.952876,32.582085,0],[34.952875,32.582085,0],[34.952874,32.582085,0],[34.952873,32.582085,0],[34.952871,32.582084,0],[34.95287,32.582084,0],[34.952869,32.582084,0],[34.952868,32.582084,0],[34.952866,32.582084,0],[34.952865,32.582083,0],[34.952864,32.582083,0],[34.952863,32.582083,0],[34.952861,32.582083,0],[34.95286,32.582083,0],[34.952859,32.582083,0],[34.952858,32.582082,0],[34.952857,32.582082,0],[34.952855,32.582082,0],[34.952854,32.582082,0],[34.952853,32.582082,0],[34.952852,32.582081,0],[34.95285,32.582081,0],[34.952849,32.582081,0],[34.952848,32.582081,0],[34.952847,32.582081,0],[34.952845,32.582081,0],[34.952844,32.582081,0],[34.952843,32.58208,0],[34.952842,32.58208,0],[34.952841,32.58208,0],[34.952839,32.58208,0],[34.952838,32.58208,0],[34.952837,32.58208,0],[34.952836,32.582079,0],[34.952834,32.582079,0],[34.952833,32.582079,0],[34.952832,32.582079,0],[34.952831,32.582079,0],[34.952829,32.582079,0],[34.952828,32.582079,0],[34.952827,32.582078,0],[34.952826,32.582078,0],[34.952824,32.582078,0],[34.952823,32.582078,0],[34.952822,32.582078,0],[34.952821,32.582078,0],[34.952819,32.582078,0],[34.952818,32.582078,0],[34.952817,32.582077,0],[34.952816,32.582077,0],[34.952814,32.582077,0],[34.952813,32.582077,0],[34.952811,32.582077,0],[34.95281,32.582077,0],[34.952809,32.582077,0],[34.952808,32.582077,0],[34.952806,32.582077,0],[34.952805,32.582076,0],[34.952804,32.582076,0],[34.952803,32.582076,0],[34.952801,32.582076,0],[34.9528,32.582076,0],[34.952799,32.582076,0],[34.952798,32.582076,0],[34.952796,32.582076,0],[34.952795,32.582076,0],[34.952794,32.582076,0],[34.952793,32.582076,0],[34.952791,32.582075,0],[34.95279,32.582075,0],[34.952789,32.582075,0],[34.952788,32.582075,0],[34.952786,32.582075,0],[34.952785,32.582075,0],[34.952784,32.582075,0],[34.952783,32.582075,0],[34.952781,32.582075,0],[34.95278,32.582075,0],[34.952779,32.582075,0],[34.952778,32.582075,0],[34.952776,32.582075,0],[34.952775,32.582075,0],[34.952774,32.582074,0],[34.952773,32.582074,0],[34.952771,32.582074,0],[34.95277,32.582074,0],[34.952769,32.582074,0],[34.952768,32.582074,0],[34.952766,32.582074,0],[34.952765,32.582074,0],[34.952764,32.582074,0],[34.952763,32.582074,0],[34.952761,32.582074,0],[34.95276,32.582074,0],[34.952759,32.582074,0],[34.952758,32.582074,0],[34.952756,32.582074,0],[34.952755,32.582074,0],[34.952754,32.582074,0],[34.952753,32.582074,0],[34.952751,32.582074,0],[34.95275,32.582074,0],[34.952749,32.582074,0],[34.952748,32.582074,0],[34.952746,32.582074,0],[34.952745,32.582074,0],[34.952744,32.582074,0],[34.952743,32.582074,0],[34.952742,32.582074,0],[34.95274,32.582074,0],[34.952739,32.582074,0],[34.952738,32.582074,0],[34.952737,32.582074,0],[34.952735,32.582074,0],[34.952734,32.582074,0],[34.952733,32.582074,0],[34.952732,32.582074,0],[34.95273,32.582074,0],[34.952729,32.582074,0],[34.952728,32.582074,0],[34.952727,32.582074,0],[34.952725,32.582074,0],[34.952724,32.582074,0],[34.952723,32.582074,0],[34.952722,32.582074,0],[34.95272,32.582074,0],[34.952719,32.582074,0],[34.952718,32.582074,0],[34.952717,32.582074,0],[34.952715,32.582074,0],[34.952714,32.582074,0],[34.952713,32.582074,0],[34.952712,32.582074,0],[34.95271,32.582074,0],[34.952709,32.582074,0],[34.952708,32.582074,0],[34.952707,32.582074,0],[34.952705,32.582074,0],[34.952704,32.582074,0],[34.952703,32.582074,0],[34.952702,32.582074,0],[34.9527,32.582074,0],[34.952699,32.582074,0],[34.952698,32.582074,0],[34.952697,32.582075,0],[34.952695,32.582075,0],[34.952694,32.582075,0],[34.952693,32.582075,0],[34.952692,32.582075,0],[34.95269,32.582075,0],[34.952689,32.582075,0],[34.952688,32.582075,0],[34.952687,32.582075,0],[34.952685,32.582075,0],[34.952684,32.582075,0],[34.952683,32.582075,0],[34.952682,32.582075,0],[34.95268,32.582075,0],[34.952679,32.582076,0],[34.952678,32.582076,0],[34.952677,32.582076,0],[34.952675,32.582076,0],[34.952674,32.582076,0],[34.952673,32.582076,0],[34.952672,32.582076,0],[34.95267,32.582076,0],[34.952669,32.582076,0],[34.952668,32.582076,0],[34.952667,32.582076,0],[34.952665,32.582077,0],[34.952664,32.582077,0],[34.952663,32.582077,0],[34.952662,32.582077,0],[34.95266,32.582077,0],[34.952659,32.582077,0],[34.952658,32.582077,0],[34.952657,32.582077,0],[34.952656,32.582077,0],[34.952654,32.582078,0],[34.952653,32.582078,0],[34.952652,32.582078,0],[34.952651,32.582078,0],[34.952649,32.582078,0],[34.952648,32.582078,0],[34.952647,32.582078,0],[34.952646,32.582078,0],[34.952644,32.582079,0],[34.952643,32.582079,0],[34.952642,32.582079,0],[34.952641,32.582079,0],[34.952639,32.582079,0],[34.952638,32.582079,0],[34.952637,32.582079,0],[34.952636,32.58208,0],[34.952634,32.58208,0],[34.952633,32.58208,0],[34.952632,32.58208,0],[34.952631,32.58208,0],[34.95263,32.58208,0],[34.952628,32.58208,0],[34.952627,32.582081,0],[34.952626,32.582081,0],[34.952625,32.582081,0],[34.952623,32.582081,0],[34.952622,32.582081,0],[34.952621,32.582081,0],[34.95262,32.582082,0],[34.952618,32.582082,0],[34.952617,32.582082,0],[34.952616,32.582082,0],[34.952615,32.582082,0],[34.952613,32.582082,0],[34.952612,32.582083,0],[34.952611,32.582083,0],[34.95261,32.582083,0],[34.952609,32.582083,0],[34.952607,32.582083,0],[34.952606,32.582084,0],[34.952605,32.582084,0],[34.952604,32.582084,0],[34.952602,32.582084,0],[34.952601,32.582084,0],[34.9526,32.582085,0],[34.952599,32.582085,0],[34.952598,32.582085,0],[34.952596,32.582085,0],[34.952595,32.582085,0],[34.952594,32.582086,0],[34.952593,32.582086,0],[34.952591,32.582086,0],[34.95259,32.582086,0],[34.952589,32.582086,0],[34.952588,32.582087,0],[34.952587,32.582087,0],[34.952585,32.582087,0],[34.952584,32.582087,0],[34.952583,32.582087,0],[34.952582,32.582088,0],[34.95258,32.582088,0],[34.952579,32.582088,0],[34.952578,32.582088,0],[34.952577,32.582089,0],[34.952576,32.582089,0],[34.952574,32.582089,0],[34.952573,32.582089,0],[34.952572,32.58209,0],[34.952571,32.58209,0],[34.952569,32.58209,0],[34.952568,32.58209,0],[34.952567,32.582091,0],[34.952566,32.582091,0],[34.952565,32.582091,0],[34.952563,32.582091,0],[34.952562,32.582092,0],[34.952561,32.582092,0],[34.95256,32.582092,0],[34.952559,32.582092,0],[34.952557,32.582093,0],[34.952556,32.582093,0],[34.952555,32.582093,0],[34.952554,32.582093,0],[34.952552,32.582094,0],[34.952551,32.582094,0],[34.95255,32.582094,0],[34.952549,32.582094,0],[34.952548,32.582095,0],[34.952546,32.582095,0],[34.952545,32.582095,0],[34.952544,32.582096,0],[34.952543,32.582096,0],[34.952542,32.582096,0],[34.95254,32.582096,0],[34.952539,32.582097,0],[34.952538,32.582097,0],[34.952537,32.582097,0],[34.952535,32.582098,0],[34.952534,32.582098,0],[34.952533,32.582098,0],[34.952531,32.582099,0],[34.95253,32.582099,0],[34.952529,32.582099,0],[34.952528,32.5821,0],[34.952527,32.5821,0],[34.952525,32.5821,0],[34.952524,32.5821,0],[34.952523,32.582101,0],[34.952522,32.582101,0],[34.952521,32.582101,0],[34.952519,32.582102,0],[34.952518,32.582102,0],[34.952517,32.582102,0],[34.952516,32.582103,0],[34.952515,32.582103,0],[34.952513,32.582103,0],[34.952512,32.582104,0],[34.952511,32.582104,0],[34.95251,32.582104,0],[34.952509,32.582105,0],[34.952507,32.582105,0],[34.952506,32.582105,0],[34.952505,32.582106,0],[34.952504,32.582106,0],[34.952503,32.582106,0],[34.952502,32.582107,0],[34.9525,32.582107,0],[34.952499,32.582107,0],[34.952498,32.582108,0],[34.952497,32.582108,0],[34.952496,32.582108,0],[34.952494,32.582109,0],[34.952493,32.582109,0],[34.952492,32.582109,0],[34.952491,32.58211,0],[34.95249,32.58211,0],[34.952489,32.58211,0],[34.952487,32.582111,0],[34.952486,32.582111,0],[34.952485,32.582112,0],[34.952484,32.582112,0],[34.952483,32.582112,0],[34.952482,32.582113,0],[34.95248,32.582113,0],[34.952479,32.582113,0],[34.952478,32.582114,0],[34.952477,32.582114,0],[34.952476,32.582115,0],[34.952475,32.582115,0],[34.952473,32.582115,0],[34.952472,32.582116,0],[34.952471,32.582116,0],[34.95247,32.582116,0],[34.952469,32.582117,0],[34.952468,32.582117,0],[34.952466,32.582118,0],[34.952465,32.582118,0],[34.952464,32.582118,0],[34.952463,32.582119,0],[34.952462,32.582119,0],[34.952461,32.58212,0],[34.95246,32.58212,0],[34.952458,32.58212,0],[34.952457,32.582121,0],[34.952456,32.582121,0],[34.952455,32.582122,0],[34.952454,32.582122,0],[34.952453,32.582123,0],[34.952451,32.582123,0],[34.95245,32.582123,0],[34.952449,32.582124,0],[34.952448,32.582124,0],[34.952447,32.582125,0],[34.952446,32.582125,0],[34.952445,32.582125,0],[34.952443,32.582126,0],[34.952442,32.582126,0],[34.952441,32.582127,0],[34.95244,32.582127,0],[34.952439,32.582128,0],[34.952438,32.582128,0],[34.952437,32.582128,0],[34.952435,32.582129,0],[34.952434,32.582129,0],[34.952433,32.58213,0],[34.952432,32.58213,0],[34.952431,32.582131,0],[34.95243,32.582131,0],[34.952429,32.582132,0],[34.952428,32.582132,0],[34.952426,32.582132,0],[34.952425,32.582133,0],[34.952424,32.582133,0],[34.952423,32.582134,0],[34.952422,32.582134,0],[34.952421,32.582135,0],[34.95242,32.582135,0],[34.952419,32.582136,0],[34.952417,32.582136,0],[34.952416,32.582137,0],[34.952415,32.582137,0],[34.952414,32.582138,0],[34.952413,32.582138,0],[34.952412,32.582138,0],[34.952411,32.582139,0],[34.95241,32.582139,0],[34.952408,32.58214,0],[34.952407,32.58214,0],[34.952406,32.582141,0],[34.952405,32.582141,0],[34.952404,32.582142,0],[34.952403,32.582142,0],[34.952402,32.582143,0],[34.952401,32.582143,0],[34.9524,32.582144,0],[34.952398,32.582144,0],[34.952397,32.582145,0],[34.952396,32.582145,0],[34.952395,32.582146,0],[34.952394,32.582146,0],[34.952393,32.582147,0],[34.952392,32.582147,0],[34.952391,32.582148,0],[34.95239,32.582148,0],[34.952389,32.582149,0],[34.952387,32.582149,0],[34.952386,32.58215,0],[34.952385,32.58215,0],[34.952384,32.582151,0],[34.952383,32.582151,0],[34.952382,32.582152,0],[34.952381,32.582152,0],[34.95238,32.582153,0],[34.952379,32.582153,0],[34.952378,32.582154,0],[34.952377,32.582154,0],[34.952376,32.582155,0],[34.952374,32.582155,0],[34.952373,32.582156,0],[34.952372,32.582157,0],[34.952371,32.582157,0],[34.95237,32.582158,0],[34.952369,32.582158,0],[34.952368,32.582159,0],[34.952367,32.582159,0],[34.952366,32.58216,0],[34.952365,32.58216,0],[34.952364,32.582161,0],[34.952363,32.582161,0],[34.952362,32.582162,0],[34.95236,32.582162,0],[34.952359,32.582163,0],[34.952358,32.582164,0],[34.952357,32.582164,0],[34.952356,32.582165,0],[34.952355,32.582165,0],[34.952354,32.582166,0],[34.952353,32.582166,0],[34.952352,32.582167,0],[34.952351,32.582167,0],[34.95235,32.582168,0],[34.952349,32.582169,0],[34.952348,32.582169,0],[34.952347,32.58217,0],[34.952346,32.58217,0],[34.952345,32.582171,0],[34.952344,32.582171,0],[34.952342,32.582172,0],[34.952341,32.582173,0],[34.95234,32.582173,0],[34.952339,32.582174,0],[34.952338,32.582174,0],[34.952337,32.582175,0],[34.952336,32.582175,0],[34.952335,32.582176,0],[34.952334,32.582177,0],[34.952333,32.582177,0],[34.952332,32.582178,0],[34.952331,32.582178,0],[34.95233,32.582179,0],[34.952329,32.58218,0],[34.952328,32.58218,0],[34.952327,32.582181,0],[34.952326,32.582181,0],[34.952325,32.582182,0],[34.952324,32.582183,0],[34.952323,32.582183,0],[34.952322,32.582184,0],[34.952321,32.582184,0],[34.95232,32.582185,0],[34.952319,32.582186,0],[34.952318,32.582186,0],[34.952317,32.582187,0],[34.952316,32.582187,0],[34.952315,32.582188,0],[34.952314,32.582189,0],[34.952313,32.582189,0],[34.952312,32.58219,0],[34.952311,32.582191,0],[34.95231,32.582191,0],[34.952309,32.582192,0],[34.952308,32.582192,0],[34.952307,32.582193,0],[34.952306,32.582194,0],[34.952305,32.582194,0],[34.952303,32.582195,0],[34.952302,32.582196,0],[34.952301,32.582196,0],[34.9523,32.582197,0],[34.9523,32.582197,0],[34.952299,32.582198,0],[34.952298,32.582199,0],[34.952297,32.582199,0],[34.952296,32.5822,0],[34.952295,32.582201,0],[34.952294,32.582201,0],[34.952293,32.582202,0],[34.952281,32.582209,0],[34.95228,32.58221,0],[34.952279,32.582211,0],[34.952278,32.582212,0],[34.952277,32.582212,0],[34.952276,32.582213,0],[34.952275,32.582214,0],[34.952274,32.582214,0],[34.952273,32.582215,0],[34.952272,32.582216,0],[34.952271,32.582216,0],[34.95227,32.582217,0],[34.952269,32.582218,0],[34.952268,32.582218,0],[34.952267,32.582219,0],[34.952266,32.58222,0],[34.952265,32.58222,0],[34.952264,32.582221,0],[34.952263,32.582222,0],[34.952262,32.582223,0],[34.952261,32.582223,0],[34.95226,32.582224,0],[34.95226,32.582225,0],[34.952259,32.582225,0],[34.952258,32.582226,0],[34.952257,32.582227,0],[34.952256,32.582227,0],[34.952255,32.582228,0],[34.952254,32.582229,0],[34.952253,32.582229,0],[34.952252,32.58223,0],[34.952251,32.582231,0],[34.95225,32.582231,0],[34.952249,32.582232,0],[34.952248,32.582233,0],[34.952247,32.582234,0],[34.952246,32.582234,0],[34.952245,32.582235,0],[34.952244,32.582236,0],[34.952244,32.582236,0],[34.952243,32.582237,0],[34.952242,32.582238,0],[34.952241,32.582239,0],[34.95224,32.582239,0],[34.952239,32.58224,0],[34.952238,32.582241,0],[34.952237,32.582241,0],[34.952236,32.582242,0],[34.952235,32.582243,0],[34.952234,32.582244,0],[34.952233,32.582244,0],[34.952233,32.582245,0],[34.952232,32.582246,0],[34.952231,32.582246,0],[34.95223,32.582247,0],[34.952229,32.582248,0],[34.952228,32.582249,0],[34.952227,32.582249,0],[34.952226,32.58225,0],[34.952225,32.582251,0],[34.952224,32.582252,0],[34.952224,32.582252,0],[34.952223,32.582253,0],[34.952222,32.582254,0],[34.952221,32.582255,0],[34.95222,32.582255,0],[34.952219,32.582256,0],[34.952218,32.582257,0],[34.952217,32.582258,0],[34.952216,32.582258,0],[34.952216,32.582259,0],[34.952215,32.58226,0],[34.952214,32.582261,0],[34.952213,32.582261,0],[34.952212,32.582262,0],[34.952211,32.582263,0],[34.95221,32.582264,0],[34.952209,32.582264,0],[34.952209,32.582265,0],[34.952208,32.582266,0],[34.952207,32.582267,0],[34.952206,32.582267,0],[34.952205,32.582268,0],[34.952204,32.582269,0],[34.952203,32.58227,0],[34.952203,32.58227,0],[34.952202,32.582271,0],[34.952201,32.582272,0],[34.9522,32.582273,0],[34.952199,32.582274,0],[34.952198,32.582274,0],[34.952197,32.582275,0],[34.952197,32.582276,0],[34.952196,32.582277,0],[34.952195,32.582277,0],[34.952194,32.582278,0],[34.952193,32.582279,0],[34.952192,32.58228,0],[34.952192,32.582281,0],[34.952191,32.582281,0],[34.95219,32.582282,0],[34.952189,32.582283,0],[34.952188,32.582284,0],[34.952187,32.582284,0],[34.952187,32.582285,0],[34.952186,32.582286,0],[34.952185,32.582287,0],[34.952184,32.582288,0],[34.952183,32.582288,0],[34.952182,32.582289,0],[34.952182,32.58229,0],[34.952181,32.582291,0],[34.95218,32.582292,0],[34.952179,32.582292,0],[34.952178,32.582293,0],[34.952178,32.582294,0],[34.952177,32.582295,0],[34.952176,32.582296,0],[34.952175,32.582296,0],[34.952174,32.582297,0],[34.952174,32.582298,0],[34.952173,32.582299,0],[34.952172,32.5823,0],[34.952171,32.582301,0],[34.95217,32.582301,0],[34.95217,32.582302,0],[34.952169,32.582303,0],[34.952168,32.582304,0],[34.952167,32.582305,0],[34.952166,32.582305,0],[34.952166,32.582306,0],[34.952165,32.582307,0],[34.952164,32.582308,0],[34.952163,32.582309,0],[34.952162,32.58231,0],[34.952162,32.58231,0],[34.952161,32.582311,0],[34.95216,32.582312,0],[34.952159,32.582313,0],[34.952159,32.582314,0],[34.952158,32.582315,0],[34.952157,32.582315,0],[34.952156,32.582316,0],[34.952156,32.582317,0],[34.952155,32.582318,0],[34.952154,32.582319,0],[34.952153,32.58232,0],[34.952152,32.58232,0],[34.952152,32.582321,0],[34.952151,32.582322,0],[34.95215,32.582323,0],[34.952149,32.582324,0],[34.952148,32.582326,0],[34.952147,32.582327,0],[34.952146,32.582328,0],[34.952144,32.582329,0],[34.952143,32.582331,0],[34.952142,32.582332,0],[34.952141,32.582333,0],[34.95214,32.582335,0],[34.952139,32.582336,0],[34.952138,32.582337,0],[34.952137,32.582338,0],[34.952136,32.58234,0],[34.952135,32.582341,0],[34.952134,32.582342,0],[34.952133,32.582343,0],[34.952131,32.582345,0],[34.95213,32.582346,0],[34.952129,32.582347,0],[34.952128,32.582349,0],[34.952127,32.58235,0],[34.952126,32.582351,0],[34.952125,32.582352,0],[34.952124,32.582354,0],[34.952123,32.582355,0],[34.952122,32.582356,0],[34.952121,32.582358,0],[34.95212,32.582359,0],[34.952119,32.58236,0],[34.952118,32.582362,0],[34.952117,32.582363,0],[34.952116,32.582364,0],[34.952115,32.582365,0],[34.952114,32.582367,0],[34.952113,32.582368,0],[34.952112,32.582369,0],[34.952111,32.582371,0],[34.95211,32.582372,0],[34.952109,32.582373,0],[34.952108,32.582375,0],[34.952107,32.582376,0],[34.952106,32.582377,0],[34.952104,32.582379,0],[34.952103,32.582381,0],[34.952102,32.582382,0],[34.952101,32.582383,0],[34.9521,32.582385,0],[34.952099,32.582386,0],[34.952098,32.582387,0],[34.952097,32.582389,0],[34.952096,32.58239,0],[34.952095,32.582391,0],[34.952094,32.582393,0],[34.952093,32.582394,0],[34.952092,32.582395,0],[34.952091,32.582397,0],[34.95209,32.582398,0],[34.952089,32.582399,0],[34.952088,32.582401,0],[34.952087,32.582402,0],[34.952086,32.582404,0],[34.952085,32.582405,0],[34.952084,32.582406,0],[34.952084,32.582408,0],[34.952083,32.582409,0],[34.952082,32.58241,0],[34.952081,32.582412,0],[34.95208,32.582413,0],[34.952079,32.582414,0],[34.952078,32.582416,0],[34.952077,32.582417,0],[34.952076,32.582418,0],[34.952075,32.58242,0],[34.952074,32.582421,0],[34.952073,32.582423,0],[34.952072,32.582424,0],[34.952072,32.582425,0],[34.952071,32.582427,0],[34.95207,32.582428,0],[34.952069,32.582429,0],[34.952068,32.582431,0],[34.952067,32.582432,0],[34.952066,32.582433,0],[34.952065,32.582435,0],[34.952064,32.582436,0],[34.952063,32.582438,0],[34.952063,32.582439,0],[34.952062,32.58244,0],[34.952061,32.582442,0],[34.95206,32.582443,0],[34.952059,32.582445,0],[34.952058,32.582446,0],[34.952057,32.582447,0],[34.952057,32.582449,0],[34.952056,32.58245,0],[34.952055,32.582452,0],[34.952054,32.582453,0],[34.952053,32.582454,0],[34.952052,32.582456,0],[34.952051,32.582457,0],[34.952051,32.582458,0],[34.95205,32.58246,0],[34.952049,32.582461,0],[34.952048,32.582463,0],[34.952047,32.582464,0],[34.952046,32.582466,0],[34.952046,32.582467,0],[34.952045,32.582468,0],[34.952044,32.58247,0],[34.952043,32.582471,0],[34.952042,32.582473,0],[34.952042,32.582474,0],[34.952041,32.582475,0],[34.95204,32.582477,0],[34.952039,32.582478,0],[34.952038,32.58248,0],[34.952038,32.582481,0],[34.952037,32.582482,0],[34.952036,32.582484,0],[34.952035,32.582485,0],[34.952034,32.582487,0],[34.952034,32.582488,0],[34.952033,32.58249,0],[34.952032,32.582491,0],[34.952031,32.582492,0],[34.952031,32.582494,0],[34.95203,32.582495,0],[34.952029,32.582497,0],[34.952028,32.582498,0],[34.952028,32.5825,0],[34.952027,32.582501,0],[34.952026,32.582502,0],[34.952025,32.582504,0],[34.952025,32.582505,0],[34.952024,32.582507,0],[34.952023,32.582508,0],[34.952022,32.58251,0],[34.952022,32.582511,0],[34.952021,32.582513,0],[34.95202,32.582514,0],[34.952019,32.582515,0],[34.952019,32.582517,0],[34.952018,32.582518,0],[34.952017,32.58252,0],[34.952017,32.582521,0],[34.952016,32.582523,0],[34.952015,32.582524,0],[34.952014,32.582526,0],[34.952014,32.582527,0],[34.952013,32.582528,0],[34.952012,32.58253,0],[34.952012,32.582531,0],[34.952011,32.582533,0],[34.95201,32.582534,0],[34.95201,32.582536,0],[34.952009,32.582537,0],[34.952008,32.582539,0],[34.952008,32.58254,0],[34.952007,32.582542,0],[34.952006,32.582543,0],[34.952006,32.582545,0],[34.952005,32.582546,0],[34.952004,32.582547,0],[34.952004,32.582549,0],[34.952003,32.58255,0],[34.952002,32.582552,0],[34.952002,32.582553,0],[34.952001,32.582555,0],[34.952,32.582556,0],[34.952,32.582558,0],[34.951999,32.582559,0],[34.951998,32.582561,0],[34.951998,32.582562,0],[34.951997,32.582564,0],[34.951997,32.582565,0],[34.951996,32.582567,0],[34.951995,32.582568,0],[34.951995,32.58257,0],[34.951994,32.582571,0],[34.951994,32.582573,0],[34.951993,32.582574,0],[34.951992,32.582576,0],[34.951992,32.582577,0],[34.951991,32.582578,0],[34.951991,32.58258,0],[34.95199,32.582581,0],[34.951989,32.582583,0],[34.951989,32.582584,0],[34.951988,32.582586,0],[34.951988,32.582587,0],[34.951987,32.582589,0],[34.951987,32.58259,0],[34.951986,32.582592,0],[34.951985,32.582593,0],[34.951985,32.582595,0],[34.951984,32.582596,0],[34.951983,32.582599,0],[34.951983,32.582601,0],[34.951982,32.582602,0],[34.951982,32.582604,0],[34.951981,32.582605,0],[34.951981,32.582607,0],[34.95198,32.582608,0],[34.951979,32.58261,0],[34.951979,32.582611,0],[34.951978,32.582613,0],[34.951978,32.582614,0],[34.951977,32.582616,0],[34.951977,32.582617,0],[34.951976,32.582619,0],[34.951976,32.58262,0],[34.951975,32.582622,0],[34.951975,32.582623,0],[34.951974,32.582625,0],[34.951974,32.582626,0],[34.951973,32.582628,0],[34.951973,32.582629,0],[34.951972,32.582631,0],[34.951972,32.582632,0],[34.951971,32.582634,0],[34.951971,32.582635,0],[34.95197,32.582637,0],[34.95197,32.582638,0],[34.95197,32.58264,0],[34.951969,32.582641,0],[34.951969,32.582643,0],[34.951968,32.582644,0],[34.951968,32.582646,0],[34.951967,32.582647,0],[34.951967,32.582649,0],[34.951966,32.58265,0],[34.951966,32.582652,0],[34.951965,32.582654,0],[34.951965,32.582655,0],[34.951965,32.582657,0],[34.951964,32.582658,0],[34.951964,32.58266,0],[34.951963,32.582661,0],[34.951963,32.582663,0],[34.951962,32.582664,0],[34.951962,32.582666,0],[34.951962,32.582667,0],[34.951961,32.582669,0],[34.951961,32.58267,0],[34.95196,32.582672,0],[34.95196,32.582673,0],[34.95196,32.582675,0],[34.951959,32.582676,0],[34.951959,32.582678,0],[34.951958,32.58268,0],[34.951958,32.582681,0],[34.951958,32.582683,0],[34.951957,32.582684,0],[34.951957,32.582686,0],[34.951956,32.582687,0],[34.951956,32.582689,0],[34.951956,32.58269,0],[34.951955,32.582692,0],[34.951955,32.582693,0],[34.951955,32.582695,0],[34.951954,32.582696,0],[34.951954,32.582698,0],[34.951954,32.582699,0],[34.951953,32.582701,0],[34.951953,32.582703,0],[34.951953,32.582704,0],[34.951952,32.582706,0],[34.951952,32.582707,0],[34.951952,32.582709,0],[34.951951,32.58271,0],[34.951951,32.582712,0],[34.951951,32.582713,0],[34.95195,32.582715,0],[34.95195,32.582716,0],[34.95195,32.582718,0],[34.951949,32.58272,0],[34.951949,32.582721,0],[34.951949,32.582723,0],[34.951948,32.582724,0],[34.951948,32.582726,0],[34.951948,32.582727,0],[34.951948,32.582729,0],[34.951947,32.58273,0],[34.951947,32.582732,0],[34.951947,32.582734,0],[34.951946,32.582735,0],[34.951946,32.582737,0],[34.951946,32.582738,0],[34.951946,32.58274,0],[34.951945,32.582741,0],[34.951945,32.582743,0],[34.951945,32.582744,0],[34.951945,32.582746,0],[34.951944,32.582747,0],[34.951944,32.582749,0],[34.951944,32.582751,0],[34.951944,32.582752,0],[34.951943,32.582754,0],[34.951943,32.582755,0],[34.951943,32.582757,0],[34.951943,32.582758,0],[34.951943,32.58276,0],[34.951942,32.582762,0],[34.951942,32.582763,0],[34.951942,32.582765,0],[34.951942,32.582766,0],[34.951941,32.582768,0],[34.951941,32.582769,0],[34.951941,32.582771,0],[34.951941,32.582772,0],[34.951941,32.582774,0],[34.95194,32.582776,0],[34.95194,32.582777,0],[34.95194,32.582779,0],[34.95194,32.58278,0],[34.95194,32.582782,0],[34.95194,32.582783,0],[34.951939,32.582785,0],[34.951939,32.582786,0],[34.951939,32.582788,0],[34.951939,32.58279,0],[34.951939,32.582791,0],[34.951939,32.582793,0],[34.951938,32.582794,0],[34.951938,32.582796,0],[34.951938,32.582797,0],[34.951938,32.582799,0],[34.951938,32.582801,0],[34.951938,32.582802,0],[34.951938,32.582804,0],[34.951937,32.582805,0],[34.951937,32.582807,0],[34.951937,32.582808,0],[34.951937,32.58281,0],[34.951937,32.582811,0],[34.951937,32.582813,0],[34.951937,32.582815,0],[34.951937,32.582816,0],[34.951936,32.582818,0],[34.951936,32.582819,0],[34.951936,32.582821,0],[34.951936,32.582822,0],[34.951936,32.582824,0],[34.951936,32.582826,0],[34.951936,32.582827,0],[34.951936,32.582829,0],[34.951936,32.58283,0],[34.951936,32.582832,0],[34.951936,32.582833,0],[34.951935,32.582835,0],[34.951935,32.582837,0],[34.951935,32.582838,0],[34.951935,32.58284,0],[34.951935,32.582841,0],[34.951935,32.582843,0],[34.951935,32.582844,0],[34.951935,32.582846,0],[34.951935,32.582848,0],[34.951935,32.582849,0],[34.951935,32.582851,0],[34.951935,32.582852,0],[34.951935,32.582854,0],[34.951935,32.582855,0],[34.951947,32.582867,0],[34.951971,32.58289,0],[34.951762,32.583087,0],[34.951621,32.58298,0],[34.951707,32.582817,0],[34.951662,32.582806,0],[34.95159,32.582806,0],[34.951468,32.582783,0],[34.951393,32.582759,0],[34.951309,32.582742,0],[34.951284,32.582736,0],[34.951122,32.58272,0],[34.951053,32.582627,0],[34.950983,32.582548,0],[34.950855,32.582403,0]]]},"type":"Feature","properties":{"Name":"11375"}},{"geometry":{"type":"Polygon","coordinates":[[[34.950849,32.58912,0],[34.951116,32.589397,0],[34.951013,32.589441,0],[34.95103,32.589475,0],[34.95116,32.589739,0],[34.951314,32.58971,0],[34.951361,32.58983,0],[34.951481,32.590144,0],[34.951411,32.590158,0],[34.951557,32.590621,0],[34.951818,32.591447,0],[34.95168,32.591449,0],[34.951401,32.591445,0],[34.95147,32.591517,0],[34.952064,32.591478,0],[34.952406,32.591476,0],[34.952414,32.591487,0],[34.952409,32.591488,0],[34.952404,32.591489,0],[34.9524,32.59149,0],[34.952395,32.591491,0],[34.95239,32.591492,0],[34.952386,32.591493,0],[34.952381,32.591494,0],[34.952376,32.591495,0],[34.952372,32.591496,0],[34.952367,32.591497,0],[34.952362,32.591498,0],[34.952358,32.591499,0],[34.952353,32.5915,0],[34.952348,32.591501,0],[34.952344,32.591502,0],[34.952339,32.591503,0],[34.952334,32.591504,0],[34.952329,32.591505,0],[34.952325,32.591506,0],[34.95232,32.591507,0],[34.952315,32.591508,0],[34.952311,32.591509,0],[34.952306,32.59151,0],[34.952301,32.591511,0],[34.952296,32.591512,0],[34.952292,32.591513,0],[34.952287,32.591513,0],[34.952282,32.591514,0],[34.952278,32.591515,0],[34.952273,32.591516,0],[34.952268,32.591517,0],[34.952263,32.591518,0],[34.952259,32.591519,0],[34.952254,32.591519,0],[34.952249,32.59152,0],[34.952244,32.591521,0],[34.95224,32.591522,0],[34.952235,32.591523,0],[34.95223,32.591524,0],[34.952225,32.591524,0],[34.952221,32.591525,0],[34.952216,32.591526,0],[34.952211,32.591527,0],[34.952206,32.591527,0],[34.952202,32.591528,0],[34.952197,32.591529,0],[34.952192,32.59153,0],[34.952187,32.59153,0],[34.952183,32.591531,0],[34.952178,32.591532,0],[34.952173,32.591533,0],[34.952168,32.591533,0],[34.952164,32.591534,0],[34.952159,32.591535,0],[34.952154,32.591535,0],[34.952149,32.591536,0],[34.952145,32.591537,0],[34.95214,32.591537,0],[34.952135,32.591538,0],[34.95213,32.591539,0],[34.952126,32.591539,0],[34.952121,32.59154,0],[34.952116,32.591541,0],[34.952111,32.591541,0],[34.952106,32.591542,0],[34.952102,32.591542,0],[34.952097,32.591543,0],[34.952092,32.591544,0],[34.952087,32.591544,0],[34.952082,32.591545,0],[34.952078,32.591545,0],[34.952073,32.591546,0],[34.952068,32.591547,0],[34.952063,32.591547,0],[34.952059,32.591548,0],[34.952054,32.591548,0],[34.952049,32.591549,0],[34.952044,32.591549,0],[34.952039,32.59155,0],[34.952035,32.59155,0],[34.95203,32.591551,0],[34.952025,32.591551,0],[34.95202,32.591552,0],[34.952015,32.591552,0],[34.952011,32.591553,0],[34.952006,32.591553,0],[34.952001,32.591554,0],[34.951996,32.591554,0],[34.951991,32.591555,0],[34.951987,32.591555,0],[34.951982,32.591556,0],[34.951977,32.591556,0],[34.951972,32.591556,0],[34.951967,32.591557,0],[34.951962,32.591557,0],[34.951958,32.591558,0],[34.951953,32.591558,0],[34.951948,32.591558,0],[34.951943,32.591559,0],[34.951938,32.591559,0],[34.951934,32.59156,0],[34.951929,32.59156,0],[34.951924,32.59156,0],[34.951919,32.591561,0],[34.951914,32.591561,0],[34.95191,32.591561,0],[34.951905,32.591562,0],[34.9519,32.591562,0],[34.951895,32.591562,0],[34.95189,32.591563,0],[34.951885,32.591563,0],[34.951881,32.591563,0],[34.951876,32.591563,0],[34.951871,32.591564,0],[34.951866,32.591564,0],[34.951861,32.591564,0],[34.951856,32.591564,0],[34.951911,32.591739,0],[34.952178,32.591719,0],[34.952311,32.591701,0],[34.952431,32.591678,0],[34.952699,32.591613,0],[34.952704,32.591611,0],[34.952708,32.59161,0],[34.952712,32.591609,0],[34.952716,32.591607,0],[34.95272,32.591606,0],[34.952724,32.591605,0],[34.952727,32.591604,0],[34.952731,32.591603,0],[34.952735,32.591601,0],[34.952739,32.5916,0],[34.952743,32.591599,0],[34.952747,32.591598,0],[34.952751,32.591596,0],[34.952755,32.591595,0],[34.952758,32.591594,0],[34.952762,32.591593,0],[34.952766,32.591591,0],[34.95277,32.59159,0],[34.952774,32.591589,0],[34.952778,32.591588,0],[34.952781,32.591586,0],[34.952785,32.591585,0],[34.952789,32.591584,0],[34.952793,32.591582,0],[34.952797,32.591581,0],[34.952801,32.59158,0],[34.952804,32.591578,0],[34.952808,32.591577,0],[34.952812,32.591576,0],[34.952816,32.591574,0],[34.95282,32.591573,0],[34.952823,32.591572,0],[34.952827,32.59157,0],[34.952831,32.591569,0],[34.952835,32.591567,0],[34.952839,32.591566,0],[34.952842,32.591565,0],[34.952846,32.591563,0],[34.95285,32.591562,0],[34.952854,32.591561,0],[34.952858,32.591559,0],[34.952861,32.591558,0],[34.952865,32.591556,0],[34.952869,32.591555,0],[34.952873,32.591553,0],[34.952877,32.591552,0],[34.95288,32.591551,0],[34.952884,32.591549,0],[34.952888,32.591548,0],[34.952892,32.591546,0],[34.952895,32.591545,0],[34.952899,32.591543,0],[34.952903,32.591542,0],[34.952907,32.59154,0],[34.95291,32.591539,0],[34.952914,32.591537,0],[34.952918,32.591536,0],[34.952922,32.591534,0],[34.952925,32.591533,0],[34.952929,32.591531,0],[34.952933,32.59153,0],[34.952936,32.591528,0],[34.95294,32.591527,0],[34.952944,32.591525,0],[34.952948,32.591524,0],[34.952951,32.591522,0],[34.952955,32.591521,0],[34.952959,32.591519,0],[34.952962,32.591518,0],[34.952966,32.591516,0],[34.95297,32.591514,0],[34.952973,32.591513,0],[34.952977,32.591511,0],[34.952981,32.59151,0],[34.952984,32.591508,0],[34.952988,32.591506,0],[34.952992,32.591505,0],[34.952997,32.591503,0],[34.953001,32.591501,0],[34.953004,32.591499,0],[34.953008,32.591498,0],[34.953012,32.591496,0],[34.953015,32.591494,0],[34.953019,32.591493,0],[34.953022,32.591491,0],[34.953026,32.59149,0],[34.95303,32.591488,0],[34.953033,32.591486,0],[34.953037,32.591485,0],[34.953041,32.591483,0],[34.953044,32.591481,0],[34.953048,32.591479,0],[34.953051,32.591478,0],[34.953055,32.591476,0],[34.953059,32.591474,0],[34.953062,32.591473,0],[34.953066,32.591471,0],[34.95307,32.591469,0],[34.953073,32.591468,0],[34.953077,32.591466,0],[34.95308,32.591464,0],[34.953084,32.591462,0],[34.953087,32.591461,0],[34.953091,32.591459,0],[34.953095,32.591457,0],[34.953098,32.591455,0],[34.953102,32.591454,0],[34.953105,32.591452,0],[34.953109,32.59145,0],[34.953112,32.591448,0],[34.953116,32.591446,0],[34.95312,32.591445,0],[34.953123,32.591443,0],[34.953127,32.591441,0],[34.95313,32.591439,0],[34.953134,32.591437,0],[34.953137,32.591436,0],[34.953141,32.591434,0],[34.953144,32.591432,0],[34.953148,32.59143,0],[34.953151,32.591428,0],[34.953155,32.591426,0],[34.953158,32.591425,0],[34.953162,32.591423,0],[34.953165,32.591421,0],[34.953169,32.591419,0],[34.953172,32.591417,0],[34.953176,32.591415,0],[34.953179,32.591413,0],[34.953183,32.591412,0],[34.953186,32.59141,0],[34.95319,32.591408,0],[34.953193,32.591406,0],[34.953197,32.591404,0],[34.9532,32.591402,0],[34.953204,32.5914,0],[34.953207,32.591398,0],[34.953211,32.591396,0],[34.953214,32.591394,0],[34.953217,32.591392,0],[34.953221,32.591391,0],[34.953224,32.591389,0],[34.953228,32.591387,0],[34.953231,32.591385,0],[34.953235,32.591383,0],[34.953238,32.591381,0],[34.953241,32.591379,0],[34.953245,32.591377,0],[34.953248,32.591375,0],[34.953252,32.591373,0],[34.953255,32.591371,0],[34.953258,32.591369,0],[34.953262,32.591367,0],[34.953265,32.591365,0],[34.953364,32.591318,0],[34.953479,32.591225,0],[34.953583,32.591115,0],[34.953676,32.590994,0],[34.953765,32.590852,0],[34.954167,32.590142,0],[34.954306,32.589807,0],[34.954396,32.589498,0],[34.954602,32.588821,0],[34.954623,32.588604,0],[34.954664,32.58852,0],[34.95477,32.588446,0],[34.954827,32.588363,0],[34.954935,32.588323,0],[34.954966,32.588246,0],[34.95505,32.588168,0],[34.955112,32.588,0],[34.955161,32.587903,0],[34.955374,32.587698,0],[34.955455,32.587627,0],[34.955204,32.587461,0],[34.953731,32.586482,0],[34.953564,32.58661,0],[34.953544,32.586775,0],[34.953261,32.586765,0],[34.953112,32.58676,0],[34.952855,32.586754,0],[34.952589,32.586748,0],[34.95244,32.586748,0],[34.952113,32.586764,0],[34.951816,32.586713,0],[34.951598,32.586627,0],[34.951471,32.58714,0],[34.951313,32.587775,0],[34.9512,32.588227,0],[34.951199,32.588229,0],[34.951199,32.588231,0],[34.951198,32.588234,0],[34.951198,32.588236,0],[34.951197,32.588238,0],[34.951196,32.588241,0],[34.951196,32.588243,0],[34.951195,32.588246,0],[34.951195,32.588248,0],[34.951194,32.58825,0],[34.951193,32.588253,0],[34.951193,32.588255,0],[34.951192,32.588257,0],[34.951191,32.58826,0],[34.951191,32.588262,0],[34.95119,32.588264,0],[34.951189,32.588266,0],[34.951189,32.588269,0],[34.951188,32.588271,0],[34.951187,32.588273,0],[34.951187,32.588276,0],[34.951186,32.588278,0],[34.951185,32.58828,0],[34.951185,32.588283,0],[34.951184,32.588285,0],[34.951183,32.588287,0],[34.951183,32.58829,0],[34.951182,32.588292,0],[34.951181,32.588294,0],[34.95118,32.588297,0],[34.95118,32.588299,0],[34.951179,32.588301,0],[34.951178,32.588304,0],[34.951177,32.588306,0],[34.951177,32.588308,0],[34.951176,32.588311,0],[34.951175,32.588313,0],[34.951174,32.588315,0],[34.951174,32.588317,0],[34.951173,32.58832,0],[34.951172,32.588322,0],[34.951171,32.588324,0],[34.951171,32.588327,0],[34.95117,32.588329,0],[34.951169,32.588331,0],[34.951168,32.588334,0],[34.951167,32.588336,0],[34.951167,32.588338,0],[34.951166,32.58834,0],[34.951165,32.588343,0],[34.951164,32.588345,0],[34.951163,32.588347,0],[34.951162,32.58835,0],[34.951162,32.588352,0],[34.951161,32.588354,0],[34.95116,32.588356,0],[34.951159,32.588359,0],[34.951158,32.588361,0],[34.951157,32.588363,0],[34.951156,32.588366,0],[34.951156,32.588368,0],[34.951155,32.58837,0],[34.951154,32.588372,0],[34.951153,32.588375,0],[34.951152,32.588377,0],[34.951151,32.588379,0],[34.95115,32.588381,0],[34.951149,32.588384,0],[34.951148,32.588386,0],[34.951148,32.588388,0],[34.951147,32.588391,0],[34.951146,32.588393,0],[34.951145,32.588395,0],[34.951144,32.588397,0],[34.951143,32.5884,0],[34.951142,32.588402,0],[34.951141,32.588404,0],[34.95114,32.588406,0],[34.951139,32.588409,0],[34.951138,32.588411,0],[34.951137,32.588413,0],[34.951136,32.588415,0],[34.951135,32.588418,0],[34.951134,32.58842,0],[34.951133,32.588422,0],[34.951132,32.588424,0],[34.951131,32.588427,0],[34.95113,32.588429,0],[34.951129,32.588431,0],[34.951128,32.588433,0],[34.951127,32.588436,0],[34.951126,32.588438,0],[34.951125,32.58844,0],[34.951124,32.588442,0],[34.951123,32.588444,0],[34.951122,32.588447,0],[34.951121,32.588449,0],[34.95112,32.588451,0],[34.951119,32.588453,0],[34.951118,32.588456,0],[34.951117,32.588458,0],[34.951116,32.58846,0],[34.951115,32.588462,0],[34.951114,32.588464,0],[34.951113,32.588467,0],[34.951112,32.588469,0],[34.951111,32.588471,0],[34.951109,32.588473,0],[34.951108,32.588476,0],[34.951107,32.588478,0],[34.951106,32.58848,0],[34.951105,32.588482,0],[34.951104,32.588484,0],[34.951103,32.588487,0],[34.951102,32.588489,0],[34.951101,32.588491,0],[34.9511,32.588493,0],[34.951098,32.588495,0],[34.951097,32.588498,0],[34.951096,32.5885,0],[34.951095,32.588502,0],[34.951094,32.588504,0],[34.951093,32.588506,0],[34.951091,32.588508,0],[34.95109,32.588511,0],[34.951089,32.588513,0],[34.951088,32.588515,0],[34.951087,32.588517,0],[34.951086,32.588519,0],[34.951084,32.588522,0],[34.951083,32.588524,0],[34.951082,32.588526,0],[34.951081,32.588528,0],[34.95108,32.58853,0],[34.951078,32.588532,0],[34.951077,32.588535,0],[34.951076,32.588537,0],[34.951075,32.588539,0],[34.951074,32.588541,0],[34.951072,32.588543,0],[34.951071,32.588545,0],[34.95107,32.588547,0],[34.951069,32.58855,0],[34.951067,32.588552,0],[34.951066,32.588554,0],[34.951065,32.588556,0],[34.951064,32.588558,0],[34.951062,32.58856,0],[34.951061,32.588562,0],[34.95106,32.588565,0],[34.951059,32.588567,0],[34.951057,32.588569,0],[34.951056,32.588571,0],[34.951055,32.588573,0],[34.951053,32.588575,0],[34.951052,32.588577,0],[34.951051,32.58858,0],[34.95105,32.588582,0],[34.951048,32.588584,0],[34.951047,32.588586,0],[34.951046,32.588588,0],[34.951044,32.58859,0],[34.951043,32.588592,0],[34.951042,32.588594,0],[34.95104,32.588596,0],[34.951039,32.588599,0],[34.951038,32.588601,0],[34.951036,32.588603,0],[34.951035,32.588605,0],[34.951034,32.588607,0],[34.951032,32.588609,0],[34.951031,32.588611,0],[34.951029,32.588613,0],[34.951028,32.588615,0],[34.951027,32.588617,0],[34.951025,32.58862,0],[34.951024,32.588621,0],[34.951023,32.588624,0],[34.951021,32.588626,0],[34.95102,32.588628,0],[34.951018,32.58863,0],[34.951017,32.588632,0],[34.951015,32.588634,0],[34.951014,32.588636,0],[34.951013,32.588638,0],[34.951011,32.58864,0],[34.95101,32.588642,0],[34.951008,32.588644,0],[34.951007,32.588647,0],[34.951005,32.588649,0],[34.951004,32.588651,0],[34.951003,32.588653,0],[34.951001,32.588655,0],[34.951,32.588657,0],[34.950998,32.588659,0],[34.950997,32.588661,0],[34.950995,32.588663,0],[34.950994,32.588665,0],[34.950992,32.588667,0],[34.950991,32.588669,0],[34.950989,32.588671,0],[34.950988,32.588673,0],[34.950986,32.588675,0],[34.950985,32.588677,0],[34.950983,32.588679,0],[34.950982,32.588681,0],[34.95098,32.588683,0],[34.950979,32.588685,0],[34.950977,32.588687,0],[34.950976,32.588689,0],[34.950974,32.588691,0],[34.950973,32.588693,0],[34.950971,32.588695,0],[34.95097,32.588697,0],[34.950968,32.588699,0],[34.950967,32.588701,0],[34.950965,32.588703,0],[34.950963,32.588705,0],[34.950962,32.588707,0],[34.95096,32.588709,0],[34.950959,32.588711,0],[34.950957,32.588713,0],[34.950956,32.588715,0],[34.950954,32.588717,0],[34.950952,32.588719,0],[34.950951,32.588721,0],[34.950949,32.588723,0],[34.950948,32.588725,0],[34.950946,32.588727,0],[34.950944,32.588729,0],[34.950943,32.588731,0],[34.950941,32.588733,0],[34.95094,32.588735,0],[34.950938,32.588737,0],[34.950936,32.588739,0],[34.950935,32.588741,0],[34.950933,32.588743,0],[34.950931,32.588745,0],[34.95093,32.588747,0],[34.950928,32.588749,0],[34.950926,32.588751,0],[34.950925,32.588753,0],[34.950923,32.588755,0],[34.950921,32.588756,0],[34.95092,32.588758,0],[34.950918,32.58876,0],[34.950916,32.588762,0],[34.950915,32.588764,0],[34.950913,32.588766,0],[34.950911,32.588768,0],[34.95091,32.58877,0],[34.950908,32.588772,0],[34.950906,32.588774,0],[34.950905,32.588776,0],[34.950903,32.588778,0],[34.950901,32.58878,0],[34.9509,32.588781,0],[34.950898,32.588783,0],[34.950896,32.588785,0],[34.950894,32.588787,0],[34.950893,32.588789,0],[34.950891,32.588791,0],[34.950889,32.588793,0],[34.950888,32.588794,0],[34.950887,32.588795,0],[34.950886,32.588797,0],[34.950884,32.588798,0],[34.950882,32.5888,0],[34.95088,32.588802,0],[34.950879,32.588804,0],[34.950877,32.588806,0],[34.950875,32.588808,0],[34.950873,32.58881,0],[34.950872,32.588812,0],[34.95087,32.588813,0],[34.950868,32.588815,0],[34.950866,32.588817,0],[34.950864,32.588819,0],[34.950863,32.588821,0],[34.950861,32.588823,0],[34.950859,32.588825,0],[34.950857,32.588826,0],[34.950855,32.588828,0],[34.950854,32.58883,0],[34.950852,32.588832,0],[34.95085,32.588834,0],[34.950848,32.588836,0],[34.950846,32.588837,0],[34.950845,32.588839,0],[34.950843,32.588841,0],[34.950841,32.588843,0],[34.950839,32.588845,0],[34.950837,32.588846,0],[34.950835,32.588848,0],[34.950833,32.58885,0],[34.950832,32.588852,0],[34.95083,32.588854,0],[34.950828,32.588855,0],[34.950826,32.588857,0],[34.950824,32.588859,0],[34.950822,32.588861,0],[34.95082,32.588863,0],[34.950819,32.588864,0],[34.950817,32.588866,0],[34.950815,32.588868,0],[34.950813,32.58887,0],[34.950811,32.588872,0],[34.950809,32.588873,0],[34.950807,32.588875,0],[34.950805,32.588877,0],[34.950803,32.588879,0],[34.950801,32.58888,0],[34.950799,32.588882,0],[34.950798,32.588884,0],[34.950796,32.588886,0],[34.950794,32.588887,0],[34.950792,32.588889,0],[34.95079,32.588891,0],[34.950788,32.588893,0],[34.950786,32.588894,0],[34.950784,32.588896,0],[34.950782,32.588898,0],[34.95078,32.5889,0],[34.950778,32.588901,0],[34.950776,32.588903,0],[34.950774,32.588905,0],[34.950772,32.588906,0],[34.95077,32.588908,0],[34.950768,32.58891,0],[34.950766,32.588912,0],[34.950764,32.588913,0],[34.950762,32.588915,0],[34.95076,32.588917,0],[34.950758,32.588918,0],[34.950756,32.58892,0],[34.950754,32.588922,0],[34.950752,32.588924,0],[34.95075,32.588925,0],[34.950748,32.588927,0],[34.950746,32.588929,0],[34.950744,32.58893,0],[34.950742,32.588932,0],[34.95074,32.588934,0],[34.950738,32.588935,0],[34.950736,32.588937,0],[34.950734,32.588939,0],[34.950732,32.58894,0],[34.95073,32.588942,0],[34.950728,32.588944,0],[34.950726,32.588945,0],[34.950724,32.588947,0],[34.950722,32.588948,0],[34.95072,32.58895,0],[34.950718,32.588952,0],[34.950716,32.588953,0],[34.950714,32.588955,0],[34.950712,32.588957,0],[34.95071,32.588958,0],[34.950707,32.58896,0],[34.950705,32.588962,0],[34.950703,32.588963,0],[34.950701,32.588965,0],[34.950699,32.588966,0],[34.950697,32.588968,0],[34.950695,32.58897,0],[34.950693,32.588971,0],[34.950691,32.588973,0],[34.950689,32.588974,0],[34.950687,32.588976,0],[34.950684,32.588978,0],[34.950682,32.588979,0],[34.95068,32.588981,0],[34.950677,32.588983,0],[34.950849,32.58912,0]]]},"type":"Feature","properties":{"Name":"11374"}},{"geometry":{"type":"Polygon","coordinates":[[[34.951471,32.58714,0],[34.951598,32.586627,0],[34.951731,32.586093,0],[34.951449,32.586046,0],[34.951191,32.585997,0],[34.950967,32.585933,0],[34.950758,32.585872,0],[34.9508,32.585847,0],[34.950798,32.585845,0],[34.950797,32.585844,0],[34.950796,32.585843,0],[34.950795,32.585842,0],[34.950794,32.58584,0],[34.950793,32.585839,0],[34.950791,32.585838,0],[34.95079,32.585837,0],[34.950789,32.585836,0],[34.950788,32.585835,0],[34.950787,32.585834,0],[34.950785,32.585832,0],[34.950784,32.585831,0],[34.950783,32.58583,0],[34.950782,32.585829,0],[34.950781,32.585828,0],[34.950779,32.585827,0],[34.950778,32.585826,0],[34.950777,32.585825,0],[34.950776,32.585823,0],[34.950775,32.585822,0],[34.950773,32.585821,0],[34.950772,32.58582,0],[34.950771,32.585819,0],[34.95077,32.585818,0],[34.950768,32.585817,0],[34.950767,32.585816,0],[34.950766,32.585814,0],[34.950765,32.585813,0],[34.950764,32.585812,0],[34.950762,32.585811,0],[34.950761,32.58581,0],[34.95076,32.585809,0],[34.950759,32.585808,0],[34.950757,32.585807,0],[34.950756,32.585806,0],[34.950755,32.585805,0],[34.950754,32.585803,0],[34.950752,32.585802,0],[34.950751,32.585801,0],[34.95075,32.5858,0],[34.950749,32.585799,0],[34.950747,32.585798,0],[34.950745,32.585796,0],[34.950744,32.585795,0],[34.950743,32.585794,0],[34.950741,32.585793,0],[34.95074,32.585792,0],[34.950739,32.585791,0],[34.950738,32.58579,0],[34.950736,32.585789,0],[34.950735,32.585788,0],[34.950734,32.585787,0],[34.950732,32.585786,0],[34.950731,32.585785,0],[34.95073,32.585783,0],[34.950729,32.585782,0],[34.950727,32.585781,0],[34.950726,32.58578,0],[34.950725,32.585779,0],[34.950723,32.585778,0],[34.950722,32.585777,0],[34.950721,32.585776,0],[34.950719,32.585775,0],[34.950718,32.585774,0],[34.950717,32.585773,0],[34.950715,32.585772,0],[34.950714,32.585771,0],[34.950713,32.58577,0],[34.950712,32.585769,0],[34.95071,32.585768,0],[34.950709,32.585767,0],[34.950708,32.585766,0],[34.950706,32.585765,0],[34.950705,32.585764,0],[34.950704,32.585763,0],[34.950702,32.585762,0],[34.950701,32.585761,0],[34.950699,32.585759,0],[34.950697,32.585758,0],[34.950696,32.585757,0],[34.950695,32.585756,0],[34.950693,32.585755,0],[34.950692,32.585754,0],[34.95069,32.585753,0],[34.950689,32.585752,0],[34.950688,32.585751,0],[34.950686,32.58575,0],[34.950685,32.585749,0],[34.950684,32.585748,0],[34.950682,32.585747,0],[34.950681,32.585746,0],[34.95068,32.585745,0],[34.950678,32.585744,0],[34.950677,32.585743,0],[34.950675,32.585742,0],[34.950674,32.585741,0],[34.950673,32.58574,0],[34.950671,32.585739,0],[34.95067,32.585738,0],[34.950668,32.585737,0],[34.950667,32.585736,0],[34.950666,32.585735,0],[34.950664,32.585734,0],[34.950663,32.585733,0],[34.950662,32.585732,0],[34.95066,32.585731,0],[34.950659,32.58573,0],[34.950657,32.58573,0],[34.950656,32.585729,0],[34.950654,32.585728,0],[34.950653,32.585727,0],[34.950652,32.585726,0],[34.95065,32.585725,0],[34.950649,32.585724,0],[34.950647,32.585723,0],[34.950646,32.585722,0],[34.950645,32.585721,0],[34.950643,32.58572,0],[34.950642,32.585719,0],[34.95064,32.585718,0],[34.950639,32.585717,0],[34.950637,32.585716,0],[34.950636,32.585715,0],[34.950635,32.585715,0],[34.950633,32.585714,0],[34.950632,32.585713,0],[34.95063,32.585712,0],[34.950629,32.585711,0],[34.950627,32.58571,0],[34.950626,32.585709,0],[34.950624,32.585708,0],[34.950623,32.585707,0],[34.950622,32.585706,0],[34.95062,32.585705,0],[34.950619,32.585705,0],[34.950617,32.585704,0],[34.950616,32.585703,0],[34.950614,32.585702,0],[34.950613,32.585701,0],[34.950611,32.5857,0],[34.95061,32.585699,0],[34.950608,32.585698,0],[34.950607,32.585697,0],[34.950606,32.585697,0],[34.950604,32.585696,0],[34.950603,32.585695,0],[34.950601,32.585694,0],[34.9506,32.585693,0],[34.950598,32.585692,0],[34.950597,32.585691,0],[34.950595,32.585691,0],[34.950594,32.58569,0],[34.950592,32.585689,0],[34.950591,32.585688,0],[34.950589,32.585687,0],[34.950588,32.585686,0],[34.950586,32.585685,0],[34.950585,32.585685,0],[34.950583,32.585684,0],[34.950582,32.585683,0],[34.95058,32.585682,0],[34.950579,32.585681,0],[34.950577,32.58568,0],[34.950576,32.585679,0],[34.950574,32.585679,0],[34.950573,32.585678,0],[34.950571,32.585677,0],[34.95057,32.585676,0],[34.950568,32.585675,0],[34.950567,32.585675,0],[34.950565,32.585674,0],[34.950564,32.585673,0],[34.950562,32.585672,0],[34.950561,32.585671,0],[34.950559,32.58567,0],[34.950557,32.58567,0],[34.950556,32.585669,0],[34.950554,32.585668,0],[34.950553,32.585667,0],[34.950551,32.585666,0],[34.95055,32.585666,0],[34.950548,32.585665,0],[34.950547,32.585664,0],[34.950545,32.585663,0],[34.950544,32.585662,0],[34.950542,32.585662,0],[34.950541,32.585661,0],[34.950539,32.58566,0],[34.950538,32.585659,0],[34.950536,32.585659,0],[34.950534,32.585658,0],[34.950533,32.585657,0],[34.950531,32.585656,0],[34.95053,32.585656,0],[34.950528,32.585655,0],[34.950527,32.585654,0],[34.950525,32.585653,0],[34.950524,32.585652,0],[34.950522,32.585652,0],[34.95052,32.585651,0],[34.950519,32.58565,0],[34.950517,32.585649,0],[34.950516,32.585649,0],[34.950514,32.585648,0],[34.950513,32.585647,0],[34.950511,32.585646,0],[34.950509,32.585646,0],[34.950508,32.585645,0],[34.950506,32.585644,0],[34.950505,32.585644,0],[34.950503,32.585643,0],[34.950501,32.585642,0],[34.9505,32.585641,0],[34.950498,32.585641,0],[34.950497,32.58564,0],[34.950495,32.585639,0],[34.950494,32.585639,0],[34.950492,32.585638,0],[34.95049,32.585637,0],[34.950489,32.585636,0],[34.950487,32.585636,0],[34.950486,32.585635,0],[34.950484,32.585634,0],[34.950482,32.585634,0],[34.950481,32.585633,0],[34.950479,32.585632,0],[34.950478,32.585632,0],[34.950476,32.585631,0],[34.950474,32.58563,0],[34.950473,32.585629,0],[34.950471,32.585629,0],[34.95047,32.585628,0],[34.950468,32.585627,0],[34.950466,32.585627,0],[34.950465,32.585626,0],[34.950463,32.585625,0],[34.950461,32.585625,0],[34.95046,32.585624,0],[34.950458,32.585623,0],[34.950457,32.585623,0],[34.950455,32.585622,0],[34.950453,32.585621,0],[34.950452,32.585621,0],[34.95045,32.58562,0],[34.950448,32.585619,0],[34.950447,32.585619,0],[34.950445,32.585618,0],[34.950444,32.585618,0],[34.950442,32.585617,0],[34.95044,32.585616,0],[34.950439,32.585616,0],[34.950437,32.585615,0],[34.950435,32.585614,0],[34.950434,32.585614,0],[34.950432,32.585613,0],[34.95043,32.585612,0],[34.950429,32.585612,0],[34.950427,32.585611,0],[34.950426,32.585611,0],[34.950424,32.58561,0],[34.950422,32.585609,0],[34.950421,32.585609,0],[34.950419,32.585608,0],[34.950417,32.585608,0],[34.950416,32.585607,0],[34.950414,32.585606,0],[34.950412,32.585606,0],[34.950411,32.585605,0],[34.950409,32.585605,0],[34.950407,32.585604,0],[34.950406,32.585603,0],[34.950404,32.585603,0],[34.950402,32.585602,0],[34.950401,32.585602,0],[34.950399,32.585601,0],[34.950397,32.585601,0],[34.950396,32.5856,0],[34.950394,32.585599,0],[34.950392,32.585599,0],[34.950391,32.585598,0],[34.950389,32.585598,0],[34.950387,32.585597,0],[34.950386,32.585597,0],[34.950384,32.585596,0],[34.950382,32.585596,0],[34.950381,32.585595,0],[34.950379,32.585594,0],[34.950377,32.585594,0],[34.950376,32.585593,0],[34.950374,32.585593,0],[34.950372,32.585592,0],[34.950371,32.585592,0],[34.950369,32.585591,0],[34.950367,32.585591,0],[34.950365,32.58559,0],[34.950364,32.58559,0],[34.950362,32.585589,0],[34.95036,32.585589,0],[34.950359,32.585588,0],[34.950357,32.585588,0],[34.950355,32.585587,0],[34.950354,32.585587,0],[34.950352,32.585586,0],[34.95035,32.585586,0],[34.950349,32.585585,0],[34.950347,32.585585,0],[34.950345,32.585584,0],[34.950343,32.585584,0],[34.950342,32.585583,0],[34.95034,32.585583,0],[34.950338,32.585582,0],[34.950337,32.585582,0],[34.950335,32.585581,0],[34.950333,32.585581,0],[34.950331,32.58558,0],[34.95033,32.58558,0],[34.950328,32.585579,0],[34.950326,32.585579,0],[34.950325,32.585578,0],[34.950323,32.585578,0],[34.950321,32.585577,0],[34.950319,32.585577,0],[34.950318,32.585576,0],[34.950316,32.585576,0],[34.950314,32.585575,0],[34.950313,32.585575,0],[34.950311,32.585575,0],[34.950309,32.585574,0],[34.950307,32.585574,0],[34.950306,32.585573,0],[34.950304,32.585573,0],[34.950302,32.585572,0],[34.950301,32.585572,0],[34.950299,32.585572,0],[34.950297,32.585571,0],[34.950295,32.585571,0],[34.950294,32.58557,0],[34.950292,32.58557,0],[34.95029,32.585569,0],[34.950288,32.585569,0],[34.950287,32.585569,0],[34.950285,32.585568,0],[34.950283,32.585568,0],[34.950282,32.585567,0],[34.95028,32.585567,0],[34.950278,32.585567,0],[34.950276,32.585566,0],[34.950275,32.585566,0],[34.950273,32.585565,0],[34.950271,32.585565,0],[34.950269,32.585565,0],[34.950268,32.585564,0],[34.950266,32.585564,0],[34.950264,32.585563,0],[34.950262,32.585563,0],[34.950261,32.585563,0],[34.950259,32.585562,0],[34.950257,32.585562,0],[34.950255,32.585562,0],[34.950254,32.585561,0],[34.950252,32.585561,0],[34.95025,32.585561,0],[34.950248,32.58556,0],[34.950247,32.58556,0],[34.950245,32.585559,0],[34.950243,32.585559,0],[34.950241,32.585557,0],[34.950239,32.585557,0],[34.950237,32.585556,0],[34.950235,32.585556,0],[34.950234,32.585556,0],[34.950232,32.585555,0],[34.95023,32.585555,0],[34.950228,32.585555,0],[34.950227,32.585554,0],[34.950225,32.585554,0],[34.950223,32.585554,0],[34.950221,32.585554,0],[34.95022,32.585553,0],[34.950218,32.585553,0],[34.950216,32.585553,0],[34.950214,32.585552,0],[34.950213,32.585552,0],[34.950211,32.585552,0],[34.950209,32.585551,0],[34.950207,32.585551,0],[34.950206,32.585551,0],[34.950204,32.585551,0],[34.950202,32.58555,0],[34.9502,32.58555,0],[34.950198,32.58555,0],[34.950197,32.585549,0],[34.950195,32.585549,0],[34.950193,32.585549,0],[34.950191,32.585549,0],[34.95019,32.585548,0],[34.950188,32.585548,0],[34.950186,32.585548,0],[34.950184,32.585548,0],[34.950183,32.585547,0],[34.950181,32.585547,0],[34.950179,32.585547,0],[34.950177,32.585546,0],[34.950175,32.585546,0],[34.950174,32.585546,0],[34.950172,32.585546,0],[34.95017,32.585546,0],[34.950168,32.585545,0],[34.950167,32.585545,0],[34.950165,32.585545,0],[34.950163,32.585545,0],[34.950161,32.585544,0],[34.950159,32.585544,0],[34.950158,32.585544,0],[34.950156,32.585544,0],[34.950154,32.585543,0],[34.950152,32.585543,0],[34.95015,32.585543,0],[34.950149,32.585543,0],[34.950147,32.585543,0],[34.950145,32.585542,0],[34.950143,32.585542,0],[34.950142,32.585542,0],[34.95014,32.585542,0],[34.950138,32.585542,0],[34.950136,32.585541,0],[34.950134,32.585541,0],[34.950133,32.585541,0],[34.950131,32.585541,0],[34.950129,32.585541,0],[34.950127,32.585541,0],[34.950125,32.58554,0],[34.950124,32.58554,0],[34.950122,32.58554,0],[34.95012,32.58554,0],[34.950118,32.58554,0],[34.950117,32.58554,0],[34.950115,32.585539,0],[34.950113,32.585539,0],[34.950111,32.585539,0],[34.950109,32.585539,0],[34.950108,32.585539,0],[34.950106,32.585539,0],[34.950104,32.585538,0],[34.950102,32.585538,0],[34.9501,32.585538,0],[34.950099,32.585538,0],[34.950097,32.585538,0],[34.950095,32.585538,0],[34.950093,32.585538,0],[34.950091,32.585538,0],[34.95009,32.585537,0],[34.950088,32.585537,0],[34.950086,32.585537,0],[34.950084,32.585537,0],[34.950082,32.585537,0],[34.95008,32.585537,0],[34.950078,32.585537,0],[34.950076,32.585537,0],[34.950075,32.585536,0],[34.950073,32.585536,0],[34.950071,32.585536,0],[34.950069,32.585536,0],[34.950068,32.585536,0],[34.950066,32.585536,0],[34.950064,32.585536,0],[34.950062,32.585536,0],[34.95006,32.585536,0],[34.950059,32.585536,0],[34.950057,32.585536,0],[34.950055,32.585536,0],[34.950053,32.585535,0],[34.950051,32.585535,0],[34.95005,32.585535,0],[34.950048,32.585535,0],[34.950046,32.585535,0],[34.950044,32.585535,0],[34.950042,32.585535,0],[34.950041,32.585535,0],[34.950039,32.585535,0],[34.950037,32.585535,0],[34.950035,32.585535,0],[34.950033,32.585535,0],[34.950032,32.585535,0],[34.95003,32.585535,0],[34.950028,32.585535,0],[34.950026,32.585535,0],[34.950024,32.585535,0],[34.950023,32.585535,0],[34.950021,32.585535,0],[34.950019,32.585535,0],[34.950017,32.585535,0],[34.950015,32.585535,0],[34.950014,32.585535,0],[34.950012,32.585535,0],[34.95001,32.585535,0],[34.950008,32.585535,0],[34.950006,32.585535,0],[34.950005,32.585535,0],[34.950003,32.585535,0],[34.950001,32.585535,0],[34.949999,32.585535,0],[34.949997,32.585535,0],[34.949996,32.585535,0],[34.949994,32.585535,0],[34.949981,32.585535,0],[34.949968,32.585535,0],[34.949955,32.585536,0],[34.949943,32.585537,0],[34.94993,32.585538,0],[34.949917,32.585539,0],[34.949904,32.585541,0],[34.949892,32.585542,0],[34.949879,32.585544,0],[34.949866,32.585546,0],[34.949854,32.585548,0],[34.949841,32.585551,0],[34.949829,32.585553,0],[34.949816,32.585556,0],[34.949799,32.58556,0],[34.949796,32.585561,0],[34.949795,32.585561,0],[34.949794,32.585562,0],[34.949793,32.585562,0],[34.949792,32.585562,0],[34.94979,32.585563,0],[34.949789,32.585563,0],[34.949788,32.585563,0],[34.949787,32.585563,0],[34.949785,32.585564,0],[34.949784,32.585564,0],[34.949783,32.585564,0],[34.949782,32.585565,0],[34.949781,32.585565,0],[34.949779,32.585565,0],[34.949778,32.585566,0],[34.949777,32.585566,0],[34.949776,32.585566,0],[34.949775,32.585567,0],[34.949773,32.585567,0],[34.949772,32.585567,0],[34.949771,32.585568,0],[34.94977,32.585568,0],[34.949769,32.585568,0],[34.949767,32.585569,0],[34.949766,32.585569,0],[34.949765,32.585569,0],[34.949764,32.58557,0],[34.949762,32.58557,0],[34.949761,32.585571,0],[34.94976,32.585571,0],[34.949759,32.585571,0],[34.949758,32.585572,0],[34.949756,32.585572,0],[34.949755,32.585572,0],[34.949754,32.585573,0],[34.949753,32.585573,0],[34.949752,32.585573,0],[34.94975,32.585574,0],[34.949749,32.585574,0],[34.949748,32.585574,0],[34.949747,32.585575,0],[34.949746,32.585575,0],[34.949744,32.585576,0],[34.949743,32.585576,0],[34.949742,32.585576,0],[34.949741,32.585577,0],[34.94974,32.585577,0],[34.949739,32.585578,0],[34.949737,32.585578,0],[34.949736,32.585578,0],[34.949735,32.585579,0],[34.949734,32.585579,0],[34.949733,32.585579,0],[34.949731,32.58558,0],[34.94973,32.58558,0],[34.949729,32.585581,0],[34.949728,32.585581,0],[34.949727,32.585581,0],[34.949725,32.585582,0],[34.949724,32.585582,0],[34.949723,32.585583,0],[34.949722,32.585583,0],[34.949721,32.585584,0],[34.94972,32.585584,0],[34.949718,32.585584,0],[34.949717,32.585585,0],[34.949716,32.585585,0],[34.949715,32.585586,0],[34.949714,32.585586,0],[34.949713,32.585586,0],[34.949711,32.585587,0],[34.94971,32.585587,0],[34.949709,32.585588,0],[34.949708,32.585588,0],[34.949707,32.585589,0],[34.949706,32.585589,0],[34.949704,32.585589,0],[34.949703,32.58559,0],[34.949702,32.58559,0],[34.949701,32.585591,0],[34.9497,32.585591,0],[34.949699,32.585592,0],[34.949697,32.585592,0],[34.949696,32.585593,0],[34.949695,32.585593,0],[34.949694,32.585593,0],[34.949693,32.585594,0],[34.949692,32.585594,0],[34.94969,32.585595,0],[34.949689,32.585595,0],[34.949688,32.585596,0],[34.949687,32.585596,0],[34.949686,32.585597,0],[34.949685,32.585597,0],[34.949684,32.585598,0],[34.949682,32.585598,0],[34.949681,32.585598,0],[34.94968,32.585599,0],[34.949679,32.585599,0],[34.949678,32.5856,0],[34.949677,32.5856,0],[34.949676,32.585601,0],[34.949674,32.585601,0],[34.949673,32.585602,0],[34.949672,32.585602,0],[34.949671,32.585603,0],[34.94967,32.585603,0],[34.949669,32.585604,0],[34.949668,32.585604,0],[34.949666,32.585605,0],[34.949665,32.585605,0],[34.949664,32.585606,0],[34.949663,32.585606,0],[34.949662,32.585607,0],[34.949661,32.585607,0],[34.94966,32.585608,0],[34.949658,32.585608,0],[34.949657,32.585609,0],[34.949656,32.585609,0],[34.949541,32.585672,0],[34.949471,32.585726,0],[34.949423,32.585769,0],[34.949317,32.585874,0],[34.949264,32.585931,0],[34.949169,32.586043,0],[34.949082,32.586159,0],[34.94901,32.58627,0],[34.948961,32.586352,0],[34.94878,32.586779,0],[34.948697,32.587262,0],[34.948696,32.58745,0],[34.948709,32.58773,0],[34.948732,32.58823,0],[34.948757,32.588755,0],[34.948781,32.589276,0],[34.948782,32.589301,0],[34.948781,32.589302,0],[34.948781,32.589304,0],[34.948781,32.589305,0],[34.94878,32.589306,0],[34.94878,32.589307,0],[34.94878,32.589308,0],[34.948779,32.589309,0],[34.948779,32.58931,0],[34.948778,32.589311,0],[34.948778,32.589313,0],[34.948777,32.589314,0],[34.948777,32.589315,0],[34.948776,32.589316,0],[34.948775,32.589317,0],[34.948775,32.589318,0],[34.948774,32.589319,0],[34.948774,32.58932,0],[34.948773,32.589321,0],[34.948772,32.589322,0],[34.948771,32.589323,0],[34.948771,32.589324,0],[34.94877,32.589325,0],[34.948769,32.589326,0],[34.948768,32.589327,0],[34.948767,32.589328,0],[34.948767,32.589329,0],[34.948766,32.58933,0],[34.948765,32.589331,0],[34.948764,32.589332,0],[34.948763,32.589332,0],[34.948762,32.589333,0],[34.948761,32.589334,0],[34.94876,32.589335,0],[34.948759,32.589336,0],[34.948758,32.589337,0],[34.948757,32.589337,0],[34.948756,32.589338,0],[34.948755,32.589339,0],[34.948754,32.58934,0],[34.948753,32.589341,0],[34.948752,32.589341,0],[34.948751,32.589342,0],[34.948749,32.589343,0],[34.948748,32.589343,0],[34.948747,32.589344,0],[34.948746,32.589345,0],[34.948745,32.589345,0],[34.948744,32.589346,0],[34.948742,32.589346,0],[34.948741,32.589347,0],[34.94874,32.589347,0],[34.948739,32.589348,0],[34.948737,32.589349,0],[34.948736,32.589349,0],[34.948735,32.589349,0],[34.948734,32.58935,0],[34.948732,32.58935,0],[34.948731,32.589351,0],[34.94873,32.589351,0],[34.948728,32.589352,0],[34.948727,32.589352,0],[34.948726,32.589352,0],[34.948724,32.589353,0],[34.948723,32.589353,0],[34.948722,32.589353,0],[34.94872,32.589353,0],[34.948719,32.589354,0],[34.948718,32.589354,0],[34.948716,32.589354,0],[34.948715,32.589354,0],[34.948713,32.589354,0],[34.948712,32.589354,0],[34.948711,32.589355,0],[34.948709,32.589355,0],[34.948708,32.589355,0],[34.948706,32.589355,0],[34.948705,32.589355,0],[34.948704,32.589355,0],[34.948702,32.589355,0],[34.948701,32.589355,0],[34.948699,32.589355,0],[34.948698,32.589355,0],[34.948695,32.589355,0],[34.948692,32.589354,0],[34.94867,32.589349,0],[34.948648,32.589344,0],[34.948625,32.589338,0],[34.948603,32.589332,0],[34.948581,32.589325,0],[34.94856,32.589318,0],[34.948538,32.589311,0],[34.948516,32.589304,0],[34.948505,32.5893,0],[34.948495,32.589296,0],[34.948474,32.589288,0],[34.948453,32.58928,0],[34.948432,32.589271,0],[34.948411,32.589262,0],[34.948391,32.589253,0],[34.948371,32.589243,0],[34.94835,32.589233,0],[34.948331,32.589223,0],[34.948311,32.589212,0],[34.948291,32.589202,0],[34.948272,32.589191,0],[34.948253,32.589179,0],[34.948235,32.589168,0],[34.948216,32.589156,0],[34.948207,32.58915,0],[34.948198,32.589144,0],[34.94818,32.589131,0],[34.948162,32.589118,0],[34.948145,32.589105,0],[34.948127,32.589092,0],[34.94811,32.589079,0],[34.948094,32.589065,0],[34.948077,32.589051,0],[34.948061,32.589037,0],[34.948045,32.589022,0],[34.94803,32.589008,0],[34.948015,32.588993,0],[34.948,32.588978,0],[34.947985,32.588962,0],[34.947971,32.588947,0],[34.947957,32.588931,0],[34.947944,32.588915,0],[34.94793,32.588899,0],[34.947917,32.588883,0],[34.947905,32.588866,0],[34.947893,32.588849,0],[34.947881,32.588833,0],[34.947869,32.588816,0],[34.947858,32.588798,0],[34.947847,32.588781,0],[34.947837,32.588763,0],[34.947821,32.588735,0],[34.947669,32.588457,0],[34.947457,32.588539,0],[34.947384,32.588567,0],[34.946643,32.588854,0],[34.945692,32.589221,0],[34.946006,32.590048,0],[34.946062,32.590193,0],[34.945881,32.590239,0],[34.946043,32.590439,0],[34.946137,32.59055,0],[34.94629,32.590624,0],[34.946903,32.591027,0],[34.947431,32.591373,0],[34.947552,32.591454,0],[34.947687,32.591543,0],[34.947777,32.59156,0],[34.947833,32.591571,0],[34.948231,32.591707,0],[34.948332,32.591742,0],[34.94834,32.591709,0],[34.949138,32.591807,0],[34.94933,32.591803,0],[34.949636,32.591778,0],[34.950438,32.591696,0],[34.950699,32.59167,0],[34.950847,32.591673,0],[34.95162,32.591754,0],[34.951642,32.591757,0],[34.951746,32.591752,0],[34.951855,32.591743,0],[34.951911,32.591739,0],[34.951856,32.591564,0],[34.951861,32.591564,0],[34.951866,32.591564,0],[34.951871,32.591564,0],[34.951876,32.591563,0],[34.951881,32.591563,0],[34.951885,32.591563,0],[34.95189,32.591563,0],[34.951895,32.591562,0],[34.9519,32.591562,0],[34.951905,32.591562,0],[34.95191,32.591561,0],[34.951914,32.591561,0],[34.951919,32.591561,0],[34.951924,32.59156,0],[34.951929,32.59156,0],[34.951934,32.59156,0],[34.951938,32.591559,0],[34.951943,32.591559,0],[34.951948,32.591558,0],[34.951953,32.591558,0],[34.951958,32.591558,0],[34.951962,32.591557,0],[34.951967,32.591557,0],[34.951972,32.591556,0],[34.951977,32.591556,0],[34.951982,32.591556,0],[34.951987,32.591555,0],[34.951991,32.591555,0],[34.951996,32.591554,0],[34.952001,32.591554,0],[34.952006,32.591553,0],[34.952011,32.591553,0],[34.952015,32.591552,0],[34.95202,32.591552,0],[34.952025,32.591551,0],[34.95203,32.591551,0],[34.952035,32.59155,0],[34.952039,32.59155,0],[34.952044,32.591549,0],[34.952049,32.591549,0],[34.952054,32.591548,0],[34.952059,32.591548,0],[34.952063,32.591547,0],[34.952068,32.591547,0],[34.952073,32.591546,0],[34.952078,32.591545,0],[34.952082,32.591545,0],[34.952087,32.591544,0],[34.952092,32.591544,0],[34.952097,32.591543,0],[34.952102,32.591542,0],[34.952106,32.591542,0],[34.952111,32.591541,0],[34.952116,32.591541,0],[34.952121,32.59154,0],[34.952126,32.591539,0],[34.95213,32.591539,0],[34.952135,32.591538,0],[34.95214,32.591537,0],[34.952145,32.591537,0],[34.952149,32.591536,0],[34.952154,32.591535,0],[34.952159,32.591535,0],[34.952164,32.591534,0],[34.952168,32.591533,0],[34.952173,32.591533,0],[34.952178,32.591532,0],[34.952183,32.591531,0],[34.952187,32.59153,0],[34.952192,32.59153,0],[34.952197,32.591529,0],[34.952202,32.591528,0],[34.952206,32.591527,0],[34.952211,32.591527,0],[34.952216,32.591526,0],[34.952221,32.591525,0],[34.952225,32.591524,0],[34.95223,32.591524,0],[34.952235,32.591523,0],[34.95224,32.591522,0],[34.952244,32.591521,0],[34.952249,32.59152,0],[34.952254,32.591519,0],[34.952259,32.591519,0],[34.952263,32.591518,0],[34.952268,32.591517,0],[34.952273,32.591516,0],[34.952278,32.591515,0],[34.952282,32.591514,0],[34.952287,32.591513,0],[34.952292,32.591513,0],[34.952296,32.591512,0],[34.952301,32.591511,0],[34.952306,32.59151,0],[34.952311,32.591509,0],[34.952315,32.591508,0],[34.95232,32.591507,0],[34.952325,32.591506,0],[34.952329,32.591505,0],[34.952334,32.591504,0],[34.952339,32.591503,0],[34.952344,32.591502,0],[34.952348,32.591501,0],[34.952353,32.5915,0],[34.952358,32.591499,0],[34.952362,32.591498,0],[34.952367,32.591497,0],[34.952372,32.591496,0],[34.952376,32.591495,0],[34.952381,32.591494,0],[34.952386,32.591493,0],[34.95239,32.591492,0],[34.952395,32.591491,0],[34.9524,32.59149,0],[34.952404,32.591489,0],[34.952409,32.591488,0],[34.952414,32.591487,0],[34.952406,32.591476,0],[34.952064,32.591478,0],[34.95147,32.591517,0],[34.951401,32.591445,0],[34.95168,32.591449,0],[34.951818,32.591447,0],[34.951557,32.590621,0],[34.951411,32.590158,0],[34.951481,32.590144,0],[34.951361,32.58983,0],[34.95136,32.589829,0],[34.951314,32.58971,0],[34.95116,32.589739,0],[34.95103,32.589475,0],[34.951013,32.589441,0],[34.951116,32.589397,0],[34.950849,32.58912,0],[34.950677,32.588983,0],[34.95068,32.588981,0],[34.950682,32.588979,0],[34.950684,32.588978,0],[34.950687,32.588976,0],[34.950689,32.588974,0],[34.950691,32.588973,0],[34.950693,32.588971,0],[34.950695,32.58897,0],[34.950697,32.588968,0],[34.950699,32.588966,0],[34.950701,32.588965,0],[34.950703,32.588963,0],[34.950705,32.588962,0],[34.950707,32.58896,0],[34.95071,32.588958,0],[34.950712,32.588957,0],[34.950714,32.588955,0],[34.950716,32.588953,0],[34.950718,32.588952,0],[34.95072,32.58895,0],[34.950722,32.588948,0],[34.950724,32.588947,0],[34.950726,32.588945,0],[34.950728,32.588944,0],[34.95073,32.588942,0],[34.950732,32.58894,0],[34.950734,32.588939,0],[34.950736,32.588937,0],[34.950738,32.588935,0],[34.95074,32.588934,0],[34.950742,32.588932,0],[34.950744,32.58893,0],[34.950746,32.588929,0],[34.950748,32.588927,0],[34.95075,32.588925,0],[34.950752,32.588924,0],[34.950754,32.588922,0],[34.950756,32.58892,0],[34.950758,32.588918,0],[34.95076,32.588917,0],[34.950762,32.588915,0],[34.950764,32.588913,0],[34.950766,32.588912,0],[34.950768,32.58891,0],[34.95077,32.588908,0],[34.950772,32.588906,0],[34.950774,32.588905,0],[34.950776,32.588903,0],[34.950778,32.588901,0],[34.95078,32.5889,0],[34.950782,32.588898,0],[34.950784,32.588896,0],[34.950786,32.588894,0],[34.950788,32.588893,0],[34.95079,32.588891,0],[34.950792,32.588889,0],[34.950794,32.588887,0],[34.950796,32.588886,0],[34.950798,32.588884,0],[34.950799,32.588882,0],[34.950801,32.58888,0],[34.950803,32.588879,0],[34.950805,32.588877,0],[34.950807,32.588875,0],[34.950809,32.588873,0],[34.950811,32.588872,0],[34.950813,32.58887,0],[34.950815,32.588868,0],[34.950817,32.588866,0],[34.950819,32.588864,0],[34.95082,32.588863,0],[34.950822,32.588861,0],[34.950824,32.588859,0],[34.950826,32.588857,0],[34.950828,32.588855,0],[34.95083,32.588854,0],[34.950832,32.588852,0],[34.950833,32.58885,0],[34.950835,32.588848,0],[34.950837,32.588846,0],[34.950839,32.588845,0],[34.950841,32.588843,0],[34.950843,32.588841,0],[34.950845,32.588839,0],[34.950846,32.588837,0],[34.950848,32.588836,0],[34.95085,32.588834,0],[34.950852,32.588832,0],[34.950854,32.58883,0],[34.950855,32.588828,0],[34.950857,32.588826,0],[34.950859,32.588825,0],[34.950861,32.588823,0],[34.950863,32.588821,0],[34.950864,32.588819,0],[34.950866,32.588817,0],[34.950868,32.588815,0],[34.95087,32.588813,0],[34.950872,32.588812,0],[34.950873,32.58881,0],[34.950875,32.588808,0],[34.950877,32.588806,0],[34.950879,32.588804,0],[34.95088,32.588802,0],[34.950882,32.5888,0],[34.950884,32.588798,0],[34.950886,32.588797,0],[34.950887,32.588795,0],[34.950888,32.588794,0],[34.950889,32.588793,0],[34.950891,32.588791,0],[34.950893,32.588789,0],[34.950894,32.588787,0],[34.950896,32.588785,0],[34.950898,32.588783,0],[34.9509,32.588781,0],[34.950901,32.58878,0],[34.950903,32.588778,0],[34.950905,32.588776,0],[34.950906,32.588774,0],[34.950908,32.588772,0],[34.95091,32.58877,0],[34.950911,32.588768,0],[34.950913,32.588766,0],[34.950915,32.588764,0],[34.950916,32.588762,0],[34.950918,32.58876,0],[34.95092,32.588758,0],[34.950921,32.588756,0],[34.950923,32.588755,0],[34.950925,32.588753,0],[34.950926,32.588751,0],[34.950928,32.588749,0],[34.95093,32.588747,0],[34.950931,32.588745,0],[34.950933,32.588743,0],[34.950935,32.588741,0],[34.950936,32.588739,0],[34.950938,32.588737,0],[34.95094,32.588735,0],[34.950941,32.588733,0],[34.950943,32.588731,0],[34.950944,32.588729,0],[34.950946,32.588727,0],[34.950948,32.588725,0],[34.950949,32.588723,0],[34.950951,32.588721,0],[34.950952,32.588719,0],[34.950954,32.588717,0],[34.950956,32.588715,0],[34.950957,32.588713,0],[34.950959,32.588711,0],[34.95096,32.588709,0],[34.950962,32.588707,0],[34.950963,32.588705,0],[34.950965,32.588703,0],[34.950967,32.588701,0],[34.950968,32.588699,0],[34.95097,32.588697,0],[34.950971,32.588695,0],[34.950973,32.588693,0],[34.950974,32.588691,0],[34.950976,32.588689,0],[34.950977,32.588687,0],[34.950979,32.588685,0],[34.95098,32.588683,0],[34.950982,32.588681,0],[34.950983,32.588679,0],[34.950985,32.588677,0],[34.950986,32.588675,0],[34.950988,32.588673,0],[34.950989,32.588671,0],[34.950991,32.588669,0],[34.950992,32.588667,0],[34.950994,32.588665,0],[34.950995,32.588663,0],[34.950997,32.588661,0],[34.950998,32.588659,0],[34.951,32.588657,0],[34.951001,32.588655,0],[34.951003,32.588653,0],[34.951004,32.588651,0],[34.951005,32.588649,0],[34.951007,32.588647,0],[34.951008,32.588644,0],[34.95101,32.588642,0],[34.951011,32.58864,0],[34.951013,32.588638,0],[34.951014,32.588636,0],[34.951015,32.588634,0],[34.951017,32.588632,0],[34.951018,32.58863,0],[34.95102,32.588628,0],[34.951021,32.588626,0],[34.951023,32.588624,0],[34.951024,32.588621,0],[34.951025,32.58862,0],[34.951027,32.588617,0],[34.951028,32.588615,0],[34.951029,32.588613,0],[34.951031,32.588611,0],[34.951032,32.588609,0],[34.951034,32.588607,0],[34.951035,32.588605,0],[34.951036,32.588603,0],[34.951038,32.588601,0],[34.951039,32.588599,0],[34.95104,32.588596,0],[34.951042,32.588594,0],[34.951043,32.588592,0],[34.951044,32.58859,0],[34.951046,32.588588,0],[34.951047,32.588586,0],[34.951048,32.588584,0],[34.95105,32.588582,0],[34.951051,32.58858,0],[34.951052,32.588577,0],[34.951053,32.588575,0],[34.951055,32.588573,0],[34.951056,32.588571,0],[34.951057,32.588569,0],[34.951059,32.588567,0],[34.95106,32.588565,0],[34.951061,32.588562,0],[34.951062,32.58856,0],[34.951064,32.588558,0],[34.951065,32.588556,0],[34.951066,32.588554,0],[34.951067,32.588552,0],[34.951069,32.58855,0],[34.95107,32.588547,0],[34.951071,32.588545,0],[34.951072,32.588543,0],[34.951074,32.588541,0],[34.951075,32.588539,0],[34.951076,32.588537,0],[34.951077,32.588535,0],[34.951078,32.588532,0],[34.95108,32.58853,0],[34.951081,32.588528,0],[34.951082,32.588526,0],[34.951083,32.588524,0],[34.951084,32.588522,0],[34.951086,32.588519,0],[34.951087,32.588517,0],[34.951088,32.588515,0],[34.951089,32.588513,0],[34.95109,32.588511,0],[34.951091,32.588508,0],[34.951093,32.588506,0],[34.951094,32.588504,0],[34.951095,32.588502,0],[34.951096,32.5885,0],[34.951097,32.588498,0],[34.951098,32.588495,0],[34.9511,32.588493,0],[34.951101,32.588491,0],[34.951102,32.588489,0],[34.951103,32.588487,0],[34.951104,32.588484,0],[34.951105,32.588482,0],[34.951106,32.58848,0],[34.951107,32.588478,0],[34.951108,32.588476,0],[34.951109,32.588473,0],[34.951111,32.588471,0],[34.951112,32.588469,0],[34.951113,32.588467,0],[34.951114,32.588464,0],[34.951115,32.588462,0],[34.951116,32.58846,0],[34.951117,32.588458,0],[34.951118,32.588456,0],[34.951119,32.588453,0],[34.95112,32.588451,0],[34.951121,32.588449,0],[34.951122,32.588447,0],[34.951123,32.588444,0],[34.951124,32.588442,0],[34.951125,32.58844,0],[34.951126,32.588438,0],[34.951127,32.588436,0],[34.951128,32.588433,0],[34.951129,32.588431,0],[34.95113,32.588429,0],[34.951131,32.588427,0],[34.951132,32.588424,0],[34.951133,32.588422,0],[34.951134,32.58842,0],[34.951135,32.588418,0],[34.951136,32.588415,0],[34.951137,32.588413,0],[34.951138,32.588411,0],[34.951139,32.588409,0],[34.95114,32.588406,0],[34.951141,32.588404,0],[34.951142,32.588402,0],[34.951143,32.5884,0],[34.951144,32.588397,0],[34.951145,32.588395,0],[34.951146,32.588393,0],[34.951147,32.588391,0],[34.951148,32.588388,0],[34.951148,32.588386,0],[34.951149,32.588384,0],[34.95115,32.588381,0],[34.951151,32.588379,0],[34.951152,32.588377,0],[34.951153,32.588375,0],[34.951154,32.588372,0],[34.951155,32.58837,0],[34.951156,32.588368,0],[34.951156,32.588366,0],[34.951157,32.588363,0],[34.951158,32.588361,0],[34.951159,32.588359,0],[34.95116,32.588356,0],[34.951161,32.588354,0],[34.951162,32.588352,0],[34.951162,32.58835,0],[34.951163,32.588347,0],[34.951164,32.588345,0],[34.951165,32.588343,0],[34.951166,32.58834,0],[34.951167,32.588338,0],[34.951167,32.588336,0],[34.951168,32.588334,0],[34.951169,32.588331,0],[34.95117,32.588329,0],[34.951171,32.588327,0],[34.951171,32.588324,0],[34.951172,32.588322,0],[34.951173,32.58832,0],[34.951174,32.588317,0],[34.951174,32.588315,0],[34.951175,32.588313,0],[34.951176,32.588311,0],[34.951177,32.588308,0],[34.951177,32.588306,0],[34.951178,32.588304,0],[34.951179,32.588301,0],[34.95118,32.588299,0],[34.95118,32.588297,0],[34.951181,32.588294,0],[34.951182,32.588292,0],[34.951183,32.58829,0],[34.951183,32.588287,0],[34.951184,32.588285,0],[34.951185,32.588283,0],[34.951185,32.58828,0],[34.951186,32.588278,0],[34.951187,32.588276,0],[34.951187,32.588273,0],[34.951188,32.588271,0],[34.951189,32.588269,0],[34.951189,32.588266,0],[34.95119,32.588264,0],[34.951191,32.588262,0],[34.951191,32.58826,0],[34.951192,32.588257,0],[34.951193,32.588255,0],[34.951193,32.588253,0],[34.951194,32.58825,0],[34.951195,32.588248,0],[34.951195,32.588246,0],[34.951196,32.588243,0],[34.951196,32.588241,0],[34.951197,32.588238,0],[34.951198,32.588236,0],[34.951198,32.588234,0],[34.951199,32.588231,0],[34.951199,32.588229,0],[34.9512,32.588227,0],[34.951313,32.587775,0],[34.951471,32.58714,0]]]},"type":"Feature","properties":{"Name":"11373"}},{"geometry":{"type":"Polygon","coordinates":[[[34.949245,32.58381,0],[34.949177,32.583735,0],[34.949121,32.583726,0],[34.949114,32.58373,0],[34.949106,32.583734,0],[34.949098,32.583738,0],[34.949091,32.583742,0],[34.949083,32.583745,0],[34.949075,32.583749,0],[34.949067,32.583753,0],[34.94906,32.583756,0],[34.949052,32.58376,0],[34.949044,32.583764,0],[34.949036,32.583768,0],[34.949028,32.583771,0],[34.949021,32.583775,0],[34.949013,32.583779,0],[34.949005,32.583782,0],[34.948997,32.583786,0],[34.948989,32.583789,0],[34.948981,32.583793,0],[34.948974,32.583797,0],[34.948966,32.5838,0],[34.948958,32.583804,0],[34.94895,32.583807,0],[34.948942,32.583811,0],[34.948934,32.583814,0],[34.948926,32.583818,0],[34.948918,32.583821,0],[34.948911,32.583825,0],[34.948903,32.583828,0],[34.948895,32.583832,0],[34.948887,32.583835,0],[34.948879,32.583839,0],[34.948871,32.583842,0],[34.948863,32.583846,0],[34.948855,32.583849,0],[34.948847,32.583853,0],[34.948839,32.583856,0],[34.948831,32.583859,0],[34.948823,32.583863,0],[34.948815,32.583866,0],[34.948807,32.583869,0],[34.948799,32.583873,0],[34.948791,32.583876,0],[34.948783,32.583879,0],[34.948775,32.583883,0],[34.948767,32.583886,0],[34.948759,32.583889,0],[34.948751,32.583893,0],[34.948743,32.583896,0],[34.948735,32.583899,0],[34.948727,32.583902,0],[34.948719,32.583905,0],[34.948711,32.583909,0],[34.948702,32.583912,0],[34.948694,32.583915,0],[34.948686,32.583918,0],[34.948678,32.583921,0],[34.94867,32.583925,0],[34.948662,32.583928,0],[34.948654,32.583931,0],[34.948646,32.583934,0],[34.948638,32.583937,0],[34.948629,32.58394,0],[34.948621,32.583943,0],[34.948613,32.583946,0],[34.948605,32.583949,0],[34.948597,32.583952,0],[34.948589,32.583955,0],[34.94858,32.583958,0],[34.948572,32.583961,0],[34.948564,32.583964,0],[34.948556,32.583967,0],[34.948548,32.58397,0],[34.948539,32.583973,0],[34.948531,32.583976,0],[34.948523,32.583979,0],[34.948515,32.583982,0],[34.948506,32.583985,0],[34.948498,32.583988,0],[34.94849,32.583991,0],[34.948482,32.583994,0],[34.948473,32.583997,0],[34.948465,32.583999,0],[34.948457,32.584002,0],[34.948449,32.584005,0],[34.94844,32.584008,0],[34.948432,32.584011,0],[34.948424,32.584013,0],[34.948415,32.584016,0],[34.948407,32.584019,0],[34.948399,32.584022,0],[34.948391,32.584025,0],[34.948382,32.584027,0],[34.948374,32.58403,0],[34.948366,32.584033,0],[34.948357,32.584035,0],[34.948349,32.584038,0],[34.948341,32.584041,0],[34.948332,32.584043,0],[34.948324,32.584046,0],[34.948315,32.584049,0],[34.948307,32.584051,0],[34.948299,32.584054,0],[34.94829,32.584056,0],[34.948282,32.584059,0],[34.948274,32.584062,0],[34.948265,32.584064,0],[34.948257,32.584067,0],[34.948248,32.584069,0],[34.94824,32.584072,0],[34.948232,32.584074,0],[34.948223,32.584077,0],[34.948215,32.584079,0],[34.948206,32.584082,0],[34.948198,32.584084,0],[34.948185,32.584088,0],[34.948061,32.583914,0],[34.947278,32.583709,0],[34.946985,32.583781,0],[34.946546,32.583843,0],[34.945657,32.583841,0],[34.94521,32.583785,0],[34.945037,32.583903,0],[34.944333,32.58463,0],[34.944292,32.584647,0],[34.944169,32.585012,0],[34.944225,32.585617,0],[34.944312,32.586009,0],[34.944691,32.586723,0],[34.944822,32.587304,0],[34.945161,32.587768,0],[34.945527,32.588805,0],[34.945546,32.588835,0],[34.945692,32.589221,0],[34.946643,32.588854,0],[34.947384,32.588567,0],[34.947457,32.588539,0],[34.947669,32.588457,0],[34.947821,32.588735,0],[34.947837,32.588763,0],[34.947847,32.588781,0],[34.947858,32.588798,0],[34.947869,32.588816,0],[34.947881,32.588833,0],[34.947893,32.588849,0],[34.947905,32.588866,0],[34.947917,32.588883,0],[34.94793,32.588899,0],[34.947944,32.588915,0],[34.947957,32.588931,0],[34.947971,32.588947,0],[34.947985,32.588962,0],[34.948,32.588978,0],[34.948015,32.588993,0],[34.94803,32.589008,0],[34.948045,32.589022,0],[34.948061,32.589037,0],[34.948077,32.589051,0],[34.948094,32.589065,0],[34.94811,32.589079,0],[34.948127,32.589092,0],[34.948145,32.589105,0],[34.948162,32.589118,0],[34.94818,32.589131,0],[34.948198,32.589144,0],[34.948207,32.58915,0],[34.948216,32.589156,0],[34.948235,32.589168,0],[34.948253,32.589179,0],[34.948272,32.589191,0],[34.948291,32.589202,0],[34.948311,32.589212,0],[34.948331,32.589223,0],[34.94835,32.589233,0],[34.948371,32.589243,0],[34.948391,32.589253,0],[34.948411,32.589262,0],[34.948432,32.589271,0],[34.948453,32.58928,0],[34.948474,32.589288,0],[34.948495,32.589296,0],[34.948505,32.5893,0],[34.948516,32.589304,0],[34.948538,32.589311,0],[34.94856,32.589318,0],[34.948581,32.589325,0],[34.948603,32.589332,0],[34.948625,32.589338,0],[34.948648,32.589344,0],[34.94867,32.589349,0],[34.948692,32.589354,0],[34.948694,32.589354,0],[34.948695,32.589355,0],[34.948697,32.589355,0],[34.948698,32.589355,0],[34.948699,32.589355,0],[34.948701,32.589355,0],[34.948702,32.589355,0],[34.948704,32.589355,0],[34.948705,32.589355,0],[34.948706,32.589355,0],[34.948708,32.589355,0],[34.948709,32.589355,0],[34.948711,32.589355,0],[34.948712,32.589354,0],[34.948713,32.589354,0],[34.948715,32.589354,0],[34.948716,32.589354,0],[34.948718,32.589354,0],[34.948719,32.589354,0],[34.94872,32.589353,0],[34.948722,32.589353,0],[34.948723,32.589353,0],[34.948724,32.589353,0],[34.948726,32.589352,0],[34.948727,32.589352,0],[34.948728,32.589352,0],[34.94873,32.589351,0],[34.948731,32.589351,0],[34.948732,32.58935,0],[34.948734,32.58935,0],[34.948735,32.589349,0],[34.948736,32.589349,0],[34.948737,32.589349,0],[34.948739,32.589348,0],[34.94874,32.589347,0],[34.948741,32.589347,0],[34.948742,32.589346,0],[34.948744,32.589346,0],[34.948745,32.589345,0],[34.948746,32.589345,0],[34.948747,32.589344,0],[34.948748,32.589343,0],[34.948749,32.589343,0],[34.948751,32.589342,0],[34.948752,32.589341,0],[34.948753,32.589341,0],[34.948754,32.58934,0],[34.948755,32.589339,0],[34.948756,32.589338,0],[34.948757,32.589337,0],[34.948758,32.589337,0],[34.948759,32.589336,0],[34.94876,32.589335,0],[34.948761,32.589334,0],[34.948762,32.589333,0],[34.948763,32.589332,0],[34.948764,32.589332,0],[34.948765,32.589331,0],[34.948766,32.58933,0],[34.948767,32.589329,0],[34.948767,32.589328,0],[34.948768,32.589327,0],[34.948769,32.589326,0],[34.94877,32.589325,0],[34.948771,32.589324,0],[34.948771,32.589323,0],[34.948772,32.589322,0],[34.948773,32.589321,0],[34.948774,32.58932,0],[34.948774,32.589319,0],[34.948775,32.589318,0],[34.948775,32.589317,0],[34.948776,32.589316,0],[34.948777,32.589315,0],[34.948777,32.589314,0],[34.948778,32.589313,0],[34.948778,32.589311,0],[34.948779,32.58931,0],[34.948779,32.589309,0],[34.94878,32.589308,0],[34.94878,32.589307,0],[34.94878,32.589306,0],[34.948781,32.589305,0],[34.948781,32.589304,0],[34.948781,32.589302,0],[34.948782,32.589301,0],[34.948781,32.589276,0],[34.948757,32.588755,0],[34.948732,32.58823,0],[34.948709,32.58773,0],[34.948696,32.58745,0],[34.948697,32.587262,0],[34.94878,32.586779,0],[34.948961,32.586352,0],[34.94901,32.58627,0],[34.949082,32.586159,0],[34.949169,32.586043,0],[34.949264,32.585931,0],[34.949317,32.585874,0],[34.949423,32.585769,0],[34.949471,32.585726,0],[34.949541,32.585672,0],[34.949656,32.585609,0],[34.949657,32.585609,0],[34.949658,32.585608,0],[34.94966,32.585608,0],[34.949661,32.585607,0],[34.949662,32.585607,0],[34.949663,32.585606,0],[34.949664,32.585606,0],[34.949665,32.585605,0],[34.949666,32.585605,0],[34.949668,32.585604,0],[34.949669,32.585604,0],[34.94967,32.585603,0],[34.949671,32.585603,0],[34.949672,32.585602,0],[34.949673,32.585602,0],[34.949674,32.585601,0],[34.949676,32.585601,0],[34.949677,32.5856,0],[34.949678,32.5856,0],[34.949679,32.585599,0],[34.94968,32.585599,0],[34.949681,32.585598,0],[34.949682,32.585598,0],[34.949684,32.585598,0],[34.949685,32.585597,0],[34.949686,32.585597,0],[34.949687,32.585596,0],[34.949688,32.585596,0],[34.949689,32.585595,0],[34.94969,32.585595,0],[34.949692,32.585594,0],[34.949693,32.585594,0],[34.949694,32.585593,0],[34.949695,32.585593,0],[34.949696,32.585593,0],[34.949697,32.585592,0],[34.949699,32.585592,0],[34.9497,32.585591,0],[34.949701,32.585591,0],[34.949702,32.58559,0],[34.949703,32.58559,0],[34.949704,32.585589,0],[34.949706,32.585589,0],[34.949707,32.585589,0],[34.949708,32.585588,0],[34.949709,32.585588,0],[34.94971,32.585587,0],[34.949711,32.585587,0],[34.949713,32.585586,0],[34.949714,32.585586,0],[34.949715,32.585586,0],[34.949716,32.585585,0],[34.949717,32.585585,0],[34.949718,32.585584,0],[34.94972,32.585584,0],[34.949721,32.585584,0],[34.949722,32.585583,0],[34.949723,32.585583,0],[34.949724,32.585582,0],[34.949725,32.585582,0],[34.949727,32.585581,0],[34.949728,32.585581,0],[34.949729,32.585581,0],[34.94973,32.58558,0],[34.949731,32.58558,0],[34.949733,32.585579,0],[34.949734,32.585579,0],[34.949735,32.585579,0],[34.949736,32.585578,0],[34.949737,32.585578,0],[34.949739,32.585578,0],[34.94974,32.585577,0],[34.949741,32.585577,0],[34.949742,32.585576,0],[34.949743,32.585576,0],[34.949744,32.585576,0],[34.949746,32.585575,0],[34.949747,32.585575,0],[34.949748,32.585574,0],[34.949749,32.585574,0],[34.94975,32.585574,0],[34.949752,32.585573,0],[34.949753,32.585573,0],[34.949754,32.585573,0],[34.949755,32.585572,0],[34.949756,32.585572,0],[34.949758,32.585572,0],[34.949759,32.585571,0],[34.94976,32.585571,0],[34.949761,32.585571,0],[34.949762,32.58557,0],[34.949764,32.58557,0],[34.949765,32.585569,0],[34.949766,32.585569,0],[34.949767,32.585569,0],[34.949769,32.585568,0],[34.94977,32.585568,0],[34.949771,32.585568,0],[34.949772,32.585567,0],[34.949773,32.585567,0],[34.949775,32.585567,0],[34.949776,32.585566,0],[34.949777,32.585566,0],[34.949778,32.585566,0],[34.949779,32.585565,0],[34.949781,32.585565,0],[34.949782,32.585565,0],[34.949783,32.585564,0],[34.949784,32.585564,0],[34.949785,32.585564,0],[34.949787,32.585563,0],[34.949788,32.585563,0],[34.949789,32.585563,0],[34.94979,32.585563,0],[34.949792,32.585562,0],[34.949793,32.585562,0],[34.949794,32.585562,0],[34.949795,32.585561,0],[34.949796,32.585561,0],[34.949799,32.58556,0],[34.949702,32.585546,0],[34.949576,32.585445,0],[34.949015,32.584997,0],[34.948954,32.584947,0],[34.948955,32.584946,0],[34.948955,32.584944,0],[34.948956,32.584943,0],[34.948957,32.584941,0],[34.948958,32.584939,0],[34.948959,32.584938,0],[34.94896,32.584936,0],[34.948961,32.584934,0],[34.948962,32.584933,0],[34.948963,32.584931,0],[34.948963,32.584929,0],[34.948964,32.584928,0],[34.948965,32.584926,0],[34.948966,32.584925,0],[34.948967,32.584923,0],[34.948968,32.584921,0],[34.948969,32.58492,0],[34.94897,32.584918,0],[34.948971,32.584916,0],[34.948972,32.584915,0],[34.948973,32.584913,0],[34.948974,32.584912,0],[34.948975,32.58491,0],[34.948976,32.584908,0],[34.948976,32.584907,0],[34.948977,32.584905,0],[34.948978,32.584904,0],[34.948979,32.584902,0],[34.94898,32.5849,0],[34.948981,32.584899,0],[34.948982,32.584897,0],[34.948983,32.584896,0],[34.948984,32.584894,0],[34.948985,32.584892,0],[34.948986,32.584891,0],[34.948987,32.584889,0],[34.948988,32.584887,0],[34.948989,32.584885,0],[34.94899,32.584884,0],[34.948991,32.584882,0],[34.948992,32.584881,0],[34.948993,32.584879,0],[34.948994,32.584878,0],[34.948995,32.584876,0],[34.948996,32.584874,0],[34.948997,32.584873,0],[34.948998,32.584871,0],[34.948999,32.58487,0],[34.949001,32.584868,0],[34.949002,32.584866,0],[34.949003,32.584865,0],[34.949004,32.584863,0],[34.949005,32.584862,0],[34.949006,32.58486,0],[34.949007,32.584859,0],[34.949008,32.584857,0],[34.94901,32.584854,0],[34.949011,32.584853,0],[34.949012,32.584851,0],[34.949013,32.584849,0],[34.949014,32.584848,0],[34.949015,32.584846,0],[34.949016,32.584845,0],[34.949017,32.584843,0],[34.949018,32.584842,0],[34.949019,32.58484,0],[34.949021,32.584839,0],[34.949022,32.584837,0],[34.949023,32.584836,0],[34.949024,32.584834,0],[34.949025,32.584832,0],[34.949026,32.584831,0],[34.949027,32.584829,0],[34.949028,32.584828,0],[34.949029,32.584826,0],[34.949031,32.584825,0],[34.949032,32.584823,0],[34.949033,32.584822,0],[34.949034,32.58482,0],[34.949035,32.584819,0],[34.949036,32.584817,0],[34.949037,32.584816,0],[34.949038,32.584814,0],[34.94904,32.584813,0],[34.949041,32.584811,0],[34.949042,32.58481,0],[34.949043,32.584808,0],[34.949044,32.584807,0],[34.949045,32.584805,0],[34.949046,32.584804,0],[34.949048,32.584802,0],[34.949049,32.584801,0],[34.94905,32.584799,0],[34.949051,32.584798,0],[34.949052,32.584796,0],[34.949054,32.584795,0],[34.949055,32.584793,0],[34.949056,32.584792,0],[34.949057,32.58479,0],[34.949058,32.584789,0],[34.949059,32.584787,0],[34.949061,32.584786,0],[34.949062,32.584784,0],[34.949063,32.584783,0],[34.949064,32.584781,0],[34.949066,32.58478,0],[34.949067,32.584778,0],[34.949068,32.584777,0],[34.949069,32.584775,0],[34.94907,32.584774,0],[34.949072,32.584772,0],[34.949073,32.584771,0],[34.949074,32.584769,0],[34.949075,32.584768,0],[34.949077,32.584766,0],[34.949078,32.584765,0],[34.949079,32.584763,0],[34.94908,32.584762,0],[34.949082,32.584761,0],[34.949083,32.584759,0],[34.949084,32.584758,0],[34.949085,32.584756,0],[34.949087,32.584755,0],[34.949088,32.584753,0],[34.949089,32.584752,0],[34.94909,32.58475,0],[34.949092,32.584749,0],[34.949093,32.584748,0],[34.949094,32.584746,0],[34.949095,32.584745,0],[34.949097,32.584743,0],[34.949098,32.584742,0],[34.949099,32.58474,0],[34.949101,32.584739,0],[34.949102,32.584737,0],[34.949103,32.584736,0],[34.949105,32.584735,0],[34.949106,32.584733,0],[34.949107,32.584732,0],[34.949108,32.58473,0],[34.94911,32.584729,0],[34.949111,32.584728,0],[34.949112,32.584726,0],[34.949114,32.584725,0],[34.949115,32.584723,0],[34.949116,32.584722,0],[34.949118,32.584721,0],[34.949119,32.584719,0],[34.94912,32.584718,0],[34.949122,32.584716,0],[34.949123,32.584715,0],[34.949124,32.584714,0],[34.949126,32.584712,0],[34.949127,32.584711,0],[34.949128,32.584709,0],[34.94913,32.584708,0],[34.949131,32.584707,0],[34.949133,32.584705,0],[34.949134,32.584704,0],[34.949135,32.584702,0],[34.949137,32.584701,0],[34.949138,32.5847,0],[34.949139,32.584698,0],[34.949141,32.584697,0],[34.949142,32.584696,0],[34.949144,32.584694,0],[34.949145,32.584693,0],[34.949146,32.584691,0],[34.949148,32.58469,0],[34.949149,32.584689,0],[34.94915,32.584687,0],[34.949152,32.584686,0],[34.949153,32.584685,0],[34.949155,32.584683,0],[34.949156,32.584682,0],[34.949158,32.584681,0],[34.949159,32.584679,0],[34.94916,32.584678,0],[34.949162,32.584677,0],[34.949163,32.584675,0],[34.949165,32.584674,0],[34.949166,32.584673,0],[34.949167,32.584671,0],[34.949169,32.58467,0],[34.94917,32.584669,0],[34.949173,32.584666,0],[34.949176,32.584664,0],[34.949179,32.584661,0],[34.949182,32.584658,0],[34.949185,32.584655,0],[34.949188,32.584652,0],[34.949192,32.58465,0],[34.949195,32.584647,0],[34.949198,32.584644,0],[34.949201,32.584641,0],[34.949204,32.584638,0],[34.949207,32.584636,0],[34.949211,32.584633,0],[34.949214,32.58463,0],[34.949217,32.584627,0],[34.94922,32.584625,0],[34.949223,32.584622,0],[34.949227,32.584619,0],[34.94923,32.584616,0],[34.949233,32.584614,0],[34.949236,32.584611,0],[34.94924,32.584608,0],[34.949243,32.584605,0],[34.949246,32.584603,0],[34.949249,32.5846,0],[34.949253,32.584597,0],[34.949256,32.584595,0],[34.949259,32.584592,0],[34.949262,32.584589,0],[34.949266,32.584586,0],[34.949269,32.584584,0],[34.949272,32.584581,0],[34.949276,32.584578,0],[34.949279,32.584576,0],[34.949282,32.584573,0],[34.949286,32.58457,0],[34.949289,32.584568,0],[34.949292,32.584565,0],[34.949295,32.584562,0],[34.949299,32.58456,0],[34.949302,32.584557,0],[34.949306,32.584555,0],[34.949309,32.584552,0],[34.949312,32.584549,0],[34.949316,32.584547,0],[34.949319,32.584544,0],[34.949322,32.584541,0],[34.949326,32.584539,0],[34.949329,32.584536,0],[34.949333,32.584534,0],[34.949336,32.584531,0],[34.949339,32.584528,0],[34.949343,32.584526,0],[34.949346,32.584523,0],[34.94935,32.584521,0],[34.949353,32.584518,0],[34.949356,32.584516,0],[34.94936,32.584513,0],[34.949363,32.58451,0],[34.949367,32.584508,0],[34.94937,32.584505,0],[34.949374,32.584503,0],[34.949377,32.5845,0],[34.949381,32.584498,0],[34.949384,32.584495,0],[34.949387,32.584493,0],[34.949391,32.58449,0],[34.949394,32.584488,0],[34.949398,32.584485,0],[34.949401,32.584483,0],[34.949405,32.58448,0],[34.949408,32.584478,0],[34.949412,32.584475,0],[34.949415,32.584473,0],[34.949419,32.58447,0],[34.949423,32.584468,0],[34.949426,32.584465,0],[34.94943,32.584463,0],[34.949433,32.58446,0],[34.949437,32.584458,0],[34.94944,32.584456,0],[34.949444,32.584453,0],[34.949447,32.584451,0],[34.949451,32.584448,0],[34.949454,32.584446,0],[34.949458,32.584443,0],[34.949462,32.584441,0],[34.949465,32.584439,0],[34.949469,32.584436,0],[34.949472,32.584434,0],[34.949476,32.584432,0],[34.94948,32.584429,0],[34.949483,32.584427,0],[34.949487,32.584424,0],[34.94949,32.584422,0],[34.949494,32.58442,0],[34.949498,32.584417,0],[34.949501,32.584415,0],[34.949505,32.584413,0],[34.949509,32.58441,0],[34.949512,32.584408,0],[34.949516,32.584406,0],[34.94952,32.584403,0],[34.949523,32.584401,0],[34.949527,32.584399,0],[34.949531,32.584396,0],[34.949534,32.584394,0],[34.949538,32.584392,0],[34.949542,32.584389,0],[34.949545,32.584387,0],[34.949549,32.584385,0],[34.949553,32.584383,0],[34.949556,32.58438,0],[34.94956,32.584378,0],[34.949564,32.584376,0],[34.949568,32.584374,0],[34.949571,32.584371,0],[34.949575,32.584369,0],[34.949579,32.584367,0],[34.949582,32.584365,0],[34.949586,32.584362,0],[34.94959,32.58436,0],[34.949594,32.584358,0],[34.949597,32.584356,0],[34.949601,32.584354,0],[34.949605,32.584351,0],[34.949609,32.584349,0],[34.949613,32.584347,0],[34.949616,32.584345,0],[34.94962,32.584343,0],[34.949624,32.58434,0],[34.949628,32.584338,0],[34.949631,32.584336,0],[34.949635,32.584334,0],[34.949639,32.584332,0],[34.949643,32.58433,0],[34.949647,32.584328,0],[34.94965,32.584325,0],[34.949654,32.584323,0],[34.949658,32.584321,0],[34.949662,32.584319,0],[34.949666,32.584317,0],[34.94967,32.584315,0],[34.949673,32.584313,0],[34.949677,32.584311,0],[34.949681,32.584309,0],[34.949685,32.584306,0],[34.949689,32.584304,0],[34.949693,32.584302,0],[34.949697,32.5843,0],[34.9497,32.584298,0],[34.949704,32.584296,0],[34.949708,32.584294,0],[34.949712,32.584292,0],[34.949716,32.58429,0],[34.94972,32.584288,0],[34.949724,32.584286,0],[34.949728,32.584284,0],[34.949732,32.584282,0],[34.949736,32.58428,0],[34.949739,32.584278,0],[34.949743,32.584276,0],[34.949747,32.584274,0],[34.949752,32.584271,0],[34.949551,32.584142,0],[34.949245,32.58381,0]]]},"type":"Feature","properties":{"Name":"11372"}},{"geometry":{"type":"Polygon","coordinates":[[[34.980598,32.586968,0],[34.981236,32.587497,0],[34.981512,32.587773,0],[34.981736,32.587997,0],[34.981931,32.588192,0],[34.982067,32.588283,0],[34.982151,32.58834,0],[34.982313,32.588448,0],[34.983132,32.588992,0],[34.984491,32.589909,0],[34.98461,32.58992,0],[34.984782,32.589937,0],[34.985,32.589958,0],[34.98556,32.590013,0],[34.985613,32.589934,0],[34.985617,32.589929,0],[34.985803,32.589652,0],[34.986284,32.589143,0],[34.986746,32.588719,0],[34.987288,32.588852,0],[34.987356,32.588857,0],[34.987428,32.588705,0],[34.987871,32.588166,0],[34.98978,32.586912,0],[34.989813,32.586888,0],[34.991185,32.586385,0],[34.991824,32.585752,0],[34.992303,32.584809,0],[34.992532,32.58454,0],[34.992847,32.584172,0],[34.992803,32.584133,0],[34.991039,32.584516,0],[34.989843,32.584319,0],[34.989304,32.584324,0],[34.98871,32.584341,0],[34.987541,32.584785,0],[34.986177,32.584969,0],[34.986134,32.584977,0],[34.984703,32.585226,0],[34.982848,32.585549,0],[34.982803,32.585557,0],[34.981408,32.585791,0],[34.981349,32.585815,0],[34.980468,32.586185,0],[34.980291,32.586264,0],[34.980124,32.586343,0],[34.980039,32.586383,0],[34.979983,32.58641,0],[34.980033,32.58645,0],[34.980034,32.5865,0],[34.98057,32.586945,0],[34.980598,32.586968,0]]]},"type":"Feature","properties":{"Name":"11340"}},{"geometry":{"type":"Polygon","coordinates":[[[34.985955,32.58419,0],[34.985996,32.584365,0],[34.986177,32.584969,0],[34.987541,32.584785,0],[34.98871,32.584341,0],[34.989304,32.584324,0],[34.989843,32.584319,0],[34.991039,32.584516,0],[34.992803,32.584133,0],[34.993309,32.583821,0],[34.993434,32.583775,0],[34.993709,32.583692,0],[34.994243,32.58363,0],[34.993913,32.583069,0],[34.994023,32.582562,0],[34.994125,32.58204,0],[34.994332,32.58131,0],[34.994455,32.580631,0],[34.994896,32.579831,0],[34.995063,32.579539,0],[34.995047,32.57949,0],[34.994092,32.579859,0],[34.993898,32.57979,0],[34.992387,32.577513,0],[34.992372,32.577446,0],[34.992072,32.57729,0],[34.991546,32.577399,0],[34.991391,32.577816,0],[34.991314,32.578021,0],[34.990882,32.579402,0],[34.990241,32.579245,0],[34.989982,32.578284,0],[34.987601,32.577113,0],[34.98701,32.577013,0],[34.986244,32.576814,0],[34.985608,32.57677,0],[34.985136,32.576639,0],[34.984108,32.575761,0],[34.983564,32.575253,0],[34.983754,32.575873,0],[34.983843,32.576179,0],[34.983858,32.576869,0],[34.983732,32.577303,0],[34.983663,32.577541,0],[34.983066,32.578451,0],[34.982971,32.578518,0],[34.983578,32.578498,0],[34.983621,32.57858,0],[34.983784,32.578509,0],[34.984003,32.578413,0],[34.984431,32.580184,0],[34.984526,32.580352,0],[34.984562,32.580413,0],[34.984791,32.580635,0],[34.984854,32.580695,0],[34.985141,32.581513,0],[34.985334,32.58206,0],[34.985519,32.58259,0],[34.985676,32.583037,0],[34.985701,32.583106,0],[34.985698,32.5832,0],[34.98585,32.583784,0],[34.985955,32.58419,0]]]},"type":"Feature","properties":{"Name":"11339"}},{"geometry":{"type":"Polygon","coordinates":[[[34.982325,32.578956,0],[34.981383,32.579761,0],[34.981344,32.579793,0],[34.980569,32.580466,0],[34.980146,32.580819,0],[34.979843,32.581036,0],[34.979684,32.581104,0],[34.978929,32.581384,0],[34.978472,32.581489,0],[34.978578,32.581945,0],[34.978685,32.582405,0],[34.978884,32.583249,0],[34.978953,32.583506,0],[34.979128,32.584187,0],[34.979324,32.584653,0],[34.979493,32.585124,0],[34.979505,32.585149,0],[34.979722,32.585619,0],[34.980051,32.585981,0],[34.980286,32.585882,0],[34.980468,32.586185,0],[34.981349,32.585815,0],[34.981408,32.585791,0],[34.982803,32.585557,0],[34.982848,32.585549,0],[34.984703,32.585226,0],[34.986134,32.584977,0],[34.986177,32.584969,0],[34.985996,32.584365,0],[34.985955,32.58419,0],[34.98585,32.583784,0],[34.985698,32.5832,0],[34.985701,32.583106,0],[34.985676,32.583037,0],[34.985519,32.58259,0],[34.985334,32.58206,0],[34.985141,32.581513,0],[34.984854,32.580695,0],[34.984791,32.580635,0],[34.984562,32.580413,0],[34.984526,32.580352,0],[34.984431,32.580184,0],[34.984003,32.578413,0],[34.983784,32.578509,0],[34.983621,32.57858,0],[34.983578,32.578498,0],[34.982971,32.578518,0],[34.982325,32.578956,0]]]},"type":"Feature","properties":{"Name":"11338"}},{"geometry":{"type":"Polygon","coordinates":[[[34.981139,32.589624,0],[34.981442,32.589714,0],[34.982164,32.588661,0],[34.982218,32.588581,0],[34.982256,32.588527,0],[34.982313,32.588448,0],[34.982151,32.58834,0],[34.982067,32.588283,0],[34.981931,32.588192,0],[34.981736,32.587997,0],[34.981512,32.587773,0],[34.981236,32.587497,0],[34.980598,32.586968,0],[34.98057,32.586945,0],[34.980034,32.5865,0],[34.980033,32.58645,0],[34.979983,32.58641,0],[34.979903,32.586382,0],[34.978628,32.585329,0],[34.978252,32.585029,0],[34.97766,32.584555,0],[34.976928,32.583951,0],[34.976692,32.583756,0],[34.975814,32.58303,0],[34.97535,32.582653,0],[34.974919,32.582298,0],[34.974865,32.582194,0],[34.974768,32.582169,0],[34.974623,32.582192,0],[34.974496,32.582214,0],[34.974432,32.582226,0],[34.974347,32.582241,0],[34.974087,32.582286,0],[34.974137,32.582307,0],[34.97395,32.582404,0],[34.973674,32.582467,0],[34.973174,32.582475,0],[34.973088,32.582477,0],[34.973112,32.58257,0],[34.973315,32.58266,0],[34.973596,32.582783,0],[34.97409,32.583102,0],[34.974326,32.583339,0],[34.974759,32.58395,0],[34.97521,32.584502,0],[34.975384,32.58491,0],[34.97546,32.585165,0],[34.975728,32.586303,0],[34.975767,32.586469,0],[34.975856,32.586677,0],[34.976078,32.587117,0],[34.976321,32.587597,0],[34.976794,32.588536,0],[34.976813,32.588573,0],[34.976854,32.588653,0],[34.9771,32.589162,0],[34.977144,32.589252,0],[34.977066,32.589851,0],[34.977071,32.589897,0],[34.977071,32.589934,0],[34.977437,32.590228,0],[34.977687,32.590479,0],[34.978083,32.590965,0],[34.978357,32.591259,0],[34.978539,32.591539,0],[34.978635,32.591733,0],[34.978789,32.592373,0],[34.978794,32.592628,0],[34.978711,32.592984,0],[34.978521,32.59341,0],[34.978502,32.593452,0],[34.97884,32.593608,0],[34.978885,32.593543,0],[34.980234,32.591542,0],[34.980267,32.591496,0],[34.97996,32.591347,0],[34.981139,32.589624,0]]]},"type":"Feature","properties":{"Name":"11337"}},{"geometry":{"type":"Polygon","coordinates":[[[34.989664,32.593159,0],[34.989717,32.593121,0],[34.989449,32.592705,0],[34.989691,32.590784,0],[34.989705,32.59067,0],[34.989729,32.590528,0],[34.989442,32.590572,0],[34.989304,32.590513,0],[34.989003,32.590396,0],[34.988822,32.590331,0],[34.98556,32.590013,0],[34.985,32.589958,0],[34.984782,32.589937,0],[34.98461,32.58992,0],[34.984491,32.589909,0],[34.983132,32.588992,0],[34.982313,32.588448,0],[34.982256,32.588527,0],[34.982218,32.588581,0],[34.982164,32.588661,0],[34.981442,32.589714,0],[34.981139,32.589624,0],[34.97996,32.591347,0],[34.980267,32.591496,0],[34.980234,32.591542,0],[34.978885,32.593543,0],[34.97884,32.593608,0],[34.97922,32.593781,0],[34.979213,32.593818,0],[34.979271,32.593848,0],[34.979333,32.593852,0],[34.980117,32.59424,0],[34.982416,32.59538,0],[34.983297,32.595817,0],[34.984537,32.596384,0],[34.986026,32.596805,0],[34.985914,32.596978,0],[34.986338,32.597519,0],[34.986307,32.597594,0],[34.986724,32.597561,0],[34.988208,32.595483,0],[34.988244,32.595433,0],[34.988137,32.59538,0],[34.989664,32.593159,0]]]},"type":"Feature","properties":{"Name":"11336"}},{"geometry":{"type":"Polygon","coordinates":[[[34.977048,32.594959,0],[34.976853,32.595082,0],[34.976487,32.595204,0],[34.976403,32.595321,0],[34.976394,32.595356,0],[34.976349,32.59567,0],[34.976349,32.595838,0],[34.976351,32.595897,0],[34.976443,32.595868,0],[34.976766,32.595897,0],[34.977159,32.59603,0],[34.977605,32.596435,0],[34.977607,32.596284,0],[34.977865,32.59689,0],[34.977869,32.596985,0],[34.977858,32.597787,0],[34.977994,32.598357,0],[34.977999,32.598583,0],[34.977974,32.598804,0],[34.97795,32.599231,0],[34.977785,32.599727,0],[34.977565,32.600189,0],[34.977295,32.601109,0],[34.977281,32.601122,0],[34.977532,32.60127,0],[34.978468,32.600344,0],[34.979214,32.599975,0],[34.979431,32.600003,0],[34.979776,32.60012,0],[34.979964,32.600372,0],[34.980085,32.600753,0],[34.980493,32.601022,0],[34.981212,32.60146,0],[34.981638,32.600775,0],[34.98245,32.601131,0],[34.983906,32.600186,0],[34.984385,32.599905,0],[34.984734,32.599658,0],[34.986858,32.5981,0],[34.986307,32.597594,0],[34.986338,32.597519,0],[34.985914,32.596978,0],[34.986026,32.596805,0],[34.984537,32.596384,0],[34.983297,32.595817,0],[34.982416,32.59538,0],[34.980117,32.59424,0],[34.979333,32.593852,0],[34.979271,32.593848,0],[34.979213,32.593818,0],[34.97922,32.593781,0],[34.97884,32.593608,0],[34.978502,32.593452,0],[34.978258,32.593541,0],[34.977966,32.594004,0],[34.977549,32.594317,0],[34.977106,32.594829,0],[34.977048,32.594959,0]]]},"type":"Feature","properties":{"Name":"11335"}},{"geometry":{"type":"Polygon","coordinates":[[[34.976004,32.602127,0],[34.976416,32.601891,0],[34.97664,32.601717,0],[34.977281,32.601122,0],[34.977295,32.601109,0],[34.977565,32.600189,0],[34.977785,32.599727,0],[34.97795,32.599231,0],[34.977974,32.598804,0],[34.977999,32.598583,0],[34.977994,32.598357,0],[34.977858,32.597787,0],[34.977869,32.596985,0],[34.977865,32.59689,0],[34.977607,32.596284,0],[34.977605,32.596435,0],[34.977159,32.59603,0],[34.976766,32.595897,0],[34.976443,32.595868,0],[34.976351,32.595897,0],[34.976348,32.596056,0],[34.976267,32.596104,0],[34.976199,32.596145,0],[34.975788,32.596394,0],[34.97479,32.596213,0],[34.974042,32.597637,0],[34.974078,32.597918,0],[34.974127,32.598035,0],[34.974036,32.598011,0],[34.973584,32.597822,0],[34.973498,32.597823,0],[34.973458,32.597824,0],[34.973382,32.597805,0],[34.973346,32.597788,0],[34.973092,32.597665,0],[34.973067,32.59766,0],[34.973024,32.597652,0],[34.972791,32.597724,0],[34.972723,32.597701,0],[34.97244,32.597683,0],[34.972302,32.597732,0],[34.971512,32.598158,0],[34.971546,32.598222,0],[34.971705,32.598309,0],[34.971927,32.59862,0],[34.971896,32.598787,0],[34.971761,32.599187,0],[34.971668,32.599254,0],[34.970513,32.599027,0],[34.970444,32.599105,0],[34.969744,32.5991,0],[34.969579,32.59909,0],[34.96928,32.59915,0],[34.968556,32.599329,0],[34.967726,32.5995,0],[34.967528,32.599527,0],[34.967227,32.599569,0],[34.967076,32.59958,0],[34.966194,32.599641,0],[34.970678,32.602599,0],[34.970708,32.603086,0],[34.970755,32.603563,0],[34.970724,32.60365,0],[34.970635,32.603775,0],[34.97062,32.603872,0],[34.970624,32.604106,0],[34.971026,32.604077,0],[34.972082,32.603923,0],[34.972301,32.604157,0],[34.972495,32.60409,0],[34.973085,32.603858,0],[34.973362,32.603746,0],[34.974123,32.603448,0],[34.975112,32.603041,0],[34.975336,32.602716,0],[34.975351,32.602522,0],[34.975845,32.60222,0],[34.97589,32.602192,0],[34.976004,32.602127,0]]]},"type":"Feature","properties":{"Name":"11334"}},{"geometry":{"type":"Polygon","coordinates":[[[34.976403,32.595321,0],[34.976487,32.595204,0],[34.976853,32.595082,0],[34.977048,32.594959,0],[34.977106,32.594829,0],[34.977429,32.594456,0],[34.977524,32.594346,0],[34.977549,32.594317,0],[34.977966,32.594004,0],[34.978258,32.593541,0],[34.978502,32.593452,0],[34.978055,32.593235,0],[34.976767,32.593027,0],[34.9766,32.592969,0],[34.974037,32.592067,0],[34.972504,32.592473,0],[34.972441,32.592496,0],[34.972399,32.592677,0],[34.972149,32.593838,0],[34.971046,32.593686,0],[34.971396,32.59167,0],[34.970939,32.591795,0],[34.970304,32.591923,0],[34.969762,32.59196,0],[34.969709,32.591917,0],[34.969556,32.592118,0],[34.969069,32.5928,0],[34.968562,32.593506,0],[34.967937,32.594377,0],[34.967949,32.594456,0],[34.968318,32.594558,0],[34.967691,32.595163,0],[34.966519,32.596353,0],[34.966177,32.596665,0],[34.967324,32.597088,0],[34.968466,32.597471,0],[34.969388,32.597803,0],[34.969473,32.597825,0],[34.970007,32.597961,0],[34.970333,32.59802,0],[34.971127,32.598122,0],[34.971345,32.598153,0],[34.971546,32.598222,0],[34.971512,32.598158,0],[34.972302,32.597732,0],[34.97244,32.597683,0],[34.972723,32.597701,0],[34.972791,32.597724,0],[34.973024,32.597652,0],[34.973067,32.59766,0],[34.973092,32.597665,0],[34.973346,32.597788,0],[34.973382,32.597805,0],[34.973458,32.597824,0],[34.973498,32.597823,0],[34.973584,32.597822,0],[34.974036,32.598011,0],[34.974127,32.598035,0],[34.974078,32.597918,0],[34.974042,32.597637,0],[34.97479,32.596213,0],[34.975788,32.596394,0],[34.976199,32.596145,0],[34.976267,32.596104,0],[34.976348,32.596056,0],[34.976351,32.595897,0],[34.976349,32.595838,0],[34.976349,32.59567,0],[34.97637,32.595522,0],[34.976394,32.595356,0],[34.976403,32.595321,0]]]},"type":"Feature","properties":{"Name":"11333"}},{"geometry":{"type":"Polygon","coordinates":[[[34.969999,32.597959,0],[34.969473,32.597825,0],[34.969388,32.597803,0],[34.968466,32.597471,0],[34.96808,32.597332,0],[34.967324,32.597088,0],[34.966022,32.596608,0],[34.965955,32.596555,0],[34.965651,32.596185,0],[34.965077,32.595579,0],[34.964603,32.594971,0],[34.964292,32.594546,0],[34.964194,32.594342,0],[34.96413,32.594199,0],[34.964091,32.593728,0],[34.96407,32.59333,0],[34.963982,32.592855,0],[34.963787,32.592173,0],[34.963108,32.591274,0],[34.963029,32.591084,0],[34.962876,32.590314,0],[34.962878,32.590088,0],[34.962875,32.589946,0],[34.962814,32.589931,0],[34.961813,32.589661,0],[34.961991,32.591056,0],[34.961959,32.591322,0],[34.961941,32.591482,0],[34.961894,32.591608,0],[34.961708,32.591728,0],[34.961551,32.592014,0],[34.961511,32.592202,0],[34.961509,32.592476,0],[34.961502,32.592814,0],[34.961468,32.593079,0],[34.961531,32.593306,0],[34.961643,32.593492,0],[34.961698,32.593543,0],[34.961731,32.593611,0],[34.961774,32.593712,0],[34.961834,32.593824,0],[34.961902,32.594037,0],[34.962065,32.594706,0],[34.962161,32.594906,0],[34.962237,32.595031,0],[34.96233,32.595158,0],[34.962502,32.595722,0],[34.962568,32.595961,0],[34.962758,32.596458,0],[34.963081,32.597143,0],[34.963129,32.597276,0],[34.963188,32.597385,0],[34.963239,32.597503,0],[34.963365,32.597635,0],[34.963917,32.598096,0],[34.964118,32.59827,0],[34.964462,32.598503,0],[34.965906,32.599449,0],[34.966194,32.599641,0],[34.967076,32.59958,0],[34.967227,32.599569,0],[34.967528,32.599527,0],[34.967726,32.5995,0],[34.968556,32.599329,0],[34.96928,32.59915,0],[34.969579,32.59909,0],[34.969744,32.5991,0],[34.970444,32.599105,0],[34.970513,32.599027,0],[34.971668,32.599254,0],[34.971761,32.599187,0],[34.971896,32.598787,0],[34.971927,32.59862,0],[34.971705,32.598309,0],[34.971546,32.598222,0],[34.971345,32.598153,0],[34.971127,32.598122,0],[34.970333,32.59802,0],[34.970007,32.597961,0],[34.969999,32.597959,0]]]},"type":"Feature","properties":{"Name":"11332"}},{"geometry":{"type":"Polygon","coordinates":[[[34.970009,32.591186,0],[34.970293,32.590332,0],[34.970272,32.590293,0],[34.97026,32.590239,0],[34.970253,32.590203,0],[34.970222,32.590149,0],[34.970194,32.590102,0],[34.97016,32.590012,0],[34.97015,32.589894,0],[34.970159,32.589715,0],[34.970161,32.589588,0],[34.970203,32.589484,0],[34.970277,32.589443,0],[34.970373,32.589446,0],[34.970535,32.589608,0],[34.970602,32.589583,0],[34.970616,32.589497,0],[34.970552,32.589224,0],[34.970588,32.589101,0],[34.970949,32.588769,0],[34.971091,32.588443,0],[34.971103,32.588383,0],[34.971052,32.588328,0],[34.970777,32.588288,0],[34.970727,32.588246,0],[34.9707,32.588202,0],[34.970665,32.588111,0],[34.970641,32.587924,0],[34.970614,32.587788,0],[34.970582,32.587633,0],[34.970542,32.587402,0],[34.970504,32.587296,0],[34.970146,32.586548,0],[34.969886,32.586027,0],[34.969772,32.585871,0],[34.969442,32.585525,0],[34.969319,32.585385,0],[34.969319,32.585428,0],[34.968567,32.585335,0],[34.968198,32.585286,0],[34.967854,32.585279,0],[34.967549,32.585316,0],[34.967249,32.585391,0],[34.96661,32.58551,0],[34.966281,32.585572,0],[34.965531,32.58587,0],[34.964946,32.586141,0],[34.964945,32.586142,0],[34.963951,32.58662,0],[34.963852,32.586787,0],[34.963584,32.587383,0],[34.963506,32.587721,0],[34.96338,32.589119,0],[34.963299,32.589354,0],[34.963223,32.589483,0],[34.962938,32.589648,0],[34.962814,32.589931,0],[34.962875,32.589946,0],[34.962878,32.590088,0],[34.962876,32.590314,0],[34.963029,32.591084,0],[34.963108,32.591274,0],[34.963787,32.592173,0],[34.963982,32.592855,0],[34.96407,32.59333,0],[34.964091,32.593728,0],[34.96413,32.594199,0],[34.964194,32.594342,0],[34.964292,32.594546,0],[34.964603,32.594971,0],[34.965077,32.595579,0],[34.965651,32.596185,0],[34.965955,32.596555,0],[34.966022,32.596608,0],[34.966177,32.596665,0],[34.966519,32.596353,0],[34.967691,32.595163,0],[34.968318,32.594558,0],[34.967949,32.594456,0],[34.967937,32.594377,0],[34.96844,32.593676,0],[34.96852,32.593565,0],[34.969069,32.5928,0],[34.969556,32.592118,0],[34.969709,32.591917,0],[34.970009,32.591186,0]]]},"type":"Feature","properties":{"Name":"11331"}},{"geometry":{"type":"Polygon","coordinates":[[[34.97468,32.590263,0],[34.974496,32.590778,0],[34.974037,32.592067,0],[34.9766,32.592969,0],[34.976767,32.593027,0],[34.978055,32.593235,0],[34.978502,32.593452,0],[34.978521,32.59341,0],[34.978711,32.592984,0],[34.978794,32.592628,0],[34.978789,32.592373,0],[34.978635,32.591733,0],[34.978539,32.591539,0],[34.978357,32.591259,0],[34.978083,32.590965,0],[34.977687,32.590479,0],[34.977437,32.590228,0],[34.977071,32.589934,0],[34.977071,32.589897,0],[34.977066,32.589851,0],[34.977144,32.589252,0],[34.9771,32.589162,0],[34.976854,32.588653,0],[34.976813,32.588573,0],[34.976794,32.588536,0],[34.976321,32.587597,0],[34.976078,32.587117,0],[34.975856,32.586677,0],[34.975767,32.586469,0],[34.975728,32.586303,0],[34.97546,32.585165,0],[34.975384,32.58491,0],[34.97521,32.584502,0],[34.974759,32.58395,0],[34.974326,32.583339,0],[34.97409,32.583102,0],[34.973596,32.582783,0],[34.973315,32.58266,0],[34.973112,32.58257,0],[34.973088,32.582477,0],[34.972186,32.582855,0],[34.971675,32.58319,0],[34.971475,32.583347,0],[34.971318,32.583481,0],[34.970718,32.584112,0],[34.970557,32.584298,0],[34.970404,32.584513,0],[34.970131,32.58487,0],[34.969768,32.584966,0],[34.969246,32.585136,0],[34.969194,32.585174,0],[34.969115,32.585239,0],[34.969319,32.585385,0],[34.969442,32.585525,0],[34.969772,32.585871,0],[34.969886,32.586027,0],[34.970146,32.586548,0],[34.970504,32.587296,0],[34.970542,32.587402,0],[34.970582,32.587633,0],[34.970614,32.587788,0],[34.970641,32.587924,0],[34.970665,32.588111,0],[34.9707,32.588202,0],[34.970727,32.588246,0],[34.970777,32.588288,0],[34.971052,32.588328,0],[34.971103,32.588383,0],[34.971091,32.588443,0],[34.970949,32.588769,0],[34.970588,32.589101,0],[34.970793,32.589041,0],[34.972036,32.589008,0],[34.972317,32.588997,0],[34.972176,32.588812,0],[34.9722,32.588338,0],[34.972582,32.587557,0],[34.973005,32.58763,0],[34.973054,32.587649,0],[34.972843,32.587965,0],[34.973166,32.588969,0],[34.974232,32.588805,0],[34.974329,32.589155,0],[34.974111,32.589164,0],[34.974098,32.589467,0],[34.974155,32.5898,0],[34.974849,32.589789,0],[34.97468,32.590263,0]]]},"type":"Feature","properties":{"Name":"11329"}},{"geometry":{"type":"Polygon","coordinates":[[[34.97535,32.582653,0],[34.975814,32.58303,0],[34.976692,32.583756,0],[34.976928,32.583951,0],[34.97766,32.584555,0],[34.978252,32.585029,0],[34.978628,32.585329,0],[34.979903,32.586382,0],[34.979983,32.58641,0],[34.980039,32.586383,0],[34.980124,32.586343,0],[34.980291,32.586264,0],[34.980468,32.586185,0],[34.980286,32.585882,0],[34.980051,32.585981,0],[34.979722,32.585619,0],[34.979505,32.585149,0],[34.979493,32.585124,0],[34.979324,32.584653,0],[34.979128,32.584187,0],[34.978953,32.583506,0],[34.978884,32.583249,0],[34.978685,32.582405,0],[34.978578,32.581945,0],[34.978472,32.581489,0],[34.978929,32.581384,0],[34.979684,32.581104,0],[34.979843,32.581036,0],[34.980146,32.580819,0],[34.980569,32.580466,0],[34.981344,32.579793,0],[34.981383,32.579761,0],[34.982325,32.578956,0],[34.982971,32.578518,0],[34.983066,32.578451,0],[34.983663,32.577541,0],[34.983732,32.577303,0],[34.983858,32.576869,0],[34.983843,32.576179,0],[34.983754,32.575873,0],[34.983564,32.575253,0],[34.983192,32.574448,0],[34.983077,32.574051,0],[34.98303,32.573889,0],[34.98306,32.573285,0],[34.98297,32.573311,0],[34.982895,32.573352,0],[34.982583,32.573417,0],[34.981863,32.573572,0],[34.982089,32.574364,0],[34.982303,32.574594,0],[34.981953,32.574764,0],[34.981258,32.574934,0],[34.981047,32.575004,0],[34.980828,32.575128,0],[34.980456,32.575296,0],[34.980046,32.575263,0],[34.979639,32.575352,0],[34.979344,32.575312,0],[34.978246,32.575339,0],[34.978213,32.575337,0],[34.97815,32.575334,0],[34.977334,32.575304,0],[34.976091,32.575614,0],[34.976023,32.575633,0],[34.976077,32.576094,0],[34.976127,32.576365,0],[34.976241,32.576914,0],[34.976245,32.577047,0],[34.976198,32.577431,0],[34.975982,32.577811,0],[34.975736,32.57816,0],[34.975483,32.578455,0],[34.975449,32.578495,0],[34.975443,32.578892,0],[34.975441,32.579659,0],[34.97544,32.579882,0],[34.975459,32.580412,0],[34.975502,32.580795,0],[34.975588,32.58175,0],[34.975587,32.582003,0],[34.975563,32.582044,0],[34.975147,32.582133,0],[34.97491,32.582184,0],[34.974865,32.582194,0],[34.974919,32.582298,0],[34.97535,32.582653,0]]]},"type":"Feature","properties":{"Name":"11328"}},{"geometry":{"type":"Polygon","coordinates":[[[34.975588,32.58175,0],[34.975502,32.580795,0],[34.975459,32.580412,0],[34.97544,32.579882,0],[34.975441,32.579659,0],[34.975443,32.578892,0],[34.975449,32.578495,0],[34.975483,32.578455,0],[34.975736,32.57816,0],[34.975982,32.577811,0],[34.976198,32.577431,0],[34.976245,32.577047,0],[34.976241,32.576914,0],[34.976127,32.576365,0],[34.976077,32.576094,0],[34.976023,32.575633,0],[34.97545,32.575773,0],[34.975083,32.575788,0],[34.974826,32.575622,0],[34.974768,32.575332,0],[34.974355,32.575063,0],[34.974146,32.574843,0],[34.973826,32.574802,0],[34.973129,32.574698,0],[34.972488,32.5746,0],[34.971694,32.574969,0],[34.970238,32.575655,0],[34.969889,32.575815,0],[34.968824,32.575963,0],[34.967373,32.575317,0],[34.966588,32.573493,0],[34.966224,32.573738,0],[34.965354,32.573884,0],[34.964359,32.57394,0],[34.964328,32.573971,0],[34.964188,32.574113,0],[34.964181,32.57412,0],[34.964347,32.574245,0],[34.964586,32.574534,0],[34.964714,32.5747,0],[34.964776,32.574906,0],[34.964787,32.575137,0],[34.96485,32.575323,0],[34.964955,32.575478,0],[34.965069,32.575562,0],[34.96528,32.575704,0],[34.965359,32.575765,0],[34.965415,32.575923,0],[34.96542,32.576055,0],[34.965396,32.576264,0],[34.965255,32.57646,0],[34.965112,32.576562,0],[34.965066,32.576582,0],[34.964584,32.576793,0],[34.964121,32.576914,0],[34.963941,32.576947,0],[34.963855,32.576962,0],[34.963702,32.577151,0],[34.963598,32.577262,0],[34.963642,32.577306,0],[34.963717,32.57738,0],[34.963786,32.577447,0],[34.963837,32.577497,0],[34.965349,32.578144,0],[34.965553,32.578232,0],[34.966105,32.578468,0],[34.966223,32.578495,0],[34.966756,32.578553,0],[34.967061,32.578591,0],[34.967268,32.578629,0],[34.967637,32.578722,0],[34.967838,32.578755,0],[34.968017,32.578814,0],[34.968201,32.578861,0],[34.968287,32.578878,0],[34.968478,32.578928,0],[34.968651,32.578974,0],[34.968846,32.579027,0],[34.969103,32.5791,0],[34.969279,32.579151,0],[34.969567,32.579226,0],[34.969837,32.579299,0],[34.970012,32.579351,0],[34.970287,32.579422,0],[34.970485,32.57947,0],[34.970739,32.579546,0],[34.970923,32.579603,0],[34.971083,32.579658,0],[34.971251,32.579718,0],[34.971478,32.579795,0],[34.971625,32.57985,0],[34.971764,32.579908,0],[34.971893,32.579975,0],[34.972089,32.580077,0],[34.972213,32.58015,0],[34.972364,32.580296,0],[34.972485,32.580376,0],[34.972638,32.580503,0],[34.972853,32.580687,0],[34.973053,32.580861,0],[34.973256,32.581051,0],[34.97358,32.58132,0],[34.973938,32.58163,0],[34.974623,32.582192,0],[34.974768,32.582169,0],[34.974865,32.582194,0],[34.97491,32.582184,0],[34.975147,32.582133,0],[34.975563,32.582044,0],[34.975587,32.582003,0],[34.975588,32.58175,0]]]},"type":"Feature","properties":{"Name":"11327"}},{"geometry":{"type":"Polygon","coordinates":[[[34.967268,32.578629,0],[34.967061,32.578591,0],[34.966756,32.578553,0],[34.966223,32.578495,0],[34.966105,32.578468,0],[34.965553,32.578232,0],[34.965349,32.578144,0],[34.965355,32.578234,0],[34.965364,32.57835,0],[34.965373,32.578484,0],[34.965375,32.578669,0],[34.965538,32.579271,0],[34.965785,32.579944,0],[34.966126,32.580655,0],[34.96626,32.580851,0],[34.966969,32.582235,0],[34.967229,32.582756,0],[34.967213,32.5828,0],[34.96725,32.582858,0],[34.967297,32.582892,0],[34.968271,32.584776,0],[34.968937,32.585076,0],[34.969115,32.585239,0],[34.969194,32.585174,0],[34.969246,32.585136,0],[34.969768,32.584966,0],[34.970131,32.58487,0],[34.970404,32.584513,0],[34.970557,32.584298,0],[34.970718,32.584112,0],[34.971318,32.583481,0],[34.971475,32.583347,0],[34.971675,32.58319,0],[34.972186,32.582855,0],[34.972422,32.582756,0],[34.973088,32.582477,0],[34.973174,32.582475,0],[34.973674,32.582467,0],[34.97395,32.582404,0],[34.974137,32.582307,0],[34.974087,32.582286,0],[34.974347,32.582241,0],[34.974432,32.582226,0],[34.974496,32.582214,0],[34.974623,32.582192,0],[34.973938,32.58163,0],[34.97358,32.58132,0],[34.973256,32.581051,0],[34.973053,32.580861,0],[34.972853,32.580687,0],[34.972638,32.580503,0],[34.972485,32.580376,0],[34.972364,32.580296,0],[34.972213,32.58015,0],[34.972089,32.580077,0],[34.971893,32.579975,0],[34.971764,32.579908,0],[34.971625,32.57985,0],[34.971478,32.579795,0],[34.971251,32.579718,0],[34.971083,32.579658,0],[34.970923,32.579603,0],[34.970739,32.579546,0],[34.970485,32.57947,0],[34.970287,32.579422,0],[34.970012,32.579351,0],[34.969837,32.579299,0],[34.969567,32.579226,0],[34.969279,32.579151,0],[34.969103,32.5791,0],[34.968846,32.579027,0],[34.968651,32.578974,0],[34.968478,32.578928,0],[34.968287,32.578878,0],[34.968201,32.578861,0],[34.968017,32.578814,0],[34.967838,32.578755,0],[34.967637,32.578722,0],[34.967268,32.578629,0]]]},"type":"Feature","properties":{"Name":"11326"}},{"geometry":{"type":"Polygon","coordinates":[[[34.965538,32.579271,0],[34.965375,32.578669,0],[34.965373,32.578483,0],[34.965364,32.57835,0],[34.965355,32.578234,0],[34.965349,32.578144,0],[34.963837,32.577497,0],[34.963786,32.577447,0],[34.963717,32.57738,0],[34.963642,32.577306,0],[34.963598,32.577262,0],[34.963535,32.577257,0],[34.963223,32.577672,0],[34.963075,32.577869,0],[34.963046,32.577907,0],[34.96275,32.578301,0],[34.962335,32.578853,0],[34.96188,32.579459,0],[34.961612,32.579815,0],[34.961285,32.58025,0],[34.961143,32.580439,0],[34.960222,32.581664,0],[34.960013,32.581934,0],[34.958851,32.583439,0],[34.958729,32.583652,0],[34.958042,32.584853,0],[34.957622,32.585798,0],[34.957553,32.585992,0],[34.957536,32.58604,0],[34.957527,32.586114,0],[34.957509,32.586267,0],[34.957577,32.586359,0],[34.957608,32.5864,0],[34.957695,32.5865,0],[34.957827,32.586747,0],[34.958002,32.587408,0],[34.958049,32.587608,0],[34.958144,32.588159,0],[34.958029,32.588305,0],[34.9579,32.588466,0],[34.957915,32.588465,0],[34.95831,32.588439,0],[34.959054,32.588391,0],[34.959088,32.588388,0],[34.95973,32.588605,0],[34.959939,32.589022,0],[34.960169,32.589634,0],[34.960799,32.590524,0],[34.961116,32.590728,0],[34.961625,32.591367,0],[34.961708,32.591728,0],[34.961894,32.591608,0],[34.961941,32.591482,0],[34.961959,32.591322,0],[34.961991,32.591056,0],[34.961813,32.589661,0],[34.962814,32.589931,0],[34.962938,32.589648,0],[34.963223,32.589483,0],[34.963299,32.589354,0],[34.96338,32.589119,0],[34.963506,32.587721,0],[34.963584,32.587383,0],[34.963852,32.586787,0],[34.963951,32.58662,0],[34.964946,32.586141,0],[34.965531,32.58587,0],[34.966281,32.585572,0],[34.96661,32.58551,0],[34.967249,32.585391,0],[34.967549,32.585316,0],[34.967854,32.585279,0],[34.968198,32.585286,0],[34.968567,32.585335,0],[34.969319,32.585428,0],[34.969319,32.585385,0],[34.969115,32.585239,0],[34.968937,32.585076,0],[34.968271,32.584776,0],[34.968259,32.584753,0],[34.967297,32.582892,0],[34.96725,32.582858,0],[34.967213,32.5828,0],[34.967229,32.582756,0],[34.966969,32.582235,0],[34.96626,32.580851,0],[34.966192,32.580752,0],[34.966126,32.580655,0],[34.965785,32.579944,0],[34.965538,32.579271,0]]]},"type":"Feature","properties":{"Name":"11325"}},{"geometry":{"type":"Polygon","coordinates":[[[34.959065,32.57584,0],[34.958882,32.575771,0],[34.958672,32.57581,0],[34.958516,32.575835,0],[34.958305,32.575848,0],[34.958211,32.574935,0],[34.958207,32.574808,0],[34.958203,32.574662,0],[34.958106,32.574806,0],[34.957937,32.574807,0],[34.957038,32.574982,0],[34.956994,32.57499,0],[34.956915,32.574989,0],[34.95665,32.57505,0],[34.956178,32.575154,0],[34.956069,32.57523,0],[34.95602,32.575265,0],[34.955923,32.575639,0],[34.955896,32.575704,0],[34.955773,32.576004,0],[34.955548,32.576307,0],[34.955325,32.576471,0],[34.955026,32.576618,0],[34.954781,32.576669,0],[34.954706,32.576742,0],[34.954571,32.576945,0],[34.954409,32.577047,0],[34.954183,32.57719,0],[34.954016,32.577273,0],[34.95402,32.577279,0],[34.954036,32.577305,0],[34.954101,32.577411,0],[34.954141,32.577474,0],[34.954227,32.577609,0],[34.954314,32.577745,0],[34.95441,32.577895,0],[34.954477,32.578001,0],[34.954502,32.57804,0],[34.954592,32.578181,0],[34.954687,32.578331,0],[34.954774,32.578467,0],[34.954832,32.578558,0],[34.954877,32.578604,0],[34.954911,32.578639,0],[34.95513,32.578864,0],[34.955622,32.57937,0],[34.956022,32.579781,0],[34.956198,32.579961,0],[34.956281,32.580047,0],[34.9563,32.580066,0],[34.956345,32.580106,0],[34.956462,32.580237,0],[34.95668,32.580481,0],[34.956753,32.580562,0],[34.956873,32.580632,0],[34.957121,32.580778,0],[34.957324,32.580633,0],[34.959068,32.581521,0],[34.959401,32.581656,0],[34.959871,32.581869,0],[34.959903,32.581884,0],[34.960013,32.581934,0],[34.960222,32.581664,0],[34.961143,32.580439,0],[34.961285,32.58025,0],[34.961612,32.579815,0],[34.96188,32.579459,0],[34.962335,32.578853,0],[34.96275,32.578301,0],[34.963046,32.577907,0],[34.963075,32.577869,0],[34.963137,32.577786,0],[34.963223,32.577672,0],[34.963535,32.577257,0],[34.963598,32.577262,0],[34.963702,32.577151,0],[34.963855,32.576962,0],[34.963941,32.576947,0],[34.964121,32.576914,0],[34.964584,32.576793,0],[34.965031,32.576598,0],[34.965112,32.576562,0],[34.965255,32.57646,0],[34.965396,32.576264,0],[34.96542,32.576055,0],[34.965415,32.575923,0],[34.965384,32.575836,0],[34.965359,32.575765,0],[34.96528,32.575704,0],[34.965069,32.575562,0],[34.964955,32.575478,0],[34.96485,32.575323,0],[34.964787,32.575137,0],[34.964776,32.574906,0],[34.964714,32.5747,0],[34.964586,32.574534,0],[34.964493,32.574421,0],[34.964347,32.574245,0],[34.964181,32.57412,0],[34.96374,32.573891,0],[34.96349,32.573762,0],[34.962904,32.573457,0],[34.962619,32.573348,0],[34.962472,32.573302,0],[34.96204,32.573167,0],[34.961985,32.573156,0],[34.961364,32.57286,0],[34.960781,32.572765,0],[34.960667,32.572746,0],[34.960589,32.572733,0],[34.960373,32.572777,0],[34.960378,32.572824,0],[34.960383,32.572868,0],[34.960343,32.57292,0],[34.960264,32.573023,0],[34.959682,32.573782,0],[34.95944,32.574028,0],[34.959347,32.574153,0],[34.959388,32.574243,0],[34.959905,32.574351,0],[34.960025,32.574441,0],[34.960236,32.574484,0],[34.960283,32.574677,0],[34.960465,32.574618,0],[34.960509,32.574813,0],[34.960653,32.574876,0],[34.960716,32.575108,0],[34.960681,32.575298,0],[34.960799,32.575277,0],[34.960686,32.575581,0],[34.960671,32.57553,0],[34.960613,32.575535,0],[34.96053,32.575651,0],[34.960422,32.575747,0],[34.960317,32.575839,0],[34.960122,32.575922,0],[34.959995,32.575976,0],[34.959947,32.575969,0],[34.959905,32.575973,0],[34.959865,32.575968,0],[34.959664,32.576003,0],[34.959493,32.575999,0],[34.959065,32.57584,0]]]},"type":"Feature","properties":{"Name":"11324"}},{"geometry":{"type":"Polygon","coordinates":[[[34.954387,32.577852,0],[34.954301,32.577711,0],[34.954213,32.577572,0],[34.954126,32.577433,0],[34.954104,32.577401,0],[34.954013,32.57727,0],[34.953954,32.577175,0],[34.953796,32.577277,0],[34.953636,32.577379,0],[34.953638,32.577417,0],[34.953652,32.57756,0],[34.953472,32.577729,0],[34.953435,32.577761,0],[34.953323,32.577749,0],[34.953148,32.577729,0],[34.953032,32.577715,0],[34.952872,32.577696,0],[34.952881,32.577571,0],[34.952553,32.577442,0],[34.952529,32.57744,0],[34.952475,32.577437,0],[34.952674,32.577765,0],[34.952719,32.577841,0],[34.952805,32.578017,0],[34.952904,32.578126,0],[34.952675,32.578163,0],[34.952554,32.578059,0],[34.95251,32.578006,0],[34.95248,32.57797,0],[34.952462,32.577922,0],[34.952296,32.577989,0],[34.952261,32.578002,0],[34.952138,32.577876,0],[34.952029,32.577765,0],[34.952018,32.577754,0],[34.951863,32.577598,0],[34.951889,32.577415,0],[34.951706,32.577548,0],[34.951682,32.577573,0],[34.951572,32.577697,0],[34.951565,32.577703,0],[34.95155,32.577711,0],[34.951537,32.577717,0],[34.9515,32.577729,0],[34.951418,32.577753,0],[34.951408,32.577753,0],[34.951359,32.577756,0],[34.951211,32.577762,0],[34.951063,32.577766,0],[34.951038,32.577767,0],[34.951028,32.577778,0],[34.950993,32.577829,0],[34.950974,32.577856,0],[34.950971,32.578009,0],[34.950968,32.578152,0],[34.951035,32.578164,0],[34.951049,32.578166,0],[34.951054,32.578313,0],[34.95107,32.578545,0],[34.951086,32.578638,0],[34.951093,32.578656,0],[34.951135,32.578753,0],[34.951142,32.578767,0],[34.951177,32.578847,0],[34.951184,32.578865,0],[34.951266,32.579109,0],[34.95128,32.579155,0],[34.951361,32.579459,0],[34.951443,32.579762,0],[34.951454,32.579804,0],[34.951526,32.580088,0],[34.951555,32.580229,0],[34.951614,32.580599,0],[34.951615,32.580619,0],[34.951611,32.581227,0],[34.951506,32.581679,0],[34.951135,32.582053,0],[34.951018,32.582173,0],[34.950838,32.58231,0],[34.950833,32.582304,0],[34.950791,32.582334,0],[34.950855,32.582403,0],[34.950983,32.582548,0],[34.951053,32.582627,0],[34.951122,32.58272,0],[34.951284,32.582736,0],[34.951309,32.582742,0],[34.951393,32.582759,0],[34.951468,32.582783,0],[34.95159,32.582806,0],[34.951662,32.582806,0],[34.951707,32.582817,0],[34.951621,32.58298,0],[34.951762,32.583087,0],[34.951971,32.58289,0],[34.951947,32.582867,0],[34.951935,32.582855,0],[34.951935,32.582854,0],[34.951935,32.582852,0],[34.951935,32.582851,0],[34.951935,32.582849,0],[34.951935,32.582848,0],[34.951935,32.582846,0],[34.951935,32.582844,0],[34.951935,32.582843,0],[34.951935,32.582841,0],[34.951935,32.58284,0],[34.951935,32.582838,0],[34.951935,32.582837,0],[34.951935,32.582835,0],[34.951936,32.582833,0],[34.951936,32.582832,0],[34.951936,32.58283,0],[34.951936,32.582829,0],[34.951936,32.582827,0],[34.951936,32.582826,0],[34.951936,32.582824,0],[34.951936,32.582822,0],[34.951936,32.582821,0],[34.951936,32.582819,0],[34.951936,32.582818,0],[34.951937,32.582816,0],[34.951937,32.582815,0],[34.951937,32.582813,0],[34.951937,32.582811,0],[34.951937,32.58281,0],[34.951937,32.582808,0],[34.951937,32.582807,0],[34.951937,32.582805,0],[34.951938,32.582804,0],[34.951938,32.582802,0],[34.951938,32.582801,0],[34.951938,32.582799,0],[34.951938,32.582797,0],[34.951938,32.582796,0],[34.951938,32.582794,0],[34.951939,32.582793,0],[34.951939,32.582791,0],[34.951939,32.58279,0],[34.951939,32.582788,0],[34.951939,32.582786,0],[34.951939,32.582785,0],[34.95194,32.582783,0],[34.95194,32.582782,0],[34.95194,32.58278,0],[34.95194,32.582779,0],[34.95194,32.582777,0],[34.95194,32.582776,0],[34.951941,32.582774,0],[34.951941,32.582772,0],[34.951941,32.582771,0],[34.951941,32.582769,0],[34.951941,32.582768,0],[34.951942,32.582766,0],[34.951942,32.582765,0],[34.951942,32.582763,0],[34.951942,32.582762,0],[34.951943,32.58276,0],[34.951943,32.582758,0],[34.951943,32.582757,0],[34.951943,32.582755,0],[34.951943,32.582754,0],[34.951944,32.582752,0],[34.951944,32.582751,0],[34.951944,32.582749,0],[34.951944,32.582747,0],[34.951945,32.582746,0],[34.951945,32.582744,0],[34.951945,32.582743,0],[34.951945,32.582741,0],[34.951946,32.58274,0],[34.951946,32.582738,0],[34.951946,32.582737,0],[34.951946,32.582735,0],[34.951947,32.582734,0],[34.951947,32.582732,0],[34.951947,32.58273,0],[34.951948,32.582729,0],[34.951948,32.582727,0],[34.951948,32.582726,0],[34.951948,32.582724,0],[34.951949,32.582723,0],[34.951949,32.582721,0],[34.951949,32.58272,0],[34.95195,32.582718,0],[34.95195,32.582716,0],[34.95195,32.582715,0],[34.951951,32.582713,0],[34.951951,32.582712,0],[34.951951,32.58271,0],[34.951952,32.582709,0],[34.951952,32.582707,0],[34.951952,32.582706,0],[34.951953,32.582704,0],[34.951953,32.582703,0],[34.951953,32.582701,0],[34.951954,32.582699,0],[34.951954,32.582698,0],[34.951954,32.582696,0],[34.951955,32.582695,0],[34.951955,32.582693,0],[34.951955,32.582692,0],[34.951956,32.58269,0],[34.951956,32.582689,0],[34.951956,32.582687,0],[34.951957,32.582686,0],[34.951957,32.582684,0],[34.951958,32.582683,0],[34.951958,32.582681,0],[34.951958,32.58268,0],[34.951959,32.582678,0],[34.951959,32.582676,0],[34.95196,32.582675,0],[34.95196,32.582673,0],[34.95196,32.582672,0],[34.951961,32.58267,0],[34.951961,32.582669,0],[34.951962,32.582667,0],[34.951962,32.582666,0],[34.951962,32.582664,0],[34.951963,32.582663,0],[34.951963,32.582661,0],[34.951964,32.58266,0],[34.951964,32.582658,0],[34.951965,32.582657,0],[34.951965,32.582655,0],[34.951965,32.582654,0],[34.951966,32.582652,0],[34.951966,32.58265,0],[34.951967,32.582649,0],[34.951967,32.582647,0],[34.951968,32.582646,0],[34.951968,32.582644,0],[34.951969,32.582643,0],[34.951969,32.582641,0],[34.95197,32.58264,0],[34.95197,32.582638,0],[34.95197,32.582637,0],[34.951971,32.582635,0],[34.951971,32.582634,0],[34.951972,32.582632,0],[34.951972,32.582631,0],[34.951973,32.582629,0],[34.951973,32.582628,0],[34.951974,32.582626,0],[34.951974,32.582625,0],[34.951975,32.582623,0],[34.951975,32.582622,0],[34.951976,32.58262,0],[34.951976,32.582619,0],[34.951977,32.582617,0],[34.951977,32.582616,0],[34.951978,32.582614,0],[34.951978,32.582613,0],[34.951979,32.582611,0],[34.951979,32.58261,0],[34.95198,32.582608,0],[34.951981,32.582607,0],[34.951981,32.582605,0],[34.951982,32.582604,0],[34.951982,32.582602,0],[34.951983,32.582601,0],[34.951983,32.582599,0],[34.951984,32.582596,0],[34.951985,32.582595,0],[34.951985,32.582593,0],[34.951986,32.582592,0],[34.951987,32.58259,0],[34.951987,32.582589,0],[34.951988,32.582587,0],[34.951988,32.582586,0],[34.951989,32.582584,0],[34.951989,32.582583,0],[34.95199,32.582581,0],[34.951991,32.58258,0],[34.951991,32.582578,0],[34.951992,32.582577,0],[34.951992,32.582576,0],[34.951993,32.582574,0],[34.951994,32.582573,0],[34.951994,32.582571,0],[34.951995,32.58257,0],[34.951995,32.582568,0],[34.951996,32.582567,0],[34.951997,32.582565,0],[34.951997,32.582564,0],[34.951998,32.582562,0],[34.951998,32.582561,0],[34.951999,32.582559,0],[34.952,32.582558,0],[34.952,32.582556,0],[34.952001,32.582555,0],[34.952002,32.582553,0],[34.952002,32.582552,0],[34.952003,32.58255,0],[34.952004,32.582549,0],[34.952004,32.582547,0],[34.952005,32.582546,0],[34.952006,32.582545,0],[34.952006,32.582543,0],[34.952007,32.582542,0],[34.952008,32.58254,0],[34.952008,32.582539,0],[34.952009,32.582537,0],[34.95201,32.582536,0],[34.95201,32.582534,0],[34.952011,32.582533,0],[34.952012,32.582531,0],[34.952012,32.58253,0],[34.952013,32.582528,0],[34.952014,32.582527,0],[34.952014,32.582526,0],[34.952015,32.582524,0],[34.952016,32.582523,0],[34.952017,32.582521,0],[34.952017,32.58252,0],[34.952018,32.582518,0],[34.952019,32.582517,0],[34.952019,32.582515,0],[34.95202,32.582514,0],[34.952021,32.582513,0],[34.952022,32.582511,0],[34.952022,32.58251,0],[34.952023,32.582508,0],[34.952024,32.582507,0],[34.952025,32.582505,0],[34.952025,32.582504,0],[34.952026,32.582502,0],[34.952027,32.582501,0],[34.952028,32.5825,0],[34.952028,32.582498,0],[34.952029,32.582497,0],[34.95203,32.582495,0],[34.952031,32.582494,0],[34.952031,32.582492,0],[34.952032,32.582491,0],[34.952033,32.58249,0],[34.952034,32.582488,0],[34.952034,32.582487,0],[34.952035,32.582485,0],[34.952036,32.582484,0],[34.952037,32.582482,0],[34.952038,32.582481,0],[34.952038,32.58248,0],[34.952039,32.582478,0],[34.95204,32.582477,0],[34.952041,32.582475,0],[34.952042,32.582474,0],[34.952042,32.582473,0],[34.952043,32.582471,0],[34.952044,32.58247,0],[34.952045,32.582468,0],[34.952046,32.582467,0],[34.952046,32.582466,0],[34.952047,32.582464,0],[34.952048,32.582463,0],[34.952049,32.582461,0],[34.95205,32.58246,0],[34.952051,32.582458,0],[34.952051,32.582457,0],[34.952052,32.582456,0],[34.952053,32.582454,0],[34.952054,32.582453,0],[34.952055,32.582452,0],[34.952056,32.58245,0],[34.952057,32.582449,0],[34.952057,32.582447,0],[34.952058,32.582446,0],[34.952059,32.582445,0],[34.95206,32.582443,0],[34.952061,32.582442,0],[34.952062,32.58244,0],[34.952063,32.582439,0],[34.952063,32.582438,0],[34.952064,32.582436,0],[34.952065,32.582435,0],[34.952066,32.582433,0],[34.952067,32.582432,0],[34.952068,32.582431,0],[34.952069,32.582429,0],[34.95207,32.582428,0],[34.952071,32.582427,0],[34.952072,32.582425,0],[34.952072,32.582424,0],[34.952073,32.582423,0],[34.952074,32.582421,0],[34.952075,32.58242,0],[34.952076,32.582418,0],[34.952077,32.582417,0],[34.952078,32.582416,0],[34.952079,32.582414,0],[34.95208,32.582413,0],[34.952081,32.582412,0],[34.952082,32.58241,0],[34.952083,32.582409,0],[34.952084,32.582408,0],[34.952084,32.582406,0],[34.952085,32.582405,0],[34.952086,32.582404,0],[34.952087,32.582402,0],[34.952088,32.582401,0],[34.952089,32.582399,0],[34.95209,32.582398,0],[34.952091,32.582397,0],[34.952092,32.582395,0],[34.952093,32.582394,0],[34.952094,32.582393,0],[34.952095,32.582391,0],[34.952096,32.58239,0],[34.952097,32.582389,0],[34.952098,32.582387,0],[34.952099,32.582386,0],[34.9521,32.582385,0],[34.952101,32.582383,0],[34.952102,32.582382,0],[34.952103,32.582381,0],[34.952104,32.582379,0],[34.952106,32.582377,0],[34.952107,32.582376,0],[34.952108,32.582375,0],[34.952109,32.582373,0],[34.95211,32.582372,0],[34.952111,32.582371,0],[34.952112,32.582369,0],[34.952113,32.582368,0],[34.952114,32.582367,0],[34.952115,32.582365,0],[34.952116,32.582364,0],[34.952117,32.582363,0],[34.952118,32.582362,0],[34.952119,32.58236,0],[34.95212,32.582359,0],[34.952121,32.582358,0],[34.952122,32.582356,0],[34.952123,32.582355,0],[34.952124,32.582354,0],[34.952125,32.582352,0],[34.952126,32.582351,0],[34.952127,32.58235,0],[34.952128,32.582349,0],[34.952129,32.582347,0],[34.95213,32.582346,0],[34.952131,32.582345,0],[34.952133,32.582343,0],[34.952134,32.582342,0],[34.952135,32.582341,0],[34.952136,32.58234,0],[34.952137,32.582338,0],[34.952138,32.582337,0],[34.952139,32.582336,0],[34.95214,32.582335,0],[34.952141,32.582333,0],[34.952142,32.582332,0],[34.952143,32.582331,0],[34.952144,32.582329,0],[34.952146,32.582328,0],[34.952147,32.582327,0],[34.952148,32.582326,0],[34.952149,32.582324,0],[34.95215,32.582323,0],[34.952151,32.582322,0],[34.952152,32.582321,0],[34.952152,32.58232,0],[34.952153,32.58232,0],[34.952154,32.582319,0],[34.952155,32.582318,0],[34.952156,32.582317,0],[34.952156,32.582316,0],[34.952157,32.582315,0],[34.952158,32.582315,0],[34.952159,32.582314,0],[34.952159,32.582313,0],[34.95216,32.582312,0],[34.952161,32.582311,0],[34.952162,32.58231,0],[34.952162,32.58231,0],[34.952163,32.582309,0],[34.952164,32.582308,0],[34.952165,32.582307,0],[34.952166,32.582306,0],[34.952166,32.582305,0],[34.952167,32.582305,0],[34.952168,32.582304,0],[34.952169,32.582303,0],[34.95217,32.582302,0],[34.95217,32.582301,0],[34.952171,32.582301,0],[34.952172,32.5823,0],[34.952173,32.582299,0],[34.952174,32.582298,0],[34.952174,32.582297,0],[34.952175,32.582296,0],[34.952176,32.582296,0],[34.952177,32.582295,0],[34.952178,32.582294,0],[34.952178,32.582293,0],[34.952179,32.582292,0],[34.95218,32.582292,0],[34.952181,32.582291,0],[34.952182,32.58229,0],[34.952182,32.582289,0],[34.952183,32.582288,0],[34.952184,32.582288,0],[34.952185,32.582287,0],[34.952186,32.582286,0],[34.952187,32.582285,0],[34.952187,32.582284,0],[34.952188,32.582284,0],[34.952189,32.582283,0],[34.95219,32.582282,0],[34.952191,32.582281,0],[34.952192,32.582281,0],[34.952192,32.58228,0],[34.952193,32.582279,0],[34.952194,32.582278,0],[34.952195,32.582277,0],[34.952196,32.582277,0],[34.952197,32.582276,0],[34.952197,32.582275,0],[34.952198,32.582274,0],[34.952199,32.582274,0],[34.9522,32.582273,0],[34.952201,32.582272,0],[34.952202,32.582271,0],[34.952203,32.58227,0],[34.952203,32.58227,0],[34.952204,32.582269,0],[34.952205,32.582268,0],[34.952206,32.582267,0],[34.952207,32.582267,0],[34.952208,32.582266,0],[34.952209,32.582265,0],[34.952209,32.582264,0],[34.95221,32.582264,0],[34.952211,32.582263,0],[34.952212,32.582262,0],[34.952213,32.582261,0],[34.952214,32.582261,0],[34.952215,32.58226,0],[34.952216,32.582259,0],[34.952216,32.582258,0],[34.952217,32.582258,0],[34.952218,32.582257,0],[34.952219,32.582256,0],[34.95222,32.582255,0],[34.952221,32.582255,0],[34.952222,32.582254,0],[34.952223,32.582253,0],[34.952224,32.582252,0],[34.952224,32.582252,0],[34.952225,32.582251,0],[34.952226,32.58225,0],[34.952227,32.582249,0],[34.952228,32.582249,0],[34.952229,32.582248,0],[34.95223,32.582247,0],[34.952231,32.582246,0],[34.952232,32.582246,0],[34.952233,32.582245,0],[34.952233,32.582244,0],[34.952234,32.582244,0],[34.952235,32.582243,0],[34.952236,32.582242,0],[34.952237,32.582241,0],[34.952238,32.582241,0],[34.952239,32.58224,0],[34.95224,32.582239,0],[34.952241,32.582239,0],[34.952242,32.582238,0],[34.952243,32.582237,0],[34.952244,32.582236,0],[34.952244,32.582236,0],[34.952245,32.582235,0],[34.952246,32.582234,0],[34.952247,32.582234,0],[34.952248,32.582233,0],[34.952249,32.582232,0],[34.95225,32.582231,0],[34.952251,32.582231,0],[34.952252,32.58223,0],[34.952253,32.582229,0],[34.952254,32.582229,0],[34.952255,32.582228,0],[34.952256,32.582227,0],[34.952257,32.582227,0],[34.952258,32.582226,0],[34.952259,32.582225,0],[34.95226,32.582225,0],[34.95226,32.582224,0],[34.952261,32.582223,0],[34.952262,32.582223,0],[34.952263,32.582222,0],[34.952264,32.582221,0],[34.952265,32.58222,0],[34.952266,32.58222,0],[34.952267,32.582219,0],[34.952268,32.582218,0],[34.952269,32.582218,0],[34.95227,32.582217,0],[34.952271,32.582216,0],[34.952272,32.582216,0],[34.952273,32.582215,0],[34.952274,32.582214,0],[34.952275,32.582214,0],[34.952276,32.582213,0],[34.952277,32.582212,0],[34.952278,32.582212,0],[34.952279,32.582211,0],[34.95228,32.58221,0],[34.952281,32.582209,0],[34.952293,32.582202,0],[34.952294,32.582201,0],[34.952295,32.582201,0],[34.952296,32.5822,0],[34.952297,32.582199,0],[34.952298,32.582199,0],[34.952299,32.582198,0],[34.9523,32.582197,0],[34.9523,32.582197,0],[34.952301,32.582196,0],[34.952302,32.582196,0],[34.952303,32.582195,0],[34.952305,32.582194,0],[34.952306,32.582194,0],[34.952307,32.582193,0],[34.952308,32.582192,0],[34.952309,32.582192,0],[34.95231,32.582191,0],[34.952311,32.582191,0],[34.952312,32.58219,0],[34.952313,32.582189,0],[34.952314,32.582189,0],[34.952315,32.582188,0],[34.952316,32.582187,0],[34.952317,32.582187,0],[34.952318,32.582186,0],[34.952319,32.582186,0],[34.95232,32.582185,0],[34.952321,32.582184,0],[34.952322,32.582184,0],[34.952323,32.582183,0],[34.952324,32.582183,0],[34.952325,32.582182,0],[34.952326,32.582181,0],[34.952327,32.582181,0],[34.952328,32.58218,0],[34.952329,32.58218,0],[34.95233,32.582179,0],[34.952331,32.582178,0],[34.952332,32.582178,0],[34.952333,32.582177,0],[34.952334,32.582177,0],[34.952335,32.582176,0],[34.952336,32.582175,0],[34.952337,32.582175,0],[34.952338,32.582174,0],[34.952339,32.582174,0],[34.95234,32.582173,0],[34.952341,32.582173,0],[34.952342,32.582172,0],[34.952344,32.582171,0],[34.952345,32.582171,0],[34.952346,32.58217,0],[34.952347,32.58217,0],[34.952348,32.582169,0],[34.952349,32.582169,0],[34.95235,32.582168,0],[34.952351,32.582167,0],[34.952352,32.582167,0],[34.952353,32.582166,0],[34.952354,32.582166,0],[34.952355,32.582165,0],[34.952356,32.582165,0],[34.952357,32.582164,0],[34.952358,32.582164,0],[34.952359,32.582163,0],[34.95236,32.582162,0],[34.952362,32.582162,0],[34.952363,32.582161,0],[34.952364,32.582161,0],[34.952365,32.58216,0],[34.952366,32.58216,0],[34.952367,32.582159,0],[34.952368,32.582159,0],[34.952369,32.582158,0],[34.95237,32.582158,0],[34.952371,32.582157,0],[34.952372,32.582157,0],[34.952373,32.582156,0],[34.952374,32.582155,0],[34.952376,32.582155,0],[34.952377,32.582154,0],[34.952378,32.582154,0],[34.952379,32.582153,0],[34.95238,32.582153,0],[34.952381,32.582152,0],[34.952382,32.582152,0],[34.952383,32.582151,0],[34.952384,32.582151,0],[34.952385,32.58215,0],[34.952386,32.58215,0],[34.952387,32.582149,0],[34.952389,32.582149,0],[34.95239,32.582148,0],[34.952391,32.582148,0],[34.952392,32.582147,0],[34.952393,32.582147,0],[34.952394,32.582146,0],[34.952395,32.582146,0],[34.952396,32.582145,0],[34.952397,32.582145,0],[34.952398,32.582144,0],[34.9524,32.582144,0],[34.952401,32.582143,0],[34.952402,32.582143,0],[34.952403,32.582142,0],[34.952404,32.582142,0],[34.952405,32.582141,0],[34.952406,32.582141,0],[34.952407,32.58214,0],[34.952408,32.58214,0],[34.95241,32.582139,0],[34.952411,32.582139,0],[34.952412,32.582138,0],[34.952413,32.582138,0],[34.952414,32.582138,0],[34.952415,32.582137,0],[34.952416,32.582137,0],[34.952417,32.582136,0],[34.952419,32.582136,0],[34.95242,32.582135,0],[34.952421,32.582135,0],[34.952422,32.582134,0],[34.952423,32.582134,0],[34.952424,32.582133,0],[34.952425,32.582133,0],[34.952426,32.582132,0],[34.952428,32.582132,0],[34.952429,32.582132,0],[34.95243,32.582131,0],[34.952431,32.582131,0],[34.952432,32.58213,0],[34.952433,32.58213,0],[34.952434,32.582129,0],[34.952435,32.582129,0],[34.952437,32.582128,0],[34.952438,32.582128,0],[34.952439,32.582128,0],[34.95244,32.582127,0],[34.952441,32.582127,0],[34.952442,32.582126,0],[34.952443,32.582126,0],[34.952445,32.582125,0],[34.952446,32.582125,0],[34.952447,32.582125,0],[34.952448,32.582124,0],[34.952449,32.582124,0],[34.95245,32.582123,0],[34.952451,32.582123,0],[34.952453,32.582123,0],[34.952454,32.582122,0],[34.952455,32.582122,0],[34.952456,32.582121,0],[34.952457,32.582121,0],[34.952458,32.58212,0],[34.95246,32.58212,0],[34.952461,32.58212,0],[34.952462,32.582119,0],[34.952463,32.582119,0],[34.952464,32.582118,0],[34.952465,32.582118,0],[34.952466,32.582118,0],[34.952468,32.582117,0],[34.952469,32.582117,0],[34.95247,32.582116,0],[34.952471,32.582116,0],[34.952472,32.582116,0],[34.952473,32.582115,0],[34.952475,32.582115,0],[34.952476,32.582115,0],[34.952477,32.582114,0],[34.952478,32.582114,0],[34.952479,32.582113,0],[34.95248,32.582113,0],[34.952482,32.582113,0],[34.952483,32.582112,0],[34.952484,32.582112,0],[34.952485,32.582112,0],[34.952486,32.582111,0],[34.952487,32.582111,0],[34.952489,32.58211,0],[34.95249,32.58211,0],[34.952491,32.58211,0],[34.952492,32.582109,0],[34.952493,32.582109,0],[34.952494,32.582109,0],[34.952496,32.582108,0],[34.952497,32.582108,0],[34.952498,32.582108,0],[34.952499,32.582107,0],[34.9525,32.582107,0],[34.952502,32.582107,0],[34.952503,32.582106,0],[34.952504,32.582106,0],[34.952505,32.582106,0],[34.952506,32.582105,0],[34.952507,32.582105,0],[34.952509,32.582105,0],[34.95251,32.582104,0],[34.952511,32.582104,0],[34.952512,32.582104,0],[34.952513,32.582103,0],[34.952515,32.582103,0],[34.952516,32.582103,0],[34.952517,32.582102,0],[34.952518,32.582102,0],[34.952519,32.582102,0],[34.952521,32.582101,0],[34.952522,32.582101,0],[34.952523,32.582101,0],[34.952524,32.5821,0],[34.952525,32.5821,0],[34.952527,32.5821,0],[34.952528,32.5821,0],[34.952529,32.582099,0],[34.95253,32.582099,0],[34.952531,32.582099,0],[34.952533,32.582098,0],[34.952534,32.582098,0],[34.952535,32.582098,0],[34.952537,32.582097,0],[34.952538,32.582097,0],[34.952539,32.582097,0],[34.95254,32.582096,0],[34.952542,32.582096,0],[34.952543,32.582096,0],[34.952544,32.582096,0],[34.952545,32.582095,0],[34.952546,32.582095,0],[34.952548,32.582095,0],[34.952549,32.582094,0],[34.95255,32.582094,0],[34.952551,32.582094,0],[34.952552,32.582094,0],[34.952554,32.582093,0],[34.952555,32.582093,0],[34.952556,32.582093,0],[34.952557,32.582093,0],[34.952559,32.582092,0],[34.95256,32.582092,0],[34.952561,32.582092,0],[34.952562,32.582092,0],[34.952563,32.582091,0],[34.952565,32.582091,0],[34.952566,32.582091,0],[34.952567,32.582091,0],[34.952568,32.58209,0],[34.952569,32.58209,0],[34.952571,32.58209,0],[34.952572,32.58209,0],[34.952573,32.582089,0],[34.952574,32.582089,0],[34.952576,32.582089,0],[34.952577,32.582089,0],[34.952578,32.582088,0],[34.952579,32.582088,0],[34.95258,32.582088,0],[34.952582,32.582088,0],[34.952583,32.582087,0],[34.952584,32.582087,0],[34.952585,32.582087,0],[34.952587,32.582087,0],[34.952588,32.582087,0],[34.952589,32.582086,0],[34.95259,32.582086,0],[34.952591,32.582086,0],[34.952593,32.582086,0],[34.952594,32.582086,0],[34.952595,32.582085,0],[34.952596,32.582085,0],[34.952598,32.582085,0],[34.952599,32.582085,0],[34.9526,32.582085,0],[34.952601,32.582084,0],[34.952602,32.582084,0],[34.952604,32.582084,0],[34.952605,32.582084,0],[34.952606,32.582084,0],[34.952607,32.582083,0],[34.952609,32.582083,0],[34.95261,32.582083,0],[34.952611,32.582083,0],[34.952612,32.582083,0],[34.952613,32.582082,0],[34.952615,32.582082,0],[34.952616,32.582082,0],[34.952617,32.582082,0],[34.952618,32.582082,0],[34.95262,32.582082,0],[34.952621,32.582081,0],[34.952622,32.582081,0],[34.952623,32.582081,0],[34.952625,32.582081,0],[34.952626,32.582081,0],[34.952627,32.582081,0],[34.952628,32.58208,0],[34.95263,32.58208,0],[34.952631,32.58208,0],[34.952632,32.58208,0],[34.952633,32.58208,0],[34.952634,32.58208,0],[34.952636,32.58208,0],[34.952637,32.582079,0],[34.952638,32.582079,0],[34.952639,32.582079,0],[34.952641,32.582079,0],[34.952642,32.582079,0],[34.952643,32.582079,0],[34.952644,32.582079,0],[34.952646,32.582078,0],[34.952647,32.582078,0],[34.952648,32.582078,0],[34.952649,32.582078,0],[34.952651,32.582078,0],[34.952652,32.582078,0],[34.952653,32.582078,0],[34.952654,32.582078,0],[34.952656,32.582077,0],[34.952657,32.582077,0],[34.952658,32.582077,0],[34.952659,32.582077,0],[34.95266,32.582077,0],[34.952662,32.582077,0],[34.952663,32.582077,0],[34.952664,32.582077,0],[34.952665,32.582077,0],[34.952667,32.582076,0],[34.952668,32.582076,0],[34.952669,32.582076,0],[34.95267,32.582076,0],[34.952672,32.582076,0],[34.952673,32.582076,0],[34.952674,32.582076,0],[34.952675,32.582076,0],[34.952677,32.582076,0],[34.952678,32.582076,0],[34.952679,32.582076,0],[34.95268,32.582075,0],[34.952682,32.582075,0],[34.952683,32.582075,0],[34.952684,32.582075,0],[34.952685,32.582075,0],[34.952687,32.582075,0],[34.952688,32.582075,0],[34.952689,32.582075,0],[34.95269,32.582075,0],[34.952692,32.582075,0],[34.952693,32.582075,0],[34.952694,32.582075,0],[34.952695,32.582075,0],[34.952697,32.582075,0],[34.952698,32.582074,0],[34.952699,32.582074,0],[34.9527,32.582074,0],[34.952702,32.582074,0],[34.952703,32.582074,0],[34.952704,32.582074,0],[34.952705,32.582074,0],[34.952707,32.582074,0],[34.952708,32.582074,0],[34.952709,32.582074,0],[34.95271,32.582074,0],[34.952712,32.582074,0],[34.952713,32.582074,0],[34.952714,32.582074,0],[34.952715,32.582074,0],[34.952717,32.582074,0],[34.952718,32.582074,0],[34.952719,32.582074,0],[34.95272,32.582074,0],[34.952722,32.582074,0],[34.952723,32.582074,0],[34.952724,32.582074,0],[34.952725,32.582074,0],[34.952727,32.582074,0],[34.952728,32.582074,0],[34.952729,32.582074,0],[34.95273,32.582074,0],[34.952732,32.582074,0],[34.952733,32.582074,0],[34.952734,32.582074,0],[34.952735,32.582074,0],[34.952737,32.582074,0],[34.952738,32.582074,0],[34.952739,32.582074,0],[34.95274,32.582074,0],[34.952742,32.582074,0],[34.952743,32.582074,0],[34.952744,32.582074,0],[34.952745,32.582074,0],[34.952746,32.582074,0],[34.952748,32.582074,0],[34.952749,32.582074,0],[34.95275,32.582074,0],[34.952751,32.582074,0],[34.952753,32.582074,0],[34.952754,32.582074,0],[34.952755,32.582074,0],[34.952756,32.582074,0],[34.952758,32.582074,0],[34.952759,32.582074,0],[34.95276,32.582074,0],[34.952761,32.582074,0],[34.952763,32.582074,0],[34.952764,32.582074,0],[34.952765,32.582074,0],[34.952766,32.582074,0],[34.952768,32.582074,0],[34.952769,32.582074,0],[34.95277,32.582074,0],[34.952771,32.582074,0],[34.952773,32.582074,0],[34.952774,32.582074,0],[34.952775,32.582075,0],[34.952776,32.582075,0],[34.952778,32.582075,0],[34.952779,32.582075,0],[34.95278,32.582075,0],[34.952781,32.582075,0],[34.952783,32.582075,0],[34.952784,32.582075,0],[34.952785,32.582075,0],[34.952786,32.582075,0],[34.952788,32.582075,0],[34.952789,32.582075,0],[34.95279,32.582075,0],[34.952791,32.582075,0],[34.952793,32.582076,0],[34.952794,32.582076,0],[34.952795,32.582076,0],[34.952796,32.582076,0],[34.952798,32.582076,0],[34.952799,32.582076,0],[34.9528,32.582076,0],[34.952801,32.582076,0],[34.952803,32.582076,0],[34.952804,32.582076,0],[34.952805,32.582076,0],[34.952806,32.582077,0],[34.952808,32.582077,0],[34.952809,32.582077,0],[34.95281,32.582077,0],[34.952811,32.582077,0],[34.952813,32.582077,0],[34.952814,32.582077,0],[34.952816,32.582077,0],[34.952817,32.582077,0],[34.952818,32.582078,0],[34.952819,32.582078,0],[34.952821,32.582078,0],[34.952822,32.582078,0],[34.952823,32.582078,0],[34.952824,32.582078,0],[34.952826,32.582078,0],[34.952827,32.582078,0],[34.952828,32.582079,0],[34.952829,32.582079,0],[34.952831,32.582079,0],[34.952832,32.582079,0],[34.952833,32.582079,0],[34.952834,32.582079,0],[34.952836,32.582079,0],[34.952837,32.58208,0],[34.952838,32.58208,0],[34.952839,32.58208,0],[34.952841,32.58208,0],[34.952842,32.58208,0],[34.952843,32.58208,0],[34.952844,32.582081,0],[34.952845,32.582081,0],[34.952847,32.582081,0],[34.952848,32.582081,0],[34.952849,32.582081,0],[34.95285,32.582081,0],[34.952852,32.582081,0],[34.952853,32.582082,0],[34.952854,32.582082,0],[34.952855,32.582082,0],[34.952857,32.582082,0],[34.952858,32.582082,0],[34.952859,32.582083,0],[34.95286,32.582083,0],[34.952861,32.582083,0],[34.952863,32.582083,0],[34.952864,32.582083,0],[34.952865,32.582083,0],[34.952866,32.582084,0],[34.952868,32.582084,0],[34.952869,32.582084,0],[34.95287,32.582084,0],[34.952871,32.582084,0],[34.952873,32.582085,0],[34.952874,32.582085,0],[34.952875,32.582085,0],[34.952876,32.582085,0],[34.952877,32.582085,0],[34.952879,32.582086,0],[34.95288,32.582086,0],[34.952881,32.582086,0],[34.952882,32.582086,0],[34.952884,32.582086,0],[34.952885,32.582087,0],[34.952886,32.582087,0],[34.952887,32.582087,0],[34.952888,32.582087,0],[34.95289,32.582088,0],[34.952891,32.582088,0],[34.952892,32.582088,0],[34.952893,32.582088,0],[34.952895,32.582089,0],[34.952896,32.582089,0],[34.952897,32.582089,0],[34.952898,32.582089,0],[34.952899,32.582089,0],[34.952901,32.58209,0],[34.952902,32.58209,0],[34.952903,32.58209,0],[34.952904,32.58209,0],[34.952905,32.582091,0],[34.952907,32.582091,0],[34.952908,32.582091,0],[34.952909,32.582091,0],[34.95291,32.582092,0],[34.952912,32.582092,0],[34.952913,32.582092,0],[34.952914,32.582092,0],[34.952915,32.582093,0],[34.952916,32.582093,0],[34.952918,32.582093,0],[34.952919,32.582093,0],[34.95292,32.582094,0],[34.952921,32.582094,0],[34.952922,32.582094,0],[34.952924,32.582095,0],[34.952925,32.582095,0],[34.952926,32.582095,0],[34.952927,32.582095,0],[34.952928,32.582096,0],[34.95293,32.582096,0],[34.952931,32.582096,0],[34.952932,32.582097,0],[34.952933,32.582097,0],[34.952934,32.582097,0],[34.952936,32.582097,0],[34.952937,32.582098,0],[34.952938,32.582098,0],[34.952939,32.582098,0],[34.95294,32.582099,0],[34.952942,32.582099,0],[34.952943,32.582099,0],[34.952944,32.582099,0],[34.952945,32.5821,0],[34.952946,32.5821,0],[34.952948,32.5821,0],[34.952949,32.582101,0],[34.95295,32.582101,0],[34.952951,32.582101,0],[34.952952,32.582102,0],[34.952954,32.582102,0],[34.952955,32.582102,0],[34.952956,32.582103,0],[34.952957,32.582103,0],[34.952958,32.582103,0],[34.95296,32.582104,0],[34.952961,32.582104,0],[34.952962,32.582104,0],[34.952963,32.582105,0],[34.952964,32.582105,0],[34.952965,32.582105,0],[34.952967,32.582106,0],[34.952968,32.582106,0],[34.952969,32.582106,0],[34.95297,32.582107,0],[34.952971,32.582107,0],[34.952973,32.582107,0],[34.952974,32.582108,0],[34.952975,32.582108,0],[34.952976,32.582108,0],[34.952977,32.582109,0],[34.952978,32.582109,0],[34.95298,32.582109,0],[34.952981,32.58211,0],[34.952982,32.58211,0],[34.952983,32.58211,0],[34.952984,32.582111,0],[34.952985,32.582111,0],[34.952987,32.582112,0],[34.952988,32.582112,0],[34.952989,32.582112,0],[34.95299,32.582113,0],[34.952991,32.582113,0],[34.952993,32.582113,0],[34.952994,32.582114,0],[34.952995,32.582114,0],[34.952996,32.582115,0],[34.952997,32.582115,0],[34.952998,32.582115,0],[34.953,32.582116,0],[34.953001,32.582116,0],[34.953002,32.582116,0],[34.953003,32.582117,0],[34.953004,32.582117,0],[34.953005,32.582118,0],[34.953006,32.582118,0],[34.953008,32.582118,0],[34.953009,32.582119,0],[34.95301,32.582119,0],[34.953011,32.58212,0],[34.953012,32.58212,0],[34.953013,32.58212,0],[34.953015,32.582121,0],[34.953016,32.582121,0],[34.953017,32.582122,0],[34.953018,32.582122,0],[34.953019,32.582122,0],[34.95302,32.582123,0],[34.953021,32.582123,0],[34.953023,32.582124,0],[34.953024,32.582124,0],[34.953025,32.582125,0],[34.953026,32.582125,0],[34.953027,32.582125,0],[34.953028,32.582126,0],[34.953029,32.582126,0],[34.953031,32.582127,0],[34.953032,32.582127,0],[34.953033,32.582128,0],[34.953034,32.582128,0],[34.953035,32.582128,0],[34.953036,32.582129,0],[34.953037,32.582129,0],[34.953039,32.58213,0],[34.95304,32.58213,0],[34.953041,32.582131,0],[34.953042,32.582131,0],[34.953043,32.582132,0],[34.953044,32.582132,0],[34.953045,32.582132,0],[34.953046,32.582133,0],[34.953048,32.582133,0],[34.953049,32.582134,0],[34.95305,32.582134,0],[34.953051,32.582135,0],[34.953052,32.582135,0],[34.953053,32.582136,0],[34.953054,32.582136,0],[34.953055,32.582137,0],[34.953057,32.582137,0],[34.953058,32.582137,0],[34.953059,32.582138,0],[34.95306,32.582138,0],[34.953061,32.582139,0],[34.953062,32.582139,0],[34.953063,32.58214,0],[34.953064,32.58214,0],[34.953066,32.582141,0],[34.953067,32.582141,0],[34.953068,32.582142,0],[34.953069,32.582142,0],[34.95307,32.582143,0],[34.953071,32.582143,0],[34.953072,32.582144,0],[34.953073,32.582144,0],[34.953074,32.582145,0],[34.953075,32.582145,0],[34.953077,32.582146,0],[34.953078,32.582146,0],[34.953079,32.582147,0],[34.953081,32.582147,0],[34.953088,32.582151,0],[34.953089,32.582152,0],[34.95309,32.582152,0],[34.953091,32.582153,0],[34.953093,32.582153,0],[34.953094,32.582154,0],[34.953095,32.582154,0],[34.953096,32.582155,0],[34.953097,32.582155,0],[34.953098,32.582156,0],[34.953099,32.582156,0],[34.9531,32.582157,0],[34.953101,32.582157,0],[34.953102,32.582158,0],[34.953103,32.582158,0],[34.953104,32.582159,0],[34.953105,32.582159,0],[34.953107,32.58216,0],[34.953108,32.582161,0],[34.953109,32.582161,0],[34.95311,32.582162,0],[34.953111,32.582162,0],[34.953112,32.582163,0],[34.953113,32.582163,0],[34.953114,32.582164,0],[34.953115,32.582164,0],[34.953116,32.582165,0],[34.953117,32.582165,0],[34.953118,32.582166,0],[34.953119,32.582167,0],[34.95312,32.582167,0],[34.953121,32.582168,0],[34.953123,32.582168,0],[34.953124,32.582169,0],[34.953125,32.582169,0],[34.953126,32.58217,0],[34.953127,32.582171,0],[34.953128,32.582171,0],[34.953129,32.582172,0],[34.95313,32.582172,0],[34.953131,32.582173,0],[34.953132,32.582173,0],[34.953133,32.582174,0],[34.953134,32.582175,0],[34.953135,32.582175,0],[34.953136,32.582176,0],[34.953137,32.582176,0],[34.953138,32.582177,0],[34.953139,32.582178,0],[34.95314,32.582178,0],[34.953141,32.582179,0],[34.953142,32.582179,0],[34.953143,32.58218,0],[34.953144,32.58218,0],[34.953145,32.582181,0],[34.953147,32.582182,0],[34.953148,32.582182,0],[34.953149,32.582183,0],[34.95315,32.582183,0],[34.953151,32.582184,0],[34.953152,32.582185,0],[34.953153,32.582185,0],[34.953154,32.582186,0],[34.953155,32.582187,0],[34.953156,32.582187,0],[34.953157,32.582188,0],[34.953158,32.582188,0],[34.953159,32.582189,0],[34.95316,32.58219,0],[34.953161,32.58219,0],[34.953162,32.582191,0],[34.953163,32.582191,0],[34.953164,32.582192,0],[34.953165,32.582193,0],[34.953166,32.582193,0],[34.953167,32.582194,0],[34.953168,32.582195,0],[34.953169,32.582195,0],[34.95317,32.582196,0],[34.953171,32.582196,0],[34.953172,32.582197,0],[34.953173,32.582198,0],[34.953174,32.582198,0],[34.953175,32.582199,0],[34.953176,32.5822,0],[34.953177,32.5822,0],[34.953178,32.582201,0],[34.953179,32.582202,0],[34.95318,32.582202,0],[34.953181,32.582203,0],[34.953182,32.582204,0],[34.953183,32.582204,0],[34.953184,32.582205,0],[34.953185,32.582206,0],[34.953186,32.582206,0],[34.953187,32.582207,0],[34.953188,32.582207,0],[34.953189,32.582208,0],[34.95319,32.582209,0],[34.953191,32.582209,0],[34.953192,32.58221,0],[34.953192,32.582211,0],[34.953193,32.582211,0],[34.953194,32.582212,0],[34.953195,32.582213,0],[34.953196,32.582213,0],[34.953197,32.582214,0],[34.953198,32.582215,0],[34.953199,32.582215,0],[34.9532,32.582216,0],[34.953201,32.582217,0],[34.953202,32.582218,0],[34.953203,32.582218,0],[34.953204,32.582219,0],[34.953205,32.58222,0],[34.953206,32.58222,0],[34.953207,32.582221,0],[34.953208,32.582222,0],[34.953209,32.582222,0],[34.95321,32.582223,0],[34.953211,32.582224,0],[34.953212,32.582224,0],[34.953213,32.582225,0],[34.953213,32.582226,0],[34.953214,32.582226,0],[34.953215,32.582227,0],[34.953216,32.582228,0],[34.953217,32.582229,0],[34.953218,32.582229,0],[34.953219,32.58223,0],[34.95322,32.582231,0],[34.953221,32.582231,0],[34.953222,32.582232,0],[34.953223,32.582233,0],[34.953224,32.582234,0],[34.953225,32.582234,0],[34.953226,32.582235,0],[34.953226,32.582236,0],[34.953227,32.582236,0],[34.953228,32.582237,0],[34.953229,32.582238,0],[34.95323,32.582239,0],[34.953231,32.582239,0],[34.953232,32.58224,0],[34.953233,32.582241,0],[34.953234,32.582241,0],[34.953235,32.582242,0],[34.953236,32.582243,0],[34.953236,32.582244,0],[34.953237,32.582244,0],[34.953238,32.582245,0],[34.953239,32.582246,0],[34.95324,32.582247,0],[34.953241,32.582247,0],[34.953242,32.582248,0],[34.953243,32.582249,0],[34.953244,32.58225,0],[34.953245,32.58225,0],[34.953245,32.582251,0],[34.953246,32.582252,0],[34.953247,32.582253,0],[34.953248,32.582253,0],[34.953249,32.582254,0],[34.95325,32.582255,0],[34.953251,32.582255,0],[34.953252,32.582256,0],[34.953252,32.582257,0],[34.953253,32.582258,0],[34.953254,32.582259,0],[34.953255,32.582259,0],[34.953256,32.58226,0],[34.953257,32.582261,0],[34.953258,32.582262,0],[34.953259,32.582262,0],[34.953259,32.582263,0],[34.95326,32.582264,0],[34.953261,32.582265,0],[34.953262,32.582265,0],[34.953263,32.582266,0],[34.953264,32.582267,0],[34.953265,32.582268,0],[34.953265,32.582268,0],[34.953266,32.582269,0],[34.953267,32.58227,0],[34.953268,32.582271,0],[34.953269,32.582272,0],[34.95327,32.582272,0],[34.953271,32.582273,0],[34.953271,32.582274,0],[34.953272,32.582275,0],[34.953273,32.582275,0],[34.953274,32.582276,0],[34.953275,32.582277,0],[34.953276,32.582278,0],[34.953276,32.582279,0],[34.953277,32.582279,0],[34.953278,32.58228,0],[34.953279,32.582281,0],[34.95328,32.582282,0],[34.953281,32.582283,0],[34.953281,32.582283,0],[34.953282,32.582284,0],[34.953283,32.582285,0],[34.953296,32.582298,0],[34.953296,32.582298,0],[34.953297,32.582299,0],[34.953298,32.5823,0],[34.953299,32.582301,0],[34.953299,32.582302,0],[34.9533,32.582302,0],[34.953301,32.582303,0],[34.953302,32.582304,0],[34.953303,32.582305,0],[34.953303,32.582306,0],[34.953304,32.582307,0],[34.953305,32.582307,0],[34.953306,32.582308,0],[34.953306,32.582309,0],[34.953307,32.58231,0],[34.953308,32.582311,0],[34.953309,32.582312,0],[34.95331,32.582312,0],[34.95331,32.582313,0],[34.953311,32.582314,0],[34.953312,32.582315,0],[34.953313,32.582316,0],[34.953313,32.582317,0],[34.953314,32.582317,0],[34.953315,32.582318,0],[34.953316,32.582319,0],[34.953316,32.58232,0],[34.953317,32.582321,0],[34.953318,32.582322,0],[34.953319,32.582323,0],[34.953319,32.582323,0],[34.95332,32.582324,0],[34.953321,32.582325,0],[34.953322,32.582326,0],[34.953322,32.582327,0],[34.953323,32.582328,0],[34.953324,32.582329,0],[34.953324,32.582329,0],[34.953325,32.58233,0],[34.953326,32.582331,0],[34.953327,32.582332,0],[34.953327,32.582333,0],[34.953328,32.582334,0],[34.953329,32.582335,0],[34.95333,32.582335,0],[34.95333,32.582336,0],[34.953331,32.582337,0],[34.953332,32.582338,0],[34.953332,32.582339,0],[34.953333,32.58234,0],[34.953334,32.582341,0],[34.953334,32.582342,0],[34.953335,32.582342,0],[34.953336,32.582343,0],[34.953337,32.582344,0],[34.953337,32.582345,0],[34.953338,32.582346,0],[34.953339,32.582347,0],[34.953339,32.582348,0],[34.95334,32.582349,0],[34.953341,32.582349,0],[34.953341,32.58235,0],[34.953342,32.582351,0],[34.953343,32.582352,0],[34.953343,32.582353,0],[34.953344,32.582354,0],[34.953345,32.582355,0],[34.953345,32.582356,0],[34.953346,32.582357,0],[34.953347,32.582357,0],[34.953348,32.582358,0],[34.953348,32.582359,0],[34.953349,32.58236,0],[34.953349,32.582361,0],[34.95335,32.582362,0],[34.953351,32.582363,0],[34.953351,32.582364,0],[34.953352,32.582365,0],[34.953353,32.582365,0],[34.953353,32.582366,0],[34.953354,32.582367,0],[34.953355,32.582368,0],[34.953355,32.582369,0],[34.953356,32.58237,0],[34.953357,32.582371,0],[34.953357,32.582372,0],[34.953358,32.582373,0],[34.953359,32.582374,0],[34.953359,32.582375,0],[34.95336,32.582375,0],[34.953361,32.582376,0],[34.953361,32.582377,0],[34.953362,32.582378,0],[34.953363,32.582379,0],[34.953421,32.582465,0],[34.953528,32.582621,0],[34.953635,32.582777,0],[34.953731,32.582917,0],[34.953742,32.582934,0],[34.953744,32.582937,0],[34.953746,32.582941,0],[34.953749,32.582944,0],[34.953751,32.582947,0],[34.953753,32.582951,0],[34.953755,32.582954,0],[34.953757,32.582957,0],[34.953759,32.58296,0],[34.953761,32.582964,0],[34.953764,32.582967,0],[34.953766,32.58297,0],[34.953768,32.582974,0],[34.95377,32.582977,0],[34.953772,32.58298,0],[34.953774,32.582984,0],[34.953776,32.582987,0],[34.953778,32.58299,0],[34.95378,32.582994,0],[34.953782,32.582997,0],[34.953784,32.583,0],[34.953787,32.583004,0],[34.953789,32.583007,0],[34.953791,32.58301,0],[34.953793,32.583014,0],[34.953795,32.583017,0],[34.953797,32.58302,0],[34.953799,32.583024,0],[34.953801,32.583027,0],[34.953803,32.58303,0],[34.953805,32.583034,0],[34.953807,32.583037,0],[34.953809,32.58304,0],[34.953811,32.583044,0],[34.953813,32.583047,0],[34.953815,32.583051,0],[34.953817,32.583054,0],[34.953818,32.583057,0],[34.95382,32.583061,0],[34.953822,32.583064,0],[34.953824,32.583068,0],[34.953826,32.583071,0],[34.953828,32.583074,0],[34.95383,32.583078,0],[34.953832,32.583081,0],[34.953834,32.583085,0],[34.953836,32.583088,0],[34.953838,32.583091,0],[34.953839,32.583095,0],[34.953841,32.583098,0],[34.953844,32.583104,0],[34.953846,32.583107,0],[34.953848,32.58311,0],[34.95385,32.583114,0],[34.953852,32.583117,0],[34.953853,32.583121,0],[34.953855,32.583124,0],[34.953857,32.583128,0],[34.953859,32.583131,0],[34.953861,32.583134,0],[34.953862,32.583138,0],[34.953864,32.583141,0],[34.953866,32.583145,0],[34.953868,32.583148,0],[34.953869,32.583152,0],[34.953871,32.583155,0],[34.953873,32.583159,0],[34.953875,32.583162,0],[34.953876,32.583166,0],[34.953878,32.583169,0],[34.95388,32.583172,0],[34.953881,32.583176,0],[34.953883,32.583179,0],[34.953885,32.583183,0],[34.953887,32.583186,0],[34.953888,32.58319,0],[34.95389,32.583193,0],[34.953892,32.583197,0],[34.953893,32.5832,0],[34.953895,32.583204,0],[34.953896,32.583207,0],[34.953898,32.583211,0],[34.9539,32.583214,0],[34.953901,32.583218,0],[34.953903,32.583221,0],[34.953905,32.583225,0],[34.953906,32.583228,0],[34.953908,32.583232,0],[34.953909,32.583235,0],[34.953911,32.583239,0],[34.953912,32.583242,0],[34.953914,32.583246,0],[34.953916,32.583249,0],[34.953917,32.583253,0],[34.953919,32.583257,0],[34.95392,32.58326,0],[34.953922,32.583264,0],[34.953923,32.583267,0],[34.953925,32.583271,0],[34.953926,32.583274,0],[34.953929,32.58328,0],[34.953938,32.583303,0],[34.954441,32.583162,0],[34.954481,32.58333,0],[34.954491,32.583569,0],[34.954487,32.583615,0],[34.955012,32.583695,0],[34.954985,32.583969,0],[34.953731,32.586482,0],[34.955204,32.587461,0],[34.955455,32.587627,0],[34.955374,32.587698,0],[34.955161,32.587903,0],[34.955112,32.588,0],[34.95505,32.588168,0],[34.954966,32.588246,0],[34.954935,32.588323,0],[34.954827,32.588363,0],[34.95477,32.588446,0],[34.954664,32.58852,0],[34.954623,32.588604,0],[34.954602,32.588821,0],[34.954716,32.589021,0],[34.954738,32.589045,0],[34.954764,32.589072,0],[34.954824,32.589038,0],[34.954894,32.589079,0],[34.955784,32.589573,0],[34.955814,32.589591,0],[34.955855,32.589617,0],[34.955871,32.589627,0],[34.955912,32.589649,0],[34.95635,32.589119,0],[34.956562,32.588948,0],[34.956814,32.58879,0],[34.957056,32.58868,0],[34.957664,32.588537,0],[34.957888,32.588473,0],[34.957905,32.588465,0],[34.958032,32.58831,0],[34.958148,32.588154,0],[34.958055,32.587595,0],[34.958043,32.587539,0],[34.958023,32.587463,0],[34.957829,32.586744,0],[34.957704,32.586497,0],[34.95769,32.586482,0],[34.95761,32.586396,0],[34.957512,32.586264,0],[34.9575,32.586178,0],[34.957501,32.586157,0],[34.957514,32.586073,0],[34.957534,32.585973,0],[34.957564,32.58586,0],[34.957596,32.585767,0],[34.95764,32.585651,0],[34.957663,32.585593,0],[34.957712,32.585486,0],[34.958043,32.584851,0],[34.958299,32.584409,0],[34.958643,32.583806,0],[34.958747,32.583622,0],[34.958851,32.583455,0],[34.958896,32.583386,0],[34.959056,32.583169,0],[34.959296,32.582857,0],[34.959687,32.582345,0],[34.959861,32.582117,0],[34.960006,32.581929,0],[34.959903,32.581882,0],[34.959404,32.581649,0],[34.95934,32.581624,0],[34.959069,32.581515,0],[34.958205,32.581085,0],[34.957314,32.580633,0],[34.957121,32.580768,0],[34.956898,32.580642,0],[34.956752,32.580559,0],[34.956673,32.580466,0],[34.956455,32.580213,0],[34.956349,32.580104,0],[34.956313,32.580067,0],[34.956233,32.579985,0],[34.95614,32.57989,0],[34.955935,32.579681,0],[34.955622,32.579364,0],[34.955128,32.57886,0],[34.954877,32.578606,0],[34.954823,32.578551,0],[34.954801,32.578515,0],[34.954734,32.578408,0],[34.954648,32.578267,0],[34.954561,32.578129,0],[34.954475,32.577992,0],[34.954387,32.577852,0]]]},"type":"Feature","properties":{"Name":"11323"}},{"geometry":{"type":"Polygon","coordinates":[[[34.949704,32.577909,0],[34.949542,32.577877,0],[34.949308,32.577823,0],[34.949085,32.577772,0],[34.949039,32.5775,0],[34.949037,32.577491,0],[34.949039,32.577393,0],[34.94887,32.577439,0],[34.948873,32.577544,0],[34.948875,32.577642,0],[34.948879,32.577772,0],[34.948875,32.577793,0],[34.948877,32.577857,0],[34.948887,32.578076,0],[34.948899,32.578376,0],[34.948908,32.578593,0],[34.94892,32.578888,0],[34.948931,32.579145,0],[34.948935,32.579245,0],[34.948602,32.579241,0],[34.948297,32.579236,0],[34.948177,32.579234,0],[34.947737,32.5792,0],[34.947701,32.579192,0],[34.947671,32.57924,0],[34.947643,32.579284,0],[34.947576,32.579391,0],[34.947456,32.579582,0],[34.947405,32.579663,0],[34.947345,32.579758,0],[34.947223,32.579951,0],[34.947254,32.580186,0],[34.94728,32.5804,0],[34.947309,32.580609,0],[34.94734,32.580841,0],[34.947421,32.581043,0],[34.947516,32.581259,0],[34.947588,32.581421,0],[34.948027,32.581386,0],[34.948044,32.581385,0],[34.948156,32.581536,0],[34.948281,32.58168,0],[34.948479,32.581844,0],[34.948716,32.581957,0],[34.949183,32.582013,0],[34.949818,32.581866,0],[34.949839,32.581875,0],[34.95021,32.582048,0],[34.950309,32.582094,0],[34.950698,32.582274,0],[34.950705,32.582277,0],[34.950725,32.582286,0],[34.950734,32.58229,0],[34.950794,32.582354,0],[34.950848,32.582311,0],[34.951014,32.582177,0],[34.951101,32.582091,0],[34.951271,32.581921,0],[34.95135,32.581843,0],[34.95151,32.581684,0],[34.951526,32.581617,0],[34.951613,32.581227,0],[34.951613,32.580992,0],[34.951614,32.580653,0],[34.951614,32.580597,0],[34.951548,32.580245,0],[34.951518,32.580087,0],[34.951461,32.579842,0],[34.951456,32.57982,0],[34.951455,32.579814,0],[34.951453,32.579809,0],[34.95145,32.579796,0],[34.951361,32.579468,0],[34.951274,32.579148,0],[34.951181,32.578874,0],[34.95115,32.578764,0],[34.951125,32.578659,0],[34.951116,32.578623,0],[34.951105,32.57855,0],[34.951055,32.578217,0],[34.951049,32.578173,0],[34.95097,32.578152,0],[34.950668,32.578108,0],[34.950609,32.578099,0],[34.950499,32.57808,0],[34.950412,32.578066,0],[34.95027,32.578034,0],[34.950251,32.57803,0],[34.949963,32.577967,0],[34.949937,32.577961,0],[34.949869,32.577946,0],[34.949745,32.577917,0],[34.949704,32.577909,0]]]},"type":"Feature","properties":{"Name":"11322"}},{"geometry":{"type":"Polygon","coordinates":[[[34.950259,32.58207,0],[34.95021,32.582048,0],[34.95015,32.58202,0],[34.949839,32.581875,0],[34.949825,32.581869,0],[34.949818,32.581866,0],[34.949183,32.582013,0],[34.948716,32.581957,0],[34.948479,32.581844,0],[34.948281,32.58168,0],[34.948156,32.581536,0],[34.948044,32.581385,0],[34.948027,32.581386,0],[34.947588,32.581421,0],[34.947516,32.581259,0],[34.947421,32.581043,0],[34.94734,32.580841,0],[34.947309,32.580609,0],[34.94728,32.5804,0],[34.947254,32.580186,0],[34.947223,32.579951,0],[34.947345,32.579758,0],[34.947405,32.579663,0],[34.947456,32.579582,0],[34.947576,32.579391,0],[34.947643,32.579284,0],[34.947671,32.57924,0],[34.947701,32.579192,0],[34.947737,32.5792,0],[34.948177,32.579234,0],[34.948602,32.579241,0],[34.948935,32.579245,0],[34.948931,32.579145,0],[34.94892,32.578888,0],[34.948908,32.578593,0],[34.948899,32.578376,0],[34.948887,32.578076,0],[34.948877,32.577857,0],[34.948875,32.577793,0],[34.948879,32.577772,0],[34.948875,32.577642,0],[34.948873,32.577544,0],[34.948871,32.577454,0],[34.94887,32.577439,0],[34.949039,32.577393,0],[34.949038,32.577057,0],[34.949038,32.577027,0],[34.948798,32.576973,0],[34.948544,32.576916,0],[34.948523,32.576911,0],[34.94829,32.576864,0],[34.948038,32.576814,0],[34.947951,32.576798,0],[34.947784,32.576772,0],[34.947542,32.576731,0],[34.947477,32.57672,0],[34.947253,32.576683,0],[34.946167,32.576502,0],[34.9462,32.576456,0],[34.946205,32.576448,0],[34.946222,32.576425,0],[34.946397,32.576186,0],[34.946487,32.576058,0],[34.946512,32.576024,0],[34.946581,32.575927,0],[34.946607,32.575891,0],[34.946804,32.575621,0],[34.946831,32.575585,0],[34.946855,32.575567,0],[34.946991,32.575466,0],[34.947062,32.575424,0],[34.947375,32.575247,0],[34.947447,32.575208,0],[34.947458,32.575199,0],[34.947556,32.575086,0],[34.947561,32.57508,0],[34.947586,32.575052,0],[34.947602,32.575034,0],[34.947635,32.574996,0],[34.947194,32.574722,0],[34.947102,32.574667,0],[34.94706,32.574641,0],[34.9464,32.574232,0],[34.946369,32.574213,0],[34.946283,32.574159,0],[34.945225,32.57351,0],[34.945191,32.573489,0],[34.945178,32.573481,0],[34.945048,32.573481,0],[34.943908,32.573468,0],[34.943849,32.573468,0],[34.943756,32.573467,0],[34.943732,32.573467,0],[34.943712,32.573466,0],[34.943622,32.573464,0],[34.943619,32.573464,0],[34.943493,32.573461,0],[34.943317,32.573457,0],[34.943281,32.573456,0],[34.943255,32.573456,0],[34.943211,32.573455,0],[34.943173,32.57329,0],[34.943136,32.573113,0],[34.943092,32.572934,0],[34.943046,32.572765,0],[34.942997,32.572581,0],[34.942955,32.572408,0],[34.942907,32.572229,0],[34.94287,32.572056,0],[34.94282,32.571873,0],[34.942851,32.571465,0],[34.943308,32.571315,0],[34.943388,32.571291,0],[34.943521,32.571359,0],[34.94368,32.571341,0],[34.943932,32.571316,0],[34.943941,32.571315,0],[34.943909,32.571264,0],[34.94384,32.571156,0],[34.94367,32.570886,0],[34.94358,32.570744,0],[34.943278,32.570267,0],[34.942519,32.570671,0],[34.940891,32.571538,0],[34.940226,32.571603,0],[34.94046,32.572352,0],[34.940523,32.572554,0],[34.940726,32.573203,0],[34.940735,32.573232,0],[34.94074,32.573247,0],[34.941323,32.575198,0],[34.941352,32.575297,0],[34.941415,32.575507,0],[34.941502,32.575763,0],[34.94155,32.575906,0],[34.941568,32.575958,0],[34.94202,32.5773,0],[34.94188,32.577332,0],[34.941758,32.577359,0],[34.941885,32.577858,0],[34.941908,32.577946,0],[34.941944,32.578087,0],[34.942105,32.578026,0],[34.942173,32.578,0],[34.942548,32.578729,0],[34.94277,32.579508,0],[34.942842,32.579763,0],[34.942931,32.579724,0],[34.942965,32.57971,0],[34.943072,32.579663,0],[34.944162,32.579192,0],[34.945776,32.578493,0],[34.946073,32.579367,0],[34.946172,32.579639,0],[34.946365,32.580093,0],[34.946427,32.58011,0],[34.946476,32.580122,0],[34.946575,32.580145,0],[34.946703,32.580175,0],[34.946678,32.58031,0],[34.946632,32.580552,0],[34.946676,32.580935,0],[34.946677,32.580951,0],[34.946729,32.581348,0],[34.946767,32.581647,0],[34.946798,32.581885,0],[34.947056,32.582751,0],[34.947081,32.582833,0],[34.947168,32.583127,0],[34.947218,32.583294,0],[34.947224,32.583312,0],[34.947272,32.583477,0],[34.947307,32.583555,0],[34.947327,32.583597,0],[34.947281,32.583613,0],[34.94728,32.583686,0],[34.947279,32.583717,0],[34.947392,32.58364,0],[34.947678,32.583392,0],[34.948746,32.58332,0],[34.949068,32.58321,0],[34.949259,32.583144,0],[34.949273,32.583139,0],[34.950284,32.582793,0],[34.950794,32.582354,0],[34.950734,32.58229,0],[34.950725,32.582286,0],[34.950702,32.582275,0],[34.950698,32.582274,0],[34.950506,32.582184,0],[34.950395,32.582133,0],[34.950309,32.582094,0],[34.950259,32.58207,0]]]},"type":"Feature","properties":{"Name":"11321"}},{"geometry":{"type":"Polygon","coordinates":[[[34.943046,32.572765,0],[34.943092,32.572934,0],[34.943136,32.573113,0],[34.943173,32.57329,0],[34.943211,32.573455,0],[34.943255,32.573456,0],[34.943281,32.573456,0],[34.943317,32.573457,0],[34.943493,32.573461,0],[34.943619,32.573464,0],[34.943622,32.573464,0],[34.943712,32.573466,0],[34.943732,32.573467,0],[34.943756,32.573467,0],[34.943849,32.573468,0],[34.943908,32.573468,0],[34.945048,32.573481,0],[34.945178,32.573481,0],[34.945191,32.573489,0],[34.945225,32.57351,0],[34.946283,32.574159,0],[34.9464,32.574232,0],[34.94706,32.574641,0],[34.947102,32.574667,0],[34.947194,32.574722,0],[34.947635,32.574996,0],[34.94766,32.574939,0],[34.947757,32.574715,0],[34.947836,32.574534,0],[34.94785,32.574495,0],[34.947932,32.574354,0],[34.94799,32.57426,0],[34.948024,32.574168,0],[34.948121,32.573996,0],[34.948131,32.573977,0],[34.94817,32.573902,0],[34.948178,32.573879,0],[34.948276,32.573606,0],[34.948308,32.573522,0],[34.948345,32.573428,0],[34.948502,32.573048,0],[34.948521,32.572947,0],[34.948541,32.572899,0],[34.948551,32.572876,0],[34.94856,32.572842,0],[34.94857,32.572809,0],[34.948615,32.572703,0],[34.9487,32.572547,0],[34.9488,32.572446,0],[34.948835,32.572412,0],[34.948843,32.572303,0],[34.94867,32.572307,0],[34.948672,32.572266,0],[34.948597,32.572266,0],[34.948519,32.572252,0],[34.94839,32.572228,0],[34.948199,32.572152,0],[34.947985,32.572031,0],[34.947892,32.571978,0],[34.947836,32.571954,0],[34.947592,32.571845,0],[34.947329,32.571762,0],[34.947302,32.571753,0],[34.947111,32.571693,0],[34.946781,32.571601,0],[34.946566,32.571541,0],[34.946354,32.571482,0],[34.946118,32.571416,0],[34.945903,32.571356,0],[34.945696,32.571295,0],[34.945628,32.571271,0],[34.945497,32.571218,0],[34.945418,32.571173,0],[34.945348,32.571136,0],[34.945328,32.571121,0],[34.945301,32.571102,0],[34.945187,32.571018,0],[34.945142,32.570983,0],[34.945061,32.570921,0],[34.945003,32.57087,0],[34.944976,32.570844,0],[34.944871,32.570743,0],[34.944863,32.570735,0],[34.94485,32.570723,0],[34.944828,32.570703,0],[34.944721,32.570603,0],[34.944707,32.570591,0],[34.944684,32.570569,0],[34.944625,32.57051,0],[34.944609,32.570495,0],[34.944566,32.570454,0],[34.944541,32.57043,0],[34.944443,32.57034,0],[34.944437,32.570334,0],[34.944433,32.57033,0],[34.944429,32.570326,0],[34.944398,32.570298,0],[34.944288,32.570196,0],[34.944255,32.57017,0],[34.944204,32.570128,0],[34.944165,32.570097,0],[34.944062,32.570104,0],[34.94399,32.570119,0],[34.943876,32.570142,0],[34.943278,32.570267,0],[34.94358,32.570744,0],[34.94367,32.570886,0],[34.94384,32.571156,0],[34.943909,32.571264,0],[34.943941,32.571315,0],[34.943932,32.571316,0],[34.94368,32.571341,0],[34.943521,32.571359,0],[34.943388,32.571291,0],[34.943308,32.571315,0],[34.942851,32.571465,0],[34.94282,32.571873,0],[34.94287,32.572056,0],[34.942907,32.572229,0],[34.942955,32.572408,0],[34.942997,32.572581,0],[34.943046,32.572765,0]]]},"type":"Feature","properties":{"Name":"11320"}},{"geometry":{"type":"Polygon","coordinates":[[[34.942047,32.56813,0],[34.942205,32.56828,0],[34.942361,32.568428,0],[34.942517,32.568576,0],[34.942671,32.568721,0],[34.942808,32.568877,0],[34.943027,32.569125,0],[34.943082,32.56918,0],[34.94328,32.569039,0],[34.943412,32.568945,0],[34.943557,32.568841,0],[34.943601,32.568701,0],[34.943668,32.568487,0],[34.943766,32.568171,0],[34.943805,32.568046,0],[34.943819,32.568001,0],[34.943859,32.567872,0],[34.943874,32.567825,0],[34.943913,32.567701,0],[34.943928,32.567651,0],[34.943968,32.567524,0],[34.943982,32.567478,0],[34.944021,32.567353,0],[34.944036,32.567304,0],[34.944091,32.56713,0],[34.944145,32.566955,0],[34.944198,32.566784,0],[34.944314,32.566412,0],[34.944315,32.56639,0],[34.944308,32.566367,0],[34.944286,32.566351,0],[34.944269,32.566338,0],[34.944249,32.566322,0],[34.944131,32.566295,0],[34.943926,32.566248,0],[34.943721,32.566201,0],[34.943514,32.566154,0],[34.943383,32.566124,0],[34.943129,32.566067,0],[34.943001,32.566038,0],[34.942795,32.565991,0],[34.942591,32.565944,0],[34.942389,32.565898,0],[34.942181,32.56585,0],[34.941976,32.565803,0],[34.941772,32.565756,0],[34.941566,32.565709,0],[34.941358,32.565662,0],[34.941152,32.565615,0],[34.940944,32.565568,0],[34.940818,32.565539,0],[34.940796,32.565534,0],[34.940776,32.565535,0],[34.940756,32.565543,0],[34.940739,32.565553,0],[34.940726,32.565569,0],[34.940722,32.565575,0],[34.940715,32.565588,0],[34.940567,32.565544,0],[34.940029,32.565446,0],[34.940012,32.56548,0],[34.939983,32.565547,0],[34.939963,32.565588,0],[34.939948,32.56562,0],[34.939914,32.565687,0],[34.939896,32.565723,0],[34.939877,32.565762,0],[34.939843,32.565832,0],[34.939806,32.565907,0],[34.939794,32.565931,0],[34.939772,32.565976,0],[34.93975,32.566046,0],[34.939736,32.566118,0],[34.939721,32.566192,0],[34.939727,32.566261,0],[34.939709,32.566427,0],[34.94047,32.566607,0],[34.940492,32.566629,0],[34.940632,32.566764,0],[34.94077,32.566897,0],[34.940906,32.567028,0],[34.941038,32.567156,0],[34.941176,32.567289,0],[34.941315,32.567424,0],[34.941457,32.567565,0],[34.941599,32.567706,0],[34.941747,32.567846,0],[34.941891,32.567983,0],[34.942047,32.56813,0]]]},"type":"Feature","properties":{"Name":"11319"}},{"geometry":{"type":"Polygon","coordinates":[[[34.946555,32.568746,0],[34.946748,32.56879,0],[34.946791,32.568665,0],[34.946885,32.568687,0],[34.946928,32.568548,0],[34.946973,32.568398,0],[34.947064,32.568102,0],[34.947104,32.567971,0],[34.947112,32.567951,0],[34.947129,32.567935,0],[34.947151,32.567924,0],[34.947176,32.567919,0],[34.947202,32.56792,0],[34.947582,32.568007,0],[34.94784,32.568066,0],[34.948101,32.568126,0],[34.948137,32.568023,0],[34.948235,32.568043,0],[34.948342,32.567687,0],[34.948449,32.567329,0],[34.948364,32.567309,0],[34.948361,32.567291,0],[34.948348,32.567271,0],[34.948328,32.567255,0],[34.948304,32.567246,0],[34.948154,32.567212,0],[34.947923,32.56716,0],[34.94769,32.567106,0],[34.946536,32.566843,0],[34.946487,32.566832,0],[34.944382,32.566352,0],[34.944249,32.566322,0],[34.944269,32.566338,0],[34.944286,32.566351,0],[34.944308,32.566367,0],[34.944315,32.56639,0],[34.944314,32.566412,0],[34.944198,32.566784,0],[34.944177,32.566854,0],[34.944145,32.566955,0],[34.944091,32.56713,0],[34.944036,32.567304,0],[34.944014,32.567376,0],[34.943982,32.567478,0],[34.943963,32.567541,0],[34.943928,32.567651,0],[34.943904,32.567727,0],[34.943874,32.567825,0],[34.94385,32.567901,0],[34.943819,32.568001,0],[34.943791,32.56809,0],[34.943766,32.568171,0],[34.943668,32.568487,0],[34.943601,32.568701,0],[34.943557,32.568841,0],[34.943412,32.568945,0],[34.943346,32.568992,0],[34.94328,32.569039,0],[34.943082,32.56918,0],[34.943362,32.569495,0],[34.943422,32.569562,0],[34.943459,32.569604,0],[34.94356,32.569695,0],[34.943633,32.569761,0],[34.943713,32.569811,0],[34.943895,32.569926,0],[34.944066,32.570034,0],[34.944165,32.570097,0],[34.944204,32.570128,0],[34.944255,32.57017,0],[34.944288,32.570196,0],[34.944398,32.570298,0],[34.944429,32.570326,0],[34.944433,32.57033,0],[34.944437,32.570334,0],[34.944443,32.57034,0],[34.944541,32.57043,0],[34.944566,32.570454,0],[34.944609,32.570495,0],[34.944625,32.57051,0],[34.944684,32.570569,0],[34.944707,32.570591,0],[34.944721,32.570603,0],[34.944828,32.570703,0],[34.94485,32.570723,0],[34.944863,32.570735,0],[34.944871,32.570743,0],[34.944976,32.570844,0],[34.945003,32.57087,0],[34.945061,32.570921,0],[34.945142,32.570983,0],[34.945187,32.571018,0],[34.945301,32.571102,0],[34.945328,32.571121,0],[34.945641,32.570843,0],[34.945532,32.570733,0],[34.945548,32.570725,0],[34.945584,32.57071,0],[34.94559,32.570706,0],[34.945596,32.570702,0],[34.9456,32.570697,0],[34.945604,32.570689,0],[34.945607,32.57068,0],[34.945607,32.570672,0],[34.945609,32.570664,0],[34.94561,32.570653,0],[34.945608,32.570645,0],[34.9456,32.570627,0],[34.945598,32.570591,0],[34.945629,32.570491,0],[34.9457,32.570264,0],[34.945758,32.570081,0],[34.945776,32.570024,0],[34.94582,32.569882,0],[34.945829,32.569851,0],[34.94588,32.569692,0],[34.945884,32.56968,0],[34.945911,32.569589,0],[34.945929,32.56953,0],[34.945934,32.569514,0],[34.945937,32.569504,0],[34.945965,32.569417,0],[34.94599,32.569336,0],[34.945999,32.569308,0],[34.946024,32.569226,0],[34.946045,32.569157,0],[34.946053,32.569133,0],[34.946086,32.569024,0],[34.946114,32.568935,0],[34.946148,32.568828,0],[34.946209,32.568636,0],[34.94622,32.568602,0],[34.946327,32.568695,0],[34.946555,32.568746,0]]]},"type":"Feature","properties":{"Name":"11318"}},{"geometry":{"type":"Polygon","coordinates":[[[34.949287,32.569234,0],[34.94908,32.569186,0],[34.948874,32.56914,0],[34.948666,32.569092,0],[34.948464,32.569046,0],[34.948257,32.568999,0],[34.948052,32.568952,0],[34.947843,32.568905,0],[34.94764,32.568859,0],[34.947428,32.56881,0],[34.947232,32.568766,0],[34.946968,32.568705,0],[34.946885,32.568687,0],[34.946791,32.568665,0],[34.946748,32.56879,0],[34.946555,32.568746,0],[34.946327,32.568695,0],[34.94622,32.568602,0],[34.946209,32.568636,0],[34.946148,32.568828,0],[34.946114,32.568935,0],[34.946086,32.569024,0],[34.946053,32.569133,0],[34.946045,32.569157,0],[34.946024,32.569226,0],[34.945999,32.569308,0],[34.94599,32.569336,0],[34.945965,32.569417,0],[34.945937,32.569504,0],[34.945934,32.569514,0],[34.945929,32.56953,0],[34.945911,32.569589,0],[34.945884,32.56968,0],[34.94588,32.569692,0],[34.945829,32.569851,0],[34.94582,32.569882,0],[34.945776,32.570024,0],[34.945758,32.570081,0],[34.9457,32.570264,0],[34.945629,32.570491,0],[34.945598,32.570591,0],[34.9456,32.570627,0],[34.945608,32.570645,0],[34.94561,32.570653,0],[34.945609,32.570664,0],[34.945607,32.570672,0],[34.945607,32.57068,0],[34.945604,32.570689,0],[34.9456,32.570697,0],[34.945596,32.570702,0],[34.94559,32.570706,0],[34.945584,32.57071,0],[34.945548,32.570725,0],[34.945532,32.570733,0],[34.945641,32.570843,0],[34.945328,32.571121,0],[34.945348,32.571136,0],[34.945418,32.571173,0],[34.945497,32.571218,0],[34.945628,32.571271,0],[34.945696,32.571295,0],[34.945903,32.571356,0],[34.946118,32.571416,0],[34.946354,32.571482,0],[34.946566,32.571541,0],[34.946781,32.571601,0],[34.947111,32.571693,0],[34.947302,32.571753,0],[34.947329,32.571762,0],[34.947592,32.571845,0],[34.947836,32.571954,0],[34.947892,32.571978,0],[34.947985,32.572031,0],[34.948199,32.572152,0],[34.94839,32.572228,0],[34.948519,32.572252,0],[34.948597,32.572266,0],[34.948672,32.572266,0],[34.94867,32.572307,0],[34.948843,32.572303,0],[34.949437,32.572305,0],[34.949475,32.572305,0],[34.950193,32.572307,0],[34.9502,32.57228,0],[34.950243,32.572119,0],[34.950334,32.571923,0],[34.950419,32.571742,0],[34.950544,32.571564,0],[34.950665,32.571419,0],[34.950693,32.571387,0],[34.950844,32.571207,0],[34.950961,32.571035,0],[34.951075,32.570837,0],[34.951129,32.570743,0],[34.951177,32.570657,0],[34.951074,32.570641,0],[34.950893,32.570613,0],[34.950717,32.570585,0],[34.950558,32.570425,0],[34.950401,32.570267,0],[34.950236,32.5701,0],[34.950167,32.570031,0],[34.950045,32.569908,0],[34.95002,32.569967,0],[34.949909,32.569684,0],[34.949768,32.569318,0],[34.949663,32.569353,0],[34.949649,32.569331,0],[34.949621,32.569311,0],[34.949598,32.569305,0],[34.949492,32.56928,0],[34.949287,32.569234,0]]]},"type":"Feature","properties":{"Name":"11317"}},{"geometry":{"type":"Polygon","coordinates":[[[34.949287,32.569234,0],[34.94908,32.569186,0],[34.948874,32.56914,0],[34.948666,32.569092,0],[34.948464,32.569046,0],[34.948257,32.568999,0],[34.948052,32.568952,0],[34.947843,32.568905,0],[34.94764,32.568859,0],[34.947428,32.56881,0],[34.947232,32.568766,0],[34.946968,32.568705,0],[34.946885,32.568687,0],[34.946791,32.568665,0],[34.946748,32.56879,0],[34.946555,32.568746,0],[34.946327,32.568695,0],[34.94622,32.568602,0],[34.946209,32.568636,0],[34.946148,32.568828,0],[34.946114,32.568935,0],[34.946086,32.569024,0],[34.946053,32.569133,0],[34.946045,32.569157,0],[34.946024,32.569226,0],[34.945999,32.569308,0],[34.94599,32.569336,0],[34.945965,32.569417,0],[34.945937,32.569504,0],[34.945934,32.569514,0],[34.945929,32.56953,0],[34.945911,32.569589,0],[34.945884,32.56968,0],[34.94588,32.569692,0],[34.945829,32.569851,0],[34.94582,32.569882,0],[34.945776,32.570024,0],[34.945758,32.570081,0],[34.9457,32.570264,0],[34.945629,32.570491,0],[34.945598,32.570591,0],[34.9456,32.570627,0],[34.945608,32.570645,0],[34.94561,32.570653,0],[34.945609,32.570664,0],[34.945607,32.570672,0],[34.945607,32.57068,0],[34.945604,32.570689,0],[34.9456,32.570697,0],[34.945596,32.570702,0],[34.94559,32.570706,0],[34.945584,32.57071,0],[34.945548,32.570725,0],[34.945532,32.570733,0],[34.945641,32.570843,0],[34.945328,32.571121,0],[34.945348,32.571136,0],[34.945418,32.571173,0],[34.945497,32.571218,0],[34.945628,32.571271,0],[34.945696,32.571295,0],[34.945903,32.571356,0],[34.946118,32.571416,0],[34.946354,32.571482,0],[34.946566,32.571541,0],[34.946781,32.571601,0],[34.947111,32.571693,0],[34.947302,32.571753,0],[34.947329,32.571762,0],[34.947592,32.571845,0],[34.947836,32.571954,0],[34.947892,32.571978,0],[34.947985,32.572031,0],[34.948199,32.572152,0],[34.94839,32.572228,0],[34.948519,32.572252,0],[34.948597,32.572266,0],[34.948672,32.572266,0],[34.94867,32.572307,0],[34.948843,32.572303,0],[34.949437,32.572305,0],[34.949475,32.572305,0],[34.950193,32.572307,0],[34.9502,32.57228,0],[34.950243,32.572119,0],[34.950334,32.571923,0],[34.950419,32.571742,0],[34.950544,32.571564,0],[34.950665,32.571419,0],[34.950693,32.571387,0],[34.950844,32.571207,0],[34.950961,32.571035,0],[34.951075,32.570837,0],[34.951129,32.570743,0],[34.951177,32.570657,0],[34.951074,32.570641,0],[34.950893,32.570613,0],[34.950717,32.570585,0],[34.950558,32.570425,0],[34.950401,32.570267,0],[34.950236,32.5701,0],[34.950167,32.570031,0],[34.950045,32.569908,0],[34.95002,32.569967,0],[34.949909,32.569684,0],[34.949768,32.569318,0],[34.949663,32.569353,0],[34.949649,32.569331,0],[34.949621,32.569311,0],[34.949598,32.569305,0],[34.949492,32.56928,0],[34.949287,32.569234,0]]]},"type":"Feature","properties":{"Name":"11317"}},{"geometry":{"type":"Polygon","coordinates":[[[34.948641,32.567375,0],[34.948449,32.567329,0],[34.948342,32.567687,0],[34.948235,32.568043,0],[34.948137,32.568023,0],[34.948134,32.568033,0],[34.948101,32.568126,0],[34.94784,32.568066,0],[34.947582,32.568007,0],[34.947202,32.56792,0],[34.947176,32.567919,0],[34.947151,32.567924,0],[34.947129,32.567935,0],[34.947112,32.567951,0],[34.947104,32.567971,0],[34.947064,32.568102,0],[34.946973,32.568398,0],[34.946928,32.568548,0],[34.946885,32.568687,0],[34.946968,32.568705,0],[34.947232,32.568766,0],[34.947428,32.56881,0],[34.94764,32.568859,0],[34.947843,32.568905,0],[34.948052,32.568952,0],[34.948257,32.568999,0],[34.948464,32.569046,0],[34.948666,32.569092,0],[34.948874,32.56914,0],[34.94908,32.569186,0],[34.949287,32.569234,0],[34.949492,32.56928,0],[34.949598,32.569305,0],[34.949621,32.569311,0],[34.949649,32.569331,0],[34.949663,32.569353,0],[34.949768,32.569318,0],[34.949909,32.569684,0],[34.94997,32.56984,0],[34.95002,32.569967,0],[34.950045,32.569908,0],[34.950167,32.570031,0],[34.950236,32.5701,0],[34.950401,32.570267,0],[34.950558,32.570425,0],[34.950717,32.570585,0],[34.950963,32.570043,0],[34.951018,32.569922,0],[34.951034,32.569885,0],[34.951115,32.569708,0],[34.951191,32.569541,0],[34.951268,32.569371,0],[34.951343,32.569206,0],[34.951367,32.569154,0],[34.951389,32.569156,0],[34.952365,32.569244,0],[34.95247,32.569253,0],[34.952739,32.569278,0],[34.952996,32.569302,0],[34.953401,32.569339,0],[34.953431,32.569342,0],[34.953562,32.569354,0],[34.95404,32.569398,0],[34.95407,32.569401,0],[34.954142,32.568856,0],[34.954151,32.568776,0],[34.954124,32.568704,0],[34.954101,32.568642,0],[34.954097,32.568633,0],[34.954091,32.568618,0],[34.95408,32.568614,0],[34.953966,32.568572,0],[34.953851,32.568547,0],[34.95373,32.56852,0],[34.953492,32.568466,0],[34.953484,32.568465,0],[34.953389,32.568443,0],[34.953294,32.568422,0],[34.953213,32.568404,0],[34.952926,32.568339,0],[34.952586,32.568263,0],[34.952276,32.568194,0],[34.951982,32.568128,0],[34.951726,32.56807,0],[34.951469,32.568013,0],[34.95127,32.567968,0],[34.951241,32.567962,0],[34.951106,32.567931,0],[34.951103,32.56793,0],[34.9511,32.56793,0],[34.951097,32.567929,0],[34.951094,32.567928,0],[34.951092,32.567928,0],[34.951038,32.567916,0],[34.951021,32.567912,0],[34.950993,32.567906,0],[34.950899,32.567885,0],[34.950836,32.567871,0],[34.950833,32.56787,0],[34.95083,32.567869,0],[34.950827,32.567868,0],[34.950824,32.567867,0],[34.950821,32.567866,0],[34.950817,32.567866,0],[34.950814,32.567865,0],[34.950811,32.567865,0],[34.950808,32.567864,0],[34.950682,32.567836,0],[34.950497,32.567794,0],[34.950471,32.567788,0],[34.950275,32.567744,0],[34.950249,32.567738,0],[34.95008,32.5677,0],[34.950054,32.567694,0],[34.949855,32.567649,0],[34.949828,32.567643,0],[34.949671,32.567608,0],[34.949625,32.567597,0],[34.949459,32.56756,0],[34.949362,32.567538,0],[34.949254,32.567513,0],[34.94915,32.56749,0],[34.949039,32.567465,0],[34.948937,32.567442,0],[34.94884,32.56742,0],[34.948641,32.567375,0]]]},"type":"Feature","properties":{"Name":"11316"}},{"geometry":{"type":"Polygon","coordinates":[[[34.95656,32.557076,0],[34.955953,32.557153,0],[34.95586,32.55722,0],[34.955768,32.557295,0],[34.955507,32.557496,0],[34.955462,32.557537,0],[34.955095,32.557888,0],[34.954829,32.558146,0],[34.954803,32.558177,0],[34.954637,32.558335,0],[34.954465,32.558525,0],[34.954299,32.55872,0],[34.954204,32.558832,0],[34.953997,32.559084,0],[34.953726,32.559409,0],[34.953656,32.559609,0],[34.953534,32.56007,0],[34.953434,32.560442,0],[34.952898,32.560659,0],[34.952629,32.560766,0],[34.952231,32.560914,0],[34.952045,32.560955,0],[34.951985,32.56097,0],[34.951876,32.560985,0],[34.951612,32.561,0],[34.951423,32.561011,0],[34.951363,32.560975,0],[34.95129,32.561624,0],[34.951327,32.561617,0],[34.951348,32.561467,0],[34.951394,32.562441,0],[34.951397,32.562482,0],[34.951519,32.563348,0],[34.951547,32.563513,0],[34.951637,32.564164,0],[34.951661,32.564158,0],[34.951809,32.563921,0],[34.951829,32.564061,0],[34.951862,32.564294,0],[34.95188,32.564417,0],[34.951893,32.564512,0],[34.951894,32.564517,0],[34.951994,32.56499,0],[34.952033,32.565081,0],[34.952055,32.565147,0],[34.952158,32.565425,0],[34.95216,32.565427,0],[34.952302,32.565729,0],[34.952323,32.565768,0],[34.952331,32.565781,0],[34.952469,32.566026,0],[34.952477,32.566039,0],[34.952716,32.566383,0],[34.952787,32.566476,0],[34.952794,32.566485,0],[34.953469,32.567384,0],[34.953544,32.567483,0],[34.953545,32.567484,0],[34.95359,32.567544,0],[34.953665,32.567643,0],[34.95371,32.567702,0],[34.953711,32.567703,0],[34.953923,32.567983,0],[34.954213,32.568365,0],[34.954213,32.568366,0],[34.954356,32.568555,0],[34.954236,32.568667,0],[34.954225,32.568679,0],[34.954185,32.568655,0],[34.954202,32.568736,0],[34.954274,32.568769,0],[34.954288,32.568746,0],[34.954302,32.56873,0],[34.954724,32.568313,0],[34.955083,32.56796,0],[34.955191,32.567845,0],[34.956844,32.56622,0],[34.957387,32.565662,0],[34.957838,32.565158,0],[34.958004,32.564907,0],[34.958381,32.56434,0],[34.958519,32.564095,0],[34.958553,32.56403,0],[34.958576,32.563877,0],[34.958577,32.56387,0],[34.958635,32.563318,0],[34.958659,32.563078,0],[34.958745,32.562989,0],[34.958736,32.562938,0],[34.95869,32.562894,0],[34.958662,32.562891,0],[34.958626,32.56285,0],[34.958581,32.562565,0],[34.958517,32.562247,0],[34.958401,32.561602,0],[34.958389,32.561539,0],[34.958352,32.561426,0],[34.958316,32.561275,0],[34.958267,32.561054,0],[34.958083,32.56027,0],[34.958056,32.560144,0],[34.958045,32.560102,0],[34.957977,32.559829,0],[34.957969,32.559798,0],[34.957962,32.559711,0],[34.957965,32.559443,0],[34.957968,32.559286,0],[34.957975,32.559133,0],[34.957975,32.559098,0],[34.957962,32.558957,0],[34.957952,32.558794,0],[34.957879,32.558239,0],[34.957872,32.558193,0],[34.957871,32.558183,0],[34.95783,32.557938,0],[34.957639,32.557309,0],[34.957524,32.556931,0],[34.957412,32.556956,0],[34.956944,32.55702,0],[34.95656,32.557076,0]]]},"type":"Feature","properties":{"Name":"11309"}},{"geometry":{"type":"Polygon","coordinates":[[[34.957977,32.559829,0],[34.958045,32.560102,0],[34.958056,32.560144,0],[34.958083,32.56027,0],[34.958267,32.561054,0],[34.958316,32.561275,0],[34.958352,32.561426,0],[34.958389,32.561539,0],[34.958401,32.561602,0],[34.958517,32.562247,0],[34.958581,32.562565,0],[34.958626,32.56285,0],[34.958662,32.562891,0],[34.95869,32.562894,0],[34.958736,32.562938,0],[34.958745,32.562989,0],[34.958659,32.563078,0],[34.958635,32.563318,0],[34.958577,32.56387,0],[34.958576,32.563877,0],[34.958553,32.56403,0],[34.958519,32.564095,0],[34.958381,32.56434,0],[34.958004,32.564907,0],[34.957838,32.565158,0],[34.957387,32.565662,0],[34.956844,32.56622,0],[34.955191,32.567845,0],[34.955184,32.567871,0],[34.955183,32.567879,0],[34.955203,32.567898,0],[34.955522,32.567915,0],[34.956553,32.567985,0],[34.957106,32.568025,0],[34.957155,32.568021,0],[34.957181,32.568011,0],[34.957251,32.567979,0],[34.95797,32.567522,0],[34.958031,32.567484,0],[34.958078,32.567464,0],[34.958105,32.567476,0],[34.958205,32.567517,0],[34.958344,32.567608,0],[34.958402,32.567646,0],[34.958637,32.5678,0],[34.958768,32.567857,0],[34.9589,32.567901,0],[34.959048,32.56795,0],[34.959149,32.567961,0],[34.959211,32.567965,0],[34.959328,32.567959,0],[34.959343,32.567958,0],[34.959558,32.567924,0],[34.959902,32.567844,0],[34.960145,32.567787,0],[34.960333,32.567716,0],[34.960755,32.567561,0],[34.960812,32.56754,0],[34.960872,32.567517,0],[34.961172,32.567403,0],[34.961562,32.567255,0],[34.961659,32.567218,0],[34.961737,32.567189,0],[34.961996,32.567078,0],[34.961982,32.567013,0],[34.961966,32.566949,0],[34.961949,32.566885,0],[34.96193,32.566822,0],[34.96191,32.566758,0],[34.961877,32.56666,0],[34.961873,32.566648,0],[34.96187,32.566642,0],[34.961868,32.566636,0],[34.961866,32.56663,0],[34.961863,32.566624,0],[34.961861,32.566618,0],[34.961859,32.566611,0],[34.961857,32.566605,0],[34.961854,32.566599,0],[34.961852,32.566593,0],[34.961849,32.566587,0],[34.961847,32.566581,0],[34.961845,32.566574,0],[34.961842,32.566568,0],[34.961847,32.566543,0],[34.96186,32.566394,0],[34.961779,32.566422,0],[34.961744,32.566434,0],[34.961742,32.566435,0],[34.961582,32.56649,0],[34.961583,32.566488,0],[34.961583,32.566487,0],[34.961583,32.566487,0],[34.961583,32.566486,0],[34.961583,32.566485,0],[34.961583,32.566484,0],[34.961583,32.566483,0],[34.961583,32.566482,0],[34.961583,32.566481,0],[34.961583,32.56648,0],[34.961583,32.566479,0],[34.961583,32.566478,0],[34.961583,32.566477,0],[34.961583,32.566476,0],[34.961583,32.566475,0],[34.961583,32.566474,0],[34.961583,32.566473,0],[34.961583,32.566472,0],[34.961583,32.566471,0],[34.961583,32.56647,0],[34.961583,32.566469,0],[34.961583,32.566468,0],[34.961583,32.566467,0],[34.961583,32.566466,0],[34.961583,32.566465,0],[34.961583,32.566464,0],[34.961583,32.566463,0],[34.961583,32.566462,0],[34.961583,32.566462,0],[34.961583,32.566461,0],[34.961582,32.56646,0],[34.961582,32.566459,0],[34.961582,32.566458,0],[34.961582,32.566457,0],[34.961582,32.566456,0],[34.961582,32.566455,0],[34.961582,32.566454,0],[34.961581,32.566452,0],[34.961581,32.566451,0],[34.961581,32.56645,0],[34.961581,32.566449,0],[34.961581,32.566447,0],[34.961581,32.566446,0],[34.961581,32.566445,0],[34.961582,32.566444,0],[34.961582,32.566442,0],[34.961582,32.566441,0],[34.961582,32.56644,0],[34.961583,32.566439,0],[34.961583,32.566438,0],[34.961584,32.566436,0],[34.961584,32.566435,0],[34.961585,32.566434,0],[34.961585,32.566433,0],[34.961586,32.566432,0],[34.961587,32.566431,0],[34.961587,32.56643,0],[34.961588,32.566429,0],[34.961589,32.566428,0],[34.96159,32.566427,0],[34.961591,32.566426,0],[34.961592,32.566425,0],[34.961593,32.566424,0],[34.961594,32.566423,0],[34.961595,32.566422,0],[34.961596,32.566421,0],[34.961597,32.566421,0],[34.961598,32.56642,0],[34.961601,32.566418,0],[34.961602,32.566418,0],[34.961603,32.566417,0],[34.961604,32.566416,0],[34.961606,32.566415,0],[34.961607,32.566414,0],[34.961608,32.566414,0],[34.961609,32.566413,0],[34.96161,32.566412,0],[34.961611,32.566411,0],[34.961613,32.56641,0],[34.961614,32.566409,0],[34.961615,32.566408,0],[34.961616,32.566407,0],[34.961617,32.566406,0],[34.961618,32.566405,0],[34.961619,32.566404,0],[34.96162,32.566403,0],[34.961621,32.566402,0],[34.961622,32.566401,0],[34.961623,32.5664,0],[34.961623,32.566399,0],[34.961624,32.566398,0],[34.961625,32.566397,0],[34.961626,32.566395,0],[34.961627,32.566394,0],[34.961627,32.566393,0],[34.961628,32.566392,0],[34.961629,32.566391,0],[34.96163,32.56639,0],[34.96163,32.566388,0],[34.961631,32.566387,0],[34.961632,32.566386,0],[34.961632,32.566385,0],[34.961633,32.566384,0],[34.961633,32.566382,0],[34.961634,32.566381,0],[34.961634,32.56638,0],[34.961635,32.566379,0],[34.961635,32.566377,0],[34.961636,32.566376,0],[34.961636,32.566375,0],[34.961636,32.566374,0],[34.961637,32.566372,0],[34.961637,32.566371,0],[34.961637,32.56637,0],[34.961638,32.566368,0],[34.961638,32.566367,0],[34.961638,32.566366,0],[34.961638,32.566364,0],[34.961638,32.566363,0],[34.961638,32.566362,0],[34.961638,32.56636,0],[34.961639,32.566359,0],[34.961639,32.566358,0],[34.961639,32.566357,0],[34.961639,32.566355,0],[34.961639,32.566354,0],[34.961638,32.566353,0],[34.961638,32.566351,0],[34.961638,32.56635,0],[34.961638,32.566349,0],[34.961638,32.566347,0],[34.961638,32.566346,0],[34.961637,32.566345,0],[34.961637,32.566343,0],[34.961637,32.566342,0],[34.961637,32.566341,0],[34.961636,32.56634,0],[34.961636,32.566338,0],[34.961636,32.566337,0],[34.961635,32.566336,0],[34.961635,32.566334,0],[34.961634,32.566333,0],[34.961634,32.566332,0],[34.961633,32.566331,0],[34.961633,32.566329,0],[34.961604,32.566267,0],[34.96169,32.566238,0],[34.961698,32.566235,0],[34.961878,32.566173,0],[34.961869,32.566042,0],[34.961838,32.565922,0],[34.961809,32.565846,0],[34.961626,32.565601,0],[34.961607,32.565583,0],[34.961614,32.565449,0],[34.961617,32.565406,0],[34.961653,32.565216,0],[34.961654,32.565079,0],[34.961654,32.564975,0],[34.961654,32.564915,0],[34.961661,32.564794,0],[34.961658,32.564736,0],[34.961651,32.564584,0],[34.961648,32.564529,0],[34.961645,32.564475,0],[34.961638,32.564336,0],[34.961636,32.564319,0],[34.961613,32.564152,0],[34.961586,32.564051,0],[34.961525,32.563824,0],[34.961636,32.563776,0],[34.961862,32.563679,0],[34.962089,32.563582,0],[34.962195,32.563537,0],[34.962401,32.563449,0],[34.962592,32.563367,0],[34.962781,32.563286,0],[34.96297,32.563205,0],[34.96316,32.563124,0],[34.96335,32.563043,0],[34.96348,32.562987,0],[34.963529,32.562966,0],[34.963491,32.562812,0],[34.963451,32.562648,0],[34.963406,32.562515,0],[34.963311,32.562231,0],[34.963122,32.562263,0],[34.962748,32.562325,0],[34.962713,32.562331,0],[34.962491,32.562368,0],[34.962288,32.562272,0],[34.962072,32.56217,0],[34.961942,32.562108,0],[34.961897,32.562088,0],[34.961851,32.562067,0],[34.96181,32.562047,0],[34.961577,32.561938,0],[34.961372,32.561841,0],[34.961331,32.561822,0],[34.961188,32.561755,0],[34.961135,32.561655,0],[34.960997,32.561396,0],[34.960904,32.56122,0],[34.961006,32.561211,0],[34.961067,32.561202,0],[34.961056,32.560943,0],[34.96105,32.560841,0],[34.961027,32.560631,0],[34.961031,32.560619,0],[34.961032,32.560593,0],[34.960854,32.559394,0],[34.960822,32.559183,0],[34.960805,32.559098,0],[34.960782,32.559002,0],[34.960811,32.558879,0],[34.960799,32.558862,0],[34.960657,32.558708,0],[34.960627,32.558662,0],[34.960613,32.558632,0],[34.960593,32.558584,0],[34.960584,32.558537,0],[34.960594,32.558464,0],[34.960605,32.558429,0],[34.960614,32.558409,0],[34.960629,32.558374,0],[34.960637,32.558341,0],[34.96064,32.558314,0],[34.96064,32.5583,0],[34.960639,32.558268,0],[34.960634,32.558231,0],[34.960609,32.55818,0],[34.960587,32.558144,0],[34.960534,32.558085,0],[34.960438,32.558019,0],[34.960352,32.557962,0],[34.960284,32.557918,0],[34.960012,32.558122,0],[34.96,32.558131,0],[34.959344,32.55838,0],[34.958458,32.558295,0],[34.957879,32.558239,0],[34.957952,32.558794,0],[34.957962,32.558957,0],[34.957975,32.559098,0],[34.957975,32.559133,0],[34.957968,32.559286,0],[34.957965,32.559443,0],[34.957962,32.559711,0],[34.957969,32.559798,0],[34.957977,32.559829,0]]]},"type":"Feature","properties":{"Name":"11308"}},{"geometry":{"type":"Polygon","coordinates":[[[34.962162,32.568604,0],[34.962183,32.568566,0],[34.962202,32.568528,0],[34.96222,32.568489,0],[34.962236,32.56845,0],[34.962251,32.56841,0],[34.962264,32.568369,0],[34.962275,32.568329,0],[34.962284,32.568288,0],[34.962292,32.568247,0],[34.962298,32.568205,0],[34.962303,32.568164,0],[34.962315,32.568044,0],[34.962324,32.567924,0],[34.962328,32.567805,0],[34.962327,32.567685,0],[34.962387,32.567684,0],[34.962379,32.567538,0],[34.962366,32.567392,0],[34.962346,32.567247,0],[34.962322,32.567102,0],[34.962291,32.566958,0],[34.961985,32.567095,0],[34.961749,32.567196,0],[34.961729,32.567204,0],[34.960804,32.567547,0],[34.960759,32.567563,0],[34.960685,32.567591,0],[34.960181,32.567777,0],[34.960134,32.567785,0],[34.959957,32.56783,0],[34.959649,32.567908,0],[34.959529,32.567939,0],[34.959439,32.567954,0],[34.959368,32.567958,0],[34.959326,32.567961,0],[34.959282,32.567961,0],[34.959226,32.567961,0],[34.959195,32.567959,0],[34.959146,32.567956,0],[34.959117,32.567955,0],[34.959024,32.567941,0],[34.958945,32.56791,0],[34.958875,32.567882,0],[34.958792,32.56785,0],[34.95871,32.567817,0],[34.958654,32.567795,0],[34.958616,32.567771,0],[34.95837,32.567614,0],[34.958368,32.567613,0],[34.958178,32.567491,0],[34.958132,32.567473,0],[34.958082,32.567454,0],[34.958043,32.567467,0],[34.957944,32.56753,0],[34.957249,32.567977,0],[34.957229,32.567989,0],[34.957226,32.567991,0],[34.957185,32.568015,0],[34.957155,32.568019,0],[34.957112,32.568024,0],[34.955195,32.567897,0],[34.955195,32.56786,0],[34.955193,32.567862,0],[34.95516,32.567895,0],[34.955116,32.567939,0],[34.954485,32.568563,0],[34.954483,32.568565,0],[34.954275,32.568771,0],[34.954639,32.569024,0],[34.954994,32.569272,0],[34.955374,32.569538,0],[34.955472,32.569606,0],[34.955476,32.569609,0],[34.955669,32.569743,0],[34.955737,32.56979,0],[34.955897,32.569837,0],[34.956337,32.569966,0],[34.956728,32.57008,0],[34.956533,32.570329,0],[34.9565,32.570371,0],[34.956572,32.570375,0],[34.957095,32.570403,0],[34.957069,32.57048,0],[34.957039,32.57057,0],[34.956991,32.570737,0],[34.956939,32.570924,0],[34.956909,32.571116,0],[34.956895,32.571207,0],[34.956892,32.571228,0],[34.956891,32.571234,0],[34.95689,32.57124,0],[34.956889,32.571245,0],[34.95688,32.571301,0],[34.956879,32.571301,0],[34.956785,32.571402,0],[34.956747,32.57147,0],[34.956694,32.571515,0],[34.956593,32.57162,0],[34.956605,32.571675,0],[34.956512,32.571796,0],[34.956426,32.571901,0],[34.956385,32.571985,0],[34.956312,32.572054,0],[34.956053,32.572177,0],[34.955985,32.572204,0],[34.955877,32.572374,0],[34.955687,32.572387,0],[34.955589,32.572849,0],[34.955588,32.572853,0],[34.955582,32.572883,0],[34.955581,32.57289,0],[34.956377,32.57294,0],[34.956585,32.572948,0],[34.957117,32.572969,0],[34.957122,32.572934,0],[34.957137,32.572875,0],[34.957182,32.572693,0],[34.957183,32.572688,0],[34.957601,32.572816,0],[34.957602,32.572813,0],[34.957642,32.572826,0],[34.95764,32.572828,0],[34.957639,32.572947,0],[34.957638,32.57301,0],[34.958778,32.573257,0],[34.958872,32.57325,0],[34.958999,32.573199,0],[34.959864,32.572865,0],[34.959985,32.572825,0],[34.960373,32.572777,0],[34.960589,32.572733,0],[34.960831,32.572773,0],[34.961365,32.572862,0],[34.961811,32.573073,0],[34.961987,32.573156,0],[34.961992,32.573158,0],[34.96204,32.573167,0],[34.962164,32.573205,0],[34.962491,32.573308,0],[34.962619,32.573348,0],[34.962899,32.573455,0],[34.962904,32.573457,0],[34.963486,32.573759,0],[34.964113,32.574087,0],[34.964174,32.574125,0],[34.964179,32.57412,0],[34.964332,32.573966,0],[34.964334,32.573966,0],[34.964359,32.57394,0],[34.965354,32.573884,0],[34.966224,32.573738,0],[34.966588,32.573493,0],[34.966635,32.57343,0],[34.966747,32.573278,0],[34.966842,32.573148,0],[34.966863,32.572986,0],[34.966864,32.572979,0],[34.96692,32.572563,0],[34.966953,32.571928,0],[34.966981,32.57138,0],[34.96695,32.57069,0],[34.966886,32.570557,0],[34.966593,32.569903,0],[34.966538,32.569777,0],[34.966425,32.569429,0],[34.966365,32.569296,0],[34.966105,32.568767,0],[34.966075,32.568705,0],[34.966048,32.56865,0],[34.966047,32.568648,0],[34.965624,32.568636,0],[34.965314,32.568627,0],[34.965293,32.568626,0],[34.965178,32.568623,0],[34.964925,32.568615,0],[34.964715,32.568608,0],[34.963477,32.568604,0],[34.963449,32.568604,0],[34.963443,32.568604,0],[34.963337,32.568603,0],[34.963192,32.568602,0],[34.962929,32.568601,0],[34.962337,32.568598,0],[34.962284,32.568598,0],[34.962281,32.568598,0],[34.962162,32.568604,0]]]},"type":"Feature","properties":{"Name":"11307"}},{"geometry":{"type":"Polygon","coordinates":[[[34.95691,32.571109,0],[34.95694,32.570917,0],[34.956951,32.570877,0],[34.956992,32.57073,0],[34.95704,32.570563,0],[34.957097,32.570396,0],[34.956502,32.570364,0],[34.956534,32.570323,0],[34.956729,32.570073,0],[34.955924,32.569838,0],[34.955805,32.569803,0],[34.955738,32.569783,0],[34.9557,32.569757,0],[34.955617,32.5697,0],[34.955477,32.569602,0],[34.955375,32.569531,0],[34.954995,32.569265,0],[34.95464,32.569017,0],[34.954276,32.568764,0],[34.954201,32.568733,0],[34.954143,32.568849,0],[34.954071,32.569394,0],[34.954041,32.569392,0],[34.953563,32.569347,0],[34.953402,32.569332,0],[34.952997,32.569295,0],[34.95274,32.569271,0],[34.952471,32.569246,0],[34.952366,32.569237,0],[34.95139,32.569149,0],[34.951368,32.569147,0],[34.951344,32.569199,0],[34.95127,32.569364,0],[34.951192,32.569534,0],[34.951116,32.569701,0],[34.951036,32.569878,0],[34.951019,32.569915,0],[34.950964,32.570036,0],[34.950718,32.570578,0],[34.950895,32.570606,0],[34.951075,32.570634,0],[34.951178,32.57065,0],[34.951131,32.570736,0],[34.951076,32.57083,0],[34.950962,32.571028,0],[34.950845,32.5712,0],[34.950694,32.57138,0],[34.950546,32.571557,0],[34.950421,32.571735,0],[34.950336,32.571916,0],[34.950244,32.572112,0],[34.950194,32.5723,0],[34.950305,32.572301,0],[34.950544,32.57233,0],[34.950581,32.57233,0],[34.951037,32.572329,0],[34.952126,32.572326,0],[34.952154,32.572326,0],[34.952312,32.572325,0],[34.95385,32.572348,0],[34.954013,32.57235,0],[34.954034,32.57235,0],[34.954138,32.572362,0],[34.954158,32.572362,0],[34.954161,32.572362,0],[34.954634,32.572362,0],[34.95465,32.572362,0],[34.954774,32.572362,0],[34.954777,32.572362,0],[34.954827,32.572363,0],[34.955042,32.572368,0],[34.955307,32.572374,0],[34.955549,32.57238,0],[34.955581,32.57238,0],[34.955626,32.57238,0],[34.955688,32.57238,0],[34.955879,32.572367,0],[34.955986,32.572197,0],[34.956054,32.57217,0],[34.956192,32.572104,0],[34.956313,32.572047,0],[34.956386,32.571979,0],[34.956427,32.571894,0],[34.956513,32.571789,0],[34.956606,32.571668,0],[34.956598,32.57163,0],[34.956594,32.571613,0],[34.956695,32.571508,0],[34.956748,32.571463,0],[34.956786,32.571395,0],[34.956835,32.571343,0],[34.956856,32.571321,0],[34.956881,32.571294,0],[34.956894,32.571214,0],[34.95691,32.571109,0]]]},"type":"Feature","properties":{"Name":"11306"}},{"geometry":{"type":"Polygon","coordinates":[[[34.958672,32.57581,0],[34.958882,32.575771,0],[34.959493,32.575999,0],[34.959664,32.576003,0],[34.959865,32.575968,0],[34.959905,32.575973,0],[34.959947,32.575969,0],[34.959995,32.575976,0],[34.960122,32.575922,0],[34.960317,32.575839,0],[34.960422,32.575747,0],[34.96053,32.575651,0],[34.960613,32.575535,0],[34.960671,32.57553,0],[34.960686,32.575581,0],[34.960799,32.575277,0],[34.960681,32.575298,0],[34.960716,32.575108,0],[34.960653,32.574876,0],[34.960509,32.574813,0],[34.960465,32.574618,0],[34.960283,32.574677,0],[34.960236,32.574484,0],[34.960025,32.574441,0],[34.959905,32.574351,0],[34.959388,32.574243,0],[34.959347,32.574153,0],[34.95944,32.574028,0],[34.959682,32.573782,0],[34.960264,32.573023,0],[34.960343,32.57292,0],[34.960383,32.572868,0],[34.960378,32.572824,0],[34.960373,32.572777,0],[34.959985,32.572825,0],[34.959864,32.572865,0],[34.958999,32.573199,0],[34.958872,32.57325,0],[34.958924,32.573334,0],[34.958862,32.573365,0],[34.958811,32.573418,0],[34.958806,32.573423,0],[34.958789,32.57344,0],[34.958769,32.57346,0],[34.958663,32.573602,0],[34.958559,32.573799,0],[34.958203,32.574662,0],[34.958207,32.574808,0],[34.958211,32.574935,0],[34.958305,32.575848,0],[34.958516,32.575835,0],[34.958672,32.57581,0]]]},"type":"Feature","properties":{"Name":"11305"}},{"geometry":{"type":"Polygon","coordinates":[[[34.956004,32.574586,0],[34.955995,32.574832,0],[34.956032,32.574879,0],[34.956105,32.574969,0],[34.956657,32.574983,0],[34.956861,32.574988,0],[34.956915,32.574989,0],[34.956994,32.57499,0],[34.957038,32.574982,0],[34.957937,32.574807,0],[34.958106,32.574806,0],[34.958203,32.574662,0],[34.958559,32.573799,0],[34.958663,32.573602,0],[34.958769,32.57346,0],[34.958789,32.57344,0],[34.958806,32.573423,0],[34.958811,32.573418,0],[34.958862,32.573365,0],[34.958924,32.573334,0],[34.958872,32.57325,0],[34.958778,32.573257,0],[34.957802,32.573046,0],[34.957638,32.57301,0],[34.957639,32.572932,0],[34.95764,32.572828,0],[34.957601,32.572816,0],[34.957183,32.572688,0],[34.957136,32.572879,0],[34.957122,32.572934,0],[34.957117,32.572969,0],[34.956612,32.572949,0],[34.956377,32.57294,0],[34.955581,32.57289,0],[34.955588,32.572853,0],[34.955687,32.572387,0],[34.955579,32.572387,0],[34.955548,32.572386,0],[34.955306,32.572381,0],[34.955041,32.572375,0],[34.954825,32.57237,0],[34.954773,32.572368,0],[34.954633,32.572369,0],[34.95416,32.572369,0],[34.954137,32.572369,0],[34.954137,32.572398,0],[34.954135,32.572617,0],[34.954135,32.572711,0],[34.954134,32.572768,0],[34.954134,32.572841,0],[34.954133,32.572996,0],[34.954132,32.57314,0],[34.954131,32.573277,0],[34.954131,32.573284,0],[34.954131,32.573332,0],[34.95413,32.573505,0],[34.954129,32.573573,0],[34.954129,32.573681,0],[34.954127,32.573898,0],[34.954126,32.574141,0],[34.954135,32.574149,0],[34.954161,32.574168,0],[34.954164,32.574176,0],[34.954169,32.574187,0],[34.954422,32.574191,0],[34.954608,32.574194,0],[34.954735,32.574195,0],[34.954938,32.574198,0],[34.955128,32.574201,0],[34.955267,32.574203,0],[34.955327,32.574204,0],[34.955418,32.574205,0],[34.955696,32.574209,0],[34.955874,32.574212,0],[34.956018,32.574214,0],[34.956015,32.574283,0],[34.956013,32.574334,0],[34.956005,32.574569,0],[34.956004,32.574586,0]]]},"type":"Feature","properties":{"Name":"11304"}},{"geometry":{"type":"Polygon","coordinates":[[[34.953954,32.577175,0],[34.954013,32.57727,0],[34.954181,32.577183,0],[34.954409,32.577047,0],[34.954572,32.576949,0],[34.954692,32.576757,0],[34.954706,32.576742,0],[34.954773,32.576665,0],[34.955019,32.576615,0],[34.955325,32.576465,0],[34.955544,32.576306,0],[34.955773,32.576004,0],[34.955896,32.575704,0],[34.955923,32.575639,0],[34.956021,32.575262,0],[34.956174,32.575153,0],[34.956653,32.575044,0],[34.956902,32.574986,0],[34.956655,32.57498,0],[34.956137,32.574967,0],[34.956107,32.574966,0],[34.955995,32.574832,0],[34.956018,32.574214,0],[34.952235,32.57416,0],[34.952125,32.574173,0],[34.952119,32.574364,0],[34.952117,32.574413,0],[34.952114,32.57468,0],[34.952115,32.574732,0],[34.952119,32.575168,0],[34.95212,32.575561,0],[34.95212,32.575741,0],[34.95212,32.575877,0],[34.95212,32.576014,0],[34.952098,32.576147,0],[34.952093,32.576168,0],[34.952076,32.576261,0],[34.952064,32.576345,0],[34.952043,32.576489,0],[34.952035,32.576526,0],[34.95201,32.576689,0],[34.951978,32.576867,0],[34.951946,32.577028,0],[34.951914,32.57721,0],[34.951906,32.577293,0],[34.951885,32.577425,0],[34.951863,32.577598,0],[34.951881,32.577616,0],[34.951905,32.57764,0],[34.952029,32.577765,0],[34.952138,32.577876,0],[34.952158,32.577897,0],[34.952261,32.578002,0],[34.952462,32.577922,0],[34.95248,32.57797,0],[34.952554,32.578059,0],[34.952675,32.578163,0],[34.952696,32.578159,0],[34.952904,32.578126,0],[34.952805,32.578017,0],[34.952719,32.577841,0],[34.952674,32.577765,0],[34.952475,32.577437,0],[34.952538,32.577441,0],[34.952553,32.577442,0],[34.952881,32.577571,0],[34.952872,32.577696,0],[34.953435,32.577761,0],[34.953652,32.57756,0],[34.953636,32.577379,0],[34.953782,32.577285,0],[34.953954,32.577175,0]]]},"type":"Feature","properties":{"Name":"11303"}},{"geometry":{"type":"Polygon","coordinates":[[[34.952124,32.576002,0],[34.952123,32.57587,0],[34.952124,32.575735,0],[34.952123,32.575578,0],[34.952122,32.575556,0],[34.952121,32.575286,0],[34.952121,32.57522,0],[34.95212,32.575188,0],[34.95212,32.575166,0],[34.952118,32.575003,0],[34.952115,32.574738,0],[34.952114,32.574686,0],[34.95185,32.574764,0],[34.951603,32.574836,0],[34.950942,32.575032,0],[34.950942,32.57499,0],[34.950942,32.574493,0],[34.950943,32.574046,0],[34.950944,32.57401,0],[34.950791,32.574008,0],[34.950729,32.574007,0],[34.9502,32.574,0],[34.950167,32.574,0],[34.949892,32.573993,0],[34.949843,32.574028,0],[34.949375,32.574366,0],[34.949317,32.574408,0],[34.949243,32.574435,0],[34.9492,32.57444,0],[34.949081,32.574456,0],[34.948985,32.574466,0],[34.948952,32.574467,0],[34.948932,32.57446,0],[34.948908,32.574462,0],[34.948687,32.574413,0],[34.948578,32.574389,0],[34.948414,32.574351,0],[34.947985,32.574254,0],[34.947928,32.574348,0],[34.947846,32.57449,0],[34.947832,32.57453,0],[34.947756,32.574711,0],[34.947661,32.574932,0],[34.947632,32.574995,0],[34.947605,32.575027,0],[34.947458,32.57519,0],[34.947435,32.57521,0],[34.947372,32.575247,0],[34.94706,32.575419,0],[34.946987,32.575462,0],[34.946849,32.575563,0],[34.946827,32.575582,0],[34.946789,32.575633,0],[34.946607,32.575886,0],[34.946581,32.575921,0],[34.946512,32.576014,0],[34.946393,32.576177,0],[34.946208,32.576435,0],[34.946196,32.576449,0],[34.946162,32.576499,0],[34.946843,32.576611,0],[34.947477,32.576713,0],[34.947541,32.576723,0],[34.947789,32.576763,0],[34.947953,32.576789,0],[34.948039,32.576805,0],[34.94829,32.576856,0],[34.948452,32.576888,0],[34.948532,32.576905,0],[34.948548,32.576908,0],[34.948799,32.576969,0],[34.949033,32.577025,0],[34.949038,32.577391,0],[34.949038,32.577487,0],[34.949085,32.577769,0],[34.949545,32.57787,0],[34.949745,32.577912,0],[34.949869,32.577941,0],[34.949935,32.577956,0],[34.950253,32.578025,0],[34.950408,32.578061,0],[34.95042,32.578063,0],[34.950563,32.578087,0],[34.950604,32.578094,0],[34.950614,32.578096,0],[34.950929,32.578147,0],[34.950968,32.578152,0],[34.950971,32.578009,0],[34.950974,32.577856,0],[34.950993,32.577829,0],[34.951028,32.577778,0],[34.951038,32.577767,0],[34.951063,32.577766,0],[34.951211,32.577762,0],[34.951359,32.577756,0],[34.951408,32.577753,0],[34.951418,32.577753,0],[34.9515,32.577729,0],[34.951537,32.577717,0],[34.95155,32.577711,0],[34.951565,32.577703,0],[34.951572,32.577697,0],[34.951682,32.577573,0],[34.951706,32.577548,0],[34.951889,32.577415,0],[34.951899,32.577348,0],[34.951906,32.577293,0],[34.951917,32.577203,0],[34.951949,32.577022,0],[34.951978,32.576862,0],[34.952009,32.576682,0],[34.952035,32.57652,0],[34.952041,32.576483,0],[34.952062,32.57634,0],[34.952076,32.576251,0],[34.952093,32.576163,0],[34.952097,32.576143,0],[34.952103,32.576109,0],[34.952124,32.576002,0]]]},"type":"Feature","properties":{"Name":"11302"}},{"geometry":{"type":"Polygon","coordinates":[[[34.95184,32.574764,0],[34.952114,32.57468,0],[34.952117,32.574413,0],[34.952119,32.574364,0],[34.952125,32.574173,0],[34.952235,32.57416,0],[34.952584,32.574165,0],[34.952755,32.574167,0],[34.953015,32.574171,0],[34.953032,32.574171,0],[34.953446,32.574177,0],[34.953755,32.574182,0],[34.953955,32.574184,0],[34.953975,32.574185,0],[34.954169,32.574187,0],[34.954161,32.574168,0],[34.954126,32.574141,0],[34.954127,32.573898,0],[34.954129,32.573681,0],[34.954129,32.573573,0],[34.95413,32.573505,0],[34.954131,32.573332,0],[34.954131,32.573284,0],[34.954132,32.573173,0],[34.954132,32.57314,0],[34.954133,32.572996,0],[34.954134,32.572841,0],[34.954134,32.572768,0],[34.954135,32.572617,0],[34.954137,32.572398,0],[34.954137,32.572369,0],[34.954033,32.572357,0],[34.954012,32.572357,0],[34.953849,32.572355,0],[34.952311,32.572332,0],[34.952153,32.572332,0],[34.952125,32.572332,0],[34.951035,32.572336,0],[34.95058,32.572337,0],[34.950543,32.572337,0],[34.950304,32.572308,0],[34.950193,32.572307,0],[34.949475,32.572305,0],[34.949437,32.572305,0],[34.948843,32.572303,0],[34.948835,32.572412,0],[34.9488,32.572446,0],[34.9487,32.572547,0],[34.948615,32.572703,0],[34.94857,32.572809,0],[34.94856,32.572842,0],[34.948551,32.572876,0],[34.948541,32.572899,0],[34.948521,32.572947,0],[34.948502,32.573048,0],[34.948345,32.573428,0],[34.948308,32.573522,0],[34.948276,32.573606,0],[34.948178,32.573879,0],[34.94817,32.573902,0],[34.948131,32.573977,0],[34.948121,32.573996,0],[34.948024,32.574168,0],[34.94799,32.57426,0],[34.948416,32.574355,0],[34.948689,32.574416,0],[34.948922,32.574468,0],[34.948988,32.574472,0],[34.949202,32.574447,0],[34.949242,32.574441,0],[34.949315,32.574415,0],[34.949377,32.57437,0],[34.949806,32.574062,0],[34.949841,32.574037,0],[34.949894,32.573998,0],[34.950146,32.574005,0],[34.950173,32.574005,0],[34.950206,32.574005,0],[34.95074,32.574011,0],[34.950943,32.574013,0],[34.950943,32.57405,0],[34.950943,32.574063,0],[34.950942,32.574496,0],[34.950941,32.574937,0],[34.950941,32.574999,0],[34.950941,32.575037,0],[34.951601,32.574836,0],[34.95184,32.574764,0]]]},"type":"Feature","properties":{"Name":"11301"}},{"geometry":{"type":"Polygon","coordinates":[[[34.942169,32.577996,0],[34.942102,32.578022,0],[34.941941,32.578083,0],[34.941904,32.577942,0],[34.941882,32.577854,0],[34.941754,32.577356,0],[34.941877,32.577328,0],[34.942017,32.577297,0],[34.941564,32.575954,0],[34.941546,32.575902,0],[34.941498,32.57576,0],[34.941412,32.575503,0],[34.941349,32.575293,0],[34.941319,32.575195,0],[34.940736,32.573243,0],[34.940732,32.573229,0],[34.940722,32.573199,0],[34.94052,32.57255,0],[34.940457,32.572348,0],[34.940222,32.571599,0],[34.93962,32.571615,0],[34.939469,32.571619,0],[34.939359,32.571622,0],[34.939259,32.571627,0],[34.939203,32.571629,0],[34.939131,32.571633,0],[34.939085,32.571634,0],[34.938403,32.571654,0],[34.938373,32.571655,0],[34.937883,32.571705,0],[34.937676,32.571723,0],[34.93757,32.571732,0],[34.937524,32.571731,0],[34.931884,32.572903,0],[34.931889,32.573004,0],[34.931893,32.573061,0],[34.932399,32.574542,0],[34.933512,32.576419,0],[34.934076,32.576287,0],[34.934812,32.578612,0],[34.935161,32.579871,0],[34.935522,32.581031,0],[34.935638,32.581251,0],[34.935783,32.581451,0],[34.936664,32.582531,0],[34.93674,32.582493,0],[34.937513,32.582138,0],[34.938096,32.581864,0],[34.940279,32.580839,0],[34.940931,32.580555,0],[34.941216,32.580454,0],[34.941246,32.58044,0],[34.941301,32.580416,0],[34.94139,32.580376,0],[34.941554,32.580303,0],[34.942683,32.579825,0],[34.942768,32.579789,0],[34.942839,32.579759,0],[34.942766,32.579504,0],[34.942545,32.578725,0],[34.942169,32.577996,0]]]},"type":"Feature","properties":{"Name":"11300"}},{"geometry":{"type":"Polygon","coordinates":[[[34.998181,32.584065,0],[34.998211,32.584015,0],[34.996985,32.583532,0],[34.995964,32.583527,0],[34.995245,32.583687,0],[34.994788,32.583672,0],[34.994243,32.58363,0],[34.993709,32.583692,0],[34.993434,32.583775,0],[34.993309,32.583821,0],[34.992803,32.584133,0],[34.992847,32.584172,0],[34.992532,32.58454,0],[34.992303,32.584809,0],[34.991824,32.585752,0],[34.992407,32.586208,0],[34.992459,32.58625,0],[34.994066,32.587453,0],[34.994168,32.587383,0],[34.994916,32.586925,0],[34.99525,32.586699,0],[34.996841,32.58774,0],[34.997198,32.587508,0],[34.99779,32.586974,0],[34.998128,32.586554,0],[34.997852,32.585551,0],[34.998181,32.584065,0]]]},"type":"Feature","properties":{"Name":"11299"}},{"geometry":{"type":"Polygon","coordinates":[[[34.965869,32.557501,0],[34.965708,32.557341,0],[34.965627,32.557261,0],[34.965532,32.557345,0],[34.965496,32.557376,0],[34.965476,32.55736,0],[34.965291,32.557211,0],[34.965172,32.557116,0],[34.965089,32.557049,0],[34.964889,32.55723,0],[34.96482,32.557292,0],[34.96468,32.557458,0],[34.964535,32.557635,0],[34.964448,32.55782,0],[34.964357,32.558026,0],[34.964319,32.558242,0],[34.964294,32.558398,0],[34.964285,32.55846,0],[34.964284,32.558496,0],[34.964283,32.558576,0],[34.964283,32.558681,0],[34.964283,32.558788,0],[34.964281,32.558889,0],[34.96428,32.558992,0],[34.964277,32.559088,0],[34.964271,32.559163,0],[34.964268,32.559234,0],[34.964236,32.559293,0],[34.964208,32.559351,0],[34.964136,32.559451,0],[34.964069,32.559544,0],[34.964,32.559642,0],[34.96393,32.559737,0],[34.964182,32.559879,0],[34.964277,32.559932,0],[34.964351,32.55997,0],[34.964549,32.560073,0],[34.964208,32.560535,0],[34.964187,32.560564,0],[34.964118,32.560664,0],[34.964108,32.560726,0],[34.964104,32.560763,0],[34.964098,32.560926,0],[34.964096,32.560946,0],[34.964087,32.560966,0],[34.964073,32.56098,0],[34.964051,32.560993,0],[34.964027,32.560998,0],[34.964002,32.560997,0],[34.963877,32.560997,0],[34.964224,32.56115,0],[34.964312,32.561198,0],[34.964469,32.561284,0],[34.964798,32.561463,0],[34.964878,32.561523,0],[34.96498,32.5616,0],[34.965034,32.561648,0],[34.965194,32.561795,0],[34.965366,32.561967,0],[34.965395,32.562003,0],[34.96544,32.56206,0],[34.965548,32.5622,0],[34.965666,32.562382,0],[34.96579,32.562584,0],[34.965912,32.562788,0],[34.966046,32.563001,0],[34.966184,32.563223,0],[34.966227,32.563339,0],[34.966324,32.56324,0],[34.966373,32.563269,0],[34.966425,32.563243,0],[34.966627,32.56322,0],[34.96685,32.563225,0],[34.966945,32.563269,0],[34.967196,32.563387,0],[34.967326,32.563448,0],[34.967343,32.563424,0],[34.967349,32.563412,0],[34.967412,32.563292,0],[34.967471,32.563175,0],[34.967525,32.56304,0],[34.967578,32.562915,0],[34.967618,32.562789,0],[34.967657,32.562672,0],[34.9677,32.562521,0],[34.967732,32.562397,0],[34.967756,32.56227,0],[34.967775,32.562155,0],[34.967785,32.562011,0],[34.967794,32.561882,0],[34.9678,32.561755,0],[34.967803,32.561615,0],[34.967805,32.561532,0],[34.967803,32.561482,0],[34.967793,32.561345,0],[34.967769,32.561198,0],[34.967737,32.561044,0],[34.967687,32.560894,0],[34.967629,32.560753,0],[34.967556,32.560608,0],[34.96747,32.560464,0],[34.967418,32.560394,0],[34.967372,32.56033,0],[34.967254,32.560187,0],[34.967221,32.560152,0],[34.967112,32.560035,0],[34.967004,32.559924,0],[34.966884,32.559819,0],[34.966774,32.559721,0],[34.96665,32.559625,0],[34.966522,32.559533,0],[34.966396,32.559443,0],[34.966273,32.559363,0],[34.966183,32.559301,0],[34.966099,32.559239,0],[34.966045,32.559188,0],[34.966011,32.559156,0],[34.965956,32.559102,0],[34.965922,32.559043,0],[34.965906,32.558983,0],[34.965896,32.558944,0],[34.965894,32.558905,0],[34.965892,32.558846,0],[34.96589,32.558772,0],[34.965895,32.558665,0],[34.965891,32.55858,0],[34.96589,32.558491,0],[34.965908,32.558402,0],[34.965931,32.558316,0],[34.96596,32.55827,0],[34.965988,32.55822,0],[34.966051,32.558175,0],[34.966103,32.558137,0],[34.966186,32.558087,0],[34.966276,32.558037,0],[34.966175,32.557904,0],[34.966038,32.557724,0],[34.96603,32.557712,0],[34.965869,32.557501,0]]]},"type":"Feature","properties":{"Name":"11298"}},{"geometry":{"type":"Polygon","coordinates":[[[34.964347,32.559968,0],[34.964277,32.559932,0],[34.964182,32.559878,0],[34.96393,32.559737,0],[34.964,32.559642,0],[34.964069,32.559544,0],[34.964136,32.559451,0],[34.964208,32.559351,0],[34.964236,32.559293,0],[34.964268,32.559234,0],[34.964271,32.559163,0],[34.964277,32.559088,0],[34.96428,32.558992,0],[34.964281,32.558889,0],[34.964283,32.558788,0],[34.964283,32.558697,0],[34.964283,32.558681,0],[34.964283,32.558576,0],[34.964284,32.558521,0],[34.964284,32.558496,0],[34.964285,32.55846,0],[34.964294,32.558398,0],[34.964319,32.558242,0],[34.964357,32.558026,0],[34.964448,32.55782,0],[34.964535,32.557635,0],[34.96468,32.557458,0],[34.96482,32.557292,0],[34.963468,32.557388,0],[34.962951,32.557424,0],[34.962641,32.557446,0],[34.962487,32.557457,0],[34.962461,32.557459,0],[34.962418,32.557462,0],[34.962333,32.557468,0],[34.962065,32.557487,0],[34.96178,32.557508,0],[34.961706,32.557659,0],[34.961468,32.557562,0],[34.961197,32.557445,0],[34.961092,32.557664,0],[34.961071,32.557704,0],[34.960968,32.557897,0],[34.960939,32.557884,0],[34.96074,32.557768,0],[34.960539,32.557618,0],[34.960301,32.557815,0],[34.960226,32.557877,0],[34.960292,32.557922,0],[34.960534,32.558088,0],[34.960572,32.558117,0],[34.9606,32.558152,0],[34.960622,32.558189,0],[34.960638,32.558229,0],[34.960643,32.558257,0],[34.960647,32.558289,0],[34.960645,32.558331,0],[34.960635,32.558372,0],[34.960627,32.558412,0],[34.960596,32.558527,0],[34.960619,32.558632,0],[34.96064,32.558662,0],[34.960723,32.558761,0],[34.960821,32.558877,0],[34.960795,32.559,0],[34.961034,32.560587,0],[34.961041,32.560668,0],[34.961057,32.560854,0],[34.961064,32.560956,0],[34.96108,32.561207,0],[34.961014,32.561215,0],[34.960917,32.561226,0],[34.961007,32.561395,0],[34.961136,32.561635,0],[34.961205,32.561765,0],[34.961285,32.561802,0],[34.961376,32.561845,0],[34.961528,32.561917,0],[34.961779,32.562035,0],[34.961826,32.562057,0],[34.961898,32.562091,0],[34.961942,32.562112,0],[34.962036,32.562156,0],[34.962261,32.562262,0],[34.962495,32.562372,0],[34.962751,32.562331,0],[34.963143,32.562268,0],[34.963319,32.56224,0],[34.963529,32.562245,0],[34.963577,32.561991,0],[34.963573,32.561959,0],[34.963582,32.561755,0],[34.963593,32.561529,0],[34.963596,32.561442,0],[34.963609,32.561171,0],[34.963635,32.560964,0],[34.963795,32.560965,0],[34.963825,32.560964,0],[34.963877,32.560997,0],[34.964002,32.560997,0],[34.964027,32.560998,0],[34.964051,32.560993,0],[34.964073,32.56098,0],[34.964087,32.560966,0],[34.964096,32.560946,0],[34.964098,32.560926,0],[34.964104,32.560763,0],[34.964108,32.560726,0],[34.964118,32.560664,0],[34.964187,32.560564,0],[34.964208,32.560535,0],[34.964251,32.560477,0],[34.964381,32.560302,0],[34.964519,32.560114,0],[34.964549,32.560073,0],[34.964347,32.559968,0]]]},"type":"Feature","properties":{"Name":"11297"}},{"geometry":{"type":"Polygon","coordinates":[[[34.965194,32.561795,0],[34.965034,32.561648,0],[34.965004,32.561621,0],[34.96498,32.5616,0],[34.964878,32.561523,0],[34.964798,32.561463,0],[34.964469,32.561284,0],[34.964324,32.561205,0],[34.964312,32.561198,0],[34.964224,32.56115,0],[34.963877,32.560997,0],[34.963825,32.560964,0],[34.963795,32.560965,0],[34.963635,32.560964,0],[34.963609,32.561171,0],[34.963596,32.561442,0],[34.963593,32.561529,0],[34.963582,32.561755,0],[34.963573,32.561959,0],[34.963577,32.561991,0],[34.963529,32.562245,0],[34.963319,32.56224,0],[34.963443,32.562653,0],[34.963538,32.56297,0],[34.963665,32.563354,0],[34.963739,32.563511,0],[34.963904,32.56386,0],[34.964283,32.564664,0],[34.964286,32.56467,0],[34.964395,32.564932,0],[34.964396,32.564933,0],[34.964486,32.565149,0],[34.964564,32.565336,0],[34.964798,32.565893,0],[34.965023,32.565832,0],[34.965127,32.565804,0],[34.965212,32.565667,0],[34.965278,32.565564,0],[34.965319,32.565505,0],[34.965352,32.565464,0],[34.965409,32.56539,0],[34.965443,32.565344,0],[34.965471,32.565321,0],[34.965502,32.565285,0],[34.965539,32.565243,0],[34.965605,32.565174,0],[34.9657,32.565081,0],[34.965758,32.565028,0],[34.965785,32.565012,0],[34.965879,32.564935,0],[34.965955,32.564872,0],[34.965978,32.564853,0],[34.966079,32.564774,0],[34.966162,32.564708,0],[34.966187,32.56469,0],[34.966283,32.564608,0],[34.966367,32.564545,0],[34.966392,32.564523,0],[34.9665,32.564433,0],[34.966577,32.564363,0],[34.966601,32.564341,0],[34.966704,32.564236,0],[34.966787,32.564155,0],[34.966807,32.564135,0],[34.966903,32.564029,0],[34.966981,32.563935,0],[34.966996,32.563918,0],[34.967083,32.563815,0],[34.967157,32.563718,0],[34.96717,32.563702,0],[34.967245,32.563578,0],[34.967308,32.56348,0],[34.967326,32.563448,0],[34.967196,32.563387,0],[34.966945,32.563269,0],[34.96685,32.563225,0],[34.966627,32.56322,0],[34.966425,32.563243,0],[34.966373,32.563269,0],[34.966324,32.56324,0],[34.966227,32.563339,0],[34.966184,32.563223,0],[34.966046,32.563001,0],[34.965912,32.562788,0],[34.96579,32.562584,0],[34.965666,32.562382,0],[34.965548,32.5622,0],[34.96544,32.56206,0],[34.965395,32.562003,0],[34.965366,32.561967,0],[34.965194,32.561795,0]]]},"type":"Feature","properties":{"Name":"11296"}},{"geometry":{"type":"Polygon","coordinates":[[[34.942817,32.561671,0],[34.942977,32.561557,0],[34.942979,32.561556,0],[34.942901,32.561478,0],[34.94299,32.561419,0],[34.942896,32.561324,0],[34.942709,32.560845,0],[34.942321,32.560313,0],[34.940363,32.560357,0],[34.939893,32.560368,0],[34.939484,32.560333,0],[34.938203,32.559863,0],[34.93743,32.559968,0],[34.937431,32.559969,0],[34.937564,32.560139,0],[34.937638,32.560235,0],[34.93764,32.560238,0],[34.938205,32.560943,0],[34.938437,32.561241,0],[34.93837,32.561273,0],[34.938365,32.561347,0],[34.938346,32.561589,0],[34.938327,32.561801,0],[34.93832,32.561846,0],[34.938316,32.561867,0],[34.938321,32.561948,0],[34.93838,32.562023,0],[34.938402,32.562058,0],[34.938403,32.562059,0],[34.938558,32.562274,0],[34.938568,32.56229,0],[34.938696,32.56246,0],[34.938738,32.562524,0],[34.938738,32.562525,0],[34.938739,32.562526,0],[34.938821,32.562642,0],[34.938878,32.562718,0],[34.938932,32.56269,0],[34.938973,32.562669,0],[34.939234,32.562729,0],[34.939676,32.56283,0],[34.939776,32.562853,0],[34.93985,32.562874,0],[34.939923,32.562896,0],[34.939995,32.56292,0],[34.940066,32.562946,0],[34.94013,32.562971,0],[34.940201,32.562829,0],[34.940211,32.56281,0],[34.940346,32.562542,0],[34.940347,32.56254,0],[34.940348,32.562539,0],[34.940349,32.562537,0],[34.94035,32.562535,0],[34.940352,32.562534,0],[34.940353,32.562532,0],[34.940355,32.562531,0],[34.940356,32.562529,0],[34.940358,32.562528,0],[34.94036,32.562526,0],[34.940362,32.562525,0],[34.940363,32.562524,0],[34.940365,32.562523,0],[34.940367,32.562521,0],[34.940369,32.56252,0],[34.940371,32.562519,0],[34.940373,32.562518,0],[34.940375,32.562517,0],[34.940377,32.562516,0],[34.94038,32.562516,0],[34.940382,32.562515,0],[34.940384,32.562514,0],[34.940386,32.562514,0],[34.940388,32.562513,0],[34.940391,32.562513,0],[34.940393,32.562512,0],[34.940395,32.562512,0],[34.940398,32.562512,0],[34.9404,32.562511,0],[34.940402,32.562511,0],[34.940405,32.562511,0],[34.940407,32.562511,0],[34.940409,32.562511,0],[34.940412,32.562511,0],[34.940414,32.562511,0],[34.940546,32.562551,0],[34.940582,32.562564,0],[34.940817,32.562672,0],[34.941014,32.562794,0],[34.941208,32.562943,0],[34.941358,32.562919,0],[34.941649,32.562681,0],[34.941863,32.562507,0],[34.941981,32.56242,0],[34.942166,32.562426,0],[34.942432,32.562232,0],[34.942464,32.562208,0],[34.942718,32.562023,0],[34.942726,32.562017,0],[34.943087,32.56198,0],[34.94299,32.561857,0],[34.942817,32.561671,0]]]},"type":"Feature","properties":{"Name":"11295"}},{"geometry":{"type":"Polygon","coordinates":[[[34.941666,32.562668,0],[34.941649,32.562681,0],[34.941358,32.562919,0],[34.941208,32.562943,0],[34.941014,32.562794,0],[34.940817,32.562672,0],[34.940582,32.562564,0],[34.940412,32.5625,0],[34.94041,32.5625,0],[34.940408,32.5625,0],[34.940406,32.5625,0],[34.940404,32.5625,0],[34.940402,32.5625,0],[34.940399,32.5625,0],[34.940397,32.5625,0],[34.940395,32.5625,0],[34.940393,32.5625,0],[34.940391,32.562501,0],[34.940389,32.562501,0],[34.940387,32.562502,0],[34.940385,32.562502,0],[34.940383,32.562503,0],[34.940381,32.562504,0],[34.940379,32.562504,0],[34.940378,32.562505,0],[34.940376,32.562506,0],[34.940374,32.562507,0],[34.940372,32.562508,0],[34.94037,32.562509,0],[34.940369,32.56251,0],[34.940367,32.562511,0],[34.940366,32.562512,0],[34.940364,32.562513,0],[34.940362,32.562514,0],[34.940361,32.562516,0],[34.94036,32.562517,0],[34.940358,32.562518,0],[34.940357,32.56252,0],[34.940356,32.562521,0],[34.940355,32.562523,0],[34.940353,32.562524,0],[34.940352,32.562526,0],[34.940351,32.562527,0],[34.940351,32.562529,0],[34.94035,32.56253,0],[34.940349,32.562532,0],[34.940348,32.562534,0],[34.940347,32.562535,0],[34.940347,32.562537,0],[34.940346,32.562539,0],[34.940346,32.56254,0],[34.940346,32.562542,0],[34.940211,32.56281,0],[34.94013,32.562971,0],[34.938979,32.562659,0],[34.93893,32.562688,0],[34.938878,32.562718,0],[34.939216,32.563164,0],[34.939326,32.563392,0],[34.939425,32.56353,0],[34.939442,32.563555,0],[34.939536,32.563713,0],[34.939543,32.563726,0],[34.939639,32.563874,0],[34.939653,32.563895,0],[34.939747,32.564027,0],[34.939758,32.564037,0],[34.939845,32.564129,0],[34.939868,32.564161,0],[34.939876,32.564172,0],[34.939899,32.564197,0],[34.940024,32.564334,0],[34.94003,32.56434,0],[34.940044,32.564357,0],[34.940158,32.56446,0],[34.940172,32.564473,0],[34.940294,32.564584,0],[34.940317,32.564604,0],[34.940432,32.564706,0],[34.940441,32.564714,0],[34.940497,32.564764,0],[34.940457,32.564821,0],[34.940419,32.564874,0],[34.940406,32.564888,0],[34.940361,32.564951,0],[34.940313,32.565019,0],[34.940258,32.565101,0],[34.94022,32.565157,0],[34.940182,32.565213,0],[34.940151,32.56526,0],[34.940137,32.565282,0],[34.940047,32.565419,0],[34.940029,32.565446,0],[34.940567,32.565544,0],[34.940715,32.565588,0],[34.940722,32.565575,0],[34.940726,32.565569,0],[34.940739,32.565553,0],[34.940756,32.565543,0],[34.940776,32.565535,0],[34.940796,32.565534,0],[34.940818,32.565539,0],[34.940944,32.565568,0],[34.941152,32.565615,0],[34.941358,32.565662,0],[34.941566,32.565709,0],[34.941772,32.565756,0],[34.941976,32.565803,0],[34.942154,32.565844,0],[34.942195,32.565721,0],[34.942171,32.565713,0],[34.942147,32.565697,0],[34.942131,32.56568,0],[34.94212,32.565657,0],[34.942116,32.565635,0],[34.942119,32.565609,0],[34.942324,32.564962,0],[34.942358,32.564851,0],[34.942361,32.564841,0],[34.942426,32.56485,0],[34.942786,32.564831,0],[34.94309,32.564814,0],[34.943138,32.564825,0],[34.943172,32.564703,0],[34.943296,32.564697,0],[34.943287,32.564536,0],[34.943238,32.564286,0],[34.943207,32.564135,0],[34.943152,32.563946,0],[34.943097,32.5638,0],[34.943018,32.563627,0],[34.942953,32.563511,0],[34.942851,32.563339,0],[34.942754,32.563185,0],[34.942652,32.563029,0],[34.942543,32.562869,0],[34.942399,32.562676,0],[34.942363,32.562631,0],[34.942166,32.562426,0],[34.941981,32.56242,0],[34.941863,32.562507,0],[34.941666,32.562668,0]]]},"type":"Feature","properties":{"Name":"11294"}},{"geometry":{"type":"Polygon","coordinates":[[[34.945513,32.561461,0],[34.945406,32.561442,0],[34.945547,32.561262,0],[34.944685,32.56111,0],[34.942715,32.560836,0],[34.942896,32.561324,0],[34.94299,32.561419,0],[34.942943,32.561452,0],[34.942909,32.561477,0],[34.942979,32.561547,0],[34.942816,32.561663,0],[34.942819,32.561667,0],[34.942823,32.56167,0],[34.942826,32.561674,0],[34.94283,32.561677,0],[34.942833,32.561681,0],[34.942837,32.561685,0],[34.94284,32.561688,0],[34.942844,32.561692,0],[34.942847,32.561695,0],[34.942851,32.561699,0],[34.942854,32.561703,0],[34.942858,32.561706,0],[34.942861,32.56171,0],[34.942865,32.561714,0],[34.942868,32.561717,0],[34.942872,32.561721,0],[34.942875,32.561725,0],[34.942878,32.561728,0],[34.942882,32.561732,0],[34.942885,32.561735,0],[34.942889,32.561739,0],[34.942892,32.561743,0],[34.942896,32.561747,0],[34.942899,32.56175,0],[34.942902,32.561754,0],[34.942906,32.561758,0],[34.942909,32.561761,0],[34.942912,32.561765,0],[34.942916,32.561769,0],[34.942919,32.561772,0],[34.942922,32.561776,0],[34.942926,32.56178,0],[34.942929,32.561784,0],[34.942932,32.561787,0],[34.942936,32.561791,0],[34.942939,32.561795,0],[34.942942,32.561799,0],[34.942945,32.561802,0],[34.942949,32.561806,0],[34.942952,32.56181,0],[34.942955,32.561814,0],[34.942958,32.561817,0],[34.942962,32.561821,0],[34.942965,32.561825,0],[34.942968,32.561829,0],[34.942971,32.561832,0],[34.942975,32.561836,0],[34.942978,32.56184,0],[34.942981,32.561844,0],[34.942984,32.561848,0],[34.942987,32.561852,0],[34.942991,32.561855,0],[34.942994,32.561859,0],[34.942997,32.561863,0],[34.943,32.561867,0],[34.943003,32.561871,0],[34.943006,32.561875,0],[34.943009,32.561878,0],[34.943012,32.561882,0],[34.943016,32.561886,0],[34.943019,32.56189,0],[34.943022,32.561894,0],[34.943025,32.561898,0],[34.943028,32.561902,0],[34.943031,32.561905,0],[34.943034,32.561909,0],[34.943037,32.561913,0],[34.94304,32.561917,0],[34.943043,32.561921,0],[34.943046,32.561925,0],[34.943049,32.561929,0],[34.943052,32.561933,0],[34.943055,32.561937,0],[34.943058,32.56194,0],[34.943061,32.561944,0],[34.943064,32.561948,0],[34.943067,32.561952,0],[34.94307,32.561956,0],[34.943076,32.561964,0],[34.943079,32.561968,0],[34.943084,32.561975,0],[34.942728,32.562006,0],[34.942741,32.562018,0],[34.942471,32.562215,0],[34.942466,32.56221,0],[34.942461,32.562205,0],[34.942168,32.562419,0],[34.942171,32.562422,0],[34.942174,32.562425,0],[34.942177,32.562428,0],[34.94218,32.562431,0],[34.942183,32.562434,0],[34.942186,32.562436,0],[34.942189,32.562439,0],[34.942192,32.562442,0],[34.942196,32.562445,0],[34.942199,32.562448,0],[34.942202,32.562451,0],[34.942205,32.562454,0],[34.942208,32.562457,0],[34.942211,32.56246,0],[34.942214,32.562463,0],[34.942217,32.562465,0],[34.94222,32.562468,0],[34.942223,32.562471,0],[34.942226,32.562474,0],[34.942229,32.562477,0],[34.942232,32.56248,0],[34.942235,32.562483,0],[34.942238,32.562486,0],[34.942241,32.562489,0],[34.942244,32.562492,0],[34.942247,32.562495,0],[34.94225,32.562498,0],[34.942253,32.562501,0],[34.942256,32.562504,0],[34.942259,32.562507,0],[34.942262,32.56251,0],[34.942265,32.562513,0],[34.942268,32.562516,0],[34.942271,32.562519,0],[34.942274,32.562522,0],[34.942276,32.562525,0],[34.942279,32.562528,0],[34.942282,32.562531,0],[34.942285,32.562534,0],[34.942288,32.562537,0],[34.942291,32.56254,0],[34.942294,32.562543,0],[34.942297,32.562546,0],[34.9423,32.562549,0],[34.942302,32.562552,0],[34.942305,32.562555,0],[34.942308,32.562558,0],[34.942311,32.562561,0],[34.942314,32.562564,0],[34.942317,32.562567,0],[34.94232,32.56257,0],[34.942322,32.562573,0],[34.942325,32.562576,0],[34.942328,32.562579,0],[34.942331,32.562582,0],[34.942334,32.562586,0],[34.942336,32.562589,0],[34.942339,32.562592,0],[34.942342,32.562595,0],[34.942345,32.562598,0],[34.942347,32.562601,0],[34.94235,32.562604,0],[34.942353,32.562607,0],[34.942356,32.56261,0],[34.942358,32.562613,0],[34.942361,32.562617,0],[34.942364,32.56262,0],[34.942369,32.562625,0],[34.942372,32.562629,0],[34.942374,32.562632,0],[34.942377,32.562635,0],[34.94238,32.562638,0],[34.942382,32.562641,0],[34.942385,32.562644,0],[34.942388,32.562647,0],[34.94239,32.562651,0],[34.942393,32.562654,0],[34.942396,32.562657,0],[34.942398,32.56266,0],[34.942401,32.562663,0],[34.942404,32.562666,0],[34.942408,32.562671,0],[34.94241,32.562675,0],[34.942413,32.562678,0],[34.942415,32.562681,0],[34.942418,32.562684,0],[34.942421,32.562687,0],[34.942423,32.562691,0],[34.942426,32.562694,0],[34.942428,32.562697,0],[34.942433,32.562703,0],[34.942436,32.562706,0],[34.942438,32.56271,0],[34.942441,32.562713,0],[34.942443,32.562716,0],[34.942446,32.562719,0],[34.942448,32.562723,0],[34.942451,32.562726,0],[34.942453,32.562729,0],[34.942456,32.562732,0],[34.942458,32.562736,0],[34.942461,32.562739,0],[34.942463,32.562742,0],[34.942466,32.562745,0],[34.942468,32.562749,0],[34.942471,32.562752,0],[34.942473,32.562755,0],[34.942475,32.562759,0],[34.942478,32.562762,0],[34.94248,32.562765,0],[34.942483,32.562768,0],[34.942485,32.562772,0],[34.942488,32.562775,0],[34.94249,32.562778,0],[34.942492,32.562782,0],[34.942495,32.562785,0],[34.942497,32.562788,0],[34.942499,32.562792,0],[34.942502,32.562795,0],[34.942504,32.562798,0],[34.942507,32.562802,0],[34.942509,32.562805,0],[34.942511,32.562808,0],[34.942514,32.562812,0],[34.942516,32.562815,0],[34.942518,32.562818,0],[34.942521,32.562822,0],[34.942523,32.562825,0],[34.942525,32.562828,0],[34.942527,32.562832,0],[34.94253,32.562835,0],[34.942532,32.562839,0],[34.942536,32.562844,0],[34.942538,32.562848,0],[34.94254,32.562851,0],[34.942543,32.562854,0],[34.942547,32.562861,0],[34.942641,32.563004,0],[34.942752,32.563173,0],[34.942836,32.563301,0],[34.942839,32.563306,0],[34.942842,32.56331,0],[34.942845,32.563315,0],[34.942848,32.56332,0],[34.942851,32.563324,0],[34.942854,32.563329,0],[34.942857,32.563333,0],[34.942862,32.563342,0],[34.942865,32.563346,0],[34.942868,32.563351,0],[34.942871,32.563356,0],[34.942874,32.56336,0],[34.942877,32.563365,0],[34.94288,32.56337,0],[34.942883,32.563374,0],[34.942885,32.563379,0],[34.942888,32.563384,0],[34.942891,32.563388,0],[34.942894,32.563393,0],[34.942897,32.563398,0],[34.9429,32.563403,0],[34.942903,32.563407,0],[34.942905,32.563412,0],[34.942908,32.563417,0],[34.942911,32.563421,0],[34.942914,32.563426,0],[34.942917,32.563431,0],[34.942919,32.563436,0],[34.942922,32.56344,0],[34.942925,32.563445,0],[34.942928,32.56345,0],[34.94293,32.563455,0],[34.942933,32.563459,0],[34.942936,32.563464,0],[34.942938,32.563469,0],[34.942941,32.563474,0],[34.942944,32.563478,0],[34.942946,32.563483,0],[34.942949,32.563488,0],[34.942952,32.563493,0],[34.942954,32.563498,0],[34.942957,32.563502,0],[34.942961,32.563511,0],[34.942964,32.563515,0],[34.942967,32.56352,0],[34.942969,32.563525,0],[34.942972,32.56353,0],[34.942974,32.563535,0],[34.942977,32.563539,0],[34.942979,32.563544,0],[34.942982,32.563549,0],[34.942985,32.563554,0],[34.942987,32.563559,0],[34.94299,32.563564,0],[34.942992,32.563568,0],[34.942995,32.563573,0],[34.942997,32.563578,0],[34.942999,32.563583,0],[34.943002,32.563588,0],[34.943004,32.563593,0],[34.943007,32.563598,0],[34.943009,32.563603,0],[34.943012,32.563607,0],[34.943015,32.563615,0],[34.943018,32.56362,0],[34.94302,32.563625,0],[34.943022,32.56363,0],[34.943025,32.563635,0],[34.943027,32.563639,0],[34.94303,32.563644,0],[34.943032,32.563649,0],[34.943034,32.563654,0],[34.943036,32.563659,0],[34.943039,32.563664,0],[34.943041,32.563669,0],[34.943043,32.563674,0],[34.943046,32.563679,0],[34.943048,32.563684,0],[34.943051,32.56369,0],[34.943053,32.563695,0],[34.943055,32.5637,0],[34.943057,32.563705,0],[34.94306,32.56371,0],[34.943062,32.563715,0],[34.943064,32.56372,0],[34.943066,32.563725,0],[34.943068,32.56373,0],[34.943071,32.563735,0],[34.943073,32.56374,0],[34.943075,32.563745,0],[34.943077,32.56375,0],[34.943079,32.563755,0],[34.943081,32.56376,0],[34.943083,32.563764,0],[34.943085,32.563769,0],[34.943087,32.563774,0],[34.94309,32.563779,0],[34.943092,32.563784,0],[34.943094,32.563789,0],[34.943096,32.563794,0],[34.943098,32.563799,0],[34.9431,32.563804,0],[34.943102,32.563809,0],[34.943104,32.563814,0],[34.943106,32.563819,0],[34.943108,32.563824,0],[34.94311,32.563829,0],[34.943112,32.563835,0],[34.943114,32.56384,0],[34.943115,32.563845,0],[34.943117,32.56385,0],[34.943119,32.563855,0],[34.943121,32.56386,0],[34.943123,32.563865,0],[34.943125,32.56387,0],[34.943128,32.563878,0],[34.94313,32.563883,0],[34.943132,32.563888,0],[34.943134,32.563894,0],[34.943136,32.563899,0],[34.943137,32.563904,0],[34.943139,32.563909,0],[34.943141,32.563914,0],[34.943143,32.563919,0],[34.943144,32.563924,0],[34.943146,32.563929,0],[34.943148,32.563934,0],[34.94315,32.563939,0],[34.943151,32.563944,0],[34.943153,32.563949,0],[34.943155,32.563954,0],[34.943157,32.56396,0],[34.943158,32.563965,0],[34.94316,32.56397,0],[34.943162,32.563975,0],[34.943163,32.56398,0],[34.943165,32.563985,0],[34.943167,32.56399,0],[34.943168,32.563995,0],[34.94317,32.564,0],[34.943171,32.564005,0],[34.943173,32.564011,0],[34.943175,32.564016,0],[34.943176,32.564021,0],[34.943178,32.564026,0],[34.943179,32.564031,0],[34.943181,32.564036,0],[34.943182,32.564041,0],[34.943184,32.564046,0],[34.943185,32.564051,0],[34.943187,32.564057,0],[34.943188,32.564062,0],[34.94319,32.564067,0],[34.943193,32.564076,0],[34.943194,32.564082,0],[34.943195,32.564087,0],[34.943197,32.564092,0],[34.943198,32.564097,0],[34.9432,32.564102,0],[34.943201,32.564107,0],[34.943203,32.564112,0],[34.943204,32.564118,0],[34.943205,32.564123,0],[34.943207,32.564128,0],[34.943208,32.564133,0],[34.943209,32.564138,0],[34.943211,32.564143,0],[34.943212,32.564149,0],[34.943213,32.564154,0],[34.943215,32.564159,0],[34.943216,32.564164,0],[34.943217,32.564169,0],[34.943218,32.564174,0],[34.94322,32.56418,0],[34.943221,32.564185,0],[34.943222,32.56419,0],[34.943223,32.564195,0],[34.943224,32.5642,0],[34.943226,32.564206,0],[34.943227,32.564211,0],[34.943228,32.564216,0],[34.943229,32.564221,0],[34.94323,32.564226,0],[34.943231,32.564231,0],[34.943233,32.564237,0],[34.943234,32.564242,0],[34.943235,32.564247,0],[34.943236,32.564252,0],[34.943237,32.564257,0],[34.943238,32.564263,0],[34.943239,32.564268,0],[34.943241,32.564278,0],[34.943243,32.564285,0],[34.943281,32.564477,0],[34.943281,32.564479,0],[34.943281,32.564481,0],[34.943282,32.564483,0],[34.943282,32.564485,0],[34.943282,32.564486,0],[34.943282,32.564488,0],[34.943283,32.56449,0],[34.943283,32.564492,0],[34.943283,32.564494,0],[34.943284,32.564495,0],[34.943284,32.564497,0],[34.943284,32.564499,0],[34.943284,32.564501,0],[34.943285,32.564502,0],[34.943285,32.564504,0],[34.943285,32.564506,0],[34.943285,32.564508,0],[34.943286,32.56451,0],[34.943286,32.564511,0],[34.943286,32.564513,0],[34.943286,32.564515,0],[34.943286,32.564517,0],[34.943287,32.564519,0],[34.943287,32.56452,0],[34.943287,32.564522,0],[34.943287,32.564524,0],[34.943287,32.564526,0],[34.943288,32.564528,0],[34.943288,32.564529,0],[34.943288,32.564531,0],[34.943288,32.564533,0],[34.943288,32.564535,0],[34.943289,32.564537,0],[34.943289,32.564538,0],[34.943289,32.56454,0],[34.943289,32.564542,0],[34.943289,32.564544,0],[34.94329,32.564546,0],[34.94329,32.564547,0],[34.94329,32.564549,0],[34.94329,32.564551,0],[34.94329,32.564553,0],[34.94329,32.564555,0],[34.94329,32.564556,0],[34.943291,32.564558,0],[34.943291,32.56456,0],[34.943291,32.564562,0],[34.943291,32.564564,0],[34.943291,32.564565,0],[34.943291,32.564567,0],[34.943291,32.564569,0],[34.943291,32.564571,0],[34.943292,32.564573,0],[34.943292,32.564574,0],[34.943292,32.564576,0],[34.943292,32.564578,0],[34.943292,32.56458,0],[34.943292,32.564582,0],[34.943292,32.564583,0],[34.943292,32.564585,0],[34.943292,32.564587,0],[34.943292,32.564589,0],[34.943292,32.564591,0],[34.943292,32.564592,0],[34.943293,32.564594,0],[34.943293,32.564596,0],[34.943293,32.564598,0],[34.943293,32.5646,0],[34.943293,32.564601,0],[34.943293,32.564603,0],[34.943293,32.564605,0],[34.943293,32.564607,0],[34.943293,32.564609,0],[34.943293,32.56461,0],[34.943293,32.564612,0],[34.943293,32.564614,0],[34.943293,32.564616,0],[34.943293,32.564618,0],[34.943293,32.564619,0],[34.943293,32.564621,0],[34.943293,32.564623,0],[34.943293,32.564625,0],[34.943293,32.564627,0],[34.943293,32.564628,0],[34.943293,32.56463,0],[34.943293,32.564632,0],[34.943293,32.564634,0],[34.943293,32.564636,0],[34.943293,32.564637,0],[34.943293,32.564639,0],[34.943293,32.564641,0],[34.943293,32.564643,0],[34.943293,32.564645,0],[34.943293,32.564646,0],[34.943293,32.564648,0],[34.943293,32.56465,0],[34.943293,32.564652,0],[34.943293,32.564654,0],[34.943293,32.564655,0],[34.943293,32.564657,0],[34.943292,32.564659,0],[34.943292,32.564661,0],[34.943292,32.564663,0],[34.943292,32.564664,0],[34.943292,32.564666,0],[34.943292,32.564668,0],[34.943292,32.56467,0],[34.943292,32.564672,0],[34.943292,32.564673,0],[34.943292,32.564675,0],[34.943292,32.564677,0],[34.943291,32.564679,0],[34.943291,32.564681,0],[34.943291,32.564682,0],[34.943291,32.564684,0],[34.943291,32.564687,0],[34.943291,32.564689,0],[34.943165,32.564696,0],[34.94315,32.56478,0],[34.943138,32.564825,0],[34.94309,32.564814,0],[34.942786,32.564831,0],[34.942714,32.564838,0],[34.942454,32.564851,0],[34.942426,32.56485,0],[34.942365,32.564841,0],[34.942363,32.564841,0],[34.942362,32.564843,0],[34.942362,32.564844,0],[34.942361,32.564846,0],[34.942361,32.564848,0],[34.94236,32.564849,0],[34.94236,32.564851,0],[34.94236,32.564853,0],[34.942359,32.564855,0],[34.942359,32.564856,0],[34.942358,32.564858,0],[34.942358,32.56486,0],[34.942357,32.564861,0],[34.942357,32.564863,0],[34.942356,32.564865,0],[34.942356,32.564866,0],[34.942356,32.564868,0],[34.942355,32.56487,0],[34.942355,32.564872,0],[34.942354,32.564873,0],[34.942354,32.564875,0],[34.942353,32.564877,0],[34.942353,32.564878,0],[34.942352,32.56488,0],[34.942352,32.564882,0],[34.942351,32.564883,0],[34.942351,32.564885,0],[34.94235,32.564887,0],[34.94235,32.564888,0],[34.942349,32.56489,0],[34.942349,32.564892,0],[34.942348,32.564893,0],[34.942348,32.564895,0],[34.942347,32.564897,0],[34.942346,32.564899,0],[34.942304,32.565034,0],[34.942245,32.565219,0],[34.942186,32.565407,0],[34.942129,32.565585,0],[34.942124,32.565603,0],[34.942123,32.565604,0],[34.942123,32.565605,0],[34.942123,32.565606,0],[34.942122,32.565607,0],[34.942122,32.565607,0],[34.942122,32.565608,0],[34.942122,32.565609,0],[34.942122,32.56561,0],[34.942121,32.565611,0],[34.942121,32.565612,0],[34.942121,32.565613,0],[34.942121,32.565614,0],[34.942121,32.565615,0],[34.942121,32.565616,0],[34.942121,32.565617,0],[34.942121,32.565618,0],[34.94212,32.565619,0],[34.94212,32.565619,0],[34.94212,32.56562,0],[34.94212,32.565621,0],[34.94212,32.565622,0],[34.94212,32.565623,0],[34.94212,32.565624,0],[34.94212,32.565625,0],[34.94212,32.565626,0],[34.94212,32.565627,0],[34.94212,32.565628,0],[34.94212,32.565629,0],[34.94212,32.56563,0],[34.94212,32.565631,0],[34.94212,32.565632,0],[34.94212,32.565633,0],[34.942121,32.565633,0],[34.942121,32.565634,0],[34.942121,32.565635,0],[34.942121,32.565636,0],[34.942121,32.565637,0],[34.942121,32.565638,0],[34.942121,32.565639,0],[34.942121,32.56564,0],[34.942122,32.565641,0],[34.942122,32.565642,0],[34.942122,32.565643,0],[34.942122,32.565644,0],[34.942122,32.565645,0],[34.942123,32.565645,0],[34.942123,32.565646,0],[34.942123,32.565647,0],[34.942124,32.565648,0],[34.942124,32.565649,0],[34.942124,32.56565,0],[34.942124,32.565651,0],[34.942125,32.565652,0],[34.942125,32.565653,0],[34.942125,32.565654,0],[34.942126,32.565654,0],[34.942126,32.565655,0],[34.942126,32.565656,0],[34.942127,32.565657,0],[34.942127,32.565658,0],[34.942128,32.565659,0],[34.942128,32.56566,0],[34.942128,32.565661,0],[34.942129,32.565661,0],[34.942129,32.565662,0],[34.94213,32.565663,0],[34.94213,32.565664,0],[34.942131,32.565665,0],[34.942131,32.565666,0],[34.942132,32.565666,0],[34.942132,32.565667,0],[34.942133,32.565668,0],[34.942133,32.565669,0],[34.942134,32.56567,0],[34.942134,32.565671,0],[34.942135,32.565671,0],[34.942135,32.565672,0],[34.942136,32.565673,0],[34.942137,32.565674,0],[34.942137,32.565675,0],[34.942138,32.565675,0],[34.942138,32.565676,0],[34.942139,32.565677,0],[34.94214,32.565678,0],[34.94214,32.565678,0],[34.942141,32.565679,0],[34.942142,32.56568,0],[34.942142,32.565681,0],[34.942143,32.565681,0],[34.942144,32.565682,0],[34.942144,32.565683,0],[34.942145,32.565684,0],[34.942146,32.565684,0],[34.942146,32.565685,0],[34.942147,32.565686,0],[34.942148,32.565686,0],[34.942149,32.565687,0],[34.942149,32.565688,0],[34.94215,32.565688,0],[34.942151,32.565689,0],[34.942152,32.56569,0],[34.942153,32.56569,0],[34.942153,32.565691,0],[34.942154,32.565692,0],[34.942155,32.565692,0],[34.942156,32.565693,0],[34.942157,32.565694,0],[34.942157,32.565694,0],[34.942158,32.565695,0],[34.942159,32.565695,0],[34.94216,32.565696,0],[34.942161,32.565696,0],[34.942162,32.565697,0],[34.942163,32.565698,0],[34.942163,32.565698,0],[34.942164,32.565699,0],[34.942165,32.565699,0],[34.942166,32.5657,0],[34.942167,32.5657,0],[34.942168,32.565701,0],[34.942169,32.565701,0],[34.94217,32.565702,0],[34.942171,32.565702,0],[34.942172,32.565703,0],[34.942173,32.565703,0],[34.942174,32.565704,0],[34.942175,32.565704,0],[34.942176,32.565705,0],[34.942177,32.565705,0],[34.942178,32.565706,0],[34.942178,32.565706,0],[34.942179,32.565706,0],[34.94218,32.565707,0],[34.942181,32.565707,0],[34.942182,32.565708,0],[34.942183,32.565708,0],[34.942184,32.565708,0],[34.942185,32.565709,0],[34.942187,32.565709,0],[34.942188,32.565709,0],[34.942189,32.56571,0],[34.94219,32.56571,0],[34.942191,32.56571,0],[34.942192,32.565711,0],[34.942193,32.565711,0],[34.942194,32.565711,0],[34.942195,32.565712,0],[34.942196,32.565712,0],[34.942197,32.565712,0],[34.942199,32.565713,0],[34.94216,32.565837,0],[34.943511,32.566145,0],[34.944268,32.566321,0],[34.945694,32.566645,0],[34.945747,32.56641,0],[34.945808,32.566134,0],[34.945891,32.565743,0],[34.945952,32.56547,0],[34.946014,32.56518,0],[34.946032,32.565091,0],[34.946056,32.564903,0],[34.946065,32.564729,0],[34.946063,32.564621,0],[34.94606,32.564543,0],[34.946048,32.564444,0],[34.946036,32.564352,0],[34.946005,32.564193,0],[34.945999,32.564167,0],[34.945957,32.563991,0],[34.945917,32.563823,0],[34.945891,32.563712,0],[34.945876,32.563649,0],[34.94584,32.5635,0],[34.945834,32.563475,0],[34.945823,32.563405,0],[34.945819,32.563368,0],[34.945818,32.563357,0],[34.945814,32.563298,0],[34.945815,32.563293,0],[34.945815,32.563238,0],[34.945819,32.563192,0],[34.945826,32.563133,0],[34.945851,32.562964,0],[34.945859,32.562921,0],[34.945869,32.562869,0],[34.945893,32.562792,0],[34.945914,32.562733,0],[34.945926,32.562705,0],[34.945929,32.562698,0],[34.945949,32.562656,0],[34.945978,32.562603,0],[34.946024,32.562528,0],[34.946089,32.562436,0],[34.946215,32.56225,0],[34.94622,32.562243,0],[34.946225,32.562234,0],[34.946229,32.562226,0],[34.946233,32.562205,0],[34.946233,32.562189,0],[34.946232,32.562179,0],[34.946231,32.562172,0],[34.946224,32.562155,0],[34.946215,32.562138,0],[34.946202,32.562124,0],[34.946193,32.562116,0],[34.946185,32.56211,0],[34.946168,32.5621,0],[34.946139,32.562091,0],[34.946044,32.562067,0],[34.945987,32.562054,0],[34.94592,32.562041,0],[34.945906,32.562039,0],[34.945832,32.562032,0],[34.945659,32.561953,0],[34.945788,32.561508,0],[34.945683,32.56149,0],[34.945513,32.561461,0]]]},"type":"Feature","properties":{"Name":"11293"}},{"geometry":{"type":"Polygon","coordinates":[[[34.94794,32.562159,0],[34.947937,32.562155,0],[34.947565,32.561693,0],[34.947281,32.561632,0],[34.946997,32.561568,0],[34.946491,32.561456,0],[34.946014,32.561348,0],[34.945881,32.561327,0],[34.94564,32.561283,0],[34.94554,32.561268,0],[34.945402,32.561445,0],[34.945784,32.561511,0],[34.945654,32.561957,0],[34.945829,32.562034,0],[34.945894,32.562042,0],[34.945947,32.562051,0],[34.945987,32.562059,0],[34.946042,32.56207,0],[34.946142,32.562097,0],[34.946188,32.56212,0],[34.946212,32.562147,0],[34.946225,32.562175,0],[34.946229,32.562202,0],[34.946225,32.562226,0],[34.946212,32.562255,0],[34.946083,32.562445,0],[34.946024,32.562535,0],[34.945973,32.562609,0],[34.945945,32.562668,0],[34.945916,32.562739,0],[34.945895,32.562799,0],[34.945877,32.562853,0],[34.945856,32.562933,0],[34.945846,32.562971,0],[34.94584,32.562998,0],[34.945827,32.56307,0],[34.945818,32.563136,0],[34.945813,32.563192,0],[34.945809,32.563251,0],[34.945808,32.563306,0],[34.945813,32.563363,0],[34.945823,32.563443,0],[34.945829,32.56348,0],[34.94587,32.563656,0],[34.945913,32.563829,0],[34.945952,32.564,0],[34.945999,32.564167,0],[34.94602,32.564262,0],[34.946037,32.564355,0],[34.946052,32.564464,0],[34.94606,32.564553,0],[34.946064,32.564738,0],[34.946054,32.564908,0],[34.94603,32.565099,0],[34.946011,32.565192,0],[34.946009,32.565199,0],[34.945948,32.565477,0],[34.94589,32.565753,0],[34.945801,32.566142,0],[34.945743,32.566422,0],[34.945738,32.566443,0],[34.945691,32.566651,0],[34.946487,32.566832,0],[34.946536,32.566843,0],[34.94769,32.567106,0],[34.947923,32.56716,0],[34.948154,32.567212,0],[34.948304,32.567246,0],[34.948328,32.567255,0],[34.948348,32.567271,0],[34.948361,32.567291,0],[34.948364,32.567309,0],[34.948475,32.567053,0],[34.948555,32.566779,0],[34.948677,32.566402,0],[34.948767,32.566135,0],[34.948847,32.565882,0],[34.948875,32.565772,0],[34.948917,32.565588,0],[34.948956,32.56538,0],[34.948983,32.565178,0],[34.948995,32.564989,0],[34.949003,32.564783,0],[34.948996,32.564583,0],[34.948986,32.564405,0],[34.948965,32.564213,0],[34.948922,32.563971,0],[34.948876,32.563761,0],[34.948825,32.563517,0],[34.948787,32.563336,0],[34.948738,32.563101,0],[34.948734,32.563084,0],[34.948716,32.562996,0],[34.94868,32.562821,0],[34.948662,32.562731,0],[34.94866,32.562716,0],[34.94866,32.562697,0],[34.948665,32.562679,0],[34.948673,32.562661,0],[34.948687,32.562645,0],[34.948703,32.562631,0],[34.948725,32.562619,0],[34.948753,32.56261,0],[34.948673,32.562511,0],[34.948741,32.562499,0],[34.948622,32.562123,0],[34.948442,32.562156,0],[34.94844,32.562157,0],[34.948263,32.562187,0],[34.948215,32.562199,0],[34.948095,32.56222,0],[34.948093,32.56222,0],[34.947997,32.562238,0],[34.94794,32.562159,0]]]},"type":"Feature","properties":{"Name":"11292"}},{"geometry":{"type":"Polygon","coordinates":[[[34.948843,32.562083,0],[34.948622,32.562123,0],[34.948741,32.562499,0],[34.948673,32.562511,0],[34.948753,32.56261,0],[34.948725,32.562619,0],[34.948703,32.562631,0],[34.948687,32.562645,0],[34.948673,32.562661,0],[34.948665,32.562679,0],[34.94866,32.562697,0],[34.94866,32.562716,0],[34.948662,32.562731,0],[34.94868,32.562821,0],[34.948716,32.562996,0],[34.948734,32.563084,0],[34.948738,32.563101,0],[34.948787,32.563336,0],[34.948825,32.563517,0],[34.948876,32.563761,0],[34.948922,32.563971,0],[34.948965,32.564213,0],[34.948986,32.564405,0],[34.948996,32.564583,0],[34.949383,32.564557,0],[34.949638,32.564535,0],[34.949769,32.564527,0],[34.949772,32.564527,0],[34.949876,32.564531,0],[34.950263,32.564508,0],[34.950256,32.564472,0],[34.95067,32.564449,0],[34.950791,32.564385,0],[34.951218,32.564354,0],[34.951232,32.564466,0],[34.951489,32.564441,0],[34.95166,32.56442,0],[34.951873,32.564414,0],[34.951808,32.563917,0],[34.951653,32.564156,0],[34.951635,32.564161,0],[34.951539,32.563519,0],[34.951516,32.563351,0],[34.951408,32.562488,0],[34.951394,32.562444,0],[34.951394,32.562442,0],[34.951341,32.561472,0],[34.951327,32.561622,0],[34.951295,32.561628,0],[34.951273,32.561632,0],[34.951012,32.561688,0],[34.950807,32.561731,0],[34.950587,32.561777,0],[34.950585,32.561777,0],[34.950485,32.5618,0],[34.950361,32.56182,0],[34.950358,32.561821,0],[34.950136,32.561857,0],[34.950134,32.561857,0],[34.94992,32.561898,0],[34.949694,32.561937,0],[34.949692,32.561937,0],[34.949492,32.561969,0],[34.949268,32.562015,0],[34.949265,32.562015,0],[34.949053,32.562048,0],[34.949049,32.562049,0],[34.948846,32.562082,0],[34.948843,32.562083,0]]]},"type":"Feature","properties":{"Name":"11291"}},{"geometry":{"type":"Polygon","coordinates":[[[34.948555,32.566779,0],[34.948475,32.567053,0],[34.948364,32.567309,0],[34.948449,32.567329,0],[34.948641,32.567375,0],[34.94884,32.56742,0],[34.948937,32.567442,0],[34.949039,32.567465,0],[34.94915,32.56749,0],[34.949254,32.567513,0],[34.949362,32.567538,0],[34.949459,32.56756,0],[34.949625,32.567597,0],[34.949671,32.567608,0],[34.949828,32.567643,0],[34.949855,32.567649,0],[34.950054,32.567694,0],[34.950249,32.567738,0],[34.950275,32.567744,0],[34.950471,32.567788,0],[34.950497,32.567794,0],[34.950682,32.567836,0],[34.950808,32.567864,0],[34.950836,32.567871,0],[34.950899,32.567885,0],[34.950993,32.567906,0],[34.951021,32.567912,0],[34.951038,32.567916,0],[34.951241,32.567962,0],[34.95127,32.567968,0],[34.951469,32.568013,0],[34.951476,32.568015,0],[34.951726,32.56807,0],[34.951729,32.568072,0],[34.951982,32.568128,0],[34.951998,32.568131,0],[34.952276,32.568194,0],[34.952586,32.568263,0],[34.952926,32.568339,0],[34.953213,32.568404,0],[34.953294,32.568422,0],[34.953389,32.568443,0],[34.953484,32.568465,0],[34.953492,32.568466,0],[34.95373,32.56852,0],[34.953851,32.568547,0],[34.953966,32.568572,0],[34.954091,32.568618,0],[34.954151,32.568776,0],[34.954142,32.568856,0],[34.954195,32.568756,0],[34.954202,32.568742,0],[34.954186,32.56867,0],[34.954223,32.568699,0],[34.954235,32.568684,0],[34.954358,32.568562,0],[34.953467,32.56739,0],[34.953465,32.567387,0],[34.952789,32.566492,0],[34.952711,32.566395,0],[34.952323,32.565785,0],[34.952323,32.565784,0],[34.952155,32.565441,0],[34.951996,32.564987,0],[34.951889,32.564514,0],[34.951873,32.564414,0],[34.95166,32.56442,0],[34.951489,32.564441,0],[34.951232,32.564466,0],[34.951218,32.564354,0],[34.950791,32.564385,0],[34.95067,32.564449,0],[34.950256,32.564472,0],[34.950263,32.564508,0],[34.949876,32.564531,0],[34.949772,32.564527,0],[34.949769,32.564527,0],[34.949638,32.564535,0],[34.949383,32.564557,0],[34.948996,32.564583,0],[34.949003,32.564783,0],[34.948995,32.564989,0],[34.948983,32.565178,0],[34.948956,32.56538,0],[34.948917,32.565588,0],[34.948875,32.565772,0],[34.948847,32.565882,0],[34.948769,32.566128,0],[34.948768,32.56613,0],[34.948768,32.566133,0],[34.948767,32.566135,0],[34.948677,32.566402,0],[34.948555,32.566779,0]]]},"type":"Feature","properties":{"Name":"11290"}},{"geometry":{"type":"Polygon","coordinates":[[[34.954425,32.602339,0],[34.954417,32.602988,0],[34.954597,32.602951,0],[34.955349,32.602793,0],[34.955563,32.602328,0],[34.955715,32.601999,0],[34.955935,32.601894,0],[34.955943,32.60189,0],[34.956452,32.601624,0],[34.956588,32.601553,0],[34.956655,32.601518,0],[34.956666,32.601514,0],[34.956956,32.601402,0],[34.957249,32.601289,0],[34.957459,32.601208,0],[34.957677,32.601123,0],[34.957888,32.601042,0],[34.958117,32.600953,0],[34.958355,32.600862,0],[34.958917,32.600645,0],[34.958952,32.600619,0],[34.958668,32.600533,0],[34.958363,32.600582,0],[34.958063,32.600658,0],[34.958084,32.600539,0],[34.958113,32.600382,0],[34.957936,32.600213,0],[34.957927,32.600129,0],[34.957878,32.599654,0],[34.957872,32.599595,0],[34.958246,32.599398,0],[34.958211,32.599377,0],[34.957921,32.599197,0],[34.957948,32.599114,0],[34.958083,32.59911,0],[34.958433,32.599099,0],[34.958571,32.598929,0],[34.958702,32.598765,0],[34.959055,32.598885,0],[34.959097,32.598899,0],[34.959289,32.598965,0],[34.959517,32.599042,0],[34.959633,32.59895,0],[34.959646,32.59894,0],[34.959751,32.598856,0],[34.959775,32.598837,0],[34.96002,32.598641,0],[34.960222,32.59848,0],[34.962758,32.596458,0],[34.962568,32.595961,0],[34.962502,32.595722,0],[34.96233,32.595158,0],[34.962237,32.595031,0],[34.962161,32.594906,0],[34.962065,32.594706,0],[34.961902,32.594037,0],[34.961834,32.593824,0],[34.961774,32.593712,0],[34.961731,32.593611,0],[34.961698,32.593543,0],[34.961643,32.593492,0],[34.961531,32.593306,0],[34.961468,32.593079,0],[34.961502,32.592814,0],[34.961509,32.592476,0],[34.961511,32.592202,0],[34.961551,32.592014,0],[34.961708,32.591728,0],[34.961625,32.591367,0],[34.961116,32.590728,0],[34.960799,32.590524,0],[34.960169,32.589634,0],[34.959939,32.589022,0],[34.95973,32.588605,0],[34.959088,32.588388,0],[34.959054,32.588391,0],[34.95831,32.588439,0],[34.957915,32.588465,0],[34.9579,32.588466,0],[34.957654,32.58854,0],[34.957542,32.588566,0],[34.957044,32.588682,0],[34.956805,32.588795,0],[34.956552,32.588955,0],[34.956386,32.589089,0],[34.956385,32.58909,0],[34.956345,32.589122,0],[34.955916,32.589646,0],[34.95587,32.589627,0],[34.95546,32.590206,0],[34.955465,32.590209,0],[34.955519,32.590236,0],[34.95532,32.590754,0],[34.955109,32.591755,0],[34.955058,32.59194,0],[34.954998,32.592019,0],[34.954896,32.592152,0],[34.954685,32.592431,0],[34.954468,32.592607,0],[34.954499,32.592631,0],[34.954896,32.592939,0],[34.954514,32.593378,0],[34.953807,32.593876,0],[34.953661,32.593933,0],[34.952633,32.594338,0],[34.952614,32.594306,0],[34.952567,32.594323,0],[34.952263,32.594481,0],[34.952103,32.594729,0],[34.951983,32.594916,0],[34.952039,32.595152,0],[34.952052,32.595317,0],[34.952164,32.595581,0],[34.952192,32.595905,0],[34.952206,32.59596,0],[34.952416,32.596039,0],[34.95244,32.596048,0],[34.952471,32.59606,0],[34.952604,32.596211,0],[34.95264,32.59631,0],[34.952703,32.59648,0],[34.952681,32.59678,0],[34.95268,32.596799,0],[34.95276,32.597077,0],[34.952837,32.597168,0],[34.952954,32.597403,0],[34.95307,32.597536,0],[34.953258,32.597752,0],[34.953253,32.597805,0],[34.953251,32.597829,0],[34.953241,32.59795,0],[34.953202,32.598051,0],[34.95319,32.598082,0],[34.953071,32.598394,0],[34.953048,32.598454,0],[34.953104,32.598691,0],[34.953127,32.598738,0],[34.953194,32.598874,0],[34.953224,32.598934,0],[34.953422,32.599174,0],[34.953823,32.600027,0],[34.953967,32.6003,0],[34.954427,32.600745,0],[34.954446,32.600753,0],[34.954444,32.60087,0],[34.954444,32.600898,0],[34.954429,32.602054,0],[34.954429,32.602078,0],[34.954428,32.602152,0],[34.954428,32.602156,0],[34.954427,32.602228,0],[34.954425,32.602339,0]]]},"type":"Feature","properties":{"Name":"11288"}},{"geometry":{"type":"Polygon","coordinates":[[[34.947168,32.583127,0],[34.947081,32.582833,0],[34.947056,32.582751,0],[34.946798,32.581885,0],[34.946767,32.581647,0],[34.946729,32.581348,0],[34.946677,32.580951,0],[34.946676,32.580935,0],[34.946632,32.580552,0],[34.946678,32.58031,0],[34.946703,32.580175,0],[34.946575,32.580145,0],[34.946476,32.580122,0],[34.946427,32.58011,0],[34.946365,32.580093,0],[34.946172,32.579639,0],[34.946073,32.579367,0],[34.945776,32.578493,0],[34.944162,32.579192,0],[34.943072,32.579663,0],[34.942965,32.57971,0],[34.942931,32.579724,0],[34.942842,32.579763,0],[34.942772,32.579793,0],[34.942686,32.579829,0],[34.941558,32.580307,0],[34.941394,32.58038,0],[34.941305,32.58042,0],[34.94125,32.580444,0],[34.941219,32.580458,0],[34.940935,32.580559,0],[34.940282,32.580843,0],[34.9381,32.581868,0],[34.937516,32.582142,0],[34.936743,32.582497,0],[34.936668,32.582535,0],[34.934494,32.583503,0],[34.934399,32.583545,0],[34.934408,32.583587,0],[34.934415,32.583628,0],[34.934437,32.583764,0],[34.934503,32.58417,0],[34.93452,32.584274,0],[34.934538,32.584385,0],[34.934547,32.584443,0],[34.934575,32.584617,0],[34.934593,32.584727,0],[34.934639,32.585009,0],[34.934737,32.585616,0],[34.934728,32.585731,0],[34.934754,32.585768,0],[34.93484,32.586248,0],[34.934925,32.586727,0],[34.934969,32.586968,0],[34.934981,32.587062,0],[34.935114,32.587871,0],[34.93514,32.588033,0],[34.93529,32.588758,0],[34.937169,32.587917,0],[34.93779,32.587632,0],[34.938247,32.587423,0],[34.938872,32.587137,0],[34.941736,32.585826,0],[34.941793,32.5858,0],[34.942189,32.585619,0],[34.942237,32.585597,0],[34.94252,32.585462,0],[34.942568,32.58544,0],[34.94258,32.585434,0],[34.944293,32.584655,0],[34.944338,32.584635,0],[34.945039,32.583908,0],[34.94521,32.583791,0],[34.945287,32.583804,0],[34.94566,32.583854,0],[34.946548,32.583854,0],[34.946986,32.583792,0],[34.947279,32.583717,0],[34.94728,32.583686,0],[34.947281,32.583613,0],[34.947327,32.583597,0],[34.947307,32.583555,0],[34.947272,32.583477,0],[34.947224,32.583312,0],[34.947218,32.583294,0],[34.947168,32.583127,0]]]},"type":"Feature","properties":{"Name":"11276"}},{"geometry":{"type":"Polygon","coordinates":[[[34.939866,32.592475,0],[34.93993,32.592479,0],[34.940005,32.592483,0],[34.9406,32.592502,0],[34.94071,32.592504,0],[34.940744,32.59256,0],[34.94086,32.592501,0],[34.941139,32.592368,0],[34.941173,32.592351,0],[34.941345,32.592269,0],[34.942002,32.591954,0],[34.942103,32.591906,0],[34.942133,32.591892,0],[34.942535,32.591701,0],[34.943152,32.59141,0],[34.943186,32.591393,0],[34.943809,32.591095,0],[34.945454,32.590318,0],[34.945793,32.590148,0],[34.945876,32.590241,0],[34.94594,32.590225,0],[34.94606,32.590196,0],[34.946009,32.590053,0],[34.945545,32.588846,0],[34.945529,32.588805,0],[34.945477,32.588657,0],[34.945402,32.588447,0],[34.945164,32.587774,0],[34.944823,32.587309,0],[34.944686,32.586727,0],[34.944311,32.586012,0],[34.944229,32.58562,0],[34.944172,32.585021,0],[34.944293,32.584655,0],[34.94258,32.585434,0],[34.942568,32.58544,0],[34.94252,32.585462,0],[34.942237,32.585597,0],[34.942189,32.585619,0],[34.941793,32.5858,0],[34.941736,32.585826,0],[34.938872,32.587137,0],[34.938247,32.587423,0],[34.93779,32.587632,0],[34.937169,32.587917,0],[34.93529,32.588758,0],[34.935309,32.58887,0],[34.935334,32.589014,0],[34.935424,32.589526,0],[34.935444,32.58964,0],[34.935458,32.589721,0],[34.935468,32.589779,0],[34.935463,32.589806,0],[34.935503,32.589899,0],[34.935767,32.590212,0],[34.935822,32.59028,0],[34.935976,32.590468,0],[34.936151,32.590695,0],[34.936323,32.590918,0],[34.936401,32.590933,0],[34.936439,32.590948,0],[34.936588,32.59093,0],[34.936746,32.591002,0],[34.936876,32.591085,0],[34.936908,32.591105,0],[34.93697,32.591126,0],[34.937167,32.59118,0],[34.937305,32.59122,0],[34.937378,32.591247,0],[34.937593,32.591263,0],[34.937691,32.591321,0],[34.937734,32.591346,0],[34.937777,32.591376,0],[34.937838,32.591417,0],[34.937855,32.591429,0],[34.937849,32.591459,0],[34.937831,32.59154,0],[34.937828,32.591554,0],[34.937845,32.591578,0],[34.93786,32.591601,0],[34.937887,32.59164,0],[34.937941,32.591659,0],[34.937995,32.591678,0],[34.938044,32.591657,0],[34.938054,32.591653,0],[34.938082,32.59164,0],[34.938145,32.591612,0],[34.938238,32.591574,0],[34.93825,32.591585,0],[34.938298,32.591629,0],[34.93843,32.591712,0],[34.938616,32.59181,0],[34.938842,32.591929,0],[34.938926,32.591983,0],[34.938981,32.592007,0],[34.939075,32.592043,0],[34.939115,32.592059,0],[34.939169,32.592092,0],[34.939382,32.592222,0],[34.939449,32.592265,0],[34.939466,32.592288,0],[34.939475,32.592299,0],[34.939485,32.592378,0],[34.939486,32.592389,0],[34.93962,32.592437,0],[34.939764,32.592459,0],[34.939866,32.592475,0]]]},"type":"Feature","properties":{"Name":"11275"}},{"geometry":{"type":"Polygon","coordinates":[[[34.922024,32.577386,0],[34.922026,32.577394,0],[34.922047,32.577495,0],[34.922154,32.577995,0],[34.922224,32.578247,0],[34.922288,32.578495,0],[34.922351,32.578674,0],[34.922379,32.578753,0],[34.922395,32.578798,0],[34.922417,32.578869,0],[34.922496,32.579065,0],[34.922599,32.579313,0],[34.922716,32.579586,0],[34.922803,32.57977,0],[34.922836,32.57984,0],[34.922954,32.580069,0],[34.923088,32.580306,0],[34.923178,32.580472,0],[34.923218,32.580543,0],[34.923287,32.580654,0],[34.923326,32.580717,0],[34.92337,32.580793,0],[34.923471,32.580967,0],[34.92354,32.581086,0],[34.923565,32.581127,0],[34.923752,32.581443,0],[34.923803,32.581529,0],[34.923963,32.581798,0],[34.924042,32.581933,0],[34.924175,32.582158,0],[34.924386,32.582509,0],[34.924495,32.582692,0],[34.924592,32.582854,0],[34.924741,32.583093,0],[34.924829,32.583222,0],[34.924927,32.583244,0],[34.925158,32.583151,0],[34.925202,32.583134,0],[34.925695,32.583171,0],[34.927308,32.583127,0],[34.927364,32.583126,0],[34.92769,32.583114,0],[34.927878,32.583114,0],[34.927894,32.583067,0],[34.928163,32.582309,0],[34.928245,32.582087,0],[34.928467,32.581438,0],[34.928569,32.581138,0],[34.928615,32.581148,0],[34.928745,32.581154,0],[34.92882,32.581161,0],[34.928903,32.581169,0],[34.92898,32.581178,0],[34.929206,32.5812,0],[34.929522,32.581226,0],[34.929606,32.581236,0],[34.929624,32.580993,0],[34.929626,32.580751,0],[34.929648,32.580696,0],[34.929653,32.580474,0],[34.929698,32.579207,0],[34.929831,32.579202,0],[34.93206,32.579156,0],[34.932288,32.579564,0],[34.932757,32.580385,0],[34.932811,32.580389,0],[34.932915,32.580458,0],[34.933279,32.58109,0],[34.933636,32.581715,0],[34.934223,32.581505,0],[34.933387,32.579096,0],[34.934635,32.578668,0],[34.934816,32.578613,0],[34.934789,32.578524,0],[34.93477,32.578466,0],[34.934194,32.576669,0],[34.934177,32.576618,0],[34.934072,32.576287,0],[34.933775,32.576355,0],[34.933723,32.576367,0],[34.933507,32.576412,0],[34.933354,32.576154,0],[34.933314,32.576084,0],[34.932625,32.574906,0],[34.932408,32.574532,0],[34.931855,32.572913,0],[34.931302,32.57303,0],[34.931304,32.573023,0],[34.931245,32.573018,0],[34.931198,32.573144,0],[34.931173,32.573209,0],[34.930831,32.573289,0],[34.930743,32.573306,0],[34.930663,32.573323,0],[34.930584,32.573341,0],[34.930487,32.573361,0],[34.930444,32.573371,0],[34.930419,32.573376,0],[34.93037,32.573385,0],[34.927984,32.573862,0],[34.923884,32.574673,0],[34.923878,32.574675,0],[34.9238,32.574691,0],[34.923252,32.574802,0],[34.923064,32.574837,0],[34.92296,32.574856,0],[34.922522,32.57494,0],[34.92197,32.575045,0],[34.921799,32.575077,0],[34.921584,32.575122,0],[34.921618,32.575278,0],[34.921692,32.575664,0],[34.921761,32.576043,0],[34.9218,32.576229,0],[34.921841,32.57644,0],[34.921876,32.576639,0],[34.921914,32.576837,0],[34.921991,32.57723,0],[34.922024,32.577386,0]]]},"type":"Feature","properties":{"Name":"10952"}},{"geometry":{"type":"Polygon","coordinates":[[[34.932754,32.580384,0],[34.932056,32.579156,0],[34.929693,32.579209,0],[34.929653,32.580478,0],[34.929657,32.580695,0],[34.929632,32.580751,0],[34.929631,32.580991,0],[34.929607,32.581239,0],[34.929527,32.581229,0],[34.929209,32.581203,0],[34.929061,32.581189,0],[34.928913,32.581171,0],[34.928752,32.581156,0],[34.928614,32.581152,0],[34.928571,32.58114,0],[34.928371,32.581721,0],[34.928157,32.582308,0],[34.927873,32.583113,0],[34.927781,32.583117,0],[34.92769,32.583117,0],[34.927379,32.583132,0],[34.927321,32.583131,0],[34.926831,32.583142,0],[34.925713,32.583171,0],[34.925206,32.583128,0],[34.924932,32.583237,0],[34.924833,32.583217,0],[34.92417,32.583084,0],[34.923432,32.582944,0],[34.92338,32.582955,0],[34.923448,32.583412,0],[34.923537,32.583732,0],[34.923872,32.584919,0],[34.923924,32.585041,0],[34.924083,32.585224,0],[34.924337,32.585658,0],[34.924616,32.586275,0],[34.924725,32.586982,0],[34.92472,32.587138,0],[34.924685,32.587174,0],[34.924643,32.587194,0],[34.92459,32.587207,0],[34.924568,32.587208,0],[34.924539,32.587197,0],[34.924494,32.587168,0],[34.924062,32.586915,0],[34.923796,32.587114,0],[34.923524,32.587284,0],[34.923515,32.587409,0],[34.923569,32.587565,0],[34.923713,32.587682,0],[34.923911,32.587887,0],[34.924207,32.588132,0],[34.924397,32.588327,0],[34.924634,32.588532,0],[34.924934,32.588504,0],[34.925059,32.588359,0],[34.925092,32.58826,0],[34.925337,32.588399,0],[34.925387,32.588488,0],[34.92541,32.588507,0],[34.925479,32.588531,0],[34.925824,32.588738,0],[34.925904,32.588793,0],[34.92594,32.588802,0],[34.926071,32.588773,0],[34.92612,32.58879,0],[34.926134,32.588738,0],[34.926142,32.588711,0],[34.926152,32.588675,0],[34.926159,32.58865,0],[34.926164,32.58863,0],[34.926251,32.588326,0],[34.926311,32.588117,0],[34.926348,32.587991,0],[34.926417,32.587757,0],[34.926529,32.58743,0],[34.926572,32.587285,0],[34.926777,32.586665,0],[34.926869,32.586374,0],[34.927204,32.587005,0],[34.927512,32.587496,0],[34.927571,32.587587,0],[34.927687,32.587753,0],[34.927725,32.587799,0],[34.927832,32.587898,0],[34.927901,32.587949,0],[34.929048,32.587669,0],[34.930348,32.587347,0],[34.931606,32.587041,0],[34.93484,32.586248,0],[34.934754,32.585768,0],[34.934728,32.585731,0],[34.934737,32.585616,0],[34.934639,32.585009,0],[34.934593,32.584727,0],[34.934575,32.584617,0],[34.934547,32.584443,0],[34.934538,32.584385,0],[34.93452,32.584274,0],[34.934503,32.58417,0],[34.934437,32.583764,0],[34.934415,32.583628,0],[34.934408,32.583587,0],[34.934399,32.583545,0],[34.934494,32.583503,0],[34.936668,32.582535,0],[34.935787,32.581454,0],[34.935642,32.581255,0],[34.935526,32.581035,0],[34.935165,32.579875,0],[34.934816,32.578616,0],[34.934632,32.578664,0],[34.933391,32.5791,0],[34.934225,32.581499,0],[34.933639,32.581715,0],[34.932914,32.580459,0],[34.932806,32.580386,0],[34.932754,32.580384,0]]]},"type":"Feature","properties":{"Name":"10948"}},{"geometry":{"type":"Polygon","coordinates":[[[34.926529,32.58743,0],[34.926417,32.587757,0],[34.926348,32.587991,0],[34.926311,32.588117,0],[34.926251,32.588326,0],[34.926164,32.58863,0],[34.926159,32.58865,0],[34.926152,32.588675,0],[34.926142,32.588711,0],[34.926134,32.588738,0],[34.92612,32.58879,0],[34.926271,32.588887,0],[34.92654,32.588862,0],[34.926697,32.58912,0],[34.926684,32.589119,0],[34.9266,32.589107,0],[34.926596,32.589374,0],[34.926865,32.58946,0],[34.926987,32.589551,0],[34.926997,32.589567,0],[34.926996,32.589584,0],[34.926914,32.589838,0],[34.926895,32.58995,0],[34.927271,32.590319,0],[34.927321,32.590365,0],[34.927549,32.590952,0],[34.927553,32.591067,0],[34.927614,32.591197,0],[34.927614,32.5913,0],[34.927626,32.591381,0],[34.927741,32.591574,0],[34.927852,32.59169,0],[34.92787,32.591324,0],[34.92792,32.591732,0],[34.928193,32.592311,0],[34.928246,32.59243,0],[34.928369,32.59249,0],[34.928454,32.592697,0],[34.928643,32.592641,0],[34.928808,32.592727,0],[34.928941,32.59285,0],[34.928914,32.592958,0],[34.928682,32.592993,0],[34.928544,32.593019,0],[34.928613,32.593269,0],[34.928721,32.594102,0],[34.929031,32.597007,0],[34.929124,32.59793,0],[34.930167,32.597631,0],[34.931714,32.59694,0],[34.931922,32.596844,0],[34.932347,32.596673,0],[34.932707,32.59654,0],[34.932838,32.596493,0],[34.932875,32.596474,0],[34.93295,32.596427,0],[34.93299,32.59639,0],[34.933201,32.596309,0],[34.933309,32.59627,0],[34.9336,32.59616,0],[34.933831,32.596049,0],[34.934,32.595973,0],[34.934077,32.595936,0],[34.934155,32.595899,0],[34.934234,32.595865,0],[34.934366,32.5958,0],[34.934539,32.595738,0],[34.93469,32.595674,0],[34.934881,32.595603,0],[34.934925,32.595585,0],[34.935124,32.595492,0],[34.9356,32.59526,0],[34.935724,32.595203,0],[34.936047,32.595043,0],[34.936133,32.595001,0],[34.936314,32.594937,0],[34.936682,32.594776,0],[34.93686,32.594702,0],[34.937048,32.594625,0],[34.937219,32.594544,0],[34.937393,32.594471,0],[34.937571,32.594392,0],[34.937752,32.594314,0],[34.937929,32.594239,0],[34.938112,32.594158,0],[34.938346,32.594053,0],[34.938474,32.594,0],[34.938662,32.593916,0],[34.93884,32.593837,0],[34.939027,32.593759,0],[34.939204,32.593678,0],[34.939385,32.5936,0],[34.939574,32.593521,0],[34.939761,32.593441,0],[34.939943,32.593358,0],[34.940063,32.593309,0],[34.940005,32.593208,0],[34.939968,32.592963,0],[34.939996,32.59261,0],[34.939999,32.59256,0],[34.940005,32.592483,0],[34.93993,32.592479,0],[34.939866,32.592475,0],[34.939764,32.592459,0],[34.93962,32.592437,0],[34.939486,32.592389,0],[34.939485,32.592378,0],[34.939475,32.592299,0],[34.939466,32.592288,0],[34.939449,32.592265,0],[34.939382,32.592222,0],[34.939169,32.592092,0],[34.939115,32.592059,0],[34.939075,32.592043,0],[34.938981,32.592007,0],[34.938926,32.591983,0],[34.938842,32.591929,0],[34.938616,32.59181,0],[34.93843,32.591712,0],[34.938298,32.591629,0],[34.93825,32.591585,0],[34.938238,32.591574,0],[34.938145,32.591612,0],[34.938082,32.59164,0],[34.938054,32.591653,0],[34.938044,32.591657,0],[34.937995,32.591678,0],[34.937887,32.59164,0],[34.93786,32.591601,0],[34.937845,32.591578,0],[34.937828,32.591554,0],[34.937831,32.59154,0],[34.937849,32.591459,0],[34.937855,32.591429,0],[34.937838,32.591417,0],[34.937777,32.591376,0],[34.937734,32.591346,0],[34.937691,32.591321,0],[34.937593,32.591263,0],[34.937378,32.591247,0],[34.937305,32.59122,0],[34.937167,32.59118,0],[34.93697,32.591126,0],[34.936908,32.591105,0],[34.936876,32.591085,0],[34.936746,32.591002,0],[34.936588,32.59093,0],[34.936439,32.590948,0],[34.936401,32.590933,0],[34.936323,32.590918,0],[34.936151,32.590695,0],[34.935976,32.590468,0],[34.935822,32.59028,0],[34.935767,32.590212,0],[34.935503,32.589899,0],[34.935463,32.589806,0],[34.935468,32.589779,0],[34.935458,32.589721,0],[34.935444,32.58964,0],[34.935334,32.589014,0],[34.93529,32.588758,0],[34.93514,32.588033,0],[34.935114,32.587871,0],[34.934981,32.587062,0],[34.934969,32.586968,0],[34.934925,32.586727,0],[34.93484,32.586248,0],[34.931606,32.587041,0],[34.930348,32.587347,0],[34.929048,32.587669,0],[34.927901,32.587949,0],[34.927832,32.587898,0],[34.927725,32.587799,0],[34.927687,32.587753,0],[34.927571,32.587587,0],[34.927512,32.587496,0],[34.927204,32.587005,0],[34.926869,32.586374,0],[34.926777,32.586665,0],[34.926572,32.587285,0],[34.926529,32.58743,0]]]},"type":"Feature","properties":{"Name":"10947"}},{"geometry":{"type":"Polygon","coordinates":[[[34.975009,32.537661,0],[34.97445,32.538325,0],[34.974308,32.538492,0],[34.973905,32.538819,0],[34.973256,32.539356,0],[34.973227,32.53938,0],[34.972901,32.539644,0],[34.972068,32.540331,0],[34.972056,32.540385,0],[34.972006,32.540422,0],[34.972461,32.540665,0],[34.973041,32.540971,0],[34.973497,32.541212,0],[34.97404,32.541499,0],[34.974557,32.541774,0],[34.974994,32.542004,0],[34.975669,32.542359,0],[34.975672,32.542396,0],[34.975805,32.542366,0],[34.975941,32.542437,0],[34.976699,32.541539,0],[34.976883,32.541633,0],[34.977303,32.541283,0],[34.977748,32.540878,0],[34.978185,32.540891,0],[34.978877,32.540978,0],[34.979643,32.541307,0],[34.980073,32.541531,0],[34.980653,32.541925,0],[34.980948,32.54181,0],[34.980844,32.541587,0],[34.981027,32.54083,0],[34.981285,32.540264,0],[34.98141,32.540082,0],[34.981436,32.539964,0],[34.981425,32.539805,0],[34.981411,32.539598,0],[34.981388,32.539524,0],[34.981387,32.539519,0],[34.981351,32.539381,0],[34.981259,32.539187,0],[34.981273,32.539155,0],[34.981307,32.538939,0],[34.981306,32.538906,0],[34.981324,32.538862,0],[34.980921,32.538691,0],[34.978308,32.537581,0],[34.978267,32.537565,0],[34.978344,32.53746,0],[34.976199,32.536283,0],[34.976175,32.536332,0],[34.975687,32.53687,0],[34.975009,32.537661,0]]]},"type":"Feature","properties":{"Name":"10230"}},{"geometry":{"type":"Polygon","coordinates":[[[34.972979,32.530318,0],[34.972779,32.530285,0],[34.972433,32.530121,0],[34.971603,32.531384,0],[34.970727,32.532939,0],[34.970333,32.533699,0],[34.97032,32.533724,0],[34.970294,32.533773,0],[34.970761,32.533988,0],[34.971298,32.534227,0],[34.971837,32.534468,0],[34.971897,32.534489,0],[34.97234,32.534693,0],[34.97272,32.534865,0],[34.973993,32.535438,0],[34.974026,32.535452,0],[34.974788,32.535778,0],[34.974833,32.535792,0],[34.975107,32.535908,0],[34.975383,32.536019,0],[34.97607,32.536308,0],[34.976175,32.536332,0],[34.976199,32.536283,0],[34.976454,32.535737,0],[34.976727,32.535303,0],[34.976812,32.535201,0],[34.977197,32.534787,0],[34.977209,32.534773,0],[34.977242,32.534731,0],[34.978557,32.533729,0],[34.979043,32.533279,0],[34.979192,32.533078,0],[34.979418,32.532876,0],[34.979441,32.532853,0],[34.979597,32.532649,0],[34.979522,32.532558,0],[34.979468,32.53254,0],[34.978697,32.532328,0],[34.978619,32.532301,0],[34.978318,32.532115,0],[34.978312,32.532038,0],[34.978307,32.531965,0],[34.978254,32.531868,0],[34.978169,32.531806,0],[34.978068,32.531645,0],[34.977847,32.531448,0],[34.97771,32.531347,0],[34.977599,32.531285,0],[34.97726,32.531149,0],[34.97726,32.531056,0],[34.976889,32.530905,0],[34.976004,32.530948,0],[34.975894,32.530958,0],[34.975845,32.531024,0],[34.975794,32.531026,0],[34.975463,32.53104,0],[34.975367,32.530912,0],[34.975237,32.530737,0],[34.974959,32.530749,0],[34.974851,32.530753,0],[34.974762,32.530683,0],[34.974645,32.530696,0],[34.974461,32.53071,0],[34.974282,32.530664,0],[34.974139,32.530629,0],[34.973813,32.530707,0],[34.973609,32.530652,0],[34.973497,32.530681,0],[34.973203,32.530603,0],[34.973081,32.530528,0],[34.972979,32.530318,0]]]},"type":"Feature","properties":{"Name":"10229"}},{"geometry":{"type":"Polygon","coordinates":[[[34.96759,32.537094,0],[34.967285,32.537386,0],[34.967231,32.537437,0],[34.967001,32.537657,0],[34.967131,32.537731,0],[34.967581,32.537975,0],[34.968119,32.538266,0],[34.968979,32.538733,0],[34.969107,32.538805,0],[34.969737,32.539147,0],[34.970373,32.539493,0],[34.970917,32.539788,0],[34.971374,32.540036,0],[34.971923,32.540325,0],[34.972006,32.540422,0],[34.972056,32.540385,0],[34.972068,32.540331,0],[34.972901,32.539644,0],[34.973227,32.53938,0],[34.973256,32.539356,0],[34.973905,32.538819,0],[34.974308,32.538492,0],[34.97445,32.538325,0],[34.975009,32.537661,0],[34.975687,32.53687,0],[34.976175,32.536332,0],[34.97607,32.536308,0],[34.975383,32.536019,0],[34.975107,32.535908,0],[34.974833,32.535792,0],[34.974788,32.535778,0],[34.974026,32.535452,0],[34.973993,32.535438,0],[34.97272,32.534865,0],[34.97234,32.534693,0],[34.971897,32.534489,0],[34.971837,32.534468,0],[34.971298,32.534227,0],[34.970761,32.533988,0],[34.970294,32.533773,0],[34.970243,32.533868,0],[34.970135,32.534071,0],[34.970003,32.534328,0],[34.96998,32.534372,0],[34.969821,32.534669,0],[34.969745,32.534818,0],[34.969675,32.534955,0],[34.96955,32.5352,0],[34.969522,32.535253,0],[34.969221,32.53554,0],[34.968914,32.535833,0],[34.968878,32.535867,0],[34.968598,32.536132,0],[34.968529,32.536199,0],[34.968269,32.536446,0],[34.968149,32.536561,0],[34.967938,32.536763,0],[34.967805,32.53689,0],[34.96759,32.537094,0]]]},"type":"Feature","properties":{"Name":"10228"}},{"geometry":{"type":"Polygon","coordinates":[[[34.974557,32.541774,0],[34.97404,32.541499,0],[34.973497,32.541212,0],[34.973041,32.540971,0],[34.972461,32.540665,0],[34.972006,32.540422,0],[34.971946,32.54044,0],[34.970231,32.541836,0],[34.969623,32.542331,0],[34.967188,32.544351,0],[34.967163,32.544412,0],[34.967116,32.544439,0],[34.967229,32.544571,0],[34.967354,32.544719,0],[34.967481,32.544863,0],[34.967609,32.545005,0],[34.967623,32.545042,0],[34.968372,32.54592,0],[34.968716,32.546535,0],[34.968746,32.546572,0],[34.968784,32.546614,0],[34.968793,32.546625,0],[34.968797,32.546629,0],[34.968804,32.546638,0],[34.968824,32.54666,0],[34.968829,32.546666,0],[34.968836,32.546673,0],[34.96884,32.546678,0],[34.968842,32.546681,0],[34.968843,32.546682,0],[34.968844,32.546683,0],[34.968845,32.546684,0],[34.968845,32.546685,0],[34.968846,32.546685,0],[34.968847,32.546687,0],[34.968883,32.546727,0],[34.969033,32.546897,0],[34.969614,32.547393,0],[34.97039,32.548043,0],[34.970794,32.548254,0],[34.971281,32.548548,0],[34.971495,32.548645,0],[34.971848,32.548758,0],[34.972451,32.549232,0],[34.973088,32.549694,0],[34.973176,32.549726,0],[34.97382,32.549989,0],[34.973932,32.550036,0],[34.97393,32.549947,0],[34.974049,32.549211,0],[34.974144,32.548627,0],[34.974177,32.548176,0],[34.97424,32.547311,0],[34.974111,32.546825,0],[34.974076,32.546608,0],[34.974076,32.546015,0],[34.974136,32.54547,0],[34.974201,32.544925,0],[34.974329,32.544182,0],[34.974322,32.543506,0],[34.974556,32.543286,0],[34.974992,32.542954,0],[34.975672,32.542396,0],[34.975669,32.542359,0],[34.974994,32.542004,0],[34.974557,32.541774,0]]]},"type":"Feature","properties":{"Name":"10227"}},{"geometry":{"type":"Polygon","coordinates":[[[34.951858,32.543641,0],[34.952259,32.54352,0],[34.952133,32.543292,0],[34.951933,32.54293,0],[34.951694,32.542498,0],[34.951332,32.541841,0],[34.950996,32.541232,0],[34.951443,32.540916,0],[34.952019,32.540508,0],[34.952086,32.54046,0],[34.951362,32.539516,0],[34.950507,32.538562,0],[34.949311,32.536575,0],[34.94931,32.536568,0],[34.947979,32.537181,0],[34.945233,32.538453,0],[34.943509,32.539251,0],[34.944125,32.546015,0],[34.951858,32.543641,0]]]},"type":"Feature","properties":{"Name":"10226"}},{"geometry":{"type":"Polygon","coordinates":[[[34.968979,32.538733,0],[34.968119,32.538266,0],[34.967581,32.537975,0],[34.967131,32.537731,0],[34.967001,32.537657,0],[34.966574,32.537885,0],[34.966024,32.538178,0],[34.965543,32.538433,0],[34.964083,32.539206,0],[34.96397,32.539267,0],[34.963917,32.539295,0],[34.960919,32.54141,0],[34.960832,32.541465,0],[34.960821,32.541523,0],[34.961177,32.54164,0],[34.961553,32.541753,0],[34.961921,32.541868,0],[34.962224,32.541962,0],[34.964098,32.542551,0],[34.965044,32.542879,0],[34.965336,32.542971,0],[34.965763,32.54323,0],[34.966114,32.543497,0],[34.966667,32.543906,0],[34.966993,32.544318,0],[34.967116,32.544439,0],[34.967163,32.544412,0],[34.967188,32.544351,0],[34.969623,32.542331,0],[34.970231,32.541836,0],[34.971946,32.54044,0],[34.972006,32.540422,0],[34.971923,32.540325,0],[34.971374,32.540036,0],[34.970917,32.539788,0],[34.970373,32.539493,0],[34.969737,32.539147,0],[34.969107,32.538805,0],[34.968979,32.538733,0]]]},"type":"Feature","properties":{"Name":"10225"}},{"geometry":{"type":"Polygon","coordinates":[[[34.952908,32.544695,0],[34.952548,32.544043,0],[34.952259,32.54352,0],[34.951858,32.543641,0],[34.944125,32.546015,0],[34.946585,32.554496,0],[34.953336,32.551965,0],[34.953701,32.550843,0],[34.953743,32.550293,0],[34.953768,32.549971,0],[34.953823,32.549228,0],[34.953871,32.548574,0],[34.953629,32.54746,0],[34.95351,32.54691,0],[34.953429,32.546254,0],[34.953332,32.545463,0],[34.95333,32.54546,0],[34.953221,32.545262,0],[34.952952,32.544775,0],[34.952928,32.544733,0],[34.952908,32.544695,0]]]},"type":"Feature","properties":{"Name":"10219"}},{"geometry":{"type":"Polygon","coordinates":[[[34.93405,32.552435,0],[34.934087,32.552463,0],[34.934269,32.552421,0],[34.934493,32.5525,0],[34.935248,32.55326,0],[34.93529,32.553316,0],[34.935299,32.553337,0],[34.935597,32.554573,0],[34.946585,32.554496,0],[34.944125,32.546015,0],[34.934948,32.544681,0],[34.934862,32.54614,0],[34.935089,32.546414,0],[34.935124,32.546705,0],[34.935172,32.546806,0],[34.932675,32.545165,0],[34.932588,32.545164,0],[34.932576,32.545287,0],[34.932491,32.545955,0],[34.932427,32.546354,0],[34.932416,32.550432,0],[34.932414,32.551385,0],[34.932458,32.551388,0],[34.93405,32.552435,0]]]},"type":"Feature","properties":{"Name":"10218"}},{"geometry":{"type":"Polygon","coordinates":[[[34.948004,32.562231,0],[34.950485,32.561806,0],[34.951288,32.56163,0],[34.951373,32.560989,0],[34.951488,32.559722,0],[34.951447,32.558603,0],[34.951503,32.557327,0],[34.951354,32.556089,0],[34.951195,32.555403,0],[34.951268,32.554747,0],[34.951146,32.55413,0],[34.952292,32.552865,0],[34.953336,32.551967,0],[34.946588,32.5545,0],[34.944684,32.561115,0],[34.946013,32.561349,0],[34.947575,32.561693,0],[34.948004,32.562231,0]]]},"type":"Feature","properties":{"Name":"10217"}},{"geometry":{"type":"Polygon","coordinates":[[[34.938219,32.558632,0],[34.938151,32.55883,0],[34.937864,32.559209,0],[34.93771,32.559543,0],[34.937406,32.559983,0],[34.938198,32.559856,0],[34.939494,32.560331,0],[34.939897,32.560361,0],[34.942323,32.560308,0],[34.942714,32.560841,0],[34.944684,32.561115,0],[34.946588,32.5545,0],[34.935588,32.554582,0],[34.935953,32.554758,0],[34.936153,32.554937,0],[34.936356,32.555165,0],[34.936955,32.555893,0],[34.937499,32.55596,0],[34.937871,32.556378,0],[34.937829,32.556587,0],[34.937941,32.557189,0],[34.938219,32.558632,0]]]},"type":"Feature","properties":{"Name":"10216"}},{"geometry":{"type":"Polygon","coordinates":[[[34.962454,32.533514,0],[34.962757,32.533529,0],[34.963072,32.533535,0],[34.963384,32.533547,0],[34.963689,32.533549,0],[34.963986,32.533557,0],[34.964284,32.533562,0],[34.964581,32.533573,0],[34.964876,32.533576,0],[34.965173,32.533588,0],[34.965474,32.533596,0],[34.965773,32.533598,0],[34.966121,32.533606,0],[34.966389,32.533614,0],[34.966694,32.53362,0],[34.966992,32.533628,0],[34.967287,32.533638,0],[34.967582,32.533644,0],[34.967875,32.533649,0],[34.968192,32.533655,0],[34.968505,32.533661,0],[34.968828,32.533667,0],[34.969157,32.533679,0],[34.96961,32.533678,0],[34.97014,32.533685,0],[34.970333,32.533699,0],[34.970727,32.532939,0],[34.971603,32.531384,0],[34.972433,32.530121,0],[34.972779,32.530285,0],[34.972979,32.530318,0],[34.973081,32.530528,0],[34.973203,32.530603,0],[34.973497,32.530681,0],[34.973609,32.530652,0],[34.973813,32.530707,0],[34.974139,32.530629,0],[34.974282,32.530664,0],[34.974461,32.53071,0],[34.974645,32.530696,0],[34.974762,32.530683,0],[34.974851,32.530753,0],[34.974959,32.530749,0],[34.975237,32.530737,0],[34.975367,32.530912,0],[34.975463,32.53104,0],[34.975794,32.531026,0],[34.975845,32.531024,0],[34.975894,32.530958,0],[34.975927,32.530912,0],[34.975834,32.530807,0],[34.975774,32.530738,0],[34.975774,32.530613,0],[34.97571,32.53046,0],[34.975676,32.530381,0],[34.975642,32.530348,0],[34.975552,32.530347,0],[34.975456,32.530347,0],[34.975368,32.530387,0],[34.97521,32.530299,0],[34.974761,32.529934,0],[34.974083,32.529807,0],[34.973678,32.529637,0],[34.973346,32.529237,0],[34.973246,32.529117,0],[34.972918,32.528832,0],[34.972688,32.528782,0],[34.972343,32.528505,0],[34.972232,32.528518,0],[34.972091,32.52853,0],[34.972016,32.528453,0],[34.971961,32.528365,0],[34.971566,32.528045,0],[34.971539,32.527865,0],[34.971458,32.527608,0],[34.971306,32.527561,0],[34.971173,32.527484,0],[34.971075,32.527417,0],[34.97091,32.527287,0],[34.970778,32.527165,0],[34.969997,32.526815,0],[34.969325,32.526406,0],[34.969279,32.526429,0],[34.969229,32.526443,0],[34.96919,32.526449,0],[34.969142,32.526453,0],[34.969102,32.526452,0],[34.969051,32.526446,0],[34.969001,32.526433,0],[34.968953,32.526415,0],[34.968595,32.526312,0],[34.968555,32.5263,0],[34.968513,32.526294,0],[34.96847,32.526295,0],[34.968429,32.526303,0],[34.968395,32.526314,0],[34.968357,32.526339,0],[34.968325,32.52637,0],[34.9683,32.526392,0],[34.968291,32.526421,0],[34.968273,32.52646,0],[34.968238,32.52651,0],[34.968195,32.526557,0],[34.968145,32.526599,0],[34.968101,32.526633,0],[34.968045,32.526665,0],[34.967985,32.526691,0],[34.967922,32.526711,0],[34.967857,32.526724,0],[34.967799,32.526729,0],[34.967728,32.526732,0],[34.967659,32.526728,0],[34.967378,32.526753,0],[34.967131,32.526639,0],[34.966806,32.526593,0],[34.966538,32.526645,0],[34.966117,32.526607,0],[34.966136,32.526666,0],[34.966141,32.526739,0],[34.966394,32.528516,0],[34.966382,32.5286,0],[34.966077,32.528507,0],[34.965897,32.528512,0],[34.965717,32.528548,0],[34.965502,32.528445,0],[34.96549,32.528415,0],[34.965468,32.52839,0],[34.965441,32.528368,0],[34.965406,32.528352,0],[34.965374,32.528342,0],[34.965337,32.528339,0],[34.9653,32.528341,0],[34.965261,32.528349,0],[34.965193,32.528354,0],[34.965169,32.52833,0],[34.965137,32.528312,0],[34.965101,32.5283,0],[34.965071,32.528286,0],[34.965034,32.528285,0],[34.964998,32.52829,0],[34.96497,32.528309,0],[34.964937,32.528326,0],[34.964909,32.528349,0],[34.964887,32.528376,0],[34.964824,32.528418,0],[34.964702,32.528431,0],[34.964667,32.528412,0],[34.96463,32.528399,0],[34.964587,32.528395,0],[34.964551,32.528395,0],[34.964512,32.528402,0],[34.964469,32.528423,0],[34.964354,32.52847,0],[34.964224,32.528502,0],[34.963884,32.528498,0],[34.9635,32.528436,0],[34.963327,32.528303,0],[34.96309,32.528369,0],[34.962947,32.528501,0],[34.96279,32.528697,0],[34.962733,32.528729,0],[34.96264,32.528747,0],[34.962337,32.528713,0],[34.962124,32.528785,0],[34.961761,32.529066,0],[34.96164,32.5291,0],[34.961408,32.529297,0],[34.961331,32.529436,0],[34.961248,32.529505,0],[34.960956,32.529569,0],[34.960991,32.529658,0],[34.961023,32.529758,0],[34.9611,32.529878,0],[34.961087,32.530322,0],[34.961071,32.530763,0],[34.961056,32.531203,0],[34.96104,32.531632,0],[34.961024,32.532085,0],[34.961009,32.532533,0],[34.960993,32.533019,0],[34.960974,32.533499,0],[34.961072,32.533483,0],[34.961459,32.533496,0],[34.961799,32.533506,0],[34.962131,32.533514,0],[34.962454,32.533514,0]]]},"type":"Feature","properties":{"Name":"10213"}},{"geometry":{"type":"Polygon","coordinates":[[[34.969675,32.534955,0],[34.969821,32.534669,0],[34.96998,32.534372,0],[34.970003,32.534328,0],[34.970135,32.534071,0],[34.970243,32.533868,0],[34.970294,32.533773,0],[34.97032,32.533724,0],[34.970333,32.533699,0],[34.97014,32.533685,0],[34.96961,32.533678,0],[34.969157,32.533679,0],[34.968828,32.533667,0],[34.968505,32.533661,0],[34.968192,32.533655,0],[34.967875,32.533649,0],[34.967582,32.533644,0],[34.967287,32.533638,0],[34.966992,32.533628,0],[34.966694,32.53362,0],[34.966389,32.533614,0],[34.966121,32.533606,0],[34.965773,32.533598,0],[34.965474,32.533596,0],[34.965173,32.533588,0],[34.964876,32.533576,0],[34.964581,32.533573,0],[34.964284,32.533562,0],[34.963986,32.533557,0],[34.963689,32.533549,0],[34.963384,32.533547,0],[34.963072,32.533535,0],[34.962757,32.533529,0],[34.962454,32.533514,0],[34.962131,32.533514,0],[34.961799,32.533506,0],[34.961459,32.533496,0],[34.961072,32.533483,0],[34.960974,32.533499,0],[34.960962,32.533578,0],[34.960956,32.534079,0],[34.960942,32.534584,0],[34.960907,32.534849,0],[34.960857,32.535093,0],[34.960754,32.535575,0],[34.960655,32.536044,0],[34.960551,32.536535,0],[34.960442,32.537048,0],[34.960331,32.537572,0],[34.960215,32.538119,0],[34.960099,32.538668,0],[34.959951,32.539364,0],[34.959769,32.540282,0],[34.959732,32.540344,0],[34.958874,32.540895,0],[34.958843,32.54093,0],[34.958891,32.540937,0],[34.958962,32.540948,0],[34.959033,32.540958,0],[34.960761,32.541436,0],[34.960832,32.541465,0],[34.960919,32.54141,0],[34.963917,32.539295,0],[34.96397,32.539267,0],[34.964083,32.539206,0],[34.965543,32.538433,0],[34.966024,32.538178,0],[34.966576,32.537885,0],[34.967001,32.537657,0],[34.967231,32.537437,0],[34.967285,32.537386,0],[34.96759,32.537094,0],[34.967805,32.53689,0],[34.967938,32.536763,0],[34.968149,32.536561,0],[34.968269,32.536446,0],[34.968529,32.536199,0],[34.968598,32.536132,0],[34.968878,32.535867,0],[34.968914,32.535833,0],[34.969221,32.53554,0],[34.969522,32.535253,0],[34.96955,32.5352,0],[34.969675,32.534955,0]]]},"type":"Feature","properties":{"Name":"10212"}},{"geometry":{"type":"Polygon","coordinates":[[[34.9611,32.529878,0],[34.961023,32.529758,0],[34.960991,32.529658,0],[34.960956,32.529569,0],[34.960576,32.529529,0],[34.960182,32.529435,0],[34.959789,32.529355,0],[34.959388,32.529269,0],[34.958996,32.529253,0],[34.958612,32.529269,0],[34.958217,32.529224,0],[34.957832,32.529246,0],[34.957447,32.529265,0],[34.957068,32.529363,0],[34.956298,32.529561,0],[34.956311,32.529664,0],[34.956324,32.52976,0],[34.95641,32.530437,0],[34.956468,32.530895,0],[34.956523,32.531327,0],[34.956576,32.531746,0],[34.95663,32.532169,0],[34.956683,32.532593,0],[34.956712,32.532818,0],[34.956738,32.533023,0],[34.956794,32.533465,0],[34.956853,32.533926,0],[34.956912,32.534394,0],[34.956922,32.534475,0],[34.956982,32.534942,0],[34.957044,32.535434,0],[34.957068,32.535621,0],[34.95684,32.535961,0],[34.956611,32.536303,0],[34.956423,32.536508,0],[34.955993,32.536977,0],[34.95562,32.538196,0],[34.955859,32.538878,0],[34.955821,32.538928,0],[34.955752,32.538866,0],[34.955362,32.538559,0],[34.95541,32.53944,0],[34.956214,32.539825,0],[34.958843,32.54093,0],[34.958874,32.540895,0],[34.959732,32.540344,0],[34.959769,32.540282,0],[34.959951,32.539364,0],[34.960099,32.538668,0],[34.960215,32.538119,0],[34.960331,32.537572,0],[34.960442,32.537048,0],[34.960551,32.536535,0],[34.960655,32.536044,0],[34.960754,32.535575,0],[34.960857,32.535093,0],[34.960907,32.534849,0],[34.960942,32.534584,0],[34.960956,32.534079,0],[34.960962,32.533578,0],[34.960974,32.533499,0],[34.960993,32.533019,0],[34.961009,32.532533,0],[34.961024,32.532085,0],[34.96104,32.531632,0],[34.961056,32.531203,0],[34.961071,32.530763,0],[34.961087,32.530322,0],[34.9611,32.529878,0]]]},"type":"Feature","properties":{"Name":"10211"}},{"geometry":{"type":"Polygon","coordinates":[[[34.944062,32.570104,0],[34.944165,32.570097,0],[34.944066,32.570034,0],[34.943895,32.569926,0],[34.943713,32.569811,0],[34.943633,32.569761,0],[34.94356,32.569695,0],[34.943459,32.569604,0],[34.943422,32.569562,0],[34.943362,32.569495,0],[34.943082,32.56918,0],[34.94279,32.56889,0],[34.942641,32.568742,0],[34.942492,32.568593,0],[34.94234,32.568442,0],[34.942256,32.568359,0],[34.941969,32.568073,0],[34.941883,32.567988,0],[34.941742,32.567848,0],[34.941699,32.567805,0],[34.941518,32.567626,0],[34.941457,32.567565,0],[34.941369,32.567478,0],[34.941159,32.567269,0],[34.941043,32.567153,0],[34.940944,32.567055,0],[34.940876,32.566988,0],[34.940779,32.566891,0],[34.940644,32.566757,0],[34.940631,32.566743,0],[34.940483,32.566597,0],[34.940482,32.566597,0],[34.940403,32.566578,0],[34.940324,32.56656,0],[34.940258,32.566545,0],[34.940242,32.566541,0],[34.940129,32.566515,0],[34.939988,32.566484,0],[34.939908,32.566466,0],[34.939889,32.566462,0],[34.939799,32.566442,0],[34.939739,32.566425,0],[34.939738,32.566401,0],[34.939735,32.566373,0],[34.939721,32.566192,0],[34.939736,32.566118,0],[34.93975,32.566046,0],[34.93976,32.566014,0],[34.939764,32.566003,0],[34.939772,32.565976,0],[34.939806,32.565907,0],[34.939847,32.565824,0],[34.939877,32.565762,0],[34.939896,32.565723,0],[34.939914,32.565687,0],[34.939948,32.56562,0],[34.939963,32.565588,0],[34.93998,32.565553,0],[34.939983,32.565547,0],[34.940009,32.565488,0],[34.940012,32.56548,0],[34.940029,32.565446,0],[34.940047,32.565419,0],[34.940137,32.565282,0],[34.940182,32.565213,0],[34.94022,32.565157,0],[34.940258,32.565101,0],[34.940313,32.565019,0],[34.940361,32.564951,0],[34.940457,32.564821,0],[34.940497,32.564764,0],[34.940441,32.564714,0],[34.940294,32.564584,0],[34.940158,32.56446,0],[34.940024,32.564334,0],[34.939899,32.564197,0],[34.939868,32.564161,0],[34.939845,32.564129,0],[34.939747,32.564027,0],[34.939635,32.563867,0],[34.939489,32.563927,0],[34.939549,32.564022,0],[34.939105,32.563999,0],[34.93895,32.564,0],[34.938783,32.56412,0],[34.938832,32.564396,0],[34.938642,32.565011,0],[34.938553,32.565207,0],[34.937646,32.565425,0],[34.937524,32.5651,0],[34.935735,32.565232,0],[34.935633,32.565259,0],[34.935381,32.565324,0],[34.935277,32.565348,0],[34.935227,32.565359,0],[34.935068,32.5654,0],[34.934019,32.565674,0],[34.933304,32.565862,0],[34.9332,32.565889,0],[34.933119,32.56591,0],[34.932923,32.565921,0],[34.932912,32.565922,0],[34.9329,32.566067,0],[34.932856,32.566586,0],[34.932791,32.567122,0],[34.932714,32.567476,0],[34.93295,32.567493,0],[34.93287,32.567757,0],[34.932887,32.567758,0],[34.932999,32.567764,0],[34.932934,32.568011,0],[34.932902,32.568131,0],[34.932783,32.568523,0],[34.93267,32.56885,0],[34.932652,32.568908,0],[34.93252,32.569317,0],[34.932648,32.56954,0],[34.932513,32.570153,0],[34.932379,32.570761,0],[34.932232,32.570721,0],[34.932134,32.571028,0],[34.932102,32.571126,0],[34.932093,32.571153,0],[34.931976,32.571494,0],[34.931904,32.571703,0],[34.931828,32.571689,0],[34.931743,32.571673,0],[34.931704,32.571799,0],[34.931677,32.571891,0],[34.93153,32.57233,0],[34.931432,32.572628,0],[34.931389,32.57276,0],[34.931298,32.573031,0],[34.931888,32.572906,0],[34.936807,32.571885,0],[34.937486,32.571744,0],[34.937527,32.571735,0],[34.937574,32.571736,0],[34.937618,32.571732,0],[34.937679,32.571727,0],[34.937886,32.571708,0],[34.938375,32.571659,0],[34.939135,32.571636,0],[34.939207,32.571633,0],[34.93926,32.571631,0],[34.939362,32.571626,0],[34.939472,32.571623,0],[34.939624,32.571619,0],[34.939991,32.571609,0],[34.940226,32.571603,0],[34.940891,32.571538,0],[34.942701,32.570574,0],[34.943278,32.570267,0],[34.943876,32.570142,0],[34.943984,32.57012,0],[34.94399,32.570119,0],[34.944062,32.570104,0]]]},"type":"Feature","properties":{"Name":"10195"}},{"geometry":{"type":"Polygon","coordinates":[[[34.933104,32.565906,0],[34.93506,32.565398,0],[34.935218,32.565355,0],[34.935347,32.565325,0],[34.935366,32.56532,0],[34.935462,32.565295,0],[34.935722,32.565228,0],[34.935886,32.56522,0],[34.937524,32.5651,0],[34.937608,32.565327,0],[34.937646,32.565425,0],[34.937843,32.565376,0],[34.938154,32.565302,0],[34.938553,32.565207,0],[34.938642,32.565011,0],[34.938715,32.564779,0],[34.938746,32.564679,0],[34.938802,32.564496,0],[34.938832,32.564396,0],[34.938814,32.564295,0],[34.938783,32.56412,0],[34.938946,32.564003,0],[34.93895,32.564,0],[34.939105,32.563999,0],[34.939235,32.564006,0],[34.939549,32.564022,0],[34.939489,32.563927,0],[34.93962,32.563875,0],[34.939635,32.563867,0],[34.939534,32.563716,0],[34.93953,32.563708,0],[34.939438,32.563552,0],[34.939434,32.563546,0],[34.939419,32.563523,0],[34.939327,32.563384,0],[34.939223,32.56318,0],[34.939216,32.563164,0],[34.939093,32.563003,0],[34.938945,32.562804,0],[34.938878,32.562711,0],[34.938821,32.562632,0],[34.938737,32.562517,0],[34.938693,32.562456,0],[34.938564,32.562282,0],[34.938555,32.562269,0],[34.938554,32.562268,0],[34.9384,32.562051,0],[34.938309,32.561944,0],[34.938301,32.561929,0],[34.938309,32.561837,0],[34.938314,32.561795,0],[34.938336,32.561582,0],[34.938356,32.561399,0],[34.938359,32.56134,0],[34.938365,32.561267,0],[34.938431,32.561235,0],[34.938408,32.561206,0],[34.938195,32.560936,0],[34.938169,32.560904,0],[34.937635,32.56023,0],[34.93756,32.560135,0],[34.937426,32.559966,0],[34.936342,32.559326,0],[34.935323,32.559827,0],[34.935173,32.559903,0],[34.93499,32.559992,0],[34.934739,32.560117,0],[34.934299,32.560335,0],[34.93412,32.560423,0],[34.934007,32.560478,0],[34.933995,32.560484,0],[34.933965,32.560499,0],[34.93388,32.560539,0],[34.933868,32.560547,0],[34.933776,32.560594,0],[34.933623,32.560669,0],[34.933524,32.560415,0],[34.933369,32.560011,0],[34.933075,32.559258,0],[34.932951,32.558958,0],[34.932857,32.559003,0],[34.932583,32.559152,0],[34.932535,32.559227,0],[34.932433,32.559387,0],[34.932368,32.5595,0],[34.932352,32.559518,0],[34.931974,32.55956,0],[34.931654,32.559607,0],[34.93161,32.559788,0],[34.931553,32.560013,0],[34.931671,32.560405,0],[34.931913,32.561286,0],[34.932176,32.56216,0],[34.932324,32.562618,0],[34.932445,32.563019,0],[34.932624,32.563656,0],[34.932662,32.56379,0],[34.932695,32.563909,0],[34.932786,32.564542,0],[34.932815,32.564784,0],[34.932875,32.565679,0],[34.932895,32.565927,0],[34.933104,32.565906,0]]]},"type":"Feature","properties":{"Name":"10191"}}]} \ No newline at end of file diff --git a/data/index.js b/data/index.js index 833de4d..281f516 100644 --- a/data/index.js +++ b/data/index.js @@ -4,8 +4,7 @@ var municipalities = { 32.071151, 34.80989 ], - "display": "\u05d2\u05d1\u05e2\u05ea\u05d9\u05d9\u05dd", - "file": "data/givataiim.json" + "display": "\u05d2\u05d1\u05e2\u05ea\u05d9\u05d9\u05dd" }, "jerusalem": { "center": [ @@ -13,8 +12,42 @@ var municipalities = { 35.202637 ], "display": "\u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd", - "file": "data/jerusalem.json", "fb_link": "https://www.facebook.com/opentaba.jerusalem", + "server": "http://opentaba-server.herokuapp.com/", "twitter_link": "https://twitter.com/opentaba_JLM" + }, + "petach.tikva": { + "bounds": [ + [ + 32.046416, + 34.836386 + ], + [ + 32.13224, + 34.948608 + ] + ], + "center": [ + 32.108091, + 34.895347 + ], + "display": "\u05e4\u05ea\u05d7 \u05ea\u05e7\u05d5\u05d5\u05d4" + }, + "rishon": { + "bounds": [ + [ + 31.929436, + 34.709799 + ], + [ + 32.014065, + 34.853934 + ] + ], + "center": [ + 31.973101, + 34.776596 + ], + "display": "\u05e8\u05d0\u05e9\u05d5\u05df \u05dc\u05e6\u05d9\u05d5\u05df" } }; diff --git a/data/jerusalem.json b/data/jerusalem.json index 1579207..5213297 100644 --- a/data/jerusalem.json +++ b/data/jerusalem.json @@ -1 +1 @@ -{"type":"Topology","objects":{"gushim":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"","arcs":[[0],[-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]]},{"type":"Polygon","id":"0","arcs":[[34]]},{"type":"Polygon","id":"28046","arcs":[[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]]},{"type":"Polygon","id":"28047","arcs":[[61,62,63,64,65,66,67,68,69,70,71]]},{"type":"Polygon","id":"28048","arcs":[[-54,72,73,74,75,76,77,78,-71,79,80]]},{"type":"Polygon","id":"28049","arcs":[[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,-49,99,100,-46,101,102,103,-42,104,-40]]},{"type":"Polygon","id":"28050","arcs":[[-91,105,-89,106,-87,107,-85,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138]]},{"type":"Polygon","id":"28051","arcs":[[139,140,141,142,143,144,145,146,147,148,149,150,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],[-185,-186]]},{"type":"Polygon","id":"28052","arcs":[[186,187,188,189,-131,190,191,192,193,-126,194,-124,195,-122,196,-120,197,-118,198,199,-115,200,201,-112,202,-110,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,-171,223,224,225,-167,226,-165,227,228,-162,229,230,231,232,-157,233,-155,234,-153,235,-151,236,-149,237,238,239,-145,-138,240,-136]]},{"type":"Polygon","id":"28053","arcs":[[-172,-223,241,242,243,-219,244,245,246,247,248,-213,249,250,-210,251,252,253,-206,254,255,256,257,258,259,260,261,262,263]]},{"type":"Polygon","id":"28054","arcs":[[264,265,266,267,268,269,-263,270,271,272,273,274,275,276,277,278,279,280,281],[282]]},{"type":"Polygon","id":"28055","arcs":[[-282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299]]},{"type":"Polygon","id":"28107","arcs":[[300,301,302,303,304,305,-182,306,-180,307,308,309]]},{"type":"Polygon","id":"28108","arcs":[[310,-301,311,312,313,-50,-99,314,315,-96,316,317,318,319,-143,320,-141,-303]]},{"type":"Polygon","id":"28109","arcs":[[321,322,323,324,325,326,327,328,329,330,-269,331,-267,332,-265,-300,333,-298,334,-296,335,336,337,338]]},{"type":"Polygon","id":"28110","arcs":[[339]]},{"type":"Polygon","id":"28113","arcs":[[-259,340,-257,341,342,343,344,345,-261,346]]},{"type":"Polygon","id":"28115","arcs":[[-52,347,-313,348,-73,349]]},{"type":"Polygon","id":"28116","arcs":[[350,351,352,353,354,-75]]},{"type":"Polygon","id":"29501","arcs":[[355,356]]},{"type":"Polygon","id":"29505","arcs":[[357,358,-356,359]]},{"type":"Polygon","id":"29506","arcs":[[360,361,-358,362]]},{"type":"Polygon","id":"29508","arcs":[[363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,-361,378]]},{"type":"Polygon","id":"29509","arcs":[[379,380,381,382,383,-377,384,385,386,387,388,389]]},{"type":"Polygon","id":"29510","arcs":[[390,391,392,393,394,395,396,397,398,399,400,401,402,403,-390,404,405,406,407,408,409,410,-365,411,412,413]]},{"type":"Polygon","id":"29511","arcs":[[414,415,-414,416,417]]},{"type":"Polygon","id":"29512","arcs":[[418,-418,419]]},{"type":"Polygon","id":"29668","arcs":[[420,-398,421,-396,422,423,424,425,426,427,428,429,430,431,432,433,434,435,-400]]},{"type":"Polygon","id":"29669","arcs":[[-401,436,-435,437,438,439,440,441,442,443,444,445,446,447,448,449,-380,-404,450,-402]]},{"type":"Polygon","id":"29825","arcs":[[451,452,453,454]]},{"type":"Polygon","id":"29826","arcs":[[455,456,457,-454]]},{"type":"Polygon","id":"29827","arcs":[[458,459,460,-457]]},{"type":"Polygon","id":"29828","arcs":[[461,462,463,464,-460,465]]},{"type":"Polygon","id":"29835","arcs":[[466,467,468,-452,469]]},{"type":"Polygon","id":"29839","arcs":[[470,-467,471]]},{"type":"Polygon","id":"29844","arcs":[[-463,472,473,474]]},{"type":"Polygon","id":"29856","arcs":[[475,476,-464,-475]]},{"type":"Polygon","id":"29909","arcs":[[477,-175,478,479,-186,480,-177]]},{"type":"Polygon","id":"29910","arcs":[[481,482,483,-179,484,485]]},{"type":"Polygon","id":"29911","arcs":[[486,487,-466,-459,-456,-453,-469]]},{"type":"Polygon","id":"29912","arcs":[[488,489,-473,-462,-488,490]]},{"type":"Polygon","id":"29913","arcs":[[491,492,493,-489,494,495]]},{"type":"Polygon","id":"29914","arcs":[[496,-492,497,498]]},{"type":"Polygon","id":"29915","arcs":[[499,500,501,502,-499,503]]},{"type":"Polygon","id":"29918","arcs":[[504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536]]},{"type":"Polygon","id":"29919","arcs":[[537,538,539,540,541,542,543,544,545,-537,546]]},{"type":"Polygon","id":"29920","arcs":[[547,-544,548,549,550,551,552,553,554,555]]},{"type":"Polygon","id":"29921","arcs":[[-546,556,557,558,559,-505]]},{"type":"Polygon","id":"29922","arcs":[[-559,560,561,562,563,564,565]]},{"type":"Polygon","id":"29923","arcs":[[566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581]]},{"type":"Polygon","id":"29924","arcs":[[582,583,-493,-497,-503,584,-580]]},{"type":"Polygon","id":"29926","arcs":[[-494,-584,585,-476,-474,-490]]},{"type":"Polygon","id":"29928","arcs":[[586,-565,587,-563,588,-578,589,-576,590,591,-573,592,593,-570,594,595,-567,596,-581,-585,-502]]},{"type":"Polygon","id":"29929","arcs":[[-558,597,-561]]},{"type":"Polygon","id":"29933","arcs":[[598,599,600]]},{"type":"Polygon","id":"29934","arcs":[[601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,-600],[616]]},{"type":"Polygon","id":"29935","arcs":[[617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,-606,641,-604,642,-602,-599]]},{"type":"Polygon","id":"29936","arcs":[[643,-615,644,-613,-611,645,-609,646]]},{"type":"Polygon","id":"29937","arcs":[[647,648,649,650,651,652,-647,-607,-641,653,654,655,-637,656,-635,657,-633,658,-631]]},{"type":"Polygon","id":"29938","arcs":[[659,660,661,662,663,664,665,-649,-629,666,-627,667,-625,668,-623,669,-621,670,-619,671]]},{"type":"Polygon","id":"29939","arcs":[[672,-664,673,-662,674,-660,675,676,677,-652,678,-650,-666]]},{"type":"Polygon","id":"29940","arcs":[[679,-677]]},{"type":"Polygon","id":"29941","arcs":[[680,-495,-491,-487,-468,-471]]},{"type":"Polygon","id":"29944","arcs":[[681,682,-500,683,684,685,686,687]]},{"type":"Polygon","id":"29945","arcs":[[688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,-514,713,714,-511,715,-509,716,-507,717,-682,718,719,720]]},{"type":"Polygon","id":"29946","arcs":[[721,722,723,724,725,726,727,-547,-536,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749]]},{"type":"Polygon","id":"29947","arcs":[[-733,750,-731,751,-729,-535,752,-533,753,754,755,-529,756,-527,757,-525,758,759,-522,760,-520,761,762,763,-516,-712,764,765,766]]},{"type":"Polygon","id":"29951","arcs":[[767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803]]},{"type":"Polygon","id":"29952","arcs":[[-802,804,805,806]]},{"type":"Polygon","id":"29953","arcs":[[807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834]]},{"type":"Polygon","id":"29954","arcs":[[835,836,837,838,839,840,841,842,843,-803,844,845]]},{"type":"Polygon","id":"29955","arcs":[[846,847,848,849,850,851,-846,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872]]},{"type":"Polygon","id":"29956","arcs":[[873,-869,874,-867,875,-865,876,-863,877,878,879,880,-858,881,882,883,-854,884,885,886,887,888,889,890]]},{"type":"Polygon","id":"29957","arcs":[[-853,-845,-807,891,-830,892,-828,893,-826,894,895,896,897,-821,898,899,-818,900,-816,901,-814,902,-812,903,-810,904,-808,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,-886,953]]},{"type":"Polygon","id":"29959","arcs":[[954,-924,955,-922,956,957,-919,958,-917,959,960,-914,961,962,963,964,-909,965,966,-906,-835,967]]},{"type":"Polygon","id":"29960","arcs":[[968,-889,969,-951,970,971,-948,972,-946,973,-944,974,975,-941,976,977,-938,978,-936,979,-934,980,-932,981,-930,982,-928,983,984,985,-968,-834,986]]},{"type":"Polygon","id":"29981","arcs":[[987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003]]},{"type":"Polygon","id":"29982","arcs":[[1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032]]},{"type":"Polygon","id":"29983","arcs":[[1033,1034,1035,1036,1037,1038,-998,1039,-996,1040,-994,1041,-992,1042,-990,1043,-988,1044,1045,1046,-1020,1047,-1018,1048,-1016,1049,1050,1051,-1012,1052,1053,-1009,1054,1055,-1006,1056,1057,1058,1059,1060]]},{"type":"Polygon","id":"29984","arcs":[[1061,1062,1063,1064,-1003,1065,-1001,1066,-999,-1039,1067,-1037,1068,-1035,1069,-1061,1070,1071,1072,1073,1074]]},{"type":"Polygon","id":"29985","arcs":[[1075,1076,1077,1078,1079,-1074,1080,-1072,1081,-1059,1082,-1057,-1005,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094]]},{"type":"Polygon","id":"29986","arcs":[[1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,-1063,1111,-1075,-1080,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142]]},{"type":"Polygon","id":"29987","arcs":[[1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,-1064,-1111,1156,-1109,1157,-1107,1158,-1105,1159,1160]]},{"type":"Polygon","id":"29988","arcs":[[1161,-1155]]},{"type":"Polygon","id":"29989","arcs":[[1162,1163,1164,-1152,1165,1166,-1149,1167,-1147,1168,-1145,1169,-1161,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186]]},{"type":"Polygon","id":"29990","arcs":[[1187,1188,-16,1189,1190,1191,-1178,1192,-1176,1193,1194,-1173,1195,-1171,-1160,-1104,1196,-1102,1197,-1100,1198,-1098,1199,-1096,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230]]},{"type":"Polygon","id":"29991","arcs":[[1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,-1187,1241,1242,1243,1244,-1182,1245,1246,1247,-1191,1248,-18,1249,1250,1251,1252,1253]]},{"type":"Polygon","id":"29992","arcs":[[1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,-1251,1269,18,17,16,15,1270,-1188,1271,1272,-1229,1273,-1227,1274,-1225,1275,-1223,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,13,1288]]},{"type":"Polygon","id":"29993","arcs":[[-1239,1289,-1237,1290,-1235,1291,-1233,1292,-1254,1293,-1252,-1269,1294,-1267,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306]]},{"type":"Polygon","id":"29994","arcs":[[1307,-1306,1308,1309,1310,-1302,1311,1312,1313,1314,-1297,1315,1316,1317,1318,-1262,1319,-1260,1320,-1258,1321,1322,1323,1324]]},{"type":"Polygon","id":"29995","arcs":[[1325,1326,1327,1328,1329,1330,1331,1332,-1325,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357]]},{"type":"Polygon","id":"29996","arcs":[[1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,-1332,1373,1374,1375,1376,-1327,1377,1378,1379,1380,1381,1382,-1353,1383,-1351,1384,-1349,1385,-1347,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411]]},{"type":"Polygon","id":"29997","arcs":[[1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440]]},{"type":"Polygon","id":"29998","arcs":[[-1440,1441,-1438,1442,1443,-1435,1444,-1433,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460]]},{"type":"Polygon","id":"29999","arcs":[[-1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471]]},{"type":"Polygon","id":"30000","arcs":[[1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499]]},{"type":"Polygon","id":"30001","arcs":[[1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538]]},{"type":"Polygon","id":"30002","arcs":[[1539,-1535,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,-1537]]},{"type":"Polygon","id":"30003","arcs":[[1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601]]},{"type":"Polygon","id":"30004","arcs":[[-1593,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673]]},{"type":"Polygon","id":"30005","arcs":[[1674,-1667,1675,-1665,1676,1677,1678,-1661,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,-1669]]},{"type":"Polygon","id":"30006","arcs":[[1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,-1687,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007]]},{"type":"Polygon","id":"30007","arcs":[[-1672,2008,-1670,-1691,2009,2010,2011,-1705,2012,-1703,2013,-1701,2014,-1699,2015,-1697,2016,2017,2018,2019,2020,-2008,2021,2022,-2005,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049]]},{"type":"Polygon","id":"30008","arcs":[[-1674,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,-1594]]},{"type":"Polygon","id":"30009","arcs":[[2060,2061,2062,2063,2064,2065,2066,-2051,-1673,-2050,2067,-2048,2068,-2046,2069,2070,2071,2072]]},{"type":"Polygon","id":"30010","arcs":[[2073,2074,2075,2076,2077,-1595,-2060,2078,-2058,2079,2080,2081,-2054,2082,2083,-2066,2084,-2064,2085,2086,2087]]},{"type":"Polygon","id":"30011","arcs":[[2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,-1602,2103,2104,2105,-1598,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123]]},{"type":"Polygon","id":"30012","arcs":[[2124,-2118,2125,2126,-2115,2127,2128,-2112,2129,-2110,2130,2131,2132,2133,-2078,2134,-2076,2135,-2074,2136,2137]]},{"type":"Polygon","id":"30013","arcs":[[2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,-1539,2154,2155,2156,2157,2158]]},{"type":"Polygon","id":"30014","arcs":[[2159,-1590,2160,-1588,2161,-1586,2162,-1584,2163,-1582,2164,-1580,2165,-1578,2166,-1576,2167,-1574,2168,2169,2170,2171,-2157,2172,-2155,-1538,2173,-1558,2174,-1556,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,-1603,-1592]]},{"type":"Polygon","id":"30015","arcs":[[-2158,-2172,2188,-2170,-1572,2189]]},{"type":"Polygon","id":"30016","arcs":[[2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,-2159,-2190,-1571,2201,-1569,2202,-1567,2203,2204,-1564,2205,2206,-1561,-2102,2207,2208,2209,2210,2211]]},{"type":"Polygon","id":"30017","arcs":[[2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,-2089,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247]]},{"type":"Polygon","id":"30018","arcs":[[2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,-2220,2264,-2218,2265,-2216,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284]]},{"type":"Polygon","id":"30019","arcs":[[2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,-2258,2303,2304,2305,-2254,2306,-2252,2307,-2250,2308,2309,2310,2311,2312,2313,2314,2315,-2278,2316,2317,2318,2319,2320]]},{"type":"Polygon","id":"30019S","arcs":[[-1032,2321,-1030,2322,-1028,2323,-1026,2324,-1024,2325,-2300,2326,-2298,2327,-2296,2328,2329,-2293,2330,-2291,2331,2332,-2288,2333,2334]]},{"type":"Polygon","id":"30020","arcs":[[2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,-2334,-2287,2357,-2321,2358,-2319,2359,2360,-2274,2361,2362,2363,-2270,2364,-2268,2365,-2215,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384]]},{"type":"Polygon","id":"30021","arcs":[[2385,2386,-2137,-2088,2387,-2086,-2063,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401]]},{"type":"Polygon","id":"30022","arcs":[[2402,-2398,2403,2404,2405,-2394,2406,2407,-2391,2408,-2389,-2062,2409,-2073,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,-2400]]},{"type":"Polygon","id":"30023","arcs":[[2454,2455,-2070,-2045,2456,-2043,2457,-2041,2458,2459,2460,2461,2462,2463,-2444,2464,-2442,2465,2466,-2439,2467,-2437,2468,2469,-2434,2470,2471,2472,2473,-2429,2474,-2427,2475,-2425,2476,2477,2478,2479,2480,-2419,2481,-2417,2482,-2415,2483,-2413]]},{"type":"Polygon","id":"30024","arcs":[[-2040,2484,-2038,2485,-2036,2486,-2034,2487,2488,-2031,2489,-2029,2490,-2027,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,-2459]]},{"type":"Polygon","id":"30025","arcs":[[2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,-2460,-2502,2517,2518,2519,2520,2521,2522,2523]]},{"type":"Polygon","id":"30026","arcs":[[2524,2525,2526,2527,2528,2529,2530,2531,2532,-2452,2533,2534,2535,2536,-2447,2537,-2445,2538,-2463,2539,-2461,2540,2541,2542,-2514,2543,-2512,2544,-2510,2545,-2508,2546,-2506,2547,2548,-2503,2549,2550,2551,2552,2553],[2554],[2555]]},{"type":"Polygon","id":"30027","arcs":[[2556,-2402,2557,-2532,2558,2559,-2529,2560,2561,2562,2563,-2554,2564,2565,-2551,2566]]},{"type":"Polygon","id":"30028","arcs":[[2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634],[-2636,-2637,-2638,-2639,-2640,-2641,-2642,-2643,-2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651]]},{"type":"Polygon","id":"30029","arcs":[[2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,-2373,2711,2712,-2370,2713,-2368,2714,2715,2716,2717,2718,2719,-2245,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,-2598,2731,-2596,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,-2637,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,-2651,2758,2759,2760,2761]]},{"type":"Polygon","id":"30030","arcs":[[2762,-2707,2763,2764,2765,2766,-2702,2767,2768,2769,2770,2771,2772,-2695,2773,2774,2775,2776,2777,2778,-2688,2779,-2686,2780,2781,-2683,2782,2783,2784]]},{"type":"Polygon","id":"30031","arcs":[[2785,2786,2787,2788,2789,2790,2791,2792,-2709,-2785,2793,2794,2795,2796,-2676,2797,2798,2799,-2672,2800,2801,2802,-2668,2803,2804,2805,2806,2807,2808,-2661,2809,2810,-2658,2811,2812,-2655,2813,-2653,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831]]},{"type":"Polygon","id":"30032","arcs":[[2832,2833,-2385,2834,-2383,2835,2836,-2380,2837,-2786,2838,2839,2840]]},{"type":"Polygon","id":"30033","arcs":[[2841,2842,-2830,2843,-2827,2844,2845,2846,2847,-2823,2848,-2821,2849,2850,-2818,2851,2852,2853,2854,2855,-2652,-2762,2856,-2760,2857,2858,2859,-2580,2860,2861,2862,-2576,2863,-2574,2864,-2572,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891]]},{"type":"Polygon","id":"30034","arcs":[[2892,-2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913]]},{"type":"Polygon","id":"30035","arcs":[[2914,2915,2916,2917,2918,2919,2920,-2910,2921,-2908,2922,-2906,2923,-2904,2924,2925,2926,-2900,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968]]},{"type":"Polygon","id":"30036","arcs":[[2969,2970,2971,2972,-2890,2973,2974,-2887,2975,2976,2977,2978,2979,2980,-2880,2981,-2878,2982,-2876,2983,-2874,2984,-2872,2985,2986,2987,2988,2989,2990,2991,-2569,2992,-2635,2993,-2633,2994,2995,-2630,2996,-2628,2997,-2626,2998,-2624,2999,-2622,3000,-2620,3001,-2618,3002,-2616,3003,3004,3005,3006,3007,3008,3009,3010,3011,-2606,3012,3013,3014,3015,-2601,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,-2932]]},{"type":"Polygon","id":"30037","arcs":[[3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,-3018,3046,3047,3048,3049,3050,3051,3052]]},{"type":"Polygon","id":"30038","arcs":[[3053,-2523,3054,3055,3056,-3048]]},{"type":"Polygon","id":"30039","arcs":[[-3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069]]},{"type":"Polygon","id":"30040","arcs":[[3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098]]},{"type":"Polygon","id":"30041","arcs":[[3099,3100,3101,3102,3103,-3067,3104,-3065,3105,-3063,3106,-3080,3107,3108,3109,3110,3111,3112,3113,-3072,3114,3115,3116,3117,3118,3119]]},{"type":"Polygon","id":"30042","arcs":[[3120,-3049,-3057,-3070,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135]]},{"type":"Polygon","id":"30043","arcs":[[3136,3137,3138,3139,-3052,3140,-3050,-3121,3141,-3135,3142,3143,-3132,3144,-3130,3145,-3128,3146,-3126,3147,3148,-3100,3149,3150,-3118,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165]]},{"type":"Polygon","id":"30044","arcs":[[3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197]]},{"type":"Polygon","id":"30045","arcs":[[3198,3199,3200,3201,3202,-3177,3203]]},{"type":"Polygon","id":"30046","arcs":[[3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,-3199,3217,3218]]},{"type":"Polygon","id":"30047","arcs":[[3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,-3155,3233,3234,3235,-3200,3236,-3216,3237,-3214]]},{"type":"Polygon","id":"30048","arcs":[[3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,-3162,3262,3263,3264,3265,3266,3267,3268,3269,-3230,3270,3271,-3227,3272,3273,3274,3275,3276,-3221,3277,3278,3279,3280,3281,3282,3283,-3207,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296]]},{"type":"Polygon","id":"30049","arcs":[[3297,3298,3299,3300,3301,-2954,3302,3303,-2951,3304,-2949,3305,3306,3307,-2945,3308,3309,-2942,3310,-2940,3311,3312,3313,3314,3315,-2934,3316,3317,3318,-3030,3319,3320,3321,3322,-3025,3323,3324,3325,3326,3327,3328,3329,-3045,3330,3331,-3042,3332,3333,3334,-3038,3335,-3036,3336,-3034,3337,-3053,3338,3339,-3138,3340,-3166,3341,3342,3343,-3256,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362]]},{"type":"Polygon","id":"30050","arcs":[[3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,-3353,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418]]},{"type":"Polygon","id":"30051","arcs":[[3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467]]},{"type":"Polygon","id":"30052","arcs":[[3468,3469,3470,3471,3472,-3426,3473,3474,3475,3476,3477,-3420,3478,-3467,3479,3480,-3464,3481,-3462,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,-2964,3496,3497,3498,3499,-2959,3500,3501,3502,-2955,3503,-3301,3504,-3299,3505,-3363,3506,-3361,3507,3508,3509,3510,3511,3512,3513,3514,-3394,3515,-3392,3516,-3390,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530]]},{"type":"Polygon","id":"30053","arcs":[[3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,-3436,3557,-3434,3558,-3432,3559,3560,3561,-3428,3562,-3473,3563,-3471,3564,-3469,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574]]},{"type":"Polygon","id":"30054","arcs":[[3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,-2914,3593,3594,3595,3596,-3547,3597,3598,-3544,3599,3600,-3541,3601,3602,3603,-3537,3604,3605,3606,3607,-3532,3608,-3574,3609,3610,-3571,3611,-3569,3612,3613]]},{"type":"Polygon","id":"30055","arcs":[[3614,3615,3616,3617,3618,3619,3620,-3592,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,-3579,3633,3634,3635,3636]]},{"type":"Polygon","id":"30056","arcs":[[3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,-3620,3681,-3618,3682,-3616,3683,-3637,3684,3685,3686,3687,3688,3689,3690,3691,3692]]},{"type":"Polygon","id":"30057","arcs":[[3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,-1430,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,-3673,3770,-3671,3771,-3669,3772,-3667,3773,-3665,3774,-3663,3775,-3661,3776,3777,3778,-3657,3779,-3655,3780,-3653,3781,-3651,3782,-3649,3783,-3647,3784,-3645,3785,-3643,3786,-3641,3787,-3639,3788,3789,-3692,3790,-3690,3791,-3688,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840]]},{"type":"Polygon","id":"30058","arcs":[[3841,3842,3843,-3836,3844,-3834,3845,3846,-3831,3847,-3829,3848,3849,-3826,3850,3851,-3823,3852,3853,3854,-3819,3855,-3817,3856,3857,-3813,3858,-3811,3859,-3809,3860,-3807,3861,-3805,3862,-3803,3863,-3801,3864,-3799,3865,3866,-3796,3867,-3794,3868,-3686,3869,3870,3871,3872]]},{"type":"Polygon","id":"30059","arcs":[[-3635,3873,3874,3875,3876,-3568,3877,-3530,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894]]},{"type":"Polygon","id":"30060","arcs":[[-3885,3895,-3883,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,-3891,3922,3923,3924,-3887,3925]]},{"type":"Polygon","id":"30061","arcs":[[3926,-3902,3927,-3900,3928,-3898,3929,3930,-3881,3931,-3879,-3529,3932,3933,-3526,3934,3935,-3523,3936,-3521,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,-3904]]},{"type":"Polygon","id":"30062","arcs":[[3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,-3984,4018,-3982,4019,-3980,4020,-3978,4021,4022,-3975,4023,4024,4025,4026,4027,4028,4029,-3967,4030,4031,4032,-3963,4033,-3961,4034,-3959,4035,-3957,4036,-3955,4037,-3953,4038,-3951,4039,4040,-3948,4041,4042,-3945,4043,4044,-3942,4045,4046,4047,-3386,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090]]},{"type":"Polygon","id":"30063","arcs":[[4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,-3911,4112,4113,4114,4115,-3906,4116,-3991,4117,-3989,4118,-3987,4119,-3985,4120,-4017,4121,4122,-4014,4123,4124,-4011,4125,4126,4127,-4007,4128,4129,-4004,4130,-4002,4131,-4000,4132,-3998,4133,-3996,4134,-3994,4135,-4090,4136,-4088,4137,-4086,4138,4139,4140,4141,4142,4143]]},{"type":"Polygon","id":"30064","arcs":[[4144,4145,4146,4147,4148,-4139,-4085,4149,-4083,4150,4151,4152,-4079,4153,4154,4155,4156,-4074,4157,4158,4159,-4070,4160,4161,4162,4163,4164]]},{"type":"Polygon","id":"30065","arcs":[[4165,4166,4167,4168,4169,-4065,4170,-4063,4171,-4061,4172,4173,-4058,4174,-4056,4175,-4054,4176,4177,4178,4179,4180,-3383,4181,4182,-3380,4183,-3378,4184,4185,4186,4187,-3373,4188,-3371,4189,-3369,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,-4164,4208,-4162]]},{"type":"Polygon","id":"30066","arcs":[[4209,-4199,4210,-4197,4211,4212,4213,4214,4215,-4191,-3368,4216,4217,-3365,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,-4204,4249,4250,-4201]]},{"type":"Polygon","id":"30067","arcs":[[4251,4252,-4207,4253,-4205,-4249,4254,4255,-4246,4256,4257,-4243,4258,-4241,4259,-4239,4260,-4237,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279]]},{"type":"Polygon","id":"30068","arcs":[[4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,-4266]]},{"type":"Polygon","id":"30069","arcs":[[4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,-4290]]},{"type":"Polygon","id":"30070","arcs":[[4322,4323,-4297,4324,-4295,4325,4326,4327,4328,4329,4330,4331,4332,4333,-4265,4334,-4232,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,-4300]]},{"type":"Polygon","id":"30071","arcs":[[4355,-4226,4356,4357,-4223,4358,-3417,4359,-3415,4360,4361,-4351,4362,-4349,4363,4364,-4346,4365,-4344,4366,4367,4368,4369,4370,4371,4372,-4228]]},{"type":"Polygon","id":"30072","arcs":[[4373,-4301,4374,-4354,4375,4376,-4362,4377,4378,4379,4380,4381,4382]]},{"type":"Polygon","id":"30073","arcs":[[4383,4384,-3218,-3204,-3176,4385,-3174,4386,-3172,4387,4388,-3169,4389,-3167,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,-4380]]},{"type":"Polygon","id":"30074","arcs":[[4401,-3407,4402,-3405,-3350,4403,4404,4405,4406,4407,4408,4409,-3244,4410,-3242,4411,-3240,4412,4413,-3296,4414,-3294,4415,4416,4417,-3290,4418,4419,-3287,-3219,-4385,4420,-4378,-4361,-3414,-3413,4421,-3411,4422,-3409]]},{"type":"Polygon","id":"30075","arcs":[[4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464]]},{"type":"Polygon","id":"30076","arcs":[[4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,-4381,4488,4489,-4399,4490,4491,-4396,4492,4493,4494,-4430,4495,4496,4497,4498,4499]]},{"type":"Polygon","id":"30077","arcs":[[4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,-4498,4513,-4496,-4429,4514,-4427,4515,-4425,4516,-4465,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570]]},{"type":"Polygon","id":"30078","arcs":[[4571,-4321,4572,-4318,4573,4574,4575,-4314,4576,4577,-4311,4578,-4309,4579,4580,4581,4582,4583,-4303,4584,4585,-4484,4586,4587,4588,-4480,4589,-4478,4590,-4476,4591,4592,-4473,4593,-4471,4594,-4469,4595,-4467,4596,4597,-4499,-4513,4598,-4511,4599,4600,-4508,4601,-4506,4602,-4504,4603,4604,-4501,4605,4606,4607,4608,4609,4610,4611,4612]]},{"type":"Polygon","id":"30079","arcs":[[4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,-4610,4647,-4608,4648,-4606,-4571,4649,-4569,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665]]},{"type":"Polygon","id":"30080","arcs":[[4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,-4623,4704,-4621,4705,-4619,4706,-4617,4707,-4615,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724]]},{"type":"Polygon","id":"30081","arcs":[[4725,4726,4727,4728,4729,-4208,-4253,4730,-4280,4731,4732,4733,4734,-4275,4735,-4273,4736,4737,4738,-4269,4739,4740,4741,4742,4743]]},{"type":"Polygon","id":"30082","arcs":[[4744,4745,-4743,4746,-4741,-4267,-4294,4747,-4292,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757]]},{"type":"Polygon","id":"30083","arcs":[[4758,4759,4760,4761,-4145,4762,-4730,4763,-4728,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787]]},{"type":"Polygon","id":"30084","arcs":[[4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,-4744,-4746,4807,-4758,4808,4809,4810,4811,4812,4813,4814,4815,4816,-4702,4817,-4700,4818,-4698,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837]]},{"type":"Polygon","id":"30085","arcs":[[4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,-4767,4853,-4765,-4727,4854,4855,-4805,4856,4857,4858,4859,4860,4861,4862,4863,-4796,4864,4865,4866,-4792,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885]]},{"type":"Polygon","id":"30086","arcs":[[4886,4887,-4112,4888,4889,4890,4891,-4107,4892,4893,-4104,4894,4895,-4101,4896,4897,-4098,4898,4899,-4095,4900,4901,-4092,4902,-4143,4903,-4141,4904,4905,-4148,4906,-4146,-4762,4907,4908,4909,-4788,4910,4911,4912,-4784,4913,-4782,4914,-4780,4915,-4778,4916,4917,-4775,4918,4919,4920,-4771,4921,-4769,4922,-4852,4923,-4850,4924,4925,4926]]},{"type":"Polygon","id":"30087","arcs":[[4927,4928,4929,4930,4931,-4927,4932,-4925,-4849,4933,-4847,4934,4935,4936]]},{"type":"Polygon","id":"30088","arcs":[[4937,4938,4939,-3893,4940,4941,4942,-3919,4943,4944,-3916,4945,-3914,4946,-4887,-4932,4947]]},{"type":"Polygon","id":"30089","arcs":[[-3685,-3636,-3895,4948,-4939,4949,4950,4951,4952,4953,-3870]]},{"type":"Polygon","id":"30090","arcs":[[4954,-4930,4955,4956,4957,4958,4959,4960,4961,4962]]},{"type":"Polygon","id":"30091","arcs":[[4963,4964,4965,-4959,4966,-4957,4967,-4956,-4929,4968,-4937,4969,-4935,-4846,4970,-4844,4971,-4842,4972,4973]]},{"type":"Polygon","id":"30092","arcs":[[4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992]]},{"type":"Polygon","id":"30094","arcs":[[4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039]]},{"type":"Polygon","id":"30095","arcs":[[5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,-4964,5060,5061,5062,5063,5064,5065,5066,5067,5068]]},{"type":"Polygon","id":"30096","arcs":[[5069,5070,5071,5072,5073,5074,-5038,5075,5076,5077,-5034,5078,-5032,5079,5080,5081,5082,5083,5084,-5025,5085,-5023,5086,-5021,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,-5010,5097,5098,5099,5100,5101,5102,5103]]},{"type":"Polygon","id":"30097","arcs":[[5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132]]},{"type":"Polygon","id":"30099","arcs":[[5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176]]},{"type":"Polygon","id":"30100","arcs":[[5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,-5123,5189,5190,5191,-5066,5192,-5064,5193,-5062,5194,-5142,5195,5196]]},{"type":"Polygon","id":"30101","arcs":[[5197,-4822,5198,-4820,-4697,5199,-4695,5200]]},{"type":"Polygon","id":"30102","arcs":[[-5195,-5061,-4974,5201,-4840,5202,-4886,5203,-4884,5204,-4882,5205,5206,5207,5208,5209,-5143]]},{"type":"Polygon","id":"30103","arcs":[[5210,-4880,5211,-4878,5212,5213,-4875,5214,-4873,5215,5216,-4870,-4789,5217,5218,5219,5220,-4834,5221,-4832,5222,5223,-4829,5224,5225,5226,-4825,5227,5228,-5198,5229,-5206]]},{"type":"Polygon","id":"30104","arcs":[[-5207,-5230,-5201,-4694,5230,5231,-4691,5232,5233,-4688,5234,-4686,5235,5236,5237,5238,5239]]},{"type":"Polygon","id":"30105","arcs":[[5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,-5239,5250,-5237,-4684,5251,-4682,5252,-4680,5253,-4678,5254,5255,5256,-4674,5257,-4672,5258,5259,-4669,5260,5261,5262,5263,5264,5265,5266]]},{"type":"Polygon","id":"30106","arcs":[[5267,-5157,5268,-5155,5269,5270,-5152,5271,5272,5273,-5148,5274,-5146,5275,5276,-5210,5277,-5208,-5240,-5250,5278,-5248,5279,-5246,5280,5281,5282]]},{"type":"Polygon","id":"30107","arcs":[[5283,5284,-4441,5285,-4439,5286,5287,-4436,5288,-4434,5289,5290,-4431,-4495,-4393,5291,-4391,-3198,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,-4444]]},{"type":"Polygon","id":"30108","arcs":[[5320,-3179,5321,5322,-3099,5323,-3097,5324,5325,5326,-3093,-3184,5327,5328,-3181]]},{"type":"Polygon","id":"30109","arcs":[[5329,-3201,-3236,5330,-3234,5331,5332,-3152,5333,-3116,5334,-5322,-3178,-3203]]},{"type":"Polygon","id":"30110","arcs":[[-1408,5335,5336,5337,5338,-1403,5339,5340,-1400,5341,-1398,5342,5343,5344,5345,5346,-1392,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,-3677,5358,5359,-3674,-3770,5360,-3768,5361,-3766,5362,-3764,5363,-3762,5364,5365,5366,-3758,5367,-3756,5368,-3754,5369,5370,-3751,5371,-3749,5372,-3747,5373,5374,5375,5376,-3743,5377,5378,-3740,5379,-3738,5380,-3736,5381,5382,-3733,5383,-3731,5384,5385,5386,-1411,5387,5388]]},{"type":"Polygon","id":"30111","arcs":[[5389,-1341,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,-5353,5400,5401,-5350,5402]]},{"type":"Polygon","id":"30112","arcs":[[5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426]]},{"type":"Polygon","id":"30114","arcs":[[5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,-1510,5457,-1508,5458,-1506,5459,5460,-1503,5461,-1501,-2154,5462,5463]]},{"type":"Polygon","id":"30115","arcs":[[5464,5465,5466,5467,5468,5469,5470,5471,5472,-1512,-5456,5473,-5454,5474,5475,5476,-5450,5477,-5448,5478,5479,5480,-5444,5481,5482]]},{"type":"Polygon","id":"30116","arcs":[[5483,-5465,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,-5472,5533,-5470,5534,-5468,5535]]},{"type":"Polygon","id":"30117","arcs":[[5536,5537,5538,5539,5540,-5508,5541,5542,-5505,5543,-5503,5544,5545,-5500,5546,-5498,5547,5548,-5495,5549,-5493,5550,-5491,5551,-5489,5552,-5487,5553,-5485,-5483,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565]]},{"type":"Polygon","id":"30118","arcs":[[5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,-5566,5599]]},{"type":"Polygon","id":"30119","arcs":[[5600,-5597,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,-5537,-5599]]},{"type":"Polygon","id":"30121","arcs":[[5631,-2494,5632,-2492,-2026,5633,5634,5635,5636,5637,5638,5639,5640,5641,-2496]]},{"type":"Polygon","id":"30122","arcs":[[5642,5643,-1932,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,-1988,5716,5717,5718,-1984,5719,-1982,5720,5721,5722,-1978,5723,5724,-1975,5725,-1973,5726,5727,5728,-1969,5729,-1967,5730,5731,-1964,5732,-1962,5733,-1960,5734,5735,-1957,5736,-1955,5737,-1953,5738,5739,5740,5741,5742,5743,-1946,5744,-1944,5745,-1942,5746,5747,5748,5749,5750,5751,-1935]]},{"type":"Polygon","id":"30123","arcs":[[5752,-1684,5753,-1682,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,-5646,5790,-1930,5791,-1928,5792,-1926,5793,-1924,5794,-1922,5795,-1920,5796,-1918,5797,-1916,5798,-1914,5799,-1912,5800,-1910,5801,-1908,5802,-1906,5803,-1904,5804,-1902,5805,-1900,5806,-1898,5807,-1896,5808,-1894,5809,-1892,5810,-1890,5811,-1888,5812,5813,-1885,5814,-1883,5815,-1881,5816,-1879,5817,-1877,5818,-1875,5819,-1873,5820,-1871,5821,-1869,5822,-1867,5823,-1865,5824,-1863,5825,-1861,5826,-1859,5827,-1857,5828,-1855,5829,-1853,5830,-1851,5831,-1849,5832,5833,5834,5835,5836,5837,-1842,5838,-1840,5839,-1838,5840,-1836,5841,-1834,5842,-1832,5843,-1830,5844,-1828,5845,5846,5847,-1824,5848,-1822,5849,-1820,5850,-1818,5851,-1816,5852,5853,5854,-1812,5855,-1810,5856,-1808,5857,-1806,5858,-1804,5859,-1802,5860,-1800,5861,-1798,5862,-1796,5863,-1794,5864,-1792,5865,-1790,5866,-1788,5867,-1786,5868,5869,-1783,5870,-1781,5871,-1779,5872,-1777,5873,-1775,5874,-1773,5875,-1771,5876,-1769,5877,-1767,5878,-1765,5879,-1763,5880,-1761,5881,-1759,5882,-1757,5883,-1755,5884,-1753,5885,-1751,5886,-1749,5887,-1747,5888,-1745,5889,-1743,5890,-1741,5891,5892,5893,-1737,5894,5895,5896,-1733,5897,-1731,5898,-1729,5899,5900,-1726,5901,5902,-1723,5903,5904,5905,5906,5907,5908,-1716,5909,-1714,5910,-1712,5911,-1710,5912,5913,-1707,5914,-1686]]},{"type":"Polygon","id":"30124","arcs":[[5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931]]},{"type":"Polygon","id":"30125","arcs":[[-1131,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,-5398,5942,5943,5944,-1286,5945,-1284,5946,5947,5948,5949,5950,5951,5952,-1221,5953,-1219,5954,-1217,5955,5956,-1214,5957,5958,5959,-1210,5960,-1208,5961,5962,-1205,5963,5964,5965,5966,5967,-1141,5968,5969,-1138,5970,5971,5972,5973,-1133,5974]]},{"type":"Polygon","id":"30126","arcs":[[-5919,5975,5976,5977,-2841,5978,5979,5980,5981,5982,-5920]]},{"type":"Polygon","id":"30127","arcs":[[-5978,5983,-5935,5984,5985,5986,5987,5988,-1127,5989,-1125,5990,5991,5992,-1121,5993,-1119,5994,5995,5996,-1115,5997,5998,5999,6000,6001,6002,6003,-1093,6004,6005,6006,-1089,6007,-1087,6008,-1085,6009,6010,6011,6012,6013,6014,6015,6016,-2349,6017,6018,6019,6020,6021,6022,6023,-2341,6024,6025,6026,6027,6028,-2833]]},{"type":"Polygon","id":"30128","arcs":[[-4977,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038]]},{"type":"Polygon","id":"30129","arcs":[[6039,6040,-4985,6041,-4983,6042,-4981,6043,-4979,6044,-6039,6045,6046,6047,6048,6049,6050,6051,6052,6053]]},{"type":"Polygon","id":"30130","arcs":[[6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082]]},{"type":"Polygon","id":"30131","arcs":[[6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,-6082,6095,-6080,6096,-6078,6097,-6076]]},{"type":"Polygon","id":"30132","arcs":[[6098,6099,-1458,6100,6101,-1455,6102,-1453,6103,-1451,6104,-1449,6105,-1447,6106,6107,-3710,6108,6109,-3707,6110,6111,6112,6113,6114,-3702,6115,-3700,6116,6117,-3697,6118,6119,6120,-3841,6121,-3839,6122,6123,6124,-1464,6125]]},{"type":"Polygon","id":"30133","arcs":[[6126,-5766,6127,6128,6129,-5762,6130,-5760,6131,-5758,6132,-5756,6133,-1681,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151]]},{"type":"Polygon","id":"30134","arcs":[[6152,6153,6154,6155,-5117,6156,6157,6158,6159,6160,-1495,6161,6162,6163,-1491,6164,6165,6166,-1487,6167,-1485,6168,6169,6170,6171,-1466,-1465,-6125]]},{"type":"Polygon","id":"30135","arcs":[[6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190]]},{"type":"Polygon","id":"30136","arcs":[[6191,6192,6193,-5408,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,-5420,6231,-5418,6232,-5416,6233,6234,-5413,6235]]},{"type":"Polygon","id":"30137","arcs":[[6236,6237,6238,6239,6240,6241,6242,6243,-5308,6244,-5306,6245,-5304,6246,-5302],[-6248,-6249,-6250,-6251,-6252,-6253,-6254,-6255,-6256,-6257,-6258,-6259,-6260],[5311,-6261,-6262,-6263,-6264,-6265,-6266,-6267,5309,-6268]]},{"type":"Polygon","id":"30138","arcs":[[6268,6269,6270,-5317,6271,6272,6273,6274,-6261,6275,-6263,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321]]},{"type":"Polygon","id":"30139","arcs":[[6322,6323,-5540,6324,-5538,-5631,6325,-5629,6326,-5628,6327,6328,6329,-5624,6330,-5622,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,-6030,-4976,6343,-4993,6344,6345,6346,6347,-5522,6348,-5520,6349,-5518,6350,-5516,6351,6352,-5513,6353,6354,6355]]},{"type":"Polygon","id":"30140","arcs":[[-1542,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,-6052,6369,6370,-6049,6371,6372,6373,6374,-6071,6375,6376,6377,6378,6379,-6065,6380,6381,6382,6383,6384,6385,6386,6387]]},{"type":"Polygon","id":"30141","arcs":[[6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,-1546,-6385,6400,-6383,-6062,6401,-6060,6402,-6058,6403,-6056,6404,-6083,-6095,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425]]},{"type":"Polygon","id":"30142","arcs":[[-6075,6426,-6073,6427,6428,6429,6430,-6047,6431,-6088,6432,-6086,6433,-6084]]},{"type":"Polygon","id":"30143","arcs":[[6434,6435,6436,6437,6438,6439,-6406,-6094,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,-5767,-6127]]},{"type":"Polygon","id":"30144","arcs":[[-6457,6554,6555,-6454,6556,-6452,6557,-6450,6558,-6448,6559,-6446,6560,-6444,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,-6492,6574,6575,6576,6577,6578,-6486,6579,-6484,6580,6581,-6481,6582,-6479,6583,-6477,6584,6585,6586,-6473,6587,6588,-6470,6589,-6468,6590,-6466,6591,6592,-6463,6593,6594,6595,-6459,6596]]},{"type":"Polygon","id":"30145","arcs":[[6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,-2520,6611,-2518,-2501,6612,6613,6614,-2497,-5642,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,-6173]]},{"type":"Polygon","id":"30146","arcs":[[-6632,6632,-6630,6633,-6628,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,-6174]]},{"type":"Polygon","id":"30147","arcs":[[6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663]]},{"type":"Polygon","id":"30148","arcs":[[6664,6665,6253,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,-3086,6682,6256]]},{"type":"Polygon","id":"30149","arcs":[[6683,-6660,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,-6662]]},{"type":"Polygon","id":"30150","arcs":[[6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,-6740,6757,-6738,6758,6759,-6735,6760,6761,6762,-6731,6763,-6729,6764,-6727,6765,-6725,6766,6767,6768,-6721,6769,6770,-6718,6771,-6716,6772,-6714,6773,6774,-6711,6775,6776,-6708,6777,-6706,6778,-6704,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816]]},{"type":"Polygon","id":"30151","arcs":[[6817,-4999,6818,-4997,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,-5001]]},{"type":"Polygon","id":"30152","arcs":[[6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,-6206,6930,6931,-6203,6932,-6201,6933,-6199,6934]]},{"type":"Polygon","id":"30153","arcs":[[6935,6936,6937,6938,-6278,6939,-6663,-6744,-6754,6940,-6752,6941,-6750,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971]]},{"type":"Polygon","id":"30154","arcs":[[-6685,-6659,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988]]},{"type":"Polygon","id":"30155","arcs":[[-6664,-6940,-6277,-6264,6989,6990,6991,6992,6993,6994]]},{"type":"Polygon","id":"30156","arcs":[[6995,6996,6997,6998,-6257,-6258,6999,-6260,7000,7001,-6239],[-7003,3185,-7004,3187,-7005,3189,-7006,-7007,-7008,-7009,-7010,-7011,-7012,3088,-7013,3090]]},{"type":"Polygon","id":"30157","arcs":[[-6321,7013,7014,-6318,7015,7016,7017,7018,-6313,7019,-6311,7020,7021,7022,-6307,7023,-6305,7024,-6303,7025,-6301,7026,7027,7028,7029,-6296,7030,7031,-6293,7032,7033,-6290,7034,7035,7036,-6286,7037,-6284,7038,-6282,7039,-6280,7040,-6939,7041,7042,7043,-6972,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,-6823,-5040,-5074,7054,-5072,7055]]},{"type":"Polygon","id":"30158","arcs":[[-3084,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,-6610,7066,-6608,7067,-6606,7068,7069,-6603,7070,7071,-6600,7072,-6598,-6191,7073]]},{"type":"Polygon","id":"30159","arcs":[[-6989,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,-6686]]},{"type":"Polygon","id":"30160","arcs":[[7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,-5098,-5009,7146,-6904,7147,7148,-6901,7149,-6899,7150,7151,7152]]},{"type":"Polygon","id":"30161","arcs":[[7153,7154,-6782,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,-6789,7187,-6787,7188,-6785]]},{"type":"Polygon","id":"30162","arcs":[[-7054,-6873,7189,-6871,7190,-6869,7191,-6867,7192,7193,7194,7195,7196,-6861,7197,7198,-6858,7199,7200,7201,7202,7203,-6852,7204,-6850,7205,7206,-6847,7207,7208,7209,7210,-6842,7211,7212,7213,7214,-6837,7215,-6835,7216,7217,-6832,7218,-6830,7219,-6828,7220,-6826,7221,-6824]]},{"type":"Polygon","id":"30163","arcs":[[-7120,7222,-7118,7223,7224,7225,-7114,7226,7227,7228,-7110,7229,-7108,7230,7231,7232,-7104,7233,-7102,7234,7235,7236,-7098,7237,7238,-7095,7239,-7093,7240,-7091,7241,-7089,7242,7243,7244,7245,7246,-7083,7247,-7081,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,-7165,7267,7268,-7162,7269,7270,-7159,7271,7272,-7156,-6781,-6702,7273,7274,7275,-6698,7276,7277,7278,-6694,7279,7280,7281,7282,-6689,7283,-6687,-7124,7284,-7122,7285]]},{"type":"Polygon","id":"30164","arcs":[[7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,-7264,7308,-7262,7309,7310,7311,-7258,7312,-7256,7313,-7254,7314,7315,7316,-7250]]},{"type":"Polygon","id":"30165","arcs":[[-3107,-3062,7317,7318,-3059,7319,-2521,-6611,-7066,7320,-7064,7321,-7062,7322,-7060,7323,7324,-7057,-3083,7325,-3081]]},{"type":"Polygon","id":"30166","arcs":[[-7298,7326,-7296,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394]]},{"type":"Polygon","id":"30167","arcs":[[7395,7396,-6973,-6658,7397]]},{"type":"Polygon","id":"30168","arcs":[[7398,-6896,7399,7400,7401,-6892,7402,7403,7404,7405,7406,-6886,7407,7408,-7125,-7152]]},{"type":"Polygon","id":"30169","arcs":[[7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568]]},{"type":"Polygon","id":"30170","arcs":[[7569,7570,7571,-5675,7572,-5673,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,-7435,7586,-7433,7587,-7431,7588,-7429,7589,-7427,7590,7591,7592,7593]]},{"type":"Polygon","id":"30171","arcs":[[7594,7595,7596,-5667,7597,-5665,7598,7599,7600,-5661,7601,7602,7603,-5657,7604,-5780,7605,-5778,7606,7607,-5775,7608,-5773,7609,7610,-5770,7611,7612,-6554,7613,7614,7615,7616,-6549,7617,-6547,7618,-6545,7619,-6543,7620,-6541,7621,-6539,7622,-6537,7623,-6535,7624,7625,-6532,7626,7627,7628,7629,7630,-6526,7631,7632,-6523,7633,-6521,7634,-6519,7635,-6517,7636,-6515,7637,-6513,7638,-6511,7639,7640,-6508,7641,7642,7643,-6504,7644,7645,7646,-6500,7647,-6498,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,-7567,7764,7765,-7564,7766,7767,-7561,7768,-7559,7769,-7557,7770,7771,7772,7773,-7552,7774,7775,-7549,7776,-7547,7777,7778,-7544,7779,7780,7781,-7540,7782,-7538,7783,7784,-7535,7785,-7533,7786,-7531,7787,-7529,7788,7789,-7526,7790,-7524,7791,-7522,7792,7793,-7519,7794,-7517,7795,7796,-7514,7797,-7512,7798,-7510,7799,-7508,7800,-7506,7801,-7504,7802,-7502,7803,7804,-7499,7805,-7497,7806,-7495,7807,-7493,7808,-7491,7809,-7489,7810,-7487,7811,-7485,7812,-7483,7813,-7481,7814,-7479,7815,-7477,7816,7817,-7474,7818,-7472,7819,-7470,7820,-7468,7821,7822,7823,-7464,7824,-7462,7825,7826,-7459,7827,7828,7829,-7455,7830,-7453,7831,7832,7833,-7449,7834,-7447,7835,-7445,7836,7837,7838,-7441,7839,-7439,7840,7841,7842,-7585,7843,7844,7845,7846,-7580,7847,-7578,7848,7849,-7575,-5671]]},{"type":"Polygon","id":"30172","arcs":[[-7717,7850,7851,-7714,7852,7853,7854,7855,7856,-7708,7857,-7706,7858,7859,7860,-7702,7861,-7700,7862,7863,-7697,7864,-7695,7865,7866,7867,-7691,7868,-7689,7869,7870,-7686,7871,-7684,7872,7873,7874,-7680,7875,7876,-7677,7877,7878,7879,7880,-7672,7881,7882,-7669,7883,-7667,7884,7885,-7664,7886,-7662,7887,-7660,7888,-7658,7889,-7656,7890,-7654,7891,-7652,7892,-7650,7893,7894,-6496,7895,7896,-6493,-6574,7897,7898,7899,-6570,7900,-6568,7901,7902,7903,7904,7905,7906,-7569,7907,-7763,7908,-7761,7909,-7759,7910,-7757,7911,-7755,7912,7913,7914,-7751,7915,7916,-7748,7917,-7746,7918,7919,7920,-7742,7921,-7740,7922,7923,-7737,7924,7925,-7734,7926,-7732,7927,-7730,7928,-7728,7929,-7726,7930,7931,7932,7933,-7721,7934,-7719,7935]]},{"type":"Polygon","id":"30173","arcs":[[-6423,7936,-6421,7937,7938,-6418,7939,7940,-6415,7941,-6413,7942,-6411,7943,-6409,7944,-6407,7945,7946,7947,-6437,7948,-6435,-6152,7949,-6150,7950,7951,7952,-6146,7953,7954,7955,-6142,7956,-6140,7957,7958,-6137,7959,-6135,-1680,-1660,7960,7961,-6425,7962]]},{"type":"Polygon","id":"30177","arcs":[[7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,-5584,7973,7974,7975,-5580,7976,7977,-5577,7978,7979]]},{"type":"Polygon","id":"30178","arcs":[[7980,-6915,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,-6923,8005,-6921,8006,-6919,8007,-6917]]},{"type":"Polygon","id":"30180","arcs":[[8008,-6642,8009,-6640,8010,8011,8012,8013,8014,-6652,8015,-6650,8016,-6648,8017,-6646,8018,-6644]]},{"type":"Polygon","id":"30181","arcs":[[8019,-6637,8020,-6635,8021,-6626,8022,8023,8024,-6622,8025,8026,-6619,8027,8028,8029,8030,-8011,-6639]]},{"type":"Polygon","id":"30182","arcs":[[8031,8032,-5635,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,-8030,8059,-8028,-6618,8060,-6616,-5641,8061,-5639,8062]]},{"type":"Polygon","id":"30183","arcs":[[8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082]]},{"type":"Polygon","id":"30184","arcs":[[-8052,8083,8084,8085,-5685,8086,8087,8088,-5681,8089,-5679,8090,-7594,8091,8092,-8070,8093]]},{"type":"Polygon","id":"30185","arcs":[[-2025,8094,-2003,8095,-2001,8096,-1999,8097,-1997,8098,-1995,8099,-1993,8100,-1991,8101,-1989,8102,8103,8104,8105,-5712,8106,8107,8108,8109,-5707,8110,-5705,8111,8112,-5702,8113,8114,8115,8116,8117,-5696,8118,-5694,8119,8120,8121,-5690,8122,8123,-8046,8124,-8044,8125,8126,-8041,8127,-8039,8128,-8037,8129,8130,8131,-5634]]},{"type":"Polygon","id":"30186","arcs":[[8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173]]},{"type":"Polygon","id":"30187","arcs":[[8174,-1531,8175,-1529,8176,-1527,8177,-1525,8178,8179,-1522,8180,-1520,8181,-1518,8182,8183,-1515,8184,-1513,-5473,8185,-5532,8186,-5530,8187,8188,-5527,8189,-5525,8190,8191,-6347,8192,-6345,8193,8194,-4990,8195,-4988,8196,8197,-6041,8198,-6054,8199,-6368,8200,-6366,8201,8202,-6363,8203,8204,-6360,8205,8206,8207,-1541,8208,-1533]]},{"type":"Polygon","id":"30188","arcs":[[8209,8210,-2222,8211,8212,-2261,8213,8214,8215,8216,8217,8218,8219,8220,-2148,8221,8222,-2145,8223,-2143,8224,-2141,8225,8226,-2200,8227,8228,-2197,8229,8230,8231,8232,8233,-2191,8234,8235,8236,8237,8238,8239,-2093,8240,-2228,8241,8242,8243]]},{"type":"Polygon","id":"30189","arcs":[[8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279]]},{"type":"Polygon","id":"30190","arcs":[[8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,-8265,8312,-8263,8313,8314,-8260,8315,-8258,8316,-8256,8317,8318,8319,8320,-8251,8321]]},{"type":"Polygon","id":"30191","arcs":[[8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,-8300,8340,8341,8342,-8296,8343,8344,8345,-8292,8346,8347,8348,8349,-8287,8350,8351,-8284,8352,-8282,8353,-8322,-8250,8354,8355,8356,8357,8358]]},{"type":"Polygon","id":"30192","arcs":[[8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,-8323,8386,8387,8388,8389,8390,8391,8392]]},{"type":"Polygon","id":"30193","arcs":[[-8380,8393,-8378,8394,8395,8396,8397,8398,8399,8400,8401,-8330,8402,-8328,8403,-8326,8404,-8324,-8386,8405,8406,8407,-8382,8408]]},{"type":"Polygon","id":"30194","arcs":[[8409,-8369,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,-7592,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,-8397,8435,-8395,-8377,8436,8437,-8374,8438,8439,-8371]]},{"type":"Polygon","id":"30195","arcs":[[-8092,-7593,-8420,8440,8441,-8417,8442,-8415,8443,-8413,8444,-8411,-8368,8445,-8366,8446,-8364,8447,8448,8449,8450,8451]]},{"type":"Polygon","id":"30196","arcs":[[8452,-8075,8453,-8073,8454,-8071,-8093,-8452,8455,8456,8457,8458,8459,8460,8461,8462,8463]]},{"type":"Polygon","id":"30197","arcs":[[8464,-2728,8465,-2726,8466,-2724,8467,8468,8469,-2242,8470,-2240,8471,8472,8473,-2236,8474,8475,-2233,8476,8477,8478,8479,8480,-2138,8481,-2386,-2557,8482]]},{"type":"Polygon","id":"30198","arcs":[[8483,-2186,8484,-2184,8485,8486,-2181,8487,8488,-2178,8489,8490,-1555,8491,8492,-1552,8493,-1550,8494,8495,-1547,-6400,8496,-6398,8497,-6396,8498,8499,8500,-6392,8501,-6390,8502,-6426,-7962,-1658,8503,-1656,8504,-1654,8505,-1652,8506,-1650,8507,-1648,8508,-1646,8509,-1644,8510,-1642,8511,-1640,8512,-1638,8513,-1636,8514,-1634,8515,-1632,8516,-1630,8517,-1628,8518,-1626,8519,-1624,8520,-1622,8521,-1620,8522,8523,-1617,8524,8525,-1614,8526,-1612,8527,-1610,8528,8529,8530,-1606,-1604,-2188]]},{"type":"Polygon","id":"30199","arcs":[[8531,8532,8533,-8421,-7591,-7426,8534,8535,8536,8537,8538,8539]]},{"type":"Polygon","id":"30200","arcs":[[8540,-7412,8541,-7410,-7907,8542,-7905,8543,8544,8545,8546,8547,-8539,8548,-8537,8549,-8535,8550,-7424,8551,-7422,8552,-7420,8553,-7418,8554,-7416,8555,-7414]]},{"type":"Polygon","id":"30201","arcs":[[-8387,-8359,-8245,8556,-8279,8557,8558,8559,8560]]},{"type":"Polygon","id":"30202","arcs":[[8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,-8559,8571,-8277,8572,-8275,8573,-8273,8574,8575,8576,-8269,8577,8578,-8310,8579,8580,8581]]},{"type":"Polygon","id":"30203","arcs":[[8582,8583,8584,8585,-7982,8586,8587,-6912,8588,8589,8590]]},{"type":"Polygon","id":"30204","arcs":[[8591,8592,8593,8594,8595,8596,8597,8598,-8585,8599,-8583]]},{"type":"Polygon","id":"30205","arcs":[[8600,-8598,8601,8602,8603,-7985,8604,-7983,-8586]]},{"type":"Polygon","id":"30206","arcs":[[-8597,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,-8602]]},{"type":"Polygon","id":"30207","arcs":[[8632,-8592,-8591,8633]]},{"type":"Polygon","id":"30208","arcs":[[8634,8635,-8593,-8633]]},{"type":"Polygon","id":"30209","arcs":[[-8636,8636,8637,8638,-8610,8639,-8608,8640,-8606,-8596,8641,8642]]},{"type":"Polygon","id":"30211","arcs":[[8643,8644,-7991,8645,-7989,8646,8647,-7986,-8604]]},{"type":"Polygon","id":"30212","arcs":[[8648,8649,8650,-5588,8651,8652,-7971,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,-5617,8663,8664,-5614,8665,-5612,8666,8667,8668,8669,8670,8671,8672,8673,-5603,-5595,8674,-5593,8675]]},{"type":"Polygon","id":"30213","arcs":[[8676,-8655,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,-6341,8711,-6339,8712,8713,8714,8715,8716,8717,8718,-8659,8719,-8657]]},{"type":"Polygon","id":"30214","arcs":[[8720,8721,8722,8723,-7967,8724,-7965,8725,8726,-7996,8727,-7994,8728]]},{"type":"Polygon","id":"30216","arcs":[[-8462,8729,8730,8731,8732,8733]]},{"type":"Polygon","id":"30223","arcs":[[8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808]]},{"type":"Polygon","id":"30224","arcs":[[8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,-8745,8842,-8743,8843,-8741,8844,-8739,8845,8846,-8736,8847,-8809,8848,8849,8850,8851]]},{"type":"Polygon","id":"30225","arcs":[[8852,8853,8854,8855,8856,8857,8858,8859,8860,-8787]]},{"type":"Polygon","id":"30226","arcs":[[8861,8862,8863,8864,-8778,8865,8866,-8775,8867,-8773,8868,-8771,8869,8870,8871,8872,8873,-8149,8874,-8147,8875,8876,-8144,8877,-8142,8878,8879,-8139,8880,8881,8882,-8135,8883,-8133,8884,-8173,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,-8783]]},{"type":"Polygon","id":"30227","arcs":[[-8172,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,-8886]]},{"type":"Polygon","id":"30228","arcs":[[8950,-8939,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989]]},{"type":"Polygon","id":"30229","arcs":[[8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,-8984,9001,9002,-8981,9003,9004]]},{"type":"Polygon","id":"30230","arcs":[[9005,9006,-5103,9007,-5101,9008,-5099,-7146,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,-8163,9020,-8161,9021,-8159,9022,-8157,9023,-8156,9024,-8154,9025,-8152,9026,-8150,-8874,9027,9028,9029]]},{"type":"Polygon","id":"30231","arcs":[[9030,9031,-8767,9032,9033,-8764,9034,9035,-8761,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,-9007,9053,-9030,9054,-9028,-8873,-8871]]},{"type":"Polygon","id":"30232","arcs":[[9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,-9043,9075,-9041,9076,9077,9078,9079,-8753,9080,9081,9082,9083,9084,9085,-8840,9086,9087,9088,9089,9090,9091,9092,9093,9094]]},{"type":"Polygon","id":"30233","arcs":[[9095,-9073,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,-6322,-7056,-5071,9108,-5104,-9053,9109,-9051,9110,9111,9112,9113,-9046,9114,-9044,-9075]]},{"type":"Polygon","id":"30234","arcs":[[9115,9116,9117,-9098,9118,9119,-9070,9120,-9068,9121,9122,9123,9124,9125]]},{"type":"Polygon","id":"30235","arcs":[[9126,9127,9128,9129,9130,9131,-4527,9132,-4525,9133,-4523,9134,-4521,9135,-4519,-4463,9136,-4461,9137,-4459,9138,-4457,9139,-4455,9140,-4453,9141,-4451,9142,-4449,9143,-4447,9144,-5319,9145,-6270,9146,-9107,9147,-9105,9148,-9103,9149,-9101,9150,9151,-9118,9152,-9116,9153]]},{"type":"Polygon","id":"30236","arcs":[[9154,-4651,-4568,9155,-4566,9156,-4564,9157,-4562,9158,-4560,9159,-4558,9160,-4556,9161,9162,9163,-4552,9164,9165,-4549,9166,9167,-4546,9168,-4544,9169,9170,9171,-4540,9172,-4538,9173,-4536,9174,-4534,9175,-4532,9176,-4530,9177,-4528,9178,9179,-9130,9180,-9128,9181,-9154,-9126,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197]]},{"type":"Polygon","id":"30237","arcs":[[9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,-9183,-9125,9208,-9123,-9066,9209,-9090,-9089,-9088,-9087,-8839,9210,-8837,9211,9212]]},{"type":"Polygon","id":"30238","arcs":[[9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,-9213,9224,9225,9226,9227,-8816,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237]]},{"type":"Polygon","id":"30239","arcs":[[9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,-9201,9259,-9199,-9224,9260,-9222,9261,-9221,9262,9263,9264,9265,9266,9267,9268,9269]]},{"type":"Polygon","id":"30240","arcs":[[9270,9271,-4723,9272,9273,-4720,9274,9275,9276,-4716,9277,-4714,9278,9279,-4711,9280,-4709,9281,-4666,-4664,9282,-4662,9283,-4660,9284,-4658,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303]]},{"type":"Polygon","id":"30241","arcs":[[9304,9305,9306,9307,9308,-5266,9309,9310,-5263,9311,-5261,-4668,9312,-4725,9313,-9272,9314,-9304,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324]]},{"type":"Polygon","id":"30242","arcs":[[9325,9326,9327,9328,9329,9330,-9324,9331,-9322,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347]]},{"type":"Polygon","id":"30243","arcs":[[9348,9349,9350,9351,9352,9353,9354,9355,-9325,-9331,9356,-9329,9357,9358,9359,9360,9361,9362,9363]]},{"type":"Polygon","id":"30244","arcs":[[9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,-5160,9374,-5283,9375,-5281,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397]]},{"type":"Polygon","id":"30245","arcs":[[9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,-5196,-5141,9410,9411,9412,-5137,9413,-5135,9414,-5177,9415,-5175,9416,-5173,9417,-5171,9418,-5169,9419,9420,9421,9422,9423,-5163,9424,-5161,-9374,9425,-9372,9426,-9370,9427,9428,-9367,9429,-9365,9430]]},{"type":"Polygon","id":"30246","arcs":[[9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,-5179,9443,-5197,9444,-9409,9445,-9407,9446,9447,-9404,9448,-9402,9449,-9400,9450]]},{"type":"Polygon","id":"30247","arcs":[[-6159,9451,9452,9453,9454,9455,-5110,9456,9457,9458,-5106,9459,9460,9461,9462]]},{"type":"Polygon","id":"30248","arcs":[[-8859,9463,-8857,9464,-8855,9465,-8784,-8924,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,-8913,9476,9477,9478,9479,9480,-8907,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,-8895,9492,-8893,9493,9494,9495,9496,9497,9498,-8950,9499,9500,-8947,9501,-8945,9502,9503,-8942,9504,9505,-8990,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555]]},{"type":"Polygon","id":"30249","arcs":[[9556,9557,9558,9559,9560,9561,9562,9563,-9234,9564,9565,9566,9567,9568,-8815,9569,-8813,9570,-8811,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584]]},{"type":"Polygon","id":"30253","arcs":[[-9208,9585,9586,-9205,9587,-9203,9588,-9258,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,-9184]]},{"type":"Polygon","id":"30254","arcs":[[9599,-8933,9600,-8931,9601,-8929,9602,-8927,9603,-8925,-8171,9604,-8169,9605,-8167,9606,-8165,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,-8969,9619,-8967,9620,-8965,9621,9622,9623,9624,9625,9626,9627,-8957,9628,-8955,9629,-8935]]},{"type":"Polygon","id":"30255","arcs":[[9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666]]},{"type":"Polygon","id":"30256","arcs":[[-9665,9667,9668,9669,9670,9671,9672,9673,9674]]},{"type":"Polygon","id":"30257","arcs":[[9675,9676,9677]]},{"type":"Polygon","id":"30258","arcs":[[-9614,9678,-9612,9679,-9610,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,-8972,9693,-9618,9694,-9616,9695]]},{"type":"Polygon","id":"30259","arcs":[[-9020,9696,9697,-9017,9698,-9015,9699,-9013,9700,-9011,-7144,9701,9702,-7141,9703,9704,-7138,9705,9706,-7135,9707,-7133,9708,-7131,9709,-7129,9710,-7127,9711,9712,9713,9714,9715,9716,9717,-9681,9718,-9608,-8164]]},{"type":"Polygon","id":"30260","arcs":[[-7409,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,-9716,9729,-9714,9730,-9712,-7126]]},{"type":"Polygon","id":"30261","arcs":[[-6878,9731,-6876,9732,9733,-7053,9734,-7051,9735,-7049,9736,-7047,-6969,9737,9738,9739,9740,9741,-6963,9742,9743,-6960,9744,-6958,9745,-6956,9746,-6954,9747,9748,9749,9750,-6949,9751,9752,-6946,9753,9754,9755,9756,-6746,9757,-6817,9758,9759,9760,-6813,9761,9762,9763,9764,9765,-6807,9766,9767,-6804,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,-9720,-7408,-6885,9814,9815,-6882,9816,9817,9818]]},{"type":"Polygon","id":"30262","arcs":[[-9724,9819,9820,-9721,-9814,9821,-9812,9822,9823,-9809,9824,9825,9826,9827,9828,9829,-9802,9830,-9800,9831,9832,9833,-9796,9834,-9794,9835,-9792,9836,9837,-9789,9838,-9787,9839,-9785,9840,9841,9842,-9781,9843,9844,9845,-9777,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919]]},{"type":"Polygon","id":"30263","arcs":[[-6803,9920,-6801,9921,-6799,9922,-6797,9923,-6795,9924,9925,-6792,9926,-6790,-7187,9927,-7185,9928,-7183,9929,9930,9931,9932,9933,9934,9935,-9861,9936,-9859,9937,9938,-9856,9939,9940,-9769]]},{"type":"Polygon","id":"30264","arcs":[[9941,-9917,9942,-9915,9943,9944,9945,-9911,9946,9947,9948,9949,-9906,9950,-9904,9951,9952,9953,-9900,9954,9955,9956,-9896,9957,-9894,9958,9959,-9891,9960,-9889,9961,9962,-9886,9963,9964,9965,-9882,9966,-9880,9967,9968,-9877,9969,9970,9971,-9873,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994]]},{"type":"Polygon","id":"30265","arcs":[[9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,-9636,10023,-9634,10024]]},{"type":"Polygon","id":"30268","arcs":[[10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,-9678,10040,-9690]]},{"type":"Polygon","id":"30269","arcs":[[-9718,10041,-9728,10042,10043,-9725,-9920,10044,10045,10046,-9992,10047,-9990,10048,10049,10050,10051,10052,10053,10054,-10038,10055,10056,-10035,10057,-10033,10058,10059,10060,-10029,10061,-10027,10062,-9688,10063,-9686,10064,-9684,10065,-9682]]},{"type":"Polygon","id":"30271","arcs":[[10066,10067,10068,10069,10070,10071,-9666,-9675,10072,10073]]},{"type":"Polygon","id":"30272","arcs":[[-8994,-8975,10074,-9691,-10041,-9677,10075,-10069,10076,-10067,10077]]},{"type":"Polygon","id":"30273","arcs":[[10078,-9241,10079,-9294]]},{"type":"Polygon","id":"30274","arcs":[[10080,10081,10082,10083,10084,-9217,10085,-9215,10086,-9238,10087,-9236,10088,-9563,10089,-9561,10090,10091,10092,-9557,10093,-9363,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111]]},{"type":"Polygon","id":"30275","arcs":[[10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,-6564,-6441,-6093]]},{"type":"Polygon","id":"30277","arcs":[[10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170]]},{"type":"Polygon","id":"30278","arcs":[[10171,10172,10173,10174,10175,10176,10177,-10164,10178,10179,10180,-10160,10181,10182,-10157,10183,-10155,10184,10185,10186,-10151,10187,10188,-10148,10189,-10146,10190,-10144,10191,-10142,10192,-10140,10193,10194,-10137,10195,10196,-10134,10197,-10132,10198,10199,-10129,10200,10201]]},{"type":"Polygon","id":"30279","arcs":[[10202,10203,10204,10205,10206,10207,-352,10208,-10174,10209,-10172,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236]]},{"type":"Polygon","id":"30280","arcs":[[10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,-10207,10297,-10205,10298,10299,10300,10301,10302,-10234,10303,10304,10305,10306,-10229,10307,10308,10309,-10225,10310,-10223,10311,-10221,10312,10313,10314,-10217,10315,-10215,10316,10317,10318,10319,-10202,10320]]},{"type":"Polygon","id":"30281","arcs":[[10321,-10257,10322,10323,10324,-78,10325,10326,-10287,10327,-10285,10328,-10283,10329,10330,10331,10332,10333,10334,10335,10336,-10274,10337,-10272,10338,10339,10340,10341,10342,10343,10344,-10264,10345,-10262,10346,-10260,10347]]},{"type":"Polygon","id":"30282","arcs":[[10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,-10324,10366]]},{"type":"Polygon","id":"30283","arcs":[[10367,10368,10369,10370,10371,10372,-10350,10373,-10367,-10323,-10256,10374]]},{"type":"Polygon","id":"30284","arcs":[[10375,-10375,-10255,10376,-10253,10377,-10251,10378,10379,10380,-10247,10381,-10245,10382,10383,10384,-10241,10385,10386,-10238,10387,-10113,-6092,10388,-6090]]},{"type":"Polygon","id":"30285","arcs":[[-6432,-6046,-6038,10389,10390,10391,10392,-10370,10393,-10368,-10376,-6089]]},{"type":"Polygon","id":"30286","arcs":[[10394,10395,-6034,10396,10397,-10372,10398,-10393,10399,-10391,10400,-6037]]},{"type":"Polygon","id":"30287","arcs":[[10401,10402,-10365,10403,-10363,10404,-10361,10405,-10359,10406,10407,10408,-10355,10409,-10353,10410,-10351,-10373,-10398]]},{"type":"Polygon","id":"30288","arcs":[[10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,-10402,-10397,-6033]]},{"type":"Polygon","id":"30289","arcs":[[-8711,10423,-8709,10424,10425,10426,-8705,10427,10428,-8702,10429,-8700,10430,10431,10432,10433,-10412,-6032,10434,-6342]]},{"type":"Polygon","id":"30290","arcs":[[10435,-10422,10436,-10420,10437,-8689]]},{"type":"Polygon","id":"30293","arcs":[[10438]]},{"type":"Polygon","id":"30296","arcs":[[10439,-10293,10440,10441,10442,-10289,10443,-10327,10444,10445,10446,-353,-10208,10447,-10296,10448]]},{"type":"Polygon","id":"30297","arcs":[[10449,10450,10451,10452,-8683,10453,10454,10455,-8679,10456]]},{"type":"Polygon","id":"30298","arcs":[[-10079,-9293,10457,-9291,10458,-9289,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,-9252,10495,10496,10497,-9248,10498,-9246,10499,-9244,10500,-9242]]},{"type":"Polygon","id":"30299","arcs":[[10501,-9286,10502,-4656,10503,-4654,10504,-4652,10505,10506,10507,-9196,10508,-9194,10509,-9192,10510,-9190,10511,-9188,10512,10513,-9185,10514,10515,10516,10517,10518,-9594,10519,-9592,-10490,10520,10521,-10487,10522,-10485,10523,-10483,10524,-10481,10525,-10479,10526,-10477,10527,-10475,10528,-10473,10529,10530,-10470,10531,-10468,10532,-10466,10533,-10464,10534,-10462,10535,-10460,-9288]]},{"type":"Polygon","id":"30300","arcs":[[10536,10537,10538,-5425,10539,-5423,10540,10541,-6231,10542,10543,10544,-5437,10545,-5435,10546,-5433,10547,-5431,10548,-5429,10549,-5464,10550,10551,-2151,10552,-2149,-8221,10553,10554,10555]]},{"type":"Polygon","id":"30304","arcs":[[10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587]]},{"type":"Polygon","id":"30310","arcs":[[10588,-10585,10589,-10583,10590,-10581,10591,-10579,10592,-10577,10593,-10575,10594,-10573,10595,10596,10597,10598,10599,10600]]},{"type":"Polygon","id":"30311","arcs":[[-10078,-10074,10601,10602,10603,10604,10605,10606,10607,10608,10609,-8995]]},{"type":"Polygon","id":"30312","arcs":[[-10607,-10605,10610,-10603,10611,10612,10613,10614]]},{"type":"Polygon","id":"30313","arcs":[[10615,-10614,10616,10617,10618,-10599]]},{"type":"Polygon","id":"30314","arcs":[[10619,-8996,-10610,10620,-10608,-10615,-10616,-10598,10621,-8998]]},{"type":"Polygon","id":"30315","arcs":[[-10613,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,-10617]]},{"type":"Polygon","id":"30316","arcs":[[10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,-10632]]},{"type":"Polygon","id":"30321","arcs":[[-10618,-10633,-10646,10646]]},{"type":"Polygon","id":"30332","arcs":[[10647,10648,10649,10650,-9984,10651,-9982,10652,-9980,10653,10654,10655,-10001,-9999,10656,-9997,-10025,-9633,10657,-10053,10658,10659,-10050]]},{"type":"Polygon","id":"30333","arcs":[[-10040,10660,-10054,-10658,-9632,10661,-9667,-10072,10662,-10070,-10076,-9676]]},{"type":"Polygon","id":"30335","arcs":[[-6180,10663,10664,10665,10666,-6655,10667,10668]]},{"type":"Polygon","id":"30336","arcs":[[-6175,-6653,-8015,10669,10670,-6177,10671]]},{"type":"Polygon","id":"30337","arcs":[[10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,-6974,-7397]]},{"type":"Polygon","id":"30338","arcs":[[-7080,10707,-7078,10708,10709,-7075,-6988,10710,10711,10712,10713,-6983,10714,10715,-6980,10716,10717,-6977,10718,10719,10720,-10706,10721,-10704,10722,-10702,10723,-10700,10724,-10698,10725,-10696,10726,-10694,10727,-10692,10728,-10690,10729,-10688,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,-7328,-7295,10743,10744,10745,-7291,10746,10747,10748,-7287,-7249]]},{"type":"Polygon","id":"30339","arcs":[[10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,-8083,10765,-8081,10766,10767,10768,-10681,10769,-10679,10770,-10677,-10676,10771,-10674,10772],[10686,10730,-10774,-10775,-10776,-10777,-10778,-10779,-10780,-10781]]},{"type":"Polygon","id":"30340","arcs":[[-10736,10781,-10734,10782,-10732,-10774,10783,-10776,10784,10785,10786,10787,10788,10789,-8463,-8734,10790,10791,10792,10793,10794,-7339,10795,-7337,10796,-7335,10797,-7333,10798,10799,-7330,10800,-10743,10801,10802,-10740,10803,-10738,10804]]},{"type":"Polygon","id":"30341","arcs":[[-10795,10805,10806,-10792,10807,-8732,10808,-8730,10809,-8460,10810,-8458,10811,-8456,10812,-8450,10813,-8448,-8363,10814,-8361,10815,-8393,10816,-8391,10817,-8389,10818,-8561,10819,-7346,10820,-7344,10821,10822,-7341,10823]]},{"type":"Polygon","id":"30342","arcs":[[10824,10825,-7351,10826,-7349,10827,-7347,-10820,-8560,-8571,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,-7356,10844,-7354]]},{"type":"Polygon","id":"30343","arcs":[[10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,-7390,10861,10862,10863,-7386,10864,10865,10866,10867,10868,-7380,10869,-7378,10870,-7376,10871,10872,10873,10874,-7371,10875,-7369,10876,-7367,10877,-7365,10878,-7363,10879,10880,-7360,10881,10882,10883,10884,10885,-10842,10886,10887,10888,10889,10890,10891,-10835,10892,-10833,10893,-10831,10894,10895,-8570,10896,10897,10898,10899,10900,-8564,10901,-8562,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982]]},{"type":"Polygon","id":"30345","arcs":[[10983,-7166,-7267,10984,-7265,-7308,10985,-7306,10986,-7304,10987,10988,10989,-7168]]},{"type":"Polygon","id":"30347","arcs":[[10990,10991,-9864,-9934,10992,-9932,10993,-9930,10994,10995,-7180,10996,10997,-7177,10998,-7175,10999,-7173,11000,-7171,11001,11002,-9871,11003,-9869,11004,-9867],[-11006,10001,10003,-11007,-11008,10006,-11009,10008,-11010,-11011,10011,-11012,10013,-11013,10015,10017,-11014,10019,-11015,10021,-11016,9974,-11017,9976]]},{"type":"Polygon","id":"30348","arcs":[[11017,-10988,-7303,11018,-7301,11019,-7299,11020,-7394,11021,11022,-10860,11023,-10858,11024,-10856,11025,-10854,11026,11027,11028,-10850,11029,11030,11031,11032,-10983,11033,-10981,11034,-10979,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,-7169,-10990]]},{"type":"Polygon","id":"30349","arcs":[[11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,-11266]]},{"type":"Polygon","id":"30350","arcs":[[11283,11284,11285,-9659,11286,-9657,11287,-9655,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,-9642,11300,-9640,11301,-9638,11302,11303,11304,-9671,11305,-9669,11306,-9663]]},{"type":"Polygon","id":"30351","arcs":[[11307,11308,11309,11310,11311,-11282]]},{"type":"Polygon","id":"30354","arcs":[[-10602,-10073,11312,11313,11314,11315,-10612]]},{"type":"Polygon","id":"30355","arcs":[[-11316,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,-10623]]},{"type":"Polygon","id":"30356","arcs":[[11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,-11317,-11315]]},{"type":"Polygon","id":"30357","arcs":[[11349,11350,11351,11352,11353,11354,11355,-11341,11356,-11339,11357,-11337,11358,-11335,11359,11360,-11332]]},{"type":"Polygon","id":"30358","arcs":[[11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,-11352]]},{"type":"Polygon","id":"30359","arcs":[[11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,-11379]]},{"type":"Polygon","id":"30360","arcs":[[-11364,11398,11399,-11311,11400,-11309,11401,11402,11403,-11389,11404,11405,-11386,11406,11407,11408,-11382,11409,-11377,11410,11411,11412,11413,-11372,11414,-11370,11415,11416,11417,-11366,11418]]},{"type":"Polygon","id":"30361","arcs":[[11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,-11395,11431,-11393,11432,-11391,-11403,11433]]},{"type":"Polygon","id":"30362","arcs":[[-11397,11434,-11430,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450]]},{"type":"Polygon","id":"30363","arcs":[[-11380,-11398,-11451,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,-11345,11467,-11353]]},{"type":"Polygon","id":"30364","arcs":[[-11348,11468,-11464,11469,-11462,11470,-11460,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481]]},{"type":"Polygon","id":"30365","arcs":[[-10644,11482,11483,11484,11485,11486,11487,11488,11489,11490,-11318,-11349,-11482,11491,11492,11493,11494,11495,11496,11497,11498,11499]]},{"type":"Polygon","id":"30367","arcs":[[-11499,11500,11501,-11496,11502,-11494,11503,-11492,-11481,11504,11505,-11478,11506,11507,-11475,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523]]},{"type":"Polygon","id":"30368","arcs":[[11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,-850,11556,-848,11557,11558,11559,-871,11560,-11523]]},{"type":"Polygon","id":"30369","arcs":[[11561,11562,11563,-11550,11564,-11548,11565,-11546,11566,11567,11568,-11542,11569,-11540,11570,11571,11572,11573,11574,-851,11575,11576,-11554]]},{"type":"Polygon","id":"30370","arcs":[[-11509,-11474,11577,11578,-11573,11579,-11537,11580,11581,-11534,11582,11583,-11531,11584,-11529,11585,-11527,11586,11587,-11521,11588,11589,-11518,11590,11591,-11515,11592,11593,11594,11595,11596]]},{"type":"Polygon","id":"30371","arcs":[[11597,11598,11599,-11456,11600,-11454,11601,11602,11603,-11449,11604,11605,-11446,11606,11607,-11443,11608,11609,-11440,11610,-11438,11611,11612,11613,11614,11615,11616,11617,-11578,-11473]]},{"type":"Polygon","id":"30372","arcs":[[-11618,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,-11574,-11579]]},{"type":"Polygon","id":"30373","arcs":[[11648,11649,11650,11651,11652,11653,11654,-11613,11655,-11437,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,-11642,-11641,11679,-11638,11680,-11636,11681,-11634,11682,-11632,11683,-11630,11684,11685,-11627,11686,11687,-11624,11688]]},{"type":"Polygon","id":"30374","arcs":[[11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,-837,11724,-11647]]},{"type":"Polygon","id":"30376","arcs":[[-11695,-11694,11725,-11692,11726,-11677,11727,11728,11729,11730,11731,11732,11733,-11711,11734,-11709,11735,-11706,-11705,-11704,11736,11737,-11698,11738]]},{"type":"Polygon","id":"30377","arcs":[[11739,11740,11741,11742,11743,11744,-11675,11745,-11673,11746,-11671,11747,-11669,11748,-11667,11749,-11665,11750,-11663,11751,-11661,11752,11753,-11658,11754]]},{"type":"Polygon","id":"30378","arcs":[[-11428,11755,11756,11757,11758,11759,11760,-11744,11761,-11742,11762,-11740,11763]]},{"type":"Polygon","id":"30379","arcs":[[-11426,11764,11765,-11423,11766,-11421,11767,11768,11769,-11758,11770,11771]]},{"type":"Polygon","id":"30380","arcs":[[-11770,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,-11759]]},{"type":"Polygon","id":"30382","arcs":[[11800,11801,11802,-11778,11803,-11776,11804,-11774]]},{"type":"Polygon","id":"30383","arcs":[[-11793,11805,11806,11807,11808,-11787,11809,11810,11811,-11733,11812,11813]]},{"type":"Polygon","id":"30384","arcs":[[-774,11814,-772,11815,11816,11817,-768,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,-787,11831,-785,11832,-783,11833,11834,-780,-779,11835,-777,11836,11837]]},{"type":"Polygon","id":"30385","arcs":[[-11829,-11828,-11827,11838,11839,11840,11841,11842,-800,11843,11844,-796,11845,-794,11846,-792,11847,11848,-789,11849,-11830]]},{"type":"Polygon","id":"30388","arcs":[[-11842,11850,11851,-685,11852]]},{"type":"Polygon","id":"30390","arcs":[[-11802,11853,11854,11855,11856,-699,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871]]},{"type":"Polygon","id":"30391","arcs":[[11872,11873,11874,11875,11876,-11872,11877,-11870,11878,-11868,11879,11880,-11865,11881,-11863,11882,11883,-11860,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038]]},{"type":"Polygon","id":"30392","arcs":[[12039,-11783,12040,-11781,12041,-11779,-11803,-11877,12042,12043,-11874,12044,-12039,12045,12046,-12035,12047,12048,-12032,12049,12050,12051,12052,12053,12054,12055,12056,-11788,-11787,-11786,-11785]]},{"type":"Polygon","id":"30393","arcs":[[12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,-710,12067,12068,-707,12069,12070,12071,12072,-702,12073,-11855]]},{"type":"Polygon","id":"30394","arcs":[[12074,-747,12075,-745,12076,-743,12077,-741,12078,-739,12079,12080,-736,-765,-711,-12067,12081,-12065,12082,-12063,12083,-12061,12084,-12059,12085]]},{"type":"Polygon","id":"30395","arcs":[[12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117]]},{"type":"Polygon","id":"30396","arcs":[[12118,-696,12119,-694,12120,-692,12121,12122,-689,12123,12124,12125,12126,-11929,12127,-11927,12128,12129,12130,12131,-11922,12132,-11920,12133,-11918,12134,-11916,12135,-11914,12136,12137,-11911,12138,-11909,12139,-11907,12140,12141,12142,12143,-11902,12144,-11900,12145,12146,12147,12148,12149,-11894,12150,12151,-11891,12152,-11889,12153,-11887,12154,-11885,-11859]]},{"type":"Polygon","id":"30397","arcs":[[12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174]]},{"type":"Polygon","id":"30398","arcs":[[12175,12176,-12157,12177,12178,12179,12180,12181]]},{"type":"Polygon","id":"30399","arcs":[[-12178,-12156,12182,12183,12184,12185,12186,12187,12188,12189]]},{"type":"Polygon","id":"30400","arcs":[[12190,-10635,12191,12192,-10629,12193,-10627,12194,-10625,12195,12196,12197,-11327,12198,-11325,12199,-11323,12200,12201,-11320,12202,-11490,12203,-11488,12204,-11486,12205,-11484,12206,-10642,12207,-10640,12208,12209,-10637]]},{"type":"Polygon","id":"30404","arcs":[[12210]]},{"type":"Polygon","id":"30407","arcs":[[12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,-12187,12235,12236,-12184,12237,12238,12239,12240,12241,12242,12243,12244,-11278,12245,12246,-11275,12247,12248,12249]]},{"type":"Polygon","id":"30408","arcs":[[12250,12251,12252,-11192,12253,-11190,12254,12255,12256,12257,12258,12259,-11183,12260,12261,12262,12263,12264,-11177,12265,-11175,12266,-11173,12267,-11171,12268,-11169,12269,12270,-11166,12271,-11164,12272,12273,12274,-11160,12275,12276,-11157,12277,-11155,12278,-11153,12279,-11151,12280,12281,-11148,12282,12283,-11145,12284,12285,12286,-11141,12287,12288,12289,12290,12291,12292,12293,-11133,12294,-11131,12295,-11129,12296,12297,12298,12299,12300,12301,12302,-11121,12303,-11119,12304,-11117,12305,-11115,12306,12307,-11112,12308,12309,-11109,12310,-11107,12311,-11105,12312,-11103,12313,12314,12315,12316,12317,12318,-11096,12319,-11094,12320,-11092,12321,-11090,12322,-11088,12323,12324,-11085,12325,-11083,12326,12327,-11080,12328,-11078,12329,-11076,12330,12331,-11073,12332,-11071,12333,12334,-11068,12335,-11066,12336,-11064,12337,-11062,12338,12339,-11059,12340,-11057,12341,-11055,12342,-11053,12343,-11051,12344,-11049,12345,-11047,12346,12347,-11044,12348,-11042,12349,12350,-11039,12351,-11037,12352,12353,12354,-10974,12355,12356,-10971,12357,12358,-10968,12359,-10966,12360,12361,12362,-10962,12363,-10960,12364,-10958,12365,-10956,12366,-10954,12367,12368,12369,12370,-10949,12371,12372,-10946,12373,-10944,12374,12375,-10941,12376,12377,-10938,12378,12379,-10935,12380,12381,12382,-10931,12383,12384,12385,-10927,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,-12180,12403,-12233,12404,-12231,12405,12406,12407,12408,12409,12410,12411,12412,-12222,12413,-12220,12414,-12218,12415,12416,12214,12417,12418,12419,12420,-11262,12421,12422,12423,12424,12425,-11256,12426,-11254,12427,12428,12429,-11250,12430,12431,12432,12433,-11245,12434,-11243,12435,12436,12437,12438,12439,-11237,12440,-11235,12441,12442,12443,12444,12445,12446,12447,-11227,12448,12449,-11224,12450,12451,12452,-11220,12453,12454,12455,-11216,12456,12457,-11213,12458,-11211,12459,-11209,12460,-11207,12461,12462,12463,-11203,12464,-11201,12465,12466,12467,12468,12469]]},{"type":"Polygon","id":"30412","arcs":[[12470,12471,12472,12473,12474,-10919,12475,-10917,12476,-10915,12477,12478,-10912,12479,12480,12481,-10908,12482,-10906,12483,12484,12485,-8308,12486,12487,-8305,12488,-8303,12489,12490,-12182,12491,12492,12493,-12400,12494,12495,12496,12497,12498,-12394,12499]]},{"type":"Polygon","id":"30413","arcs":[[-8301,-8340,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,-12176,-12491]]},{"type":"Polygon","id":"30414","arcs":[[-12177,-12515,12515,-12513,12516,-12511,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,-12158]]},{"type":"Polygon","id":"30415","arcs":[[12532,-12508,12533,-12506,12534,-12504,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,-12522,12545,-12520,12546,-12518,-12510]]},{"type":"Polygon","id":"30416","arcs":[[-11648,-11725,-836,-852,-11575]]},{"type":"Polygon","id":"30422","arcs":[[12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,-549,-543,12564,-541,12565,-539,12566,12567,12568,12569,12570]]},{"type":"Polygon","id":"30423","arcs":[[12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,-12561,12597,-12559,12598,12599,-12556,12600,-12554,12601,-12552,12602,12603,12604]]},{"type":"Polygon","id":"30424","arcs":[[-12595,12605,-12593,12606,-12591,12607,12608,12609,-12587,12610,-12585,12611,-12583,12612,12613,-12580,12614,-12578,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,-12563,12638]]},{"type":"Polygon","id":"30425","arcs":[[-12636,12639,-550,-12564,-12638,12640]]},{"type":"Polygon","id":"30426","arcs":[[12641,12642,12643,12644,12645,12646,12647,-551,-12640,-12635,12648,12649,12650,12651,12652,12653]]},{"type":"Polygon","id":"30427","arcs":[[12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,-12654,12670,12671,-12651,12672,-12649,-12634,12673,12674,-12631,12675,-12629,12676,12677,-12626,12678,-12624,12679,-12622,12680,-12620,12681,-12618,12682,-12616,-12577,12683]]},{"type":"Polygon","id":"30428","arcs":[[12684,12685,12686,-12541,12687,-12684,-12576,12688,-12574,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708]]},{"type":"Polygon","id":"30429","arcs":[[12709,12710,12711,12712,12713,12714,12715]]},{"type":"Polygon","id":"30430","arcs":[[12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,-12663,12727,-12661,12728,-12659,12729,-12657,12730,-12655,-12688,-12540]]},{"type":"Polygon","id":"30431","arcs":[[12731,12732,-12664,-12727,12733,12734,12735,12736,-12642,-12670,12737,-12668,12738]]},{"type":"Polygon","id":"30432","arcs":[[-12643,12739,12740,12741,12742,12743,-556,12744,12745,12746,12747,-12647,12748,-12645,12749]]},{"type":"Polygon","id":"30433","arcs":[[12750,12751,12752,12753,12754,12755,-12742,12756,-12740,-12737,12757]]},{"type":"Polygon","id":"30435","arcs":[[12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,-750,12770,-12100,12771,-12098]]},{"type":"Polygon","id":"30436","arcs":[[12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,-12761,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,-12172,12815,12816,12817,-12168,12818,12819,-12165,12820,12821,12822]]},{"type":"Polygon","id":"30437","arcs":[[12823,-12543,12824,12825,-12686,12826,12827,-12708,12828,12829,12830,-12704,12831,12832,12833,12834,12835,12836,12837,-12696,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,-12785,12855,-12783,12856,-12781,12857,-12779,12858,-12777,12859,12860,12861,-12773,12862,-12822,12863,-12163,12864,-12161,12865,12866,12867,-12531,12868,12869,12870,-12527,12871,12872,12873,12874,-12545]]},{"type":"Polygon","id":"30438","arcs":[[12875,12876,-12796,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,-12603,-12551,12888,-12549,12889,-12571,12890,12891,-12568,12892,12893,-725,12894,-723,12895,-12769,12896,12897,-12766,12898,-12764,12899,12900,12901,-12800,12902]]},{"type":"Polygon","id":"30439","arcs":[[-12847,12903,12904,12905,-12843,12906,12907,12908,12909,-12694,12910,-12692,-12605,12911,-12887,12912,-12885,12913,12914,12915,-12881,12916,-12879,12917,-12793,12918,-12791,12919,12920,12921,12922]]},{"type":"Polygon","id":"30451","arcs":[[12923,12924,-12758,12925,12926,12927,12928,12929,12930,12931,12932,12933]]},{"type":"Polygon","id":"30452","arcs":[[12934,12935,-12931,12936,12937,-12928,12938,-12926,12939,-12735,12940,-12726,12941,12942,12943,12944,-12721,12945,12946,12947]]},{"type":"Polygon","id":"30453","arcs":[[12948,12949,12950,12951,12952,-12948,12953]]},{"type":"Polygon","id":"30454","arcs":[[12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,-12954,-12947,12965,12966,-12717,-12539,12967,12968]]},{"type":"Polygon","id":"30455","arcs":[[-8333,12969,12970,-8402,12971,-12958,12972,-12956,12973,12974,12975,-12538,12976,-12536,-12503,-8337,12977,12978,12979]]},{"type":"Polygon","id":"30456","arcs":[[12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,-12962,13007,13008,-12959,-12972,-8401,13009]]},{"type":"Polygon","id":"30457","arcs":[[13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,-12951,13023,-12949,-12965,13024,13025,13026,-13002,13027,-13000,13028,-12998,13029,13030,-12995,13031,13032,13033,13034,-12990,13035,13036,-12987,13037,-12985,13038,-12983,13039,13040]]},{"type":"Polygon","id":"30458","arcs":[[13041,-12924,13042,-12933,13043,13044,13045,13046,13047,13048,13049,13050,13051]]},{"type":"Polygon","id":"30459","arcs":[[13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,-13052,13069,13070,13071,13072]]},{"type":"Polygon","id":"30460","arcs":[[-8533,13073,-12715,13074,-13063,13075,13076,-13060,13077,13078,13079,13080,13081,13082,13083,-13073,13084,13085,13086,13087,-13016,13088,-13014,13089,-13012,13090,-13041,13091]]},{"type":"Polygon","id":"30461","arcs":[[-13092,-13040,-12982,13092,-13010,-8400,13093,-8398,-8435,13094,13095,13096,13097,-8430,13098,13099,-8427,13100,-8425,13101,13102,-8422,-8534]]},{"type":"Polygon","id":"30465","arcs":[[-891,13103,13104]]},{"type":"Polygon","id":"30467","arcs":[[13105]]},{"type":"Polygon","id":"30489","arcs":[[-890,-969,13106,-13104]]},{"type":"Polygon","id":"30501","arcs":[[13107,-10127,13108,13109,-10124,13110,-10122,13111,-10120,13112,-10118,13113,13114,-10115,13115,13116,13117,13118,13119,-8545,13120,-7902,-6567,13121,-6565]]},{"type":"Polygon","id":"30502","arcs":[[13122,13123,13124,13125,-10170,13126,13127,13128,-8546,-13120,13129]]},{"type":"Polygon","id":"30503","arcs":[[-13129,13130,-12716,-13074,-8532,-8547]]},{"type":"Polygon","id":"30504","arcs":[[13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,-5045,13155,-5043,13156,13157,13158,-5068,13159,-5191,-5190,5122,13160,-5120,13161,13162]]},{"type":"Polygon","id":"30505","arcs":[[-13153,13163,-13151,13164,-13149,5048,13165,5050,13166,5052,5053,5054,5055,5056,5057,13167,-4962,13168,13169,13170,5041,5042,-13156,13171,-13155,13172]]},{"type":"Polygon","id":"30506","arcs":[[-5058,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,-4952,13184,-4963,-13168]]},{"type":"Polygon","id":"30507","arcs":[[-13116,-10114,-10388,-10321,-10201,-10171,13185,-13125,13186,13187,13188,-13118,13189]]},{"type":"Polygon","id":"30509","arcs":[[13190,-6165,1490,-6164,-6163,-6162,1494,-6161,-6160,13191,13192,13193,-1471,-1470,-1469,13194,13195,-1466]]},{"type":"Polygon","id":"30511","arcs":[[-2302,13196,-5427,13197,13198,13199,-10555,-8219,13200,-8217,13201,-8215,13202,13203]]},{"type":"Polygon","id":"30514","arcs":[[13204,13205,13206,13207,-5054,-5053,-13167,-5051,-13166,-5049,-13148,13208,13209,13210,13211,-5047,-13142,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,-6155,13222,-6153]]},{"type":"Polygon","id":"30518","arcs":[[13223,13224,13225,13226,13227,13228,13229]]},{"type":"Polygon","id":"30519","arcs":[[13230,1417,13231,13232,1420,1421,1422,1423,13233,13234,13235,13236,13237,13238,13239,13240,1425,-3723,1427,1428,1429,1430,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,1414,1415]]},{"type":"Polygon","id":"30520","arcs":[[13253,13254,13255,13256,13257,-1413,13258,13259,13260,13261,13262,13263,13264,13265]]},{"type":"Polygon","id":"30521","arcs":[[-1372,13266,-1370,13267,-1368,13268,13269,13270,-13257,13271,-13255,13272,-13266,13273,-13264,13274,-13262,13275,13276,13277]]},{"type":"Polygon","id":"30522","arcs":[[13278,-13270,13279,-1366,13280,-1364,13281,-1362,13282,13283,-1359,13284,-1418,-13231,-1416,13285,13286,-13258]]},{"type":"Polygon","id":"30523","arcs":[[13287,3718,3719,-1430,3720,3721,3722,3723,13288,13289,3725,13290,13291,13292,13293,13294,-13237,13295,-13235,13296,-1424,13297,13298,-1422,13299,13300,13301,-5376,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,3714,3715,3716,-13243]]},{"type":"Polygon","id":"30524","arcs":[[-13247,13319,13320,-13317,13321,13322,13323,13324,13325,13326,13327,13328,-13308,13329,-13306,13330,13331,13332,13333,13334,13335,-13229,13336,-13227,13337,-13248]]},{"type":"Polygon","id":"30525","arcs":[[13338,-13333,13339,13340,13341,13342,13343,-10,13344,-13335]]},{"type":"Polygon","id":"30526","arcs":[[13345,13346,13347,-13206,13348,13349,-13343,-13342]]},{"type":"Polygon","id":"30527","arcs":[[13350,13351,13352,13353,13354,13355,-13177,13356,-13175,13357,-5057,13358,-5055,-13208,13359,-13347,-13346,-13341]]},{"type":"Polygon","id":"30538","arcs":[[13360,13361,13362,-10668,-6654,-6995,13363,-6251]]},{"type":"Polygon","id":"30539","arcs":[[-9321,13364,-9319,13365,-9317,-9302,13366,-9300,13367,13368,-9297,13369,-9295,-10080,-9240,13370,-9270,13371,13372,13373,-9333]]},{"type":"Polygon","id":"30540","arcs":[[13374,-10665,13375,-6178,-10671,13376,13377,13378,10749,13379,13380,10752,13381,10754,13382,10756,13383,-10676,-10675,-10674,-10673,-7396,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,-6656,-10667]]},{"type":"Polygon","id":"30541","arcs":[[13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446]]},{"type":"Polygon","id":"30542","arcs":[[13447,13448,13449,13450,13451,13452,13453,13454,13455,-13439,13456,-13437,13457,-13435,13458,-13433,13459,-13431,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473]]},{"type":"Polygon","id":"30543","arcs":[[13474,13475,13476,13477,13478,13479,-13471,13480,-13469,-13468,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512]]},{"type":"Polygon","id":"30544","arcs":[[13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554]]},{"type":"Polygon","id":"30545","arcs":[[13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,-13426,13616,-13424,13617,-13422]]},{"type":"Polygon","id":"30546","arcs":[[13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,-9462,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655]]},{"type":"Polygon","id":"30547","arcs":[[-13526,-13525,13656,13657,13658,13659,-13653,13660,-13651,13661,13662,-13648,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681]]},{"type":"Polygon","id":"30548","arcs":[[13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,-13502,13702,-13499,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736]]},{"type":"Polygon","id":"30549","arcs":[[13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,-13718,13749,13750,-13715,13751,-13713,13752,13753,13754,-13709,13755,-13707,13756,-13705,13757,-13498,13758,-13496,13759,-13494]]},{"type":"Polygon","id":"30550","arcs":[[13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,-13738,13770,-13492,13771,13772,13773,-13488,13774,13775,13776,-13484,13777,-13482,-13467]]},{"type":"Polygon","id":"30551","arcs":[[-13770,13778,-13768,13779,-13766,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,-13741,13813,-13739]]},{"type":"Polygon","id":"30552","arcs":[[-13761,-13466,13814,-13464,13815,-13462,13816,13817,13818,13819,13820,13821,13822,-13613,13823,13824,13825,-13609,13826,-13607,13827,-13605,13828,-13603,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,-13795,13840,-13793,13841,-13791,13842,-13789,13843,-13787,13844,-13785,13845,-13783,13846,13847,-13765,13848,13849,13850]]},{"type":"Polygon","id":"30553","arcs":[[13851,-13597,-13596,13852,-13594,13853,13854,-13591,13855,-13589,13856,-13587,13857,-13585,13858,-13583,-13582,13859,-13580,13860,13861,-13577,13862,13863,13864,13865,13866,13867,13868,13869,13870,-13836,13871,13872,13873,-13832,13874,13875,-13601,-13600,-13599]]},{"type":"Polygon","id":"30554","arcs":[[-13573,-13572,13876,13877,13878,13879,-13866,13880,-13864,-13574]]},{"type":"Polygon","id":"30555","arcs":[[-13722,13881,13882,13883,-13748,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,-13521,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,-13725,13911,13912]]},{"type":"Polygon","id":"30556","arcs":[[13913,-13895,13914,13915,13916,13917,-13890,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,-13523,13929,-13897]]},{"type":"Polygon","id":"30557","arcs":[[-13745,13930,-13743,-13812,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,-13922,13957,-13920,13958,-13887,13959]]},{"type":"Polygon","id":"30558","arcs":[[13960,13961,-13953,13962,13963,13964,13965,-13622,13966,13967,13968,-13656,13969,-13654,13970,-13659,13971,-13928,13972,13973,13974,13975,-13924,13976]]},{"type":"Polygon","id":"30559","arcs":[[13977,-13798,13978,13979,-13839,-13869,13980,-13635,-13634,13981,13982,-13631,13983,13984,-13628,13985,13986,-13625,13987,-13623,13988,13989,-13964,13990,13991,-13951,13992,13993,-13948,13994,-13946,13995,13996,-13943,13997,-13800]]},{"type":"Polygon","id":"30560","arcs":[[13998,13999,14000,14001,14002,14003,-13642,14004,14005,-13639,14006,14007,14008,-13635,14009]]},{"type":"Polygon","id":"30561","arcs":[[14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060]]},{"type":"Polygon","id":"30562","arcs":[[14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,-14011,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208]]},{"type":"Polygon","id":"30563","arcs":[[14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,-14060,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,-14024,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,-14080,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,-14204,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,-14154,14352,-14152,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,-14137,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,-14090,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460]]},{"type":"Polygon","id":"30564","arcs":[[14461,14462,14463,-14429,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,-14415,14477,14478,-14088,14479,-14086,14480,-14084,14481,-14082,14482,14483]]},{"type":"Polygon","id":"30565","arcs":[[14484,14485,14486,14487,-14231,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,-14210,14508,14509,14510,14511,-14457,14512,14513,14514,14515,14516,14517,14518,14519,-14448,14520,14521,14522,14523,-14443,14524,14525,14526,-14439,14527,14528,14529,14530,-14434,14531,-14432,14532,14533,-14484,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547]]},{"type":"Polygon","id":"30566","arcs":[[-14485,14548,-14547,14549,14550,-14544,14551,14552,14553,14554,14555,14556,-14537,14557,13665,13666,13667,14558,14559,14560,14561,14562,14563,14564,13674,14565,14566,14567,14568,14569,13529,14570,14571,14572,13532,14573,14574,14575,13535,14576,14577,13538,14578,14579]]},{"type":"Polygon","id":"30571","arcs":[[14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,-13558,14591,14592,-13419,14593,-13417,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634]]},{"type":"Polygon","id":"30586","arcs":[[14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688],[-14690,-14691,-14692,-14693,-14694,-14695,-14696],[-14697,-14698,-14699]]},{"type":"Polygon","id":"30587","arcs":[[14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,-14653,14762,-14651,14763,14764,-14648,14765,-14646,14766,14767,14768,-14642,14769,-14640,14770,-14638,14771,14772]]},{"type":"Polygon","id":"30588","arcs":[[14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791]]},{"type":"Polygon","id":"30589","arcs":[[-14791,14792,-14789,14793,-14787,14794,-14785,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,-14734,14859,14860,14861,-14730,14862,-14728,14863,-14726,14864,-14724,14865,-14722,14866,14867,-14719,14868,-14717,14869,14870,14871,-14713,14872,14873,14874,-14709,14875,14876,-14706,14877,14878,-14703,14879,14880,-14700,14881]]},{"type":"Polygon","id":"30590","arcs":[[-14784,14882,14883,14884,-14780,14885,-14778,14886,-14776,14887,-14774,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,-14809,14931,-14807,14932,14933,14934,-14803,14935,-14801,14936,14937,14938,-14797,14939]]},{"type":"Polygon","id":"30591","arcs":[[14940,14941,-14810,-14931,-14930,-14929,-14928,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,-14815,14969,-14813]]},{"type":"Polygon","id":"30592","arcs":[[14970,14971,14972,14973,14974,-14630,14975,14976,-14627,14977,14978,14979,14980,14981,-14621,14982,14983,-14618,14984,14985,14986,14987,14988,-14612,14989,14990,-14609,14991,14992,14993,14994,14995,-14603,14996,14997,14998,-13410,14999,-13408,15000,15001,-13447,15002,15003,-13444,15004,-13442,15005,-13440,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,-14892,15040,-14890]]},{"type":"Polygon","id":"30598","arcs":[[15041,15042,15043,15044,-15014,-15012,15045,-15010,15046,15047,15048]]},{"type":"Polygon","id":"30599","arcs":[[-15040,15049,-15038,15050,15051,-15035,15052,15053,-15032,15054,-15030,15055,15056,15057,15058,-15025,15059,-15023,15060,-15021,15061,-15019,15062,15063,15064,-15015,-15045,15065,-15043,15066,-15049,15067,15068,15069,-14896,15070,15071,-14893]]},{"type":"Polygon","id":"30601","arcs":[[15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,-431,15134,15135,15136,-424,15137,-393,15138,-391,-416]]},{"type":"Polygon","id":"30602","arcs":[[15139,-15131,-15130,-15129,15140,-15127,15141,15142,15143,-15123,15144,15145,15146,-15119,15147,-15117,15148,-15114,-15113,15149,-15111,15150,-15109,-15108,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,-383,15177,15178,15179,-447,15180,15181,-445,15182]]},{"type":"Polygon","id":"30603","arcs":[[-14698,-14689,15183,-14687,15184,15185,15186,15187,-14691,-14692,15188,-14694,15189,-14696,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,-14658,-14657,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219]]},{"type":"Polygon","id":"30604","arcs":[[-15219,-15218,15220,-15216,15221,15222,-15213,15223,-15211,15224,-15209,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242]]},{"type":"Polygon","id":"30605","arcs":[[-15105,15243,15244,15245,15246,-15242,15247,-15240,15248,-15238,15249,-15236,15250,-15234,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,-15107,15300]]},{"type":"Polygon","id":"30606","arcs":[[15301,-15292,15302,-15290,15303,-15288,15304,15305,15306,-15284,15307,15308,15309,-15280,15310,-15278,15311,-15276,15312,-15274,15313,-15272,15314,-15270,15315,-15268,15316,15317,-15265,15318,-15263,15319,-15261,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,-15175,15351,15352,-15172,15353,-15170,15354,-15168,15355,-15166,15356,-15164,15357,-15162,15358,15359,-15159,-15158,15360,-15155,-15154,15361,15362,15363,15364,15365,-15295,15366]]},{"type":"Polygon","id":"30607","arcs":[[15367,-15228,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,-15327,15400,-15325,15401,-15323,15402,-15259,15403,-15257,15404,15405,-15254,15406,-15232,15407,-15230]]},{"type":"Polygon","id":"30608","arcs":[[-14761,-14760,-14759,-14758,-14757,-14756,-14755,-14754,-14753,-14752,15408,-14749,-14748,-14747,-14746,-14745,-14744,-14743,-14742,-14741,-14740,-14739,-14738,-14737,-14736,-14735,-14859,-14858,-14857,-14856,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479]]},{"type":"Polygon","id":"30609","arcs":[[-15470,15480,-15468,15481,15482,-15465,15483,-15463,-15462,15484,-15459,-15458,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520]]},{"type":"Polygon","id":"30610","arcs":[[-15371,15521,15522,15523,15503,15524,15525,-15502,15526,-15500,15527,-15498,15528,15529,-15495,15530,-15493,15531,-15491,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,-15388,15557,15558,15559,-15384,15560,-15382,15561,-15380,15562,15563,15564,-15376,15565,15566,-15373,15567]]},{"type":"Polygon","id":"30611","arcs":[[15568,15569,-15391,15570,-15389,15571,-15557,15572,-15555,15573,-15553,15574,-15551,15575,15576,-15548,15577,-15546,15578,-15544,15579,-15542,15580,15581,15582,15583,15584,15585,15586,15587]]},{"type":"Polygon","id":"30612","arcs":[[15588,15589,15590,-15336,15591,15592,15593,-15332,15594,-15330,15595,15596,15597,-15399,15598,-15397,15599,-15395,-15587,15600,15601,-15348,15602,15603,15604,15605,15606,15607,-15341,15608]]},{"type":"Polygon","id":"30613","arcs":[[15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,-14965,15640,15641,-14962,15642,-14960,15643,15644,-14957,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,-15486,-15457,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684],[-15686,-15687,-15688,13479,13471,-15689,13473,-15690,-15691,13449,-15692,13451,-15693,13453]]},{"type":"Polygon","id":"30614","arcs":[[-15490,15693,15694,-15488,-15487,15695,15696,-15666,-15665,-15664,15697,15698,-15662,-15661,15699,-15658,15700,-15655,15701,-15652,15702,-15687,-15688,-13479,15703,-13476,15704,-13513,15705,-13511,15706,-13508,-13507,-13698,-13697,15707,-13695,15708,15709,15710,15711,15712,-13689,15713,15714,-13686,15715,-13684,-13683,-13737,-13736,15716,15717,-13733,-13732,15718,15719,15720,-15536,15721,15722,-15533]]},{"type":"Polygon","id":"30615","arcs":[[15723,-15540,15724,-15538,-15720,15725,-13730,15726,15727,-13726,-13911,15728,-13909,15729,-13907,15730,15731,15732,-13903,15733,-13901,15734,-13518,15735,-13516,15736,-13514,15737,15738,-13553,15739,-13551,15740,-13549,15741,-13547,15742,15743,15744,15745,15746,15747,15748,-15585,15749,-15583,15750,-15581]]},{"type":"Polygon","id":"30616","arcs":[[-13545,15751,-13543,15752,-13541,15753,15754,-13539,15755,-14577,15756,-14576,15757,15758,-13533,-14573,15759,-14571,-13530,-14570,-14569,-13679,15760,15761,-13676,-13675,-14565,-14564,-14563,-14562,15762,15763,15764,15765,-14559,-13668,15766,-13666,-14558,-14536,15767,15768,15769,15770,15771,-15748,15772,15773,-15745,15774,15775]]},{"type":"Polygon","id":"30617","arcs":[[-15771,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794]]},{"type":"Polygon","id":"30618","arcs":[[-15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804]]},{"type":"Polygon","id":"30627","arcs":[[15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837]]},{"type":"Polygon","id":"30628","arcs":[[15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,-15829,15851,-15827,15852,15853,-15824]]},{"type":"Polygon","id":"30629","arcs":[[15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,-14953,15891,-14951]]},{"type":"Polygon","id":"30630","arcs":[[15892,-15887,15893,-15885,15894,-15883,15895,-15881,15896,-15879,15897,-15877,15898,-15875,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,-15650,15913,-15648,15914,-15889]]},{"type":"Polygon","id":"30631","arcs":[[15915,-15073,-415,-419]]},{"type":"Polygon","id":"30634","arcs":[[15916,-15100,15917,-15098,15918,15919,15920,-15095,15921,-15093,15922,15923,15924,15925,15926,-15091,15927,-15089,15928,15929,-15086,15930,-15084,15931,-15082,15932,-15080,15933,-15078,15934,-15076,15935,15936]]},{"type":"Polygon","id":"30642","arcs":[[15937,15938,15939,15940,15941,15942,-15816,15943,15944,-15813,15945,-15811,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957]]},{"type":"Polygon","id":"30643","arcs":[[15958,15959,15960,15961,15962,15963,15964,15965,15966,-15206,15967,-15204,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,-15941,15979,15980,-15938,15981,-15957,15982,15983]]},{"type":"Polygon","id":"30644","arcs":[[15984,15985,15986,15987,15988,15989,15990,15991,15193,15992,15195,15196,15993,15198,15994,15995,15996,15997,15201,-14658,15998,15999,16000,-15971,16001,-15969,15203,-15968,15205,-15967,16002,16003,-15964,16004,-15962,16005,-15960,-15959,16006,16007]]},{"type":"Polygon","id":"30645","arcs":[[-16007,-15984,16008,16009,16010,16011,16012]]},{"type":"Polygon","id":"30646","arcs":[[16013,-16009,-15983,-15956,16014,15214,15215,16015,16016,-16011]]},{"type":"Polygon","id":"30647","arcs":[[16017,-14698,-14689,-14688,-14687,15184,16018,15186,16019,-14692,-14693,-14694,-14695,-14696,-15990,16020,-15988,16021,-15986,16022,-16008,-16013,16023]]},{"type":"Polygon","id":"30648","arcs":[[-15954,16024,16025,16026,-15950,16027,16028,16029,16030,16031,16032,16033]]},{"type":"Polygon","id":"30649","arcs":[[16034,-14680,16035,16036,-14677,16037,-14675,16038,-14673,16039,16040,-14670,16041,-14668,16042,-14666,16043,-14664,16044,-14662,16045,-14660,16046,-15202,-15201,16047,16048,-15995,-15199,-15994,-15197,16049,-15993,-15194,-15193,16050,16051,-15191,-14690,-15188,-15187,-15186,-15185,-14686,16052,-14684,16053,-14682]]},{"type":"Polygon","id":"30650","arcs":[[16054,-14825,16055,-14823,16056,-14821,16057,-14819,16058,16059,16060,16061,-14968,16062,16063,-15637,16064,16065,16066,16067,16068,-15631,16069,16070,16071,16072,16073,-15625,16074,16075,16076,16077,16078,16079,-14830,16080,16081,-14827]]},{"type":"Polygon","id":"30652","arcs":[[-13596,-13595,-13594,-13593,-13592,-13591,-13590,-13589,-13588,-13587,13857,-13585,16082,-13582,-13581,-13580,-13579,13861,-13577,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,-13600,16095]]},{"type":"Polygon","id":"30653","arcs":[[16096,16097,16098,16099,16100,16101,16102]]},{"type":"Polygon","id":"30654","arcs":[[-16090,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,-16092,16123]]},{"type":"Polygon","id":"30655","arcs":[[16124,16125,-16099,16126,-16097,16127,16128,16129,-16110,16130,16131,16132,16133,16134,-16102]]},{"type":"Polygon","id":"30657","arcs":[[-9442,16135,-9440,16136,-9438,16137,-9436,16138,-9434,16139,-9432,16140]]},{"type":"Polygon","id":"30659","arcs":[[16141,-15683,16142,-15681,16143,-15679,16144,-15677,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,-15685]]},{"type":"Polygon","id":"30660","arcs":[[16155,16156,-16153,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,-15615,16174,-15613,16175,-15611]]},{"type":"Polygon","id":"30661","arcs":[[-16151,16176,16177,-16148,16178,-16146,16179,-15675,16180,-15673,16181,-15671,16182,16183,-15454,16184,16185,16186,16187,16188,-15448,16189,-15446,16190,16191]]},{"type":"Polygon","id":"30662","arcs":[[16192,16193]]},{"type":"Polygon","id":"30663","arcs":[[-14838,16194,16195,-14835,16196,16197,16198,16199,-16080,16200,-16078,16201,16202,16203,16204,16205,-16164,16206,16207,16208,16209,16210,16211,-16193,16212,16213,16214,16215,16216,16217,16218,-15428,16219,16220,16221,16222,16223,-15422,16224,-15420,16225,-15418,16226,16227]]},{"type":"Polygon","id":"30664","arcs":[[16228,16229,16230,16231,16232,16233,16234,-14846,16235,16236,-14843,16237,-14841,16238,16239,-16228,-15416,16240,-15414,16241,-15412,16242,-15410,16243,16244]]},{"type":"Polygon","id":"30665","arcs":[[16245,15443,15444,15445,15446,15447,15448,15449,16246,-16187,15451,15452,15453,15454,16247,16248,16249,16250,16251]]},{"type":"Polygon","id":"30666","arcs":[[16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,15432,15433,16266,16267,16268,15438,16269,15440,16270,15442,16271,-16252,16272,16273,16274,16275,16276,16277,16278,16279,16280],[-16282],[16282],[16283]]},{"type":"Polygon","id":"30667","arcs":[[15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,16284,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,-16266,16285,-16264,16286,-16262,16287,-16260,16288,-16258,16289,-16256,16290,-16254,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311]]},{"type":"Polygon","id":"30668","arcs":[[16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360]]},{"type":"Polygon","id":"30669","arcs":[[16361,16362,16363,16364,16365,-16308,16366,-16306,16367,16368,-16303,16369,-16301,16370,16371,-16298,16372,-16296,16373,-16294,16374,16375,-16253,16376,16377,-16279,16378,-16325,16379,16380,-16322,16381,-16320,16382,16317,16383,-16316,16384,16385,16386,16387,16388,16389,16390]]},{"type":"Polygon","id":"30681","arcs":[[16391,-8806,16392,16393,-8803,16394,16395,16396,16397,16398,16399,16400,16401,16402,-8793,16403,-8791,16404,16405,-8788,-8861,-9555,16406,16407,-9552,16408,16409,-9549,16410,16411,16412,-9545,16413,16414,-9542,16415,-9540,16416,16417,16418,-9536,16419,-9534,16420,-9532,16421,16422,16423,-9528,16424,16425,16426,16427,16428,-9522,16429,-9520,16430,-9518,16431,16432,16433,16434,16435,-9512,16436,16437,16438,16439,16440,-8851]]},{"type":"Polygon","id":"30682","arcs":[[-16438,16441,16442,16443,16444,16445,-8988,16446,16447,-8999,-10622,-10597,16448,-10571,16449,16450,16451,16452,16453,-10565,16454,16455,16456,-10561,16457,16458,-10558,16459,16460]]},{"type":"Polygon","id":"30688","arcs":[[16461,16462,16463,16464,-15068,-15048,16465,16466,16467,-15868,16468,-15866,16469,16470,16471,-15862,16472,16473]]},{"type":"Polygon","id":"30689","arcs":[[16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,-15069,-16465,16486,-16463,16487,-16474,16488,-15861,16489,-15859,16490,-15857,16491,-15855,-14950,16492,-14948,16493,-14946]]},{"type":"Polygon","id":"30690","arcs":[[16494,16495,16496,16497,16498,16499,16500,-14918,16501,-14916,16502,-14914,16503,-14912,16504,-14910,16505,-14908,16506,-14906,16507,-14904,16508,16509,16510,-14900,16511,16512,16513,-15070,-16486,16514,-16484,16515,16516,-16481,16517,-16479,16518,-16477,16519,-16475,-14945,16520,16521,16522,14928,16523,16524,-14926]]},{"type":"Polygon","id":"30695","arcs":[[16525,16526,16527,-6928,16528,16529,16530,16531,-8004,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,-5563,16551,16552,16553,16554,-5558,16555,16556,16557,-5482,16558,16559,-6224,16560,16561,-6221,16562,-6219,16563,16564,16565,-6215,16566,16567,16568,-6211,16569,16570,-6208]]},{"type":"Polygon","id":"30696","arcs":[[16571,-8001,16572,-7999,16573,-7997,-8727,16574,16575,-5575,16576,16577,-5572,16578,-5570,16579,-5568,16580,-5600,16581,-16549,16582,16583,-16546,16584,-16544,16585,16586,16587,16588,-16539,16589,16590,16591,16592,16593,16594,-8002]]},{"type":"Polygon","id":"30710","arcs":[[16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616]]},{"type":"Polygon","id":"30711","arcs":[[16617,16618,16619,16620,16621,16622,-16614,16623,-16612]]},{"type":"Polygon","id":"30712","arcs":[[16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651]]},{"type":"Polygon","id":"30714","arcs":[[16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,-16632,16688,16689]]},{"type":"Polygon","id":"30715","arcs":[[16690,16691,16692,16693,16694,16695,16696]]},{"type":"Polygon","id":"30716","arcs":[[16697,16698,-15787,16699,-15785,16700,-15783,16701,-15781,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,-15792,16732,-15790]]},{"type":"Polygon","id":"30717","arcs":[[16733,16734,16735,-16717,16736,-16715,16737,-16713,16738,-16711,16739,-16709,16740,-16707,16741,16742,-16704,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,-16730,16772,-16728,16773,-16726,16774,-16724,16775,-16722,16776]]},{"type":"Polygon","id":"30718","arcs":[[16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,-16703,-15780,16789,-15778,16790,16791,16792]]},{"type":"Polygon","id":"30719","arcs":[[16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,-16779,16805,-16793,16806,16807,-15769]]},{"type":"Polygon","id":"30720","arcs":[[-16805,16808,-16803,16809,-16801,16810,-16799,16811,-16797,16812,16813,16814,16815,16816,16817,16818,16819,16820,-16756,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,-16745,-16788,16831,-16786,16832,16833,-16783,16834,-16781,16835]]},{"type":"Polygon","id":"30723","arcs":[[16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,-16672,16876,16877,16878,16879,16880,16881,-16665,16882,16883,-16662,16884,-16660,16885,16886,-16657,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911]]},{"type":"Polygon","id":"30724","arcs":[[16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,-16643,16937,16938,-16640,16939,16940,16941,16942,16943,-16685,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991]]},{"type":"Polygon","id":"30725","arcs":[[16992,16993,16994,16995,-16679,16996,-16677,16997,-16675,-16874,16998,-8852,-16441,16999,-16968,17000,17001,17002,-16964,17003,17004,-16961,17005,17006,-16958,17007,17008,17009,17010,-16953,17011,-16951,17012,-16949,17013,-16947,17014,17015]]},{"type":"Polygon","id":"30726","arcs":[[17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,-9581,17026,-9579,17027,-9577,17028,-9575,17029,-9573,17030,-16999,17031,17032,17033,-16870,17034,-16868,17035,-16866,17036,-16864,17037,17038,17039,17040,17041,17042,17043,-16856,17044,17045]]},{"type":"Polygon","id":"30727","arcs":[[17046,17047,17048,17049,17050,17051,-15804,17052,-15802,17053,-15800,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089]]},{"type":"Polygon","id":"30728","arcs":[[-16732,17090,-16771,17091,-16769,17092,17093,17094,-16765,17095,17096,17097,17098,-17065,17099,17100,17101,17102,17103,-17059,-15793]]},{"type":"Polygon","id":"30729","arcs":[[17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,-16610,17123,-16608,17124,17125,-16605,17126,17127,17128,-16601,17129,-16599,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141]]},{"type":"Polygon","id":"30730","arcs":[[17142,-16650,17143,-16648,17144,-16646,17145,17146,17147,17148,17149,17150,17151,-16931,17152,-16929,17153,-16927,17154,17155,-16924,17156,-16922,17157,-16920,17158,17159,-16917,17160,17161,-16914,17162,17163,-16991,17164,17165,-16618,-16611,-17123,17166,17167,-17120,17168,-17118,17169,-17116,17170,17171,-17113,17172,-17111,17173,17174,17175,17176,-17106,17177,-17142,17178]]},{"type":"Polygon","id":"30731","arcs":[[17179,17180,17181,17182,17183,-16851,17184,17185,17186,-16847,17187,-16845,17188,17189,-16842,17190,17191,17192,17193,17194,17195,17196]]},{"type":"Polygon","id":"30732","arcs":[[-17135,-16616,17197]]},{"type":"Polygon","id":"30733","arcs":[[-16817,17198,-16815,17199,-16813,17200,-16795,17201,-16912,17202,-16910,17203,-16908,17204,-16906,17205,17206,-16903,17207,17208,17209,17210,17211,17212]]},{"type":"Polygon","id":"30734","arcs":[[-17051,17213,-17049,17214,17215,17216,17217,-17088,17218,17219,17220,-17084,17221,-17082,17222,17223,17224]]},{"type":"Polygon","id":"30735","arcs":[[-17023,17225,17226,-17020,17227,17228,17229,17230,17231]]},{"type":"Polygon","id":"30736","arcs":[[17232,-17197,17233,17234,-9584,-17024,-17232,17235,-16854,17236,17237]]},{"type":"Polygon","id":"30739","arcs":[[17238,17239,17240,17241,-5926,17242,-5924,17243,17244,17245,-5982,17246,-5980,17247,17248]]},{"type":"Polygon","id":"30753","arcs":[[17249,17250,17251,17252,-840,17253,-838,-11724,17254,-11722,17255,-11720,17256,-11718,17257,17258,17259,-11714,17260,-11712,-11711,-11710,17261,17262,-11707,17263,17264,-11704,17265,17266,17267,17268,-11698,-11697,17269,-11695,17270,-11693,-11692,-11691,17271,-11646,17272,-11644,17273,17274,-11641,-11640,17275]]},{"type":"Polygon","id":"30754","arcs":[[-11798,-11797,-11796,-11795,-11794,-11793,-11792,-11791,-11790,-11789,-12057,17276,-12055,17277,-12053,17278,17279,-17251,17280,-11760,-11800,-11799]]},{"type":"Polygon","id":"30755","arcs":[[-17280,17281,-12051,17282,-804,-844,17283,-842,-17252]]},{"type":"Polygon","id":"30756","arcs":[[-774,-773,-772,-771,-770,-769,-768,-17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,-798,-797,-796,-795,-794,-793,-792,-791,-790,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,17298,-778,-777,-776,-775]]},{"type":"Polygon","id":"30757","arcs":[[-8603,-8632,17299,-8630,17300,-8628,17301,-8626,17302,-8624,17303,-8622,17304,-8620,17305,17306,-8617,17307,-8615,17308,17309,-8612,-8638,17310,17311,17312,17313,-8729,-7993,-8644]]},{"type":"Polygon","id":"30758","arcs":[[17314,-9359,17315,-9328,17316,-9326,17317,-9347,17318,17319,17320,-9343,17321,-9341,17322,-9339,17323,17324,17325,17326,-9334,17327,-13373,17328,17329,-9268,17330,17331,-9265,17332,17333,17334,-10083,17335,-10081,17336,-10111,17337,-10109,17338,-10107,17339,17340,17341,17342,17343,-10101,17344,17345,-10098,17346,-10096,17347,17348,-9361]]},{"type":"Polygon","id":"30761","arcs":[[-9396,17349,-9394,17350,-9392,17351,-9390,17352,-9388,17353,-9386,17354,-9384,17355,-9382,-5267,17356,17357,-9307,17358,-9305,-9356,17359,-9354,17360,17361]]},{"type":"Polygon","id":"30770","arcs":[[17362,17363,17364,17365,-15948,17366,-15809,17367,17368,-15806,17369,17370,-15518,17371,17372,17373,-15514,17374,17375,-15511,17376,-15509,17377,-15507,17378,17379,17380,17381,17382,-16032,17383],[17384],[17385],[17386],[-17388,15523,-17389,-17390]]},{"type":"Polygon","id":"30775","arcs":[[-13405,17390,17391,-13402,17392,-13400,17393,-13398,17394,17395,-13395,17396,17397,-13392,17398,17399,17400,-13388,17401,17402,-13385,-7398,-6657]]},{"type":"Polygon","id":"30817","arcs":[[17403,-2919,17404,17405,17406,-2915,17407,-3451,17408,-3449,17409,17410,17411,-3445,17412,-3443,17413,-3441,17414,17415,-3554]]},{"type":"Polygon","id":"30820","arcs":[[17416,17417,17418,17419,-2828,17420,17421]]},{"type":"Polygon","id":"30822","arcs":[[17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,-11822,17499,17500,-11824,17501,17502,17503,-11840,17504,17505,17506,11827,17507,17508,17509,17510,-17290,17511,17512,-17288,17513,17514,-17285,17515]]},{"type":"Polygon","id":"30823","arcs":[[-17500,11821,-17499,17516,-11954,17517,-11952,17518,-11950,17519,-11948,17520,-11946,17521,-11944,17522,17523,17524,17525,17526,-11938,17527,17528,-11935,17529,17530,-11932,17531,-11930,17532,-12126,17533,-719,-688,17534,-17502,11823,-17501]]},{"type":"Polygon","id":"30837","arcs":[[-12174,-12814,17535,-12812,17536,17537,17538,-12808,17539,-12806,17540,-12804,17541,17542,-12759,-12097,17543,-12095,17544,17545,-12092,17546,17547,17548,17549,17550,17551,-12117,17552,17553,17554,17555,-12112,17556,17557,17558,-12108,17559,17560,17561,-12104,17562,-12102,17563]]},{"type":"Polygon","id":"30840","arcs":[[17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583]]},{"type":"Polygon","id":"30841","arcs":[[17584,-12240,17585,17586,-17582,17587,-17580,17588,-17578,17589,17590,17591,-17574,17592,-17572,17593,17594,-17569,17595,17596,-17566]]},{"type":"Polygon","id":"30863","arcs":[[-5309,-6244,17597,-6242,17598,-6240,-7002,17599,-6248,17600,-6250,-13364,-6994,17601,-6992,17602,-6990,-6265,17603,-6267]]},{"type":"Polygon","id":"30864","arcs":[[17604,17605,17606,-7007,17607,-7009,17608,-6679,-6678,17609,-6676,17610,-6674,17611,-6672,17612,17613,-6669,17614,-6667,-6254,-6255,17615,-6999,17616,-6997,17617,-6238,17618,-5299,17619,-5297,17620,-5295,17621,-5293,17622,-3196,17623,17624,-3193]]},{"type":"Polygon","id":"30865","arcs":[[-309,-483,17625,-486,17626]]},{"type":"Polygon","id":"30868","arcs":[[-10683,17627,-10767,-8080,17628,-8078,17629,17630,-8464,-10790,17631,-10788,17632,-10786,17633,-10777,17634,17635,-10780,17636,-10686,17637,-10684]]},{"type":"Polygon","id":"30869","arcs":[[17638,-16696,17639,17640,17641,-16692,17642,-16625,17643,-16651,-17143,17644]]},{"type":"Polygon","id":"30933","arcs":[[-326,17645,17646,17647,-322,17648,-338,17649,17650,17651,17652]]},{"type":"Polygon","id":"30940","arcs":[[17653,-329,17654,17655]]},{"type":"Polygon","id":"30962","arcs":[[-17652,17656,17657,17658,17659,17660,-290,17661,-288,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,-12754,17672,-12752,17673]]},{"type":"Polygon","id":"30964","arcs":[[17674,-17669,17675,-17667,-281,17676,-279,17677,17678,-276,17679,17680,-273,17681,17682,17683,17684,-343,17685,-17671]]},{"type":"Polygon","id":"31072","arcs":[[17686]]},{"type":"Polygon","id":"31227","arcs":[[4,3,17687,-8722,17688,-17313,17689,17690]]},{"type":"Polygon","id":"31266","arcs":[[-9351,17691,-9349,17692]]},{"type":"Polygon","id":"31277","arcs":[[17693,-16622,17694,-16620,17695,-16988,17696,17697,-16985,17698,17699,-16982,17700,-16980,17701,-16978,17702,17703,17704,17705,17706,17707,-16971,17708,17709,-16440]]},{"type":"Polygon","id":"31278","arcs":[[17710,17711,17712,-17078,17713,-17076]]},{"type":"Polygon","id":"31283","arcs":[[-8059,17714,17715,-8056,17716,-8054,17717,17718,-8067,17719,-8065,17720,-10765,17721,-10763,17722,-10761,17723,-10759,17724,-10757,-13383,-10755,-13382,-10753,-13381,-13380,-10750,-13379,17725,-13377,-10670,-8014,17726,-8012,-8031]]},{"type":"Polygon","id":"31292","arcs":[[17727,-17208,17728,-16901,17729,-16899,17730,-16897,17731,17732,-16894,17733,17734,17735,-16690,17736,-16630,17737,-16628,17738,-16626,-17643,-16691]]},{"type":"Polygon","id":"31297","arcs":[[17739,-8819,17740,-8817,-9228,17741,-9226,17742,17743,17744,17745,17746,-9060,17747,17748,-9057,17749,-9095,17750,-9093,17751,-9091,-9090,17752,-9088,17753,-8839,-8838,-8837,-8836,17754,-8834,17755,-8832,17756,-8830,17757,-8828,17758,-8826,17759,-8824,17760,17761,-8821]]},{"type":"Polygon","id":"31298","arcs":[[-15926,17762,-15924,17763,15092,15093,15094,17764,-15920,-15919,17765,-15918,15099,-15917,17766,17767,17768,17769,-428,-427,-426,17770,17771]]},{"type":"Polygon","id":"31299","arcs":[[17772,-17769,17773,17774,17775,-15301,17776,15107,17777,17778,17779,17780,17781,17782]]},{"type":"Polygon","id":"31300","arcs":[[-434,-433,-432,-431,-430,17783,-17783,17784,-17781,17785,-17779,17786,15113,15114,17787,17788,17789,17790,-15141,17791,15129,17792,-438]]},{"type":"Polygon","id":"31301","arcs":[[-15115,-15114,-17787,-17778,-15108,17793,17794,15152,17795,15154,15155,17796,15157,17797,17798,17799,17800,17801,-17788]]},{"type":"Polygon","id":"31302","arcs":[[17802,17803,-439,-17793,-15130,-17792,15140,-17791,-17790,-17789,-17802,17804,-17800,17805,17806,-381,-450,-449,-448,-447,-446,-445,-444,17807,-442]]},{"type":"Polygon","id":"31304","arcs":[[17808,17809,17810,17811,-14753,17812,17813,-14749,17814,-14747,17815,17816,-14744,17817,17818,-14741,17819,17820,17821,17822,-14736,17823,-14858,17824,-14856,-16312,17825,17826,-16309,-16366,17827,-16364,17828,-16362,17829,17830,-16389,17831,-16387,17832,-16313,17833,-16360,17834,17835,17836,17837,17838,17839,-16353,17840,-16351,17841,-16349,17842,-16347,17843,-16345,17844,-16343,17845,-16341,17846,-16339,17847,-16337,17848,17849,17850,17851,-16332,17852,-16330,17853,-16275,-16273,-16251,17854,-16249,17855,-14760,17856,-14758]]},{"type":"Polygon","id":"31305","arcs":[[17857,17858,-15845,17859,-15843,17860,-15841,17861,-15462,-15461,17862,-15458,15485,15486,15487,-15695,17863,17864]]},{"type":"Polygon","id":"31306","arcs":[[15518,17865,-15838,17866,-15836,17867,-15834,17868,-15832,17869,-15830,-15851,17870,17871,-15848,17872,-15846,-17859,17873,-17865,17874,15525,15502,-17389,17875,17876,15506,15507,15508,15509,15510,17877,-17375,15513,15514,15515,15516,15517]]},{"type":"Polygon","id":"31307","arcs":[[17878,-15665,17879,15697,17880,17881,17882,-15660,17883,-15658,-15657,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,-13507,-13698,17907,-13683,17908,-13736,15716,15717,17909,17910,-15487,17911,-15668]]},{"type":"Polygon","id":"31309","arcs":[[17912,-15902,17913,-15900,17914,-15873,17915,-15871,17916,-15869,-16468,17917,-15690,-15691,13449,-15692,13451,17918,17919]]},{"type":"Polygon","id":"31310","arcs":[[17920,-13469,17921,13500,13501,13502,-13701,13504,13505,13506,-17907,17922,17923,17924,17925,-15688,17926,-13471]]},{"type":"Polygon","id":"31311","arcs":[[13736,17927,17928,13729,13730,13731,13732,-15718,-15717,13735]]},{"type":"Polygon","id":"31317","arcs":[[-4756,17929,17930,17931,17932,17933,17934,-4749,-4291,17935,17936,4320,17937,-4613,17938,-4611,-4647,17939,17940,-4644,17941,-4642,17942,-4640,17943,-4638,17944,-4636,17945,-4634,17946,-4632,17947,17948,17949,-4628,17950,17951,17952,-4624,-4704,17953,-4817,17954,-4815,17955,-4813,17956,17957,-4810,17958]]},{"type":"Polygon","id":"31323","arcs":[[-6189,17959,17960,-6186,17961,17962,-6183,17963,-6181,-10669,-13363,17964]]},{"type":"Polygon","id":"31324","arcs":[[6681,-3086,-3085,-7074,-6190,-17965,-13362,17965,-6253,6666,-17615,6668,-17614,-17613,6671,-17612,6673,-17611,6675,-17610,6677,17966,-7011,-7012,-3088]]},{"type":"Polygon","id":"31328","arcs":[[-17067,17967,-17099,17968,-17645,-17179,-17141,17969,17970,-17138,17971,17972,-17712,17973,17974,17975,17976,17977,-17069,17978]]},{"type":"Polygon","id":"31329","arcs":[[-16818,-17213,17979,-17211,17980,-17209,-17728,-16697,-17639,-17969,-17098,-16762,17981,-16760]]},{"type":"Polygon","id":"31332","arcs":[[17982,17983,17984,17985,15819,17986,17987]]},{"type":"Polygon","id":"31338","arcs":[[17988,-17885,-15656,-15655,-15654,17989,-15912,17990,-15910,17991,-15908,17992,-15906,17993,17994,-17925,-17924,17995,-17905,17996,-17903,17997,-17901,17998,-17899,17999,-17897,18000,-17895,18001,-17893,18002,-17891,18003,-17889,18004,-17887]]},{"type":"Polygon","id":"31350","arcs":[[-16001,18005,18006,-14654,-14762,-15480,18007,-15478,18008,-15476,18009,18010,18011,-15472,18012,-15942,18013,-15978,18014,-15976,18015,-15974,18016,-15972]]}]}},"arcs":[[[70205,40946,0],[2,-9],[-3,-7],[-61,-35],[9,-7],[-128,-78],[-35,-32],[-25,-23],[-22,-22],[-22,-26],[-44,-59],[-39,-67],[-8,-15],[-13,-33],[-51,-139],[-2,-6],[-26,-20],[-181,19],[-25,3],[-63,5],[-12,7],[-15,8],[-21,24],[-11,18],[-5,11],[-11,46],[-37,132],[-31,112],[-11,45],[-5,34],[-2,27],[-1,20],[-2,24],[-1,5],[-1,20],[-2,25],[-2,25],[-2,22],[-2,29],[-2,20],[-2,22],[-2,23],[-1,23],[-4,53],[-2,25],[-3,21],[-1,20],[-1,13],[-1,9],[-2,26],[-1,15],[-1,24],[-2,26],[-3,27],[-2,36],[7,39],[24,-8],[23,-6],[18,-5],[24,-7],[24,-7],[6,-2],[14,-4],[27,-7],[23,-8],[21,-6],[27,-7],[31,-9],[13,-4],[26,-8],[20,-6],[21,-6],[23,-7],[32,-10],[-1,-5],[55,-20],[5,7],[54,-34],[80,-49],[-21,-31],[168,-117],[117,-83],[58,-40],[22,-16]],[[82357,45225,0],[81,-29],[12,-7],[5,-11],[3,-7],[7,-20],[1,-21],[-5,-21],[-10,-21],[-37,-85],[-71,-167],[-72,-169],[-76,-177],[-57,-137],[-9,-16],[-16,-20],[-7,-6],[-10,-26],[-7,-12],[-11,-7],[-15,-4],[-14,0],[-14,6],[-36,23],[12,-19],[110,-84],[89,-40],[13,-4],[37,-7],[41,-5],[31,-1],[20,3],[9,2],[16,6],[10,6],[15,10],[7,5],[14,13],[9,11],[7,12],[60,116],[67,122],[7,6],[12,5],[6,-1],[9,-5],[72,-36],[9,-5],[4,-6],[2,-7],[0,-1],[22,-10],[-75,-128],[-85,-141],[-79,-134],[-4,-7],[-48,-89],[-15,-17],[-13,-11],[-13,-6],[-14,-2],[-17,0],[-26,5],[-62,17],[-158,26],[-18,4],[-41,7],[-67,22],[-52,29],[-33,27],[-33,31],[-22,29],[-23,39],[-9,24],[-9,28],[-2,35],[-1,36],[4,38],[8,34],[9,18],[20,21],[14,5],[1,0],[8,60],[5,18],[-2,6],[-1,13],[4,21],[43,115],[61,167],[59,169],[61,169],[46,127],[10,14],[8,6],[9,3],[14,3],[7,-1],[13,-3],[5,-1],[6,14],[8,16],[11,12],[10,8],[17,6],[9,0],[13,-2],[87,-32]],[[77183,18172,0],[-317,-489],[-71,-111],[-23,-40],[-55,-84],[-115,-178],[-102,-158],[-274,-429],[-265,-397],[-69,-108],[-105,-120],[-63,-199]],[[76845,17930,0],[187,135],[151,107]],[[75724,15859,0],[-209,-67],[77,122],[43,70],[140,227],[210,339],[33,53],[11,22],[182,297],[219,353],[133,214],[106,167],[17,27],[151,241],[8,6]],[[82242,43606,0],[-24,-2],[-20,4],[-148,28],[-91,18],[-104,20],[-101,20],[-10,4],[-25,4],[-105,21],[-25,5],[-14,7],[-10,9],[-8,8],[-4,11],[-3,15],[-4,20],[-23,115],[-31,171],[-4,73],[3,111],[6,46],[14,78],[5,21],[21,68],[120,-44],[5,-2],[132,-43],[-47,-139],[-3,-19],[-3,-48],[2,-38],[6,-33],[3,-18],[14,-37],[4,-8],[8,-15],[18,-28],[10,-14],[15,-17],[16,-18],[17,-15],[18,-15],[13,-10],[20,-13],[20,-11],[19,-10],[41,-18],[20,-6],[33,-8],[31,-6],[40,-7],[101,-14],[45,-8],[41,-12],[17,-10],[14,-16],[6,-10],[5,-24],[-3,-16],[-13,-33],[-31,-57],[-12,-16],[-19,-16],[-18,-3]],[[77678,45149,0],[-24,-44],[-14,-24],[-24,-37],[-10,-16],[-42,-43],[-55,-38],[-15,-5],[-39,-14],[-11,-3],[-40,-9],[-252,-24],[-126,-14],[-64,2],[-63,2],[-66,2],[-50,5],[-18,3],[-13,9],[-7,11],[-3,19],[1,61],[6,111],[7,142],[0,27],[2,18],[16,15],[16,6],[18,0],[36,-4],[98,-10],[46,-5],[85,-10],[62,-3],[51,-7],[111,-23],[45,-19],[259,-47],[30,-6],[36,-5],[11,-7],[0,-16]],[[82372,44901,0],[46,-47],[9,8],[12,6],[15,-1],[17,-7],[15,-13],[39,-55],[86,-115],[10,-15],[7,-13],[1,-21],[-2,-14],[-6,-11],[-18,-29],[-69,-121],[-76,-136],[-48,-86],[-13,-21],[-7,-10],[-13,-11],[-23,-13],[-14,-5],[-20,-4],[-12,0],[-52,19],[-8,1],[-78,22],[-12,4],[-7,6],[-6,7],[-4,7],[-3,9],[-1,8],[4,12],[49,134],[54,152],[55,153],[46,127],[27,73]],[[82106,43312,0],[-25,-42],[-11,7],[-17,4],[-23,-6],[-14,-1],[-23,0],[-78,3],[-124,4],[-72,3],[-24,8],[-17,8],[-8,3],[-14,13],[-6,7],[-8,11],[-6,13],[-5,19],[-53,269],[-1,14],[6,10],[10,9],[12,5],[11,1],[16,-4],[251,-49],[120,-23],[98,-20],[90,-18],[11,-3],[9,-4],[6,-6],[5,-9],[3,-11],[-1,-7],[-5,-12],[-22,-39],[-34,-63],[-57,-94]],[[80552,43595,0],[-6,-23],[-60,-231],[-90,-54],[-205,82],[-170,68],[-11,6],[-8,12],[3,21]],[[80005,43476,0],[164,164],[102,96],[19,8],[26,0],[65,-47],[54,-34],[117,-68]],[[81102,30793,0],[16,-21],[10,-11],[35,-16],[18,8],[6,-20],[1,-17],[-2,-16],[-3,-17],[-6,-25],[-9,-31],[1,-62],[-3,-54],[2,-31],[-1,-14],[2,-20],[14,-60],[5,-31],[-12,-28],[-1,-31],[3,-23],[7,-29],[5,-20],[12,-47],[5,-28],[3,-20],[5,-19],[1,-17],[-4,-3],[-26,15],[-23,21],[2,-19],[0,-19],[2,-13],[3,-14],[2,-18],[-16,-3],[-1,5],[-13,-3],[1,-6],[-31,-9],[4,-12],[11,-28],[-5,-13],[-10,-1],[5,-28],[-1,-19],[-12,-16],[-38,-30],[-22,-20],[-19,-14],[-33,-9],[-6,11],[13,22],[10,24],[6,28],[9,3],[-9,37],[14,21],[1,17],[4,27],[-2,56],[0,55],[2,49],[-5,74],[1,42],[5,90],[0,13],[-4,28],[-6,53],[-2,25],[-3,30],[-1,75],[-9,40],[-10,42],[-3,11],[-15,36],[-19,48],[10,1],[18,-5],[29,4],[35,9],[37,0],[10,-10]],[[81397,29642,0],[-78,-8],[-7,6],[-12,14],[-5,9],[-11,39],[-4,11],[-1,11],[19,79],[-13,53],[-22,89],[-14,65],[-16,76],[-3,15],[-1,31],[1,11],[0,11],[0,7],[-4,4],[-4,7],[-4,11],[-5,4],[-3,5],[-4,11],[-2,13],[1,29],[-7,15],[-4,10],[-4,12],[-2,10],[1,30],[4,18],[4,9],[-1,6],[-2,24],[-3,15],[4,7],[-16,56],[-1,16],[-1,23],[5,16],[7,11],[4,29],[32,4],[6,-18],[8,-24],[8,-27],[6,-17],[9,-23],[24,-43],[16,-28],[14,-56],[4,-18],[12,-38],[7,-29],[28,-78],[10,-30],[6,-24],[32,-38],[12,-21],[18,-33],[22,-39],[29,-63],[36,-74],[-45,-9],[-44,-11],[-15,-17],[-10,-25],[-14,-16],[-10,-12],[-5,-25],[-3,-16],[22,-15],[-11,-7],[4,-12],[1,-17],[-5,-11]],[[83312,37243,0],[-48,192],[-4,-2],[-6,22],[36,14]],[[83627,35022,0],[-1,29],[-14,300],[0,124],[-10,57],[-4,96],[-18,128],[-10,128],[-1,44],[0,78],[-15,79],[-28,105],[-29,133],[-16,88],[-74,294],[-21,147],[-13,108],[-46,232],[-15,51]],[[83693,35024,0],[-66,-2]],[[83689,35066,0],[4,-42]],[[84114,35496,0],[-22,-9],[-70,-19],[-27,-19],[-43,-12],[-178,-39],[-102,-18],[-2,0],[5,-74],[-4,-12],[6,-27],[-4,-31],[6,-41],[5,-60],[5,-69]],[[84155,35503,0],[-41,-7]],[[83290,37469,0],[23,-50],[7,-32],[23,-93],[29,-128],[24,-90],[10,-84],[27,-198],[34,-188],[16,-18],[-1,-30],[14,-71],[11,-27],[59,-272],[29,-117],[26,-85],[5,-72],[7,-39],[7,-80],[13,-194],[11,-96],[-2,-21],[3,-39],[0,-17],[5,-32],[79,16],[92,15],[150,38],[22,10],[31,10],[47,13],[10,58],[18,0],[31,-6],[11,-35],[-6,-12]],[[69089,41081,0],[-22,0],[-1,27],[-4,59],[-3,41],[-1,20],[-1,21],[-1,24],[-2,22],[0,10],[-2,13],[-1,22],[-1,19],[-5,64],[93,5],[90,4],[5,-64],[5,-59],[1,-9],[8,-94],[3,-36],[4,-50],[1,-14],[1,-16],[-19,-1],[-26,-1],[-21,-2],[-19,0],[-21,-1],[-17,-1],[-23,-1],[-21,-2]],[[82022,32795,0],[-12,-69],[-8,-51],[-7,-43],[-5,-34],[-47,-184],[-6,-41],[-11,-52],[-42,13],[-26,7],[-13,19],[0,40],[-6,42],[15,49],[-24,-1],[1,9],[0,6],[3,31],[4,46],[2,34],[41,-4],[11,60],[10,58],[39,-5],[1,11],[13,-1],[8,68],[59,-8]],[[82954,29331,0],[153,-98],[-53,-63],[-63,41],[-96,63],[-5,10],[-4,-27],[10,-19],[35,-47],[-3,-3],[5,-19],[7,-46],[10,-26],[-33,-18],[-14,28],[11,5],[-10,18],[-22,-12],[18,-43],[4,-10],[8,-20],[-4,-1],[7,-19],[-42,-16],[-8,-3],[-5,0],[-9,18],[-10,28],[-13,-4],[-12,29],[-3,16],[-19,34],[-20,-7],[-27,49],[-1,11],[-16,56],[38,21],[16,-14],[9,-51],[20,11],[-7,17],[21,11],[30,-55],[30,14],[-11,18],[-11,18],[-21,-10],[-9,20],[-7,15],[0,25],[8,28],[45,6],[21,6],[6,-19],[46,34]],[[71208,40039,0],[-33,-106],[-62,11],[-87,16],[-19,3],[-13,2],[25,108],[30,-5],[65,-12],[18,-3],[76,-14]],[[69386,40417,0],[-8,-8],[-23,6],[-19,4],[-19,4],[5,17],[-3,12],[-5,16],[-4,15],[-2,8],[-3,11],[-2,8],[-2,8],[-5,19],[-5,17],[-5,18],[-5,17],[-5,17],[-5,18],[-4,15],[-5,18],[-4,16],[-7,24],[29,2],[28,2],[4,-15],[4,-16],[5,-17],[4,-15],[2,-6],[3,-11],[5,-19],[4,-16],[6,-18],[4,-19],[5,-16],[5,-19],[4,-15],[5,-17],[4,-16],[4,-14],[5,-18],[5,-17]],[[83002,29056,0],[16,-53],[8,-24],[6,-23],[2,-45],[-26,-26],[-33,14],[-20,12],[-15,19],[20,15],[1,18],[-10,-2],[5,-12],[-37,-22],[-37,70],[37,18],[2,9],[4,9],[-4,13],[19,7],[5,-13],[14,4],[15,5],[28,7]],[[69124,40804,0],[-36,-2],[-1,16],[-2,17],[-1,17],[-1,17],[20,1],[20,1],[19,1],[22,2],[15,1],[18,1],[19,1],[16,2],[19,0],[19,1],[1,-16],[2,-15],[1,-19],[1,-17],[-31,-2],[-19,-1],[-19,-1],[-19,-1],[-16,-2],[-16,0],[-19,-2],[-12,0]],[[69102,40898,0],[-20,-1],[-2,17],[-1,18],[-2,27],[11,1],[10,1],[14,1],[11,0],[9,1],[14,0],[15,1],[14,2],[15,0],[23,1],[21,1],[18,2],[12,1],[1,-30],[1,-15],[2,-19],[-18,0],[-17,-1],[-18,-1],[-17,-1],[-20,-2],[-16,0],[-21,-1],[-20,-2],[-19,-1]],[[69112,40716,0],[-19,0],[-2,22],[-1,18],[0,17],[34,2],[16,1],[18,1],[18,2],[20,1],[17,0],[18,2],[17,1],[21,1],[15,1],[9,-33],[7,-24],[-22,-1],[-19,-2],[-19,-1],[-17,-1],[-21,-1],[-17,-1],[-19,-1],[-17,-1],[-18,-1],[-19,-2]],[[69094,40991,0],[-20,-1],[-2,30],[-2,28],[17,1],[16,1],[17,1],[15,1],[17,1],[19,1],[25,1],[18,2],[22,1],[22,1],[2,-15],[0,-12],[2,-29],[-22,-1],[-20,-2],[-20,-2],[-23,-1],[-18,-1],[-17,-2],[-17,-1],[-16,0],[-15,-2]],[[71225,40085,0],[-13,-38],[-92,24],[17,40],[22,68],[85,-23],[-8,-29],[-5,-18],[-6,-24]],[[69290,40440,0],[-2,-10],[-20,4],[-20,5],[-17,4],[-19,5],[-20,4],[-84,20],[-3,42],[51,3],[43,-10],[18,-5],[16,-4],[16,-3],[15,-4],[13,-3],[9,-32],[4,-16]],[[69268,40525,0],[-3,-6],[-26,5],[-19,5],[-19,4],[-17,3],[8,51],[-2,18],[-2,19],[-1,16],[-2,17],[-1,16],[-2,19],[19,1],[20,1],[7,-25],[7,-26],[6,-23],[7,-23],[3,-13],[5,-18],[5,-18],[7,-23]],[[69153,40543,0],[-50,-3],[-3,52],[-1,14],[0,13],[-1,6],[-1,18],[-1,15],[-1,14],[-1,14],[28,2],[31,2],[2,-17],[1,-16],[0,-14],[1,-18],[2,-16],[1,-19],[-7,-47]],[[56938,44294,0],[-138,44],[31,132],[151,-29],[-27,-71],[-17,-76]],[[62511,10926,0],[-3,-38],[-6,-72],[-1,-16],[-6,-66],[-1,-14]],[[62494,10720,0],[-332,71],[-364,84],[-185,37],[-83,13],[-13,-50],[-54,-205],[-266,28],[-10,-62],[-44,4],[-77,22],[-13,1],[-110,-5],[-1,20],[-43,5],[0,-3],[-96,6],[-694,-115]],[[60109,10571,0],[-38,-6],[-56,-9],[-108,-16]],[[59907,10540,0],[-16,-1]],[[59891,10539,0],[-5,18]],[[59886,10557,0],[-4,11]],[[59882,10568,0],[-12,27]],[[59870,10595,0],[-16,26]],[[59854,10621,0],[-18,24],[11,14],[-18,18]],[[59829,10677,0],[-13,11]],[[59816,10688,0],[-23,13],[-14,7],[-42,7],[-8,12]],[[59729,10727,0],[-44,70]],[[59685,10797,0],[-6,9],[-52,81]],[[59627,10887,0],[-10,16]],[[59617,10903,0],[47,52],[19,25],[23,37],[25,54],[9,35],[4,32],[-2,39]],[[59742,11177,0],[-73,674]],[[59669,11851,0],[-8,153],[1,182],[11,226],[13,132],[26,197]],[[59712,12741,0],[31,220]],[[59743,12961,0],[23,-2],[82,-8],[70,-6],[74,-7],[112,-11],[211,-4],[40,-2],[87,-4],[1,-58],[6,-46],[10,-49],[13,-39],[11,-26],[23,-39],[14,-23],[35,-42],[17,-17],[37,-31],[22,-15],[27,-19],[42,-20],[75,-27],[15,-8],[163,-21],[90,-12],[71,-9],[43,-5],[25,-3],[160,-19],[33,-5],[62,-8],[116,-18],[45,-8],[271,-46],[175,-29],[120,-20],[18,-3],[96,-17],[31,-6],[29,-6],[38,-6],[28,-6],[64,-14],[126,-26]],[[62594,12171,0],[-2,-28]],[[62592,12143,0],[-1,-9],[-3,-50],[-1,-11]],[[62587,12073,0],[-4,-57]],[[62583,12016,0],[-18,-257],[-12,-169]],[[62553,11590,0],[-3,-41],[-4,-60],[-7,-109],[-5,-69],[-2,-52],[0,-10],[-4,-47],[-4,-52]],[[62524,11150,0],[0,-7],[-4,-70]],[[62520,11073,0],[-4,-54],[-4,-51],[-1,-42]],[[62494,10720,0],[1,15],[1,16],[4,49],[1,7],[0,9],[3,31],[4,42],[2,20],[1,17]],[[62511,10926,0],[1,43],[1,15],[3,36],[1,24],[1,4],[2,25]],[[62520,11073,0],[4,77]],[[62524,11150,0],[4,53],[2,29],[1,18],[1,10],[2,52],[5,69],[7,109],[4,68],[3,28],[0,4]],[[62553,11590,0],[12,170],[18,256]],[[62583,12016,0],[2,28],[0,9],[2,20]],[[62587,12073,0],[1,12],[3,50],[1,8]],[[62592,12143,0],[2,29],[53,-4],[-24,35]],[[62623,12203,0],[-9,37],[-2,46]],[[62612,12286,0],[2,52],[29,236]],[[62643,12574,0],[4,32],[12,97],[121,-63],[19,-11],[113,-65],[51,-23],[237,-7],[303,-11],[43,5],[58,-4],[55,-15],[128,-31],[20,-5],[92,-38],[109,-61],[32,-60],[14,-49],[9,-118],[-21,-203],[-15,-22],[-28,-16],[-28,-4],[-27,6],[-23,15],[-31,23],[-21,6],[-13,-9],[-6,-20],[27,-50],[14,-31],[38,-96],[18,-51],[33,-99],[13,-50],[9,-52],[8,-51],[7,-55],[2,-54],[4,-190],[-5,-61],[-15,-61],[-22,-47],[-32,-41],[-41,-36],[-44,-29],[-47,-27],[-1,-11],[0,-120],[0,-41],[-5,-15],[-14,-53],[-4,-15],[-15,-54],[-3,-15],[-117,12],[-69,8],[-120,14],[-116,15],[-169,25],[-136,21],[-161,28],[-188,34],[-116,23],[-89,22]],[[59743,12961,0],[11,84]],[[59754,13045,0],[50,336],[3,39],[37,240],[12,85],[-1,110],[14,99],[31,93],[38,275]],[[59938,14322,0],[5,39],[330,0]],[[60273,14361,0],[1189,15]],[[61462,14376,0],[140,-14],[264,-1],[85,-14],[72,-47],[64,-60]],[[62087,14240,0],[1,-8],[47,-73],[17,-22],[19,-13],[15,-36],[32,-27],[95,-82],[34,-29],[9,-12],[8,-66],[60,-77],[30,-29],[35,-22],[24,-20],[98,-76],[85,-57]],[[62696,13591,0],[1,-26],[-1,-79],[1,-422],[-3,-64],[-35,-298],[-12,-97],[-4,-31]],[[62612,12286,0],[3,-46],[8,-37]],[[62623,12203,0],[25,-27],[37,-11],[-91,6]],[[59891,10539,0],[6,1],[10,0]],[[59907,10540,0],[80,12],[27,5],[56,8],[39,6]],[[60109,10571,0],[163,-866],[-226,9],[-113,5],[-269,11],[-75,-5],[-49,-12],[-51,-20],[-46,-27],[-42,-33],[-36,-41],[-26,-45],[-16,-50],[-9,-51],[1,-52],[9,-51],[38,-161],[54,-207],[70,-252],[81,-303],[10,-38],[37,-140],[4,-16],[-83,-27],[-92,-30],[-91,-27],[-92,-26],[-93,-24],[-92,-21],[-94,-18],[-95,-17],[-4,18]],[[58882,8054,0],[-27,112]],[[58855,8166,0],[-5,18],[-60,254],[-6,24]],[[58784,8462,0],[-23,97]],[[58761,8559,0],[-6,28],[-45,181]],[[58710,8768,0],[-110,458]],[[58600,9226,0],[-8,32],[-7,33]],[[58585,9291,0],[-12,46],[-30,129],[-10,44]],[[58533,9510,0],[-15,58],[-4,18],[82,70],[74,75]],[[58670,9731,0],[66,84],[55,89]],[[58791,9904,0],[47,94],[120,247]],[[58958,10245,0],[43,83],[59,88]],[[59060,10416,0],[57,76]],[[59117,10492,0],[64,72],[52,53]],[[59233,10617,0],[72,64],[78,57]],[[59383,10738,0],[81,54],[81,54],[72,57]],[[59627,10887,0],[52,-80],[3,-5],[3,-5]],[[59685,10797,0],[19,-30],[25,-40]],[[59816,10688,0],[2,-2],[11,-9]],[[59829,10677,0],[18,-17],[-12,-14],[19,-25]],[[59854,10621,0],[11,-16],[5,-10]],[[59882,10568,0],[3,-5],[1,-6]],[[58585,9291,0],[8,-34],[7,-31]],[[58710,8768,0],[45,-182],[6,-27]],[[58784,8462,0],[6,-25],[60,-254],[5,-17]],[[58882,8054,0],[4,-19],[-66,-86],[-63,21],[-20,19],[-77,-11],[-3,30],[-99,-7],[-288,-3],[-95,-2],[-23,99],[-39,166],[-41,79],[-10,15],[-14,20],[-35,84],[-11,21],[0,28],[-80,60],[-12,-6],[-388,-162],[-40,-87],[-9,-12],[-76,-43],[-19,-1],[-118,41],[-38,-103],[-14,-13],[-89,-51],[6,-39],[3,-25],[7,-17],[13,-33],[3,-8],[13,-30],[8,-20],[93,-142],[55,-83],[86,-132],[-39,-28],[-11,-29],[-95,-35],[17,-19],[42,-47],[-41,-30],[-32,-18],[-42,-17],[-76,-29],[-44,-15],[-51,-12],[-63,-15],[-30,-5],[-51,-7],[-82,-3],[-83,7],[-80,15],[-35,7],[-44,12],[-55,20],[-49,24],[-31,42],[-27,47],[-22,46],[-15,50],[-13,81]],[[56354,7644,0],[1,13],[1,12]],[[56356,7669,0],[3,76]],[[56359,7745,0],[1,24],[9,243]],[[56369,8012,0],[4,20]],[[56373,8032,0],[-5,18]],[[56368,8050,0],[-12,13],[-45,15]],[[56311,8078,0],[5,16]],[[56316,8094,0],[17,46]],[[56333,8140,0],[4,10]],[[56337,8150,0],[16,41]],[[56353,8191,0],[9,24]],[[56362,8215,0],[16,42]],[[56378,8257,0],[13,35]],[[56391,8292,0],[58,151]],[[56449,8443,0],[6,17],[7,26],[34,82],[31,84],[9,23]],[[56536,8675,0],[15,40]],[[56551,8715,0],[14,34],[8,23]],[[56573,8772,0],[20,51]],[[56593,8823,0],[98,269]],[[56691,9092,0],[12,31]],[[56703,9123,0],[27,71]],[[56730,9194,0],[12,33],[84,262]],[[56826,9489,0],[19,25]],[[56845,9514,0],[34,46]],[[56879,9560,0],[30,41]],[[56909,9601,0],[127,169]],[[57036,9770,0],[57,14]],[[57093,9784,0],[17,4]],[[57110,9788,0],[28,7],[15,3]],[[57153,9798,0],[16,-76],[22,-48],[54,-59],[59,-53],[54,-39],[71,-40],[100,-44],[78,-26],[103,-24],[109,-16],[110,-2],[108,13],[108,23],[104,34],[100,44],[96,52],[69,48],[5,-17],[14,-58]],[[57841,11872,0],[-6,-40],[-3,-43],[-8,-54]],[[57824,11735,0],[-14,-80],[-14,-65],[-5,-26],[-7,-30],[-13,-51],[-2,-6],[-8,-34],[-8,-28],[-8,-26],[-6,-21],[-20,-63],[-11,-33],[-18,-49],[-4,-8],[-17,-44],[-10,-25],[-11,-29],[-13,-33],[-30,-77],[-33,-81],[-5,-12],[-10,-27],[-21,-47],[-5,-11],[-28,-69],[-7,-17],[-10,-25],[-25,-63],[-32,-80],[-2,-7]],[[57427,10568,0],[-58,-138]],[[57369,10430,0],[-57,-136],[-52,-123],[-4,-11],[-67,-163]],[[57189,9997,0],[-19,-44],[-17,-155]],[[57153,9798,0],[-20,13]],[[57133,9811,0],[-64,40]],[[57069,9851,0],[-8,5]],[[57061,9856,0],[-34,21]],[[57027,9877,0],[-39,25]],[[56988,9902,0],[-33,21]],[[56955,9923,0],[-40,25],[-9,8],[-9,8]],[[56897,9964,0],[-19,17]],[[56878,9981,0],[-178,160]],[[56700,10141,0],[-16,15]],[[56684,10156,0],[-150,137]],[[56534,10293,0],[-69,62]],[[56465,10355,0],[-87,73]],[[56378,10428,0],[-49,37]],[[56329,10465,0],[-47,35]],[[56282,10500,0],[-63,44]],[[56219,10544,0],[-61,42]],[[56158,10586,0],[-32,20]],[[56126,10606,0],[-21,12]],[[56105,10618,0],[-40,25]],[[56065,10643,0],[-31,19]],[[56034,10662,0],[-28,14]],[[56006,10676,0],[-31,18],[-27,15]],[[55948,10709,0],[-33,15]],[[55915,10724,0],[-178,77]],[[55737,10801,0],[-44,20]],[[55693,10821,0],[-32,14],[-50,22]],[[55611,10857,0],[-67,2],[-82,12]],[[55462,10871,0],[-18,2],[-56,10],[129,122],[183,174],[-8,2],[-50,61],[-50,81],[-39,46],[-61,112],[-19,68],[3,48],[19,38],[53,-15],[2,29],[116,-17],[56,-8],[301,-65],[10,-5],[27,31],[10,41],[74,74],[9,35],[53,86],[56,6],[-7,-18]],[[56255,11809,0],[-61,-118]],[[56194,11691,0],[-54,-110],[-19,-27],[34,-14]],[[56155,11540,0],[122,-67]],[[56277,11473,0],[66,-34],[22,32],[29,43],[31,51],[21,46],[8,15],[40,86],[34,90],[24,87],[4,14],[21,83],[11,61],[5,68],[1,20]],[[56594,12135,0],[3,26],[3,82],[-1,50],[-4,111],[-5,210],[-4,172],[1,16],[4,31],[10,21],[5,38],[6,31],[6,34],[9,33],[30,73],[60,82],[79,80],[33,23]],[[56829,13248,0],[54,41],[90,45],[143,40],[88,11]],[[57204,13385,0],[15,1],[26,-2],[78,-8]],[[57323,13376,0],[45,-10]],[[57368,13366,0],[49,-15],[30,-11]],[[57447,13340,0],[25,-13],[68,-32],[66,-46],[65,-58],[49,-62],[48,-79],[19,-45],[10,-25],[10,-31],[10,-40],[21,-133]],[[57838,12776,0],[2,-42],[1,-62],[2,-77],[3,-197],[1,-77],[1,-126],[2,-41],[0,-52],[-2,-36],[-1,-104],[-4,-52],[-2,-38]],[[56383,11956,0],[7,17],[14,-4]],[[56404,11969,0],[-4,-16],[-17,3]],[[57036,9770,0],[-111,-148],[-16,-21]],[[56909,9601,0],[-5,-7],[-25,-34]],[[56879,9560,0],[-17,-23],[-17,-23]],[[56845,9514,0],[-9,-11],[-10,-14]],[[56730,9194,0],[-24,-63],[-3,-8]],[[56703,9123,0],[-2,-4],[-10,-27]],[[56691,9092,0],[-49,-134],[-49,-135]],[[56593,8823,0],[-19,-49],[-1,-2]],[[56551,8715,0],[-6,-16],[-9,-24]],[[56449,8443,0],[-48,-125],[-10,-26]],[[56378,8257,0],[-3,-7],[-13,-35]],[[56353,8191,0],[-9,-22],[-7,-19]],[[56333,8140,0],[-13,-37],[-4,-9]],[[56316,8094,0],[-3,-9],[-2,-7]],[[56368,8050,0],[3,-12],[2,-6]],[[56373,8032,0],[-3,-16],[-1,-4]],[[56359,7745,0],[-2,-41],[-1,-35]],[[56354,7644,0],[-11,22],[-24,11],[-189,39],[-40,16],[-29,26],[-14,41],[-74,24],[-29,15],[-25,21],[-18,21],[-16,22],[-12,24],[-11,30],[-14,19],[-19,16],[-78,51],[-226,153],[-23,27],[-22,9],[-4,7],[-4,7],[9,14],[-22,12],[19,31],[-42,59],[-27,34],[-4,2],[-46,34],[-14,-12],[-49,57],[-340,507],[-205,307],[-156,225]],[[54595,9515,0],[2,4],[3,8],[22,47],[0,1]],[[54622,9575,0],[4,9]],[[54626,9584,0],[9,18],[15,34],[22,-5],[11,-3]],[[54683,9628,0],[3,0],[28,-5]],[[54714,9623,0],[22,5],[10,2],[29,17]],[[54775,9647,0],[22,23]],[[54797,9670,0],[26,51],[23,45]],[[54846,9766,0],[16,30],[10,20]],[[54872,9816,0],[27,49]],[[54899,9865,0],[22,38],[8,12],[9,14],[26,40]],[[54964,9969,0],[17,26],[14,22]],[[54995,10017,0],[6,9],[1,1],[1,2],[29,44],[12,18],[13,18],[12,19],[6,9]],[[55075,10137,0],[42,59],[36,47],[34,43],[77,93],[46,52]],[[55310,10431,0],[27,27],[17,18],[20,20],[22,23],[8,9]],[[55404,10528,0],[53,54]],[[55457,10582,0],[4,7],[9,14],[6,22]],[[55476,10625,0],[7,11],[7,11],[23,40]],[[55513,10687,0],[38,66],[4,8],[2,2]],[[55557,10763,0],[54,94]],[[55693,10821,0],[10,-5],[34,-15]],[[55737,10801,0],[138,-59],[40,-18]],[[55915,10724,0],[15,-7],[18,-8]],[[56006,10676,0],[12,-6],[16,-8]],[[56065,10643,0],[28,-18],[12,-7]],[[56105,10618,0],[4,-2],[17,-10]],[[56158,10586,0],[59,-41],[2,-1]],[[56219,10544,0],[7,-4],[56,-40]],[[56282,10500,0],[31,-23],[16,-12]],[[56329,10465,0],[9,-7],[40,-30]],[[56465,10355,0],[22,-19],[47,-43]],[[56684,10156,0],[7,-7],[9,-8]],[[56878,9981,0],[14,-12],[5,-5]],[[56955,9923,0],[14,-9],[19,-12]],[[57027,9877,0],[8,-5],[26,-16]],[[57061,9856,0],[4,-2],[4,-3]],[[57069,9851,0],[41,-26],[23,-14]],[[57110,9788,0],[-9,-2],[-8,-2]],[[55557,10763,0],[-7,-10],[-37,-66]],[[55513,10687,0],[-21,-36],[-16,-26]],[[55476,10625,0],[-6,-21],[-13,-22]],[[55404,10528,0],[-12,-13],[-18,-18],[-37,-38],[-27,-28]],[[55310,10431,0],[-46,-51],[-77,-93],[-70,-90],[-42,-60]],[[55075,10137,0],[-18,-27],[-25,-36],[-30,-46],[-7,-11]],[[54995,10017,0],[-31,-48]],[[54964,9969,0],[-35,-53],[-30,-51]],[[54872,9816,0],[-26,-50]],[[54846,9766,0],[-23,-44],[-26,-52]],[[54775,9647,0],[-29,-16],[-32,-8]],[[54714,9623,0],[-31,5]],[[54683,9628,0],[-33,9],[-24,-53]],[[54622,9575,0],[-22,-47],[-5,-13]],[[54595,9515,0],[-47,20],[-382,173],[-241,104],[-130,57],[-100,46],[-71,43],[-94,67],[-86,77],[-34,47],[-51,64],[-41,57],[-56,99],[-100,203]],[[53162,10572,0],[-22,45]],[[53140,10617,0],[-22,46]],[[53118,10663,0],[-16,34],[-2,3]],[[53100,10700,0],[-49,96]],[[53051,10796,0],[-23,46],[-1,2],[-1,2],[-27,52],[-34,57],[-5,7],[-28,41],[-44,64],[-47,62],[-31,36],[-35,40],[-38,38],[-50,49],[-48,41],[-5,5]],[[52634,11338,0],[-95,80]],[[52539,11418,0],[9,7],[24,19],[10,8],[36,29],[12,9],[54,-43],[53,-45],[53,-47],[61,-60],[43,-21],[-6,15],[-43,97],[-43,91],[-35,139],[-6,27],[-12,82],[2,134],[13,74],[21,86],[4,35],[-7,38],[-20,49],[15,5],[19,6],[10,4],[23,9],[16,6],[21,8],[51,19],[26,10],[55,20],[14,6]],[[53012,12234,0],[15,-54],[30,-80],[47,-105],[44,-90],[53,-92],[57,-87],[65,-86],[25,-35],[42,-44],[75,-74],[78,-74],[88,-74],[84,-64],[90,-59],[72,-41],[74,-39],[96,-45],[106,-43],[73,-23],[66,-19],[99,-26],[97,-20],[97,-15],[109,-13],[104,-8],[107,-4],[57,-4],[62,-1],[61,-3],[58,-3],[75,-6],[82,-8],[82,-11],[80,-13]],[[52989,13112,0],[-16,-81],[-6,-28],[-4,-29],[-11,-76],[-6,-69],[-3,-56],[0,-16]],[[52943,12757,0],[0,-61]],[[52943,12696,0],[0,-63],[3,-30]],[[52946,12603,0],[3,-29]],[[52949,12574,0],[3,-35]],[[52952,12539,0],[14,-102],[19,-98],[27,-105]],[[52539,11418,0],[-340,290],[-153,125]],[[52046,11833,0],[-565,470]],[[51481,12303,0],[-58,55]],[[51423,12358,0],[-58,65],[-49,71],[-39,79]],[[51277,12573,0],[-28,89],[-12,69]],[[51237,12731,0],[-7,102]],[[51230,12833,0],[7,101],[26,100]],[[51263,13034,0],[37,89]],[[51300,13123,0],[61,102],[54,69]],[[51415,13294,0],[51,53]],[[51466,13347,0],[36,34]],[[51502,13381,0],[25,-111],[9,-45],[6,-15],[5,-12],[31,-10],[32,6],[78,39],[69,14],[100,-8],[136,-42],[22,-16],[5,-20],[42,-2],[29,17],[251,-19],[60,4],[13,2],[84,25],[86,43],[80,74],[23,-23],[9,-9],[-50,-47],[11,-13],[21,-1],[-3,-44],[13,-1],[-2,-17],[8,-13],[59,-1],[39,-9],[13,-1],[183,-14]],[[52748,12716,0],[14,-75],[-1,78],[-13,-3]],[[51502,13381,0],[81,55],[182,121]],[[51765,13557,0],[87,68],[44,53]],[[51896,13678,0],[46,79],[32,102]],[[51974,13859,0],[27,143],[5,24]],[[52006,14026,0],[9,54]],[[52015,14080,0],[16,54],[29,81],[6,16]],[[52066,14231,0],[25,55],[52,101]],[[52143,14387,0],[96,129]],[[52239,14516,0],[83,83]],[[52322,14599,0],[139,102]],[[52461,14701,0],[100,52]],[[52561,14753,0],[109,44],[166,41],[156,30],[134,10],[73,-7]],[[53199,14871,0],[60,-40],[27,-37],[23,-31],[36,-75],[1,-2]],[[53346,14686,0],[26,-91]],[[53372,14595,0],[13,-54],[12,-107],[9,-81],[-6,-170],[0,-1],[-2,-28],[-9,-45],[-4,-18],[-6,-34],[-14,-72]],[[53365,13985,0],[-39,-107]],[[53326,13878,0],[-30,-66],[-35,-76],[-14,-25],[-73,-138],[-86,-170],[-35,-92],[-22,-59],[-18,-59],[-24,-81]],[[58738,11681,0],[-207,4]],[[58531,11685,0],[-294,6]],[[58237,11691,0],[-1,-10],[-137,10],[3,20],[-65,5],[-108,10],[-30,3],[-64,6],[-11,0]],[[57824,11735,0],[0,5],[9,48],[2,31],[1,13],[5,40]],[[57841,11872,0],[3,37],[4,52],[0,32],[1,73],[1,24],[1,11],[0,52],[-1,31],[-1,10],[0,81],[-1,46],[-1,49],[0,14],[0,14],[-2,100],[-1,95],[0,7],[-2,71],[-1,33],[0,30],[-3,42]],[[57838,12776,0],[-4,28],[-13,88],[-3,17],[-10,40],[-10,31],[-1,2],[-9,22],[-19,45],[-10,17],[-38,62],[-10,13],[-39,49],[-29,26],[-5,4],[-31,28],[-66,46],[-68,32],[-26,14]],[[57368,13366,0],[-36,8],[-9,2]],[[57204,13385,0],[-32,358],[79,4],[-7,23],[-5,7],[-16,20],[-8,21],[-8,24],[1,29],[-2,40],[0,22],[-10,-1],[-1,11],[-3,67],[-28,16],[13,19],[-8,0],[2,117],[-6,93]],[[57165,14255,0],[16,-3],[22,13],[22,-3],[25,-16],[8,-22],[18,18],[10,23],[12,55],[17,40],[18,8],[7,73],[4,8],[-1,59]],[[57343,14508,0],[-1,12],[34,-16],[218,-108],[114,-57],[201,-39],[71,-14],[92,-63],[159,-113],[62,-47],[165,-160],[73,-175],[-65,-135],[78,-130],[25,-148],[3,-208],[1,-229],[-10,-68],[-26,-104],[47,-111],[78,-115],[49,-146],[-14,-180],[4,-6],[-12,-106],[18,-147],[28,-134],[3,-80]],[[58237,11691,0],[13,-1],[281,-5]],[[58738,11681,0],[521,-10]],[[59259,11671,0],[31,-2],[138,13],[62,14],[133,2],[63,1]],[[59686,11699,0],[56,-522]],[[59383,10738,0],[-78,-58],[-72,-63]],[[59233,10617,0],[-52,-54],[-64,-71]],[[59060,10416,0],[-58,-89],[-44,-82]],[[58958,10245,0],[-120,-248],[-47,-93]],[[58791,9904,0],[-36,-60],[-19,-30],[-66,-83]],[[58670,9731,0],[-74,-76],[-73,-63],[-13,15],[-25,34],[-18,30],[-14,22],[-15,37],[-14,43],[-9,38],[-2,12],[-5,41],[-1,50],[2,42],[8,43],[8,35],[11,34],[4,11],[35,64],[39,71],[-629,-122],[-11,0],[-14,2],[-11,2],[-13,4],[-9,3],[-11,6],[-11,5],[-12,7],[-12,9],[-10,11],[-12,14],[-9,16],[-7,16],[-5,15],[-4,13],[-2,20],[0,18],[3,18],[5,22],[20,58],[7,28],[5,22],[7,70],[1,47],[0,38],[-14,99],[-15,-38],[-15,-34],[-42,-97],[-59,-94],[-55,-72],[-58,-68],[-54,-54],[-54,-47],[-59,-49],[-85,-58],[-81,-47]],[[57369,10430,0],[11,26],[47,112]],[[53396,14864,0],[54,-11],[53,-18],[24,-12]],[[53527,14823,0],[40,66],[36,57]],[[53603,14946,0],[55,-36],[55,-38],[16,-12]],[[53729,14860,0],[53,-52],[50,-54],[-65,-91],[-21,-54]],[[53746,14609,0],[13,-28],[7,-19],[8,-26],[49,-32]],[[53823,14504,0],[65,-10],[41,-6]],[[53929,14488,0],[5,-51],[11,-66]],[[53945,14371,0],[10,-72]],[[53955,14299,0],[9,-72],[10,-89],[13,-86],[12,-89],[3,-30]],[[54002,13933,0],[2,-36],[0,-40],[-4,-34],[-5,-28],[-19,-57],[-29,-56],[-35,-50],[-51,-49],[-53,-39],[-74,-36],[-74,-32],[-102,-49],[-11,-27],[-12,-29],[22,-77],[30,-103],[3,-62],[0,-53],[-2,-31],[-12,-36],[-7,-18],[-11,-28],[-18,-31],[-17,-23],[-57,-61],[-59,-58],[-105,-38],[5,-163],[-178,-1],[-149,0],[-4,-13],[-10,-15],[-14,-21]],[[52949,12574,0],[-2,18],[-1,11]],[[52943,12696,0],[0,45],[0,16]],[[53326,13878,0],[30,83],[9,24]],[[53372,14595,0],[-26,90],[0,1]],[[53199,14871,0],[-38,4]],[[53161,14875,0],[-5,94],[88,-9]],[[53244,14960,0],[20,-5],[18,-8],[15,-13],[10,-13],[6,-14],[5,-16]],[[53318,14891,0],[0,-9],[3,-9],[1,-2],[8,-1],[25,0],[20,-2],[21,-4]],[[62377,9598,0],[31,-41],[24,-25],[14,-18],[56,-75],[20,-13],[98,-57],[15,-15],[-71,-45],[-92,-46],[-77,-39],[-75,-56],[-73,-66],[-67,-62],[-17,-15],[-92,-81],[-98,-86],[-79,-59],[-39,-26],[-74,-52],[-38,-23],[-30,-18],[-86,-80],[-105,-100],[-50,-48],[-71,-57],[-11,-10],[-27,26],[-103,52],[-52,44],[-54,22],[-15,0],[-25,36],[-1,12],[-9,93],[-19,203],[-6,69],[-15,165],[-30,325],[-13,137],[13,0],[20,0],[37,4],[80,15],[62,17],[72,9],[35,5],[40,7],[27,-8],[37,-15],[28,-9],[30,4],[16,11],[30,28],[22,19],[38,26],[52,21],[29,10],[116,35],[80,22],[14,4],[72,29],[5,2],[29,8],[67,11],[26,-7],[45,-24],[43,-24],[21,-18],[6,-13],[20,-20],[39,-15],[7,-3],[45,-25],[29,-36],[12,-14],[12,-27]],[[53118,10663,0],[2,-26],[2,-16],[18,-4]],[[53162,10572,0],[67,-137],[12,-74],[20,-123],[22,-71],[38,-115],[42,-126],[19,-72],[16,-46],[43,-11],[48,-111],[77,-45],[-109,-104],[-74,-37],[-42,-11],[-122,-82],[-30,24],[-65,93],[-32,75],[-175,-72],[-16,65],[-8,59],[-26,70],[-13,38],[-45,138],[-11,61],[-27,125],[-7,22],[-18,45],[-25,-1],[-62,135],[10,10],[0,9],[-32,94],[-13,42],[-25,104],[21,8],[-5,114],[-13,82],[-30,-4],[-25,52],[-12,41],[-20,61],[-36,109],[-43,92],[-40,54],[-3,19],[-7,40],[-10,42],[-4,30]],[[52372,11283,0],[25,13],[32,15]],[[52429,11311,0],[85,38],[26,14]],[[52540,11363,0],[50,12]],[[52590,11375,0],[44,-37]],[[53051,10796,0],[24,-47],[25,-49]],[[59669,11851,0],[17,-152]],[[59259,11671,0],[9,18],[-10,125],[-18,88],[-19,86],[-9,63],[-1,37],[0,73],[19,141],[-5,79],[16,117],[5,74],[2,80],[-3,172],[203,-4],[2,0],[116,87],[126,94],[29,21],[13,11],[9,9],[8,11],[7,16],[-4,-24]],[[59743,12961,0],[-16,-114],[-15,-106]],[[59938,14322,0],[-6,-41],[-2,3],[-77,156],[-72,146],[-14,47],[-93,122],[-44,60],[-56,52],[93,92],[71,69],[29,35],[73,109],[70,104],[85,141],[28,44],[75,90],[111,141],[83,95],[172,260],[107,-54]],[[60571,15993,0],[169,-100],[230,-143],[169,-160]],[[61139,15590,0],[-149,-190],[-30,-56],[-67,-89],[-2,-14],[4,-11],[122,-98],[150,-40],[205,-31],[188,-17],[24,-5],[34,-6]],[[61618,15033,0],[-25,-108],[-13,-60]],[[61580,14865,0],[-10,-39],[-61,-255],[-36,-150],[-118,-46],[-688,-9],[-61,-1],[-333,-4]],[[65519,88537,0],[37,-162],[7,-36],[9,-38],[8,-35],[3,-15],[3,-10],[8,-37],[13,-41],[-48,-8]],[[65559,88155,0],[-106,-16],[-46,-27],[-31,-19],[-19,20],[-11,-4],[-145,-41],[-31,-20],[-33,-9],[-55,-17],[-63,-28],[-22,-4],[-11,-3],[-10,-4],[-10,-5],[-9,-6],[-9,-7],[-8,-7],[-11,5],[-20,12],[-24,3],[-74,93],[-62,2],[-83,3],[-15,-17],[-85,-6],[-27,-16],[-101,4],[-25,-56],[33,-123],[-21,-13],[-44,-4],[-177,-18],[-9,2],[-178,36],[-101,21],[-330,36],[-35,-156],[-112,-12],[-22,283],[-2,22],[-75,-29],[-31,-9],[-89,-59],[-75,-47],[-73,-25],[-57,16],[-33,170],[-102,-28],[-35,4],[-80,-16],[-88,24],[-39,2],[-39,-9],[-29,222],[-21,97],[11,69],[14,63],[-17,261],[-1,14],[13,49],[4,17],[13,73],[-10,123],[-6,20],[-21,73],[-26,192],[-2,63],[44,305],[-45,166],[276,-5],[9,1],[-80,437],[-114,335],[-26,117],[327,104],[251,121],[18,21],[223,250],[109,123],[24,27],[22,16],[98,49],[6,10],[42,76],[123,25],[2,28],[13,155],[21,262],[3,42],[125,-14],[8,30],[-304,848],[-68,312],[-45,205],[-37,296],[-44,285],[50,-3],[566,-5],[30,-89],[247,47],[374,70],[13,-23],[199,85],[-12,69],[396,92],[37,11],[346,54],[359,-116],[339,-3],[69,-291],[29,-323],[15,-439],[112,-132],[51,-1205],[23,0],[201,-2],[-4,-36],[-62,-566],[-30,3],[-39,-195],[-2,-149],[-32,-168],[-25,-133],[22,-451],[-11,-89],[-409,97],[-43,-27],[-40,0],[-35,0],[-28,-23],[-154,-122],[-156,-101],[-10,-26],[-110,-36],[-105,-49],[-241,-61],[-175,-29],[44,-414],[218,-701]],[[68395,87731,0],[-38,10],[-55,-69],[-28,-44],[-55,-87],[-25,-28],[-24,-26],[-49,-43],[-29,33],[-30,12],[26,49],[-240,75],[-67,20],[-24,-84],[-22,-124],[-7,-19],[7,-26],[-5,-44],[-51,4],[-37,-4],[-63,-25],[-23,-22],[-16,-25],[-35,-26],[-5,-21],[-29,-1],[-43,-3],[-2,10],[-4,13],[16,55],[-7,73],[-14,5],[-14,-12],[-15,4],[-14,-6],[-43,3],[23,-124],[-38,-16],[-136,74],[-55,-34],[-31,-68],[-8,-18],[-9,-17],[-30,-29],[-18,-23],[-32,6],[-32,-5],[-6,22],[-15,55],[-54,23],[-7,81],[-5,21],[-18,90],[-34,52],[-6,25],[-74,3],[-19,7],[-13,0],[-18,0],[-19,20],[-37,13],[-43,-10],[-39,7],[-34,-9],[-40,16],[-56,9],[-36,42],[-42,-9],[-29,-16],[-37,-3],[1,96],[-31,4],[-10,-8],[-4,-11],[1,-10],[21,-22],[-17,-59],[-17,-20],[-39,-6],[-35,-4],[-42,6],[-36,13],[-29,16],[-40,-17],[-69,8],[-39,11],[-23,16],[-52,-33]],[[65824,87523,0],[-36,106],[-11,19],[-20,7],[-69,82],[-9,35],[-1,55],[5,40],[1,17],[-33,29],[-36,80],[-56,162]],[[65519,88537,0],[45,-1],[88,-13],[185,-19],[62,-5],[58,-1],[30,1],[115,-22],[219,51],[42,34],[20,0],[35,-12],[57,-41],[36,-53],[51,-62],[-9,-57],[-2,-15],[122,-16],[26,20],[-3,45],[22,67],[6,63],[36,65],[39,80],[37,86],[6,9],[10,40],[33,101],[-8,22],[36,83],[164,-9],[41,22],[71,-3],[77,-16],[11,2],[123,-9],[175,-35],[107,-14],[81,-19],[156,3],[160,-35],[43,162],[4,16],[31,152],[15,86],[14,40],[181,-55],[45,-24],[47,-30],[104,-32],[31,-22],[44,-41],[59,-81],[7,-7],[49,-21],[26,15],[111,-47],[-11,-30],[-26,-65],[-28,-164],[-3,-17],[-42,-118],[-17,-64],[-134,52],[-25,-58],[-220,-504],[142,-59],[-65,-128],[-66,-99]],[[68770,87344,0],[-38,-88],[-26,-71],[-32,-82],[-14,-44],[-42,-108],[-38,-131],[0,-15],[-4,-38],[-15,-123],[1,-49],[-1,-30],[-1,-154],[-1,-47],[9,-25],[7,-119],[10,-30],[0,-34],[3,-56],[1,-30],[-2,-42],[5,-65]],[[68592,85963,0],[-28,-12],[-76,-12],[-271,30],[-873,80],[-171,-80],[-109,-102],[-44,-46],[-191,-194],[-93,-95],[-201,-175],[-23,-14],[-19,-4],[-177,-37],[-3,77],[-23,9],[-32,10],[-12,1],[-30,4],[-14,24],[-4,115],[-15,64],[34,57],[12,64],[-9,3],[-4,39],[33,9],[14,10],[1,43],[-19,4],[-8,34],[-2,24],[4,27],[18,38],[-4,28],[-33,23],[5,21],[0,28],[29,62],[17,43],[-18,6],[13,19],[0,24],[18,1],[3,20],[22,27],[27,19],[29,12],[-20,53],[-18,4],[-39,11],[-10,2],[-31,16],[-12,35],[10,64],[-69,57],[-12,65],[-11,26],[-9,40],[-32,133],[-6,21],[-29,96],[-37,84],[-2,24],[-16,18],[-45,82],[2,33],[-12,45],[4,16],[-4,57],[-3,20],[-58,67],[-42,39],[-40,124]],[[68395,87731,0],[29,-19],[32,-15],[53,-26],[136,-65],[39,-13],[164,-89],[-21,-43],[-57,-117]],[[70576,86389,0],[-251,-42],[-182,-30],[12,-51],[0,-1],[4,-26],[56,-113]],[[70215,86126,0],[56,-102]],[[70271,86024,0],[45,-50],[12,-13]],[[70328,85961,0],[20,-38],[63,-78],[51,-63]],[[70462,85782,0],[3,-3],[10,-12]],[[70475,85767,0],[238,-149],[142,-53]],[[70855,85565,0],[98,-38],[121,-46]],[[71074,85481,0],[52,-6],[6,-1],[47,-5],[5,-3],[48,-25],[-121,-329],[-61,-165]],[[71050,84947,0],[-60,15],[-55,14],[-329,82],[-292,74],[-56,18]],[[70258,85150,0],[-125,40],[-153,51]],[[69980,85241,0],[-88,29],[-84,28]],[[69808,85298,0],[-185,98],[-54,28]],[[69569,85424,0],[-501,29],[-162,8],[-93,35]],[[68813,85496,0],[-54,15],[-159,38],[-107,23]],[[68493,85572,0],[-190,45],[38,27],[70,37],[51,-5],[34,6],[34,21],[68,21],[-1,86],[-11,57],[-2,42],[8,54]],[[68770,87344,0],[300,-85],[79,-23],[22,-17],[63,-41],[169,-86],[28,-19],[43,125],[22,122],[1,14],[18,97],[14,88],[-1,60],[0,25],[-2,145],[96,-7],[177,-11],[279,-48],[91,-14],[7,-36],[4,-22],[30,-163],[16,-45],[5,-18],[7,-14],[32,-78],[-14,-80],[1,-74],[7,-28],[6,-32],[9,-23],[2,-15],[-2,-39],[0,-36],[0,-29],[3,-22],[19,-16],[106,-26],[52,-83],[119,-243],[-1,-44],[0,-48],[-1,-66]],[[70067,83571,0],[-44,-14],[-284,-50],[-25,-3],[-72,-11],[-48,-9],[-28,-5],[-41,-8],[-69,-13],[-161,-31],[-285,-53],[13,-86],[35,-137],[200,-784],[27,-102],[18,-69]],[[69303,82196,0],[18,-65],[2,-15],[122,-475],[10,-38]],[[69455,81603,0],[-100,-13]],[[69355,81590,0],[-58,-10],[-127,-30],[-52,9],[-97,18],[-200,7],[-238,-51],[-118,-6],[-163,-38],[-147,-40],[-120,-25],[-274,-42],[-304,21],[-152,7],[-40,2]],[[67265,81412,0],[-9,-2],[-10,166],[-30,78],[-42,198],[7,54],[-26,57],[10,17],[101,-40],[70,-5],[95,49],[173,28],[1,0],[40,59],[90,71],[74,-28],[133,-10],[60,-32],[92,25],[73,2],[9,38],[111,46],[7,2],[-69,144],[28,117],[-24,128],[-1,8],[-4,25],[-90,15],[-17,-30],[-37,-65],[-136,-23],[-197,-9],[-201,-15],[-134,10],[-59,32],[-204,12],[-40,71],[-12,48],[-40,81],[-55,64],[-2,2],[-18,31],[-35,40],[-46,53],[163,57],[86,1],[132,20],[253,-45],[15,-12],[9,-7],[9,-6],[9,-5],[10,-5],[9,-5],[10,-5],[10,-4],[11,-4],[10,-3],[10,-4],[11,-3],[11,-1],[11,-2],[11,-2],[10,-1],[12,0],[10,-1],[11,0],[11,1],[11,1],[73,-47],[158,-4],[-9,101],[20,100],[27,89],[-61,-4],[-7,16],[64,167],[49,79],[-139,30],[21,219],[-7,1],[-231,71],[71,235],[-57,20],[-3,0],[-119,11],[34,107],[40,68],[-8,49],[0,1],[-36,41],[47,69],[-3,36],[47,79],[159,136],[0,4],[19,185],[-37,25],[22,92],[3,7],[25,64],[-7,19],[-80,7],[-6,19],[78,209],[40,68],[-27,56],[-20,67],[120,59],[-8,42],[-5,26],[-3,49],[1,90],[129,-7],[173,-24],[190,-44]],[[68813,85496,0],[94,-35],[161,-9],[501,-28]],[[69569,85424,0],[54,-29],[185,-97]],[[69808,85298,0],[84,-29],[88,-28]],[[69980,85241,0],[153,-52],[125,-39]],[[70258,85150,0],[56,-19]],[[70314,85131,0],[-3,-30],[-109,-652],[-138,11],[-11,-93],[-12,-83],[-5,-39],[-6,-57],[-15,-217],[-12,-46],[75,-196],[-84,-31],[3,-10],[24,-39],[46,-78]],[[73686,84427,0],[60,-120],[13,-28],[293,-611],[14,-27],[65,-137],[115,-238],[41,-85],[97,-235],[90,-218],[15,-37]],[[74489,82691,0],[130,-314]],[[74619,82377,0],[51,-128],[82,-191],[74,-182],[60,-149],[12,-30],[34,-79],[-30,-14]],[[74902,81604,0],[-95,-39]],[[74807,81565,0],[-243,662]],[[74564,82227,0],[-24,-5],[-14,-3],[-164,-34],[-333,-51],[-25,-50],[-112,-16],[-12,-2],[-40,-27],[-8,92],[-21,101],[12,5],[24,19],[26,10],[-3,107],[-3,80],[-25,77],[538,72],[-41,97],[-21,49],[-30,72],[-53,125],[-62,147],[-9,19],[-377,-81],[-65,-16],[-132,-14],[-25,-2],[5,-23]],[[73570,82975,0],[-7,-108]],[[73563,82867,0],[-153,39]],[[73410,82906,0],[-36,53],[-119,174]],[[73255,83133,0],[-356,2],[-349,2],[-51,-1],[-145,1],[-119,0],[-31,-5],[-60,-64],[-37,-42],[-85,16],[-44,9],[-58,5],[-41,1],[-132,-18]],[[71747,83039,0],[-62,-14],[-84,-19],[-98,-30],[-39,-21],[-308,-124],[-180,-74],[-26,-10],[-327,-100]],[[70623,82647,0],[30,29],[10,45],[0,32],[-17,31],[-17,40],[-26,52]],[[70603,82876,0],[-54,109]],[[70549,82985,0],[-68,137],[-16,38],[-19,49],[10,67],[16,51],[23,57],[22,48],[74,163],[17,66],[-64,-7],[-30,-3],[-22,-4],[-406,-73],[-19,-3]],[[70314,85131,0],[621,-156],[56,-13],[59,-15]],[[71050,84947,0],[61,164],[122,330],[-54,27],[-46,6],[-59,7]],[[71074,85481,0],[-219,84]],[[70855,85565,0],[-142,52],[-238,150]],[[70475,85767,0],[-13,15]],[[70462,85782,0],[-114,140],[-20,39]],[[70328,85961,0],[-57,63]],[[70215,86126,0],[-50,113],[-10,25],[-11,53],[432,72]],[[70576,86389,0],[32,5],[949,315],[-10,159],[247,12]],[[71794,86880,0],[39,2],[81,44],[557,0],[757,-1],[26,14],[15,-78],[107,16],[76,-458],[-4,-58],[-2,-19],[-68,-952],[-4,-67],[-10,-140],[34,-160],[288,-596]],[[76654,87735,0],[-85,-24],[1,-62],[7,-89],[5,-91],[1,-38],[57,-102],[51,-94],[21,-29],[17,-66],[45,-168],[42,-163],[-68,-78],[-50,-53],[-144,-155],[-16,-80],[-15,-45],[24,-28],[14,-28],[60,-111],[23,-151],[-13,-99],[-11,-113],[-39,-112],[-1,-125],[-5,-182],[-31,-21],[-40,-57],[-145,66],[-104,44],[-124,51],[-60,29],[-23,-6],[-93,14],[-64,-8],[-167,-20],[-97,-8],[-98,-9],[-136,-12],[-85,-9],[-88,-10],[-153,-15],[14,-325],[2,-92],[2,-45],[3,-95],[301,-46],[139,-20],[95,-13],[111,-17],[138,-20],[137,-20],[170,-23],[116,-15],[-24,-148]],[[76271,84599,0],[-379,-17],[-66,-3],[-109,-8],[-127,-11],[-270,-19],[-279,-17],[-458,-33],[-42,55],[-60,77],[-91,76],[-91,-31],[-124,-43],[-13,-22],[-18,-12],[-129,-139],[-161,-10],[-168,-15]],[[71794,86880,0],[-2,40],[30,428],[139,1691],[12,180],[-8,18],[2169,608],[270,14],[39,-221],[159,-276],[-1,-46],[31,-45],[-15,-84],[570,-41],[647,-54]],[[75834,89092,0],[15,-524],[4,-97],[-2,-38],[8,-180],[-7,-41],[-77,-487],[6,-192],[200,186],[39,19],[45,28],[127,91],[380,276],[71,-47],[11,-351]],[[81035,88049,0],[-29,-10],[-129,-47],[-316,-168],[-50,-44],[-54,-50],[-27,-41],[-56,-90],[-52,-76],[-81,-82],[-26,-26],[-107,-122],[-158,-180],[-3,10],[-23,31],[-265,-2],[-91,5],[-42,3],[-142,20],[-29,16],[-105,33],[-261,95],[-69,25],[-129,50],[-26,6],[-29,9],[-49,230],[-13,76],[-63,1],[-11,67],[0,6],[-3,20],[1,66],[3,127],[-246,-50],[-44,12],[-95,38],[-8,8],[-49,53],[-26,46],[-175,11],[13,-156],[-93,-5],[-100,-45],[-70,-8],[-27,0],[-42,-9],[-99,-16],[-18,-1],[-21,-1],[-64,-8],[-55,-11],[-48,-7],[-53,-11],[-94,-25],[-56,-14],[-14,36],[-33,2],[-79,-15],[-59,-11],[-66,-26],[-47,-19],[-93,-21],[-34,2],[-52,-21]],[[75834,89092,0],[-128,699],[98,463],[-250,786],[42,13],[278,-3],[355,-144],[215,-59],[207,181],[34,0],[173,28],[238,-2],[504,308],[248,41],[598,123],[21,3],[59,-84],[113,-127],[55,-28],[90,-35],[121,-136],[104,-79],[200,-76],[96,-48],[102,-13],[123,-30],[207,-23],[99,-39],[130,-5],[98,-20],[55,-36],[144,-34],[121,-34],[206,-14],[180,-4],[86,23],[56,8],[14,-23],[262,-281],[500,-5],[523,-164],[40,-7],[283,-90],[123,-19],[33,-30],[-1,-81],[-74,-67],[-160,-237],[27,-65],[-25,0],[-64,-26],[-64,-99],[3,-38],[-33,-70],[-138,-129],[-18,-27],[-74,-171],[-47,-46],[12,-12],[-168,-174],[-64,-111],[-120,-157],[-44,-71],[-32,-101],[-50,-88],[-57,-87],[-76,-68],[-84,-30],[-242,-50],[-62,-22]],[[73255,83133,0],[155,-227]],[[73563,82867,0],[5,89],[2,19]],[[74564,82227,0],[122,-294],[148,-356]],[[74834,81577,0],[-27,-12]],[[74807,81565,0],[-442,-182],[-245,-101]],[[74120,81282,0],[-20,-8],[-92,-38]],[[74008,81236,0],[-21,-18],[34,-23],[-187,-257],[-53,30],[-27,-93]],[[73754,80875,0],[-27,-7],[137,-88],[-14,-18],[-16,-12],[-18,-9],[22,-36],[-8,-15],[-12,-9]],[[73818,80681,0],[-11,6],[-41,-77],[-58,42],[-68,25],[-36,14],[-15,6],[-48,22],[-9,43],[-41,12],[-67,0],[-160,-16],[-142,59],[-156,130],[-101,-17],[-128,-15]],[[72737,80915,0],[-13,14],[0,48],[-16,93],[-5,12]],[[72703,81082,0],[-25,76]],[[72678,81158,0],[-7,20],[-4,12]],[[72667,81190,0],[-2,30],[-196,-50],[-80,251],[-14,49],[64,-32],[128,-39],[90,-5]],[[72657,81394,0],[-5,75],[-55,1],[-77,32],[-26,8],[-56,26],[-20,8],[-41,25],[-22,17],[-22,21],[-38,39],[-50,84],[-71,153],[-72,162]],[[72102,82045,0],[-65,147],[-47,95],[-97,224],[-61,138],[-22,53],[45,16],[-46,96],[-75,-28],[-44,103]],[[71690,82889,0],[3,10],[54,140]],[[71747,83039,0],[-57,-150]],[[72102,82045,0],[-127,100]],[[71975,82145,0],[-16,34],[-62,139],[-63,143],[-257,-96]],[[71577,82365,0],[37,-83]],[[71614,82282,0],[-79,-14]],[[71535,82268,0],[-34,81],[-68,158],[-46,109],[-8,21],[-15,24],[-22,23],[-23,16],[-33,14],[-30,4],[-23,0]],[[71233,82718,0],[-262,-102]],[[70971,82616,0],[-26,-22],[-24,-31],[-9,-26],[0,-21]],[[70912,82516,0],[-64,16]],[[70848,82532,0],[-118,60],[-102,47],[-22,-27]],[[70606,82612,0],[-167,-94]],[[70439,82518,0],[-53,-23],[-34,-15]],[[70352,82480,0],[-38,-10],[-151,-47],[-30,14]],[[70133,82437,0],[-19,-29],[-39,-12],[-26,-18],[-13,-19],[-8,-22],[1,-32],[4,-25],[-56,-88],[-39,125],[-11,14],[-14,9],[-19,7],[-21,1],[-35,-9],[-535,-143]],[[70549,82985,0],[5,-11],[49,-98]],[[7285,30607,0],[29,-31],[1171,-1193],[607,-143],[243,11],[-57,-40],[-157,-114],[-223,-30],[-36,-9],[-139,9],[-149,97],[-46,-14],[7,-17],[145,-353],[85,-209],[387,-940],[16,-39],[-60,-92],[-19,-30],[9,-20],[-31,-76],[-87,-167],[-84,-173],[-27,-83],[-100,-99],[-137,-86],[-143,-41],[-35,0],[-41,0],[-95,0],[-193,-19],[-58,-4]],[[8067,26702,0],[-98,115],[-73,85],[-79,73],[-103,68],[-108,61],[-106,33],[-89,16],[-82,14],[-121,8],[-120,-22],[-95,-27],[-84,-29]],[[6909,27097,0],[-50,98],[-5,13],[-1033,-93],[-62,-7],[-54,-5],[-101,-9],[-162,-6],[-84,38],[-560,173],[-154,67],[-237,138],[-109,83],[-68,92],[-62,157],[-42,130],[-31,185],[-49,357],[-49,57],[-80,-39],[-263,-269],[-159,-211],[-109,-74],[-128,-66],[-117,-7],[-99,25],[-73,-5],[-53,-30],[-116,-71],[-187,-142],[-292,-163],[-240,-117],[-108,-22],[-188,51],[-118,79],[-121,24]],[[1546,27528,0],[29,88],[127,-35],[140,140],[29,217],[372,2783],[55,387],[997,-311],[949,-295],[1244,-391],[219,-72],[134,16],[61,0],[86,-83],[101,-50],[150,4],[279,79],[75,31],[188,83],[159,118],[95,200],[62,93],[188,77]],[[6909,27097,0],[-59,-23],[-79,-46],[-37,-34],[-62,-66],[-42,-57],[-74,-110],[-66,-184],[-105,-365],[-23,-83],[-73,-214],[-56,-123],[-56,-105],[-28,-49],[-29,-45],[-21,-22],[-56,-49],[-16,-12],[-40,-20]],[[5987,25490,0],[-45,-26],[-68,-16],[-59,-7],[-87,0],[-48,7],[-49,11],[-38,10],[-17,5],[-31,16],[-71,39],[-111,57],[-37,16],[-93,41],[-105,37],[-83,17],[-43,5],[-54,6],[-147,67],[-38,21],[-198,97],[-124,-22],[-89,-9],[-28,-3],[-26,-15],[-25,-16],[-579,-326],[-244,-184],[-156,-101],[-55,-39],[-158,-112],[-377,-293],[-166,-104],[-480,-75],[-276,-53]],[[1782,24541,0],[-181,96],[-166,161],[-177,155],[-234,245],[-61,0],[-48,205],[-78,243],[-145,138],[-13,19],[-25,77],[-194,163],[-66,140],[-186,186],[-198,80],[-10,41],[222,208],[220,115],[74,79],[44,42],[125,67],[200,114],[61,56],[182,69],[33,48],[77,59],[241,122],[67,59]],[[5987,25490,0],[-2,-131],[-1,-26],[-2,-122],[-10,-622],[25,-39],[-28,-69],[-6,-54],[21,-124],[116,-163],[68,-88],[18,-48],[-16,-88],[-132,-214],[-297,-145],[-52,-78],[-117,-208],[-110,-327],[1,-91],[5,-61],[136,-141],[54,-54],[144,-115],[145,-75]],[[5947,22407,0],[-52,-23],[-1058,-426],[-664,-268],[-926,-373],[-216,-88],[-34,-6],[-32,-8],[-28,-7],[-191,-49],[-78,-19],[-73,23],[-938,262],[-258,-14],[-70,-4],[-29,-2],[-66,-2]],[[1234,21403,0],[-18,423],[9,137],[14,97],[39,166],[34,120],[56,168],[57,159],[42,102],[47,104],[59,113],[-151,507],[-24,74],[-79,1],[-80,-1],[-49,-1],[286,481],[163,316],[15,35],[128,137]],[[8709,20819,0],[9,-56],[3,-48],[-11,-183],[24,-81],[58,-120],[133,-293],[181,-405],[80,-175],[23,-45]],[[9209,19413,0],[-65,32],[-56,29],[-224,318],[-11,12],[-111,188],[-59,105],[-29,72],[-40,-15],[-54,-19],[-240,-172],[-52,-92],[29,-221],[31,-221],[-6,-309],[12,-93],[-40,-13],[-912,-271],[-116,-36],[-22,-8],[-19,-2],[-137,-42],[-80,-21],[-12,-3],[-69,-10]],[[6927,18621,0],[-83,-10],[-105,-22],[-134,22],[-24,-56],[-137,-93],[-90,-135],[-123,-65],[-197,-74],[-218,-239],[-9,-85],[-65,-34],[-140,-148],[-27,-30],[-63,-112],[-124,-129],[-125,-104]],[[5263,17307,0],[-11,6],[-11,7],[-285,322],[-34,41],[-378,477],[-15,2],[-3366,1284],[-919,345],[-72,27],[-24,11],[-11,6],[-55,8],[15,28],[58,82],[173,197],[95,128],[98,149],[176,337],[46,72],[38,44],[221,215],[150,160],[51,73],[20,40],[11,35]],[[5947,22407,0],[501,-197],[218,-51],[606,-114],[51,-19],[198,-125],[186,-146],[37,-46],[53,-63],[167,-251],[134,-190],[82,-112],[70,-78],[101,-71],[167,-66],[191,-59]],[[11938,28220,0],[-396,-1376],[-138,-485],[-37,-128],[-8,-27],[33,-112],[33,-99],[7,-12],[21,-37],[90,-168],[-9,-197],[108,-136],[26,-33]],[[11668,25410,0],[-77,-82],[-64,-141],[-10,-162],[-36,-50],[-235,-224],[-309,-241]],[[10937,24510,0],[-90,-53],[-258,-144],[-152,-69],[-119,1],[-134,34],[-149,55],[-102,16],[-73,-7],[-78,-26],[-123,-82],[-81,40],[-30,42],[-107,142],[-122,131],[-59,47],[-188,53],[-160,79],[-179,124],[-180,148],[-390,281],[-121,95],[-277,250],[-87,50],[-4,41],[164,229],[212,227],[41,43],[83,89],[18,18],[85,92],[-112,128],[-98,118]],[[7285,30607,0],[60,82],[174,147],[214,-14],[109,29],[144,70],[224,229],[262,322],[22,3],[3,-38],[876,-498],[615,-342],[30,10],[10,9],[411,318],[-11,78],[47,-15],[17,6],[443,-2],[252,-9],[239,30],[53,-135],[10,-86],[83,-345],[-20,-43],[30,-134],[18,-117],[338,-1942]],[[15212,24004,0],[-17,13],[-125,100],[-60,38],[-32,19],[-107,40],[-75,26],[-226,-15],[-120,-20],[-38,18],[-465,-174],[-166,-61],[-84,-18],[-69,-6],[-42,-1],[-65,9],[-76,21],[-69,31],[-76,11],[-148,93],[-79,210],[24,131],[63,435],[-19,66],[-16,42],[-148,235],[-105,128],[-134,123],[-55,32],[-228,132],[-194,51],[-207,-6],[-83,-40],[-53,-35],[-250,-222]],[[11938,28220,0],[4577,359],[-637,-1574],[-326,-794],[-80,-364],[-32,-316],[87,-388],[-163,-46],[-135,-138],[-10,-629],[-3,-140],[-1,-35],[-3,-151]],[[9209,19413,0],[-16,-45],[1,-8],[0,-20],[-186,-943],[-48,-250],[-8,-56],[95,-121],[64,-82],[35,-187],[34,-95],[-21,-93],[27,-36],[727,-965],[31,-31]],[[9944,16481,0],[33,-30],[132,-119],[56,-54],[27,-26],[8,-7],[-60,-59],[-400,-361],[-157,-162]],[[9583,15663,0],[-34,-37],[-119,-83],[-112,-81],[-119,-77],[-118,-49],[-122,-64],[-137,-49],[-143,-34],[-140,-19],[-145,-7],[-153,23],[-137,33],[-140,61],[-119,88],[-108,83],[-90,107],[-57,138],[-48,146],[-14,133],[10,133],[-24,383],[18,131],[-5,123],[-13,122],[-37,118],[-128,505],[-133,352],[-1,16],[-32,124],[-57,112],[-112,236],[-59,137],[-26,128],[-2,26]],[[9583,15663,0],[344,-273],[305,-379],[203,-223],[80,-146],[11,-42]],[[10526,14600,0],[-60,-27],[-48,-40],[-149,-164],[-123,-100],[-138,-138],[-92,-38],[660,-534],[34,-24],[-264,-194],[-96,-32],[-454,-16],[-233,-32],[-184,-66],[-143,-15],[-168,-27],[-150,-18],[-365,-101],[-408,-22],[-216,-14],[-148,-62],[-95,-148],[-51,-3],[-73,147],[89,128],[-45,17],[-68,-78],[-42,-76],[-128,117],[60,185],[175,-24],[31,9],[-143,78],[-208,3],[-113,-63],[-59,0],[-816,186],[-1254,138],[-140,86],[-41,36],[-148,74],[-116,105],[-137,199],[-133,104],[-118,107],[-64,87],[-129,69],[-37,101],[44,62],[-169,285],[-127,187],[-54,138],[-39,69],[-58,34],[-11,14],[-22,92],[7,65],[-24,85],[-3,141],[-49,114],[-45,151],[128,226],[66,101],[88,120],[120,105],[1,18],[131,25],[159,105],[88,52],[439,188],[150,92],[130,84],[158,74],[177,160]],[[56277,11473,0],[-59,34],[-63,33]],[[56194,11691,0],[50,98],[11,20]],[[56255,11809,0],[7,19],[18,48],[0,6],[-11,36],[12,5],[6,7],[14,44],[82,-18]],[[56404,11969,0],[31,163],[115,1],[44,2]],[[57139,14555,0],[0,-35],[1,-16],[1,-19]],[[57141,14485,0],[2,-2],[3,-35],[4,-42],[2,-37],[1,-34],[-8,-29],[1,-30],[19,-8],[0,-13]],[[57165,14255,0],[6,-92],[-3,-117],[8,-1],[-13,-19],[28,-15],[3,-68],[1,-10],[10,0],[1,-21],[1,-40],[-1,-30],[8,-23],[8,-21],[16,-20],[5,-7],[7,-23],[-79,-4],[33,-337],[0,-22]],[[56829,13248,0],[4,6],[4,5],[3,5],[3,7],[2,6],[2,8],[2,6],[1,9],[0,8],[-1,7],[-3,9],[-1,4],[-17,43],[-11,29],[-5,7],[-6,4],[-6,4],[-6,4],[-7,1],[-6,2],[-4,0],[-39,-2],[-100,-4],[-22,0],[-78,0],[-12,1],[-13,2],[-12,3],[-13,2],[-14,4],[-14,4],[-11,4],[-15,6],[-16,7],[-14,7],[-15,8],[-7,4],[-20,14],[-16,12],[-20,16],[-7,7],[-17,17],[-16,16],[-18,22],[-14,24],[-20,44],[-11,22],[-40,83],[-8,17],[-24,92],[-6,19],[-7,40],[-7,54],[-1,17],[-2,56],[-1,20],[-12,8],[0,4],[-96,2],[-12,-3],[-28,1],[1,27],[-2,6],[-6,3],[-14,0],[2,72],[-151,1],[-6,58],[13,73],[17,34],[5,3],[-1,5],[3,6],[-17,6],[-2,-5],[-10,3],[-6,5],[0,3],[16,54],[-19,7],[2,8],[-5,4],[16,79],[16,51],[33,91],[36,65],[14,31],[42,91],[184,23],[175,23],[65,1],[5,0],[57,-13],[163,-29],[100,-17],[211,-70],[106,-63],[12,-8]],[[57034,14700,0],[56,-32],[1,-17],[0,-8],[26,2],[29,7],[3,-14],[-7,-48],[-3,-35]],[[10937,24510,0],[-360,-491],[-753,-1006],[-25,-36]],[[9799,22977,0],[-142,-480],[-108,-270],[-238,-259],[-106,-238],[-496,-911]],[[15335,21566,0],[-602,-179],[-42,-11],[164,-392],[33,-68],[152,-174],[11,-13],[-525,-219],[-30,-60],[-594,-1326],[-40,-92],[-707,-1628],[-7,-18],[-166,-222],[-127,-116],[-34,-271]],[[12821,16777,0],[-6,-42],[-34,-4],[-61,-13],[-108,-17],[-95,-7],[-111,21],[-82,24],[-144,52],[-361,133],[-134,10],[-160,-8],[-97,-12],[-172,6],[-383,14],[-164,-18],[-196,-61],[-71,-42],[-174,-110],[-324,-222]],[[9799,22977,0],[38,-23],[59,-36],[109,-29],[402,122],[101,25],[196,19],[100,25],[54,63],[91,149],[44,22],[145,25],[70,-4],[212,-61],[380,-86],[73,-30],[75,-31],[63,10],[335,-115],[153,-131],[147,-81],[181,-30],[40,-5],[308,63],[66,-9],[80,-38],[86,-43],[110,-35],[111,-24],[97,-32],[546,-244],[124,-136],[51,-29],[113,-33],[52,-38],[237,-184],[336,-270],[151,-157]],[[18106,21369,0],[-14,-1033],[0,-41],[35,10],[62,19],[53,25],[19,12],[145,124],[66,42],[184,-932]],[[18656,19595,0],[9,-46],[-20,5],[-57,6],[-59,-20],[-32,-54],[-8,-162],[24,-112],[-31,-29],[-606,-609],[185,-89],[16,-12],[96,-96],[79,-143],[23,-101],[-151,-383],[-154,-293],[-191,-420],[-3,-61],[41,-96],[-38,-19]],[[17779,16861,0],[-724,-400],[-667,-369],[-53,-8],[-1059,-132],[-107,50],[-83,36],[-98,-25],[-68,-34],[-108,-88],[-127,-95],[-99,-55],[-80,-9],[-165,52],[-248,169],[-61,70],[-130,428],[-10,21],[-43,54],[-40,40],[-86,37],[-405,125],[-236,96],[-73,40],[-142,-67],[-46,-20]],[[15335,21566,0],[84,-60],[202,-20],[129,-2],[88,53],[73,128],[43,33],[212,57],[205,25],[134,-9]],[[16505,21771,0],[990,-182],[178,-68],[77,-50],[169,-174],[75,-22],[19,-2],[44,36],[49,60]],[[22838,20307,0],[-119,-37],[-231,-24],[-65,-12],[-317,-53],[-25,-10],[-62,-36],[-384,-214],[-698,-284],[-499,-315],[-205,-120],[-284,-126],[-340,-77],[-221,-40],[-186,25],[-115,40],[-118,87],[-111,145],[-92,271],[-75,58],[-35,10]],[[18106,21369,0],[116,158],[141,87],[222,212],[264,156],[165,84],[275,107],[81,145],[-29,95],[-78,221],[-21,35],[-95,134],[-30,65],[0,62],[57,29],[286,132],[319,138],[111,22],[66,18],[13,52],[-6,58],[46,264],[39,89],[88,165],[208,286],[127,130],[49,24],[78,42],[41,43],[12,11],[47,66],[85,145],[171,116],[194,109],[103,13],[78,-5],[170,-41],[292,-120],[46,-118],[41,-56]],[[21878,24542,0],[42,-63],[136,-193],[356,-506],[751,-1070],[54,-71],[220,-1705],[36,-288],[-476,-257],[-159,-82]],[[27999,24600,0],[-119,-460],[-126,-484],[-11,-41],[94,-470],[80,-412],[12,-45]],[[27929,22688,0],[671,-1335],[90,-11],[25,-69],[42,-254],[39,-48],[111,-32],[47,-16],[27,-8],[15,-6],[-7,-52],[5,-220],[-11,-214],[-22,-103],[-17,-54],[-20,-48],[-29,-55],[-26,-37],[-31,-36],[-52,-48],[-38,-19],[-37,-12],[-36,-8],[-37,-3],[-41,4],[-54,11],[-72,41],[-36,46],[-37,55],[-54,111],[-790,-940],[19,-64],[-31,-13],[-159,-609],[18,-54]],[[27401,18588,0],[-222,115],[-61,51],[-70,110],[-130,323],[-139,302],[-81,147],[-36,67],[-25,26],[-31,32],[-307,309],[-79,75],[-114,111],[-120,35],[-214,19],[-226,3],[-346,58],[-176,11],[-110,-12]],[[24914,20370,0],[-191,-85],[-340,-235],[-80,-82],[-157,-131],[-97,-46],[-158,-61],[-100,-38],[-112,-122],[-186,-108],[-46,-58],[-174,-147],[-144,-79],[-203,-62],[448,986],[-22,81],[-102,5],[-353,101],[-59,18]],[[21878,24542,0],[45,-32],[57,-71],[37,-5],[76,-33],[63,39],[64,11],[18,5],[29,20],[69,49],[315,-22],[334,-8],[233,-83],[164,-96],[162,-58],[70,-47],[301,-370],[74,-13],[104,-122],[301,0],[236,519],[99,99],[124,-42],[298,42],[35,-58],[122,-31],[59,-307],[384,-246],[105,-29],[101,-72],[32,3],[108,-129],[-3,-64],[159,-152],[225,-172],[110,-50],[184,488],[41,135],[9,86],[-15,124],[-33,123],[54,133],[111,127],[34,30],[136,68],[387,102],[221,-14],[282,181]],[[38959,18757,0],[-137,-246],[-242,-98],[-273,112],[-325,211],[-423,143],[-139,-172],[15,-155],[-514,-170],[-665,-223],[-49,-17],[-122,-42],[-49,-34],[-75,-44],[-98,-49],[-97,-43],[-52,-19],[-46,-15],[-67,-9],[-23,0],[-42,6],[-48,33],[-39,33],[-81,65],[-315,265],[-159,141],[-118,108],[-34,45]],[[34742,18583,0],[-40,190],[-15,169],[-2,52],[9,410],[-79,322],[-101,112],[-60,154],[-19,90],[-12,62],[-72,331],[-9,244],[105,303],[92,-72],[36,-27],[44,94],[41,65],[259,249],[38,72],[70,421],[90,168],[24,47],[-25,73],[-44,191]],[[35072,22303,0],[21,3],[45,-5]],[[35138,22301,0],[127,-24],[82,-8],[91,-3]],[[35438,22266,0],[137,3],[27,-4]],[[35602,22265,0],[48,-16],[121,-56]],[[35771,22193,0],[44,-20]],[[35815,22173,0],[214,-92],[191,-78],[80,-38]],[[36300,21965,0],[89,-50],[66,-27]],[[36455,21888,0],[90,-19]],[[36545,21869,0],[92,-4],[120,-1],[92,2]],[[36849,21866,0],[90,2]],[[36939,21868,0],[43,5],[23,6],[22,7]],[[37027,21886,0],[26,13],[21,18]],[[37074,21917,0],[33,36],[17,24]],[[37124,21977,0],[24,47],[16,45],[23,48],[27,44]],[[37214,22161,0],[19,23],[26,28]],[[37259,22212,0],[190,179]],[[37449,22391,0],[98,97],[42,46],[73,86]],[[37662,22620,0],[32,35],[26,20],[21,12]],[[37741,22687,0],[51,22]],[[37792,22709,0],[98,36],[29,2],[23,-5]],[[37942,22742,0],[56,-13]],[[37998,22729,0],[82,-23],[64,-10]],[[38144,22696,0],[59,-4]],[[38203,22692,0],[132,-8],[92,-4],[77,-2]],[[38504,22678,0],[41,6],[36,8],[70,-203]],[[38651,22489,0],[12,-36],[50,0],[258,-3]],[[38971,22450,0],[132,237],[43,73]],[[39146,22760,0],[100,6],[283,16],[146,8],[281,16],[71,4],[11,0],[34,3]],[[40072,22813,0],[216,12]],[[40288,22825,0],[13,0],[21,2],[24,1],[31,0],[102,1],[18,23],[69,230],[45,67],[121,24],[29,16],[16,31],[637,-27],[44,-1],[11,-11],[145,-50]],[[41614,23131,0],[42,-112],[162,-614],[119,-239],[93,-171],[100,-184],[79,-114],[79,-68],[35,-28],[23,-13],[43,-22],[63,-14],[56,6],[114,50],[125,57],[169,74],[22,-35],[25,-37],[-65,-81],[-277,-283],[-105,-93],[-73,-38],[-68,-13],[-211,22],[-354,130],[-129,103],[-121,-10],[-103,-172],[-162,-225],[-62,-87],[-31,-66],[-11,-39],[-30,-104],[-401,-191],[-413,-41],[-293,2],[-180,78],[-166,-636],[-283,-312],[-99,-310],[-56,-128],[-137,-204],[-86,-144],[-88,-68]],[[43689,22849,0],[39,-348]],[[43728,22501,0],[21,-208],[5,-50],[-63,-61]],[[43691,22182,0],[-34,-34],[-116,-109],[-34,-32]],[[43507,22007,0],[-19,-18],[-7,-335],[-3,-182],[-3,-224]],[[43475,21248,0],[-6,-282],[-5,-256],[-2,-69]],[[43462,20641,0],[-3,-156],[45,-31]],[[43504,20454,0],[-417,-254],[-242,-244],[-39,-33],[-134,-111],[-26,-19],[-485,-606],[-20,-18],[9,-49],[13,-64],[63,-310],[10,-49],[110,-533],[6,-41],[99,-495]],[[42451,17628,0],[-21,20],[-98,56],[-168,66],[-102,23],[-90,14],[-116,12],[-305,4],[-191,-11],[-131,-13],[-59,-13],[-48,-19],[-102,-61],[-324,-272],[-160,-155],[-104,-120],[-53,-57],[-100,-127],[-84,-121]],[[40195,16854,0],[-120,60],[-378,195],[-14,8],[29,47],[72,121],[-62,67],[-116,107],[-141,60],[-39,7],[-24,3],[-107,-185],[-81,-94],[-132,-110],[-81,-92],[-46,31],[-44,31],[-60,38],[-287,159],[63,73],[-107,69],[-132,493],[-11,41],[99,-8],[65,15],[191,82],[170,103],[137,108],[220,255],[-300,219]],[[41614,23131,0],[237,62],[225,55],[231,60],[613,154],[231,-98],[-26,-30],[97,-253],[18,-83],[51,-250],[220,57],[42,12],[136,32]],[[46460,15992,0],[0,-38],[-1148,104],[-161,19],[-163,27],[-235,46],[-429,103],[-693,126],[-201,103],[-129,76],[-776,1012],[-74,58]],[[43504,20454,0],[378,-287],[552,-607],[29,-34],[62,-67],[258,-283],[45,-49]],[[44828,19127,0],[213,-239],[165,-186],[56,-63],[338,-380],[155,-173],[311,-350],[299,-387],[75,-97],[40,-59]],[[46480,17193,0],[-2,-103]],[[46478,17090,0],[-2,-68]],[[46476,17022,0],[0,-14],[0,-32]],[[46476,16976,0],[0,-64],[1,-87]],[[46477,16825,0],[-7,-57],[1,-35],[5,-41]],[[46476,16692,0],[-16,-598],[0,-102]],[[40195,16854,0],[-324,-557],[-414,-746],[-116,-224],[-112,-268],[-127,-314],[-50,-99],[-94,-146],[-171,-235],[-110,-134],[-116,-130],[-109,-117],[-113,-98],[-161,-125],[-125,-78],[-130,-65],[-210,-91],[-79,-35],[-99,-41],[-134,-45],[-80,-25],[-72,-16],[-174,-41],[-52,-14],[-85,-27],[-410,-121],[-53,-18],[-304,-94],[-86,-34],[-126,-64],[-39,-27],[-149,-123],[-329,-300],[-784,-743],[-42,-46]],[[34616,11613,0],[-192,184],[-32,28],[-261,248],[-45,43],[-47,43],[-35,33],[-436,410],[-95,210],[-50,162],[-34,115],[-43,420],[163,509],[-64,328],[4,272],[222,228],[145,265],[-73,176]],[[33743,15287,0],[57,295],[-10,224],[-112,116],[-292,171],[-11,446],[-2,46],[-65,237],[-77,111],[-31,43],[-18,27],[13,12],[29,28],[38,53],[32,68],[17,80],[1,65],[-4,68],[-12,108],[-22,100],[-47,195],[-17,38],[-59,89],[-42,52],[-113,134]],[[32996,18093,0],[-60,73],[-35,45],[-39,68],[-31,92],[-8,63],[2,44],[10,43],[11,28],[61,109],[35,42],[62,60],[151,70],[267,94],[113,43],[60,26],[154,85],[141,86],[228,143],[29,16],[52,12],[45,4],[45,-6],[41,-12],[65,-53],[43,-60],[43,-98],[70,-138],[31,-82],[46,-119],[26,-61],[28,-51],[60,-76]],[[33743,15287,0],[-185,-21],[-206,-249],[-282,-402],[-321,-86],[-319,29],[-353,431],[-52,76],[-230,331],[-333,-310],[-332,-236],[304,-366],[140,-197],[294,-415],[201,-267],[154,-205],[-480,-338],[-361,-37],[-521,-51]],[[30861,12974,0],[-8,46],[-30,177],[-10,179],[-44,43],[-45,45],[-72,76],[-73,80],[-168,-7],[-92,-3],[-66,-3]],[[30253,13607,0],[-29,297],[-4,42]],[[30220,13946,0],[-742,952],[-74,96],[-316,411]],[[29088,15405,0],[-38,48],[-30,38],[-38,21],[-82,43],[53,414],[8,251],[77,571],[83,427],[11,104],[20,529],[-15,86],[16,591]],[[29153,18528,0],[882,131],[44,4],[9,0],[299,-95],[1132,85],[185,-44],[712,-164],[291,-214],[289,-138]],[[25497,19292,0],[212,26]],[[25709,19318,0],[70,-49],[14,-14]],[[25793,19255,0],[56,-73],[23,-239]],[[25872,18943,0],[32,-116],[131,-267],[85,-127],[-16,-163],[-3,-86]],[[26101,18184,0],[44,-191],[66,-147]],[[26211,17846,0],[169,-342],[143,-155],[105,-82]],[[26628,17267,0],[132,-74]],[[26760,17193,0],[231,-55],[228,-31]],[[27219,17107,0],[257,13],[111,16]],[[27587,17136,0],[264,74]],[[27851,17210,0],[105,-84],[-21,-329]],[[27935,16797,0],[9,-139],[-44,-482],[-16,-42],[-60,-177],[-131,-263],[-242,-308],[-85,-163],[-44,-100],[-71,-162],[-91,-207],[14,-79],[-27,-52],[-116,-212],[-280,-308],[-237,-235],[-401,-448],[-2,-233]],[[26111,13187,0],[-843,-737],[-201,205],[-253,-9],[-320,-55],[-499,-83],[-141,-21],[7,607],[167,9],[360,119],[408,236],[160,89],[318,335],[81,105],[-101,1096],[-76,939],[-56,398],[-282,746],[-62,67]],[[24778,17233,0],[-25,88],[-95,118],[-119,109],[-25,142],[-89,889],[-3,45],[108,122],[112,194],[137,194],[130,246],[100,42]],[[25009,19422,0],[158,-103]],[[25167,19319,0],[67,-18],[263,-9]],[[24778,17233,0],[16,-65],[-16,-135],[90,-624],[34,-160],[78,-124],[17,-63],[23,-122],[-7,-148],[-23,-193],[-11,-168],[12,-367],[-48,-2],[-350,-17],[-44,-4],[-59,6],[-434,68],[182,583],[-513,16],[-260,-110],[1,-1179],[501,-73],[-38,-146],[-104,19],[-46,-195],[-492,162],[-132,-34],[-56,-2],[-29,230],[-120,395],[-202,515],[-1440,214],[-36,6],[-105,-90],[-200,-173],[-7,-7],[-58,-20],[-58,-20],[-274,-93],[-45,-15],[-3004,-910],[-181,195],[-192,233]],[[17148,14616,0],[-25,59],[173,549],[501,1612],[-18,25]],[[24914,20370,0],[5,-43],[90,-905]],[[17148,14616,0],[-41,-14],[-318,-138],[-35,-25],[-15,-10],[-38,-25],[-129,-86],[-62,-32],[298,-729],[20,-55],[-139,58],[-173,41],[-69,-25],[-98,-47],[-75,-71],[-123,-162],[-102,-162],[-84,-194],[-64,-317],[-56,-335],[-39,-43],[-127,-3],[-227,205],[-76,134],[25,258],[-6,83],[-8,150],[-16,152],[-29,104],[-32,90],[-123,241],[-63,94],[-63,81],[-62,54],[-352,270],[-64,34],[-105,44],[-110,88],[-62,109],[-38,30],[-271,72],[-205,88],[-261,166],[-257,194],[-410,249],[-321,178],[-156,80],[-172,81],[-91,29],[-94,10],[-127,-13],[-80,-24],[-187,-78],[-68,-55],[-43,-53],[-71,-127],[-66,-74],[-398,-220],[-35,-35],[-114,-242],[-26,-23],[-94,-41],[-130,-14],[-65,-11]],[[27401,18588,0],[137,-45],[212,-26],[324,-84],[231,-28],[221,32],[189,62],[343,141],[62,-11],[33,-100],[0,-1]],[[29088,15405,0],[316,-410],[74,-96],[742,-952],[0,-1]],[[30253,13607,0],[-638,109],[-157,-16],[-371,-34],[-380,12],[-258,-92],[-479,31],[-276,-63],[-407,-104],[-253,-237],[-167,-123],[-452,-127],[-304,223],[0,1]],[[27935,16797,0],[21,328],[-105,85]],[[27587,17136,0],[-111,-17],[-257,-12]],[[27219,17107,0],[-228,30],[-231,56]],[[26628,17267,0],[-105,81],[-142,156],[-170,342]],[[26211,17846,0],[-66,146],[-44,192]],[[25872,18943,0],[-23,238],[-56,74]],[[25793,19255,0],[-14,13],[-70,50]],[[25497,19292,0],[-263,8],[-67,19]],[[34616,11613,0],[-332,-343],[-100,-102],[-179,311],[-25,39],[-107,178],[-83,100],[-29,34],[-14,18],[-151,-88],[-122,-51],[-71,-24],[-108,-26],[-63,-9],[-117,-11],[-118,-23],[-121,-35],[-56,-23],[-64,-31],[-113,-67],[-45,-31],[-37,41],[-41,46],[-810,121],[-747,116],[-34,343],[-17,567],[-26,158],[-25,153]],[[75400,8585,0],[-73,-132],[-41,-71],[-57,-100],[-65,32],[-98,48],[-112,52],[-112,57],[-33,14],[-43,22],[-60,28],[-33,-18],[-93,-54],[-99,-54],[-93,-54],[-81,-48],[-67,88],[-59,88],[-33,55],[-26,35],[-51,75],[-12,-7],[-68,-40],[-28,-48],[-38,-67],[-105,-181],[-53,-89]],[[73767,8216,0],[-71,29],[-55,19],[-27,7],[-24,5],[-54,10],[-23,2],[-29,3],[-47,0],[-42,-2],[-12,-1],[-9,0],[-39,-6],[-89,57],[-92,55],[-92,57],[-48,37],[-37,0],[-72,1],[-82,1],[35,45],[-143,191],[-58,-80],[-95,-123],[-22,-25],[-31,2]],[[72509,8500,0],[13,33],[4,24],[33,79],[28,72],[44,113],[26,7],[10,1],[25,8],[37,61],[59,44],[44,34],[38,40],[56,60],[15,39],[25,64],[40,104],[81,208],[46,115],[46,99],[-71,244],[-4,14],[53,1],[4,-2],[55,-15],[75,167],[-29,15],[-33,95],[-25,64],[-35,86],[-24,53],[-22,57],[-35,61],[-44,75],[-33,63],[-84,132],[23,55],[34,-9],[35,-14],[47,-9],[110,-18],[38,-2],[19,-2],[113,-36],[87,-5],[52,-5],[41,5],[12,-7],[33,-1],[84,-21],[9,-7],[57,-21],[18,-9],[75,-45],[20,-14],[42,-37],[17,-18],[89,-93],[10,-23],[18,-27],[130,-84],[67,-31],[49,-29],[40,-23],[111,-73],[54,-39],[29,-13],[16,-8],[36,-13],[26,-6],[58,-22],[29,-5],[60,22],[95,-5],[42,7],[87,-13],[9,-15],[8,-7],[6,-11],[27,-12],[121,-38],[71,-22],[110,-33],[94,-23],[-7,-124],[-16,-93],[-13,-65],[-4,-88],[-9,-213],[-9,-157],[-1,-21],[-3,-137],[-5,-21],[-10,-42],[1,-83],[22,-58],[67,-66],[61,-34],[-15,-25],[-38,-63],[-24,-35],[18,-46]],[[73767,8216,0],[30,-16],[18,-10],[27,-18],[123,-82],[-77,-99],[-28,18],[-56,38],[-16,-22],[-39,-48],[90,-61],[102,-71],[-71,-93],[-10,-12],[-26,-34],[-40,-47],[95,-63],[-43,-53],[4,-2],[13,-9],[35,-26],[38,-31],[31,-28],[23,-22],[24,-23],[28,-25],[43,-52],[14,-19],[23,-32],[24,-38],[19,-33],[34,-61],[-17,-7],[-20,-8],[-44,-22],[-64,-30],[-50,-22],[28,-63],[13,-30],[12,-38]],[[74057,6922,0],[2,-4],[13,-35]],[[74072,6883,0],[9,-27],[27,-72],[24,-68],[-12,0],[-30,-1],[-32,-3],[-34,-6],[-29,-4],[-25,-6],[-29,-9],[-25,-8],[-35,-13],[-33,-15],[-33,-18],[-16,-9],[-23,-14],[-29,-18],[-41,-33],[-16,-15],[-25,-24],[-57,-55],[-64,-58]],[[73544,6407,0],[22,-23],[63,-65]],[[73629,6319,0],[59,-65],[10,-10],[32,-32],[19,-19],[55,-56],[76,-79],[28,-27],[44,-49]],[[73952,5982,0],[-18,-27],[-17,-31],[-14,-27],[-12,-36],[-7,-30],[-130,31],[10,69],[-140,25]],[[73624,5956,0],[9,43],[-9,-43]],[[73624,5956,0],[-89,24],[11,48],[10,31],[17,25]],[[73573,6084,0],[-99,45]],[[73474,6129,0],[19,41],[-82,61],[-88,-95],[-79,-76],[-9,-10],[-70,-63],[-46,-46],[-32,-30],[-41,-37],[-39,-35],[-46,-42],[-34,-31],[-30,-29],[-49,-47],[-17,-15],[-16,-14],[-18,-19],[-12,-20],[-10,-16],[-4,-14],[-22,33]],[[72749,5625,0],[12,22],[-12,-22]],[[72749,5625,0],[-24,18],[-44,32],[19,28],[12,14],[16,18],[-131,115],[39,38],[77,76],[77,75],[78,76],[4,4],[-22,13],[-61,36],[-19,-19],[-47,-46],[-77,-77],[-63,-61],[-98,84],[-11,-11],[-56,-57],[-77,-76],[-77,-76]],[[72264,5829,0],[-77,-75]],[[72187,5754,0],[-77,-76],[-54,129],[-53,-64],[-16,-21],[-133,84],[-110,48],[-20,9],[-97,25],[-42,16],[-78,16],[-79,39],[-40,-49],[-115,-41],[-17,-13],[-27,-46],[3,-19],[-26,-50],[-15,2],[-35,1],[-75,-146],[-49,-94],[-79,-32],[-24,-17],[-25,-25],[-20,-27],[-16,-26],[-62,9]],[[70806,5386,0],[0,35],[-7,91],[32,202],[-25,132],[-22,2],[-51,4],[-30,21],[-66,-121],[-11,-28],[-8,-45],[7,-44],[27,-55],[-25,5],[-35,6],[-69,47],[-47,57],[-36,21],[-13,14],[-20,36],[-28,43],[-11,10],[-118,-19],[-28,5],[-8,31],[74,32],[26,10],[41,57],[-12,61],[58,12],[-13,59],[-41,44],[13,22],[-113,69],[-15,31],[99,25],[33,-50],[31,-11],[73,30],[17,-45],[14,-12],[19,-19],[51,-33],[89,-109],[31,-25],[86,115],[115,153],[25,-13],[22,-42],[187,-69],[65,2],[56,0],[0,52],[0,40],[12,36],[12,36],[-2,23],[10,30],[-78,15],[7,49],[47,151],[76,75],[-129,121],[-79,74],[-81,71],[-15,15],[-17,34],[-34,41],[-4,14],[-2,14],[-6,23],[-6,10],[-11,5],[-27,5],[-22,19],[-25,65],[-10,83],[-8,10],[-67,-14],[-36,-3],[-61,-101],[-42,-22],[-52,-31],[-51,48],[-15,146],[20,25],[8,37],[-23,11],[-13,44],[-37,40],[1,135],[-4,41],[-17,50],[0,59],[15,48],[-13,50],[-17,30],[-21,16],[-30,21],[-32,30],[-52,17],[65,69],[40,20],[96,78],[79,59],[36,8],[27,7],[79,48],[82,15],[31,9],[32,11],[68,19],[93,72],[29,29],[134,83],[30,-25],[65,-48],[69,-40],[99,-71],[45,-33],[53,-33],[60,-58],[44,-33],[58,-24],[104,-48],[51,-26],[17,-5],[89,-42],[29,-14],[94,-43],[33,-16],[65,-34],[14,40],[12,35],[12,43],[11,42],[32,97],[22,56],[15,28],[14,22],[14,26],[25,23],[16,29],[16,25],[14,20],[22,35],[18,8],[8,26],[12,31],[9,39],[13,23]],[[73338,7251,0],[-122,-118],[-12,-9],[-9,-7],[-57,-54],[-14,-15],[20,-33],[14,-24],[41,-70],[12,-11],[78,-71],[55,-16],[91,-6],[83,-13],[13,-3],[41,-15],[13,-2],[13,0],[19,4],[57,25],[93,16],[57,2],[63,10],[41,7],[140,17],[-32,50],[-6,7],[-11,20],[-10,17],[-15,25],[-16,27],[-27,39],[-30,42],[-20,10],[-12,7],[-172,61],[-141,44],[-111,45],[-45,20],[-38,15],[-44,-43]],[[75400,8585,0],[58,-45],[25,-21],[23,-19],[124,-107],[82,-69],[82,-72],[82,-70],[84,-71],[82,-71],[80,-69],[165,-138],[80,-67],[131,-114],[114,-90],[86,-69],[83,-68],[83,-65],[14,-10],[41,-31],[28,-24],[65,-52],[102,-82],[85,-65],[171,-129],[60,-45],[24,-19],[42,-33],[36,-28],[8,-5],[14,-11],[175,-135]],[[77729,6691,0],[-89,38],[-103,33],[-105,29],[-149,32],[-107,24],[-4,2],[-93,9],[-93,12],[-42,5],[-6,-47],[-14,-74]],[[76924,6754,0],[-20,-84],[-9,-37]],[[76895,6633,0],[-19,-61],[-17,-50]],[[76859,6522,0],[-29,-99]],[[76830,6423,0],[-29,-87],[-32,-85]],[[76769,6251,0],[-30,-67]],[[76739,6184,0],[-49,20],[-90,36],[-23,-37],[-31,-36],[-47,-33],[-29,-16],[-33,-11],[-34,-9],[-38,-9],[-35,-9],[-48,-17],[-37,-15],[-32,-17],[-12,-6],[-18,-13],[-48,-44]],[[76135,5968,0],[-20,-23],[-26,-26]],[[76089,5919,0],[-43,-41],[-33,-39],[-25,-33]],[[75988,5806,0],[-57,-69]],[[75931,5737,0],[-61,-75],[-17,-20],[-109,-78]],[[75744,5564,0],[-51,66]],[[75693,5630,0],[-30,26],[27,27],[21,23],[31,39],[12,18],[17,29],[19,35],[7,16],[14,46],[9,34],[-35,9],[-50,17],[-47,13],[6,34],[1,37],[-72,14],[-65,9],[-64,9],[4,37],[2,39],[-116,17],[-9,-67],[-6,-30],[-9,-30],[-11,-28],[-4,-11],[-10,-17],[-8,-13]],[[75327,5962,0],[-5,-8],[-3,-5]],[[75319,5949,0],[-13,-15],[-11,-15]],[[75295,5919,0],[-16,-16]],[[75279,5903,0],[-14,-13],[-18,-16],[-16,-10],[-18,-10],[-22,-12],[-27,-11],[-24,-10],[-26,-7],[-29,-6],[-20,-2],[-26,-3],[-16,-3],[-20,-1],[-10,1]],[[74993,5800,0],[-10,0],[-10,0]],[[74973,5800,0],[-31,2],[-30,2],[-12,1],[-48,7],[-43,4],[-81,5],[-16,0],[-110,8],[-32,2],[-77,5],[-27,0],[-11,-1]],[[74455,5835,0],[-1,0],[-7,0]],[[74447,5835,0],[-3,-1],[-17,-2]],[[74427,5832,0],[-14,-4],[-8,-2]],[[74405,5826,0],[-19,-6],[-31,-16],[-26,-18],[-16,-12],[-15,-15],[-18,-20],[-27,-44],[-11,-32],[-70,75],[-59,68],[-31,35],[-80,84],[-50,57]],[[73629,6319,0],[-57,58],[-28,30]],[[74072,6883,0],[-15,39]],[[73491,2729,0],[-23,3],[-27,3],[-24,0],[-27,5],[-54,11],[-68,12],[-191,71],[-140,108],[-224,263],[-69,51],[-52,42],[-32,43],[-8,12],[-23,36],[-59,42],[-76,72],[-29,17],[-18,15],[-41,32],[-198,50],[-25,0],[-31,1],[-27,-5],[-94,-19],[-53,-34],[-41,-37],[-19,-78],[0,-9],[0,-57],[3,-117],[0,-92],[26,-83],[5,-45],[-101,-51],[-36,-18],[-80,-80],[-74,-92],[-82,-80],[-18,12],[-23,17],[-53,13],[-19,4],[-100,1],[-18,0],[-10,7],[-19,-9],[-11,13],[-33,-2],[-48,-14],[-121,-34],[-35,-11],[-42,36],[-172,24],[-68,271],[-12,47],[59,35],[52,35],[183,107],[43,26],[-112,331],[16,83],[-25,156],[-34,2],[-18,115],[-10,41],[-47,141],[-56,150],[4,95],[4,70],[17,64],[17,64],[59,222],[-14,235],[5,168],[-12,1],[-2,149]],[[72187,5754,0],[30,28],[47,47]],[[73474,6129,0],[34,-16],[65,-29]],[[73624,5956,0],[-74,-292],[-8,-30],[-11,-36],[-22,-48],[-12,-22],[-24,-39],[-31,-33],[-33,-31],[-38,-25],[-42,-21],[-43,-15],[-6,-1],[49,-181],[31,9],[14,-52],[76,21],[65,17],[101,27],[18,-67],[-274,-71],[45,-165],[17,-65],[455,119],[-159,-111],[-37,-30],[-11,-3],[-10,-6],[-7,-21],[-4,-16],[-11,-9],[123,-86],[-56,-83],[-21,-18],[-19,-18],[-12,-12],[-149,-101],[62,-78],[32,-110],[33,-96],[28,-74],[9,-23],[11,-36],[11,-29],[-134,-84],[-193,-96],[96,-133],[20,-84],[-18,-36],[3,-25],[19,-30],[32,-11],[32,1],[44,-94],[-69,-33],[-33,-21],[-22,-26],[-4,-30],[14,-160],[2,-27],[14,-148],[3,-32],[19,-38],[23,-16],[18,-2],[5,-48],[6,-61],[-32,-2],[-44,-30]],[[75693,5630,0],[29,-38],[22,-28]],[[75744,5564,0],[69,-60],[98,-76],[126,-140],[156,-169],[64,-73]],[[76257,5046,0],[102,-110],[-538,-344],[-81,127],[-23,-14],[81,-127],[-95,-61],[81,-121],[57,-136],[26,-137],[12,3],[22,1],[27,-5],[32,-21],[38,-55],[25,-23],[51,-40],[62,-34],[42,-9],[34,-7],[21,-1],[75,-2],[15,0],[23,0]],[[76346,3930,0],[44,0],[61,2]],[[76451,3932,0],[87,1],[15,-2],[17,1],[21,0],[22,0],[18,-2],[24,-1],[31,-10],[17,-1],[-10,-116],[-5,-76],[-2,-15],[-2,-42],[-5,-72],[-1,-12],[0,-3],[-4,-73],[-4,-30],[-1,-73],[-42,-8],[-48,-23],[-27,-19],[-14,-15],[-26,-37],[-19,-50],[-107,-281],[-32,-84],[-8,-20],[-6,-10],[-3,-8],[-18,-40],[-21,-41],[-43,-76]],[[76255,2694,0],[-97,39],[-56,25],[-43,17],[-98,43],[-70,35],[-23,11],[-35,15],[-74,32],[-188,79],[-98,43],[-93,35],[-232,-163],[-68,108],[-31,-1],[-168,-30],[-264,-70],[-190,-38],[-102,-23],[-121,-28],[-160,-41],[-172,-33],[-144,-26],[-237,6]],[[74405,5826,0],[22,6]],[[74427,5832,0],[20,3]],[[74447,5835,0],[8,0]],[[74973,5800,0],[20,0]],[[75279,5903,0],[12,12],[4,4]],[[75319,5949,0],[8,13]],[[79647,4345,0],[-108,-232],[-53,-114],[-28,150]],[[79458,4149,0],[-1,9],[0,-46]],[[79457,4112,0],[2,-70],[-53,1],[-25,0],[-185,92]],[[79196,4135,0],[-1,214],[0,150],[0,149],[0,13]],[[79195,4661,0],[-75,84],[-3,1],[1,-149],[0,-26],[-155,2],[0,19],[-2,167],[-2,122],[-26,21],[-29,18],[-41,26],[-67,43],[-40,24],[0,-42],[-68,-1],[-30,-61],[-43,26],[10,25],[-68,38],[-40,33]],[[78517,5031,0],[-37,64]],[[78480,5095,0],[-91,-65],[-70,15],[-25,-109],[-23,-82],[0,51],[-16,29],[-30,24],[-25,13],[-62,21],[-100,20],[-63,12],[-305,55],[-94,17],[-213,40],[-168,32],[-22,0],[-21,-8],[-52,-34],[-201,35],[-32,43],[-18,17],[-24,7],[-16,2],[-66,-1],[-70,-12],[-108,-17],[-130,-42],[-99,-54],[-65,-47],[-14,-11]],[[75931,5737,0],[24,30],[33,39]],[[76089,5919,0],[46,49]],[[76739,6184,0],[22,51],[8,16]],[[76830,6423,0],[17,57],[12,42]],[[76895,6633,0],[5,20],[24,101]],[[77729,6691,0],[324,-243],[239,-169],[310,-269],[23,-20],[98,-71],[25,-18],[68,-61],[75,-68],[64,-59],[59,-45],[75,-76],[82,-91],[114,-149],[78,-129],[142,-393],[50,-147],[75,-270],[17,-68]],[[78480,5095,0],[12,-24],[25,-40]],[[79195,4661,0],[1,-526]],[[79457,4112,0],[1,37]],[[79647,4345,0],[69,-266],[9,-50],[38,-184],[26,-130],[19,-223],[-32,-206],[26,-226],[3,-217],[6,-84],[7,-89],[8,-124],[10,-136],[-109,0]],[[79727,2410,0],[-30,35],[-444,-21],[-123,-4],[-159,1],[4,-10],[11,-41],[10,-55],[-12,-4],[-184,-70],[-72,185],[-59,1],[-13,0],[-97,-21],[7,-14],[27,-71],[-179,-62],[-46,79],[-11,22],[-413,-93],[-192,-47],[-76,183],[-34,81],[-148,0],[-51,-148],[-16,-51],[-29,-80]],[[77398,2205,0],[-16,7],[-67,30],[-553,238],[-507,214]],[[76451,3932,0],[-60,-2],[-45,0]],[[79727,2410,0],[94,-159],[-48,-191],[-50,-65],[-127,-6],[-40,-246],[67,-251],[37,-191],[48,-5],[-38,-317],[-113,-202],[-41,-23],[-72,-217],[-39,-13],[-6,-47],[-23,-118],[-15,-76],[-35,-99],[-16,-42],[-72,-7],[-73,-50],[-85,-1],[-68,-70],[-46,-7],[-52,-7],[-28,26],[-284,67],[-39,215],[-80,104],[-58,-3],[-96,6],[-73,7],[-169,143],[-19,120],[-90,133],[-40,190],[-10,77],[8,170],[-52,100],[-24,102],[-66,90],[-75,139],[-84,172],[-85,115],[-57,58],[-89,154],[-6,20]],[[15212,24004,0],[119,-107],[33,-99],[120,-160],[269,-186],[427,-246],[73,-29],[65,-17],[113,51],[73,-1402],[1,-38]],[[33134,27637,0],[1252,-1106],[-22,-56],[-154,-390],[-15,-41],[145,-519],[-116,-156],[-107,-263],[-415,-1040],[-436,5],[65,-505],[105,-808],[-227,-234]],[[33209,22524,0],[-39,189],[98,183],[-36,100],[-99,20],[-255,184],[-167,42],[-82,288],[-339,-116],[139,-234],[-81,-132],[-50,-136],[-229,-194],[-75,-193],[-217,-55],[-226,100],[12,125],[-22,187],[-109,171],[-149,20],[-173,-18],[-1407,364],[-73,1],[-205,53],[-98,7],[-208,-64],[-216,-153],[-165,-125],[-194,-72],[-397,-252],[-23,-19],[-195,-107]],[[27999,24600,0],[-219,102],[-140,65],[150,174],[18,120],[-24,34],[-140,152],[44,11],[56,21],[164,32],[64,-3],[109,17],[134,22],[5,87],[55,107],[128,113],[107,81]],[[28510,25735,0],[34,18],[12,6],[22,13],[109,61],[50,31],[71,44],[64,33],[203,105],[288,92],[12,4],[11,7],[123,77],[137,65],[20,9],[14,7],[40,20],[112,49],[223,95],[68,31],[42,18],[162,76],[32,41],[12,15],[102,67],[12,8]],[[30485,26727,0],[-30,42],[-7,9],[-9,9],[40,21]],[[30479,26808,0],[412,129],[14,-2],[32,-4],[78,42],[49,15],[93,40],[205,46]],[[31362,27074,0],[42,18],[48,28],[46,30],[82,61],[8,9],[38,22],[210,113],[182,75],[29,9],[98,23],[122,23],[40,2],[28,-1],[96,26],[46,13],[27,37],[217,18],[124,-4],[151,12],[24,3],[55,22],[17,6],[42,18]],[[34303,27713,0],[185,42],[192,45],[441,202]],[[35121,28002,0],[384,12],[214,6],[134,6]],[[35853,28026,0],[30,2],[38,2]],[[35921,28030,0],[86,-14]],[[36007,28016,0],[62,13],[77,-1],[358,-37],[124,-15]],[[36628,27976,0],[67,-10],[62,-10]],[[36757,27956,0],[127,-24],[35,-6]],[[36919,27926,0],[137,-30],[136,-26],[51,-16]],[[37243,27854,0],[91,-18],[281,33],[42,4]],[[37657,27873,0],[49,9],[4,-14],[56,9]],[[37766,27877,0],[12,-37],[17,-57],[48,6],[24,2],[6,-10]],[[37873,27781,0],[44,11],[42,11],[16,1]],[[37975,27804,0],[23,2],[18,-90],[18,-84],[6,-36]],[[38040,27596,0],[8,-9]],[[38048,27587,0],[13,-19],[-25,-39]],[[38036,27529,0],[-78,-48],[-122,-2],[-20,0]],[[37816,27479,0],[8,-38],[67,-387]],[[37891,27054,0],[26,-108],[25,-107],[9,-64]],[[37951,26775,0],[15,-130]],[[37966,26645,0],[3,-65],[15,-139]],[[37984,26441,0],[65,-131],[-1,-20]],[[38048,26290,0],[20,-36],[41,-74],[15,-27],[15,-52],[41,-142]],[[38180,25959,0],[-40,-21],[-26,-13],[-46,-18],[-27,-9],[-37,-11],[-65,-17],[22,-40],[76,-148],[29,-50],[75,-130],[50,-89],[26,-44],[26,-42],[42,-84],[160,-313],[2,-13],[169,-226],[75,-86],[101,-112],[97,-102],[64,-97],[149,-233]],[[39102,24061,0],[-85,-4],[-130,6],[-8,-55],[-5,-23],[-2,-17],[-43,9],[-315,-30],[-45,-77],[-235,62],[-20,8],[-367,207],[140,-386],[216,-90],[-448,-113],[-63,-9],[-224,-36],[43,-116],[-428,-263],[-30,-17],[129,-177],[-8,-236],[-156,-330],[-309,88],[118,-494],[4,-16],[5,-22],[7,-26],[6,-38]],[[36849,21866,0],[-92,-1],[-121,0],[-91,4]],[[36455,21888,0],[-66,28],[-89,49]],[[36300,21965,0],[-80,39],[-191,78],[-214,91]],[[35771,22193,0],[-121,57],[-48,15]],[[35438,22266,0],[-92,3],[-81,9],[-127,23]],[[35072,22303,0],[-55,-8],[-194,-86],[-510,-126],[-129,-20],[-64,-6],[-407,-8],[-116,99],[-60,50],[-134,114],[-194,212]],[[33134,27637,0],[48,38],[237,201],[101,80],[227,169],[270,85]],[[34017,28210,0],[21,-65]],[[34038,28145,0],[35,-121],[43,-66],[68,-107],[46,-70],[73,-68]],[[44007,24382,0],[112,-408]],[[44119,23974,0],[123,-11]],[[44242,23963,0],[2,-111],[0,-75],[-36,-66],[-64,-82]],[[44144,23629,0],[-33,-54],[-31,-74]],[[44080,23501,0],[-24,-137],[4,-170]],[[44060,23194,0],[44,-181],[16,-63]],[[44120,22950,0],[-431,-101]],[[40288,22825,0],[15,87],[5,330],[2,55],[6,100],[18,100],[11,41]],[[40345,23538,0],[25,88],[-6,4]],[[40364,23630,0],[-32,15]],[[40332,23645,0],[-13,10],[-24,21],[-26,24],[-98,98],[-75,87]],[[40096,23885,0],[-40,49]],[[40056,23934,0],[-53,73],[-78,109],[-49,81],[-8,13]],[[39868,24210,0],[-50,52],[-10,11],[-16,16],[-8,9]],[[39784,24298,0],[-22,24]],[[39762,24322,0],[313,195],[42,59]],[[40117,24576,0],[40,110],[24,55],[57,80]],[[40238,24821,0],[59,53]],[[40297,24874,0],[57,36],[44,21]],[[40398,24931,0],[40,15]],[[40438,24946,0],[65,13],[39,1],[35,-2]],[[40577,24958,0],[67,-9]],[[40644,24949,0],[77,-21],[76,-25],[147,-58]],[[40944,24845,0],[17,-7],[26,-6]],[[40987,24832,0],[52,3],[66,10],[266,45],[77,8]],[[41448,24898,0],[127,2]],[[41575,24900,0],[141,-8],[51,-3]],[[41767,24889,0],[67,-4],[90,-1],[81,9],[47,8],[72,14],[52,13]],[[42176,24928,0],[20,-55],[10,-28],[17,10],[21,6],[19,0],[15,-4],[12,-4],[23,-13],[112,-78],[95,-71],[83,-38],[55,-2],[58,5],[39,9],[74,36],[81,68],[94,101],[145,147],[23,12],[21,8],[23,7],[31,3],[100,-2],[66,0],[98,-17],[131,-63],[217,-151],[-26,-48],[74,-163],[100,-221]],[[40096,23885,0],[75,-86],[98,-98],[26,-24],[24,-21],[13,-11]],[[40364,23630,0],[-2,-9],[-17,-83]],[[40072,22813,0],[-34,-2],[-12,0],[-70,-4],[-281,-16],[-146,-8],[-283,-16],[-100,-7]],[[38971,22450,0],[-258,4],[-50,0],[-12,35]],[[38651,22489,0],[-70,204],[-36,-8],[-41,-7]],[[38504,22678,0],[-78,2],[-91,5],[-132,7]],[[38144,22696,0],[-64,11],[-82,22]],[[37942,22742,0],[-23,6],[-30,-3],[-97,-36]],[[37741,22687,0],[-21,-11],[-26,-20],[-32,-36]],[[37662,22620,0],[-73,-85],[-42,-46],[-98,-98]],[[37259,22212,0],[-26,-27],[-19,-24]],[[37124,21977,0],[-17,-23],[-33,-37]],[[37074,21917,0],[-21,-17],[-26,-14]],[[37027,21886,0],[-22,-6],[-23,-6],[-43,-6]],[[39102,24061,0],[21,-34],[10,-16],[48,1],[49,29],[78,43],[38,20],[38,18],[37,14],[32,12],[107,39],[22,8],[48,18],[63,23],[31,13],[12,8],[48,41]],[[39784,24298,0],[8,-8],[16,-16],[10,-11],[50,-53]],[[39868,24210,0],[8,-12],[49,-81],[77,-109],[54,-74]],[[32038,31797,0],[-38,1]],[[32000,31798,0],[-193,14],[-27,2]],[[31780,31814,0],[-126,7],[-106,10],[-100,9]],[[31448,31840,0],[-29,2],[-30,12]],[[31389,31854,0],[-40,0]],[[31349,31854,0],[-143,0],[-185,22]],[[31021,31876,0],[-126,10],[-65,18],[-44,14],[-73,58],[-47,38]],[[30666,32014,0],[-113,148],[-37,80]],[[30516,32242,0],[-39,89],[-81,62],[-34,26],[-29,23]],[[30333,32442,0],[-46,-137],[-27,-81]],[[30260,32224,0],[-78,-60],[-185,-141]],[[29997,32023,0],[-47,-8]],[[29950,32015,0],[-69,-15]],[[29881,32000,0],[-39,-9],[-24,-6]],[[29818,31985,0],[-58,103],[-52,35]],[[29708,32123,0],[-104,-132],[-24,-34],[-33,-48],[-43,-116]],[[29504,31793,0],[-21,-34],[-20,-39],[60,-129]],[[29523,31591,0],[115,-255]],[[29638,31336,0],[114,-117],[28,-28]],[[29780,31191,0],[19,-106],[48,0],[8,-58],[10,-83],[26,-204]],[[29891,30740,0],[19,-164],[-72,0]],[[29838,30576,0],[-194,-60],[-42,-28]],[[29602,30488,0],[-143,-55],[13,-24]],[[29472,30409,0],[-169,-112],[-29,-25]],[[29274,30272,0],[-77,-75]],[[29197,30197,0],[6,-7],[-68,-75],[-33,-31],[-51,-72],[164,-132]],[[29215,29880,0],[112,-81],[105,-34]],[[29432,29765,0],[20,-5],[107,-25],[41,-9]],[[29600,29726,0],[29,-7],[14,-4]],[[29643,29715,0],[55,-142],[-108,-59]],[[29590,29514,0],[-24,-14]],[[29566,29500,0],[-23,-13]],[[29543,29487,0],[-26,-13]],[[29517,29474,0],[-72,-39],[-83,-35],[-56,-35],[-80,83],[-29,19],[-83,66],[-28,37],[-92,76],[-45,29],[-96,83],[-157,126],[-87,55],[37,35],[28,35],[20,30],[38,-28],[56,60],[-247,248],[-150,198],[-70,145],[23,139],[61,78],[4,12],[39,47],[9,16],[-51,31],[-89,80],[-39,15],[-21,18],[-35,-2],[-69,-11],[-19,80],[-58,176],[-88,95],[-30,45],[-13,7],[-14,3],[-13,10],[-50,21],[-20,28],[-30,2],[-22,6],[-43,23],[-47,40],[-10,65],[-37,39],[-71,33],[-16,-26],[-37,-114],[5,-35],[-7,-40],[-23,-21],[-12,-9],[-61,-25],[-49,-26],[-24,-5],[-73,-3],[-38,-7],[-2,-17],[-65,-30],[-17,-26],[-172,-111],[-132,160],[3,15],[-10,108],[-21,211],[-183,177]],[[26654,31934,0],[-105,379],[-26,183],[-7,112],[4,67],[12,68],[26,91],[17,54],[45,91],[60,102],[40,53],[109,116],[125,92],[60,34],[114,56],[92,36],[69,19],[131,29],[259,45],[-14,87],[-5,74],[-25,58],[-832,1788],[-349,755]],[[26454,36323,0],[72,17],[84,29],[97,36],[346,124],[109,38],[59,18],[122,24],[177,19],[109,1],[448,5],[57,7],[48,10],[66,20],[50,19],[45,20],[71,37],[51,30],[70,43],[58,33],[76,39],[45,15],[52,4],[74,4],[90,-10],[61,-8],[34,-5],[27,-16],[16,-13],[6,-13],[6,-17],[-2,-57],[-9,-55],[-20,-94],[-15,-95],[-7,-87],[-9,-85],[-4,-184],[4,-107],[9,-77],[17,-110],[19,-96],[25,-91],[25,-75],[42,-100],[43,-71],[36,-51],[40,-44],[40,-29],[47,-34],[124,-67],[93,-42],[66,-24],[79,-25],[130,-48],[118,-47],[169,-60],[89,-39],[86,-39],[81,-45],[39,-22],[37,-29],[45,-39],[11,-9],[41,-47],[39,-48],[60,-81],[41,-62],[51,-73],[93,-156],[39,-82],[23,-69],[30,-91],[13,-51],[21,-130],[49,-376],[21,-88],[32,-85],[61,-119],[30,-49],[45,-62],[36,-42],[42,-41],[63,-49],[57,-40],[58,-34],[72,-32],[55,-20],[92,-22],[67,-15],[110,-13],[59,-1]],[[31928,32778,0],[7,-123],[5,-66],[38,-360],[14,-176],[-57,-117],[16,-20],[47,-61],[26,-36],[14,-22]],[[26654,31934,0],[-78,74],[-41,41],[-180,173],[-192,-147],[-319,32],[-298,85],[-271,140],[-137,247],[-191,241],[-220,-61],[-38,-354],[-77,-139],[-127,-81],[-90,-7],[18,60],[127,136],[34,145],[-70,52],[-91,-49],[-250,-216],[-108,-62],[-133,-40],[-107,25],[-6,37],[57,27],[124,23],[72,42],[63,74],[71,180],[-13,34],[-14,36],[-55,-17],[-70,-103],[-104,-69],[-171,17],[-257,131],[-222,144],[-269,232],[-270,282],[-75,60],[-96,32],[-92,9],[-41,-41],[-111,-137],[-161,-309],[-86,-112],[-44,-140],[-187,-330],[-380,-786],[-73,-54],[427,2093],[26,97],[203,988],[100,484],[175,450],[89,257]],[[22425,35860,0],[-8,36],[615,748]],[[23032,36644,0],[35,-47],[74,-45],[63,-12],[71,0],[89,18],[96,24],[52,26],[48,28],[45,30],[399,261],[72,41],[55,27],[86,37],[170,62],[141,36],[156,9],[103,-12],[226,-48],[189,-52],[67,-23],[82,-38],[111,-64],[34,-37],[17,-27],[24,-39],[69,-106],[54,-177],[38,-95],[22,-21],[32,-29],[68,-30],[97,-25],[64,-9],[92,-10],[115,-6],[111,7],[155,25]],[[19651,39755,0],[-267,-149]],[[19384,39606,0],[-28,-20],[-59,-42],[27,-33]],[[19324,39511,0],[42,-69]],[[19366,39442,0],[29,-66],[253,-677]],[[19648,38699,0],[23,-63],[18,-64]],[[19689,38572,0],[4,-48],[7,-75]],[[19700,38449,0],[-32,-215],[-107,-497],[-11,-72]],[[19550,37665,0],[-3,-39],[24,-245],[14,-80],[5,-26]],[[19590,37275,0],[35,-84]],[[19625,37191,0],[41,-63],[76,-88],[57,-46],[87,-57],[101,-47]],[[19987,36890,0],[102,-34],[96,-15],[313,-50],[85,-10],[86,-4]],[[20669,36777,0],[55,3],[128,16]],[[20852,36796,0],[432,88],[122,32]],[[21406,36916,0],[132,44]],[[21538,36960,0],[76,29],[104,47]],[[21718,37036,0],[95,52],[85,57],[306,212],[42,20],[40,16]],[[22286,37393,0],[474,53],[64,4],[63,-4],[147,-25]],[[23034,37421,0],[204,-58],[39,-13],[55,-32]],[[23332,37318,0],[26,-41]],[[23358,37277,0],[19,-69],[-2,-35],[-5,-45]],[[23370,37128,0],[-18,-46]],[[23352,37082,0],[-114,-107],[-150,-144]],[[23088,36831,0],[-41,-54],[-19,-68]],[[23028,36709,0],[1,-25],[3,-40]],[[23032,36644,0],[-615,-747],[8,-37]],[[22425,35860,0],[-144,-33],[-299,-94],[-219,-106],[-195,-92],[-280,-137],[-216,-114],[-244,-136],[-542,-283],[-205,-45],[-82,6],[-172,42],[-228,83],[-249,95],[-179,61],[-146,53],[-16,42],[-57,160],[-284,783],[-117,329],[134,100],[195,34],[383,-101],[63,41],[-65,64],[-34,73],[-270,116],[-463,-60],[-242,-54],[-240,-110],[-394,-72],[-211,-49],[-407,-165],[-60,-1],[-148,-59],[11,-38],[7,-20],[-157,-145],[-144,-77],[-77,56],[-165,9],[-135,-58],[-209,-52],[22,46],[142,302],[92,190],[680,1418],[18,38],[-239,136],[-25,253],[-13,43],[-225,187],[5,59],[47,21],[133,-29],[0,28],[6,47],[-99,195],[-20,193],[128,284],[43,47],[175,-43],[101,190],[91,124],[-9,40],[-149,-28],[-435,-26],[-164,-65],[-840,-134],[-45,228],[5,13],[253,155],[75,40],[1037,326],[106,32],[976,243],[217,32],[151,25]],[[18163,40516,0],[128,21],[430,7],[36,-7],[312,-132],[51,-16]],[[19120,40389,0],[16,-74],[93,-104],[229,-154],[142,-75],[63,-53],[57,-137],[-69,-37]],[[32081,38995,0],[-65,-282],[-60,-831],[14,-319],[44,-35],[43,-308],[-18,-105],[126,-125]],[[32165,36990,0],[-118,-355],[77,-241],[-37,-80],[44,-92],[-3,-10],[-186,-467],[-48,-82],[-151,-252],[285,-124]],[[32028,35287,0],[110,-48]],[[32138,35239,0],[192,-84]],[[32330,35155,0],[-331,-217]],[[31999,34938,0],[-120,-263]],[[31879,34675,0],[-37,-9],[-77,-22],[7,-124],[29,-325],[69,-283],[6,-59]],[[31876,33853,0],[169,-470]],[[32045,33383,0],[4,-31],[18,-133],[-9,-46],[-32,-161],[9,-47],[36,-57],[11,-21],[11,-28],[8,-17],[13,-45],[-125,-14],[-61,-5]],[[26454,36323,0],[-11,22],[12,84],[35,228],[10,63],[377,2413],[28,174],[14,79],[-25,28],[-42,48],[30,178]],[[26882,39640,0],[33,-2],[762,-162],[280,-60],[70,-14],[1872,-399],[823,68],[557,-293],[379,-20],[368,204],[55,33]],[[32580,41870,0],[35,0],[-2,-15]],[[32613,41855,0],[8,-132]],[[32621,41723,0],[25,-111],[-1,-51],[14,-28]],[[32659,41533,0],[-31,-116]],[[32628,41417,0],[-59,-61],[-41,-24],[-140,-30],[-53,-38],[-80,-31],[-32,-12],[-65,2],[-88,2],[-60,4],[-152,-66],[-54,-111],[-23,-50],[-25,-11],[-22,-27],[-29,-56],[-47,-18],[-15,-18],[-71,-11],[-29,13],[-91,-43],[-50,30],[-41,-8],[-111,-101],[-42,-50],[-30,-54],[-63,-72],[-27,-101],[5,-16],[52,-37],[4,-13],[44,-91],[-1,-20],[-3,-8],[-11,-7],[-23,-12],[-44,-35],[-19,-44],[-11,-18],[-3,-10],[63,-56],[19,-11],[104,-14],[67,-38],[33,-34],[77,-61],[267,-172],[36,-17],[113,-91],[72,-95],[10,-77]],[[31939,39498,0],[131,-193],[22,-129],[11,-88],[-22,-93]],[[26882,39640,0],[-39,1],[-120,-3],[-27,-2],[-19,10],[-67,71],[-156,232],[-1,27],[-7,8],[-32,38],[-20,18],[135,271],[348,698],[236,470]],[[27113,41479,0],[161,74]],[[27274,41553,0],[37,41],[92,137],[58,70]],[[27461,41801,0],[144,133],[39,29]],[[27644,41963,0],[57,10],[46,-8]],[[27747,41965,0],[98,-13],[32,-10]],[[27877,41942,0],[117,-70],[70,-33],[141,-52]],[[28205,41787,0],[72,-18],[60,-7],[298,1]],[[28635,41763,0],[76,2],[61,7],[107,22]],[[28879,41794,0],[88,21],[67,28]],[[29034,41843,0],[87,43],[342,256]],[[29463,42142,0],[179,122],[55,57]],[[29697,42321,0],[104,121]],[[29801,42442,0],[249,292],[76,108]],[[30126,42842,0],[87,133],[109,154],[82,83],[83,44],[186,29],[93,4],[109,19],[95,36],[112,70],[369,185],[169,67],[31,12]],[[31651,43678,0],[55,15],[315,84]],[[32021,43777,0],[49,18]],[[32070,43795,0],[171,71],[102,66],[78,67],[83,94],[193,309],[54,-1137]],[[32751,43265,0],[-104,-254],[-38,-237],[-24,-217],[202,-128]],[[32787,42429,0],[7,-135],[-264,-308]],[[32530,41986,0],[-9,-39],[59,-77]],[[29959,44833,0],[302,42],[55,1],[85,-8],[58,-10],[72,-20],[69,-27],[83,-46],[732,-507],[158,-106],[156,-111],[33,-24],[151,-109],[157,-113]],[[32021,43777,0],[-315,-83],[-55,-16]],[[30126,42842,0],[-76,-107],[-249,-293]],[[29697,42321,0],[-51,-60],[-183,-119]],[[29034,41843,0],[-67,-27],[-88,-22]],[[28879,41794,0],[-107,-21],[-61,-7],[-76,-3]],[[28635,41763,0],[-298,0],[-60,7],[-72,17]],[[28205,41787,0],[-142,52],[-69,34],[-117,69]],[[27747,41965,0],[-47,8],[-56,-10]],[[27644,41963,0],[-39,-28],[-144,-134]],[[27461,41801,0],[-58,-69],[-92,-137],[-37,-42]],[[27113,41479,0],[-1,51],[-174,-72]],[[26938,41458,0],[-442,-191]],[[26496,41267,0],[-69,-29],[-64,-15]],[[26363,41223,0],[-255,-22]],[[26108,41201,0],[2,13],[14,40],[124,364],[-137,5],[-347,155],[-221,455],[300,334],[-62,40],[-174,124],[-374,-4],[13,35],[121,278],[200,471],[71,158],[32,62],[138,282],[38,-8],[12,45],[234,171]],[[26092,44221,0],[0,-25],[127,-32],[38,1],[61,-19],[31,-22],[86,-21],[58,-14],[241,-34],[174,-102],[39,4],[48,7],[101,106],[84,46],[8,15],[29,59],[13,7],[25,0],[-24,110],[20,91],[11,58]],[[27262,44456,0],[182,29],[4,27],[6,19],[16,43],[54,77],[75,96],[27,26],[34,33],[27,27],[37,31],[38,23],[39,15],[124,49],[67,26],[19,9],[39,7],[59,12],[40,8],[71,6],[63,-3],[63,-11],[100,-27],[48,-1],[49,-1],[97,47],[38,20],[28,16],[35,30],[34,33],[99,-251],[63,-159],[136,102],[144,28],[196,40],[197,-17],[214,-85],[135,53]],[[23032,36644,0],[-3,39],[-1,26]],[[23088,36831,0],[150,143],[114,108]],[[23370,37128,0],[5,44],[2,35],[-19,70]],[[23332,37318,0],[-54,31],[-40,13],[-204,59]],[[23034,37421,0],[-147,24],[-63,4],[-64,-4],[-474,-52]],[[22286,37393,0],[-40,-17],[-42,-20],[-306,-212],[-84,-56],[-96,-52]],[[21718,37036,0],[-104,-48],[-76,-28]],[[21406,36916,0],[-122,-33],[-432,-87]],[[20852,36796,0],[-128,-17],[-55,-2]],[[19987,36890,0],[-101,46],[-87,57],[-57,46],[-76,88],[-41,64]],[[19590,37275,0],[-5,25],[-14,80],[-24,245],[3,40]],[[19700,38449,0],[-6,74],[-5,49]],[[19648,38699,0],[-253,676],[-29,67]],[[19324,39511,0],[-27,32],[59,42],[28,21]],[[19651,39755,0],[76,-257],[303,-510],[35,-26],[36,-16]],[[20101,38946,0],[66,-38],[8,-6],[24,-24],[33,-39],[7,-15]],[[20239,38824,0],[-4,-101],[-7,-109]],[[20228,38614,0],[-1,-54],[3,-37],[5,-70],[7,-58]],[[20242,38395,0],[40,-185],[79,-132]],[[20361,38078,0],[165,-121],[226,11]],[[20752,37968,0],[225,53],[228,240]],[[21205,38261,0],[212,333],[17,23]],[[21434,38617,0],[40,33],[17,13],[28,15]],[[21519,38678,0],[29,7],[36,2]],[[21584,38687,0],[35,-4],[30,-9],[71,-53]],[[21720,38621,0],[22,-14]],[[21742,38607,0],[17,-10],[43,-23]],[[21802,38574,0],[41,-12],[32,-1],[24,0],[28,7],[38,13]],[[21965,38581,0],[98,23],[38,17],[24,13],[18,12],[10,11]],[[22153,38657,0],[26,44],[19,60]],[[22198,38761,0],[8,44],[15,102]],[[22221,38907,0],[5,145],[90,152]],[[22316,39204,0],[-19,216],[-14,178]],[[22283,39598,0],[-27,72],[-149,402],[50,112],[20,42],[-210,134],[-29,19],[67,120],[61,-15]],[[22066,40484,0],[379,-57],[86,-4],[126,10]],[[22657,40433,0],[54,8],[103,27]],[[22814,40468,0],[74,21]],[[22888,40489,0],[28,2],[44,-5]],[[22960,40486,0],[101,-23],[74,-15]],[[23135,40448,0],[44,7],[58,13]],[[23237,40468,0],[55,14],[51,21]],[[23343,40503,0],[62,28],[50,19],[37,8]],[[23492,40558,0],[29,2]],[[23521,40560,0],[25,-5],[40,-11]],[[23586,40544,0],[17,-11],[66,-51]],[[23669,40482,0],[69,-50],[69,-29]],[[23807,40403,0],[48,-11]],[[23855,40392,0],[71,-3],[40,3]],[[23966,40392,0],[40,6],[114,24]],[[24120,40422,0],[73,19],[44,16]],[[24237,40457,0],[30,13],[19,18],[20,18]],[[24306,40506,0],[25,39],[49,86]],[[24380,40631,0],[15,23]],[[24395,40654,0],[30,26],[102,72],[74,61]],[[24601,40813,0],[37,48],[51,101]],[[24689,40962,0],[56,79],[46,37]],[[24791,41078,0],[39,27]],[[24830,41105,0],[44,21],[71,28],[56,20]],[[25001,41174,0],[110,24],[104,13]],[[25215,41211,0],[502,7],[104,-7],[140,-11]],[[25961,41200,0],[58,-3],[90,4],[254,22]],[[26363,41223,0],[64,14],[69,30]],[[26938,41458,0],[175,71],[0,-50]],[[22004,40499,0],[-66,-119],[29,-19],[210,-134],[-20,-42],[-50,-112],[149,-402],[27,-73]],[[22316,39204,0],[-90,-151],[-5,-146]],[[22198,38761,0],[-19,-59],[-26,-45]],[[22153,38657,0],[-10,-10],[-19,-13],[-23,-12],[-38,-17],[-98,-24]],[[21802,38574,0],[-43,24],[-17,9]],[[21720,38621,0],[-71,54],[-30,9],[-35,3]],[[21584,38687,0],[-37,-1],[-28,-8]],[[21434,38617,0],[-18,-22],[-211,-334]],[[21205,38261,0],[-228,-239],[-225,-54]],[[20752,37968,0],[-226,-10],[-165,120]],[[20361,38078,0],[-80,132],[-39,185]],[[20228,38614,0],[7,110],[4,100]],[[20239,38824,0],[-8,16],[-33,38],[-23,25],[-8,6],[-66,37]],[[19120,40389,0],[24,55],[194,-68],[41,-14],[19,-2],[20,-2],[18,-1],[19,0],[14,3],[21,6],[19,10],[15,13],[30,40],[28,33],[42,35],[22,10],[27,10],[205,46],[100,22],[9,2],[120,25],[22,-1],[20,0],[37,-10],[61,-20],[56,-25],[44,-15],[60,-20],[41,-12],[44,-14],[52,-11],[106,-20],[78,-9],[49,0],[42,2],[35,3],[85,10],[56,9],[52,11],[116,30],[154,41],[32,6],[27,4],[23,3],[179,-12],[74,-2],[32,3],[137,21],[31,0],[16,-3],[19,-6],[34,-20],[54,-38],[29,-18]],[[24449,44148,0],[30,-21],[73,-54],[52,-27],[46,3],[25,18],[16,15],[33,45],[21,28],[14,14],[19,17],[30,29],[24,70],[47,62],[72,63],[68,71],[35,43],[38,40],[37,40],[44,21],[196,45],[351,-243],[171,-112],[201,-94]],[[26108,41201,0],[-89,-3],[-58,2]],[[25215,41211,0],[-104,-12],[-110,-25]],[[25001,41174,0],[-56,-19],[-72,-29],[-43,-21]],[[24791,41078,0],[-46,-36],[-56,-80]],[[24601,40813,0],[-74,-60],[-103,-73],[-29,-26]],[[24380,40631,0],[-49,-85],[-25,-40]],[[24306,40506,0],[-20,-17],[-19,-18],[-30,-14]],[[24120,40422,0],[-114,-23],[-40,-7]],[[23966,40392,0],[-40,-2],[-71,2]],[[23807,40403,0],[-69,30],[-69,49]],[[23586,40544,0],[-40,12],[-25,4]],[[23492,40558,0],[-37,-7],[-51,-20],[-61,-28]],[[23237,40468,0],[-58,-12],[-44,-8]],[[22960,40486,0],[-44,6],[-28,-3]],[[22814,40468,0],[-103,-26],[-54,-9]],[[22657,40433,0],[-126,-9],[-86,4],[-379,56]],[[22066,40484,0],[-62,15]],[[18163,40516,0],[-45,150],[-48,156],[-55,170],[-14,106],[-2,52],[3,279],[7,108],[18,85],[30,118],[60,24],[311,41],[145,122],[133,165],[120,102],[-33,11],[-20,2],[-24,363],[-28,196],[-10,65],[-11,95],[131,95],[281,56],[-24,522],[-4,79],[147,-25],[298,78],[3,142],[150,159],[294,171],[0,-136],[269,33],[423,-53],[52,106],[114,234],[134,-147],[59,78],[15,19],[-59,127],[-55,117],[273,9],[-17,143],[17,43],[339,-118],[76,-47],[156,-105],[76,-34],[35,26],[67,22],[69,10],[73,39],[35,4],[46,11],[133,14],[40,5],[39,-9],[161,14],[95,-13],[49,6],[100,31],[43,4],[145,37],[392,38],[156,-29],[118,-41],[81,-41],[-2,-10],[86,-31],[221,-48],[93,-46],[51,-28],[24,-10],[105,-105],[99,-92],[8,-13],[15,-39],[24,-30]],[[79343,26796,0],[53,29],[48,27],[40,11],[25,19]],[[79509,26882,0],[79,18],[39,9]],[[79627,26909,0],[24,48],[10,74],[62,141],[-56,95],[-3,4]],[[79664,27271,0],[66,47]],[[79730,27318,0],[29,13],[15,30],[-1,18],[25,15],[42,8],[45,23],[-16,7],[-22,12],[-27,8],[-1,5],[2,51],[32,40],[7,29],[30,29],[17,29],[29,37],[37,-5],[20,-14],[57,6],[106,45],[50,6],[70,40],[18,29],[65,25],[44,-2],[64,29]],[[80467,27831,0],[63,35]],[[80530,27866,0],[9,3],[10,15],[19,21],[4,5],[52,22],[10,7],[19,-1],[41,12],[64,12],[44,51],[29,26],[15,11],[39,8],[24,20],[62,61],[33,39],[23,26],[16,28],[14,22],[18,20],[24,15],[50,26],[39,15],[34,21]],[[81222,28351,0],[15,11],[39,33]],[[81276,28395,0],[35,31],[32,31],[28,34]],[[81371,28491,0],[2,5],[27,56]],[[81400,28552,0],[33,67],[-2,32],[5,34],[1,12],[0,6]],[[81437,28703,0],[79,-1],[78,6],[62,5],[27,3],[68,12],[12,-13]],[[81763,28715,0],[27,19]],[[81790,28734,0],[15,5],[6,11],[12,-3],[31,22],[35,13],[46,31],[22,13]],[[81957,28826,0],[44,19]],[[82001,28845,0],[58,24],[21,-68],[11,3],[20,12],[14,9],[8,12],[3,8],[0,2],[2,7],[0,4],[22,11],[20,17],[28,12],[23,12],[23,3],[53,26],[3,-4]],[[82310,28935,0],[28,-14],[16,-51],[64,-107],[44,-75],[37,-60],[17,-22],[24,-24],[66,-201],[41,-93],[41,-68],[68,-73],[31,-75],[-7,-26],[5,-22],[15,-22],[60,-44],[36,-31],[9,-30],[-24,-138],[25,-81],[-14,0],[-100,-3],[-92,-14],[0,-19],[-78,-19],[-33,11],[6,11],[-71,50],[-46,30],[-134,89],[-20,14],[-15,-35],[-45,-67],[-86,-131],[-45,-64],[-55,-55],[-32,-53],[-25,-48],[-54,-99],[-25,-43],[-62,-30],[-29,-47],[-23,-49],[-23,-27],[-114,-25],[-66,-52],[-41,-9],[-30,-56],[-252,-133],[-96,0],[-37,18],[-85,-39],[-102,-3],[-28,2],[-64,-20],[-66,16],[-44,-71],[-16,-32],[-54,-38],[-53,20],[-55,-13],[-29,-21],[-30,-2],[-57,-21],[-180,19],[-57,-14],[-92,-33],[-69,-23],[-153,-34],[-113,-27],[-71,33],[-104,64],[-116,44],[-25,16],[-36,28],[-39,21],[-51,49],[-37,13],[-21,27],[21,12]],[[79131,30676,0],[162,-157],[3,-13],[11,-24],[1,0],[92,-25],[30,-4],[75,-18],[31,-8],[0,-38],[7,-69],[0,-13],[5,-15],[7,-11],[12,-14],[26,-19],[2,-2],[50,-35],[3,-3],[55,-28],[54,-23],[82,-28],[107,-37],[-10,-19],[-19,-21],[-41,-40],[-13,-11],[-63,-51],[-30,-27],[-73,-64],[-26,-41],[-12,-34],[-12,-56],[-6,-16],[-21,-55],[-42,-143],[-17,-55],[-15,-41],[2,-30],[-49,-65],[-15,-15],[-36,-31],[-29,-27],[-5,-1],[-23,-15],[-18,-19],[-23,-20],[-28,-21],[-38,-18],[-54,-27],[2,-24],[6,-12],[-2,-23],[15,-17],[27,-69],[14,-39],[11,-24],[6,-30],[29,-56],[-3,-1]],[[79335,28834,0],[-45,-7],[-72,-9],[-69,-10],[-47,-7],[-61,-8],[-53,-49],[-4,-2],[-58,-26],[-32,-25],[-30,55],[-9,-3],[-86,-20],[-10,-3],[-75,-31]],[[78684,28689,0],[-1,0],[-12,-3]],[[78671,28686,0],[-51,-13],[-2,0]],[[78618,28673,0],[-8,-4]],[[78610,28669,0],[-5,-2],[-66,-24]],[[78539,28643,0],[6,-14],[1,-3]],[[78546,28626,0],[17,-111],[20,-133]],[[78583,28382,0],[7,-41],[13,-83]],[[78603,28258,0],[1,-7],[1,-4]],[[78605,28247,0],[-91,-1],[-43,0]],[[78471,28246,0],[-12,-18],[-23,-41],[-49,-43],[-2,-13],[-3,-6],[-10,-8],[56,-17],[60,-16]],[[78488,28084,0],[6,-2],[72,-21]],[[78566,28061,0],[109,-50],[12,-120],[58,-146],[41,-109],[16,-19],[100,-128]],[[78902,27489,0],[55,-74],[6,-8]],[[78963,27407,0],[27,-47],[74,-128]],[[79064,27232,0],[34,-60],[15,-26]],[[79113,27146,0],[22,-48],[23,-51]],[[79158,27047,0],[11,-42],[-81,71],[-59,37],[-69,86],[-85,62],[-15,11],[-42,3],[-87,32],[-39,14],[-52,30],[-13,14],[-30,41],[-3,6],[-48,16],[-37,32],[-62,-13],[-80,21],[-29,2],[-61,21],[-22,16],[-52,35],[-95,30],[-100,34],[-147,51],[-147,50],[-118,41],[-205,68],[-32,34],[-94,23],[-122,58],[-31,15],[-113,19],[-38,18],[-52,13],[-72,20],[-83,25],[-75,28],[-39,13],[-46,6],[-20,2],[8,84],[11,23],[16,27],[36,30],[36,24],[13,24],[6,15],[194,5],[110,1],[213,4],[32,1],[64,14],[41,21],[145,-1]],[[77499,28362,0],[84,23],[36,11],[78,35],[53,50],[59,74],[40,50]],[[77849,28605,0],[58,115]],[[77907,28720,0],[13,34],[19,69]],[[77939,28823,0],[9,65]],[[77948,28888,0],[6,50]],[[77954,28938,0],[9,57]],[[77963,28995,0],[8,43],[13,39]],[[77984,29077,0],[16,36]],[[78000,29113,0],[23,42],[11,17],[17,20],[42,42],[39,29],[55,26],[30,30],[44,93],[38,77],[27,50],[9,16],[6,23],[9,38],[-5,61],[-1,93],[9,40],[4,18],[0,67],[-7,105],[-42,56],[-53,110],[-9,18],[-5,6],[-6,25],[1,36]],[[78236,30251,0],[-42,102],[70,-32],[91,-42],[1,-8],[115,-45],[12,8],[6,11],[27,38],[18,4],[30,-16],[20,-5],[66,-33],[30,-10],[25,-13],[49,-25],[9,-7],[16,-9],[104,-24],[45,-11],[13,52],[20,93],[10,30],[12,42],[28,68],[28,83],[8,16],[21,39],[28,69],[20,44],[7,-6],[8,12]],[[80997,29782,0],[17,-81]],[[81014,29701,0],[1,-39],[0,-3]],[[81015,29659,0],[-8,-87]],[[81007,29572,0],[-11,-27],[-6,-71],[20,-60],[3,-12],[2,-11],[87,-74],[27,-30],[26,-33],[48,-37]],[[81203,29217,0],[65,-24]],[[81268,29193,0],[33,-23],[35,-31],[31,-66],[13,-31],[2,-48],[12,-69],[8,-43],[12,-66],[23,-113]],[[81400,28552,0],[-29,-61]],[[81276,28395,0],[-54,-44]],[[80530,27866,0],[-4,-1],[-59,-34]],[[79730,27318,0],[-64,-46],[-2,-1]],[[79627,26909,0],[-118,-27]],[[79343,26796,0],[-9,25],[-25,61],[-6,13],[-11,29],[-134,123]],[[79158,27047,0],[-45,99]],[[79113,27146,0],[-49,86]],[[78963,27407,0],[-61,82]],[[78566,28061,0],[-78,23]],[[78471,28246,0],[134,1]],[[78605,28247,0],[-2,11]],[[78603,28258,0],[-20,124]],[[78546,28626,0],[-7,17]],[[78539,28643,0],[71,26]],[[78618,28673,0],[53,13]],[[78671,28686,0],[13,3]],[[79335,28834,0],[1,-2],[8,1]],[[79344,28833,0],[106,16]],[[79450,28849,0],[46,7],[78,28],[35,7],[36,15],[27,13],[21,14],[24,1],[11,0],[38,12],[33,16],[35,1],[18,-4],[24,-10],[25,6],[29,31],[2,9],[36,15],[29,20],[29,22],[19,22],[23,6],[18,15],[31,36],[3,4],[17,24],[49,97],[49,86],[-12,55],[57,12],[33,30],[24,33],[47,43],[49,32],[77,7],[5,0],[26,1],[51,4],[62,24],[89,14],[23,14],[22,9],[25,19],[25,12],[29,8],[38,44],[36,65],[7,-3],[14,31],[9,3]],[[80971,29799,0],[0,2],[3,1]],[[80974,29802,0],[10,9],[13,-29]],[[82272,30574,0],[18,6]],[[82290,30580,0],[7,3]],[[82297,30583,0],[59,-92],[46,-79],[23,-49],[49,-64],[88,-99],[40,-47],[44,-57],[19,-32],[25,-32],[27,-27],[20,-17],[44,-24],[41,-31],[44,-38],[79,-37],[43,-20],[70,-30]],[[83058,29808,0],[66,-19],[14,-35],[9,-20],[11,-15],[21,-23],[23,-29],[21,-39],[16,-27],[6,-15],[20,-19],[32,-39],[25,-37],[16,-29],[17,-21],[8,-12],[2,-19],[4,-37],[1,-43],[-3,-34],[-1,-16],[0,-12],[4,-49],[6,-34],[18,-18],[5,5],[25,-18],[27,-27],[18,1],[6,-9],[3,-20],[15,-17],[19,-28],[28,-32],[3,-10],[-4,-11],[-15,-21],[-15,-13],[-24,-4],[-12,-1],[-48,-5],[-44,-5],[-44,-19],[-35,-6],[-68,-12],[-31,-8],[-2,-41],[-47,-3],[-19,-1],[-15,-4],[-34,-9],[-26,-33],[-41,8],[-55,5],[-17,0],[-93,-4],[-34,10],[-32,23],[-21,12],[-18,12],[-17,14],[-17,40],[-15,43],[-13,39],[-102,3],[-80,-19],[-55,-12],[-41,-8],[-28,-18],[-34,-20],[-16,-13],[-2,-11],[3,-12],[-4,-1],[-8,12],[-10,16]],[[82001,28845,0],[-12,-6],[-32,-13]],[[81790,28734,0],[-9,-6],[-18,-13]],[[81268,29193,0],[-1,0],[-64,24]],[[81007,29572,0],[0,2],[8,85]],[[81014,29701,0],[-17,77],[0,4]],[[80974,29802,0],[-13,-2],[-2,-5],[-11,1],[-22,2],[0,3],[45,49],[14,24]],[[80985,29874,0],[6,28],[3,82],[11,295],[-1,46],[-1,44],[-6,143],[0,34],[-10,69],[-8,66]],[[80979,30681,0],[-4,12],[-4,13]],[[80971,30706,0],[-65,104],[-20,35],[-44,57],[-44,56],[-23,30],[-14,35],[-14,45],[-16,88],[-8,81],[-8,75]],[[80715,31312,0],[45,-84],[19,-42],[28,-49],[11,2],[36,-36],[16,-18],[14,10],[14,13],[-31,58],[-14,48],[-10,32],[-3,17],[13,22],[61,-6],[0,8],[1,9],[23,50],[4,9],[19,-3],[36,-6],[20,-6],[30,-11],[11,-3],[6,1],[31,44],[9,13],[6,16],[10,29],[9,6],[8,-24],[6,-14],[-12,-77],[0,-15],[0,-29],[-1,-59],[6,-14],[8,2],[19,-14],[24,-14],[51,-19],[11,-7],[36,-17],[18,-5],[11,-12],[14,-21],[7,-11],[12,-22],[11,-19],[11,-16],[16,-20],[19,-19],[10,-11],[3,-9],[4,-14],[6,-10],[-3,-3],[-6,-3],[0,-5],[12,-15],[10,-25],[20,-36],[17,-26],[20,-31],[5,-22],[-3,-15],[-3,-11],[-1,-17],[23,-57],[10,-27],[12,-29],[0,-20],[-1,-22],[0,-5],[10,0],[24,0],[30,2],[17,3],[9,-1],[23,9],[16,6],[35,9],[14,3],[50,-92],[0,28],[-3,25],[0,18],[22,-36],[38,-37],[46,-48],[8,5],[11,6],[52,30],[28,15],[43,20],[3,-5],[18,7],[73,29],[-11,28],[6,4],[9,0],[11,-2],[5,-7],[9,-19],[11,-25],[15,-9],[19,0],[26,11],[15,6],[51,15]],[[79781,31629,0],[37,-11],[45,8]],[[79863,31626,0],[74,-9]],[[79937,31617,0],[59,-8],[20,2],[158,-4]],[[80174,31607,0],[81,-4],[29,-5],[19,0],[53,-31]],[[80356,31567,0],[34,-29],[34,-26],[29,-36],[15,-22],[-1,-4],[24,-11],[34,-5],[27,-7],[30,-11],[34,-20],[20,-20],[14,-1],[1,-6],[22,-2],[12,-9],[16,-23],[14,-23]],[[80971,30706,0],[8,-25]],[[80985,29874,0],[-7,-42],[-7,-33]],[[79450,28849,0],[-59,-9],[-47,-7]],[[79131,30676,0],[21,60],[11,44],[2,5],[-20,5],[-24,9],[-47,7],[-353,41],[-14,162],[-11,48],[-34,65],[37,56],[-1,17],[-10,109],[140,19],[50,2],[127,53],[92,2],[59,11],[30,13],[21,0],[43,24]],[[79250,31428,0],[46,-5],[12,2]],[[79308,31425,0],[27,17],[24,5]],[[79359,31447,0],[13,14],[48,9]],[[79420,31470,0],[77,8],[65,7],[66,20],[82,-2]],[[79710,31503,0],[-1,-13]],[[79709,31490,0],[9,-2],[1,8],[45,-10]],[[79764,31486,0],[6,6],[87,-22],[1,5],[2,7],[1,4],[-28,7],[-22,15],[-33,6]],[[79778,31514,0],[-91,61]],[[79687,31575,0],[-10,21],[-19,8]],[[79658,31604,0],[-87,-1],[-17,3]],[[79554,31606,0],[-12,6],[-15,15],[-14,20],[-11,23],[-2,8],[2,8],[1,3],[154,0],[42,-5],[25,-21],[57,-34]],[[81465,33035,0],[23,-10],[27,0],[62,-7],[21,-2],[66,-28],[22,-10],[61,-55],[31,-11],[14,1],[16,30],[23,2],[12,22],[50,-3],[-1,-24]],[[81892,32940,0],[62,-33],[10,-5]],[[81964,32902,0],[-11,-68],[31,-3],[4,25],[24,-6],[74,-15],[11,49],[20,-1],[16,63]],[[82133,32946,0],[71,-27],[75,-29]],[[82279,32890,0],[18,-7],[36,-2]],[[82333,32881,0],[5,1],[44,2]],[[82382,32884,0],[10,-13],[60,13],[1,49],[3,25],[10,-6],[17,-12],[15,-3],[21,-3],[18,1]],[[82537,32935,0],[4,1],[14,2]],[[82555,32938,0],[20,8],[71,22],[11,4],[20,5],[13,4],[29,-31],[24,-47],[2,-24],[0,-30],[-2,-15]],[[82743,32834,0],[-15,-1],[-19,-64],[-13,-12],[-23,-11],[-14,-15],[-14,-26],[-15,-37]],[[82630,32668,0],[-23,-85],[-12,-45]],[[82595,32538,0],[-9,-51],[-4,-36],[4,-44],[4,-85]],[[82590,32322,0],[0,-17],[0,-42]],[[82590,32263,0],[-5,-41],[-17,-52],[-34,-58],[-33,-48],[-39,-49],[-20,-30],[-23,-61],[-12,-61],[-2,-66],[-26,-47],[-18,-51],[-15,-68],[-6,-47],[-2,-60],[6,-95],[-14,-6],[-60,-18],[-54,-13],[1,-64],[4,-35],[11,-42],[25,-69],[7,-12],[17,-28],[38,-73]],[[82319,31069,0],[8,-8],[17,-16]],[[82344,31045,0],[29,-21],[67,-59],[37,-30],[37,-51],[33,-28],[-92,-62],[-31,-19],[-54,-35],[-26,-6],[-64,-15],[-44,-30],[57,-99],[4,-7]],[[82290,30580,0],[-8,-3],[-10,-3]],[[80356,31567,0],[-50,31],[21,7],[18,16],[7,9],[4,12]],[[80356,31642,0],[0,23]],[[80356,31665,0],[2,26],[8,25]],[[80366,31716,0],[33,41]],[[80399,31757,0],[22,14]],[[80421,31771,0],[11,15]],[[80432,31786,0],[28,12]],[[80460,31798,0],[33,2]],[[80493,31800,0],[25,25],[19,19]],[[80537,31844,0],[32,32],[58,13]],[[80627,31889,0],[51,24],[51,9]],[[80729,31922,0],[10,8],[74,68]],[[80813,31998,0],[44,39]],[[80857,32037,0],[18,24],[10,23],[8,18],[5,14]],[[80898,32116,0],[22,51]],[[80920,32167,0],[1,11],[0,15]],[[80921,32193,0],[9,8]],[[80930,32201,0],[-1,14],[8,80],[8,39]],[[80945,32334,0],[-1,15]],[[80944,32349,0],[11,32]],[[80955,32381,0],[-5,48]],[[80950,32429,0],[8,18],[15,32],[8,19],[38,38],[37,40]],[[81056,32576,0],[23,25]],[[81079,32601,0],[20,1],[7,24]],[[81106,32626,0],[18,19]],[[81124,32645,0],[49,44]],[[81173,32689,0],[12,21],[21,29]],[[81206,32739,0],[33,35],[11,11],[25,26],[22,23]],[[81297,32834,0],[24,25]],[[81321,32859,0],[126,121],[6,15],[11,26]],[[81464,33021,0],[1,14]],[[84123,32199,0],[16,34],[24,51]],[[84163,32284,0],[37,42],[10,9],[55,52],[89,81],[-13,-25],[-13,-24],[-14,-26],[20,-10],[-9,-17],[10,-5],[30,-15],[61,-30],[18,-2],[4,-1],[70,-25],[14,-10],[15,-10],[43,28],[32,20]],[[84622,32316,0],[37,24],[22,14]],[[84681,32354,0],[3,2],[23,9],[32,12],[8,22],[46,5],[52,17],[5,2],[31,7],[43,9],[10,-12],[16,-23],[37,-19],[11,1],[18,9],[32,34],[27,-9],[-1,-9],[-5,-47],[12,-5],[4,-3],[3,-4],[2,-6],[-1,-16],[-4,-37],[0,-4]],[[85085,32289,0],[21,-17],[6,-5]],[[85112,32267,0],[58,-45]],[[85170,32222,0],[5,-6]],[[85175,32216,0],[18,-25],[3,-4],[27,-37]],[[85223,32150,0],[-2,-28],[4,-13],[4,-14],[2,-4],[8,-12],[7,-7]],[[85246,32072,0],[8,-7],[13,-10]],[[85267,32055,0],[27,-97],[1,-20],[-4,-20],[-13,-28],[-40,-44],[-50,-33],[-25,-40],[1,-108],[28,-49],[40,-62],[88,-62],[50,-18],[49,-31],[44,-17],[129,-84],[4,-9]],[[85596,31333,0],[-3,-10],[0,-3],[-21,-45],[-88,26],[-65,-110],[-120,59],[-47,-82],[-20,-34],[32,-19],[31,-17],[84,-49],[-6,-11]],[[85373,31038,0],[-76,-100],[-29,-37],[-35,-41],[-39,-30],[-12,-47],[-26,-19],[-27,-3],[-49,-2],[-27,-8],[-26,-21],[-26,-32],[-27,-45],[-56,-15],[-45,-72],[-33,-23],[-21,-8],[-43,-4],[-44,-3],[-83,-68],[29,-27],[-43,-55],[-89,-14],[-41,-26],[-57,-13],[-67,-27],[-78,-7],[-65,-8],[-40,-23],[-79,-16],[-26,-47],[-5,-36],[-18,-7],[-32,-34],[-54,-84],[-15,-14],[-1,-36],[7,-40],[23,-62],[4,-38],[-2,-20],[-39,-46],[-18,-23],[-60,-61],[-23,-2],[-119,73],[-50,28],[-97,85],[-26,12],[-14,11],[-21,10],[-19,-2],[-59,6],[-69,-11],[-53,-46],[-32,-20],[-44,-18],[-23,-4],[-22,-13],[-64,-23],[-90,26]],[[82344,31045,0],[-25,24]],[[82590,32263,0],[0,59]],[[82595,32538,0],[35,130]],[[82743,32834,0],[9,-36],[13,-46],[18,-41],[25,-48],[9,-28],[0,-47],[-3,-43],[10,-46]],[[82824,32499,0],[4,-18],[12,-9],[46,-34],[105,-53],[96,-9],[98,25],[64,1],[35,-1],[48,-18],[19,-5],[22,-2],[20,29],[12,-5],[233,-91],[77,19],[67,-2],[50,-18],[16,-5],[239,-91],[36,-13]],[[85596,31333,0],[128,-80],[87,-61],[37,-10],[28,-16],[27,-17],[27,-16],[27,-17],[28,-17],[27,-15],[27,-14],[27,-7],[24,-5],[28,-7],[27,-14],[17,-10],[18,-12],[29,-30],[12,-13],[34,-26],[16,-38],[16,-33],[12,-24],[10,-25],[11,-24],[12,-24],[37,-83],[70,-169],[47,-120],[21,-130],[9,-117],[37,-132],[84,-141],[48,-156],[9,-23],[13,1],[14,-19],[15,-22],[71,-47],[56,-3],[18,-34],[46,68],[22,-9],[70,-28],[7,37],[31,65],[14,68],[114,1],[22,-1],[-47,-87],[-26,-177],[-19,-117],[-38,-34],[-22,-43],[-28,-198],[-43,-51],[-27,-14],[-48,-26],[-99,-53],[-65,-66],[-67,-68],[-42,-114],[-10,6],[-16,-2],[-87,90],[-112,70],[-17,60],[-54,20],[-27,13],[-7,28],[-19,27],[-25,9],[-31,14],[-28,75],[-63,31],[-33,19],[-96,88],[-41,60],[-15,21],[-3,79],[32,39],[2,48],[-61,84],[-54,71],[-5,72],[-2,13],[-27,75],[-20,172],[-7,28],[9,58],[-5,67],[-20,48],[-13,18],[-6,26],[-14,56],[0,8],[8,34],[-3,83],[-26,92],[-3,33],[-1,39],[-39,35],[-5,26],[-24,43],[-11,28],[-6,17],[-38,46],[-3,7],[-13,32],[-28,33],[-46,49],[-37,41],[-23,21],[-44,36],[-27,10],[-19,6]],[[85973,33734,0],[482,-195]],[[86455,33539,0],[-37,-67],[34,-55],[-26,-57],[4,-19],[-5,-61],[5,-18],[30,-42],[7,-21],[-1,-24],[-17,-43],[-20,-32],[-7,-34],[-79,-76],[-18,-7],[-21,1],[-56,15],[-11,-53],[3,-6],[37,-56],[-5,-22],[3,-31],[-17,-16],[-159,73],[-32,11],[-50,35],[-46,9],[-24,4],[-46,-13],[-18,0],[-15,20],[-94,43],[-8,3],[-114,21],[-8,2],[-50,14],[4,27],[-69,9],[-86,24],[-41,24],[-35,-55],[-8,-92],[-9,-44],[43,-217],[-31,6],[1,-6],[0,-23],[-10,-65],[-68,-493],[-18,-77]],[[85267,32055,0],[-21,17]],[[85223,32150,0],[-48,66]],[[85175,32216,0],[-2,1],[-3,5]],[[85112,32267,0],[-27,22]],[[84681,32354,0],[-59,-38]],[[84163,32284,0],[-40,-85]],[[82824,32499,0],[27,94],[62,47],[25,68],[6,62],[-12,2],[-4,8],[13,14],[7,63],[12,40],[74,144]],[[83034,33041,0],[55,166]],[[83089,33207,0],[38,119],[2,16],[5,28],[21,27],[5,17],[8,1],[25,-2],[25,96]],[[83218,33509,0],[9,41],[21,91]],[[83248,33641,0],[4,21],[23,128],[4,24]],[[83279,33814,0],[14,-2],[14,136],[-4,3],[7,57]],[[83310,34008,0],[0,2],[6,29]],[[83316,34039,0],[8,80],[17,160],[149,214],[47,62],[16,12],[92,85]],[[83645,34652,0],[67,13]],[[83712,34665,0],[22,-111]],[[83734,34554,0],[27,-61]],[[83761,34493,0],[23,-43],[27,-37],[20,-19],[46,-28]],[[83877,34366,0],[45,-17]],[[83922,34349,0],[49,-11],[71,-16]],[[84042,34322,0],[448,-104]],[[84490,34218,0],[224,-47]],[[84714,34171,0],[175,-30],[203,-68],[869,-364],[12,25]],[[83550,35025,0],[27,-6]],[[83577,35019,0],[29,1],[21,2]],[[83693,35024,0],[0,-1]],[[83693,35023,0],[1,-16],[3,-32],[2,-43],[-1,-21],[10,-75],[-2,-23],[5,-48],[-1,-17],[0,-83]],[[83710,34665,0],[-65,-13]],[[83316,34039,0],[-6,-31]],[[83279,33814,0],[-31,-173]],[[83248,33641,0],[-30,-132]],[[83089,33207,0],[-8,-23],[-44,-132],[-3,-11]],[[82555,32938,0],[-18,-3]],[[82382,32884,0],[-49,-3]],[[82279,32890,0],[-146,56]],[[81964,32902,0],[-72,38]],[[81465,33035,0],[4,34],[11,35],[2,8]],[[81482,33112,0],[11,20],[10,18],[11,21],[2,4]],[[81516,33175,0],[23,41],[14,27]],[[81553,33243,0],[27,38],[30,42],[26,34]],[[81636,33357,0],[18,6]],[[81654,33363,0],[10,41],[11,26],[8,2]],[[81683,33432,0],[18,84],[-5,5]],[[81696,33521,0],[-12,4],[-5,7],[0,27]],[[81679,33559,0],[13,33],[17,23]],[[81709,33615,0],[28,28]],[[81737,33643,0],[6,27],[8,76]],[[81751,33746,0],[10,99],[12,92],[13,51],[14,56]],[[81800,34044,0],[8,82],[33,31]],[[81841,34157,0],[14,46]],[[81855,34203,0],[5,31],[3,11]],[[81863,34245,0],[5,33],[6,27]],[[81874,34305,0],[29,71]],[[81903,34376,0],[18,64],[7,22],[-7,63],[15,43],[7,21]],[[81943,34589,0],[39,50]],[[81982,34639,0],[55,63],[35,73]],[[82072,34775,0],[44,77],[54,56],[54,60]],[[82224,34968,0],[54,58],[29,20]],[[82307,35046,0],[11,-74],[4,-36]],[[82322,34936,0],[21,-54],[4,-13]],[[82347,34869,0],[44,-43],[32,-53],[44,19],[6,-3],[94,51],[29,7],[14,-3]],[[82610,34844,0],[24,8],[18,7]],[[82652,34859,0],[19,16]],[[82671,34875,0],[58,-1],[18,0]],[[82747,34874,0],[118,37],[-1,5],[115,24],[133,23],[50,13],[76,69],[46,79],[66,-5],[25,-35],[39,-34],[24,-9]],[[83438,35041,0],[24,-5],[28,-5]],[[83490,35031,0],[2,0],[58,-6]],[[84674,35524,0],[1,1],[41,17]],[[84716,35542,0],[128,37]],[[84844,35579,0],[49,16]],[[84893,35595,0],[20,-73]],[[84913,35522,0],[157,-48]],[[85070,35474,0],[81,-27],[15,-4],[72,-18],[41,-32],[127,-28],[167,-21],[100,-11],[30,-2],[52,1],[89,9],[-5,150],[0,101],[229,-54],[164,-39]],[[86232,35499,0],[7,-1],[9,-2]],[[86248,35496,0],[132,-33],[101,-171],[33,-57],[75,110]],[[86589,35345,0],[40,-202],[10,-17],[41,-31],[9,-16],[-2,-14],[-2,-28],[0,-23],[11,-38],[-4,-53],[17,-61],[-1,-8],[-16,-25],[-17,-28],[11,-7],[86,-69],[114,-75],[76,-58],[19,-14],[-95,-84],[29,-16],[75,-10],[-50,-207],[42,-4],[-9,-76],[-15,-73],[-26,-67],[-8,-74],[-29,-119],[-31,-38],[-40,-20],[-26,-13],[-56,-39],[44,-36],[-2,-55],[8,-73],[-58,-6],[-7,-44],[-25,-46],[-31,0],[-55,2],[-37,15],[-14,6],[-110,38]],[[86455,33539,0],[-53,21],[-102,41],[-72,30],[-11,5],[-8,3],[-59,24],[-75,30],[-102,41]],[[84714,34171,0],[-48,10],[-17,4],[-159,33]],[[84490,34218,0],[-446,104],[-2,0]],[[84042,34322,0],[-120,27]],[[83922,34349,0],[-44,17],[-1,0]],[[83761,34493,0],[-9,19],[-18,42]],[[83734,34554,0],[-14,73],[-8,38]],[[83712,34665,0],[-2,0]],[[83693,35023,0],[-4,43]],[[84114,35496,0],[101,18]],[[84215,35514,0],[103,58],[44,10],[56,4],[48,32],[57,22],[16,3],[20,2]],[[84559,35645,0],[1,-13]],[[84560,35632,0],[4,-15],[2,-4]],[[84566,35613,0],[25,-46],[83,-43]],[[83411,37973,0],[7,3],[3,-1],[-1,-59]],[[83420,37916,0],[12,-56]],[[83432,37860,0],[54,-100],[7,-27],[14,-23],[20,-36],[69,-76],[81,-186]],[[83677,37412,0],[36,-82]],[[83713,37330,0],[22,-8],[79,-56],[20,-60],[12,-46]],[[83846,37160,0],[74,-157]],[[83920,37003,0],[86,-152],[29,-21]],[[84035,36830,0],[39,1]],[[84074,36831,0],[100,-124],[68,-40]],[[84242,36667,0],[41,-24],[255,-74],[28,-9],[37,3],[60,-3],[104,-25],[71,-57],[49,-28]],[[84887,36450,0],[70,-43]],[[84957,36407,0],[22,-20],[83,-54],[-92,-220]],[[84970,36113,0],[14,-9]],[[84984,36104,0],[-92,-123]],[[84892,35981,0],[-8,-14],[-79,-75],[-168,-144],[-27,-23],[-21,-17],[-23,-2],[-7,-21],[0,-40]],[[84215,35514,0],[-60,-11]],[[83627,35022,0],[-50,-3]],[[83550,35025,0],[-60,6]],[[83490,35031,0],[-52,10]],[[82747,34874,0],[-76,1]],[[82652,34859,0],[-42,-15]],[[82347,34869,0],[-25,67]],[[82307,35046,0],[109,49]],[[82416,35095,0],[41,100]],[[82457,35195,0],[11,31],[41,59]],[[82509,35285,0],[80,141]],[[82589,35426,0],[130,141],[1,9]],[[82720,35576,0],[-16,130]],[[82704,35706,0],[19,49],[15,60]],[[82738,35815,0],[4,58]],[[82742,35873,0],[-16,56],[-73,151],[-4,113]],[[82649,36193,0],[5,28]],[[82654,36221,0],[33,137],[-20,121]],[[82667,36479,0],[51,49],[12,6],[19,10],[5,9],[16,30],[28,55],[59,65],[81,82],[53,76],[20,29],[85,63],[45,36],[34,46],[17,37],[51,64],[35,57],[34,50]],[[83290,37469,0],[-41,86],[-54,108],[-2,8],[-13,121],[-10,142],[-9,102],[250,-63]],[[86248,35496,0],[-16,3]],[[85070,35474,0],[-114,34],[-43,14]],[[84893,35595,0],[-3,-1],[-46,-15]],[[84716,35542,0],[-42,-18]],[[84566,35613,0],[-6,19]],[[84892,35981,0],[90,121],[2,2]],[[84970,36113,0],[91,219]],[[85061,36332,0],[90,-44]],[[85151,36288,0],[52,-21]],[[85203,36267,0],[29,-12]],[[85232,36255,0],[11,49],[9,30],[18,126]],[[85270,36460,0],[1,7],[29,213]],[[85300,36680,0],[23,309]],[[85323,36989,0],[36,101],[-4,3]],[[85355,37093,0],[14,21],[26,29]],[[85395,37143,0],[46,17],[37,-4]],[[85478,37156,0],[194,73]],[[85672,37229,0],[73,-2],[183,3],[140,-11],[22,-3],[112,33],[31,3],[32,-2],[19,-8],[65,-111],[108,-29],[105,-41],[46,-29],[45,-35],[159,-8],[2,-4],[37,-2],[3,5],[63,-1],[11,-3],[61,-27],[170,-124],[38,-19],[127,-30],[70,-24],[24,-7],[52,-3],[21,1],[110,22],[6,-22],[25,-90],[12,-29],[54,-102],[42,-70],[15,-21],[4,-9],[-460,-28],[-124,-49],[-125,-232],[-23,-285],[-8,-111],[-2,-11],[-256,-328],[-55,120],[-117,-161]],[[86113,38120,0],[-6,-6],[-12,-23],[-13,-43],[-36,-132],[-18,-31],[12,-58],[-56,-10],[-17,-5],[-18,-9],[-16,-7],[-10,-21],[-14,-35],[-11,-29],[-20,-60],[-14,-41],[-9,-12],[-107,-109],[-5,-6],[-3,-8],[-27,-178],[-10,-36],[-9,-12],[-22,-20]],[[85478,37156,0],[-37,5],[-35,-14],[-11,-4]],[[85395,37143,0],[-26,-28],[-14,-22]],[[85355,37093,0],[4,-2],[-12,-33],[-24,-69]],[[85300,36680,0],[-29,-212],[-1,-8]],[[85270,36460,0],[-8,-57],[-10,-68],[-8,-24],[-2,-7],[-2,-10],[-8,-39]],[[85232,36255,0],[-15,7],[-14,5]],[[85203,36267,0],[-24,10],[-28,11]],[[85061,36332,0],[0,1],[1,1],[-83,54],[-9,8],[-13,11]],[[84957,36407,0],[-60,37],[-10,6]],[[84887,36450,0],[-49,29],[-71,57],[-104,25],[-60,3],[-37,-3],[-28,9],[-256,73],[-29,18],[-11,6]],[[84242,36667,0],[-7,5],[-62,35],[-72,90],[-27,34]],[[84035,36830,0],[-16,12],[-13,10],[-86,151]],[[83846,37160,0],[-7,27],[-5,20],[-12,38],[-8,22],[-27,18],[-52,38],[-9,3],[-13,4]],[[83677,37412,0],[-50,115],[-31,72],[-69,76],[-19,33],[-1,3],[-14,23],[-8,26],[-53,100]],[[83432,37860,0],[-5,22],[-7,34]],[[83420,37916,0],[1,63],[31,18],[13,8]],[[83465,38005,0],[58,3],[12,1],[2,-1],[14,-7],[52,-22],[13,12],[3,2],[1,3],[2,4],[5,11],[4,7],[7,9],[6,7],[7,13],[5,2],[2,2],[159,53],[7,2],[58,8],[21,2],[43,7],[54,16],[179,34],[51,18],[19,9],[14,7],[35,21],[13,8],[19,4],[172,46],[94,24],[22,6],[20,3],[106,15],[72,4],[41,14],[75,2],[58,-18],[18,2],[137,-26],[27,-5],[23,5],[63,1],[171,2],[20,5],[17,5],[127,23],[52,4],[122,-3],[30,-10],[11,-3],[56,-1],[31,-5],[49,-20],[32,-21],[41,-43],[44,-67],[7,-10],[3,-3],[42,-46]],[[84516,39923,0],[158,0],[60,0]],[[84734,39923,0],[26,74]],[[84760,39997,0],[0,1],[179,-35]],[[84939,39963,0],[-16,-123],[-2,-10]],[[84921,39830,0],[0,-4],[-1,-20],[7,-16],[1,-4],[70,-16],[9,-12],[13,-18]],[[85020,39740,0],[7,-25],[1,-3]],[[85028,39712,0],[108,-2]],[[85136,39710,0],[-11,-94],[7,-49],[-1,-83],[6,-23],[26,-95],[25,-68],[19,-23],[33,-40],[82,-57],[45,-24],[43,-17],[96,-35],[69,-15],[39,75],[-6,59],[-5,83],[77,20],[32,-28],[153,-52],[-2,-64],[-5,-8],[8,-32],[37,-46],[96,-129],[85,-125],[69,-75],[40,-61],[0,-50],[-8,-205],[-6,-73],[-1,-16],[1,-59],[-11,-55],[-14,-35],[-11,-42],[-18,-20],[-12,-29]],[[83465,38005,0],[-48,-28],[-6,-4]],[[83411,37973,0],[-103,26],[-151,39]],[[83157,38038,0],[-2,0],[0,6],[1,1]],[[83156,38045,0],[17,35],[7,21]],[[83180,38101,0],[8,24],[-34,18],[-41,19],[10,21],[-11,4]],[[83112,38187,0],[-117,35],[0,2]],[[82995,38224,0],[3,10],[-186,64],[-26,12],[-32,22],[-21,21],[-9,10],[-15,27],[-9,35]],[[82700,38425,0],[-1,42]],[[82699,38467,0],[5,41],[8,26],[27,62]],[[82739,38596,0],[257,437],[8,29],[15,55],[4,35],[-1,73],[-9,60],[-45,234],[-19,60],[-73,140],[76,57],[17,12],[14,-99],[179,36],[7,2],[38,4],[51,16],[2,1],[15,11]],[[83275,39759,0],[49,7],[26,9]],[[83350,39775,0],[7,0],[3,0],[3,0],[13,-1]],[[83376,39774,0],[34,14],[39,15],[108,54]],[[83557,39857,0],[68,28],[-4,20]],[[83621,39905,0],[0,1],[5,2],[19,10]],[[83645,39918,0],[71,35]],[[83716,39953,0],[47,12],[25,6],[33,11],[66,24],[1,0],[7,-7],[19,-15],[45,10]],[[83959,39994,0],[27,-3]],[[83986,39991,0],[45,0],[23,-4]],[[84054,39987,0],[63,1],[55,10]],[[84172,39998,0],[81,3],[20,8],[17,-2],[1,0]],[[84291,40007,0],[51,-5],[36,3]],[[84378,40005,0],[-1,4],[0,1]],[[84377,40010,0],[27,-1],[19,-1]],[[84423,40008,0],[19,-1],[70,-2],[-1,-29],[-2,-38],[5,-11],[2,-4]],[[83691,41708,0],[30,-13],[52,-19],[3,0],[46,-7],[105,-14],[15,-2],[116,-25],[138,-27],[93,-18],[39,-4]],[[84328,41579,0],[150,-17]],[[84478,41562,0],[196,-28]],[[84674,41534,0],[20,-3],[169,-28],[103,-17]],[[84966,41486,0],[27,-4],[118,-19]],[[85111,41463,0],[83,-13],[119,-19],[5,0],[12,-2],[203,-23]],[[85533,41406,0],[9,-1],[6,-1]],[[85548,41404,0],[117,-9],[3,0],[91,-12],[131,-17]],[[85890,41366,0],[1,0],[99,-17],[37,-6],[79,-15],[82,-15],[7,-2]],[[86195,41311,0],[61,-21]],[[86256,41290,0],[22,-10]],[[86278,41280,0],[116,-41]],[[86394,41239,0],[17,-6],[4,-2]],[[86415,41231,0],[111,-40]],[[86526,41191,0],[137,-49],[-99,-80],[-217,-217],[-2,-3],[-62,-69],[-23,-26],[-118,-132],[90,-169],[-40,-103],[-74,-54],[-85,-88],[-80,-111],[-167,-149],[-108,-44],[-40,-16],[-83,-26],[-122,-16],[-42,-26],[-50,-9],[-77,-15],[-61,-46],[-67,-33]],[[85028,39712,0],[-8,28]],[[85020,39740,0],[-22,29],[-70,16],[-8,20],[1,25]],[[84921,39830,0],[18,133]],[[84939,39963,0],[-179,34]],[[84734,39923,0],[-218,0]],[[84516,39923,0],[-6,15],[2,66],[-89,4]],[[84423,40008,0],[-46,2]],[[84377,40010,0],[1,-5]],[[84378,40005,0],[-36,-4],[-51,6]],[[84291,40007,0],[-18,1],[-20,-8],[-81,-2]],[[84054,39987,0],[-23,3],[-45,1]],[[83959,39994,0],[-45,-11],[-26,22],[-100,-35],[-72,-17]],[[83645,39918,0],[-24,-13]],[[83557,39857,0],[-108,-55],[-73,-28]],[[83376,39774,0],[-16,0],[-10,1]],[[83350,39775,0],[-26,-10],[-49,-6]],[[83275,39759,0],[-17,-13],[-50,-15],[-45,-6],[-180,-37],[-14,99],[-101,-74]],[[82868,39713,0],[-15,30]],[[82853,39743,0],[-6,38],[-6,76]],[[82841,39857,0],[-5,61],[-11,117]],[[82825,40035,0],[-6,69],[0,9]],[[82819,40113,0],[-1,14],[-2,12]],[[82816,40139,0],[2,34]],[[82818,40173,0],[8,34],[2,56]],[[82828,40263,0],[-1,74]],[[82827,40337,0],[-5,38],[-14,71]],[[82808,40446,0],[-17,87],[-3,46],[-1,14]],[[82787,40593,0],[-2,39]],[[82785,40632,0],[-25,22]],[[82760,40654,0],[-51,112]],[[82709,40766,0],[-8,48],[-7,35]],[[82694,40849,0],[-7,34],[-1,21],[5,25]],[[82691,40929,0],[4,22],[21,63],[15,36]],[[82731,41050,0],[26,65]],[[82757,41115,0],[14,32],[36,113],[39,125]],[[82846,41385,0],[5,-1],[1,0],[49,234]],[[82901,41618,0],[6,35],[15,41]],[[82922,41694,0],[1,38]],[[82923,41732,0],[-7,0],[-1,22],[33,14],[27,-1],[78,7],[94,-6],[137,4],[56,-1],[78,-4],[54,-3],[80,-8],[31,-4],[64,-25],[44,-19]],[[84821,44111,0],[-38,-102],[-7,-14],[-13,-19],[-14,-11],[-19,-8],[-34,-13],[-27,-7],[-25,-14],[-9,-12],[-7,-14],[-22,-68],[-8,-26],[-112,-288],[-5,-13],[-1,-11],[2,-8],[3,-6],[6,-10]],[[84491,43467,0],[-28,-49]],[[84463,43418,0],[-250,-339]],[[84213,43079,0],[-89,-123],[-121,-167],[-84,-115],[-15,-14],[2,-5]],[[83906,42655,0],[-70,-446]],[[83836,42209,0],[-5,-167],[-61,-129],[-81,-169]],[[83689,41744,0],[-15,-53],[-38,21],[-100,17],[-184,13],[-294,3],[-153,-12]],[[82905,41733,0],[-22,1],[-25,0],[-26,2]],[[82832,41736,0],[-4,58]],[[82828,41794,0],[-2,24]],[[82826,41818,0],[0,13],[-6,116]],[[82820,41947,0],[-1,12]],[[82819,41959,0],[18,37],[16,47],[21,156],[-42,115],[-16,6],[-39,73],[-13,57],[7,18],[-3,37],[-3,36],[4,57],[13,69],[-1,41]],[[82781,42708,0],[0,14],[-6,134]],[[82775,42856,0],[-1,3],[-3,8]],[[82771,42867,0],[-11,14]],[[82760,42881,0],[-10,8],[-14,5],[-14,-1]],[[82722,42893,0],[-47,-2],[-24,-2]],[[82651,42889,0],[-131,-9]],[[82520,42880,0],[-2,-8],[-23,-51],[-10,-34],[-46,-9],[-33,-4],[-24,1],[-25,2],[-10,4],[-32,7],[-53,22],[-47,18],[-35,14],[-24,6],[-87,-2],[-43,18],[-13,-1],[-13,13],[5,112],[7,9],[13,176],[33,90],[32,57],[42,32],[1,12],[42,46]],[[82175,43410,0],[10,-3]],[[82185,43407,0],[28,68]],[[82213,43475,0],[41,76],[-7,3],[12,27],[128,256],[79,121],[229,344],[161,271]],[[82856,44573,0],[90,153]],[[82946,44726,0],[140,177]],[[83086,44903,0],[179,219],[16,0],[23,50],[77,136],[20,15],[68,91]],[[83469,45414,0],[113,155]],[[83582,45569,0],[49,69]],[[83631,45638,0],[44,61],[93,89],[22,-13],[131,-77],[230,-107],[-47,-67],[14,-26],[-32,-36],[-33,-79],[-23,-88],[-9,-47],[-3,-85],[43,-144],[-103,-26],[-1,-32],[30,-49],[18,-67],[-5,-40],[122,-90],[18,11],[78,64],[36,-28],[42,-20],[11,-4],[98,-65],[10,8],[6,31],[16,44],[136,-17],[44,4],[21,-223],[86,-5],[24,-21],[12,-38],[-11,-54],[1,-45],[47,-44],[46,-63],[43,-22],[31,-10],[46,11],[9,-11],[12,-15],[-31,-44],[-132,-48]],[[83582,45569,0],[-74,-100],[-39,-55]],[[83086,44903,0],[-56,-70],[-47,-61],[-37,-46]],[[82946,44726,0],[-15,-26],[-75,-127]],[[82213,43475,0],[-7,-17],[-21,-51]],[[82175,43410,0],[-121,29],[0,7],[-95,34],[-6,-17]],[[81953,43463,0],[-124,25],[-112,30],[-46,58],[-57,79]],[[81614,43655,0],[-23,57],[-3,9]],[[81588,43721,0],[-84,265],[-39,300],[-4,79],[22,68],[35,96],[43,157],[21,66],[62,143],[49,138]],[[81693,45033,0],[37,135],[4,17]],[[81734,45185,0],[19,91]],[[81753,45276,0],[2,103],[1,10]],[[81756,45389,0],[9,63],[9,12],[3,14],[-18,52],[-20,37],[-2,21],[3,28]],[[81740,45616,0],[1,9],[5,43]],[[81746,45668,0],[-25,121],[-34,181]],[[81687,45970,0],[-1,4],[-12,170],[-2,14]],[[81672,46158,0],[-4,32],[-4,31]],[[81664,46221,0],[-8,17]],[[81656,46238,0],[-44,94],[-14,30]],[[81598,46362,0],[118,-38],[139,-12],[227,22],[59,6],[100,15],[44,-1],[7,27],[61,11],[49,70]],[[82402,46462,0],[110,-58],[83,-48],[311,-107],[83,-65],[121,-67],[121,-65],[69,-33],[59,-65],[13,-15],[7,-18],[12,-30],[7,-19],[72,-106],[28,4],[27,-53],[106,-79]],[[81598,46362,0],[-3,1],[-21,6],[-45,12],[-171,45]],[[81358,46426,0],[-25,-3],[-3,-1]],[[81330,46422,0],[-123,-21],[-59,-8],[-75,-10],[-105,-1],[-53,-9],[-30,0],[-53,19],[-11,0],[-9,0],[-3,-16],[-45,-44]],[[80764,46332,0],[-51,18],[-17,6],[0,36],[-3,45],[-5,36],[-29,98],[-18,54],[-8,37],[-1,1],[-37,99],[-13,35],[-22,61],[-7,43],[7,32],[10,26],[15,30],[36,37],[58,47],[50,44],[11,9],[87,82],[53,49],[30,28],[161,138],[14,12],[33,29],[-28,51]],[[81090,47515,0],[-4,7]],[[81086,47522,0],[34,33]],[[81120,47555,0],[206,192]],[[81326,47747,0],[8,8]],[[81334,47755,0],[5,4],[64,71],[89,98],[52,56],[225,233]],[[81769,48217,0],[81,85],[24,17]],[[81874,48319,0],[44,-29],[107,-70],[97,-89],[34,-35],[82,-63],[94,-44],[151,-118],[1,-13],[88,-79],[98,-113],[24,-27],[-217,-165],[131,-150],[20,-24],[58,-46],[45,-58],[38,-42],[9,-26],[2,-30],[-7,-27],[-17,-31],[-22,-24],[-26,-21],[-26,-21],[-65,-53],[-70,-97],[-53,-122],[15,-26],[24,-34],[-79,-88],[-48,-86],[-4,-6]],[[80755,51224,0],[30,5],[21,4],[10,2],[87,-36],[12,-11],[115,-44],[79,-30],[6,-14],[7,-15],[60,-25],[51,-22],[0,-6],[105,-63],[16,-9],[63,-38],[34,-20],[16,-10],[3,-1],[80,-31],[2,-1],[37,-13],[26,-3],[68,-7],[61,-7],[98,9],[20,0],[17,-3],[24,-12],[21,-4],[2,0],[45,-2],[89,7],[10,1],[197,16],[43,-9],[2,0],[16,0],[40,-1],[102,-2],[30,-1],[16,0],[27,-1],[9,0],[41,1]],[[82593,50828,0],[49,0],[86,-292],[38,-132],[41,-141],[-128,32]],[[82679,50295,0],[-6,1],[-57,-122]],[[82616,50174,0],[-36,-75],[-43,-99],[-95,-71],[-103,-117],[-14,-98],[230,-317],[49,-62],[62,-69],[160,-45],[33,7],[4,-34],[19,-11],[16,20],[97,-24],[-244,-236]],[[82751,48943,0],[120,-114],[-247,-274],[-134,-34],[-160,-53],[-298,-100],[-105,-22]],[[81927,48346,0],[-52,-27],[-1,0]],[[81874,48319,0],[-105,-102]],[[81769,48217,0],[-226,-233],[-67,-74],[-138,-151],[-4,-4]],[[81334,47755,0],[-244,-239],[-1,-1],[0,1],[-51,93],[-55,101]],[[80983,47710,0],[-51,104],[-13,25]],[[80919,47839,0],[-19,37],[-52,99]],[[80848,47975,0],[-7,35],[-35,88]],[[80806,48098,0],[-25,68]],[[80781,48166,0],[-24,83],[-64,139]],[[80693,48388,0],[-18,0],[-9,1]],[[80666,48389,0],[-35,1],[-24,1]],[[80607,48391,0],[-17,0],[-31,1],[-179,3],[-21,3],[-102,12],[-6,1]],[[80251,48411,0],[-45,11],[-70,18],[-65,16]],[[80071,48456,0],[-91,26],[-4,1]],[[79976,48483,0],[-44,7],[-20,3]],[[79912,48493,0],[-64,24],[-24,10]],[[79824,48527,0],[-16,7],[-57,25]],[[79751,48559,0],[-50,22]],[[79701,48581,0],[-21,10],[-118,56]],[[79562,48647,0],[-42,21],[-146,72]],[[79374,48740,0],[-2,1],[131,264],[159,326],[15,29],[37,75],[45,88],[190,381],[12,23],[95,167],[120,212],[35,66]],[[80211,50372,0],[156,301]],[[80367,50673,0],[115,218],[1,4],[131,280],[24,51],[27,12],[5,-10],[7,-7],[1,-1],[19,-4],[17,0],[41,8]],[[73988,24456,0],[3,-14]],[[73991,24442,0],[-28,-43],[-41,-64],[-49,-72]],[[73873,24263,0],[-88,-138]],[[73785,24125,0],[-59,-92],[-4,-6],[-33,-52]],[[73689,23975,0],[22,-9],[48,-16],[6,-3]],[[73765,23947,0],[-13,-24]],[[73752,23923,0],[-35,-56],[-66,-108]],[[73651,23759,0],[-78,-126],[-69,-112],[25,-13],[-74,-116]],[[73455,23392,0],[-71,-115]],[[73384,23277,0],[-29,-44]],[[73355,23233,0],[-63,-99]],[[73292,23134,0],[-21,-42],[-40,-107],[-47,-132],[-32,-88],[-34,-95],[-37,-101],[-37,-103],[-38,-104],[-38,-104],[-45,-120],[-62,-171]],[[72861,21967,0],[-119,48],[-30,-87],[0,-1],[0,-1]],[[72712,21926,0],[-1,-1]],[[72711,21925,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0]],[[72694,21906,0],[-1,-1]],[[72693,21905,0],[-1,-1]],[[72692,21904,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1]],[[72683,21899,0],[-1,-1]],[[72682,21898,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[72670,21896,0],[-1,-1]],[[72669,21895,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-3,1]],[[72644,21897,0],[-260,101]],[[72384,21998,0],[-2,2]],[[72382,22000,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1]],[[72380,22006,0],[-1,1]],[[72379,22007,0],[0,1],[0,1],[0,1]],[[72379,22010,0],[0,2]],[[72379,22012,0],[0,1]],[[72379,22013,0],[1,1]],[[72380,22014,0],[0,1],[0,1],[54,119],[-52,54],[-61,65],[-59,20],[-16,6]],[[72246,22280,0],[-4,-8]],[[72242,22272,0],[-415,152],[-18,8]],[[71809,22432,0],[-400,184]],[[71409,22616,0],[93,272],[79,227],[9,26]],[[71590,23141,0],[76,220]],[[71666,23361,0],[59,177],[16,51],[49,159],[94,257],[61,139],[52,151],[44,130],[43,126],[46,136],[38,113],[17,46],[33,62],[50,98],[32,62],[15,26]],[[72315,25094,0],[32,13],[32,-9],[73,-23],[135,-40],[137,-40],[132,-39],[132,-40],[132,-38],[128,-38],[128,-37],[81,-24]],[[73457,24779,0],[14,-28],[13,-24],[62,-52],[37,10],[9,3],[37,-22],[65,-37],[41,-24],[205,-120],[48,-29]],[[71666,23361,0],[-2,-6],[-74,-214]],[[71409,22616,0],[-5,-16],[-21,-58]],[[71383,22542,0],[-263,50]],[[71120,22592,0],[-349,67],[-110,21]],[[70661,22680,0],[-278,52],[-243,48]],[[70140,22780,0],[-67,12],[-126,25]],[[69947,22817,0],[39,177],[-1,44],[48,257],[18,61],[3,12],[10,61]],[[70064,23429,0],[65,-11],[13,75],[0,1],[1,0],[0,1],[1,2],[0,1],[2,2],[0,1],[1,0]],[[70147,23501,0],[1,2]],[[70148,23503,0],[1,1]],[[70149,23504,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0]],[[70168,23509,0],[31,-3]],[[70199,23506,0],[9,50]],[[70208,23556,0],[9,52]],[[70217,23608,0],[-31,6]],[[70186,23614,0],[-1,0],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[13,71],[28,170],[6,37],[6,32],[2,10],[6,42],[12,89],[6,36],[11,87],[38,282],[5,42],[1,11],[12,53],[43,204],[14,65],[20,94],[2,13],[26,134],[30,142],[13,73],[12,63],[1,5],[1,4],[1,6],[2,11],[-11,79]],[[70468,25494,0],[41,-1],[42,-1],[253,-6],[260,-5],[45,-3],[15,0],[28,-6],[42,-10],[74,-19],[80,-20],[45,-11],[72,-18],[174,-44],[163,-41]],[[71802,25309,0],[49,-12],[62,-16]],[[71913,25281,0],[119,-29],[103,-27],[89,-22],[104,-26]],[[72328,25177,0],[-4,-23],[-9,-60]],[[73726,28439,0],[64,-49],[57,-43]],[[73847,28347,0],[-179,-23],[-121,-22]],[[73547,28302,0],[-53,-9],[-9,-1]],[[73485,28292,0],[-46,-17]],[[73439,28275,0],[-29,-11]],[[73410,28264,0],[-13,-4]],[[73397,28260,0],[-19,3]],[[73378,28263,0],[-24,-15]],[[73354,28248,0],[-6,-8]],[[73348,28240,0],[-86,-35],[-176,-71],[-9,-4],[-8,-5],[-118,-72],[-133,-96],[-212,-156]],[[72606,27801,0],[-175,-129],[-34,-24]],[[72397,27648,0],[-194,-147]],[[72203,27501,0],[-55,-41],[-65,-55],[-71,-65],[-25,-20],[-107,-85],[-86,-70],[-26,21],[-100,-76],[-91,-68],[-122,-92],[-101,-76],[-29,-22],[-20,-15],[-20,-15],[-8,-6]],[[71277,26816,0],[-4,-2]],[[71273,26814,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0]],[[71267,26813,0],[-1,0],[-1,0]],[[71265,26813,0],[-1,-1]],[[71264,26812,0],[-1,0],[-1,0],[-1,0]],[[71261,26812,0],[-2,-1]],[[71259,26811,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[71252,26811,0],[-1,0],[-1,0],[-2,0]],[[71248,26811,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[71241,26811,0],[-1,1]],[[71240,26812,0],[-1,0],[-1,0],[-1,0]],[[71237,26812,0],[-2,1]],[[71235,26813,0],[-1,0],[-1,0]],[[71233,26813,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0]],[[71223,26816,0],[-1,1],[-1,0]],[[71221,26817,0],[-1,0]],[[71220,26817,0],[-1,1],[-1,0]],[[71218,26818,0],[-1,0]],[[71217,26818,0],[-1,1],[-1,1],[-1,1]],[[71214,26821,0],[-83,50],[-107,64],[-10,7],[-96,57]],[[70918,26999,0],[40,39],[92,92]],[[71050,27130,0],[97,89],[33,35],[72,70],[148,142],[50,47],[103,99],[118,113],[25,26],[76,74],[78,76],[-2,2],[77,75],[28,26],[45,42],[69,68],[120,116],[26,26],[19,-16],[203,210],[-5,34],[-1,12]],[[72429,28496,0],[3,15],[26,-4],[28,4],[37,35],[20,19],[71,70],[22,19],[35,29],[19,18],[56,49],[77,72],[96,86],[96,87],[4,29]],[[73019,29024,0],[73,-68]],[[73092,28956,0],[3,-33],[29,-21]],[[73124,28902,0],[78,-60]],[[73202,28842,0],[59,-46],[34,-25]],[[73295,28771,0],[81,-62]],[[73376,28709,0],[25,-19],[103,-78]],[[73504,28612,0],[73,-56],[69,-54],[80,-63]],[[70918,26999,0],[-12,-10],[-41,-44],[-51,-64],[-35,-49],[-17,-23],[-61,-80],[-77,-101],[-84,-109],[-90,-101]],[[70450,26418,0],[-32,-39]],[[70418,26379,0],[8,19],[-8,-19]],[[70418,26379,0],[-6,-7]],[[70412,26372,0],[-48,-61]],[[70364,26311,0],[-55,-65]],[[70309,26246,0],[-15,-16]],[[70294,26230,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1]],[[70289,26223,0],[-1,-1]],[[70288,26222,0],[-1,0],[0,-2],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0]],[[70277,26211,0],[-1,-1]],[[70276,26210,0],[0,-1],[-1,-1]],[[70275,26208,0],[-1,-1]],[[70274,26207,0],[-1,-1]],[[70273,26206,0],[-1,-1]],[[70272,26205,0],[-1,-1]],[[70271,26204,0],[-2,-1]],[[70269,26203,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0]],[[70265,26199,0],[-1,-2]],[[70264,26197,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1]],[[70260,26193,0],[-1,-1]],[[70259,26192,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1]],[[70252,26186,0],[-1,-1]],[[70251,26185,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0]],[[70244,26180,0],[-1,-1]],[[70243,26179,0],[0,-1],[-1,0],[-1,-1]],[[70241,26177,0],[-1,-1]],[[70240,26176,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0]],[[70235,26173,0],[-1,-1]],[[70234,26172,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0]],[[70230,26169,0],[-1,-1]],[[70229,26168,0],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0]],[[70211,26155,0],[-1,-1]],[[70210,26154,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1]],[[70189,26142,0],[-1,-1]],[[70188,26141,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0]],[[70119,26112,0],[-1,-1]],[[70118,26111,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0]],[[70103,26107,0],[-1,-2]],[[70102,26105,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[70058,26097,0],[-1,-1]],[[70057,26096,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,0]],[[70047,26095,0],[-1,-1]],[[70046,26094,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[69946,26094,0],[-1,1]],[[69945,26095,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[69864,26104,0],[-1,1]],[[69863,26105,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[69858,26105,0],[-1,2]],[[69857,26107,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0]],[[69837,26109,0],[-1,1]],[[69836,26110,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0]],[[69820,26113,0],[-1,1]],[[69819,26114,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-206,44]],[[69599,26161,0],[-205,44]],[[69394,26205,0],[-22,4],[-113,22]],[[69259,26231,0],[-92,19]],[[69167,26250,0],[-75,11],[-82,10],[-7,0],[-162,9]],[[68841,26280,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,2],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[0,1],[1,0],[0,1],[1,2],[1,0],[0,1],[1,1],[0,1],[1,0],[1,2],[1,2],[1,1],[0,1],[0,1],[1,1],[1,2],[6,29]],[[68901,26352,0],[31,139]],[[68932,26491,0],[26,123]],[[68958,26614,0],[23,105]],[[68981,26719,0],[25,127],[3,15],[26,117],[1,10]],[[69036,26988,0],[-19,3]],[[69017,26991,0],[15,192],[1,16],[23,0]],[[69056,27199,0],[-1,190]],[[69055,27389,0],[0,3],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,2],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-142,32],[-104,75],[-62,45],[-75,54],[-102,72],[-66,3]],[[68436,27704,0],[99,55],[164,91],[37,20],[60,30],[85,43],[104,51],[53,26],[159,78],[4,2]],[[69201,28100,0],[68,33],[82,40]],[[69351,28173,0],[24,11],[21,10],[37,19],[116,57],[-38,53],[-12,16]],[[69499,28339,0],[39,198],[29,143],[30,147],[29,19],[77,-15],[105,-19],[104,-16],[130,-17],[175,-22],[95,-14]],[[70312,28743,0],[-7,-59],[17,-59],[84,-10],[7,-16],[6,-12],[-29,-74],[-8,-30],[6,-28],[6,-14],[201,-190],[15,-16],[-22,-59],[-26,-124],[-5,-18],[-39,-167],[24,-50],[105,-119],[-8,-27],[-1,-5],[-25,-91],[-31,-109],[-30,-105],[138,-67],[11,-4],[39,-19],[14,-7],[97,-45],[97,-44],[102,-45]],[[69055,27389,0],[0,-37],[1,-153]],[[69017,26991,0],[8,-1],[11,-2]],[[68981,26719,0],[-22,-103],[-1,-2]],[[68958,26614,0],[-18,-82],[-8,-41]],[[68932,26491,0],[-12,-55],[-19,-84]],[[68841,26280,0],[-11,0],[-64,-2],[-41,-1],[-30,-2],[-62,-3],[-133,-12],[-76,-8],[-54,-6],[-28,-3],[-103,-10],[-19,-1],[-2,-1],[-129,-9]],[[68089,26222,0],[-61,-8],[-71,-8],[-131,-13],[-42,-4],[-77,-9],[-12,0],[-40,-4],[-11,-2],[-45,-5],[-108,-11],[-53,-5],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-7,-2],[-55,-11],[-37,-8],[-75,-20],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-31,-11],[-13,-5]],[[66892,26017,0],[-2,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,2],[-1,0],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,0],[0,2],[-1,2],[0,2],[-1,0],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,2],[0,2],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[1,2],[0,1],[1,1],[0,2],[22,41],[-53,39]],[[66787,26185,0],[-8,2],[-30,6]],[[66749,26193,0],[-34,19],[-46,14]],[[66669,26226,0],[-32,13]],[[66637,26239,0],[-41,12],[-36,14],[-10,4],[-48,16],[-38,40],[-6,27],[-27,20],[-9,2],[-10,-4],[-13,5],[-12,6],[-44,21],[-45,22],[-56,-69],[-13,13],[-9,183]],[[66220,26551,0],[1,72],[-1,1],[-2,2],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,3],[0,1],[-1,0],[0,1],[0,3],[-1,2],[0,1],[-1,4],[0,1],[0,1],[-1,4],[0,5],[0,1],[0,2],[0,1],[-1,3],[0,1],[0,2],[0,3],[0,10],[0,1],[0,3],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[0,2],[0,5],[0,1],[1,3],[1,3],[0,1],[0,1],[0,1],[1,4],[0,1],[0,1],[2,12],[12,15],[78,96],[79,97],[66,80],[15,17],[4,7],[60,71],[15,19],[3,3],[19,21],[21,20],[19,18],[20,15],[13,8],[26,16],[13,7],[34,18],[71,34],[56,28],[30,15],[74,36],[25,10],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,1],[2,0],[1,1],[2,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,1],[2,0],[1,1],[2,0],[1,1],[1,0],[1,0],[2,0],[3,0],[1,1],[2,0],[1,0],[3,0],[1,1],[1,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[5,0],[1,1],[4,0],[1,1],[6,0],[1,0],[5,0],[1,1],[8,0],[1,0],[0,1],[11,0],[1,0],[44,0],[1,0],[11,0],[1,0],[0,-1],[7,0],[1,-1],[6,0],[1,0],[1,0],[3,0],[39,-7],[62,-18],[1,0],[123,-3],[63,3],[192,41],[46,9],[11,2],[9,3],[78,14],[182,35],[92,24],[11,3],[42,11],[67,26],[45,17]],[[68214,27596,0],[30,13],[38,16]],[[68282,27625,0],[58,27],[1,1]],[[68341,27653,0],[30,16],[17,9]],[[68388,27678,0],[48,26]],[[66606,28366,0],[196,-228]],[[66802,28138,0],[164,125]],[[66966,28263,0],[140,100]],[[67106,28363,0],[11,7],[14,11]],[[67131,28381,0],[24,26]],[[67155,28407,0],[18,23],[18,32],[21,-2],[56,-7]],[[67268,28453,0],[173,-29]],[[67441,28424,0],[143,-23],[10,-4],[55,-19],[8,-3],[65,-33],[59,-11],[11,-24]],[[67792,28307,0],[192,-375]],[[67984,27932,0],[28,-57]],[[68012,27875,0],[112,-223]],[[68124,27652,0],[33,-11],[34,12]],[[68191,27653,0],[18,-46]],[[68209,27607,0],[5,-11]],[[66220,26551,0],[0,-5]],[[66220,26546,0],[-1,-1]],[[66219,26545,0],[0,-3]],[[66219,26542,0],[-1,-2]],[[66218,26540,0],[0,-1],[0,-1]],[[66218,26538,0],[0,-4]],[[66218,26534,0],[0,-1]],[[66218,26533,0],[-1,-3]],[[66217,26530,0],[0,-1],[0,-1]],[[66217,26528,0],[0,-3]],[[66217,26525,0],[0,-1],[-1,-1]],[[66216,26523,0],[0,-3]],[[66216,26520,0],[0,-2]],[[66216,26518,0],[-1,-3]],[[66215,26515,0],[0,-2]],[[66215,26513,0],[-1,-5]],[[66214,26508,0],[-1,-4]],[[66213,26504,0],[0,-1]],[[66213,26503,0],[-1,-5]],[[66212,26498,0],[0,-5]],[[66212,26493,0],[-1,0],[0,-2]],[[66211,26491,0],[-1,-5]],[[66210,26486,0],[-1,-4]],[[66209,26482,0],[0,-2],[0,-1]],[[66209,26479,0],[-1,-4]],[[66208,26475,0],[-1,-1],[0,-1]],[[66207,26473,0],[-2,-5]],[[66205,26468,0],[0,-1],[0,-1],[0,-1]],[[66205,26465,0],[-1,-3]],[[66204,26462,0],[-1,-3]],[[66203,26459,0],[-1,-3]],[[66202,26456,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[66201,26452,0],[0,-3]],[[66201,26449,0],[-1,-2]],[[66200,26447,0],[-2,-7]],[[66198,26440,0],[-1,-1],[0,-1],[0,-1]],[[66197,26437,0],[-1,-4]],[[66196,26433,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1]],[[66189,26413,0],[-1,-2]],[[66188,26411,0],[-1,-2],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[66180,26391,0],[-1,-3]],[[66179,26388,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-2],[-1,0]],[[66174,26378,0],[-1,-3]],[[66173,26375,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[66160,26346,0],[-1,-1]],[[66159,26345,0],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[66152,26331,0],[-1,-1]],[[66151,26330,0],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1]],[[66149,26325,0],[-1,-2]],[[66148,26323,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1]],[[66143,26314,0],[-1,-2]],[[66142,26312,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[66139,26307,0],[-1,-1]],[[66138,26306,0],[0,-2],[-1,0],[0,-2]],[[66137,26302,0],[-2,-1]],[[66135,26301,0],[0,-1],[-1,-1],[0,-1]],[[66134,26298,0],[-1,-2]],[[66133,26296,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1]],[[66129,26291,0],[-1,-1]],[[66128,26290,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1]],[[66125,26284,0],[-1,-2]],[[66124,26282,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2]],[[66121,26276,0],[-1,-1]],[[66120,26275,0],[-1,-1]],[[66119,26274,0],[-2,-1]],[[66117,26273,0],[0,-2],[-1,0],[0,-2]],[[66116,26269,0],[-1,-1]],[[66115,26268,0],[-1,-2]],[[66114,26266,0],[-1,-1]],[[66113,26265,0],[-1,-1],[-1,-1],[0,-2]],[[66111,26261,0],[-2,-1]],[[66109,26260,0],[0,-1],[-1,-1],[-1,-2]],[[66107,26256,0],[-2,-1]],[[66105,26255,0],[0,-1],[-1,-1],[-1,-2]],[[66103,26251,0],[-1,-1]],[[66102,26250,0],[-1,-1]],[[66101,26249,0],[-1,-1]],[[66100,26248,0],[0,-2],[-1,-1],[-163,-215]],[[65936,26030,0],[-5,-4]],[[65931,26026,0],[-6,-4]],[[65925,26022,0],[-1,0]],[[65924,26022,0],[-3,-2]],[[65921,26020,0],[-1,0]],[[65920,26020,0],[-2,-1]],[[65918,26019,0],[-1,0]],[[65917,26019,0],[-2,-2]],[[65915,26017,0],[-1,0]],[[65914,26017,0],[-2,-1]],[[65912,26016,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1]],[[65901,26013,0],[-2,0]],[[65899,26013,0],[-1,-1]],[[65898,26012,0],[-2,0]],[[65896,26012,0],[-1,0]],[[65895,26012,0],[-4,0]],[[65891,26012,0],[-1,-1]],[[65890,26011,0],[-4,0]],[[65886,26011,0],[-1,-1]],[[65885,26010,0],[-3,0]],[[65882,26010,0],[-73,11],[-66,13],[1,-7],[2,-19],[-44,-35],[-32,-28],[-67,-61],[-25,-22]],[[65578,25862,0],[-21,-16]],[[65557,25846,0],[-1,-1],[-1,0]],[[65555,25845,0],[-12,-9]],[[65543,25836,0],[-1,0]],[[65542,25836,0],[-8,-5]],[[65534,25831,0],[-1,0]],[[65533,25831,0],[-6,-5]],[[65527,25826,0],[-1,0]],[[65526,25826,0],[-5,-3]],[[65521,25823,0],[-6,-3]],[[65515,25820,0],[-4,-3]],[[65511,25817,0],[-1,0]],[[65510,25817,0],[-4,-2]],[[65506,25815,0],[-1,0],[0,-1]],[[65505,25814,0],[-4,-2]],[[65501,25812,0],[-128,-51],[-5,30],[-108,-2],[-27,3],[-91,14],[-29,6]],[[65113,25812,0],[-3,2]],[[65110,25814,0],[-1,1],[-1,0]],[[65108,25815,0],[-2,1]],[[65106,25816,0],[-1,0]],[[65105,25816,0],[-5,4]],[[65100,25820,0],[-3,2]],[[65097,25822,0],[-3,3]],[[65094,25825,0],[-1,1]],[[65093,25826,0],[-4,3]],[[65089,25829,0],[0,1]],[[65089,25830,0],[-2,2]],[[65087,25832,0],[-1,1]],[[65086,25833,0],[-1,2]],[[65085,25835,0],[0,1]],[[65085,25836,0],[-2,1]],[[65083,25837,0],[0,1],[-1,1],[0,2],[-1,0],[0,1]],[[65081,25842,0],[-1,2]],[[65080,25844,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1]],[[65078,25850,0],[-1,2]],[[65077,25852,0],[0,1],[0,1],[-1,1]],[[65076,25855,0],[0,4]],[[65076,25859,0],[-1,1]],[[65075,25860,0],[0,4]],[[65075,25864,0],[0,5]],[[65075,25869,0],[0,3]],[[65075,25872,0],[1,5]],[[65076,25877,0],[3,14]],[[65079,25891,0],[-3,1]],[[65076,25892,0],[-1,0]],[[65075,25892,0],[-2,2]],[[65073,25894,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[65055,25899,0],[-2,0]],[[65053,25899,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1]],[[65047,25902,0],[-2,0]],[[65045,25902,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[65040,25903,0],[-3,0]],[[65037,25903,0],[-1,1]],[[65036,25904,0],[-2,0]],[[65034,25904,0],[-1,1],[-1,0],[-1,0]],[[65031,25905,0],[-2,0]],[[65029,25905,0],[-1,1]],[[65028,25906,0],[-2,0]],[[65026,25906,0],[-2,1]],[[65024,25907,0],[-2,0]],[[65022,25907,0],[-1,0]],[[65021,25907,0],[-2,0]],[[65019,25907,0],[-1,1]],[[65018,25908,0],[-3,0]],[[65015,25908,0],[-1,1]],[[65014,25909,0],[-2,0]],[[65012,25909,0],[-1,0]],[[65011,25909,0],[-4,0]],[[65007,25909,0],[-1,1]],[[65006,25910,0],[-3,0]],[[65003,25910,0],[-1,1]],[[65002,25911,0],[-5,0]],[[64997,25911,0],[-1,0]],[[64996,25911,0],[-4,0]],[[64992,25911,0],[-1,1]],[[64991,25912,0],[-4,0]],[[64987,25912,0],[-2,1]],[[64985,25913,0],[-6,0]],[[64979,25913,0],[-1,0]],[[64978,25913,0],[-8,0]],[[64970,25913,0],[-1,1]],[[64969,25914,0],[-38,0]],[[64931,25914,0],[-3,0]],[[64928,25914,0],[-2,-1]],[[64926,25913,0],[-7,0]],[[64919,25913,0],[-1,0]],[[64918,25913,0],[-6,0]],[[64912,25913,0],[-1,-1]],[[64911,25912,0],[-6,0]],[[64905,25912,0],[-1,-1]],[[64904,25911,0],[-5,0]],[[64899,25911,0],[-1,0]],[[64898,25911,0],[-5,0]],[[64893,25911,0],[-1,-1]],[[64892,25910,0],[-5,0]],[[64887,25910,0],[-1,-1]],[[64886,25909,0],[-4,0]],[[64882,25909,0],[-1,0]],[[64881,25909,0],[-4,0]],[[64877,25909,0],[-2,-1]],[[64875,25908,0],[-3,0]],[[64872,25908,0],[-1,-1]],[[64871,25907,0],[-4,0]],[[64867,25907,0],[-1,0]],[[64866,25907,0],[-4,0]],[[64862,25907,0],[-1,-1]],[[64861,25906,0],[-3,0]],[[64858,25906,0],[-1,-1]],[[64857,25905,0],[-3,0]],[[64854,25905,0],[-1,0]],[[64853,25905,0],[-4,0]],[[64849,25905,0],[-1,-1]],[[64848,25904,0],[-3,0]],[[64845,25904,0],[-1,-1]],[[64844,25903,0],[-2,0]],[[64842,25903,0],[-1,0]],[[64841,25903,0],[-4,0]],[[64837,25903,0],[-1,-1]],[[64836,25902,0],[-3,0]],[[64833,25902,0],[-1,0]],[[64832,25902,0],[-2,0]],[[64830,25902,0],[-1,-1]],[[64829,25901,0],[-2,0]],[[64827,25901,0],[-2,-1]],[[64825,25900,0],[-3,0]],[[64822,25900,0],[-30,45],[-71,9]],[[64721,25954,0],[37,82],[27,66]],[[64785,26102,0],[32,94]],[[64817,26196,0],[19,62]],[[64836,26258,0],[12,64]],[[64848,26322,0],[7,57],[0,76],[-7,45]],[[64848,26500,0],[-10,39]],[[64838,26539,0],[-10,27]],[[64828,26566,0],[-23,52]],[[64805,26618,0],[-80,145]],[[64725,26763,0],[-11,18],[-30,49],[-1,2]],[[64683,26832,0],[-1,1]],[[64682,26833,0],[0,1]],[[64682,26834,0],[-1,2]],[[64681,26836,0],[-1,1]],[[64680,26837,0],[-1,2]],[[64679,26839,0],[-1,1]],[[64678,26840,0],[-1,1]],[[64677,26841,0],[-1,2]],[[64676,26843,0],[-1,1]],[[64675,26844,0],[-1,1]],[[64674,26845,0],[-1,2]],[[64673,26847,0],[-1,1]],[[64672,26848,0],[0,1]],[[64672,26849,0],[-2,2]],[[64670,26851,0],[0,1],[-1,1],[-1,2]],[[64668,26855,0],[-1,1]],[[64667,26856,0],[-1,1]],[[64666,26857,0],[-1,1],[0,2]],[[64665,26860,0],[-2,1],[-1,1],[-1,2]],[[64661,26864,0],[0,1]],[[64661,26865,0],[-2,1]],[[64659,26866,0],[0,1]],[[64659,26867,0],[-1,2]],[[64658,26869,0],[-1,1]],[[64657,26870,0],[-2,2]],[[64655,26872,0],[0,1],[-2,2]],[[64653,26875,0],[0,1]],[[64653,26876,0],[-2,1],[-1,1],[-1,2]],[[64649,26880,0],[0,1]],[[64649,26881,0],[-2,2]],[[64647,26883,0],[-1,2]],[[64646,26885,0],[-1,1]],[[64645,26886,0],[-1,1]],[[64644,26887,0],[-2,2]],[[64642,26889,0],[0,1]],[[64642,26890,0],[-2,1],[0,2]],[[64640,26893,0],[-3,2]],[[64637,26895,0],[0,1]],[[64637,26896,0],[-1,1]],[[64636,26897,0],[-1,1]],[[64635,26898,0],[-2,3]],[[64633,26901,0],[-1,1]],[[64632,26902,0],[-2,2]],[[64630,26904,0],[0,1]],[[64630,26905,0],[-2,1]],[[64628,26906,0],[0,2]],[[64628,26908,0],[-45,44],[-80,71]],[[64503,27023,0],[-101,91]],[[64402,27114,0],[63,24]],[[64465,27138,0],[354,161]],[[64819,27299,0],[22,0],[14,16],[107,112]],[[64962,27427,0],[18,5]],[[64980,27432,0],[55,19],[31,26]],[[65066,27477,0],[90,27]],[[65156,27504,0],[18,13]],[[65174,27517,0],[106,10],[119,30]],[[65399,27557,0],[28,15],[105,34],[-261,333],[-19,23],[-18,15],[-17,8],[-21,12],[-21,7],[-28,4],[79,-7],[47,-4],[45,-1],[49,0],[47,3],[82,9],[24,6],[162,53],[-162,-11],[-16,12],[53,16],[53,18],[49,27]],[[65659,28129,0],[48,28]],[[65707,28157,0],[17,13],[19,12],[42,38]],[[65785,28220,0],[24,26]],[[65809,28246,0],[12,12],[30,40],[19,29]],[[65870,28327,0],[119,171]],[[65989,28498,0],[61,86],[54,79]],[[66104,28663,0],[13,18]],[[66117,28681,0],[59,-37]],[[66176,28644,0],[103,-66]],[[66279,28578,0],[286,-182]],[[66565,28396,0],[41,-30]],[[69351,28173,0],[-150,-73]],[[68388,27678,0],[-47,-25]],[[68341,27653,0],[-59,-28]],[[68282,27625,0],[-68,-29]],[[68209,27607,0],[-13,35],[-5,11]],[[68124,27652,0],[-55,111],[-48,92],[-9,20]],[[67984,27932,0],[-11,20],[-32,63],[-49,96],[-49,97],[-51,99]],[[67441,28424,0],[-160,28],[-13,1]],[[67155,28407,0],[-11,-12],[-13,-14]],[[67131,28381,0],[-25,-18]],[[67106,28363,0],[-21,-14],[-83,-60],[-36,-26]],[[66966,28263,0],[-84,-62],[-80,-63]],[[66802,28138,0],[-94,110],[-90,105],[-12,13]],[[66565,28396,0],[-9,5],[-125,80],[-111,71],[-41,26]],[[66279,28578,0],[-8,5],[-95,61]],[[66117,28681,0],[2,3]],[[66119,28684,0],[23,46],[27,51],[5,13],[12,31],[14,54],[4,51],[0,11],[1,43],[-1,26],[0,18],[1,24],[54,19],[12,7],[49,23],[76,40],[17,10],[95,64]],[[66508,29215,0],[5,5],[2,-3],[41,31],[49,38],[93,72],[-5,4],[12,10],[16,12],[13,12],[16,15],[39,39],[7,9],[32,33],[53,70],[13,17],[37,66],[25,48],[67,128],[8,14],[50,99],[1,39]],[[67082,29973,0],[101,16],[20,39],[51,96],[71,125]],[[67325,30249,0],[41,62]],[[67366,30311,0],[13,15]],[[67379,30326,0],[49,55]],[[67428,30381,0],[11,10]],[[67439,30391,0],[41,40]],[[67480,30431,0],[39,35]],[[67519,30466,0],[53,43]],[[67572,30509,0],[51,36]],[[67623,30545,0],[59,39],[55,31]],[[67737,30615,0],[98,47]],[[67835,30662,0],[16,6]],[[67851,30668,0],[52,20]],[[67903,30688,0],[19,8]],[[67922,30696,0],[-8,-26]],[[67914,30670,0],[48,-111]],[[67962,30559,0],[36,-86],[10,-22],[4,-16]],[[68012,30435,0],[18,-54]],[[68030,30381,0],[50,-79],[84,-129],[21,-1]],[[68185,30172,0],[54,-40],[-2,-39],[105,-119],[69,-80],[16,-18],[21,-25],[48,-60],[24,-15],[15,-6],[15,-2],[67,-87],[3,-21],[6,-13],[7,-13]],[[68633,29634,0],[25,-27]],[[68658,29607,0],[25,-30],[29,-38],[10,-12],[17,-24]],[[68739,29503,0],[29,-41],[16,-22]],[[68784,29440,0],[11,-15],[26,-43],[100,-165],[7,-12],[66,-108],[41,2],[42,-12],[9,-3],[12,-7],[9,-9],[19,-27],[5,-13],[3,-27],[-1,-9],[-7,-29],[-1,-8],[-13,-20],[-7,-10],[83,-142],[81,-134],[75,-129],[50,-84],[56,-97],[38,0],[11,0]],[[70312,28743,0],[7,52],[2,12]],[[70321,28807,0],[91,-11],[417,-48]],[[70829,28748,0],[550,-81]],[[71379,28667,0],[37,-3],[38,-4]],[[71454,28660,0],[125,-21]],[[71579,28639,0],[60,-18]],[[71639,28621,0],[430,-67]],[[72069,28554,0],[62,-7]],[[72131,28547,0],[231,-37]],[[72362,28510,0],[67,-14]],[[70054,30635,0],[2,-48]],[[70056,30587,0],[329,17],[-9,64],[48,5],[50,5],[62,1],[121,-3],[135,-1],[150,-2],[24,0],[151,-16]],[[71117,30657,0],[100,-11],[123,-13]],[[71340,30633,0],[-5,-42],[-1,-18],[-1,-34],[-1,-37],[-4,-47],[2,-41],[-3,-13],[2,-7],[3,-10],[-3,-18],[3,-11],[1,-38],[-1,-29],[-2,-17],[-6,-45],[-4,-47],[-3,-20],[-2,-12],[3,-5],[17,-30],[-6,-37],[-28,-111],[-92,25],[-71,16],[-59,8],[-39,-277],[-7,-45],[-22,-182],[-7,-57],[-117,9],[-19,-12],[-147,31]],[[70721,29480,0],[-156,34]],[[70565,29514,0],[-22,-1],[-29,-149],[-27,-141],[-15,-79],[-17,-94],[-40,-244],[-2,-10]],[[70413,28796,0],[-92,11]],[[68784,29440,0],[-45,63]],[[68658,29607,0],[-13,13],[-12,14]],[[68185,30172,0],[24,23],[-4,5],[46,55],[72,14],[4,-8],[47,15],[142,45],[30,9],[143,42],[75,22],[84,25],[242,68],[222,53],[172,41],[111,27],[28,10],[0,53],[99,40],[17,-3]],[[69739,30708,0],[138,-31]],[[69877,30677,0],[4,-29]],[[69881,30648,0],[2,-13],[46,-11],[8,-2],[117,13]],[[72636,30448,0],[11,-18],[2,-9],[7,-26],[14,-95],[-11,-21],[9,-175],[7,-46],[5,-88],[4,-82],[-22,-20],[0,-46],[34,-47],[-65,-118],[15,1]],[[72646,29658,0],[23,4]],[[72669,29662,0],[-4,-15],[-39,-39],[-34,-29],[-44,-39],[-31,-32],[-49,-49],[-25,-24],[41,-28]],[[72484,29407,0],[14,-11]],[[72498,29396,0],[95,-68],[106,-77],[103,-73],[217,-154]],[[72362,28510,0],[-72,12],[-153,24],[-6,1]],[[72069,28554,0],[-247,39],[-175,27],[-8,1]],[[71639,28621,0],[-46,14],[-14,4]],[[71579,28639,0],[-6,1],[-119,20]],[[71379,28667,0],[-23,4],[-527,77]],[[70829,28748,0],[-416,48]],[[70565,29514,0],[119,-25],[37,-9]],[[71340,30633,0],[1,16],[11,-1]],[[71352,30648,0],[621,-86]],[[71973,30562,0],[17,-3],[135,-19],[126,-18],[104,-14],[1,6],[36,-3],[69,-7],[95,-16],[50,-10],[30,-26],[0,-4]],[[75025,30787,0],[29,-221]],[[75054,30566,0],[35,-287],[0,-4],[1,-64],[-2,-194],[-4,-268],[-5,-195],[-1,-64],[-2,-12],[-1,-11]],[[75075,29467,0],[-10,-63],[-10,-59]],[[75055,29345,0],[-2,-12],[-8,-39],[-52,-238],[-18,-77]],[[74975,28979,0],[-6,-22],[-3,-11]],[[74966,28946,0],[-11,-29],[-9,-29],[-21,-62],[-33,-79],[-130,-274],[-22,-9],[-7,-19]],[[74733,28445,0],[-7,-18],[0,-1],[-1,0]],[[74725,28426,0],[-35,-8]],[[74690,28418,0],[-1,0],[-29,12]],[[74660,28430,0],[-7,4],[2,7]],[[74655,28441,0],[15,44],[-21,-12],[-5,-3],[-15,-6],[-27,-10],[-2,-1]],[[74600,28453,0],[-47,-11],[-19,-5]],[[74534,28437,0],[-15,-3],[-50,-9]],[[74469,28425,0],[-67,-9],[-555,-69]],[[73847,28347,0],[-57,44],[-64,48]],[[73504,28612,0],[-54,42],[-9,6],[-30,23],[-10,8],[-5,3],[-20,15]],[[73376,28709,0],[0,1],[-14,10],[-67,51]],[[73295,28771,0],[-34,26],[-59,45]],[[73124,28902,0],[-29,22],[0,1],[-3,32],[1,0],[110,103]],[[73203,29060,0],[44,40],[52,47]],[[73299,29147,0],[57,57],[44,45]],[[73400,29249,0],[3,-3],[33,34]],[[73436,29280,0],[-1,1],[-2,3],[20,20],[10,14],[7,10],[51,48],[30,28]],[[73551,29404,0],[5,-4],[98,95],[12,11],[20,20]],[[73686,29526,0],[131,125],[9,8]],[[73826,29659,0],[8,8],[64,61]],[[73898,29728,0],[31,40],[1,13]],[[73930,29781,0],[0,1],[31,36],[62,69]],[[74023,29887,0],[97,110],[98,111]],[[74218,30108,0],[31,34]],[[74249,30142,0],[100,114],[32,35],[5,5]],[[74386,30296,0],[0,1],[66,76],[11,12],[128,145]],[[74591,30530,0],[6,7],[130,146]],[[74727,30683,0],[16,19],[2,2],[3,4],[6,11],[88,185]],[[74842,30904,0],[11,12],[9,4],[6,1]],[[74868,30921,0],[11,2],[10,1],[7,-4],[12,-4],[16,-15],[84,26],[17,-140]],[[74386,30296,0],[-37,-41],[-100,-113]],[[74218,30108,0],[-98,-112],[-97,-109]],[[74023,29887,0],[-62,-70],[-31,-36]],[[73898,29728,0],[-72,-69]],[[73826,29659,0],[-140,-133]],[[73551,29404,0],[-29,-28],[-52,-49],[-16,-23],[-21,-21],[3,-3]],[[73400,29249,0],[-101,-102]],[[73299,29147,0],[-96,-87]],[[73203,29060,0],[-111,-104]],[[73092,28956,0],[-38,35],[-35,33]],[[72498,29396,0],[-3,3],[-11,8]],[[72669,29662,0],[-2,-1],[-21,-3]],[[72636,30448,0],[42,7],[22,3],[0,33],[12,83],[4,7],[-30,60],[-35,34],[-1,53],[-6,54],[-6,28],[-6,25],[-14,51],[-23,43],[29,32],[27,-9],[61,-16],[34,-3],[27,-3],[57,1],[55,1],[126,34],[17,3],[288,44],[28,-6]],[[73344,31007,0],[8,6],[10,2],[13,-3],[112,-73],[98,-58],[24,-20],[3,3],[57,-35],[13,-7],[69,-42],[47,-39],[43,-34],[5,-3],[38,-29],[178,-135],[74,-57],[0,-4],[23,-19],[3,4],[53,-41],[92,-70],[18,-13],[11,-7],[9,-7],[31,-21],[10,-9]],[[74382,27353,0],[77,-23]],[[74459,27330,0],[21,9]],[[74480,27339,0],[227,-56],[178,-44],[3,5],[180,-51]],[[75068,27193,0],[159,-54]],[[75227,27139,0],[18,-5]],[[75245,27134,0],[-97,-180],[-18,7]],[[75130,26961,0],[-7,-11],[-44,-83],[-36,-65],[-49,-91]],[[74994,26711,0],[-8,-15],[16,-6]],[[75002,26690,0],[-57,-117]],[[74945,26573,0],[-23,9],[-69,-127],[28,-11],[-73,-139]],[[74808,26305,0],[-53,-101],[-33,9],[-57,-141],[-40,-98],[-39,-94],[-69,-164],[-72,-170],[-56,-136],[-13,-30],[-57,-137]],[[74319,25243,0],[27,-11]],[[74346,25232,0],[-67,-169],[-59,-138]],[[74220,24925,0],[-56,-137],[-48,-114]],[[74116,24674,0],[-56,-130],[-26,-8]],[[74034,24536,0],[-19,-5],[-23,-7],[-4,-68]],[[73457,24779,0],[60,71],[22,62]],[[73539,24912,0],[7,24]],[[73546,24936,0],[32,97],[17,65],[45,153],[38,124],[25,84],[18,62],[23,81],[6,22],[22,75],[23,71]],[[73795,25770,0],[14,41],[19,60],[5,13],[41,118],[60,170],[31,84],[48,124],[4,13],[47,123],[16,45],[35,90],[6,17],[43,116],[-1,6],[-6,4]],[[74157,26794,0],[15,-2],[19,53],[28,76],[4,-1],[30,90],[4,10],[74,194],[51,139]],[[71214,26821,0],[3,-3]],[[71218,26818,0],[2,-1]],[[71221,26817,0],[2,-1]],[[71233,26813,0],[2,0]],[[71237,26812,0],[3,0]],[[71241,26811,0],[7,0]],[[71252,26811,0],[7,0]],[[71261,26812,0],[3,0]],[[71265,26813,0],[2,0]],[[71273,26814,0],[2,1],[2,1]],[[71277,26816,0],[-26,-18],[-57,-44],[28,-17],[10,-6],[10,-5],[32,-19],[18,-12],[9,-4],[18,-10],[34,-19],[102,-54],[124,-65],[192,-103],[29,-20],[16,-7],[131,-47],[13,-5],[134,-47],[113,-41],[54,-18],[27,-9],[190,-64],[21,-8],[78,-25],[195,-65],[105,-35],[123,-41],[115,-38],[92,-32],[60,-19]],[[73267,25919,0],[218,-61]],[[73485,25858,0],[273,-77],[37,-11]],[[73546,24936,0],[-1,-5],[-6,-19]],[[72315,25094,0],[13,83]],[[71913,25281,0],[-111,28]],[[70468,25494,0],[18,176]],[[70486,25670,0],[1,20]],[[70487,25690,0],[13,-2]],[[70500,25688,0],[4,28]],[[70504,25716,0],[4,26]],[[70508,25742,0],[17,109],[28,-8]],[[70553,25843,0],[2,10]],[[70555,25853,0],[2,11]],[[70557,25864,0],[7,24]],[[70564,25888,0],[16,68]],[[70580,25956,0],[23,88]],[[70603,26044,0],[9,33]],[[70612,26077,0],[48,43],[-4,18],[-23,50],[-3,7],[-12,22],[-14,29],[-10,20],[-144,152]],[[73485,25858,0],[-6,2],[-212,59]],[[72203,27501,0],[2,-4],[14,-26],[4,-7],[18,-34],[8,-15],[4,-6],[3,-5],[37,-36],[16,-11],[21,-13],[111,-62],[30,-10],[239,-74],[126,-38],[66,-21],[88,-28],[179,-55],[120,-37],[10,-3],[76,-22],[49,-19],[31,-13],[47,-14],[82,-23],[28,-7],[185,-49],[181,-38],[125,-25],[54,-12]],[[74658,28361,0],[2,-32]],[[74660,28329,0],[1,-5],[2,-4]],[[74663,28320,0],[-9,-40],[-17,-85]],[[74637,28195,0],[-17,-79],[-5,-25],[-18,-87]],[[74597,28004,0],[-15,-55],[-8,-29]],[[74574,27920,0],[-2,0],[-21,-78],[2,0]],[[74553,27842,0],[-31,-113],[-4,-15]],[[74518,27714,0],[-31,-101],[-6,0]],[[74481,27613,0],[-11,-29],[-24,-68]],[[74446,27516,0],[-30,-80]],[[74416,27436,0],[-34,-83]],[[72397,27648,0],[26,18],[30,22],[153,113]],[[73348,28240,0],[5,7],[1,1]],[[73378,28263,0],[4,-1],[15,-2]],[[73397,28260,0],[8,3],[5,1]],[[73439,28275,0],[27,10],[19,7]],[[73485,28292,0],[7,1],[55,9]],[[74469,28425,0],[50,8],[15,4]],[[74534,28437,0],[19,4],[47,12]],[[74600,28453,0],[2,0],[27,10],[15,6],[5,3],[21,12],[-15,-43]],[[74655,28441,0],[-2,-8]],[[74653,28433,0],[1,-17],[4,-55]],[[75906,32202,0],[21,9],[25,12]],[[75952,32223,0],[6,1],[4,1]],[[75962,32225,0],[20,-52],[13,-36],[37,-53],[93,-120],[7,-9],[74,-93],[-1,-3],[30,-61],[39,-77],[13,-32],[7,3],[17,-41],[-5,-2],[25,-56],[27,-82],[10,-31],[4,-14],[12,-36],[11,-59],[10,-54],[5,-35],[1,-12],[1,-8],[6,-48],[-6,-55],[-9,-29],[-7,-12],[-43,-69],[-17,-26],[-36,-62],[-29,-52]],[[76271,30909,0],[-22,-58],[-12,-31],[-35,-75],[-33,-71],[-51,-115],[-79,-184]],[[76039,30375,0],[-20,-51],[-23,-62]],[[75996,30262,0],[-21,-71],[-10,-46],[-7,-57],[-6,-40]],[[75952,30048,0],[-5,-80],[-3,-37],[-3,-46],[-9,-123]],[[75932,29762,0],[-11,-143],[-7,-107],[-8,-108]],[[75906,29404,0],[-8,-108],[-3,-35]],[[75895,29261,0],[-25,1],[-67,3]],[[75803,29265,0],[-20,1],[-2,1],[-85,5]],[[75696,29272,0],[-36,2],[-181,10]],[[75479,29284,0],[-3,0],[-114,4]],[[75362,29288,0],[-13,-122]],[[75349,29166,0],[-8,-67]],[[75341,29099,0],[-4,-16],[-23,-74],[-320,46]],[[74994,29055,0],[-1,0],[52,238],[4,21],[6,31]],[[75055,29345,0],[20,122]],[[75075,29467,0],[3,21],[0,1],[6,259],[4,262],[2,200],[-1,50],[0,18],[-35,288]],[[75025,30787,0],[-17,139]],[[75008,30926,0],[2,146],[0,29]],[[75010,31101,0],[4,21],[3,23]],[[75017,31145,0],[6,40],[4,29]],[[75027,31214,0],[9,57]],[[75036,31271,0],[26,63],[83,205]],[[75145,31539,0],[1,13],[7,95]],[[75153,31647,0],[31,112],[15,53]],[[75199,31812,0],[31,136]],[[75230,31948,0],[1,0],[0,1]],[[75231,31949,0],[0,1],[1,0],[0,2],[1,1],[1,0],[0,1],[1,0],[1,2],[0,1],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[2,-1],[3,9]],[[75276,31962,0],[28,82],[16,46]],[[75320,32090,0],[36,18],[175,87],[29,14],[104,53],[51,17]],[[75715,32279,0],[94,38]],[[75809,32317,0],[16,9],[6,2],[33,-1]],[[75864,32327,0],[9,-6],[3,-2],[9,-8]],[[75885,32311,0],[18,-94],[3,-15]],[[76831,29868,0],[21,-11],[64,16],[58,-54]],[[76974,29819,0],[17,-23]],[[76991,29796,0],[3,-13],[-3,-14],[-5,-34],[-2,-24]],[[76984,29711,0],[-5,-20],[-17,-35]],[[76962,29656,0],[-24,9],[-104,-164]],[[76834,29501,0],[-12,-18]],[[76822,29483,0],[-19,-62]],[[76803,29421,0],[9,-12],[5,-18]],[[76817,29391,0],[-69,-146]],[[76748,29245,0],[-150,-223],[-158,-222],[-27,-36],[-8,-7]],[[76405,28757,0],[-17,-10],[-2,-1],[-18,0],[-13,-1],[-70,10],[-5,2],[-57,12],[-4,0],[-80,15],[-2,0],[-97,15]],[[76040,28799,0],[-2,0],[-38,3],[-1,0],[-6,1],[-105,8],[-24,27]],[[75864,28838,0],[5,60]],[[75869,28898,0],[6,78],[8,107],[0,3],[0,6]],[[75883,29092,0],[6,98],[6,69],[0,2]],[[75895,29261,0],[1,16],[1,19],[9,108]],[[75932,29762,0],[9,122],[0,6],[3,42],[3,37],[5,79]],[[75996,30262,0],[22,62],[21,51]],[[76271,30909,0],[-11,-42]],[[76260,30867,0],[-6,-18],[-1,-10]],[[76253,30839,0],[-6,-28],[1,-27]],[[76248,30784,0],[-2,-8],[1,-11]],[[76247,30765,0],[4,-15],[4,-21]],[[76255,30729,0],[6,-18]],[[76261,30711,0],[7,-14],[10,-17]],[[76278,30680,0],[17,-20],[44,-53]],[[76339,30607,0],[28,-32],[66,-35],[11,-5]],[[76444,30535,0],[15,-1],[135,-10],[58,-4],[0,-11]],[[76652,30509,0],[0,-63]],[[76652,30446,0],[1,-109],[1,-26],[4,-17],[12,-17]],[[76670,30277,0],[2,-10],[117,-2],[19,-30]],[[76808,30235,0],[54,-87],[2,-18]],[[76864,30130,0],[16,-114],[23,-2]],[[76903,30014,0],[-42,-66]],[[76861,29948,0],[-20,-4],[-19,-13]],[[76822,29931,0],[-5,-12],[-1,-6]],[[76816,29913,0],[1,-25],[11,-15],[3,-5]],[[76996,30479,0],[95,-12]],[[77091,30467,0],[1,3],[185,-21],[170,-20],[45,-9],[19,-15],[32,-2],[10,-5],[40,-32],[29,-23],[7,8],[22,14],[21,11],[23,11],[18,7],[23,5],[16,3],[22,2],[25,-2],[18,-5]],[[77817,30397,0],[76,-25],[19,-10],[23,-19],[13,-15],[20,-34],[19,-88],[-151,-60],[33,-66]],[[77869,30080,0],[43,-296]],[[77912,29784,0],[5,-82]],[[77917,29702,0],[-15,-100]],[[77902,29602,0],[-15,-54]],[[77887,29548,0],[-4,-6],[-6,-10],[-31,-47],[-53,-107]],[[77793,29378,0],[-79,-136]],[[77714,29242,0],[-53,-129]],[[77661,29113,0],[-27,-99],[-27,-73],[-16,-69],[-5,-26],[-19,-80],[-14,-52],[-4,-21],[-6,-27]],[[77543,28666,0],[-26,-110],[-5,-24]],[[77512,28532,0],[-13,-19],[-7,-35],[6,-1]],[[77498,28477,0],[-22,-85],[-2,-7]],[[77474,28385,0],[-4,-15],[7,-7]],[[77477,28363,0],[15,-13],[-34,-47],[-16,-17],[-203,-1],[-581,-40]],[[76658,28245,0],[24,27],[3,4],[55,34],[-44,0],[-49,1],[-8,9],[-1,16],[-9,120],[-1,17],[-2,125],[1,30],[1,21],[0,17],[-38,12],[-88,26],[-32,24],[-7,0],[-65,15],[-12,2]],[[76386,28745,0],[19,12]],[[76748,29245,0],[31,66],[38,80]],[[76817,29391,0],[-5,17],[-9,13]],[[76803,29421,0],[4,11],[15,51]],[[76834,29501,0],[104,163],[24,-8]],[[76984,29711,0],[2,23],[6,35],[3,13],[-4,14]],[[76974,29819,0],[-58,53],[-64,-16],[-21,12]],[[76831,29868,0],[-3,4],[-11,15],[-1,26]],[[76816,29913,0],[1,5],[5,12],[0,1]],[[76822,29931,0],[2,1],[17,11],[20,5]],[[76861,29948,0],[37,58],[5,8]],[[76903,30014,0],[-22,2],[-17,114]],[[76864,30130,0],[-2,17],[-53,86],[-1,1],[0,1]],[[76808,30235,0],[-19,29],[-116,3],[-2,5],[-1,5]],[[76652,30446,0],[0,23],[0,1],[0,38],[0,1]],[[76652,30509,0],[0,10]],[[76652,30519,0],[131,-15]],[[76783,30504,0],[197,-22]],[[76980,30482,0],[16,-3]],[[78000,29113,0],[-6,-14],[-10,-22]],[[77963,28995,0],[-6,-33],[-3,-24]],[[77948,28888,0],[-1,-7],[-8,-58]],[[77907,28720,0],[-12,-24],[-46,-91]],[[77499,28362,0],[-22,1]],[[77474,28385,0],[24,92]],[[77512,28532,0],[31,134]],[[77661,29113,0],[41,99],[12,30]],[[77714,29242,0],[29,51],[50,85]],[[77887,29548,0],[11,36],[1,8],[3,10]],[[77917,29702,0],[-2,44],[-3,38]],[[77912,29784,0],[-9,60],[-8,58],[-5,36],[-4,26],[-6,36],[-11,80]],[[77817,30397,0],[8,14],[11,18]],[[77836,30429,0],[13,35],[81,-52],[97,-63],[9,-91],[22,-62],[75,29],[103,26]],[[77393,31782,0],[34,38],[95,-43]],[[77522,31777,0],[-46,-60]],[[77476,31717,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0]],[[77457,31721,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[77448,31722,0],[-1,-1],[-1,0],[-2,0],[-1,0]],[[77443,31721,0],[-1,0]],[[77442,31721,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[77438,31721,0],[-1,-1],[-1,0]],[[77436,31720,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1]],[[77426,31716,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,0]],[[77412,31706,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1]],[[77407,31698,0],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-2]],[[77404,31691,0],[0,-1],[-1,0]],[[77403,31690,0],[-18,-41]],[[77385,31649,0],[-10,-43],[-1,-16],[5,-21],[6,-27]],[[77385,31542,0],[7,-27],[24,-41]],[[77416,31474,0],[16,-31],[15,-23]],[[77447,31420,0],[15,-20]],[[77462,31400,0],[15,-16]],[[77477,31384,0],[25,-23],[4,-13]],[[77506,31348,0],[39,-109],[6,-15],[10,-28]],[[77561,31196,0],[2,-24],[4,-16],[8,-24],[4,-2],[24,-39],[1,-5],[74,-70],[6,-10],[127,-87],[60,-57],[27,-35],[15,-32],[11,-23],[18,-47],[39,-108],[-27,-41],[-46,35],[0,7],[-25,12],[-13,-25],[-46,-86],[-31,-59],[43,-31]],[[77091,30467,0],[-43,5],[-52,7]],[[76980,30482,0],[-135,15],[-62,7]],[[76652,30519,0],[-58,4],[-135,10],[-15,2]],[[76444,30535,0],[-11,4],[-66,35],[-28,33]],[[76278,30680,0],[-10,16],[-7,15]],[[76261,30711,0],[-6,17],[0,1]],[[76255,30729,0],[-4,20],[-4,16]],[[76248,30784,0],[-1,26],[6,29]],[[76260,30867,0],[0,1],[11,41]],[[75962,32225,0],[9,10]],[[75971,32235,0],[-9,8]],[[75962,32243,0],[-5,67],[0,13],[-2,19],[-7,93],[-3,41]],[[75945,32476,0],[5,69]],[[75950,32545,0],[9,161],[9,105],[30,146],[10,24],[9,16],[6,10]],[[76023,33007,0],[8,10],[15,19]],[[76046,33036,0],[29,30]],[[76075,33066,0],[1,0],[13,9]],[[76089,33075,0],[15,7],[5,1],[9,2]],[[76118,33085,0],[18,0],[35,2]],[[76171,33087,0],[37,2],[2,1]],[[76210,33090,0],[1,0],[135,16],[113,13],[27,2]],[[76486,33121,0],[49,-256],[11,-57],[21,-100]],[[76567,32708,0],[17,-35]],[[76584,32673,0],[33,-71],[6,-13],[42,-62],[27,-37],[17,-22]],[[76709,32468,0],[65,-79],[41,-54]],[[76815,32335,0],[85,-106]],[[76900,32229,0],[33,-38],[47,-47],[131,-127],[145,-136],[28,-25],[27,-33]],[[77311,31823,0],[22,-33],[5,-12],[55,4]],[[73625,32902,0],[-27,-30],[6,-120],[6,-120],[9,-177],[49,-59],[6,-108],[6,-110],[4,-107],[6,-110],[1,-31],[5,-82],[6,-42],[17,-71],[28,-72],[9,-23],[34,-62],[9,-13],[-25,-70],[-105,-74],[-35,-25],[-16,22],[-65,-42],[-30,-15],[-50,-22],[-38,-14],[-15,-4],[-56,-9],[-60,-9],[17,-130],[15,-108]],[[73336,31065,0],[0,-6],[8,-52]],[[71973,30562,0],[-385,53],[-236,33]],[[71117,30657,0],[61,93],[9,17],[2,22],[0,174]],[[71189,30963,0],[19,12]],[[71208,30975,0],[2,33],[-10,12]],[[71200,31020,0],[0,37]],[[71200,31057,0],[0,6]],[[71200,31063,0],[10,10],[0,25],[0,195],[2,9]],[[71212,31302,0],[92,467]],[[71304,31769,0],[22,118]],[[71326,31887,0],[5,39]],[[71331,31926,0],[11,75]],[[71342,32001,0],[0,16]],[[71342,32017,0],[2,128],[3,129],[8,130],[5,124],[5,129],[5,120]],[[71370,32777,0],[0,49]],[[71370,32826,0],[37,-7],[43,-8],[33,-5],[69,59],[102,86],[65,-2],[123,-3],[121,-3],[123,-3],[110,-3],[21,0],[37,-2],[15,0],[227,-6],[124,-4],[127,-3],[113,-3],[20,-1],[25,0],[18,-1],[113,-4],[123,-4],[125,-4],[113,-4],[124,-4],[20,1],[54,2],[30,2]],[[71342,32017,0],[0,-7],[0,-9]],[[71331,31926,0],[-4,-31],[-1,-8]],[[71326,31887,0],[-6,-34],[-16,-84]],[[71304,31769,0],[-77,-391],[-15,-76]],[[71200,31063,0],[0,-5],[0,-1]],[[71200,31057,0],[0,-8],[0,-29]],[[71208,30975,0],[-16,-10],[-3,-2]],[[70056,30587,0],[-2,35],[0,13]],[[69881,30648,0],[-2,12],[-2,17]],[[69877,30677,0],[-1,13],[-1,8]],[[69875,30698,0],[-3,42],[-10,102]],[[69862,30842,0],[-12,97],[0,1]],[[69850,30940,0],[-5,46],[-15,133]],[[69830,31119,0],[-17,156]],[[69813,31275,0],[-11,106]],[[69802,31381,0],[-1,21],[-1,9]],[[69800,31411,0],[10,0],[1,7],[5,32],[3,33],[1,13],[1,27]],[[69821,31523,0],[-22,34],[-3,5]],[[69796,31562,0],[-3,5],[-5,10]],[[69788,31577,0],[-4,14],[0,1]],[[69784,31592,0],[-1,26],[-1,81]],[[69782,31699,0],[-3,1],[-2,1]],[[69777,31701,0],[17,28],[4,52],[-8,7],[2,17]],[[69792,31805,0],[0,28],[0,7]],[[69792,31840,0],[-1,18]],[[69791,31858,0],[-3,11],[-3,17]],[[69785,31886,0],[3,42]],[[69788,31928,0],[0,2],[1,6]],[[69789,31936,0],[-4,41],[-1,10]],[[69784,31987,0],[-2,80],[-1,35]],[[69781,32102,0],[-1,7],[-1,9]],[[69779,32118,0],[-38,71]],[[69741,32189,0],[-1,11],[-6,57]],[[69734,32257,0],[1,5],[0,8]],[[69735,32270,0],[0,14],[1,3],[2,14],[2,17],[3,12],[1,5],[1,4],[7,21],[-5,5]],[[69747,32365,0],[-10,11],[-19,20]],[[69718,32396,0],[-8,10]],[[69710,32406,0],[11,15],[5,6]],[[69726,32427,0],[4,6],[18,25]],[[69748,32458,0],[27,42]],[[69775,32500,0],[16,24],[6,9]],[[69797,32533,0],[51,71]],[[69848,32604,0],[18,-6],[21,-7]],[[69887,32591,0],[108,-36],[35,21],[8,5],[51,28]],[[70089,32609,0],[27,11],[17,7]],[[70133,32627,0],[98,36],[156,57]],[[70387,32720,0],[442,161],[51,19]],[[70880,32900,0],[73,20],[101,28]],[[71054,32948,0],[134,16],[-2,30]],[[71186,32994,0],[47,-6]],[[71233,32988,0],[137,-162]],[[71370,32826,0],[0,-28],[0,-21]],[[69875,30698,0],[2,-21]],[[69877,30677,0],[-80,18],[-58,13]],[[68030,30381,0],[-8,21],[-10,33]],[[67962,30559,0],[-36,84],[-12,27]],[[67922,30696,0],[18,7],[61,21],[21,6],[149,39],[145,40],[16,4],[148,40],[1,15],[3,53],[-11,37],[-39,140],[-26,89],[-16,58],[-4,14],[-3,15],[-5,17],[-3,26],[-2,58],[0,31],[4,10],[23,69],[14,31],[21,40],[45,70],[43,67],[6,8],[17,21],[75,70],[10,9],[-42,26],[-1,1],[-108,67],[-137,85],[-1,0],[39,41],[41,43],[1,1],[34,41],[34,42],[35,45],[34,43],[38,46],[35,45],[16,21],[0,1],[35,43]],[[68686,32392,0],[37,45],[33,42],[37,48],[37,47],[40,50],[40,49],[44,56],[9,12],[78,99],[40,51],[38,50],[39,50],[31,40],[7,8]],[[69196,33039,0],[120,-79],[16,-10],[86,-84],[81,-130]],[[69499,32736,0],[-7,-28],[14,-2]],[[69506,32706,0],[102,-18],[37,-7]],[[69645,32681,0],[102,-40],[101,-37]],[[69797,32533,0],[-22,-33]],[[69748,32458,0],[-22,-31]],[[69726,32427,0],[-16,-21]],[[69718,32396,0],[29,-31]],[[69735,32270,0],[-1,-13]],[[69734,32257,0],[7,-68]],[[69779,32118,0],[2,-16]],[[69781,32102,0],[3,-115]],[[69784,31987,0],[5,-51]],[[69789,31936,0],[-1,-8]],[[69785,31886,0],[6,-28]],[[69792,31840,0],[0,-35]],[[69777,31701,0],[5,-2]],[[69782,31699,0],[2,-107]],[[69784,31592,0],[4,-15]],[[69788,31577,0],[8,-15]],[[69796,31562,0],[25,-39]],[[69800,31411,0],[2,-30]],[[69813,31275,0],[15,-132],[2,-24]],[[69850,30940,0],[12,-98]],[[67903,30688,0],[-17,-7],[-35,-13]],[[67835,30662,0],[-52,-25],[-46,-22]],[[67623,30545,0],[-34,-24],[-17,-12]],[[67519,30466,0],[-27,-25],[-12,-10]],[[67480,30431,0],[-9,-9],[-32,-31]],[[67428,30381,0],[-44,-49],[-5,-6]],[[67366,30311,0],[-12,-18],[-29,-44]],[[67082,29973,0],[-85,39],[-15,7],[-21,10],[-100,46],[-127,57],[-2,3],[-82,125],[-2,24],[0,2],[-8,90],[-13,145],[-12,122],[-11,121],[-7,81],[-1,14],[-9,105],[-2,24],[-10,114],[-1,3],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0]],[[66532,31125,0],[-14,-7]],[[66518,31118,0],[-7,-3],[-38,-19],[-5,-2],[-22,-15],[-8,-6],[-34,36],[-102,104],[-14,15],[-16,-8],[-108,149],[-2,-2],[-28,-13],[-52,-29],[-42,-34]],[[66040,31291,0],[-43,38],[-4,4]],[[65993,31333,0],[-66,87],[-40,52],[-25,34],[-72,96],[-21,27],[-22,28]],[[65747,31657,0],[14,10],[81,49],[121,67],[126,56],[93,28]],[[66182,31867,0],[70,21],[259,77]],[[66511,31965,0],[118,36],[16,5],[45,13],[159,48],[69,21]],[[66918,32088,0],[81,17],[241,39]],[[67240,32144,0],[58,7]],[[67298,32151,0],[-16,-75],[-3,-16],[12,-3],[31,-7],[11,-2],[16,-4],[28,25],[23,9],[6,2],[96,28],[16,4],[61,17],[26,5],[29,5],[8,1],[51,8],[49,8],[95,15],[53,8],[16,3],[22,3],[5,1],[10,1],[43,11],[8,3],[14,4],[13,3],[6,2],[21,8],[53,21],[15,5],[26,11],[22,10],[30,12],[22,9],[34,14],[26,11],[29,12],[68,27],[13,5],[98,41],[144,59],[16,-18],[10,-11],[32,-34]],[[69957,34763,0],[14,-114]],[[69971,34649,0],[2,-15],[11,-81],[2,-12]],[[69986,34541,0],[3,-60],[-4,-49]],[[69985,34432,0],[-11,-45]],[[69974,34387,0],[-11,-38],[-13,-36],[-21,-41],[9,-14],[79,-25]],[[70017,34233,0],[72,-33]],[[70089,34200,0],[41,-23],[35,-22],[52,-45],[12,-9]],[[70229,34101,0],[9,-8],[35,-37]],[[70273,34056,0],[-36,-30],[-2,-2],[-118,-100]],[[70117,33924,0],[-111,-95],[-79,-68],[-76,-66],[-60,-52],[-25,-22]],[[69766,33621,0],[-59,-51],[-35,-30]],[[69672,33540,0],[-94,-81],[-74,-65],[-42,-36]],[[69462,33358,0],[-49,-53],[-11,-12]],[[69402,33293,0],[-82,-102]],[[69320,33191,0],[-4,1],[-120,-153]],[[67298,32151,0],[-56,225],[-35,135],[-90,301],[-80,277],[-10,138],[-12,145]],[[67015,33372,0],[4,24],[5,28]],[[67024,33424,0],[11,70],[6,73],[-1,60],[6,125],[62,28],[169,316],[36,85],[189,456],[21,47]],[[67523,34684,0],[45,94],[23,43],[16,25],[23,10],[8,7],[143,61],[169,-8],[59,2],[37,2],[5,0],[35,1],[5,-2],[5,-3],[1,9],[0,13]],[[68097,34938,0],[19,-10]],[[68116,34928,0],[88,2],[127,1],[42,0],[117,1],[35,0],[20,1],[62,1],[34,1],[14,0],[122,5],[117,7],[61,3],[49,2],[83,3],[28,2],[204,7],[50,5],[22,2],[221,19],[9,1],[91,6],[161,13],[6,0]],[[69879,35010,0],[3,-3],[44,-37],[7,-7],[1,-7],[12,-103],[11,-90]],[[71498,34835,0],[0,-30],[3,-139],[-1,-17]],[[71500,34649,0],[-8,-145],[-7,-131]],[[71485,34373,0],[-8,-129],[-9,-158]],[[71468,34086,0],[-4,-56],[0,-13]],[[71464,34017,0],[-8,-107],[-5,-67]],[[71451,33843,0],[-3,-62],[-9,-136],[-6,-125],[-3,-20],[-5,-112],[-9,-131]],[[71416,33257,0],[-3,-47],[-3,-21],[-6,-65]],[[71404,33124,0],[-10,-76]],[[71394,33048,0],[-24,-221],[-137,161]],[[71186,32994,0],[2,-29],[-134,-17]],[[71054,32948,0],[-101,-27],[-73,-21]],[[70880,32900,0],[-51,-18],[-442,-162]],[[70387,32720,0],[-254,-93]],[[70089,32609,0],[-51,-27],[-8,-5],[-35,-21],[-108,35]],[[69848,32604,0],[-101,38],[-102,39]],[[69506,32706,0],[-14,3],[7,27]],[[69196,33039,0],[4,5],[120,147]],[[69320,33191,0],[0,1],[82,101]],[[69402,33293,0],[11,13],[49,52]],[[69672,33540,0],[34,30],[60,51]],[[70117,33924,0],[118,101],[38,31]],[[70229,34101,0],[-12,10],[-52,45],[-35,22],[-41,22]],[[70017,34233,0],[-79,26],[-9,14],[21,41],[13,36],[11,37]],[[69985,34432,0],[4,50],[-3,59]],[[69986,34541,0],[-2,13],[-11,81],[-2,14]],[[69957,34763,0],[-11,91],[-12,103],[198,37],[240,39],[176,27],[47,6],[123,14],[96,11],[98,11],[98,10],[95,11],[74,23],[84,28],[92,29],[120,38],[166,53],[129,41],[33,-74]],[[71803,35261,0],[-29,-40],[-32,-46],[-26,-37]],[[71716,35138,0],[-76,-105],[-8,-14]],[[71632,35019,0],[-106,-152],[-16,-19]],[[71510,34848,0],[-12,-13]],[[70259,34794,0],[37,-119],[-23,108],[-14,11]],[[70322,34824,0],[2,-11],[89,13],[-91,-2]],[[74289,33148,0],[-45,-22],[-115,-58],[-101,-51],[-24,-11],[-47,-22],[-39,-16],[-58,-23],[-16,-5],[-31,-9],[-91,-21],[-97,-8]],[[71370,32826,0],[24,222]],[[71404,33124,0],[9,85],[3,48]],[[71416,33257,0],[9,130],[6,112],[2,20],[7,126],[8,135],[3,63]],[[71464,34017,0],[4,69]],[[71468,34086,0],[9,157],[8,130]],[[71485,34373,0],[7,130],[8,146]],[[71500,34649,0],[1,16],[-3,139],[0,31]],[[71510,34848,0],[16,18],[106,153]],[[71632,35019,0],[8,13],[76,106]],[[71803,35261,0],[21,-26],[34,-40],[18,-21],[11,5],[20,3],[9,2],[8,0],[12,3],[8,-6],[87,-86],[285,-278],[21,-20],[56,-54],[67,-65],[100,-97],[22,-24],[32,-30],[6,-5],[19,-18],[62,-53],[80,-66],[80,-65],[67,-46],[30,-21],[29,-20],[31,-20],[154,-97],[117,-77],[80,-51],[31,-19],[33,-22],[31,-19],[62,-39],[2,-2],[46,-29],[87,-55],[118,-75],[71,-45],[31,-21],[73,-52],[71,-44],[92,-60],[15,-9],[103,-65],[55,-37],[11,-9],[10,-11],[9,-16],[3,-13],[2,-17],[-4,-30],[-11,-57],[-14,-64],[-7,-30]],[[73812,35868,0],[11,-21],[12,-27]],[[73835,35820,0],[61,25]],[[73896,35845,0],[124,51],[85,35]],[[74105,35931,0],[-1,-4],[-7,-24],[-6,-13],[-4,-12]],[[74087,35878,0],[-13,-38]],[[74074,35840,0],[-1,-5],[-1,-9]],[[74072,35826,0],[-2,-9],[-2,-6]],[[74068,35811,0],[-22,-99]],[[74046,35712,0],[-2,-11]],[[74044,35701,0],[-25,-119],[-5,-19]],[[74014,35563,0],[0,-1],[-15,-96]],[[73999,35466,0],[-1,-17]],[[73998,35449,0],[-18,-155]],[[73980,35294,0],[2,-9]],[[73982,35285,0],[7,-30]],[[73989,35255,0],[1,-3],[2,-6],[-327,-38],[-38,-3],[-25,55],[-2,5],[-9,13],[-13,15],[-25,24],[-14,11],[-17,11],[-25,14],[-36,15],[-14,6],[-7,1],[-30,6],[-39,5],[-39,0],[-35,-6],[-45,-12],[-40,-21],[-20,-13],[-21,-14],[-22,-19],[-31,-33],[-11,-19],[-7,-21],[-13,-37],[-12,-59],[-1,-45],[6,-45],[14,-96],[8,-56],[6,-45],[13,-101],[6,-49],[13,-91],[9,-66],[17,-71],[16,-36],[16,-29],[18,-25],[44,-47],[75,-39],[40,-9],[34,-6],[49,-2],[12,1],[23,2],[24,6],[47,15],[60,32],[24,19],[12,14],[21,4],[284,37],[110,14],[92,13]],[[74167,34431,0],[7,-12]],[[74174,34419,0],[11,-28]],[[74185,34391,0],[1,-1],[5,-12]],[[74191,34378,0],[21,-49],[14,-32]],[[74226,34297,0],[5,-13],[3,-7],[37,-56]],[[74271,34221,0],[9,-19],[6,-11],[5,-12],[9,-17]],[[74300,34162,0],[4,-12],[10,-20],[43,-94]],[[74357,34036,0],[11,-24],[10,-22]],[[74378,33990,0],[2,-5],[6,-13]],[[74386,33972,0],[9,-18]],[[74395,33954,0],[0,-2],[29,-61]],[[74424,33891,0],[10,-23],[6,-11]],[[74440,33857,0],[13,-38],[3,-17]],[[74456,33802,0],[18,-107],[20,-144]],[[74494,33551,0],[1,-15]],[[74495,33536,0],[0,-3],[-1,-7]],[[74494,33526,0],[-3,-13],[-2,-9],[-9,-14],[-5,-4],[-12,-9],[-16,-10],[-11,-1],[-12,-3],[-10,-2],[-13,1],[-11,2],[-8,2],[-12,7],[-17,10],[-32,20],[-8,5],[-7,4],[-35,24],[-59,37],[-61,40],[-12,7],[-1,1],[-7,4],[-8,5],[-6,2],[-45,30],[-19,14],[-3,1],[-20,12],[-15,9],[-23,13],[-31,20],[-32,22],[-12,8],[-35,22],[-32,19],[-78,51],[-45,29],[-53,34],[-52,33],[-111,70],[-13,8],[-5,4],[-23,15],[-42,26],[-48,31],[-47,31],[-13,8],[-26,16],[-52,34],[-6,4],[-20,11],[-8,6],[-47,32],[-16,11],[-60,40],[-52,36],[-33,22],[-39,27],[-17,13],[-71,53],[-14,11],[-69,60],[-55,47],[-9,8],[-13,11],[-37,34],[-42,38],[-34,34],[-38,38],[-35,33],[-38,37],[-22,21],[-31,30],[-21,23],[-38,36],[-19,18],[-57,56],[-7,7],[-2,2],[-74,69],[-76,77],[-38,35],[-37,34],[-11,11],[-25,23],[-8,9],[-5,8],[-12,15],[-2,2]],[[72004,35274,0],[137,85],[12,7]],[[72153,35366,0],[17,4],[2,1],[23,5]],[[72195,35376,0],[48,9]],[[72243,35385,0],[25,3],[11,1]],[[72279,35389,0],[47,7]],[[72326,35396,0],[17,-4]],[[72343,35392,0],[100,-8]],[[72443,35384,0],[28,13],[12,6]],[[72483,35403,0],[27,6]],[[72510,35409,0],[15,4],[41,9]],[[72566,35422,0],[17,4],[1,0]],[[72584,35426,0],[6,2],[13,3]],[[72603,35431,0],[0,1],[0,1],[-1,1]],[[72602,35434,0],[23,5],[12,3]],[[72637,35442,0],[7,-14],[2,-4]],[[72646,35424,0],[4,-8]],[[72650,35416,0],[-1,-1],[-5,0]],[[72644,35415,0],[4,-6]],[[72648,35409,0],[120,53],[114,50]],[[72882,35512,0],[30,14]],[[72912,35526,0],[102,45],[35,15]],[[73049,35586,0],[116,51],[38,18],[21,9]],[[73224,35664,0],[-42,74],[-17,29]],[[73165,35767,0],[39,22],[20,11]],[[73224,35800,0],[45,-72],[9,-14],[5,-8]],[[73283,35706,0],[33,-51],[5,-7],[5,-8],[183,18]],[[73509,35658,0],[-8,110],[-2,30],[-4,64]],[[73495,35862,0],[28,14]],[[73523,35876,0],[12,6],[19,10],[4,1]],[[73558,35893,0],[32,17]],[[73590,35910,0],[2,1],[21,10]],[[73613,35921,0],[5,-7],[4,-6]],[[73622,35908,0],[18,8],[5,2],[7,-10],[5,-7]],[[73657,35901,0],[16,7],[28,13]],[[73701,35921,0],[70,35],[41,-88]],[[74133,34527,0],[4,-8],[1,-3],[4,-22],[-2,-17],[-11,-8],[-24,-7],[-367,-45],[-63,-9],[-39,-10],[-14,-5],[-57,-39],[-11,-9],[-18,-15],[-21,-4],[-45,-5],[-36,1],[-37,6],[-43,15],[-51,25],[-52,42],[-27,37],[-14,23],[-12,29],[-11,36],[-15,98],[-29,174],[-41,289],[2,50],[9,40],[22,45],[26,39],[37,37],[46,30],[67,24],[20,4],[28,4],[18,-4],[39,-6],[39,-16],[20,-12],[36,-31],[31,-32],[15,-29],[47,-52],[25,2],[203,21],[30,-9],[105,15],[16,0],[18,-11],[4,-18],[4,-20]],[[74110,34591,0],[15,-44],[8,-20]],[[74098,34634,0],[4,-14],[8,-29]],[[74080,34730,0],[17,-88],[1,-8]],[[74057,34860,0],[23,-130]],[[74051,34865,0],[6,-5]],[[74044,34869,0],[2,-2],[5,-2]],[[74038,34875,0],[6,-6]],[[74038,34890,0],[-2,0],[-1,-1],[1,-7],[2,-7]],[[74033,34921,0],[1,-2],[4,-29]],[[74030,34919,0],[0,1],[3,1]],[[74034,34948,0],[-5,-13],[1,-7],[0,-9]],[[74038,34958,0],[-1,-3],[-3,-7]],[[74024,35055,0],[6,-41],[8,-56]],[[74016,35106,0],[3,-19],[5,-32]],[[74009,35167,0],[7,-61]],[[75449,35232,0],[74,-7]],[[75523,35225,0],[3,0]],[[75526,35225,0],[28,3]],[[75554,35228,0],[-2,-21],[0,-1]],[[75552,35206,0],[2,-9]],[[75554,35197,0],[2,-8]],[[75556,35189,0],[21,-11],[21,5]],[[75598,35183,0],[14,7],[14,10],[16,0],[27,-5],[24,4]],[[75693,35199,0],[22,-12]],[[75715,35187,0],[17,-25]],[[75732,35162,0],[5,-16]],[[75737,35146,0],[9,-6]],[[75746,35140,0],[-6,-26],[-33,-36],[-44,-22]],[[75663,35056,0],[4,-4]],[[75667,35052,0],[1,0],[-33,-7]],[[75635,35045,0],[-35,1],[-80,-24]],[[75520,35022,0],[-10,-2]],[[75510,35020,0],[-25,-3],[1,-32],[-1,-31]],[[75485,34954,0],[-1,-54],[1,-11]],[[75485,34889,0],[-43,5],[-38,0]],[[75404,34894,0],[-71,-15]],[[75333,34879,0],[-34,-2]],[[75299,34877,0],[-43,-4],[-23,-19]],[[75233,34854,0],[-30,-25]],[[75203,34829,0],[-29,-24],[-39,-101],[-12,-26]],[[75123,34678,0],[-9,-83]],[[75114,34595,0],[0,-12],[16,-70],[12,-70]],[[75142,34443,0],[27,-103],[1,-127]],[[75170,34213,0],[33,3],[24,-8]],[[75227,34208,0],[0,-1],[7,-65]],[[75234,34142,0],[3,-14]],[[75237,34128,0],[3,-14]],[[75240,34114,0],[4,-22]],[[75244,34092,0],[1,0],[1,-7],[3,-23]],[[75249,34062,0],[4,-26]],[[75253,34036,0],[3,-19],[-1,-8]],[[75255,34009,0],[-1,-26]],[[75254,33983,0],[0,-1],[-1,-24]],[[75253,33958,0],[0,-1],[-1,-20]],[[75252,33937,0],[0,-1],[30,-5]],[[75282,33931,0],[4,-23]],[[75286,33908,0],[0,-1],[5,-31]],[[75291,33876,0],[2,-24]],[[75293,33852,0],[0,-33],[-7,-23]],[[75286,33796,0],[-8,-24],[-69,-115]],[[75209,33657,0],[-15,-21],[0,-1],[-7,-50]],[[75187,33585,0],[0,-1],[0,-2],[-2,-5],[-10,-31],[-1,-1],[-5,-16]],[[75169,33529,0],[-3,-10]],[[75166,33519,0],[0,-1],[-6,-25]],[[75160,33493,0],[0,-1],[-2,-10]],[[75158,33482,0],[-1,-17],[-1,-17],[-1,-9],[-6,-27]],[[75149,33412,0],[0,-1],[-4,-27]],[[75145,33384,0],[-5,-31],[-1,0]],[[75139,33353,0],[-3,-14]],[[75136,33339,0],[149,-19],[52,4],[52,5]],[[75389,33329,0],[25,19],[167,4],[211,2],[37,0]],[[75829,33354,0],[5,1],[17,-38],[12,-29]],[[75863,33288,0],[168,-119],[24,-18],[1,-3]],[[76056,33148,0],[11,-48]],[[76067,33100,0],[8,-34]],[[76046,33036,0],[-23,-29]],[[76023,33007,0],[-15,-25],[-10,-24],[-16,-81],[-14,-65],[-9,-104],[0,-1],[-9,-162]],[[75945,32476,0],[17,-233]],[[75971,32235,0],[1,0],[-9,-10],[-1,0]],[[75962,32225,0],[-10,-2]],[[75952,32223,0],[-46,-21]],[[75906,32202,0],[-21,109]],[[75885,32311,0],[-1,0],[-6,7],[-14,9]],[[75864,32327,0],[-33,2],[-22,-12]],[[75715,32279,0],[-50,-17],[-133,-67],[-212,-105]],[[75320,32090,0],[-1,0],[-11,-8]],[[75308,32082,0],[-15,-8],[-1,-2]],[[75292,32072,0],[-22,0],[-8,3],[-106,5]],[[75156,32080,0],[0,1],[-8,13],[-12,22]],[[75136,32116,0],[-21,37],[-55,93],[-53,90],[-55,93],[-53,89],[-53,90],[-31,52]],[[74815,32660,0],[-28,49],[-25,44],[-53,90],[-54,91]],[[74655,32934,0],[-66,111],[-39,66]],[[74550,33111,0],[0,1],[-17,26]],[[74533,33138,0],[126,62],[-9,42],[-6,35],[-6,49],[-11,81],[-9,70],[-6,59],[-118,-10]],[[74494,33526,0],[1,10]],[[74494,33551,0],[-19,140],[-19,111]],[[74440,33857,0],[-7,15],[-9,19]],[[74424,33891,0],[-29,63]],[[74395,33954,0],[-2,4],[-7,14]],[[74386,33972,0],[-8,18]],[[74378,33990,0],[-21,46]],[[74357,34036,0],[-6,12],[-37,83],[-2,4],[-12,27]],[[74300,34162,0],[-14,30],[-15,29]],[[74271,34221,0],[-36,56],[-9,20]],[[74226,34297,0],[-28,64],[-7,17]],[[74191,34378,0],[-3,6],[-3,7]],[[74185,34391,0],[-2,3],[-9,25]],[[74174,34419,0],[-4,6],[-3,6]],[[74167,34431,0],[5,12],[-11,22],[-2,4],[-26,58]],[[74110,34591,0],[-12,43]],[[74098,34634,0],[-18,96]],[[74080,34730,0],[-21,119],[-2,11]],[[74057,34860,0],[-5,3],[-1,2]],[[74051,34865,0],[-7,4]],[[74044,34869,0],[-5,4],[-1,2]],[[74038,34875,0],[-1,2],[-2,13],[3,0]],[[74038,34890,0],[-5,31]],[[74033,34921,0],[-1,-1],[-2,-1]],[[74030,34919,0],[0,16],[3,11],[1,2]],[[74034,34948,0],[1,2],[3,8]],[[74038,34958,0],[-14,97]],[[74024,35055,0],[-8,51]],[[74009,35167,0],[-13,68],[-1,4],[-3,8]],[[73992,35247,0],[96,23],[11,1],[1,1],[6,-1],[135,-7],[94,-2],[219,-4],[225,-4],[16,-1],[25,-1],[112,-4],[49,-1]],[[74981,35247,0],[117,-4],[114,-3]],[[75212,35240,0],[108,-4],[77,-6],[1,7],[51,-5]],[[75863,33288,0],[-14,26],[-18,36],[-2,4]],[[75389,33329,0],[-105,-8],[-148,18]],[[75136,33339,0],[0,1],[3,13]],[[75139,33353,0],[4,24],[2,7]],[[75145,33384,0],[4,28]],[[75158,33482,0],[2,11]],[[75160,33493,0],[5,19],[1,7]],[[75166,33519,0],[1,5],[2,5]],[[75169,33529,0],[2,5],[3,12],[13,39]],[[75187,33585,0],[6,51],[2,1],[14,20]],[[75209,33657,0],[68,115],[2,5],[7,19]],[[75293,33852,0],[-2,19],[0,5]],[[75291,33876,0],[-5,32]],[[75286,33908,0],[-1,6],[-3,17]],[[75282,33931,0],[0,1],[-30,5]],[[75252,33937,0],[0,7],[1,14]],[[75253,33958,0],[0,3],[1,22]],[[75255,34009,0],[-2,27]],[[75249,34062,0],[-5,30]],[[75244,34092,0],[-3,17],[-1,5]],[[75237,34128,0],[-1,3],[-2,11]],[[75234,34142,0],[-1,10],[-6,56]],[[75227,34208,0],[114,-27],[30,-11],[13,-5],[13,-7],[12,63],[12,63],[0,2],[-2,27],[-4,27],[-6,30],[-3,25],[-3,26],[15,29],[0,1],[5,13],[-2,9],[-1,2],[-13,29],[-3,7],[-9,14],[16,6],[16,33],[13,17],[6,10],[21,24],[16,12],[2,2],[4,0],[18,2],[16,-11],[20,-9],[2,-1],[11,-3],[9,-5],[7,-5],[15,-6],[19,-2],[10,-1],[11,9],[15,12],[25,7],[32,9],[14,-29],[17,-3],[7,-5],[4,-3],[25,-9],[4,-2],[37,-40],[29,-31],[-23,-69],[-3,-10],[0,-1],[-11,-51],[1,-1],[7,-18],[14,-25],[8,-12],[9,-15],[3,-6],[-33,-16],[-8,-4],[14,-46],[28,7],[23,5],[8,-50],[2,-14],[13,4],[18,6],[20,-31],[4,-1],[8,-1],[17,-3],[34,-6],[-6,-12],[-18,-32],[-1,-19],[-3,-173],[28,-117],[0,-17],[0,-45],[-18,-106],[-55,-147],[-53,-189]],[[76595,33169,0],[-21,-44],[-88,-4]],[[76486,33121,0],[-27,-1],[-249,-30]],[[76210,33090,0],[-27,-2],[-12,-1]],[[76171,33087,0],[-53,-2]],[[76118,33085,0],[-14,-2],[-15,-8]],[[76089,33075,0],[-3,-2],[-11,-7]],[[76075,33066,0],[-4,15],[-4,19]],[[76067,33100,0],[-5,25],[-6,23]],[[75227,34208,0],[-5,2],[-20,7],[-18,-3],[-14,-1]],[[75170,34213,0],[-2,127],[-26,103]],[[75142,34443,0],[-13,70],[-10,47],[-6,23],[1,12]],[[75114,34595,0],[6,58],[3,25]],[[75203,34829,0],[1,1],[29,24]],[[75233,34854,0],[20,17],[3,3],[22,1],[21,2]],[[75299,34877,0],[11,1],[23,1]],[[75404,34894,0],[37,0],[22,-2],[22,-3]],[[75485,34889,0],[-1,12],[1,53]],[[75485,34954,0],[1,32],[-1,32],[25,2]],[[75520,35022,0],[22,7],[57,17],[36,-1]],[[75635,35045,0],[32,7]],[[75667,35052,0],[-1,1],[-3,3]],[[75663,35056,0],[22,11],[22,12],[33,36],[3,14],[3,11]],[[75746,35140,0],[-5,4],[-4,2]],[[75737,35146,0],[-1,6],[-4,10]],[[75715,35187,0],[-17,9],[-5,3]],[[75693,35199,0],[-25,-4],[-5,1],[-21,5],[-8,0],[-8,0],[-12,-9],[-2,-1],[-5,-3],[-9,-5]],[[75556,35189,0],[-2,7],[0,1]],[[75554,35197,0],[-1,2],[-1,7]],[[75554,35228,0],[-19,-2],[-8,-1],[-1,0]],[[75523,35225,0],[6,17],[0,1],[13,36]],[[75542,35279,0],[15,3],[10,9],[115,105]],[[75682,35396,0],[24,20]],[[75706,35416,0],[42,38]],[[75748,35454,0],[3,4],[53,48]],[[75804,35506,0],[0,1],[33,15]],[[75837,35522,0],[46,19],[2,-12],[1,-4]],[[75886,35525,0],[54,9],[3,3]],[[75943,35537,0],[8,9]],[[75951,35546,0],[-1,20],[21,-15],[17,3],[1,0],[44,6],[21,3],[54,5]],[[76108,35568,0],[40,5],[1,0]],[[76149,35573,0],[34,5],[68,8]],[[76251,35586,0],[17,1]],[[76268,35587,0],[1,1]],[[76269,35588,0],[21,2],[34,4]],[[76324,35594,0],[211,19],[42,5],[129,12],[31,4]],[[76737,35634,0],[26,-13],[26,-14]],[[76789,35607,0],[46,-24],[36,-18],[4,-2],[3,-45],[10,-32],[-6,0],[-5,-1],[-6,-8],[-19,-25],[-33,-44],[6,-119],[3,-61],[2,-10],[-16,-25],[0,-97],[-14,-80],[-35,-87],[-115,-310],[-14,-37],[-30,-158],[-36,-142],[-2,-143],[47,-272],[-13,-516],[-7,-182]],[[78483,32945,0],[2,-35],[-79,7],[-125,-58],[-63,-33],[20,-117],[-6,-40],[-6,-67],[-1,-81],[-63,-214],[-6,-14],[-75,-118],[-66,-69],[-50,-41],[-148,-101],[-28,-18],[-47,-14],[-49,-10],[-59,-4],[-97,-21],[-80,-43],[-30,-33]],[[77427,31821,0],[-13,-16],[-21,-23]],[[77311,31823,0],[-6,8],[-21,26],[-28,25],[-109,101],[-36,35],[-131,127],[-47,47],[-33,37]],[[76815,32335,0],[-19,26],[-23,29],[-35,43],[-29,35]],[[76709,32468,0],[-17,23],[-24,33],[-3,4],[-5,7],[-37,55],[-6,13],[-15,31],[-18,39]],[[76567,32708,0],[-21,101],[-5,20],[-7,36],[-19,102],[-29,154]],[[76595,33169,0],[4,7],[24,19],[15,51],[19,71],[-6,20],[-31,9],[14,17],[11,8],[-2,13],[88,87],[54,62],[61,116],[21,69],[8,23],[8,23],[22,87],[25,42],[22,41],[29,59],[10,15],[11,19],[22,36],[37,5],[38,0],[388,6],[0,-14],[69,2],[0,13],[402,-17],[141,-46],[293,42],[177,28]],[[78569,34082,0],[3,-11]],[[78572,34071,0],[-8,-27],[-32,-109],[-15,-18],[21,-428],[4,-40],[-16,-36],[-10,-65],[-13,-174],[-12,-88],[9,-5],[6,-10],[-2,-20],[-17,-11],[-4,-95]],[[76900,36312,0],[12,-10],[-9,-10],[21,-20],[11,-10],[6,7],[69,-65],[45,-57],[-46,-54],[-14,-19],[-7,4],[-4,-25],[-9,-41],[-45,7],[-56,10],[-9,-38],[-16,-7],[-19,-49],[-15,-123],[-17,-131],[-9,-74]],[[76789,35607,0],[-52,27]],[[76324,35594,0],[-56,-7]],[[76251,35586,0],[-68,-9]],[[76183,35577,0],[-34,-4]],[[76149,35573,0],[-41,-5]],[[76108,35568,0],[-54,-6],[-20,-2],[-46,-7],[-16,-2],[-21,15],[0,-20]],[[75943,35537,0],[-3,-4],[-54,-8]],[[75837,35522,0],[-33,-16]],[[75804,35506,0],[-52,-48],[-4,-4]],[[75706,35416,0],[-24,-21],[0,1]],[[75682,35396,0],[-34,61],[-10,18],[-61,-18],[-4,-1],[-83,-25]],[[75490,35431,0],[-19,-5],[14,-18]],[[75485,35408,0],[46,-57],[7,-51],[4,-21]],[[75542,35279,0],[-13,-38],[-6,-16]],[[75212,35240,0],[-231,7]],[[73992,35247,0],[0,1],[-3,7]],[[73989,35255,0],[-4,22],[-3,8]],[[73982,35285,0],[-1,3],[-1,6]],[[73998,35449,0],[1,15],[0,2]],[[73999,35466,0],[15,97]],[[74014,35563,0],[5,20],[23,109],[2,9]],[[74046,35712,0],[3,10],[19,89]],[[74072,35826,0],[2,12],[0,2]],[[74087,35878,0],[1,3],[9,23],[4,12],[5,15],[19,116],[11,119],[2,20]],[[74138,36186,0],[1,12]],[[74139,36198,0],[2,53],[0,7]],[[74141,36258,0],[0,15],[1,65]],[[74142,36338,0],[33,5],[17,2]],[[74192,36345,0],[2,-1]],[[74194,36344,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0]],[[74198,36341,0],[1,0],[0,-1]],[[74199,36340,0],[1,-1]],[[74200,36339,0],[2,0]],[[74202,36339,0],[1,0],[1,0]],[[74204,36339,0],[1,0],[1,0]],[[74206,36339,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1]],[[74218,36343,0],[1,1],[0,1]],[[74219,36345,0],[1,0],[0,1]],[[74220,36346,0],[1,0],[0,1]],[[74221,36347,0],[1,1],[56,143]],[[74278,36491,0],[41,107]],[[74319,36598,0],[45,107]],[[74364,36705,0],[20,55],[14,35]],[[74398,36795,0],[27,78],[13,36]],[[74438,36909,0],[15,12]],[[74453,36921,0],[11,12],[3,4]],[[74467,36937,0],[2,0],[10,2]],[[74479,36939,0],[96,16]],[[74575,36955,0],[13,1]],[[74588,36956,0],[92,14],[98,14],[10,-2],[44,-12],[60,-17],[11,-2],[9,-3],[89,-23],[19,-4],[33,-8],[62,-18],[8,-2],[25,-6],[11,-2],[26,-8],[26,-6],[15,-3],[10,-3],[10,-2],[12,-4],[26,-7],[26,-6],[10,-2],[17,-5],[53,-14],[31,-7],[31,-8],[17,-4],[7,-2],[27,-8],[27,-7],[27,-6],[23,-7],[80,-21],[37,-8],[150,-40],[117,-30],[21,-8],[14,-6],[47,-20],[26,-10],[15,-7],[49,-21],[21,-6],[7,-2],[19,-7],[52,-19],[13,-4],[11,-3],[36,-13],[-2,-6],[0,-3],[91,-35],[5,12],[2,-1],[3,-1],[8,-3],[5,3],[27,9],[32,12],[4,0],[76,-62],[7,-5],[6,-5],[40,-30],[31,-22],[60,-43],[120,-79],[5,-4],[30,-19],[6,-3],[5,1],[4,0],[26,29],[12,13],[1,2],[1,1]],[[76219,37759,0],[-34,-17],[-27,31],[-5,-3],[3,-3],[-85,-60],[49,-74],[4,2],[85,-113],[-16,-18],[-47,-48],[-74,-76],[11,-9],[-110,-133],[58,-42],[30,-24],[-5,-67],[0,-5],[39,-18],[-12,-41],[12,-10],[163,-142],[19,-18],[-6,-8],[28,-26],[8,8],[141,-128],[33,-29],[-9,-11],[29,-26],[10,9],[20,-19],[19,-20],[136,-122],[15,-13],[-6,-8],[30,-28],[10,9],[165,-147]],[[74588,36956,0],[-13,60],[-1,0],[-6,37]],[[74568,37053,0],[-1,5],[0,2]],[[74567,37060,0],[-2,22],[6,11],[5,9],[2,0],[4,2]],[[74582,37104,0],[12,5]],[[74594,37109,0],[1,0],[22,8],[25,9],[112,37]],[[74754,37163,0],[21,7],[27,10]],[[74802,37180,0],[116,38],[22,7]],[[74940,37225,0],[12,4]],[[74952,37229,0],[19,7],[15,5]],[[74986,37241,0],[0,7]],[[74986,37248,0],[14,4]],[[75000,37252,0],[1,-5],[1,0]],[[75002,37247,0],[70,22],[55,21]],[[75127,37290,0],[102,38],[33,12],[10,4]],[[75272,37344,0],[46,17]],[[75318,37361,0],[11,5],[16,8]],[[75345,37374,0],[19,8]],[[75364,37382,0],[8,4],[4,1],[207,90]],[[75583,37477,0],[62,32],[130,80],[13,35],[7,7],[34,17]],[[75829,37648,0],[45,25],[281,161]],[[76155,37834,0],[13,-4],[51,-71]],[[74746,38129,0],[84,-60],[43,-30],[2,3],[21,-14],[50,-32],[-2,-2],[64,-46]],[[75008,37948,0],[61,-44],[1,-1],[1,-1]],[[75071,37902,0],[8,-5],[3,-3]],[[75082,37894,0],[8,-5],[5,-5]],[[75095,37884,0],[47,-37],[79,-61],[65,-53],[80,-62],[79,-63],[57,-45]],[[75502,37563,0],[81,-86]],[[75583,37477,0],[-177,-76],[-31,-14],[-11,-5]],[[75345,37374,0],[-22,-11],[-5,-2]],[[75272,37344,0],[-44,-16],[-16,-6],[-85,-32]],[[75002,37247,0],[-2,5]],[[74986,37248,0],[0,-2],[0,-5]],[[74986,37241,0],[-17,-6],[-17,-6]],[[74952,37229,0],[-11,-4],[-1,0]],[[74802,37180,0],[-28,-10],[-20,-7]],[[74754,37163,0],[-80,-27],[-33,-10],[-47,-17]],[[74594,37109,0],[-2,-1],[-10,-4]],[[74582,37104,0],[-3,-1],[-3,-2],[-66,26],[-21,-8]],[[74489,37119,0],[-88,74],[1,1],[1,1],[2,2],[2,2],[-77,54],[-18,13],[-28,20],[-17,12],[-4,3],[-69,49],[-38,29],[-9,6],[-12,-15],[-13,10],[-12,9],[-62,46],[-5,4],[9,10],[2,3],[-24,17],[-40,28],[-20,14],[-49,36],[-34,23],[-25,18],[-41,30],[-38,27],[-9,24],[39,48],[15,18],[26,32],[12,15],[2,2],[5,4],[13,17],[17,20],[36,40],[20,22],[1,3],[0,4],[-4,3],[0,1],[-2,1],[-19,14],[-7,5],[-6,5],[-5,3],[-51,37],[-147,103],[-12,-4],[0,2],[1,2],[0,4],[0,6],[-141,98],[-31,21],[-1,1],[-65,48],[-28,19],[-44,27],[-90,62],[-8,1],[-4,-2],[-1,-3],[-1,-1],[-1,-2],[0,-1],[6,-60],[3,-1],[4,-1],[6,-55],[1,-6],[1,-13],[-10,-17],[-12,-1],[-1,0],[-13,-2],[-242,-19],[-20,-1],[-45,-4]],[[72971,38164,0],[-4,36]],[[72967,38200,0],[-2,99],[0,11],[-1,38]],[[72964,38348,0],[-1,11],[0,1]],[[72963,38360,0],[-3,87]],[[72960,38447,0],[-3,42],[0,3]],[[72957,38492,0],[0,8]],[[72957,38500,0],[-4,42],[-1,16]],[[72952,38558,0],[-5,49]],[[72947,38607,0],[0,3],[0,4],[-1,9]],[[72946,38623,0],[-6,52]],[[72940,38675,0],[-3,28]],[[72937,38703,0],[-4,37]],[[72933,38740,0],[0,3]],[[72933,38743,0],[-1,6]],[[72932,38749,0],[-3,22],[-3,29],[0,1]],[[72926,38801,0],[-6,55]],[[72920,38856,0],[-6,52],[-3,43]],[[72911,38951,0],[0,2],[-3,124]],[[72908,39077,0],[-1,66]],[[72907,39143,0],[-1,18],[0,3],[0,1]],[[72906,39165,0],[0,4],[0,26]],[[72906,39195,0],[5,21]],[[72911,39216,0],[10,1]],[[72921,39217,0],[60,-43],[5,-4]],[[72986,39170,0],[-1,-1],[-1,-3]],[[72984,39166,0],[70,-49]],[[73054,39117,0],[3,-2],[-3,-4]],[[73054,39111,0],[3,-3],[2,-2]],[[73059,39106,0],[26,-18],[19,-12]],[[73104,39076,0],[17,-11],[23,-15]],[[73144,39050,0],[23,-16],[43,-31]],[[73210,39003,0],[14,-10],[41,-29]],[[73265,38964,0],[42,-28]],[[73307,38936,0],[22,-17],[11,-8]],[[73340,38911,0],[30,-23]],[[73370,38888,0],[29,-23]],[[73399,38865,0],[9,-9],[11,-10],[79,-76],[74,-72],[29,-27],[13,-11],[8,-8],[9,-12],[4,-6],[36,-70],[33,-65],[6,-13],[10,-19],[3,-5],[3,-6],[9,-18],[1,-4],[74,51],[42,41],[221,-118],[-1,-2],[-2,-2],[40,-24],[22,-11],[61,-35],[1,2],[2,1],[5,-2],[30,-15],[2,3],[3,3],[124,-68],[-4,-7],[31,-17],[0,-1],[-1,-3],[85,-50],[37,-1],[26,-14],[92,-50],[120,14]],[[74489,37119,0],[8,-6],[11,-8],[25,-19],[21,-16],[13,-10]],[[74567,37060,0],[1,-5],[0,-2]],[[74568,37053,0],[2,-14],[4,-24],[14,-59]],[[74588,36956,0],[-2,0],[-4,-1],[-7,0]],[[74479,36939,0],[-12,-2]],[[74467,36937,0],[-14,-16]],[[74438,36909,0],[-15,-41],[-25,-73]],[[74398,36795,0],[-31,-82],[-3,-8]],[[74364,36705,0],[-6,-13],[-39,-94]],[[74319,36598,0],[-8,-21],[-33,-86]],[[74278,36491,0],[-31,-79],[-26,-64],[0,-1]],[[74221,36347,0],[-1,-1]],[[74219,36345,0],[-1,-1],[0,-1]],[[74206,36339,0],[-2,0]],[[74202,36339,0],[-1,0],[-1,0]],[[74199,36340,0],[-1,1]],[[74194,36344,0],[-1,1],[-1,0]],[[74192,36345,0],[-50,-7]],[[74142,36338,0],[-1,-19],[0,-61]],[[74141,36258,0],[-1,-27],[-1,-33]],[[74139,36198,0],[-1,-7],[0,-5]],[[74138,36186,0],[-13,-140],[-20,-115]],[[74105,35931,0],[-209,-86]],[[73835,35820,0],[-23,48]],[[73701,35921,0],[-44,-20]],[[73622,35908,0],[-5,6],[-4,7]],[[73613,35921,0],[-23,-11]],[[73558,35893,0],[-35,-17]],[[73495,35862,0],[14,-204]],[[73283,35706,0],[-59,94]],[[73165,35767,0],[59,-103]],[[73049,35586,0],[-137,-60]],[[72882,35512,0],[-234,-103]],[[72644,35415,0],[6,1]],[[72646,35424,0],[-9,18]],[[72637,35442,0],[-17,-4],[-18,-4]],[[72602,35434,0],[1,-3]],[[72603,35431,0],[-7,-1],[-12,-4]],[[72584,35426,0],[-18,-4]],[[72566,35422,0],[-56,-13]],[[72510,35409,0],[-13,-2],[-14,-4]],[[72483,35403,0],[-40,-19]],[[72443,35384,0],[-59,4],[-41,4]],[[72326,35396,0],[-4,-1],[-43,-6]],[[72279,35389,0],[-19,-2],[-17,-2]],[[72243,35385,0],[-32,-7],[-16,-2]],[[72195,35376,0],[-19,-5],[-23,-5]],[[72004,35274,0],[-12,24],[-10,21],[-32,79],[-7,16],[-24,56],[-12,11]],[[71907,35481,0],[16,10],[54,32],[-3,10],[54,53],[90,88],[36,32],[39,35],[39,34],[47,42],[28,26],[-43,-24],[-17,-6],[-19,1],[-5,2],[-6,4],[-7,6],[-4,4],[-56,85],[-18,28],[-34,49],[12,7],[13,8],[36,20],[8,5],[78,48],[-10,15],[-39,60],[-136,206],[-30,-18],[-114,-70],[-59,-36],[-15,-9],[-51,-32],[-28,-17],[-31,-19],[0,3],[0,3],[-3,76],[0,23],[-1,14],[-3,1],[-1,11],[-2,21],[-2,2],[-1,8],[-9,61],[-3,17],[-3,12],[-5,15],[-33,47],[-1,1],[-9,12],[-76,114],[-11,23],[-11,22],[-42,81],[-2,4],[-10,17],[32,70],[37,78],[40,47],[4,-3],[25,55],[10,22],[0,1],[-1,1],[19,25],[10,12],[33,18],[17,17],[19,19],[41,40],[5,2],[5,2],[17,0],[22,6],[16,3],[3,5],[12,10],[9,3],[19,7],[-13,35],[-10,29],[-15,2],[-11,29],[-25,63],[-28,104],[3,10],[60,22],[93,35],[-5,6],[7,17],[0,3],[6,58],[1,12],[21,79],[10,39],[6,19],[5,19],[24,85],[-47,21],[2,6],[10,29],[4,14],[42,135],[25,82],[9,28],[13,42]],[[72085,38211,0],[12,-2],[19,-3]],[[72116,38206,0],[67,-18],[46,-12]],[[72229,38176,0],[49,-12],[46,-13],[57,-15]],[[72381,38136,0],[7,27],[2,2],[4,5],[10,1],[78,-24],[34,-10],[-8,-35]],[[72508,38102,0],[17,-5],[2,0]],[[72527,38097,0],[31,-9],[65,-18]],[[72623,38070,0],[114,-31]],[[72737,38039,0],[65,-18],[86,-23]],[[72888,37998,0],[31,-10],[8,-3]],[[72927,37985,0],[10,-2],[16,-4],[3,0]],[[72956,37979,0],[7,45],[1,2],[0,1],[1,9]],[[72965,38036,0],[3,10],[0,16],[0,2]],[[72968,38064,0],[0,1],[1,16]],[[72969,38081,0],[1,45],[1,38]],[[71081,38377,0],[35,-8]],[[71116,38369,0],[96,-23],[66,-36],[14,-15],[26,-6],[43,-11],[10,-3],[24,4],[71,15]],[[71466,38294,0],[44,-8]],[[71510,38286,0],[22,-4],[44,-8]],[[71576,38274,0],[14,67]],[[71590,38341,0],[5,10]],[[71595,38351,0],[10,11]],[[71605,38362,0],[10,4]],[[71615,38366,0],[163,-14]],[[71778,38352,0],[48,-31],[72,-43]],[[71898,38278,0],[4,-4]],[[71902,38274,0],[20,-14]],[[71922,38260,0],[147,-43]],[[72069,38217,0],[16,-6]],[[71907,35481,0],[-3,-1],[-13,-1],[-187,-101]],[[71704,35378,0],[23,34],[1,3],[2,13],[-2,17],[-6,20],[-107,169],[-66,101],[-164,244],[-25,31],[-34,55],[-16,24],[-48,73],[-9,20],[-13,21],[-75,125],[-9,18],[-9,16],[-52,92],[-28,52],[-36,70],[-7,10],[-15,20]],[[71009,36606,0],[-1,14],[-3,16],[-52,114],[-69,148],[-10,16],[-10,12],[-15,12],[-21,14],[-16,8],[-14,8],[7,22],[7,18],[1,0],[109,-25],[-16,174],[-71,19],[-2,10],[-51,458]],[[70782,37644,0],[-9,99],[-6,72],[-6,72],[-6,73],[-5,74],[-8,100],[-5,72],[7,81],[8,67],[0,10],[-5,11]],[[70747,38375,0],[-8,11],[22,0]],[[70761,38386,0],[3,0],[173,-2]],[[70937,38384,0],[79,5],[1,4],[64,-16]],[[71704,35378,0],[-134,-40],[-42,-14],[-114,-37],[-147,-50],[-130,-40],[-47,-15],[-66,-8],[-15,-3],[-10,-2],[-131,-14],[-90,-10],[-32,-3],[-164,-19],[-33,7],[-53,11],[-74,-11],[-75,-11],[-29,-32],[-71,-11],[-1,0],[-20,12],[-9,-17],[-71,-13],[-34,21],[-152,-24],[-27,-15],[-54,-30]],[[68116,34928,0],[3,168],[0,3],[0,40],[-1,90],[-1,126],[0,14],[1,111]],[[68118,35480,0],[1,1],[26,4],[16,2],[18,3],[7,1],[13,2],[16,2],[5,1],[7,1],[18,2],[8,1],[10,2],[12,1],[49,4],[13,1],[15,2],[29,2],[7,1],[5,1],[43,3],[21,2],[29,-5],[45,-8],[9,-2],[4,-1],[4,-1],[7,-3],[5,-1],[2,-1],[8,-3],[3,-1],[10,-4],[3,71],[1,8],[0,8],[1,29],[46,-2],[10,0],[38,-1],[85,-59],[70,-49],[48,-32],[20,-14],[3,-2],[23,-16],[31,-21],[43,-29],[11,-8],[17,-12],[100,-69],[19,-10],[35,-6],[11,-1],[51,-8],[2,10],[4,22],[7,40],[21,2],[1,0],[12,0],[25,3],[19,1],[2,0],[9,1],[-3,22],[-2,23],[-11,93],[-10,78],[-2,17],[-3,25],[-8,65],[0,6],[-1,5],[-1,6],[-14,127],[-1,17],[-16,136],[-2,19],[-8,74],[-18,135],[-14,99],[-5,36],[-1,8],[-4,24]],[[69227,36360,0],[24,0],[55,-2],[4,0],[477,-12],[49,-23],[1,0],[1,-1],[33,-15],[38,-6],[76,-10],[7,-1],[0,-3],[0,-1],[0,-4],[50,9],[0,1],[1,0],[2,0],[32,8],[33,14],[17,7],[37,25],[14,11],[19,19],[32,6],[60,13],[98,20],[139,29],[92,19],[65,13],[87,18],[180,38],[7,4],[10,5],[7,4],[2,2],[2,1],[12,11],[11,13],[5,16],[0,3],[2,14],[1,1]],[[68118,35480,0],[-21,11]],[[68097,35491,0],[15,127],[4,38],[1,3],[-14,2],[-5,1],[4,90]],[[68102,35752,0],[0,1],[22,217]],[[68124,35970,0],[13,154],[12,145]],[[68149,36269,0],[18,78],[-1,58],[-9,452],[-5,240],[-13,12]],[[68139,37109,0],[42,2],[58,0],[58,0]],[[68297,37111,0],[12,0],[46,0]],[[68355,37111,0],[58,1],[62,0],[41,3],[111,1],[113,0],[45,0],[112,2]],[[68897,37118,0],[68,1],[79,1]],[[69044,37120,0],[-1,10]],[[69043,37130,0],[3,4],[5,8]],[[69051,37142,0],[61,2],[6,0]],[[69118,37144,0],[24,-177],[43,-351],[23,-179],[5,-43],[5,-34],[9,0]],[[67270,39008,0],[-29,15],[-54,-43],[70,-38],[47,-26],[36,-19],[18,-10],[10,-5],[24,-15],[37,-19],[33,-18],[12,-7],[22,-13],[26,-13],[12,-31],[10,-25],[16,-40],[9,-21],[25,-59],[33,-84],[16,-40],[8,-19],[9,-23],[7,-16],[13,-34],[30,-74],[30,-74],[23,-54],[8,-22],[11,-27],[18,-44],[18,-45],[6,-15],[6,-15],[5,-14],[40,-97],[4,-10],[3,-8],[6,-15],[9,-23],[29,-69],[18,-46],[25,-63],[7,-1]],[[67976,37689,0],[-7,-135]],[[67969,37554,0],[-22,-61],[-26,-72]],[[67921,37421,0],[-2,-5],[-6,-11]],[[67913,37405,0],[-28,-53],[-10,-20]],[[67875,37332,0],[-2,-3],[-4,-8]],[[67869,37321,0],[-1,-3],[-2,-5]],[[67866,37313,0],[-3,-5],[-3,-5]],[[67860,37303,0],[-21,-7],[-25,-9]],[[67814,37287,0],[-25,1],[-38,3],[-2,-30],[-13,-183]],[[67736,37078,0],[-95,-8],[-149,-13],[-41,-4],[-23,-2],[-35,-3],[-12,-1],[-29,-3],[-21,-1],[10,167],[-46,4]],[[67295,37214,0],[-7,1],[-32,3]],[[67256,37218,0],[-65,-14],[-138,-28],[-36,-8]],[[67017,37168,0],[-1,5],[-8,70],[-10,113],[-12,128],[-13,135]],[[66973,37619,0],[-15,161],[-20,184],[-7,67],[-4,49],[-5,44],[-15,143]],[[66907,38267,0],[-19,196],[-3,28],[-18,176],[-31,311],[-15,152],[-4,44],[-3,31],[-24,224],[-1,13]],[[66789,39442,0],[-35,339],[0,2]],[[66754,39783,0],[-1,7],[-12,111]],[[66741,39901,0],[35,-16],[56,-24],[53,-22]],[[66885,39839,0],[27,-12],[1,0]],[[66913,39827,0],[40,-18],[12,-5]],[[66965,39804,0],[70,-30],[21,-9],[54,-22],[75,-35]],[[67185,39708,0],[-27,-37],[-22,-35]],[[67136,39636,0],[-13,-18],[-5,-6]],[[67118,39612,0],[1,-9],[2,-36]],[[67121,39567,0],[2,-59],[1,-1]],[[67124,39507,0],[3,-45],[8,-81]],[[67135,39381,0],[5,-51],[1,-6]],[[67141,39324,0],[2,-24],[28,-76],[25,-66],[74,-150]],[[69057,37681,0],[11,-94]],[[69068,37587,0],[38,-342]],[[69106,37245,0],[12,-101]],[[69118,37144,0],[-67,-2]],[[69051,37142,0],[-8,-12]],[[69044,37120,0],[-147,-2]],[[68355,37111,0],[-58,0]],[[68139,37109,0],[-64,-1],[-58,-3],[-59,-1],[-52,-1],[-62,-1],[-58,0],[-1,-25],[-49,1]],[[67814,37287,0],[46,16]],[[67860,37303,0],[6,10]],[[67866,37313,0],[3,8]],[[67869,37321,0],[6,11]],[[67875,37332,0],[38,73]],[[67913,37405,0],[8,16]],[[67921,37421,0],[48,133]],[[67976,37689,0],[32,-16],[37,-27],[-19,43],[106,37]],[[68132,37726,0],[54,20],[37,13],[13,4],[29,5],[58,9],[32,5],[31,5],[91,12],[51,8],[61,10],[66,9],[62,8],[39,9],[25,2],[27,4],[24,5],[22,4],[48,6],[66,10]],[[68968,37874,0],[166,46]],[[69134,37920,0],[-14,-25],[-9,-16]],[[69111,37879,0],[-39,-77],[-8,-14]],[[69064,37788,0],[-7,-107]],[[70609,37632,0],[173,12]],[[69118,37144,0],[-1,14],[-1,1],[-10,86]],[[69106,37245,0],[-1,11],[-1,6],[-9,77],[-3,29],[-5,45],[-7,64],[-10,88],[-2,22]],[[69068,37587,0],[11,8],[23,17]],[[69102,37612,0],[12,-3],[55,-10]],[[69169,37599,0],[1,7],[185,-28],[88,15]],[[69443,37593,0],[70,12],[36,7],[4,1],[1,0],[2,-13],[182,37],[0,9],[1,1],[6,1]],[[69745,37648,0],[-3,9]],[[69742,37657,0],[206,41],[212,41]],[[70160,37739,0],[62,15]],[[70222,37754,0],[22,6],[15,3]],[[70259,37763,0],[148,1],[15,0]],[[70422,37764,0],[43,0],[24,0]],[[70489,37764,0],[72,-14],[17,-3]],[[70578,37747,0],[7,-26]],[[70585,37721,0],[15,-53],[9,-36]],[[71063,38762,0],[-62,-122]],[[71001,38640,0],[-32,-72],[-27,-52],[-16,-36],[-3,-10],[1,-8],[5,-7],[1,-16]],[[70930,38439,0],[2,-38]],[[70932,38401,0],[5,-17]],[[70761,38386,0],[-25,3],[11,-14]],[[70609,37632,0],[-24,89]],[[70578,37747,0],[-89,17]],[[70489,37764,0],[-67,0]],[[70259,37763,0],[-37,-9]],[[70160,37739,0],[-418,-82]],[[69745,37648,0],[-302,-55]],[[69169,37599,0],[-67,13]],[[69102,37612,0],[-34,-25]],[[69057,37681,0],[1,14],[6,93]],[[69064,37788,0],[13,24],[34,67]],[[69134,37920,0],[14,31],[38,75],[153,299],[78,151]],[[69417,38476,0],[67,131],[44,87]],[[69528,38694,0],[5,12]],[[69533,38706,0],[169,-42],[49,-12],[11,-3],[-2,-10],[114,-29]],[[69874,38610,0],[66,-16]],[[69940,38594,0],[15,4]],[[69955,38598,0],[100,25]],[[70055,38623,0],[95,23]],[[70150,38646,0],[49,13]],[[70199,38659,0],[116,28],[145,35],[75,18]],[[70535,38740,0],[57,16]],[[70592,38756,0],[3,-26],[192,74],[106,25],[46,13]],[[70939,38842,0],[17,5]],[[70956,38847,0],[205,64]],[[71161,38911,0],[-16,-18],[-51,-80],[-20,-30],[-11,-21]],[[67372,41287,0],[72,-37],[23,-10]],[[67467,41240,0],[92,-46],[64,-32]],[[67623,41162,0],[26,-12],[35,-18],[12,-6],[22,-11]],[[67718,41115,0],[20,-9],[18,-9]],[[67756,41097,0],[20,-10],[18,-9]],[[67794,41078,0],[39,-19],[2,-1],[37,-19]],[[67872,41039,0],[29,-14],[11,-5]],[[67912,41020,0],[10,-5]],[[67922,41015,0],[15,-7],[11,-6]],[[67948,41002,0],[40,-19],[21,-11],[17,-9],[34,-16],[33,-17]],[[68093,40930,0],[-25,-62],[-7,-20],[-4,-13],[1,-2],[-26,-61],[1,-7],[-2,-7],[-5,-1],[-4,-5],[-2,-5],[9,-2],[-6,-32],[-5,-7],[4,-3],[5,-63],[5,-34],[6,-31],[4,-25],[2,-10],[8,-81],[-1,-26],[-3,-54],[-1,-10],[-7,-70],[-1,-34],[-1,-37],[-3,-1],[-8,-34],[-6,-23],[-2,-12],[-13,-26],[-17,-33],[48,-25],[-24,-47],[14,-8],[-4,-8],[-19,-33],[-5,-9],[-1,0],[-11,4],[-23,-36],[-3,-4],[1,-14],[-5,2],[-12,-56],[-1,-5],[-3,-11],[0,-2],[75,-9],[-9,-58],[-80,12],[-11,-7],[-2,-1],[-5,-23],[-2,-13],[-9,-44],[-6,-11],[-6,3],[-46,24],[-5,-7],[-18,-27],[-17,-23],[-6,-9],[-2,-5],[-9,5],[-57,-72],[-4,-4]],[[67722,39578,0],[-21,-26]],[[67701,39552,0],[-13,7],[-33,15],[-33,15],[-66,-3]],[[67556,39586,0],[-68,42],[-27,17]],[[67461,39645,0],[-74,13],[-45,13]],[[67342,39671,0],[-22,7],[-34,10]],[[67286,39688,0],[-41,14],[-52,17]],[[67193,39719,0],[-8,-11]],[[67185,39708,0],[-40,25],[-14,10],[-56,65],[-24,12],[-53,29],[-33,17]],[[66965,39866,0],[-1,28],[-2,39],[-14,105],[-7,53],[-13,79],[-17,78],[-13,57],[0,1]],[[66898,40306,0],[-39,122]],[[66859,40428,0],[-34,88],[-35,78],[-13,28],[-16,35],[-22,45]],[[66739,40702,0],[-89,175]],[[66650,40877,0],[-11,21],[-72,142],[-9,20],[-7,13],[-58,114]],[[66493,41187,0],[-41,83],[-5,9],[-1,1]],[[66446,41280,0],[-80,159],[-6,12]],[[66360,41451,0],[-50,107]],[[66310,41558,0],[-1,3],[-8,18]],[[66301,41579,0],[-52,115]],[[66249,41694,0],[-22,47],[-11,24],[-50,113]],[[66166,41878,0],[-5,9],[-13,26]],[[66148,41913,0],[19,-5],[7,-8],[2,-2],[120,-44],[73,-32],[5,-2],[7,-3],[109,-41],[8,-3],[5,-2],[13,-7],[36,-17],[20,-10],[12,-6],[32,-16],[26,-12],[13,-6],[5,-2],[8,-4],[5,-1],[10,-5],[9,-5],[5,-1],[12,-6],[8,-4],[5,-3],[24,-13],[12,-6],[26,-14],[22,-11],[-3,-9],[-1,-2],[10,-5],[1,-1],[2,0],[18,-9],[2,4],[2,4],[5,-3],[20,-9],[-6,-11],[84,-51],[60,-38],[10,-6],[3,0],[4,-1],[34,-18],[28,-13],[63,-38],[6,-3],[31,-15],[29,-16],[19,-10],[22,-13],[8,-5],[20,-11],[12,-7],[27,-17],[56,-32]],[[68953,40438,0],[-64,-98],[-42,-64],[-62,-95],[-1,-15],[4,0],[-1,-38],[-1,-43],[-1,-40],[-2,-36],[-1,-41],[-1,-42],[0,-11],[-1,-26],[-1,-15],[-2,-44],[-1,-41],[-1,-38],[-2,-42],[-1,-37],[-1,-39],[-8,0],[-9,-46],[-2,-12],[-1,-4],[-1,-12],[16,-10],[3,-1],[-7,-21]],[[68762,39527,0],[-6,-13],[-11,-26],[-11,-25],[-10,-26],[-13,-29],[-20,-33],[-16,-26],[-9,-19],[-70,-124],[-28,-46],[-27,-49]],[[68541,39111,0],[-35,15],[-58,30],[-12,8]],[[68436,39164,0],[-27,15],[-23,12]],[[68386,39191,0],[-53,29],[-22,13],[-25,13],[-24,14],[-28,15],[-23,13],[2,3],[-24,14],[-25,16],[-24,14],[-29,18],[-22,13],[-25,15],[-19,11],[-27,16],[-25,14],[-24,13],[-24,14],[-25,15],[-21,12],[-26,14],[-23,14],[-22,13],[-25,13],[-81,48]],[[68093,40930,0],[75,-45],[56,-32],[3,1],[3,1],[34,-22],[14,-9],[58,-34],[4,-2],[6,-3],[46,-27],[16,-9],[16,-8],[46,-27],[44,-24],[21,-12],[18,-11],[42,-24],[79,-46],[32,-18],[77,-43],[170,-98]],[[69992,40228,0],[-6,-63]],[[69986,40165,0],[0,-22],[3,-31]],[[69989,40112,0],[2,-27],[4,-30],[5,-57],[2,-23],[2,-31]],[[70004,39944,0],[3,-31],[1,-9]],[[70008,39904,0],[2,-31],[8,-84]],[[70018,39789,0],[4,-51],[2,-25]],[[70024,39713,0],[2,-26],[0,-9],[2,-23]],[[70028,39655,0],[3,-33],[3,-29],[4,-36]],[[70038,39557,0],[1,-32]],[[70039,39525,0],[-303,-34],[-33,-1],[-259,-15],[-17,5],[-189,86],[-186,85],[-14,-29],[1,-4],[-6,-18],[-3,-3],[-33,-107]],[[68997,39490,0],[-1,-3],[-8,-17]],[[68988,39470,0],[-9,-18],[-15,7],[3,5],[-31,9],[-32,10],[-28,8],[-33,10],[-32,10],[-22,8]],[[68789,39519,0],[-13,4],[-14,4]],[[68953,40438,0],[24,-11]],[[68977,40427,0],[30,-9],[31,-7],[30,-8],[107,-28],[20,-5],[32,-9],[28,-7],[28,-8],[28,-6],[14,-4],[16,-5],[27,-6],[33,-9],[17,-1],[29,0],[32,-2],[2,-1],[11,0],[17,0],[24,-2],[32,-2],[35,-2],[29,-2],[53,-5],[44,-6],[12,-1],[21,-2],[6,-1],[28,-3],[15,-4],[8,-1],[15,-3],[25,-5],[5,0],[7,0],[20,-8],[7,-2],[18,-6],[26,-10],[20,-7],[6,-2],[27,-10]],[[70039,39525,0],[7,-50],[3,-14]],[[70049,39461,0],[2,0],[20,-84]],[[70071,39377,0],[7,-9],[24,-105]],[[70102,39263,0],[15,-38],[1,-8]],[[70118,39217,0],[6,-12],[13,-25]],[[70137,39180,0],[25,-60],[50,-130]],[[70212,38990,0],[0,-5],[-27,-92]],[[70185,38893,0],[-27,-47]],[[70158,38846,0],[-40,2],[-11,2]],[[70107,38850,0],[-56,9],[-1,-12]],[[70050,38847,0],[-34,-46]],[[70016,38801,0],[-30,-41]],[[69986,38760,0],[-19,-26]],[[69967,38734,0],[-53,-68],[-40,-56]],[[69533,38706,0],[-63,26],[-16,-29],[-207,88],[-64,42],[-19,13],[-45,31],[2,4]],[[69121,38881,0],[-229,95]],[[68892,38976,0],[-53,20],[-41,15],[-91,35],[-40,15],[-52,19],[-22,10],[-28,12],[-24,9]],[[68762,39527,0],[27,-8]],[[68988,39470,0],[9,20]],[[70686,39963,0],[33,-18],[12,28]],[[70731,39973,0],[77,-15]],[[70808,39958,0],[12,-2]],[[70820,39956,0],[-21,-35]],[[70799,39921,0],[68,-12],[11,-2],[76,-15],[75,-13]],[[71029,39879,0],[2,4]],[[71031,39883,0],[25,-5],[102,-20]],[[71158,39858,0],[2,0],[7,38]],[[71167,39896,0],[293,-45],[-68,-86],[2,-2],[9,-6],[24,-39],[0,-1]],[[71427,39717,0],[37,-55]],[[71464,39662,0],[26,-37],[5,-4]],[[71495,39621,0],[3,-2],[35,-27]],[[71533,39592,0],[86,-63],[-9,-14]],[[71610,39515,0],[-37,-50]],[[71573,39465,0],[-17,-22]],[[71556,39443,0],[-8,-10],[-21,-30]],[[71527,39403,0],[-30,-40],[-28,-38],[-3,-10],[-5,-15]],[[71461,39300,0],[-35,-91]],[[71426,39209,0],[-3,-10],[-1,-3],[-1,0],[-6,-1]],[[71415,39195,0],[-7,-1],[-15,-1],[-21,-3],[-17,-2],[-10,-14]],[[71345,39174,0],[-24,-33],[-36,-54],[-2,-3],[-106,-147],[-16,-26]],[[71161,38911,0],[-154,-48],[-51,-16]],[[70956,38847,0],[-3,-1],[-14,-4]],[[70939,38842,0],[-46,-12],[-39,-10],[-63,-15],[-196,-74],[-3,22],[0,3]],[[70535,38740,0],[-75,-17],[-145,-35],[-116,-29]],[[70199,38659,0],[-32,-8],[-17,-5]],[[70150,38646,0],[-36,-8],[-59,-15]],[[70055,38623,0],[-48,-12],[-52,-13]],[[69955,38598,0],[-8,-2],[-7,-2]],[[69940,38594,0],[-66,17],[24,33],[16,23],[53,67]],[[69967,38734,0],[7,11],[12,15]],[[69986,38760,0],[13,19],[17,22]],[[70050,38847,0],[0,5],[1,8],[56,-10]],[[70107,38850,0],[11,-1],[40,-3]],[[70185,38893,0],[27,93],[0,4]],[[70212,38990,0],[-23,60],[-27,71],[-25,59]],[[70137,39180,0],[-5,10],[-8,16],[-6,11]],[[70118,39217,0],[-1,9],[-3,7],[-12,30]],[[70102,39263,0],[-25,105],[-6,9]],[[70049,39461,0],[-3,15],[-1,11],[-6,38]],[[70039,39525,0],[-1,16],[0,16]],[[70038,39557,0],[-2,12],[-3,25],[-2,29],[-3,32]],[[70028,39655,0],[-2,24],[-1,14],[-1,20]],[[70024,39713,0],[-2,26],[-4,50]],[[70018,39789,0],[-8,85],[-2,22],[0,8]],[[70008,39904,0],[0,3],[-1,7],[-3,30]],[[69989,40112,0],[-2,20],[-1,12],[0,21]],[[69986,40165,0],[1,16],[5,47]],[[69992,40228,0],[30,-11]],[[70022,40217,0],[62,-22],[17,-6]],[[70101,40189,0],[8,-3],[10,-4],[20,-7],[26,-10],[28,-11],[26,-11],[18,-7]],[[70237,40136,0],[10,-4]],[[70247,40132,0],[28,-11],[26,-10]],[[70301,40111,0],[-2,-7],[20,-8]],[[70319,40096,0],[23,-6],[9,-3],[25,-8],[16,-5]],[[70392,40074,0],[13,-4]],[[70405,40070,0],[28,-8],[26,-9]],[[70459,40053,0],[29,-9],[-1,-8],[-2,-10],[18,-4],[118,-38]],[[70621,39984,0],[25,-8],[22,-7],[18,-6]],[[72665,39265,0],[22,-83]],[[72687,39182,0],[15,3]],[[72702,39185,0],[42,10]],[[72744,39195,0],[14,5],[0,-7],[11,9],[92,4]],[[72861,39206,0],[50,10]],[[72906,39195,0],[0,-30]],[[72906,39165,0],[0,-9],[1,-13]],[[72908,39077,0],[0,-5],[3,-121]],[[72920,38856,0],[3,-26],[3,-29]],[[72926,38801,0],[3,-32],[3,-20]],[[72932,38749,0],[1,-5],[0,-1]],[[72933,38740,0],[3,-23],[1,-14]],[[72937,38703,0],[2,-11],[1,-17]],[[72946,38623,0],[1,-16]],[[72952,38558,0],[5,-58]],[[72957,38500,0],[0,-4],[0,-4]],[[72957,38492,0],[2,-20],[1,-25]],[[72960,38447,0],[2,-40],[1,-47]],[[72963,38360,0],[1,-12]],[[72967,38200,0],[3,-28],[1,-8]],[[72971,38164,0],[-1,-5],[-1,-78]],[[72969,38081,0],[-1,-17]],[[72965,38036,0],[0,-3],[-9,-54]],[[72956,37979,0],[-9,2],[-20,4]],[[72927,37985,0],[-38,12],[-1,1]],[[72888,37998,0],[-15,4],[-136,37]],[[72623,38070,0],[-77,22],[-19,5]],[[72527,38097,0],[-19,5]],[[72508,38102,0],[-14,4],[-113,30]],[[72381,38136,0],[-61,16],[-91,24]],[[72229,38176,0],[-113,30]],[[72116,38206,0],[-26,4],[-5,1]],[[72085,38211,0],[-4,2],[-12,4]],[[71922,38260,0],[-7,5],[-13,9]],[[71902,38274,0],[-2,2],[-2,2]],[[71778,38352,0],[-133,11],[-30,3]],[[71615,38366,0],[-4,-2],[-6,-2]],[[71605,38362,0],[-2,-3],[-8,-8]],[[71590,38341,0],[-9,-46],[-5,-21]],[[71510,38286,0],[-43,8],[-1,0]],[[71116,38369,0],[-22,5],[-13,3]],[[70937,38384,0],[-1,2],[-4,15]],[[70932,38401,0],[-1,24],[-1,14]],[[71001,38640,0],[49,97],[13,25]],[[71161,38911,0],[16,25],[106,147],[29,42],[9,15],[12,16],[12,18]],[[71345,39174,0],[10,13],[4,1],[34,4],[22,3]],[[71415,39195,0],[6,0],[1,0],[3,10],[1,4]],[[71461,39300,0],[6,16],[3,8],[6,10],[51,69]],[[71527,39403,0],[25,34],[4,6]],[[71556,39443,0],[5,6],[12,16]],[[71573,39465,0],[35,47],[2,3]],[[71610,39515,0],[9,13]],[[71619,39528,0],[41,54],[18,23],[12,16],[44,56],[58,82],[17,24],[79,104],[2,2],[12,16],[4,2],[4,1],[2,0],[5,0],[12,-1]],[[71929,39907,0],[71,-50]],[[72000,39857,0],[98,-71]],[[72098,39786,0],[73,-53]],[[72171,39733,0],[26,-15]],[[72197,39718,0],[145,-106]],[[72342,39612,0],[126,-83]],[[72468,39529,0],[60,-41],[164,-118]],[[72692,39370,0],[3,-12]],[[72695,39358,0],[0,-16]],[[72695,39342,0],[-10,-59]],[[72685,39283,0],[-8,-10]],[[72677,39273,0],[-8,-6]],[[72669,39267,0],[-4,-2]],[[70613,41045,0],[1,0],[192,24]],[[70806,41069,0],[47,-6]],[[70853,41063,0],[24,-4],[201,-30]],[[71078,41029,0],[219,-37],[241,-40]],[[71538,40952,0],[198,-29]],[[71736,40923,0],[151,-52],[19,-6],[61,-19],[52,-23]],[[72019,40823,0],[87,-36],[54,-23]],[[72160,40764,0],[101,-29]],[[72261,40735,0],[2,-1],[8,-2]],[[72271,40732,0],[37,-10]],[[72308,40722,0],[30,-4],[32,-5]],[[72370,40713,0],[5,-1],[24,-4]],[[72399,40708,0],[9,-11],[7,-9]],[[72415,40688,0],[51,-16],[29,-9]],[[72495,40663,0],[89,-24],[113,-31],[29,-7],[135,-38]],[[72861,40563,0],[92,-20],[75,-16]],[[73028,40527,0],[4,10]],[[73032,40537,0],[34,-11],[40,-11]],[[73106,40515,0],[13,-4],[54,-16]],[[73173,40495,0],[-3,-9]],[[73170,40486,0],[13,-5],[23,-7]],[[73206,40474,0],[60,-18]],[[73266,40456,0],[48,-10],[43,-9]],[[73357,40437,0],[107,-23]],[[73464,40414,0],[94,-27]],[[73558,40387,0],[-47,-52]],[[73511,40335,0],[-2,-2]],[[73509,40333,0],[-54,-60],[-60,-65]],[[73395,40208,0],[-54,-60],[-1,-11]],[[73340,40137,0],[0,-16]],[[73340,40121,0],[-104,-101],[-4,-4],[-21,-20]],[[73211,39996,0],[-385,-356],[-11,-4],[-5,0]],[[72810,39636,0],[-22,-23]],[[72788,39613,0],[-93,-97],[-4,-4]],[[72691,39512,0],[-79,-83]],[[72612,39429,0],[-23,17],[-19,14],[-61,42],[-27,17],[-8,6],[-6,4]],[[72468,39529,0],[-5,3],[-11,6],[-31,21],[-79,53]],[[72342,39612,0],[-21,16],[-75,57],[-8,5],[-13,9],[-10,7],[-18,12]],[[72197,39718,0],[-13,7],[-13,8]],[[72098,39786,0],[-22,17],[-36,25],[-13,10],[-27,19]],[[72000,39857,0],[-60,42],[-11,8]],[[71929,39907,0],[-25,16]],[[71904,39923,0],[-92,67],[-6,3]],[[71806,39993,0],[-8,7]],[[71798,40000,0],[-64,43]],[[71734,40043,0],[-67,46],[-5,0],[-7,2],[-2,2],[-3,0],[-9,-4],[-7,4],[-4,3],[-19,11],[-6,3],[-8,5],[6,12],[-73,34],[-31,15],[-115,54],[-47,23],[-17,6],[-11,6],[-24,11],[-30,14],[-8,3],[-11,6],[-7,3],[-26,13],[-24,11],[-33,15],[-24,11],[-10,4],[-16,8],[-27,12],[-25,11],[-21,10],[-1,1],[-13,5],[-43,20],[-26,10],[-57,27],[1,10],[-24,16]],[[70860,40486,0],[-27,18],[-29,20]],[[70804,40524,0],[-22,15]],[[70782,40539,0],[-15,9],[-37,25]],[[70730,40573,0],[-43,31],[-52,35],[-9,6],[-6,3],[-18,13],[-20,13],[-30,21],[-49,34],[-111,87],[-40,30],[-1,0],[-29,22],[-4,3],[-8,5],[-2,2],[-9,6],[-3,3],[-61,39],[-20,14],[-10,6]],[[70205,40946,0],[12,15],[7,7],[21,27],[11,15],[19,16]],[[70275,41026,0],[51,63]],[[70326,41089,0],[14,17],[11,13]],[[70351,41119,0],[52,64],[4,3]],[[70407,41186,0],[9,-6],[46,-32]],[[70462,41148,0],[132,-90],[19,-13]],[[75106,39794,0],[34,-2],[57,0]],[[75197,39792,0],[37,0],[27,-10]],[[75261,39782,0],[26,-5],[13,-3]],[[75300,39774,0],[10,2],[9,1]],[[75319,39777,0],[5,-5],[4,-3]],[[75328,39769,0],[61,-10]],[[75389,39759,0],[9,-1]],[[75398,39758,0],[20,-126],[3,-14],[1,-50],[2,-57]],[[75424,39511,0],[-4,0]],[[75420,39511,0],[1,-16],[0,-25]],[[75421,39470,0],[0,-12],[0,-4]],[[75421,39454,0],[0,-1],[-3,-3]],[[75418,39450,0],[0,-4],[-1,-18],[3,-8]],[[75420,39420,0],[3,-6],[1,-2]],[[75424,39412,0],[-1,-81],[-4,0]],[[75419,39331,0],[0,-14],[1,-45]],[[75420,39272,0],[3,-77]],[[75423,39195,0],[0,-21],[2,-46]],[[75425,39128,0],[2,-62],[1,-20]],[[75428,39046,0],[0,-65],[-4,-1],[-48,-25]],[[75376,38955,0],[4,-19],[0,-1],[1,0],[0,-3]],[[75381,38932,0],[12,-54],[-152,-75],[-1,-1]],[[75240,38802,0],[-7,-2],[-15,-7],[-2,0],[-2,-2],[-22,-9],[-78,-41]],[[75114,38741,0],[-4,9],[-17,-2]],[[75093,38748,0],[-16,-3],[-9,-7],[-4,-3]],[[75064,38735,0],[-10,-10],[6,-10]],[[75060,38715,0],[-74,-36],[-122,-61]],[[74864,38618,0],[-35,-18],[-6,-2]],[[74823,38598,0],[-3,-2],[-16,-8],[-3,-11]],[[74801,38577,0],[-141,-70],[-3,-8],[-20,-10],[-9,1]],[[74628,38490,0],[-162,-79],[-2,-1]],[[74464,38410,0],[-63,-33],[-8,-15],[-11,-22]],[[74382,38340,0],[-23,12],[-29,22],[-490,266],[-39,22],[-47,27],[-40,27],[-77,72],[-153,143],[-1,4],[-3,9],[-1,11]],[[73479,38955,0],[1,5],[0,3]],[[73480,38963,0],[4,8],[5,7],[1,2]],[[73490,38980,0],[9,7],[54,46]],[[73553,39033,0],[1,0],[23,42],[18,16]],[[73595,39091,0],[55,45],[181,149]],[[73831,39285,0],[66,52]],[[73897,39337,0],[34,30],[20,17]],[[73951,39384,0],[42,22],[162,88],[101,55]],[[74256,39549,0],[1,0],[8,11]],[[74265,39560,0],[16,4],[13,3],[7,3],[7,4],[7,6],[5,6]],[[74320,39586,0],[6,9],[3,10],[2,7],[0,5],[0,9]],[[74331,39626,0],[1,3]],[[74332,39629,0],[12,4],[38,11],[0,1]],[[74382,39645,0],[10,2],[19,5],[161,37]],[[74572,39689,0],[121,24],[124,27]],[[74817,39740,0],[211,43],[78,11]],[[75543,40396,0],[-76,-219]],[[75467,40177,0],[-52,-174],[-17,-55]],[[75398,39948,0],[-8,-34]],[[75390,39914,0],[1,-37],[1,-82]],[[75392,39795,0],[6,-37]],[[75389,39759,0],[-15,3],[-46,7]],[[75328,39769,0],[-5,4],[-4,4]],[[75319,39777,0],[-19,-3]],[[75300,39774,0],[-39,8]],[[75261,39782,0],[-30,9],[-34,1]],[[75106,39794,0],[-78,-12],[-211,-42]],[[74572,39689,0],[-121,-27],[-41,-10],[-28,-7]],[[74382,39645,0],[-36,-12],[-14,-4]],[[74331,39626,0],[0,-5],[-1,-9],[-5,-17],[-5,-9]],[[74265,39560,0],[-9,-11]],[[74256,39549,0],[-146,-80],[-159,-85]],[[73951,39384,0],[-22,-19],[-32,-28]],[[73897,39337,0],[-57,-44],[-9,-8]],[[73831,39285,0],[-30,-25],[-113,-94],[-88,-70],[-5,-5]],[[73595,39091,0],[-5,-3],[-11,-8],[-26,-47]],[[73553,39033,0],[-40,-34],[-23,-19]],[[73490,38980,0],[-2,-3],[-4,-7],[-3,-6],[-1,-1]],[[73480,38963,0],[-1,-8]],[[73479,38955,0],[0,-11],[-22,-27],[-58,-52]],[[73399,38865,0],[-13,10],[-16,13]],[[73370,38888,0],[-18,13],[-12,10]],[[73340,38911,0],[-29,21],[-4,4]],[[73307,38936,0],[-9,6],[-33,22]],[[73210,39003,0],[-28,20],[-38,27]],[[73144,39050,0],[-40,26]],[[73104,39076,0],[-19,13],[-26,17]],[[73059,39106,0],[-1,1],[-4,4]],[[73054,39117,0],[-15,11],[-55,38]],[[72984,39166,0],[1,2],[1,2]],[[72986,39170,0],[-11,8],[-54,39]],[[72911,39216,0],[-15,-3],[-21,-5],[-14,-2]],[[72744,39195,0],[-5,-1],[-37,-9]],[[72687,39182,0],[-17,67],[-5,16]],[[72669,39267,0],[8,5],[0,1]],[[72685,39283,0],[6,35],[4,24]],[[72695,39342,0],[1,9],[0,3],[-1,4]],[[72695,39358,0],[-1,5],[-2,7]],[[72692,39370,0],[-3,3],[-1,1],[-11,8],[-12,10],[-53,37]],[[72612,39429,0],[11,12],[1,0],[54,57],[13,14]],[[72691,39512,0],[97,101]],[[72788,39613,0],[1,1],[21,22]],[[72810,39636,0],[6,0],[7,0],[65,61],[254,236],[44,40],[25,23]],[[73340,40121,0],[0,13],[0,3]],[[73395,40208,0],[36,39],[44,48],[34,38]],[[73511,40335,0],[4,4],[9,11],[28,30],[4,4],[2,3]],[[73558,40387,0],[65,-17]],[[73623,40370,0],[206,-67]],[[73829,40303,0],[70,-25],[13,3],[209,33]],[[74121,40314,0],[55,17],[98,30],[5,-7],[53,13],[28,2]],[[74360,40369,0],[93,14],[169,28]],[[74622,40411,0],[374,57]],[[74996,40468,0],[10,1]],[[75006,40469,0],[27,3]],[[75033,40472,0],[9,0]],[[75042,40472,0],[195,2]],[[75237,40474,0],[206,-4]],[[75443,40470,0],[123,-6]],[[75566,40464,0],[-5,-13],[-18,-55]],[[76372,39826,0],[-37,7],[-5,-118]],[[76330,39715,0],[-10,-21]],[[76320,39694,0],[6,-25]],[[76326,39669,0],[6,-7]],[[76332,39662,0],[16,-175]],[[76348,39487,0],[-3,-161]],[[76345,39326,0],[15,-74]],[[76360,39252,0],[1,-14]],[[76361,39238,0],[30,-69]],[[76391,39169,0],[55,-120]],[[76446,39049,0],[90,-134]],[[76536,38915,0],[17,-28]],[[76553,38887,0],[8,-10]],[[76561,38877,0],[135,-194],[3,-3]],[[76699,38680,0],[86,-149],[105,-180],[31,-46]],[[76921,38305,0],[-122,-64],[-114,-61]],[[76685,38180,0],[-198,-142]],[[76487,38038,0],[-193,-117]],[[76294,37921,0],[-54,-34]],[[76240,37887,0],[-85,-53]],[[76155,37834,0],[-282,-161],[-44,-25]],[[75829,37648,0],[-30,46],[-63,95]],[[75736,37789,0],[-17,25],[-6,33],[-10,88],[-11,195],[-4,43],[-4,28],[-1,28],[-3,27],[-1,26],[-7,27],[-7,26],[-73,138],[-18,28],[-7,19],[-46,132],[-44,127],[-7,23],[-27,124]],[[75443,38926,0],[-6,123],[-9,-3]],[[75428,39046,0],[-3,82]],[[75425,39128,0],[-2,67]],[[75420,39272,0],[-1,59]],[[75424,39412,0],[-4,8]],[[75418,39450,0],[3,4]],[[75421,39454,0],[0,16]],[[75421,39470,0],[-1,41]],[[75424,39511,0],[-4,107],[-22,140]],[[75392,39795,0],[-2,119]],[[75398,39948,0],[69,229]],[[75543,40396,0],[23,68]],[[75566,40464,0],[351,-7]],[[75917,40457,0],[21,-5],[185,-102],[29,-19],[53,-31],[172,-9]],[[76377,40291,0],[0,-9]],[[76377,40282,0],[-1,-40]],[[76376,40242,0],[1,-11],[8,-9],[-4,-52],[-12,-1],[-3,-87]],[[76366,40082,0],[11,-15]],[[76377,40067,0],[13,-19]],[[76390,40048,0],[-3,-84],[1,-14]],[[76388,39950,0],[-1,-33],[-15,-91]],[[76547,40275,0],[275,-3]],[[76822,40272,0],[26,12]],[[76848,40284,0],[1,-14],[1,-9],[3,-38]],[[76853,40223,0],[5,-2]],[[76858,40221,0],[147,-55]],[[77005,40166,0],[16,-9]],[[77021,40157,0],[141,-154]],[[77162,40003,0],[141,-164]],[[77303,39839,0],[57,-59]],[[77360,39780,0],[197,-110]],[[77557,39670,0],[12,-8]],[[77569,39662,0],[111,-46]],[[77680,39616,0],[225,-101],[23,-7]],[[77928,39508,0],[235,-117],[3,-3]],[[78166,39388,0],[93,52]],[[78259,39440,0],[10,2]],[[78269,39442,0],[92,6],[44,3]],[[78405,39451,0],[73,-249],[0,-1],[-37,-26],[13,-33],[-82,-61],[-32,14],[-38,-27],[32,-40],[-163,-139],[-45,45],[-64,-54],[-10,10],[-60,-51],[33,-35],[-66,-55],[17,-20],[-91,-78],[-158,-133],[-251,-206],[-20,21],[-58,-43],[-8,-8],[17,-21],[-34,-32],[-105,-92],[-12,9],[-21,-19],[5,-12],[-187,-157],[-164,175],[-90,-74],[-7,6],[-192,-142],[-26,26],[-16,-10],[-86,-65],[-74,-42],[-75,-40],[-4,6],[-6,-5],[-41,-21],[-15,-8],[2,-5],[-20,-9],[-2,4],[-2,5],[-12,-6],[-4,6]],[[76155,37834,0],[58,36],[27,17]],[[76240,37887,0],[21,13],[33,21]],[[76294,37921,0],[71,44],[122,73]],[[76487,38038,0],[89,64],[109,78]],[[76921,38305,0],[-14,22],[-16,24],[-106,181],[-86,148]],[[76699,38680,0],[-2,3],[-136,194]],[[76553,38887,0],[-8,14],[-9,14]],[[76536,38915,0],[-30,46],[-60,88]],[[76391,39169,0],[-2,4],[-28,65]],[[76361,39238,0],[0,6],[-1,8]],[[76360,39252,0],[-8,36],[-7,38]],[[76348,39487,0],[0,9],[-16,166]],[[76332,39662,0],[-3,3],[-3,4]],[[76326,39669,0],[-2,8],[-4,17]],[[76320,39694,0],[6,14],[4,7]],[[76372,39826,0],[7,39],[9,53],[0,32]],[[76390,40048,0],[-2,3],[-11,16]],[[76377,40067,0],[-4,7],[-7,8]],[[76376,40242,0],[1,20],[0,20]],[[76377,40291,0],[97,-6]],[[76474,40285,0],[73,-10]],[[78650,41726,0],[49,-112],[1,-1]],[[78700,41613,0],[46,-104],[3,-7],[32,-66],[19,-42],[3,-5],[-3,-1],[2,-3],[15,-30],[16,-33],[22,-33],[10,-18],[133,-205],[111,-176],[28,-44],[48,-74]],[[79185,40772,0],[1,-3],[17,-10]],[[79203,40759,0],[45,-21],[113,-55],[130,-90],[68,-67],[80,-77],[58,-59],[2,1],[21,-20],[-2,-2],[22,-21],[54,-41],[62,-48],[49,-38],[60,-47]],[[79965,40174,0],[1,0],[4,-3]],[[79970,40171,0],[11,-25],[2,-5],[8,-21],[102,-244]],[[80093,39876,0],[11,-33],[-68,-16],[-127,-31],[0,-6],[-47,-7],[-45,-7],[-10,-2],[-6,0],[-6,21],[-50,-11],[6,-29],[-218,-58],[-14,-81],[-161,-37],[-5,-1],[-25,-3],[-7,1],[-148,26],[-30,27],[-82,-13],[-15,9],[-20,-7],[-148,-49],[-22,-16],[-19,-13],[-67,-48],[21,-32],[-77,-59],[-13,16],[-25,-18],[25,-37],[-63,-51],[-19,-17],[16,-19],[-125,-103],[-9,11],[-24,18],[-72,250]],[[78269,39442,0],[-1,-1],[-5,0],[-4,-1]],[[78259,39440,0],[-71,-40],[-22,-12]],[[78166,39388,0],[-4,3],[-142,71],[-92,46]],[[77928,39508,0],[-12,4],[-12,3],[-92,42],[-132,59]],[[77680,39616,0],[-36,15],[-75,31]],[[77569,39662,0],[-8,5],[-4,3]],[[77557,39670,0],[-3,2],[-27,15],[-23,13],[-29,16],[-19,11],[-27,15],[-22,12],[-19,11],[-28,15]],[[77360,39780,0],[-20,21],[-37,38]],[[77303,39839,0],[-7,8],[-134,156]],[[77162,40003,0],[-1,2],[-67,73],[-13,13],[-60,66]],[[77021,40157,0],[-4,2],[-12,7]],[[77005,40166,0],[-3,1],[-77,29],[-67,25]],[[76853,40223,0],[-4,45],[-1,16]],[[76848,40284,0],[0,2],[72,43],[324,85],[14,4],[28,11],[22,9],[49,20],[26,11],[-2,4],[48,39],[13,12],[70,65],[48,53],[91,80],[17,147],[1,3],[1,5],[-13,66],[-3,17],[-10,76],[0,8],[4,5],[-1,25],[-9,36],[-7,24],[-41,62],[-15,25],[-15,33],[-13,10]],[[77547,41264,0],[7,4],[68,16],[15,3],[5,1],[98,21],[79,16],[198,49],[-18,70],[46,29],[112,51],[10,0],[11,-1],[7,-6],[16,-31],[6,1],[11,-12],[25,2],[6,1],[7,2],[44,15],[-8,78],[17,91],[73,26],[148,-6],[13,39],[20,5],[76,13]],[[78639,41741,0],[2,-4],[9,-11]],[[80667,42367,0],[37,-5],[26,3]],[[80730,42365,0],[17,-2]],[[80747,42363,0],[16,9],[9,-1],[9,-2]],[[80781,42369,0],[15,-4],[38,-21],[39,-10],[41,2],[86,11]],[[81000,42347,0],[18,2],[43,5]],[[81061,42354,0],[39,3],[39,3],[60,-1],[94,-3],[18,-1]],[[81311,42355,0],[76,-4]],[[81387,42351,0],[9,-1]],[[81396,42350,0],[18,-4],[29,-9]],[[81443,42337,0],[39,-16],[20,-13],[13,-10],[9,-14],[12,-40],[-68,-33],[-12,-13]],[[81456,42198,0],[-31,-61],[-8,-14]],[[81417,42123,0],[-11,-21]],[[81406,42102,0],[-4,-9],[-16,-20],[-11,-14]],[[81375,42059,0],[-3,-13],[-1,-6],[2,-1]],[[81373,42039,0],[-45,-50]],[[81328,41989,0],[-58,-4],[-34,-33]],[[81236,41952,0],[8,-2],[-16,-13]],[[81228,41937,0],[-16,-9],[-13,-7],[-21,-8],[-16,-5],[-18,-2],[-17,-1],[0,3],[-7,1],[-1,-1],[-12,7],[-3,-4],[-26,11]],[[81078,41922,0],[-38,6],[-10,-43]],[[81030,41885,0],[-7,-31]],[[81023,41854,0],[-9,-19]],[[81014,41835,0],[-13,-28],[-5,-14],[-6,-3]],[[80990,41790,0],[-1,-21],[-1,-14]],[[80988,41755,0],[2,-36],[8,-25]],[[80998,41694,0],[5,-17]],[[81003,41677,0],[6,-17],[3,-19]],[[81012,41641,0],[2,-22]],[[81014,41619,0],[-1,-40],[0,-20]],[[81013,41559,0],[-31,-65],[-17,-8]],[[80965,41486,0],[-32,-141],[-3,-9],[-18,-56],[18,-8],[18,-14]],[[80948,41258,0],[47,-31],[205,-138]],[[81200,41089,0],[22,-23],[38,-14],[96,-31],[66,-21]],[[81422,41000,0],[83,-26],[20,-4]],[[81525,40970,0],[26,-11],[23,-10],[54,-24],[65,-45]],[[81693,40880,0],[39,-27],[21,-27]],[[81753,40826,0],[33,-37],[45,-40]],[[81831,40749,0],[16,-25]],[[81847,40724,0],[46,-99],[38,-145]],[[81931,40480,0],[1,-22],[-10,-18]],[[81922,40440,0],[-7,-9]],[[81915,40431,0],[-35,-22],[-15,-7]],[[81865,40402,0],[-39,-8],[-24,-6]],[[81802,40388,0],[-129,-22],[6,-49],[2,-16]],[[81681,40301,0],[-4,-18],[-71,-8],[-96,-22],[-11,-2],[-7,23],[-52,-13],[5,-17],[-83,-22],[-64,-17],[-5,14],[-45,-9],[3,-20],[-85,-19],[-92,-22],[-31,-7],[-2,3],[-148,-37],[-7,19],[-57,-17],[5,-17],[-57,-17],[17,-45],[-110,-28],[-5,13],[-98,-24],[-3,0],[3,-14],[-179,-45],[-3,11],[-32,-8],[2,-9],[-137,-36],[-72,-19],[-3,-1],[-7,21],[-57,-16]],[[79970,40171,0],[-5,3]],[[79203,40759,0],[-18,13]],[[78700,41613,0],[-50,113]],[[78639,41741,0],[17,4],[-12,30],[-32,58],[-60,111]],[[78552,41944,0],[54,19],[96,36],[192,46],[29,14],[126,64],[30,15],[23,12],[56,30],[27,-34],[10,-16],[41,-136],[127,21],[59,11],[46,9],[38,16]],[[79506,42051,0],[2,0]],[[79508,42051,0],[141,9],[143,9],[53,4],[61,4]],[[79906,42077,0],[37,2],[135,10],[185,13]],[[80263,42102,0],[13,1],[9,5]],[[80285,42108,0],[11,18],[54,157]],[[80350,42283,0],[6,19],[61,153],[8,25],[35,-12],[15,-4],[54,-17],[12,-4],[9,-3]],[[80550,42440,0],[96,-32],[-14,-34],[35,-7]],[[79450,44262,0],[89,-23],[9,-2]],[[79548,44237,0],[12,0],[160,-3],[69,-38],[30,-15],[4,-3]],[[79823,44178,0],[5,-13],[8,-19],[20,-49],[2,-14],[6,-52],[4,-32]],[[79868,43999,0],[7,-9],[69,-35]],[[79944,43955,0],[46,-32],[12,-8]],[[80002,43915,0],[13,-32],[9,-17]],[[80024,43866,0],[-68,-46],[-28,-59],[-8,-151],[-9,-6]],[[79911,43604,0],[2,-2],[13,-15]],[[79926,43587,0],[17,-27]],[[79943,43560,0],[0,-1],[5,-18]],[[79948,43541,0],[-2,-58],[-15,-14],[39,-23],[-28,-29],[1,-1],[2,-1],[56,-27],[5,8],[97,-36],[31,-12],[57,-22],[30,-11],[1,0],[15,-8],[98,-8],[40,-3],[5,0],[17,-8],[41,-18],[49,-20],[3,0],[73,8],[132,-49],[8,-3],[137,-47],[129,-43],[13,-5],[136,-52],[68,-25]],[[81186,43034,0],[25,-3],[1,0],[24,-3],[5,-1],[27,-4],[23,-3],[98,-15],[122,-18],[64,-9]],[[81575,42978,0],[15,0],[50,-1],[17,-1],[35,0]],[[81692,42976,0],[36,-1]],[[81728,42975,0],[0,1],[1,2],[5,36],[0,4],[1,4],[1,7],[6,40]],[[81742,43069,0],[28,135],[1,3],[0,1],[11,32]],[[81782,43240,0],[101,-32]],[[81883,43208,0],[23,69],[25,72]],[[81931,43349,0],[10,51],[10,52],[2,11]],[[81953,43463,0],[13,31],[12,-3],[63,-14],[14,-19],[12,-2],[104,-28],[-14,-20],[-22,-30],[-12,-24],[-26,-17],[-13,5],[-8,-20],[-12,-26],[-7,-16],[-10,-22],[-10,-33],[-4,-28],[1,0],[19,-1],[17,-1],[51,-2],[-1,0],[-15,-27],[-31,-61],[-3,-14],[-1,-5],[-2,-7],[-4,-34],[-2,-15],[-7,-41],[-2,-17],[-2,-16]],[[82051,42956,0],[-6,-36],[-2,-8],[0,-1],[0,-6]],[[82043,42905,0],[7,6],[10,5]],[[82060,42916,0],[2,2],[1,1],[4,3],[111,-15],[137,-18]],[[82315,42889,0],[12,-1],[30,-4]],[[82357,42884,0],[85,-8]],[[82442,42876,0],[78,4]],[[82520,42880,0],[18,2],[10,0],[103,7]],[[82722,42893,0],[13,1],[14,-5],[1,-1],[2,-1],[8,-6]],[[82760,42881,0],[10,-13],[1,-1]],[[82771,42867,0],[4,-11]],[[82775,42856,0],[4,-96],[1,-38],[1,-3]],[[82781,42719,0],[0,-10],[1,-10]],[[82782,42699,0],[1,-37]],[[82783,42662,0],[0,-2],[-7,-46],[-2,-7],[-7,-52],[0,-36],[0,-11],[0,-10],[1,-13],[-1,-21],[0,-7],[-1,-17],[0,-1],[1,-17],[1,-11],[3,-14],[28,-54]],[[82799,42343,0],[0,-1],[15,-28],[19,-6],[18,-46],[3,-7],[11,-28],[2,-9],[5,-20],[1,-5],[2,-7],[0,-1],[-5,-29],[-4,-19],[-1,-4],[-4,-18],[-17,-66],[-25,-90]],[[82819,41959,0],[1,-18]],[[82820,41941,0],[1,-12],[9,-170],[1,-18],[0,-5]],[[82831,41736,0],[-10,0],[-1,-2]],[[82820,41734,0],[-8,-45]],[[82812,41689,0],[-13,-33]],[[82799,41656,0],[-11,-13]],[[82788,41643,0],[-15,-21]],[[82773,41622,0],[-1,-1]],[[82772,41621,0],[-24,-24]],[[82748,41597,0],[-8,-8],[-15,-14]],[[82725,41575,0],[-6,-5]],[[82719,41570,0],[-28,-27]],[[82691,41543,0],[-13,-9],[-80,-56]],[[82598,41478,0],[-38,-26]],[[82560,41452,0],[-21,-17],[-24,-19],[-37,-31],[-18,-14]],[[82460,41371,0],[-18,-10]],[[82442,41361,0],[-3,-2],[-37,-18]],[[82402,41341,0],[-31,-18],[-3,-2]],[[82368,41321,0],[-14,-10],[-25,-16]],[[82329,41295,0],[-16,-11],[-19,-1],[-35,0]],[[82259,41283,0],[-22,4],[-17,7]],[[82220,41294,0],[-7,2],[-29,19],[-8,6],[-44,28]],[[82132,41349,0],[-12,6],[-19,8]],[[82101,41363,0],[-41,0]],[[82060,41363,0],[-35,0],[-18,1],[-22,-8]],[[81985,41356,0],[-23,-9]],[[81962,41347,0],[-18,-13]],[[81944,41334,0],[-12,-8],[-18,-7]],[[81914,41319,0],[-24,-11]],[[81890,41308,0],[-13,-6]],[[81877,41302,0],[-45,-18]],[[81832,41284,0],[-7,-28]],[[81825,41256,0],[-10,-59]],[[81815,41197,0],[-8,-49]],[[81807,41148,0],[-4,-43]],[[81803,41105,0],[2,-28],[9,-37]],[[81814,41040,0],[28,-104]],[[81842,40936,0],[29,-105]],[[81871,40831,0],[13,-52]],[[81884,40779,0],[-21,-12],[-7,-4]],[[81856,40763,0],[-18,-10],[-3,-2]],[[81835,40751,0],[-4,-2]],[[81753,40826,0],[-22,27],[-38,27]],[[81525,40970,0],[-21,4],[-82,26]],[[81200,41089,0],[-206,138],[-46,31]],[[80965,41486,0],[16,8],[32,65]],[[81014,41619,0],[-2,12],[0,10]],[[81003,41677,0],[0,1],[-5,16]],[[80988,41755,0],[0,14],[2,21]],[[80990,41790,0],[6,4],[4,13],[14,28]],[[81014,41835,0],[8,19],[1,0]],[[81030,41885,0],[9,43],[39,-6]],[[81228,41937,0],[15,13],[-8,2],[1,0]],[[81328,41989,0],[19,20],[26,30]],[[81375,42059,0],[10,14],[16,20],[5,9]],[[81417,42123,0],[39,75]],[[81443,42337,0],[-30,10],[-17,3]],[[81387,42351,0],[-9,0],[-67,4]],[[81061,42354,0],[-44,-5],[-17,-2]],[[80781,42369,0],[-10,2],[-8,2],[-16,-9],[0,-1]],[[80730,42365,0],[-33,-4],[-30,6]],[[80667,42367,0],[-34,7],[-1,1],[13,33],[-95,32]],[[80350,42283,0],[-55,-157],[-10,-18]],[[80263,42102,0],[-186,-13],[-135,-10],[-36,-2]],[[79508,42051,0],[-52,200]],[[79456,42251,0],[-1,16],[4,11]],[[79459,42278,0],[11,12],[5,3]],[[79475,42293,0],[17,7]],[[79492,42300,0],[130,-5],[13,1]],[[79635,42296,0],[61,38],[25,5]],[[79721,42339,0],[13,15],[2,6],[-12,55],[36,75],[17,40],[6,15]],[[79783,42545,0],[2,35],[2,23]],[[79787,42603,0],[4,73]],[[79791,42676,0],[0,1],[2,22],[0,2]],[[79793,42701,0],[5,86],[4,27]],[[79802,42814,0],[30,181],[114,-6]],[[79946,42989,0],[7,42],[-110,6],[0,22],[-1,36]],[[79842,43095,0],[-2,3],[-8,13],[1,1],[25,41]],[[79858,43153,0],[40,47],[4,6]],[[79902,43206,0],[3,3],[3,6]],[[79908,43215,0],[28,41],[1,3]],[[79937,43259,0],[-6,0],[-53,-1],[-28,-1]],[[79850,43257,0],[-85,-2]],[[79765,43255,0],[-16,3],[-6,1]],[[79743,43259,0],[-80,5],[-9,58]],[[79654,43322,0],[-1,3],[-7,18]],[[79646,43343,0],[-4,11],[-1,3]],[[79641,43357,0],[-58,-11],[0,1],[-2,17],[-1,7]],[[79580,43371,0],[-4,25]],[[79576,43396,0],[-14,99],[-2,13]],[[79560,43508,0],[-1,12]],[[79559,43520,0],[-1,32],[0,30],[0,8]],[[79558,43590,0],[-1,5],[0,8],[34,32]],[[79591,43635,0],[11,24],[4,23]],[[79606,43682,0],[-2,16]],[[79604,43698,0],[-5,14],[-2,3]],[[79597,43715,0],[-2,4],[-8,11]],[[79587,43730,0],[-2,4],[-15,12]],[[79570,43746,0],[-17,4],[-10,2]],[[79543,43752,0],[-1,1],[-5,7],[-25,32]],[[79512,43792,0],[-50,61]],[[79462,43853,0],[-24,28],[-24,30],[-7,6],[-3,3]],[[79404,43920,0],[-10,5]],[[79394,43925,0],[-12,2],[-30,6],[-12,0]],[[79340,43933,0],[-10,-4],[-8,5],[-8,6]],[[79314,43940,0],[-69,47]],[[79245,43987,0],[-3,3],[-82,61],[-71,35]],[[79089,44086,0],[-21,11]],[[79068,44097,0],[-4,15],[-25,125]],[[79039,44237,0],[-3,8],[-9,37],[83,-25]],[[79110,44257,0],[109,-13]],[[79219,44244,0],[46,-2],[59,-2],[17,-1],[0,6],[1,42]],[[79342,44287,0],[55,-4],[53,-21]],[[78365,44368,0],[31,3],[10,2],[44,13],[11,5],[41,19],[5,0],[8,-3],[60,-20]],[[78575,44387,0],[26,-4],[230,-48],[58,-12],[138,-39],[12,-47]],[[79039,44237,0],[29,-140]],[[79089,44086,0],[72,-35],[84,-64]],[[79314,43940,0],[17,-11],[9,4]],[[79340,43933,0],[13,0],[41,-8]],[[79404,43920,0],[11,-9],[47,-58]],[[79512,43792,0],[26,-32],[5,-8]],[[79543,43752,0],[27,-6]],[[79587,43730,0],[10,-15]],[[79597,43715,0],[7,-17]],[[79606,43682,0],[-4,-24],[-11,-23]],[[79591,43635,0],[-33,-32],[0,-13]],[[79558,43590,0],[1,-70]],[[79560,43508,0],[16,-112]],[[79580,43371,0],[4,-25],[57,11]],[[79641,43357,0],[13,-32],[0,-3]],[[79743,43259,0],[22,-4]],[[79850,43257,0],[87,2]],[[79908,43215,0],[-6,-9]],[[79858,43153,0],[-25,-42],[-1,-1],[10,-15]],[[79946,42989,0],[-113,6],[-31,-181]],[[79793,42701,0],[-2,-25]],[[79787,42603,0],[-1,-23],[-3,-35]],[[79721,42339,0],[-25,-6],[-61,-37]],[[79635,42296,0],[-12,-1],[-131,5]],[[79475,42293,0],[-4,-3],[-12,-12]],[[79456,42251,0],[50,-200]],[[78552,41944,0],[-17,27],[-16,17],[-123,153],[-83,104],[-19,10],[-145,180],[-32,40],[-4,8],[-32,42],[-24,32],[-12,16],[-11,13],[-35,38],[-19,16],[-232,213],[-36,38],[-74,98],[-31,37],[-70,90]],[[77537,43116,0],[1,2],[7,15]],[[77545,43133,0],[47,173],[53,195],[21,93],[14,81],[9,-1],[0,15],[-1,25],[-3,25],[-4,24],[-5,25],[-4,23],[-24,99],[-16,60],[-11,77],[-11,35],[-2,29],[-19,123],[-16,99],[87,5],[5,0]],[[77665,44338,0],[55,-10],[16,-5],[106,122],[27,3],[18,-8],[90,0],[3,-27],[13,-19],[91,-40],[22,-5],[33,-3],[58,0],[54,-5],[37,9],[59,17],[18,1]],[[76848,40284,0],[-17,-8],[-9,-4]],[[76822,40272,0],[-50,1],[-11,0],[-111,1],[-66,0],[-21,0],[-16,1]],[[76547,40275,0],[-9,1],[-64,9]],[[76474,40285,0],[-24,2],[-7,0],[-51,3],[-15,1]],[[75917,40457,0],[-108,2],[-128,3],[-70,1],[-45,1]],[[75443,40470,0],[52,38]],[[75495,40508,0],[71,241]],[[75566,40749,0],[5,77],[7,123]],[[75578,40949,0],[-9,34]],[[75569,40983,0],[36,41]],[[75605,41024,0],[12,-4],[11,-2]],[[75628,41018,0],[12,2],[8,4],[6,7],[11,19],[98,161],[1,1]],[[75764,41212,0],[64,142],[17,36]],[[75845,41390,0],[1,3],[164,187]],[[76010,41580,0],[53,62],[134,160]],[[76197,41802,0],[37,42],[2,3]],[[76236,41847,0],[43,51],[2,3]],[[76281,41901,0],[57,69]],[[76338,41970,0],[2,-1]],[[76340,41969,0],[10,-5],[46,-30]],[[76396,41934,0],[102,122],[21,13]],[[76519,42069,0],[19,5],[12,-1],[9,-3],[10,-4],[12,-8],[155,-95],[47,-47],[50,-54],[61,-61],[65,-67],[69,-71],[42,-45],[90,-66],[77,-59],[142,-109],[65,-53],[6,-18],[17,11],[74,-56],[6,-4]],[[75628,41018,0],[-12,2],[-11,4]],[[75569,40983,0],[0,1],[-1,2]],[[75568,40986,0],[-45,78]],[[75523,41064,0],[-75,121],[-14,21]],[[75434,41206,0],[-12,18]],[[75422,41224,0],[-1,1],[0,1],[-13,22]],[[75408,41248,0],[-3,-2]],[[75405,41246,0],[-1,0],[-8,15]],[[75396,41261,0],[-15,25],[-28,40]],[[75353,41326,0],[0,1],[-45,67],[-16,27]],[[75292,41421,0],[6,4],[30,16],[7,4],[-79,130],[-10,40]],[[75246,41615,0],[-37,61],[-32,55],[-4,5]],[[75173,41736,0],[-8,14],[-2,4],[-19,30]],[[75144,41784,0],[-7,11],[-2,3]],[[75135,41798,0],[-129,212],[-14,8]],[[74992,42018,0],[-209,202],[-14,14],[-74,53]],[[74695,42287,0],[0,1],[13,17],[14,18],[18,23],[19,24]],[[74759,42370,0],[58,-12],[15,-3],[1,-1],[1,0]],[[74834,42354,0],[101,-21]],[[74935,42333,0],[291,-61],[19,-5]],[[75245,42267,0],[583,-160]],[[75828,42107,0],[126,-31],[6,-2]],[[75960,42074,0],[4,0],[73,-18]],[[76037,42056,0],[21,-5]],[[76058,42051,0],[127,-29],[151,-36]],[[76336,41986,0],[2,-9],[1,-5]],[[76339,41972,0],[-1,-2]],[[76281,41901,0],[-3,-3],[-42,-51]],[[76236,41847,0],[-3,-3],[-36,-42]],[[76197,41802,0],[-134,-159],[-53,-63]],[[75845,41390,0],[-17,-35],[-64,-143]],[[75396,41261,0],[9,-15]],[[75408,41248,0],[14,-24]],[[75434,41206,0],[14,-22],[75,-120]],[[75568,40986,0],[1,-3]],[[75569,40983,0],[3,-11],[6,-23]],[[75566,40749,0],[-56,-187],[-15,-54]],[[75237,40474,0],[-160,-2],[-35,0]],[[75042,40472,0],[-2,0],[-7,0]],[[75006,40469,0],[-5,0],[-5,-1]],[[74996,40468,0],[-183,-28],[-148,-23],[-43,-6]],[[74360,40369,0],[-22,-16],[-31,-5],[-49,-8],[-71,-11],[-8,-2],[-58,-13]],[[73829,40303,0],[-24,8],[-62,20],[-52,17],[-54,17],[-14,5]],[[73623,40370,0],[-27,7],[-38,10]],[[73558,40387,0],[-40,11],[-26,8]],[[73492,40406,0],[16,36],[10,24]],[[73518,40466,0],[20,53]],[[73538,40519,0],[14,40]],[[73552,40559,0],[2,24]],[[73554,40583,0],[1,25],[-19,35],[-53,117],[-6,13]],[[73477,40773,0],[-50,108]],[[73427,40881,0],[-15,90]],[[73412,40971,0],[11,6],[6,6]],[[73429,40983,0],[-3,12]],[[73426,40995,0],[4,2]],[[73430,40997,0],[-3,5]],[[73427,41002,0],[-7,5],[-5,7]],[[73415,41014,0],[-12,-1]],[[73403,41013,0],[-27,74]],[[73376,41087,0],[-26,48],[2,3]],[[73352,41138,0],[-26,52]],[[73326,41190,0],[-11,0],[-2,19],[-4,0],[-11,87],[85,6],[2,-7],[58,-41],[30,-25],[9,-5],[4,0],[74,-37],[15,-4]],[[73575,41183,0],[41,-5],[68,-4]],[[73684,41174,0],[51,1]],[[73735,41175,0],[82,5]],[[73817,41180,0],[42,4]],[[73859,41184,0],[38,11]],[[73897,41195,0],[11,2]],[[73908,41197,0],[15,-4],[30,-13]],[[73953,41180,0],[20,-12]],[[73973,41168,0],[51,-37]],[[74024,41131,0],[38,14],[2,-3]],[[74064,41142,0],[58,23]],[[74122,41165,0],[8,2]],[[74130,41167,0],[67,25]],[[74197,41192,0],[59,9]],[[74256,41201,0],[54,6]],[[74310,41207,0],[-7,21]],[[74303,41228,0],[66,11]],[[74369,41239,0],[64,10],[11,3]],[[74444,41252,0],[82,12]],[[74526,41264,0],[3,-8]],[[74529,41256,0],[108,9]],[[74637,41265,0],[17,-1]],[[74654,41264,0],[45,-6]],[[74699,41258,0],[14,5]],[[74713,41263,0],[17,3]],[[74730,41266,0],[89,14]],[[74819,41280,0],[26,8],[-7,29]],[[74838,41317,0],[26,4]],[[74864,41321,0],[13,3],[21,4]],[[74898,41328,0],[29,6]],[[74927,41334,0],[14,2],[18,4]],[[74959,41340,0],[36,7],[33,6]],[[75028,41353,0],[65,13]],[[75093,41366,0],[30,6],[40,8],[11,2],[6,1],[69,18]],[[75249,41401,0],[13,7],[30,13]],[[75292,41421,0],[16,-28],[45,-67]],[[73781,41848,0],[47,63],[15,23],[-5,4],[19,21],[18,18],[5,-4],[14,-8],[5,-4],[101,-59],[6,-6]],[[74006,41896,0],[19,-10],[11,-7]],[[74036,41879,0],[31,-19],[26,-16]],[[74093,41844,0],[8,-5],[18,-11]],[[74119,41828,0],[28,-17],[29,-18]],[[74176,41793,0],[3,-2],[25,-15]],[[74204,41776,0],[27,-16],[27,-17]],[[74258,41743,0],[17,-10],[14,-8]],[[74289,41725,0],[28,-18],[31,-18]],[[74348,41689,0],[1,-1],[6,-4]],[[74355,41684,0],[55,-34]],[[74410,41650,0],[5,-3],[22,-14]],[[74437,41633,0],[14,-8],[13,-9]],[[74464,41616,0],[30,-19],[29,-17]],[[74523,41580,0],[11,-7],[15,-10]],[[74549,41563,0],[21,-13],[6,-3]],[[74576,41547,0],[10,-7],[18,-9]],[[74604,41531,0],[26,-18],[28,-17],[30,-18]],[[74688,41478,0],[22,-15],[10,-6]],[[74720,41457,0],[4,-2],[23,-15]],[[74747,41440,0],[29,-19]],[[74776,41421,0],[7,-10],[2,-2]],[[74785,41409,0],[12,-17],[5,-7]],[[74802,41385,0],[31,-41]],[[74833,41344,0],[2,-14],[3,-13]],[[74819,41280,0],[-66,-11],[-23,-3]],[[74713,41263,0],[-8,-3],[-6,-2]],[[74654,41264,0],[-7,0],[-10,1]],[[74529,41256,0],[-2,4],[-1,4]],[[74526,41264,0],[-47,-7],[-35,-5]],[[74369,41239,0],[-12,-2],[-24,-4],[-21,-3],[-9,-2]],[[74303,41228,0],[2,-6],[5,-15]],[[74310,41207,0],[-17,-2],[-12,-2],[-7,0],[-18,-2]],[[74256,41201,0],[-19,-3],[-14,-2],[-26,-4]],[[74197,41192,0],[-32,-11],[-35,-14]],[[74130,41167,0],[-1,0],[-7,-2]],[[74122,41165,0],[-57,-23],[-1,0]],[[74024,41131,0],[-32,23],[-19,14]],[[73973,41168,0],[-14,8],[-6,4]],[[73953,41180,0],[-17,7],[-14,8],[-14,2]],[[73897,41195,0],[-9,-3],[-29,-8]],[[73817,41180,0],[-47,-3],[-35,-2]],[[73684,41174,0],[-61,4],[-48,5]],[[73326,41190,0],[18,-36],[8,-16]],[[73376,41087,0],[3,-9],[24,-65]],[[73415,41014,0],[2,-2],[2,-4],[8,-6]],[[73430,40997,0],[-1,-1],[-3,-1]],[[73426,40995,0],[1,-2],[2,-10]],[[73412,40971,0],[4,-24],[11,-66]],[[73427,40881,0],[6,-12],[6,-12],[38,-84]],[[73554,40583,0],[-1,-8],[-1,-16]],[[73552,40559,0],[-6,-16],[-8,-24]],[[73518,40466,0],[-20,-48],[-6,-12]],[[73492,40406,0],[-28,8]],[[73464,40414,0],[-74,16],[-33,7]],[[73266,40456,0],[-22,7],[-38,11]],[[73206,40474,0],[17,67],[1,6]],[[73224,40547,0],[5,13],[21,62]],[[73250,40622,0],[11,31],[12,35]],[[73273,40688,0],[-4,4],[-29,35]],[[73240,40727,0],[-4,-1],[-45,55],[-33,39],[-33,39]],[[73125,40859,0],[-16,19],[-25,27]],[[73084,40905,0],[-91,57],[7,5]],[[73000,40967,0],[-11,19],[-26,41]],[[72963,41027,0],[-11,19],[-16,29]],[[72936,41075,0],[3,6],[6,8]],[[72945,41089,0],[-4,5],[-9,14]],[[72932,41108,0],[0,37]],[[72932,41145,0],[-2,10],[-1,4],[-10,56]],[[72919,41215,0],[-35,191],[-23,58]],[[72861,41464,0],[-17,44],[-9,24]],[[72835,41532,0],[-21,-16]],[[72814,41516,0],[0,1],[-2,3]],[[72812,41520,0],[-81,79],[-5,5]],[[72726,41604,0],[-5,5],[-41,39]],[[72680,41648,0],[-10,16],[-19,30]],[[72651,41694,0],[124,62]],[[72775,41756,0],[19,8],[9,5]],[[72803,41769,0],[1,-1],[3,-2]],[[72807,41766,0],[18,9],[11,5]],[[72836,41780,0],[25,14]],[[72861,41794,0],[3,1],[27,15],[20,11]],[[72911,41821,0],[26,15],[11,6]],[[72948,41842,0],[29,17],[8,4],[11,6]],[[72996,41869,0],[4,2],[3,2],[26,14],[18,10]],[[73047,41897,0],[107,58]],[[73154,41955,0],[6,4],[23,12],[10,6],[13,7]],[[73206,41984,0],[23,13],[9,4],[29,17],[12,7],[5,2]],[[73284,42027,0],[29,16],[15,9]],[[73328,42052,0],[63,38]],[[73391,42090,0],[24,13],[29,18]],[[73444,42121,0],[42,23],[19,10]],[[73505,42154,0],[41,-40],[9,-10]],[[73555,42104,0],[3,-2],[6,-11]],[[73564,42091,0],[11,-15]],[[73575,42076,0],[28,-31],[25,-27]],[[73628,42018,0],[110,-121]],[[73738,41897,0],[41,-46],[2,-3]],[[74006,42494,0],[69,-14],[6,1]],[[74081,42481,0],[20,4]],[[74101,42485,0],[5,2]],[[74106,42487,0],[64,-23]],[[74170,42464,0],[33,-13]],[[74203,42451,0],[28,-11]],[[74231,42440,0],[28,-10]],[[74259,42430,0],[33,-13]],[[74292,42417,0],[35,-13]],[[74327,42404,0],[27,-9]],[[74354,42395,0],[33,-13]],[[74387,42382,0],[33,-12]],[[74420,42370,0],[26,-10],[65,-31]],[[74511,42329,0],[25,-12]],[[74536,42317,0],[29,-13]],[[74565,42304,0],[29,-14]],[[74594,42290,0],[27,-14]],[[74621,42276,0],[49,-23]],[[74670,42253,0],[4,5]],[[74674,42258,0],[17,24]],[[74691,42282,0],[4,5]],[[74992,42018,0],[14,-9],[129,-211]],[[75135,41798,0],[9,-14]],[[75144,41784,0],[21,-35],[8,-13]],[[75173,41736,0],[73,-121]],[[75292,41421,0],[-43,-20]],[[75093,41366,0],[-34,-6],[-31,-7]],[[74959,41340,0],[-32,-6]],[[74898,41328,0],[-34,-7]],[[74838,41317,0],[-5,27]],[[74802,41385,0],[-17,24]],[[74785,41409,0],[-9,12]],[[74747,41440,0],[-27,17]],[[74720,41457,0],[-32,21]],[[74604,41531,0],[-28,16]],[[74576,41547,0],[-27,16]],[[74549,41563,0],[-26,17]],[[74464,41616,0],[-27,17]],[[74437,41633,0],[-27,17]],[[74355,41684,0],[-7,5]],[[74289,41725,0],[-31,18]],[[74204,41776,0],[-28,17]],[[74119,41828,0],[-26,16]],[[74036,41879,0],[-30,17]],[[73781,41848,0],[-43,49]],[[73628,42018,0],[-53,58]],[[73564,42091,0],[-9,13]],[[73505,42154,0],[45,30],[30,32],[50,28],[53,27],[58,132],[11,17],[48,74],[9,-1],[8,38]],[[73817,42531,0],[17,-4]],[[73834,42527,0],[56,-11],[26,-5]],[[73916,42511,0],[29,-5]],[[73945,42506,0],[35,-6]],[[73980,42500,0],[26,-6]],[[73412,42689,0],[3,5],[22,-5]],[[73437,42689,0],[11,-4],[30,-14]],[[73478,42671,0],[169,-80]],[[73647,42591,0],[69,-32],[75,-22]],[[73791,42537,0],[26,-6]],[[73444,42121,0],[-53,-31]],[[73328,42052,0],[-44,-25]],[[73284,42027,0],[-78,-43]],[[73206,41984,0],[-52,-29]],[[73047,41897,0],[-51,-28]],[[72996,41869,0],[-48,-27]],[[72948,41842,0],[-37,-21]],[[72911,41821,0],[-50,-27]],[[72836,41780,0],[-29,-14]],[[72807,41766,0],[-4,3]],[[72803,41769,0],[-28,-13]],[[72651,41694,0],[-24,27],[-5,5]],[[72622,41726,0],[-9,13],[-91,-18],[-29,114],[53,11],[-26,112],[-50,-9],[-22,109],[-27,113],[-17,74],[-40,172]],[[72364,42417,0],[-17,77],[-10,43]],[[72337,42537,0],[-5,24],[19,4],[-7,30],[-25,108],[-14,25],[-2,21],[-10,8],[-9,10],[-17,68],[-9,37],[10,51]],[[72268,42923,0],[32,-6],[323,-63],[88,-17],[427,-98],[157,-5],[100,-39],[17,-6]],[[72622,41726,0],[29,-32]],[[72651,41694,0],[29,-46]],[[72680,41648,0],[46,-44]],[[72726,41604,0],[86,-84]],[[72812,41520,0],[2,-4]],[[72835,41532,0],[26,-68]],[[72919,41215,0],[13,-70]],[[72932,41108,0],[13,-19]],[[72945,41089,0],[-9,-14]],[[72963,41027,0],[37,-60]],[[73084,40905,0],[41,-46]],[[73240,40727,0],[33,-39]],[[73273,40688,0],[-23,-66]],[[73250,40622,0],[-26,-75]],[[73224,40547,0],[-18,-73]],[[73206,40474,0],[-36,12]],[[73173,40495,0],[-67,20]],[[73106,40515,0],[-74,22]],[[73028,40527,0],[-167,36]],[[72495,40663,0],[-80,25]],[[72415,40688,0],[-16,20]],[[72399,40708,0],[-29,5]],[[72370,40713,0],[-62,9]],[[72271,40732,0],[-10,3]],[[72160,40764,0],[-141,59]],[[71736,40923,0],[34,24]],[[71770,40947,0],[12,67]],[[71782,41014,0],[-4,33]],[[71778,41047,0],[-5,23]],[[71773,41070,0],[-6,43]],[[71767,41113,0],[-5,23]],[[71762,41136,0],[-2,18]],[[71760,41154,0],[-6,43]],[[71754,41197,0],[-5,26],[-32,211],[-1,16],[3,80]],[[71719,41530,0],[1,48]],[[71720,41578,0],[1,91]],[[71721,41669,0],[8,60]],[[71729,41729,0],[9,8]],[[71738,41737,0],[92,305],[60,111],[14,24],[31,52],[9,11]],[[71944,42240,0],[118,314],[5,17]],[[72067,42571,0],[120,325]],[[72187,42896,0],[-33,65]],[[72154,42961,0],[114,-38]],[[72337,42537,0],[27,-120]],[[71720,41578,0],[-1,-34],[0,-14]],[[71754,41197,0],[1,-12],[2,-10],[3,-21]],[[71762,41136,0],[2,-8],[3,-15]],[[71767,41113,0],[2,-16],[1,-5],[2,-11],[1,-11]],[[71773,41070,0],[4,-21],[1,-2]],[[71778,41047,0],[0,-1],[4,-32]],[[71782,41014,0],[-6,-36],[-6,-31]],[[71538,40952,0],[-460,77]],[[71078,41029,0],[-225,34]],[[70806,41069,0],[-193,-24]],[[70613,41045,0],[-151,103]],[[70462,41148,0],[-55,38]],[[70407,41186,0],[0,1],[13,26]],[[70420,41213,0],[16,32]],[[70436,41245,0],[36,74],[74,152]],[[70546,41471,0],[-11,71],[-7,38]],[[70528,41580,0],[38,-2]],[[70566,41578,0],[3,29],[6,50]],[[70575,41657,0],[14,132],[2,31]],[[70591,41820,0],[0,19],[1,35]],[[70592,41874,0],[1,47],[0,48],[0,17],[0,13],[0,109]],[[70593,42108,0],[0,15]],[[70593,42123,0],[20,93]],[[70613,42216,0],[5,23],[20,98],[7,26]],[[70645,42363,0],[25,-5],[21,-4]],[[70691,42354,0],[26,-3],[32,-3]],[[70749,42348,0],[43,-3],[20,-1]],[[70812,42344,0],[63,-5]],[[70875,42339,0],[37,-3],[33,-3]],[[70945,42333,0],[66,-5]],[[71011,42328,0],[24,-1],[41,-3]],[[71076,42324,0],[68,-5],[68,-4]],[[71212,42315,0],[47,-3],[22,-2]],[[71281,42310,0],[56,-4],[29,-1],[4,-1],[59,-4],[55,-6],[50,-3]],[[71534,42291,0],[48,-4],[29,-3]],[[71611,42284,0],[11,-1],[8,0]],[[71630,42283,0],[26,-1]],[[71656,42282,0],[54,-5],[51,-4]],[[71761,42273,0],[8,-2],[17,-3]],[[71786,42268,0],[25,-4],[21,-4],[112,-20]],[[71738,41737,0],[-8,-7],[-1,-1]],[[71729,41729,0],[-1,-9],[-7,-51]],[[71936,43034,0],[28,-8]],[[71964,43026,0],[190,-65]],[[72187,42896,0],[-48,-130],[-72,-195]],[[71786,42268,0],[-25,5]],[[71761,42273,0],[-105,9]],[[71630,42283,0],[-19,1]],[[71611,42284,0],[-77,7]],[[71281,42310,0],[-69,5]],[[71076,42324,0],[-65,4]],[[70945,42333,0],[-70,6]],[[70812,42344,0],[-63,4]],[[70749,42348,0],[-58,6]],[[70691,42354,0],[-46,9]],[[70645,42363,0],[18,95]],[[70663,42458,0],[6,29],[18,96],[6,27],[20,93],[6,29],[28,-6],[24,-5],[28,96],[6,30],[26,94],[7,28],[25,97],[6,28],[23,92],[4,19],[28,100]],[[70924,43305,0],[53,-13],[16,-4]],[[70993,43288,0],[33,-8]],[[71026,43280,0],[58,-18]],[[71084,43262,0],[58,-16]],[[71142,43246,0],[57,-17]],[[71199,43229,0],[50,-14]],[[71249,43215,0],[55,-16],[56,-17],[54,-16]],[[71414,43166,0],[57,-17]],[[71471,43149,0],[9,-1]],[[71480,43148,0],[27,-3]],[[71507,43145,0],[85,-15]],[[71592,43130,0],[99,-16]],[[71691,43114,0],[124,-35]],[[71815,43079,0],[-1,-7],[118,-38],[4,0]],[[70663,42458,0],[-26,5],[-35,7]],[[70602,42470,0],[-33,6],[-28,6]],[[70541,42482,0],[-32,6],[-25,5]],[[70484,42493,0],[-33,6],[-30,7]],[[70421,42506,0],[-31,5]],[[70390,42511,0],[-26,5],[-32,7]],[[70332,42523,0],[-33,6],[-34,7]],[[70265,42536,0],[-51,1],[-34,1],[-51,1],[-57,3],[-59,2],[-49,2]],[[69964,42546,0],[-85,2],[-71,5]],[[69808,42553,0],[12,56],[11,52],[16,71],[16,77],[11,44],[5,27],[18,77],[15,52],[13,56],[40,182],[15,71],[6,25],[13,65],[13,59],[6,32],[5,18],[15,73],[8,30]],[[70046,43620,0],[92,-38],[59,-24],[83,-32]],[[70280,43526,0],[73,-31],[52,-20]],[[70405,43475,0],[70,-31],[32,-13]],[[70507,43431,0],[44,-18],[43,-18],[43,-17],[46,-18],[39,-16],[60,-17],[30,-4],[39,-6],[73,-12]],[[69808,42553,0],[-25,4]],[[69783,42557,0],[-63,2],[-109,3],[-55,2]],[[69556,42564,0],[-60,2]],[[69496,42566,0],[-57,1]],[[69439,42567,0],[-7,0]],[[69432,42567,0],[-108,0],[-106,2],[-63,2],[-53,1],[-69,1]],[[69033,42573,0],[-70,3],[-82,0],[-67,3],[-79,2],[-78,1],[-81,2],[-73,2],[-89,1],[-104,3],[-108,2],[-58,2],[-4,-3],[-19,-1],[-3,3],[-16,0],[-4,3],[-25,-1]],[[68073,42595,0],[0,75],[-3,121],[-2,76],[-3,83],[-2,83],[-5,84],[-2,80],[-4,99],[-4,107],[-1,7],[19,20]],[[68066,43430,0],[194,5]],[[68260,43435,0],[37,3],[30,3]],[[68327,43441,0],[33,4],[43,4]],[[68403,43449,0],[64,7],[10,1]],[[68477,43457,0],[17,2],[57,7]],[[68551,43466,0],[13,2],[18,1]],[[68582,43469,0],[86,11],[78,8],[88,10],[-3,45]],[[68831,43543,0],[0,1],[0,3]],[[68831,43547,0],[6,76],[65,-2],[160,-6]],[[69062,43615,0],[45,-5],[55,-6]],[[69162,43604,0],[70,-7],[2,0]],[[69234,43597,0],[185,-14],[194,-4]],[[69613,43579,0],[11,4],[20,6]],[[69644,43589,0],[41,0],[12,0]],[[69697,43589,0],[7,10],[10,17]],[[69714,43616,0],[58,99]],[[69772,43715,0],[11,17]],[[69783,43732,0],[1,2],[2,3]],[[69786,43737,0],[39,66]],[[69825,43803,0],[235,-98],[-14,-85]],[[69432,42567,0],[6,0],[1,0]],[[69439,42567,0],[9,0],[48,-1]],[[69556,42564,0],[25,0],[30,-1],[109,-3],[63,-3]],[[69808,42553,0],[70,-4],[86,-3]],[[69964,42546,0],[25,0],[24,-1],[59,-2],[57,-3],[51,-1],[34,-1],[28,-1],[23,-1]],[[70265,42536,0],[34,-6],[24,-5],[9,-2]],[[70332,42523,0],[14,-3],[17,-4],[27,-5]],[[70390,42511,0],[19,-3],[12,-2]],[[70421,42506,0],[19,-4],[11,-2],[33,-7]],[[70484,42493,0],[18,-3],[7,-1],[20,-4],[12,-3]],[[70541,42482,0],[28,-5],[24,-5],[9,-2]],[[70602,42470,0],[18,-3],[17,-3],[6,-2],[20,-4]],[[70645,42363,0],[-7,-25],[-1,-1],[-19,-97],[-5,-24]],[[70593,42123,0],[0,-4],[0,-11]],[[70593,42108,0],[0,-108],[0,-11],[0,-19],[-1,-51],[0,-45]],[[70592,41874,0],[-51,15],[-28,8],[-77,16],[-52,12]],[[70384,41925,0],[-75,17],[-166,36]],[[70143,41978,0],[-49,11],[-55,12]],[[70039,42001,0],[-74,18],[-82,18]],[[69883,42037,0],[-46,10],[-57,13]],[[69780,42060,0],[-83,20],[-24,5],[-7,2]],[[69666,42087,0],[-76,17]],[[69590,42104,0],[-69,17],[-73,17]],[[69448,42138,0],[-68,15]],[[69380,42153,0],[-95,19],[-67,12]],[[69218,42184,0],[-18,4],[-7,1]],[[69193,42189,0],[-19,3]],[[69174,42192,0],[-11,3],[-32,6]],[[69131,42201,0],[-79,14]],[[69052,42215,0],[-5,86],[-3,64]],[[69044,42365,0],[0,6],[-2,29]],[[69042,42400,0],[-4,65]],[[69038,42465,0],[-2,54],[-3,54]],[[70575,41657,0],[-9,-79]],[[70528,41580,0],[18,-109]],[[70546,41471,0],[-110,-226]],[[70420,41213,0],[-13,-27]],[[70351,41119,0],[-25,-30]],[[70275,41026,0],[-95,72],[-35,27],[-53,39],[-11,8],[-47,34],[-20,15],[-47,28],[-94,71],[-49,24],[-122,45],[-119,44],[-30,10],[-30,8],[-23,7],[-30,9],[-31,8],[-53,13],[-27,8],[-26,6],[-31,9],[-30,7],[-24,8],[-28,2],[-28,5],[-56,8],[-30,4],[-63,9]],[[69043,41554,0],[19,122],[-1,20],[-1,86],[0,21],[-4,33],[4,35],[-2,11],[-1,96],[-1,18],[-2,163],[-2,56]],[[69131,42201,0],[43,-9]],[[69193,42189,0],[25,-5]],[[69218,42184,0],[67,-13],[95,-18]],[[69448,42138,0],[73,-18],[69,-16]],[[69666,42087,0],[31,-8],[83,-19]],[[69780,42060,0],[103,-23]],[[69883,42037,0],[82,-19],[74,-17]],[[70039,42001,0],[104,-23]],[[70143,41978,0],[166,-37],[75,-16]],[[70384,41925,0],[129,-29],[79,-22]],[[70592,41874,0],[-1,-54]],[[68006,42598,0],[67,-3]],[[69033,42573,0],[3,-55],[2,-53]],[[69042,42400,0],[2,-35]],[[69044,42365,0],[4,-64],[4,-86]],[[69043,41554,0],[-21,1]],[[69022,41555,0],[-36,-3],[-14,1]],[[68972,41553,0],[-10,-1],[-3,0],[-30,-2],[-28,-3],[-27,-1],[-32,-3],[-25,-1],[-31,-1],[-27,11],[-15,6],[-71,27],[-64,17],[-21,6],[-1,0],[-117,21],[-19,2],[-21,6],[-38,10],[-29,9],[-25,7],[-30,8],[-57,16],[-27,7],[-26,8],[-26,7],[-17,6],[-47,26],[-21,12],[-6,6],[-3,3],[-12,15],[-18,21],[-20,23],[-18,21],[-19,22],[-8,9],[-28,35],[-4,5],[-17,18],[-20,23],[-21,8],[-20,8],[-20,10],[-22,8],[-10,4],[-10,4],[-25,11],[-5,4],[-25,17]],[[67756,42028,0],[159,279],[31,54]],[[67946,42361,0],[65,120]],[[68011,42481,0],[-5,117]],[[68972,41553,0],[9,-133]],[[68981,41420,0],[0,-3],[4,-66],[1,-7],[0,-1],[0,-8],[6,-74],[3,-49],[2,-37],[1,-6],[0,-2],[0,-7],[2,-23],[1,-20],[0,-5],[1,-15],[2,-21],[1,-12],[0,-9],[4,-52],[3,-47],[4,-65],[2,-21],[2,-39],[3,-66],[2,-36],[8,-105],[2,-30],[3,-60],[-43,-26],[-18,-81]],[[67948,41002,0],[-26,13]],[[67912,41020,0],[-40,19]],[[67794,41078,0],[-38,19]],[[67756,41097,0],[-38,18]],[[67623,41162,0],[-156,78]],[[67372,41287,0],[17,80],[6,22],[42,174],[-57,-3],[-21,-1],[-20,-4],[-50,18],[-13,4],[1,2],[0,1],[11,47],[17,72],[8,33],[3,17],[19,83],[2,8],[-18,4],[-2,0],[10,50]],[[67327,41894,0],[43,194]],[[67370,42088,0],[0,1],[12,59]],[[67382,42148,0],[23,-7]],[[67405,42141,0],[28,-9]],[[67433,42132,0],[28,-8],[28,-9]],[[67489,42115,0],[23,-7]],[[67512,42108,0],[28,-7]],[[67540,42101,0],[34,-10]],[[67574,42091,0],[11,-6]],[[67585,42085,0],[171,-57]],[[71734,40043,0],[3,-2],[61,-41]],[[71806,39993,0],[58,-41],[40,-29]],[[71619,39528,0],[-86,64]],[[71533,39592,0],[-35,26],[-3,3]],[[71495,39621,0],[-5,3],[-26,38]],[[71464,39662,0],[-34,51],[-3,4]],[[71427,39717,0],[-24,39],[-5,3],[-6,5],[33,42],[35,44],[-293,46]],[[71167,39896,0],[-7,-39],[-1,1],[-1,0]],[[71158,39858,0],[-102,19],[-25,6]],[[71029,39879,0],[-29,5],[-45,8],[-80,15],[-8,1],[-68,13]],[[70820,39956,0],[-1,0],[-11,2]],[[70731,39973,0],[-6,-14],[-6,-15],[-33,19]],[[70686,39963,0],[-17,5],[-22,7],[-26,9]],[[70459,40053,0],[-25,8],[-29,9]],[[70392,40074,0],[-15,4],[-25,8],[-10,3],[-23,7]],[[70319,40096,0],[-20,7],[2,8]],[[70301,40111,0],[-17,6],[-8,4],[-29,11]],[[70237,40136,0],[-18,6],[-26,11],[-28,11],[-26,10],[-20,7],[-10,4],[-8,4]],[[70101,40189,0],[-17,5],[-62,23]],[[68981,41420,0],[36,122],[5,13]],[[70730,40573,0],[52,-34]],[[70804,40524,0],[30,-21],[26,-17]],[[65335,44009,0],[11,3],[35,5]],[[65381,44017,0],[20,10],[29,15],[35,2]],[[65465,44044,0],[32,2]],[[65497,44046,0],[26,-184],[38,10],[48,13],[54,21],[56,24],[53,27],[25,12]],[[65797,43969,0],[39,26]],[[65836,43995,0],[14,12],[35,31],[24,-89],[-64,-46],[85,-104],[7,-6],[73,-81],[-40,-33],[1,-6]],[[65971,43673,0],[-21,-16],[20,-60],[6,-22],[-11,-9],[-13,-11],[-27,-22],[-259,-212],[-17,-17],[-16,-20],[-12,-19],[-10,-24]],[[65611,43241,0],[-63,2],[-123,3]],[[65425,43246,0],[-3,5]],[[65422,43251,0],[-15,1],[-141,5]],[[65266,43257,0],[-96,6],[-72,5]],[[65098,43268,0],[-32,2],[-8,0]],[[65058,43270,0],[-103,7],[-167,-19]],[[64788,43258,0],[-71,-15]],[[64717,43243,0],[-163,-35]],[[64554,43208,0],[-5,-1]],[[64549,43207,0],[-106,-23]],[[64443,43184,0],[-12,1],[-97,-19]],[[64334,43166,0],[-58,-8]],[[64276,43158,0],[-84,-10]],[[64192,43148,0],[-113,-12],[-76,4],[-43,5],[-46,9],[-333,91],[-63,20]],[[63518,43265,0],[-220,69],[-186,58]],[[63112,43392,0],[25,47]],[[63137,43439,0],[1,10],[9,-3],[117,322]],[[63264,43768,0],[15,45],[0,1]],[[63279,43814,0],[50,51],[7,10],[75,76],[15,20],[-230,203],[-8,9],[4,6],[-8,7],[-19,-16]],[[63165,44180,0],[-10,9],[-5,6]],[[63150,44195,0],[27,28]],[[63177,44223,0],[33,34],[44,45]],[[63254,44302,0],[7,6],[8,6],[-1,-15],[0,-11],[5,-14],[7,-9],[273,-253],[94,-82],[3,18],[2,11],[4,23]],[[63656,43982,0],[194,73]],[[63850,44055,0],[59,20],[-4,7],[0,15],[0,26],[15,29],[36,9]],[[63956,44161,0],[6,17],[1,2]],[[63963,44180,0],[232,-61]],[[64195,44119,0],[45,1],[3,0]],[[64243,44120,0],[47,0],[59,7]],[[64349,44127,0],[6,2],[33,7]],[[64388,44136,0],[96,26],[20,5],[18,4],[25,12],[31,15],[32,19],[24,15]],[[64634,44232,0],[19,13],[66,51]],[[64719,44296,0],[22,19],[26,25],[30,31],[33,41],[25,33]],[[64855,44445,0],[90,-58]],[[64945,44387,0],[55,-54],[47,-46],[26,-61],[15,-36],[10,-28],[11,-37],[-1,-51],[-2,-45],[-5,-29],[6,-15],[40,-13],[21,-13],[54,4],[20,0],[25,-5],[10,10],[22,10],[36,31]],[[66819,44212,0],[4,0],[29,9]],[[66852,44221,0],[6,2]],[[66858,44223,0],[13,6],[9,4]],[[66880,44233,0],[20,-1]],[[66900,44232,0],[13,1],[24,2]],[[66937,44235,0],[40,-4],[42,4]],[[67019,44235,0],[4,1],[1,0]],[[67024,44236,0],[39,5],[0,3],[76,5]],[[67139,44249,0],[1,-12],[4,-84]],[[67144,44153,0],[5,-67],[4,-56]],[[67153,44030,0],[10,-90]],[[67163,43940,0],[1,-27],[0,-35]],[[67164,43878,0],[3,-14],[2,-31],[0,-12],[2,-51]],[[67171,43770,0],[2,0],[52,-2]],[[67225,43768,0],[32,-28],[8,-51],[2,-11]],[[67267,43678,0],[12,-79],[19,-123]],[[67298,43476,0],[5,0],[36,-1]],[[67339,43475,0],[50,2],[6,0]],[[67395,43477,0],[2,-8],[179,3],[9,0],[78,-7],[289,-12]],[[67952,43453,0],[16,-14],[12,-11]],[[67980,43428,0],[5,-139],[3,-100],[3,-83],[2,-76],[2,-82],[2,-79],[4,-82],[3,-120],[2,-69]],[[68006,42598,0],[4,-91],[1,-26]],[[68011,42481,0],[-40,-73],[-25,-47]],[[67756,42028,0],[-58,20],[-113,37]],[[67585,42085,0],[-6,3],[-5,3]],[[67540,42101,0],[-15,4],[-13,3]],[[67512,42108,0],[-19,6],[-4,1]],[[67433,42132,0],[-15,5],[-13,4]],[[67405,42141,0],[-21,6],[-2,1]],[[67382,42148,0],[-3,1],[-3,1],[-15,6],[-58,20],[-1,0],[-25,10],[-29,9],[-25,9],[-27,10],[-30,10],[-17,5],[-58,17],[-13,4],[-12,3],[-118,33],[14,43],[-57,18],[-59,20],[-30,12],[-23,10],[-40,22],[-60,38],[-20,12],[-18,10],[-161,98],[-129,79],[0,1],[-1,4],[-232,146],[-5,3],[-18,11],[-197,115],[-126,71],[-47,24],[-45,23],[-32,24],[-2,2],[-17,19],[-13,21],[-5,8],[-9,25],[-3,10],[-4,13],[-2,21],[0,3],[0,25],[4,24]],[[65971,43673,0],[126,101]],[[66097,43774,0],[24,21],[101,83]],[[66222,43878,0],[117,97],[7,5],[52,44],[238,197],[66,53],[74,61]],[[66776,44335,0],[28,-80]],[[66804,44255,0],[2,-8],[13,-35]],[[67010,45435,0],[-11,-2],[11,-77],[8,-53],[2,-15],[12,-104],[6,-35],[8,-53],[-237,-36],[-2,4],[-56,-10],[28,-181],[-83,-29]],[[66696,44844,0],[-501,-174]],[[66195,44670,0],[30,-80]],[[66225,44590,0],[50,-125],[39,-100]],[[66314,44365,0],[8,-21]],[[66322,44344,0],[18,-46]],[[66340,44298,0],[3,1],[36,4]],[[66379,44303,0],[10,1]],[[66389,44304,0],[41,6],[28,4]],[[66458,44314,0],[6,0],[209,26]],[[66673,44340,0],[8,0]],[[66681,44340,0],[49,3]],[[66730,44343,0],[61,5],[-15,-13]],[[66222,43878,0],[-125,-104]],[[65836,43995,0],[-23,-14],[-16,-12]],[[65497,44046,0],[-18,-1],[-14,-1]],[[65381,44017,0],[-22,-4],[-24,-4]],[[64945,44387,0],[-62,39],[-28,19]],[[64855,44445,0],[20,31],[16,30]],[[64891,44506,0],[1,3],[5,15]],[[64897,44524,0],[18,51],[14,53],[2,8],[3,10],[-14,32],[-17,40],[-18,39],[-32,-19],[-24,-12],[-31,-10],[-27,-4]],[[64771,44712,0],[-43,0]],[[64728,44712,0],[-25,4],[-20,7],[-40,18],[-12,8],[-61,38],[-36,24],[-47,44],[-23,21],[-11,10]],[[64453,44886,0],[6,9],[14,24]],[[64473,44919,0],[31,52],[51,88],[4,7],[34,58],[19,33]],[[64612,45157,0],[24,30]],[[64636,45187,0],[20,23],[18,19],[18,16],[30,23],[43,28],[26,14],[33,15],[23,10],[54,17]],[[64901,45352,0],[5,1],[2,0],[1,0],[2,0],[1,1],[2,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[11,0],[11,0],[1,-1],[19,0],[2,0],[9,0],[1,-1],[7,0],[1,-1],[6,0],[1,-1],[4,0],[1,0],[4,0],[1,-1],[4,0],[1,0],[3,0],[1,-1],[3,0],[2,0],[3,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[3,0],[1,0],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1]],[[65161,45347,0],[2,0]],[[65163,45347,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[3,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[125,-59],[3,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,2],[1,1],[1,1],[1,0],[0,2],[1,1],[1,1],[1,1],[0,1],[0,1],[1,2],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1]],[[65524,45247,0],[0,3]],[[65524,45250,0],[92,1],[-43,129],[-77,230],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,2],[1,1],[1,1],[0,1],[1,1],[0,1],[2,2],[1,1],[1,0],[1,1],[1,1],[2,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[3,0],[137,-71],[147,-74],[8,-5],[47,-22]],[[65929,45512,0],[8,-3],[4,-2]],[[65941,45507,0],[37,-9],[9,-1],[3,0],[1,-1],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,0],[1,0],[1,0],[1,0],[1,-1]],[[66017,45491,0],[2,0]],[[66019,45491,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0]],[[66232,45511,0],[2,1]],[[66234,45512,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,1],[1,0]],[[66260,45522,0],[2,1]],[[66262,45523,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0]],[[66303,45545,0],[1,1],[1,0]],[[66305,45546,0],[2,1],[1,1]],[[66308,45548,0],[1,1],[1,0]],[[66310,45549,0],[1,0],[1,1]],[[66312,45550,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1]],[[66317,45554,0],[1,0]],[[66318,45554,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0]],[[66325,45558,0],[1,1],[0,1],[1,1]],[[66327,45561,0],[1,0]],[[66328,45561,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0]],[[66336,45566,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1]],[[66342,45571,0],[1,0]],[[66343,45571,0],[1,1],[1,0]],[[66345,45572,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,2],[1,0],[1,1],[1,0]],[[66367,45588,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1]],[[66377,45596,0],[1,1],[0,1]],[[66378,45598,0],[1,1],[9,7]],[[66388,45606,0],[4,2],[0,2],[9,7],[1,1],[7,5],[0,2],[6,5],[1,1],[3,3],[4,4],[1,0],[0,1],[3,2],[0,1],[1,2],[2,1],[1,1],[0,2],[3,1],[1,1],[2,3],[1,1],[2,2],[1,2],[1,1],[1,1],[2,1],[0,1],[2,2],[0,1],[2,2],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1]],[[66454,45674,0],[2,1]],[[66456,45675,0],[0,1],[1,1]],[[66457,45677,0],[2,2]],[[66459,45679,0],[1,1],[1,2],[1,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,2]],[[66466,45689,0],[2,1]],[[66468,45690,0],[0,1],[1,1],[1,0],[1,2],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,2],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,2],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,2],[1,0],[0,2],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,2],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1]],[[66514,45761,0],[1,2],[12,23]],[[66527,45786,0],[74,149],[69,139],[40,81]],[[66710,46155,0],[21,35],[18,24]],[[66749,46214,0],[23,27],[28,30],[16,16]],[[66816,46287,0],[12,11],[26,7],[12,-3],[19,-19],[13,-87],[-11,-2],[11,-64]],[[66898,46130,0],[26,-162],[5,-33],[17,-96]],[[66946,45839,0],[5,-39],[2,-11],[57,-354]],[[69766,43826,0],[59,-23]],[[69786,43737,0],[-14,-22]],[[69714,43616,0],[-17,-27]],[[69697,43589,0],[-53,0]],[[69644,43589,0],[-31,-10]],[[69234,43597,0],[-72,7]],[[69162,43604,0],[-100,11]],[[68831,43547,0],[0,-4]],[[68582,43469,0],[-31,-3]],[[68551,43466,0],[-74,-9]],[[68477,43457,0],[-74,-8]],[[68403,43449,0],[-76,-8]],[[68327,43441,0],[-67,-6]],[[68066,43430,0],[-86,-2]],[[67980,43428,0],[-28,25]],[[67395,43477,0],[-56,-2]],[[67339,43475,0],[-41,1]],[[67298,43476,0],[-31,202]],[[67225,43768,0],[-54,2]],[[67164,43878,0],[-1,62]],[[67153,44030,0],[-9,123]],[[67144,44153,0],[-5,96]],[[67024,44236,0],[-5,-1]],[[66937,44235,0],[-37,-3]],[[66880,44233,0],[-22,-10]],[[66852,44221,0],[-33,-9]],[[66819,44212,0],[-15,43]],[[66730,44343,0],[-41,-3],[-8,0]],[[66673,44340,0],[-30,-5],[-44,-5],[-77,-9],[-64,-7]],[[66458,44314,0],[-69,-10]],[[66379,44303,0],[-39,-5]],[[66322,44344,0],[-7,18],[-1,3]],[[66225,44590,0],[0,2],[-30,78]],[[66195,44670,0],[23,8],[478,166]],[[67010,45435,0],[80,10],[57,9]],[[67147,45454,0],[13,-67]],[[67160,45387,0],[42,0],[81,-3],[45,-3],[82,-9],[48,-8]],[[67458,45364,0],[83,-15],[99,-20]],[[67640,45329,0],[78,-16],[97,-21]],[[67815,45292,0],[-2,-6],[-7,-30],[1,-3],[-18,-48],[12,-15]],[[67801,45190,0],[8,-17]],[[67809,45173,0],[9,-41],[20,-105],[88,-441],[6,-1],[26,-154],[1,-26],[-3,-14],[-5,-5],[3,-6],[35,-6],[6,2],[262,-54],[133,-23],[108,-20],[13,-5],[43,-13],[28,-7],[16,-4],[30,-6],[9,-2],[35,-11],[118,-34],[3,-1],[38,-12],[30,-10],[47,-15],[140,-53],[62,-24],[415,-161],[88,-36],[153,-59]],[[69853,47111,0],[2,-3]],[[69855,47108,0],[10,-16]],[[69865,47092,0],[28,-44]],[[69893,47048,0],[138,53],[36,0],[17,0],[12,0],[71,0],[19,-18]],[[70186,47083,0],[7,-7]],[[70193,47076,0],[0,-6],[1,-40],[2,-24],[1,-19],[1,-13],[3,-30],[6,-34],[3,-11],[1,-8],[0,-7],[4,-26]],[[70215,46858,0],[1,-7],[7,-40]],[[70223,46811,0],[9,-33],[14,-49],[10,-32],[1,-2],[2,-7],[1,-4],[7,-16],[8,-20],[16,-39],[9,-22],[19,-44]],[[70319,46543,0],[11,-25]],[[70330,46518,0],[19,-44],[12,-28],[31,-74],[31,-75],[27,-65],[3,-8],[32,-75],[21,-51]],[[70506,46098,0],[-5,-10]],[[70501,46088,0],[-3,-7],[-8,-17]],[[70490,46064,0],[-79,-27],[-27,-10]],[[70384,46027,0],[-41,-14],[-48,-17]],[[70295,45996,0],[-47,-16],[-39,-15],[-74,-26],[-15,-4]],[[70120,45935,0],[-49,-20],[-27,-12]],[[70044,45903,0],[-20,-10],[-24,-12],[-34,-18]],[[69966,45863,0],[-3,-2],[-38,-22]],[[69925,45839,0],[-45,-27]],[[69880,45812,0],[-124,-92],[-78,-57]],[[69678,45663,0],[-57,-43],[-101,-74],[-41,-30],[-140,-105],[-45,-33]],[[69294,45378,0],[-27,-20],[-6,-5],[-13,-10]],[[69248,45343,0],[-48,-32],[-49,-29],[-56,-30]],[[69095,45252,0],[-64,-28]],[[69031,45224,0],[-47,-17]],[[68984,45207,0],[-64,-19],[-45,-13]],[[68875,45175,0],[-76,-15],[-37,-6],[-57,-6],[-12,-1]],[[68693,45147,0],[-54,-2],[-26,0],[-93,4]],[[68520,45149,0],[-48,5]],[[68472,45154,0],[-29,5],[-22,3]],[[68421,45162,0],[-79,18]],[[68342,45180,0],[-44,9],[-130,28]],[[68168,45217,0],[-56,12],[-107,23],[-20,4]],[[67985,45256,0],[-103,22],[-58,12],[-9,2]],[[67640,45329,0],[-119,24],[-63,11]],[[67160,45387,0],[-7,38],[-6,29]],[[66946,45839,0],[-48,291]],[[66816,46287,0],[-42,79],[21,24],[11,21],[6,23],[1,15],[-45,124],[-45,116],[-69,192],[-42,140],[106,34],[-21,49],[-9,22]],[[66688,47126,0],[1,15],[3,22],[2,11],[8,18],[6,11],[7,10],[24,26],[32,12]],[[66771,47251,0],[30,4]],[[66801,47255,0],[38,5],[101,5],[53,0]],[[66993,47265,0],[202,-1]],[[67195,47264,0],[123,-5],[41,-2],[161,-14],[3,0],[17,-2],[282,-34]],[[67822,47207,0],[178,-21]],[[68000,47186,0],[82,-8],[266,-32],[54,-10],[44,-8],[57,-8]],[[68503,47120,0],[6,5],[40,38]],[[68549,47163,0],[50,46],[17,16],[20,26],[23,2],[40,10],[31,8],[25,9],[29,16],[33,19]],[[68817,47315,0],[46,31]],[[68863,47346,0],[28,27],[21,24]],[[68912,47397,0],[22,30],[4,6]],[[68938,47433,0],[7,9],[17,-8],[42,-6],[17,5],[46,3],[26,-6],[2,-1]],[[69095,47429,0],[-42,-65],[42,65]],[[69095,47429,0],[6,-2],[14,-2],[23,-2],[3,0],[56,-5],[35,-2],[6,3],[36,82],[89,-22],[22,-45],[19,-49],[113,2],[67,1],[82,1],[11,-6],[5,-5],[25,-35],[100,-160],[3,-5],[43,-67]],[[70366,49249,0],[234,-110]],[[70600,49139,0],[5,-2],[-23,-33],[2,-2],[15,-6],[14,-7],[102,-58],[75,-38],[94,-43]],[[70884,48950,0],[-1,0]],[[70883,48950,0],[0,-1],[-43,-24]],[[70840,48925,0],[8,-15],[5,-8]],[[70853,48902,0],[3,-3],[0,-1]],[[70856,48898,0],[5,-4],[12,-10]],[[70873,48884,0],[40,-20],[11,-6],[30,-16],[17,-13],[15,-10],[16,-13],[-6,-10],[-24,-42],[-33,-70],[-88,38]],[[70851,48722,0],[-98,42]],[[70753,48764,0],[-12,-77]],[[70741,48687,0],[-1,-11],[-12,-90]],[[70728,48586,0],[-79,14],[15,-34],[49,-64],[-9,-51]],[[70704,48451,0],[54,-13],[8,-2]],[[70766,48436,0],[12,-1]],[[70778,48435,0],[-24,-91],[-26,-103]],[[70728,48241,0],[-75,-6],[-31,-157],[184,-26],[150,-16],[44,-5],[17,8],[18,4],[17,-2],[11,-1],[26,-18],[64,-4],[29,-2],[3,-39],[0,-19]],[[71185,47958,0],[0,-2],[0,-22]],[[71185,47934,0],[42,-14],[50,-17],[3,-107],[185,3],[1,0],[10,1],[-1,-17],[6,-67],[3,-20],[2,-10],[-130,-47],[10,-14],[28,-31],[3,-2],[14,-10],[13,19],[22,31],[20,16],[4,3],[30,-13],[8,-22],[23,-64]],[[71531,47552,0],[-49,-63]],[[71482,47489,0],[-11,7],[-25,17]],[[71446,47513,0],[-68,-2],[-18,-1]],[[71360,47510,0],[8,-7]],[[71368,47503,0],[72,-43]],[[71440,47460,0],[20,-14],[11,-6]],[[71471,47440,0],[5,-4],[4,-2]],[[71480,47434,0],[18,-12],[14,-10]],[[71512,47412,0],[11,-8],[1,-1]],[[71524,47403,0],[11,-6]],[[71535,47397,0],[-23,-31],[-79,-105],[28,-21],[-106,-53],[0,-16],[-18,7],[-30,-14],[-35,-16],[-83,-31],[-3,-1],[-79,-33],[-27,-1],[-28,5],[-13,1],[-43,4],[-77,1],[-107,1],[-93,0],[-115,1],[-33,-26],[-4,-22],[-2,-16],[-1,-13],[-2,-39],[2,-45],[4,-37],[6,-43],[12,-46],[9,-26],[5,-13],[31,-73],[46,-111],[13,-33],[28,-68],[32,-78],[30,-72],[30,-73],[23,-55],[35,-15],[81,29],[0,-1],[81,29],[55,20],[26,9],[44,16],[26,9],[48,18],[70,-29],[27,-16],[43,-15]],[[71369,46260,0],[21,-8],[13,-4]],[[71403,46248,0],[3,-3],[23,-14],[75,-48],[9,-5],[84,-53],[-63,-79],[-8,-11]],[[71526,46035,0],[-17,-21],[-29,-38],[-66,-83],[-63,-81],[-37,-48]],[[71314,45764,0],[-75,-96],[-65,-84]],[[71174,45584,0],[-36,-47],[-70,-87],[-60,-69],[-41,28],[-42,27],[-18,12],[-48,38],[-25,23],[-36,34],[-34,37],[-46,58],[-16,23],[-23,35],[-32,51],[-8,13],[-29,67],[-11,25]],[[70599,45852,0],[-1,2],[-30,91]],[[70568,45945,0],[-8,25]],[[70560,45970,0],[-37,94],[-1,3]],[[70522,46067,0],[-16,31]],[[70330,46518,0],[-8,18],[-3,7]],[[70223,46811,0],[-6,34],[-2,13]],[[70193,47076,0],[-6,6],[-1,1]],[[69893,47048,0],[-27,42],[-1,2]],[[69855,47108,0],[10,35],[37,141],[19,76],[30,104],[11,43],[15,60]],[[69977,47567,0],[2,5]],[[69979,47572,0],[1,3],[9,34],[6,21],[11,42]],[[70006,47672,0],[-50,68]],[[69956,47740,0],[-7,0]],[[69949,47740,0],[-4,-1],[-17,27],[-17,28],[-7,21],[-15,46],[-9,25],[-3,7],[0,1],[-1,6],[1,124]],[[69877,48024,0],[0,7]],[[69877,48031,0],[-14,89],[-4,24],[-5,29],[-18,74],[-12,44],[-9,43],[-13,53],[-21,100],[2,5],[20,64],[8,29],[8,28]],[[69819,48613,0],[22,73]],[[69841,48686,0],[6,19],[26,88]],[[69873,48793,0],[5,21]],[[69878,48814,0],[20,59],[2,9],[64,211],[28,66],[34,33],[62,31],[78,14]],[[70166,49237,0],[77,-2]],[[70243,49235,0],[54,-10]],[[70297,49225,0],[1,3],[9,24]],[[70307,49252,0],[3,6],[5,16]],[[70315,49274,0],[51,-25]],[[72532,44081,0],[41,5]],[[72573,44086,0],[51,-42]],[[72624,44044,0],[-55,-80],[-30,-41],[-63,-89],[-83,-121],[-28,-37],[-5,-8],[-6,-14],[-7,-13],[-3,-16],[-5,-34],[-12,-88],[-9,-75],[-12,-79],[0,-15],[-11,-103],[-13,-82],[-12,-82]],[[72270,43067,0],[-7,-49],[0,-1]],[[72263,43017,0],[16,-3],[-11,-91]],[[71964,43026,0],[-1,0],[-27,8]],[[71815,43079,0],[-29,8],[-95,27]],[[71691,43114,0],[-74,12],[-25,4]],[[71592,43130,0],[-54,10],[-31,5]],[[71507,43145,0],[-5,1],[-22,2]],[[71471,43149,0],[-45,14],[-12,3]],[[71249,43215,0],[-30,9],[-20,5]],[[71199,43229,0],[-18,6],[-39,11]],[[71142,43246,0],[-50,13],[-8,3]],[[71026,43280,0],[-20,5],[-13,3]],[[70993,43288,0],[46,73],[15,28],[48,93],[49,95],[16,29],[53,97],[7,14]],[[71227,43717,0],[41,76]],[[71268,43793,0],[8,16],[1,2],[14,26],[35,66],[25,48],[19,39],[45,86],[36,70],[18,35],[21,38],[41,77],[12,23],[9,18],[12,23],[10,21],[27,49],[16,31],[5,10],[25,49],[35,9],[22,39]],[[71704,44568,0],[1,-1],[14,-8],[34,-20],[70,-41],[70,-41],[69,-41],[35,-21],[36,-22],[72,-42],[73,-42],[75,-44],[70,-41],[69,-41],[85,-51],[55,-31]],[[70733,45060,0],[29,41],[65,-46]],[[70827,45055,0],[66,-46],[67,-46],[66,-45],[68,-46],[70,-46],[19,-12],[107,-52],[84,-39],[90,-42],[80,-37],[50,-23],[29,-12],[60,-25],[21,-16]],[[71268,43793,0],[-3,-6],[-38,-70]],[[70507,43431,0],[-34,14],[-68,30]],[[70280,43526,0],[37,73],[1,27],[-191,78],[93,217],[77,174],[30,-1],[20,20]],[[70347,44114,0],[4,69],[-1,0],[6,104],[3,42],[2,43]],[[70361,44372,0],[5,83],[2,37]],[[70368,44492,0],[3,48],[4,69]],[[70375,44609,0],[1,13],[1,16]],[[70377,44638,0],[8,119],[6,94]],[[70391,44851,0],[3,60]],[[70394,44911,0],[15,203],[76,43]],[[70485,45157,0],[12,-23],[6,-11],[3,-8]],[[70506,45115,0],[63,-86],[73,-63],[14,-10],[77,104]],[[73344,43067,0],[19,-85]],[[73363,42982,0],[10,2]],[[73373,42984,0],[6,-29]],[[73379,42955,0],[25,-107],[33,-159]],[[73412,42689,0],[-118,46],[-155,5],[-93,19],[-279,66],[-73,15],[-176,35],[-250,48]],[[72263,43017,0],[7,50]],[[72624,44044,0],[75,-62],[41,-35]],[[72740,43947,0],[9,-7],[91,-79]],[[72840,43861,0],[83,-71],[11,-9],[73,-64],[77,-69]],[[73084,43648,0],[97,-84],[1,0],[69,-35]],[[73251,43529,0],[7,-4],[67,-44],[95,-62],[44,-29]],[[73464,43390,0],[31,-21]],[[73495,43369,0],[18,-12]],[[73513,43357,0],[16,-21]],[[73529,43336,0],[10,-12]],[[73539,43324,0],[4,-9]],[[73543,43315,0],[-1,-15]],[[73542,43300,0],[-2,-9]],[[73540,43291,0],[-6,-6]],[[73534,43285,0],[-66,-57],[-1,-1]],[[73467,43227,0],[-83,-72]],[[73384,43155,0],[-5,-3]],[[73379,43152,0],[-64,-45]],[[73315,43107,0],[-1,-1]],[[73314,43106,0],[-2,-9]],[[73312,43097,0],[8,-2],[8,-4]],[[73328,43091,0],[7,-4]],[[73335,43087,0],[4,-5]],[[73339,43082,0],[2,-5]],[[73341,43077,0],[3,-10]],[[73344,45923,0],[47,-40]],[[73391,45883,0],[-52,-74]],[[73339,45809,0],[-93,-132]],[[73246,45677,0],[-150,-214],[-27,-38]],[[73069,45425,0],[-51,-73]],[[73018,45352,0],[-39,-54]],[[72979,45298,0],[-106,-149]],[[72873,45149,0],[-80,-114],[-72,-100]],[[72721,44935,0],[-36,-50]],[[72685,44885,0],[-27,-37]],[[72658,44848,0],[-194,-270]],[[72464,44578,0],[-62,-84]],[[72402,44494,0],[-38,-46]],[[72364,44448,0],[58,-39]],[[72422,44409,0],[49,-65]],[[72471,44344,0],[20,-29]],[[72491,44315,0],[62,-94]],[[72553,44221,0],[53,-89]],[[72606,44132,0],[-32,-45],[-42,-6]],[[70827,45055,0],[-66,46],[-28,-41]],[[70506,45115,0],[-44,86]],[[70462,45201,0],[-34,90],[-14,96]],[[70414,45387,0],[1,96]],[[70415,45483,0],[13,100]],[[70428,45583,0],[10,75]],[[70438,45658,0],[-7,73]],[[70431,45731,0],[-26,71]],[[70405,45802,0],[-26,71],[-9,23]],[[70370,45896,0],[107,43],[83,31]],[[70568,45945,0],[31,-93]],[[71174,45584,0],[64,83],[76,97]],[[71526,46035,0],[125,-78],[175,-109],[58,-36]],[[71884,45812,0],[60,-37]],[[71944,45775,0],[115,-73]],[[72059,45702,0],[52,-34]],[[72111,45668,0],[73,-46]],[[72184,45622,0],[98,-62],[97,-62]],[[72379,45498,0],[70,-45],[51,-32]],[[72500,45421,0],[107,150]],[[72607,45571,0],[70,100]],[[72677,45671,0],[1,1],[17,-12],[3,3]],[[72698,45663,0],[46,43]],[[72744,45706,0],[29,27]],[[72773,45733,0],[23,30],[-7,5]],[[72789,45768,0],[-26,18]],[[72763,45786,0],[124,180],[71,102],[17,-10]],[[72975,46058,0],[24,-17]],[[72999,46041,0],[29,-18]],[[73028,46023,0],[72,101]],[[73100,46124,0],[114,-94],[130,-107]],[[74576,45583,0],[14,-13]],[[74590,45570,0],[25,-23],[36,-31],[5,-5],[13,-13],[26,-24],[14,-15]],[[74709,45459,0],[5,-5]],[[74714,45454,0],[-75,-57],[-52,-35],[-8,-6]],[[74579,45356,0],[-8,-5]],[[74571,45351,0],[-56,-39],[-51,-34],[-14,-10],[54,-63],[-71,-16],[-20,-8]],[[74413,45181,0],[-20,-5]],[[74393,45176,0],[-32,0],[-8,-18],[-3,-8],[-18,-47],[4,-2],[-18,-24],[-12,-15],[-6,-7],[-4,-4],[-121,-112]],[[74175,44939,0],[-11,1],[-10,2],[-31,-41],[-65,-84],[-4,-8],[-23,-47],[-74,-102],[-19,-26],[-23,-33]],[[73915,44601,0],[-33,-45],[-19,-26],[-147,-204]],[[73716,44326,0],[-9,-14],[-21,-32]],[[73686,44280,0],[-35,-48],[-49,-69],[-60,-82],[-7,-11],[-10,-14],[-96,-135],[-39,-55],[-36,-48],[-144,-198]],[[73210,43620,0],[-5,-7]],[[73205,43613,0],[-22,-50]],[[73183,43563,0],[-99,85]],[[72840,43861,0],[-100,86]],[[72573,44086,0],[33,46]],[[72606,44132,0],[-37,63],[-16,26]],[[72491,44315,0],[-2,2],[-18,27]],[[72471,44344,0],[-14,17],[-35,48]],[[72422,44409,0],[-18,12],[-40,27]],[[72364,44448,0],[2,3],[23,27],[12,15],[1,1]],[[72402,44494,0],[30,41],[32,43]],[[72464,44578,0],[69,96],[18,26],[107,148]],[[72658,44848,0],[15,22],[12,15]],[[72685,44885,0],[13,18],[23,32]],[[72873,45149,0],[11,15],[8,11],[87,123]],[[72979,45298,0],[5,7],[11,15],[23,32]],[[73018,45352,0],[19,29],[32,44]],[[73246,45677,0],[32,45],[61,87]],[[73339,45809,0],[29,42],[23,32]],[[73391,45883,0],[15,-12],[40,-31],[87,-57],[30,-20],[1,-3],[3,-5]],[[73567,45755,0],[2,-4]],[[73569,45751,0],[6,-13]],[[73575,45738,0],[4,-10],[9,-24],[10,-6],[18,-10]],[[73616,45688,0],[10,-5],[27,-21]],[[73653,45662,0],[30,-22]],[[73683,45640,0],[22,28],[6,8],[19,26]],[[73730,45702,0],[111,154]],[[73841,45856,0],[31,43],[36,50],[1,5]],[[73909,45954,0],[3,10],[0,10]],[[73912,45974,0],[-2,19]],[[73910,45993,0],[-6,12]],[[73904,46005,0],[161,-36]],[[74065,45969,0],[40,-30]],[[74105,45939,0],[43,-31],[14,-11],[29,-20],[41,-32],[20,-14],[23,-17],[43,-32],[45,-33]],[[74363,45749,0],[13,-11]],[[74376,45738,0],[31,-23],[44,-32],[41,-32],[16,-12],[28,-23],[40,-33]],[[74640,42770,0],[9,-3],[28,-11],[23,-11],[0,-1],[28,-70],[0,-1],[-4,-16],[5,-8],[7,-15],[10,-22],[19,-41],[9,-21],[8,-16],[10,-20],[5,-15],[2,-5],[-9,-41],[-11,-48],[-6,-11],[-14,-24]],[[74759,42370,0],[-63,-82],[-1,-1]],[[74691,42282,0],[-15,-20],[-2,-4]],[[74674,42258,0],[-2,-2],[-2,-3]],[[74670,42253,0],[-36,18],[-13,5]],[[74621,42276,0],[-1,1],[-2,1],[-24,12]],[[74565,42304,0],[-8,4],[-1,0],[-20,9]],[[74536,42317,0],[-17,8],[-8,4]],[[74420,42370,0],[-17,6],[-6,2],[-10,4]],[[74387,42382,0],[-31,12],[-2,1]],[[74327,42404,0],[-26,10],[-9,3]],[[74292,42417,0],[-12,4],[-20,8],[-1,1]],[[74231,42440,0],[-11,5],[-10,4],[-6,2],[-1,0]],[[74203,42451,0],[-3,2],[-30,11]],[[74106,42487,0],[-2,-1],[-3,-1]],[[74101,42485,0],[-12,-3],[-8,-1]],[[74006,42494,0],[-25,5],[-1,1]],[[73945,42506,0],[-19,4],[-7,1],[-3,0]],[[73834,42527,0],[-8,2],[-7,1],[-2,1]],[[73817,42531,0],[-14,3],[-10,2],[-2,1]],[[73647,42591,0],[-136,65],[-33,15]],[[73379,42955,0],[0,1],[-6,28]],[[73373,42984,0],[-8,-1],[-2,-1]],[[73363,42982,0],[-2,7],[-17,78]],[[73341,43077,0],[-1,2],[-1,3]],[[73339,43082,0],[-2,2],[-2,3]],[[73335,43087,0],[-4,3],[-3,1]],[[73312,43097,0],[0,1],[2,8]],[[73315,43107,0],[36,25],[28,20]],[[73384,43155,0],[48,42],[35,30]],[[73534,43285,0],[5,5],[1,1]],[[73540,43291,0],[1,6],[1,3]],[[73543,43315,0],[-1,2],[-3,7]],[[73539,43324,0],[-1,2],[-9,10]],[[73529,43336,0],[-14,18],[-2,3]],[[73495,43369,0],[-20,14],[-11,7]],[[73251,43529,0],[-28,14],[-40,20]],[[73205,43613,0],[1,1],[4,6]],[[73686,44280,0],[19,7]],[[73705,44287,0],[1,0],[13,5]],[[73719,44292,0],[46,15],[16,6],[19,6],[17,6],[1,1],[56,19],[2,1],[25,8],[1,1],[31,10],[1,1],[25,9],[2,0],[11,4],[11,4],[6,2],[4,1],[2,1],[4,1],[6,3],[15,4],[34,11],[28,15],[52,-132],[10,-29],[57,-129],[16,-31],[54,-124],[0,-1],[12,-31],[50,-110],[11,-33],[1,-1],[12,-27],[8,-20],[2,-29],[25,-57],[1,-2],[10,-24],[0,-1],[49,-140],[1,-1],[10,-28],[1,0],[38,-95],[10,-36],[0,-1],[5,-22],[1,-1],[15,-60],[14,-58],[18,-71],[-16,-35],[22,-105],[0,-1],[6,-21],[17,-56],[14,-46],[2,-4],[16,-52],[14,-37]],[[75435,44231,0],[43,60],[13,8],[42,-86]],[[75533,44213,0],[55,-111]],[[75588,44102,0],[24,-50],[35,-72],[28,-59],[19,-36],[14,-28],[46,-93]],[[75754,43764,0],[-103,-31],[14,-47]],[[75665,43686,0],[-43,-15],[-39,-16],[-28,-10],[-8,-3],[-2,-1],[-21,-7],[-21,-7],[-1,0],[-29,-11],[-14,-5],[-6,-2],[-5,13],[-46,-14],[-46,-16],[1,-2],[4,-13],[-40,-10],[-5,-1],[-71,-19],[-71,-19],[-1,0],[-55,-16],[-3,-1],[4,-9],[-1,0],[-21,-7],[-20,-5],[-5,-2],[-5,-1],[-1,4],[-5,12],[-64,-24],[-31,-11],[6,-17],[14,-38],[6,-11],[3,-9],[-4,-2],[-3,-3],[40,-115],[-1,-75],[-1,-6],[-1,-15],[-8,-56],[1,-3],[-11,-6],[-15,-8],[-6,-16],[-18,-51],[-33,-44],[-16,-10],[-45,-24],[-147,-77],[-5,-2],[5,-8],[1,-3],[-19,-23],[-13,-15],[-16,-19],[-29,-35],[-11,-7]],[[73719,44292,0],[-14,-5]],[[73716,44326,0],[26,37],[173,238]],[[74175,44939,0],[20,-24],[12,-14],[17,-16],[48,-39],[36,-24],[11,-7],[37,-23],[45,-24],[28,-15],[38,-21],[25,-13],[7,-5],[33,-18],[57,-31]],[[74589,44665,0],[37,-21],[45,-25]],[[74671,44619,0],[60,-32],[35,-20],[41,-23],[10,-5],[116,-62],[80,-43],[75,-42],[76,-43],[250,-136],[21,18]],[[76602,42188,0],[-60,-76],[-22,-28]],[[76520,42084,0],[-23,-28]],[[76497,42056,0],[-101,-122]],[[76340,41969,0],[-1,3]],[[76339,41972,0],[-3,14]],[[76336,41986,0],[-28,7],[-250,58]],[[76037,42056,0],[-27,6],[-50,12]],[[75960,42074,0],[-54,14],[-78,19]],[[75245,42267,0],[-19,4],[-291,62]],[[74834,42354,0],[-54,12],[-21,4]],[[75665,43686,0],[2,1],[22,-65],[6,-12],[60,-96],[26,-42],[91,-152],[3,-2],[53,-25],[83,-130],[66,-113],[66,-105],[60,-100],[41,-67],[6,-11],[8,-13],[102,-164],[8,-12],[1,-2],[89,-145],[68,-111],[9,-12],[24,-65],[10,-13],[33,-42]],[[76519,42069,0],[-22,-13]],[[76520,42084,0],[82,104]],[[76602,42188,0],[46,54],[22,27],[29,39],[14,17],[79,103],[2,2],[11,15],[34,44],[18,23],[54,70],[23,-1],[13,17],[-8,22],[105,132],[29,37],[21,28],[19,25],[22,15]],[[77135,42857,0],[271,-34]],[[77406,42823,0],[23,-22]],[[77429,42801,0],[31,113],[5,17],[65,169],[7,16]],[[77040,42844,0],[-56,-58],[-51,-67],[0,-1],[-118,-153],[-3,-6],[-78,-100],[-28,-36],[-62,-79],[-30,0],[-136,216],[-201,321],[-261,421],[-78,124],[-52,84],[-79,153],[-53,101]],[[75588,44102,0],[10,-2],[8,0],[139,108],[121,95],[3,3],[3,2],[19,15],[39,30],[9,8],[20,17],[3,1]],[[75962,44379,0],[5,4],[18,15],[28,22],[3,2],[7,6],[11,8],[37,28],[37,1],[-16,25]],[[76092,44490,0],[-10,16],[-2,3]],[[76080,44509,0],[-51,77],[-11,10],[-20,21],[-36,36],[10,28],[24,72]],[[75996,44753,0],[31,96],[3,1]],[[76030,44850,0],[99,-3],[88,-2],[65,-3],[201,-4],[60,-1],[81,-1]],[[76624,44836,0],[3,-13]],[[76627,44823,0],[73,-324],[26,-95],[115,15],[39,12],[16,-59],[-2,-5],[84,-319],[10,3],[13,-42],[304,-87],[6,-53],[32,8],[62,7],[4,-26],[7,-62],[76,-34],[10,-4],[-44,-89],[-28,-55],[-30,-63],[-92,-185],[-79,-153],[-84,-169],[-71,-146],[-34,-54]],[[75982,44978,0],[86,-34]],[[76068,44944,0],[-38,-94]],[[76030,44850,0],[-3,0],[-31,-97]],[[76080,44509,0],[12,-19]],[[75962,44379,0],[5,7],[-5,-7]],[[75533,44213,0],[-98,18]],[[74671,44619,0],[-42,23],[-40,23]],[[74393,45176,0],[17,4],[1,0],[2,1]],[[74571,45351,0],[1,0],[7,5]],[[74714,45454,0],[18,-18]],[[74732,45436,0],[36,-38],[7,-7],[14,-15],[16,-18],[49,-56],[36,3],[58,105],[40,71],[19,32],[38,-38],[46,-27],[-3,-8],[17,-8],[3,-1],[47,-21],[51,-24],[14,-12],[24,-11],[160,-71],[28,-12],[4,-2],[40,-26],[43,-27],[28,-25],[30,-25],[21,-19],[112,-59],[131,-69],[8,-3],[133,-47]],[[71319,18221,0],[-48,-106]],[[71271,18115,0],[-52,21],[-116,-243]],[[71103,17893,0],[-140,59],[-18,5],[-49,18],[-50,23],[-132,58],[-110,52],[-163,74],[-8,4]],[[70433,18186,0],[-43,19]],[[70390,18205,0],[91,254],[4,12],[16,49]],[[70501,18520,0],[53,169]],[[70554,18689,0],[79,240]],[[70633,18929,0],[34,100]],[[70667,19029,0],[36,98],[39,84]],[[70742,19211,0],[111,218]],[[70853,19429,0],[232,452],[55,-22]],[[71140,19859,0],[74,-29]],[[71214,19830,0],[42,-16]],[[71256,19814,0],[476,-180]],[[71732,19634,0],[43,-17]],[[71775,19617,0],[32,-12]],[[71807,19605,0],[55,-21]],[[71862,19584,0],[56,-22]],[[71918,19562,0],[-5,-9],[-36,-77],[-167,-329],[-224,-481],[-42,-87],[-9,2],[-73,-148],[22,-11],[-91,-190],[26,-11]],[[59710,44011,0],[-101,79],[-9,7]],[[59600,44097,0],[-7,6],[-34,28]],[[59559,44131,0],[-7,1],[-11,2]],[[59541,44134,0],[-29,4]],[[59512,44138,0],[-101,15],[-218,32]],[[59193,44185,0],[0,4],[-5,0]],[[59188,44189,0],[-33,6],[-15,3]],[[59140,44198,0],[-114,25]],[[59026,44223,0],[-12,2],[-89,19]],[[58925,44244,0],[-13,2],[-17,4]],[[58895,44250,0],[-38,8],[-9,2]],[[58848,44260,0],[-22,5],[-52,11]],[[58774,44276,0],[-21,4],[-24,5]],[[58729,44285,0],[-68,15],[-24,5]],[[58637,44305,0],[-2,1],[-1,1]],[[58634,44307,0],[-1,0],[-1,1],[-1,2],[-2,1],[-2,1],[0,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,3],[-1,4],[0,3],[0,3],[0,2],[1,1],[0,1],[0,1],[0,1],[1,3],[6,27],[16,63],[4,17],[22,89],[18,71],[6,23],[35,137],[5,19],[-197,40],[2,9],[5,15],[10,38],[12,40],[7,40],[11,37],[10,40],[3,12],[8,29],[11,29],[8,22],[0,3],[2,53],[0,24]],[[58625,45223,0],[92,-16]],[[58717,45207,0],[58,-9],[29,-6]],[[58804,45192,0],[10,-2],[19,-3]],[[58833,45187,0],[27,-6],[29,-6]],[[58889,45175,0],[73,-16],[11,-2]],[[58973,45157,0],[3,-1],[14,-2]],[[58990,45154,0],[81,-17],[57,-12]],[[59128,45125,0],[8,-2],[9,-2]],[[59145,45121,0],[28,-6],[31,-7]],[[59204,45108,0],[17,-4],[20,-4]],[[59241,45100,0],[10,-1],[0,-1]],[[59251,45098,0],[149,-32],[77,-17]],[[59477,45049,0],[24,-6],[50,-13]],[[59551,45030,0],[68,-19]],[[59619,45011,0],[76,-25],[11,-3]],[[59706,44983,0],[29,-10],[100,-37]],[[59835,44936,0],[9,-4],[13,-6]],[[59857,44926,0],[26,-10],[25,-9]],[[59908,44907,0],[15,-5],[9,-4]],[[59932,44898,0],[12,-5],[9,-3]],[[59953,44890,0],[4,-1],[9,-4]],[[59966,44885,0],[25,-10],[14,-5]],[[60005,44870,0],[52,-21],[40,-16]],[[60097,44833,0],[7,-3],[7,-3]],[[60111,44827,0],[52,-21]],[[60163,44806,0],[9,-4],[40,-19]],[[60212,44783,0],[13,-6],[2,-1]],[[60227,44776,0],[35,-16],[1,0]],[[60263,44760,0],[50,-25]],[[60313,44735,0],[11,-5],[16,-7]],[[60340,44723,0],[-23,-24],[-4,-5],[-3,-3],[-25,-28],[-122,-136],[-453,-516]],[[76777,46199,0],[23,-38],[150,12]],[[76950,46173,0],[-51,-173]],[[76899,46000,0],[35,-14],[43,-18],[13,-5],[27,-8],[28,-8],[15,-5],[57,-17]],[[77117,45925,0],[2,-1],[7,0]],[[77126,45924,0],[3,-1],[9,-1]],[[77138,45922,0],[75,242],[69,146],[14,2],[180,-39],[171,-83],[32,158],[-2,6],[-2,7],[14,120],[3,25],[149,-26],[106,-45],[-4,-17]],[[77943,46418,0],[-43,-127]],[[77900,46291,0],[-2,-7],[3,-8],[0,-22],[1,-25],[0,-28],[-4,-39],[5,-39],[1,-10],[0,-47],[-64,-214]],[[77840,45852,0],[-37,-220]],[[77803,45632,0],[-8,-53],[-9,-51]],[[77786,45528,0],[-8,-21],[-16,-78],[-8,-50],[-34,-114]],[[77720,45265,0],[-16,-52],[-7,-23]],[[77697,45190,0],[-19,-41]],[[77678,45149,0],[-63,-168]],[[77615,44981,0],[-13,-37],[-42,-112]],[[77560,44832,0],[-14,-41]],[[77546,44791,0],[-8,-17]],[[77538,44774,0],[-7,-1],[-74,8],[0,14],[-29,3],[-1,-7],[-254,23]],[[77173,44814,0],[-21,194],[-19,3],[-61,19],[-25,2],[-45,-11],[-30,-3],[-39,-2],[-27,-5],[-71,-8],[-89,-13],[-1,3],[-16,0],[-52,1],[-54,-9],[-13,-2]],[[76610,44983,0],[-139,-16],[-35,-15],[-98,-2],[0,-13],[-38,-1],[11,-24],[-30,-4],[-206,56],[-7,-20]],[[75982,44978,0],[30,172],[9,48],[25,149],[14,-2],[11,40],[24,88],[-4,46],[-4,16],[-6,14],[-9,25],[-35,53],[-41,87],[-4,31],[-14,16],[-7,30],[1,14],[1,23],[11,164],[2,39],[11,32],[0,6],[9,138],[3,70]],[[76009,46277,0],[10,74]],[[76019,46351,0],[-48,45]],[[75971,46396,0],[13,23],[29,51]],[[76013,46470,0],[13,79]],[[76026,46549,0],[0,34],[1,131],[-7,26],[-12,48]],[[76008,46788,0],[-15,74],[332,-21],[241,-29],[-32,-123],[40,-98],[53,-60],[17,-25]],[[76644,46506,0],[29,-36]],[[76673,46470,0],[-1,-25],[25,-37],[55,-144],[25,-65]],[[59988,45721,0],[7,-11],[6,-8]],[[60001,45702,0],[8,-15],[32,-53],[10,-17],[11,-17],[12,-20],[21,-33],[111,-181],[28,-40],[24,-46],[12,-24],[47,-50],[11,-14],[19,-16],[37,-34],[61,-46],[64,-50],[66,-52],[30,-25],[45,-37],[35,-35]],[[60685,44897,0],[-9,-9],[-16,-15],[-10,-11]],[[60650,44862,0],[-19,-18]],[[60631,44844,0],[-35,-35],[-100,42],[-58,-18],[-22,-24],[-76,-86]],[[60340,44723,0],[-27,12]],[[60263,44760,0],[-36,16]],[[60227,44776,0],[-15,7]],[[60212,44783,0],[-49,23]],[[60111,44827,0],[-14,6]],[[60005,44870,0],[-39,15]],[[59966,44885,0],[-13,5]],[[59953,44890,0],[-21,8]],[[59932,44898,0],[-24,9]],[[59908,44907,0],[-51,19]],[[59857,44926,0],[-22,10]],[[59706,44983,0],[-87,28]],[[59551,45030,0],[-74,19]],[[59251,45098,0],[-10,2]],[[59241,45100,0],[-37,8]],[[59204,45108,0],[-59,13]],[[59145,45121,0],[-17,4]],[[59128,45125,0],[-138,29]],[[58990,45154,0],[-17,3]],[[58973,45157,0],[-84,18]],[[58889,45175,0],[-56,12]],[[58833,45187,0],[-29,5]],[[58804,45192,0],[-87,15]],[[58625,45223,0],[-17,3],[-17,3]],[[58591,45229,0],[-7,4],[-8,7],[-3,6],[-3,7],[-1,6],[-1,13],[21,117],[1,5],[3,4],[2,4],[3,3],[9,7],[7,3],[5,1],[4,0],[11,0],[13,51],[-66,14],[-19,5],[2,8]],[[58564,45494,0],[22,-1]],[[58586,45493,0],[20,68],[9,35],[1,16],[4,31],[20,52],[9,7],[3,4],[12,16]],[[58664,45722,0],[69,93],[45,62]],[[58778,45877,0],[33,45],[14,12]],[[58825,45934,0],[7,-18],[15,-30],[25,-32],[43,-28],[72,-25],[25,-6],[112,-2],[44,8],[38,7],[82,20],[49,15],[32,9],[34,10],[60,19],[5,1],[88,19],[41,4],[25,1],[27,2],[69,-9],[35,-5],[5,-1],[45,-15],[61,-35],[41,-26],[2,-1],[5,-6],[29,-32],[19,-21],[6,-7],[1,-2],[21,-27]],[[77797,49299,0],[10,-46],[-3,-1],[-34,-8]],[[77770,49244,0],[2,-34]],[[77772,49210,0],[-7,-18],[-1,-4],[-4,-8],[-5,-7],[-5,-5],[-25,-20]],[[77725,49148,0],[-8,0],[-12,-13],[-1,-5],[-1,-5],[-39,-42],[-90,-95]],[[77574,48988,0],[26,-25],[46,-45],[15,-10],[4,-4]],[[77665,48904,0],[63,-36]],[[77728,48868,0],[47,-26],[2,-1],[63,-38],[76,-61]],[[77916,48742,0],[11,-12],[21,-22]],[[77948,48708,0],[33,-36],[13,-14]],[[77994,48658,0],[40,-43],[36,-35]],[[78070,48580,0],[44,-45],[21,-19],[55,-34],[4,-1],[37,-43],[861,20],[35,0],[120,2],[-5,-12],[-62,-133],[-39,-86]],[[79141,48229,0],[-74,-166],[-114,-257],[-29,-63],[-49,-107]],[[78875,47636,0],[-43,-96]],[[78832,47540,0],[-19,9],[-1,-2],[-1,-2],[-42,-101],[-15,-35],[-1,-3],[-22,-55],[-1,-1],[-36,-89],[-2,1],[-94,41],[-790,346],[3,14],[-45,22],[-10,3],[-17,5],[-9,-20],[-48,-113],[-22,-53],[-25,-59],[-171,64],[-242,-224],[-139,-83],[-40,-18],[-21,-8],[-91,-40]],[[76931,47139,0],[4,-34],[-65,-6]],[[76870,47099,0],[-54,482]],[[76816,47581,0],[-338,-189],[-17,-103],[-11,-66],[32,-113],[0,-1],[-422,94],[-46,10],[-57,2]],[[75957,47215,0],[1,29],[0,17],[0,24],[1,4],[1,58]],[[75960,47347,0],[2,49]],[[75962,47396,0],[-1,59],[-1,50]],[[75960,47505,0],[0,1],[-8,51]],[[75952,47557,0],[-13,61],[-18,62],[-7,24]],[[75914,47704,0],[-26,72],[-47,135],[-17,45]],[[75824,47956,0],[-16,26],[-13,19],[-22,64],[-17,54]],[[75756,48119,0],[1,25],[2,41],[-17,67]],[[75742,48252,0],[-11,44],[-5,17],[-5,20],[-9,33]],[[75712,48366,0],[-27,-3],[-22,-3],[-13,5],[-27,17],[-18,6],[-17,7],[-22,10],[-9,17],[8,63],[10,35],[16,3],[26,5],[32,19],[9,10],[23,21],[0,15],[-3,52],[2,51],[0,3]],[[75680,48699,0],[1,21],[4,84],[0,14],[1,0]],[[75686,48818,0],[350,16],[86,-37],[100,-117],[42,6],[266,37],[85,40],[93,20],[40,6],[24,3],[170,152],[21,18],[12,91],[12,61],[76,104],[112,123],[69,64],[39,27],[53,12],[59,4],[76,-2],[32,-5],[65,-30],[95,-60],[106,28],[20,-69],[8,-11]],[[74028,49886,0],[1,1],[6,3]],[[74035,49890,0],[24,-46]],[[74059,49844,0],[-6,-3],[-1,0]],[[74052,49841,0],[24,-46],[7,5],[24,-44]],[[74107,49756,0],[-4,-3],[-3,-1]],[[74100,49752,0],[29,-55],[3,-5]],[[74132,49692,0],[0,1],[4,2]],[[74136,49695,0],[12,-21],[-7,-3],[19,-31]],[[74160,49640,0],[29,-56],[9,-17],[13,-26],[26,-50],[13,-26],[6,3],[28,-53],[-6,-3],[26,-49],[7,3],[13,-22],[3,-8],[-7,-4],[39,-75],[4,2],[24,-50],[4,1],[12,-25],[15,-24],[-5,-2],[24,-41],[6,4],[21,-43],[-6,-3],[21,-37],[-75,-33],[-42,1],[-31,-2],[-150,-6],[9,100],[3,9],[0,26],[-36,-19],[-127,-58],[-16,12],[-7,3],[-2,-52],[-1,-17],[-3,-70],[-2,-35],[-1,-37],[-1,-10],[-2,-7],[-4,-10],[-9,-12],[-10,-7],[-22,-13],[-17,-7],[-20,-4],[1,-10],[1,-41],[2,-154],[2,-48],[2,-49],[1,-104],[27,1],[0,-42]],[[73949,48344,0],[-22,-2],[-218,-11],[-47,39],[-46,-2],[-36,-1],[-83,-7],[-130,-8]],[[73367,48352,0],[-31,36],[-28,33]],[[73308,48421,0],[-21,-3],[-39,-5]],[[73248,48413,0],[-15,-1],[4,4],[25,28],[-40,20],[-42,16]],[[73180,48480,0],[-85,32],[-69,26]],[[73026,48538,0],[-13,5]],[[73013,48543,0],[7,94],[3,48]],[[73023,48685,0],[3,40],[2,40]],[[73028,48765,0],[11,26],[34,82]],[[73073,48873,0],[11,28],[146,168],[3,3],[-14,51]],[[73219,49123,0],[3,73],[1,19]],[[73223,49215,0],[0,12],[0,1]],[[73223,49228,0],[3,100]],[[73226,49328,0],[-35,51],[-14,21]],[[73177,49400,0],[-56,-6],[-3,3],[-8,19],[-27,64],[14,13],[-39,46]],[[73058,49539,0],[-4,8],[-3,8]],[[73051,49555,0],[27,15],[28,15]],[[73106,49585,0],[80,13],[17,9],[32,15],[6,4],[3,2]],[[73244,49628,0],[1,1]],[[73245,49629,0],[4,4],[13,12]],[[73262,49645,0],[21,20]],[[73283,49665,0],[1,1],[7,6]],[[73291,49672,0],[6,3],[7,4]],[[73304,49679,0],[15,7],[7,4]],[[73326,49690,0],[42,21],[42,21]],[[73410,49732,0],[17,21],[2,4]],[[73429,49757,0],[4,5],[7,8],[10,24],[4,-1],[7,11],[3,4],[2,6],[5,10]],[[73471,49824,0],[-1,3],[-3,8]],[[73467,49835,0],[-2,5],[-7,8]],[[73458,49848,0],[0,3],[0,1]],[[73458,49852,0],[36,-3],[54,-6],[27,-4],[12,5],[57,27]],[[73644,49871,0],[7,-12],[2,-5]],[[73653,49854,0],[10,5],[73,33],[6,-11],[11,6],[48,22],[32,14],[5,-8],[16,9],[8,3],[5,1],[7,2]],[[73874,49930,0],[1,0],[3,1]],[[73878,49931,0],[4,0],[4,0],[3,0],[5,-3],[5,-1],[4,-2],[4,-2],[4,-4],[4,-4],[78,35],[35,-64]],[[75653,49462,0],[-25,-28]],[[75628,49434,0],[-10,-10],[-22,-25],[31,-100]],[[75627,49299,0],[19,-68],[9,-29],[22,-73],[8,-27],[6,-28],[2,-12],[5,-22],[20,-98],[9,-61],[-39,1],[-1,-39],[-1,-25]],[[75686,48818,0],[-6,-119]],[[75680,48699,0],[-2,-55],[4,-67],[10,-129],[20,-82]],[[75712,48366,0],[14,-54],[16,-60]],[[75742,48252,0],[18,-67],[-4,-66]],[[75756,48119,0],[17,-55],[22,-64],[13,-19],[16,-25]],[[75824,47956,0],[17,-46],[47,-135],[26,-71]],[[75914,47704,0],[25,-87],[13,-60]],[[75952,47557,0],[8,-52]],[[75960,47505,0],[1,-51],[1,-58]],[[75960,47347,0],[-1,-62],[-2,-70]],[[75957,47215,0],[9,-97],[13,-185],[4,0],[12,-88]],[[75995,46845,0],[13,-57]],[[76026,46549,0],[-7,-47],[-6,-32]],[[75971,46396,0],[16,-14],[32,-31]],[[76009,46277,0],[-24,7],[-51,9],[-108,19],[-111,20],[-46,0],[-51,0],[-39,-1],[-22,8],[-36,12],[-8,3],[-28,11],[-25,38],[-26,35],[-24,-25],[-11,-10],[-85,-65],[-5,-4],[-17,-14],[-19,20],[-52,61],[-8,-7],[-2,-1],[-2,-1],[-84,97],[-136,158],[9,6],[9,7],[-13,18],[-5,6],[0,16],[0,26],[-2,28],[-3,36],[-5,31],[0,6],[-3,16],[-3,21],[-3,21],[-14,63],[-4,14],[-16,51],[-5,17],[-26,64],[-11,22],[-6,11],[-8,17],[-18,34],[-11,20],[-10,19],[-21,41],[-17,30],[-6,10],[-4,9],[-5,9],[-5,10],[-5,9],[-6,9],[-5,9],[-5,9],[-2,3],[-3,3],[-5,14],[-6,12],[-39,68],[-42,81],[-17,30],[-31,58],[-41,74],[-101,189],[-39,69],[-5,10],[-18,37],[-1,35],[0,14],[27,54],[-68,30],[-41,-88],[-32,-70],[-19,-41],[-11,-23],[-3,-7],[-38,-79],[-52,-92],[-30,-44],[-13,-18],[-19,-24],[-13,-15],[-6,-3],[-8,-3],[-10,-3],[-12,-2],[-23,-8],[2,20],[0,15],[-3,17],[-4,34],[-3,18],[-2,16],[-33,244],[-1,8],[-25,0],[-8,106],[-12,189],[-3,54]],[[74160,49640,0],[7,3],[8,-10],[7,-3],[8,1],[12,6],[-3,7],[30,12],[-4,5],[50,23],[2,-4],[90,41],[35,-62],[46,21],[-10,19],[81,38],[26,-43],[14,-27],[25,12],[27,-52],[114,53],[32,-65],[27,11],[18,-34],[141,63],[4,2],[23,13],[-34,67],[85,42],[1,0],[48,21],[7,-14],[51,23],[9,-14],[67,32],[39,18],[43,-81],[61,-118],[124,56],[61,28],[5,-8],[53,24],[-4,11],[94,43],[7,-9],[73,35],[-3,10],[83,39],[19,-2]],[[75859,49873,0],[-10,-46],[-5,-23],[-7,-36],[-2,-15],[-2,-8],[-23,-88],[-29,-54],[-9,-16],[-5,-11],[-6,-12],[-10,-6],[-8,-6],[-11,-8],[-15,-12],[-9,-9],[-20,-21],[-35,-40]],[[71915,46527,0],[-19,-11],[71,-50],[4,-4],[62,-53],[21,-19],[138,-131],[38,-11],[24,-7],[-4,-12],[-5,-16],[-12,-16],[-8,-10],[-38,-52],[-49,-67],[-34,-7],[54,-69],[72,-46],[-13,-19],[-24,-35],[-37,-51],[-16,-24],[-9,-13],[-38,-55],[-18,-24],[-7,-10],[-3,-5],[-6,-8]],[[71944,45775,0],[-1,0],[-59,37]],[[71403,46248,0],[-34,12]],[[71535,47397,0],[61,-46],[18,-14],[1,-2],[29,-25],[34,-32],[2,-4],[4,-4],[2,-2],[50,-55],[19,-24],[18,-23],[2,-3],[1,-1],[21,-36],[15,-29],[8,-21],[3,-6],[6,-16],[14,-46],[2,-12],[0,-59],[0,-2],[-2,-26],[-1,-48],[-3,-86],[0,-20],[-5,-152],[78,-73],[3,-3]],[[74732,45436,0],[-14,14],[-2,2],[-7,7]],[[74590,45570,0],[-6,6],[-8,7]],[[74376,45738,0],[-1,1],[-10,8],[-2,2]],[[74105,45939,0],[-15,11],[-25,19]],[[73904,46005,0],[-15,24],[-13,21],[-15,19],[-106,125],[-1,1],[-210,249],[-43,50],[-105,126],[-68,77],[-56,65],[-86,102],[-173,201],[-3,3],[-64,75]],[[72946,47143,0],[52,30],[18,10],[-9,13],[-22,25],[-32,40],[32,13],[25,11],[44,16],[19,7],[-30,-10],[-3,-1],[-14,-2],[-25,2],[-19,5],[-14,6],[-3,2],[-8,4],[-16,14],[-7,9],[-6,8],[-8,17],[-5,21],[-1,8],[-22,8],[-41,15],[-9,13],[-5,7],[-51,73]],[[72786,47507,0],[97,37],[45,16],[55,20],[106,37]],[[73089,47617,0],[-20,94]],[[73069,47711,0],[-12,51],[-10,47],[-7,32],[270,85],[175,56],[28,8],[-5,24],[-10,57],[-11,63],[-13,43],[-17,52],[-6,10],[-7,14],[-39,50],[-38,49]],[[73904,46005,0],[4,-8],[2,-4]],[[73912,45974,0],[0,-5],[0,-6],[-1,-4],[-2,-5]],[[73841,45856,0],[-95,-133],[-16,-21]],[[73730,45702,0],[-47,-62]],[[73653,45662,0],[-28,21],[-9,5]],[[73575,45738,0],[-1,2],[-5,11]],[[73569,45751,0],[-1,1],[-1,3]],[[73344,45923,0],[-244,201]],[[73100,46124,0],[-71,-100],[-1,-1]],[[73028,46023,0],[-16,10],[-13,8]],[[72999,46041,0],[-13,9],[-11,8]],[[72763,45786,0],[24,-16],[2,-2]],[[72773,45733,0],[-5,-4],[-24,-23]],[[72744,45706,0],[-1,-1],[-45,-42]],[[72677,45671,0],[-54,-77],[-16,-23]],[[72607,45571,0],[-59,-83],[-48,-67]],[[72500,45421,0],[-52,33],[-40,25],[-29,19]],[[72184,45622,0],[-72,45],[-1,1]],[[72111,45668,0],[-51,33],[-1,1]],[[71915,46527,0],[66,40],[134,79],[42,25],[5,4],[69,41],[45,27],[44,25],[65,40],[22,13],[44,27],[47,28],[67,39],[12,8],[24,14],[47,28],[60,37],[91,53],[1,1],[44,25],[7,4],[31,18],[64,40]],[[71524,47403,0],[-12,9]],[[71512,47412,0],[-21,14],[-11,8]],[[71471,47440,0],[-31,20]],[[71440,47460,0],[-36,22],[-36,21]],[[71360,47510,0],[86,3]],[[71482,47489,0],[21,27],[28,36]],[[71531,47552,0],[84,-38],[27,2],[6,0],[41,3],[42,-41],[-3,-2],[72,-24],[8,-13],[12,-20],[25,7],[47,12],[3,-9],[47,13],[37,10],[15,5],[44,12],[32,-103],[30,8],[-34,106],[-4,12],[-5,13],[-16,57],[-1,1],[-10,50],[30,8],[7,2],[54,15],[59,16],[28,8],[8,2],[50,14],[46,12],[19,6]],[[72331,47696,0],[21,6],[7,2]],[[72359,47704,0],[17,4],[30,8],[2,1],[55,16]],[[72463,47733,0],[33,-48],[24,-30],[12,-15],[13,-16],[26,-30],[23,-29],[27,-31],[11,-13],[1,-1],[13,-14],[15,-19],[13,-16],[14,-16],[42,-49],[3,-5],[6,17],[24,70],[1,2],[5,12],[17,5]],[[71871,49441,0],[28,-188]],[[71899,49253,0],[9,5],[24,12]],[[71932,49270,0],[51,25],[30,15]],[[72013,49310,0],[5,-24],[2,-14]],[[72020,49272,0],[10,2],[42,7]],[[72072,49281,0],[-6,-58],[-2,-14],[-4,-45],[-10,-80],[43,-232],[18,-68],[13,-47],[24,-78],[10,-27],[7,-19],[28,-73]],[[72193,48540,0],[39,-91]],[[72232,48449,0],[16,-36],[13,-31],[9,-20],[13,-30],[1,-3],[10,-23]],[[72294,48306,0],[12,-28],[2,-6]],[[72308,48272,0],[15,-33],[39,-90],[19,-42],[11,-26],[23,-51],[26,-53],[17,-33],[16,-28],[-18,-5],[-18,-5],[-28,-7],[-48,-12],[35,-54],[10,-15],[4,-6],[16,-25],[23,-35],[13,-19]],[[72359,47704,0],[-28,-8]],[[71185,47934,0],[0,24]],[[70728,48241,0],[50,194]],[[70766,48436,0],[-62,15]],[[70728,48586,0],[13,101]],[[70741,48687,0],[4,29],[8,48]],[[70753,48764,0],[53,-23],[45,-19]],[[70873,48884,0],[-17,14]],[[70853,48902,0],[-13,23]],[[70840,48925,0],[43,25]],[[70884,48950,0],[41,132],[76,101],[94,-93]],[[71095,49090,0],[12,7],[10,7]],[[71117,49104,0],[17,8]],[[71134,49112,0],[-8,8],[-7,6]],[[71119,49126,0],[39,15],[65,24]],[[71223,49165,0],[56,21]],[[71279,49186,0],[88,-89],[12,9],[62,40],[196,131],[234,164]],[[73051,49555,0],[7,-16]],[[73177,49400,0],[49,-72]],[[73223,49228,0],[0,-13]],[[73223,49215,0],[-4,-92]],[[73073,48873,0],[-33,-82],[-12,-26]],[[73028,48765,0],[-5,-80]],[[73023,48685,0],[-10,-142]],[[73026,48538,0],[154,-58]],[[73248,48413,0],[60,8]],[[73308,48421,0],[59,-69]],[[73069,47711,0],[9,-43],[11,-51]],[[72308,48272,0],[-14,34]],[[72232,48449,0],[-7,17],[-32,74]],[[72072,49281,0],[24,14],[23,27],[10,4],[0,17],[-2,23],[26,4],[-1,8],[36,-6],[14,2],[6,11],[54,36],[24,17],[8,2],[50,3],[32,-5],[33,2],[277,29],[17,4],[3,0],[6,1],[17,3],[64,-1]],[[72793,49476,0],[46,-1],[41,-1]],[[72880,49474,0],[56,48],[84,58],[25,-28],[6,3]],[[64192,43148,0],[53,7],[31,3]],[[64276,43158,0],[8,1],[50,7]],[[64443,43184,0],[103,22],[3,1]],[[64554,43208,0],[107,23],[56,12]],[[64717,43243,0],[25,5],[46,10]],[[65058,43270,0],[12,0],[28,-2]],[[65266,43257,0],[156,-6]],[[65422,43251,0],[3,-4],[0,-1]],[[67370,42088,0],[-7,-30],[-36,-164]],[[66148,41913,0],[-35,17],[-79,48],[-39,37],[-34,29],[-42,29],[-51,33],[-81,45],[-130,75]],[[65657,42226,0],[-95,60]],[[65562,42286,0],[-111,65],[-65,38],[-73,43],[-24,13],[-57,31]],[[65232,42476,0],[-88,40]],[[65144,42516,0],[-123,32]],[[65021,42548,0],[-73,9]],[[64948,42557,0],[-44,3],[-120,1]],[[64784,42561,0],[-146,7]],[[64638,42568,0],[81,122]],[[64719,42690,0],[-73,26],[-12,9],[-23,10],[-75,29],[-17,6],[-27,12],[-60,26]],[[64432,42808,0],[-186,34],[-27,4],[-51,8]],[[64168,42854,0],[9,-39],[1,-70]],[[64178,42745,0],[-1,-22],[0,-6]],[[64177,42717,0],[-25,-9]],[[64152,42708,0],[-33,0],[-162,-1]],[[63957,42707,0],[-104,2],[-74,0],[-260,1],[-32,-1],[-73,-1],[-66,-27]],[[63348,42681,0],[-78,4],[-29,4],[-55,14]],[[63186,42703,0],[0,5]],[[63186,42708,0],[-1,23]],[[63185,42731,0],[-1,32],[2,16],[1,1],[12,81],[-2,3],[-3,2],[-23,7],[-76,23],[25,72],[86,249]],[[63206,43217,0],[3,1],[4,2]],[[63213,43220,0],[0,4],[-4,18]],[[63209,43242,0],[42,-16],[24,-8]],[[63275,43218,0],[-22,10],[-44,22]],[[63209,43250,0],[-106,37]],[[63103,43287,0],[7,87]],[[63110,43374,0],[2,18]],[[63112,43392,0],[406,-127]],[[67461,39645,0],[95,-59]],[[67701,39552,0],[22,-22],[-2,-3],[20,-17],[15,-7],[15,-8],[2,2],[10,-5],[-2,-6],[8,-2],[-22,-39],[-30,-52],[-23,-32],[-24,-32],[-31,-20],[-19,-14],[-41,-44],[-19,-23],[-3,3],[-20,-26],[-11,-15],[-23,-31],[-22,-29],[-9,-6],[-19,-24],[-27,-33],[-5,-6],[-21,-27],[-4,-7],[-45,-76]],[[67371,38951,0],[-72,41],[-29,16]],[[67141,39324,0],[-6,57]],[[67124,39507,0],[-3,60]],[[67121,39567,0],[-3,45]],[[67118,39612,0],[18,24]],[[67193,39719,0],[93,-31]],[[67286,39688,0],[56,-17]],[[68386,39191,0],[23,-13],[27,-14]],[[68892,38976,0],[8,-3],[221,-92]],[[69533,38706,0],[-4,-7],[-1,-5]],[[69528,38694,0],[-38,-74],[-73,-144]],[[69134,37920,0],[-85,-24],[-81,-22]],[[68132,37726,0],[-61,-22],[-60,36],[-14,35],[-18,44],[-34,90],[-15,36],[-36,92],[-3,9],[-15,36],[-6,13],[-15,35],[-16,43],[-10,26],[-10,22],[-22,55],[-28,72],[-28,74],[-14,37],[-14,36],[-35,84],[-72,180],[13,54],[-22,13],[-48,27],[-44,25],[-111,60],[-23,13]],[[82757,41115,0],[-24,-61],[-2,-4]],[[82731,41050,0],[-15,-35],[-7,-20],[-15,-44],[-3,-22]],[[82691,40929,0],[-4,-20],[-1,-4],[1,-21],[1,-6],[6,-29]],[[82694,40849,0],[6,-34],[1,0],[8,-49]],[[82760,40654,0],[3,-3],[22,-19]],[[82785,40632,0],[1,-16],[1,-23]],[[82808,40446,0],[12,-57],[2,-13],[5,-39]],[[82828,40263,0],[-2,-44],[0,-11],[-8,-35]],[[82818,40173,0],[0,-5],[-2,-29]],[[82816,40139,0],[2,-9],[0,-2],[1,-11],[0,-4]],[[82819,40113,0],[0,-8],[3,-30],[3,-40]],[[82825,40035,0],[5,-52],[6,-64],[5,-59],[0,-3]],[[82853,39743,0],[12,-23],[3,-7]],[[82868,39713,0],[66,-128],[14,-35],[16,-46],[9,-50],[24,-123],[13,-74],[6,-47],[0,-39],[1,-33],[-7,-27],[-12,-41],[-14,-33],[-21,-29],[-30,-43],[-60,-83],[-16,-23]],[[82857,38859,0],[-2,1],[-44,29]],[[82811,38889,0],[-12,8],[-16,-20],[-16,-14],[-27,-13],[-37,-8]],[[82703,38842,0],[-344,-81],[-129,-28],[-42,-9],[-119,-26],[-16,-3],[2,4],[-16,8],[-13,-14],[-93,-15]],[[81933,38678,0],[-9,48],[-26,-4]],[[81898,38722,0],[-48,-9],[0,1]],[[81850,38714,0],[-25,233],[33,1],[1,85],[-33,4],[-3,102],[21,6],[-15,148],[20,3],[-10,72],[-17,-1],[-8,100],[26,2],[-5,44],[-21,-3],[-32,290],[22,1],[-5,35],[-21,-2],[-21,181],[-9,79],[-7,0],[-20,164],[31,3],[-7,47],[-64,-7]],[[81681,40301,0],[-2,17],[-6,49],[129,21]],[[81802,40388,0],[24,7],[39,7]],[[81865,40402,0],[9,4],[6,4],[35,21]],[[81922,40440,0],[10,19],[-1,21]],[[81931,40480,0],[-38,146],[-46,98]],[[81835,40751,0],[21,12]],[[81884,40779,0],[-9,38],[-4,14]],[[81842,40936,0],[-2,10],[-26,94]],[[81803,41105,0],[3,33],[1,10]],[[81815,41197,0],[6,34],[4,25]],[[81825,41256,0],[3,13],[4,15]],[[81832,41284,0],[42,17],[3,1]],[[81890,41308,0],[9,4],[15,7]],[[81944,41334,0],[1,2],[17,11]],[[81985,41356,0],[23,8],[16,0],[1,0],[35,-1]],[[82060,41363,0],[12,0],[29,0]],[[82132,41349,0],[20,-13],[25,-15],[8,-6],[28,-18],[7,-3]],[[82259,41283,0],[35,1],[19,1],[16,10]],[[82368,41321,0],[1,0],[2,3],[1,0],[30,17]],[[82402,41341,0],[37,19],[3,1]],[[82442,41361,0],[2,2]],[[82444,41363,0],[16,8]],[[82560,41452,0],[33,23],[5,3]],[[82598,41478,0],[43,31],[37,26],[13,8]],[[82719,41570,0],[4,3],[2,2]],[[82748,41597,0],[23,22],[1,2]],[[82773,41622,0],[8,11],[7,10]],[[82788,41643,0],[0,1],[11,12]],[[82812,41689,0],[1,1],[6,35],[1,9]],[[82831,41736,0],[1,0]],[[82832,41736,0],[36,-2],[14,0],[23,-1]],[[82905,41733,0],[11,0],[7,-1]],[[82922,41694,0],[-4,-11],[-11,-29],[-6,-36]],[[82901,41618,0],[-8,-41],[-41,-192],[-6,0]],[[82739,38596,0],[-26,-58],[-8,-30],[-1,-9],[-5,-32]],[[82700,38425,0],[-10,-32],[2,-37],[12,-24],[12,-7],[22,-12],[44,-20],[46,-15],[88,-29],[75,-24],[4,-1]],[[82995,38224,0],[48,-15],[17,-6],[22,-7],[30,-9]],[[83112,38187,0],[-15,-42],[83,-44]],[[83180,38101,0],[-10,-20],[-14,-35],[0,-1]],[[83156,38045,0],[1,-7]],[[83157,38038,0],[1,-11],[16,-207],[15,-143],[6,-12],[0,-1],[4,-8],[87,-183],[-35,-15],[8,-29],[50,-186],[-22,-29],[-32,-53],[-15,-23],[-53,-70],[-16,-36],[-31,-41],[-26,-23],[-13,-12],[-16,-11],[-46,-31],[-35,-27],[-68,-100],[-58,-61],[-81,-87],[-49,-95],[-27,-15],[1,1],[3,30],[-22,-11]],[[82703,36549,0],[-1,-1],[-61,-58]],[[82641,36490,0],[-21,-16],[-23,-48],[-136,-283],[-6,-25],[-10,-92],[-10,-49],[-7,-14],[-52,-9],[-112,-19],[-94,-17]],[[82170,35918,0],[-44,333],[-70,668],[-20,135],[-27,261],[-1,19],[-13,51],[-13,135],[10,1],[-3,27],[-5,50],[-10,-1],[-36,293],[-37,309],[11,1],[-20,214],[-17,154],[-9,35],[-2,18],[-11,28],[-5,65],[2,0]],[[81850,38714,0],[48,8]],[[81933,38678,0],[79,13],[14,3],[13,15],[16,-9],[13,2],[119,24],[34,6],[137,30],[62,13],[163,39],[120,28]],[[82703,38842,0],[21,5],[14,4],[29,15],[15,14],[17,19],[12,-10]],[[82857,38859,0],[0,-1],[13,-8],[-21,-33],[-39,-61],[-15,-17],[-23,-49],[-33,-94]],[[76653,26760,0],[-51,-194],[-14,-69],[50,1],[56,6],[94,-106],[71,-39],[26,-20],[106,-114],[45,-43],[-238,-128],[-184,-110],[-4,-39],[-13,-116],[-9,-103],[-4,-32],[16,-69],[23,-95],[3,-8],[60,-117],[14,-32],[20,-33],[20,-36],[40,-48],[8,-14],[12,-17],[31,-51],[126,-96],[123,-76],[41,-25],[8,-26],[-5,-79],[7,-119]],[[77131,24713,0],[-84,-35],[-28,-8]],[[77019,24670,0],[-59,-6],[-95,-9]],[[76865,24655,0],[-148,-16]],[[76717,24639,0],[-3,4]],[[76714,24643,0],[-37,46],[-14,18],[-56,74]],[[76607,24781,0],[-55,74],[-79,115]],[[76473,24970,0],[-9,14]],[[76464,24984,0],[-75,137]],[[76389,25121,0],[-17,-8]],[[76372,25113,0],[-196,-38]],[[76176,25075,0],[-32,-3]],[[76144,25072,0],[-23,-2],[-2,-55],[-8,-15],[-9,-6]],[[76102,24994,0],[-13,-5],[-14,-1],[-38,14]],[[76037,25002,0],[-123,45]],[[75914,25047,0],[-158,-17]],[[75756,25030,0],[-121,-11]],[[75635,25019,0],[34,112],[28,85],[25,84],[6,576]],[[75728,25876,0],[-3,10],[-4,12]],[[75721,25898,0],[-9,15]],[[75712,25913,0],[-13,15],[-12,10]],[[75687,25938,0],[-18,9],[30,56],[6,-4],[6,-1],[6,0],[6,4],[6,10],[-9,135]],[[75720,26147,0],[-16,301],[66,-4],[25,-4]],[[75795,26440,0],[20,2],[392,54],[-39,312],[163,-1],[113,0],[209,-47]],[[74271,24462,0],[10,31],[4,-20]],[[74285,24473,0],[114,-69],[100,-33]],[[74499,24371,0],[92,-27],[78,-25]],[[74669,24319,0],[74,-17],[71,-17],[59,-10],[72,-12]],[[74945,24263,0],[55,-6],[59,-7]],[[75059,24250,0],[43,-2]],[[75102,24248,0],[179,-13],[24,1]],[[75305,24236,0],[22,7],[15,9]],[[75342,24252,0],[26,17]],[[75368,24269,0],[35,29],[32,33]],[[75435,24331,0],[44,70]],[[75479,24401,0],[-59,-368],[-43,-286]],[[75377,23747,0],[-53,-337]],[[75324,23410,0],[-29,-332]],[[75295,23078,0],[39,-4],[25,-2],[6,-2],[9,0]],[[75374,23070,0],[-31,-391],[-30,-364],[-7,-85]],[[75306,22230,0],[-84,16],[-172,35]],[[75050,22281,0],[-117,33]],[[74933,22314,0],[-126,40]],[[74807,22354,0],[-113,44]],[[74694,22398,0],[-115,53]],[[74579,22451,0],[-105,57]],[[74474,22508,0],[-108,58],[-102,53],[-44,24],[-104,54],[-100,53]],[[74016,22750,0],[-107,58]],[[73909,22808,0],[-32,17]],[[73877,22825,0],[-124,66]],[[73753,22891,0],[-44,23]],[[73709,22914,0],[-135,71]],[[73574,22985,0],[-112,58],[-170,91]],[[73292,23134,0],[4,4],[58,94],[1,1]],[[73384,23277,0],[52,83],[19,32]],[[73651,23759,0],[101,164]],[[73765,23947,0],[-76,28]],[[73689,23975,0],[96,150]],[[73873,24263,0],[118,179]],[[74034,24536,0],[18,-6]],[[74052,24530,0],[75,-8],[144,-60]],[[73912,21092,0],[-9,16],[-10,20],[-24,48],[-3,6],[-2,4],[-97,-42],[-8,-5]],[[73759,21139,0],[-14,5],[-43,17]],[[73702,21161,0],[-130,50]],[[73572,21211,0],[-109,41],[-46,17]],[[73417,21269,0],[-110,38],[-20,8]],[[73287,21315,0],[77,169],[53,121],[54,100],[8,16],[6,15],[4,13],[-124,43]],[[73365,21792,0],[-149,51],[-44,15]],[[73172,21858,0],[-8,3],[-101,35],[-105,36],[-63,22]],[[72895,21954,0],[-34,13]],[[73574,22985,0],[67,-35],[68,-36]],[[73753,22891,0],[97,-52],[27,-14]],[[73877,22825,0],[11,-6],[21,-11]],[[73909,22808,0],[48,-26],[59,-32]],[[74474,22508,0],[68,-37],[33,-18],[1,0],[3,-2]],[[74694,22398,0],[5,-2],[108,-42]],[[74807,22354,0],[68,-21],[58,-19]],[[74933,22314,0],[101,-29],[16,-4]],[[75306,22230,0],[-35,-359],[-26,-182]],[[75245,21689,0],[-73,-12],[-212,-31],[-100,-16],[-107,-16],[-221,-46],[-53,-17],[-93,-40],[-112,-57],[-111,-75],[-113,-96],[-107,-124],[-8,-19],[-12,-23],[-8,-18],[-3,-7]],[[73702,21161,0],[57,-22]],[[73912,21092,0],[-164,-281]],[[73748,20811,0],[-7,-11],[-1,-2]],[[73740,20798,0],[-9,-7],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0]],[[73722,20785,0],[0,-1],[0,-1]],[[73722,20783,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1]],[[73717,20780,0],[-1,-1],[0,-1]],[[73716,20778,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1]],[[73706,20770,0],[-1,-1],[0,-1]],[[73705,20768,0],[-1,-1],[-1,-1],[-1,0]],[[73702,20766,0],[0,-1],[0,-1]],[[73702,20764,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[73677,20731,0],[-1,-1],[0,-1]],[[73676,20729,0],[-1,-1],[0,-1]],[[73675,20727,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-2]],[[73671,20718,0],[-1,0],[0,-1]],[[73670,20717,0],[-1,-1]],[[73669,20716,0],[0,-1],[-1,-1]],[[73668,20714,0],[0,-1],[0,-1]],[[73668,20712,0],[-1,0]],[[73667,20712,0],[0,-1],[0,-1]],[[73667,20710,0],[-1,0]],[[73666,20710,0],[-1,-2]],[[73665,20708,0],[-28,-76],[-1,-2]],[[73636,20630,0],[-63,-169],[-32,12],[-61,-101],[-21,-37],[-27,-52],[-45,-89],[-65,-171],[-31,-99],[-30,-98]],[[73261,19826,0],[-1,-5],[-62,23]],[[73198,19844,0],[-124,41]],[[73074,19885,0],[-121,41]],[[72953,19926,0],[-58,20]],[[72895,19946,0],[-8,2],[-38,13]],[[72849,19961,0],[-23,8]],[[72826,19969,0],[-28,9]],[[72798,19978,0],[1,35],[8,32],[-36,12]],[[72771,20057,0],[-21,7]],[[72750,20064,0],[-102,34]],[[72648,20098,0],[-65,21]],[[72583,20119,0],[-16,5],[-30,9],[-12,4],[-10,4]],[[72515,20141,0],[-49,16]],[[72466,20157,0],[-52,16],[-110,38],[-17,36]],[[72287,20247,0],[22,43]],[[72309,20290,0],[29,6]],[[72338,20296,0],[33,13],[23,16],[22,22]],[[72416,20347,0],[22,75]],[[72438,20422,0],[16,51],[-10,30],[-12,23]],[[72432,20526,0],[-19,25]],[[72413,20551,0],[38,109],[53,153],[55,159],[37,107]],[[72596,21079,0],[6,19]],[[72602,21098,0],[43,124],[54,159]],[[72699,21381,0],[8,21]],[[72707,21402,0],[178,524],[10,28]],[[73172,21858,0],[42,-14],[151,-52]],[[73287,21315,0],[14,-6],[28,-9],[88,-31]],[[73572,21211,0],[33,-13],[41,-15],[56,-22]],[[74304,19417,0],[-68,-171],[-32,-84],[-33,-82],[-48,49]],[[74123,19129,0],[-19,4],[-121,31],[-35,12],[-48,-82],[-13,-23],[-135,55],[-14,5],[48,92],[-47,14],[-17,5],[-94,40],[10,90],[2,40],[8,70],[8,39],[22,97],[15,66],[-22,7],[-36,11],[-96,31]],[[73539,19733,0],[-22,7]],[[73517,19740,0],[-70,24],[-143,49]],[[73304,19813,0],[-43,13]],[[73636,20630,0],[29,78]],[[73665,20708,0],[1,1],[0,1]],[[73667,20710,0],[0,2]],[[73668,20712,0],[0,2]],[[73668,20714,0],[1,2]],[[73670,20717,0],[1,1]],[[73675,20727,0],[1,2]],[[73676,20729,0],[1,2]],[[73702,20764,0],[0,2]],[[73705,20768,0],[1,2]],[[73716,20778,0],[1,2]],[[73722,20783,0],[0,2]],[[73740,20798,0],[8,13]],[[75245,21689,0],[-32,-212]],[[75213,21477,0],[-16,-54]],[[75197,21423,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,0]],[[75189,21396,0],[0,-1]],[[75189,21395,0],[0,-1],[0,-1]],[[75189,21393,0],[-1,-1],[0,-1]],[[75188,21391,0],[0,-1],[-1,-1],[-1,-1]],[[75186,21388,0],[0,-1],[0,-1],[-1,-1]],[[75185,21385,0],[0,-1]],[[75185,21384,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2]],[[75181,21373,0],[-91,-202]],[[75090,21171,0],[-71,-154],[-75,-152],[-13,-26],[-58,-122],[-11,-27],[-28,-69],[-41,-110],[-12,-32],[-54,-151],[-38,-106],[-34,-101],[-12,-36],[-23,-63],[-5,-15],[-54,-147],[-15,-40],[-2,-4],[-14,-37],[-100,-267],[-81,22],[-35,-91],[-4,-11],[-6,-15]],[[75418,20591,0],[168,-52]],[[75586,20539,0],[56,246],[-143,31],[20,107],[14,86],[2,10],[6,8],[5,4],[8,5],[8,2],[10,2],[9,-1],[109,-30],[38,-10],[182,-51],[53,-13],[33,-4],[43,-4],[45,-1],[58,3]],[[76142,20929,0],[53,9],[6,1]],[[76201,20939,0],[39,10]],[[76240,20949,0],[48,-75],[92,-141]],[[76380,20733,0],[23,-96],[-119,-90]],[[76284,20547,0],[-12,-10],[-25,-19]],[[76247,20518,0],[-40,-38],[-1,0]],[[76206,20480,0],[-37,-42],[-26,-33],[-27,-42],[-26,-47],[-22,-54],[-20,-57],[-10,-42],[-8,-56],[-6,-75],[6,-71],[5,-42],[12,-52],[7,-23],[18,-61],[29,-67],[24,-40],[45,-61],[156,-194]],[[76326,19421,0],[-82,51],[-75,-55],[21,-42]],[[76190,19375,0],[44,-73],[18,-37],[20,-68],[21,-29]],[[76293,19168,0],[29,-3],[13,-4]],[[76335,19161,0],[249,-249],[115,-166],[51,-66]],[[76750,18680,0],[55,-68]],[[76805,18612,0],[-36,-67],[-112,74]],[[76657,18619,0],[-62,-85],[-72,-89]],[[76523,18445,0],[-245,68],[-243,76]],[[76035,18589,0],[23,122],[-209,60],[-58,6]],[[75791,18777,0],[-47,-19],[-46,-17],[-40,-20],[-90,-83]],[[75568,18638,0],[-59,32],[-2,59]],[[75507,18729,0],[-29,72]],[[75478,18801,0],[96,152]],[[75574,18953,0],[12,18],[-44,3]],[[75542,18974,0],[-42,26]],[[75500,19000,0],[-6,-5],[-115,50]],[[75379,19045,0],[-167,71]],[[75212,19116,0],[-149,29]],[[75063,19145,0],[-149,30],[-10,2]],[[74904,19177,0],[-8,14]],[[74896,19191,0],[-2,2],[-9,5],[-17,9],[-40,20],[-78,41]],[[74750,19268,0],[-62,-2]],[[74688,19266,0],[-9,-16],[-64,71]],[[74615,19321,0],[-102,32],[-106,33],[-103,31]],[[75090,21171,0],[399,-81],[-24,-160],[-23,-167],[-24,-172]],[[74615,19321,0],[61,-66],[12,11]],[[74750,19268,0],[101,-52],[45,-25]],[[74896,19191,0],[-51,-90]],[[74845,19101,0],[-55,-119],[-31,-65],[-12,-25]],[[74747,18892,0],[-29,-124],[-12,-54],[-40,-164],[-22,-90]],[[74644,18460,0],[-58,-195]],[[74586,18265,0],[-43,-77],[-19,-35],[-17,-30]],[[74507,18123,0],[-2,-7],[-26,-64]],[[74479,18052,0],[-73,-123]],[[74406,17929,0],[-25,-40]],[[74381,17889,0],[-23,-41],[-26,-46],[-39,-62]],[[74293,17740,0],[82,-88]],[[74375,17652,0],[-9,-10]],[[74366,17642,0],[-75,-77]],[[74291,17565,0],[-75,-73],[-77,-82],[-12,-13]],[[74127,17397,0],[-75,4]],[[74052,17401,0],[-42,-12]],[[74010,17389,0],[-50,-38],[-15,-11],[-43,-32],[-82,-73],[-71,-65],[-48,-38],[-38,-32],[-114,-90]],[[73549,17010,0],[-168,-179]],[[73381,16831,0],[-28,12],[-24,10],[-100,41],[12,24],[-125,56],[-73,33]],[[73043,17007,0],[20,35],[-11,5],[8,16]],[[73060,17063,0],[-72,29],[-25,11],[-48,25],[-90,31],[-42,15],[33,73],[21,50]],[[72837,17297,0],[83,188]],[[72920,17485,0],[27,60],[44,100]],[[72991,17645,0],[41,90]],[[73032,17735,0],[40,89],[9,21]],[[73081,17845,0],[20,46]],[[73101,17891,0],[80,180],[37,84],[43,96]],[[73261,18251,0],[52,121],[19,42],[75,169]],[[73407,18583,0],[58,-21]],[[73465,18562,0],[32,-14],[84,-37],[7,-2],[12,-4],[168,-37],[37,91],[6,16],[38,57],[12,19],[24,35],[22,46],[28,56],[26,50],[68,92],[94,199]],[[65993,31333,0],[47,-42]],[[66518,31118,0],[12,6],[2,1]],[[66508,29215,0],[-10,12],[-16,24],[-81,108],[14,22],[-195,41],[-49,11],[-27,4],[-106,22],[-15,11],[-20,3],[-24,3],[-61,8],[-18,-3],[-22,-2],[-44,-6],[-6,-2],[-35,-5],[-84,-11],[-23,4],[-29,4],[-21,-4],[-38,-8],[-166,10],[-133,10],[-22,6],[-158,43],[-62,17],[-93,10],[-133,40],[-39,-14],[-34,-14],[-149,-12],[-8,38],[-27,45],[19,64],[-46,56]],[[64547,29750,0],[49,26],[47,28],[13,9],[37,24],[37,27],[32,27],[24,21],[44,43],[33,36],[33,40],[11,14],[14,21],[21,29],[39,66],[20,37],[20,41],[9,24],[6,17],[28,82]],[[65064,30362,0],[1,4],[59,174]],[[65124,30540,0],[15,44],[0,2]],[[65139,30586,0],[96,281]],[[65235,30867,0],[10,33]],[[65245,30900,0],[15,36]],[[65260,30936,0],[10,22],[18,37],[13,26],[-107,63]],[[65194,31084,0],[7,4],[93,114],[37,58],[58,71],[37,38],[35,43],[216,197],[70,48]],[[64848,26322,0],[-9,-47],[-3,-17]],[[64836,26258,0],[-7,-24],[-12,-38]],[[64785,26102,0],[-27,-65],[-19,-42],[-19,-40],[-27,-55]],[[64693,25900,0],[-10,-18]],[[64683,25882,0],[-98,-14],[-51,-10],[-1,0]],[[64533,25858,0],[-70,-11],[-64,-17]],[[64399,25830,0],[-63,-18],[-53,-15],[-79,-27],[-25,-8]],[[64179,25762,0],[-17,-5],[-49,-18]],[[64113,25739,0],[-38,-15],[-22,-9]],[[64053,25715,0],[-15,-7],[-41,-18]],[[63997,25690,0],[-20,-9],[-14,-6]],[[63963,25675,0],[-159,-75],[-31,-14]],[[63773,25586,0],[-25,-19],[-72,-53],[-150,128]],[[63526,25642,0],[-53,54],[-4,5]],[[63469,25701,0],[-77,182]],[[63392,25883,0],[-4,11],[-5,10]],[[63383,25904,0],[12,6],[2,0]],[[63397,25910,0],[16,7],[13,4]],[[63426,25921,0],[25,9],[86,32],[-2,6]],[[63535,25968,0],[-9,20],[-11,25]],[[63515,26013,0],[-1,4],[-1,1]],[[63513,26018,0],[0,2],[-1,1]],[[63512,26021,0],[-63,130],[-35,107],[-7,23]],[[63407,26281,0],[-51,-19],[-113,-42]],[[63243,26220,0],[-16,-6]],[[63227,26214,0],[-73,-27],[-50,-19],[-77,-29],[-46,-18]],[[62981,26121,0],[-77,-28],[-49,-18]],[[62855,26075,0],[-54,-20],[-67,-26]],[[62734,26029,0],[-96,196],[0,1]],[[62638,26226,0],[63,69],[2,3],[40,52]],[[62743,26350,0],[34,52],[43,85],[19,52],[16,61]],[[62855,26600,0],[14,79],[4,38]],[[62873,26717,0],[1,65]],[[62874,26782,0],[-4,57],[-1,12]],[[62869,26851,0],[-6,33],[-6,28]],[[62857,26912,0],[-57,253]],[[62800,27165,0],[-12,64],[-17,110]],[[62771,27339,0],[-6,43],[1,8]],[[62766,27390,0],[-5,42],[-6,94]],[[62755,27526,0],[-1,16],[-2,15],[-1,121],[3,71]],[[62754,27749,0],[8,117],[1,12],[14,112],[10,62]],[[62787,28052,0],[20,90],[27,99]],[[62834,28241,0],[17,52]],[[62851,28293,0],[23,76]],[[62874,28369,0],[1,2],[2,5],[24,63]],[[62901,28439,0],[1,4],[1,0],[9,-4],[9,-5]],[[62921,28434,0],[45,-12],[6,-2],[1,0]],[[62973,28420,0],[112,-32]],[[63085,28388,0],[8,-2],[35,-13],[3,-1],[13,-5],[3,-1]],[[63147,28366,0],[1,0],[23,-9],[27,-10],[27,-7],[3,-1],[34,-9],[1,0]],[[63263,28330,0],[23,-4],[0,-1]],[[63286,28325,0],[12,-2]],[[63298,28323,0],[13,-4],[12,-2]],[[63323,28317,0],[27,-4],[23,-1]],[[63373,28312,0],[68,-1],[16,-3],[27,-4]],[[63484,28304,0],[40,-9],[1,0],[38,-9]],[[63563,28286,0],[39,-9],[138,-29],[6,-1],[20,-3],[3,0],[26,-3]],[[63795,28241,0],[1,0],[5,-1]],[[63801,28240,0],[-9,-47],[-1,-2]],[[63791,28191,0],[-6,-53]],[[63785,28138,0],[-1,-3],[0,-6],[-2,-41]],[[63782,28088,0],[0,-19],[1,-28],[0,-6],[0,-4]],[[63783,28031,0],[3,-38],[6,-50],[1,-16]],[[63793,27927,0],[3,-19],[3,-14]],[[63799,27894,0],[12,-46]],[[63811,27848,0],[1,-5],[3,-15]],[[63815,27828,0],[8,-28],[17,-44]],[[63840,27756,0],[9,-23],[13,-24],[12,-25],[12,-24]],[[63886,27660,0],[5,-11],[6,-11],[22,-35],[14,-22],[35,-55]],[[63968,27526,0],[27,-33],[23,-26]],[[64018,27467,0],[50,-53],[118,-122]],[[64186,27292,0],[31,-21],[14,-10]],[[64231,27261,0],[19,-14],[22,-18],[26,-24],[47,-42],[33,-28]],[[64378,27135,0],[23,-20],[1,-1]],[[64503,27023,0],[54,-48],[26,-22],[7,-8],[17,-16],[18,-19],[2,-1],[1,-1]],[[64628,26908,0],[0,-1],[0,-1]],[[64628,26906,0],[1,0],[1,-1]],[[64630,26904,0],[1,0],[1,-1],[0,-1]],[[64633,26901,0],[1,-1],[1,-1],[0,-1]],[[64635,26898,0],[1,0],[0,-1]],[[64636,26897,0],[1,0],[0,-1]],[[64637,26895,0],[1,0],[0,-1],[1,0],[1,-1]],[[64640,26893,0],[0,-1],[1,-1],[1,-1]],[[64642,26889,0],[1,0],[0,-1],[1,-1]],[[64645,26886,0],[0,-1],[1,0]],[[64646,26885,0],[0,-1],[1,-1]],[[64647,26883,0],[1,-1],[1,0],[0,-1]],[[64649,26880,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0]],[[64653,26875,0],[1,-1],[1,-2]],[[64655,26872,0],[1,0],[0,-1],[1,0],[0,-1]],[[64658,26869,0],[0,-1],[1,0],[0,-1]],[[64659,26866,0],[1,0],[0,-1],[1,0]],[[64661,26864,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1]],[[64665,26860,0],[0,-1],[1,-1],[0,-1]],[[64667,26856,0],[0,-1],[1,0]],[[64670,26851,0],[1,-1],[1,-1]],[[64672,26848,0],[1,0],[0,-1]],[[64673,26847,0],[1,-1],[0,-1]],[[64674,26845,0],[1,0],[0,-1]],[[64675,26844,0],[0,-1],[1,0]],[[64676,26843,0],[1,0],[0,-1],[0,-1]],[[64677,26841,0],[1,0],[0,-1]],[[64679,26839,0],[0,-1],[1,-1]],[[64681,26836,0],[0,-1],[1,-1]],[[64682,26833,0],[1,0],[0,-1]],[[64683,26832,0],[1,-1],[30,-49],[1,-2],[10,-17]],[[64725,26763,0],[52,-94],[28,-51]],[[64805,26618,0],[18,-41],[5,-11]],[[64828,26566,0],[3,-7],[7,-20]],[[64838,26539,0],[6,-22],[4,-17]],[[66637,26239,0],[18,-7],[14,-6]],[[66749,26193,0],[38,-8]],[[66892,26017,0],[-93,-42]],[[66799,25975,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,0],[-1,-1]],[[66667,25906,0],[-2,-2]],[[66665,25904,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1]],[[66523,25811,0],[-3,-3]],[[66520,25808,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-2],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,-1]],[[66393,25705,0],[-2,-2]],[[66391,25703,0],[-48,-42]],[[66343,25661,0],[-25,-25],[-15,-15],[-29,-29]],[[66274,25592,0],[-54,-52],[-62,-61]],[[66158,25479,0],[-22,-22],[-20,-20]],[[66116,25437,0],[-13,-13],[-66,-65],[-65,-64],[-11,-13],[-77,-73],[-47,-46],[-106,-102],[-70,-68]],[[65661,24993,0],[-163,-154],[-71,-77],[-30,-33],[-31,-34],[-84,-92],[-48,-50],[-56,-60],[-87,-87],[-45,-46],[-20,-16],[-22,-12],[-18,-5],[-19,-5],[-23,-2],[-22,3],[-28,8],[-23,11],[-16,8],[-49,26],[-14,8],[-50,27],[-21,11],[-60,34],[-45,25],[-14,7],[-19,12],[-24,15],[-38,23],[-36,26],[-28,21],[-46,36],[-22,-14],[-18,-13],[-24,-15],[-111,-81],[-16,-10],[-5,-6],[-84,-65],[-47,-36],[-89,-68],[-24,-19],[-49,-36],[-25,-19]],[[63897,24239,0],[-34,76],[-9,17]],[[63854,24332,0],[-72,155],[-6,14]],[[63776,24501,0],[-26,65]],[[63750,24566,0],[-20,59],[-4,14]],[[63726,24639,0],[-12,43],[-16,78]],[[63698,24760,0],[-4,17]],[[63694,24777,0],[-13,83],[-5,44]],[[63676,24904,0],[-2,29],[-1,52],[-1,57],[3,59],[5,81],[-37,7],[-96,15],[-160,27],[-161,26]],[[63226,25257,0],[6,20],[6,18]],[[63238,25295,0],[22,64],[30,64]],[[63290,25423,0],[37,65],[39,61]],[[63366,25549,0],[42,55],[33,40]],[[63441,25644,0],[34,35]],[[63475,25679,0],[-6,21],[57,-58]],[[63526,25642,0],[151,-128],[96,72]],[[63773,25586,0],[190,89]],[[63963,25675,0],[34,15]],[[63997,25690,0],[56,25]],[[64053,25715,0],[60,24]],[[64113,25739,0],[49,17],[17,6]],[[64179,25762,0],[104,34],[116,34]],[[64399,25830,0],[64,16],[70,12]],[[64533,25858,0],[52,9],[98,15]],[[64693,25900,0],[28,54]],[[64822,25900,0],[1,0],[1,0],[1,0]],[[64827,25901,0],[1,0],[1,0]],[[64830,25902,0],[1,0],[1,0]],[[64833,25902,0],[1,0],[1,0],[1,0]],[[64837,25903,0],[1,0],[2,0],[1,0]],[[64842,25903,0],[1,0],[1,0]],[[64845,25904,0],[1,0],[1,0],[1,0]],[[64849,25905,0],[1,0],[2,0],[1,0]],[[64854,25905,0],[1,0],[1,0],[1,0]],[[64858,25906,0],[1,0],[1,0],[1,0]],[[64862,25907,0],[1,0],[2,0],[1,0]],[[64867,25907,0],[1,0],[1,0],[1,0],[1,0]],[[64872,25908,0],[1,0],[1,0],[1,0]],[[64877,25909,0],[1,0],[1,0],[1,0],[1,0]],[[64882,25909,0],[1,0],[1,0],[1,0],[1,0]],[[64887,25910,0],[1,0],[2,0],[1,0],[1,0]],[[64893,25911,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[64899,25911,0],[1,0],[1,0],[2,0],[1,0]],[[64905,25912,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[64912,25913,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[64919,25913,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[64928,25914,0],[1,0],[2,0]],[[64931,25914,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[64970,25913,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[64979,25913,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[64987,25912,0],[1,0],[1,0],[1,0],[1,0]],[[64992,25911,0],[1,0],[1,0],[1,0],[1,0]],[[64997,25911,0],[2,0],[1,0],[1,0],[1,0]],[[65003,25910,0],[1,0],[1,0],[1,0]],[[65007,25909,0],[1,0],[1,0],[2,0]],[[65012,25909,0],[1,0],[1,0]],[[65015,25908,0],[1,0],[1,0],[1,0]],[[65019,25907,0],[1,0],[1,0]],[[65022,25907,0],[1,0],[1,0]],[[65026,25906,0],[1,0],[1,0]],[[65029,25905,0],[1,0],[1,0]],[[65034,25904,0],[1,0],[1,0]],[[65037,25903,0],[1,0],[2,0]],[[65045,25902,0],[1,0],[1,0]],[[65053,25899,0],[1,0],[1,0]],[[65073,25894,0],[1,-1],[1,-1]],[[65076,25892,0],[2,0],[1,-1]],[[65079,25891,0],[-3,-12],[0,-2]],[[65076,25877,0],[0,-1],[0,-2],[0,-1],[-1,-1]],[[65075,25872,0],[0,-1],[0,-2]],[[65075,25869,0],[0,-1],[0,-1],[0,-2],[0,-1]],[[65075,25864,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[65076,25859,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[65077,25852,0],[1,-1],[0,-1]],[[65080,25844,0],[1,-1],[0,-1]],[[65083,25837,0],[1,0],[1,-1]],[[65085,25835,0],[1,-1],[0,-1]],[[65087,25832,0],[0,-1],[1,0],[1,-1]],[[65089,25829,0],[2,-1],[0,-1],[1,0],[1,-1]],[[65094,25825,0],[1,-2],[1,0],[1,-1]],[[65097,25822,0],[1,-1],[1,0],[1,-1]],[[65100,25820,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1]],[[65106,25816,0],[1,0],[0,-1],[1,0]],[[65110,25814,0],[1,-1],[2,-1]],[[65501,25812,0],[2,1],[2,1]],[[65506,25815,0],[1,0],[1,1],[1,0],[1,1]],[[65511,25817,0],[1,1],[1,0],[1,1],[1,1]],[[65515,25820,0],[2,1],[1,0],[1,1],[1,0],[1,1]],[[65521,25823,0],[1,0],[1,2],[1,0],[1,1],[1,0]],[[65527,25826,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1]],[[65534,25831,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[2,1]],[[65543,25836,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0]],[[65557,25846,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[2,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1]],[[65882,26010,0],[1,0],[1,0],[1,0]],[[65886,26011,0],[1,0],[1,0],[1,0],[1,0]],[[65891,26012,0],[2,0],[1,0],[1,0]],[[65896,26012,0],[1,0],[1,0]],[[65899,26013,0],[1,0],[1,0]],[[65912,26016,0],[1,1],[1,0]],[[65915,26017,0],[1,1],[1,1]],[[65918,26019,0],[1,1],[1,0]],[[65921,26020,0],[1,1],[1,0],[1,1]],[[65925,26022,0],[1,1],[0,1],[1,0],[1,1],[1,0],[2,1]],[[65931,26026,0],[1,1],[1,0],[1,1],[1,1],[1,1]],[[66100,26248,0],[1,0],[0,1]],[[66102,26250,0],[1,0],[0,1]],[[66105,26255,0],[1,1],[1,0]],[[66109,26260,0],[1,1],[1,0]],[[66113,26265,0],[0,1],[1,0]],[[66115,26268,0],[0,1],[1,0]],[[66117,26273,0],[1,0],[1,1]],[[66120,26275,0],[0,1],[1,0]],[[66124,26282,0],[0,1],[1,1]],[[66128,26290,0],[1,0],[0,1]],[[66133,26296,0],[0,1],[1,1]],[[66135,26301,0],[1,1],[1,0]],[[66138,26306,0],[1,0],[0,1]],[[66142,26312,0],[0,1],[1,1]],[[66148,26323,0],[0,1],[1,1]],[[66151,26330,0],[1,0],[0,1]],[[66159,26345,0],[1,0],[0,1]],[[66173,26375,0],[1,1],[0,2]],[[66179,26388,0],[0,1],[0,1],[1,1]],[[66188,26411,0],[0,1],[1,1]],[[66196,26433,0],[0,1],[0,1],[1,1],[0,1]],[[66198,26440,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1]],[[66200,26447,0],[0,1],[0,1],[1,0]],[[66201,26449,0],[0,2],[0,1]],[[66202,26456,0],[1,1],[0,1],[0,1]],[[66203,26459,0],[0,1],[1,2]],[[66204,26462,0],[0,1],[0,1],[1,1]],[[66205,26468,0],[1,1],[0,1],[1,1],[0,2]],[[66208,26475,0],[0,1],[0,1],[0,1],[1,1]],[[66209,26482,0],[0,1],[1,1],[0,1],[0,1]],[[66210,26486,0],[0,1],[1,2],[0,1],[0,1]],[[66212,26493,0],[0,1],[0,2],[0,2]],[[66212,26498,0],[1,2],[0,1],[0,2]],[[66213,26504,0],[1,1],[0,1],[0,2]],[[66214,26508,0],[0,1],[0,1],[1,0],[0,2],[0,1]],[[66215,26513,0],[0,1],[0,1]],[[66215,26515,0],[0,1],[1,1],[0,1]],[[66216,26518,0],[0,1],[0,1]],[[66216,26520,0],[0,1],[0,2]],[[66217,26525,0],[0,1],[0,2]],[[66217,26530,0],[1,1],[0,2]],[[66218,26534,0],[0,1],[0,1],[0,2]],[[66218,26540,0],[1,0],[0,2]],[[66219,26542,0],[0,2],[0,1]],[[66220,26546,0],[0,1],[0,2],[0,1],[0,1]],[[80578,33615,0],[-11,-30],[-2,-5]],[[80565,33580,0],[-7,-16],[-4,-13]],[[80554,33551,0],[-5,-13],[-42,-81],[-59,-66],[2,-35],[-1,-2],[-5,-12],[3,-30],[9,-36],[26,-75],[1,-24],[7,-14],[0,-1],[-4,-12],[-13,-43],[-23,-32],[-23,-39],[-5,-49]],[[80422,32987,0],[-3,1]],[[80419,32988,0],[-24,7],[-9,3],[-41,26],[-24,4],[-15,7],[-12,5],[-20,24],[-9,5],[-9,10],[-5,26],[-12,22],[-38,72],[-11,7],[-28,17],[-48,66],[-6,16],[-6,18],[-5,11],[-15,31],[-29,40],[-18,17],[-19,38],[-6,8],[-34,39],[-19,18],[-13,30],[-17,23],[-18,33],[-8,21],[-4,10],[-5,20],[-4,20],[2,10],[-11,54],[0,14],[-14,12],[-15,8],[-45,28],[-36,24],[-12,37],[0,20],[3,98],[-8,22],[-27,78],[-15,-2],[-98,-34],[-13,34],[24,46],[-1,46],[-41,39],[-26,29],[-13,15],[-95,56],[4,14]],[[79451,34330,0],[46,45],[-18,19]],[[79479,34394,0],[7,56],[4,141],[26,53],[27,1]],[[79543,34645,0],[8,59],[370,152]],[[79921,34856,0],[24,32]],[[79945,34888,0],[24,40],[44,69]],[[80013,34997,0],[34,61]],[[80047,35058,0],[44,71],[251,36]],[[80342,35165,0],[35,6],[12,2],[4,-27]],[[80393,35146,0],[37,7],[-4,24]],[[80426,35177,0],[267,41]],[[80693,35218,0],[243,38],[276,42]],[[81212,35298,0],[8,1],[11,-82],[-3,0],[-37,-1],[-18,-14],[-3,-2],[-27,-22],[-5,-28],[-6,-91],[-3,-14],[0,-41],[0,-1],[-11,-38],[0,-20],[-11,-33],[-43,-107],[-1,-3],[-25,-45],[-23,-48],[-4,-9],[-12,-33],[-16,-40],[-1,-2],[-2,-5],[-43,-82],[-18,-38],[-30,-47],[-54,-83],[-30,-68],[-9,-27],[-46,-105],[-7,-14],[-31,-60],[-8,-15],[-21,-37],[-19,-52],[-26,-46],[-16,-39],[-6,-60],[0,-5],[2,-21],[-5,-29],[-15,-58],[-2,-37],[0,-5],[-2,-4],[-17,-52],[3,-16],[-2,-5]],[[80945,32334,0],[-4,1],[-76,33]],[[80865,32368,0],[-45,28],[-24,14]],[[80796,32410,0],[-95,65],[-54,39],[-23,30]],[[80624,32544,0],[-3,9],[-33,90],[-41,111],[-7,21]],[[80540,32775,0],[-2,5],[-10,27],[-2,4],[-18,38],[-24,47],[-21,29],[-23,31],[-21,32]],[[80419,32988,0],[-2,15],[3,11],[6,27],[35,55],[10,17],[8,25],[5,12],[2,7],[0,5],[-6,16],[-2,13],[0,8],[-7,20],[-12,42],[-7,20],[-7,31],[-4,30],[5,13],[1,29],[1,10],[25,28],[24,25],[9,13],[23,41],[12,26],[10,23],[3,1]],[[80554,33551,0],[1,1],[10,28]],[[80565,33580,0],[13,35]],[[80578,33615,0],[-3,25],[17,48],[3,9],[-1,6],[2,30],[15,63],[5,29],[-2,5],[0,14],[0,13],[1,13],[2,19],[3,17],[1,10],[4,9],[8,18],[9,17],[11,18],[9,19],[7,18],[6,18],[6,18],[4,10],[15,25],[6,6],[6,8],[8,15],[6,15],[7,14],[10,16],[4,12],[20,49],[18,34],[10,24],[9,30],[23,51],[45,74],[14,21],[22,34],[13,16],[20,45],[21,38],[10,27],[7,6],[1,8],[-3,2],[2,9],[7,13],[9,22],[14,35],[6,17],[11,20],[11,23],[20,38],[9,16],[10,26],[17,39],[10,23],[6,22],[5,16],[2,24],[10,22],[0,8],[0,16],[0,30],[4,15],[2,88],[10,29],[4,5],[21,14],[3,1],[19,14],[4,4],[29,1],[-7,54],[-3,23]],[[81212,35298,0],[-1,2],[5,1],[20,7],[-36,230],[-12,78],[49,7],[-5,42],[42,10],[-16,94],[742,120],[170,29]],[[82641,36490,0],[58,58],[4,1]],[[82703,36549,0],[17,5],[1,-24],[-3,-1],[-51,-50]],[[82667,36479,0],[1,-8],[18,-103],[1,-9],[-14,-60],[-19,-78]],[[82649,36193,0],[4,-112],[6,-13],[8,-15],[28,-60],[31,-63],[10,-38],[6,-19]],[[82738,35815,0],[-7,-31],[-8,-28],[-5,-14],[-14,-36]],[[82704,35706,0],[11,-86],[5,-44]],[[82720,35576,0],[-2,-9],[-69,-75],[-60,-66]],[[82589,35426,0],[-42,-73],[-38,-68]],[[82509,35285,0],[-4,-6],[-37,-52],[-11,-32]],[[82457,35195,0],[-15,-36],[-26,-64]],[[82416,35095,0],[-109,-48],[-29,-20],[-54,-59]],[[82072,34775,0],[-35,-72],[-55,-64]],[[81943,34589,0],[-7,-20],[-15,-43],[6,-64],[-24,-86]],[[81874,34305,0],[-11,-60]],[[81863,34245,0],[-8,-42]],[[81841,34157,0],[-33,-30],[-8,-83]],[[81800,34044,0],[-14,-55],[-13,-51],[-12,-92],[-10,-100]],[[81751,33746,0],[-8,-75],[-6,-28]],[[81709,33615,0],[-17,-22],[-13,-34]],[[81696,33521,0],[5,-4],[-18,-85]],[[81683,33432,0],[-8,-1],[-11,-26],[-10,-42]],[[81636,33357,0],[-27,-34],[-56,-80]],[[81553,33243,0],[-37,-68]],[[81516,33175,0],[-34,-63]],[[81482,33112,0],[-13,-42],[-5,-46],[0,-3]],[[81464,33021,0],[-11,-25],[-7,-16],[-125,-121]],[[81297,32834,0],[-8,-7],[-39,-41],[-30,-32],[-14,-15]],[[81206,32739,0],[-22,-29],[-11,-21]],[[81124,32645,0],[-14,-16],[-4,-3]],[[81106,32626,0],[-7,-23],[-20,-2]],[[81079,32601,0],[-14,-15],[-9,-10]],[[81056,32576,0],[-12,-12],[-26,-27],[-27,-28],[-10,-10],[-15,-32],[-16,-38]],[[80955,32381,0],[-6,-19],[-5,-13]],[[80422,32987,0],[29,-44],[38,-53],[39,-78],[4,-7],[8,-30]],[[80540,32775,0],[7,-28],[41,-106]],[[80588,32641,0],[-23,-2],[-12,-2],[-2,-12],[7,-29],[1,-29],[-14,-34],[-22,-27],[1,-43],[-3,-26],[-13,-13],[-13,-24],[-9,-26],[-37,3],[-53,7],[-80,16],[-10,3],[-42,3],[6,15],[-19,19],[-25,2],[-8,8],[-7,8],[-12,17],[-21,28],[-4,22],[-26,13],[-45,-4],[-81,-64],[-9,-5],[-17,-2],[-14,1],[-13,6],[-47,44],[3,25],[-14,5],[-55,3],[-26,-4],[-13,2],[-14,1],[-76,19],[-152,40],[-71,19],[-149,55],[-68,3],[-130,8],[-211,-1],[-10,0],[-10,7],[-10,9],[-19,19],[-6,-9],[-408,230]],[[78572,34071,0],[67,13],[-4,16]],[[78635,34100,0],[128,31]],[[78763,34131,0],[-5,20],[189,46],[72,10]],[[79019,34207,0],[-11,46]],[[79008,34253,0],[422,95],[21,-18]],[[80588,32641,0],[36,-97]],[[80796,32410,0],[69,-42]],[[80865,32368,0],[80,-34]],[[80945,32334,0],[-5,-23],[-3,-15],[-7,-70],[-1,-10],[1,-10],[0,-5]],[[80930,32201,0],[-5,-4],[-4,-4]],[[80921,32193,0],[0,-10],[-1,-5],[0,-8],[0,-3]],[[80898,32116,0],[-5,-13],[-19,-41],[-7,-10],[-10,-15]],[[80813,31998,0],[-80,-73],[-4,-3]],[[80729,31922,0],[-40,-7],[-11,-1],[-36,-18],[-15,-7]],[[80627,31889,0],[-59,-13],[-2,-2],[-29,-30]],[[80493,31800,0],[-2,0],[-31,-2]],[[80432,31786,0],[-8,-9],[-3,-6]],[[80421,31771,0],[-18,-11],[-4,-3]],[[80399,31757,0],[-9,-10],[-24,-31]],[[80356,31665,0],[0,-16],[0,-7]],[[80356,31642,0],[-4,-11],[-3,-4],[-5,-5],[-12,-12],[-5,-4],[-24,-7],[-22,-4],[-24,5],[-18,4],[-54,3],[-11,0]],[[80174,31607,0],[-18,1],[-27,1],[-54,1],[-36,0],[-23,0],[-22,0],[-57,7]],[[79937,31617,0],[-14,2],[-47,6],[-13,1]],[[79863,31626,0],[-50,-8],[-32,11]],[[79781,31629,0],[-38,24],[-18,11],[-23,15],[-8,5],[-35,7],[-61,-2],[-99,-2],[-4,-18],[14,-24],[10,-11],[6,-8],[14,-17],[15,-3]],[[79554,31606,0],[17,-1],[47,-1],[40,0]],[[79687,31575,0],[38,-26],[53,-35]],[[79778,31514,0],[33,-5],[23,-14],[22,-17],[-75,5],[-17,3]],[[79764,31486,0],[-18,1],[-24,2],[-13,1]],[[79710,31503,0],[-82,0],[-10,-3],[-56,-16],[-13,-2],[-52,-6],[-77,-6]],[[79359,31447,0],[-24,-4],[-27,-18]],[[79250,31428,0],[-16,-8],[-16,-10],[-11,-1],[-30,-4],[-22,-11],[-18,-4],[-40,-9],[-97,-6],[-112,-45],[-11,-1],[-49,-8],[-145,-20],[10,-106],[2,-20],[-33,-52],[-32,-9],[-117,7],[-43,23],[-62,8],[-40,-38],[-17,-26],[-37,-22],[-23,-22],[-17,-2],[-46,12],[-23,0],[-15,4],[-29,-3],[-97,4],[-63,-2],[-92,-21],[1,11],[-35,0],[-67,17],[-73,31],[-49,12],[-63,32],[-12,6],[-50,51]],[[77561,31196,0],[-2,6],[-8,23],[-6,15],[-26,74],[-13,34]],[[77506,31348,0],[-2,6],[-2,8],[-25,22]],[[77477,31384,0],[-13,14],[-2,2]],[[77462,31400,0],[-1,2],[-14,18]],[[77447,31420,0],[-10,16],[-5,8],[-16,30]],[[77416,31474,0],[-7,14],[-17,28],[-7,26]],[[77385,31542,0],[-7,28],[-4,21],[0,4],[0,11],[6,22],[5,21]],[[77403,31690,0],[1,1]],[[77404,31691,0],[3,7]],[[77407,31698,0],[5,8]],[[77412,31706,0],[7,7],[7,3]],[[77426,31716,0],[2,2],[6,2],[2,0]],[[77436,31720,0],[2,1]],[[77438,31721,0],[4,0]],[[77443,31721,0],[5,1]],[[77448,31722,0],[8,0],[1,-1]],[[77457,31721,0],[19,-4]],[[77476,31717,0],[31,42],[15,18]],[[77522,31777,0],[-95,44]],[[71103,17893,0],[-12,-27]],[[71091,17866,0],[-61,-128]],[[71030,17738,0],[-16,-25],[66,-11],[-5,-10],[-29,-60],[-65,-133],[-102,46],[-75,-99],[-89,-112],[-23,-29],[-65,-100],[-29,-40],[-11,-17],[-76,-114],[-45,-66],[-11,-16],[-24,-35],[-27,-40],[-23,-34],[-55,-81],[-75,-110],[-9,12],[-32,46],[-7,-9],[-113,-147],[-27,-39],[-18,-27],[-12,-21],[-56,-96],[-63,-107]],[[69914,16264,0],[-10,6],[-24,12],[-27,13],[-43,23],[-13,6],[-95,47],[-115,59],[-20,8],[-36,12],[41,116],[72,211],[-78,17],[-127,18],[-100,9],[-76,10],[-16,-8],[-110,22],[-97,5],[-22,5],[-85,13],[-83,17],[-39,-98]],[[68811,16787,0],[-55,15],[-108,176],[-13,18],[-114,186],[-42,68],[-14,62],[-24,97],[-11,47],[-20,82],[-6,25],[92,112],[79,79],[59,59],[25,51],[7,31],[6,26],[1,35],[2,9],[11,31],[-124,171],[-24,35],[-135,189],[-9,13]],[[68394,18404,0],[-12,26],[-17,35]],[[68365,18465,0],[-21,44],[-105,224]],[[68239,18733,0],[-158,112],[-42,30],[-50,38]],[[67989,18913,0],[47,13],[-19,52],[-120,65],[-108,75],[-98,96]],[[67691,19214,0],[1057,-368],[392,-179],[82,-36],[277,-126],[67,-30],[375,-154],[436,-178],[36,-13],[20,56]],[[71196,19973,0],[1,-1],[0,-1]],[[71197,19971,0],[0,-2],[0,-1],[0,-1],[0,-2],[-43,-80],[-13,-23],[-1,-3]],[[70853,19429,0],[-25,-50],[-86,-168]],[[70667,19029,0],[-6,-20],[-18,-50],[-10,-30]],[[70554,18689,0],[-49,-155],[-4,-14]],[[70390,18205,0],[17,-8],[26,-11]],[[67691,19214,0],[-13,12]],[[67678,19226,0],[42,93],[50,92],[306,-180],[38,53],[38,52],[62,85],[11,28],[-2,20],[41,42],[65,57],[50,38],[7,6],[31,23],[53,38],[15,11],[91,65],[214,130],[28,32],[25,21],[34,14],[63,20],[43,7],[39,1],[49,-1],[161,-22],[59,-7],[51,-5],[86,-7]],[[69428,19932,0],[82,-6]],[[69510,19926,0],[362,-28],[69,0],[58,3],[91,18]],[[70090,19919,0],[101,41],[36,23],[54,35]],[[70281,20018,0],[39,36],[41,37],[35,49]],[[70396,20140,0],[26,38]],[[70422,20178,0],[44,77],[14,24]],[[70480,20279,0],[327,-116],[186,-68],[173,-61],[-16,-33],[1,0],[1,0],[1,0],[1,0],[1,0],[1,2],[1,0],[2,0],[1,0],[1,0],[1,0],[3,0],[1,-2],[1,0],[1,0],[1,0],[1,0],[1,-1],[3,0],[0,-1],[2,0],[1,0],[0,-1],[2,-1],[3,-2],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1]],[[68968,22391,0],[13,-3],[35,-6]],[[69016,22382,0],[42,-9],[66,-10]],[[69124,22363,0],[35,-7],[90,-18],[30,-5]],[[69279,22333,0],[77,-16]],[[69356,22317,0],[91,-16],[10,-2]],[[69457,22299,0],[99,-19]],[[69556,22280,0],[22,-4],[77,-15]],[[69655,22261,0],[104,-18],[25,1],[17,10],[11,19],[-5,-32],[13,8]],[[69820,22249,0],[-5,-26]],[[69815,22223,0],[-5,-48],[-7,-28]],[[69803,22147,0],[-15,-81],[-19,-107]],[[69769,21959,0],[0,-3],[-20,-106]],[[69749,21850,0],[-1,-3],[-21,-107]],[[69727,21740,0],[0,-4],[-14,-219],[-11,-170]],[[69702,21347,0],[-114,-38],[34,-24]],[[69622,21285,0],[13,-21],[3,-28]],[[69638,21236,0],[-7,-46]],[[69631,21190,0],[-1,-12]],[[69630,21178,0],[-57,-54],[-45,-38],[-67,-44],[-84,-34],[-49,-18],[-180,-62],[-24,2],[-17,16],[-79,193],[-35,-9],[-42,-9],[-53,-15],[-27,-7],[-121,-31],[-72,-22],[-17,3],[-35,-2],[-123,9],[-19,8],[-6,19],[-18,1],[-32,7],[-13,-106],[-10,-86],[6,-13],[-49,-16],[-215,-78],[-36,-14],[-68,-26],[-15,-1],[-44,53],[-69,88],[-30,37]],[[67885,20929,0],[-18,-5]],[[67867,20924,0],[-57,-16],[-22,0],[-17,-7],[-35,2],[-31,-10],[-100,149],[-59,56],[-8,8]],[[67538,21106,0],[-16,21],[-33,51],[-24,41],[-28,57]],[[67437,21276,0],[-12,34],[-10,25]],[[67415,21335,0],[-9,32]],[[67406,21367,0],[-11,117],[-1,6]],[[67394,21490,0],[-2,38],[-2,6],[-12,6],[-182,58],[-35,7]],[[67161,21605,0],[7,10],[43,57]],[[67211,21672,0],[19,25],[23,32],[24,40],[30,55],[57,113],[20,37],[18,40],[38,92],[19,46],[8,28],[11,19],[58,197],[45,125],[16,41],[21,41],[23,67]],[[67641,22670,0],[39,-15],[454,-157],[65,-5],[34,-3],[15,-1],[5,-8],[15,-13],[12,-7],[86,-25],[66,-20],[17,-6],[128,-37],[65,-16],[83,-26],[42,-4],[38,-6],[23,-6],[70,-8],[13,1],[11,7],[10,8],[5,13],[11,58],[20,-3]],[[67538,21106,0],[-20,-14],[-287,-159],[-29,-22],[-77,49],[-69,78],[-24,27],[-60,73],[-52,54],[-27,-19],[-55,-37],[-128,-174],[-78,59],[-96,-82],[-13,-18],[-44,-96],[-12,-20],[-7,-11],[-20,-32],[-5,-10]],[[66435,20752,0],[-2,-3],[-10,-17]],[[66423,20732,0],[-6,-6],[-4,-5],[-46,-87],[-9,-8],[-10,-27],[-6,-12],[-31,-54]],[[66311,20533,0],[-5,-8],[-24,-40]],[[66282,20485,0],[-22,-38],[-11,-7],[-39,-62],[-13,-14],[-17,-24],[-27,-34],[-4,-13],[-11,-36],[-30,-59],[-13,-27],[8,-43],[-5,-24],[-15,-61],[-1,-12],[-2,-13],[-3,-40],[1,-11],[1,-12],[-5,-58],[-1,-7]],[[66073,19890,0],[-13,-102],[-13,-6],[-30,-14],[-4,-2],[-96,-20],[-87,-10],[-133,70],[-32,18],[-27,51],[-66,142]],[[65572,20017,0],[-13,9],[-37,-8],[-78,-19],[-8,37],[-4,15],[-8,54],[0,14],[2,31],[6,19]],[[65432,20169,0],[2,55],[0,42]],[[65434,20266,0],[-13,43],[-14,39],[-10,21],[-29,43],[-21,39],[-51,121]],[[65296,20572,0],[31,59],[22,44],[11,19],[-2,6],[-64,202],[-32,93],[-26,84],[-32,93],[-12,32]],[[65192,21204,0],[37,17],[31,12],[39,14],[30,9],[43,10],[78,34],[19,8],[135,69],[84,42],[85,36],[252,191],[38,25],[44,41],[19,17],[21,15],[43,36],[87,81],[91,103],[38,50],[81,99],[34,50],[50,80],[53,129],[63,236],[20,79],[9,36],[81,200],[127,167]],[[66924,23090,0],[53,-14],[24,-5],[75,-32],[15,-5],[44,-14],[62,-18],[90,-39],[158,-43],[188,-40],[21,-48],[22,-53],[-35,-109]],[[67211,21672,0],[-47,-63],[-3,-4]],[[67394,21490,0],[12,-123]],[[67415,21335,0],[22,-59]],[[81358,46426,0],[240,-64]],[[81598,46362,0],[58,-124]],[[81664,46221,0],[8,-63]],[[81672,46158,0],[15,-188]],[[81746,45668,0],[-6,-52]],[[81756,45389,0],[-3,-113]],[[81734,45185,0],[-41,-152]],[[81588,43721,0],[26,-66]],[[81953,43463,0],[-22,-114]],[[81931,43349,0],[-48,-141]],[[81782,43240,0],[-8,-22],[-32,-149]],[[81742,43069,0],[-14,-94]],[[81692,42976,0],[-117,2]],[[81575,42978,0],[-102,14],[-236,36],[-51,6]],[[81186,43034,0],[-22,18],[-49,23],[-16,5],[-120,42],[-62,21],[-88,24],[-81,72],[-64,-8],[-58,21],[-59,7],[-78,-5],[-77,38],[-24,13],[-98,6],[-88,5],[-36,33],[-50,-2],[-30,29],[-102,78],[-37,29]],[[79947,43483,0],[1,31],[0,27]],[[79948,43541,0],[-5,19]],[[79926,43587,0],[-15,17]],[[80024,43866,0],[-8,17],[-14,32]],[[80002,43915,0],[-58,40]],[[79868,43999,0],[-11,98],[-34,81]],[[79823,44178,0],[-102,56],[-173,3]],[[79548,44237,0],[-98,25]],[[79342,44287,0],[0,-43],[0,-5],[-123,5]],[[79110,44257,0],[-82,25],[-144,41],[-17,4],[-31,6],[-24,5],[-30,6],[-88,18],[-24,5],[-31,6],[-23,5],[-15,4],[-10,2],[-16,3]],[[78575,44387,0],[-2,1],[-18,6],[-34,11],[-10,2],[134,121],[49,57],[82,66],[53,21],[52,21],[146,115],[9,7],[-103,97],[54,234],[2,174],[2,128],[93,33],[24,9],[60,13],[115,6],[118,13],[-1,9],[80,16],[124,6]],[[79604,45553,0],[46,-4],[80,-4],[116,-7],[25,0],[52,0],[60,1],[73,7],[45,8],[53,16],[57,26],[40,30],[47,36],[49,48],[35,44],[25,43],[16,25],[22,38],[39,57],[15,15],[3,15],[34,34],[26,42],[30,49],[23,24],[7,17],[60,113],[82,106]],[[81330,46422,0],[28,4]],[[66376,23851,0],[-17,18],[-39,35],[-4,3],[-38,34],[-218,192],[-3,2],[-30,29],[-98,90],[-45,42],[42,42],[110,106],[64,62],[-101,114],[-100,109],[-58,66],[-108,119],[-72,79]],[[66116,25437,0],[42,42]],[[66158,25479,0],[116,113]],[[66274,25592,0],[69,69]],[[66391,25703,0],[1,1],[1,1]],[[66520,25808,0],[2,2],[1,1]],[[66665,25904,0],[2,1],[0,1]],[[66799,25975,0],[40,19],[53,23]],[[68089,26222,0],[21,-54],[10,-25],[10,-26],[-5,-1],[-17,-7],[-10,-9],[-6,-10],[-3,-13],[-1,-11],[4,-85],[0,-26],[0,-62],[-2,-42],[-6,-64],[-10,-67]],[[68074,25720,0],[-16,-68]],[[68058,25652,0],[-10,-61]],[[68048,25591,0],[-21,-39]],[[68027,25552,0],[-103,-190]],[[67924,25362,0],[-3,-7],[-11,-13],[-53,-80],[-36,-53],[-11,-16],[-15,-20],[-17,-27],[-13,-17],[-77,-96]],[[67688,25033,0],[-54,-59]],[[67634,24974,0],[-37,-39],[-56,-52]],[[67541,24883,0],[-40,-34]],[[67501,24849,0],[-62,-50]],[[67439,24799,0],[-43,-33]],[[67396,24766,0],[-52,-38],[-30,-22]],[[67314,24706,0],[-25,-16]],[[67289,24690,0],[-41,-30]],[[67248,24660,0],[-17,-13]],[[67231,24647,0],[-105,-76],[-112,-80],[-78,-57]],[[66936,24434,0],[-36,-25]],[[66900,24409,0],[-13,-9],[-8,-5],[-70,-55],[-69,-57],[-11,-9],[-49,-46],[-47,-46],[-23,-25],[-32,-35],[-35,-42],[-41,-51],[-44,-59],[-42,-59],[-40,-60]],[[79604,45553,0],[-6,61],[-1,37],[-1,193],[-3,228],[3,36],[-5,200],[-1,90],[-1,58],[0,17],[-1,49],[-3,65],[-3,54],[-1,9],[-13,174],[-8,19],[-122,69],[17,22],[13,19],[-163,95],[-110,62]],[[79195,47110,0],[-106,61],[-99,57],[-112,65]],[[78878,47293,0],[-77,45],[-18,9],[-13,31],[1,21]],[[78771,47399,0],[5,11],[56,130]],[[78875,47636,0],[78,169],[2,6],[186,418]],[[79141,48229,0],[106,230]],[[79247,48459,0],[64,137],[63,144]],[[79374,48740,0],[188,-93]],[[79562,48647,0],[139,-66]],[[79751,48559,0],[73,-32]],[[79824,48527,0],[88,-34]],[[79912,48493,0],[64,-10]],[[80071,48456,0],[13,-3],[167,-42]],[[80251,48411,0],[130,-16],[226,-4]],[[80607,48391,0],[59,-2]],[[80693,48388,0],[65,-139],[23,-83]],[[80806,48098,0],[41,-100],[1,-23]],[[80848,47975,0],[71,-136]],[[80919,47839,0],[64,-129]],[[80983,47710,0],[79,-145],[24,-43]],[[65185,34992,0],[-6,-28],[-68,9],[-45,5]],[[65066,34978,0],[-58,44],[-99,77],[-47,28],[-16,3],[-13,1],[-16,-1],[-14,-4],[-13,-6],[-12,-10],[-10,-13],[-7,-14],[-3,-15],[-1,-12],[2,-11],[8,-19],[-18,-11],[-32,-28],[-51,35],[-30,17],[-30,14],[-39,16],[-41,11],[-40,7],[-36,3],[-49,-3],[-42,-5],[-65,-14],[-57,-22],[-46,-25],[-19,-11],[-19,-13],[-27,-23],[-18,-17],[-17,-17],[-14,-16],[-13,-17],[-22,-30],[-98,23],[-50,11],[-12,-15],[-73,24],[-89,-88],[-92,-84]],[[63628,34748,0],[-33,1],[-52,0],[-112,99],[-6,-12],[-19,15]],[[63406,34851,0],[-41,33]],[[63365,34884,0],[-3,3],[38,37],[42,39],[4,10],[-126,65],[-25,13],[-85,45],[-13,7],[3,8],[-7,3],[-97,48]],[[63096,35162,0],[93,154],[20,42]],[[63209,35358,0],[39,79],[29,47],[41,47],[31,33],[27,23],[15,11],[53,40],[43,29],[-1,8],[-9,58],[-12,71],[-17,61],[-8,50],[-15,104],[-13,90]],[[63412,36109,0],[133,84],[55,35],[27,27],[36,39],[53,59],[36,32],[-43,101],[10,8],[8,8],[47,44],[14,12],[-34,34],[22,22]],[[63776,36614,0],[108,-120],[40,-42],[25,-28],[21,-24],[40,-50],[145,-158]],[[64155,36192,0],[81,-94],[12,-14]],[[64248,36084,0],[28,-31]],[[64276,36053,0],[18,-21],[69,-75]],[[64363,35957,0],[49,-64],[32,-42]],[[64444,35851,0],[35,-64],[54,-101]],[[64533,35686,0],[20,-44],[22,-47]],[[64575,35595,0],[13,-18],[45,-59]],[[64633,35518,0],[42,-47],[41,-36],[53,-4],[42,0],[53,5],[51,-13],[11,-3],[11,56],[6,51],[-3,97],[-7,13],[-37,63],[-63,166],[-164,421],[-74,196],[-92,209],[-61,121],[-14,28],[-4,30],[10,42],[20,36],[32,27],[31,9],[25,3],[25,-3],[83,-24],[36,-6],[45,-7],[104,-4],[60,0],[97,11],[81,21],[56,19]],[[65129,36995,0],[50,15],[58,23],[59,29]],[[65296,37062,0],[22,-98],[63,-173],[90,-70],[10,-36],[-29,4],[-55,7],[-133,-29],[-59,-13],[43,-107],[35,-78],[127,-164],[45,-89],[21,-77],[23,-26],[95,-108],[5,-46],[-23,-77],[-46,-109],[-135,88],[-25,61],[-264,67],[-17,-124],[72,-261],[-65,-224],[161,-40],[5,-20],[-50,-200],[-17,-77],[-10,-51]],[[76464,24984,0],[6,-9],[3,-5]],[[76473,24970,0],[7,-10],[61,-87],[16,-24],[46,-63],[4,-5]],[[76607,24781,0],[59,-79],[2,-1],[8,-11],[5,-6],[33,-41]],[[76717,24639,0],[56,6],[92,10]],[[76865,24655,0],[5,1],[91,8],[23,3],[13,1],[22,2]],[[77019,24670,0],[22,6],[7,3],[83,34]],[[77131,24713,0],[9,-76],[44,-101],[19,-46],[18,-36],[158,-100],[107,-73]],[[77486,24281,0],[-92,-407]],[[77394,23874,0],[-2,-4]],[[77392,23870,0],[-9,-16]],[[77383,23854,0],[-3,-5],[-52,-90],[0,-1]],[[77328,23758,0],[-15,-27]],[[77313,23731,0],[-29,-37],[-8,-11]],[[77276,23683,0],[-30,-49]],[[77246,23634,0],[-50,-81],[-85,-237],[-13,-93],[-9,-51],[-5,-87]],[[77084,23085,0],[-7,0]],[[77077,23085,0],[-15,2],[0,9]],[[77062,23096,0],[-3,14],[-1,0]],[[77058,23110,0],[-7,10]],[[77051,23120,0],[-9,9]],[[77042,23129,0],[-8,4],[-16,4]],[[77018,23137,0],[-105,10],[-172,20],[-197,24]],[[76544,23191,0],[-193,20],[-1,0]],[[76350,23211,0],[-99,10]],[[76251,23221,0],[-59,4],[-22,1],[-93,14],[-1,0]],[[76076,23240,0],[-239,26]],[[75837,23266,0],[-196,19]],[[75641,23285,0],[-149,13],[-5,0]],[[75487,23298,0],[-13,-1],[-8,-2],[-11,-4],[-10,-5]],[[75445,23286,0],[-8,-7],[-9,-11]],[[75428,23268,0],[-4,-7]],[[75424,23261,0],[-4,-15],[-8,-78]],[[75412,23168,0],[-1,-10]],[[75411,23158,0],[-7,-92],[-30,4]],[[75374,23070,0],[-79,8]],[[75295,23078,0],[26,305],[3,27]],[[75324,23410,0],[14,89],[39,248]],[[75377,23747,0],[45,291],[5,31],[24,159],[1,5],[26,167]],[[75478,24400,0],[12,76]],[[75490,24476,0],[3,21],[22,99],[29,141],[15,51],[43,128],[33,103]],[[75756,25030,0],[157,17],[1,0]],[[76037,25002,0],[38,-13],[14,1],[13,4]],[[76144,25072,0],[18,2],[14,1]],[[76176,25075,0],[3,0],[5,1],[24,5],[164,32]],[[76389,25121,0],[39,-70],[36,-67]],[[64719,42690,0],[-78,-119],[-3,-3]],[[64638,42568,0],[-12,-21],[13,-4],[19,-14],[11,-25],[3,-21],[-5,-15],[-31,-62],[-34,-64],[-34,-71],[-9,-25],[-2,-6],[-2,-8],[0,-2],[-13,-40],[-7,-27],[-7,-12],[-30,-52],[9,-83],[-5,-51],[-4,-75],[3,-70],[-2,-16],[-4,-24],[1,-3],[21,-50],[19,-71],[8,-75],[16,-75],[35,-85],[30,-103]],[[64625,41318,0],[-78,0],[-106,20],[-228,44],[-174,34],[-61,11],[-82,-116],[-40,-53],[-129,24],[-91,21]],[[63636,41303,0],[-45,11],[-205,47],[-173,41]],[[63213,41402,0],[32,159]],[[63245,41561,0],[4,16],[14,60],[5,22],[7,38],[11,58],[6,44],[25,100]],[[63317,41899,0],[66,298]],[[63383,42197,0],[4,16],[17,77],[51,206],[13,24],[23,17],[30,5],[24,-4],[0,57],[-2,62],[0,3],[5,23],[0,1],[-32,-2],[-65,-1],[-121,-7],[18,7]],[[63957,42707,0],[114,1],[37,0],[44,0]],[[64177,42717,0],[1,28]],[[64168,42854,0],[60,-11],[22,-2],[182,-33]],[[62972,40556,0],[4,16],[22,50],[11,17],[22,48],[11,18],[19,15],[33,7],[63,-2],[0,20],[5,38],[8,47],[22,-1],[164,-21],[201,-25]],[[62972,40516,0],[0,40]],[[62772,40435,0],[102,-2],[153,4],[-25,19],[-19,26],[-11,34]],[[64005,39419,0],[-21,9],[-164,64],[8,16],[0,19],[-2,22],[-8,15],[-20,17],[-293,241],[-147,117],[-25,20],[-54,44],[-87,71],[-190,154],[-116,97],[-111,88],[-3,22]],[[64020,39442,0],[-15,-23]],[[64142,39586,0],[-53,-48],[-69,-96]],[[64155,39641,0],[-9,-13],[-4,-21],[0,-21]],[[64302,39858,0],[-147,-217]],[[64494,40145,0],[-7,-10],[-185,-277]],[[63821,40208,0],[291,-81],[129,-67],[4,-74],[44,-4],[43,8],[72,59],[90,96]],[[63532,40653,0],[-6,-33],[140,-57],[16,-21],[79,-74],[116,-73],[-45,-120],[-11,-67]],[[63540,40693,0],[-8,-40]],[[63557,40783,0],[-17,-90]],[[62917,43078,0],[99,55],[11,6],[52,27],[15,85],[112,-34]],[[62865,43044,0],[18,11],[34,23]],[[62530,42706,0],[41,47],[122,135],[42,63],[6,4],[20,-19],[13,-9],[91,117]],[[62603,42649,0],[-36,28],[-9,7],[-21,17],[-7,5]],[[62611,42659,0],[-8,-10]],[[62722,42782,0],[-111,-123]],[[63186,42703,0],[0,-6],[-153,50],[-96,42],[-69,41],[-41,33],[-17,13],[-38,-41],[-17,-18],[-33,-35]],[[63185,42731,0],[0,-7],[1,-16]],[[61485,44151,0],[66,-31]],[[61551,44120,0],[71,-36],[99,-58],[39,-26],[102,-72],[50,-36],[79,-55],[158,-105],[33,-18],[54,-29],[103,-53],[143,-60],[125,-40],[59,-19],[63,-21],[380,-123]],[[63109,43369,0],[-6,-82]],[[63209,43250,0],[66,-32]],[[63275,43218,0],[-66,24]],[[63209,43242,0],[4,-22]],[[63213,43220,0],[-7,-3]],[[62917,43078,0],[-52,-34]],[[62530,42706,0],[-328,-363],[-255,-286],[-434,-481],[-82,-13],[-67,-9]],[[61364,41554,0],[-603,-91],[-40,12]],[[60721,41475,0],[308,720]],[[61029,42195,0],[26,60]],[[61055,42255,0],[20,49]],[[61075,42304,0],[2,27],[1,24]],[[61078,42355,0],[2,51]],[[61080,42406,0],[1,18],[2,38]],[[61083,42462,0],[0,18]],[[61083,42480,0],[8,171],[3,78]],[[61094,42729,0],[1,25]],[[61095,42754,0],[4,73]],[[61099,42827,0],[1,45]],[[61100,42872,0],[2,28],[2,56],[2,40]],[[61106,42996,0],[4,92]],[[61110,43088,0],[1,32]],[[61111,43120,0],[2,32]],[[61113,43152,0],[3,31]],[[61116,43183,0],[1,11]],[[61117,43194,0],[1,23],[3,29]],[[61121,43246,0],[4,29]],[[61125,43275,0],[6,32]],[[61131,43307,0],[4,25]],[[61135,43332,0],[9,34]],[[61144,43366,0],[4,13]],[[61148,43379,0],[5,18]],[[61153,43397,0],[9,29],[10,28]],[[61172,43454,0],[9,29]],[[61181,43483,0],[13,41],[8,18],[4,131]],[[61206,43673,0],[2,66]],[[61208,43739,0],[2,50],[-4,-3],[-30,-18]],[[61176,43768,0],[-49,-12]],[[61127,43756,0],[-17,-3]],[[61110,43753,0],[-17,-4]],[[61093,43749,0],[-39,-7]],[[61054,43742,0],[-56,-11]],[[60998,43731,0],[-17,-5],[9,44]],[[60990,43770,0],[34,164]],[[61024,43934,0],[9,45]],[[61033,43979,0],[1,7]],[[61034,43986,0],[7,33]],[[61041,44019,0],[5,26]],[[61046,44045,0],[20,86]],[[61066,44131,0],[70,-3]],[[61136,44128,0],[72,51],[36,38],[5,6],[20,21],[5,5]],[[61274,44249,0],[109,-54],[35,-17],[67,-27]],[[73198,19844,0],[62,-22],[1,4]],[[73261,19826,0],[1,0],[42,-13]],[[73517,19740,0],[6,-2],[16,-5]],[[73465,18562,0],[-44,16],[-14,5]],[[73261,18251,0],[-15,11],[15,-11]],[[73101,17891,0],[-9,-22],[-11,-24]],[[73081,17845,0],[-10,-24],[-39,-86]],[[73032,17735,0],[-39,-88],[-2,-2]],[[72920,17485,0],[-61,-137],[-22,-51]],[[73060,17063,0],[-14,-7],[-63,-59],[-15,-13],[-17,-7],[-20,-6],[-32,2],[-19,8],[-21,11],[-13,12],[-46,58]],[[72800,17062,0],[-18,18]],[[72782,17080,0],[-59,61],[-37,36],[-51,47],[-24,22]],[[72611,17246,0],[-46,35],[-32,22]],[[72533,17303,0],[-32,22]],[[72501,17325,0],[-71,43]],[[72430,17368,0],[-127,70],[-46,18],[-70,29]],[[72187,17485,0],[-76,29]],[[72111,17514,0],[-100,15],[-100,23]],[[71911,17552,0],[-68,12]],[[71843,17564,0],[-191,39],[-132,28],[-28,5],[-63,18],[-45,17],[-21,7],[-69,28],[-122,49],[-23,15],[-15,16],[-7,25],[0,21],[4,16],[9,14],[-48,-63],[-40,-45],[-20,-11]],[[71032,17743,0],[59,123]],[[71271,18115,0],[12,-5],[44,89],[7,16],[-15,6]],[[71918,19562,0],[40,85],[44,91],[45,95]],[[72047,19833,0],[50,103]],[[72097,19936,0],[49,104],[52,107],[72,148],[19,-44]],[[72289,20251,0],[-2,-4]],[[72466,20157,0],[3,-1],[46,-15]],[[72583,20119,0],[18,-7],[47,-14]],[[72750,20064,0],[2,0],[19,-7]],[[72798,19978,0],[16,-5],[12,-4]],[[72826,19969,0],[16,-6],[7,-2]],[[72895,19946,0],[54,-19],[4,-1]],[[72953,19926,0],[111,-38],[10,-3]],[[73074,19885,0],[115,-38],[9,-3]],[[71383,22542,0],[-64,-185],[-5,-15]],[[71314,22342,0],[-70,-202],[-4,-13],[-23,-65],[-4,-13],[-21,-59],[-48,-138]],[[71144,21852,0],[-62,-152],[-31,-76]],[[71051,21624,0],[-116,-277]],[[70935,21347,0],[-10,-24],[-4,-8]],[[70921,21315,0],[-16,-38],[-39,-96],[-12,-31]],[[70854,21150,0],[-9,-20]],[[70845,21130,0],[-2,-5],[-8,-20]],[[70835,21105,0],[-36,-84],[-45,-107]],[[70754,20914,0],[-3,-7]],[[70751,20907,0],[-8,-22],[-12,-33],[-39,-98],[-6,-17]],[[70686,20737,0],[-5,-13]],[[70681,20724,0],[-1,0],[-133,-305],[-64,-133],[-3,-6],[-58,-102]],[[70396,20140,0],[-35,-48],[-80,-74]],[[70281,20018,0],[-55,-34],[-35,-23],[-101,-42]],[[69510,19926,0],[-17,2],[-65,5],[20,74]],[[69448,20007,0],[6,33],[73,421]],[[69527,20461,0],[12,65]],[[69539,20526,0],[10,60],[9,56],[51,295],[10,57],[12,196]],[[69638,21236,0],[-3,29],[-13,20]],[[69622,21285,0],[-34,25],[114,37]],[[69702,21347,0],[10,171],[15,222]],[[69727,21740,0],[22,110]],[[69749,21850,0],[20,109]],[[69803,22147,0],[7,29],[5,47]],[[69815,22223,0],[5,25],[0,1]],[[69820,22249,0],[22,124]],[[69842,22373,0],[41,227],[1,-1],[8,-36]],[[69892,22563,0],[55,254]],[[69947,22817,0],[126,-24],[67,-13]],[[70140,22780,0],[243,-47],[278,-53]],[[70661,22680,0],[110,-20],[349,-68]],[[69670,24435,0],[-47,-160]],[[69623,24275,0],[-22,-78],[-114,42],[-61,-94],[-58,-81],[155,-60],[-3,-8],[-5,-15],[-17,-47],[-4,-14],[-13,-37]],[[69481,23883,0],[-18,-49]],[[69463,23834,0],[-13,-41],[-6,-25]],[[69444,23768,0],[57,-27]],[[69501,23741,0],[-34,-206]],[[69467,23535,0],[19,-5],[69,-22]],[[69555,23508,0],[-4,-7],[145,-26],[1,0]],[[69697,23475,0],[42,-4],[61,-6]],[[69800,23465,0],[2,0],[134,-9]],[[69936,23456,0],[91,-18]],[[70027,23438,0],[12,-3],[25,-6]],[[69892,22563,0],[-9,36],[-41,-226]],[[69655,22261,0],[-99,19]],[[69457,22299,0],[-101,18]],[[69279,22333,0],[-139,27],[-16,3]],[[69016,22382,0],[-48,9]],[[66924,23090,0],[124,162]],[[67048,23252,0],[40,36]],[[67088,23288,0],[30,27]],[[67118,23315,0],[7,6]],[[67125,23321,0],[74,70]],[[67199,23391,0],[81,88],[85,72],[66,47],[48,29]],[[67479,23627,0],[40,34]],[[67519,23661,0],[34,37],[64,28]],[[67617,23726,0],[53,17]],[[67670,23743,0],[148,47],[47,15],[21,8],[31,35],[35,22],[115,76],[43,31],[47,15],[91,102],[9,9],[110,103],[-8,9]],[[68359,24215,0],[22,29]],[[68381,24244,0],[49,33]],[[68430,24277,0],[25,19],[25,29],[27,17],[48,48]],[[68555,24390,0],[42,51]],[[68597,24441,0],[37,42]],[[68634,24483,0],[15,9]],[[68649,24492,0],[14,-9]],[[68663,24483,0],[113,117]],[[68776,24600,0],[80,83]],[[68856,24683,0],[30,33],[98,116],[93,105],[94,109]],[[69171,25046,0],[7,-10],[4,-6],[3,-3],[35,-42],[32,-38],[-10,-18],[94,-82],[16,-12],[24,-22],[35,37],[15,16],[53,-40],[48,-40],[20,17],[26,-12],[20,-10],[31,-15],[130,-68],[1,-15],[-1,-13],[-6,-18],[-7,-18],[-14,-19],[-22,-24],[-7,-13],[-9,-21],[-6,-25],[1,-22],[-14,-75]],[[67867,20924,0],[16,4],[2,1]],[[69630,21178,0],[-11,-185],[-10,-57],[-51,-295],[-9,-56],[-10,-59]],[[69539,20526,0],[-10,-60],[-2,-5]],[[69527,20461,0],[-73,-422],[-6,-32]],[[69448,20007,0],[-20,-75]],[[67678,19226,0],[-21,20],[-15,16],[-12,20],[-81,127],[-59,87],[-56,72],[-18,23],[-24,20],[-81,70],[-79,52],[-110,54],[-15,6],[-88,32],[-34,14],[-43,19],[-93,33],[-15,0],[-72,0],[-75,0],[-73,-1],[-67,0],[-16,0],[-65,0],[-45,0],[-23,-1],[-75,2],[-68,0],[-69,-1],[-65,0],[-48,0]],[[66282,20485,0],[29,48]],[[66423,20732,0],[12,20]],[[66376,23851,0],[111,-115],[12,-14]],[[66499,23722,0],[104,-109]],[[66603,23613,0],[102,-110],[17,-19],[14,-15]],[[66736,23469,0],[16,-18]],[[66752,23451,0],[117,-123]],[[66869,23328,0],[179,-76]],[[65192,21204,0],[-56,-21],[-52,-11],[-32,-11],[-84,-26],[-26,-6],[-26,-3],[-64,9]],[[64852,21135,0],[-5,71]],[[64847,21206,0],[12,61]],[[64859,21267,0],[-4,97]],[[64855,21364,0],[-1,27]],[[64854,21391,0],[14,17],[8,17],[7,15]],[[64883,21440,0],[30,183]],[[64913,21623,0],[2,9],[2,15],[-5,26],[-6,15],[-5,9],[-12,16],[-9,7],[-13,9],[-10,6]],[[64857,21735,0],[-29,15]],[[64828,21750,0],[-28,13],[-9,6],[-34,13],[-39,14],[-44,13]],[[64674,21809,0],[-26,5],[-82,13]],[[64566,21827,0],[-17,2]],[[64549,21829,0],[-1,23]],[[64548,21852,0],[0,20]],[[64548,21872,0],[-1,20]],[[64547,21892,0],[14,-1]],[[64561,21891,0],[8,3]],[[64569,21894,0],[11,4]],[[64580,21898,0],[14,9]],[[64594,21907,0],[11,11]],[[64605,21918,0],[9,15]],[[64614,21933,0],[1,16]],[[64615,21949,0],[1,81],[-1,34],[-3,85]],[[64612,22149,0],[-11,55]],[[64601,22204,0],[-15,57]],[[64586,22261,0],[-18,42]],[[64568,22303,0],[-31,62]],[[64537,22365,0],[-5,7]],[[64532,22372,0],[-33,49]],[[64499,22421,0],[-15,21]],[[64484,22442,0],[-14,18]],[[64470,22460,0],[-6,9]],[[64464,22469,0],[-17,20]],[[64447,22489,0],[-52,60]],[[64395,22549,0],[-53,45]],[[64342,22594,0],[-24,19]],[[64318,22613,0],[-20,14],[-93,71]],[[64205,22698,0],[-94,69]],[[64111,22767,0],[-18,13]],[[64093,22780,0],[42,47]],[[64135,22827,0],[24,26]],[[64159,22853,0],[24,29]],[[64183,22882,0],[17,23]],[[64200,22905,0],[41,54]],[[64241,22959,0],[12,23]],[[64253,22982,0],[32,64],[23,60],[-28,18],[-27,23],[-59,52]],[[64194,23199,0],[-36,35]],[[64158,23234,0],[-32,38]],[[64126,23272,0],[-40,47]],[[64086,23319,0],[-51,72]],[[64035,23391,0],[-31,58]],[[64004,23449,0],[-4,9],[-10,20]],[[63990,23478,0],[-31,59]],[[63959,23537,0],[-22,52]],[[63937,23589,0],[-22,58]],[[63915,23647,0],[-7,22],[-15,54],[-13,55],[-8,44],[-2,8]],[[63870,23830,0],[-4,21]],[[63866,23851,0],[24,98]],[[63890,23949,0],[1,0],[1,0]],[[63892,23949,0],[1,0]],[[63893,23949,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1]],[[63908,23949,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[63913,23949,0],[2,1],[1,0],[1,0],[1,0]],[[63918,23950,0],[1,0]],[[63919,23950,0],[1,0],[1,0]],[[63921,23950,0],[1,1]],[[63922,23951,0],[1,0],[1,0]],[[63924,23951,0],[1,0]],[[63925,23951,0],[1,0],[1,1]],[[63927,23952,0],[1,0],[1,1]],[[63929,23953,0],[1,0],[1,0]],[[63931,23953,0],[1,0],[1,1]],[[63933,23954,0],[1,0],[1,1],[2,0]],[[63937,23955,0],[1,0],[1,1]],[[63939,23956,0],[1,0]],[[63940,23956,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[2,1],[1,0]],[[63950,23961,0],[1,0]],[[63951,23961,0],[0,1],[1,0],[1,1],[1,0],[1,2]],[[63955,23965,0],[1,0],[1,0],[1,1]],[[63958,23966,0],[1,1],[1,1],[2,1],[1,1]],[[63963,23970,0],[0,1]],[[63963,23971,0],[1,1],[1,0],[0,1],[1,0],[1,1]],[[63967,23974,0],[1,2]],[[63968,23976,0],[1,1],[1,0],[0,1]],[[63970,23978,0],[1,1],[1,1],[0,1]],[[63972,23981,0],[1,1]],[[63973,23982,0],[1,0],[0,1]],[[63974,23983,0],[1,2]],[[63975,23985,0],[1,0],[0,1]],[[63976,23986,0],[1,1],[0,1]],[[63977,23988,0],[1,0],[0,2]],[[63978,23990,0],[1,1],[0,1]],[[63979,23992,0],[1,0],[0,1]],[[63980,23993,0],[1,1],[0,1]],[[63981,23995,0],[1,1],[0,1]],[[63982,23997,0],[0,1],[1,1]],[[63983,23999,0],[0,1],[1,1],[0,1],[0,1],[1,1]],[[63985,24004,0],[0,2]],[[63985,24006,0],[1,1],[0,1]],[[63986,24008,0],[1,0],[0,2]],[[63987,24010,0],[0,1],[0,1]],[[63987,24012,0],[1,1],[0,1]],[[63988,24014,0],[0,1],[0,1]],[[63988,24016,0],[0,1],[1,1],[0,1],[0,1]],[[63989,24020,0],[0,1],[0,1]],[[63989,24022,0],[0,1],[0,1]],[[63989,24024,0],[0,2],[0,1]],[[63989,24027,0],[0,2],[0,2],[0,2]],[[63989,24033,0],[0,1],[0,2]],[[63989,24036,0],[0,1],[0,1],[0,1]],[[63989,24039,0],[0,2]],[[63989,24041,0],[0,1],[-1,1],[0,2]],[[63988,24045,0],[0,1],[0,1]],[[63988,24047,0],[-49,104],[-42,88]],[[64561,21891,0],[-3,0],[-11,1]],[[64547,21892,0],[0,-10],[1,-10]],[[64548,21852,0],[1,-11],[0,-12]],[[64566,21827,0],[83,-13],[21,-4],[4,-1]],[[64828,21750,0],[6,-3],[23,-12]],[[64913,21623,0],[-26,-159],[-4,-24]],[[64854,21391,0],[0,-2],[1,-25]],[[64859,21267,0],[-7,-36],[-5,-25]],[[64847,21206,0],[1,-14],[4,-57]],[[64852,21135,0],[-388,52]],[[64464,21187,0],[22,121],[-116,24],[-59,13],[-102,23],[-27,7],[-44,12],[-22,6],[-48,14],[-33,11],[-91,32],[-65,26],[-25,10],[-46,20],[-17,9],[-122,63],[-57,33],[-77,46],[-79,50],[-55,39],[-43,31],[-86,66],[-11,10],[-38,28],[-22,18]],[[63201,21899,0],[-46,39],[-2,2]],[[63153,21940,0],[-19,17],[-25,23],[-14,14],[-75,72],[-59,58],[-20,22],[-31,36],[-32,37],[-33,39],[-37,45],[-47,60],[-43,61],[-11,16],[-58,89],[-35,58],[-42,75]],[[62572,22662,0],[79,73]],[[62651,22735,0],[17,18],[7,5]],[[62675,22758,0],[35,17]],[[62710,22775,0],[125,61],[3,1]],[[62838,22837,0],[9,16],[3,7]],[[62850,22860,0],[25,14],[124,67]],[[62999,22941,0],[4,3],[57,30],[133,73],[72,38],[71,39],[48,26],[130,69],[128,72],[58,30],[155,84],[135,73]],[[64004,23449,0],[21,-39],[10,-19]],[[64035,23391,0],[36,-51],[15,-21]],[[64086,23319,0],[22,-27],[18,-20]],[[64126,23272,0],[4,-6],[28,-32]],[[64158,23234,0],[35,-34],[1,-1]],[[64253,22982,0],[-7,-13],[-5,-10]],[[64200,22905,0],[-11,-15],[-6,-8]],[[64183,22882,0],[-8,-11],[-16,-18]],[[64135,22827,0],[-38,-41],[-4,-6]],[[64111,22767,0],[55,-41],[39,-28]],[[64318,22613,0],[20,-16],[4,-3]],[[64342,22594,0],[38,-33],[15,-12]],[[64395,22549,0],[12,-14],[40,-46]],[[64464,22469,0],[3,-4],[3,-5]],[[64470,22460,0],[13,-17],[1,-1]],[[64499,22421,0],[18,-26],[15,-23]],[[64537,22365,0],[8,-15],[23,-47]],[[64586,22261,0],[6,-20],[9,-37]],[[64601,22204,0],[6,-27],[5,-28]],[[64615,21949,0],[0,-7],[-1,-9]],[[64614,21933,0],[-5,-8],[-4,-7]],[[64605,21918,0],[-7,-7],[-4,-4]],[[64580,21898,0],[-6,-3],[-5,-1]],[[65185,34992,0],[149,-33],[650,-143],[20,-4],[19,-2],[19,-1],[24,1],[18,1],[32,7]],[[66116,34818,0],[21,6]],[[66137,34824,0],[27,11],[28,15],[70,35],[14,-25]],[[66276,34860,0],[14,-28],[1,-3]],[[66291,34829,0],[153,15]],[[66444,34844,0],[33,3]],[[66477,34847,0],[39,-3]],[[66516,34844,0],[24,-6]],[[66540,34838,0],[29,-8]],[[66569,34830,0],[68,-31]],[[66637,34799,0],[121,-17],[23,-18],[32,-36]],[[66813,34728,0],[22,-8]],[[66835,34720,0],[96,-7],[120,-19],[159,-57],[6,-2]],[[67216,34635,0],[51,-18],[41,-1],[196,58],[19,10]],[[67024,33424,0],[-9,-52]],[[67240,32144,0],[-240,-39],[-82,-17]],[[66918,32088,0],[-407,-123]],[[66511,31965,0],[-329,-98]],[[65194,31084,0],[-11,5]],[[65183,31089,0],[-182,103]],[[65001,31192,0],[-26,16]],[[64975,31208,0],[-88,56],[-16,27]],[[64871,31291,0],[-9,15],[-24,41]],[[64838,31347,0],[-9,15],[-2,5],[-23,46]],[[64804,31413,0],[-4,3],[-111,77],[-4,2],[-15,10],[-1,2],[-6,3],[-25,17],[-51,35],[-13,17],[-15,19],[-13,16],[-95,119]],[[64451,31733,0],[-19,32]],[[64432,31765,0],[-22,14]],[[64410,31779,0],[-2,21]],[[64408,31800,0],[-2,5]],[[64406,31805,0],[-36,39]],[[64370,31844,0],[-60,55],[-16,15],[0,21],[-61,56],[-2,7],[-8,24],[-26,45],[-2,4],[-4,7],[-13,21],[-6,11],[-7,48],[-2,12],[-7,23],[1,25],[-4,53],[-7,33],[3,20],[1,33],[-3,30]],[[64147,32387,0],[-1,13],[-1,3]],[[64145,32403,0],[-7,52]],[[64138,32455,0],[-4,14],[-2,15]],[[64132,32484,0],[4,12],[72,-84],[44,-37],[30,-20],[45,-17],[45,-10],[52,-4],[53,1],[44,11],[47,18],[46,19],[59,31],[353,240],[206,144],[60,41],[50,33],[76,82],[47,87],[21,82],[2,7],[12,104],[-1,506],[-76,1],[-2,187],[-91,2],[-2,373],[-110,2],[-5,109],[-45,4],[1,295],[-94,-3],[126,183],[-80,56],[-55,39]],[[64132,32484,0],[6,-29]],[[64145,32403,0],[2,-16]],[[64370,31844,0],[-126,-82],[-13,-11],[-23,-5],[-12,-9],[-88,-60],[-10,-6],[-15,-9],[-49,-24],[-35,-18],[-5,-3],[-5,0],[-59,11],[-75,23],[-34,15],[-56,56]],[[63765,31722,0],[-9,10]],[[63756,31732,0],[-10,10],[-27,77],[-49,134],[-25,65],[-15,38],[34,13],[29,13]],[[63693,32082,0],[-21,54]],[[63672,32136,0],[-91,202],[-91,200],[-11,24],[-13,-5]],[[63466,32557,0],[-4,10]],[[63462,32567,0],[-43,96],[-40,82]],[[63379,32745,0],[-9,23],[-14,56],[-5,0]],[[63351,32824,0],[-3,23],[-5,32]],[[63343,32879,0],[-6,39],[-2,17],[-4,43],[-3,31],[5,1]],[[63333,33010,0],[-5,63]],[[63328,33073,0],[-8,75],[-1,29]],[[63319,33177,0],[-1,18]],[[63318,33195,0],[-6,75],[-5,24],[34,8],[-3,16],[-15,91]],[[63323,33409,0],[-4,98],[-2,56]],[[63317,33563,0],[-9,102]],[[63308,33665,0],[-21,434]],[[63287,34099,0],[-19,304],[-1,40]],[[63267,34443,0],[25,1],[55,22],[59,24],[18,4],[113,6],[77,4],[12,199],[2,45]],[[61741,39885,0],[-46,-55],[-13,-14],[-26,-30],[-24,-28],[-73,43],[-13,9],[-5,-6],[-53,-70],[146,-86],[54,-28],[66,-39],[54,-31],[54,-32],[49,-28],[83,-48],[-74,-115],[-51,-67],[-10,-17],[-30,-48],[-43,-49],[40,-71],[19,-31],[15,-26],[22,-35],[4,-9],[9,-16],[23,-43],[24,-47],[22,-43],[8,-15],[19,-35],[12,-23]],[[62003,38752,0],[-71,-50],[-1,-1],[-8,-5],[-44,-33],[-41,-42],[-58,-61],[-79,-83],[-24,-26],[-32,-36],[-14,-16],[-88,-55],[-47,-77],[-6,-33],[8,-70],[-43,-92],[-76,-46]],[[61379,38026,0],[-5,55],[-12,42],[-98,35],[-113,41],[-63,-131],[-185,-64],[-10,9],[-21,-18],[-21,-27],[-20,-23]],[[60831,37945,0],[-35,26],[-253,15],[27,59],[-95,33],[-178,75],[-85,-110],[-60,-84],[-143,-222],[-84,-144],[-62,-122],[-69,-149]],[[59794,37322,0],[-63,24],[-19,9],[-29,15],[-25,-11],[-41,-23],[-48,-7],[-15,-3],[-1,-7],[0,-4],[-41,-11],[-41,-26],[-62,-93],[-57,-102]],[[59352,37083,0],[-16,11],[-28,19],[-101,122],[-73,73],[-2,3],[-47,48],[5,5],[15,12],[-9,13]],[[59096,37389,0],[-42,70],[-16,25],[-44,75],[-61,33],[-3,13],[-2,9]],[[58928,37614,0],[-4,23]],[[58924,37637,0],[-3,16],[133,109],[96,125],[-42,37],[8,32],[8,23],[3,10],[3,8],[23,48],[21,41],[8,13],[21,33],[42,63],[40,57],[11,21],[22,43],[21,42],[27,34],[36,33],[-98,93],[-77,88],[-32,43],[-3,5],[-5,6],[-19,16],[-36,31],[16,24],[27,40],[39,41],[32,30],[14,10],[40,25],[169,51],[292,46],[0,19],[0,2],[-2,44],[-179,-6],[-17,133],[-14,15],[-10,13],[-9,18],[-13,25],[-44,142],[-3,15],[-5,25],[-41,-12],[-218,-80],[-9,17],[-63,100],[-34,69],[-9,9],[-45,54],[-19,-8],[-87,151],[-7,21],[-10,27],[0,1],[-3,9]],[[58920,39777,0],[125,28],[374,87],[4,-8],[67,16],[102,23],[54,11],[116,27],[174,43],[72,11]],[[60008,40015,0],[25,-18],[25,-18],[93,-71],[4,-5],[86,11],[3,0],[86,-8],[11,-2],[39,-3],[68,3],[46,3],[104,-9],[17,96],[5,24],[1,8],[2,12],[118,6],[84,3],[34,2],[79,1],[43,-17],[15,-7],[73,17],[14,3],[8,2],[43,10],[21,5],[49,12],[65,4],[82,7],[81,-35],[18,-8],[16,-6],[56,-20],[2,-2],[131,-78],[38,-23],[9,-6],[39,-23]],[[64494,40145,0],[-70,-105],[-71,-106],[-51,-76]],[[64302,39858,0],[-38,-57],[-31,-46],[-32,-48],[-3,-3],[-7,-11],[-2,-3],[-5,-7],[-3,-4],[-26,-38]],[[64142,39586,0],[2,-7],[4,-19],[17,-23],[27,-19],[37,-19]],[[64229,39499,0],[67,-33],[6,-2]],[[64302,39464,0],[34,-15],[38,-11],[41,-12],[75,-12],[47,-6],[29,-3],[73,-4],[68,2],[62,5],[64,8],[50,9],[49,10],[17,4],[23,7],[26,15],[18,14],[7,7],[6,9],[7,11],[55,19],[105,36],[12,-8],[17,-9],[25,-4],[24,2]],[[65274,39538,0],[83,31],[82,32]],[[65439,39601,0],[146,53],[35,13],[36,14]],[[65656,39681,0],[97,36]],[[65753,39717,0],[129,51],[13,5]],[[65895,39773,0],[31,12]],[[65926,39785,0],[6,2],[73,26]],[[66005,39813,0],[108,32],[114,28]],[[66227,39873,0],[143,23]],[[66370,39896,0],[85,12],[106,11]],[[66561,39919,0],[107,8]],[[66668,39927,0],[60,-21],[13,-5]],[[66741,39901,0],[13,-118]],[[66754,39783,0],[35,-341]],[[66907,38267,0],[-139,-33],[-177,-33],[-157,-1],[-170,4],[-89,-6],[-32,-12],[-19,4],[-7,-7],[-9,-11],[-49,43],[-106,-38],[-65,-68],[-44,37],[-21,21],[-123,46],[-72,-55],[-65,-40],[-23,18],[-20,29],[-11,17],[-77,140],[-12,21],[-19,44],[-49,-20],[-36,-15],[-90,-36],[-15,5],[-132,-49],[-15,-28],[-59,12],[-1,-24],[-98,-34],[-54,-16],[90,-70],[-64,-33],[-233,-120],[-338,-184],[-47,59],[-126,-58],[-105,-129],[-58,-44],[-45,-37],[-62,-73],[-47,-30],[-12,-8],[-1,-1],[71,-105],[-303,-191],[-64,56],[-43,38],[-83,105],[41,21],[-60,66],[-76,133],[29,108],[-5,62],[-36,89],[-37,6],[-50,25],[-33,126],[-23,253],[-19,173],[-15,62],[-40,102],[-36,47],[-20,52],[-29,12],[-2,187],[91,202],[15,32],[-62,277],[69,5],[74,44],[135,139],[96,105],[62,69],[9,4],[82,114],[4,5],[16,19],[48,59],[26,27],[56,58],[86,80],[24,32],[5,36],[14,20]],[[58924,37637,0],[1,-8],[3,-15]],[[59096,37389,0],[-45,1],[-80,2],[-17,1],[-91,2],[-29,-4],[-53,6],[-118,29],[-74,15],[-128,11],[-33,-29],[-8,-6],[-208,81]],[[58212,37498,0],[-120,46],[-21,8],[-10,4],[-18,7],[-63,25],[-33,13],[-30,12],[-162,64],[-10,33],[-3,8],[-22,73],[-21,23],[-66,31],[-12,6],[-19,16],[-22,-10],[-78,-36],[-11,4],[-109,43],[0,3],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-86,33],[-10,3],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[0,2],[-1,0],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[-125,49],[-53,-117],[-72,-157],[-93,-77],[-61,-51],[-3,-3],[-6,-6]],[[56779,37577,0],[-21,20]],[[56758,37597,0],[-21,22],[-67,66]],[[56670,37685,0],[38,20]],[[56708,37705,0],[7,5],[45,28]],[[56760,37738,0],[51,46],[7,7]],[[56818,37791,0],[14,12],[21,19]],[[56853,37822,0],[-1,2],[-4,2]],[[56848,37826,0],[-86,68]],[[56762,37894,0],[-13,7],[-17,10]],[[56732,37911,0],[-46,26],[-56,32]],[[56630,37969,0],[-24,17],[-7,6]],[[56599,37992,0],[-45,24]],[[56554,38016,0],[-6,0],[-10,0]],[[56538,38016,0],[-44,25],[-32,18]],[[56462,38059,0],[-31,21],[-25,16]],[[56406,38096,0],[-39,22]],[[56367,38118,0],[55,74],[1,2]],[[56423,38194,0],[17,20]],[[56440,38214,0],[7,7],[4,5]],[[56451,38226,0],[6,7]],[[56457,38233,0],[22,15],[2,1]],[[56481,38249,0],[19,11]],[[56500,38260,0],[8,4],[13,7]],[[56521,38271,0],[22,9],[6,2]],[[56549,38282,0],[24,10]],[[56573,38292,0],[10,2],[18,3]],[[56601,38297,0],[33,6],[33,6]],[[56667,38309,0],[27,4]],[[56694,38313,0],[25,3],[107,13]],[[56826,38329,0],[101,19],[182,26],[29,5]],[[57138,38379,0],[68,10],[111,17]],[[57317,38406,0],[124,20],[182,28],[33,5]],[[57656,38459,0],[64,13],[39,7]],[[57759,38479,0],[4,1],[5,1]],[[57768,38481,0],[63,23],[3,3],[36,21],[10,7],[28,25]],[[57908,38560,0],[133,96],[4,3]],[[58045,38659,0],[9,8],[82,70]],[[58136,38737,0],[6,6],[15,16]],[[58157,38759,0],[62,72],[75,95]],[[58294,38926,0],[13,15],[65,80]],[[58372,39021,0],[32,37]],[[58404,39058,0],[21,39],[1,2]],[[58426,39099,0],[17,39]],[[58443,39138,0],[6,32],[0,2]],[[58449,39172,0],[1,38]],[[58450,39210,0],[6,173],[1,33]],[[58457,39416,0],[0,3],[4,19]],[[58461,39438,0],[4,9],[8,19]],[[58473,39466,0],[9,22]],[[58482,39488,0],[21,27],[10,12]],[[58513,39527,0],[20,20],[15,16]],[[58548,39563,0],[53,44]],[[58601,39607,0],[-14,12],[-17,14]],[[58570,39633,0],[23,19],[69,45]],[[58662,39697,0],[13,7],[13,6]],[[58688,39710,0],[19,8],[7,3]],[[58714,39721,0],[7,3],[26,10]],[[58747,39734,0],[173,43]],[[57869,40346,0],[-34,-96]],[[57835,40250,0],[161,3],[27,4],[78,21]],[[58101,40278,0],[56,12]],[[58157,40290,0],[11,-2]],[[58168,40288,0],[-3,-22]],[[58165,40266,0],[-7,-11],[-127,-182],[-13,-17],[-4,-5],[-67,-97],[-62,-100]],[[57885,39854,0],[-43,-72]],[[57842,39782,0],[32,-2],[116,-9],[142,-8],[207,-4],[122,-2],[83,5],[91,12],[34,8],[41,10]],[[58710,39792,0],[19,-30]],[[58729,39762,0],[12,-21],[6,-7]],[[58747,39734,0],[-33,-13]],[[58714,39721,0],[-26,-11]],[[58688,39710,0],[-26,-13]],[[58570,39633,0],[31,-26]],[[58548,39563,0],[-35,-36]],[[58513,39527,0],[-31,-39]],[[58473,39466,0],[-12,-28]],[[58461,39438,0],[-4,-22]],[[58457,39416,0],[-7,-206]],[[58449,39172,0],[-6,-34]],[[58426,39099,0],[-22,-41]],[[58372,39021,0],[-78,-95]],[[58157,38759,0],[-21,-22]],[[58136,38737,0],[-91,-78]],[[58045,38659,0],[-137,-99]],[[57768,38481,0],[-9,-2]],[[57759,38479,0],[-103,-20]],[[57317,38406,0],[-179,-27]],[[56826,38329,0],[-132,-16]],[[56667,38309,0],[-66,-12]],[[56601,38297,0],[-28,-5]],[[56549,38282,0],[-28,-11]],[[56521,38271,0],[-21,-11]],[[56481,38249,0],[-24,-16]],[[56451,38226,0],[-11,-12]],[[56423,38194,0],[-56,-76]],[[56367,38118,0],[-17,31],[-21,38],[-19,32],[-121,-144]],[[56189,38075,0],[-124,111],[-3,3]],[[56062,38189,0],[-49,-48]],[[56013,38141,0],[-37,28]],[[55976,38169,0],[-21,22],[-8,5],[-62,57],[-11,10],[-72,78]],[[55802,38341,0],[-116,-44]],[[55686,38297,0],[-19,-8]],[[55667,38289,0],[-43,-71]],[[55624,38218,0],[-102,14],[-44,-44],[-107,-115],[-78,-104],[-10,-14],[-46,33],[-29,23],[-29,23]],[[55179,38034,0],[95,192],[110,167]],[[55384,38393,0],[6,20]],[[55390,38413,0],[3,11],[2,8],[-95,52],[-97,54],[70,83],[23,27],[42,42],[45,41],[61,47],[78,49],[108,62],[59,25],[-8,16]],[[55681,38930,0],[149,52]],[[55830,38982,0],[204,75]],[[56034,39057,0],[100,39],[15,6]],[[56149,39102,0],[57,25]],[[56206,39127,0],[30,33],[34,41]],[[56270,39201,0],[68,101]],[[56338,39302,0],[-8,76],[-17,183],[-6,63]],[[56307,39624,0],[-24,8]],[[56283,39632,0],[-106,150]],[[56177,39782,0],[-108,186]],[[56069,39968,0],[142,171]],[[56211,40139,0],[288,178],[141,52]],[[56640,40369,0],[113,6]],[[56753,40375,0],[30,1]],[[56783,40376,0],[98,7]],[[56881,40383,0],[92,1]],[[56973,40384,0],[115,-10]],[[57088,40374,0],[13,-1]],[[57101,40373,0],[50,-4]],[[57151,40369,0],[6,0]],[[57157,40369,0],[138,-9]],[[57295,40360,0],[34,-1]],[[57329,40359,0],[131,-7]],[[57460,40352,0],[48,-4]],[[57508,40348,0],[137,-1],[75,-1],[149,0]],[[59140,44198,0],[48,-9]],[[59193,44185,0],[319,-47]],[[59541,44134,0],[18,-3]],[[59559,44131,0],[41,-34]],[[59600,44097,0],[110,-86]],[[59710,44011,0],[271,-212]],[[59981,43799,0],[-14,-17]],[[59967,43782,0],[-17,-20]],[[59950,43762,0],[-12,-7]],[[59938,43755,0],[-3,-2]],[[59935,43753,0],[-18,-5]],[[59917,43748,0],[-2,0]],[[59915,43748,0],[-27,-6],[-24,-3]],[[59864,43739,0],[-25,-13]],[[59839,43726,0],[-73,-17]],[[59766,43709,0],[-29,2]],[[59737,43711,0],[-59,-20]],[[59678,43691,0],[-27,-12]],[[59651,43679,0],[-15,-9]],[[59636,43670,0],[-50,18],[-108,38],[-44,15],[-74,24]],[[59360,43765,0],[-1,-5]],[[59359,43760,0],[-12,-70]],[[59347,43690,0],[11,-2]],[[59358,43688,0],[17,-5]],[[59375,43683,0],[-3,-2],[-4,-2],[-1,0]],[[59367,43679,0],[-3,-2]],[[59364,43677,0],[-4,-3]],[[59360,43674,0],[-3,-2]],[[59357,43672,0],[-1,-2]],[[59356,43670,0],[-2,-1],[0,-2]],[[59354,43667,0],[-2,-2]],[[59352,43665,0],[-1,-1]],[[59351,43664,0],[0,-1],[-1,-1]],[[59350,43662,0],[-1,-2]],[[59349,43660,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1]],[[59346,43653,0],[-22,-105]],[[59324,43548,0],[-26,-129]],[[59298,43419,0],[-10,-46]],[[59288,43373,0],[-24,-115]],[[59264,43258,0],[-16,-87]],[[59248,43171,0],[-9,-39],[-8,-38],[-9,-46]],[[59222,43048,0],[-12,-63]],[[59210,42985,0],[-2,-9]],[[59208,42976,0],[-7,-35]],[[59201,42941,0],[0,-4]],[[59201,42937,0],[0,-4]],[[59201,42933,0],[0,-6]],[[59201,42927,0],[0,-6]],[[59201,42921,0],[0,-5]],[[59201,42916,0],[1,-1],[0,-1]],[[59202,42914,0],[0,-3]],[[59202,42911,0],[0,-2],[1,-1],[0,-1]],[[59203,42907,0],[1,-7]],[[59204,42900,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1]],[[59208,42888,0],[1,-2]],[[59209,42886,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2]],[[59212,42879,0],[-21,2]],[[59191,42881,0],[-20,3]],[[59171,42884,0],[-39,4],[-9,0]],[[59123,42888,0],[-181,19]],[[58942,42907,0],[-7,-38],[-114,24]],[[58821,42893,0],[-4,30]],[[58817,42923,0],[-38,-12]],[[58779,42911,0],[-68,-20]],[[58711,42891,0],[-52,-15]],[[58659,42876,0],[-33,-6]],[[58626,42870,0],[-38,-6]],[[58588,42864,0],[-78,-35],[-105,-43],[-43,-17],[-89,-35],[-111,-43]],[[58162,42691,0],[45,168],[27,98],[12,45],[11,39],[19,72]],[[58276,43113,0],[9,36]],[[58285,43149,0],[16,63]],[[58301,43212,0],[8,28]],[[58309,43240,0],[57,208]],[[58366,43448,0],[12,48]],[[58378,43496,0],[5,18],[6,23],[35,128]],[[58424,43665,0],[9,33]],[[58433,43698,0],[10,37]],[[58443,43735,0],[28,106]],[[58471,43841,0],[17,63]],[[58488,43904,0],[7,23]],[[58495,43927,0],[10,36]],[[58505,43963,0],[9,34]],[[58514,43997,0],[9,34]],[[58523,44031,0],[10,36],[10,41]],[[58543,44108,0],[45,180]],[[58588,44288,0],[8,26]],[[58596,44314,0],[41,-9]],[[58637,44305,0],[92,-20]],[[58729,44285,0],[45,-9]],[[58774,44276,0],[74,-16]],[[58848,44260,0],[47,-10]],[[58895,44250,0],[30,-6]],[[58925,44244,0],[101,-21]],[[79354,22863,0],[-16,1],[-161,16]],[[79177,22880,0],[-56,-154],[-6,-6],[-59,-98],[-6,-9],[-130,-234],[-48,-93],[-39,-96],[-27,-102],[-13,-102],[-3,-26],[2,-145],[2,-53]],[[78794,21762,0],[1,-4],[1,-16]],[[78796,21742,0],[1,-153],[0,-38]],[[78797,21551,0],[-46,12],[-28,6],[-49,12],[-151,9],[-40,3],[-8,1],[-8,0],[-30,1],[-58,4]],[[78379,21599,0],[-8,0],[-2,0]],[[78369,21599,0],[-106,6],[-104,4],[61,91],[1,2],[7,13],[7,14],[3,6],[17,35],[1,3],[13,27],[2,4],[3,8],[-202,48],[-15,3]],[[78057,21863,0],[-109,25],[-24,5]],[[77924,21893,0],[-23,-274],[-304,24]],[[77597,21643,0],[-113,8],[-21,2]],[[77463,21653,0],[-195,15],[-238,17]],[[77030,21685,0],[-28,1]],[[77002,21686,0],[-34,3]],[[76968,21689,0],[0,2]],[[76968,21691,0],[22,206],[20,272],[23,256]],[[77033,22425,0],[24,228],[7,91]],[[77064,22744,0],[6,81]],[[77070,22825,0],[3,51]],[[77073,22876,0],[6,84],[1,67]],[[77080,23027,0],[4,58]],[[77246,23634,0],[2,3],[28,46]],[[77276,23683,0],[8,10],[29,38]],[[77328,23758,0],[52,90],[3,6]],[[77392,23870,0],[1,2],[1,2]],[[77486,24281,0],[242,-246],[85,-77],[155,-97],[112,-83],[502,-72],[6,1],[292,83],[302,-69],[246,-128],[106,-50],[-2,-13],[-3,-32],[-6,-54],[-19,-187],[-3,-24],[-25,-8],[-30,-14],[-16,-14],[-11,-13],[-15,-29],[0,-60],[-21,-105],[-25,-70],[-4,-36],[0,-21]],[[59947,41695,0],[129,-37]],[[60076,41658,0],[156,-44]],[[60232,41614,0],[113,-32]],[[60345,41582,0],[76,-23],[103,-31],[18,-5],[150,-42],[29,-6]],[[61364,41554,0],[-38,-30],[-46,-35],[-43,-33],[82,-63],[-99,-114],[-101,-117],[-107,-124],[-103,-120],[-142,-155],[-106,-117],[-93,-99],[-81,-95],[-78,-82],[-15,-14],[-46,-45],[-53,-42],[-54,-39],[-58,-36],[-54,-29],[-60,-28],[-31,-14],[-38,-14],[17,-24],[16,-22],[18,-23],[-43,-25]],[[58729,39762,0],[-7,11],[-12,19]],[[57842,39782,0],[14,24],[29,48]],[[58165,40266,0],[2,11],[1,11]],[[58168,40288,0],[3,28]],[[58171,40316,0],[23,-1]],[[58194,40315,0],[7,0]],[[58201,40315,0],[113,-1]],[[58314,40314,0],[33,-2]],[[58347,40312,0],[329,32],[39,4]],[[58715,40348,0],[11,2]],[[58726,40350,0],[-4,44]],[[58722,40394,0],[6,10]],[[58728,40404,0],[10,28]],[[58738,40432,0],[22,43],[12,31],[11,57],[2,12],[14,77],[17,63],[8,13],[2,9]],[[58826,40737,0],[23,84]],[[58849,40821,0],[27,84],[25,89],[6,0]],[[58907,40994,0],[43,-9]],[[58950,40985,0],[65,120],[24,36],[30,32],[14,14]],[[59083,41187,0],[25,-10]],[[59108,41177,0],[12,106],[-32,-3]],[[59088,41280,0],[-91,5]],[[58997,41285,0],[24,139]],[[59021,41424,0],[12,81]],[[59033,41505,0],[18,95]],[[59051,41600,0],[21,112]],[[59072,41712,0],[16,52]],[[59088,41764,0],[-11,4]],[[59077,41768,0],[-152,-34]],[[58925,41734,0],[0,4],[-9,166],[-1,83]],[[58915,41987,0],[92,-25]],[[59007,41962,0],[219,-62]],[[59226,41900,0],[126,-37],[186,-52],[165,-47],[244,-69]],[[59352,37083,0],[22,-13],[22,-16],[-35,-94],[-1,-94],[-2,-212],[-40,-4],[0,-49],[2,-141],[1,-131],[25,2],[3,-73],[11,-43],[47,-70],[16,-117],[12,-139],[-106,-13],[24,-320],[29,-128],[28,-97],[17,-40],[52,-172]],[[59479,35119,0],[4,-16],[-140,-25],[-18,-2],[-67,-21],[-133,-41],[-112,-45],[-171,-17],[-92,-31],[-61,0],[-246,-35],[-49,7],[-135,39],[-14,-1]],[[58245,34931,0],[-73,-4],[-18,-1]],[[58154,34926,0],[-3,0],[-38,4]],[[58113,34930,0],[-56,16]],[[58057,34946,0],[-20,5],[-12,4]],[[58025,34955,0],[-30,13],[-2,0]],[[57993,34968,0],[-29,14]],[[57964,34982,0],[-64,32],[-16,8]],[[57884,35022,0],[-62,20],[-27,8]],[[57795,35050,0],[0,-13]],[[57795,35037,0],[0,-15],[0,-14]],[[57795,35008,0],[-108,49],[-26,12]],[[57661,35069,0],[-12,6],[-33,13]],[[57616,35088,0],[-26,7],[-65,18]],[[57525,35113,0],[-20,44],[-2,7],[-35,-9],[-16,1],[-34,5],[-22,3],[-18,3]],[[57378,35167,0],[0,1],[6,16],[7,22],[-13,22],[-18,2],[-18,3],[-9,2],[-41,8],[-12,6],[-25,13],[-43,35],[23,73],[11,45],[14,50],[-28,7],[4,19],[3,9],[1,7],[3,13],[7,32],[21,46],[3,5],[11,23],[55,3],[71,3],[57,30],[3,8],[7,15],[37,76],[30,65],[7,15],[5,9],[22,44],[11,18],[13,29],[1,2],[3,6],[64,35],[41,37],[41,53],[58,2],[31,40],[11,35],[14,41],[4,48],[2,15],[15,36],[13,30],[0,15],[0,2],[8,4],[13,5],[17,82],[3,16],[11,77],[7,60],[8,56],[86,-3],[44,-6],[36,-5],[-1,24],[-2,25],[-15,117],[238,92],[17,7],[5,2],[-26,36],[-13,18],[-73,94],[-135,175],[23,13],[57,31],[73,39],[-18,17],[-1,2],[-6,5],[-61,46],[-35,39],[-1,1],[23,29],[9,11],[20,51]],[[62603,42649,0],[-63,-69],[-55,-64],[-91,-104],[-147,-144],[-154,-151],[-84,-99],[-384,-437],[3,-52]],[[61628,41529,0],[-1,-34],[0,-2]],[[61627,41493,0],[0,-37]],[[61627,41456,0],[1,-115],[0,-16]],[[61628,41325,0],[9,-3],[25,-9],[31,-17],[31,-17],[40,-40],[37,-47],[14,-59],[7,-27],[159,-102],[28,-18],[67,-43],[64,-60],[28,-17],[122,-77],[25,-4],[17,-5],[12,-7],[8,-7],[21,-18],[26,-24]],[[62399,40724,0],[-22,-25],[-17,-26],[-38,-62],[3,-15],[-13,-38],[10,-23],[18,-59],[-7,-11],[0,-57],[21,-35],[-29,-35],[22,-54],[13,-20],[-22,-40],[2,-51],[-20,-11],[-142,23],[-10,-24],[20,-26],[-101,-27],[-161,-40],[0,32],[-49,-58],[-93,-110],[-27,-29],[-15,-19],[-1,1]],[[64625,41318,0],[196,7]],[[64821,41325,0],[15,-62],[27,-125],[12,-80],[2,-24],[1,-28],[0,-38],[-4,-53],[-4,-35],[-10,-50],[-10,-45],[-16,-62],[-28,-79],[-36,-82],[-77,-153],[-21,-39],[-41,-72]],[[64631,40298,0],[-14,-21],[-20,1],[-12,-3],[-11,-6],[-24,-43]],[[64550,40226,0],[-11,-17],[-45,-64]],[[63532,40653,0],[6,30],[2,10]],[[63557,40783,0],[1,12],[9,64]],[[63567,40859,0],[56,366],[13,78]],[[66965,39866,0],[1,-41],[-1,-21]],[[66859,40428,0],[5,-19],[34,-103]],[[66650,40877,0],[2,-4],[87,-171]],[[66540,41056,0],[-3,8],[-44,123]],[[66623,40850,0],[-83,206]],[[66662,40757,0],[-35,81],[-4,12]],[[66738,39934,0],[27,6],[16,8],[34,28],[24,33],[11,28],[5,27],[-4,50],[-45,163],[-34,122],[-11,76],[-99,282]],[[66669,39927,0],[69,7]],[[66668,39927,0],[1,0]],[[66741,39901,0],[-73,26]],[[66913,39827,0],[-28,12]],[[61136,44128,0],[-1,0],[-69,3]],[[61066,44131,0],[-8,-35],[-12,-51]],[[61041,44019,0],[-1,-7],[-6,-26]],[[61034,43986,0],[0,-3],[-1,-4]],[[61033,43979,0],[-6,-32],[-3,-13]],[[61024,43934,0],[-7,-36],[-27,-128]],[[60998,43731,0],[8,2],[48,9]],[[61093,43749,0],[16,3],[1,1]],[[61110,43753,0],[10,2],[7,1]],[[61127,43756,0],[29,7],[20,5]],[[61208,43739,0],[-1,-46],[-1,-20]],[[61181,43483,0],[-4,-12],[-5,-17]],[[61153,43397,0],[-2,-7],[-3,-11]],[[61144,43366,0],[-1,-6],[-8,-28]],[[61135,43332,0],[-2,-12],[-2,-13]],[[61131,43307,0],[-3,-16],[-3,-16]],[[61125,43275,0],[-1,-8],[-3,-21]],[[61117,43194,0],[-1,-10],[0,-1]],[[61116,43183,0],[-1,-14],[-2,-17]],[[61111,43120,0],[-1,-22],[0,-10]],[[61110,43088,0],[-2,-47],[-2,-45]],[[61100,42872,0],[0,-17],[-1,-28]],[[61099,42827,0],[-1,-22],[-3,-51]],[[61095,42754,0],[0,-25],[-1,0]],[[61083,42480,0],[0,-7],[0,-11]],[[61080,42406,0],[-1,-29],[-1,-22]],[[61075,42304,0],[-8,-21],[-12,-28]],[[61029,42195,0],[-228,-534],[-80,-186]],[[60345,41582,0],[-2,0],[-111,32]],[[60232,41614,0],[-79,22],[-77,22]],[[60076,41658,0],[-97,27],[-32,10]],[[59226,41900,0],[-56,15],[-163,47]],[[59007,41962,0],[-42,11],[-50,14]],[[58915,41987,0],[-15,7],[-2,1],[-2,2],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[58870,42032,0],[0,1],[0,1],[0,1]],[[58870,42035,0],[0,2]],[[58870,42037,0],[0,1],[0,1],[0,1]],[[58870,42040,0],[0,2],[0,1],[18,71],[1,5],[31,113]],[[58920,42232,0],[20,-6],[63,-15],[-18,133],[83,12],[27,4],[16,6],[3,3],[7,9],[62,-43],[43,-27],[19,47],[48,52],[6,5],[5,-2],[50,56]],[[59354,42466,0],[29,33],[4,-3],[9,-8],[53,63],[8,10],[15,18],[9,12],[31,37],[-14,12],[-14,11],[-54,40],[-41,31],[-36,28],[-1,1],[-7,0],[-47,-1],[0,-5],[0,-10],[-138,0],[2,6],[2,8],[113,-1],[1,0],[-3,64],[-15,11],[-15,11],[-15,16],[-2,2],[-5,8],[-11,19]],[[59212,42879,0],[50,-6],[31,-4],[23,-3],[36,-4],[59,-8],[16,3],[20,2],[6,-27],[3,-11],[-5,-19],[10,-2],[1,2],[3,14],[16,-8],[81,-38],[10,-4],[5,-3],[21,-8],[63,-22],[25,-8],[37,-13],[4,-2],[8,-4],[38,-22],[44,-24],[63,-23],[15,-6],[5,-1],[24,-10],[46,-17],[19,-6],[9,-3],[19,-6],[19,-5],[22,-6],[66,-12],[9,29],[7,20],[11,35],[19,58],[30,93],[19,61],[12,36],[13,41],[21,64],[32,101],[31,-8],[4,12],[30,89],[2,7],[26,2],[2,7],[23,45],[11,15],[24,21],[22,22],[14,12],[-6,19],[-2,22],[13,75],[2,6],[-38,32],[-21,18],[-23,19],[-56,47],[-43,22],[-107,58],[-88,48],[-136,106]],[[60631,44844,0],[8,7],[11,11]],[[60685,44897,0],[38,-44],[43,-61],[50,-74],[50,-80],[55,-78],[68,-78],[73,-79],[92,-81],[61,-39],[59,-34]],[[67017,37168,0],[48,-499],[17,-102],[9,-88]],[[67091,36479,0],[13,-132],[10,-93]],[[67114,36254,0],[2,-22],[3,-23],[6,-64]],[[67125,36145,0],[5,-51]],[[67130,36094,0],[1,-11],[30,-287]],[[67161,35796,0],[14,-135]],[[67175,35661,0],[31,-298]],[[67206,35363,0],[13,-128],[13,-130],[7,-62]],[[67239,35043,0],[5,-118]],[[67244,34925,0],[-4,-154],[-9,-61],[-15,-75]],[[66835,34720,0],[-8,3],[-14,5]],[[66637,34799,0],[-44,20],[-24,11]],[[66540,34838,0],[-9,2],[-15,4]],[[66516,34844,0],[-17,2],[-22,1]],[[66444,34844,0],[-152,-15],[-1,0]],[[66291,34829,0],[-15,31]],[[66137,34824,0],[-17,-4],[-4,-2]],[[65296,37062,0],[62,46],[89,92],[51,53],[50,61],[43,62],[42,83],[15,49],[9,42],[6,40],[1,7],[138,-5],[244,-20],[41,-3],[22,-6],[114,41],[25,23],[18,-2],[23,9],[12,41],[127,-4],[-40,79],[50,-15],[81,-66],[73,-32],[71,-33],[1,15],[309,0]],[[57378,35167,0],[-10,-25],[-11,-2],[-68,-8]],[[57289,35132,0],[-95,-11],[-31,-4]],[[57163,35117,0],[-8,-1],[-19,-2]],[[57136,35114,0],[-110,-13],[-74,-9],[-125,-15]],[[56827,35077,0],[-27,-2],[-12,-2]],[[56788,35073,0],[-31,23]],[[56757,35096,0],[-64,50],[-17,20],[-16,22],[-54,64],[-11,12],[-20,19],[-29,33],[-23,38]],[[56523,35354,0],[-8,11],[-63,86]],[[56452,35451,0],[-66,103],[5,9],[3,17],[7,49]],[[56401,35629,0],[1,7],[0,8]],[[56402,35644,0],[11,24],[12,30]],[[56425,35698,0],[12,37],[3,11]],[[56440,35746,0],[6,5],[5,5]],[[56451,35756,0],[12,19],[5,9]],[[56468,35784,0],[8,36]],[[56476,35820,0],[13,20],[1,1]],[[56490,35841,0],[14,150],[1,16],[4,41],[-9,7]],[[56500,36055,0],[-95,38],[-80,31]],[[56325,36124,0],[-42,16],[5,23],[-2,23],[-6,51],[-1,14],[15,29],[-5,49],[-12,31]],[[56277,36360,0],[40,48],[38,48]],[[56355,36456,0],[56,-12]],[[56411,36444,0],[4,11],[1,5]],[[56416,36460,0],[11,41],[14,55]],[[56441,36556,0],[26,99],[7,22],[24,96]],[[56498,36773,0],[3,13],[3,10]],[[56504,36796,0],[13,47],[12,47]],[[56529,36890,0],[11,40],[2,6]],[[56542,36936,0],[14,55],[80,-37]],[[56636,36954,0],[64,-24],[30,-12]],[[56730,36918,0],[3,7]],[[56733,36925,0],[10,18],[4,8]],[[56747,36951,0],[-2,10],[-4,22]],[[56741,36983,0],[-2,27],[0,1]],[[56739,37011,0],[-1,70],[13,55],[9,46],[3,12],[13,7]],[[56776,37201,0],[6,-4],[7,-5]],[[56789,37192,0],[8,-4],[31,-17]],[[56828,37171,0],[36,-28],[31,-25]],[[56895,37118,0],[10,-13],[15,-16]],[[56920,37089,0],[6,-10],[3,-6]],[[56929,37073,0],[32,-52]],[[56961,37021,0],[24,-22],[42,-38]],[[57027,36961,0],[20,13],[51,30]],[[57098,37004,0],[92,28],[1,0]],[[57191,37032,0],[-89,102],[-76,86]],[[57026,37220,0],[-51,59]],[[56975,37279,0],[-31,35],[-61,68]],[[56883,37382,0],[-23,26]],[[56860,37408,0],[-22,26],[-9,10]],[[56829,37444,0],[-22,24]],[[56807,37468,0],[-59,70],[-9,10],[40,29]],[[56938,44294,0],[-1,-3],[-4,-19]],[[56933,44272,0],[-21,7],[-84,27],[-34,11],[-18,5]],[[56776,44322,0],[-55,16],[-22,7],[25,111],[11,51],[22,101],[12,54],[7,31],[17,74],[62,-15],[67,-16],[116,-27],[26,-6]],[[57064,44703,0],[8,-2],[36,-9]],[[57108,44692,0],[-6,-19]],[[57102,44673,0],[15,-4],[45,-14]],[[57162,44655,0],[33,-12],[11,-4]],[[57206,44639,0],[106,-16],[32,-4]],[[57344,44619,0],[15,49],[2,7],[28,-7]],[[57389,44668,0],[50,-14],[78,-22]],[[57517,44632,0],[79,-21],[9,-2],[9,0],[11,2],[8,2]],[[57633,44613,0],[3,2],[5,2]],[[57641,44617,0],[1,1],[7,5]],[[57649,44623,0],[6,7]],[[57655,44630,0],[2,2],[3,7]],[[57660,44639,0],[4,6],[8,16]],[[57672,44661,0],[-10,-121],[10,-3],[9,97],[10,111],[3,12],[3,13],[1,7],[5,116],[5,17],[20,81]],[[57728,44991,0],[10,42],[2,5]],[[57740,45038,0],[0,4],[4,16]],[[57744,45058,0],[14,56],[26,105],[34,106]],[[57818,45325,0],[0,1],[13,42]],[[57831,45368,0],[254,-68],[209,-36],[10,26],[169,-39],[7,-2],[33,-8],[3,0],[18,-4],[9,-1],[48,-7]],[[58634,44307,0],[3,-2]],[[58596,44314,0],[-3,-12],[-5,-14]],[[58588,44288,0],[-20,-84],[-25,-96]],[[58523,44031,0],[-5,-22],[-4,-12]],[[58505,43963,0],[-3,-12],[-7,-24]],[[58495,43927,0],[-47,13],[-212,46],[-122,27],[-24,5],[-209,48],[-48,11],[-4,1],[-90,20],[-3,0],[-103,24],[-1,0],[-63,15],[-4,1],[-25,7],[-19,5],[-5,1],[-163,41],[-9,2],[-76,21],[-46,12],[-68,20],[-69,20],[-6,1],[-4,2],[-25,7],[-2,-5],[-5,1],[-14,4],[-67,12],[-7,2],[-17,3]],[[56938,44294,0],[17,76],[27,71],[-151,29],[-31,-132],[138,-44]],[[55976,38169,0],[2,-2],[35,-26]],[[56013,38141,0],[34,33],[15,15]],[[56189,38075,0],[29,-25],[-109,-144],[-114,-142],[-126,-154]],[[55869,37610,0],[-53,-64],[-64,-78]],[[55752,37468,0],[-2,-1],[-137,-165]],[[55613,37302,0],[-44,-46],[-123,-128],[-67,-69],[-11,6],[-132,-133],[-49,-51],[-25,-25],[-41,-41],[-47,-49]],[[55074,36766,0],[-14,-14],[-32,-33]],[[55028,36719,0],[-69,-72],[-10,-9]],[[54949,36638,0],[-84,-86],[-159,-160],[-99,-103]],[[54607,36289,0],[-15,-16],[-15,-17],[-14,-13]],[[54563,36243,0],[-47,-53],[-39,-42]],[[54477,36148,0],[-88,-119]],[[54389,36029,0],[-51,12]],[[54338,36041,0],[-32,-13],[-5,-2]],[[54301,36026,0],[-45,-19],[-14,3],[-4,1],[-14,0],[-25,-1],[-25,9],[-14,0],[-10,6],[-14,0],[-44,14],[-13,2],[-17,3],[-3,1],[-22,-6],[-31,1],[-5,20],[17,39],[-38,0],[-7,30],[-22,23],[-58,-7],[-9,-1],[-29,0],[-7,0],[-54,-7],[-31,0],[-100,1],[-47,10],[-109,-3]],[[53507,36145,0],[8,28],[1,74],[-44,0],[-107,2],[-130,1]],[[53235,36250,0],[8,76],[-1,10],[3,61],[-3,14],[-8,34],[0,49],[6,2],[3,17],[4,19],[9,55],[-54,44],[-53,35],[-43,26],[49,37],[95,142],[24,80],[-10,29],[-7,19],[-44,9],[-112,13],[-73,16],[-13,6],[-20,11],[-29,15],[-41,4],[-50,-51],[-25,45],[-18,50],[-83,75],[-1,1],[-57,77],[-31,38],[-30,29],[-79,117],[-69,100],[69,51],[-1,11],[-21,12],[-64,114],[-28,50],[-18,2],[2,13],[5,4],[-9,45],[27,38],[6,93],[22,43]],[[52472,38030,0],[233,-78]],[[52705,37952,0],[51,-35],[26,-18]],[[52782,37899,0],[31,-3]],[[52813,37896,0],[13,-25],[16,-30]],[[52842,37841,0],[103,-30],[79,2],[20,1],[14,0],[35,-5],[3,-75],[5,-77],[5,-44]],[[53106,37613,0],[9,-77]],[[53115,37536,0],[192,-56],[52,-16],[17,76],[19,91],[85,-15]],[[53480,37616,0],[2,84]],[[53482,37700,0],[21,28],[2,2]],[[53505,37730,0],[29,39],[13,34],[6,18]],[[53553,37821,0],[30,84]],[[53583,37905,0],[15,39],[87,102],[141,118]],[[53826,38164,0],[76,-32],[109,-153],[20,-26]],[[54031,37953,0],[11,-15],[12,-17]],[[54054,37921,0],[65,-59],[21,-18],[79,-69],[66,-52],[6,-21]],[[54291,37702,0],[22,-34],[19,-30]],[[54332,37638,0],[37,15],[27,11],[24,9],[36,12],[142,47],[15,5],[85,26],[67,23],[18,2],[259,82],[103,156],[34,8]],[[55624,38218,0],[6,11],[37,60]],[[55686,38297,0],[4,1],[112,43]],[[59209,42886,0],[0,1],[-1,1]],[[59204,42900,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[59202,42911,0],[0,1],[0,1],[0,1]],[[59201,42916,0],[0,1],[0,2],[0,1],[0,1]],[[59201,42921,0],[0,1],[0,2],[0,2],[0,1]],[[59201,42927,0],[0,2],[0,1],[0,1],[0,2]],[[59201,42933,0],[0,1],[0,1],[0,1],[0,1]],[[59201,42937,0],[0,1],[0,1],[0,1],[0,1]],[[59208,42976,0],[1,8],[1,1]],[[59210,42985,0],[0,4],[12,59]],[[59248,43171,0],[9,48],[7,39]],[[59264,43258,0],[11,50],[13,65]],[[59288,43373,0],[7,34],[3,12]],[[59298,43419,0],[10,49],[16,80]],[[59324,43548,0],[7,38],[15,67]],[[59349,43660,0],[0,1],[1,1]],[[59351,43664,0],[0,1],[1,0]],[[59352,43665,0],[0,1],[1,1],[1,0]],[[59356,43670,0],[1,1],[0,1]],[[59357,43672,0],[2,1],[1,1]],[[59360,43674,0],[1,0],[0,1],[1,0],[1,1],[1,1]],[[59364,43677,0],[1,1],[2,1]],[[59375,43683,0],[-14,3],[-3,2]],[[59358,43688,0],[-4,0],[-7,2]],[[59347,43690,0],[8,50],[4,20]],[[59359,43760,0],[1,3],[0,2]],[[59636,43670,0],[9,6],[6,3]],[[59678,43691,0],[52,18],[7,2]],[[59737,43711,0],[3,0],[26,-2]],[[59839,43726,0],[17,9],[8,4]],[[59915,43748,0],[1,0],[1,0]],[[59935,43753,0],[2,1],[1,1]],[[59950,43762,0],[7,9],[10,11]],[[56975,37279,0],[5,-6],[46,-53]],[[57191,37032,0],[-93,-28]],[[57098,37004,0],[-71,-43]],[[57027,36961,0],[-66,60]],[[56929,37073,0],[-9,16]],[[56920,37089,0],[-25,29]],[[56895,37118,0],[-67,53]],[[56789,37192,0],[-13,9]],[[56739,37011,0],[2,-28]],[[56741,36983,0],[6,-32]],[[56747,36951,0],[-14,-26]],[[56730,36918,0],[-94,36]],[[56542,36936,0],[-13,-46]],[[56529,36890,0],[-25,-94]],[[56504,36796,0],[-6,-23]],[[56441,36556,0],[-25,-96]],[[56416,36460,0],[-5,-16]],[[56355,36456,0],[-78,-96]],[[56325,36124,0],[175,-69]],[[56490,35841,0],[-14,-21]],[[56468,35784,0],[-17,-28]],[[56451,35756,0],[-11,-10]],[[56440,35746,0],[-15,-48]],[[56425,35698,0],[-23,-54]],[[56402,35644,0],[-1,-15]],[[56452,35451,0],[71,-97]],[[56757,35096,0],[-165,-145],[-149,152],[-44,-39],[-156,-137],[-30,32],[-35,35],[-16,22],[-18,26],[-10,49],[2,42],[5,33],[-10,1]],[[56131,35167,0],[-24,4],[-154,20],[-271,-226],[-51,-30],[-29,-12],[-36,-6],[-26,-1],[-25,4],[-33,10],[-51,25],[-219,231],[-41,43],[-41,-3],[-99,19],[-59,-45]],[[54972,35200,0],[-60,-33]],[[54912,35167,0],[-80,-19]],[[54832,35148,0],[-22,-16]],[[54810,35132,0],[-23,-24]],[[54787,35108,0],[-223,-222]],[[54564,34886,0],[-22,-21]],[[54542,34865,0],[-79,-32]],[[54463,34833,0],[-29,-27],[-37,-20],[-68,-79],[-80,-92],[-8,10]],[[54241,34625,0],[-42,57]],[[54199,34682,0],[22,40]],[[54221,34722,0],[-74,77]],[[54147,34799,0],[-19,-1],[-23,7],[-33,1]],[[54072,34806,0],[-32,-8]],[[54040,34798,0],[-51,-55],[-19,-22],[-28,9],[-31,17]],[[53911,34747,0],[44,212],[23,68],[41,90],[77,145],[47,89],[40,75],[73,134],[59,108],[19,35]],[[54334,35703,0],[52,97],[54,103]],[[54440,35903,0],[27,46],[-30,16],[-12,8],[-13,8],[-23,48]],[[54477,36148,0],[86,95]],[[54563,36243,0],[44,46]],[[54949,36638,0],[79,81]],[[55028,36719,0],[46,47]],[[55613,37302,0],[139,166]],[[55752,37468,0],[117,142]],[[56406,38096,0],[56,-37]],[[56462,38059,0],[76,-43]],[[56538,38016,0],[16,0]],[[56599,37992,0],[31,-23]],[[56630,37969,0],[102,-58]],[[56732,37911,0],[30,-17]],[[56848,37826,0],[5,-4]],[[56853,37822,0],[-35,-31]],[[56818,37791,0],[-58,-53]],[[56760,37738,0],[-52,-33]],[[56670,37685,0],[88,-88]],[[56807,37468,0],[0,-1],[22,-23]],[[56860,37408,0],[21,-25],[1,0],[1,-1]],[[56131,35167,0],[-2,-2],[-31,-25],[-36,-30],[-57,-47],[-122,-98],[31,20],[27,12],[29,6],[25,0],[30,-2],[34,-10],[25,-12],[23,-22],[128,-129],[44,-46],[120,-120],[56,-59],[32,-34],[52,-52],[-44,-32],[-104,-2],[-16,-1],[-54,0],[-70,0],[-47,1],[-80,-1],[0,-148],[1,-19],[0,-28],[-1,-31],[-30,-16],[18,-19],[17,-17],[1,-1],[44,-45],[67,-70],[72,-77],[-16,-19],[80,-82],[-218,-209]],[[56159,33701,0],[-18,18],[-23,26]],[[56118,33745,0],[-9,9],[-31,33]],[[56078,33787,0],[-9,9],[-22,24]],[[56047,33820,0],[-17,17],[-47,50],[-70,-58],[-52,5],[-38,-8],[-54,-25],[-13,1],[-45,-23],[-63,-12],[-40,-10],[-42,3],[-46,2],[5,-64],[14,-52],[2,-55],[-5,-19],[2,-45],[11,-49],[11,-35],[10,-17],[9,-32],[5,-30],[77,9],[-2,-235],[-114,-6],[-29,-1],[-25,-6],[-43,-1]],[[55448,33124,0],[-29,20],[-7,6]],[[55412,33150,0],[-29,1],[-12,1]],[[55371,33152,0],[-48,3],[-53,3]],[[55270,33158,0],[-14,-2],[-103,-14],[-14,1],[-55,-7],[13,-47],[9,-31],[14,-54],[14,-51],[9,-57],[4,-21],[11,-15],[10,-10],[22,-13],[50,-29],[47,-27],[41,-41],[37,-42],[36,-40],[38,-42],[11,-14],[21,-22],[36,-40],[31,-38],[26,-29],[52,-64],[55,-54]],[[55671,32355,0],[-58,-32],[-46,-26],[17,-31],[-38,-19],[4,-6],[-56,-28],[-8,14],[-63,-30],[2,-4],[19,-24],[-6,-3],[23,-21],[-78,-31],[-31,22],[-36,24],[-71,40],[-161,-84],[-6,-6],[-46,-60]],[[55032,32050,0],[-10,-13]],[[55022,32037,0],[-108,87],[-127,104],[-42,35],[-12,10],[-11,11],[-7,6],[-20,-14],[-18,-14],[-86,-59],[-79,2],[-209,7],[-13,-14],[-21,34],[-10,15],[-52,14],[0,-5],[-131,19],[-2,7],[-20,7],[-15,5],[-106,37],[-54,19],[-76,27],[-62,-20],[-10,-4],[-31,-11],[-95,-37],[-18,-5],[-38,8],[-17,47],[-7,18],[-26,-6]],[[53499,32367,0],[-13,81],[-13,100],[-5,70],[-28,406],[-20,268]],[[53420,33292,0],[5,23],[1,6]],[[53426,33321,0],[6,29],[-81,231],[-5,13],[-4,19],[-2,39],[5,20],[4,19]],[[53349,33691,0],[1,1],[9,27]],[[53359,33719,0],[-36,7],[-25,5]],[[53298,33731,0],[17,33],[17,36],[26,45],[15,22],[40,53],[21,33],[58,106]],[[53492,34059,0],[29,60],[26,53]],[[53547,34172,0],[23,44],[27,25],[64,99],[30,42],[47,81],[27,38],[19,33],[8,11],[27,70]],[[53819,34615,0],[27,-9],[11,-3]],[[53857,34603,0],[54,144]],[[54040,34798,0],[6,2],[26,6]],[[54147,34799,0],[48,-49],[26,-28]],[[54221,34722,0],[-8,-13],[-14,-27]],[[54199,34682,0],[23,-32],[19,-25]],[[54463,34833,0],[49,20],[30,12]],[[54564,34886,0],[16,16],[207,206]],[[54810,35132,0],[1,0],[21,16]],[[54832,35148,0],[33,8],[47,11]],[[54912,35167,0],[53,30],[7,3]],[[68149,36269,0],[-25,-299]],[[68124,35970,0],[-22,-218]],[[68097,35491,0],[-3,-134],[-2,-52],[-4,-73],[-2,-26],[5,-61],[5,-45],[-3,-73],[-1,-11],[5,-78]],[[67244,34925,0],[-4,78],[-1,40]],[[67206,35363,0],[-14,129],[-13,130],[-4,39]],[[67161,35796,0],[-13,129],[-18,169]],[[67125,36145,0],[-3,34],[-8,75]],[[67114,36254,0],[-10,92],[-13,133]],[[67256,37218,0],[39,-4]],[[55022,32037,0],[7,9],[3,4]],[[55671,32355,0],[51,-55],[18,-30],[95,30],[21,13],[15,9],[63,38],[12,8],[52,-88],[77,-136],[29,-61],[107,26]],[[56211,32109,0],[74,-176],[88,-207]],[[56373,31726,0],[35,-85],[41,-95],[17,-42],[-21,-20],[17,-48],[11,-30]],[[56473,31406,0],[4,-13],[2,-5]],[[56479,31388,0],[3,-12],[7,-20]],[[56489,31356,0],[6,-19],[17,-49],[14,-41],[2,-7],[17,-49],[9,-21],[11,-26],[6,-16],[13,-31],[22,-45],[35,-55],[9,-12],[-98,-56],[-16,-9],[-10,-5],[-22,-17],[-17,-7],[-27,-8],[-27,-1],[-13,3],[-1,0]],[[56419,30885,0],[-16,3],[-2,1]],[[56401,30889,0],[-3,0],[-8,4],[-8,4],[-3,0],[-13,4],[-16,1],[-6,0],[-5,0]],[[56339,30902,0],[-1,0],[-7,-1]],[[56331,30901,0],[-16,-5]],[[56315,30896,0],[-5,-3],[-6,-3]],[[56304,30890,0],[-6,-3],[-8,-8],[-8,-10],[-2,-2],[-102,-94]],[[56178,30773,0],[-5,-9],[-11,-16]],[[56162,30748,0],[-35,12],[-84,-95],[-4,-7],[-29,-76],[-19,-56],[-57,-140],[-27,6],[-102,21],[-49,-186]],[[55756,30227,0],[-2,-8],[-3,-10],[-1,-4]],[[55750,30205,0],[20,-5],[42,-9]],[[55812,30191,0],[-10,-47]],[[55802,30144,0],[-9,-38],[-29,-133]],[[55764,29973,0],[-83,-166],[-21,-42]],[[55660,29765,0],[-120,38],[-104,35],[-99,33],[-98,33],[-111,36],[-119,40],[-129,43],[-132,43],[-58,18],[-16,48],[-40,121],[-51,155],[-3,125]],[[54580,30533,0],[-92,-6]],[[54488,30527,0],[-46,-8],[-32,-7],[-26,-5],[-77,-22]],[[54307,30485,0],[-50,-20]],[[54257,30465,0],[-45,-21]],[[54212,30444,0],[-24,-16],[-45,-29]],[[54143,30399,0],[-40,82],[-4,7]],[[54099,30488,0],[-43,92],[-8,-2],[-149,-35],[-14,-4],[-81,-27],[-192,-61],[-27,-10],[-5,-8],[6,-36]],[[53586,30397,0],[-26,11],[-69,29]],[[53491,30437,0],[-4,3],[-3,0],[-144,14],[-33,-3]],[[53307,30451,0],[12,14]],[[53319,30465,0],[43,57]],[[53362,30522,0],[-46,66]],[[53316,30588,0],[-33,46]],[[53283,30634,0],[-3,4]],[[53280,30638,0],[-31,45]],[[53249,30683,0],[-30,42]],[[53219,30725,0],[77,49]],[[53296,30774,0],[25,16]],[[53321,30790,0],[112,71]],[[53433,30861,0],[41,26]],[[53474,30887,0],[-62,50]],[[53412,30937,0],[-38,25],[11,14]],[[53385,30976,0],[-71,54]],[[53314,31030,0],[-181,247]],[[53133,31277,0],[54,44]],[[53187,31321,0],[-27,140]],[[53160,31461,0],[-59,137]],[[53101,31598,0],[-32,72]],[[53069,31670,0],[-6,33]],[[53063,31703,0],[-13,70]],[[53050,31773,0],[-4,20]],[[53046,31793,0],[-1,18]],[[53045,31811,0],[1,32]],[[53046,31843,0],[-28,2]],[[53018,31845,0],[-32,2]],[[52986,31847,0],[-33,121],[0,2]],[[52953,31970,0],[12,48]],[[52965,32018,0],[0,1],[3,10]],[[52968,32029,0],[7,14],[11,24]],[[52986,32067,0],[53,72]],[[53039,32139,0],[25,33],[30,40]],[[53094,32212,0],[-1,24],[0,4]],[[53093,32240,0],[-5,77],[-1,7],[-3,50]],[[53084,32374,0],[-3,52]],[[53081,32426,0],[90,10],[86,9]],[[53257,32445,0],[92,10],[23,3]],[[53372,32458,0],[48,6]],[[53420,32464,0],[76,-94],[3,-3]],[[59612,36410,0],[-3,-8],[-11,-1],[18,-144],[18,-84],[17,-43],[9,-27],[26,-92],[7,-19],[8,-19],[-55,-23],[34,-95],[36,-126],[38,-134],[23,-81],[15,-53],[13,-48],[25,-86],[-56,-15],[5,-25],[32,-147],[4,-29]],[[59815,35111,0],[-28,3],[-80,7],[-4,-1],[-57,-1],[-36,6],[-89,-3],[-17,11],[-25,-14]],[[59794,37322,0],[-42,-104],[-61,-154],[-30,-84],[-46,-146],[-24,-98],[-14,-54],[-9,-35],[-27,-134],[-22,-110],[93,7]],[[58495,43927,0],[-3,-10],[-4,-13]],[[58471,43841,0],[-14,-54],[-14,-52]],[[58443,43735,0],[0,-1],[-10,-36]],[[58433,43698,0],[-4,-16],[-5,-17]],[[58378,43496,0],[-6,-25],[-6,-23]],[[58366,43448,0],[-41,-147],[-16,-61]],[[58309,43240,0],[-3,-10],[-5,-18]],[[58301,43212,0],[-12,-46],[-4,-17]],[[58285,43149,0],[-9,-35],[0,-1]],[[58162,42691,0],[-1,0],[-34,-11],[-85,-18],[-40,-9],[-107,-24],[-20,-5],[-17,-4],[-21,2],[-20,1],[-131,-33]],[[57686,42590,0],[4,27],[4,25],[12,80],[30,-2],[0,-6],[35,-1],[12,-1],[2,0],[41,-3],[9,49],[36,212],[28,114],[33,129],[-141,37],[2,9],[3,11],[-43,14],[-3,0],[-64,20],[-18,24],[-1,2],[-1,0],[-20,27],[-2,2],[-2,3],[-12,15],[-14,19],[-8,63],[-9,86],[-84,49],[-73,40],[-5,2],[-34,19],[9,38],[1,5],[-112,30],[-71,20],[-24,7],[-12,6],[-9,5],[-6,4],[-7,6],[-2,-8],[-3,-17],[-13,-59],[-32,-2],[-18,0],[-62,-2],[-11,0],[-25,135],[17,17],[-3,11],[-26,106],[-9,25],[-11,32],[-5,15],[-4,17],[-5,15],[-2,6],[-5,18],[-6,21],[-2,15],[-4,29],[-5,39],[-3,83]],[[62300,23314,0],[-1,2],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-3,2],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0]],[[62262,23349,0],[-1,0],[-1,0]],[[62260,23349,0],[-1,1]],[[62259,23350,0],[-1,0],[-1,0]],[[62257,23350,0],[-1,1],[-1,0],[-2,0]],[[62253,23351,0],[-1,0],[-1,0]],[[62251,23351,0],[-1,0]],[[62250,23351,0],[-1,0],[-1,0]],[[62248,23351,0],[-1,0],[-1,0],[-1,0]],[[62245,23351,0],[-1,0],[-1,0]],[[62243,23351,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-3,-1],[-115,-58],[-25,-15],[-94,-46],[-19,-10],[-18,-9],[-188,-98],[-341,-167],[-63,-27],[-28,-8],[-94,-23],[-11,77],[-45,-5]],[[61181,22955,0],[-31,-3],[-30,-4]],[[61120,22948,0],[-26,-3],[-65,-5],[-35,-1],[-55,2],[-56,2],[-92,8],[-16,1],[-47,3],[-2,1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-3,2],[-1,0]],[[60709,22962,0],[-1,1],[-1,0]],[[60707,22963,0],[-4,4],[-1,2],[-4,2],[0,2],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,6],[0,1],[0,1],[0,3],[0,4],[0,4],[1,4],[1,2],[0,2],[1,0],[0,2],[1,1],[0,1],[1,1],[1,2],[0,1],[2,1],[0,2],[1,1],[2,1],[4,4],[3,3],[5,3],[-28,52],[-264,-122],[-44,-19],[-23,-8],[-42,-17],[-44,-13],[-25,-6],[-41,-9],[-22,0],[-22,5],[-20,6],[-16,21],[-25,27],[-8,6],[-12,11],[-24,18],[-10,6],[-14,8],[-31,15],[-48,15],[-43,10]],[[59906,23042,0],[-63,9],[-44,6]],[[59799,23057,0],[-111,23],[-86,23],[23,75],[81,40],[66,32],[-201,296],[-3,4],[126,65],[215,110],[-55,110],[-60,119],[-46,91],[-13,27],[-58,112],[133,59],[7,27],[-1,6],[-13,53],[-56,18],[-2,1],[-2,1],[-2,1],[-2,1],[-1,3],[-2,1],[-1,1],[-1,2],[-2,1],[-1,2],[-1,1],[-1,2],[0,2],[-1,1],[-1,3],[0,1],[0,2],[-1,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[1,2],[0,1],[1,2],[0,3],[1,1],[1,1],[1,2],[1,2],[13,19],[29,49],[11,24],[10,29],[13,45],[8,27],[1,2],[0,2],[0,1],[1,2],[1,2],[0,2],[1,1],[2,1],[0,3],[1,1],[1,2],[1,1],[0,1],[1,2],[2,2],[0,1],[1,1],[2,3],[1,1],[1,1],[2,2],[1,1],[1,1],[1,2],[1,1],[2,1],[1,2],[2,1],[1,1],[2,2],[2,1],[2,1],[1,1],[2,2],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[1,1],[3,1],[3,1],[2,1],[2,0],[2,1],[2,0],[2,1],[1,0],[2,0],[1,1],[2,0],[1,2],[12,0],[-7,103]],[[59894,24763,0],[546,34],[521,31],[479,28],[1,0],[1,1],[1,0],[1,0],[1,0]],[[61445,24857,0],[1,0],[0,1]],[[61446,24858,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[0,2],[1,0],[1,1],[1,0],[0,1],[1,2],[1,0],[0,1],[1,0],[0,2],[2,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,2],[1,0],[0,1],[1,1]],[[61509,24901,0],[0,1],[1,1]],[[61510,24903,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[61513,24911,0],[0,1],[1,1]],[[61514,24913,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1]],[[61518,24927,0],[0,1],[0,1]],[[61518,24929,0],[0,1],[1,2]],[[61519,24932,0],[0,-5]],[[61519,24927,0],[0,-1],[0,-4]],[[61519,24922,0],[0,-1],[0,-3]],[[61519,24918,0],[0,-5]],[[61519,24913,0],[0,-19]],[[61519,24894,0],[0,-1]],[[61519,24893,0],[0,-3],[0,-6]],[[61519,24884,0],[0,-4],[0,-2]],[[61519,24878,0],[0,-4],[0,-3],[0,-2],[0,-1]],[[61519,24868,0],[1,-2],[0,-1],[0,-4]],[[61520,24861,0],[0,-2],[1,-17]],[[61521,24842,0],[1,-3],[0,-3],[0,-1]],[[61522,24835,0],[0,-1],[0,-2]],[[61522,24832,0],[1,-1],[0,-4],[0,-1],[0,-3],[1,-2]],[[61524,24821,0],[0,-1],[0,-3]],[[61524,24817,0],[0,-2],[1,-1],[0,-2]],[[61525,24812,0],[0,-2],[0,-1]],[[61525,24809,0],[1,-2],[0,-3]],[[61526,24804,0],[1,-5],[1,-2]],[[61528,24797,0],[0,-1]],[[61528,24796,0],[0,-2]],[[61528,24794,0],[1,-5],[0,-2],[1,-5]],[[61530,24782,0],[1,-3],[0,-2]],[[61531,24777,0],[2,-6]],[[61533,24771,0],[0,-3]],[[61533,24768,0],[0,-1],[0,-1]],[[61533,24766,0],[1,0],[1,-5],[0,-2]],[[61535,24759,0],[0,-1],[1,-1]],[[61536,24757,0],[0,-1],[0,-2]],[[61536,24754,0],[0,-1],[1,-3]],[[61537,24750,0],[0,-1],[1,-1]],[[61538,24748,0],[0,-1],[0,-2]],[[61538,24745,0],[1,-1],[0,-3]],[[61539,24741,0],[2,-3],[0,-1]],[[61541,24737,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-3],[0,-1]],[[61543,24728,0],[1,-1]],[[61544,24727,0],[0,-1],[0,-1],[1,-2]],[[61545,24723,0],[0,-1],[0,-1]],[[61545,24721,0],[1,-1]],[[61546,24720,0],[0,-2]],[[61546,24718,0],[2,-5]],[[61548,24713,0],[0,-1],[1,-2],[0,-1],[1,-3]],[[61550,24706,0],[1,-3]],[[61551,24703,0],[0,-1],[0,-1],[1,0]],[[61552,24701,0],[0,-1],[1,0]],[[61553,24700,0],[0,-1]],[[61553,24699,0],[0,-2],[1,0]],[[61554,24697,0],[0,-2],[1,-1],[0,-1]],[[61555,24693,0],[0,-2],[1,0]],[[61556,24691,0],[0,-1],[1,-1]],[[61557,24689,0],[0,-2]],[[61557,24687,0],[1,-3]],[[61558,24684,0],[0,-1],[1,0]],[[61559,24683,0],[0,-1]],[[61559,24682,0],[1,-1]],[[61560,24681,0],[0,-1],[0,-1],[1,-1]],[[61561,24678,0],[0,-1],[1,-3]],[[61562,24674,0],[1,0],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1]],[[61565,24668,0],[0,-1],[1,0]],[[61566,24667,0],[0,-1],[1,-1],[0,-1],[0,-1],[2,-3],[0,-1],[0,-1],[1,-1],[0,-1]],[[61570,24656,0],[1,-1]],[[61571,24655,0],[0,-1]],[[61571,24654,0],[0,-1],[1,-1]],[[61572,24652,0],[1,-1],[0,-2],[1,0]],[[61574,24649,0],[0,-2]],[[61574,24647,0],[1,-1]],[[61575,24646,0],[0,-1],[1,-1],[0,-1]],[[61576,24643,0],[1,-2],[1,0]],[[61578,24641,0],[0,-1],[1,-1],[0,-2],[1,0],[0,-1]],[[61580,24636,0],[0,-1],[1,-1]],[[61581,24634,0],[0,-1],[1,0],[0,-1],[0,-1]],[[61582,24631,0],[0,-1],[1,-1]],[[61583,24629,0],[1,-1]],[[61584,24628,0],[0,-2],[1,0]],[[61585,24626,0],[0,-1]],[[61585,24625,0],[0,-1],[1,0]],[[61586,24624,0],[0,-1]],[[61586,24623,0],[0,-1],[1,0]],[[61587,24622,0],[0,-1],[1,-1],[0,-2],[1,0]],[[61589,24618,0],[0,-2],[1,0]],[[61590,24616,0],[0,-1],[1,-1]],[[61591,24614,0],[1,-1]],[[61592,24613,0],[0,-2],[1,0]],[[61593,24611,0],[0,-1],[1,-1],[0,-1]],[[61594,24608,0],[1,-2],[1,-1]],[[61596,24605,0],[0,-1],[1,-1]],[[61597,24603,0],[1,-1],[0,-1]],[[61598,24601,0],[1,-1]],[[61599,24600,0],[0,-1],[1,-1],[0,-1]],[[61600,24597,0],[1,-2],[1,-1],[1,0]],[[61603,24594,0],[0,-2],[1,-1]],[[61604,24591,0],[0,-1],[1,-1],[0,-1],[1,0]],[[61606,24588,0],[0,-1],[1,0]],[[61607,24587,0],[0,-1]],[[61607,24586,0],[0,-1],[1,-1],[0,-1]],[[61608,24583,0],[1,-1]],[[61609,24582,0],[1,-2]],[[61610,24580,0],[1,-1],[1,-1]],[[61612,24578,0],[0,-1],[0,-1]],[[61612,24576,0],[1,-1],[1,-2],[1,-1]],[[61615,24572,0],[2,-2],[0,-1]],[[61617,24569,0],[0,-1],[1,0]],[[61618,24568,0],[0,-1]],[[61618,24567,0],[1,-2],[1,-1],[1,-1]],[[61621,24563,0],[0,-1]],[[61621,24562,0],[1,-2],[1,0]],[[61623,24560,0],[0,-1],[1,0]],[[61624,24559,0],[0,-1],[0,-1]],[[61624,24557,0],[1,-1]],[[61625,24556,0],[1,-2],[1,-1],[0,-1],[2,-1]],[[61629,24551,0],[0,-1],[1,-1],[1,-1],[0,-1]],[[61631,24547,0],[2,-3]],[[61633,24544,0],[1,-2]],[[61634,24542,0],[0,-1]],[[61634,24541,0],[0,-1],[1,0]],[[61635,24540,0],[0,-2]],[[61635,24538,0],[1,-1],[0,-1]],[[61636,24536,0],[0,-2],[0,-1]],[[61636,24533,0],[0,-2],[1,0]],[[61637,24531,0],[0,-2],[0,-2]],[[61637,24527,0],[0,-4],[0,-2]],[[61637,24521,0],[0,-2]],[[61637,24519,0],[-1,-1],[0,-1],[0,-1]],[[61636,24516,0],[0,-1],[0,-1],[-1,-4]],[[61635,24510,0],[-1,-1],[0,-1]],[[61634,24508,0],[-1,-1],[0,-1]],[[61633,24506,0],[0,-1],[-1,-1]],[[61632,24504,0],[0,-1],[-1,0],[0,-1]],[[61631,24502,0],[-1,-2],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-2,-2],[0,-1],[-1,-1]],[[61623,24491,0],[-3,-3],[-2,-1],[-3,-2]],[[61615,24485,0],[3,-4],[42,-64],[59,-87],[40,-59]],[[61759,24271,0],[41,-62]],[[61800,24209,0],[9,-14],[29,-43]],[[61838,24152,0],[14,-21],[35,-52],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[83,-137],[37,-68],[38,-72],[7,-15],[20,-39],[35,-86],[8,-21],[12,-30],[3,-8],[26,-67],[4,-12],[5,-16],[56,-156],[6,-22]],[[62732,27152,0],[70,13],[55,-253]],[[62857,26912,0],[6,-29],[6,-32]],[[62869,26851,0],[5,-69]],[[62873,26717,0],[-4,-39],[-14,-78]],[[62743,26350,0],[-40,-53],[-65,-71]],[[62638,26226,0],[-55,53],[-42,40],[-1,1]],[[62540,26320,0],[-439,-409]],[[62101,25911,0],[-69,-64]],[[62032,25847,0],[-59,-60]],[[61973,25787,0],[-70,-79]],[[61903,25708,0],[-55,-71]],[[61848,25637,0],[-38,-53],[-25,-33]],[[61785,25551,0],[-123,-210]],[[61662,25341,0],[-70,-134],[-20,-46],[-24,-68]],[[61548,25093,0],[-10,-34],[-10,-45]],[[61528,25014,0],[-7,-55]],[[61521,24959,0],[-2,-27]],[[61518,24929,0],[0,-2]],[[61514,24913,0],[-1,-2]],[[61510,24903,0],[-1,-2]],[[61446,24858,0],[-1,-1]],[[59894,24763,0],[-280,-15],[-274,-15],[-165,-9]],[[59175,24724,0],[-23,573],[-11,204],[198,209]],[[59339,25710,0],[1412,382],[-8,25],[-147,480],[6,11]],[[60602,26608,0],[8,-4],[12,3],[37,14],[126,26],[186,32],[-4,-50],[1,-12],[33,-81],[33,-41],[12,1],[26,-99],[106,-55],[25,-108],[358,98],[157,58],[278,161],[227,156],[49,23],[30,38],[67,168],[25,144],[6,23],[22,23],[32,23],[19,9],[139,39],[23,-6],[10,-5],[9,-9],[7,-11],[6,-28],[34,7],[31,7]],[[62734,26029,0],[1,0],[120,46]],[[62855,26075,0],[126,46]],[[62981,26121,0],[124,47],[122,46]],[[63243,26220,0],[164,61]],[[63512,26021,0],[1,-3]],[[63513,26018,0],[2,-5]],[[63515,26013,0],[1,0],[19,-45]],[[63426,25921,0],[-29,-11]],[[63397,25910,0],[-14,-6]],[[63383,25904,0],[9,-21]],[[63469,25701,0],[6,-22]],[[63441,25644,0],[-33,-39],[-42,-56]],[[63290,25423,0],[-30,-63],[-22,-65]],[[63238,25295,0],[-5,-17],[-1,0],[-6,-21]],[[63676,24904,0],[5,-43],[13,-84]],[[63698,24760,0],[16,-77],[12,-44]],[[63726,24639,0],[4,-13],[20,-60]],[[63776,24501,0],[6,-13],[72,-156]],[[63854,24332,0],[9,-16],[34,-77]],[[63988,24047,0],[0,-2]],[[63988,24045,0],[0,-1],[0,-2],[1,-1]],[[63989,24041,0],[0,-1],[0,-1]],[[63989,24039,0],[0,-3]],[[63989,24033,0],[0,-6]],[[63989,24024,0],[0,-2]],[[63989,24020,0],[-1,-4]],[[63988,24014,0],[-1,-2]],[[63987,24010,0],[0,-1],[-1,-1]],[[63985,24006,0],[0,-1],[0,-1]],[[63983,23999,0],[-1,0],[0,-2]],[[63981,23995,0],[-1,-1],[0,-1]],[[63980,23993,0],[-1,-1]],[[63978,23990,0],[0,-1],[-1,-1]],[[63977,23988,0],[-1,-2]],[[63976,23986,0],[-1,-1]],[[63975,23985,0],[-1,-1],[0,-1]],[[63974,23983,0],[-1,-1]],[[63972,23981,0],[-2,-2],[0,-1]],[[63970,23978,0],[-2,-2]],[[63967,23974,0],[-1,0],[-3,-3]],[[63963,23970,0],[-2,-1],[-3,-3]],[[63955,23965,0],[-4,-4]],[[63950,23961,0],[-5,-2],[-2,-1],[-1,0],[-2,-2]],[[63939,23956,0],[-1,0],[-1,-1]],[[63933,23954,0],[-1,0],[-1,0],[0,-1]],[[63929,23953,0],[-1,0],[-1,0],[0,-1]],[[63927,23952,0],[-1,0],[-1,0],[0,-1]],[[63924,23951,0],[-2,0]],[[63922,23951,0],[-1,0],[0,-1]],[[63921,23950,0],[-2,0]],[[63918,23950,0],[-4,0],[-1,-1]],[[63913,23949,0],[-5,0]],[[63908,23949,0],[-1,0],[-12,0],[-2,0]],[[63892,23949,0],[-2,0]],[[63866,23851,0],[-76,18]],[[63790,23869,0],[-88,29],[-60,23],[-12,5],[-1,0]],[[63629,23926,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[63624,23928,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0]],[[63617,23930,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-3,1]],[[63607,23935,0],[-1,0]],[[63606,23935,0],[-1,1],[-1,0]],[[63604,23936,0],[-1,0]],[[63603,23936,0],[-1,1],[-1,0],[-2,1]],[[63599,23938,0],[-1,0],[-2,1],[-1,0]],[[63595,23939,0],[-2,1]],[[63593,23940,0],[-1,0],[-2,2],[-1,0]],[[63589,23942,0],[-2,1]],[[63587,23943,0],[-1,0],[-2,1],[-1,0],[-2,2],[-1,0],[-2,1],[-1,0]],[[63577,23947,0],[-2,2],[-1,0],[-2,1]],[[63572,23950,0],[-1,0]],[[63571,23950,0],[-2,1]],[[63569,23951,0],[-1,1],[-1,0],[-1,1],[-1,0]],[[63565,23953,0],[-1,0]],[[63564,23953,0],[-1,1]],[[63563,23954,0],[-1,0],[-2,1],[-2,1],[-1,0]],[[63557,23956,0],[0,1],[-2,1],[-1,0]],[[63554,23958,0],[-1,1],[-1,0]],[[63552,23959,0],[-1,0]],[[63551,23959,0],[-2,2],[-1,0]],[[63548,23961,0],[-1,0],[-1,0]],[[63546,23961,0],[-1,1]],[[63545,23962,0],[0,1],[-1,0],[-2,0]],[[63542,23963,0],[-1,2],[-1,0],[-3,1],[-1,0]],[[63536,23966,0],[-1,1],[-2,2],[-1,0],[-1,0]],[[63531,23969,0],[-2,1]],[[63529,23970,0],[-1,0]],[[63528,23970,0],[-2,2]],[[63526,23972,0],[-2,1]],[[63524,23973,0],[-2,1],[-2,1]],[[63520,23975,0],[-1,0]],[[63519,23975,0],[-1,1],[-2,2],[-1,0],[-1,0],[-2,2],[-1,0],[-1,1],[-3,1]],[[63507,23982,0],[-1,0]],[[63506,23982,0],[-1,1],[-3,2],[-1,0],[-5,3]],[[63496,23988,0],[-1,0],[-3,3]],[[63492,23991,0],[-1,0]],[[63491,23991,0],[-5,3],[-6,4],[-1,0],[-5,3]],[[63474,24001,0],[-1,0]],[[63473,24001,0],[-5,3]],[[63468,24004,0],[-1,1],[-16,11]],[[63451,24016,0],[-48,29]],[[63403,24045,0],[-57,39]],[[63346,24084,0],[-9,7],[-63,47]],[[63274,24138,0],[-183,141],[-44,32]],[[63047,24311,0],[-54,35],[-82,45],[-46,21],[-42,17]],[[62823,24429,0],[-81,26]],[[62742,24455,0],[-56,17]],[[62686,24472,0],[-24,5]],[[62662,24477,0],[-32,6]],[[62630,24483,0],[-1,1],[-3,0],[-1,0]],[[62625,24484,0],[-4,0],[-1,0]],[[62620,24484,0],[0,1],[-4,0],[-1,0]],[[62615,24485,0],[-1,0]],[[62614,24485,0],[-3,0],[-1,0]],[[62610,24485,0],[-1,1]],[[62609,24486,0],[-3,0],[-3,0]],[[62603,24486,0],[-1,1]],[[62602,24487,0],[-1,0],[-5,0]],[[62596,24487,0],[-1,1],[-3,0],[-3,0],[-1,0]],[[62588,24488,0],[-6,0],[-2,0]],[[62580,24488,0],[-1,0]],[[62579,24488,0],[0,1],[-7,0],[-4,0],[-1,0]],[[62567,24489,0],[-5,0],[-15,0]],[[62547,24489,0],[-1,1]],[[62546,24490,0],[-4,0],[-13,0],[-2,0]],[[62527,24490,0],[-1,-1],[-11,0]],[[62515,24489,0],[-39,-4],[-26,-2]],[[62450,24483,0],[-59,-14],[-46,-14],[-57,-18]],[[62288,24437,0],[-98,-38]],[[62190,24399,0],[-96,-47]],[[62094,24352,0],[-12,-5],[-21,-11]],[[62061,24336,0],[-1,0],[-3,-2]],[[62057,24334,0],[-1,0]],[[62056,24334,0],[-3,-2]],[[62053,24332,0],[-1,-1]],[[62052,24331,0],[-3,-2],[-3,-2],[-1,-2]],[[62045,24325,0],[-1,-1],[-1,-1]],[[62043,24323,0],[-2,-2]],[[62041,24321,0],[-1,-1]],[[62040,24320,0],[-2,-2]],[[62038,24318,0],[0,-1]],[[62038,24317,0],[-2,-1],[0,-1]],[[62036,24315,0],[-1,-2]],[[62035,24313,0],[-1,-1]],[[62034,24312,0],[-1,-1],[0,-1]],[[62033,24310,0],[-1,-1]],[[62032,24309,0],[0,-1],[0,-1],[-1,-1],[0,-1]],[[62031,24305,0],[-1,-1]],[[62030,24304,0],[-1,-2]],[[62029,24302,0],[-1,-1],[0,-1]],[[62028,24300,0],[-1,-3]],[[62027,24297,0],[-1,-2],[0,-1]],[[62026,24294,0],[0,-1]],[[62026,24293,0],[-1,-2],[0,-4]],[[62025,24287,0],[0,-1]],[[62025,24286,0],[-1,-2],[0,-1]],[[62024,24283,0],[0,-4],[0,-4]],[[62024,24275,0],[0,-1],[1,-3]],[[62025,24271,0],[0,-3]],[[62025,24268,0],[0,-2]],[[62025,24266,0],[1,-2],[0,-1]],[[62026,24263,0],[0,-1]],[[62026,24262,0],[1,-2],[0,-1]],[[62027,24259,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[62029,24254,0],[1,0],[0,-1]],[[62030,24253,0],[0,-1],[1,-1]],[[62031,24251,0],[0,-1],[1,-1]],[[62032,24249,0],[0,-1]],[[62032,24248,0],[1,-1]],[[62033,24247,0],[0,-1],[1,-1]],[[62034,24245,0],[-22,-10],[-174,-82],[-38,56]],[[61759,24271,0],[-39,60],[-60,87],[-44,67],[-1,0]],[[61615,24485,0],[3,3],[2,1],[3,2]],[[61631,24502,0],[1,2]],[[61632,24504,0],[1,2]],[[61634,24508,0],[0,2],[1,0]],[[61636,24516,0],[0,3],[1,0]],[[61637,24521,0],[0,3],[0,3]],[[61637,24527,0],[0,4]],[[61637,24531,0],[-1,2]],[[61636,24533,0],[0,2],[0,1]],[[61635,24538,0],[0,1],[0,1]],[[61635,24540,0],[-1,1]],[[61634,24542,0],[0,2],[-1,0]],[[61631,24547,0],[0,2],[-1,1],[-1,1]],[[61629,24551,0],[-1,1],[-1,2],[-1,1],[-1,1]],[[61624,24557,0],[0,2]],[[61624,24559,0],[-1,1]],[[61623,24560,0],[-1,1],[-1,1]],[[61621,24563,0],[-1,2],[-1,1],[-1,1]],[[61618,24568,0],[-1,1]],[[61617,24569,0],[0,2],[-2,1]],[[61612,24576,0],[0,2]],[[61610,24580,0],[0,1],[-1,1]],[[61608,24583,0],[0,2],[-1,1]],[[61607,24587,0],[-1,1]],[[61606,24588,0],[-1,2],[-1,1]],[[61603,24594,0],[-1,1],[-1,1],[-1,1]],[[61599,24600,0],[0,1],[-1,0]],[[61597,24603,0],[-1,2]],[[61596,24605,0],[0,1],[-1,1],[-1,1]],[[61593,24611,0],[-1,1],[0,1]],[[61591,24614,0],[-1,2]],[[61590,24616,0],[-1,1],[0,1]],[[61587,24622,0],[-1,1]],[[61586,24624,0],[-1,1]],[[61585,24626,0],[-1,1],[0,1]],[[61583,24629,0],[0,1],[-1,1]],[[61581,24634,0],[-1,2]],[[61578,24641,0],[-1,1],[-1,1]],[[61575,24646,0],[0,1],[-1,0]],[[61574,24647,0],[0,1],[0,1]],[[61572,24652,0],[0,1],[-1,1]],[[61571,24655,0],[0,1],[-1,0]],[[61566,24667,0],[-1,1]],[[61562,24674,0],[-1,4]],[[61560,24681,0],[0,1],[-1,0]],[[61559,24683,0],[-1,1]],[[61557,24687,0],[0,1],[0,1]],[[61556,24691,0],[-1,1],[0,1]],[[61554,24697,0],[-1,1],[0,1]],[[61553,24700,0],[-1,1]],[[61551,24703,0],[0,1],[-1,2]],[[61548,24713,0],[-1,1],[0,2],[0,1],[-1,1]],[[61546,24718,0],[0,1],[0,1]],[[61545,24721,0],[0,2]],[[61544,24727,0],[0,1],[-1,0]],[[61541,24737,0],[0,2],[-2,2]],[[61538,24745,0],[0,3]],[[61538,24748,0],[-1,2]],[[61537,24750,0],[-1,4]],[[61536,24757,0],[-1,2]],[[61533,24766,0],[0,2]],[[61533,24768,0],[0,1],[0,2]],[[61531,24777,0],[0,3],[-1,2]],[[61530,24782,0],[0,5],[-1,3],[-1,4]],[[61528,24794,0],[0,1],[0,1]],[[61528,24797,0],[-1,3],[-1,4]],[[61525,24809,0],[0,2],[0,1]],[[61525,24812,0],[0,3],[-1,1],[0,1]],[[61524,24817,0],[0,4]],[[61522,24832,0],[0,3]],[[61521,24842,0],[-1,18],[0,1]],[[61519,24868,0],[0,2],[0,2],[0,3],[0,3]],[[61519,24878,0],[0,3],[0,3]],[[61519,24884,0],[0,7],[0,2]],[[61519,24894,0],[0,5],[0,14]],[[61519,24918,0],[0,4]],[[61519,24922,0],[0,5]],[[61519,24927,0],[0,6],[2,26]],[[61528,25014,0],[10,46],[10,33]],[[61548,25093,0],[9,27],[15,42],[20,46],[6,12],[42,79],[22,42]],[[61662,25341,0],[22,36],[101,174]],[[61785,25551,0],[63,86]],[[61903,25708,0],[6,7],[64,72]],[[62032,25847,0],[63,58],[6,6]],[[62101,25911,0],[37,35],[402,374]],[[62547,24489,0],[20,0]],[[62567,24489,0],[1,-1],[11,0]],[[62580,24488,0],[8,0]],[[62588,24488,0],[0,-1],[1,0],[6,0],[1,0]],[[62596,24487,0],[6,0]],[[62602,24487,0],[0,-1],[1,0]],[[62603,24486,0],[6,0]],[[62610,24485,0],[4,0]],[[62615,24485,0],[4,0],[1,-1]],[[62620,24484,0],[5,0]],[[62625,24484,0],[1,-1],[3,0],[1,0]],[[62662,24477,0],[21,-5],[3,0]],[[62742,24455,0],[33,-11],[48,-15]],[[62823,24429,0],[32,-13],[10,-5],[33,-14],[13,-7],[82,-45],[43,-27],[11,-7]],[[63274,24138,0],[53,-40],[10,-8],[3,-2],[6,-4]],[[63403,24045,0],[16,-10],[32,-19]],[[63451,24016,0],[16,-12],[1,0]],[[63468,24004,0],[4,-3],[1,0]],[[63474,24001,0],[3,-2],[2,-2],[1,0],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[5,-2]],[[63492,23991,0],[4,-3]],[[63496,23988,0],[5,-4],[1,0],[4,-2]],[[63507,23982,0],[2,-1],[1,-1],[1,-1],[1,0],[3,-2],[1,0],[3,-2]],[[63520,23975,0],[4,-2]],[[63524,23973,0],[1,-1],[1,0]],[[63526,23972,0],[1,-1],[1,-1]],[[63529,23970,0],[1,0],[1,-1]],[[63531,23969,0],[1,-1],[1,0],[1,0],[2,-2]],[[63542,23963,0],[2,-1],[1,0]],[[63545,23962,0],[1,0],[0,-1]],[[63546,23961,0],[2,0]],[[63548,23961,0],[3,-2]],[[63552,23959,0],[1,-1],[1,0]],[[63554,23958,0],[0,-1],[1,0],[2,-1]],[[63563,23954,0],[0,-1],[1,0]],[[63565,23953,0],[2,-2],[1,0],[1,0]],[[63569,23951,0],[1,-1],[1,0]],[[63572,23950,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0]],[[63587,23943,0],[1,-1],[1,0]],[[63593,23940,0],[1,0],[1,-1]],[[63599,23938,0],[2,-2],[1,0],[1,0]],[[63604,23936,0],[1,-1],[1,0]],[[63607,23935,0],[3,-2],[1,0],[1,-1],[2,-1],[1,0],[2,-1]],[[63624,23928,0],[1,-1],[1,0],[2,-1],[1,0]],[[63790,23869,0],[48,-11],[28,-7]],[[63866,23851,0],[2,-10],[2,-11]],[[63915,23647,0],[20,-52],[2,-6]],[[63937,23589,0],[2,-5],[20,-47]],[[62999,22941,0],[-128,-70],[-21,-11]],[[62850,22860,0],[-12,-23]],[[62838,22837,0],[-128,-62]],[[62675,22758,0],[-24,-23]],[[62572,22662,0],[-59,108]],[[62513,22770,0],[-6,12],[-17,33]],[[62490,22815,0],[-11,23],[-39,85]],[[62440,22923,0],[-59,159]],[[62381,23082,0],[-40,110],[-4,12]],[[62337,23204,0],[-37,110]],[[61838,24152,0],[95,45],[101,47],[0,1]],[[62033,24247,0],[-1,0],[0,1]],[[62032,24249,0],[-1,0],[0,2]],[[62030,24253,0],[-1,1]],[[62027,24259,0],[-1,3]],[[62026,24263,0],[-1,3]],[[62025,24266,0],[0,1],[0,1]],[[62025,24268,0],[0,1],[0,2]],[[62024,24275,0],[0,3],[0,2],[0,1],[0,1],[0,1]],[[62024,24283,0],[1,2],[0,1]],[[62025,24287,0],[0,1],[0,1],[0,1],[1,3]],[[62026,24294,0],[1,3]],[[62027,24297,0],[0,1],[1,2]],[[62028,24300,0],[1,2]],[[62030,24304,0],[0,1],[1,0]],[[62032,24309,0],[1,0],[0,1]],[[62033,24310,0],[1,2]],[[62035,24313,0],[1,1],[0,1]],[[62036,24315,0],[2,2]],[[62038,24318,0],[1,1],[1,1]],[[62041,24321,0],[1,1],[1,1]],[[62045,24325,0],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1]],[[62053,24332,0],[2,0],[0,1],[1,1]],[[62057,24334,0],[1,0],[1,1],[1,0],[1,1]],[[62061,24336,0],[7,4],[26,12]],[[62094,24352,0],[28,14],[68,33]],[[62190,24399,0],[51,19],[47,19]],[[62450,24483,0],[65,6]],[[62527,24490,0],[19,0]],[[68663,24483,0],[-11,8],[-3,1]],[[68634,24483,0],[-14,-17],[-23,-25]],[[68597,24441,0],[-18,-22],[-24,-29]],[[68430,24277,0],[-42,-28],[-7,-5]],[[68381,24244,0],[-2,-3],[-20,-26]],[[67670,23743,0],[-13,-4],[-40,-13]],[[67519,23661,0],[-23,-19],[-17,-15]],[[67199,23391,0],[-48,-46],[-26,-24]],[[67118,23315,0],[-20,-19],[-10,-8]],[[67048,23252,0],[-91,38],[-88,38]],[[66869,23328,0],[-81,85],[-36,38]],[[66752,23451,0],[-6,7],[-10,11]],[[66603,23613,0],[-55,58],[-49,51]],[[66900,24409,0],[12,8],[24,17]],[[67231,24647,0],[14,11],[3,2]],[[67248,24660,0],[17,12],[24,18]],[[67289,24690,0],[6,4],[19,12]],[[67396,24766,0],[29,22],[14,11]],[[67439,24799,0],[29,24],[33,26]],[[67501,24849,0],[12,10],[28,24]],[[67634,24974,0],[47,51],[7,8]],[[67924,25362,0],[50,91],[53,99]],[[68027,25552,0],[12,20],[9,19]],[[68058,25652,0],[15,66],[1,2]],[[69167,26250,0],[88,-17],[4,-2]],[[69259,26231,0],[-6,-22],[-13,-58],[-4,-21],[10,-3],[-11,-54],[12,-3],[2,-10],[23,-113],[18,-95],[7,-29],[8,-36],[2,-13],[7,-43],[7,-35],[2,-7],[1,-4],[1,-7],[0,-1],[1,-6],[17,-86],[13,-64],[15,-79],[6,-23],[7,-37],[12,-59],[-19,-33],[-11,-22],[-97,-112],[-98,-110]],[[68856,24683,0],[-31,-32],[-49,-51]],[[76619,19059,0],[59,-104],[105,-114],[100,-109],[38,34],[8,-23]],[[76929,18743,0],[51,-74],[25,-24]],[[77005,18645,0],[8,-9],[8,-8],[4,-4],[9,-12],[1,-1]],[[77035,18611,0],[42,-48]],[[77077,18563,0],[34,-35],[24,-25],[29,-33],[26,-30]],[[77190,18440,0],[83,-76],[11,-10]],[[77284,18354,0],[-102,-181],[-150,-107],[-187,-136]],[[76845,17930,0],[-33,26],[-17,18],[-17,27],[-18,15],[-31,17],[-98,80],[-9,-8],[-104,84],[-30,42],[-35,74],[-73,81],[-100,49],[-35,6],[-115,-43],[-264,44],[-35,-97],[-193,-57],[-177,1],[-87,110],[-35,52],[102,137],[67,83]],[[75508,18671,0],[60,-33]],[[75568,18638,0],[90,84],[40,20],[46,17],[47,18]],[[76035,18589,0],[243,-75],[245,-69]],[[76523,18445,0],[72,90],[62,84]],[[76657,18619,0],[112,-73],[36,66]],[[76750,18680,0],[-52,66],[-114,167],[-249,248]],[[76335,19161,0],[-13,5],[-29,2]],[[76190,19375,0],[-21,43],[48,35],[27,20],[82,-51],[276,-349]],[[76602,19073,0],[13,-16],[4,2]],[[78369,21599,0],[10,0]],[[78797,21551,0],[101,-21],[32,-5],[36,-5],[18,-1],[233,-12],[78,-4],[81,-5],[371,-18],[74,-1],[-95,-104],[-91,-100],[-360,-389]],[[79275,20886,0],[-71,-77]],[[79204,20809,0],[-117,-126]],[[79087,20683,0],[-4,-4],[-71,-77],[-17,-19],[-34,-37],[-16,-24],[-44,-69],[-56,-87]],[[78845,20366,0],[-82,-130],[-28,-42],[-10,-17],[-32,-51],[-40,-62],[-17,-26],[-4,-8]],[[78632,20030,0],[-8,-12],[-6,-10]],[[78618,20008,0],[-15,-23],[-27,-43]],[[78576,19942,0],[-13,-22],[-62,-96]],[[78501,19824,0],[-10,-14],[-15,-23]],[[78476,19787,0],[-22,-34],[-12,-20],[-8,-12],[-213,-174]],[[78221,19547,0],[-7,-6],[-63,-51]],[[78151,19490,0],[-8,-7],[-29,-23],[-22,-17],[-13,-17],[-131,-168],[-120,-153],[-17,-21]],[[77811,19084,0],[-77,85],[-38,58]],[[77696,19227,0],[-11,14],[-17,21]],[[77668,19262,0],[-21,55],[-13,44],[-27,90],[-41,110],[-16,32]],[[77550,19593,0],[38,23],[35,18],[102,107],[14,15]],[[77739,19756,0],[98,103],[6,5]],[[77843,19864,0],[-41,65],[-75,118],[-57,89],[-62,82],[-9,12]],[[77599,20230,0],[-49,74],[-5,9]],[[77545,20313,0],[-50,81],[-18,30],[-56,91],[-19,31],[-73,119],[-109,173],[-46,81],[-13,20]],[[77161,20939,0],[-51,84],[-41,82],[-19,43],[-45,127]],[[77005,21275,0],[-23,131]],[[76982,21406,0],[-10,129]],[[76972,21535,0],[-9,86],[5,68]],[[77002,21686,0],[19,-1],[9,0]],[[77463,21653,0],[134,-10]],[[77924,21893,0],[133,-30]],[[63343,32879,0],[8,-55]],[[63379,32745,0],[41,-83],[42,-95]],[[63466,32557,0],[-218,-41],[6,-30],[2,-10],[-25,-8],[-14,-5],[-8,-3],[-40,-8],[-7,28],[-133,-19],[6,-38],[-5,-5],[-50,33],[-49,35],[-20,10]],[[62911,32496,0],[-23,14],[-1,25],[-9,16],[-8,143],[7,97],[0,21],[-8,181],[-8,187],[-6,116]],[[62855,33296,0],[0,11],[-10,236]],[[62845,33543,0],[-36,415],[-11,206],[-2,47],[-8,159]],[[62788,34370,0],[91,2],[25,9],[2,35],[0,2],[2,14],[0,2],[9,96],[12,54],[1,3],[9,45],[31,77],[8,10],[6,6],[7,5],[8,4],[10,4],[9,2],[8,1],[11,0],[12,-4],[11,-4],[12,-8],[6,-7],[119,-135],[22,-28],[12,-19],[9,-19],[8,-14],[10,-29],[6,-20],[3,-11]],[[63287,34099,0],[10,-195],[7,-166],[1,-15],[3,-58]],[[63317,33563,0],[6,-154]],[[63318,33195,0],[1,-12],[0,-6]],[[63328,33073,0],[4,-55],[1,-8]],[[63672,32136,0],[15,-38],[6,-16]],[[63756,31732,0],[8,-9],[1,-1]],[[64370,31844,0],[9,-10],[27,-29]],[[64408,31800,0],[1,-14],[1,-7]],[[64410,31779,0],[4,-2],[18,-12]],[[64432,31765,0],[16,-27],[3,-5]],[[64804,31413,0],[23,-47],[11,-19]],[[64838,31347,0],[23,-39],[10,-17]],[[64975,31208,0],[-37,-62],[-28,-22],[-7,-6],[-58,-44],[-23,-17],[-36,-28],[-55,-41],[-6,-4],[-58,-46],[-61,-45],[-8,-6],[-9,-6],[-32,-23],[-25,-18],[-10,-6],[-44,-26]],[[64478,30808,0],[-220,-29]],[[64258,30779,0],[-54,-8],[-29,-20],[-172,31],[-48,-42],[53,-13],[15,-10],[16,-14],[9,-11],[5,-6],[2,-6],[-3,-11],[-2,-9],[-5,-15],[-14,-25],[-29,-21],[-46,-42],[-40,-33],[-67,-59],[-31,-30],[-11,-11]],[[63807,30424,0],[-62,61],[-42,48],[-14,13],[-23,28],[-41,57],[-17,25],[-30,34],[-97,112],[-3,4],[-11,19],[-131,224],[-86,150],[-50,104],[-11,23],[-80,132],[-10,7],[-47,104],[5,2],[2,4],[1,5],[0,5],[-4,4],[-6,4],[-7,0],[-7,14],[-25,48],[20,8],[-54,127],[-18,-7],[-19,53],[-26,73],[31,10],[-5,21],[73,16],[22,6],[-13,41],[-29,101],[-25,104],[-57,288]],[[65139,30586,0],[-15,-46]],[[65124,30540,0],[-60,-178]],[[64547,29750,0],[-123,-53],[-55,-24]],[[64369,29673,0],[-37,-15],[-13,-5]],[[64319,29653,0],[-73,-32],[-27,-12]],[[64219,29609,0],[-27,-11],[-73,-38],[-33,-20],[-56,-33],[-21,-12],[-70,-47],[-89,-61],[-175,-122]],[[63675,29265,0],[-6,-4],[-1,-1]],[[63668,29260,0],[-44,-30],[-90,-63],[-121,-85]],[[63413,29082,0],[-38,-33],[-6,-5]],[[63369,29044,0],[-41,-33],[-43,-38]],[[63285,28973,0],[-8,-7],[-30,-28]],[[63247,28938,0],[-34,-36],[-2,-2]],[[63211,28900,0],[-55,-58]],[[63156,28842,0],[-22,-30],[-5,-5]],[[63129,28807,0],[-7,-10],[-47,-59],[-61,-90],[-53,-88],[-19,-37],[-33,-67],[-7,-14]],[[62902,28442,0],[-1,-3]],[[62901,28439,0],[-16,-43],[-11,-27]],[[62874,28369,0],[1,1]],[[62875,28370,0],[-63,-11],[-23,-4]],[[62789,28355,0],[-4,0],[-39,-7]],[[62746,28348,0],[-29,-6]],[[62717,28342,0],[-181,-33]],[[62536,28309,0],[15,69],[14,54],[46,115],[22,50],[26,58],[27,49],[30,54],[149,191],[110,125],[126,142],[71,58],[431,256]],[[63603,29530,0],[289,174],[389,235]],[[64281,29939,0],[-131,131],[175,161],[11,22]],[[64336,30253,0],[8,20]],[[64344,30273,0],[1,5],[1,13]],[[64346,30291,0],[-3,30],[-110,252],[-308,-270],[-5,6],[-42,42],[-71,73]],[[64258,30779,0],[151,20],[69,9]],[[65001,31192,0],[109,-61],[73,-42]],[[65260,30936,0],[-11,-25],[-4,-11]],[[65235,30867,0],[-1,0],[-95,-281]],[[60912,30001,0],[72,-48]],[[60984,29953,0],[85,-61]],[[61069,29892,0],[2,-2],[85,-67]],[[61156,29823,0],[238,-195]],[[61394,29628,0],[299,-153]],[[61693,29475,0],[183,-308],[9,-14]],[[61885,29153,0],[-325,-166],[-89,-45],[-76,-38],[-14,-8],[-26,-12],[-18,-10],[-105,-54],[-111,-56],[-14,-6],[-154,-80],[-65,-50],[-53,-42],[-21,-17],[-20,-14],[-118,-93],[-135,-105],[-10,-7],[-21,-16],[-10,-9],[-105,-81],[-60,-47],[-8,-7],[-110,-85]],[[60217,28105,0],[-17,21],[-48,102],[-92,174]],[[60060,28402,0],[-3,5],[-47,103]],[[60010,28510,0],[-52,38],[-53,38],[-32,32],[-16,28]],[[59857,28646,0],[-16,30],[-1,1]],[[59840,28677,0],[-35,36],[-13,11],[-84,73],[-16,13],[-87,75],[-3,2],[-18,44],[-35,80],[-28,65]],[[59521,29076,0],[-27,62],[-35,81]],[[59459,29219,0],[-33,76],[-27,65]],[[59399,29360,0],[-52,122],[-19,19],[-3,74],[-5,15],[-6,56],[6,69],[12,67],[20,64],[17,30]],[[59369,29876,0],[172,49]],[[59541,29925,0],[15,-86],[15,-75],[10,-57],[82,15],[-13,72],[-1,31],[4,18],[5,14],[8,10],[12,6],[77,22],[36,10],[-19,73],[-85,-23],[-43,4],[-20,16],[-8,19],[-6,10],[-36,142],[46,38],[62,35],[65,34],[60,24],[44,9],[65,16],[74,16],[-2,10],[31,9],[70,8],[50,-11],[27,-8],[56,-7],[18,-8],[102,-38]],[[60342,30273,0],[69,-25]],[[60411,30248,0],[51,-19]],[[60462,30229,0],[49,-19],[100,-44],[47,-21],[50,-28],[90,-46],[65,-39],[29,-17],[20,-14]],[[62746,28348,0],[43,7]],[[62789,28355,0],[86,15]],[[62875,28370,0],[-24,-77]],[[62834,28241,0],[-27,-100],[-20,-89]],[[62787,28052,0],[-10,-63],[-14,-112],[-1,-12],[-8,-116]],[[62754,27749,0],[-3,-72],[2,-120],[1,-16],[1,-15]],[[62766,27390,0],[-1,-9],[6,-42]],[[62800,27165,0],[-68,-13]],[[60602,26608,0],[-7,8],[-1,3],[-1,5],[13,25],[-27,95],[-9,28],[-18,41],[-9,72],[-8,-2],[-92,-13],[-117,-23],[-1,77],[-7,50],[38,10],[19,100],[-14,55],[139,11],[18,3],[-9,64],[-7,65],[-19,84],[-28,93],[-23,76],[-26,65],[-23,94],[-37,148],[-38,94],[-45,94]],[[60263,28030,0],[-27,56],[-19,19]],[[61885,29153,0],[54,-91],[281,-376],[215,-396],[282,52]],[[66119,28684,0],[-15,-21]],[[65989,28498,0],[-81,-117],[-38,-54]],[[65809,28246,0],[-5,-6],[-19,-20]],[[65707,28157,0],[-5,-2],[-43,-26]],[[65399,27557,0],[-122,-30],[-103,-10]],[[65156,27504,0],[-7,-2],[-83,-25]],[[64980,27432,0],[-8,-2],[-10,-3]],[[64819,27299,0],[-135,-62],[-219,-99]],[[64402,27114,0],[-24,21]],[[64378,27135,0],[-33,27],[-73,66],[-41,33]],[[64231,27261,0],[-45,31]],[[64186,27292,0],[-118,121],[-50,54]],[[63968,27526,0],[-35,54],[-36,57],[-11,23]],[[63886,27660,0],[-24,48],[-12,25],[-10,23]],[[63840,27756,0],[-17,43],[-8,29]],[[63815,27828,0],[-4,20]],[[63799,27894,0],[-6,33]],[[63783,28031,0],[0,9],[-1,48]],[[63782,28088,0],[2,46],[1,4]],[[63791,28191,0],[10,49]],[[63801,28240,0],[-6,1]],[[63795,28241,0],[-55,6],[-177,39]],[[63563,28286,0],[-38,8],[-41,10]],[[63484,28304,0],[-43,6],[-68,2]],[[63323,28317,0],[-12,1],[-13,5]],[[63286,28325,0],[-23,5]],[[63263,28330,0],[-65,16],[-51,20]],[[63147,28366,0],[-16,5],[-38,14],[-8,3]],[[62973,28420,0],[-6,1],[-46,13]],[[62921,28434,0],[-19,8]],[[63129,28807,0],[27,35]],[[63211,28900,0],[36,38]],[[63247,28938,0],[38,35]],[[63369,29044,0],[44,38]],[[63668,29260,0],[7,5]],[[64219,29609,0],[100,44]],[[64319,29653,0],[50,20]],[[64369,29673,0],[178,77]],[[56274,48697,0],[15,-71],[3,-48],[4,-65],[-2,-40],[-1,-38],[6,-44]],[[56299,48391,0],[3,-11],[0,-3]],[[56302,48377,0],[1,-6],[13,-46],[12,-37]],[[56328,48288,0],[13,-34],[11,-28]],[[56352,48226,0],[10,-23],[11,-25]],[[56373,48178,0],[19,-44],[14,-33]],[[56406,48101,0],[32,-72]],[[56438,48029,0],[29,-54],[18,-34]],[[56485,47941,0],[8,-18],[6,-13]],[[56499,47910,0],[31,-55]],[[56530,47855,0],[3,-4],[45,-76]],[[56578,47775,0],[53,-82]],[[56631,47693,0],[37,-54],[18,-27]],[[56686,47612,0],[18,-24],[6,-8]],[[56710,47580,0],[40,-50]],[[56750,47530,0],[27,-28],[14,-14]],[[56791,47488,0],[54,-50]],[[56845,47438,0],[-2,-2],[-11,-7],[-14,-10]],[[56818,47419,0],[-28,-5]],[[56790,47414,0],[-12,-19],[-23,-15]],[[56755,47380,0],[-20,-14],[-20,-13]],[[56715,47353,0],[-36,-37],[-9,-8],[-9,-11],[-28,-23]],[[56633,47274,0],[0,-1],[-6,-6]],[[56627,47267,0],[-6,-5],[-68,-69],[-82,-82],[-40,-13],[-22,-7],[-39,-20],[-15,-12],[-24,-19],[-5,-10],[27,-7],[82,-24]],[[56435,46999,0],[-3,-6],[-46,-95],[6,-25],[16,-75],[12,-62]],[[56420,46736,0],[3,-11],[2,-13],[6,-30]],[[56431,46682,0],[11,-56]],[[56442,46626,0],[31,-164],[0,-4]],[[56473,46458,0],[-278,-73],[-31,-16],[-1,0],[-11,-27],[-16,-40],[-46,-116],[-22,-54],[-26,-68],[-24,-59],[-27,-69],[-15,-36],[-24,-61]],[[55952,45839,0],[-3,-9],[0,-1]],[[55949,45829,0],[-3,-7],[-5,-10],[-6,-16],[-1,-5]],[[55934,45791,0],[-45,11],[-82,23],[-85,23],[-81,21],[-78,21],[-73,40],[-67,38],[-51,51],[-58,66],[-14,18],[30,64],[36,81],[62,146],[-15,11],[-109,-69],[-37,-21],[-79,-49],[-107,-95],[-37,28],[193,401],[-28,18],[-203,-189],[-141,-134],[-48,-155],[-28,-69],[-37,-23],[-48,14],[-24,59],[116,443],[-48,8],[-98,-74],[-28,-16],[-61,-5],[-99,72],[-83,41],[-103,-1]],[[54276,46589,0],[-48,20],[11,28],[27,68],[24,62],[15,38],[30,77],[32,82],[-107,28],[-9,2]],[[54251,46994,0],[-1,1],[-13,3]],[[54237,46998,0],[-14,6]],[[54223,47004,0],[-8,5],[-11,7]],[[54204,47016,0],[-10,6],[-12,10],[-11,8],[-10,9],[-7,8],[-7,7],[-8,11],[-6,7],[-5,9],[-5,8],[-4,10],[-2,7],[-9,18],[-8,22],[-2,14],[-2,15],[-2,11],[1,10],[1,18],[2,17],[3,6],[8,15],[16,21],[19,20],[18,19],[21,19],[37,23],[48,12],[38,9],[42,11],[68,15],[23,6],[11,3],[7,2]],[[54457,47422,0],[-3,9],[-2,7],[0,2],[-3,12]],[[54449,47452,0],[-12,46],[-5,25],[-9,32],[-6,23],[-1,4],[-7,32],[52,-1],[97,-6],[37,-3],[38,-4],[13,0],[12,6],[10,7],[7,14],[0,12],[-8,30],[-5,21],[-35,148],[-78,-17],[-9,0],[-6,4],[-13,19],[-22,17],[-28,17],[-43,12],[-8,-1],[-10,330]],[[54410,48219,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,1],[2,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[3,0],[24,-1],[105,-7],[13,-1],[98,-11],[43,-8],[103,-21],[93,130],[-91,58],[-89,61],[111,148],[58,-21],[39,-14],[101,-36],[58,-20],[24,-8],[157,25],[24,3],[83,-68],[16,-14],[37,33],[24,10],[5,-1],[59,-22],[25,-3],[54,3],[47,10],[33,29],[23,11],[29,23],[21,6],[28,17],[24,-2],[66,24],[54,11],[50,34],[13,9],[58,-32],[49,58],[15,18],[20,22],[4,4]],[[56215,48770,0],[17,10]],[[56232,48780,0],[37,-72],[5,-11]],[[72242,22272,0],[2,3],[2,5]],[[72380,22014,0],[-1,0],[0,-1]],[[72379,22012,0],[0,-1],[0,-1]],[[72379,22007,0],[0,-1],[1,0]],[[72382,22000,0],[1,0],[1,-2]],[[72384,21998,0],[241,-94],[19,-7]],[[72669,21895,0],[1,0],[0,1]],[[72682,21898,0],[0,1],[1,0]],[[72692,21904,0],[1,0],[0,1]],[[72693,21905,0],[1,0],[0,1]],[[72711,21925,0],[0,1],[1,0]],[[72895,21954,0],[-2,-4],[-1,1],[-9,-29],[-176,-520]],[[72699,21381,0],[-97,-283]],[[72596,21079,0],[-41,-118],[-53,-152],[-53,-154],[-36,-104]],[[72413,20551,0],[1,-1],[18,-24]],[[72438,20422,0],[-1,-5],[-20,-66],[-1,-3],[0,-1]],[[72338,20296,0],[-28,-5],[-1,-1]],[[72309,20290,0],[-20,-39]],[[72097,19936,0],[-35,-72],[-15,-31]],[[71918,19562,0],[-7,3],[-49,19]],[[71862,19584,0],[-20,8],[-35,13]],[[71775,19617,0],[-18,7],[-25,10]],[[71256,19814,0],[-10,4],[-32,12]],[[71214,19830,0],[-35,14],[-39,15]],[[71197,19971,0],[-1,2]],[[70480,20279,0],[4,6],[64,134],[120,276],[13,29]],[[70686,20737,0],[45,114],[20,54],[0,2]],[[70754,20914,0],[46,106],[35,85]],[[70835,21105,0],[10,25]],[[70854,21150,0],[12,30],[40,97],[15,38]],[[70921,21315,0],[14,32]],[[71051,21624,0],[31,75],[62,153]],[[71144,21852,0],[50,141],[19,55],[31,91],[70,203]],[[71314,22342,0],[5,14],[64,186]],[[71409,22616,0],[278,-128],[122,-56]],[[75479,29284,0],[52,-3],[130,-7],[35,-2]],[[75696,29272,0],[86,-5],[1,0],[20,-2]],[[75895,29261,0],[-5,-69],[0,-2],[-7,-98]],[[75883,29092,0],[0,-8],[-9,-108],[-5,-78]],[[75864,28838,0],[0,-1]],[[75864,28837,0],[-7,-99]],[[75857,28738,0],[-4,-75],[0,-1],[-9,-105],[0,-1]],[[75844,28556,0],[-12,-155],[-11,-168]],[[75821,28233,0],[-6,-78],[0,-1]],[[75815,28154,0],[-7,-98],[22,-58],[-39,-147],[-2,-28]],[[75789,27823,0],[-38,-27],[-3,-1]],[[75748,27795,0],[-296,-436],[-8,-65],[-33,-49],[-33,-53],[-27,-49],[-27,10],[-55,-109],[-77,-145],[-65,-110],[-60,-105],[-114,-218],[-38,-80],[-48,-105],[-59,24]],[[74945,26573,0],[58,117],[-1,0]],[[75002,26690,0],[-16,7],[8,14]],[[75130,26961,0],[19,-7],[96,180]],[[75227,27139,0],[0,1],[-159,53]],[[74480,27339,0],[-20,-9],[-1,0]],[[74459,27330,0],[-77,24],[34,82]],[[74446,27516,0],[35,97]],[[74481,27613,0],[6,1],[31,100]],[[74553,27842,0],[-2,1],[22,77],[1,0]],[[74574,27920,0],[23,84]],[[74597,28004,0],[19,87],[21,104]],[[74637,28195,0],[26,125]],[[74663,28320,0],[-3,9]],[[74658,28361,0],[-5,72]],[[74653,28433,0],[7,-3]],[[74660,28430,0],[30,-12]],[[74690,28418,0],[2,-2],[33,10]],[[74725,28426,0],[8,19]],[[74733,28445,0],[6,15],[24,11],[130,277],[33,78],[30,91],[10,29]],[[74975,28979,0],[19,76]],[[75341,29099,0],[6,51],[2,16]],[[75349,29166,0],[2,12],[11,110]],[[75362,29288,0],[2,0],[107,-4],[8,0]],[[53976,27774,0],[10,-36],[92,0]],[[54078,27738,0],[52,-62],[-38,-50],[-35,-47]],[[54057,27579,0],[-21,-27],[-5,-7]],[[54031,27545,0],[-29,-37],[-54,-70]],[[53948,27438,0],[-10,1],[-121,-32]],[[53817,27407,0],[-58,-13]],[[53759,27394,0],[-18,46],[-6,19]],[[53735,27459,0],[-9,29],[-13,49]],[[53713,27537,0],[-8,32],[-7,41],[-5,36],[-2,16]],[[53691,27662,0],[-4,27]],[[53687,27689,0],[-10,74],[-5,41]],[[53672,27804,0],[-10,73],[-5,27]],[[53657,27904,0],[-6,27],[-9,25],[-9,21],[-16,30],[-18,28]],[[53599,28035,0],[-14,17],[-12,13]],[[53573,28065,0],[-11,12],[-22,21],[-21,15]],[[53519,28113,0],[-3,2],[-27,17]],[[53489,28132,0],[-27,14],[-36,14]],[[53426,28160,0],[-39,12],[-113,23]],[[53274,28195,0],[0,18]],[[53274,28213,0],[-1,13],[-1,13]],[[53272,28239,0],[-19,11],[-16,9]],[[53237,28259,0],[-10,15],[-12,13],[36,97],[5,13]],[[53256,28397,0],[6,43],[52,2]],[[53314,28442,0],[50,15],[84,27]],[[53448,28484,0],[79,24]],[[53527,28508,0],[76,25],[76,15]],[[53679,28548,0],[81,18],[39,3]],[[53799,28569,0],[55,-11],[49,-17]],[[53903,28541,0],[43,-28]],[[53946,28513,0],[16,-11],[30,-27],[23,-42]],[[54015,28433,0],[3,-13],[14,-55]],[[54032,28365,0],[4,-69],[-19,-30],[-40,-79]],[[53977,28187,0],[-7,-13]],[[53970,28174,0],[41,-24],[-55,-93]],[[53956,28057,0],[-11,-18],[-4,-9],[-13,-77],[11,-38]],[[53939,27915,0],[22,-82],[15,-59]],[[53770,26810,0],[-24,-22]],[[53746,26788,0],[-35,8],[-20,-1],[-37,-7]],[[53654,26788,0],[-47,-93],[-5,-13],[-7,-16]],[[53595,26666,0],[-25,-20]],[[53570,26646,0],[-28,-21],[-33,-25]],[[53509,26600,0],[-15,-14],[-14,-12]],[[53480,26574,0],[-16,-19],[-14,-17],[-15,-19]],[[53435,26519,0],[-1,-2],[-13,-19]],[[53421,26498,0],[-4,-8],[-8,-13]],[[53409,26477,0],[-7,-13],[-4,-5]],[[53398,26459,0],[-17,-34],[-17,-35]],[[53364,26390,0],[-17,-34]],[[53347,26356,0],[-25,-52],[-15,-31]],[[53307,26273,0],[-19,-32],[-7,-11]],[[53281,26230,0],[-3,-5],[-16,-23]],[[53262,26202,0],[-45,-51],[-29,-32]],[[53188,26119,0],[-2,-2],[-1,-1]],[[53185,26116,0],[-27,-28],[-132,-138]],[[53026,25950,0],[-28,-26],[0,-1]],[[52998,25923,0],[-136,-129]],[[52862,25794,0],[-13,95],[-9,59],[31,30],[37,42],[68,63],[6,12],[2,3],[2,12],[-3,11],[-1,0],[-6,14],[-14,11],[-83,58],[-59,37],[-43,24],[-38,19],[-48,21],[-23,9],[-10,5],[-29,11],[-35,13],[-21,20],[-8,8],[-107,60],[-45,16],[-46,15],[-126,55],[-22,11],[-55,37],[-93,89],[-42,58],[-40,60],[-139,145],[-79,82],[-12,12],[-101,105],[-144,145],[-23,44]],[[51491,27305,0],[-6,12],[-46,91]],[[51439,27408,0],[-15,169]],[[51424,27577,0],[50,160],[56,181]],[[51530,27918,0],[115,248]],[[51645,28166,0],[4,8],[2,4]],[[51651,28178,0],[25,42],[32,54]],[[51708,28274,0],[99,80],[333,250],[153,121]],[[52293,28725,0],[155,192],[27,33]],[[52475,28950,0],[100,-90],[123,-109],[72,-43],[78,-48],[36,-22],[20,-11],[190,-177],[168,-11]],[[53262,28439,0],[-6,-42]],[[53256,28397,0],[3,-3],[-44,-108],[11,-15],[11,-12]],[[53272,28239,0],[1,-14],[1,-12]],[[53274,28195,0],[113,-24],[39,-11]],[[53426,28160,0],[36,-15],[27,-13]],[[53519,28113,0],[21,-16],[23,-20],[10,-12]],[[53599,28035,0],[18,-29],[16,-30],[9,-21],[10,-25],[5,-26]],[[53672,27804,0],[5,-42],[10,-73]],[[53687,27689,0],[1,-6],[3,-21]],[[53691,27662,0],[2,-17],[5,-36],[7,-41],[8,-31]],[[53713,27537,0],[13,-50],[9,-28]],[[53759,27394,0],[91,-219],[9,-25],[7,-23],[5,-34],[1,-28],[-1,-18],[-5,-55],[-9,-34],[-2,-12],[-9,-27],[-17,-34],[-17,-26],[-42,-49]],[[54783,26535,0],[-28,-50],[-55,-102],[-4,-8]],[[54696,26375,0],[-9,-12],[-77,-107],[-79,-112],[-105,73],[-14,-16],[-21,17],[-188,-190],[31,-34],[42,-39],[74,-64],[-33,-53],[-42,-68],[19,-15],[14,-14],[10,-11],[9,-12]],[[54327,25718,0],[5,-7]],[[54332,25711,0],[10,-17],[7,-16],[5,-11],[5,-13],[4,-16],[1,-6],[3,-12],[1,-19],[1,-14]],[[54369,25587,0],[-2,-20]],[[54367,25567,0],[-1,-9],[-9,-45],[-10,-52],[4,-20],[6,-26],[7,-32],[13,-17],[15,-21],[5,-7],[-17,-4],[-26,-6],[-10,-2],[-18,-2],[-27,-4],[-9,0],[-14,-1],[-32,0],[-27,1],[-27,2],[-28,4],[-43,9],[11,36],[-63,17],[-15,-41],[-18,4],[-49,13],[-12,5],[-12,8],[-3,-4],[-20,-21],[-23,-24],[-7,-7],[-197,153]],[[53711,25474,0],[-48,-138],[-12,-35]],[[53651,25301,0],[138,-105],[-87,-91],[-33,-34],[-106,-111],[-24,-25]],[[53539,24935,0],[-37,38]],[[53502,24973,0],[-174,185]],[[53328,25158,0],[-141,151]],[[53187,25309,0],[-26,26]],[[53161,25335,0],[-108,107]],[[53053,25442,0],[-6,7]],[[53047,25449,0],[-158,128]],[[52889,25577,0],[-9,20]],[[52880,25597,0],[-16,168]],[[52864,25765,0],[-2,29]],[[52998,25923,0],[28,27]],[[53026,25950,0],[159,166]],[[53185,26116,0],[3,3]],[[53262,26202,0],[19,28]],[[53281,26230,0],[26,43]],[[53307,26273,0],[40,83]],[[53364,26390,0],[34,69]],[[53398,26459,0],[11,18]],[[53409,26477,0],[12,21]],[[53421,26498,0],[14,21]],[[53480,26574,0],[29,26]],[[53509,26600,0],[61,46]],[[53595,26666,0],[14,33],[45,89]],[[53746,26788,0],[12,11],[12,11]],[[53817,27407,0],[121,27],[10,4]],[[53948,27438,0],[83,107]],[[54031,27545,0],[26,34]],[[54057,27579,0],[73,96],[-51,62],[-1,1]],[[54078,27738,0],[23,0],[183,1],[47,0],[72,20],[53,15],[-17,-66],[-4,-18],[158,-319],[28,-57],[7,-13],[110,-34],[4,-16],[-15,-26],[-18,-96],[-12,-78],[-14,-96],[-7,-42],[-2,-19],[-15,-65],[-40,-167],[14,-10],[16,-13],[13,-16],[21,-26],[8,-6],[16,-12],[23,-18],[14,-13],[12,-5],[27,-8]],[[56409,27790,0],[5,5],[4,6]],[[56418,27801,0],[5,5],[6,5],[8,5],[117,-65],[87,-24],[35,-9],[98,-27],[26,-7],[7,-2],[92,-26],[29,-8],[67,-19],[46,-26],[36,-20],[33,-50],[19,-27],[15,-25],[12,-19],[75,-24],[29,-10],[34,-11],[18,-6],[140,-45]],[[57452,27366,0],[42,-14]],[[57494,27352,0],[29,-9],[32,-14],[11,-2],[-15,148],[15,-2]],[[57566,27473,0],[10,-92],[7,-50]],[[57583,27331,0],[1,-11],[9,-81]],[[57593,27239,0],[9,-72],[5,-64],[6,-46],[1,-40],[-2,-49],[-3,-41],[-5,-36],[-3,-20]],[[57601,26871,0],[-9,-46],[-12,-43]],[[57580,26782,0],[-14,-44],[-9,-21],[-10,-26],[-27,-74],[-48,-117],[-24,-60],[-26,-72],[-7,-15],[-10,-21],[-13,-20],[-13,-15],[-13,-30]],[[57366,26267,0],[-39,-16],[-20,-5],[-12,-3],[-19,-2],[-13,-2],[-18,-1],[-19,0]],[[57226,26238,0],[-15,0],[-36,1]],[[57175,26239,0],[-41,3],[-40,3],[-53,5]],[[57041,26250,0],[-51,8],[-50,10],[-56,16]],[[56884,26284,0],[-12,3],[-26,5]],[[56846,26292,0],[0,14],[-1,14]],[[56845,26320,0],[-35,42],[-9,10]],[[56801,26372,0],[-49,3],[-146,5]],[[56606,26380,0],[-28,-11],[6,-17],[6,-27],[6,-21],[8,-16],[-3,-20],[-12,-73],[-38,-224]],[[56551,25971,0],[-229,65],[48,64],[40,24],[38,120],[-31,-1],[-32,-1],[-62,-5],[-31,-4],[-27,-4],[-33,-10],[-32,-11],[-27,-9],[-31,-12],[-29,-13],[-34,-21],[-12,-7],[-39,-22],[-35,14],[-13,5],[-12,4],[-19,16],[-9,9]],[[55940,26172,0],[-38,32],[-1,0]],[[55901,26204,0],[-29,25],[-100,78],[-10,8],[-22,48],[-141,93]],[[55599,26456,0],[-42,-24],[-9,-4]],[[55548,26428,0],[-101,-23]],[[55447,26405,0],[-25,-8],[-23,-8]],[[55399,26389,0],[-101,20],[-71,15]],[[55227,26424,0],[-7,-23],[-46,-136]],[[55174,26265,0],[-92,33],[-10,-31],[-34,7],[-153,40],[-9,3],[-121,36],[-16,8],[-18,8],[-15,5],[-10,1]],[[54783,26535,0],[33,58],[46,82],[17,35],[43,151],[31,107],[8,31],[30,121],[1,21],[3,20],[11,106],[13,45],[77,226],[65,119],[108,157],[48,48],[27,30],[26,65],[3,26],[-31,49]],[[55342,28032,0],[90,2],[40,0]],[[55472,28034,0],[141,4],[74,1],[101,-46],[143,-41],[108,-30],[98,-28]],[[56137,27894,0],[10,-3],[55,-16]],[[56202,27875,0],[62,-27]],[[56264,27848,0],[68,-31]],[[56332,27817,0],[8,-3],[30,-13],[25,-7],[14,-4]],[[55901,26204,0],[39,-32]],[[56551,25971,0],[-35,-202]],[[56516,25769,0],[-15,-146]],[[56501,25623,0],[-5,-5],[-12,-35],[-3,-8],[-8,-42],[-4,-22],[-24,7],[-6,-27],[-24,-55],[-14,-22],[-21,-47],[-2,-18],[-16,-26],[-86,-247],[-11,-26],[-4,-35],[3,-18],[-2,-26],[-15,-224],[-2,-55],[10,-41],[-1,-40],[-10,-417],[47,-306],[34,-42],[19,-56]],[[56344,23790,0],[-9,-10]],[[56335,23780,0],[-65,-344]],[[56270,23436,0],[-14,-72]],[[56256,23364,0],[-117,15],[-125,22],[-333,76],[-257,62],[-171,44],[-128,38],[-204,62],[-83,32],[-60,29],[-62,34]],[[54716,23778,0],[-96,72],[-22,21],[-87,86],[-324,314],[-251,248],[-200,207],[-58,60],[-139,149]],[[53651,25301,0],[60,173]],[[54367,25567,0],[1,15],[1,5]],[[54332,25711,0],[-1,1],[-4,6]],[[55174,26265,0],[53,159]],[[55227,26424,0],[172,-35]],[[55399,26389,0],[48,16]],[[55548,26428,0],[51,28]],[[57175,26239,0],[51,-1]],[[57366,26267,0],[19,-10]],[[57385,26257,0],[6,-3],[22,-12]],[[57413,26242,0],[15,-8],[43,-23],[-97,-86]],[[57374,26125,0],[-15,-13],[-17,-15]],[[57342,26097,0],[-42,-37],[-30,-27],[10,-8],[14,-10],[83,-63],[64,-47],[40,-29],[33,-26],[59,-44]],[[57573,25806,0],[256,-192]],[[57829,25614,0],[29,-20],[12,-8],[43,-33],[130,-97],[52,-41]],[[58095,25415,0],[139,-104]],[[58234,25311,0],[214,377]],[[58448,25688,0],[43,-22],[223,-119],[13,-8],[40,40],[157,150],[40,41],[12,-2],[61,-24],[12,-10],[17,-17],[49,26],[23,11],[23,-16],[15,3],[163,-31]],[[59175,24724,0],[-143,-15],[-50,-8],[-81,-15],[-134,-41],[-78,-29],[-66,-32],[-134,-77],[-26,-18],[-202,-147],[-387,-272],[-53,-38],[-64,-43]],[[57757,23989,0],[-53,-18],[-196,-72],[-113,-55],[-193,-93]],[[57202,23751,0],[-250,-120],[90,44]],[[57042,23675,0],[40,-83]],[[57082,23592,0],[-24,-13]],[[57058,23579,0],[5,-10]],[[57063,23569,0],[-54,-25],[-32,-13],[-92,-32],[-66,-19],[-22,67],[-30,0],[-62,4],[-33,12],[-3,6],[-43,12]],[[56626,23581,0],[-18,-4]],[[56608,23577,0],[-27,8]],[[56581,23585,0],[-6,23]],[[56575,23608,0],[-17,22]],[[56558,23630,0],[-36,22]],[[56522,23652,0],[-50,29]],[[56472,23681,0],[-45,35]],[[56427,23716,0],[-25,22],[-22,16],[-12,7],[-12,13],[-12,16]],[[56501,25623,0],[13,120],[2,26]],[[56606,26380,0],[195,-8]],[[56801,26372,0],[44,-52]],[[56846,26292,0],[38,-8]],[[56884,26284,0],[64,-18],[68,-12],[25,-4]],[[58448,25688,0],[-119,-210],[-95,-167]],[[58234,25311,0],[-22,17],[-117,87]],[[57829,25614,0],[-79,59],[-177,133]],[[57342,26097,0],[32,28]],[[57413,26242,0],[-28,15]],[[57580,26782,0],[12,42],[9,47]],[[57593,27239,0],[-10,92]],[[57566,27473,0],[124,-15],[13,-1]],[[57703,27457,0],[-7,54]],[[57696,27511,0],[-4,24],[-15,78],[-22,95],[-12,19],[-3,6],[-36,76],[-39,83],[-40,77],[162,80]],[[57687,28049,0],[66,28]],[[57753,28077,0],[12,2],[133,28],[11,3],[189,53],[25,-45],[24,-46],[23,-46],[22,-46],[11,-22],[6,-15],[10,-24],[723,-148],[671,95],[650,164]],[[59519,29081,0],[2,-5]],[[59840,28677,0],[17,-31]],[[60010,28510,0],[50,-108]],[[57753,28077,0],[0,2],[-66,142]],[[57687,28221,0],[-152,330]],[[57535,28551,0],[-89,191],[-87,183],[-69,146],[-105,230],[-65,140],[-31,68]],[[57089,29509,0],[134,46],[76,26],[153,53]],[[57452,29634,0],[40,13]],[[57492,29647,0],[73,12],[9,2],[13,2]],[[57587,29663,0],[5,-26],[25,-87],[3,-10],[56,-153],[11,-29],[10,-28],[11,-27],[9,-26],[10,-30],[17,-51],[30,-82],[31,-73],[17,-43],[469,225],[150,76],[16,9],[-68,133],[-57,117],[-72,143],[-144,290],[-81,164]],[[58035,30155,0],[150,16],[114,12],[217,52]],[[58516,30235,0],[14,3],[148,-186],[51,-28],[-33,-144],[-48,-351],[-16,-215],[10,-338],[64,-304],[45,-161],[391,290],[7,6],[370,274]],[[74533,33138,0],[17,-27]],[[74655,32934,0],[53,-91],[53,-90],[25,-44],[29,-49]],[[75136,32116,0],[12,-23],[8,-13]],[[75292,32072,0],[16,10]],[[75308,32082,0],[12,8]],[[75320,32090,0],[-44,-128]],[[75231,31949,0],[-1,-1]],[[75199,31812,0],[-46,-165]],[[75153,31647,0],[-8,-108]],[[75145,31539,0],[-109,-268]],[[75027,31214,0],[-10,-69]],[[75017,31145,0],[-7,-44]],[[75008,30926,0],[-84,-26],[-16,15],[-19,8],[-21,-2]],[[74868,30921,0],[-14,-5],[-12,-12]],[[74842,30904,0],[-87,-185],[-9,-15],[-19,-21]],[[74727,30683,0],[-130,-147],[-6,-6]],[[74591,30530,0],[-127,-145],[-12,-13],[-66,-76]],[[73344,31007,0],[-8,58]],[[74289,33148,0],[68,34],[1,0],[1,0],[0,2],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[25,-14],[18,-15],[12,-17]],[[70612,26077,0],[-1,-4],[-8,-29]],[[70580,25956,0],[-14,-57],[-2,-11]],[[70557,25864,0],[-1,-7],[-1,-4]],[[70555,25853,0],[-1,-3],[-1,-7]],[[70508,25742,0],[-3,-16],[-1,-10]],[[70504,25716,0],[-1,-8],[-3,-20]],[[70487,25690,0],[-1,-19],[0,-1]],[[70486,25670,0],[-2,-23],[-16,-153]],[[70186,23614,0],[17,-3],[14,-3]],[[70217,23608,0],[-6,-34],[-3,-18]],[[70199,23506,0],[-1,1],[-30,2]],[[70149,23504,0],[0,-1],[-1,0]],[[70148,23503,0],[-1,-1],[0,-1]],[[70027,23438,0],[-2,0],[-89,18]],[[69800,23465,0],[-103,10]],[[69555,23508,0],[-88,27]],[[69467,23535,0],[16,93],[18,113]],[[69501,23741,0],[-48,22],[-9,5]],[[69463,23834,0],[11,30],[7,19]],[[69623,24275,0],[40,136],[7,24]],[[69394,26205,0],[94,-20],[111,-24]],[[69819,26114,0],[1,0],[0,-1]],[[69836,26110,0],[1,0],[0,-1]],[[69857,26107,0],[1,-1],[0,-1]],[[69863,26105,0],[1,0],[0,-1]],[[69945,26095,0],[1,0],[0,-1]],[[70046,26094,0],[0,1],[1,0]],[[70057,26096,0],[1,0],[0,1]],[[70102,26105,0],[0,1],[1,1]],[[70118,26111,0],[1,0],[0,1]],[[70188,26141,0],[0,1],[1,0]],[[70210,26154,0],[0,1],[1,0]],[[70229,26168,0],[1,0],[0,1]],[[70234,26172,0],[1,0],[0,1]],[[70240,26176,0],[0,1],[1,0]],[[70243,26179,0],[1,0],[0,1]],[[70251,26185,0],[0,1],[1,0]],[[70259,26192,0],[0,1],[1,0]],[[70264,26197,0],[1,1],[0,1]],[[70269,26203,0],[1,0],[1,1]],[[70271,26204,0],[1,0],[0,1]],[[70273,26206,0],[0,1],[1,0]],[[70274,26207,0],[0,1],[1,0]],[[70276,26210,0],[1,0],[0,1]],[[70288,26222,0],[0,1],[1,0]],[[70294,26230,0],[1,1],[14,15]],[[70309,26246,0],[25,31],[30,34]],[[70364,26311,0],[29,38],[19,23]],[[59823,21994,0],[-51,-2],[-3,0],[-55,-5],[-4,0],[-156,-11],[-104,-20],[-92,-18],[-21,-3],[-61,-5],[-66,-3],[-73,4],[-37,2],[1,-58],[-24,0],[-2,-21],[-2,-11],[-2,-11],[-8,-25],[-77,-1],[-62,-1],[-74,-1],[-18,0],[-28,0],[-153,-3],[-119,39],[-21,0],[-15,-8],[-10,-10],[-3,-11],[-2,-11],[-71,-1],[-4,59],[-4,16],[-6,9],[-13,12],[-120,58],[-33,10]],[[58230,21963,0],[9,29],[-9,15],[-25,58],[-8,23],[-9,33],[-44,0],[-58,1],[-221,76]],[[57865,22198,0],[-21,45],[-14,31],[-6,12],[-13,75],[-3,275],[204,469],[-29,11],[-81,30],[-49,17],[-35,13],[-2,460],[-1,129],[0,56],[-2,74],[-15,29],[-19,32],[-16,28],[-6,5]],[[59799,23057,0],[0,-41],[1,-140]],[[59800,22876,0],[0,-3],[0,-6]],[[59800,22867,0],[5,-78]],[[59805,22789,0],[3,-54],[5,-92]],[[59813,22643,0],[2,-36],[-1,-82],[6,-9],[3,-6],[23,-50],[8,-120]],[[59854,22340,0],[0,-11],[-2,-17],[-29,-318]],[[62257,23350,0],[2,0]],[[62260,23349,0],[2,0]],[[62337,23204,0],[44,-122]],[[62440,22923,0],[50,-108]],[[62490,22815,0],[-70,-168],[-98,-231],[-104,-242],[-6,-12],[-143,-342],[-34,-78],[-58,-136]],[[61977,21606,0],[-70,90],[-77,70],[-88,64],[-79,50],[-52,31],[-154,62],[-129,37],[-136,20],[-80,7],[-88,0],[-107,-9],[-81,-14],[-79,-17],[-103,-32],[-88,-35],[-60,-28],[-67,-37],[-35,-22],[-49,-35],[-37,-27],[-31,-26],[-41,-36],[-58,-59]],[[60188,21660,0],[-173,222],[-96,117],[-96,-5]],[[59823,21994,0],[31,346]],[[59813,22643,0],[-8,146]],[[59800,22867,0],[0,9]],[[59799,23057,0],[107,-15]],[[60707,22963,0],[2,-1]],[[61120,22948,0],[61,7]],[[62243,23351,0],[2,0]],[[62248,23351,0],[2,0]],[[62251,23351,0],[2,0]],[[53976,27774,0],[-15,58],[-22,83]],[[53956,28057,0],[56,92]],[[54012,28149,0],[4,-16],[26,-3],[12,-7],[81,-1],[97,-1],[20,22],[16,-10],[29,33],[24,32],[25,35],[39,64],[38,63],[20,44],[8,20],[13,31],[9,83],[5,42]],[[54478,28580,0],[21,2],[28,3],[18,2],[39,5],[12,2],[36,-14],[56,-24]],[[54688,28556,0],[92,-35],[67,-27],[21,-19],[50,-45],[16,-15],[19,-19],[33,-29],[57,-53],[19,-18],[33,-29],[84,-38],[121,-177],[15,-21],[27,1]],[[53137,29198,0],[14,-1]],[[53151,29197,0],[10,42]],[[53161,29239,0],[116,-16]],[[53277,29223,0],[-13,-39]],[[53264,29184,0],[105,-20]],[[53369,29164,0],[27,-18]],[[53396,29146,0],[20,67]],[[53416,29213,0],[143,-75]],[[53559,29138,0],[4,12]],[[53563,29150,0],[104,1],[75,0],[43,0],[116,-5],[66,-3],[19,-2],[83,-10],[106,-12],[44,-17],[21,-8],[44,-38],[-38,-36],[86,-112],[15,-97],[12,-79],[9,-54],[7,-20],[35,-86],[25,3],[43,5]],[[54012,28149,0],[-42,25]],[[53977,28187,0],[40,78],[20,30],[-5,70]],[[54015,28433,0],[-23,41],[-30,27],[-16,12]],[[53903,28541,0],[-49,16],[-55,12]],[[53799,28569,0],[-39,-4],[-81,-17]],[[53679,28548,0],[-76,-16],[-76,-24]],[[53448,28484,0],[-84,-28],[-50,-14]],[[53314,28442,0],[-52,-3]],[[52475,28950,0],[195,300]],[[52670,29250,0],[457,-52]],[[53127,29198,0],[10,0]],[[81767,21734,0],[-73,-64],[-62,1],[-81,1],[-83,-79],[-49,15]],[[81419,21608,0],[-42,11],[-33,10]],[[81344,21629,0],[-14,-6],[22,-92],[-175,-5],[50,-84],[45,-78],[-216,-38],[-64,-43],[-10,-33],[-149,-15],[-47,-176],[-168,-13],[-133,-74]],[[80485,20972,0],[-20,-18],[-33,20],[-82,39],[-11,4],[-12,4],[-14,5],[-15,4],[-17,4],[-16,4],[-15,3],[-15,3],[-28,4],[-29,2],[-32,2],[-24,0],[-11,0],[-64,-6],[-20,-3],[-13,-2],[-16,-4],[-15,-3],[-8,-3],[-55,-18],[-32,-16],[-22,18],[-21,30],[-47,-46],[-68,-57],[13,-15],[-57,-53],[-41,-48],[-43,-65],[-34,-79],[-15,-46],[-7,-54],[-55,-10],[-3,6],[-12,-3],[-43,-8],[-46,0],[-6,11],[-35,94],[-39,120],[-32,94]],[[78797,21551,0],[-1,191]],[[78796,21742,0],[-2,20]],[[79177,22880,0],[177,-17]],[[79354,22863,0],[4,-33],[8,-20],[25,-31],[17,-14],[21,-12],[97,-45],[124,-25],[65,-9],[55,-4],[744,-11],[383,-6],[71,-8],[43,-8],[88,-25],[78,-34],[67,-37],[49,-35],[40,-34],[24,-21],[71,-81],[58,-75],[51,-72],[53,-74],[4,-7]],[[81594,22142,0],[-78,-50],[52,-73],[25,-33],[113,-153],[61,-99]],[[81767,21734,0],[41,-68],[11,-6],[33,-71],[24,-53],[18,-42],[7,-25],[-4,-15],[19,-89],[3,-41],[3,-36],[-1,-34],[1,-143],[-1,-200],[0,-25],[-1,-29],[-1,-55],[0,-104]],[[81919,20698,0],[0,-51],[-15,-45],[-11,-35],[-15,-54],[40,-81],[6,-78],[4,-36],[16,-66],[8,3],[21,-60],[70,-183],[50,-133],[10,-32],[5,-21],[5,-35],[6,-1],[-1,-34],[-2,-16]],[[82116,19740,0],[-207,7],[-1,-16],[-12,1]],[[81896,19732,0],[-68,-41],[-228,-90]],[[81600,19601,0],[-77,-31],[-28,72],[-13,-7],[-135,-47],[-6,13],[-48,19],[-82,-32],[-83,-29],[-66,-25]],[[81062,19534,0],[-96,180],[-12,23],[-32,58]],[[80922,19795,0],[-13,29],[-28,51],[-24,50],[-14,32],[-22,55],[-21,72],[8,1],[-14,38],[-14,43],[-60,270],[-58,246],[-14,39],[-15,38],[-13,19],[-33,52],[-17,25],[-12,30]],[[80558,20885,0],[-73,87]],[[81344,21629,0],[24,-8],[51,-13]],[[80485,20972,0],[48,-56],[25,-31]],[[80922,19795,0],[-108,-12],[-387,-69],[-36,55],[-60,-6],[-73,-7],[-139,-12],[-31,-21],[-39,-25],[-13,-8],[-52,93],[-31,60],[-87,0],[4,-52],[0,-102],[0,-105],[0,-64],[-9,-1],[1,-416],[1,-132],[-2,-29],[-3,-45],[-2,-17],[-7,-34]],[[79849,18846,0],[-23,-66],[-3,-4],[-37,-59],[-18,-24],[-28,-32],[-33,-26],[-27,-20],[-11,-7],[-8,-6],[-22,-12],[-16,-7],[-27,-12],[-42,-13],[-44,-9],[-34,-4],[-21,-1],[-30,-1],[-12,0],[-23,1],[-30,5],[-37,9],[-27,6],[-33,11],[-30,13],[-16,8],[-14,8],[-22,14],[-61,44],[-47,45],[-22,21],[-21,25],[-27,37],[-21,34],[-32,58],[-21,51],[-1,3],[-4,9],[-5,17],[-16,52],[-1,6],[-12,55],[-1,56]],[[78889,19131,0],[-1,47],[0,66],[2,27],[13,70],[31,161],[8,36],[56,271],[7,34],[11,81],[-1,80],[-1,18],[-10,63],[-26,80],[-8,14],[-22,43],[-32,57],[-18,26],[-13,16],[-40,45]],[[79087,20683,0],[8,8],[109,118]],[[81062,19534,0],[-89,-36],[178,-333],[63,-116],[49,-124]],[[81263,18925,0],[19,-81],[6,-22]],[[81288,18822,0],[11,-51],[5,-55]],[[81304,18716,0],[4,-51],[0,-38],[-2,-65],[-1,-18]],[[81305,18544,0],[-13,-84],[-24,-103],[-34,-96],[-30,-62],[-17,-17],[-22,-9],[-31,-7],[-19,-1]],[[81115,18165,0],[-51,-4],[-59,-6],[57,-79]],[[81062,18076,0],[-53,-9],[-51,-19],[-39,-17],[-32,-20],[-60,-53],[-34,-39]],[[80793,17919,0],[-341,-429]],[[80452,17490,0],[-111,-139]],[[80341,17351,0],[-15,-17],[-35,-34],[-52,-43]],[[80239,17257,0],[-58,-42]],[[80181,17215,0],[-4,-2],[-7,1]],[[80170,17214,0],[-61,-31]],[[80109,17183,0],[-66,-25]],[[80043,17158,0],[-21,-7],[-29,-8],[-46,-9],[-58,-6],[-52,1]],[[79837,17129,0],[-56,3]],[[79781,17132,0],[-56,10],[-51,11]],[[79674,17153,0],[-55,21]],[[79619,17174,0],[-47,23],[-26,13],[-28,22],[-43,34],[21,100],[24,9],[12,-5],[13,-2],[12,1],[9,4],[45,22],[75,38],[23,10],[100,51],[-9,17],[9,5],[5,3],[17,-32]],[[79831,17487,0],[83,43]],[[79914,17530,0],[85,46]],[[79999,17576,0],[-9,13],[-11,17]],[[79979,17606,0],[41,25],[14,9],[21,15],[14,11],[14,15],[32,-27],[62,68],[-31,24]],[[80146,17746,0],[40,45]],[[80186,17791,0],[27,33],[6,13],[35,-17],[43,83],[-37,17],[14,28],[12,31],[9,33],[27,-10],[-3,27],[-5,14],[-6,10],[-18,14],[-14,10],[-59,41],[-16,14],[-15,17],[-9,16]],[[80177,18165,0],[-9,21],[-21,49]],[[80147,18235,0],[-50,120],[-19,-6],[-44,104],[-93,214],[16,202],[-54,-19],[-54,-4]],[[82477,20720,0],[-45,-10],[-62,-9],[-44,-3],[-46,-2],[-48,0],[-148,1],[-20,0],[-145,1]],[[81594,22142,0],[24,15],[75,29],[34,11],[2,7],[3,6],[89,8],[30,1],[40,-1],[42,-7],[23,-6],[6,0],[5,5],[48,-29],[19,-14],[63,-51],[26,-30],[24,-20],[7,4],[44,-55],[106,-112],[10,3],[35,-49],[55,-58],[58,-49],[9,-1],[60,-36],[51,-18],[29,-6],[41,-4],[53,2],[26,3],[34,9],[38,14],[9,0],[196,40],[399,86],[38,15],[27,6],[36,20],[44,28],[17,18],[7,3],[26,16],[35,30],[10,7],[12,3],[11,-1],[44,-27],[60,-46],[190,-78],[11,2],[12,0],[174,-72],[29,-16],[27,-20],[17,-16],[5,-13],[4,-10],[18,-23],[26,-32],[18,-36],[20,-71],[2,-39],[-4,-67],[-2,-7],[7,-45],[1,-21],[5,-18],[23,-43],[-78,-63],[2,-28],[36,9],[38,20],[9,-32],[12,-42],[-10,-10],[-24,-12],[-33,-7],[-62,-8],[-60,0],[-49,5],[-215,30],[-56,4],[-55,-3],[-65,-9],[-47,-14],[-35,-12],[-37,-19],[-279,-139],[-47,-25],[-102,-42],[-66,-24],[-366,-120],[-37,-14],[-114,-43],[-32,-17],[-54,-29],[-19,26],[-35,52]],[[82477,20720,0],[-50,-141],[-43,0],[2,-126],[43,-16],[0,-75],[24,-30],[40,-45],[15,-19],[115,-137],[123,-157],[139,-183],[166,-199],[223,-341],[81,-104],[28,-48],[-8,-2],[-35,-9],[-1,-9],[-109,-22],[-200,-29],[-73,-16],[-145,-27],[-6,0],[-2,10],[-124,-11],[-84,-15],[-5,-10],[-26,0],[-9,0],[-39,-7],[-33,0],[-79,-16],[-38,0],[-43,-23],[-21,-8],[-34,-23],[67,-91],[16,-7],[44,7],[19,4],[13,-1],[49,2],[92,14],[131,20],[116,22],[9,-34],[11,-3],[32,4],[136,22],[79,12],[25,4],[122,15],[35,2],[62,10],[42,-43],[6,0],[20,-4],[62,-20],[54,-36],[12,-6],[-7,-23],[-17,-36],[-22,-36],[-26,-27],[-27,-19],[-28,-19],[-36,-17],[-23,-4],[-37,7],[-63,31],[-39,14],[-78,20],[-16,-3],[-4,-15],[-31,-70],[-15,-27]],[[83054,18551,0],[-46,-19],[-8,12],[-146,-60],[-30,-12],[-68,-28],[-28,-11],[-42,-16],[2,-6],[-42,-8],[-17,-2],[-50,-5],[-45,-1],[-47,5],[-5,-6],[-35,10],[-40,13],[-43,29],[-4,-6],[-31,16],[-33,26],[-26,20],[-7,7],[-7,3],[-4,4],[-3,-4],[-26,20],[-12,17],[-10,17],[-27,40],[-7,-3],[-16,36],[-19,45],[-12,52],[-7,-1],[-4,29],[-3,41],[0,39],[2,199],[4,149],[0,26],[-1,90],[1,30],[0,14],[4,205],[3,155],[-4,1],[1,27]],[[83054,18551,0],[88,-38],[102,-90],[-29,-31],[-28,-33],[-24,-38],[-20,-36],[-18,-38],[-13,-43],[-8,-39],[-6,-42],[-1,-84],[4,-41],[7,-35],[8,-26],[10,-40],[16,-58],[35,-182],[3,-47],[6,2],[6,-34],[8,-44],[6,-43],[4,-58],[-2,-37],[-6,-50],[-10,-50],[-11,-44],[-23,-62],[-29,-53],[-46,-70],[-58,-64],[-42,-40],[-3,2],[-39,-30],[-46,-31],[-75,-44],[-3,4],[-43,-22],[-50,-21],[-46,-16],[-54,-11],[-1,6],[-64,-11],[-74,-7],[-65,0],[0,4],[-60,3],[-70,5],[-73,12],[-1,5],[-113,41],[-78,35],[-2,-2],[-35,19],[-78,53],[-56,40],[-48,44],[-64,64],[-51,55],[-66,83],[-45,71],[-42,74],[-36,74],[-15,40],[-6,14],[-22,66],[-44,147],[-27,91],[-13,41],[-23,49],[-25,34],[-32,14],[8,104]],[[81303,18062,0],[-241,14]],[[81062,18076,0],[-57,80],[59,6],[51,3]],[[81305,18544,0],[2,18],[2,65],[-1,39],[-4,50]],[[81288,18822,0],[-6,23],[-19,80]],[[81600,19601,0],[228,91],[68,40]],[[81896,19732,0],[12,0],[1,16],[207,-8]],[[78889,19131,0],[-9,17],[-21,66],[-20,34],[-31,43],[-24,26],[-36,30],[-15,9],[-14,9],[-55,20],[-35,10],[-33,5],[-57,1],[-68,-2],[-50,2],[-35,4],[-64,12],[-52,16],[-50,21],[-51,25],[-18,11]],[[78151,19490,0],[70,57]],[[78476,19787,0],[25,37]],[[78576,19942,0],[42,66]],[[78618,20008,0],[14,22]],[[75379,19045,0],[115,-49],[6,4]],[[75500,19000,0],[31,-19],[11,-7]],[[75542,18974,0],[44,-2],[-12,-19]],[[75478,18801,0],[14,-35],[15,-37]],[[75507,18729,0],[1,-58]],[[76845,17930,0],[-8,-5],[-151,-241],[-17,-27],[-106,-167],[-133,-214],[-219,-353],[-157,-265],[-211,-342],[-109,-177],[-209,-344]],[[75525,15795,0],[-121,-34],[-168,-21],[-208,-25],[-241,0],[-96,13]],[[74691,15728,0],[-7,1],[-68,5]],[[74616,15734,0],[-21,2],[-61,12],[-87,17],[-173,50],[-108,44],[-31,13],[-180,91],[-65,41],[-40,25],[-18,13],[-28,20],[-158,153],[-19,18],[-21,22],[-157,160],[-104,97],[-58,59],[-115,116]],[[73172,16687,0],[-39,42],[-48,49],[-97,104]],[[72988,16882,0],[-27,27],[-71,60]],[[72890,16969,0],[33,-14],[26,-2],[31,4],[34,22],[29,28]],[[73043,17007,0],[33,-15],[37,-16],[126,-57],[1,0],[-6,-14],[-5,-10],[100,-41],[52,-23]],[[73381,16831,0],[94,100],[74,79]],[[73549,17010,0],[92,73],[35,28],[27,22],[46,38],[85,76],[51,46],[15,13],[22,17],[29,21],[59,45]],[[74052,17401,0],[22,-1],[53,-3]],[[74127,17397,0],[11,13],[44,44],[33,33],[46,47],[30,31]],[[74366,17642,0],[5,7],[4,3]],[[74293,17740,0],[42,69],[9,16],[37,64]],[[74381,17889,0],[22,34],[3,6]],[[74406,17929,0],[4,8],[20,33],[26,44],[23,38]],[[74479,18052,0],[11,29],[11,28],[6,14]],[[74507,18123,0],[12,21],[5,10],[62,111]],[[74586,18265,0],[28,96],[30,99]],[[74644,18460,0],[57,235],[38,162],[8,35]],[[74747,18892,0],[6,11],[92,198]],[[74904,19177,0],[5,0],[5,-1],[149,-31]],[[75212,19116,0],[125,-53],[42,-18]],[[74616,15734,0],[75,-6]],[[75525,15795,0],[-117,-160],[16,-489],[-12,-50],[-123,-598],[-15,-57],[-14,-54],[-111,-490],[-163,-619],[-104,-460],[-33,-146],[-221,-125],[-308,-327],[-351,-371],[-22,6],[-23,0],[-428,8]],[[73496,11863,0],[-32,-36]],[[73464,11827,0],[-2,-2],[-17,-14]],[[73445,11811,0],[-29,-16],[-29,-17],[-12,-3],[-14,-4]],[[73361,11771,0],[-45,-29],[-7,-2],[-44,-9]],[[73265,11731,0],[-58,0],[-313,-46],[-299,290]],[[72595,11975,0],[-521,509],[-541,527]],[[71533,13011,0],[-469,458],[-129,127]],[[70935,13596,0],[-165,153],[-28,26],[-56,64],[-225,258]],[[70461,14097,0],[-87,100],[-135,156],[-20,17],[-16,14]],[[70203,14384,0],[7,20],[-19,9],[-33,19],[-11,9],[-53,47],[-25,27],[-102,81]],[[69967,14596,0],[-42,54],[-165,223],[-62,87],[-152,349],[-35,79]],[[69511,15388,0],[0,2],[15,35]],[[69526,15425,0],[19,49],[1,3]],[[69546,15477,0],[20,49],[13,34],[7,19]],[[69586,15579,0],[6,13],[15,35],[14,35],[6,14]],[[69627,15676,0],[10,26],[10,24]],[[69647,15726,0],[19,49],[4,7],[16,42],[11,24],[10,25],[10,27],[9,20],[22,54]],[[69748,15974,0],[14,31],[30,5],[21,4],[126,-39],[45,-44]],[[69984,15931,0],[10,-10],[250,69]],[[70244,15990,0],[357,102],[294,80]],[[70895,16172,0],[48,15],[15,1],[23,1],[46,90],[23,5],[26,5]],[[71076,16289,0],[67,0]],[[71143,16289,0],[92,-29],[44,-13]],[[71279,16247,0],[46,-2]],[[71325,16245,0],[42,5],[15,7],[13,7]],[[71395,16264,0],[4,6],[7,8]],[[71406,16278,0],[92,126]],[[71498,16404,0],[33,39],[12,14]],[[71543,16457,0],[5,3],[73,45]],[[71621,16505,0],[89,120],[24,64],[8,42]],[[71742,16731,0],[16,104]],[[71758,16835,0],[1,32],[3,63],[-14,154],[1,38],[1,27],[19,101],[18,69],[16,59],[10,44],[15,65]],[[71828,17487,0],[15,77]],[[71911,17552,0],[4,0],[96,-22],[100,-16]],[[72187,17485,0],[116,-46],[127,-71]],[[72430,17368,0],[70,-42],[1,-1]],[[72501,17325,0],[5,-3],[27,-19]],[[72533,17303,0],[32,-21],[22,-17],[24,-19]],[[72611,17246,0],[75,-68],[37,-36],[21,-22],[38,-40]],[[72782,17080,0],[5,-4],[13,-14]],[[72800,17062,0],[46,-57],[20,-17],[24,-19]],[[72988,16882,0],[184,-195]],[[77784,19049,0],[-325,-412]],[[77459,18637,0],[-65,-83],[-110,-200]],[[77284,18354,0],[-94,86]],[[77190,18440,0],[-55,62],[-58,61]],[[77035,18611,0],[-10,12],[-20,22]],[[76929,18743,0],[-8,22],[-38,-34],[-205,223],[-59,105]],[[76619,19059,0],[71,50],[5,5],[162,138],[296,145],[288,139],[109,57]],[[77668,19262,0],[28,-35]],[[77811,19084,0],[-27,-35]],[[57587,29663,0],[-7,42],[-10,43]],[[57570,29748,0],[-29,97]],[[57541,29845,0],[-21,61],[-24,57],[-31,70],[-58,108]],[[57407,30141,0],[-19,-4]],[[57388,30137,0],[-17,37],[-28,44],[-34,52],[-36,42],[-41,42],[-35,41],[-35,40],[-37,40],[-37,38],[-38,39],[-122,119],[-57,54],[-30,24],[65,42],[62,31],[103,44],[56,-15],[44,-6],[132,-25],[82,-14],[147,-71],[14,-8],[98,-43],[94,-80],[57,-45],[14,-10],[56,-38],[40,-90],[29,-62],[35,-71],[66,-133]],[[58206,52803,0],[-30,-59],[-6,-74],[-2,-46]],[[58168,52624,0],[2,-46]],[[58170,52578,0],[13,-102],[13,-36],[51,-132],[26,-52]],[[58273,52256,0],[90,-156],[76,-130]],[[58439,51970,0],[50,-73],[83,-118],[126,-110],[89,-52],[108,-39]],[[58895,51578,0],[122,-22],[51,3],[30,3]],[[59098,51562,0],[147,55],[115,66],[109,62]],[[59469,51745,0],[145,-212],[-59,-724]],[[59555,50809,0],[-35,-429]],[[59520,50380,0],[58,-249],[60,-138]],[[59638,49993,0],[120,-260]],[[59758,49733,0],[37,-79],[13,-26],[24,-45],[464,260]],[[60296,49843,0],[162,-129],[164,-134],[27,-23],[-59,-54]],[[60590,49503,0],[-13,-1],[-6,-1]],[[60571,49501,0],[-3,-14],[-1,-3]],[[60567,49484,0],[-42,-26],[-45,-29],[-14,-6],[-18,-9],[-8,-12]],[[60440,49402,0],[-11,-5],[-30,-14]],[[60399,49383,0],[-19,-15],[-17,-14],[-19,-20]],[[60344,49334,0],[-3,-15]],[[60341,49319,0],[-148,-131],[-47,-37],[-21,-16]],[[60125,49135,0],[-3,-1],[-22,-12],[-52,-43]],[[60048,49079,0],[-19,-11],[-37,-22],[-59,-25],[-145,-61],[-177,-44]],[[59611,48916,0],[-7,-23],[-40,6],[-13,2],[-22,4],[-39,-8],[-31,-7],[-93,-11],[-111,4]],[[59255,48883,0],[-51,2],[-57,2]],[[59147,48887,0],[-109,11],[-83,9]],[[58955,48907,0],[-18,8],[-47,20]],[[58890,48935,0],[-83,25]],[[58807,48960,0],[-21,10],[-36,18]],[[58750,48988,0],[-126,-2],[-105,-4],[-21,-5],[-58,-12]],[[58440,48965,0],[-48,9]],[[58392,48974,0],[-47,-7],[-383,-107],[-192,-21]],[[57770,48839,0],[-43,-3],[-52,-3]],[[57675,48833,0],[-65,33]],[[57610,48866,0],[-8,11],[-18,21]],[[57584,48898,0],[-32,37],[-102,113],[-24,83],[-16,25],[-3,25],[-21,122]],[[57386,49303,0],[-1,11],[-12,106],[30,103]],[[57403,49523,0],[75,114],[113,164]],[[57591,49801,0],[7,20],[5,11]],[[57603,49832,0],[14,34]],[[57617,49866,0],[40,85],[24,79],[-8,47]],[[57673,50077,0],[-35,71],[-44,65]],[[57594,50213,0],[-69,38],[-22,12],[-24,12],[-94,44],[-96,49]],[[57289,50368,0],[-46,12],[-30,5],[-72,41]],[[57141,50426,0],[-60,41],[-92,78]],[[56989,50545,0],[-65,64],[-17,16],[-22,28],[-51,65]],[[56834,50718,0],[-47,63],[-35,48]],[[56752,50829,0],[-52,76],[-69,102],[-6,19],[-3,8]],[[56622,51034,0],[-7,7],[-2,2],[-9,14],[-63,109]],[[56541,51166,0],[-127,214],[-105,171]],[[56309,51551,0],[-150,202],[-142,199],[-67,130],[-100,139],[-11,14],[-126,107]],[[55713,52342,0],[9,25],[27,97],[48,179],[24,17]],[[55821,52660,0],[12,15],[266,316]],[[56099,52991,0],[92,164],[-18,371],[35,175],[-70,54]],[[56138,53755,0],[72,-10]],[[56210,53745,0],[46,-3],[53,-2],[56,-1],[103,-4]],[[56468,53735,0],[8,-38],[45,-17]],[[56521,53680,0],[-18,-62]],[[56503,53618,0],[7,-37],[-10,-41],[18,-34]],[[56518,53506,0],[27,-46]],[[56545,53460,0],[10,-19],[6,-20],[2,-9]],[[56563,53412,0],[2,-10],[1,-9]],[[56566,53393,0],[0,-9]],[[56566,53384,0],[0,-10]],[[56566,53374,0],[-1,-9]],[[56565,53365,0],[-1,-9]],[[56564,53356,0],[-2,-9]],[[56562,53347,0],[-3,-10]],[[56559,53337,0],[-3,-8],[95,-20],[137,8]],[[56788,53317,0],[65,16],[461,29]],[[57314,53362,0],[14,13],[-63,303]],[[57265,53678,0],[342,226],[63,41]],[[57670,53945,0],[153,85],[136,72]],[[57959,54102,0],[476,-306],[13,-9],[26,-226]],[[58474,53561,0],[-5,-121],[-19,-49]],[[58450,53391,0],[-11,-33],[-233,-555]],[[60949,53316,0],[-77,-140]],[[60872,53176,0],[534,-480]],[[61406,52696,0],[252,-260],[126,-103]],[[61784,52333,0],[223,-117]],[[62007,52216,0],[206,-108],[98,-57]],[[62311,52051,0],[98,-70]],[[62409,51981,0],[3,-33]],[[62412,51948,0],[-137,88],[-142,79]],[[62133,52115,0],[-108,55],[-178,94]],[[61847,52264,0],[-8,-1],[-13,-1],[-13,0],[-13,1],[-13,0],[-13,2],[-13,2],[-12,1],[-13,3],[-13,3],[-12,3],[-5,2],[-21,6],[-19,6],[-7,3],[-9,3],[-8,4],[-9,4],[-8,5],[-8,5]],[[61617,52315,0],[-7,4]],[[61610,52319,0],[-5,2],[-5,2],[-6,2],[-5,1],[-6,1],[-3,0],[-27,3],[-27,4],[-4,0],[-9,1],[-9,1],[-10,0],[-9,0],[-10,-2],[-13,-1],[-15,0],[-15,-1],[-14,0],[-15,0],[-26,1],[-136,4],[-34,1],[-32,-332],[-15,-114],[-12,-112],[0,-12],[-1,-16],[0,-17],[0,-16],[1,-16],[1,-16],[1,-15],[3,-17],[3,-19],[3,-21]],[[61159,51615,0],[8,-40]],[[61167,51575,0],[10,-40]],[[61177,51535,0],[6,-20],[6,-20],[6,-20],[8,-19],[7,-20],[8,-19],[7,-19],[9,-19],[9,-19],[153,-8],[1,-2],[12,-16],[12,-16],[13,-15],[13,-16],[14,-15],[13,-15],[15,-15]],[[61489,51242,0],[29,-28]],[[61518,51214,0],[15,-14]],[[61533,51200,0],[31,-26]],[[61564,51174,0],[16,-13],[-6,-9],[-8,-13],[1,-2]],[[61567,51137,0],[17,-23]],[[61584,51114,0],[9,-11],[8,-10],[10,-11],[-49,-66],[-7,4],[-8,4],[-8,3],[-9,2],[-8,3],[-9,2],[-9,2],[-17,-24],[-26,-34],[-14,-18],[-21,-29],[-20,-28],[-20,-28],[-19,-28],[-20,-29],[-18,-29],[-19,-30],[-1,-2],[-3,-6],[-3,-5],[-4,-4],[-3,-5],[-75,-83],[-78,-89],[-29,23],[-113,-98],[-116,-103],[34,-41],[1,-1],[2,-3],[3,-4],[2,-4],[2,-4],[1,-4],[1,-5],[0,-1],[1,-1],[1,-3],[2,-1],[1,-2],[3,-1],[10,-4],[12,-6],[11,-6],[12,-7],[11,-7],[11,-7],[11,-8],[1,-1],[5,-3],[4,-3],[4,-4],[4,-4],[57,-66],[2,-2],[2,-3],[1,-3],[1,-3],[0,-3],[0,-2],[0,-2],[1,-3],[0,-3],[1,-3],[2,-2],[2,-2],[2,-2],[9,-9],[9,-9],[9,-9],[10,-8],[11,-8],[10,-8],[11,-7],[11,-7],[11,-6],[12,-7],[5,-3],[9,-6],[10,-6],[9,-4],[2,-2],[5,-2],[6,-2],[5,-1],[5,0],[5,-1],[14,-1],[14,-1],[14,-1],[13,0],[15,1],[13,0]],[[61353,50046,0],[17,2]],[[61370,50048,0],[14,2],[13,2],[13,2]],[[61410,50054,0],[26,7]],[[61436,50061,0],[13,3],[12,4]],[[61461,50068,0],[18,7]],[[61479,50075,0],[13,5],[13,6],[12,6],[12,6],[10,6],[13,7],[12,8],[12,8],[11,8],[12,9],[43,34],[-64,-86]],[[61578,50092,0],[-96,-31],[-91,-36]],[[61391,50025,0],[-76,-36],[-52,-6]],[[61263,49983,0],[-99,-32]],[[61164,49951,0],[-47,-52],[-171,-116],[-23,-26],[-40,-29],[-51,-18],[-26,-31],[-6,-15],[-151,-108]],[[60649,49556,0],[-27,23],[-164,134],[-162,130]],[[60296,49843,0],[-398,-224],[-66,-37],[-37,71],[-37,80]],[[59638,49993,0],[-60,137],[-58,250]],[[59555,50809,0],[60,723],[-146,213]],[[59098,51562,0],[-80,-6],[-123,22]],[[58439,51970,0],[-76,129],[-90,157]],[[58273,52256,0],[-26,51],[-50,133],[-14,35],[-13,103]],[[58168,52624,0],[2,45],[6,74],[30,60]],[[58450,53391,0],[19,48],[5,122]],[[58474,53561,0],[-26,225]],[[58448,53786,0],[37,-23],[10,-7],[212,-137],[-95,131],[-156,214],[-10,14],[-69,96],[-15,21],[-245,393],[-20,86],[-58,212],[9,28],[3,11],[20,62],[4,13],[31,107],[46,136]],[[58152,55143,0],[53,-31],[66,-31],[-79,-148],[126,-53],[-8,-53],[185,-27],[7,-27],[531,-340],[115,-74],[619,38],[573,-24],[7,-381],[253,-498],[349,-178]],[[56099,52991,0],[-266,-317],[-12,-14]],[[55821,52660,0],[-15,-17],[-8,-9],[-49,-171],[-27,-97],[-9,-25],[-74,-55],[-94,9],[-96,-4]],[[55449,52291,0],[-233,-12],[-129,1]],[[55087,52280,0],[-71,7],[-150,37]],[[54866,52324,0],[-120,25]],[[54746,52349,0],[-99,19],[-201,39]],[[54446,52407,0],[-170,13]],[[54276,52420,0],[-315,-5],[-320,61],[-146,31],[-160,22],[-18,2]],[[53317,52531,0],[1,11],[8,44],[225,215],[36,53],[44,36],[24,20],[29,24],[12,9],[26,13],[-18,36],[-20,102],[63,25],[-118,263],[-33,77],[-15,34],[12,29],[9,23],[15,-2],[25,-12],[17,-4],[78,-40],[10,-16],[23,-31],[15,-17],[43,-41],[44,27],[28,17],[18,10],[-26,38],[-67,145],[-56,104],[238,-99],[136,148],[303,14],[51,-12],[46,-37],[56,-11],[110,-37],[111,42],[133,62],[69,55],[-34,95],[-446,90],[126,459],[55,124],[236,100],[656,-206],[451,-16],[44,-67],[-4,-60],[5,-28],[26,-47],[43,-46],[-19,-45],[-38,-323],[15,-123]],[[56541,51166,0],[72,-124],[9,-8]],[[56622,51034,0],[9,-28],[121,-177]],[[56752,50829,0],[82,-111]],[[56834,50718,0],[73,-94],[82,-79]],[[57141,50426,0],[72,-42],[30,-5],[46,-11]],[[57289,50368,0],[97,-49],[118,-56],[90,-50]],[[57673,50077,0],[0,-48],[-16,-79],[-40,-84]],[[57603,49832,0],[-12,-31]],[[57403,49523,0],[-29,-103],[12,-117]],[[57386,49303,0],[-88,-1],[-34,-1],[-29,-1],[-36,1],[17,-182],[4,-37],[-8,-38],[9,-19],[14,-65],[10,-85],[6,-4],[11,-8],[13,-1],[4,-91],[10,-59],[6,-26],[-3,-14],[4,-17],[0,-19],[1,-31],[-2,-12],[2,-12],[3,-68],[18,-41],[9,-43],[-2,-28],[16,-51],[16,-21],[-2,-26],[23,-42],[7,-23],[0,-10],[4,-6],[2,-2],[4,-5],[34,-48],[-19,-12],[3,-13],[2,-12],[-4,-29],[-84,-84],[-10,-1],[-34,-40],[-50,-51],[-54,-60],[-22,-24],[-26,-21],[-141,-184],[-13,-11],[-81,-127]],[[56896,47498,0],[-46,46],[46,-46]],[[56896,47498,0],[-43,-68]],[[56853,47430,0],[-8,8]],[[56791,47488,0],[-41,42]],[[56710,47580,0],[-24,32]],[[56686,47612,0],[-55,81]],[[56578,47775,0],[-48,80]],[[56499,47910,0],[-14,31]],[[56485,47941,0],[-47,88]],[[56406,48101,0],[-33,77]],[[56373,48178,0],[-21,48]],[[56352,48226,0],[-24,62]],[[56302,48377,0],[-3,14]],[[56274,48697,0],[-42,83]],[[56215,48770,0],[-18,18],[-23,22],[-52,46],[-12,6],[-37,21],[-54,26],[-98,33],[-173,23],[-194,49],[-55,18],[-28,14],[-61,37],[-50,31],[-13,-21],[-22,16],[-6,5],[-101,145],[-85,123],[-96,136],[-68,98],[-69,101],[-32,47],[-55,84],[-54,85],[-72,110],[37,52],[-88,130],[-22,33]],[[54614,50258,0],[25,-15],[76,-45],[58,-32],[245,346],[-46,67],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1]],[[54970,50585,0],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1]],[[54968,50594,0],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,2],[0,2]],[[54966,50603,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[54967,50612,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[54969,50621,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,2],[0,1]],[[54972,50629,0],[1,1]],[[54973,50630,0],[1,2],[0,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1]],[[54977,50638,0],[1,1]],[[54978,50639,0],[1,1],[1,0],[0,1],[1,2],[1,0],[0,1],[1,0],[1,1]],[[54984,50645,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1]],[[54996,50655,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1]],[[55002,50658,0],[1,1],[2,0]],[[55005,50659,0],[1,0],[1,1]],[[55007,50660,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1]],[[55013,50662,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[55018,50663,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[55023,50664,0],[1,0],[2,0],[1,0],[1,0]],[[55028,50664,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1]],[[55038,50663,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[3,-1],[64,-16],[122,173],[11,15],[18,25]],[[55263,50858,0],[25,0]],[[55288,50858,0],[56,-1]],[[55344,50857,0],[2,17],[17,0],[46,20],[29,-3]],[[55438,50891,0],[51,-25]],[[55489,50866,0],[18,-8],[15,7]],[[55522,50865,0],[72,-30]],[[55594,50835,0],[23,37]],[[55617,50872,0],[19,28]],[[55636,50900,0],[19,26],[44,41],[16,24],[6,18]],[[55721,51009,0],[35,38],[68,82],[8,4]],[[55832,51133,0],[20,-5],[34,24]],[[55886,51152,0],[28,18]],[[55914,51170,0],[71,65],[33,29]],[[56018,51264,0],[64,73]],[[56082,51337,0],[25,34]],[[56107,51371,0],[67,60]],[[56174,51431,0],[75,52],[4,5]],[[56253,51488,0],[56,63]],[[54410,48219,0],[-62,-2],[-84,-9]],[[54264,48208,0],[-146,-28]],[[54118,48180,0],[-143,-39],[-88,-28],[-44,-19],[-83,-33],[-78,-34],[-187,-78],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0]],[[53484,47945,0],[-1,0],[-1,0]],[[53482,47945,0],[-1,-1]],[[53481,47944,0],[-1,0],[-1,0]],[[53479,47944,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[53465,47943,0],[-1,0],[-1,0]],[[53463,47943,0],[-2,0],[-1,0]],[[53460,47943,0],[-1,0],[-1,0]],[[53458,47943,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-19,36],[-130,71],[-161,90],[-15,-23],[-38,-55],[-33,14],[-125,95],[-68,-1],[-72,27],[-185,312]],[[52583,48523,0],[-14,23]],[[52569,48546,0],[-74,79],[-166,198],[-2,9]],[[52327,48832,0],[-16,177],[-37,326],[-51,247]],[[52223,49582,0],[-12,56]],[[52211,49638,0],[-12,55],[-7,37],[-3,6],[50,28],[35,24],[202,195]],[[52476,49983,0],[80,94],[74,99]],[[52630,50176,0],[106,125],[17,20],[63,60],[41,35],[95,69]],[[52952,50485,0],[30,20],[142,73],[156,80]],[[53280,50658,0],[122,46],[43,3]],[[53445,50707,0],[28,5],[62,9]],[[53535,50721,0],[78,2],[191,-16],[148,-30]],[[53952,50677,0],[132,-28]],[[54084,50649,0],[55,-17],[48,-29]],[[54187,50603,0],[95,-46],[201,-222]],[[54483,50335,0],[131,-77]],[[52189,49737,0],[10,-43],[12,-56]],[[52223,49582,0],[50,-246],[38,-326],[16,-178]],[[52327,48832,0],[1,-9],[167,-197],[74,-80]],[[52569,48546,0],[14,-22],[-33,-7]],[[52550,48517,0],[-223,-23],[0,-19],[-18,-148]],[[52309,48327,0],[-13,-103],[-126,-203],[-18,-29]],[[52152,47992,0],[74,-39]],[[52226,47953,0],[1,-28],[2,-10]],[[52229,47915,0],[2,-9]],[[52231,47906,0],[4,-8]],[[52235,47898,0],[4,-8]],[[52239,47890,0],[5,-9]],[[52244,47881,0],[6,-7],[8,-7],[7,-7]],[[52265,47860,0],[8,-6],[8,-5],[31,-20]],[[52312,47829,0],[10,-56],[55,-38],[-168,-213]],[[52209,47522,0],[-40,-61],[-91,-121]],[[52078,47340,0],[-35,-51],[-24,-30],[-23,-26],[-13,-46]],[[51983,47187,0],[-108,-190],[-20,-19],[-86,-140]],[[51769,46838,0],[-57,-71]],[[51712,46767,0],[-30,-25],[-46,-41]],[[51636,46701,0],[-47,17],[-47,17]],[[51542,46735,0],[-47,16],[-212,54],[-40,6],[-100,1],[-329,6]],[[50814,46818,0],[-303,18],[-79,-5]],[[50432,46831,0],[-265,-39],[-36,59]],[[50131,46851,0],[-125,-7]],[[50006,46844,0],[175,499],[24,67],[49,138]],[[50254,47548,0],[147,295],[17,34]],[[50418,47877,0],[187,-42],[122,224]],[[50727,48059,0],[87,158],[13,23],[-59,458]],[[50768,48698,0],[-4,89],[-2,44],[49,131],[-190,310],[-75,110],[-71,102]],[[50475,49484,0],[-19,225]],[[50456,49709,0],[-1,12],[-9,104]],[[50446,49825,0],[-14,30],[17,117],[-19,20],[-19,45]],[[50411,50037,0],[-98,77]],[[50313,50114,0],[-17,19],[-19,22]],[[50277,50155,0],[-15,29],[-25,18],[-20,15],[-41,61],[-6,7],[-8,12],[-7,11],[-9,12],[-10,14],[-27,25],[8,2],[180,14]],[[50297,50375,0],[27,1],[31,0]],[[50355,50376,0],[54,-8]],[[50409,50368,0],[48,-9],[755,-139]],[[51212,50220,0],[262,-52],[10,-3],[9,-2],[10,-3],[9,-3],[10,-2],[9,-3],[9,-4],[10,-2],[9,-3],[10,-5],[8,-2],[10,-4],[9,-4],[9,-3],[9,-4],[9,-4],[9,-4],[9,-4],[9,-4],[9,-4],[8,-5],[9,-4],[9,-5],[9,-4],[8,-5],[8,-4],[9,-5],[8,-6],[9,-4],[8,-5],[8,-5],[8,-5],[9,-7],[7,-5],[9,-5],[7,-6],[294,-220],[9,-6],[8,-4],[10,-2],[9,-3],[10,-1],[10,0],[14,0],[10,1],[10,3],[13,-52]],[[50727,48059,0],[-122,-225],[-187,43]],[[50418,47877,0],[-164,-329]],[[50254,47548,0],[-73,-206],[-175,-498]],[[50006,46844,0],[-213,14],[-71,1],[-92,20],[-269,25],[-186,-12],[-496,22]],[[48679,46914,0],[-92,5]],[[48587,46919,0],[-136,112]],[[48451,47031,0],[-447,116]],[[48004,47147,0],[-224,160],[-98,156],[61,28],[16,19],[0,23],[-7,28],[-15,36],[3,15],[19,40],[5,51],[59,2],[1,95],[1,68],[2,93],[26,94],[15,53],[-110,71],[6,7],[-6,7],[-26,26],[-46,44],[-23,22],[-10,9],[-38,37],[245,213],[109,119],[57,71]],[[48026,48734,0],[54,64],[371,465],[157,199],[65,73],[77,82],[78,84],[190,160],[89,59],[245,148],[191,112],[145,82],[2,1],[1,0],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[2,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[50114,50364,0],[22,-31],[19,-26],[7,-11],[14,-19],[41,-61],[45,-33],[15,-28]],[[50277,50155,0],[36,-41]],[[50411,50037,0],[19,-46],[20,-19],[-18,-118],[14,-29]],[[50446,49825,0],[10,-116]],[[50475,49484,0],[146,-213],[190,-310],[-48,-130],[5,-133]],[[50768,48698,0],[60,-458],[-101,-181]],[[58814,45970,0],[2,-11],[3,-12]],[[58819,45947,0],[6,-13]],[[58778,45877,0],[-48,-66],[-66,-89]],[[58586,45493,0],[-8,0],[-14,1]],[[57831,45368,0],[-13,-43]],[[57818,45325,0],[-39,9]],[[57779,45334,0],[-127,56],[-62,27]],[[57590,45417,0],[-79,41],[-90,28],[-94,14]],[[57327,45500,0],[-11,3],[-39,7]],[[57277,45510,0],[-42,9]],[[57235,45519,0],[-76,22],[-11,2]],[[57148,45543,0],[-86,26],[-86,24],[-89,26],[-90,12],[-88,21],[-71,29],[-82,31],[-29,12],[-48,17],[-32,10],[-41,12]],[[56406,45763,0],[-108,7],[-7,0]],[[56291,45770,0],[-52,-1],[-47,-1],[-17,0]],[[56175,45768,0],[-26,-1],[-87,-1],[-85,14],[-43,11]],[[55949,45829,0],[3,10]],[[56473,46458,0],[-31,168]],[[56431,46682,0],[-11,54]],[[56435,46999,0],[121,-42],[-121,42]],[[56627,47267,0],[6,7]],[[56715,47353,0],[40,27]],[[56790,47414,0],[25,3],[3,2]],[[56853,47430,0],[70,-61],[49,-41],[23,-16]],[[56995,47312,0],[19,-16],[26,-20]],[[57040,47276,0],[190,-110],[43,-26],[164,-95],[60,-31],[123,-57],[51,-22],[154,-65],[70,-28],[43,-12],[65,-12],[40,-7],[197,-36],[68,-12],[306,-56],[45,-22],[82,-45],[25,-23],[10,-19],[33,-84],[7,-21],[3,-27],[5,-96],[3,-44],[-13,-356]],[[57386,49303,0],[21,-123],[4,-24],[16,-26],[23,-83],[134,-149]],[[57584,48898,0],[26,-32]],[[57675,48833,0],[95,6]],[[57770,48839,0],[193,21],[382,106],[47,8]],[[58440,48965,0],[79,16],[105,4],[126,3]],[[58750,48988,0],[57,-28]],[[58890,48935,0],[65,-28]],[[58955,48907,0],[192,-20]],[[59147,48887,0],[108,-4]],[[59255,48883,0],[111,-5],[94,11],[69,15],[36,-6],[39,-6]],[[59604,48892,0],[27,-62],[9,-23]],[[59640,48807,0],[0,-14],[4,-10]],[[59644,48783,0],[8,-4],[0,-14],[-1,-12],[1,-20],[8,-3],[0,-46],[-4,-38],[-8,-17],[12,-67],[-19,-37],[13,-26],[-12,-18],[26,-21],[19,-34],[4,-13],[6,-10],[-8,-46],[-15,-50],[5,-15],[7,-13],[11,-12],[4,-34],[4,-42],[5,-7],[15,-15],[24,-13],[7,-8],[26,-11],[29,-24],[37,-21],[20,1],[2,-23],[-3,-42],[-13,-60],[1,-16],[-6,-19],[2,-13],[13,-10],[-16,-36],[-13,-13],[1,-30],[6,-55],[12,-18],[13,-26],[9,-36],[22,-22],[8,8],[24,-36],[9,-15],[11,-14],[5,-22],[14,-22],[23,-21],[14,-7],[15,-18],[12,-20],[10,-33]],[[60043,47474,0],[-13,-19],[-13,-18],[-39,-24],[-45,-1],[-42,0],[-13,2],[-18,15],[-39,-18],[-5,-3],[-37,-17],[-17,-9],[-273,163],[-56,33],[-3,-35],[14,-7],[21,-32],[0,-17],[25,-11],[17,-19],[17,-23],[1,-7],[14,-7],[30,-36],[8,-19],[-11,-27],[13,-25],[-98,-80],[18,-58],[-5,-96],[2,-17],[35,-81],[17,-93],[-38,-11],[-55,-17],[4,-36],[-53,-25],[-5,-3],[-42,-15],[-6,-2],[-63,-38],[-78,-45]],[[59212,46696,0],[-65,-12],[-52,-3]],[[59095,46681,0],[3,-108],[10,-127],[1,-93],[7,-70],[-12,-2]],[[59104,46281,0],[-84,-68]],[[59020,46213,0],[-26,-33],[-7,-8]],[[58987,46172,0],[-14,-26],[-23,-40]],[[58950,46106,0],[-4,-11],[-1,-4]],[[58945,46091,0],[-2,-16],[-15,-11]],[[58928,46064,0],[-53,-87]],[[58875,45977,0],[-4,-6],[-46,-37]],[[58819,45947,0],[-5,23]],[[57040,47276,0],[-45,36]],[[61475,49066,0],[-74,-93]],[[61401,48973,0],[-41,-59],[-44,-68],[-35,-58],[77,80],[83,50]],[[61441,48918,0],[98,54]],[[61539,48972,0],[99,42]],[[61638,49014,0],[37,6],[131,92]],[[61806,49112,0],[21,-24]],[[61827,49088,0],[135,90]],[[61962,49178,0],[96,78]],[[62058,49256,0],[52,-60]],[[62110,49196,0],[-65,-36],[-93,-48],[-125,-102]],[[61827,49010,0],[0,-26],[58,-52],[80,72],[51,-51],[21,-25],[11,-22],[63,38]],[[62111,48944,0],[-17,-23],[-198,-263]],[[61896,48658,0],[-130,-171],[-176,-441]],[[61590,48046,0],[-8,-77],[-30,-316],[-15,-154]],[[61537,47499,0],[-66,-554],[23,-246]],[[61494,46699,0],[23,-294],[2,-18]],[[61519,46387,0],[1,-10]],[[61520,46377,0],[-74,54],[-2,1],[-2,2],[-9,5],[-30,87],[-45,115],[-47,118],[-61,187],[-31,87],[-26,108]],[[61193,47141,0],[39,6]],[[61232,47147,0],[-15,97],[-7,44],[-3,26],[-30,-6],[-20,-3],[-88,-17],[-7,12],[-65,7],[-98,-28],[-51,-13],[-45,130],[-71,-21],[1,-5],[-22,-3],[-26,-5],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-12],[-20,-3],[-27,-3],[-20,-3],[-14,-3],[-5,-1],[-3,-1],[-4,-1],[-4,-1],[-4,-1],[-4,-1],[-4,-1],[-3,-2],[-4,-1],[-4,-1],[-4,15],[-21,-4],[-27,93],[-21,-6],[-89,-25],[-28,6],[7,11],[2,7],[-1,9],[0,8],[-3,8],[-7,11],[-2,14],[-2,11],[-2,9],[-24,27],[-8,62],[-169,1],[-54,1],[-74,2],[-1,-48],[1,-19],[8,-41]],[[59644,48783,0],[-3,9],[-1,15]],[[59604,48892,0],[7,24]],[[59611,48916,0],[177,43],[204,86],[56,34]],[[60048,49079,0],[77,56]],[[60125,49135,0],[68,52],[88,76],[60,56]],[[60344,49334,0],[32,30],[23,19]],[[60399,49383,0],[41,19]],[[60440,49402,0],[8,11],[32,15],[87,56]],[[60567,49484,0],[4,17]],[[60571,49501,0],[19,2]],[[60590,49503,0],[59,53]],[[61164,49951,0],[62,-78]],[[61226,49873,0],[23,7]],[[61249,49880,0],[53,12]],[[61302,49892,0],[11,8],[42,-9],[17,-16],[-36,-69],[-5,-46],[19,-13],[28,-21]],[[61378,49726,0],[138,83]],[[61516,49809,0],[198,111],[115,65]],[[61829,49985,0],[28,14]],[[61857,49999,0],[-7,-3],[-6,-5]],[[61844,49991,0],[-6,-6],[-4,-6],[-4,-6],[-3,-8],[-1,-7],[0,-8],[1,-7],[2,-7],[4,-14],[2,-14],[1,-14],[0,-13],[-1,-14],[-2,-14],[-3,-14],[-4,-13],[-5,-13],[-7,-13],[-5,-10],[-7,-9],[-6,-9],[-8,-9],[-8,-8],[-8,-8],[-9,-7],[-9,-7],[-10,-6],[-11,-6],[-155,-73],[-14,-6],[-13,-6],[-54,-28],[-11,-5],[-13,-7],[-12,-7],[-13,-7],[-11,-6],[-1,0],[-10,-6],[-10,-6],[-1,-1],[-11,-6],[29,-41],[-72,-44],[8,-10],[-2,-2],[9,-14],[-51,-30],[23,-36],[-55,-35],[41,-63],[4,3],[2,1],[1,0],[1,1],[2,1],[3,2],[1,0],[1,0],[5,3],[1,0],[0,1],[1,0],[3,1],[3,2],[1,0],[2,1],[5,1],[0,1],[1,0],[4,2],[3,0],[1,1],[2,0],[5,2],[9,3],[9,1],[8,1],[9,2],[9,1],[8,0],[9,0],[9,0],[8,0],[9,-1],[3,0],[3,-1],[1,0],[4,-1],[1,0],[1,0],[1,0],[4,-1],[1,0],[2,-1],[4,0],[3,-2],[3,0],[1,0],[3,-1],[2,-1],[3,-1],[3,-1],[2,-1],[3,-1],[1,-1],[1,0],[2,-1],[2,-1],[1,0],[3,-1],[2,-1],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[2,-1],[1,0],[2,0],[1,-1],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[3,0],[4,0],[4,0],[2,0],[2,1],[1,0],[2,0],[4,1],[4,2],[2,0],[1,1],[3,1],[3,2],[3,1],[2,3],[3,1],[2,2],[3,2],[2,2],[3,2],[2,3],[8,8],[49,-45],[-60,-66],[-133,-144]],[[61232,47147,0],[-27,-4],[-12,-2]],[[61520,46377,0],[52,-348],[16,-106]],[[61588,45923,0],[11,-80]],[[61599,45843,0],[11,-82],[57,-431]],[[61667,45330,0],[6,-44],[1,-10]],[[61674,45276,0],[9,-85],[0,-4],[0,-76],[-10,-60],[6,-37],[-3,-67]],[[61676,44947,0],[-16,-261],[-1,-10],[-2,-33]],[[61657,44643,0],[-31,-12]],[[61626,44631,0],[-1,-13],[-1,-26]],[[61624,44592,0],[-8,-166],[-2,-70],[-29,-29],[-1,-1]],[[61584,44326,0],[-15,-16],[-20,-21]],[[61549,44289,0],[-1,-2],[-25,-65],[-21,-54],[-8,-21]],[[61494,44147,0],[-9,4]],[[60001,45702,0],[-13,19]],[[58875,45977,0],[12,19],[41,68]],[[58945,46091,0],[5,15]],[[58950,46106,0],[37,66]],[[58987,46172,0],[33,41]],[[59020,46213,0],[34,28],[50,40]],[[59095,46681,0],[51,3],[66,12]],[[63736,45919,0],[-14,5],[-13,6],[-199,78],[-287,111],[-105,42],[-125,48],[-78,216],[-15,0],[-83,-7],[-15,-3],[-272,-26],[-14,-1],[-36,-5],[65,-298],[50,-210],[5,-23],[-3,-166],[18,-63],[-30,4],[-19,3],[-9,1],[-8,3],[-54,9],[-44,15],[-20,3],[0,6],[2,6],[-31,17],[-23,14],[-28,3],[-23,-5],[-21,-3],[-58,-5],[-4,-3]],[[62245,45691,0],[-29,-3],[-5,0]],[[62211,45688,0],[-19,3],[-158,42],[-435,110]],[[61588,45923,0],[-69,464]],[[61519,46387,0],[-25,312]],[[61537,47499,0],[53,547]],[[61896,48658,0],[215,286]],[[62111,48944,0],[95,68],[59,17],[48,21]],[[62313,49050,0],[75,14]],[[62388,49064,0],[69,0],[65,-9],[50,-8],[43,-8],[61,-12],[112,-14],[79,-26],[84,-105],[14,-52],[69,-76],[71,-81],[195,-165],[203,-137],[58,-46],[100,-82],[131,-179],[25,-35],[78,-162],[27,-99],[26,-133],[-1,-95],[50,-230],[27,-173],[84,-138]],[[64108,46999,0],[-17,-24],[-26,-133],[-56,-73],[-10,-11],[-32,-38],[-33,-38],[-13,-17],[-61,-73],[-33,-40],[-38,-45],[-12,-18],[-16,-34],[-6,-5],[-6,-7],[-33,-34],[-18,-17],[-49,34],[-18,0],[-5,-14],[-9,-24],[4,-6],[20,-91],[10,-29],[-8,-21],[-6,-20],[1,-32],[-12,-10],[-9,-5],[-6,-5],[41,-92],[74,-74],[49,-12],[-4,-28],[-35,-44]],[[64017,45482,0],[40,3]],[[64057,45485,0],[47,7],[51,11],[36,9],[42,14],[35,12],[26,11],[36,18],[31,17],[31,19],[27,16],[29,21],[34,28],[26,22],[54,52]],[[64562,45742,0],[66,-75]],[[64628,45667,0],[146,-192]],[[64774,45475,0],[83,-62]],[[64857,45413,0],[44,-61]],[[64636,45187,0],[-16,-20],[-8,-10]],[[64473,44919,0],[-16,-28],[-4,-5]],[[64728,44712,0],[15,0],[28,0]],[[64897,44524,0],[-6,-18]],[[64719,44296,0],[-67,-52],[-18,-12]],[[64388,44136,0],[-39,-9]],[[64243,44120,0],[-48,-1]],[[63963,44180,0],[-7,-19]],[[63850,44055,0],[-29,-11],[-3,-1],[-150,-57],[-12,-4]],[[63254,44302,0],[-72,-74],[-5,-5]],[[63150,44195,0],[15,-15]],[[63279,43814,0],[-15,-46]],[[63137,43439,0],[-13,-23],[-12,-24]],[[63110,43374,0],[-1,-5]],[[61551,44120,0],[-57,27]],[[61549,44289,0],[35,37]],[[61624,44592,0],[2,39]],[[61657,44643,0],[19,304]],[[61674,45276,0],[-7,54]],[[61667,45330,0],[-68,513]],[[62211,45688,0],[34,3]],[[63736,45919,0],[39,-15],[124,-49],[0,-32],[-2,-28],[-52,2],[-30,1],[18,-32],[43,-75],[-1,-3],[9,-32],[-64,-57],[16,-42],[2,-19],[-4,-18],[-6,-14],[-15,-14],[0,-12],[133,1],[22,0],[36,1],[13,0]],[[66611,47284,0],[77,-158]],[[66749,46214,0],[-10,-13],[-7,-10],[-22,-36]],[[66527,45786,0],[-13,-25]],[[66468,45690,0],[-1,0],[-1,-1]],[[66459,45679,0],[-1,-1],[-1,-1]],[[66456,45675,0],[-1,0],[-1,-1]],[[66388,45606,0],[-10,-8]],[[66377,45596,0],[-10,-8]],[[66367,45588,0],[-22,-16]],[[66345,45572,0],[-2,-1]],[[66342,45571,0],[-6,-5]],[[66336,45566,0],[-8,-5]],[[66327,45561,0],[-2,-3]],[[66325,45558,0],[-7,-4]],[[66317,45554,0],[-5,-4]],[[66310,45549,0],[-2,-1]],[[66308,45548,0],[-3,-2]],[[66305,45546,0],[-2,-1]],[[66262,45523,0],[-1,-1],[-1,0]],[[66234,45512,0],[-1,-1],[-1,0]],[[66019,45491,0],[-1,0],[-1,0]],[[65941,45507,0],[-12,5]],[[65524,45250,0],[0,-2],[0,-1]],[[65163,45347,0],[-1,0],[-1,0]],[[64901,45352,0],[-36,50],[-8,11]],[[64857,45413,0],[-17,13],[-19,14],[-47,35]],[[64628,45667,0],[-7,9],[-59,66]],[[64057,45485,0],[-40,-2],[0,-1]],[[64108,46999,0],[24,5]],[[64132,47004,0],[157,29],[192,18],[152,15],[134,-10],[38,-4],[116,-8],[91,-8],[50,3],[148,10],[28,1],[134,6],[16,2],[50,14],[29,28],[10,17],[22,45],[11,43]],[[65510,47205,0],[63,22],[37,8],[12,3],[43,1],[17,0]],[[65682,47239,0],[84,-4]],[[65766,47235,0],[45,-4]],[[65811,47231,0],[13,-1]],[[65824,47230,0],[42,-4]],[[65866,47226,0],[12,-1]],[[65878,47225,0],[16,-1]],[[65894,47224,0],[53,-1]],[[65947,47223,0],[122,-2]],[[66069,47221,0],[16,0]],[[66085,47221,0],[120,-2]],[[66205,47219,0],[167,-5]],[[66372,47214,0],[41,11]],[[66413,47225,0],[198,59]],[[63254,50119,0],[324,-325],[195,-204],[59,-74],[1,-1],[30,-41],[17,-23]],[[63880,49451,0],[142,-182]],[[64022,49269,0],[160,-198],[96,-125],[16,-29],[63,-104],[40,-90],[99,-208]],[[64496,48515,0],[-6,-2],[-126,-45],[1,-45]],[[64365,48423,0],[84,-267],[9,-28],[89,-111],[18,-43],[5,-13],[-6,-19],[-3,-11],[-16,-68]],[[64545,47863,0],[-13,-129],[-9,-15],[-40,-63]],[[64483,47656,0],[-23,-37],[-41,-64]],[[64419,47555,0],[-11,-16],[-71,-96],[-62,-85]],[[64275,47358,0],[-56,-77],[-6,-16],[-60,-190]],[[64153,47075,0],[-21,-71]],[[62388,49064,0],[-64,-10],[-11,-4]],[[61827,49010,0],[-22,30],[8,10],[-32,34],[31,52],[88,78],[65,71],[59,60],[59,38],[-17,9],[-16,14],[-9,-5],[-22,19],[-11,5],[-71,64],[-23,27],[-43,37],[-11,16],[-138,117],[-80,-72],[-97,-66],[-72,89],[-40,43],[-55,46]],[[61263,49983,0],[49,6],[79,36]],[[61578,50092,0],[195,260],[110,212],[63,218],[29,106]],[[61975,50888,0],[61,-1],[26,-2],[61,-17],[20,-6],[22,-2],[48,-7],[22,-6],[24,-6],[35,-29],[28,-26],[32,50],[19,7],[12,10],[30,-22],[7,-17],[16,-86],[23,-12],[22,-23],[58,-24],[55,-44],[63,-51],[0,-2],[30,-11],[237,-233],[248,-157],[12,-7],[55,-34],[13,-11]],[[64641,51628,0],[21,-16]],[[64662,51612,0],[99,-72],[29,-14],[13,-6],[11,-9],[16,-10]],[[64830,51501,0],[26,-5]],[[64856,51496,0],[41,-37],[8,-15],[40,-21],[61,-9],[135,-91],[43,-36],[13,-18],[19,-8],[21,-29],[17,-11],[31,2],[38,-26],[7,-19],[31,-13],[20,-16],[14,-5],[28,-26],[26,-6],[43,-50]],[[65492,51062,0],[12,-11]],[[65504,51051,0],[-112,-31],[-19,-6]],[[65373,51014,0],[-314,-141]],[[65059,50873,0],[-413,-137],[-39,-58],[-48,-26],[7,-9],[-57,-20],[-23,-3],[-17,-12],[-47,-1]],[[64422,50607,0],[-26,13],[-80,-2],[-204,-12],[-219,-15]],[[63893,50591,0],[-82,-4],[-47,-1]],[[63764,50586,0],[-184,-12],[1,-9],[18,-265],[-35,-23],[-29,-12],[-20,3],[-19,-13],[-25,26],[-12,-1],[-44,-6],[-16,11],[1,-15],[-32,-30],[-45,-52],[-30,-27],[-39,-42]],[[61975,50888,0],[18,67],[-1,105],[6,72],[3,31],[10,42],[9,39]],[[62020,51244,0],[5,33],[2,11],[81,137],[12,17],[134,181],[34,44]],[[62288,51667,0],[113,240],[11,25]],[[62412,51932,0],[0,16]],[[62409,51981,0],[40,48],[25,49],[24,48]],[[62498,52126,0],[67,119]],[[62565,52245,0],[40,67],[42,58]],[[62647,52370,0],[82,94],[42,71]],[[62771,52535,0],[27,46],[12,19],[24,30]],[[62834,52630,0],[118,102],[116,116]],[[63068,52848,0],[183,134],[148,60]],[[63399,53042,0],[23,-68],[28,-70],[43,-50],[65,-67],[16,-28],[31,-41],[46,-32],[7,-17],[-2,-17],[-22,-20],[29,-21],[34,-38],[37,-27],[12,-18],[47,-41],[37,-33],[49,-32],[10,-13],[303,-435],[9,-6],[67,-66],[30,-25],[13,-20]],[[64311,51857,0],[31,-26]],[[64342,51831,0],[71,-59],[78,-57],[45,-20],[16,-11],[13,-32],[50,-29],[14,1],[12,4]],[[65685,50624,0],[-1,-3],[-4,-14],[-11,-30]],[[65669,50577,0],[5,-3],[19,-14],[99,-69],[76,-52],[104,-75],[68,-47],[134,-85],[113,-63],[126,-69],[160,-82],[175,-80],[45,-19],[117,-52],[59,-25]],[[66969,49842,0],[-120,-227]],[[66849,49615,0],[-344,179],[-102,54]],[[66403,49848,0],[-29,-4]],[[66374,49844,0],[-137,-47],[-154,-53],[33,-46],[-51,1],[-124,-10],[-54,-10]],[[65887,49679,0],[-107,-38]],[[65780,49641,0],[-91,-38]],[[65689,49603,0],[-152,-76]],[[65537,49527,0],[-46,-27],[-98,-69],[-68,-65]],[[65325,49366,0],[-16,-12]],[[65309,49354,0],[-76,-91]],[[65233,49263,0],[-22,-38]],[[65211,49225,0],[-19,-49],[-13,-46],[-14,-50],[120,-103],[-45,-117]],[[65240,48860,0],[-22,-100]],[[65218,48760,0],[-16,-98]],[[65202,48662,0],[-27,-176]],[[65175,48486,0],[34,-114]],[[65209,48372,0],[-39,35],[-93,80],[-262,91]],[[64815,48578,0],[-204,-35]],[[64611,48543,0],[-13,-3],[-88,-21],[-14,-4]],[[64022,49269,0],[-141,182],[-1,0]],[[63764,50586,0],[129,5]],[[64422,50607,0],[-31,-8],[8,-141],[16,-286],[3,-62],[-3,62],[-16,286],[-8,141],[31,8]],[[65059,50873,0],[237,106],[77,35]],[[65373,51014,0],[131,37]],[[65504,51051,0],[33,-15],[208,-101]],[[65745,50935,0],[12,-5]],[[65757,50930,0],[43,68]],[[65800,50998,0],[56,87]],[[65856,51085,0],[59,-28],[55,-25]],[[65970,51032,0],[-32,-57],[-23,-30],[-44,-49],[-178,-186],[-9,-31],[1,-55]],[[69379,49635,0],[378,-137],[2,-1]],[[69759,49497,0],[53,-30],[76,43],[112,6],[52,1],[12,-32],[3,-9],[-61,-17],[-61,-20],[-49,-19],[39,-23],[94,22],[68,19],[21,4],[13,-1],[186,-5],[19,-2],[-28,-158],[-5,-23],[4,-1]],[[70297,49225,0],[-2,0],[-52,10]],[[70243,49235,0],[-33,1],[-44,1]],[[69878,48814,0],[-1,-3],[-4,-18]],[[69873,48793,0],[-19,-64],[-13,-43]],[[69841,48686,0],[-8,-28],[-14,-45]],[[69877,48031,0],[0,-4],[0,-3]],[[69949,47740,0],[1,0],[6,0]],[[69956,47740,0],[44,-59],[6,-9]],[[69979,47572,0],[-1,-2],[-1,-3]],[[69855,47108,0],[0,1],[-2,2]],[[68938,47433,0],[-26,-36]],[[68863,47346,0],[-37,-26],[-9,-5]],[[68549,47163,0],[-46,-43]],[[68000,47186,0],[7,135],[-6,58],[-2,10],[-4,41],[-4,45],[-21,15],[-6,4],[-6,4],[-126,88],[-78,73],[-61,56]],[[67693,47715,0],[-120,112]],[[67573,47827,0],[-109,101],[-114,106],[-12,-11],[-89,79],[-66,66]],[[67183,48168,0],[17,5],[140,23],[126,22],[13,1],[50,9],[17,2],[-31,205],[-4,23],[-47,288],[-5,29],[-16,92]],[[67443,48867,0],[-2,23]],[[67441,48890,0],[64,-44],[63,-51],[60,-57],[52,-59],[49,-63],[24,-47],[21,-38],[33,-46],[32,-49],[36,-46],[41,-44],[24,-21],[21,-21],[154,129],[-18,29],[-51,133],[-3,4]],[[68043,48599,0],[-75,196]],[[67968,48795,0],[-28,75],[-84,211],[-97,54],[-238,128],[-165,90],[-4,2]],[[67352,49355,0],[33,96],[79,204]],[[67464,49655,0],[208,-70]],[[67672,49585,0],[60,-12]],[[67732,49573,0],[305,-66]],[[68037,49507,0],[52,-2],[37,-1]],[[68126,49504,0],[30,-4],[33,-5]],[[68189,49495,0],[47,-6]],[[68236,49489,0],[55,-7]],[[68291,49482,0],[6,11]],[[68297,49493,0],[14,-1],[19,-1]],[[68330,49491,0],[42,-4],[127,-10],[81,10],[-64,25],[-41,55],[2,55],[1,6],[3,7],[18,36],[29,25],[66,19],[22,3],[30,2],[5,7],[125,3],[44,0],[-35,-16],[-21,-13],[-10,-7],[54,-15],[10,-2],[-5,-144],[541,112],[25,-10]],[[70109,51536,0],[-16,-485],[-9,-113],[-9,-61],[-15,-87],[-35,-126],[-26,-77],[-28,-69],[-34,-61],[-92,-156],[-13,-28],[-81,-232],[-51,-153],[-16,-41],[-25,-35],[-83,-75],[-34,-40],[-52,-28],[135,17],[118,12],[126,8],[75,-1]],[[69944,49705,0],[37,0]],[[69981,49705,0],[82,-4],[56,0],[80,-6],[87,-8],[82,-11],[103,-24],[117,-33],[72,-25],[42,-19],[86,-38],[115,-64],[59,-37],[125,-77]],[[71087,49359,0],[89,-74]],[[71176,49285,0],[103,-99]],[[71223,49165,0],[-104,-39]],[[71119,49126,0],[15,-14]],[[71117,49104,0],[-22,-14]],[[70600,49139,0],[-10,6],[-224,104]],[[70315,49274,0],[-8,-22]],[[69759,49497,0],[-15,6],[-103,37],[-262,95]],[[68330,49491,0],[-33,2]],[[68297,49493,0],[66,138],[36,86],[-155,-24],[-168,-17],[-149,-5],[-39,71],[-173,336],[-19,37]],[[67696,50115,0],[-8,16]],[[67688,50131,0],[-112,209],[-74,140],[166,79],[-65,88]],[[67603,50647,0],[-57,80]],[[67546,50727,0],[-53,25],[-274,139],[-69,36]],[[67150,50927,0],[119,213],[38,70]],[[67307,51210,0],[215,-107],[231,-114]],[[67753,50989,0],[29,-14],[20,-7],[54,5],[41,14],[201,131],[161,116],[10,44],[-8,27],[77,47]],[[68338,51352,0],[14,-9],[26,0],[20,4],[24,10],[150,145],[72,63],[28,25],[50,31],[35,17],[36,14],[28,-25],[20,11],[103,46],[51,-43],[22,-44],[-34,0],[-43,-4],[-33,-1],[-28,-10],[-9,-3],[63,-61],[2,-4],[118,-214],[168,47],[160,48],[14,-13],[5,-15],[97,23],[-17,34],[-9,33],[6,37],[23,36],[20,28],[17,32],[13,39],[1,33],[-1,42],[-5,29],[410,29],[16,-81],[3,-51],[6,-70],[6,-54],[123,30]],[[67529,51707,0],[19,-9]],[[67548,51698,0],[24,81]],[[67572,51779,0],[85,-39]],[[67657,51740,0],[366,-170]],[[68023,51570,0],[153,-71],[29,-13]],[[68205,51486,0],[58,-33],[48,-48],[27,-53]],[[67753,50989,0],[-29,17],[-417,204]],[[67150,50927,0],[-2,-4],[-553,254],[-309,144]],[[66286,51321,0],[119,222]],[[66405,51543,0],[42,79]],[[66447,51622,0],[-130,62]],[[66317,51684,0],[-31,16]],[[66286,51700,0],[-35,31]],[[66251,51731,0],[-48,53],[-23,47],[-14,60]],[[66166,51891,0],[-1,58]],[[66165,51949,0],[13,56],[21,44]],[[66199,52049,0],[52,62]],[[66251,52111,0],[79,51],[60,16]],[[66390,52178,0],[95,4]],[[66485,52182,0],[91,-22]],[[66576,52160,0],[573,-273]],[[67149,51887,0],[103,-49]],[[67252,51838,0],[277,-131]],[[67631,53789,0],[12,-5],[11,-14]],[[67654,53770,0],[1,-1],[54,-29]],[[67709,53740,0],[13,-7]],[[67722,53733,0],[93,-75],[11,-9],[57,3],[26,-6],[20,-19],[11,-9],[61,-47],[16,-9],[51,-23],[22,-4],[21,-9],[105,-15],[8,0],[56,12],[15,-4],[17,-1],[122,23],[57,-2],[75,-8],[9,4],[62,0],[50,0],[34,2],[26,-6],[22,2],[20,-11],[34,2],[47,-12],[86,-5],[69,-14],[8,0],[19,6],[36,-19],[57,-7],[162,-77],[40,-11],[177,-48],[29,-8],[14,-4],[61,-12],[20,-3],[9,52],[17,-2],[17,-4],[24,-15],[2,-16],[62,-35],[18,-16],[18,-28],[37,-45],[15,-14],[45,-26],[29,-26],[106,-66],[21,-23],[19,-5],[40,-23],[40,-13],[27,-5],[118,-40],[67,10]],[[70379,52970,0],[-44,-53]],[[70335,52917,0],[-33,-191],[-77,-28],[-66,-35],[-56,-32],[-156,-78],[-110,-39],[-32,-12],[-181,-54],[175,-47]],[[69799,52401,0],[18,-5],[38,-11]],[[69855,52385,0],[172,-67],[25,-16],[17,-20],[86,-150],[-17,-81],[-10,-80],[-2,-68],[2,-363],[-19,-4]],[[68205,51486,0],[-182,84]],[[67657,51740,0],[200,430]],[[67857,52170,0],[247,-86],[94,-23],[3,89],[10,340],[31,-15],[119,-30],[58,-6],[51,2],[1,121],[1,27],[11,448],[-32,86],[-158,-17],[-122,12],[-132,31],[-105,43],[-89,53],[-30,3],[-111,43],[-85,23],[-101,34],[-73,17],[-30,8],[-101,15],[-147,35],[-79,13]],[[67088,53436,0],[-13,3],[-169,30]],[[66906,53469,0],[-142,-1],[-81,-21],[-77,37],[-50,-45],[-118,-103]],[[66438,53336,0],[-21,-14],[-74,-47]],[[66343,53275,0],[-11,59],[-37,111],[0,2],[-14,132],[-34,66]],[[66247,53645,0],[-31,50],[-22,43],[-46,76],[-13,89],[-6,17],[-23,69],[-29,60],[-8,18],[-29,94],[-8,14],[-20,12],[15,7],[-87,25],[-5,32],[2,39],[-22,47],[-1,44],[3,12],[-9,14],[28,58],[39,0],[17,2],[22,11],[17,4],[42,-7],[13,-15],[26,-7],[18,-12],[33,-3],[2,-13],[40,-11],[37,1],[63,-7],[66,-12],[20,-5],[136,-69],[9,-8],[20,-13],[7,-8],[6,-3],[49,-47],[18,-22],[88,-73],[7,-5],[4,-1],[133,-51],[13,-10],[-4,-5],[49,-20],[121,-41],[109,-2],[66,-30],[37,-13],[40,0],[15,-6],[9,0],[61,-31],[30,-7],[31,-23],[20,-19],[0,-26],[4,-3],[98,-46],[27,-1],[37,-19]],[[72940,52530,0],[-10,-17],[-130,-226]],[[72800,52287,0],[-7,-52],[-19,-132]],[[72774,52103,0],[91,-261],[-37,-183],[13,-8],[35,-42],[103,-117],[10,-28],[55,-138],[48,-167],[2,-20]],[[73094,51139,0],[24,-159]],[[73118,50980,0],[2,-203]],[[73120,50777,0],[-1,-54],[-1,-41],[9,-507],[0,-19],[0,-70],[6,-21]],[[73133,50065,0],[17,-66]],[[73150,49999,0],[15,-61],[7,-19],[7,-29],[37,-149]],[[73216,49741,0],[8,-30],[11,-40]],[[73235,49671,0],[9,-43]],[[73106,49585,0],[-55,-30]],[[72880,49474,0],[-87,2]],[[72072,49281,0],[-52,-9]],[[72020,49272,0],[-7,38]],[[72013,49310,0],[-81,-40]],[[71932,49270,0],[-33,-17]],[[71899,49253,0],[-19,130],[-9,58]],[[71871,49441,0],[26,15],[-14,84]],[[71883,49540,0],[-2,13],[-1,11]],[[71880,49564,0],[-7,38],[-4,39],[0,29],[133,10],[4,38],[5,21],[5,12],[11,30],[-89,57],[-148,94],[-16,7],[-35,35],[-110,-80],[17,23],[4,12],[-2,16],[-4,10],[-5,13],[-20,22],[-103,48],[-14,7],[-31,23],[-25,29],[-20,25],[-146,-111]],[[71280,50011,0],[-127,154]],[[71153,50165,0],[-38,56],[-1,8],[-118,143],[-108,132],[-39,48],[-63,133],[-16,33]],[[70770,50718,0],[-14,58],[-15,61]],[[70741,50837,0],[-8,35]],[[70733,50872,0],[-2,126],[1,46]],[[70732,51044,0],[19,143],[10,43],[6,24],[10,41],[39,95],[-89,31],[-169,59],[59,150]],[[70617,51630,0],[131,333],[1,3]],[[70749,51966,0],[151,124],[17,11],[26,13],[167,79]],[[71110,52193,0],[217,101]],[[71327,52294,0],[140,35],[90,24],[22,-99],[11,-56],[56,1],[-2,37]],[[71644,52236,0],[-25,388]],[[71619,52624,0],[-131,13],[-86,48],[-68,81],[96,46],[17,14]],[[71447,52826,0],[58,4]],[[71505,52830,0],[41,-2],[39,4],[17,5],[45,-15],[7,-19],[80,14],[27,7],[27,-1],[76,7],[7,0],[9,-1],[47,-12],[6,-1],[11,1],[43,-17],[35,-8],[12,-2],[6,6],[6,6],[7,-5],[47,-9],[29,2],[25,12],[94,-11],[16,-4],[17,-4],[38,-16],[24,-10],[34,-19],[18,-17],[29,-16],[6,-3],[30,-23],[32,-19],[21,-41],[14,-11],[18,-7],[117,-42],[19,-4],[18,-2],[12,-3],[65,-10],[164,-10]],[[75982,51855,0],[62,-109],[37,-67],[21,-98],[66,-14],[146,-253],[12,-21],[18,-34]],[[76344,51259,0],[-36,11],[-22,7],[-26,-236]],[[76260,51041,0],[-8,-68]],[[76252,50973,0],[-24,-210],[49,-55],[-45,-26]],[[76232,50682,0],[-55,-30]],[[76177,50652,0],[-39,-22],[-36,-6]],[[76102,50624,0],[-10,-48],[-5,-19],[-3,-13]],[[76084,50544,0],[-36,-156]],[[76048,50388,0],[-13,-61]],[[76035,50327,0],[-10,-34]],[[76025,50293,0],[-32,-76],[-9,-16],[-10,-19],[-4,-8],[-18,-22],[-9,-24],[-13,-29],[-19,-44],[-14,-49]],[[75897,50006,0],[-38,-133]],[[74136,49695,0],[-4,-3]],[[74132,49692,0],[-32,60]],[[74100,49752,0],[7,4]],[[74052,49841,0],[7,3]],[[74035,49890,0],[-7,-4]],[[73878,49931,0],[-4,-1]],[[73653,49854,0],[-9,17]],[[73458,49852,0],[0,-4]],[[73467,49835,0],[4,-11]],[[73429,49757,0],[-19,-25]],[[73410,49732,0],[-84,-42]],[[73326,49690,0],[-22,-11]],[[73304,49679,0],[-13,-7]],[[73291,49672,0],[-8,-7]],[[73262,49645,0],[-17,-16]],[[73235,49671,0],[-19,70]],[[73150,49999,0],[-9,35],[-8,31]],[[73120,50777,0],[0,42],[-2,161]],[[73118,50980,0],[-9,56],[-15,103]],[[72774,52103,0],[26,184]],[[72940,52530,0],[84,-6],[145,-53],[188,17],[114,-11],[16,1],[17,1],[98,5],[142,-9],[90,2],[46,-6],[47,-16],[100,-53],[6,-4],[142,-4],[15,-1],[184,-50],[128,6],[142,-44],[87,-25],[99,-17],[4,-2],[58,-48],[94,-45],[8,-5],[34,-24],[17,-7],[61,-15],[51,-17],[71,17],[7,1],[64,4],[39,5],[48,1],[23,1],[59,-15],[74,-40],[70,-30],[22,-13],[15,-13],[19,-18],[62,-22],[96,4],[-2,-30],[21,-36],[137,-61]],[[77498,51525,0],[-2,-33],[4,-39],[6,-38],[3,-16],[8,-57]],[[77517,51342,0],[23,-69],[30,-84]],[[77570,51189,0],[23,-57],[8,-20]],[[77601,51112,0],[45,-99],[24,-61]],[[77670,50952,0],[23,-47],[7,-17],[132,62],[6,3],[152,83],[125,59]],[[78115,51095,0],[46,21]],[[78161,51116,0],[40,-23],[42,-22],[39,-18],[45,-19],[45,-17],[32,-14],[47,-15],[28,-15],[41,-18],[35,-19],[37,-23],[27,-21],[26,-24],[-70,-90],[-17,-20],[-11,-20]],[[78547,50738,0],[-16,-29],[-59,-102]],[[78472,50607,0],[34,-12],[21,-7],[21,-8],[13,-7],[20,-12],[22,-15],[10,-8],[12,-9],[10,-10],[15,-16],[14,-17],[42,-66],[49,-63],[15,-21],[33,-38],[29,-31],[42,-43],[12,-8],[14,-6],[20,-4],[25,1],[104,0],[132,-33]],[[79181,50174,0],[50,182]],[[79231,50356,0],[5,16]],[[79236,50372,0],[118,-31],[-62,-201],[18,-5],[-10,-31],[46,-67],[-33,-37],[-32,-34],[-33,-31],[-28,-24],[-27,-21],[-31,-17],[-25,-12],[-32,-15],[-60,-24],[-42,-7],[-55,-2],[-178,8],[-71,6],[-5,-68],[-80,3],[-95,6],[-121,7],[-205,15],[-363,10],[-418,21],[-223,7],[-48,4],[-66,0],[-101,-4],[-100,-8],[-73,-19],[-108,-30],[-105,-34],[-73,-28],[-111,-48],[-60,-30],[-175,-81],[-149,-68],[-164,-82],[-225,-101],[-4,0]],[[75628,49434,0],[12,14],[13,14]],[[75859,49873,0],[35,121],[3,12]],[[76025,50293,0],[4,14],[6,20]],[[76048,50388,0],[36,153],[0,3]],[[76084,50544,0],[2,8],[16,72]],[[76177,50652,0],[53,29],[2,1]],[[76252,50973,0],[8,67],[0,1]],[[76344,51259,0],[-2,51],[-1,124],[1,103],[29,4],[166,-1],[139,-1],[80,-2],[71,5],[137,-5],[142,-4],[143,-4],[108,-1],[56,-2],[85,-1]],[[79247,48459,0],[-64,1],[-90,-3],[-862,-20],[-37,43],[-59,35],[-20,18],[-45,47]],[[78070,48580,0],[-36,34],[-40,44]],[[77994,48658,0],[-46,50]],[[77948,48708,0],[-32,34]],[[77916,48742,0],[-76,60],[-21,15],[-43,25],[-48,26]],[[77665,48904,0],[-18,14],[-73,70]],[[77574,48988,0],[129,136],[2,10],[12,13],[8,1]],[[77725,49148,0],[30,24],[9,15],[8,23]],[[77770,49244,0],[38,8],[-11,47]],[[77797,49299,0],[-8,10],[-20,69],[59,81],[43,63],[96,-7],[-11,169],[-12,150],[-17,222],[17,8],[56,31],[77,76],[98,313],[-34,151],[-259,106],[-59,81],[-8,55],[-1,28],[67,32],[63,35],[33,-12],[58,-64],[107,94],[-56,54],[-27,3],[-14,12],[5,71],[30,98],[-78,36],[-14,47],[137,179],[-23,16],[-2,89],[46,170],[6,20],[59,37]],[[78211,51822,0],[22,7],[416,129],[262,85],[315,8],[-21,-65]],[[79205,51986,0],[-27,-108],[-25,-145],[2,-48],[-1,-43],[2,-61],[-32,-60],[-19,-50],[-15,-38],[-15,-41],[-33,-57],[55,-69],[13,-49],[19,-65],[40,-64],[64,-112],[77,24],[59,45],[17,14],[6,12],[38,-36],[13,-30],[89,-22],[24,-10],[31,26],[86,-11],[76,-71],[47,-70],[35,-44],[45,-38],[58,-21],[17,-23],[17,-41],[26,-27],[53,-43],[46,-19],[56,-30],[80,-34],[5,-4],[-860,-1783]],[[54446,52407,0],[200,-39],[100,-19]],[[54866,52324,0],[150,-36],[71,-8]],[[55449,52291,0],[96,5],[94,-9],[74,55]],[[56253,51488,0],[-79,-57]],[[56174,51431,0],[-66,-59],[-1,-1]],[[56107,51371,0],[-13,-18],[-12,-16]],[[56082,51337,0],[-22,-26],[-42,-47]],[[56018,51264,0],[-31,-26],[-2,-2],[-71,-66]],[[55914,51170,0],[-12,-7],[-16,-11]],[[55886,51152,0],[-6,-4],[-28,-19],[-20,4]],[[55832,51133,0],[-76,-85],[-35,-39]],[[55721,51009,0],[-7,-17],[-15,-24],[-14,-13],[-30,-28],[-9,-13],[-10,-14]],[[55636,50900,0],[-9,-13],[-10,-15]],[[55594,50835,0],[-2,2],[-70,28]],[[55522,50865,0],[-16,-6],[-17,7]],[[55489,50866,0],[-19,10],[-32,15]],[[55438,50891,0],[-29,4],[-46,-20],[-17,0],[-1,-9],[-1,-9]],[[55344,50857,0],[-27,0],[-29,1]],[[55263,50858,0],[-18,-24],[-11,-15],[-122,-173],[-65,15],[-9,2]],[[55038,50663,0],[-10,1]],[[55028,50664,0],[-5,0]],[[55023,50664,0],[-5,-1]],[[55018,50663,0],[-5,-1]],[[55013,50662,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1]],[[55007,50660,0],[-2,-1]],[[55005,50659,0],[-1,0],[-2,-1]],[[55002,50658,0],[-1,0],[-2,-1],[-3,-2]],[[54996,50655,0],[-5,-3],[-7,-7]],[[54984,50645,0],[-6,-6]],[[54977,50638,0],[-4,-6],[0,-2]],[[54972,50629,0],[-3,-8]],[[54969,50621,0],[-2,-9]],[[54967,50612,0],[-1,-9]],[[54966,50603,0],[2,-9]],[[54968,50594,0],[2,-9]],[[54970,50585,0],[48,-72],[-245,-346],[-29,16],[-30,16],[-75,45],[-25,14]],[[54483,50335,0],[-202,222],[-94,46]],[[54187,50603,0],[-48,30],[-55,16]],[[53952,50677,0],[-148,31],[-191,16],[-78,-3]],[[53445,50707,0],[-43,-2],[-122,-47]],[[53280,50658,0],[-156,-79],[-143,-73],[-29,-21]],[[52630,50176,0],[-74,-98],[-80,-95]],[[52476,49983,0],[-202,-194],[-36,-25],[-49,-27]],[[51212,50220,0],[0,20],[-1,27]],[[51211,50267,0],[-1,23],[0,3]],[[51210,50293,0],[7,37],[5,23]],[[51222,50353,0],[1,1],[23,24],[24,166],[19,-6],[48,-11]],[[51337,50527,0],[11,135],[64,35],[79,64]],[[51491,50761,0],[38,-3],[50,5]],[[51579,50763,0],[-1,-34],[9,-97],[31,-6],[30,-46]],[[51648,50580,0],[2,-16],[89,15],[43,-5]],[[51782,50574,0],[90,-34],[38,0]],[[51910,50540,0],[39,10],[53,55],[31,63]],[[52033,50668,0],[106,-38],[-19,-106],[4,-36]],[[52124,50488,0],[11,-14],[-2,-17],[57,-19]],[[52190,50438,0],[72,-18],[55,-34]],[[52317,50386,0],[13,-19]],[[52330,50367,0],[36,-6],[50,19]],[[52416,50380,0],[20,21],[118,190],[35,56],[30,32],[84,79]],[[52703,50758,0],[53,45],[45,-27],[142,69]],[[52943,50845,0],[380,292],[-37,81],[-37,79]],[[53249,51297,0],[185,105],[146,33]],[[53580,51435,0],[75,19],[6,13]],[[53661,51467,0],[114,7],[9,229]],[[53784,51703,0],[-41,27],[-5,26],[-10,71]],[[53728,51827,0],[-81,25],[-58,-16]],[[53589,51836,0],[-15,0],[-44,35]],[[53530,51871,0],[-92,6],[-29,18]],[[53409,51895,0],[-32,8]],[[53377,51903,0],[-22,6],[-90,-6],[-6,-16],[-57,-25],[-12,-27],[-44,-38],[-29,-16]],[[53117,51781,0],[-8,-29]],[[53109,51752,0],[-33,-37],[-3,-29]],[[53073,51686,0],[-12,-20]],[[53061,51666,0],[4,-12],[-4,-15],[-7,-15]],[[53054,51624,0],[-39,-12],[-31,-30],[-29,-26],[-37,-28]],[[52918,51528,0],[-16,-22],[-11,-7]],[[52891,51499,0],[-12,2],[-12,-29]],[[52867,51472,0],[-14,-18],[-52,-20]],[[52801,51434,0],[-34,-43]],[[52767,51391,0],[-91,59],[-49,22]],[[52627,51472,0],[-14,14],[-26,20]],[[52587,51506,0],[-35,25]],[[52552,51531,0],[-72,27],[-20,-7],[-23,-16]],[[52437,51535,0],[-63,34],[-32,-3]],[[52342,51566,0],[-20,7],[-28,6],[-34,18]],[[52260,51597,0],[-49,-1],[-24,10]],[[52187,51606,0],[-17,8],[-87,-81]],[[52083,51533,0],[-12,-26],[-24,-30],[-12,-7]],[[52035,51470,0],[-34,17],[-39,49],[-22,11],[-6,9],[-32,45],[-65,39],[178,165],[121,106],[60,56],[80,89],[231,208],[93,92]],[[52600,52356,0],[174,138],[152,38]],[[52926,52532,0],[31,8],[80,7],[122,-1]],[[53159,52546,0],[158,-15]],[[53317,52531,0],[18,-1],[160,-22],[146,-31],[320,-61],[315,4]],[[65261,54158,0],[-100,-133],[-68,-64]],[[65093,53961,0],[-31,-24],[-25,-30],[-31,-26],[-199,-197]],[[64807,53684,0],[-68,-58],[-58,-36],[-39,-23]],[[64642,53567,0],[-66,-37],[-213,-121]],[[64363,53409,0],[-44,-23],[-110,-47],[-86,-37]],[[64123,53302,0],[-146,-55],[-347,-131],[-101,-21]],[[63529,53095,0],[-82,-22]],[[63447,53073,0],[-49,-31],[-125,-50],[-23,-9],[-182,-135]],[[62834,52630,0],[-24,-29],[-12,-19],[-27,-47]],[[62771,52535,0],[-29,-47],[-14,-23],[-59,-70],[-22,-25]],[[62647,52370,0],[-42,-57],[-40,-68]],[[62565,52245,0],[-26,-46],[-41,-73]],[[62498,52126,0],[-36,-70],[-13,-26],[-26,-32],[-14,-17]],[[62311,52051,0],[-98,58],[-206,107]],[[61784,52333,0],[-149,122],[-229,241]],[[60872,53176,0],[77,141],[33,-7]],[[60982,53310,0],[234,-53]],[[61216,53257,0],[142,-6],[114,0],[119,-3]],[[61591,53248,0],[118,8]],[[61709,53256,0],[122,19],[116,24]],[[61947,53299,0],[113,34],[111,51]],[[62171,53384,0],[108,55],[95,57]],[[62374,53496,0],[95,61]],[[62469,53557,0],[130,81],[132,79]],[[62731,53717,0],[116,70],[131,82]],[[62978,53869,0],[141,88],[143,88],[151,100]],[[63413,54145,0],[145,113],[120,107],[19,17]],[[63697,54382,0],[36,-35],[113,110],[100,115]],[[63946,54572,0],[417,-133],[58,-17],[88,-30],[28,-7],[88,-28],[106,-33],[198,-62],[183,-59],[23,-6],[126,-39]],[[64153,47075,0],[60,191],[5,15],[57,77]],[[64275,47358,0],[61,86],[24,31],[56,74],[3,6]],[[64483,47656,0],[40,64],[9,15],[13,128]],[[64365,48423,0],[0,1],[-1,0],[0,45],[132,47],[14,4],[88,21],[13,2]],[[64815,48578,0],[262,-90],[93,-75],[1,0],[38,-41]],[[65209,48372,0],[112,-40],[0,-1]],[[65321,48331,0],[-4,-14],[-18,-52],[-18,-54],[-13,-56],[-12,-50],[-8,-54],[-6,-57]],[[65242,47994,0],[-8,-94]],[[65234,47900,0],[18,-30],[46,-74],[39,-69],[36,-73]],[[65373,47654,0],[6,-13],[16,-33]],[[65395,47608,0],[12,-25],[11,-26],[17,-39]],[[65435,47518,0],[15,-37],[15,-44]],[[65465,47437,0],[30,-125],[13,-57],[0,-1]],[[65508,47254,0],[2,-49]],[[53458,47943,0],[2,0]],[[53463,47943,0],[2,0]],[[53479,47944,0],[2,0]],[[53482,47945,0],[2,0]],[[54118,48180,0],[41,8],[45,-125],[-45,125],[105,20]],[[54449,47452,0],[8,-30]],[[54204,47016,0],[19,-12]],[[54237,46998,0],[14,-4]],[[54276,46589,0],[102,-96],[-7,-27],[-26,-17],[-96,-8],[-91,-27],[-174,-89]],[[53984,46325,0],[-33,-13],[-107,-42]],[[53844,46270,0],[-20,-8],[-87,-28]],[[53737,46234,0],[-27,-1],[-142,-8]],[[53568,46225,0],[-195,21],[-116,-1]],[[53257,46245,0],[-27,2],[-111,7]],[[53119,46254,0],[-209,-5]],[[52910,46249,0],[-103,7]],[[52807,46256,0],[-117,23],[-121,15]],[[52569,46294,0],[-165,16],[-120,12]],[[52284,46322,0],[-89,10],[-87,27],[-171,133],[-66,53],[-76,73],[-133,72],[-26,11]],[[51636,46701,0],[46,40],[30,26]],[[51769,46838,0],[86,139],[20,19],[108,191]],[[52078,47340,0],[91,120],[40,62]],[[52312,47829,0],[-31,19],[-2,2],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1]],[[52265,47860,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,2],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,1]],[[52244,47881,0],[0,1],[-1,1],[-1,0],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1]],[[52239,47890,0],[-1,1],[0,1],[-1,0],[0,2],[-1,0],[0,2],[-1,2]],[[52235,47898,0],[-1,2],[-1,2],[0,1],[-1,1],[0,2],[-1,0]],[[52231,47906,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[52229,47915,0],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,2],[0,22]],[[52152,47992,0],[18,28],[126,203],[13,104]],[[52550,48517,0],[33,6]],[[49672,41965,0],[1,-3],[1,-1],[19,-40]],[[49693,41921,0],[55,-111],[86,49]],[[49834,41859,0],[103,-206],[84,-171],[33,-89],[16,-80],[0,-91],[-17,-90],[-39,-88]],[[50014,41044,0],[-13,-28],[-21,-35],[-21,-34],[-19,-24],[-122,-115],[-14,-14],[-36,-42],[-25,-34],[-10,-21],[-16,-22],[-26,-55],[-19,-50],[-19,-65],[-4,-31],[-7,-39],[0,-39],[6,-78],[10,-72],[17,-59],[15,-43],[18,-39],[42,-82],[50,-71],[23,-27],[21,-26],[39,-33],[25,-21],[48,-30],[50,-27],[-39,-88],[-66,-153],[-30,-101],[68,-24],[60,-20],[59,-13],[-79,-80],[-57,-76]],[[49922,39233,0],[70,-28]],[[49992,39205,0],[-129,-111],[-57,-101],[-11,-15],[-3,-137],[-188,11],[-80,9],[-58,8],[-74,12],[-83,16],[-93,18],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-2,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,2],[-1,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,2],[-1,0],[-1,1],[-1,2],[-53,-127],[181,-45],[-75,-136],[-10,-21],[-27,-59],[-28,-64],[-68,12],[10,-105],[-16,-31]],[[49071,38395,0],[-44,40],[31,64]],[[49058,38499,0],[-46,46],[-37,85],[-45,84],[-12,22]],[[48918,38736,0],[3,5],[4,7],[49,144]],[[48974,38892,0],[-57,20],[-78,32]],[[48839,38944,0],[-78,26],[-21,37]],[[48740,39007,0],[-74,91]],[[48666,39098,0],[-13,47],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1]],[[48691,39149,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1]],[[48700,39153,0],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[0,1],[1,1],[1,0],[1,1]],[[48712,39160,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,2],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,2],[1,1],[0,1],[1,0],[1,2],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,2],[1,1],[0,1],[1,0],[0,1],[0,2],[1,1]],[[48737,39194,0],[0,1],[1,1],[0,2],[1,1],[0,2],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[1,2],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[48741,39227,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[48740,39237,0],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,2]],[[48739,39246,0],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[0,1]],[[48737,39255,0],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,1]],[[48735,39264,0],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,2],[-1,0],[0,2],[-1,2],[0,1],[-1,1],[0,2],[-1,1],[-11,19],[-44,52],[-24,21],[-16,18]],[[48633,39392,0],[-87,93],[-20,-14],[-78,90]],[[48448,39561,0],[-17,22],[-30,41]],[[48401,39624,0],[-40,63],[-11,21]],[[48350,39708,0],[-9,19],[-34,58]],[[48307,39785,0],[-23,52]],[[48284,39837,0],[-21,48],[-21,63]],[[48242,39948,0],[-14,57],[-8,35],[-12,61]],[[48208,40101,0],[-4,24],[-8,56]],[[48196,40181,0],[-4,54],[-2,70]],[[48190,40305,0],[0,48],[2,69]],[[48192,40422,0],[17,96],[-94,17]],[[48115,40535,0],[-107,12]],[[48008,40547,0],[24,62],[54,100],[86,148],[38,76],[31,75],[21,68],[16,71],[10,81],[3,49],[-9,105],[-5,26],[-3,17],[-10,42],[-17,61],[-23,57],[-19,41],[-20,34],[-40,65],[-22,30],[211,184],[-118,104],[-139,125]],[[48077,42168,0],[64,59],[79,76],[7,7],[119,111],[17,5],[77,26],[11,3],[151,126],[101,-88]],[[48703,42493,0],[129,-111],[132,-112],[146,-130],[44,-45],[29,-38],[25,-42],[12,-29],[41,-111],[19,-54],[21,2],[0,-35],[15,-6],[39,-17],[207,23],[-25,140],[18,21],[-47,125],[-1,3],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,2],[0,1],[1,1],[1,1],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,2],[1,1],[1,0],[1,1],[1,0],[-214,-97],[-53,89],[248,156],[64,-127],[103,-205]],[[48008,40547,0],[-12,-27]],[[47996,40520,0],[-42,-3],[-62,5]],[[47892,40522,0],[-22,1],[-49,-132]],[[47821,40391,0],[-18,7]],[[47803,40398,0],[-12,88],[-234,6],[-5,14]],[[47552,40506,0],[-62,6],[-65,0],[-7,-67]],[[47418,40445,0],[-24,79],[-96,304],[-232,733],[-333,259],[-16,13],[-713,640]],[[46004,42473,0],[731,65],[20,-84],[42,-114],[62,-95],[64,57],[-1,21],[-9,120],[105,-4],[114,4],[11,86],[8,0],[49,1],[20,89],[27,0],[4,22],[117,-4],[15,-3],[69,-12],[19,-4],[-2,45],[0,32],[3,26],[221,-13],[-6,-54],[8,-89],[21,-72],[19,-40],[20,-35],[68,-108],[17,-20],[0,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,2],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[2,0],[2,1],[80,-72],[52,-46]],[[51135,43981,0],[-72,113],[-82,102],[-90,96],[-96,88]],[[50795,44380,0],[-126,91],[-51,34],[-80,47],[-77,40],[-33,13],[39,94],[469,-106],[18,-166],[-53,-121],[29,-14],[17,-18],[114,-55],[33,-51],[21,-14],[29,-37]],[[51144,44117,0],[-11,-55],[11,-56],[-9,-25]],[[53119,46254,0],[138,-9]],[[53568,46225,0],[169,9]],[[53844,46270,0],[8,-19],[140,-327],[-8,-9],[-14,-19],[-303,-373],[-142,-201],[-27,-31],[-99,-497],[-66,-100],[75,-229]],[[53408,44465,0],[-20,-1],[-99,-98],[-10,6],[2,10],[12,66],[10,65]],[[53303,44513,0],[11,80],[33,197],[17,94]],[[53364,44884,0],[-274,46],[-115,20]],[[52975,44950,0],[-11,1],[-110,18]],[[52854,44969,0],[-8,-49],[-15,-80]],[[52831,44840,0],[-10,-50],[-27,-147]],[[52794,44643,0],[-26,-140]],[[52768,44503,0],[0,-3]],[[52768,44500,0],[-157,26],[-47,7],[-54,12],[-29,2],[-23,7],[-46,11],[-87,20],[-28,8],[-34,14],[-65,34],[-18,16],[-41,25],[-12,15],[-7,1],[-4,2],[-57,50],[-31,3],[-27,-2],[-23,6],[-83,23],[-22,4],[-16,5],[-26,2],[-20,7],[-17,0],[-120,24],[-88,-136],[0,-10],[-16,-9],[-1,-6],[-18,-36],[-8,-6],[-27,-38],[-40,-38],[-50,-2],[-170,-56]],[[51256,44485,0],[-216,199],[-5,228],[-243,147],[-200,118],[-9,154],[-104,81],[-54,77],[-76,107],[153,94],[-8,349],[40,94],[15,38],[-2,144],[-236,234],[-57,97],[-83,136],[-4,9]],[[50167,46791,0],[265,40]],[[50432,46831,0],[79,4],[303,-17]],[[51542,46735,0],[47,-18],[47,-16]],[[52284,46322,0],[285,-28]],[[52807,46256,0],[41,-2],[62,-5]],[[56175,45768,0],[116,2]],[[56291,45770,0],[115,-7]],[[57148,45543,0],[87,-24]],[[57277,45510,0],[50,-10]],[[57590,45417,0],[87,-39],[4,-1],[98,-43]],[[57744,45058,0],[-4,-20]],[[57740,45038,0],[-12,-47]],[[57672,44661,0],[-12,-22]],[[57660,44639,0],[-5,-9]],[[57649,44623,0],[-8,-6]],[[57641,44617,0],[-8,-4]],[[57517,44632,0],[-128,36]],[[57344,44619,0],[-138,20]],[[57162,44655,0],[-60,18]],[[57108,44692,0],[-44,11]],[[56776,44322,0],[-3,-100],[-99,9]],[[56674,44231,0],[-346,29]],[[56328,44260,0],[-673,-179],[-19,5],[-35,7],[-28,3],[-30,0],[-19,-1],[-27,-5],[-36,-8],[-40,-15],[-49,-23],[-32,-16],[-31,-23],[-39,-33],[-30,-46],[-181,-116]],[[55059,43810,0],[-102,-13]],[[54957,43797,0],[-139,43]],[[54818,43840,0],[-10,15]],[[54808,43855,0],[-40,59],[-30,46],[-7,14],[-13,23],[-21,31],[-21,24],[-19,22],[-22,21],[-26,21],[-30,19],[-26,14],[-36,16],[-40,15],[-35,10],[-16,3],[-14,-2],[-21,-5],[-37,-9],[-29,-10],[-32,-12],[-46,-24],[-42,-25],[-24,-17],[-28,-26],[-44,-52],[-52,-69],[-85,15],[-10,3],[-87,28],[-28,8],[-46,14],[-33,12],[-41,-1],[-72,14],[-34,14],[-35,9],[-107,65],[13,39],[1,45],[12,51],[2,30],[4,39],[-15,63],[-24,39],[-14,8],[-36,-17],[-14,45]],[[53844,46270,0],[140,55]],[[57686,42590,0],[-5,-1],[-13,-2],[-90,-9],[-173,-18],[-22,-2],[-80,-8],[-81,-9],[-22,-2],[-69,-8],[-12,-1],[-58,-5],[-55,-6],[-37,-4],[-41,-4],[-6,-1],[-78,5],[-280,17]],[[56564,42532,0],[-277,17],[-202,11]],[[56085,42560,0],[-116,6],[-69,3]],[[55900,42569,0],[-72,-1],[-170,-3]],[[55658,42565,0],[-481,-22]],[[55177,42543,0],[21,85]],[[55198,42628,0],[17,65],[12,46]],[[55227,42739,0],[40,215],[16,85],[27,151]],[[55310,43190,0],[39,150],[-178,-18],[-239,20],[-1,144],[-1,97],[-1,75],[-1,51],[0,21],[-26,13],[-21,17],[-25,25],[-18,25]],[[54838,43810,0],[-20,30]],[[54957,43797,0],[86,10],[16,3]],[[56328,44260,0],[343,-29],[3,0]],[[58942,42907,0],[11,-1],[170,-18]],[[59171,42884,0],[13,-2],[7,-1]],[[59191,42881,0],[6,-1],[15,-1]],[[59354,42466,0],[-199,1],[-26,0],[-30,-5],[-22,-7],[-19,-9],[-19,-10],[-41,-32],[-14,-18],[-21,-38],[-28,-47],[-15,-69]],[[58870,42040,0],[0,-3]],[[58870,42035,0],[0,-3]],[[58925,41734,0],[101,23],[51,11]],[[59077,41768,0],[9,-3],[2,-1]],[[59088,41764,0],[-2,-8],[-14,-44]],[[59072,41712,0],[-17,-89],[-4,-23]],[[59051,41600,0],[-1,-3],[-17,-92]],[[59021,41424,0],[-18,-103],[-6,-36]],[[58997,41285,0],[68,-3],[23,-2]],[[59108,41177,0],[-16,7],[-9,3]],[[58950,40985,0],[-25,5],[-18,4]],[[58849,40821,0],[-19,-69],[-4,-15]],[[58738,40432,0],[-4,-12],[-6,-16]],[[58728,40404,0],[-3,-4],[-3,-6]],[[58722,40394,0],[0,-4],[4,-40]],[[58726,40350,0],[-7,-1],[-4,-1]],[[58347,40312,0],[-15,1],[-18,1]],[[58314,40314,0],[-3,0],[-110,1]],[[58194,40315,0],[-15,0],[-8,1]],[[58171,40316,0],[-2,-15],[-1,-13]],[[58168,40288,0],[-10,1],[-1,1]],[[58157,40290,0],[-12,-3],[-8,-1],[-20,-5],[-16,-3]],[[57835,40250,0],[6,17],[28,79]],[[57508,40348,0],[-18,1],[-30,3]],[[57460,40352,0],[-72,4],[-59,3]],[[57329,40359,0],[-28,1],[-6,0]],[[57157,40369,0],[-2,0],[-4,0]],[[57151,40369,0],[-25,3],[-25,1]],[[57101,40373,0],[-11,1],[-2,0]],[[57088,40374,0],[-19,2],[-96,8]],[[56973,40384,0],[-38,-1],[-54,0]],[[56783,40376,0],[-3,0],[-27,-1]],[[56753,40375,0],[-73,-4],[-26,-2],[-10,0],[-4,0]],[[56211,40139,0],[0,26],[-106,-65],[-17,33]],[[56088,40133,0],[-3,5],[-78,135]],[[56007,40273,0],[-19,23],[-20,7],[-99,-51]],[[55869,40252,0],[4,2],[23,18]],[[55896,40272,0],[2,1],[7,6]],[[55905,40279,0],[4,5],[4,5]],[[55913,40289,0],[20,23],[3,4]],[[55936,40316,0],[2,2],[4,8]],[[55942,40326,0],[9,12],[6,15]],[[55957,40353,0],[8,19],[0,1]],[[55965,40373,0],[1,3],[5,15]],[[55971,40391,0],[2,15],[0,6]],[[55973,40412,0],[3,22],[34,12]],[[56010,40446,0],[17,7],[6,2]],[[56033,40455,0],[7,4],[17,9]],[[56057,40468,0],[16,8],[20,11]],[[56093,40487,0],[24,15],[21,14]],[[56138,40516,0],[9,7],[13,10]],[[56160,40533,0],[17,16],[15,14]],[[56192,40563,0],[2,3],[20,21]],[[56214,40587,0],[32,41]],[[56246,40628,0],[18,27],[8,11]],[[56272,40666,0],[17,29],[92,154]],[[56381,40849,0],[-32,18],[-14,8]],[[56335,40875,0],[-45,27],[-34,20]],[[56256,40922,0],[-7,-9],[-9,-5]],[[56240,40908,0],[-4,-1],[-7,-3]],[[56229,40904,0],[-15,-3],[-170,-3],[-334,-1],[-2,330],[-9,-1],[1,42],[-3,23],[-5,83],[-4,53]],[[55688,41427,0],[2,9],[1,4]],[[55691,41440,0],[-3,10],[-7,18]],[[55681,41468,0],[-1,6],[0,4]],[[55680,41478,0],[-2,157],[0,10]],[[55678,41645,0],[74,17],[75,17]],[[55827,41679,0],[68,16]],[[55895,41695,0],[8,4],[11,5]],[[55914,41704,0],[23,11],[2,1]],[[55939,41716,0],[10,3],[63,18]],[[56012,41737,0],[149,9],[269,15]],[[56430,41761,0],[40,2],[23,1]],[[56493,41764,0],[2,26],[5,72]],[[56500,41862,0],[14,200]],[[56514,42062,0],[0,3],[13,122]],[[56527,42187,0],[3,27],[1,12]],[[56531,42226,0],[18,163]],[[56549,42389,0],[4,38],[0,1]],[[56553,42428,0],[3,26],[8,78]],[[58588,42864,0],[13,2],[25,4]],[[58626,42870,0],[14,3],[19,3]],[[58711,42891,0],[31,9],[37,11]],[[58779,42911,0],[30,9],[8,3]],[[58817,42923,0],[3,-22],[1,-8]],[[55658,42565,0],[242,4]],[[55900,42569,0],[185,-9]],[[56553,42428,0],[-4,-39]],[[56531,42226,0],[-4,-39]],[[56527,42187,0],[-13,-125]],[[56500,41862,0],[-7,-98]],[[56493,41764,0],[-63,-3]],[[56430,41761,0],[-418,-24]],[[56012,41737,0],[-73,-21]],[[55939,41716,0],[-25,-12]],[[55914,41704,0],[-19,-9]],[[55827,41679,0],[-149,-34]],[[55680,41478,0],[1,-10]],[[55681,41468,0],[10,-28]],[[55691,41440,0],[-3,-13]],[[56229,40904,0],[11,4]],[[56256,40922,0],[79,-47]],[[56381,40849,0],[-109,-183]],[[56272,40666,0],[-26,-38]],[[56214,40587,0],[-22,-24]],[[56160,40533,0],[-22,-17]],[[56093,40487,0],[-36,-19]],[[56057,40468,0],[-24,-13]],[[56033,40455,0],[-23,-9]],[[55973,40412,0],[-2,-21]],[[55971,40391,0],[-6,-18]],[[55965,40373,0],[-8,-20]],[[55942,40326,0],[-6,-10]],[[55936,40316,0],[-23,-27]],[[55913,40289,0],[-8,-10]],[[55905,40279,0],[-9,-7]],[[55896,40272,0],[-27,-20]],[[55869,40252,0],[101,50],[7,-9],[12,1],[18,-21]],[[56007,40273,0],[81,-140]],[[56088,40133,0],[-53,-21]],[[56035,40112,0],[-136,-65]],[[55899,40047,0],[-236,-118],[-136,-81],[-161,-77],[-285,-150],[-11,-5]],[[55070,39616,0],[-87,-53]],[[54983,39563,0],[-77,-36]],[[54906,39527,0],[-114,-59]],[[54792,39468,0],[-65,-27]],[[54727,39441,0],[-78,-44]],[[54649,39397,0],[-154,-98]],[[54495,39299,0],[-108,-59]],[[54387,39240,0],[-7,12],[33,36],[48,56],[25,9],[43,34],[39,25]],[[54568,39412,0],[6,7],[51,29],[5,11],[10,2],[10,-12]],[[54650,39449,0],[90,55]],[[54740,39504,0],[133,83],[-42,101],[-58,44]],[[54773,39732,0],[-151,-66],[-23,-10]],[[54599,39656,0],[-46,-17],[13,-29],[-119,-65],[-75,-40],[-160,-68],[-225,-7],[-131,39]],[[53856,39469,0],[1,7],[-33,-5]],[[53824,39471,0],[-95,3]],[[53729,39474,0],[30,60]],[[53759,39534,0],[64,99],[32,56],[15,20]],[[53870,39709,0],[2,10]],[[53872,39719,0],[3,15]],[[53875,39734,0],[24,54],[10,16]],[[53909,39804,0],[21,38]],[[53930,39842,0],[33,65],[18,37]],[[53981,39944,0],[1,20],[-81,13],[4,59]],[[53905,40036,0],[3,53]],[[53908,40089,0],[5,74],[-16,17],[-13,1]],[[53884,40181,0],[-13,3],[-18,2]],[[53853,40186,0],[-21,5]],[[53832,40191,0],[-12,4]],[[53820,40195,0],[-13,5]],[[53807,40200,0],[-16,7]],[[53791,40207,0],[-14,6],[-19,11]],[[53758,40224,0],[-22,15]],[[53736,40239,0],[-27,20],[-15,15]],[[53694,40274,0],[-11,10],[-15,17],[-16,24]],[[53652,40325,0],[-8,15],[-4,7],[-8,15]],[[53632,40362,0],[-7,19]],[[53625,40381,0],[-7,24]],[[53618,40405,0],[-97,439],[123,22]],[[53644,40866,0],[53,112]],[[53697,40978,0],[49,77]],[[53746,41055,0],[66,165],[-55,22]],[[53757,41242,0],[-12,6]],[[53745,41248,0],[23,24],[7,8]],[[53775,41280,0],[20,21]],[[53795,41301,0],[5,6],[5,8]],[[53805,41315,0],[24,-9]],[[53829,41306,0],[30,-8],[59,-7]],[[53918,41291,0],[43,1]],[[53961,41292,0],[39,5],[25,7]],[[54025,41304,0],[34,10],[37,16]],[[54096,41330,0],[46,26]],[[54142,41356,0],[66,50],[-26,27],[-19,198]],[[54163,41631,0],[258,195]],[[54421,41826,0],[-39,19]],[[54382,41845,0],[-99,29],[-101,7]],[[54182,41881,0],[-102,45]],[[54080,41926,0],[0,43],[37,28]],[[54117,41997,0],[29,44],[-27,100]],[[54119,42141,0],[-203,-1]],[[53916,42140,0],[-43,254]],[[53873,42394,0],[-57,-8]],[[53816,42386,0],[-30,-4],[-9,12]],[[53777,42394,0],[-11,11]],[[53766,42405,0],[25,6],[23,6],[8,3],[12,7],[14,11],[26,8],[54,8],[160,60],[36,23],[25,28],[-2,20],[-8,26],[30,4],[24,-19],[73,-5],[21,-1],[35,0],[45,-4],[72,-16],[38,3],[108,3],[110,-7],[121,-11],[154,-10],[207,-5]],[[56069,39968,0],[7,-12],[101,-174]],[[56283,39632,0],[7,-3],[17,-5]],[[56338,39302,0],[-35,-52],[-33,-49]],[[56206,39127,0],[-21,-9],[-36,-16]],[[56034,39057,0],[-71,-26],[-133,-49]],[[55830,38982,0],[-52,-18],[-97,-34]],[[55390,38413,0],[-2,-7],[-4,-13]],[[54332,37638,0],[-41,64]],[[54054,37921,0],[-23,32]],[[53826,38164,0],[-77,131],[-17,29],[-3,6],[-2,3],[-49,-39],[-9,-7],[-11,-14],[-75,-91],[-230,159]],[[53353,38341,0],[-9,9],[-10,11]],[[53334,38361,0],[-93,105],[-88,101]],[[53153,38567,0],[62,37],[48,26],[119,64]],[[53382,38694,0],[76,35],[96,53],[59,32],[122,52],[122,65],[28,15],[70,46],[2,2],[3,3],[71,31],[88,39],[60,41],[128,81],[51,32],[29,19]],[[54387,39240,0],[23,13],[85,46]],[[54495,39299,0],[88,56],[66,42]],[[54727,39441,0],[48,20],[17,7]],[[54906,39527,0],[12,6],[65,30]],[[54983,39563,0],[39,23],[48,30]],[[55899,40047,0],[1,0],[135,65]],[[56035,40112,0],[38,15],[14,6],[1,0]],[[53777,42394,0],[9,-11],[30,3]],[[53873,42394,0],[27,-157],[16,-97]],[[54119,42141,0],[18,-64],[10,-36],[-30,-44]],[[54117,41997,0],[-11,-8],[-26,-19],[0,-44]],[[54080,41926,0],[82,-36],[20,-9]],[[54382,41845,0],[30,-15],[9,-4]],[[54421,41826,0],[-251,-190],[-7,-5]],[[54163,41631,0],[12,-122],[7,-75],[2,-2],[25,-26],[-21,-15],[-46,-35]],[[54142,41356,0],[-26,-14],[-20,-12]],[[54025,41304,0],[-24,-6],[-25,-4],[-15,-2]],[[53918,41291,0],[-59,8],[-7,1],[-23,6]],[[53829,41306,0],[-22,9],[-2,0]],[[53805,41315,0],[-5,-7],[-5,-6],[0,-1]],[[53775,41280,0],[-2,-1],[-4,-7],[-24,-24]],[[53745,41248,0],[10,-5],[2,-1]],[[53757,41242,0],[24,-9],[31,-12],[-66,-166]],[[53697,40978,0],[-27,-57],[-5,-11],[-21,-44]],[[53618,40405,0],[4,-13],[3,-11]],[[53625,40381,0],[4,-11],[3,-8]],[[53652,40325,0],[12,-17],[4,-6],[16,-18],[10,-10]],[[53736,40239,0],[10,-7],[12,-8]],[[53758,40224,0],[19,-10],[2,-1],[12,-6]],[[53807,40200,0],[11,-4],[2,-1]],[[53820,40195,0],[3,-1],[9,-3]],[[53832,40191,0],[8,-2],[13,-3]],[[53884,40181,0],[1,0],[12,0],[17,-18],[-2,-19],[-4,-54],[0,-1]],[[53905,40036,0],[0,-4],[-4,-54],[82,-14],[-1,-8],[-1,-12]],[[53981,39944,0],[-17,-37],[-34,-65]],[[53909,39804,0],[-9,-15],[-16,-35],[-9,-20]],[[53875,39734,0],[-1,-3],[-2,-12]],[[53872,39719,0],[-1,-7],[-1,-3]],[[53759,39534,0],[-30,-59],[-34,6]],[[53695,39481,0],[-32,15],[-22,11],[-22,3],[-40,19],[-21,10],[-129,93]],[[53429,39632,0],[-37,36],[-71,83],[-90,106],[-37,56]],[[53194,39913,0],[-70,96],[-53,56],[-28,48]],[[53043,40113,0],[-91,129],[-17,34],[-18,60],[-56,33],[-110,60]],[[52751,40429,0],[78,30],[-41,132],[-105,334],[-96,308],[26,55],[30,61],[13,27],[79,162],[91,186]],[[52826,41724,0],[90,-33],[1,4],[10,26],[47,126]],[[52974,41847,0],[19,51]],[[52993,41898,0],[40,102],[19,49]],[[53052,42049,0],[63,165]],[[53115,42214,0],[0,4],[1,3],[108,23]],[[53224,42244,0],[6,26],[11,20]],[[53241,42290,0],[6,9],[7,11]],[[53254,42310,0],[20,17],[8,7]],[[53282,42334,0],[10,3],[14,4]],[[53306,42341,0],[-1,7],[-2,15],[-2,13],[-1,5]],[[53300,42381,0],[39,-7],[17,-5],[102,8]],[[53458,42377,0],[44,-8]],[[53502,42369,0],[7,4],[46,0]],[[53555,42373,0],[14,0]],[[53569,42373,0],[74,5],[28,6]],[[53671,42384,0],[93,20]],[[53764,42404,0],[13,-10]],[[51133,40638,0],[28,-28],[-28,28]],[[51133,40638,0],[142,128],[317,47],[-2,-22],[174,-148]],[[51764,40643,0],[152,-124],[38,-32],[66,-54]],[[52020,40433,0],[246,14]],[[52266,40447,0],[-105,-825],[105,825]],[[52266,40447,0],[75,-9],[36,-1],[117,-15]],[[52494,40422,0],[-11,-22]],[[52483,40400,0],[-11,-8],[11,8]],[[52483,40400,0],[144,-100]],[[52627,40300,0],[5,-10],[7,-15],[39,-41]],[[52678,40234,0],[28,-17]],[[52706,40217,0],[90,-154]],[[52796,40063,0],[14,-18],[5,-21]],[[52815,40024,0],[16,2]],[[52831,40026,0],[19,-27],[22,-40]],[[52872,39959,0],[23,-32]],[[52895,39927,0],[17,-42]],[[52912,39885,0],[-3,-6],[46,-118],[21,-57]],[[52976,39704,0],[2,-29],[-31,-79],[-68,-95]],[[52879,39501,0],[-12,-32],[-42,-54]],[[52825,39415,0],[-29,-8],[-21,4],[-63,-39],[-65,-39],[-102,-64],[-55,-40]],[[52490,39229,0],[-23,8],[23,-8]],[[52490,39229,0],[-22,-102],[-42,-48],[-41,-58],[69,-90]],[[52454,38931,0],[-25,-13]],[[52429,38918,0],[-1,-7]],[[52428,38911,0],[-19,-12],[0,-15],[-22,-48],[37,-93]],[[52424,38743,0],[-49,-101],[-156,-24]],[[52219,38618,0],[-332,-30],[-497,7],[-18,0],[-214,-5],[-160,-6],[-256,-129],[-99,11],[-29,-9],[-27,-3],[-27,-12],[-264,-66],[2,-15],[-34,-18],[28,-35],[25,-34],[-7,-14],[7,-8],[-2,-35],[8,-1],[6,-66],[-13,-21],[-286,100],[-415,15],[-66,3],[-47,9],[-53,32],[-274,46],[-82,44],[-22,17]],[[49992,39205,0],[-49,19],[-21,9]],[[50014,41044,0],[254,-101],[426,-200],[251,83],[16,-76],[29,-74],[41,-66],[28,-33],[74,61]],[[52768,44500,0],[-13,-71]],[[52755,44429,0],[-25,-129],[-20,-107],[-17,-91],[-26,-138],[-15,-81]],[[52652,43883,0],[0,-4],[-35,-185]],[[52617,43694,0],[-15,-89],[-25,-118]],[[52577,43487,0],[0,-3],[0,-4]],[[52577,43480,0],[-1,-1],[-11,-60]],[[52565,43419,0],[-5,-35],[-3,-14]],[[52557,43370,0],[-7,-35],[-13,-44]],[[52537,43291,0],[-5,-12],[-4,-13]],[[52528,43266,0],[-16,-30],[-20,-34],[-18,-21],[-26,-30],[-20,-19]],[[52428,43132,0],[-105,-107],[-55,-55]],[[52268,42970,0],[-14,-14],[-65,-66]],[[52189,42890,0],[-87,-89],[-39,-43],[-42,-37],[-49,-43]],[[51972,42678,0],[-49,37]],[[51923,42715,0],[-30,28],[-40,40],[-52,52],[-35,37],[-59,83],[-34,51],[-98,183],[-214,385],[-172,310],[-47,86],[-7,11]],[[51144,44117,0],[36,-47],[71,391],[5,24]],[[54808,43855,0],[8,-13],[22,-32]],[[55310,43190,0],[-83,-451]],[[55227,42739,0],[-29,-111]],[[53766,42405,0],[-2,-1]],[[53764,42404,0],[-19,-4],[-74,-16]],[[53671,42384,0],[-28,-7],[-74,-4]],[[53555,42373,0],[-46,-1],[-7,-3]],[[53458,42377,0],[-102,-9],[-17,5],[-39,8]],[[53300,42381,0],[-17,113],[-292,-60],[-98,-9],[-58,-4],[-44,335],[-26,59],[-1,4],[-35,0]],[[52729,42819,0],[-38,-13],[-74,-40],[-73,-35]],[[52544,42731,0],[-33,-7],[-123,-27]],[[52388,42697,0],[-57,-15],[-33,-12],[-42,-18],[-13,-10],[-18,-13],[-22,-18],[-19,-30],[-18,-10],[-14,-4],[-15,-1],[-15,8]],[[52122,42574,0],[-61,37],[-59,43]],[[52002,42654,0],[-30,24]],[[52189,42890,0],[79,80]],[[52268,42970,0],[160,162]],[[52528,43266,0],[9,25]],[[52557,43370,0],[8,49]],[[52565,43419,0],[12,61]],[[52577,43480,0],[0,7]],[[52617,43694,0],[33,174],[2,15]],[[52755,44429,0],[13,74]],[[52794,44643,0],[37,197]],[[52854,44969,0],[121,-19]],[[53364,44884,0],[-14,-89],[-34,-206],[-13,-76]],[[47309,45245,0],[246,-285],[209,170],[83,-103],[-232,-328],[163,-176],[163,-94],[285,-214],[113,-117],[384,217],[222,126]],[[48945,44441,0],[11,-101],[8,-82]],[[48964,44258,0],[83,-133],[13,-19],[40,-65],[53,-82]],[[49153,43959,0],[-74,-41],[-131,-72],[-134,-75],[-132,-75],[-40,-22],[-59,-42],[-69,-53],[-40,-35],[-59,-58],[-52,-57],[-57,-71]],[[48306,43358,0],[-1,-1],[0,-1]],[[48305,43356,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[1,-2],[0,-2],[1,0],[1,-3],[270,-7],[-8,-53],[-1,-97],[8,-44],[22,-83],[14,-38],[52,-131],[-145,-51],[31,-36],[48,-49],[88,-76],[75,-65],[40,-32],[-96,-55]],[[46004,42473,0],[78,1484]],[[46082,43957,0],[103,-28],[153,-44],[123,-43],[79,279],[82,167],[49,113],[31,110],[53,131],[20,54],[57,113],[43,80],[53,93],[381,263]],[[50131,46851,0],[36,-60]],[[50795,44380,0],[-130,-20],[-90,-15],[-38,-7],[-29,-5],[-22,-8],[-28,-19],[-14,-10],[-16,-9],[-36,-14],[-31,-8],[-54,-12],[-36,-3],[-175,0],[-45,1],[-54,-1],[-89,-7],[-71,-9],[-57,-8],[-64,-14],[-97,-26],[-94,-34],[-58,-23],[-50,-24],[-65,-34],[-91,-51],[-60,-34],[-48,-27]],[[48964,44258,0],[-8,79],[-11,104]],[[47309,45245,0],[33,34],[148,161],[494,178],[174,149],[290,248],[223,115],[-170,586],[191,4],[-7,115],[-2,26],[-4,53]],[[67352,49355,0],[-503,260]],[[66969,49842,0],[57,-23],[48,-23],[35,-13],[161,-61],[194,-67]],[[65134,51587,0],[332,-430]],[[65466,51157,0],[9,-13]],[[65475,51144,0],[8,-24]],[[65483,51120,0],[7,-29]],[[65490,51091,0],[2,-29]],[[64856,51496,0],[-25,5],[-1,0]],[[64662,51612,0],[-21,15],[0,1]],[[64342,51831,0],[-16,14],[-15,12]],[[63399,53042,0],[48,31]],[[63529,53095,0],[101,20],[348,132],[145,55]],[[64363,53409,0],[213,120],[66,38]],[[64642,53567,0],[39,22],[58,36],[68,59]],[[64807,53684,0],[199,196],[31,26],[25,30],[31,25]],[[65261,54158,0],[119,-22],[89,-22],[49,-16],[57,-21],[83,-37],[42,-22],[62,-38],[485,-335]],[[66343,53275,0],[-53,-37]],[[66290,53238,0],[-299,-334],[-85,-98],[-49,-66]],[[65857,52740,0],[-100,-23]],[[65757,52717,0],[-153,-40]],[[65604,52677,0],[-193,-50]],[[65411,52627,0],[-29,-11]],[[65382,52616,0],[-42,-21]],[[65340,52595,0],[-32,-21]],[[65308,52574,0],[-37,-29]],[[65271,52545,0],[-23,-25]],[[65248,52520,0],[-43,-53]],[[65205,52467,0],[-68,-90]],[[65137,52377,0],[-46,-67]],[[65091,52310,0],[-29,-52]],[[65062,52258,0],[-26,-55],[-31,-72],[-13,-37]],[[64992,52094,0],[-9,-32],[-10,-41],[-4,-47]],[[64969,51974,0],[-2,-42],[5,-54],[6,-28],[24,-55]],[[65002,51795,0],[92,-151],[40,-57]],[[65296,20572,0],[-24,-10],[-45,-17],[-65,-26],[-54,-21],[-10,-2],[-79,-27],[-46,-16],[-122,-53],[-113,-60],[-49,-32],[-60,-40],[-28,-23],[-71,-63],[-20,-20],[-75,-73],[-28,-29],[-65,-63],[-101,-93],[-98,-69],[-13,-12],[-29,-18],[-56,-27],[-10,-6],[-23,-19],[-140,-50],[-27,-7],[-92,-8],[-10,-2],[-73,-14]],[[63670,19672,0],[-39,-4],[-40,-3],[-146,20],[-91,25],[-44,11],[-37,17],[-92,46],[-24,18],[-93,71],[-71,73],[-22,23],[-73,99]],[[62898,20068,0],[8,8],[60,44],[-6,7],[-18,23],[-14,24],[-25,46]],[[62903,20220,0],[3,16],[11,39]],[[62917,20275,0],[32,105]],[[62949,20380,0],[73,-14],[9,-5],[41,12],[16,12],[13,12],[28,-13],[16,-66],[18,-15]],[[63163,20303,0],[105,-81]],[[63268,20222,0],[67,-43],[55,-35],[5,4],[-55,53],[26,17]],[[63366,20218,0],[102,67]],[[63468,20285,0],[92,-55],[143,6],[35,-2],[13,-1],[80,-4],[28,0],[193,38],[0,5],[11,126]],[[64063,20398,0],[-5,76]],[[64058,20474,0],[-15,115],[72,49],[42,59],[14,27],[11,20],[7,20],[14,99],[2,57]],[[64205,20920,0],[-3,270]],[[64202,21190,0],[136,-7]],[[64338,21183,0],[115,-25],[4,12]],[[64457,21170,0],[4,10],[3,7]],[[61493,19997,0],[-4,-19],[-4,-15]],[[61485,19963,0],[1,-26]],[[61486,19937,0],[-5,-55]],[[61481,19882,0],[-1,-5],[-6,-6],[-3,-1],[-8,-34]],[[61463,19836,0],[-11,-46]],[[61452,19790,0],[-7,-23]],[[61445,19767,0],[-2,-5]],[[61443,19762,0],[-5,-34]],[[61438,19728,0],[-41,-30],[-56,-77],[-7,-9],[-4,-5],[6,-2],[-48,-69]],[[61288,19536,0],[-16,-27]],[[61272,19509,0],[-76,-169]],[[61196,19340,0],[-9,-12]],[[61187,19328,0],[-5,-22]],[[61182,19306,0],[-5,-14],[-36,-94],[-14,-32],[-29,-50]],[[61098,19116,0],[-13,-28]],[[61085,19088,0],[-4,-11],[-4,-18],[-12,-35],[-18,-42],[-4,-33],[-15,-35],[8,-16]],[[61036,18898,0],[-38,-74]],[[60998,18824,0],[-22,8]],[[60976,18832,0],[-42,-84]],[[60934,18748,0],[-39,-45]],[[60895,18703,0],[-30,-32]],[[60865,18671,0],[-9,-12]],[[60856,18659,0],[-27,-25]],[[60829,18634,0],[-32,-22]],[[60797,18612,0],[-36,-22]],[[60761,18590,0],[-15,-15]],[[60746,18575,0],[-14,-5]],[[60732,18570,0],[-73,-22]],[[60659,18548,0],[-11,4],[-4,11],[-44,-31]],[[60600,18532,0],[-58,-32]],[[60542,18500,0],[-69,-40]],[[60473,18460,0],[-34,-21],[-9,-5]],[[60430,18434,0],[-39,-27]],[[60391,18407,0],[-155,-105]],[[60236,18302,0],[-87,-71]],[[60149,18231,0],[-10,-12]],[[60139,18219,0],[-63,-54]],[[60076,18165,0],[-27,-65]],[[60049,18100,0],[-76,-190]],[[59973,17910,0],[-149,-56],[-69,-18],[-71,6],[-120,20],[-93,-6],[-158,-29],[-228,-76],[-37,61],[6,38],[-26,61],[1,8],[-59,76],[-18,46],[12,71],[49,70],[63,73],[134,38],[-52,26],[6,21],[37,96],[20,177],[47,144],[-19,91],[211,238],[211,325],[222,-92],[62,216],[44,70],[61,91],[88,130],[8,11],[87,156],[53,117],[74,25],[54,-10],[25,-6],[39,7],[180,8],[22,2],[98,14],[71,6],[113,26],[187,69],[158,43]],[[61317,20294,0],[13,33]],[[61330,20327,0],[96,61]],[[61426,20388,0],[22,-116],[15,-88],[10,-71],[8,-55],[3,-13],[9,-48]],[[62004,18090,0],[-102,23],[-65,-5],[-35,-3],[-60,-4],[-142,-27]],[[61600,18074,0],[-209,-23],[-65,-7]],[[61326,18044,0],[-31,-4],[-28,-7],[-107,-28],[-82,-62],[-101,-64],[-44,-38],[-9,-12]],[[60924,17829,0],[-23,-26],[-41,-44],[-28,-21],[-14,-11],[-13,-7],[-13,-6],[-79,-82],[-42,-56],[-31,-55],[-127,82],[-180,99],[-112,71],[-114,63],[-52,22],[-76,17],[-6,35]],[[59973,17910,0],[25,61],[51,129]],[[60049,18100,0],[16,39],[11,26]],[[60076,18165,0],[17,14],[46,40]],[[60149,18231,0],[53,43],[3,2],[31,26]],[[60236,18302,0],[58,40],[97,65]],[[60391,18407,0],[1,1],[38,26]],[[60473,18460,0],[36,21],[32,19],[1,0]],[[60542,18500,0],[43,24],[15,8]],[[60659,18548,0],[45,13],[28,9]],[[60746,18575,0],[8,7],[7,8]],[[60761,18590,0],[16,8],[20,14]],[[60797,18612,0],[6,4],[26,18]],[[60856,18659,0],[7,9],[2,3]],[[60865,18671,0],[23,24],[7,8]],[[60934,18748,0],[38,77],[4,7]],[[60998,18824,0],[11,21],[27,53]],[[61085,19088,0],[1,2],[12,26]],[[61182,19306,0],[3,15],[2,7]],[[61196,19340,0],[26,57],[50,112]],[[61272,19509,0],[7,13],[9,14]],[[61438,19728,0],[1,4],[4,30]],[[61443,19762,0],[1,3],[1,2]],[[61452,19790,0],[7,29],[4,17]],[[61481,19882,0],[3,33],[2,22]],[[61486,19937,0],[0,9],[-1,17]],[[61493,19997,0],[11,46],[33,17],[9,-20],[46,-83],[31,-49],[42,-64],[14,-20],[13,-21],[25,-38],[47,-73],[164,-246],[172,-105],[78,-45],[46,-23],[26,-9],[90,-33],[8,-4],[11,-9],[11,-4],[8,-4],[-8,-34]],[[62370,19176,0],[-3,-16],[-1,-5],[-1,-5],[-35,-66],[-3,-7],[-14,-24],[-9,-15],[-2,-3],[-12,-20],[-19,-30],[-1,-3],[-20,-23],[-6,-7],[1,-31],[-4,-17],[10,-48],[1,-11],[4,-57],[-44,-54],[-73,-80],[-16,-26],[-45,-117],[-19,-50],[-2,-10],[-4,-12],[-6,-13],[-7,-15],[-3,-38],[-3,-33],[-1,-20],[0,-8],[-1,-8],[-2,-13],[-8,-45],[-3,-14],[0,-3],[-17,-55],[-5,-8],[-3,-4],[4,-25],[4,-25],[2,-22]],[[61986,16480,0],[-69,-135]],[[61917,16345,0],[-17,-20]],[[61900,16325,0],[-71,-120],[-37,-80]],[[61792,16125,0],[-5,-16]],[[61787,16109,0],[-11,-34],[43,-245]],[[61819,15830,0],[-11,-99],[-20,-40],[-20,-128],[65,-24],[4,-50],[-4,-10],[-12,-21],[-6,-22],[-21,-31],[-31,-56],[-80,20],[-27,12],[-71,12],[-44,13],[-66,16],[-80,7],[-49,11],[-111,51],[-35,29],[-24,33],[-37,37]],[[60571,15993,0],[-125,63],[41,52],[51,4],[35,29],[19,20],[40,46],[107,154],[14,-7],[11,10],[90,91],[57,53],[11,33],[45,109],[-11,21],[-21,26],[-5,3],[-56,37],[-37,19],[-58,23],[-39,4],[137,205],[44,72],[76,104],[147,183],[39,56],[-55,30],[-39,29],[-43,22],[-45,31],[15,32],[26,47],[11,13],[50,105],[9,5],[-47,13],[-141,99]],[[61326,18044,0],[274,30]],[[62004,18090,0],[2,-15]],[[62006,18075,0],[-1,-38]],[[62005,18037,0],[1,-23]],[[62006,18014,0],[2,-89]],[[62008,17925,0],[-3,-31],[-10,-12]],[[61995,17882,0],[-1,-90]],[[61994,17792,0],[0,-11],[5,-54],[3,-36]],[[62002,17691,0],[11,-72]],[[62013,17619,0],[4,-18]],[[62017,17601,0],[6,-60]],[[62023,17541,0],[4,-9]],[[62027,17532,0],[3,-47]],[[62030,17485,0],[-2,-69]],[[62028,17416,0],[0,-11]],[[62028,17405,0],[0,-4],[-1,-48]],[[62027,17353,0],[3,-70]],[[62030,17283,0],[4,-73]],[[62034,17210,0],[-7,-122]],[[62027,17088,0],[-9,-43]],[[62018,17045,0],[-8,-46]],[[62010,16999,0],[-14,-112]],[[61996,16887,0],[-4,-31]],[[61992,16856,0],[20,-12]],[[62012,16844,0],[18,-88],[3,-26],[0,-68],[-20,-73]],[[62013,16589,0],[-2,-12]],[[62011,16577,0],[-4,-39]],[[62007,16538,0],[-21,-58]],[[63312,18958,0],[2,-22],[-1,-84]],[[63313,18852,0],[1,-41],[3,-96]],[[63317,18715,0],[1,-29],[0,-12]],[[63318,18674,0],[-6,-42],[-1,-72],[-1,-17],[-1,-30],[-5,-42],[-14,-56],[-22,-69]],[[63268,18346,0],[14,-3],[9,-2]],[[63291,18341,0],[1,-3],[3,-5]],[[63295,18333,0],[14,0],[13,-1]],[[63322,18332,0],[20,-8],[-1,-14],[44,-9],[74,-31],[81,-35]],[[63540,18235,0],[11,-5],[3,-2]],[[63554,18228,0],[6,-11],[1,-5]],[[63561,18212,0],[19,-8],[34,-12]],[[63614,18192,0],[19,-6],[18,-6]],[[63651,18180,0],[67,-12],[1,0]],[[63719,18168,0],[61,-14],[64,-10]],[[63844,18144,0],[48,4],[2,0]],[[63894,18148,0],[31,4]],[[63925,18152,0],[5,1],[5,0]],[[63935,18153,0],[4,-20]],[[63939,18133,0],[7,-23],[-24,-111],[-9,-36],[1,-19],[-7,-50],[-6,-18],[-5,-14],[-4,-24],[-3,-18],[-1,-16],[-2,-42],[-5,-26],[-2,-23],[1,-32],[-2,-19],[2,-10],[3,-14],[4,-38],[0,-44],[-2,-27],[-5,-14],[-5,-5],[0,-12],[5,-5],[-10,-57],[-12,-37],[-3,-11],[-11,-67],[-13,-81],[-7,-32],[-17,-29],[-3,-11],[-11,1],[-16,-34],[-37,-74],[17,-4],[-4,-44],[-14,-26],[-10,-46],[2,-5],[-1,-17],[-17,-74],[-3,-13],[-8,-20],[-15,-34],[-15,-46],[-13,-23],[-12,-31],[-16,-34],[-20,-48],[-19,-53],[-11,-18],[-12,-28],[-14,-31],[-19,-48],[-18,-41],[-5,-13],[-14,-102],[-13,-51],[-18,-64]],[[63468,16147,0],[-24,-22],[-28,-10]],[[63416,16115,0],[-17,1],[-14,2]],[[63385,16118,0],[-16,4],[-18,4]],[[63351,16126,0],[-42,13],[-55,13]],[[63254,16152,0],[-27,15],[-19,10]],[[63208,16177,0],[-21,13]],[[63187,16190,0],[-11,7],[-8,5]],[[63168,16202,0],[-3,3],[-28,20]],[[63137,16225,0],[-2,1],[-16,11]],[[63119,16237,0],[-12,11],[-18,14]],[[63089,16262,0],[-15,14],[-6,6]],[[63068,16282,0],[-9,7],[-12,8]],[[63047,16297,0],[-8,5],[-23,17]],[[63016,16319,0],[-8,10],[-8,9]],[[63000,16338,0],[-8,14],[-1,4]],[[62991,16356,0],[-26,35],[-28,28],[1,-7]],[[62938,16412,0],[-16,-5],[-13,-4]],[[62909,16403,0],[-23,-7]],[[62886,16396,0],[1,-7],[5,-35]],[[62892,16354,0],[2,-18],[1,-3]],[[62895,16333,0],[8,-60],[33,-245]],[[62936,16028,0],[-55,24],[-71,32]],[[62810,16084,0],[-3,2],[-1,0]],[[62806,16086,0],[-4,-18],[-1,-7]],[[62801,16061,0],[2,-2],[9,-6]],[[62812,16053,0],[4,-7],[5,-7]],[[62821,16039,0],[6,-15],[3,-13]],[[62830,16011,0],[0,-5],[1,-8]],[[62831,15998,0],[-2,-12]],[[62829,15986,0],[-8,-58],[-1,-6]],[[62820,15922,0],[-1,-18],[-41,-189]],[[62778,15715,0],[-40,10],[-150,36]],[[62588,15761,0],[-78,7],[-89,8]],[[62421,15776,0],[-8,1],[-155,15]],[[62258,15792,0],[-5,0],[-15,2]],[[62238,15794,0],[-62,6],[-78,8]],[[62098,15808,0],[-49,-2]],[[62049,15806,0],[-10,0],[-1,1]],[[62038,15807,0],[-3,0],[-53,1]],[[61982,15808,0],[-105,10],[-26,1]],[[61851,15819,0],[-31,11],[-1,0]],[[61787,16109,0],[0,1],[5,15]],[[61900,16325,0],[10,12],[7,8]],[[61917,16345,0],[22,42],[47,93]],[[61986,16480,0],[11,29],[10,29]],[[62007,16538,0],[2,16],[2,23]],[[62011,16577,0],[1,3],[1,9]],[[62012,16844,0],[-15,10],[-5,2]],[[61992,16856,0],[3,21],[1,10]],[[61996,16887,0],[6,44],[8,68]],[[62010,16999,0],[5,32],[3,14]],[[62027,17088,0],[1,13],[6,109]],[[62034,17210,0],[-3,59],[-1,14]],[[62030,17283,0],[-1,22],[-2,48]],[[62028,17405,0],[0,2],[0,9]],[[62030,17485,0],[-2,22],[-1,25]],[[62023,17541,0],[-2,25],[-4,35]],[[62017,17601,0],[-2,11],[-2,7]],[[62013,17619,0],[-10,70],[-1,2]],[[61994,17792,0],[0,39],[1,51]],[[62008,17925,0],[-1,36],[-1,53]],[[62006,18014,0],[-1,13],[0,10]],[[62005,18037,0],[1,33],[0,5]],[[62006,18075,0],[-1,7],[-1,8]],[[62370,19176,0],[50,-21],[159,-49],[202,-30],[13,-5],[61,-22],[121,-71],[42,-19],[46,-20],[30,-10],[134,7],[51,13],[33,9]],[[63385,16118,0],[31,-3]],[[63468,16147,0],[97,-12],[43,-4],[28,-3],[38,-7],[4,31],[12,-10],[21,-16],[32,-11],[-15,-56],[-24,-8],[-16,-43],[-14,-103],[-4,-32],[-1,-47],[7,-77],[18,-67],[8,-13],[-1,-15],[33,-107],[12,-19]],[[63746,15528,0],[-104,-8],[3,-19],[21,-55],[18,-70],[0,-66],[48,-120],[16,-8],[8,-35],[13,-73],[9,-64],[32,-43],[19,-16],[-1,-105],[6,-40],[11,-33],[13,-87],[10,-9],[9,-46],[10,-14],[1,-69],[11,-70],[-3,-51],[6,-40],[18,-60],[16,-107],[5,-22],[-1,-24],[12,-23],[30,-102],[14,-34],[22,-35],[14,-36],[23,-66],[3,-20],[12,-43],[14,-111],[3,-67],[8,-85],[26,-137],[15,-65],[44,-110],[40,-63],[17,-35],[59,-44],[17,-25],[36,-37],[30,-71],[18,-20]],[[64397,12945,0],[-65,-6],[-71,74],[-25,7],[-42,3],[-11,-17],[-29,-15],[-41,-11],[-54,-7],[-46,-12],[-88,-6],[-67,4],[-26,48],[-71,8],[-55,0],[-33,3],[-75,1],[-99,-3],[33,83],[2,19],[-116,46],[-29,16],[-2,7],[-55,-50],[-27,0],[-32,3],[5,15],[-89,61],[-80,-154],[-19,-4],[-62,11],[-14,-4],[-37,0],[-4,12],[-20,12],[-2,27],[-32,6],[-38,-2],[-12,-8],[-31,-9],[-73,4],[-10,165],[4,25],[-6,15],[2,66],[11,29],[10,17],[9,24],[7,31],[-1,20],[-1,7],[-59,44],[-35,41]],[[62087,14240,0],[1,28],[-13,25],[-4,0],[-12,26],[-12,21],[-29,37],[-20,35],[-5,22],[-8,22],[74,88],[51,34],[25,9],[20,17],[15,8],[44,14],[96,42],[79,20],[40,17],[47,1],[2,-4],[10,1],[9,-2],[-73,161]],[[62424,14862,0],[1,12],[10,120],[13,148],[198,-23],[-18,36],[11,10],[26,82],[72,265],[41,203]],[[62820,15922,0],[9,64]],[[62831,15998,0],[-1,13]],[[62821,16039,0],[-9,14]],[[62812,16053,0],[-11,8]],[[62801,16061,0],[5,25]],[[62806,16086,0],[4,-2]],[[62810,16084,0],[126,-56]],[[62936,16028,0],[-41,305]],[[62895,16333,0],[-3,21]],[[62892,16354,0],[-6,42]],[[62909,16403,0],[29,9]],[[62991,16356,0],[9,-18]],[[63000,16338,0],[16,-19]],[[63016,16319,0],[31,-22]],[[63047,16297,0],[21,-15]],[[63068,16282,0],[21,-20]],[[63089,16262,0],[30,-25]],[[63119,16237,0],[18,-12]],[[63168,16202,0],[19,-12]],[[63208,16177,0],[46,-25]],[[63351,16126,0],[34,-8]],[[65124,15749,0],[8,22],[7,20]],[[65139,15791,0],[19,69],[15,25],[43,-7],[37,-4],[27,2],[49,-14],[111,-9],[17,-3],[21,-2],[34,-11],[35,-16],[59,-38],[32,-27],[11,-10],[29,-24],[34,-27],[89,-37],[85,-70]],[[65886,15588,0],[-36,-61]],[[65850,15527,0],[-8,-20],[-7,-18]],[[65835,15489,0],[-42,-114]],[[65793,15375,0],[-32,-83],[-24,-64]],[[65737,15228,0],[-23,-40],[-93,-154]],[[65621,15034,0],[-21,-38],[-30,-55]],[[65570,14941,0],[-25,-59],[-26,-62]],[[65519,14820,0],[-20,-46],[-25,-58]],[[65474,14716,0],[-36,-83]],[[65438,14633,0],[-4,-17],[-2,-11]],[[65432,14605,0],[-8,-20],[-12,-44],[-5,-17],[-6,-19],[-12,-30],[-15,-42]],[[65374,14433,0],[-23,-73],[-5,-18]],[[65346,14342,0],[-9,-1],[-32,-331],[-26,-282]],[[65279,13728,0],[-2,-16],[-6,-49]],[[65271,13663,0],[0,-5],[10,-1]],[[65281,13657,0],[-7,-173],[-1,-15],[-2,-55],[-2,-20],[8,-88],[-5,-58],[48,-289],[-149,22],[-57,6],[-46,4],[-61,0],[-57,4],[-114,18],[-312,-52],[-43,-8],[-84,-8]],[[63746,15528,0],[26,4],[27,0],[31,7],[6,14],[14,28],[20,38],[19,18],[22,35],[12,23],[20,25],[32,21],[50,32],[28,26],[31,44],[24,27],[132,-9],[52,-3],[6,26],[37,46],[54,-11],[63,-15],[161,-54],[186,-60],[54,12],[89,11],[20,-12],[108,-91],[25,-22],[16,30],[13,31]],[[64980,17664,0],[24,-10],[88,-43],[47,-23],[6,-2],[23,-11],[12,-7],[122,-58],[56,-26],[178,-84],[5,-2],[24,-10],[20,-11],[8,-6],[12,-7],[74,-37],[12,-6],[117,-66],[43,-26],[25,-21],[21,-17],[17,-12],[34,-36],[27,-30],[27,-39],[43,-74],[9,-16],[22,-49],[47,-154]],[[66123,16781,0],[28,-71],[12,-30]],[[66163,16680,0],[28,-72],[21,-47],[11,-23]],[[66223,16538,0],[54,-71]],[[66277,16467,0],[38,-35],[14,-23],[19,-33],[47,-29],[39,-29],[12,-7],[16,-12],[57,-34],[98,-57],[34,-25],[9,-9],[11,-9],[27,-9],[118,-41],[16,-16],[56,-21],[14,1],[16,2]],[[66918,16081,0],[1,-39],[-19,-45],[-37,-18],[-90,-2],[-140,-43],[-110,-17],[-97,-29],[-146,-46],[-44,-32],[-58,-60],[-43,-24],[-148,-66],[-70,-40],[-31,-32]],[[65139,15791,0],[-15,-42]],[[63939,18133,0],[12,-8],[216,-132],[142,-87],[15,-4],[37,-15],[5,-3],[94,-38],[148,-60],[18,-6],[86,-59],[165,-109],[5,-6],[55,-35],[17,23],[13,18],[13,52]],[[65572,20017,0],[34,-164],[-19,6],[10,-31],[11,-33],[6,-19],[-1,-32],[-1,-9],[-2,-22],[0,-35],[-96,-73],[-100,-78],[-57,-35],[-29,16],[-19,10],[12,-57],[8,-77],[7,-47],[4,-49],[9,-139],[1,-33],[-3,-117],[1,-25],[4,-13],[2,-31],[-1,-25],[-5,-24],[11,-62],[5,-15],[9,-47],[-19,-27],[-27,-41],[-9,-27],[-25,-5],[-13,-26],[-1,-6],[-2,-17],[-14,-31],[-11,-37],[-29,-38],[-8,-10],[-3,-28],[-5,-12],[-2,-20],[-11,-13],[1,-38],[6,-20],[-36,-98],[-27,-108],[-3,-7],[-18,-78],[-7,-13],[-2,-20],[-9,-19],[-3,-18],[1,-7],[-3,-9],[-7,-21],[-3,-10],[-9,-47],[-8,-27],[-6,-14],[-2,-22],[-19,-42],[-6,-25],[-30,-20],[-5,-35],[-5,-19],[-14,-38]],[[63935,18153,0],[-10,-1]],[[63894,18148,0],[-50,-4]],[[63719,18168,0],[-68,12]],[[63651,18180,0],[-37,12]],[[63614,18192,0],[-53,20]],[[63554,18228,0],[-14,7]],[[63322,18332,0],[-27,1]],[[63295,18333,0],[-4,8]],[[63291,18341,0],[-23,5]],[[63318,18674,0],[-1,41]],[[63317,18715,0],[-4,137]],[[63312,18958,0],[-1,9],[0,6],[83,24],[48,102],[15,39],[8,29],[14,70],[65,250],[11,47],[16,67],[9,3],[76,45],[14,23]],[[65434,20266,0],[0,-44],[-2,-53]],[[67989,18913,0],[-122,-36]],[[67867,18877,0],[-198,-60],[-16,-5],[-41,-20],[-22,-18],[-70,-31],[-49,-15],[-20,-10],[-15,-9],[-20,-1],[-62,-16],[-37,3],[-29,-6]],[[67288,18689,0],[-10,-1],[-7,-2]],[[67271,18686,0],[-18,-7],[-10,-7],[-26,-36],[-22,-24],[-49,-22],[-11,-7],[-18,-6],[-28,-8],[-29,-12],[-31,-18],[-36,-26],[-20,-16],[-19,-11],[-12,-6],[-75,-81],[-16,-21],[-10,-21],[-18,-29],[-6,-38],[-1,-13],[-4,-33],[-4,-35],[-3,-36],[-3,-11],[1,-18],[8,-31],[6,-33],[19,-33],[12,-24],[5,-20],[4,-34],[4,-21],[1,-36],[2,-16],[2,-23],[1,-12],[-6,-73],[9,-53],[-4,-41],[3,-36],[-6,-9],[-1,-39],[-11,-28],[-12,-45],[-4,-38],[-10,-41],[-2,-27],[-5,-17],[-4,-9],[-33,-71],[-22,-32],[-16,-12],[-11,-12],[-25,-27],[-15,-21],[-75,-107],[-77,-107],[-74,-101],[-15,-21],[-17,-25],[-45,-69],[-59,-95],[-69,-107],[-38,-60]],[[66163,16680,0],[-40,101]],[[68239,18733,0],[126,-268]],[[68365,18465,0],[29,-61]],[[68811,16787,0],[-15,-46],[-16,-64],[-8,-12],[-36,-117],[-33,-115],[-16,-60],[-27,-117],[-1,-8],[-41,-201],[-6,-17],[32,-18],[7,-5],[0,-18],[4,-16],[2,-16],[0,-13],[-3,-50],[-2,-60],[0,-28],[-7,-31],[-6,-42],[-64,7],[-17,7],[-74,4],[-3,-71],[-86,-9],[-176,-11],[-64,-4],[-104,-3],[-215,-4],[-15,-22],[-32,-61]],[[67789,15566,0],[-47,32],[-110,62],[-12,-11],[-30,12],[-9,12],[-27,17],[-25,45],[-17,29],[-40,43],[-25,23],[-18,24],[-18,13],[-115,69],[-89,52],[-80,44],[-32,17],[-27,19],[-33,10],[-12,4],[-22,11],[-19,6],[-19,-11],[-45,-7]],[[66277,16467,0],[-45,58],[-9,13]],[[67271,18686,0],[17,3]],[[67867,18877,0],[60,18],[62,18]],[[67789,15566,0],[-12,-27],[42,-19],[27,-45],[113,-44],[106,-24],[68,-18],[42,-13],[-10,-43],[-6,-28],[-26,-143],[-9,-111],[-10,-52],[2,-58],[13,-47],[69,-90],[43,-50]],[[68241,14754,0],[-14,-21],[-44,-75],[-61,-107],[-50,-92],[-53,-119],[-52,-128],[-29,-65],[-24,-60],[-51,-139],[-74,-83],[-13,-25],[-91,-117],[-85,-103],[-69,-80],[-65,29],[-61,25],[-78,-54],[-107,-86],[-34,-13],[-70,-70],[-85,-73],[-86,-103],[-96,-104],[-21,-30],[-21,-18],[-35,-25],[-9,-21],[-1,-13],[-20,-16],[-74,-42],[-34,13],[-62,40],[-124,87],[-72,45],[-35,33],[-26,36],[-29,34],[-10,57],[13,24],[-9,25],[-20,57],[-6,37],[-16,28],[-13,32],[-27,48],[-51,69],[-45,99],[-128,-16],[-148,-11],[-234,-3],[-74,2],[-188,-9],[-49,4]],[[65271,13663,0],[8,65]],[[65346,14342,0],[28,91]],[[65432,14605,0],[6,28]],[[65474,14716,0],[45,104]],[[65519,14820,0],[51,121]],[[65570,14941,0],[51,93]],[[65737,15228,0],[56,147]],[[65835,15489,0],[15,38]],[[69914,16264,0],[-96,-162],[-56,-98]],[[69762,16004,0],[-14,-30]],[[69748,15974,0],[-22,-55],[-19,-47],[-20,-48],[-21,-50],[-19,-48]],[[69647,15726,0],[-20,-50]],[[69627,15676,0],[-20,-50],[-21,-47]],[[69586,15579,0],[-20,-54],[-20,-48]],[[69546,15477,0],[-20,-52]],[[69526,15425,0],[-19,-47]],[[69507,15378,0],[-19,-45],[-19,-53],[-28,-79]],[[69441,15201,0],[-19,-29],[-24,-33]],[[69398,15139,0],[-21,-34]],[[69377,15105,0],[-94,-179],[-148,-217],[0,-15],[-22,-6],[-41,-64],[-45,-79],[-62,19],[7,21],[-71,23],[-53,9],[-302,88],[-43,7],[-184,65],[-24,17],[-19,17],[-35,-57]],[[71828,17487,0],[-14,-65],[-11,-45],[-34,-128],[-19,-101],[-2,-65],[14,-154],[-4,-94]],[[71742,16731,0],[-8,-43],[-24,-64],[-89,-119]],[[71621,16505,0],[-78,-48]],[[71543,16457,0],[-45,-53]],[[71406,16278,0],[-11,-14]],[[71395,16264,0],[-28,-15],[-42,-4]],[[71279,16247,0],[-136,42]],[[71076,16289,0],[-48,-10],[-47,-91],[-37,-1],[-49,-15]],[[70895,16172,0],[-293,-80],[-358,-102]],[[70244,15990,0],[-250,-70],[-10,11]],[[69984,15931,0],[-45,43],[-126,39],[-51,-9]],[[71030,17738,0],[2,5]],[[69967,14596,0],[-41,33],[-90,51],[-29,22],[-42,35],[-38,37],[-25,28],[-12,8],[-43,32],[-28,21],[-17,12],[-45,31],[-43,30],[-32,24],[-7,10],[-30,41],[-34,45],[-34,49]],[[69398,15139,0],[12,16],[11,17],[14,21],[6,8]],[[69507,15378,0],[4,10]],[[67869,12215,0],[128,-96],[169,-131],[76,-26],[294,-101],[349,-112],[195,-149],[163,-26],[735,26],[783,23],[29,1],[2,-13],[2,-13],[-15,-154],[9,-55],[1,-60],[18,-149],[10,-88],[4,-57],[27,-33],[105,-81],[27,-33],[107,-86],[51,-62],[44,-77],[27,-36],[7,-28],[9,-47],[-17,-56],[-59,-59],[-17,-35],[-43,-28],[-49,-38],[-72,-85],[-2,-14],[-76,-83],[-48,-48],[-50,-39],[-14,-8],[-14,-6],[-44,-38],[-12,-34],[-31,-29],[-20,-26],[-15,-6],[-97,-31],[-35,1],[-49,18],[-191,94],[-51,48],[-17,10],[-127,12],[-80,36],[-216,6],[-25,-11],[-13,1],[-71,24],[-83,-7],[-208,42],[-109,-3],[-60,16],[-34,5],[-45,-15],[-74,3],[-102,13],[-83,41],[-297,59],[-27,-27],[-19,-46],[-63,-195],[-3,-68],[-8,-15],[18,-253],[-5,-26],[-18,-38],[-15,-11],[-30,-42],[-63,-115],[-33,-41],[-6,-18],[-29,-44],[-33,-73],[-21,-31],[-38,-29],[-70,-27],[-67,-37],[-25,-8],[-76,9],[-114,39],[-97,121],[-80,96],[-69,67],[-28,55],[-27,39],[-42,49],[-67,91],[-54,67],[-67,79],[-114,188],[-27,77],[-30,45],[-1,-1],[-45,65],[-48,80],[-29,62],[-18,49],[-91,69],[-20,20],[-29,20],[-116,61],[57,72],[263,373],[818,1185]],[[62038,15807,0],[11,-1]],[[62098,15808,0],[140,-14]],[[62238,15794,0],[20,-2]],[[62258,15792,0],[163,-16]],[[62588,15761,0],[190,-46]],[[62424,14862,0],[-23,-3],[-308,-151],[-264,-142],[-367,-190]],[[61462,14376,0],[118,489]],[[61580,14865,0],[38,168]],[[61819,15830,0],[32,-11]],[[61982,15808,0],[56,-1]],[[70203,14384,0],[37,-31],[221,-256]],[[70461,14097,0],[281,-323],[193,-178]],[[70935,13596,0],[129,-128],[469,-457]],[[71533,13011,0],[1062,-1036]],[[73265,11731,0],[51,10],[45,30]],[[73361,11771,0],[27,6],[57,34]],[[73445,11811,0],[19,16]],[[73496,11863,0],[428,-9],[23,0],[-20,-52],[-42,-196],[-10,-2],[-9,11],[-43,45],[-41,24],[-43,20],[-75,3],[-81,-28],[-24,-24],[-19,-52],[-72,-58],[-34,-17],[-80,-40],[-119,-72],[-165,-76],[-123,-61],[-33,-105],[-36,-85],[-43,-82],[-12,-18],[-20,-37],[-299,133],[-73,27],[-115,48],[-102,72],[-105,42],[-156,135],[-207,137],[-88,84],[-82,176],[-81,216],[-14,74],[-63,106],[-152,169],[-117,87],[-8,6],[-51,77],[-45,29],[-29,22],[-64,49],[-21,15],[-41,82],[41,-82],[-50,38],[-98,85],[-12,-8],[-138,134],[-69,46],[-20,6],[-41,27],[-26,27],[-34,53],[-147,116],[-82,65],[-115,95],[-93,111],[-5,11],[-9,20],[-37,51],[-50,77],[-84,117],[-54,114],[-8,18],[-32,94],[-41,103],[-32,58],[-87,101],[-83,76],[-24,12],[-40,-3],[-4,12],[57,15],[140,16],[209,-38],[76,-2],[9,3],[47,48],[78,27],[19,-1],[28,-4],[124,8]],[[67968,48795,0],[54,-142],[13,-33],[8,-21]],[[67441,48890,0],[-2,1],[4,-24]],[[67183,48168,0],[-24,24]],[[67159,48192,0],[-33,28]],[[67126,48220,0],[-79,74]],[[67047,48294,0],[-61,51]],[[66986,48345,0],[-69,45]],[[66917,48390,0],[-32,18]],[[66885,48408,0],[-18,9],[-51,21]],[[66816,48438,0],[1,24]],[[66817,48462,0],[-19,15]],[[66798,48477,0],[-107,25]],[[66691,48502,0],[-16,2]],[[66675,48504,0],[-22,3]],[[66653,48507,0],[-44,1]],[[66609,48508,0],[-83,-6],[-62,-14]],[[66464,48488,0],[-45,-13]],[[66419,48475,0],[-17,-7],[-43,-17]],[[66359,48451,0],[-38,-22]],[[66321,48429,0],[-37,-23]],[[66284,48406,0],[-31,-23]],[[66253,48383,0],[-16,-16]],[[66237,48367,0],[-51,-49]],[[66186,48318,0],[-32,-39],[-22,-37],[-22,-47],[-22,-77]],[[66088,48118,0],[-8,-53]],[[66080,48065,0],[-96,31]],[[65984,48096,0],[-199,66]],[[65785,48162,0],[-66,22]],[[65719,48184,0],[-82,28]],[[65637,48212,0],[-22,7]],[[65615,48219,0],[-83,30]],[[65532,48249,0],[-200,77]],[[65332,48326,0],[-11,5]],[[65321,48331,0],[-37,13],[-12,5],[-63,23]],[[65209,48372,0],[-17,57],[-17,57]],[[65175,48486,0],[17,104],[10,72]],[[65202,48662,0],[9,53],[7,45]],[[65218,48760,0],[15,68],[7,32]],[[65211,49225,0],[13,23],[9,15]],[[65233,49263,0],[21,25],[55,66]],[[65309,49354,0],[15,12],[1,0]],[[65537,49527,0],[39,20],[113,56]],[[65780,49641,0],[59,20],[48,18]],[[66374,49844,0],[14,2],[15,2]],[[67573,47827,0],[38,-35],[82,-77]],[[68000,47186,0],[-175,20],[-3,1]],[[67195,47264,0],[-14,0],[-188,1]],[[66801,47255,0],[-5,0],[-25,-4]],[[66688,47126,0],[-36,74],[-41,84]],[[66611,47284,0],[-40,-12],[-158,-47]],[[66413,47225,0],[-32,-8],[-9,-3]],[[66205,47219,0],[-82,1],[-38,1]],[[66069,47221,0],[-99,2],[-23,0]],[[65894,47224,0],[-8,1],[-8,0]],[[65866,47226,0],[-26,3],[-16,1]],[[65811,47231,0],[-29,3],[-16,1]],[[65766,47235,0],[-81,4],[-3,0]],[[65510,47205,0],[-2,43],[0,6]],[[65508,47254,0],[-13,57],[-30,126]],[[65465,47437,0],[-15,43],[-15,38]],[[65435,47518,0],[-17,38],[-6,15],[-5,11],[-12,26]],[[65395,47608,0],[-15,33],[-7,13]],[[65234,47900,0],[1,7],[7,87]],[[65332,48326,0],[140,-54],[60,-23]],[[65532,48249,0],[7,-3],[76,-27]],[[65637,48212,0],[2,0],[80,-28]],[[65785,48162,0],[73,-24],[126,-42]],[[66080,48065,0],[5,31],[3,22]],[[66186,48318,0],[30,30],[21,19]],[[66253,48383,0],[4,3],[27,20]],[[66321,48429,0],[30,18],[8,4]],[[66419,48475,0],[1,0],[44,13]],[[66609,48508,0],[37,-1],[7,0]],[[66653,48507,0],[2,-1],[20,-2]],[[66691,48502,0],[59,-14],[48,-11]],[[66817,48462,0],[-1,-11],[0,-13]],[[66885,48408,0],[26,-14],[6,-4]],[[66986,48345,0],[35,-30],[26,-21]],[[67126,48220,0],[3,-3],[30,-25]],[[75825,27259,0],[-5,-433],[-24,-282]],[[75796,26544,0],[0,-100],[0,-4],[-1,0]],[[75795,26440,0],[-10,0],[-19,2],[-56,4],[-1,0],[6,-144],[1,-23],[4,-114],[0,-18]],[[75687,25938,0],[13,-10],[12,-15]],[[75721,25898,0],[7,-22]],[[75728,25876,0],[-1,-210],[-3,-368],[-25,-80],[-18,-59],[-9,-29],[-25,-74],[-12,-37]],[[75490,24476,0],[-11,-75]],[[75479,24401,0],[-1,-1]],[[75478,24400,0],[-43,-69]],[[75368,24269,0],[-3,-2],[-23,-15]],[[75305,24236,0],[-23,-1],[-180,13]],[[75059,24250,0],[-59,8],[-55,5]],[[74669,24319,0],[-77,25],[-93,27]],[[74285,24473,0],[-3,20],[-11,-31]],[[74052,24530,0],[6,14],[49,111],[9,19]],[[74116,24674,0],[49,114],[55,137]],[[74346,25232,0],[-1,1],[-26,10]],[[75748,27795,0],[41,28]],[[75789,27823,0],[7,-125]],[[75796,27698,0],[16,-251],[10,-148],[3,-40]],[[44863,51963,0],[24,4],[41,-15]],[[44928,51952,0],[80,-21],[82,-18]],[[45090,51913,0],[19,-1],[12,-1]],[[45121,51911,0],[48,1],[11,1],[10,0],[125,7]],[[45315,51920,0],[14,0]],[[45329,51920,0],[43,10],[13,-22],[80,-5],[27,-2]],[[45492,51901,0],[43,-9],[14,-1],[28,-1]],[[45577,51890,0],[46,-7],[18,-4],[11,0],[85,-1]],[[45737,51878,0],[66,-3]],[[45803,51875,0],[56,-5],[51,-2],[66,-3]],[[45976,51865,0],[10,2],[9,2]],[[45995,51869,0],[-9,-74],[-2,-11]],[[45984,51784,0],[-1,-14],[-3,-33]],[[45980,51737,0],[-6,-90],[-7,-60],[-4,-35]],[[45963,51552,0],[-9,-74]],[[45954,51478,0],[-18,-87],[0,-1],[0,-55],[330,-457],[-33,-44]],[[46233,50834,0],[-14,10],[-27,35]],[[46192,50879,0],[-35,23],[-19,1],[-43,31],[-23,14],[-25,23]],[[46047,50971,0],[-34,7],[-11,-6]],[[46002,50972,0],[-42,15],[-17,7]],[[45943,50994,0],[-97,-32],[-34,25]],[[45812,50987,0],[-17,24],[-18,-1]],[[45777,51010,0],[-84,-5]],[[45693,51005,0],[-8,-30],[7,-25]],[[45692,50950,0],[-214,-25]],[[45478,50925,0],[-113,13],[-24,0]],[[45341,50938,0],[-17,-1],[-25,8],[-61,2],[-65,-2]],[[45173,50945,0],[-34,15],[-5,-12]],[[45134,50948,0],[-66,-17]],[[45068,50931,0],[-38,-5],[-36,-12]],[[44994,50914,0],[-412,98],[-285,68],[-188,45]],[[44109,51125,0],[-60,4],[-100,1],[5,75],[-83,5],[-1,-22],[-2,-25],[-121,7],[-130,3],[-30,-101],[-31,-78],[-66,20],[-21,-58],[-128,40],[-94,30],[-13,5],[-64,162],[42,38],[59,101],[10,32],[13,60],[-1,62],[-12,62],[-26,62],[-21,34],[-17,23],[-49,56],[-43,45],[-44,40],[-49,40],[-62,47],[-71,50],[-78,48],[-104,59],[-117,59],[-112,54],[-39,18],[-53,20],[-85,28],[-85,24],[-103,20],[-79,11],[-46,4],[-77,2],[-86,0],[0,26],[10,76],[5,15],[39,19],[107,51],[247,113],[15,221],[10,158],[389,-102],[346,-154],[1039,-528],[281,-112],[285,-114],[48,-113],[-40,119],[113,-11],[16,5],[105,-3],[13,5]],[[44994,50914,0],[6,-1],[31,12],[37,6]],[[45134,50948,0],[5,11],[34,-14]],[[45341,50938,0],[25,0],[112,-13]],[[45692,50950,0],[-7,24],[8,31]],[[45777,51010,0],[18,0],[17,-23]],[[45943,50994,0],[18,-7],[3,2],[38,-17]],[[46047,50971,0],[25,-24],[23,-14],[43,-31],[20,-1],[34,-22]],[[46233,50834,0],[33,43]],[[46266,50877,0],[54,-43],[53,-13],[35,-17],[24,-17],[75,-87],[1,-23],[0,-19],[53,-22],[19,-6],[24,10],[55,-15],[61,-9],[52,12],[17,-4],[9,25],[74,-20],[134,-24],[79,-19],[84,-33],[41,-24],[79,-49],[75,-66],[46,-40],[123,-107],[-36,-206],[25,-209],[20,-191],[-4,-93],[-8,-57],[-30,-73],[-59,-154],[-19,-66],[-12,-60],[-31,-103],[9,-83]],[[47388,48972,0],[-213,-340],[-84,-145]],[[47091,48487,0],[-1,11],[-53,41],[-84,95],[-3,11],[-21,27],[-21,36],[-10,9],[-26,23],[-22,22],[-21,28],[-36,28],[-59,35],[-34,32],[-18,24],[-28,26],[-68,38],[-50,24],[43,81],[-136,62],[-27,-32],[-73,9],[-38,-26],[1,-26],[-38,-91],[-9,-1],[-14,3],[-31,17],[-39,14],[-45,17],[-6,14],[-3,3],[-70,-9],[-124,-14],[-101,-10],[-212,11],[0,-17],[-16,1],[-6,-6],[-5,-9],[-2,-13],[1,-19],[-4,-5],[-7,-7],[-9,-10],[-9,-14],[-47,19],[7,54],[-143,35],[-102,24],[-130,24]],[[45142,49076,0],[29,23],[1,8],[0,7],[-45,62],[-28,39],[-126,128],[-22,21],[-17,4],[-62,41],[-78,67],[5,17],[40,137],[21,75],[24,89],[16,96],[12,65],[-1,34],[-6,109],[-14,115],[-40,144],[-22,80],[-28,24],[-153,117],[-175,139],[-61,50],[-17,14],[-59,64],[-89,78],[-138,202]],[[44109,51125,0],[188,-46],[285,-68],[412,-97]],[[46082,43957,0],[-120,34]],[[45962,43991,0],[7,20],[45,117],[45,118],[46,122],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-2,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,2],[-1,0],[0,1]],[[46091,44383,0],[-1,2]],[[46090,44385,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,3],[7,28],[17,56],[31,111],[28,111],[24,93],[-66,11],[-48,8],[-61,6],[-18,-7],[-27,1],[-11,19],[-23,5],[-11,2],[-1,89],[1,132],[2,139],[0,15],[1,146],[1,25],[0,18],[-5,10],[-8,15],[-8,16],[-60,113],[-50,93]],[[45803,45660,0],[47,12],[-47,-12]],[[45803,45660,0],[153,394],[-5,8],[-8,14],[-14,24]],[[45929,46100,0],[109,47],[57,29],[73,35],[139,68],[69,34],[30,9],[60,16],[83,22],[34,7],[76,14],[81,14],[27,2],[17,2],[168,40],[1,6],[91,42],[120,74],[122,61],[629,237],[119,33],[169,15],[96,0]],[[48299,46907,0],[58,-1]],[[48357,46906,0],[229,-7],[1,20]],[[46090,44385,0],[0,-1],[1,-1]],[[45962,43991,0],[-41,11],[-66,17],[-38,10],[-29,54],[-49,22],[-87,29],[-76,26],[-73,16],[-24,5],[-19,1],[-19,4],[-35,3],[-5,-32],[-15,2],[1,5],[-42,18],[-85,19],[-31,3],[-49,16],[-31,11],[-24,8],[-34,6],[-55,21],[-29,9],[-82,26],[-29,10],[-22,7],[-36,12],[-97,25],[13,55],[8,126],[12,34],[-41,9],[-60,5],[-73,12],[-18,5],[0,98],[0,10],[8,5],[-18,72],[-10,38],[-30,41],[-16,22],[-27,29],[-75,-25],[-43,-2],[-98,-34],[-38,-32]],[[44235,44823,0],[5,84],[-23,38],[23,4],[75,11],[66,14],[75,21],[115,52],[24,12],[50,28],[25,16],[98,92],[-3,3],[9,10],[-1,3],[2,3],[-3,4],[3,5],[-1,1],[-25,47],[-8,34],[-5,25],[-7,23],[-22,47],[-13,20],[-72,150],[-31,63],[-77,75],[-22,9],[-29,4],[-25,27],[36,3],[-76,158],[-20,42]],[[44378,45951,0],[-2,12],[-2,40],[66,293],[149,271],[168,237],[192,247]],[[44949,47051,0],[44,-28],[92,11],[7,-6],[196,-190],[37,31],[54,56],[88,93],[37,33],[76,40],[40,-34],[49,-42],[88,-73],[-23,-35],[121,-111],[27,-26],[30,-27],[17,-16],[43,-40],[-112,-153],[-194,-266],[-2,-17],[1,-28],[0,-36],[1,-13],[0,-23],[-14,-194],[54,31],[89,47],[134,65]],[[47091,48487,0],[-197,-212],[-117,-128],[-108,-103],[-74,-73],[8,-11],[-85,-81],[-88,-67],[-52,-39],[-18,-13],[-144,-75],[-312,-66],[-60,-14],[-201,-80],[-177,-38],[-33,-7],[-272,-96],[-48,-37],[-35,-23],[-129,-273]],[[44378,45951,0],[-28,-4],[-5,-7],[-52,-9],[-28,8],[-28,35],[-55,71],[-25,49],[-23,73],[-12,49],[-9,2],[-26,36],[-10,22],[-16,27],[-24,53],[-19,59],[-12,51],[-33,55],[-11,28],[-10,30],[2,49],[-3,43],[7,17],[14,57],[3,27],[1,28],[-11,24],[-43,30],[-42,38],[-49,26],[-106,8],[-91,1]],[[43634,46927,0],[24,11],[8,20],[24,59],[-43,11],[-38,12],[-56,20],[-33,16],[-53,27],[-39,22],[-18,13],[-11,11],[-9,12],[-9,13],[-7,14],[-6,16],[-3,21],[0,14],[2,24],[6,16],[8,16],[7,10],[8,10],[10,9],[14,12],[17,9],[19,8],[32,8],[21,-1],[16,-2],[126,-21],[25,-3],[26,0],[21,1],[14,3],[22,7],[17,5],[19,6],[28,13],[10,8],[21,18],[295,308],[210,218],[-274,167]],[[44085,48088,0],[53,22],[21,-9],[66,2],[98,16],[27,4],[16,11],[21,21],[29,23],[57,34],[78,67],[68,66],[27,27],[55,42],[12,10],[58,19],[25,22],[75,90],[14,21],[14,6],[31,48],[55,77],[52,78],[7,14],[5,84],[-18,7],[40,59],[9,13],[20,39],[34,61],[8,14]],[[48004,47147,0],[337,-88],[110,-28]],[[48357,46906,0],[-38,1],[-20,0]],[[47388,48972,0],[130,58],[28,-15],[119,-65],[57,-38],[277,-162],[27,-16]],[[44235,44823,0],[-33,21],[-8,3],[-4,5],[-10,7],[-20,-2],[-20,5],[-93,9],[-51,15],[-30,-2],[-59,22],[-37,9],[-40,10],[-5,-15],[-7,-22],[-26,-88],[-13,-32],[-6,-15],[-12,-53],[-31,-65],[-9,-11],[-30,-14],[-16,-20],[-16,-102],[-10,-26],[-275,54],[-1,34],[0,33],[7,2],[3,61],[16,110],[5,34],[3,20],[-16,3],[-147,21],[-87,12],[-37,4],[-133,17],[-61,8],[-294,42],[-238,33],[-162,11]],[[42232,44961,0],[-28,23]],[[42204,44984,0],[-35,35]],[[42169,45019,0],[7,23],[-13,19],[-30,47]],[[42133,45108,0],[-26,49]],[[42107,45157,0],[-11,21],[1,6],[8,21],[-18,48]],[[42087,45253,0],[-71,-9]],[[42016,45244,0],[-100,-4],[0,6],[-22,2]],[[41894,45248,0],[-11,-2]],[[41883,45246,0],[-10,24],[-3,7],[-6,22],[15,2],[30,5],[17,4],[43,22],[29,16],[155,110],[9,7],[99,178],[110,199],[53,89],[120,243],[32,43],[2,7],[45,126],[5,15]],[[42628,46365,0],[97,47],[27,44],[25,40],[23,21],[44,76],[84,78],[164,41],[50,14],[125,36],[76,42],[127,48],[122,47],[70,-11],[-28,39]],[[41883,45246,0],[-36,-9],[-14,-3]],[[41833,45234,0],[-54,-5]],[[41779,45229,0],[-49,-2],[-86,3]],[[41644,45230,0],[-58,3],[-92,4],[-53,1],[-122,7],[-24,2]],[[41295,45247,0],[-77,7],[-68,10],[-20,5],[-38,12],[-62,28],[-39,21],[-32,19]],[[40959,45349,0],[-20,11],[-39,22]],[[40900,45382,0],[-166,93]],[[40734,45475,0],[-48,26],[-99,56],[-35,12]],[[40552,45569,0],[-32,7]],[[40520,45576,0],[-32,-3],[-38,-5],[-165,-27]],[[40285,45541,0],[-199,-30],[-74,-7],[-57,1],[-38,4],[-21,3],[-66,15],[-23,9],[-53,21],[-38,16],[-118,50],[-88,43],[-71,35],[-76,37]],[[39363,45738,0],[-4,145],[-1,34],[-4,162],[-4,158],[-2,78],[-1,36],[7,175],[-7,58],[-10,93],[-17,64],[-7,52],[-21,123],[-12,82],[-3,11],[-9,54],[-68,407],[5,32],[34,126],[5,36],[4,32],[10,46],[11,30],[21,52],[18,94],[23,105],[314,-53],[135,-33],[127,-40],[114,-37],[467,-174]],[[40488,47686,0],[408,-154],[404,-151],[247,-93],[92,-39],[80,-40],[67,-32],[114,-65],[95,-61],[120,-84],[116,-92],[103,-96],[105,-105],[223,-221],[-34,-88]],[[40488,47686,0],[213,227],[246,262],[175,186],[69,74],[556,0],[1039,8],[403,4],[10,0],[58,-45],[58,-32],[110,-54],[90,-41],[133,-51],[45,-7],[79,-1],[47,17],[48,-28],[75,-42],[38,-21],[105,-54]],[[53300,42381,0],[3,-19],[3,-21]],[[53306,42341,0],[-24,-7]],[[53282,42334,0],[-28,-24]],[[53254,42310,0],[-13,-20]],[[53224,42244,0],[-109,-24],[0,-6]],[[53052,42049,0],[-59,-151]],[[52974,41847,0],[-47,-125],[-11,-32],[-90,34]],[[52826,41724,0],[-170,-349],[-70,-143],[202,-642],[41,-132],[-78,-29]],[[52751,40429,0],[-72,-27],[-185,20]],[[52020,40433,0],[-256,210]],[[49834,41859,0],[-2,3],[0,4],[0,1],[0,1],[0,1],[0,2],[0,2],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,2],[1,2],[1,0],[0,1],[0,1],[1,2],[0,1],[1,1],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,2],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,2],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[2,1],[1,1],[1,0],[1,0],[1,2],[1,0],[1,1],[1,0],[1,1],[58,41],[28,39],[9,19],[10,35],[2,33],[-19,67],[-69,131],[24,11],[-7,15],[386,197],[138,-35],[54,57],[90,95],[100,104],[405,-217],[341,-153],[102,28],[28,-24],[62,-48],[16,24],[311,-192],[24,-26],[4,8],[49,83],[3,6],[15,26],[8,14],[26,70],[10,48],[5,20],[16,76],[10,45],[12,48]],[[52388,42697,0],[156,34]],[[52544,42731,0],[74,34],[72,39],[24,8],[15,7]],[[51923,42715,0],[79,-61]],[[49693,41921,0],[-21,44]],[[48305,43356,0],[0,2],[1,0]],[[63412,36109,0],[-202,51],[-212,251],[-55,-19]],[[62943,36392,0],[-65,109],[-24,39],[-68,77],[-54,89],[-32,81],[-17,44],[-67,119],[-83,143],[-5,8],[-25,35],[-52,77],[-24,28],[-34,45],[-26,29],[-63,74],[-23,29],[-145,149],[-64,44],[127,83],[28,22]],[[62227,37716,0],[189,150],[22,17]],[[62438,37883,0],[-212,254],[-116,15],[-41,9],[-113,83],[-27,-22],[-125,-159],[-46,-79],[-16,-34],[-20,-15],[-19,-10],[-41,-5],[-17,2],[-27,3],[-11,1],[-31,2],[-115,51],[-82,47]],[[62003,38752,0],[8,5],[53,-102],[47,-89]],[[62111,38566,0],[135,-197],[79,-113],[131,-148],[52,-58],[91,-100],[92,-111],[68,-86],[34,-43],[28,-31],[99,-113],[127,-140],[96,-105],[150,-172],[141,-155],[50,-56],[178,-199],[71,-76],[43,-49]],[[62788,34370,0],[-1,39],[-22,93],[16,94],[57,141],[41,76],[11,22]],[[62890,34835,0],[22,-7],[110,180],[15,45],[11,18],[14,26],[34,65]],[[63365,34884,0],[2,-2],[39,-31]],[[59815,35111,0],[41,2],[143,-15],[103,-13],[27,-4],[152,-13],[78,-11],[53,-96],[52,7],[15,-32],[19,-69],[2,-67],[-6,-55],[102,-335],[-55,-12],[-28,1],[0,-166],[2,-151],[1,-132],[3,-66],[0,-26],[5,-47],[3,-28],[3,-40],[11,-84],[4,-26],[7,-32],[8,-36],[9,-38],[11,-42],[19,-74],[21,-78],[12,-49],[4,-22],[2,-17],[0,-15],[-4,-27],[-3,-14],[-4,-16],[-9,-18],[-10,-17],[-11,-19],[-9,-11],[-21,-20],[-15,-13],[-18,-18],[-16,-22],[-10,-15],[-8,-16],[-12,-24],[-7,-23],[-3,-14],[-2,-20],[-3,-18],[-1,-9],[-12,-205],[-11,-172],[-10,-134],[-1,-11]],[[60438,32374,0],[-1,-86],[-4,-25]],[[60433,32263,0],[-3,-15]],[[60430,32248,0],[-4,-26]],[[60426,32222,0],[-7,-19]],[[60419,32203,0],[-6,-12]],[[60413,32191,0],[-4,-7],[-6,-5],[-7,-5],[-12,-4],[-10,-2],[-8,2],[-17,6],[-58,-50],[-13,-10],[-7,-7],[-18,16],[-11,14],[-13,19]],[[60229,32158,0],[-1,1],[-9,16]],[[60219,32175,0],[-11,22],[-6,22]],[[60202,32219,0],[-87,-13]],[[60115,32206,0],[-1,0]],[[60114,32206,0],[-9,90],[-3,27],[-9,88],[-12,91],[-13,88],[-17,106],[-8,50],[-19,99],[-99,-77],[-127,-101],[-81,-63],[-72,-55],[-4,-4],[-49,-38]],[[59592,32507,0],[-4,-2],[-20,-17]],[[59568,32488,0],[-65,-50],[-13,-2],[-1,1]],[[59489,32437,0],[-11,13]],[[59478,32450,0],[-22,83]],[[59456,32533,0],[-62,128],[-2,5]],[[59392,32666,0],[-42,88],[-20,62]],[[59330,32816,0],[-1,2],[-1,5]],[[59328,32823,0],[-102,-25],[-11,-21],[-25,-22],[-43,-13],[-49,2],[-24,6],[-15,3],[-23,12],[-110,-72],[-36,-1],[-15,10],[-19,20],[-29,78],[-8,44],[-21,180],[-11,89],[-14,118],[-1,14],[-8,53],[-10,66],[-13,82],[-14,96],[-23,92],[-18,92],[1,36],[9,30],[19,26],[24,12],[42,12]],[[58781,33842,0],[57,8],[18,2]],[[58856,33852,0],[-24,76],[-21,-2]],[[58811,33926,0],[-82,-11],[-7,-1]],[[58722,33914,0],[-221,-26],[-59,-12],[-79,-6],[-103,-9],[-65,11],[-39,6],[-61,16],[-114,64],[-68,60]],[[57913,34018,0],[-47,48],[-83,83]],[[57783,34149,0],[-78,78]],[[57705,34227,0],[-6,4],[-26,24]],[[57673,34255,0],[6,8],[15,19],[26,32],[37,46],[20,12]],[[57777,34372,0],[40,18],[16,9]],[[57833,34399,0],[48,52],[45,52],[30,5],[6,1],[-13,8],[-129,117],[48,48]],[[57868,34682,0],[44,92],[37,77]],[[57949,34851,0],[7,28]],[[57956,34879,0],[4,7],[2,4]],[[57962,34890,0],[6,12],[17,46],[4,13],[42,-16],[36,-10],[53,-11],[17,-4],[78,-20],[20,-3]],[[58235,34897,0],[5,20],[5,14]],[[56788,35073,0],[39,4]],[[57136,35114,0],[27,3]],[[57163,35117,0],[126,15]],[[57525,35113,0],[91,-25]],[[57616,35088,0],[45,-19]],[[57661,35069,0],[134,-61]],[[57795,35008,0],[0,29]],[[57795,35050,0],[89,-28]],[[57884,35022,0],[80,-40]],[[57993,34968,0],[32,-13]],[[58025,34955,0],[32,-9]],[[58113,34930,0],[41,-4]],[[58154,34926,0],[91,5]],[[58245,34931,0],[-10,-34]],[[57962,34890,0],[-6,-11]],[[57949,34851,0],[-81,-169]],[[57833,34399,0],[-56,-27]],[[57673,34255,0],[32,-28]],[[57783,34149,0],[130,-131]],[[58722,33914,0],[89,12]],[[58856,33852,0],[-75,-10]],[[59328,32823,0],[2,-7]],[[59392,32666,0],[64,-133]],[[59478,32450,0],[-243,-24],[-82,10]],[[59153,32436,0],[-45,-1],[-134,-15],[-161,-133],[2,-13],[-138,-137],[-36,-38],[-73,-72],[-27,-27],[-8,9],[-40,-59],[-111,125],[-107,119],[-45,53],[-209,-161],[-41,-31],[-6,7],[-36,-22],[-30,-23],[-27,37],[-18,17],[-14,6],[-17,2],[-18,-4],[-42,-16],[-16,-4],[-14,0],[-13,2],[-91,35],[-17,2],[-11,-6],[-7,-12],[-8,-25],[-52,18],[-37,15],[-25,-9],[-10,26],[-33,92],[-26,-23],[-45,-51],[-86,-58]],[[57281,32061,0],[-41,-36]],[[57240,32025,0],[-68,-45]],[[57172,31980,0],[-26,-11]],[[57146,31969,0],[-88,-42]],[[57058,31927,0],[-87,190]],[[56971,32117,0],[-24,95]],[[56947,32212,0],[-17,111]],[[56930,32323,0],[-4,125],[-447,-162],[19,-72],[-183,-57]],[[56315,32157,0],[-41,-12]],[[56274,32145,0],[-34,-24]],[[56240,32121,0],[-29,-12]],[[55270,33158,0],[101,-6]],[[55371,33152,0],[41,-2]],[[55412,33150,0],[36,-26]],[[56047,33820,0],[31,-33]],[[56078,33787,0],[40,-42]],[[56118,33745,0],[41,-44]],[[62419,31013,0],[7,-27],[19,-52],[16,-39],[4,-33],[7,-41],[-2,-43],[-5,-42],[-20,-72]],[[62445,30664,0],[-4,-17],[-12,-35]],[[62429,30612,0],[-26,-47]],[[62403,30565,0],[-27,-29],[-36,-31],[-16,-13],[-52,-39],[-37,-17],[-13,-5],[-8,-4],[-68,-22],[-33,-8],[-24,-6]],[[62089,30391,0],[-29,-3]],[[62060,30388,0],[-96,2],[-40,7],[-14,-1],[-19,-1],[-44,2],[-57,7]],[[61790,30404,0],[-57,5]],[[61733,30409,0],[-96,19],[-54,11],[-42,8],[-23,4],[-25,4],[-51,12],[-30,13],[-10,5],[-79,26]],[[61323,30511,0],[-12,-28],[-36,-81]],[[61275,30402,0],[-2,-6],[6,-37],[1,-26],[-2,-16],[-4,-27]],[[61274,30290,0],[-5,-17]],[[61269,30273,0],[-6,-21],[-9,-33],[-3,-13]],[[61251,30206,0],[-1,-10]],[[61250,30196,0],[0,-5],[5,-20],[6,-17],[10,-15],[19,-17],[-137,73],[-15,8],[-6,-5],[-11,-9],[-26,-16],[-29,-19],[-14,-9],[-25,-5]],[[61027,30140,0],[-28,8]],[[60999,30148,0],[-18,-35],[-3,-5],[-13,-22],[-53,-85]],[[60462,30229,0],[-34,13],[-17,6]],[[60342,30273,0],[185,-47],[161,-43],[8,26],[50,167],[-143,45],[-66,32],[-20,16],[-18,15],[-14,16],[-15,24],[-10,21],[-7,19],[-7,23],[-2,18],[-1,22],[1,19],[2,15],[5,14],[4,13],[5,11],[24,81],[11,49],[1,42],[-1,33],[-22,80],[-16,35],[-36,64],[-6,12],[-43,71],[-24,43],[-18,36],[-37,63],[-54,99],[-8,18],[-15,34],[-18,45],[-6,16],[-6,32],[-5,31],[-14,93],[-13,106],[-7,75],[-23,246]],[[60124,32103,0],[-10,103]],[[60114,32206,0],[17,3],[71,10]],[[60219,32175,0],[10,-17]],[[60413,32191,0],[1,2],[5,10]],[[60430,32248,0],[3,14],[0,1]],[[60438,32374,0],[18,2],[111,13],[54,6],[17,-120],[254,30],[42,-105],[229,143],[56,34],[94,-134],[42,0],[-2,-59],[-10,-150],[0,-19],[-1,-120],[0,-18],[1,-66],[0,-6],[2,-12],[3,-33],[1,-21],[10,-68],[8,-39],[6,-29],[17,-49],[20,-49],[27,-47],[20,-27],[-44,-33],[12,-13],[44,-49],[12,-13],[33,-32],[47,-43],[2,-3],[11,-9],[37,-31],[45,-34],[6,-5],[54,-36],[26,-18],[32,-17],[64,-29],[68,-23],[30,-8],[36,-7],[35,-5],[27,-1],[34,2],[29,7],[31,12],[27,13],[22,14],[12,10],[15,12],[128,-93],[87,14]],[[59143,32381,0],[10,55]],[[59145,32344,0],[-2,37]],[[58987,32136,0],[-3,9],[176,56],[1,24],[-13,15],[3,22],[-12,27],[-1,32],[7,23]],[[59164,32193,0],[-177,-57]],[[59187,32201,0],[-23,-8]],[[59189,32239,0],[-2,-38]],[[59237,32412,0],[-58,7],[-4,-39],[4,-27],[-11,-26],[0,-34],[13,-21],[-7,-18],[15,-15]],[[59489,32437,0],[-252,-25]],[[57146,31969,0],[19,8],[7,3]],[[57240,32025,0],[25,21],[16,15]],[[59143,32381,0],[2,-17],[0,-20]],[[58987,32136,0],[38,-99]],[[59025,32037,0],[24,-94],[14,-5],[33,-218],[0,-111],[-4,-56],[7,-19],[-2,-26],[7,-23],[0,-17],[-12,-47],[-16,10]],[[59076,31431,0],[-103,62]],[[58973,31493,0],[-59,105],[-16,29],[-27,32],[-58,13],[-57,-2],[7,-76],[1,-79],[-50,-18],[-27,-9],[-72,-34],[-33,-20],[-9,-8],[-93,-80]],[[58480,31346,0],[-73,-62]],[[58407,31284,0],[-5,-8],[-10,-2],[-4,3],[-136,96],[-86,80],[-56,-55],[-84,-75],[-129,-118],[-139,-128],[155,-46],[26,-36],[85,-119],[48,-72],[3,-11],[-3,-8],[-8,-7],[-8,-2],[-25,-5],[14,-65],[21,2],[17,0],[18,-1],[20,-4],[17,-8],[26,-16],[18,-15],[7,-9],[15,-17],[93,-119],[177,-229],[42,-55]],[[57388,30137,0],[-83,-13]],[[57305,30124,0],[-107,25],[41,-57],[64,-102]],[[57303,29990,0],[-17,-3],[-197,-31]],[[57089,29956,0],[-33,38],[-13,15]],[[57043,30009,0],[-53,52],[-117,120],[-93,92],[-20,22],[-132,155],[-101,118],[-29,36],[-21,12],[-19,6],[-17,2],[-26,-4],[-23,-8],[-16,-11],[-19,7],[39,73],[-218,92]],[[56304,30890,0],[11,6]],[[56331,30901,0],[8,1]],[[56401,30889,0],[18,-4]],[[56489,31356,0],[-10,32]],[[56479,31388,0],[-6,18]],[[56373,31726,0],[-162,383]],[[56240,32121,0],[16,11],[18,13]],[[56274,32145,0],[25,7],[16,5]],[[56930,32323,0],[13,-87],[4,-24]],[[56971,32117,0],[32,-71],[55,-119]],[[57043,30009,0],[46,-53]],[[57089,29956,0],[214,34]],[[57305,30124,0],[102,17]],[[57541,29845,0],[20,-63],[9,-34]],[[57587,29663,0],[-95,-16]],[[57452,29634,0],[-363,-125]],[[57535,28551,0],[38,-85],[114,-245]],[[57753,28077,0],[-17,-4],[-49,-24]],[[57696,27511,0],[2,-19],[5,-35]],[[57494,27352,0],[-4,2],[-38,12]],[[56418,27801,0],[-9,-11]],[[56332,27817,0],[-22,11],[-46,20]],[[56202,27875,0],[-65,19]],[[55472,28034,0],[-130,-2]],[[54688,28556,0],[62,69],[34,38],[109,122],[32,35],[173,207],[75,89],[-13,9],[84,101],[69,85],[83,100],[15,-8],[67,79],[101,121],[81,162]],[[55764,29973,0],[38,171]],[[55812,30191,0],[-62,14]],[[55750,30205,0],[6,22]],[[56162,30748,0],[16,25]],[[54099,30488,0],[44,-89]],[[54143,30399,0],[69,45]],[[54257,30465,0],[14,5],[36,15]],[[54488,30527,0],[49,3],[43,3]],[[53563,29150,0],[-57,156]],[[53506,29306,0],[-6,17]],[[53500,29323,0],[-6,14],[-4,13],[-8,69]],[[53482,29419,0],[-5,39]],[[53477,29458,0],[-14,114]],[[53463,29572,0],[-3,24]],[[53460,29596,0],[-3,29],[-2,132]],[[53455,29757,0],[0,58]],[[53455,29815,0],[1,15]],[[53456,29830,0],[1,69]],[[53457,29899,0],[2,68]],[[53459,29967,0],[1,77]],[[53460,30044,0],[4,102]],[[53464,30146,0],[-13,19]],[[53451,30165,0],[-195,279]],[[53256,30444,0],[51,7]],[[53491,30437,0],[95,-40]],[[51689,32198,0],[6,0],[68,8]],[[51763,32206,0],[13,2],[86,15]],[[51862,32223,0],[105,27],[65,16]],[[52032,32266,0],[94,23],[34,9]],[[52160,32298,0],[47,9]],[[52207,32307,0],[37,7]],[[52244,32314,0],[5,1],[20,4]],[[52269,32319,0],[49,9],[10,2]],[[52328,32330,0],[33,9],[48,15],[26,12]],[[52435,32366,0],[19,12],[6,3]],[[52460,32381,0],[32,23],[29,25],[14,-2],[50,0],[13,0],[32,0]],[[52630,32427,0],[12,0],[5,0]],[[52647,32427,0],[52,1],[98,0],[68,0],[44,-2]],[[52909,32426,0],[81,0]],[[52990,32426,0],[91,0]],[[53081,32426,0],[1,-22],[2,-30]],[[53093,32240,0],[1,-28]],[[53094,32212,0],[-55,-73]],[[53039,32139,0],[-47,-64],[-6,-8]],[[52968,32029,0],[-3,-11]],[[52965,32018,0],[-8,-30],[-4,-18]],[[52953,31970,0],[33,-123]],[[52986,31847,0],[15,-1],[17,-1]],[[53018,31845,0],[11,-1],[17,-1]],[[53045,31811,0],[1,-16],[0,-2]],[[53050,31773,0],[4,-24],[9,-46]],[[53069,31670,0],[6,-14],[26,-58]],[[53101,31598,0],[25,-58],[34,-79]],[[53160,31461,0],[8,-39],[19,-101]],[[53187,31321,0],[-59,-47],[-14,-12],[19,15]],[[53314,31030,0],[49,-37],[22,-17]],[[53412,30937,0],[23,-18],[39,-32]],[[53433,30861,0],[-100,-64],[-12,-7]],[[53296,30774,0],[-53,-34],[-24,-15]],[[53249,30683,0],[8,-12],[23,-33]],[[53280,30638,0],[1,-2],[2,-2]],[[53316,30588,0],[41,-60],[5,-6]],[[53362,30522,0],[0,-1],[-43,-56]],[[53319,30465,0],[-11,-12],[-1,-2]],[[53307,30451,0],[-41,-5],[-10,-2]],[[53256,30444,0],[182,-260],[12,-18],[1,-1]],[[53464,30146,0],[-2,-58],[-2,-44]],[[53460,30044,0],[0,-21],[-1,-56]],[[53459,29967,0],[-2,-61],[0,-7]],[[53457,29899,0],[0,-12],[-1,-57]],[[53456,29830,0],[0,-6],[-1,-9]],[[53455,29815,0],[0,-35],[0,-23]],[[53460,29596,0],[3,-23],[0,-1]],[[53477,29458,0],[3,-23],[2,-16]],[[53500,29323,0],[2,-7],[4,-10]],[[53506,29306,0],[27,-74],[30,-82]],[[53559,29138,0],[-130,69],[26,-14],[-26,14],[-13,6]],[[53416,29213,0],[-10,-35],[-5,-16],[-5,-16]],[[53396,29146,0],[-5,4],[-22,14]],[[53369,29164,0],[-55,11],[-4,0],[-23,5],[-23,4]],[[53264,29184,0],[2,5],[11,34]],[[53161,29239,0],[0,-1],[-10,-41]],[[53137,29198,0],[-1,0],[-9,0]],[[53127,29198,0],[-25,3],[-87,10],[-36,4],[-56,6],[-123,14],[-130,15]],[[52670,29250,0],[-123,19],[-185,28]],[[52362,29297,0],[-110,17]],[[52252,29314,0],[-39,6],[-50,8]],[[52163,29328,0],[-45,7],[-210,259]],[[51908,29594,0],[-1,4],[-2,11]],[[51905,29609,0],[-93,336]],[[51812,29945,0],[-9,6],[-6,4]],[[51797,29955,0],[-7,4]],[[51790,29959,0],[-17,12],[-17,11]],[[51756,29982,0],[-190,126],[-69,46]],[[51497,30154,0],[-89,-104]],[[51408,30050,0],[-13,-10],[-130,-91]],[[51265,29949,0],[-30,87],[-21,34],[-61,36]],[[51153,30106,0],[-44,55]],[[51109,30161,0],[50,41],[39,36]],[[51198,30238,0],[13,13],[10,10]],[[51221,30261,0],[12,13],[28,32]],[[51261,30306,0],[-93,54]],[[51168,30360,0],[24,37]],[[51192,30397,0],[18,30],[14,22]],[[51224,30449,0],[13,33],[3,8]],[[51240,30490,0],[15,47],[12,58],[2,50],[1,30]],[[51270,30675,0],[-3,52]],[[51267,30727,0],[-6,27],[-4,21]],[[51257,30775,0],[-10,39],[-11,39],[-31,116]],[[51205,30969,0],[-7,24],[-21,74],[-9,38],[-5,39],[-5,43]],[[51158,31187,0],[3,42]],[[51161,31229,0],[7,104],[4,69],[0,3],[2,38]],[[51174,31443,0],[2,16],[6,57],[2,25],[8,80]],[[51192,31621,0],[7,61],[2,20]],[[51201,31702,0],[2,0],[1,0],[1,0]],[[51205,31702,0],[2,0]],[[51207,31702,0],[1,0],[1,1]],[[51209,31703,0],[1,0],[1,0]],[[51211,31703,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1]],[[51217,31705,0],[1,0],[1,0],[1,1]],[[51220,31706,0],[1,1],[1,0],[1,1],[1,0]],[[51224,31708,0],[1,1]],[[51225,31709,0],[1,0],[0,1]],[[51226,31710,0],[1,0]],[[51227,31710,0],[1,1],[1,1]],[[51229,31712,0],[1,1],[1,0]],[[51231,31713,0],[1,1],[0,1],[1,1]],[[51233,31716,0],[1,0],[0,1]],[[51234,31717,0],[1,1]],[[51235,31718,0],[0,1],[1,1]],[[51236,31720,0],[1,1]],[[51237,31721,0],[1,1],[0,2]],[[51238,31724,0],[1,1]],[[51239,31725,0],[0,1]],[[51239,31726,0],[1,2]],[[51240,31728,0],[0,1],[0,1]],[[51240,31730,0],[1,1],[0,1]],[[51241,31732,0],[0,1]],[[51241,31733,0],[1,0],[0,1],[0,1]],[[51242,31735,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[51242,31741,0],[0,2]],[[51242,31743,0],[0,1]],[[51242,31744,0],[0,1],[-1,0]],[[51241,31745,0],[0,2]],[[51241,31747,0],[-1,0],[0,1]],[[51240,31748,0],[0,1],[0,1],[-1,1],[0,1]],[[51239,31752,0],[-1,2]],[[51238,31754,0],[0,1]],[[51238,31755,0],[-1,0],[0,1]],[[51237,31756,0],[-1,1],[0,2]],[[51236,31759,0],[-1,0],[0,1]],[[51235,31760,0],[4,6],[6,9]],[[51245,31775,0],[16,21]],[[51261,31796,0],[4,4]],[[51265,31800,0],[-7,19],[-5,11]],[[51253,31830,0],[-4,11],[-2,5],[-4,10],[-82,209],[-28,73],[22,83]],[[51155,32221,0],[4,17],[18,67],[35,130]],[[51212,32435,0],[21,-11],[47,-25]],[[51280,32399,0],[75,-44],[66,-44]],[[51421,32311,0],[43,-31],[46,-33]],[[51510,32247,0],[44,-24],[25,-13]],[[51579,32210,0],[20,-6],[6,-2]],[[51605,32202,0],[17,-3],[39,-1],[28,0]],[[54301,36026,0],[37,15]],[[54440,35903,0],[-46,-89],[-60,-111]],[[53857,34603,0],[-38,12]],[[53547,34172,0],[-55,-113]],[[53298,33731,0],[-98,-154],[-26,-5],[-19,6],[-13,-20],[-94,-79],[-12,-15],[-61,-81],[-4,-11],[-42,-14],[-148,-8],[-75,79],[-91,60],[-142,42],[-152,46],[-111,7]],[[52210,33584,0],[6,41],[3,20]],[[52219,33645,0],[-146,5],[-110,-16],[-51,0],[-117,16],[-173,22],[-179,59],[-55,49],[-30,50],[-25,66],[-5,34],[-14,181],[-1,12],[-10,60],[-4,182],[-9,182],[-32,200],[-22,86],[-59,102],[174,91],[117,55],[45,22],[-7,171],[-4,119],[6,77],[14,44],[16,21],[9,0],[147,-71],[51,-22],[11,-4],[112,-26],[66,-9],[69,-3],[73,4],[69,14],[21,5],[85,20],[106,24],[107,26],[106,30],[108,31],[47,10],[52,7],[53,0],[51,-2],[39,-3],[63,-4],[97,-10],[59,-3],[50,4],[62,10],[53,15],[56,20],[6,28],[17,91],[45,-7],[6,16],[9,20],[9,25],[14,36],[23,25],[21,171],[-3,142]],[[54740,39504,0],[-89,-55],[-1,0]],[[54650,39449,0],[-4,6],[-5,6],[-11,-1],[-5,-11],[-41,-23],[-10,-6],[-6,-8]],[[53382,38694,0],[-118,-64],[-48,-26],[-63,-37]],[[53334,38361,0],[11,-11],[8,-9]],[[53826,38164,0],[-141,-117],[-86,-103],[-16,-39]],[[53583,37905,0],[-15,-45],[-15,-39]],[[53505,37730,0],[-1,-1],[-22,-29]],[[53482,37700,0],[-2,-83],[0,-1]],[[53115,37536,0],[-5,45],[-1,8],[-3,24]],[[52842,37841,0],[-29,55]],[[52782,37899,0],[-77,53]],[[52472,38030,0],[-6,111],[-4,46],[-24,12],[-12,11],[-3,3],[-2,45],[-20,20],[-24,33],[-29,25],[-34,26],[9,5],[14,8],[18,12],[15,10],[2,1],[2,0],[68,49],[77,61],[1,1],[1,1],[1,1],[370,381],[11,13],[80,80],[84,155],[87,134],[104,138],[0,2],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,2],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[2,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[260,-10]],[[53695,39481,0],[20,-4],[14,-3]],[[53824,39471,0],[34,5],[-2,-7]],[[54599,39656,0],[174,76]],[[52494,40422,0],[185,-19],[72,26]],[[52678,40234,0],[-38,42],[-1,0],[-7,15],[-5,9]],[[52706,40217,0],[0,1],[-28,16]],[[52815,40024,0],[0,1],[-5,21],[-14,17]],[[52872,39959,0],[-22,41],[-19,26]],[[52895,39927,0],[0,1],[-23,31]],[[52976,39704,0],[-20,57],[-46,118],[2,6]],[[52825,39415,0],[42,55],[12,31]],[[52429,38918,0],[26,13],[-1,0]],[[52424,38743,0],[-36,93],[21,49],[1,14],[18,12]],[[53429,39632,0],[129,-94],[-128,6],[-45,-4],[-7,-2],[-5,0],[-4,-1],[-4,0],[-5,-1],[-4,-2],[-4,-1],[-5,-1],[-4,-1],[-4,-2],[-5,-1],[-4,-2],[-4,-1],[-5,-2],[-4,-1],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-3],[-4,-2],[-3,-3],[-4,-2],[-4,-2],[-3,-3],[-4,-3],[-4,-3],[-3,-2],[-3,-3],[-4,-3],[-3,-2],[-3,-4],[-4,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-4],[-3,-3],[-2,-4],[-3,-3],[-3,-3],[-3,-4],[-2,-4],[-25,-31],[-40,-57],[-183,-275],[-49,-75],[-55,-66],[-333,-340],[-48,-46],[-36,-34],[-95,-67],[-63,-42],[-16,25],[-1,88],[-18,24],[-1,33],[-22,50]],[[53043,40113,0],[28,-49],[53,-56],[70,-95]],[[52219,33645,0],[-9,-61]],[[53359,33719,0],[-10,-28]],[[53426,33321,0],[-6,-29]],[[53499,32367,0],[-79,97]],[[53372,32458,0],[-115,-13]],[[53257,32445,0],[-176,-19]],[[52990,32426,0],[-35,0],[6,11],[-6,-11],[-46,0]],[[52647,32427,0],[-17,0]],[[52460,32381,0],[-25,-15]],[[52328,32330,0],[-59,-11]],[[52269,32319,0],[-25,-5]],[[52244,32314,0],[-21,-4],[-16,-3]],[[52160,32298,0],[-128,-32]],[[52032,32266,0],[-170,-43]],[[51862,32223,0],[-99,-17]],[[51763,32206,0],[-74,-8]],[[51605,32202,0],[-26,8]],[[51510,32247,0],[-89,64]],[[51280,32399,0],[-68,36]],[[51212,32435,0],[-62,29],[-2,1],[-1,0]],[[51147,32465,0],[-2,2]],[[51145,32467,0],[-1,0]],[[51144,32467,0],[-3,1]],[[51141,32468,0],[-1,0],[-2,1],[-1,0],[-2,2]],[[51135,32471,0],[-1,0]],[[51134,32471,0],[-2,1]],[[51132,32472,0],[-1,0]],[[51131,32472,0],[-2,1]],[[51129,32473,0],[-1,0],[-2,2]],[[51126,32475,0],[-1,0]],[[51125,32475,0],[-2,1]],[[51123,32476,0],[-1,0]],[[51122,32476,0],[-2,1]],[[51120,32477,0],[-1,0],[-1,1],[-1,0]],[[51117,32478,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,2]],[[51107,32483,0],[-1,0]],[[51106,32483,0],[-2,1]],[[51104,32484,0],[-1,0],[-1,0]],[[51102,32484,0],[-1,0],[-2,2]],[[51099,32486,0],[-1,0]],[[51098,32486,0],[-1,0],[-1,0],[-1,1]],[[51095,32487,0],[-1,0]],[[51094,32487,0],[-2,1]],[[51092,32488,0],[-2,0]],[[51090,32488,0],[-1,1]],[[51089,32489,0],[-1,0],[-1,1]],[[51087,32490,0],[-1,0]],[[51086,32490,0],[-2,1]],[[51084,32491,0],[-1,0]],[[51083,32491,0],[-1,1]],[[51082,32492,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[51077,32493,0],[-2,1]],[[51075,32494,0],[-1,0],[-1,1]],[[51073,32495,0],[-1,0]],[[51072,32495,0],[-1,0],[-1,0],[-1,1]],[[51069,32496,0],[-1,0],[-1,1]],[[51067,32497,0],[-2,0]],[[51065,32497,0],[-1,1]],[[51064,32498,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[51059,32499,0],[-1,0],[-1,0],[-1,1]],[[51056,32500,0],[-1,0]],[[51055,32500,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1]],[[51050,32502,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[51045,32503,0],[-1,1]],[[51044,32504,0],[-2,0],[-2,1]],[[51040,32505,0],[-1,0]],[[51039,32505,0],[-1,0],[-1,0],[-1,1]],[[51036,32506,0],[-1,0]],[[51035,32506,0],[-1,0],[-1,0],[-1,1]],[[51032,32507,0],[-2,0]],[[51030,32507,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0]],[[51025,32509,0],[-2,0],[-1,1]],[[51022,32510,0],[-1,0]],[[51021,32510,0],[-2,0],[-2,0],[-1,1]],[[51016,32511,0],[-1,0]],[[51015,32511,0],[-1,0],[-2,0],[-1,2]],[[51011,32513,0],[-1,0],[-1,0]],[[51009,32513,0],[-2,0]],[[51007,32513,0],[-1,1]],[[51006,32514,0],[-2,0]],[[51004,32514,0],[-2,0]],[[51002,32514,0],[-1,0],[-1,1]],[[51000,32515,0],[-2,0]],[[50998,32515,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,1]],[[50991,32517,0],[-3,0]],[[50988,32517,0],[-1,1]],[[50987,32518,0],[-2,0]],[[50985,32518,0],[-1,0]],[[50984,32518,0],[-2,0]],[[50982,32518,0],[-1,1]],[[50981,32519,0],[-2,0]],[[50979,32519,0],[-2,0]],[[50977,32519,0],[-2,0],[-1,1],[-2,0],[-1,1]],[[50971,32521,0],[-3,0]],[[50968,32521,0],[-1,0]],[[50967,32521,0],[-3,0],[-1,1]],[[50963,32522,0],[-3,0]],[[50960,32522,0],[-1,1]],[[50959,32523,0],[-3,0]],[[50956,32523,0],[-1,1]],[[50955,32524,0],[-4,0]],[[50951,32524,0],[-1,0]],[[50950,32524,0],[-3,0]],[[50947,32524,0],[-1,1]],[[50946,32525,0],[-3,0]],[[50943,32525,0],[-1,0],[-4,0],[-1,1]],[[50937,32526,0],[-4,0]],[[50933,32526,0],[-1,0],[-5,0],[-1,1],[-4,0],[-1,1]],[[50921,32528,0],[-5,0]],[[50916,32528,0],[-2,1]],[[50914,32529,0],[-6,0]],[[50908,32529,0],[-1,0]],[[50907,32529,0],[-7,0]],[[50900,32529,0],[-1,1]],[[50899,32530,0],[-7,0]],[[50892,32530,0],[-1,0]],[[50891,32530,0],[-4,0],[-33,-1]],[[50854,32529,0],[-96,-7],[-4,0],[-1,0]],[[50753,32522,0],[-11,0]],[[50742,32522,0],[-1,-1],[-31,0],[-1,1]],[[50709,32522,0],[-11,0]],[[50698,32522,0],[-1,0],[-7,0],[-2,2]],[[50688,32524,0],[-5,0]],[[50683,32524,0],[-1,0]],[[50682,32524,0],[-4,0]],[[50678,32524,0],[-2,1]],[[50676,32525,0],[-4,0]],[[50672,32525,0],[-1,0]],[[50671,32525,0],[-4,0],[-1,1]],[[50666,32526,0],[-4,0]],[[50662,32526,0],[-1,0]],[[50661,32526,0],[-2,0],[-1,1],[-3,0],[-1,1]],[[50654,32528,0],[-3,0]],[[50651,32528,0],[-1,1]],[[50650,32529,0],[-3,0]],[[50647,32529,0],[-1,0]],[[50646,32529,0],[-2,0]],[[50644,32529,0],[-1,1]],[[50643,32530,0],[-2,0]],[[50641,32530,0],[-1,0]],[[50640,32530,0],[-2,0],[-1,1],[-2,0],[-1,1]],[[50634,32532,0],[-2,0]],[[50632,32532,0],[-1,0]],[[50631,32532,0],[-1,0],[-1,1]],[[50629,32533,0],[-3,0]],[[50626,32533,0],[-1,1]],[[50625,32534,0],[-1,0],[-1,0]],[[50623,32534,0],[-2,0]],[[50621,32534,0],[-1,1],[-1,0],[-1,1]],[[50618,32536,0],[-2,0]],[[50616,32536,0],[-1,0],[-1,0],[-1,1]],[[50613,32537,0],[-1,0]],[[50612,32537,0],[-1,0],[-1,0],[-1,1]],[[50609,32538,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0]],[[50603,32540,0],[-2,0]],[[50601,32540,0],[-1,1],[-1,0]],[[50599,32541,0],[-1,0],[-1,0],[-102,34]],[[50495,32575,0],[-66,21]],[[50429,32596,0],[-82,21]],[[50347,32617,0],[-63,14],[-3,0],[-1,1]],[[50280,32632,0],[-4,0]],[[50276,32632,0],[-2,0]],[[50274,32632,0],[-3,0]],[[50271,32632,0],[-1,1]],[[50270,32633,0],[-4,0]],[[50266,32633,0],[-1,0]],[[50265,32633,0],[-5,0],[-1,1],[-4,0],[-1,1]],[[50254,32635,0],[-5,0]],[[50249,32635,0],[-1,0],[-5,0],[-1,1]],[[50242,32636,0],[-6,0]],[[50236,32636,0],[-1,1]],[[50235,32637,0],[-6,0]],[[50229,32637,0],[-1,0]],[[50228,32637,0],[-8,0]],[[50220,32637,0],[-1,1]],[[50219,32638,0],[-10,0],[-1,1]],[[50208,32639,0],[-12,0]],[[50196,32639,0],[-1,0],[-23,0],[-2,1]],[[50170,32640,0],[-19,0]],[[50151,32640,0],[-2,-1],[-22,0],[-1,0]],[[50126,32639,0],[-12,0]],[[50114,32639,0],[-1,-1],[-9,0]],[[50104,32638,0],[-1,-1],[-8,0]],[[50095,32637,0],[-1,0]],[[50094,32637,0],[-7,0]],[[50087,32637,0],[-1,-1]],[[50086,32636,0],[-5,0],[-1,-1],[-6,0],[-1,0]],[[50073,32635,0],[-5,0]],[[50068,32635,0],[-1,-1],[-5,0],[-1,-1],[-4,0]],[[50057,32633,0],[-1,0]],[[50056,32633,0],[-4,0]],[[50052,32633,0],[-1,-1]],[[50051,32632,0],[-3,0]],[[50048,32632,0],[-1,0]],[[50047,32632,0],[-5,0]],[[50042,32632,0],[-1,-1]],[[50041,32631,0],[-3,0]],[[50038,32631,0],[-1,-1],[-3,0],[-2,-1],[-3,0]],[[50029,32629,0],[-1,0]],[[50028,32629,0],[-2,0]],[[50026,32629,0],[-1,-1],[-3,0],[-1,0]],[[50021,32628,0],[-3,0]],[[50018,32628,0],[-1,-1],[-1,0]],[[50016,32627,0],[-73,-15],[-83,-20]],[[49860,32592,0],[-53,-13],[-66,-12]],[[49741,32567,0],[-3,0]],[[49738,32567,0],[-1,-1]],[[49737,32566,0],[-4,0]],[[49733,32566,0],[-1,-1],[-4,0],[-1,-1],[-4,0]],[[49723,32564,0],[-1,0]],[[49722,32564,0],[-4,0]],[[49718,32564,0],[-1,-1],[-3,0],[-1,0]],[[49713,32563,0],[-5,0]],[[49708,32563,0],[-1,-1]],[[49707,32562,0],[-3,0]],[[49704,32562,0],[-1,-1]],[[49703,32561,0],[-4,0]],[[49699,32561,0],[-2,0]],[[49697,32561,0],[-4,0]],[[49693,32561,0],[-1,-1]],[[49692,32560,0],[-4,0]],[[49688,32560,0],[-1,-1],[-5,0],[-1,0]],[[49681,32559,0],[-4,0]],[[49677,32559,0],[-1,-1],[-6,0],[-1,-1],[-4,0],[-1,0]],[[49664,32557,0],[-6,0]],[[49658,32557,0],[-1,-1]],[[49657,32556,0],[-5,0]],[[49652,32556,0],[-1,0]],[[49651,32556,0],[-6,0]],[[49645,32556,0],[-1,-1]],[[49644,32555,0],[-5,0]],[[49639,32555,0],[-1,-1],[-6,0],[-1,-1],[-7,0]],[[49624,32553,0],[-1,0]],[[49623,32553,0],[-5,0]],[[49618,32553,0],[-1,-1]],[[49617,32552,0],[-7,0]],[[49610,32552,0],[-1,0]],[[49609,32552,0],[-8,0]],[[49601,32552,0],[-1,-1]],[[49600,32551,0],[-8,0]],[[49592,32551,0],[-1,-1],[-7,0],[-2,-1],[-8,0],[-2,0]],[[49572,32549,0],[-8,0]],[[49564,32549,0],[-1,-1],[-10,0],[-1,0]],[[49552,32548,0],[-11,0]],[[49541,32548,0],[-1,-1],[-64,-2]],[[49476,32545,0],[-64,-2]],[[49412,32543,0],[-66,-6]],[[49346,32537,0],[-82,-13],[-74,-14]],[[49190,32510,0],[-136,541],[-1,108],[-10,817],[-1,127],[30,202],[188,170],[-363,769],[-133,279],[-50,325]],[[48714,35848,0],[285,1],[1005,227],[565,328],[163,97],[337,210],[229,91],[255,16],[427,-54],[287,-112],[163,-115],[69,-256],[736,-31]],[[49190,32510,0],[-66,-16],[-79,-21],[-61,-20],[-316,-112]],[[48668,32341,0],[-137,-49],[-73,-22]],[[48458,32270,0],[-84,-24],[-23,-3]],[[48351,32243,0],[-24,-2],[-38,-1]],[[48289,32240,0],[-59,10],[-272,104],[-71,27]],[[47887,32381,0],[-62,19],[-79,20],[-60,9]],[[47686,32429,0],[-55,5],[-237,15]],[[47394,32449,0],[-102,0]],[[47292,32449,0],[-134,-29]],[[47158,32420,0],[-230,-69],[-103,-24]],[[46825,32327,0],[-78,-14]],[[46747,32313,0],[-77,-7],[-68,-5],[-279,-12]],[[46323,32289,0],[-107,-7],[-71,-8]],[[46145,32274,0],[-171,-35],[7,661],[-487,64],[-49,64],[-8,127],[12,121],[-183,-6],[-233,28],[-195,35],[-114,-116],[-54,1],[-255,100],[-304,156],[-109,67],[-43,173],[9,209],[63,167],[93,126],[140,154],[143,138],[136,126],[378,438],[439,545]],[[45360,35617,0],[-121,216],[84,186],[142,212],[201,213],[198,201],[240,152],[196,72]],[[46300,36869,0],[205,25],[258,-23],[253,-65],[228,-121],[296,-246],[275,-254],[280,-169],[279,-102],[340,-66]],[[48192,40422,0],[-2,-68],[0,-49]],[[48190,40305,0],[2,-69],[4,-55]],[[48196,40181,0],[8,-55],[4,-25]],[[48242,39948,0],[21,-62],[21,-49]],[[48307,39785,0],[34,-57],[9,-20]],[[48401,39624,0],[30,-40],[17,-23]],[[48448,39561,0],[77,-89],[21,14],[87,-94]],[[48633,39392,0],[16,-17],[24,-21],[44,-52],[11,-19],[3,-9],[4,-10]],[[48735,39264,0],[2,-9]],[[48737,39255,0],[2,-9]],[[48739,39246,0],[1,-9]],[[48740,39237,0],[1,-10]],[[48741,39227,0],[0,-10],[-1,-10],[-3,-13]],[[48737,39194,0],[-5,-9],[-6,-10],[-7,-8],[-7,-7]],[[48712,39160,0],[-12,-7]],[[48700,39153,0],[-9,-4]],[[48691,39149,0],[-10,-2],[-29,-2],[14,-47]],[[48740,39007,0],[21,-36],[78,-27]],[[48974,38892,0],[-50,-144],[-6,-12]],[[49058,38499,0],[-31,-63],[44,-40],[-92,-156],[-80,-190],[-43,-317],[-127,21],[-253,77],[-101,78],[-181,173],[-86,87],[-106,133],[-75,136],[-274,498],[-81,130],[-115,177],[-17,175],[18,285],[-144,361],[80,461],[24,-80]],[[47418,40445,0],[7,68],[65,0],[62,-7]],[[47552,40506,0],[5,-13],[234,-6],[12,-89]],[[47821,40391,0],[49,133],[22,-2]],[[47996,40520,0],[12,28],[107,-13]],[[45360,35617,0],[-1440,653],[87,68]],[[44007,36338,0],[24,35],[68,49],[139,72]],[[44238,36494,0],[65,37]],[[44303,36531,0],[88,43],[140,62],[57,21],[79,82],[41,58],[65,91],[16,60],[51,54],[45,81],[87,72]],[[44972,37155,0],[51,31],[20,39],[-10,51],[-35,68],[-7,13],[-14,41],[505,161],[113,48],[137,61],[130,60],[72,29],[93,19],[86,-3],[24,-55],[74,-175],[278,-651],[-189,-23]],[[46004,42473,0],[-997,-300],[-229,-21],[-520,130],[-69,15],[-55,-4],[-605,-54],[-53,1],[-140,0],[-123,-4],[-27,-2]],[[43186,42234,0],[-44,-9],[-122,-8]],[[43020,42217,0],[-3,41],[-2,28],[-3,33],[-27,51],[-10,26],[-25,60],[-2,26],[-2,40],[-32,192],[-22,306],[-24,203],[244,54],[5,9],[42,400]],[[43159,43686,0],[172,110],[127,-14],[65,32],[170,138],[61,80],[123,153],[53,79],[49,148],[89,104],[91,103],[65,94],[4,13],[4,25],[0,17],[2,44],[1,11]],[[43159,43686,0],[-275,-154],[-83,-55],[-161,-67],[-111,-60],[-135,-66],[-40,-32],[-58,-47],[-61,-20],[-57,-18],[-253,-23],[-50,-5],[-182,52],[-59,12],[-47,6],[-30,-1],[-29,-3],[-19,-3],[-25,-7],[-6,-1],[-93,-36],[-186,-87],[-61,-12],[-419,-42],[-11,28],[-170,325],[-290,236]],[[40248,43606,0],[13,23],[25,56],[10,17],[31,13],[113,5],[63,83],[21,25],[13,25],[-101,67],[-41,109],[-13,13],[-84,-116],[-22,7],[17,64],[-136,29],[-55,6],[28,63],[-9,47],[20,44],[1,40],[9,22],[-14,16],[22,46],[-93,91],[-5,3],[-82,46],[-31,15],[-17,26],[27,71],[45,95],[15,43],[12,34],[2,19],[5,31]],[[40037,44784,0],[59,-8]],[[40096,44776,0],[72,-11]],[[40168,44765,0],[44,-7],[44,-5],[12,-2],[11,1],[20,0]],[[40299,44752,0],[11,0],[9,1]],[[40319,44753,0],[12,1]],[[40331,44754,0],[130,12],[35,9]],[[40496,44775,0],[105,30],[105,35],[41,4],[104,-66]],[[40851,44778,0],[100,-53],[67,-16],[14,-2]],[[41032,44707,0],[191,-26],[77,-12],[90,3]],[[41390,44672,0],[174,34],[61,12],[135,39]],[[41760,44757,0],[50,11],[146,21],[152,20]],[[42108,44809,0],[26,8],[71,27],[66,18],[-39,99]],[[43020,42217,0],[-151,-14]],[[42869,42203,0],[-64,27],[-9,4],[-53,14],[-38,9],[-64,14]],[[42641,42271,0],[-76,-1],[-194,-34]],[[42371,42236,0],[-12,-3],[-111,-30]],[[42248,42203,0],[-74,-22],[-44,-30],[-27,-21],[-14,-15],[-9,-15]],[[42080,42100,0],[-45,-110],[-12,-23]],[[42023,41967,0],[-44,-152]],[[41979,41815,0],[-30,-53],[-29,-16]],[[41920,41746,0],[-22,0],[-11,3],[-87,-61],[-43,-31]],[[41757,41657,0],[-157,-28],[-144,-9]],[[41456,41620,0],[-19,-1],[-71,-32]],[[41366,41587,0],[-27,-13],[-151,-85]],[[41188,41489,0],[-93,-73],[-168,-89],[-145,-37]],[[40782,41290,0],[-167,-54],[-56,-15],[-28,-16],[-27,-4],[-43,-4]],[[40461,41197,0],[-63,-5]],[[40398,41192,0],[-26,-14],[-55,-8]],[[40317,41170,0],[-189,-14],[-56,-2]],[[40072,41154,0],[-9,99],[10,68],[-44,3],[-54,108],[24,12],[-66,145],[44,35],[-117,204],[-31,-29],[-64,73],[37,73],[33,110],[-102,171],[18,14],[-70,91],[-20,26],[-72,93],[-24,-17],[-138,103],[-54,29]],[[39373,42565,0],[91,194],[19,26],[27,23],[45,27],[66,39],[74,64],[92,32],[73,87],[26,14],[4,15],[22,35],[26,42],[58,37],[53,80],[38,52],[49,82],[32,54],[56,103],[24,35]],[[42869,42203,0],[151,15],[122,8],[44,8]],[[43186,42234,0],[19,-74],[145,-120],[-13,-22],[-12,-14],[-23,-18],[-28,-23],[-56,-82],[-47,-95],[-12,-34],[-20,-67],[-1,-43],[23,-257],[31,-76],[42,-45],[14,-35],[8,-19],[-23,-66],[-26,-33],[-21,-44],[0,-21],[2,-18],[10,-28],[-6,-60],[-8,-163],[14,-93],[0,-22],[1,-21],[9,-40],[9,-37],[10,-70],[12,-87],[6,-74],[-26,-102],[14,-18],[99,0],[87,-174],[-38,-65],[-29,-49],[-73,-33],[-55,-27],[-21,-115],[-25,-112],[-5,-25],[-41,-151],[1,-10]],[[43133,39452,0],[-42,1],[-65,3],[-68,9],[-16,1],[-55,1],[-19,1],[-1,-22],[-2,-18],[-14,-2],[-14,-1],[-138,35],[-65,8],[-22,1],[-54,-7],[-33,6],[-20,3],[-54,33],[-45,25],[7,46],[-56,-3],[-118,33],[-21,-80],[-98,10],[-35,5],[-53,2],[-24,3],[-141,-96],[-164,-181],[-54,-40],[-60,-43],[-61,-42],[-32,-9],[-120,-30],[-58,-1],[-22,-3],[-67,0],[-21,9],[-123,47]],[[41085,39156,0],[22,31],[76,49],[-50,301],[-9,52],[-20,72],[-66,-5],[-48,0],[-4,13],[-6,50],[-3,10],[-19,83],[1,61],[-80,28],[-23,15],[-105,72],[-26,14],[-2,11],[9,13],[33,63],[16,46],[-5,10],[9,21],[6,9],[25,30],[30,37],[-17,9],[-47,21],[-92,-140],[-55,28],[49,59],[-51,55],[111,86],[93,70],[-38,51],[-68,144],[-13,33],[-37,55],[-36,49],[-15,22],[-19,33],[-23,44],[-26,53],[-22,22],[-40,-15],[-104,-66],[-25,-17],[-19,-14],[-31,-23],[-20,-11],[-57,-33],[-83,98],[53,44],[61,38],[114,83],[83,38],[20,0],[116,54],[-17,35],[31,22],[-7,68]],[[40615,41237,0],[167,53]],[[40782,41290,0],[144,38],[169,89],[93,72]],[[41188,41489,0],[151,86],[27,12]],[[41456,41620,0],[144,10],[157,27]],[[41920,41746,0],[29,17],[30,52]],[[42023,41967,0],[11,24],[46,109]],[[42248,42203,0],[111,31],[12,2]],[[42371,42236,0],[193,34],[77,1]],[[43133,39452,0],[-1,-78],[11,-29],[1,-32],[37,-160],[42,-36],[38,-117],[7,-151],[-24,-139],[-38,-235],[0,-46],[13,-170],[11,-88],[36,-91],[41,-37],[83,-106],[8,-7],[33,-41],[16,-17],[58,-23],[95,-105],[106,-86],[113,-26],[97,-40],[38,-23],[90,-57],[116,-72],[43,-21],[0,-13]],[[44203,37406,0],[-57,-7],[-91,-12]],[[44055,37387,0],[-61,1]],[[43994,37388,0],[-44,7],[-157,20],[-22,2]],[[43771,37417,0],[-52,1]],[[43719,37418,0],[-57,3],[-59,3]],[[43603,37424,0],[-53,1],[-87,44]],[[43463,37469,0],[-44,32],[-35,23],[-52,17],[-110,-32],[-29,-23]],[[43193,37486,0],[-46,-34],[-72,-69]],[[43075,37383,0],[-150,-161]],[[42925,37222,0],[-67,-47]],[[42858,37175,0],[-20,-28],[-23,-34],[-13,-28]],[[42802,37085,0],[-26,-54],[-72,-91]],[[42704,36940,0],[-17,-29],[-19,-31]],[[42668,36880,0],[65,-54],[20,-11]],[[42753,36815,0],[-128,-32]],[[42625,36783,0],[-50,-13]],[[42575,36770,0],[-102,57],[25,48],[-67,39],[-89,134],[-80,54],[-44,87],[-19,58],[-17,62],[-9,31],[-7,84],[7,42],[0,65],[-1,27],[1,69],[-59,7],[-11,4],[-62,51],[-37,30],[-141,14],[-66,-15],[-35,91],[-180,-42],[-4,46],[-3,57],[-189,18],[-56,20],[-25,10],[-51,24],[-47,14],[-62,36],[-282,236],[-26,23],[-18,14],[-69,57],[-170,177],[-106,112],[-52,53]],[[40422,38664,0],[-26,33],[30,39],[34,41],[44,-10],[15,30],[67,-26],[55,46],[10,12],[36,-54],[74,38],[-66,67],[51,17],[35,-30],[28,20],[35,35],[54,55],[48,47],[119,114],[20,18]],[[42575,36770,0],[-80,-18],[-98,-21],[-95,-10],[-20,-3]],[[42282,36718,0],[-81,-33],[-218,-73]],[[41983,36612,0],[-19,9],[-25,13],[-54,28]],[[41885,36662,0],[-27,8],[-23,-4]],[[41835,36666,0],[-23,-4],[-61,-55]],[[41751,36607,0],[-38,-96],[-7,-63]],[[41706,36448,0],[-19,-52],[-3,-68]],[[41684,36328,0],[-1,-32],[-23,-45]],[[41660,36251,0],[-34,-19]],[[41626,36232,0],[-24,-13],[-15,-10],[-27,-34],[-3,-24]],[[41557,36151,0],[-21,-7],[-86,-18],[-48,-7],[-88,7]],[[41314,36126,0],[-67,7],[-29,7]],[[41218,36140,0],[-69,31]],[[41149,36171,0],[-13,7],[-97,30]],[[41039,36208,0],[-15,4],[-56,15]],[[40968,36227,0],[-85,10],[-36,5],[-56,-1]],[[40791,36241,0],[-14,60],[-21,87],[-18,43],[-20,91],[-54,185],[-27,91],[-19,88],[-44,86],[-69,128],[-11,23],[-17,20],[-71,113],[-10,18],[-22,48],[-34,56],[-19,44],[-9,23],[-16,17],[-35,34],[-25,36],[-19,21],[-54,63],[-97,66],[-85,58],[-115,75],[-184,192],[-50,52],[-61,63],[-28,24],[-25,21],[-51,66],[-25,41],[-9,17],[-36,38]],[[39397,38329,0],[86,60],[24,19],[27,5],[96,-63],[35,-21],[65,-22],[17,-14],[13,-13],[32,25],[32,28],[-33,46],[89,60],[-26,23],[58,76],[76,-75],[35,-32],[53,-56],[21,8],[155,65],[52,64],[50,55],[68,97]],[[44055,37387,0],[91,11],[57,8]],[[44203,37406,0],[-2,-46],[73,-14],[63,-12],[144,4],[123,2],[157,13],[40,2],[4,5],[8,-3],[18,-5],[28,10],[1,-15],[0,-10],[-9,-30],[3,-10],[6,2],[4,-3],[7,0],[8,-12],[-6,-5],[22,-18],[17,-20],[48,-54],[12,-32]],[[44303,36531,0],[-32,-18],[-33,-19]],[[44007,36338,0],[-246,-193],[-77,-75],[-115,-105],[-168,-157],[-40,-51],[-136,-125],[-15,-21],[-21,-39],[-7,-19],[-7,-13],[-7,-25],[-14,-31],[-92,-167],[-37,-112],[-27,-50],[-41,-75],[1,-142],[-12,-34],[-42,-125],[-26,-100],[-3,-27],[0,-27],[-16,-65],[-18,-104],[9,-52],[-11,-116],[-55,-214],[-19,-95],[-34,1],[-54,1]],[[42677,33981,0],[12,52],[12,51],[4,34],[17,122],[-5,15],[3,6],[-73,60],[-49,66],[-4,28],[15,58],[-9,32],[3,41],[3,34],[0,23],[-47,11],[-5,27],[-1,11],[-35,-2],[-69,-6],[-42,16],[-26,10],[-48,-15],[-18,-3],[-31,21],[-24,6],[-31,4],[-43,8],[-32,26],[-5,17],[-16,42],[-13,36],[-41,77],[-19,16],[-30,23],[-13,10],[-39,24],[4,16],[7,47],[-1,9],[-6,13],[-32,68],[-23,22],[3,19],[-1,2],[-15,24],[-25,44],[-58,32],[-51,28],[-1,4],[76,96],[21,26],[8,11],[13,18],[4,6],[15,52],[6,19],[-2,8],[-13,42],[-18,16],[-25,22],[-34,-1],[-14,8],[-8,4],[-20,8],[-43,16],[-21,7],[-34,10],[-81,17],[-2,66],[0,17],[0,85],[27,59],[66,81],[2,59],[-5,10],[-17,28],[-71,82],[-52,-11]],[[41557,36151,0],[4,24],[26,33],[15,10],[24,14]],[[41660,36251,0],[23,44],[1,33]],[[41684,36328,0],[3,67],[19,53]],[[41751,36607,0],[61,54],[23,5]],[[41835,36666,0],[23,3],[27,-7]],[[41885,36662,0],[54,-29],[26,-12],[18,-9]],[[42282,36718,0],[20,2],[95,10],[99,22],[80,17],[49,14]],[[42753,36815,0],[-20,10],[-65,55]],[[42668,36880,0],[20,31],[16,29]],[[42704,36940,0],[72,90],[26,55]],[[42802,37085,0],[13,27],[24,34],[19,29]],[[42925,37222,0],[7,5],[143,156]],[[43193,37486,0],[29,22],[111,33],[51,-18],[35,-23],[44,-31]],[[43463,37469,0],[88,-44],[52,-1]],[[43603,37424,0],[60,-3],[56,-3]],[[43771,37417,0],[22,-3],[157,-20],[44,-6]],[[41404,32962,0],[-30,29],[-57,56]],[[41317,33047,0],[-101,70],[-62,69],[-40,67],[-43,101]],[[41071,33354,0],[-29,60],[-42,91]],[[41000,33505,0],[4,32],[-3,26],[16,104],[10,47],[9,16],[27,49],[3,49],[-3,10],[-70,40]],[[40993,33878,0],[3,87],[1,58]],[[40997,34023,0],[-1,21],[11,5],[18,7],[14,78],[-2,63],[47,91],[5,30],[3,14],[-67,48],[-15,11]],[[41010,34391,0],[-159,250]],[[40851,34641,0],[-27,25],[-62,71],[-38,55],[-29,36],[-51,41],[-33,32],[-4,14]],[[40607,34915,0],[38,62],[45,98],[11,24],[24,86],[24,81],[12,42],[13,48],[24,90],[13,67],[15,77],[7,65],[4,46],[1,63],[1,46],[2,112],[1,51],[1,16],[-22,109],[-5,33]],[[40816,36131,0],[-19,69],[-2,11]],[[40795,36211,0],[-4,12]],[[40791,36223,0],[0,17],[57,1],[35,-5],[77,-8],[8,-1]],[[41039,36208,0],[97,-31],[13,-6]],[[41218,36140,0],[29,-8],[67,-6]],[[42677,33981,0],[-32,8],[-2,-14],[-45,8],[-58,18],[-8,-7],[-32,-41],[-18,-39],[-28,-25],[-15,-24],[-25,-65],[25,-112],[-26,-11],[-48,-27],[-25,-12],[-48,-19],[-63,-12],[16,-46],[25,-36],[13,-21],[15,-15],[27,-45],[35,-29],[25,-58],[8,-24],[23,-21],[21,-44],[13,-8],[95,-190],[-30,-26],[-48,3],[14,-37],[-18,-36],[-18,-21],[-11,-29],[22,-3],[49,-19],[-39,-113],[-46,-43],[-23,-68],[-4,-12],[-1,-23],[-8,-15],[-61,9],[-91,-5],[-23,5],[-17,-26],[-16,7],[-106,49],[-62,-7],[-47,-70],[-130,77],[-33,17],[-61,32],[-6,6],[35,34],[6,25],[-6,-25],[-35,-34],[-52,40],[-106,54],[-19,6],[-8,31],[-142,109]],[[40791,36241,0],[0,-18]],[[40795,36211,0],[2,-10],[6,-121],[18,-104],[-26,-216],[-13,-100],[0,-141],[-9,-204],[14,-11],[-134,-208],[-20,-30],[-43,-52],[-39,-47],[-32,85],[-9,8],[-18,12],[-18,14],[-33,26],[-29,47],[-45,25],[-74,52],[-97,70],[-48,52],[-14,20],[-43,72],[-34,62],[-40,80],[-47,93],[-8,17],[-2,43],[-4,22],[-30,95],[-6,21],[-9,34],[-11,17],[-29,41],[-35,44],[-26,13],[-39,25],[-31,22],[-17,12],[-65,64],[-9,13],[-30,43],[-110,92],[-74,71],[-30,35],[-33,38],[-24,48],[-35,21],[-24,20],[-37,28],[-36,67],[-50,65],[-32,40],[-19,41],[-26,42],[-27,41],[-36,48],[-17,22],[-19,32],[-28,50]],[[38962,37012,0],[-25,37],[-37,56],[-9,15],[-49,85],[-11,17],[-68,78],[-64,76],[-42,-19],[-48,34],[-39,10],[-26,5],[-28,12],[-26,23],[-39,-29],[-26,-17],[-12,-7],[-38,29],[-81,43],[-9,8],[-24,20],[-44,16],[-15,6],[-11,22],[-77,100],[-126,157],[-39,-10],[-13,21],[-42,91]],[[37894,37891,0],[40,36]],[[37934,37927,0],[17,15],[23,35],[50,75]],[[38024,38052,0],[12,22],[25,72],[4,41],[5,27]],[[38070,38214,0],[6,23],[0,52]],[[38076,38289,0],[86,40],[10,5],[10,-3]],[[38182,38331,0],[72,-29],[-35,33]],[[38219,38335,0],[-17,80],[183,51]],[[38385,38466,0],[55,15],[63,16]],[[38503,38497,0],[-8,25],[43,12]],[[38538,38534,0],[41,9],[20,6]],[[38599,38549,0],[49,17],[42,58],[18,-49]],[[38708,38575,0],[45,19]],[[38753,38594,0],[-73,137],[70,38],[26,13],[141,34]],[[38917,38816,0],[38,-74],[58,-52],[134,-122],[74,-69],[37,-32],[28,-26],[31,-30],[80,-82]],[[38917,38816,0],[-62,128],[-34,57]],[[38821,39001,0],[-46,71],[-30,61],[-25,62]],[[38720,39195,0],[-12,52]],[[38708,39247,0],[-95,-23],[-13,16],[-27,86]],[[38573,39326,0],[-7,59]],[[38566,39385,0],[2,23],[-35,241]],[[38533,39649,0],[12,40],[5,69],[6,318],[5,82],[57,161],[78,222]],[[38696,40541,0],[29,28],[187,197]],[[38912,40766,0],[61,76],[98,116]],[[39071,40958,0],[68,80],[34,31],[25,13],[25,26]],[[39223,41108,0],[94,68],[31,10]],[[39348,41186,0],[114,38],[192,-20]],[[39654,41204,0],[149,-35],[99,-8],[34,8]],[[39936,41169,0],[68,-13],[68,-2]],[[40072,41154,0],[56,3],[189,13]],[[40317,41170,0],[55,9],[26,13]],[[40461,41197,0],[43,5],[27,4],[28,16],[56,15]],[[40072,41154,0],[-68,1],[-68,14]],[[39654,41204,0],[-192,19],[-114,-37]],[[39223,41108,0],[-25,-27],[-24,-12],[-35,-32],[-68,-79]],[[38912,40766,0],[-187,-198]],[[38725,40568,0],[-58,43],[-58,-9],[14,51],[34,35],[31,78],[34,81],[6,27],[-85,-16],[6,43],[-71,22],[3,37],[1,3],[12,33],[-7,26],[-33,14],[-39,-44],[-54,-83],[2,-20],[-10,-45],[-15,-30],[-32,-6],[-12,-19],[-102,3],[-10,-35],[-116,16],[-9,-41],[-69,20],[25,165],[-73,-2],[20,136],[-3,33],[-1,10],[-81,-12],[-98,-12],[-236,45],[-84,4],[-7,-36],[-43,2],[-21,27],[-283,27]],[[37203,41139,0],[4,12],[-21,259],[-3,44],[-6,2],[-54,26],[-19,55],[-56,238],[-33,74],[-19,99],[-23,57],[-30,117],[-25,104],[-32,72],[-41,237],[-144,-38],[-83,55]],[[36618,42552,0],[175,152],[-14,15],[-49,51],[-17,38],[-5,30]],[[36708,42838,0],[44,76],[0,57],[-10,36]],[[36742,43007,0],[-4,56],[4,38]],[[36742,43101,0],[33,82]],[[36775,43183,0],[44,53],[13,18]],[[36832,43254,0],[19,-13],[194,64],[9,0],[26,2],[27,17]],[[37107,43324,0],[75,26],[93,55]],[[37275,43405,0],[16,-18],[73,-79],[35,32],[85,-50],[25,-14],[-122,-252],[289,-143],[4,-2],[17,-9],[19,-136],[84,-32],[0,-208],[-5,-57],[-11,-52],[-24,-83],[29,-5],[117,-63],[24,-1],[12,29],[6,27],[16,39],[58,30],[32,31],[31,38],[21,31],[26,49],[5,24],[21,33],[42,19],[4,-31],[63,-22],[14,-4],[10,-18],[70,-11],[-5,-17],[-19,-27],[105,-20],[75,5],[31,5],[11,37],[89,-31],[46,6],[8,47],[2,29],[7,58],[18,41],[-2,17],[1,17],[3,14],[9,9],[23,16],[65,25],[50,24],[38,-42],[36,23],[15,-23],[48,-68],[90,68],[60,-37],[-18,-21],[73,-22],[42,-40],[16,24],[95,-49]],[[40285,45541,0],[87,-147],[21,-42],[29,-51]],[[40422,45301,0],[24,-57],[18,-42]],[[40464,45202,0],[12,-21],[4,-3]],[[40480,45178,0],[-43,-22],[-41,-13],[-131,-31],[-21,-4]],[[40244,45108,0],[-85,-25],[-63,-2]],[[40096,45081,0],[-63,-4],[-32,-7]],[[40001,45070,0],[3,-71],[45,1]],[[40049,45000,0],[-4,-102],[-2,-47]],[[40043,44851,0],[-6,-67]],[[37275,43405,0],[19,43]],[[37294,43448,0],[5,11],[25,73],[-8,61]],[[37316,43593,0],[-2,50],[-4,20]],[[37310,43663,0],[26,74],[-11,41],[-6,76],[0,23]],[[37319,43877,0],[-20,86],[38,48],[5,41]],[[37342,44052,0],[4,18],[71,114]],[[37417,44184,0],[11,28],[13,38]],[[37441,44250,0],[14,50],[11,57],[9,133]],[[37475,44490,0],[1,18],[1,14],[23,-4],[515,-78],[182,-46],[29,116],[16,119],[-8,83],[-28,201],[49,54],[-77,111],[-133,216],[-34,179],[38,57],[33,23],[28,13],[25,4],[-27,121],[-40,46],[-15,25],[39,41],[42,122],[133,48],[-65,125],[300,168],[50,15],[35,-32],[222,-248],[17,21],[21,-23],[47,-30],[53,-30],[416,-201]],[[37441,44250,0],[-13,-37],[-11,-29]],[[37417,44184,0],[-72,-114],[-3,-18]],[[37319,43877,0],[-1,-23],[6,-75],[12,-41],[-26,-75]],[[37316,43593,0],[7,-61],[-24,-72],[-5,-12]],[[37107,43324,0],[-27,-16],[-29,1],[-200,-67],[-19,12]],[[36832,43254,0],[-14,-17],[-43,-54]],[[36742,43101,0],[-4,-37],[4,-57]],[[36742,43007,0],[10,-35],[0,-57],[-44,-77]],[[36618,42552,0],[-19,12]],[[36599,42564,0],[-251,302],[-189,192]],[[36159,43058,0],[-333,14],[-22,4]],[[35804,43076,0],[-142,58],[-18,-37]],[[35644,43097,0],[-22,-51],[-18,-53]],[[35604,42993,0],[-1,-17],[4,-15],[7,-14]],[[35614,42947,0],[11,-13]],[[35625,42934,0],[14,-8],[9,-5]],[[35648,42921,0],[-15,-28],[-35,-73]],[[35598,42820,0],[-39,-35],[-34,-18]],[[35525,42767,0],[-14,-4],[-39,8]],[[35472,42771,0],[-65,-28],[-29,-1],[-12,12]],[[35366,42754,0],[-15,-5],[-96,-35],[-90,3]],[[35165,42717,0],[-39,-3],[-86,36],[-17,-7],[-14,-27]],[[35009,42716,0],[-103,76],[-66,47],[-24,52],[-33,69],[-31,202],[13,21],[3,87],[1,71],[-132,189],[-21,11],[-45,17],[-76,29],[-113,65],[-114,67],[-105,72],[-124,89],[-82,77]],[[33957,43957,0],[127,316],[76,151],[161,192],[150,179],[36,41],[10,9],[40,45],[56,60],[12,10],[16,11],[28,15],[18,5],[26,3],[28,-2],[107,-6],[121,17],[20,3],[127,18],[129,18],[129,19],[123,23],[122,23],[129,25],[129,24],[173,25],[-20,103],[184,73],[83,-13],[16,-102],[0,-46],[57,1],[-3,-37],[19,-2],[110,-10],[140,-13],[25,18],[63,-6],[3,-24],[84,-24],[89,-25],[-2,-12],[59,-51],[8,-5],[78,14],[27,-1],[21,-14],[-22,57],[-35,59],[43,32],[175,129],[105,-60],[21,-9],[45,-59],[41,-88],[5,-24],[42,-107],[1,-21],[9,-34],[12,-95],[3,-16],[-5,-34],[-33,-72],[-2,-23],[-4,-28],[-15,-89],[-1,-14],[-1,-19]],[[35009,42716,0],[90,-48],[4,-43]],[[35103,42625,0],[42,-448],[4,-39]],[[35149,42138,0],[-11,-84],[-12,-63],[-26,-59],[-31,6],[-33,-39],[-22,77]],[[35014,41976,0],[-165,147],[-31,28]],[[34818,42151,0],[-61,-25]],[[34757,42126,0],[-30,-99],[-37,-34]],[[34690,41993,0],[37,-168]],[[34727,41825,0],[34,-116],[20,-140]],[[34781,41569,0],[7,-150],[-30,-189]],[[34758,41230,0],[-14,-37]],[[34744,41193,0],[-21,-40],[-7,-31]],[[34716,41122,0],[-24,-70],[-20,-38]],[[34672,41014,0],[77,-43],[-21,-42],[-12,-27]],[[34716,40902,0],[-12,-28],[-2,-29],[-11,-31],[-14,-35],[-80,21]],[[34597,40800,0],[-84,24],[-10,-52]],[[34503,40772,0],[-40,8]],[[34463,40780,0],[3,29],[1,41],[-26,-44]],[[34441,40806,0],[-27,-20],[-43,-1],[-68,206]],[[34303,40991,0],[-19,60],[-16,3],[-18,46]],[[34250,41100,0],[-1,36],[30,59]],[[34279,41195,0],[39,44],[-9,37]],[[34309,41276,0],[-82,-11],[-14,-13],[-25,-10],[-16,-24]],[[34172,41218,0],[-19,-40],[-6,-92],[-55,13]],[[34092,41099,0],[-7,91]],[[34085,41190,0],[-67,19],[-10,-11],[-15,-16],[11,-60],[-8,-30]],[[33996,41092,0],[-12,-29],[-2,-31]],[[33982,41032,0],[-121,12]],[[33861,41044,0],[-53,12],[-20,11],[-16,11],[-21,6],[-249,109]],[[33502,41193,0],[23,108],[-66,17],[-61,2]],[[33398,41320,0],[-39,6],[-77,0],[-105,29],[-11,24],[-171,37],[-67,4]],[[32928,41420,0],[-45,-8],[-25,-14]],[[32858,41398,0],[-4,-15],[-48,3],[-127,17],[-51,14]],[[32659,41533,0],[-14,29],[1,51],[-25,110]],[[32613,41855,0],[1,15],[-34,0]],[[32580,41870,0],[-59,78],[9,38]],[[32530,41986,0],[264,309],[-7,134]],[[32751,43265,0],[104,51],[165,-39],[88,-258],[85,-6],[224,-13],[36,23],[16,6],[50,-6],[92,8],[61,11],[19,2],[30,283],[-27,126],[14,35],[41,109],[-43,117],[74,41],[135,178],[26,35],[16,-11]],[[33398,41320,0],[61,-3],[66,-17],[-23,-107]],[[33502,41193,0],[249,-110],[22,-6],[16,-10],[19,-12],[53,-11]],[[33861,41044,0],[113,-11],[8,-1]],[[33996,41092,0],[8,29],[-11,60],[15,16],[10,11],[67,-18]],[[34092,41099,0],[55,-14],[6,92],[19,41]],[[34309,41276,0],[9,-38],[-39,-43]],[[34279,41195,0],[-30,-60],[1,-35]],[[34250,41100,0],[18,-47],[16,-3],[19,-59]],[[34441,40806,0],[27,44],[-2,-42],[-3,-28]],[[34503,40772,0],[10,51],[84,-23]],[[34597,40800,0],[80,-22],[14,35]],[[34691,40813,0],[7,-2],[115,-22],[47,64],[110,-32],[-8,-35],[51,-6],[89,13],[40,-2],[19,-127],[73,-85],[108,-99],[83,-84],[48,-56],[175,-124]],[[35648,40216,0],[-19,-6],[-110,-109],[-11,-34],[-6,-23],[-65,-56],[-70,-31],[-104,93],[-56,-74],[-14,-11],[-17,-14],[-88,-82],[75,-122],[-80,-32],[-21,-15],[-26,22],[-43,-21],[-1,-19],[-17,-19],[-18,-20],[-68,-37],[-45,-62],[-12,-17],[-66,35],[-165,64],[-21,-38],[-61,20],[-34,26],[-76,36],[-47,35],[-32,-56],[30,-35],[-76,-86],[-60,51],[-52,-53],[97,-130],[-41,-26],[-130,-17],[203,-179],[63,-105],[-37,-89],[-8,-18],[-336,85],[-91,-67],[-325,13],[-256,66]],[[33311,39059,0],[-14,27],[-9,17],[-33,26],[-27,12],[-182,79],[-97,126],[-135,-11],[-38,-4],[-229,145],[-23,15],[-73,11],[-206,180],[-39,-21],[-97,-60],[-170,-103]],[[32628,41417,0],[51,-15],[127,-17],[49,-2],[3,15]],[[32858,41398,0],[26,14],[44,8]],[[37203,41139,0],[-47,2],[-17,-87],[-30,-27],[-4,-53],[-12,-68],[-4,-71],[7,-32],[-7,-19],[-15,-155],[18,-50],[14,-69],[-13,-32],[4,-17],[-7,-27],[-103,-13],[-110,-252],[-150,-104],[-133,251],[-35,1],[-87,6],[36,-363],[-267,-320]],[[36241,39640,0],[-164,180],[-30,33],[-120,133],[-150,93],[-129,137]],[[34691,40813,0],[12,32],[1,28],[12,29]],[[34672,41014,0],[20,37],[24,71]],[[34716,41122,0],[8,31],[20,40]],[[34758,41230,0],[30,188],[-7,151]],[[34781,41569,0],[-20,139],[-34,117]],[[34690,41993,0],[37,33],[30,100]],[[34818,42151,0],[31,-29],[165,-146]],[[35149,42138,0],[-3,32],[-1,6],[-42,449]],[[35103,42625,0],[-4,42],[-89,49],[14,26],[16,7],[86,-36],[39,4]],[[35366,42754,0],[12,-13],[29,1],[65,29]],[[35472,42771,0],[40,-9],[13,5]],[[35598,42820,0],[35,72],[15,29]],[[35648,42921,0],[-9,4],[-14,9]],[[35614,42947,0],[-7,13],[-3,16],[0,17]],[[35604,42993,0],[18,52],[22,52]],[[35644,43097,0],[19,36],[141,-57]],[[35804,43076,0],[16,-12],[339,-6]],[[36159,43058,0],[189,-193],[251,-301]],[[38725,40568,0],[-29,-27]],[[38696,40541,0],[-78,-223],[-57,-161],[-5,-82],[-5,-317],[-6,-70],[-12,-39]],[[38533,39649,0],[35,-242],[-2,-22]],[[38573,39326,0],[27,-87],[13,-16],[95,24]],[[38720,39195,0],[25,-63],[30,-61],[46,-70]],[[38821,39001,0],[34,-58],[62,-127]],[[38917,38816,0],[-141,-35],[-26,-13],[-70,-38],[73,-136]],[[38708,38575,0],[-18,48],[-42,-58],[-49,-16]],[[38599,38549,0],[-20,-7],[-41,-8]],[[38503,38497,0],[-63,-17],[-55,-14]],[[38385,38466,0],[-183,-52],[17,-79]],[[38182,38331,0],[-10,2],[-10,-5],[-86,-39]],[[38076,38289,0],[0,-53],[-6,-22]],[[38024,38052,0],[-49,-76],[-24,-35],[-17,-14]],[[37894,37891,0],[-19,21],[-21,14],[-14,5]],[[37840,37931,0],[-11,8],[-25,31],[-27,19]],[[37777,37989,0],[-25,18],[-76,81]],[[37676,38088,0],[-21,-7],[-48,56]],[[37607,38137,0],[-41,34],[-27,17],[-15,19]],[[37524,38207,0],[-33,27],[-38,35]],[[37453,38269,0],[23,15],[-48,61],[46,11],[-15,31],[-56,62],[-64,43],[-19,1],[-37,22],[-19,33],[-34,32],[18,24],[-77,51],[-99,101],[27,38],[-42,36],[65,65],[-262,223],[-103,67],[-151,70],[44,60],[-112,32],[-71,36],[-144,152],[-100,59],[-17,11],[16,15],[19,20]],[[37453,38269,0],[-18,15],[-32,-10]],[[37403,38274,0],[-106,-51],[-18,-26]],[[37279,38197,0],[-123,0],[-37,-3]],[[37119,38194,0],[-46,-5],[-103,-10],[-21,54]],[[36949,38233,0],[-6,24],[-7,19]],[[36936,38276,0],[-4,14]],[[36932,38290,0],[-9,69],[-2,58]],[[36921,38417,0],[-57,-17],[-18,-3]],[[36846,38397,0],[-56,-12]],[[36790,38385,0],[-155,-31],[-15,-26]],[[36620,38328,0],[-19,-34],[20,-221],[-51,-182],[-2,-8],[-14,0]],[[36554,37883,0],[-75,-137]],[[36479,37746,0],[-58,-74],[-43,-49]],[[36378,37623,0],[-95,70],[-60,49]],[[36223,37742,0],[-82,48],[-61,41],[-501,-304],[16,-52],[-55,-28],[5,-17],[-32,-39]],[[35513,37391,0],[-23,-50]],[[35490,37341,0],[-20,-69],[-12,-58]],[[35458,37214,0],[-80,28]],[[35378,37242,0],[-120,-15],[51,-87]],[[35309,37140,0],[89,-151]],[[35398,36989,0],[-131,-88]],[[35267,36901,0],[-21,-14]],[[35246,36887,0],[-6,26],[-13,55]],[[35227,36968,0],[-387,-112]],[[34840,36856,0],[-100,-28]],[[34740,36828,0],[-39,12]],[[34701,36840,0],[-252,80]],[[34449,36920,0],[-77,24]],[[34372,36944,0],[1,7],[21,61],[-104,118],[-61,69],[-310,348],[-31,12],[-159,68],[-205,67],[-54,18]],[[33470,37712,0],[-59,-12],[-94,79],[-79,66],[-71,134],[231,19],[-44,119],[10,162],[68,51],[4,12],[101,299],[-226,418]],[[36949,38233,0],[20,-53],[104,10],[46,4]],[[37119,38194,0],[36,3],[124,0]],[[37279,38197,0],[18,27],[106,50]],[[37403,38274,0],[32,11],[18,-15],[38,-35],[33,-28]],[[37524,38207,0],[15,-18],[27,-17],[41,-35]],[[37607,38137,0],[48,-55],[21,6]],[[37676,38088,0],[75,-81],[26,-18]],[[37840,37931,0],[14,-4],[21,-14],[19,-22]],[[38962,37012,0],[-39,-20],[-22,-13],[-30,-11],[-21,-8],[-38,-27],[-38,-38],[-51,-26],[-37,-12],[-21,4],[-101,-15],[-23,-4],[-77,-11],[-54,-12],[20,-79]],[[38430,36740,0],[-3,-51]],[[38427,36689,0],[-10,-13],[-24,-20]],[[38393,36656,0],[-42,-5],[-41,-37]],[[38310,36614,0],[-48,-17],[-56,-30],[-130,-70]],[[38076,36497,0],[-51,-27],[-37,-22]],[[37988,36448,0],[-58,-17],[-90,-28],[-48,-11]],[[37792,36392,0],[-225,-54],[-65,-68]],[[37502,36270,0],[-42,-10]],[[37460,36260,0],[-6,-37],[-63,-4]],[[37391,36219,0],[-13,31],[-14,35],[-41,65],[-25,10],[-73,31],[-49,-60]],[[37176,36331,0],[-39,-47],[-40,-50]],[[37097,36234,0],[-37,-45],[-59,-11]],[[37001,36178,0],[-12,-15],[-28,-42]],[[36961,36121,0],[32,-4],[102,-11]],[[37095,36106,0],[-18,-46],[-14,-38]],[[37063,36022,0],[-20,-54],[-33,-58]],[[37010,35910,0],[-55,-63],[-35,15],[-30,-155]],[[36890,35707,0],[-86,-97]],[[36804,35610,0],[39,-150]],[[36843,35460,0],[-109,21],[-46,25],[-11,6],[-153,68],[-56,25],[-51,22],[-34,15],[-111,-17],[-51,31],[-79,-19],[-5,29],[-31,8],[-26,8],[-35,9],[-36,9],[-120,31],[-17,4],[-43,12],[-10,6],[-134,119],[-28,23],[-2,49],[-3,22],[-55,18],[-50,15],[-41,13],[-24,0],[-34,1],[-86,-3],[-41,57],[-126,47],[-22,8],[-44,15],[-62,20],[-5,45],[-9,64],[-12,80],[-9,68],[-4,20],[-13,38],[-36,107],[-124,24],[-147,28],[-59,31]],[[34649,36662,0],[52,178]],[[34701,36840,0],[39,-11],[100,27]],[[35246,36887,0],[21,15],[131,87]],[[35309,37140,0],[-51,88],[120,14]],[[35458,37214,0],[11,59],[21,68]],[[35513,37391,0],[32,40],[-5,17],[55,28],[-16,52],[501,304],[61,-41],[82,-49]],[[36378,37623,0],[43,50],[58,73]],[[36554,37883,0],[15,8],[52,183],[-20,221],[19,33]],[[36620,38328,0],[15,27],[155,30]],[[36846,38397,0],[18,4],[57,16]],[[36921,38417,0],[2,-57],[9,-70]],[[36936,38276,0],[7,-18],[6,-25]],[[34372,36944,0],[-17,-124]],[[34355,36820,0],[-5,-46],[-45,24],[-61,35]],[[34244,36833,0],[-73,28]],[[34171,36861,0],[-20,14],[-6,14]],[[34145,36889,0],[-126,56]],[[34019,36945,0],[-30,-36]],[[33989,36909,0],[-95,50]],[[33894,36959,0],[-52,-44]],[[33842,36915,0],[-42,-60],[6,-36],[-16,-20]],[[33790,36799,0],[-127,-128]],[[33663,36671,0],[-4,-5]],[[33659,36666,0],[-10,-8]],[[33649,36658,0],[-164,16]],[[33485,36674,0],[99,-164]],[[33584,36510,0],[14,-27]],[[33598,36483,0],[78,-147]],[[33676,36336,0],[32,-131]],[[33708,36205,0],[6,-15],[-17,-37],[-11,-24]],[[33686,36129,0],[-122,-196]],[[33564,35933,0],[-66,-88]],[[33498,35845,0],[-47,-47],[-17,-59]],[[33434,35739,0],[-12,-4],[-23,-8]],[[33399,35727,0],[-56,73],[-20,30]],[[33323,35830,0],[-133,4]],[[33190,35834,0],[-65,73],[-26,44]],[[33099,35951,0],[-89,149]],[[33010,36100,0],[-61,98]],[[32949,36198,0],[-145,-123]],[[32804,36075,0],[-69,-60],[-3,-6],[-4,-11]],[[32728,35998,0],[-170,-415]],[[32558,35583,0],[-52,6]],[[32506,35589,0],[-314,41]],[[32192,35630,0],[-34,-70]],[[32158,35560,0],[-104,-220]],[[32054,35340,0],[-26,-53]],[[32165,36990,0],[126,-71],[86,78],[172,54],[154,50],[88,64],[37,-31],[102,16],[224,117],[69,217],[50,10],[129,162],[68,56]],[[34145,36889,0],[6,-13],[20,-15]],[[34244,36833,0],[61,-34],[45,-24],[5,46],[263,-143],[31,-16]],[[36843,35460,0],[74,-14],[5,-11],[47,-112],[63,55],[-3,-142],[34,-135],[-14,-37],[-23,-67],[-17,-81],[-17,-78],[-26,-30],[16,-3],[-14,-108]],[[36968,34697,0],[-21,-9],[-82,-39],[-114,-50],[-31,-16],[-30,-14],[-14,-9],[-96,-58],[-15,-12],[-74,-55]],[[36491,34435,0],[-45,-33],[-30,-21],[-13,-18],[-46,-4],[-35,-3],[-24,-3]],[[36298,34353,0],[-53,-15],[-21,-6],[-18,9],[-74,14]],[[36132,34355,0],[-150,-12],[-60,-15],[-6,-13]],[[35916,34315,0],[-62,-4],[-12,0],[-20,0],[-41,-10],[-27,-5],[-89,-36],[-54,-22],[-39,-17],[-37,-18],[-35,-28],[-16,-21],[-63,-90],[-18,-25],[-12,-18],[-4,-8],[-59,-112],[-11,-21],[-5,-17],[-21,-71],[-71,-76],[-29,-31],[-8,-9],[-42,-42],[-33,-32],[-2,-20],[-23,-20],[-14,-25],[-78,-64],[-48,-33],[-69,-46],[-18,-10],[-40,-24],[-20,-11],[-26,-15],[-32,-18],[-15,-10],[-20,-14],[-75,-32],[-62,17],[-103,-26],[-19,-2],[-96,-8],[-9,-4],[-56,-23],[-8,18],[-13,3],[-29,-1],[-78,-23],[-60,-8],[-15,9],[-85,-11],[-35,-4],[-95,-11],[-31,-18],[-11,-6],[-23,0],[-33,-8]],[[33767,33154,0],[135,141],[1,50],[-16,51],[-10,34],[-13,38],[-5,17],[-7,10],[-40,61],[-48,73],[-45,48],[-147,151],[232,109],[185,249],[-40,17],[-30,12],[15,74],[43,256],[47,31],[12,86],[-73,71],[-44,67],[-119,41],[-27,67],[26,27],[17,17],[4,22],[-4,46],[-40,-1],[-24,17],[-51,3],[-29,0],[-108,56],[-14,22],[-26,42],[-20,31],[-11,111],[-5,57],[-12,56],[-13,161],[-1,20],[-5,51],[-12,23],[-17,34],[-29,24]],[[33434,35739,0],[17,60],[47,46]],[[33564,35933,0],[122,197],[11,24],[16,36],[-5,15]],[[33584,36510,0],[-99,165],[164,-16],[10,7]],[[33659,36666,0],[131,133]],[[33842,36915,0],[52,45],[95,-51]],[[38551,36136,0],[0,-22],[-33,-21],[3,-15],[18,-105],[-33,-147],[-98,-63],[-5,-11],[1,-15],[1,-70],[-71,19],[-15,-38],[81,-47],[50,-5],[2,-18],[17,-131],[46,-6],[10,-99],[5,-59],[-53,-104],[-83,12],[-54,-29],[-185,-67],[-279,11],[-154,-8]],[[37722,35098,0],[-138,7]],[[37584,35105,0],[-30,2],[-96,2],[-60,-47]],[[37398,35062,0],[30,-116]],[[37428,34946,0],[-13,-6],[-24,4],[-60,51],[-38,50],[-47,84],[-56,34],[-45,2],[-86,-59]],[[37059,35106,0],[-30,129],[8,146],[-5,-4],[-63,-55],[-47,112],[-4,12],[-75,13],[-39,151]],[[36890,35707,0],[30,154],[35,-15],[55,64]],[[37063,36022,0],[15,38],[17,46]],[[36961,36121,0],[29,42],[11,15]],[[37097,36234,0],[40,49],[39,48]],[[37391,36219,0],[63,3],[6,38]],[[37502,36270,0],[66,68],[224,54]],[[37988,36448,0],[38,21],[50,28]],[[38310,36614,0],[41,36],[42,6]],[[38393,36656,0],[24,19],[10,14]],[[38430,36740,0],[99,6],[57,-236],[-28,-44],[-60,1],[-10,-64],[-10,-24],[-14,-30],[-31,-71],[156,-40],[-38,-102]],[[40607,34915,0],[-44,-41]],[[40563,34874,0],[-12,12],[-9,10]],[[40542,34896,0],[-38,-41],[-353,-271],[-69,-36],[-324,-140],[-274,-84],[-143,25],[-356,5],[-76,-16],[-67,-4],[-48,17],[-85,42],[-140,80],[-31,24]],[[38538,34497,0],[-42,36],[-37,13],[-17,10],[-13,-21],[-15,-23],[-28,-42],[-7,-5],[-22,-11],[-14,-4],[-12,1],[-15,1],[-16,3],[-21,10],[-9,9],[-40,30],[-83,56],[-58,31],[-17,8],[-28,9],[-33,8],[-286,75],[-38,8],[-41,4],[-37,3],[-35,0],[-58,-3],[-177,-22],[-23,-4],[-87,-16],[-42,-7],[-17,-1],[-18,0],[-18,3],[-20,6],[-19,9],[-9,8],[-8,12],[-3,10],[0,9],[-19,-5],[-37,-3]],[[37019,34702,0],[-16,65]],[[37003,34767,0],[6,51],[9,50],[10,54],[12,78],[12,67],[7,39]],[[37428,34946,0],[-8,31],[-22,85]],[[37584,35105,0],[34,-2],[45,-2],[59,-3]],[[38551,36136,0],[113,-20],[79,-5],[87,-6],[82,-6],[29,1],[0,21],[49,0],[48,6],[48,10],[68,25],[76,24],[84,31],[117,45],[132,29],[88,16],[50,9],[41,-2],[33,-6],[20,-9],[49,-29],[34,-21],[41,-37],[87,-8],[154,-10],[155,-12],[148,-12],[107,-8],[65,-6],[147,-23],[34,-2]],[[41010,34391,0],[238,-172],[-161,-236],[-90,40]],[[40997,34023,0],[-4,-145]],[[41000,33505,0],[71,-151]],[[41317,33047,0],[87,-85]],[[41404,32962,0],[-18,-25],[-24,-26],[-16,-27],[-47,30],[-52,-6],[-71,16],[-51,24],[-47,19],[-105,21],[-111,55],[-26,6],[-42,-21],[-84,-41],[-56,-23],[-22,-12],[-42,-13],[-34,-2],[-24,-7],[-15,-6],[-54,-22],[-124,-61],[-82,13],[-87,-46],[-67,-47],[-71,-53],[-25,-18],[-79,-76],[-42,-44],[-180,-257],[-50,-121],[-10,-10],[-19,-56],[0,-25],[-11,-29],[3,-15],[-20,-50],[-29,-129],[2,-31],[-46,5],[-10,2],[0,-40],[5,-56],[-11,-45],[-12,4],[-57,-6],[-14,50],[-22,33],[-37,2],[14,-72],[21,-39],[22,-62],[18,-42],[-16,-28],[-18,12]],[[39409,31565,0],[-3,18],[-10,20],[-43,34],[-40,73],[0,18],[-33,75],[-28,1],[-14,24],[-17,3],[-28,20],[-5,11],[-24,103],[5,24],[-31,56],[5,66],[23,103],[15,0],[-11,56],[-16,35],[-13,27],[-25,-12],[-17,35],[1,33],[49,67],[-227,149],[-15,-9],[-15,-7],[-17,-6],[-18,-1],[-18,0],[-24,6],[-25,16],[-19,21],[-10,24],[-11,91],[-8,179],[-10,266],[17,161],[9,92],[3,90],[0,58],[-2,39],[-12,69],[-11,55],[-19,61],[-17,52],[-31,79],[-30,59],[-28,51],[-40,69],[-45,70],[-55,72],[-31,38],[-8,11],[-3,7],[-2,9],[-1,12],[11,26],[8,13],[48,59],[26,37],[19,24]],[[40542,34896,0],[21,-22]],[[40563,34874,0],[191,-190],[32,-36],[13,-19],[52,12]],[[39409,31565,0],[-88,-242],[-80,9],[-74,42],[-268,92],[6,-68]],[[38905,31398,0],[-30,1],[-112,-2],[-5,-63],[-170,11],[-102,108],[-72,76]],[[38414,31529,0],[-91,67],[-39,29]],[[38284,31625,0],[-64,23],[-94,33],[-27,1],[-106,-22],[-32,-26]],[[37961,31634,0],[-45,-53],[-9,-9]],[[37907,31572,0],[41,-53],[-131,-59],[-69,-62],[-12,33],[-77,-60]],[[37659,31371,0],[-37,17],[-11,73],[-39,125],[10,24],[0,34],[-16,38]],[[37566,31682,0],[24,23],[9,8]],[[37599,31713,0],[15,17],[19,40],[2,69],[49,9]],[[37684,31848,0],[7,5],[6,3]],[[37697,31856,0],[40,21],[0,9],[33,29]],[[37770,31915,0],[13,12],[4,4]],[[37787,31931,0],[18,23],[29,60],[-8,5],[-85,72],[-17,14],[-24,11],[-171,145],[-17,27],[-16,14],[-38,54],[-39,46],[-38,70],[-82,10],[-85,61],[-73,29],[-50,-4],[14,-30],[-25,-51],[-6,-66],[-117,29],[-33,15],[-88,16],[-169,48],[1,2],[8,11],[-1,4],[-7,28],[-2,13],[-1,5],[-4,3]],[[36661,32595,0],[-17,10],[-7,20]],[[36637,32625,0],[-12,25],[-12,59]],[[36613,32709,0],[6,19],[44,43],[4,4],[1,1],[10,24],[3,7],[1,4],[18,47],[24,74],[5,31]],[[36729,32963,0],[5,27]],[[36734,32990,0],[-3,57]],[[36731,33047,0],[-83,7],[-20,85],[-4,20],[-8,40],[8,36]],[[36624,33235,0],[2,85],[-33,-7]],[[36593,33313,0],[-71,96]],[[36522,33409,0],[-44,-11],[-115,-32],[-66,-16],[-161,31],[-23,2],[-3,44],[2,38],[17,63],[8,16],[20,21],[38,31],[29,15],[73,51],[2,16],[-62,30],[-44,35],[-49,60],[-14,32],[-26,29],[-38,68],[-8,36],[-53,87],[-33,84],[-3,3],[-11,24],[-7,51]],[[35951,34217,0],[-11,42],[-24,56]],[[35916,34315,0],[-2,9],[8,3],[60,15],[23,2],[127,11]],[[36132,34355,0],[74,-15],[19,-8],[73,21]],[[36298,34353,0],[59,7],[45,6],[14,14],[75,55]],[[36491,34435,0],[89,66],[110,67],[62,28],[109,52],[55,25],[52,24]],[[36968,34697,0],[51,5]],[[38905,31398,0],[39,-208],[229,-258],[168,-270],[216,-452],[75,-277]],[[39632,29933,0],[-330,-30],[-369,105],[-187,53],[-228,12],[-275,4],[-325,3],[-190,316],[-154,52],[-6,-17],[-251,88]],[[37317,30519,0],[284,705],[58,147]],[[37907,31572,0],[54,62]],[[38284,31625,0],[130,-96]],[[36593,33313,0],[33,8],[-2,-86]],[[36624,33235,0],[-7,-36],[8,-40],[4,-19],[8,-37],[3,-14],[7,-38],[40,-2],[30,-2],[14,0]],[[36731,33047,0],[1,-27],[2,-30]],[[36734,32990,0],[-10,-60],[-15,-46],[-2,-5],[-7,-20],[-3,-12],[-11,-36],[-5,-10],[-12,-21],[-2,-3],[-48,-48],[-6,-20]],[[36637,32625,0],[7,-19],[17,-11]],[[36661,32595,0],[7,-20],[1,-2],[7,-22],[-1,-4],[-6,-15],[0,-1],[-2,-1],[-43,-35],[-33,-7],[-41,-57],[-12,-25],[48,-44],[-17,-84],[-89,-63],[5,-28],[-47,-27],[1,-51],[-69,-14],[2,-78],[48,-17],[47,-8],[-28,-48],[-1,-119],[-6,-23],[-2,-36],[1,-49],[6,-26],[1,-23],[-18,-4],[-12,-49],[29,-5],[-11,-52],[29,-17],[97,-39],[-13,-45],[121,-37],[30,-13],[187,-97],[87,-43],[16,-22],[-38,-37],[-24,-17],[-15,-13],[2,-10],[-22,-24],[-28,-34],[-33,-29],[-51,-55],[13,-10],[-23,-29],[42,-35],[9,-22],[20,-17],[-50,-73],[-35,18],[-38,-63],[-16,-37],[-29,-37],[-15,-9],[-1,0],[-26,-15],[-27,-27],[-45,27],[-54,35],[-87,49],[-1,1],[-30,8],[0,1],[-67,45],[-130,27],[-147,11],[-62,4],[-28,-4],[-62,-12],[-65,-13],[-76,-20],[-52,-23],[0,-1],[-1,0]],[[35688,30805,0],[-113,-52],[-119,-55],[-12,8],[-43,31],[-34,24],[-1,1],[-10,7],[-224,178],[-48,39],[25,36],[1,26],[-18,-10],[-19,18],[-82,36],[-62,38],[-10,5],[-52,-39],[-34,-26],[-57,-85],[-41,20],[-102,60],[-38,16],[-50,-34],[-75,-46],[-35,-9],[-48,-14],[-18,-3],[-41,-6],[-69,-36],[-126,-65],[-24,-19],[-46,-19],[-55,-13],[-26,-7],[-30,-21],[-72,-47],[-8,10],[137,279],[27,92],[25,64],[12,68],[-74,18],[-32,8],[-81,24],[18,131],[18,159],[-93,30],[-67,21],[5,65],[14,29],[-61,32],[-35,-73],[-56,18],[-45,24],[-32,36],[-51,43],[-175,-198],[-91,24],[-52,28],[-183,102],[169,116],[31,41],[20,25],[39,95],[4,10],[26,60],[6,17],[4,12],[27,51],[14,43],[9,28],[27,80],[-3,22],[9,47],[2,13],[20,73],[9,30],[21,66],[43,120],[22,45],[9,19],[35,66],[36,39],[24,51],[-6,11],[32,38],[15,16],[38,35],[0,15],[76,84],[9,10]],[[35916,34315,0],[24,-59],[11,-39]],[[35951,34217,0],[2,-19],[5,-30],[11,-19],[34,-86],[58,-97],[5,-33],[37,-69],[28,-30],[15,-30],[4,-8],[49,-54],[38,-33],[18,-9],[43,-20],[-2,-21],[-40,-25],[-33,-21],[-15,-10],[-13,-6],[-38,-33],[-18,-21],[-27,-77],[-1,-26],[-1,-11],[6,-46],[20,-4],[164,-31],[63,17],[115,32],[44,12]],[[31021,31876,0],[184,-21],[26,0],[118,-1]],[[31389,31854,0],[30,-11],[29,-3]],[[31448,31840,0],[99,-9],[107,-9],[126,-8]],[[31780,31814,0],[220,-16]],[[32038,31797,0],[228,-15],[-3,-10],[9,-4],[121,-15],[44,10],[198,0],[100,-3],[46,-2],[-2,-33],[-21,3],[-26,-87],[83,-83],[-14,-139],[154,-68],[-78,-102],[140,-145],[1,-22],[-81,15],[-183,43],[-278,5],[-80,13],[-12,-43],[-12,-53],[20,-19],[11,-27],[198,-13],[107,4],[-2,-15],[-26,-209],[-8,-90],[-3,-27],[-2,-43],[5,-95],[4,-29],[58,3],[-2,-151]],[[32732,30351,0],[0,-30],[0,-52],[-1,-58],[236,-3],[45,-5],[4,-27],[-7,-8],[-4,-18],[18,-105],[17,-59],[40,-3],[24,-61],[-38,-8],[-171,-23],[-12,-9],[-102,-3],[-236,1],[5,-27],[104,-230],[-20,0],[1,-19]],[[32635,29604,0],[1,-12],[7,-23],[22,-68]],[[32665,29501,0],[3,-22]],[[32668,29479,0],[-27,-1],[-22,-15],[-22,10],[-68,18],[-139,21],[5,-101],[-4,-31],[-559,74],[-107,-21],[1,12]],[[31726,29445,0],[3,21]],[[31729,29466,0],[32,136],[-34,134],[-9,4],[-4,65],[-43,-17],[-116,120],[-29,31],[-25,17],[-66,73],[-59,44],[-190,-276],[-48,3],[-221,10],[-73,-57],[-101,-34]],[[30743,29719,0],[-22,-7]],[[30721,29712,0],[-4,59],[-4,119],[26,55]],[[30739,29945,0],[35,103]],[[30774,30048,0],[9,72],[47,91]],[[30830,30211,0],[-133,77],[-77,72],[-129,106],[17,34],[20,42],[16,34],[-5,11],[-5,9],[-17,12],[-6,9],[-25,41],[-18,30],[-69,133],[-2,18],[-50,-29],[-103,-58],[-94,-223],[-166,37],[-21,6],[-53,5]],[[29910,30577,0],[-19,163]],[[29780,31191,0],[-28,29],[-114,116]],[[29523,31591,0],[-60,130],[20,39],[21,33]],[[29708,32123,0],[52,-34],[58,-104]],[[29818,31985,0],[31,8],[32,7]],[[29997,32023,0],[185,142],[78,59]],[[30333,32442,0],[144,-110],[39,-90]],[[30516,32242,0],[36,-79],[114,-149]],[[30721,29712,0],[17,-93],[30,-63]],[[30768,29556,0],[12,-124]],[[30780,29432,0],[14,-151],[20,-100],[-30,-4],[-3,-234],[-27,-117],[-57,-449],[-3,-66],[0,-101],[2,-34],[2,-175],[-20,5],[7,-73],[24,-45],[-17,-13],[16,-34],[-51,-67],[-13,-17],[-157,-35],[-45,45],[-65,-115],[-27,-34],[-42,-59],[-63,-83],[-1,-152],[-179,-81]],[[30065,27243,0],[-17,24],[-8,14],[-116,182],[-5,9],[-13,27],[-17,40],[-5,11],[-7,11],[-33,69],[-51,79],[-16,30],[-15,32],[-25,52],[-13,28],[-7,20],[-19,47],[-11,29],[-24,52],[-37,-16],[-58,81],[-43,60],[-8,12],[-6,11],[-28,54],[-14,24],[-85,147],[-7,13],[14,8],[13,7],[-24,50],[-67,143],[-5,10],[-24,38],[-84,136]],[[29200,28777,0],[7,7],[-20,39],[-29,57],[-10,39],[-38,52],[-39,49],[147,74],[49,19],[174,80],[-62,85],[-73,88],[56,35],[83,35],[72,38]],[[29543,29487,0],[47,27]],[[29590,29514,0],[108,60],[-55,141]],[[29600,29726,0],[-41,10],[-108,24],[-19,5]],[[29215,29880,0],[-165,132],[52,73],[33,31],[68,75],[-6,6]],[[29274,30272,0],[29,26],[169,111]],[[29472,30409,0],[-13,25],[143,54]],[[29838,30576,0],[72,1]],[[30065,27243,0],[16,-25],[113,-137],[56,-42],[47,-53],[49,-68],[133,-110]],[[30479,26808,0],[34,-44],[-28,-37]],[[28510,25735,0],[-60,69],[-47,85],[-13,29],[-10,18],[9,29],[170,82],[9,-14],[68,25],[37,21],[-16,71],[-20,33],[-35,-16],[-11,42],[7,36],[-5,52],[-9,11],[4,201],[-42,15],[-13,1],[-53,31],[-16,3],[-31,8],[-77,40],[-40,27],[-20,9],[-51,29],[-21,-2],[-26,23],[-153,118],[-116,126],[-14,32],[-47,131],[-79,-25],[-42,111],[-42,123],[-104,295],[-105,604],[-74,89],[-252,-3],[-2,172],[164,-22],[28,116],[-8,49],[9,86],[0,13],[-34,75],[-16,39],[-15,58],[-21,58],[-9,9],[368,50],[91,68],[138,9],[157,-50],[114,183],[57,7],[154,-330],[19,3],[1,-23],[29,-45],[4,-23],[22,-41],[32,-26],[32,30],[109,52],[11,2],[51,-32],[26,-6],[31,2],[62,20],[44,-11],[36,-13],[17,-12],[30,-45],[22,-27],[36,-29],[11,-25],[38,18],[52,41],[99,57],[41,26]],[[39632,29933,0],[-8,-303],[-206,-336],[-22,-40],[-17,-28],[-39,5],[-2,-7],[-54,-26],[-20,-37],[-4,-6],[12,-20],[20,-25],[-4,-21],[-37,13],[-17,-18],[14,-12],[4,-13],[-38,-40],[-35,-61],[51,-65],[33,-28],[88,-60],[-10,-25],[-57,25],[-20,7],[-16,4],[-30,-38],[-76,60],[-47,-10],[-1,-10],[-1,-21]],[[39093,28797,0],[-27,-114],[-10,-6],[4,-37],[-469,72],[-177,-22],[-187,-237],[-254,-322],[25,-326]],[[37998,27805,0],[-23,-1]],[[37975,27804,0],[-16,-2],[-42,-11],[-44,-10]],[[37766,27877,0],[-8,-2],[-48,-8],[-3,15],[-50,-9]],[[37657,27873,0],[-19,24],[-26,164],[-30,99],[-71,197],[-23,103],[-31,72],[-55,-24],[-39,38],[-30,23],[-68,39],[-44,32],[-37,35]],[[37184,28675,0],[53,95]],[[37237,28770,0],[36,56]],[[37273,28826,0],[26,38]],[[37299,28864,0],[73,100]],[[37372,28964,0],[-58,76]],[[37314,29040,0],[-49,75],[-46,79]],[[37219,29194,0],[-59,102]],[[37160,29296,0],[-26,75]],[[37134,29371,0],[-54,160]],[[37080,29531,0],[44,212]],[[37124,29743,0],[24,125],[52,258],[41,200]],[[37241,30326,0],[41,101]],[[37282,30427,0],[35,92]],[[35997,30857,0],[32,-3],[57,-6]],[[36086,30848,0],[118,-28]],[[36204,30820,0],[72,-6],[24,-1]],[[36300,30813,0],[146,-42],[310,-91]],[[36756,30680,0],[498,-142],[63,-19]],[[37282,30427,0],[-22,-55],[-19,-46]],[[37124,29743,0],[-42,-201],[-2,-11]],[[37134,29371,0],[18,-53],[8,-22]],[[37160,29296,0],[17,-29],[42,-73]],[[37314,29040,0],[11,-14],[47,-62]],[[37299,28864,0],[-9,-13],[-17,-25]],[[37273,28826,0],[-23,-36],[-13,-20]],[[37184,28675,0],[-57,-112]],[[37127,28563,0],[-15,-26],[-49,-88]],[[37063,28449,0],[-27,-36]],[[37036,28413,0],[-6,-14],[-28,-53]],[[37002,28346,0],[-18,-2]],[[36984,28344,0],[-32,-8],[-4,-1]],[[36948,28335,0],[-76,-43]],[[36872,28292,0],[-38,-17],[-13,-5]],[[36821,28270,0],[-9,-3],[-48,-19]],[[36764,28248,0],[-80,-23]],[[36684,28225,0],[-2,4],[-2,6]],[[36680,28235,0],[-27,-4],[-60,-10]],[[36593,28221,0],[-13,0],[-3,0]],[[36577,28221,0],[29,-16],[2,-1]],[[36608,28204,0],[-8,-1],[-18,-2]],[[36582,28201,0],[-31,-3]],[[36551,28198,0],[-13,0],[-15,0]],[[36523,28198,0],[-33,5]],[[36490,28203,0],[-67,14],[-36,8]],[[36387,28225,0],[-14,4],[-26,7]],[[36347,28236,0],[-47,13],[-73,20]],[[36227,28269,0],[-72,24],[-75,24]],[[36080,28317,0],[-165,63]],[[35915,28380,0],[-24,9],[-39,16]],[[35852,28405,0],[-100,43],[-103,51]],[[35649,28499,0],[-37,17],[-60,29]],[[35552,28545,0],[-107,49]],[[35445,28594,0],[-8,1],[-69,13]],[[35368,28608,0],[-55,-84],[-71,-106]],[[35242,28418,0],[-219,219]],[[35023,28637,0],[-83,-84],[-18,-19]],[[34922,28534,0],[-62,65]],[[34860,28599,0],[-33,23],[-23,17]],[[34804,28639,0],[-144,-166],[-35,10]],[[34625,28483,0],[-9,10],[-13,15]],[[34603,28508,0],[-51,19]],[[34552,28527,0],[-76,42],[-61,34]],[[34415,28603,0],[-39,15],[-44,36]],[[34332,28654,0],[-28,4],[-21,4]],[[34283,28662,0],[-7,-7],[-10,-8]],[[34266,28647,0],[-36,-23],[-24,-15]],[[34206,28609,0],[-16,-22],[-8,-12]],[[34182,28575,0],[-53,-96],[-13,-32]],[[34116,28447,0],[-8,-13],[-10,-16],[-2,-3],[-12,-20]],[[34084,28395,0],[-55,-78]],[[34029,28317,0],[-90,180],[-41,82]],[[33898,28579,0],[-33,68],[-37,72],[-9,4],[-9,4]],[[33810,28727,0],[-10,5]],[[33800,28732,0],[-9,3],[-9,5]],[[33782,28740,0],[-9,5],[-10,5]],[[33763,28750,0],[-9,5]],[[33754,28755,0],[-8,5],[-9,5],[-9,5],[-8,6],[-9,6]],[[33711,28782,0],[-8,6],[-8,6]],[[33695,28794,0],[-9,6]],[[33686,28800,0],[-8,6],[-8,6],[-8,7]],[[33662,28819,0],[-7,7],[-8,6],[-7,7]],[[33640,28839,0],[-7,7],[-8,7],[-6,8]],[[33619,28861,0],[-8,7],[-7,8]],[[33604,28876,0],[-6,7],[-7,8]],[[33591,28891,0],[-6,8],[-6,8]],[[33579,28907,0],[-6,7],[-6,9]],[[33567,28923,0],[-6,8]],[[33561,28931,0],[-5,8],[-6,9]],[[33550,28948,0],[-5,8]],[[33545,28956,0],[-5,8],[-5,9],[-5,9]],[[33530,28982,0],[-5,9]],[[33525,28991,0],[-4,8],[-5,10]],[[33516,29009,0],[-4,9]],[[33512,29018,0],[-3,8],[-4,10]],[[33505,29036,0],[-4,9],[-3,10],[-4,9]],[[33494,29064,0],[-3,9],[-3,9],[-3,10],[-2,9],[-3,14],[-1,2],[0,1],[0,2],[-1,1],[0,1],[0,1]],[[33478,29123,0],[0,2],[0,2],[-1,1],[0,2],[0,1],[0,1]],[[33477,29132,0],[0,1],[0,1],[0,2],[-1,1],[0,2],[0,2]],[[33476,29141,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1]],[[33475,29150,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[33474,29169,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[33474,29179,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2]],[[33474,29188,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1]],[[33474,29197,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2]],[[33474,29207,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[33476,29235,0],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2]],[[33477,29243,0],[0,2],[0,1],[0,1],[1,2]],[[33478,29249,0],[0,1],[0,1],[0,2]],[[33478,29253,0],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1]],[[33480,29262,0],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1]],[[33482,29273,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[1,2]],[[33485,29289,0],[0,2],[1,2],[0,2],[0,1],[1,2],[0,1]],[[33487,29299,0],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[0,1]],[[33494,29326,0],[1,1],[0,2],[1,1],[0,1],[0,2],[1,1],[0,1]],[[33497,29335,0],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,2]],[[33500,29344,0],[0,1],[1,1],[0,2],[1,0],[0,2],[1,2],[0,1],[1,1],[1,2],[0,1],[1,1],[0,2],[1,1],[0,1]],[[33507,29362,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,2],[0,1],[1,1],[1,2],[0,1]],[[33514,29380,0],[0,1],[1,0],[0,2],[1,0],[0,2],[0,1],[1,0],[1,1],[0,1]],[[33518,29388,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1]],[[33522,29398,0],[1,0],[0,2],[1,0],[0,2],[1,0],[0,1],[1,1],[0,2]],[[33526,29406,0],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1]],[[33531,29414,0],[1,1],[0,2],[1,0],[0,1],[1,1],[1,2],[0,1],[1,1]],[[33536,29423,0],[1,2],[0,1]],[[33537,29426,0],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1]],[[33541,29433,0],[1,1],[1,0],[0,2],[1,1],[1,1],[0,1],[1,1]],[[33546,29440,0],[0,1],[1,1],[1,2],[1,0],[0,2],[1,1],[1,1],[0,1]],[[33551,29449,0],[1,0],[0,2],[1,1],[1,1],[1,1],[1,2]],[[33556,29456,0],[1,1],[0,1],[1,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1]],[[33561,29464,0],[1,0],[1,2],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1]],[[33567,29472,0],[1,0],[0,2],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1]],[[33573,29480,0],[1,0],[0,2],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1]],[[33578,29487,0],[1,1],[0,1],[2,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,2],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1]],[[33590,29502,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,2],[0,1],[1,0],[1,1]],[[33597,29509,0],[1,1],[1,2],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1]],[[33603,29516,0],[1,1],[0,1],[2,0],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1]],[[33610,29523,0],[0,1],[1,1]],[[33611,29525,0],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0]],[[33630,29543,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,2],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1]],[[33652,29563,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[2,2],[1,1]],[[33661,29570,0],[1,0],[1,1],[1,0],[1,2],[1,0],[1,1],[1,0],[1,1]],[[33669,29575,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1]],[[33677,29581,0],[1,0],[1,1],[1,1],[1,0]],[[33681,29583,0],[1,1],[1,1],[1,0],[1,1]],[[33685,29586,0],[1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[2,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1]],[[33700,29597,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1]],[[33708,29603,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1]],[[33716,29609,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1]],[[33724,29615,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1]],[[33732,29621,0],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1]],[[33747,29632,0],[1,0],[0,2],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1]],[[33754,29639,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1]],[[33761,29644,0],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1]],[[33769,29651,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[0,2],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,2]],[[33784,29665,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,2]],[[33792,29672,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[0,1]],[[33799,29678,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,2],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,2],[1,1],[1,1],[1,0],[1,1],[1,2],[1,1],[1,0],[1,1]],[[33820,29697,0],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,2],[0,1]],[[33833,29711,0],[1,0],[1,1],[1,1],[1,2],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1]],[[33847,29724,0],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,2],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1]],[[33860,29738,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1]],[[33866,29745,0],[1,1],[0,1],[2,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1]],[[33873,29753,0],[1,1],[1,0],[0,2],[1,0],[1,1],[0,1],[1,0],[1,1],[1,2],[1,1],[1,0],[1,2],[1,1],[1,1]],[[33885,29766,0],[1,2],[1,0],[0,1],[1,0],[1,2],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,2],[1,0]],[[33898,29781,0],[0,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,0],[0,1],[1,2],[2,1],[0,1],[1,1],[1,2],[1,0]],[[33910,29796,0],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,2],[1,0],[1,1],[0,1]],[[33927,29819,0],[1,0],[0,1],[1,2],[1,0],[0,1],[1,0],[1,2],[1,1],[1,1]],[[33934,29827,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,2],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[1,2],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,2]],[[33951,29852,0],[1,1],[0,1],[1,1],[1,0],[0,2],[1,0]],[[33955,29857,0],[0,2],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[24,40]],[[33986,29907,0],[72,133]],[[34058,30040,0],[112,247]],[[34170,30287,0],[91,245]],[[34261,30532,0],[713,-233],[76,96],[63,70],[91,84],[109,80]],[[35313,30629,0],[5,24],[4,17]],[[35322,30670,0],[15,60],[6,29]],[[35343,30759,0],[107,14],[180,24]],[[35630,30797,0],[58,8]],[[35688,30805,0],[92,13]],[[35780,30818,0],[25,3],[17,2]],[[35822,30823,0],[87,11],[-4,23],[29,-2],[63,2]],[[37787,31931,0],[-17,-16]],[[37697,31856,0],[-13,-8]],[[37599,31713,0],[-33,-31]],[[36756,30680,0],[-456,133]],[[36300,30813,0],[-70,5],[-26,2]],[[36086,30848,0],[-89,9]],[[35822,30823,0],[-42,-5]],[[35780,30818,0],[-150,-21]],[[35343,30759,0],[-21,-89]],[[35322,30670,0],[-6,-29],[-3,-12]],[[34261,30532,0],[-386,121]],[[33875,30653,0],[120,133],[69,155],[104,238],[97,217],[65,145],[256,265],[239,199]],[[34825,32005,0],[171,143]],[[34996,32148,0],[121,104],[27,23],[148,44],[269,-9],[303,-11],[272,-9],[164,106],[132,86]],[[36432,32482,0],[124,81]],[[36556,32563,0],[19,13],[18,160]],[[36593,32736,0],[11,94]],[[36604,32830,0],[80,85],[45,48]],[[39093,28797,0],[178,-247],[131,-181],[205,-296],[53,-73],[14,-18],[37,-41],[32,-28],[30,-18],[23,-10],[59,-24],[42,-13],[36,-5],[34,-4],[32,-2],[65,2],[19,1],[298,23],[99,2],[67,-7],[31,-8],[52,-18],[43,-22],[35,-23],[22,-21],[21,-22],[17,-23],[24,-36],[11,-22],[12,-29],[10,-28],[9,-31],[6,-75],[1,-65],[-4,-58],[-9,-51],[-9,-38],[-101,-279],[-30,-99],[-1011,-176],[-648,-98],[14,-974]],[[39043,25662,0],[-17,-4],[-14,9]],[[39012,25667,0],[-93,66],[-58,45]],[[38861,25778,0],[-66,43]],[[38795,25821,0],[-34,25],[-21,8]],[[38740,25854,0],[-47,7]],[[38693,25861,0],[-62,10],[-37,1]],[[38594,25872,0],[-188,24],[-57,14]],[[38349,25910,0],[-33,9],[-71,5],[-51,-9]],[[38194,25915,0],[-14,44]],[[38048,26290,0],[1,19],[-65,132]],[[37984,26441,0],[-14,138],[-4,66]],[[37951,26775,0],[-8,64],[-26,106],[-26,109]],[[37891,27054,0],[-67,386],[-8,39]],[[37816,27479,0],[21,0],[121,1],[78,49]],[[38036,27529,0],[25,38],[-13,20]],[[38040,27596,0],[-6,35],[-18,84],[-18,90]],[[41767,24889,0],[-52,3],[-140,8]],[[41448,24898,0],[-77,-7],[-266,-45],[-66,-10],[-52,-4]],[[40944,24845,0],[-147,59],[-76,25],[-77,20]],[[40577,24958,0],[-35,3],[-39,-1],[-65,-14]],[[40398,24931,0],[-44,-20],[-57,-37]],[[40238,24821,0],[-57,-79],[-24,-55],[-40,-111]],[[40117,24576,0],[-42,-58],[-313,-196]],[[38194,25915,0],[51,10],[71,-5],[33,-10]],[[38594,25872,0],[36,-1],[63,-10]],[[38740,25854,0],[21,-7],[34,-26]],[[38861,25778,0],[58,-44],[93,-67]],[[39043,25662,0],[-14,975],[648,98],[1011,176],[-4,-29],[0,-112],[1,-20],[14,-84],[45,-96],[144,-218],[44,-77],[17,-38],[16,-56],[77,-467],[8,-42],[12,-55],[24,-57],[24,-50],[29,-38],[25,-28],[20,-23],[139,-127],[444,-405]],[[45299,27174,0],[-14,-68]],[[45285,27106,0],[-25,-76]],[[45260,27030,0],[99,-221]],[[45359,26809,0],[19,-26]],[[45378,26783,0],[16,-36]],[[45394,26747,0],[4,-33]],[[45398,26714,0],[-2,-38]],[[45396,26676,0],[-16,-44]],[[45380,26632,0],[0,-15],[4,-13],[105,-51]],[[45489,26553,0],[37,-13]],[[45526,26540,0],[66,-15]],[[45592,26525,0],[-63,9],[-103,12],[-81,41],[-117,99],[-109,107],[-57,53],[-38,36],[-23,21],[-83,68],[-102,74],[-107,46]],[[44709,27091,0],[-27,6],[-94,21]],[[44588,27118,0],[-117,2],[-127,-31],[-105,-47],[-50,-41],[-84,-73],[-149,-172]],[[43956,26756,0],[-78,-92],[0,39],[0,1],[-1,202],[-96,223],[-1,24],[-4,19],[-16,48],[-9,25],[-10,41],[-8,40],[-4,43],[-2,51],[4,46],[7,60],[-8,93],[-7,67],[1,44],[7,238],[2,81],[253,629],[163,206],[118,81],[268,-51],[87,-88],[55,-20],[84,-37],[81,-49],[46,-27],[53,-39],[56,-49],[46,-42],[43,-49],[249,-110]],[[45335,28404,0],[-17,-80]],[[45318,28324,0],[-10,-60]],[[45308,28264,0],[-4,-90],[0,-64]],[[45304,28110,0],[2,-42]],[[45306,28068,0],[6,-53]],[[45312,28015,0],[6,-44]],[[45318,27971,0],[16,-81]],[[45334,27890,0],[13,-58]],[[45347,27832,0],[9,-31]],[[45356,27801,0],[7,-46]],[[45363,27755,0],[3,-44]],[[45366,27711,0],[-2,-54]],[[45364,27657,0],[-13,-93]],[[45351,27564,0],[-10,-75]],[[45341,27489,0],[-13,-90]],[[45328,27399,0],[-16,-126]],[[45312,27273,0],[-13,-99]],[[37657,27873,0],[-42,-5],[-281,-33],[-91,19]],[[36919,27926,0],[-34,6],[-128,24]],[[36628,27976,0],[-124,14],[-358,37],[-76,1],[-63,-12]],[[35921,28030,0],[-38,-3],[-30,-1]],[[35853,28026,0],[-134,-7],[-214,-6],[-384,-11]],[[34303,27713,0],[-73,67],[-46,70],[-68,107],[-43,66],[-35,122]],[[34038,28145,0],[-21,64],[-2,9],[0,14]],[[34015,28232,0],[9,20],[12,36]],[[34036,28288,0],[1,17],[-8,12]],[[34084,28395,0],[32,52]],[[34182,28575,0],[24,34]],[[34206,28609,0],[60,38]],[[34266,28647,0],[17,15]],[[34283,28662,0],[49,-8]],[[34415,28603,0],[137,-76]],[[34603,28508,0],[22,-25]],[[34804,28639,0],[56,-40]],[[34922,28534,0],[101,103]],[[35242,28418,0],[126,190]],[[35368,28608,0],[77,-14]],[[35552,28545,0],[97,-46]],[[35852,28405,0],[63,-25]],[[36080,28317,0],[147,-48]],[[36227,28269,0],[120,-33]],[[36347,28236,0],[40,-11]],[[36387,28225,0],[103,-22]],[[36523,28198,0],[28,0]],[[36582,28201,0],[26,3]],[[36608,28204,0],[-31,17]],[[36577,28221,0],[16,0]],[[36593,28221,0],[87,14]],[[36680,28235,0],[4,-10]],[[36764,28248,0],[57,22]],[[36821,28270,0],[51,22]],[[36948,28335,0],[36,9]],[[37002,28346,0],[34,67]],[[37063,28449,0],[64,114]],[[46977,28799,0],[237,-93],[381,8],[283,6],[-9,-54],[-45,-184],[-19,-65],[-12,-67],[59,-58],[57,-54],[7,-7],[36,-36],[5,-5],[75,-109],[66,-97],[13,-17],[2,-2],[14,-19],[86,-107]],[[48213,27839,0],[31,-38],[77,-98],[30,-36],[35,-34],[15,-15],[152,-111]],[[48553,27507,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[-2,-3],[-20,-20],[-58,-61],[-64,-68],[-22,-23],[-12,-11],[-21,-21],[-25,-23],[-52,-48],[-20,-18],[-28,-23],[-38,-29],[-22,-14],[-31,-22],[-43,-21],[-2,-2],[-69,-27],[-52,-15],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-2],[1,0],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[-39,-35],[-24,-72],[-20,-59],[-24,-135],[-6,-20],[-10,-29],[-1,-2],[-19,-79],[-14,-61],[-36,-153],[-69,-287]],[[47621,26027,0],[-19,7],[-107,44]],[[47495,26078,0],[-121,49],[-95,54]],[[47279,26181,0],[-85,57],[-110,97]],[[47084,26335,0],[-9,7],[-11,14]],[[47064,26356,0],[-31,35]],[[47033,26391,0],[-10,12]],[[47023,26403,0],[-30,35]],[[46993,26438,0],[-4,5],[-3,5]],[[46986,26448,0],[-25,36],[-28,41]],[[46933,26525,0],[-56,80]],[[46877,26605,0],[-46,86],[-12,23]],[[46819,26714,0],[-4,7],[-7,10]],[[46808,26731,0],[-3,4],[-4,7]],[[46801,26742,0],[-9,29]],[[46792,26771,0],[-18,52],[-13,39]],[[46761,26862,0],[-6,23],[-41,103],[-55,120],[-16,175],[-5,49],[-29,83],[-3,8],[-5,17],[46,68],[-40,64],[-3,54],[24,45],[27,43],[6,10],[16,29],[-60,29],[-48,24],[-3,16],[0,8],[3,12],[8,17],[21,50],[59,100],[25,45],[73,99],[43,54],[37,36],[27,28],[47,44],[77,62],[-17,22],[11,5],[-56,121],[-12,27],[-32,-3],[-31,-8],[23,64]],[[46872,28605,0],[10,26],[95,168]],[[50372,27810,0],[0,-120],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-19,-12],[-18,-18],[-10,-13],[-51,-84],[-39,-53],[-39,-48],[-45,-46],[-9,-8],[-217,-73]],[[49817,27332,0],[-141,-16],[-70,-5],[-95,-2],[-54,1],[-82,3],[-101,9],[-21,3],[-191,29],[-63,13],[-49,10],[-33,8],[-51,12],[-67,22],[-6,1],[-9,4],[-93,34],[-138,49]],[[48213,27839,0],[94,70],[19,18],[28,28],[51,59],[44,63],[23,43],[9,18],[19,45],[17,46],[17,56],[11,38],[30,129],[38,170],[40,168],[38,165],[14,59],[13,51],[16,59],[32,89],[33,75],[31,70],[20,38],[18,34],[12,22],[54,81],[25,32],[33,42],[50,47],[47,46],[100,92],[38,36],[49,54],[46,58],[31,47],[28,60],[23,57],[4,14]],[[49408,30118,0],[103,-24],[3,-1]],[[49514,30093,0],[9,-2],[5,-1]],[[49528,30090,0],[110,-28],[2,-1]],[[49640,30061,0],[74,-19],[-5,-21],[-17,-53],[-8,-21],[-6,-15],[-34,-71],[-1,-4],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-2],[44,-21],[47,-19],[15,-5],[6,-2],[40,-12],[-18,-73],[-25,-48],[-25,-45],[-37,-67],[-52,-83],[-76,-109],[-100,-140],[-43,-127],[121,-39],[-21,-55],[19,-42],[28,-61],[7,-15],[7,-12],[34,-64],[5,-8],[2,-4],[32,-53],[41,-64],[82,-110],[7,-9],[111,-127],[85,-87],[16,-17],[54,-54],[62,-54],[7,-6],[31,-25],[6,-6],[3,-2],[96,-79],[90,-64],[-24,-45],[-2,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[0,-2],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-2],[-1,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-2],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0]],[[46977,28799,0],[79,148],[46,39],[9,32],[90,89],[0,34],[0,29],[0,9],[28,327],[17,357],[-4,85],[-3,37],[-1,8],[-47,103],[136,15]],[[47327,30111,0],[608,69],[161,3]],[[48096,30183,0],[26,0],[43,2]],[[48165,30185,0],[127,2],[270,8]],[[48562,30195,0],[12,0],[53,2]],[[48627,30197,0],[228,5],[53,2],[78,2]],[[48986,30206,0],[29,0],[109,4],[54,55]],[[49178,30265,0],[78,-50],[152,-97]],[[41644,45230,0],[86,-2],[49,1]],[[41833,45234,0],[14,4],[36,9],[11,1]],[[41894,45248,0],[22,-1],[100,-3]],[[42087,45253,0],[18,-47],[-8,-21],[10,-28]],[[42133,45108,0],[30,-46],[13,-19],[-7,-24]],[[42204,44984,0],[28,-22],[39,-99],[-66,-18],[-71,-27],[-26,-9]],[[42108,44809,0],[-152,-19],[-146,-21],[-50,-12]],[[41760,44757,0],[-135,-38],[-61,-12],[-174,-35]],[[41032,44707,0],[-14,3],[-67,16],[-100,52]],[[40496,44775,0],[-35,-8],[-130,-13]],[[40319,44753,0],[-9,0],[-11,-1]],[[40299,44752,0],[-20,1],[-11,-1],[-12,2],[-44,5],[-44,6]],[[40096,44776,0],[-59,9],[6,66]],[[40049,45000,0],[-45,0],[-3,70]],[[40096,45081,0],[63,3],[85,24]],[[40480,45178,0],[-16,24]],[[40422,45301,0],[-29,52],[-21,42],[-87,147],[165,27],[37,4],[33,3]],[[40552,45569,0],[35,-11],[99,-56],[48,-27]],[[40900,45382,0],[38,-22],[21,-11]],[[40959,45349,0],[32,-18],[39,-21],[62,-28],[38,-12],[20,-5],[68,-10],[77,-8]],[[42571,30927,0],[-5,-16],[-6,-2],[-11,-42],[-37,-203],[-3,-22],[-7,-14],[-200,-23],[-6,49],[-8,72],[-63,69],[13,42],[12,28],[20,51],[32,-3],[10,2],[49,5],[8,4],[47,5],[4,0],[51,3],[14,2],[36,-3],[50,-4]],[[48289,32240,0],[38,2],[24,1]],[[48351,32243,0],[23,4],[84,23]],[[48458,32270,0],[74,22],[136,49]],[[48668,32341,0],[0,1]],[[48668,32342,0],[17,-50]],[[48685,32292,0],[9,-25],[16,-48],[1,-1],[32,-104],[183,-302]],[[48926,31812,0],[-58,-45],[9,-15]],[[48877,31752,0],[13,-21],[12,-19]],[[48902,31712,0],[7,3],[13,0],[8,-3],[10,-14],[0,-13]],[[48940,31685,0],[-63,-194],[-31,-91]],[[48846,31400,0],[-16,-55]],[[48830,31345,0],[-12,-50],[-5,-43]],[[48813,31252,0],[-4,-70],[3,-68],[2,-15],[5,-42]],[[48819,31057,0],[15,-100]],[[48834,30957,0],[33,-226]],[[48867,30731,0],[11,-40]],[[48878,30691,0],[9,-30],[3,-10],[21,-55],[15,-32]],[[48926,30564,0],[17,-32],[17,-25],[26,-33],[16,-20]],[[49002,30454,0],[21,-23],[74,-79]],[[49097,30352,0],[71,-75]],[[49168,30277,0],[10,-11]],[[49178,30266,0],[0,-1]],[[49178,30265,0],[-54,-54],[-108,-4],[-1,0],[-26,-1],[-3,0]],[[48986,30206,0],[-131,-3],[-228,-6]],[[48562,30195,0],[-270,-7],[-127,-3]],[[48165,30185,0],[-43,-1],[-25,-1],[-1,0]],[[47327,30111,0],[-1,0],[-134,-15],[0,1],[-58,84],[-87,57],[-88,56],[-285,72],[-155,44],[-99,55],[-53,35],[-59,57],[-88,101],[-87,108]],[[46133,30766,0],[-102,211],[-60,126]],[[45971,31103,0],[-19,142],[-2,140]],[[45950,31385,0],[0,119]],[[45950,31504,0],[12,331],[10,251]],[[45972,32086,0],[1,23],[2,82],[0,48],[170,35]],[[46145,32274,0],[71,9],[107,6]],[[46323,32289,0],[279,13],[68,5],[77,6]],[[46825,32327,0],[103,25],[230,68]],[[47158,32420,0],[83,18],[51,11]],[[47394,32449,0],[238,-15],[54,-5]],[[47686,32429,0],[61,-8],[79,-21],[61,-19]],[[47887,32381,0],[344,-130],[58,-11]],[[50170,32640,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1]],[[50196,32639,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[50208,32639,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[50220,32637,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[50229,32637,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50235,32637,0],[1,0],[0,-1]],[[50236,32636,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50242,32636,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1]],[[50249,32635,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50254,32635,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[0,-1]],[[50266,32633,0],[1,0],[1,0],[1,0],[1,0]],[[50270,32633,0],[1,0],[0,-1]],[[50271,32632,0],[1,0],[1,0],[1,0]],[[50274,32632,0],[1,0],[1,0]],[[50276,32632,0],[1,0],[1,0],[1,0],[1,0]],[[50347,32617,0],[11,-3],[71,-18]],[[50495,32575,0],[102,-33],[1,0],[1,-1]],[[50601,32540,0],[1,0],[1,0]],[[50609,32538,0],[1,0],[1,0],[1,-1]],[[50613,32537,0],[1,0],[1,0],[1,-1]],[[50616,32536,0],[1,0],[1,0]],[[50621,32534,0],[1,0],[1,0]],[[50625,32534,0],[1,0],[0,-1]],[[50626,32533,0],[2,0],[1,0]],[[50629,32533,0],[1,0],[1,0],[0,-1]],[[50632,32532,0],[1,0],[1,0]],[[50634,32532,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[0,-1]],[[50641,32530,0],[1,0],[1,0]],[[50644,32529,0],[1,0],[1,0]],[[50647,32529,0],[1,0],[1,0],[1,0]],[[50651,32528,0],[2,0],[1,0]],[[50654,32528,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[50662,32526,0],[1,0],[2,0],[1,0]],[[50666,32526,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[50672,32525,0],[1,0],[1,0],[1,0],[1,0]],[[50676,32525,0],[1,0],[1,-1]],[[50678,32524,0],[1,0],[1,0],[1,0],[1,0]],[[50683,32524,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50688,32524,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1]],[[50698,32522,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50709,32522,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[50742,32522,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[50753,32522,0],[1,1],[1,0],[3,0],[96,6]],[[50854,32529,0],[19,1],[14,1],[1,0],[1,0],[2,0],[0,-1]],[[50892,32530,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50900,32529,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[50908,32529,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50914,32529,0],[2,0],[0,-1]],[[50916,32528,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50921,32528,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,-1]],[[50933,32526,0],[1,0],[1,0],[1,0],[1,0]],[[50937,32526,0],[1,0],[1,0],[2,0],[1,0],[1,-1]],[[50943,32525,0],[1,0],[1,0],[1,0]],[[50947,32524,0],[1,0],[1,0],[1,0]],[[50951,32524,0],[1,0],[2,0],[1,0]],[[50956,32523,0],[1,0],[1,0],[1,0]],[[50960,32522,0],[1,0],[1,0],[1,0]],[[50963,32522,0],[1,0],[2,0],[1,0],[0,-1]],[[50968,32521,0],[1,0],[1,0],[1,0]],[[50971,32521,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[50979,32519,0],[1,0],[1,0]],[[50982,32518,0],[1,0],[1,0]],[[50985,32518,0],[1,0],[1,0]],[[50988,32517,0],[1,0],[2,0]],[[50991,32517,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1]],[[50998,32515,0],[1,0],[1,0]],[[51000,32515,0],[1,0],[1,0],[0,-1]],[[51002,32514,0],[1,0],[1,0]],[[51004,32514,0],[1,0],[1,0]],[[51007,32513,0],[1,0],[1,0]],[[51011,32513,0],[1,-1],[1,0],[1,0],[1,-1]],[[51016,32511,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[51022,32510,0],[1,0],[1,0],[1,-1]],[[51030,32507,0],[1,0],[1,0]],[[51032,32507,0],[1,0],[1,0],[1,-1]],[[51036,32506,0],[1,0],[1,0],[1,-1]],[[51040,32505,0],[2,0],[1,0],[1,0],[0,-1]],[[51044,32504,0],[1,0],[0,-1]],[[51050,32502,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[51056,32500,0],[1,0],[1,0],[1,-1]],[[51064,32498,0],[1,0],[0,-1]],[[51065,32497,0],[1,0],[1,0]],[[51069,32496,0],[1,0],[1,0],[1,-1]],[[51073,32495,0],[1,0],[1,0],[0,-1]],[[51075,32494,0],[1,0],[1,-1]],[[51082,32492,0],[1,0],[0,-1]],[[51084,32491,0],[1,0],[1,-1]],[[51087,32490,0],[1,0],[1,0],[0,-1]],[[51090,32488,0],[1,0],[1,0]],[[51092,32488,0],[1,0],[1,-1]],[[51095,32487,0],[1,0],[1,0],[1,-1]],[[51099,32486,0],[1,0],[0,-1],[1,0],[1,0],[0,-1]],[[51104,32484,0],[1,-1],[1,0]],[[51107,32483,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1]],[[51120,32477,0],[1,0],[1,0],[0,-1]],[[51123,32476,0],[1,0],[1,-1]],[[51126,32475,0],[1,0],[1,-1],[1,0],[0,-1]],[[51129,32473,0],[1,0],[1,-1]],[[51132,32472,0],[1,0],[1,-1]],[[51135,32471,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[51141,32468,0],[1,0],[1,-1],[1,0]],[[51145,32467,0],[1,-1],[1,-1]],[[51212,32435,0],[-35,-129],[-22,-85]],[[51155,32221,0],[-22,-82],[13,-35],[15,-38],[47,-119],[45,-117]],[[51253,31830,0],[9,-21],[3,-9]],[[51261,31796,0],[-12,-15],[-4,-6]],[[51245,31775,0],[-10,-15]],[[51236,31759,0],[0,-1],[1,-1],[0,-1]],[[51237,31756,0],[1,-1]],[[51238,31754,0],[1,-1],[0,-1]],[[51240,31748,0],[1,-1]],[[51241,31747,0],[0,-1],[0,-1]],[[51241,31745,0],[1,-1]],[[51242,31743,0],[0,-1],[0,-1]],[[51242,31735,0],[-1,-2]],[[51241,31732,0],[-1,-1],[0,-1]],[[51240,31728,0],[-1,0],[0,-1],[0,-1]],[[51239,31725,0],[-1,0],[0,-1]],[[51238,31724,0],[-1,-2],[0,-1]],[[51237,31721,0],[-1,0],[0,-1]],[[51236,31720,0],[-1,0],[0,-2]],[[51234,31717,0],[-1,-1]],[[51233,31716,0],[-1,0],[-1,-2],[0,-1]],[[51229,31712,0],[-1,0],[-1,-1],[0,-1]],[[51226,31710,0],[-1,-1]],[[51225,31709,0],[-1,0],[0,-1]],[[51220,31706,0],[-1,0],[-1,0],[-1,-1]],[[51217,31705,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1]],[[51209,31703,0],[-2,-1]],[[51207,31702,0],[-1,0],[-1,0]],[[51201,31702,0],[-5,-46],[-4,-35]],[[51192,31621,0],[-8,-79],[-8,-82],[-2,-17]],[[51174,31443,0],[-7,-109],[-6,-105]],[[51158,31187,0],[5,-40],[0,-2],[0,-3],[5,-36],[9,-38],[12,-44],[16,-55]],[[51205,30969,0],[30,-110],[1,-5],[11,-39],[10,-40]],[[51257,30775,0],[10,-48]],[[51270,30675,0],[0,-5],[-1,-24],[-1,-17],[-1,-33],[-12,-58],[-15,-48]],[[51240,30490,0],[-16,-41]],[[51224,30449,0],[-17,-27],[-15,-25]],[[51192,30397,0],[-24,-36],[0,-1]],[[51168,30360,0],[-33,22]],[[51135,30382,0],[-53,-4],[-83,-8]],[[50999,30370,0],[-75,84],[-25,29],[-53,53]],[[50846,30536,0],[-16,-10]],[[50830,30526,0],[-28,-15],[-46,-21]],[[50756,30490,0],[-35,-14]],[[50721,30476,0],[-90,-39],[-194,-85],[-3,-1],[-12,-5],[-111,-49]],[[50311,30297,0],[-7,-3],[-6,-3],[-17,-8],[-7,-3]],[[50274,30280,0],[-30,-11],[-47,-13],[-6,-2],[-3,-1],[-18,-3],[-11,-2]],[[50159,30248,0],[-40,-6]],[[50119,30242,0],[-104,-6],[-143,-8]],[[49872,30228,0],[-52,-2],[-55,-3]],[[49765,30223,0],[-27,-6],[-76,-16],[-5,-58],[-17,-81],[-112,28]],[[49514,30093,0],[-64,16],[-42,10],[-97,62],[-55,35],[-60,38],[-18,11]],[[49178,30266,0],[-2,2],[-8,9]],[[49097,30352,0],[-16,17],[-59,62],[-11,13],[-9,10]],[[49002,30454,0],[-17,20],[-15,19],[-11,14],[-17,25],[-12,23],[-4,9]],[[48926,30564,0],[-6,12],[-10,20],[-21,55],[-3,10],[-8,30]],[[48878,30691,0],[-3,11],[-8,29]],[[48867,30731,0],[-17,114],[-16,112]],[[48834,30957,0],[-6,39],[-9,61]],[[48819,31057,0],[-6,42],[-1,9],[-1,6],[-1,35],[-2,33],[5,69],[0,1]],[[48813,31252,0],[5,44],[4,17],[8,32]],[[48846,31400,0],[14,41],[16,50],[39,118],[25,76]],[[48902,31712,0],[-13,19],[-12,21]],[[48926,31812,0],[-184,302],[-32,104],[-10,31],[-7,18],[-1,4],[-7,21]],[[48685,32292,0],[-14,40],[-3,9]],[[48668,32342,0],[316,112],[48,16],[13,4],[79,21],[6,1],[60,14]],[[49190,32510,0],[74,15],[82,12]],[[49346,32537,0],[2,0],[64,6]],[[49412,32543,0],[34,1],[30,1]],[[49541,32548,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[49552,32548,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[49564,32549,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49572,32549,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49592,32551,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[49601,32552,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[49610,32552,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[49617,32552,0],[0,1],[1,0]],[[49618,32553,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49624,32553,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[49639,32555,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49644,32555,0],[0,1],[1,0]],[[49645,32556,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[49652,32556,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49658,32557,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[49664,32557,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49677,32559,0],[1,0],[1,0],[1,0],[1,0]],[[49681,32559,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0]],[[49688,32560,0],[1,0],[1,0],[1,0],[1,0]],[[49693,32561,0],[1,0],[1,0],[1,0],[1,0]],[[49699,32561,0],[1,0],[1,0],[1,0],[1,0]],[[49703,32561,0],[0,1],[1,0]],[[49704,32562,0],[1,0],[1,0],[1,0]],[[49707,32562,0],[0,1],[1,0]],[[49708,32563,0],[1,0],[1,0],[2,0],[1,0]],[[49713,32563,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[49718,32564,0],[1,0],[1,0],[1,0],[1,0]],[[49723,32564,0],[0,1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49733,32566,0],[1,0],[1,0],[1,0],[1,0]],[[49738,32567,0],[1,0],[2,0]],[[49741,32567,0],[32,6],[33,7],[19,4],[35,8]],[[49860,32592,0],[82,20],[74,15]],[[50018,32628,0],[1,0],[1,0],[1,0]],[[50021,32628,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[50026,32629,0],[1,0],[1,0]],[[50029,32629,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0]],[[50038,32631,0],[1,0],[1,0],[1,0]],[[50042,32632,0],[1,0],[1,0],[1,0],[2,0]],[[50048,32632,0],[1,0],[1,0],[1,0]],[[50052,32633,0],[1,0],[1,0],[1,0],[1,0]],[[50057,32633,0],[0,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50068,32635,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50073,32635,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[50087,32637,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[50095,32637,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[50104,32638,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[50114,32639,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[50126,32639,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50151,32640,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50999,30370,0],[69,6],[67,6]],[[51135,30382,0],[26,-18],[7,-4]],[[51168,30360,0],[24,-13],[69,-41]],[[51261,30306,0],[-40,-45]],[[51221,30261,0],[-23,-23]],[[51109,30161,0],[39,-48],[5,-7]],[[51265,29949,0],[143,101]],[[51497,30154,0],[103,-69],[156,-103]],[[51756,29982,0],[34,-23]],[[51797,29955,0],[15,-10]],[[51812,29945,0],[37,-135],[56,-201]],[[51905,29609,0],[3,-13],[0,-2]],[[52163,29328,0],[89,-14]],[[52362,29297,0],[308,-47]],[[52670,29250,0],[-12,-19],[-183,-281]],[[52475,28950,0],[-182,-225]],[[51708,28274,0],[-57,-96]],[[51651,28178,0],[-6,-12]],[[51530,27918,0],[-106,-341]],[[51439,27408,0],[52,-103]],[[51491,27305,0],[-327,-103],[-9,-3],[-200,206],[-55,56],[-27,25],[-21,20],[-60,51],[-64,47],[-93,59],[-89,49],[-15,9],[-159,89]],[[49640,30061,0],[17,81],[4,47],[1,11],[103,23]],[[49765,30223,0],[56,2],[51,3]],[[49872,30228,0],[58,3],[85,4],[65,4],[39,3]],[[50159,30248,0],[11,1],[9,2],[12,2],[53,15],[3,1],[27,11]],[[50274,30280,0],[24,10],[13,7]],[[50311,30297,0],[111,48],[15,6],[284,125]],[[50721,30476,0],[3,1],[32,13]],[[50756,30490,0],[47,21],[24,13],[3,2]],[[50846,30536,0],[10,-9],[43,-45],[100,-112]],[[52864,25765,0],[7,-73],[9,-95]],[[52880,25597,0],[5,-10],[4,-10]],[[52889,25577,0],[17,-49],[7,-18],[8,-49],[6,-32],[1,-11],[3,-18],[4,-25],[10,-65],[-1,-25],[-307,280],[-18,3],[-2,-1],[-19,-5],[-13,-7],[-4,-3],[-25,-60],[2,-14],[8,-17],[2,-17],[48,-37],[64,-48],[37,-38],[24,-47],[10,-54],[1,-14],[8,-21],[2,-6],[4,-31],[-3,-24],[-23,-49],[-11,-24],[-105,-223],[-56,-111],[-46,-93],[-58,-117],[-58,-117],[-18,-38]],[[52388,24352,0],[-12,7],[-46,17],[-7,2],[-10,1],[-129,55],[11,-19],[-12,-28],[-31,13],[-12,5],[-39,15],[-24,-10],[-57,-119],[-21,10],[-177,58]],[[51822,24359,0],[-2,0],[-11,4]],[[51809,24363,0],[-37,10]],[[51772,24373,0],[-4,1],[-5,2]],[[51763,24376,0],[10,28],[-66,69],[4,10],[-201,26],[-33,5],[61,221],[9,25],[3,13],[-16,4],[-55,8],[-14,3],[-21,7],[-43,-21],[-71,5],[-5,14],[-36,6]],[[51289,24799,0],[-17,6],[-4,1]],[[51268,24806,0],[-55,5],[-3,29],[-11,-3],[-75,-18],[-58,-15],[-46,5],[-36,2],[-109,-13],[-3,47],[-83,68]],[[50789,24913,0],[-1,14],[-4,30],[-11,51],[-11,36]],[[50762,25044,0],[-4,16],[-1,4]],[[50757,25064,0],[-13,39],[-3,10],[-2,4],[-7,21],[-15,43],[-20,50],[-25,58],[-25,48],[-24,48],[-21,41],[-3,5],[-5,10],[-63,127],[-56,109],[-55,108],[-53,110],[-17,37],[-3,6],[-24,61],[-16,65],[-12,58],[-8,51],[-2,14],[-8,56],[-12,99],[-3,21],[-5,44],[-11,76],[-15,117],[0,1]],[[50231,26601,0],[0,3],[-10,55]],[[50221,26659,0],[-7,26],[-10,41],[-10,34],[-7,22],[-20,59],[-1,5],[-6,14],[-44,127],[-4,7],[-1,0],[-59,61],[-16,27],[-16,28],[-69,103],[-7,10],[-3,4],[-48,72],[-2,3],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[50221,26659,0],[10,-58]],[[50757,25064,0],[5,-20]],[[50789,24913,0],[3,-13]],[[50792,24900,0],[1,-11],[4,-64]],[[50797,24825,0],[-1,-76],[-11,-35],[-3,-16],[-8,-7],[-18,-13],[-20,-14],[-15,-10],[-13,-8],[-6,-2],[-17,-12],[-36,7],[-27,-24]],[[50622,24615,0],[-22,14],[-21,15]],[[50579,24644,0],[-250,-73],[16,24],[-51,-22],[-111,17],[-205,30],[-17,7],[-23,13],[-212,-83],[-159,-61]],[[49567,24496,0],[-103,239],[-62,143]],[[49402,24878,0],[-23,52],[-18,42],[-106,190]],[[49255,25162,0],[-12,22],[-26,46]],[[49217,25230,0],[-27,47],[-20,24]],[[49170,25301,0],[-23,27],[-7,9],[-101,120]],[[49039,25457,0],[-132,116],[-22,20],[-11,10]],[[48874,25603,0],[-119,89],[-92,57],[-114,50],[-190,58]],[[48359,25857,0],[-245,18],[-126,28],[-78,19]],[[47910,25922,0],[-120,45],[-70,26]],[[47720,25993,0],[-75,27],[-24,7]],[[51268,24806,0],[21,-7]],[[51763,24376,0],[9,-3]],[[51809,24363,0],[13,-4]],[[52388,24352,0],[-34,-71],[18,-8],[176,-78],[-66,-141],[-6,-13],[11,-5],[29,-12],[-161,-299],[-90,-241],[-52,-213]],[[52213,23271,0],[-137,-344]],[[52076,22927,0],[-76,-160]],[[52000,22767,0],[-118,-249],[-199,-330]],[[51683,22188,0],[-165,-133],[-115,-88],[-135,-56],[-200,-11],[-320,90],[-294,217],[-96,-60]],[[50358,22147,0],[-105,109],[121,73],[-138,370],[-20,593],[-307,-20],[-4,-203],[-26,-131],[-20,-71],[-36,206],[17,190],[4,51],[24,66],[14,56]],[[49882,23436,0],[-1,208]],[[49881,23644,0],[-41,195]],[[49840,23839,0],[-66,187]],[[49774,24026,0],[-160,369],[-47,101]],[[50579,24644,0],[43,-29]],[[50797,24825,0],[-5,75]],[[44815,22156,0],[45,-5],[14,0]],[[44874,22151,0],[16,1],[26,4],[52,10],[34,10]],[[45002,22176,0],[36,15],[26,21]],[[45064,22212,0],[25,23]],[[45089,22235,0],[5,-11]],[[45094,22224,0],[18,-25]],[[45112,22199,0],[4,-6]],[[45116,22193,0],[12,-16],[58,-119]],[[45186,22058,0],[140,48],[123,40],[124,39]],[[45573,22185,0],[24,-3],[1,0]],[[45598,22182,0],[-42,-24],[-7,-12]],[[45549,22146,0],[-3,-10],[-1,-7],[5,-27],[8,-26]],[[45558,22076,0],[23,-37],[32,-42],[34,-33]],[[45647,21964,0],[38,-30],[6,-2]],[[45691,21932,0],[102,-53]],[[45793,21879,0],[-46,-93],[8,-5],[2,-1],[5,-6],[5,-4],[6,-13],[4,-14],[1,-11],[1,-8],[0,-28],[-8,-39],[-38,-90],[-31,-33],[-3,-70],[-3,-49],[-8,-85],[-5,-41],[0,-67],[-1,-18],[1,-22],[0,-8],[0,-5],[0,-10],[-1,-14],[-1,-21],[1,-63],[0,-6],[0,-21],[3,-58],[1,-22],[1,-30],[6,-51],[5,-29],[17,-107],[3,-18],[7,-33],[8,-31],[7,-27],[21,-75],[3,-11],[10,-40],[22,-62],[8,-21],[16,-39],[17,-37],[7,-15],[9,-20],[17,-33],[18,-30],[7,-11],[4,-6],[12,-19],[38,-71],[12,-16],[3,-6],[2,-4],[-32,-20],[-33,-22],[-98,-58],[-59,-37],[86,-170]],[[45830,19805,0],[-241,-165],[-378,-255],[-298,-201],[-42,-28],[-43,-29]],[[43462,20641,0],[3,69],[5,256],[5,282]],[[43507,22007,0],[35,32],[115,110],[34,33]],[[43728,22501,0],[-38,348],[430,101]],[[44120,22950,0],[18,-77],[-13,-79],[73,-139],[66,-33],[14,-24],[20,-33],[85,-127],[32,-36],[46,-52],[42,-44]],[[44503,22306,0],[52,-44],[23,-16]],[[44578,22246,0],[59,-36],[45,-20],[21,-7]],[[44703,22183,0],[51,-17],[61,-10]],[[48670,21616,0],[0,-11],[1,-4]],[[48671,21601,0],[3,-95],[0,-8]],[[48674,21498,0],[2,-44],[0,-10],[1,-28]],[[48677,21416,0],[-33,-32],[-8,-8]],[[48636,21376,0],[-16,-15]],[[48620,21361,0],[-2,-1],[-128,-125],[-1,0],[-25,-25],[25,2],[-97,-100],[-152,-166],[-30,20],[-24,16],[-60,37],[-82,40],[-136,38],[-54,-3],[-38,-6],[-27,-5],[-166,-22],[4,-38],[1,-57],[20,-118],[0,-15],[-42,-9],[5,-10],[-67,-16],[-99,-24],[-103,-25],[-25,-5],[-39,-13],[-25,-11],[-10,-4],[-7,-3],[-11,-8],[-19,-16],[-27,-33],[-8,-9],[-18,-33],[-5,-14],[-24,-33],[-27,-18],[-40,-6]],[[47057,20543,0],[-3,1]],[[47054,20544,0],[-25,8],[-21,9],[-14,5],[-6,2]],[[46988,20568,0],[-48,38]],[[46940,20606,0],[-103,89],[-17,14]],[[46820,20709,0],[-17,28],[-29,46],[-21,51],[-6,13]],[[46747,20847,0],[-7,31],[-6,23]],[[46734,20901,0],[0,4],[-2,10]],[[46732,20915,0],[-6,35],[-6,62],[-2,43],[-1,5],[15,-1],[-5,55],[-2,18],[-1,9],[-2,11],[-1,21],[-4,41]],[[46717,21214,0],[-2,17],[-4,31]],[[46711,21262,0],[-6,57],[-4,30],[-3,8],[-15,39]],[[46683,21396,0],[-22,57],[-12,34]],[[46649,21487,0],[-8,13],[-15,26]],[[46626,21526,0],[-13,18],[-10,14],[-10,16],[-22,30]],[[46571,21604,0],[-9,9],[-28,22]],[[46534,21635,0],[-16,12],[-12,11]],[[46506,21658,0],[-53,43],[-44,27],[-20,11],[-13,8]],[[46376,21747,0],[-19,9],[-1,1],[-22,11]],[[46334,21768,0],[-9,-19],[-68,20]],[[46257,21769,0],[-122,31],[-177,41],[-165,38]],[[45793,21879,0],[-72,36],[-30,17]],[[45647,21964,0],[-35,33],[-32,42],[-22,37]],[[45549,22146,0],[7,11],[42,25]],[[45598,22182,0],[-25,3]],[[45186,22058,0],[-59,119],[-11,16]],[[45112,22199,0],[-1,2],[-17,23]],[[45089,22235,0],[61,72],[15,28]],[[45165,22335,0],[36,67]],[[45201,22402,0],[20,27],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,2],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[3,-1],[88,-36],[26,-9],[24,-6],[26,-6],[92,-1],[238,36],[208,30],[291,41],[36,8],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[8,18],[149,-68],[3,-2],[152,-73],[156,-74],[47,-23],[111,-52],[44,-21],[113,-55],[155,-72],[24,-11],[134,-66],[-9,-15],[207,-100],[7,15],[157,-75],[7,-3],[152,-72],[16,-8],[140,-66],[11,-5],[54,-25],[16,-7],[27,-10],[16,-5],[17,-5],[11,-3],[5,-1],[22,-3],[26,-2],[45,-2],[30,0],[36,1],[0,-24],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[3,0]],[[46334,21768,0],[24,-11],[18,-10]],[[46506,21658,0],[13,-11],[15,-12]],[[46571,21604,0],[23,-30],[10,-16],[22,-32]],[[46626,21526,0],[15,-25],[8,-14]],[[46649,21487,0],[13,-34],[21,-57]],[[46711,21262,0],[6,-48]],[[46732,20915,0],[2,-14]],[[46747,20847,0],[28,-64],[45,-74]],[[46820,20709,0],[120,-103]],[[46988,20568,0],[7,-2],[35,-14],[24,-8]],[[47057,20543,0],[159,-18],[43,-5],[16,-2]],[[47275,20518,0],[90,-14]],[[47365,20504,0],[59,-4],[22,-1],[27,-1],[0,1],[1,8],[35,-2],[5,2],[34,-2]],[[47548,20505,0],[0,-6],[21,-1]],[[47569,20498,0],[2,-18],[21,0],[20,1],[1,-4],[4,-4],[13,-14],[20,-9],[10,-4],[21,-10],[7,-4],[25,-15],[25,-23],[1,-1]],[[47739,20393,0],[31,-31]],[[47770,20362,0],[23,-22],[29,-38],[16,-26],[14,-28],[15,-30],[10,-25]],[[47877,20193,0],[1,-2],[9,-31]],[[47887,20160,0],[8,-48]],[[47895,20112,0],[4,-43],[-1,-18]],[[47898,20051,0],[0,-9],[-3,-26],[-7,-47],[-6,-21],[-3,-8],[-2,-3],[-8,-39],[1,-1],[-34,-38],[-54,-58],[-47,-54],[-15,-17],[-7,-5],[-23,-14],[-11,-8],[-19,-14]],[[47660,19689,0],[1,-4],[-29,-18]],[[47632,19667,0],[-30,-14],[-41,-20]],[[47561,19633,0],[-44,-9],[-27,-9],[-42,-15],[2,-13]],[[47450,19587,0],[-28,-7],[19,-54]],[[47441,19526,0],[-19,-55]],[[47422,19471,0],[-10,-30],[-5,-1],[-101,-12],[1,-15]],[[47307,19413,0],[2,-13],[-105,-11]],[[47204,19389,0],[-31,-2],[-9,-1]],[[47164,19386,0],[-24,-2]],[[47140,19384,0],[-2,0],[-7,0],[-353,-44]],[[46778,19340,0],[-37,14],[-212,80],[-81,30],[-73,28]],[[46375,19492,0],[-216,80],[-329,233]],[[45793,21879,0],[166,-38],[177,-41],[121,-31]],[[47140,19384,0],[-107,-325],[-171,-517],[-62,-190],[21,-449],[15,-321],[9,-106],[-12,-123],[-150,-55],[-203,-105]],[[46375,19492,0],[153,-58],[250,-94]],[[48649,18913,0],[28,-1203],[128,-617]],[[48805,17093,0],[-130,7],[-273,35]],[[48402,17135,0],[-554,23],[-138,-5],[-141,8],[-140,-19]],[[47429,17142,0],[-134,-20]],[[47295,17122,0],[-138,-23],[-135,-28]],[[47022,17071,0],[-132,-11],[-137,9],[-136,10]],[[46617,17079,0],[-139,11]],[[47164,19386,0],[210,-59],[-5,-17],[63,-18],[138,-40],[37,-14],[95,-27]],[[47702,19211,0],[20,-5]],[[47722,19206,0],[37,-11],[54,-15],[133,-36],[70,-16]],[[48016,19128,0],[38,-9]],[[48054,19119,0],[7,-2]],[[48061,19117,0],[122,-70],[108,-62],[97,-57],[37,-6],[91,-12],[89,2],[37,0],[7,1]],[[49501,21270,0],[27,-126],[0,-1],[42,-175]],[[49570,20968,0],[23,-96],[66,-289],[38,-156]],[[49697,20427,0],[-21,-4]],[[49676,20423,0],[-11,-7],[-5,-2]],[[49660,20414,0],[-52,-81]],[[49608,20333,0],[-46,-10],[-59,-14]],[[49503,20309,0],[69,-284]],[[49572,20025,0],[6,-6],[1,-2]],[[49579,20017,0],[16,-22],[16,-31],[11,-35],[13,-61]],[[49635,19868,0],[8,-54],[15,-100],[-2,-51],[-32,1],[-7,0],[2,47],[-12,85]],[[49607,19796,0],[-1,5],[0,5]],[[49606,19806,0],[-3,16],[-11,50]],[[49592,19872,0],[-278,24],[-152,12]],[[49162,19908,0],[-11,-97],[24,0]],[[49175,19811,0],[2,-33],[2,-44]],[[49179,19734,0],[-4,-78],[-5,-69],[-1,-9],[-48,-153],[-57,-148],[-67,-107],[-2,-2],[-21,-23],[-15,-38],[-18,-41],[-6,3],[-23,-27],[-24,-28],[-21,-20],[-56,-32],[-31,-14],[-69,-25],[-62,-10]],[[48061,19117,0],[-3,1],[-4,1]],[[48054,19119,0],[-31,7],[-7,2]],[[47722,19206,0],[-7,2],[-13,3]],[[47204,19389,0],[104,11],[-1,13]],[[47307,19413,0],[-1,14],[100,13],[5,1],[11,30]],[[47441,19526,0],[-19,53],[28,8]],[[47561,19633,0],[41,19],[29,14],[1,1]],[[47632,19667,0],[29,17],[-1,5]],[[47898,20051,0],[0,18],[-3,43]],[[47887,20160,0],[-9,32],[-1,1]],[[47770,20362,0],[-29,28],[-2,3]],[[47569,20498,0],[-22,1],[1,6]],[[47365,20504,0],[-38,6],[-52,8]],[[48620,21361,0],[118,-6],[15,0],[52,0],[192,11],[122,10],[215,-122],[14,1],[98,10],[55,5]],[[48794,23801,0],[54,-132],[24,-53],[47,-107],[11,-5],[183,-100]],[[49113,23404,0],[359,20]],[[49472,23424,0],[285,8],[45,1],[80,3]],[[50358,22147,0],[-45,-28],[-7,-4],[-215,-155],[-698,-52],[42,-519],[192,18],[95,7],[115,3],[-88,-131],[-52,-2],[-79,-4],[-117,-10]],[[48636,21376,0],[41,40]],[[48674,21498,0],[-3,103]],[[48671,21601,0],[-1,15]],[[48670,21616,0],[3,1],[11,4],[55,28],[37,21],[31,30],[20,18],[17,20],[20,23],[2,4],[32,55],[22,52],[14,31],[16,23],[2,27],[3,34],[-1,49],[-10,62],[-8,30],[0,1],[-12,35],[-28,62],[-49,89],[-66,122],[-24,45],[-25,46],[-40,73],[-29,41],[-27,38]],[[48636,22680,0],[-45,60]],[[48591,22740,0],[-11,14],[-68,78],[-27,31],[-42,47],[-52,60],[-20,22],[-37,43],[-4,3],[-14,-3],[-49,57],[-4,5],[-22,23],[-30,34],[-19,19],[-36,41],[-26,31]],[[48130,23245,0],[2,-2],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[48163,23230,0],[1,0],[1,0]],[[48165,23230,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[48175,23230,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0]],[[48194,23234,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1]],[[48210,23245,0],[1,0],[1,1],[1,0],[0,2],[1,1],[1,0],[0,1],[1,0],[1,2]],[[48217,23252,0],[2,1],[0,2],[1,0],[0,1],[1,1],[1,1],[0,2]],[[48222,23260,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1]],[[48226,23268,0],[46,158],[5,21]],[[48277,23447,0],[32,118],[42,158]],[[48351,23723,0],[21,29],[11,15],[46,-16]],[[48429,23751,0],[38,-15],[56,-21]],[[48523,23715,0],[81,26],[32,11]],[[48636,23752,0],[70,23]],[[48706,23775,0],[71,21],[17,5]],[[59238,19819,0],[-159,-136],[-162,-231],[-21,7],[-57,15],[-8,-43],[-10,-60],[-3,-14],[-9,-44],[-22,-42],[-22,-27],[-6,-34],[-17,-40],[-14,-32],[-22,-92],[-19,-65],[-80,-126],[9,-36],[-70,-78],[-24,-26],[-133,-106],[-282,-80],[-540,102],[-228,84],[-185,96],[-119,12],[-73,33]],[[56962,18856,0],[47,47]],[[57009,18903,0],[124,191],[164,215],[23,454],[4,51],[35,33],[36,35]],[[57395,19882,0],[-81,95],[-76,103]],[[57238,20080,0],[-75,109],[-84,108],[-88,103],[-57,50],[-52,42]],[[56882,20492,0],[59,99],[17,38],[30,65],[91,202],[254,45],[95,17],[-8,27],[242,15],[568,26],[192,11],[23,1],[21,1]],[[58466,21039,0],[10,1],[8,0],[6,0],[45,1],[113,8],[26,-153],[13,-17],[-1,-54],[-2,-16],[5,-104],[7,-138],[0,-11],[6,1],[0,-8],[-4,-6],[-65,-35],[-18,-7],[-10,-1],[-25,-8],[2,-43],[1,-17],[19,-58],[7,-23],[28,-88],[20,-61],[18,7],[67,25],[51,21],[7,3],[73,33],[84,47],[70,31],[14,9],[98,83],[-4,-12],[-3,-19],[0,-17],[3,-16],[9,-26],[48,-90],[32,-60],[6,-12],[23,-32],[34,-41],[14,-15],[-233,-187],[48,-33],[60,-40],[47,-31],[15,-11]],[[51683,22188,0],[112,-254],[-350,-387]],[[51445,21547,0],[-115,-132],[-36,-41]],[[51294,21374,0],[-8,-16],[-127,-245]],[[51159,21113,0],[-3,-10],[21,-13]],[[51177,21090,0],[17,-14],[19,-19],[11,-15],[11,-19],[8,-19]],[[51243,21004,0],[7,-31]],[[51250,20973,0],[2,-16]],[[51252,20957,0],[1,-13]],[[51253,20944,0],[-2,-18]],[[51251,20926,0],[-1,-11],[-5,-19],[-130,-444],[-79,7],[-43,2],[1,-46],[-232,-643]],[[50762,19772,0],[-100,10],[-1027,86]],[[49579,20017,0],[-7,8]],[[49503,20309,0],[105,24]],[[49660,20414,0],[16,9]],[[49697,20427,0],[-127,541]],[[49592,19872,0],[14,-66]],[[49606,19806,0],[1,-10]],[[50762,19772,0],[-37,-122],[-13,-291]],[[50712,19359,0],[-2,-252],[20,-547]],[[50730,18560,0],[129,-567]],[[50859,17993,0],[-144,3],[-148,-24],[-141,-52],[-126,-85],[-105,-83],[-102,-92],[-207,-167],[-94,-95],[-107,-71],[-114,-65],[-115,-63],[-128,-38],[-124,-31],[-131,-24],[-133,-8],[-135,-5]],[[49179,19734,0],[-4,77]],[[49162,19908,0],[430,-36]],[[48805,17093,0],[2,-48]],[[48807,17045,0],[0,-47],[11,-152],[4,-46],[-7,-186]],[[48815,16614,0],[1,-41]],[[48816,16573,0],[11,-338],[36,-437]],[[48863,15798,0],[-245,-9],[-727,71],[-46,10],[-171,40],[-32,7],[-366,96],[-130,-12],[-289,-22],[-240,-22],[-157,-2],[0,37]],[[46476,16692,0],[-5,42],[-1,35],[7,56]],[[46477,16825,0],[-1,151]],[[46476,16976,0],[0,46]],[[46476,17022,0],[2,69],[139,-12]],[[47022,17071,0],[135,29],[138,22]],[[47429,17142,0],[139,19],[142,-7],[138,5],[554,-24]],[[51162,16703,0],[-70,-186],[14,-9],[-28,-55],[-5,-29],[-21,9],[-76,-157],[-331,23],[-252,21],[-126,-42],[3,-13]],[[50270,16265,0],[-393,-244]],[[49877,16021,0],[-51,-31],[-141,-80]],[[49685,15910,0],[-85,-50],[-14,-6]],[[49586,15854,0],[-303,-7],[-176,-22],[-244,-27]],[[48863,15798,0],[-36,436],[-11,339]],[[48815,16614,0],[7,185],[-3,46],[-12,152],[0,48]],[[50859,17993,0],[-1,-43],[1,-16],[9,-65],[129,-108],[-17,-46],[-6,-46],[35,-134],[18,-40],[36,-164],[13,-39],[18,-46],[41,-126],[59,6],[1,-18],[4,-45],[17,-175],[6,-58],[-60,-127]],[[45592,26525,0],[105,7],[57,12]],[[45754,26544,0],[130,35]],[[45884,26579,0],[4,-26],[9,-65],[5,-38],[18,-123],[-96,-19],[2,-153],[-28,-35],[-30,-32],[-12,-15],[-15,3],[-11,-12],[62,-74],[-162,-190],[3,-11],[3,-20],[-51,-46],[0,-8],[-6,-21],[-3,-21],[3,-10],[3,-9],[17,-26],[26,-45],[16,-39],[8,-34],[9,-37],[0,-20],[-2,-80],[0,-23],[-8,-24],[-4,-48],[-1,-24],[2,-46],[-10,-10],[-66,-65],[-12,-12],[-22,-22],[-204,-204],[-142,-142]],[[45189,24753,0],[-145,-154],[-59,-59],[-63,-53],[-34,-21]],[[44888,24466,0],[-47,-28]],[[44841,24438,0],[-23,-7],[-24,-6],[-18,-5],[-92,-19]],[[44684,24401,0],[-96,-3],[-76,14],[-11,6]],[[44501,24418,0],[-80,29],[-44,21]],[[44377,24468,0],[-31,11],[-31,-13]],[[44315,24466,0],[-22,-15]],[[44293,24451,0],[-52,-35],[-11,-8]],[[44230,24408,0],[-6,-52],[-56,-35],[-161,61]],[[42176,24928,0],[-4,17],[22,7],[26,12],[24,15],[19,13],[15,15],[14,21],[13,25],[8,17],[7,21],[5,26],[32,211],[21,123],[41,115],[90,171],[136,180],[151,141],[198,109],[299,71],[137,38],[81,39],[105,57],[50,40],[77,90],[213,254]],[[44588,27118,0],[121,-27]],[[46864,26025,0],[-1,-72]],[[46863,25953,0],[2,-94],[-44,-27]],[[46821,25832,0],[-142,-90],[-22,-13]],[[46657,25729,0],[98,-290],[15,-24],[12,-17]],[[46782,25398,0],[17,-19],[28,-33]],[[46827,25346,0],[57,-58],[86,-88]],[[46970,25200,0],[56,-57],[27,-31],[34,-41],[50,-68],[17,-20]],[[47154,24983,0],[0,-18],[2,-15]],[[47156,24950,0],[7,-44]],[[47163,24906,0],[3,-42],[-2,-12]],[[47164,24852,0],[0,-12],[-4,-24],[-8,-30],[-9,-27],[-24,-58],[-5,-12],[-21,-49]],[[47093,24640,0],[-30,-60],[-22,-37],[-17,-22]],[[47024,24521,0],[-13,-15],[-34,-34],[-286,-182]],[[46691,24290,0],[-230,-146],[-2,-2],[-7,-5],[-1,0],[-5,-4],[-5,-3],[-1,-1],[-1,-2],[-4,-2],[-4,-4],[-1,-1],[-3,-3],[-1,-2],[-3,-2],[-1,-2],[-3,-2],[-1,-2]],[[46418,24107,0],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1]],[[46406,24092,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[0,-2],[-1,-1]],[[46397,24076,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,-4],[-1,-1],[0,-1],[0,-1],[-1,-1]],[[46389,24058,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-2,-6],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2]],[[46383,24039,0],[-1,-31]],[[46382,24008,0],[1,-17]],[[46383,23991,0],[7,-86],[5,-53],[15,-183]],[[46410,23669,0],[5,-69]],[[46415,23600,0],[-114,48],[-23,9]],[[46278,23657,0],[-256,108],[-142,70]],[[45880,23835,0],[-163,103],[-251,166],[-140,106]],[[45326,24210,0],[-53,63],[-38,69]],[[45235,24342,0],[-25,78],[-6,27]],[[45204,24447,0],[-31,232]],[[45173,24679,0],[1,26],[5,26]],[[45179,24731,0],[10,22]],[[45884,26579,0],[67,17]],[[45951,26596,0],[108,28]],[[46059,26624,0],[61,17]],[[46120,26641,0],[51,14],[44,10]],[[46215,26665,0],[63,16]],[[46278,26681,0],[149,42],[57,15]],[[46484,26738,0],[51,17]],[[46535,26755,0],[51,20]],[[46586,26775,0],[48,17]],[[46634,26792,0],[48,23]],[[46682,26815,0],[24,11]],[[46706,26826,0],[25,15],[30,21]],[[46761,26862,0],[31,-91]],[[46801,26742,0],[7,-11]],[[46808,26731,0],[11,-17]],[[46819,26714,0],[58,-109]],[[46933,26525,0],[53,-77]],[[46986,26448,0],[7,-10]],[[47023,26403,0],[-43,-47]],[[46980,26356,0],[-31,-51],[-40,-79]],[[46909,26226,0],[-18,-54],[-18,-84],[-9,-63]],[[49774,24026,0],[32,-92],[34,-95]],[[49881,23644,0],[0,-71],[1,-137]],[[49882,23436,0],[-126,-3],[-284,-9]],[[49113,23404,0],[-194,106],[-47,107],[-24,53],[-54,131]],[[48794,23801,0],[0,1],[-88,-27]],[[48636,23752,0],[-113,-37]],[[48523,23715,0],[-94,36]],[[48429,23751,0],[-46,17],[-32,-45]],[[48277,23447,0],[-5,-20],[-46,-159]],[[48226,23268,0],[-4,-8]],[[48222,23260,0],[-5,-8]],[[48217,23252,0],[-7,-7]],[[48210,23245,0],[-8,-6],[-8,-5]],[[48194,23234,0],[-9,-2],[-10,-2]],[[48175,23230,0],[-10,0]],[[48163,23230,0],[-8,2],[-14,-1],[-10,14],[-62,75]],[[48069,23320,0],[-45,44],[-22,22],[-71,47]],[[47931,23433,0],[-42,29],[-91,58]],[[47798,23520,0],[-41,29],[-19,12]],[[47738,23561,0],[-70,46],[-17,11],[-26,17]],[[47625,23635,0],[-18,13],[-80,52]],[[47527,23700,0],[-34,24],[-19,12]],[[47474,23736,0],[-74,49],[-59,40]],[[47341,23825,0],[-117,90],[-130,111]],[[47094,24026,0],[-20,3],[-46,33]],[[47028,24062,0],[-76,34],[-57,15],[-94,3]],[[46801,24114,0],[-87,-24],[-57,-15],[-212,-61]],[[46445,24014,0],[-60,25],[1,10],[3,9]],[[46389,24058,0],[4,9],[4,9]],[[46397,24076,0],[4,8],[5,8]],[[46406,24092,0],[5,8],[7,7]],[[46418,24107,0],[6,7],[7,8],[8,6],[7,6],[9,6],[236,150]],[[47024,24521,0],[17,23],[21,36],[31,60]],[[47164,24852,0],[2,13],[-3,41]],[[47156,24950,0],[-2,16],[0,17]],[[46970,25200,0],[-86,89],[-57,57]],[[46782,25398,0],[-18,15],[-10,26],[-97,290]],[[46657,25729,0],[22,14],[142,89]],[[46821,25832,0],[44,28],[-2,93]],[[46864,26025,0],[9,64],[17,83],[19,54]],[[46980,26356,0],[43,48],[10,-13]],[[47064,26356,0],[11,-13],[9,-8]],[[47279,26181,0],[95,-53],[121,-50]],[[47495,26078,0],[106,-44],[20,-7]],[[47621,26027,0],[24,-6],[75,-28]],[[47910,25922,0],[78,-18],[126,-28],[245,-19]],[[48359,25857,0],[189,-57],[115,-50],[92,-57],[119,-90]],[[48874,25603,0],[11,-9],[22,-20],[132,-117]],[[49170,25301,0],[20,-23],[27,-48]],[[49217,25230,0],[25,-46],[13,-22]],[[49255,25162,0],[106,-189],[18,-42],[23,-53]],[[49402,24878,0],[61,-143],[104,-239]],[[45235,24342,0],[38,-68],[53,-64]],[[45326,24210,0],[139,-106],[251,-166],[164,-103]],[[46278,23657,0],[22,-8],[115,-49]],[[46415,23600,0],[62,-103]],[[46477,23497,0],[-33,-68],[-9,-21]],[[46435,23408,0],[-2,-11]],[[46433,23397,0],[-1,-12],[0,-21],[-129,-133],[-11,-10],[-44,-84]],[[46248,23137,0],[-68,-128],[-41,-67],[-16,-24],[-80,-70]],[[46043,22848,0],[-35,-13],[-174,-56],[-10,-1],[-168,-9]],[[45656,22769,0],[-151,-5]],[[45505,22764,0],[-78,-30],[-62,-35]],[[45365,22699,0],[-39,-53]],[[45326,22646,0],[-44,-84],[-81,-159],[-36,-68]],[[45064,22212,0],[-27,-21],[-35,-15]],[[44874,22151,0],[-15,0],[-44,5]],[[44703,22183,0],[-21,8],[-45,20],[-59,35]],[[44578,22246,0],[-23,17],[-52,43]],[[44120,22950,0],[0,1],[-17,62],[-43,181]],[[44060,23194,0],[-4,171],[24,136]],[[44144,23629,0],[64,83],[36,66],[-1,75],[-1,110]],[[44119,23974,0],[-112,409],[106,-41],[55,-20],[55,35],[7,51]],[[44293,24451,0],[7,6],[15,9]],[[44315,24466,0],[24,11],[7,3],[25,-10],[6,-2]],[[44501,24418,0],[11,-5],[76,-14],[96,2]],[[44841,24438,0],[37,23],[10,5]],[[44888,24466,0],[34,22],[62,52],[60,60],[129,136],[16,18],[-10,-23]],[[45179,24731,0],[-5,-25],[-1,-27]],[[45204,24447,0],[6,-26],[25,-79]],[[47341,23825,0],[60,-40],[73,-49]],[[47474,23736,0],[19,-13],[34,-23]],[[47527,23700,0],[80,-53],[18,-12]],[[47738,23561,0],[19,-13],[41,-28]],[[47798,23520,0],[91,-59],[42,-28]],[[47931,23433,0],[71,-48],[22,-22],[45,-43]],[[48069,23320,0],[61,-75]],[[48591,22740,0],[34,-47],[11,-13]],[[45201,22402,0],[81,159],[44,85]],[[45365,22699,0],[62,34],[78,31]],[[45656,22769,0],[168,8],[10,1],[174,56],[35,14]],[[46043,22848,0],[81,70],[15,23],[41,67],[68,129]],[[46248,23137,0],[44,83],[11,10],[130,134],[-1,20],[1,13]],[[46435,23408,0],[9,20],[33,69]],[[46415,23600,0],[-5,58],[0,11]],[[46383,23991,0],[0,9],[-1,8]],[[46383,24039,0],[62,-25]],[[46445,24014,0],[213,61],[57,15],[86,24]],[[46801,24114,0],[94,-4],[58,-15],[75,-33]],[[47028,24062,0],[46,-34],[20,-2]],[[53878,17902,0],[21,-68]],[[53899,17834,0],[-411,-487],[-303,-260],[-199,-78],[-460,-104],[-374,-103],[-369,-1],[-586,-138],[-35,40]],[[50859,17993,0],[142,-21],[409,-32],[139,-5]],[[51549,17935,0],[133,-9],[133,-1]],[[51815,17925,0],[131,8]],[[51946,17933,0],[131,21],[133,32]],[[52210,17986,0],[132,35],[127,39]],[[52469,18060,0],[122,40],[106,64],[95,82]],[[52792,18246,0],[91,87],[78,131],[40,-16]],[[53001,18448,0],[43,-19],[72,-130],[11,-19]],[[53127,18280,0],[21,-37],[406,-190],[324,-151]],[[53095,18795,0],[-97,-240],[-37,-90]],[[52961,18465,0],[-77,-132],[-92,-87]],[[52469,18060,0],[-126,-39],[-133,-35]],[[52210,17986,0],[-132,-32],[-132,-21]],[[51815,17925,0],[-133,2],[-133,8]],[[50859,17993,0],[0,1],[-116,506],[-13,60]],[[50712,19359,0],[13,292],[37,121]],[[51251,20926,0],[2,15],[0,3]],[[51253,20944,0],[0,5],[-1,8]],[[51252,20957,0],[0,3],[-2,13]],[[51250,20973,0],[-6,29],[-1,2]],[[51177,21090,0],[-4,3],[-16,10],[2,10]],[[51159,21113,0],[44,-7],[667,-79]],[[51870,21027,0],[-33,-269],[65,-196],[6,-331],[71,-372],[131,-351],[240,-132],[665,-531],[38,-24],[42,-26]],[[53567,21022,0],[65,-95],[128,-189],[44,-63],[63,-96],[136,-204],[26,15]],[[54029,20390,0],[16,-126],[4,-32]],[[54049,20232,0],[4,-37],[21,-267],[4,-50],[1,-30]],[[54079,19848,0],[-337,-223],[-124,-62]],[[53618,19563,0],[-116,-81],[-109,-83],[-87,-110],[-79,-115],[-58,-123],[-74,-256]],[[51870,21027,0],[206,0],[-9,-46],[-8,-63],[232,-33],[42,46],[0,-19],[-2,-11],[5,-22],[7,-22],[6,-13],[12,-19],[16,-16],[13,-10],[14,-8],[102,-13],[46,-4],[33,12],[83,-13],[10,-14],[260,-41],[13,-2],[-20,-105],[137,-24],[-21,-112],[91,-2],[250,-39],[21,133],[36,196],[17,104],[14,79],[13,77],[54,-16],[24,15]],[[52660,22739,0],[200,-91]],[[52860,22648,0],[10,16],[39,-16],[4,-1],[172,-78],[18,-7],[8,-4],[124,-54]],[[53235,22504,0],[34,61]],[[53269,22565,0],[12,26],[126,-53],[94,-39],[22,-10]],[[53523,22489,0],[107,-45],[17,-7],[-18,-21],[-3,-4],[-63,-69],[-13,-24]],[[53550,22319,0],[-37,-48]],[[53513,22271,0],[-13,-18]],[[53500,22253,0],[-28,-35],[73,-51],[98,-57],[-57,-83]],[[53586,22027,0],[101,-51]],[[53687,21976,0],[-5,-5]],[[53682,21971,0],[-24,-40],[-3,-7],[-15,-33],[-4,-7],[-4,-9],[-13,-36],[-5,-15],[-13,-35],[-3,-11],[-1,-7],[-12,-71],[-7,-46],[-7,-63],[-2,-21],[-1,-9],[-3,-25],[-1,-7],[-31,-210],[-1,-8],[37,-49],[-3,-19],[0,-37],[2,-16],[5,-18],[23,11],[64,-103],[-93,-58]],[[51159,21113,0],[135,261]],[[51294,21374,0],[151,173]],[[52000,22767,0],[715,84]],[[52715,22851,0],[-55,-112]],[[53328,25158,0],[88,-93],[86,-92]],[[53502,24973,0],[24,-25],[13,-13]],[[54716,23778,0],[-15,-31],[-12,-28],[-16,-21],[-26,-35],[-22,-29],[-19,-36],[8,-8],[-40,-52],[-6,-8],[-41,-45],[-40,-43],[-12,-12],[-38,-43],[-9,-11],[-35,-40],[-26,-24],[-17,-16],[-18,-24],[-13,-18],[-13,-17],[-124,-128],[-62,56],[-66,-61],[-9,-7],[-5,-4],[-93,-67],[-5,8],[-49,69],[-11,16],[-17,-10],[-18,-16],[-29,-27],[-38,15],[-84,-81],[-73,-75],[-1,0],[-29,11],[-8,-26],[-37,-78],[-3,-6],[-8,4],[-7,4],[-13,-34],[10,-9],[-12,-24],[-10,-28],[76,-1],[33,-15],[42,-20],[-49,-63],[-21,-26],[10,-5],[-44,-73],[-29,-47]],[[53269,22565,0],[-2,-3],[-32,-58]],[[52860,22648,0],[-61,28],[-139,63]],[[52660,22739,0],[5,11],[50,101]],[[52715,22851,0],[-684,-80],[-31,-4]],[[52076,22927,0],[54,138],[83,206]],[[53047,25449,0],[5,-5],[1,-2]],[[53053,25442,0],[18,-19],[90,-88]],[[53161,25335,0],[17,-17],[9,-9]],[[56283,23053,0],[-16,-28]],[[56267,23025,0],[19,0],[95,-13],[22,-3],[8,-1],[-1,-7],[-2,-8],[-4,-65],[-34,2],[-46,4],[-3,1],[-11,0],[-38,-103],[-36,-35],[-9,-24],[-1,-5],[-48,-155],[-103,-9],[-11,-3]],[[56064,22601,0],[1,3],[-19,13]],[[56046,22617,0],[-4,7],[-4,8]],[[56038,22632,0],[-120,-13],[-12,-1]],[[55906,22618,0],[-5,-1],[-1,0]],[[55900,22617,0],[-183,-47],[-76,-23],[-79,-38]],[[55562,22509,0],[-78,-37],[-33,-15],[-1,-1]],[[55450,22456,0],[-67,-42],[-96,-59]],[[55287,22355,0],[-21,-14],[-237,157],[-49,-62],[-30,-41],[-32,-51],[-23,-34],[-28,-39],[-30,-63],[-29,-39]],[[54808,22169,0],[-32,23],[-24,18]],[[54752,22210,0],[-31,21],[-77,51]],[[54644,22282,0],[-132,87],[-11,8]],[[54501,22377,0],[-104,-143],[-48,-67]],[[54349,22167,0],[-30,-40],[22,-13]],[[54341,22114,0],[-21,-29],[-11,-16]],[[54309,22069,0],[-4,-6],[-28,-39]],[[54277,22024,0],[-81,41]],[[54196,22065,0],[-4,-6],[-10,-17]],[[54182,22042,0],[-16,-26],[-19,-40],[-7,-14],[-44,19],[-45,20],[-5,2],[-55,20]],[[53991,22023,0],[-4,-7],[-7,-14]],[[53980,22002,0],[-70,-140]],[[53910,21862,0],[-21,9],[-27,9]],[[53862,21880,0],[-81,35],[-26,11],[-39,17]],[[53716,21943,0],[-22,18],[-12,10]],[[53682,21971,0],[1,1],[4,4]],[[53687,21976,0],[-58,30],[-43,21]],[[53500,22253,0],[8,11],[5,7]],[[53513,22271,0],[18,24],[19,24]],[[56256,23364,0],[-26,-90],[58,-8],[4,-1],[40,-3],[-2,-19],[-1,-5],[26,-2],[-1,-16],[0,-33],[0,-47],[-1,-45],[-3,-14],[-9,-34],[-58,6]],[[54853,21343,0],[-3,-97]],[[54850,21246,0],[3,-95],[4,-53],[5,-37],[10,-27],[5,-64],[3,-24],[1,-12]],[[54881,20934,0],[5,-30]],[[54886,20904,0],[3,-13],[3,-13],[-85,-63]],[[54807,20815,0],[-27,-21]],[[54780,20794,0],[82,-63]],[[54862,20731,0],[107,-82]],[[54969,20649,0],[27,-20]],[[54996,20629,0],[-117,-81]],[[54879,20548,0],[-103,-94],[-188,-190],[-95,-95]],[[54493,20169,0],[-74,-67]],[[54419,20102,0],[-25,-22],[-98,-82]],[[54296,19998,0],[-98,-80],[-119,-70]],[[54049,20232,0],[-20,158]],[[53682,21971,0],[34,-28]],[[53716,21943,0],[146,-63]],[[53862,21880,0],[48,-18]],[[53980,22002,0],[11,21]],[[54182,22042,0],[14,23]],[[54277,22024,0],[32,45]],[[54309,22069,0],[32,45]],[[54349,22167,0],[152,210]],[[54501,22377,0],[143,-95]],[[54644,22282,0],[108,-72]],[[54752,22210,0],[56,-41]],[[55287,22355,0],[163,101]],[[55450,22456,0],[112,53]],[[55900,22617,0],[6,1]],[[56038,22632,0],[8,-15]],[[56064,22601,0],[-12,-52]],[[56052,22549,0],[-121,-140],[-64,-17],[-69,-16],[-60,-17],[-82,-22],[-38,-19],[-78,-37],[-34,-18],[-34,-19],[-10,-10],[-40,-37],[-15,-12],[-46,-31],[-44,-34],[-158,-120],[-38,-46],[-39,-52],[-9,-14],[-146,-243],[-8,-20],[-30,-92],[-20,-96],[-16,-94]],[[55602,19507,0],[-60,13],[-158,-9],[-37,-7],[-41,-5],[-59,9],[-3,-74],[-112,-39],[-89,-50],[-10,-36],[-60,-59],[-25,-19],[-22,-21],[-36,-84],[-15,-46],[-56,-129],[-8,-54],[-11,-144],[-31,-21],[-34,-21],[-506,-526],[-330,-351]],[[53878,17902,0],[-324,152],[-406,190],[-21,36]],[[53001,18448,0],[-40,17]],[[52961,18465,0],[37,91],[97,239]],[[53095,18795,0],[73,256],[52,128],[83,112],[84,114],[111,83],[120,75]],[[53618,19563,0],[124,63],[337,222]],[[54079,19848,0],[119,71],[98,79]],[[54296,19998,0],[98,83],[7,6],[18,15]],[[54419,20102,0],[35,32],[15,13],[2,2],[22,20]],[[54493,20169,0],[65,66],[6,6],[24,24],[188,190],[78,71],[25,22]],[[54879,20548,0],[42,-29],[34,-23],[4,-129],[38,-111],[15,-21],[16,-11],[11,-9],[32,-47],[19,-30],[6,-12],[9,-19],[17,-40],[16,-35],[26,-58],[20,-51],[73,-74],[88,-88],[204,-202],[53,-52]],[[55265,20229,0],[41,1],[130,4],[94,1],[143,4],[221,4]],[[55894,20243,0],[231,5],[18,0],[123,3]],[[56266,20251,0],[193,-3],[3,0],[35,0]],[[56497,20248,0],[122,-1],[45,70],[22,34]],[[56686,20351,0],[10,21],[9,17]],[[56705,20389,0],[32,64],[1,1],[0,2]],[[56738,20456,0],[1,4],[7,22]],[[56746,20482,0],[1,15]],[[56747,20497,0],[-2,22],[-1,10]],[[56744,20529,0],[-2,29],[-2,4],[-8,22]],[[56732,20584,0],[33,-15]],[[56765,20569,0],[94,-62],[23,-15]],[[56882,20492,0],[52,-41],[20,-19],[37,-31],[88,-103],[84,-108],[34,-51],[41,-59]],[[57238,20080,0],[76,-102],[81,-96]],[[57395,19882,0],[-37,-35],[-34,-32],[-4,-51],[-20,-394],[-3,-60],[-30,-40],[-135,-176],[-123,-191]],[[57009,18903,0],[-31,-30],[-16,-17]],[[56962,18856,0],[-171,176],[-119,94],[-310,263],[-384,140],[-230,22],[-96,-29],[-50,-15]],[[54879,20548,0],[17,12],[100,69]],[[54996,20629,0],[0,1],[7,4],[4,2],[41,-72]],[[55048,20564,0],[5,-7],[19,-30],[25,-37],[72,-111],[18,-28],[41,-64]],[[55228,20287,0],[13,-20],[24,-38]],[[58230,21963,0],[24,-29],[10,-13],[15,-25],[9,-20],[8,-19],[3,-14],[12,-13],[28,-47],[22,-39],[-6,-2],[20,-37],[10,-24],[14,-52],[2,-26],[0,-24],[0,-11],[7,2],[5,-1],[3,-3],[3,-5],[1,-17],[-1,-29],[-8,-66],[-10,-44],[-5,-20],[0,-2],[-7,-18],[-4,-18],[-3,-15],[-1,-15],[1,-24],[4,-23],[7,-24],[5,-15],[10,-6],[4,-1],[28,-15],[15,3],[6,-83],[1,-15],[1,-35],[3,-40]],[[56882,20492,0],[-117,77]],[[56732,20584,0],[10,-27],[2,-28]],[[56744,20529,0],[3,-32]],[[56746,20482,0],[-8,-26]],[[56738,20456,0],[-1,-4],[-32,-63]],[[56705,20389,0],[-10,-20],[-9,-18]],[[56686,20351,0],[-67,-105],[-122,2]],[[56497,20248,0],[-22,0],[-15,0],[-194,3]],[[56266,20251,0],[-141,-4],[-231,-4]],[[55894,20243,0],[-221,-5],[-142,-3],[-95,-2],[-171,-4]],[[55228,20287,0],[-59,91],[-72,111],[-44,67],[-5,8]],[[55048,20564,0],[-41,71],[-11,-6]],[[54996,20629,0],[-15,12],[-12,8]],[[54969,20649,0],[-60,46],[-47,36]],[[54780,20794,0],[1,2],[26,19]],[[54886,20904,0],[-3,19],[-2,11]],[[54850,21246,0],[1,50],[2,47]],[[56052,22549,0],[387,51],[389,-129],[4,-1],[13,-5],[402,-143],[237,-84],[23,-9],[250,7],[108,-38]],[[56267,23025,0],[2,3],[14,25]],[[56270,23436,0],[33,173],[0,2],[11,58],[18,93],[3,18]],[[56427,23716,0],[38,-29],[7,-6]],[[56472,23681,0],[2,-1],[48,-28]],[[56522,23652,0],[22,-14],[14,-8]],[[56558,23630,0],[11,-16],[6,-6]],[[56581,23585,0],[8,-2],[19,-6]],[[56608,23577,0],[4,1],[14,3]],[[57063,23569,0],[-2,3],[-3,7]],[[57082,23592,0],[-27,56],[-13,27]],[[57042,23675,0],[160,76]],[[27262,44456,0],[12,173],[19,237],[21,104],[12,64],[32,169],[187,153],[52,41],[144,252],[58,105],[55,89],[95,47],[108,25],[56,-56],[30,-11],[50,-16],[46,115],[3,41],[53,194],[36,145],[-195,-31],[-285,-45],[-25,16],[-58,27],[-103,41],[-87,38],[-490,137],[-133,24],[-29,144],[-61,-24],[-103,-39]],[[26762,46615,0],[-21,143],[-14,74],[-29,176],[-16,-2],[-88,198],[17,79],[24,18],[136,45],[-56,113],[-60,172],[-46,65],[-5,83],[81,38],[53,75],[16,51],[60,90],[66,83],[110,123],[124,138],[28,22],[138,68],[135,66],[113,63],[45,6],[-26,174],[687,95],[500,79],[99,21],[62,18],[515,190],[114,31],[160,34],[298,43],[330,-66],[177,-31],[182,-28],[123,-15],[112,-12],[-141,-694],[32,-76],[41,-55],[65,-81],[14,-44],[19,-46],[-33,-145],[-23,-105],[-13,-60],[-4,-154],[-7,-134],[3,-36],[32,-64],[41,-76],[42,-95],[28,-34],[66,-87],[73,-79],[87,48],[0,-65],[-12,-69],[-88,-81],[-39,-14],[-78,-21],[-259,-94],[-132,-69],[-153,-85],[-88,-60],[-164,5],[-124,-27],[-118,-31],[-97,-47],[-105,-55],[-154,-71],[-90,-55],[-71,-85],[-106,-103],[346,-342],[13,-15],[-13,-12],[-99,-96],[80,-86],[71,-75],[17,-20],[-19,-17],[-71,-63],[-68,-58],[-12,-12],[72,-87],[-6,-66],[3,-53],[14,-54],[25,-52],[27,-36],[37,-35],[20,-18],[31,-16],[52,-19],[43,-12],[46,-14]],[[33639,46060,0],[103,-73],[22,-15],[10,-7],[27,-17],[33,-22],[81,-54],[11,-9],[36,-23],[89,-61],[-55,-45],[-74,-60],[-34,-28],[-26,-21],[22,-27],[-71,-50],[-73,-50],[-70,-54],[-66,-57],[-66,-62],[-61,-61],[-21,-26],[-112,-132],[-79,72],[-40,35],[-29,27],[-96,85],[-45,42],[-177,-5],[-194,31],[-366,88],[-91,94],[-74,101],[-9,12],[40,22],[74,39],[27,14],[21,11],[77,42],[90,50],[13,7],[179,98],[12,7],[17,7],[22,9],[23,9],[10,5],[76,18],[79,0],[82,-11],[7,72],[12,96],[12,121],[6,63],[53,-1],[59,-10],[56,-17],[32,-7],[53,-31],[10,-7],[25,-15],[12,-8],[53,-31],[13,-10],[33,-21],[31,-22],[186,-127]],[[24449,44148,0],[67,93],[18,-17],[42,22],[184,670],[11,40],[19,25],[360,86],[288,127],[216,111],[119,105],[85,102],[476,514],[259,287],[116,147],[39,56],[18,25],[-4,74]],[[64464,21187,0],[-7,-17]],[[64338,21183,0],[-70,4],[-66,3]],[[64202,21190,0],[1,-121],[2,-149]],[[64058,20474,0],[1,-13],[4,-63]],[[63468,20285,0],[-68,-45],[-34,-22]],[[63268,20222,0],[-56,43],[-49,38]],[[62949,20380,0],[-6,-18],[-26,-87]],[[62917,20275,0],[-14,-55]],[[62898,20068,0],[-55,78],[-32,44],[-76,116],[-42,65]],[[62693,20371,0],[-2,4],[-80,126]],[[62611,20501,0],[-100,155]],[[62511,20656,0],[-61,94],[-285,442],[-71,109],[-64,91]],[[62030,21392,0],[-12,18],[-80,105],[39,91]],[[62490,22815,0],[23,-45]],[[63153,21940,0],[48,-41]],[[61805,20466,0],[-30,-14],[-92,-43]],[[61683,20409,0],[-70,-31],[-3,-1],[-35,-16]],[[61575,20361,0],[-59,-25],[-5,72]],[[61511,20408,0],[-62,-15],[-23,-5]],[[61330,20327,0],[-2,-6],[-11,-27]],[[61317,20294,0],[-44,-12],[-37,-11],[-51,66],[-82,113],[-99,141],[-66,63],[-48,64],[-66,79],[-68,76],[-68,67],[-93,68],[-34,9],[-56,8],[-40,-4],[-45,-14],[-103,-25]],[[60317,20982,0],[-6,47],[-45,34],[-6,4],[-35,22],[-18,42],[-14,30],[-12,29],[-24,53],[-30,68],[-18,38],[-31,64],[-23,50],[15,43],[116,152],[2,2]],[[62030,21392,0],[-8,-49],[-65,-442],[-62,-278],[-11,-122],[-34,-15],[-45,-20]],[[60317,20982,0],[10,-60],[-38,-88],[-343,-374],[-122,-149],[-59,-78],[-155,-125],[-201,-166],[-171,-123]],[[78771,47399,0],[-10,-26],[-28,-78]],[[78733,47295,0],[-44,-109],[-20,-48]],[[78669,47138,0],[-24,-59],[-25,-61]],[[78620,47018,0],[-121,-3]],[[78499,47015,0],[-15,-35],[-14,-33]],[[78470,46947,0],[-2,-5],[-7,-16],[-33,-74]],[[78428,46852,0],[-2,-3],[0,-1],[-42,-91],[-3,-6]],[[78381,46751,0],[-27,-54],[-1,-2],[-15,-31],[-6,-12]],[[78332,46652,0],[-8,-8],[-4,-4],[-13,-14],[-7,-7]],[[78300,46619,0],[-11,-5],[-18,-8],[-17,-8],[-4,-2]],[[78250,46596,0],[-186,-100],[-38,-23],[-83,-55]],[[77943,46418,0],[-17,-51],[-22,-64],[-4,-12]],[[77900,46291,0],[-6,-52],[-16,-148]],[[77878,46091,0],[-1,-10],[-1,-10],[-10,-96]],[[77866,45975,0],[-1,-7],[0,-5],[-5,-52]],[[77860,45911,0],[-3,0],[-11,1]],[[77846,45912,0],[-6,-25],[0,-35]],[[77840,45852,0],[-6,10],[-132,88],[-17,-50],[-44,6],[-29,4],[-15,1],[-65,3],[-13,1],[-72,1]],[[77447,45916,0],[-3,-1],[-3,-2]],[[77441,45913,0],[-12,-1],[-14,0],[-56,-7]],[[77359,45905,0],[-1,-3],[0,-1]],[[77358,45901,0],[-129,4]],[[77229,45905,0],[0,2],[-1,4]],[[77228,45911,0],[-90,11]],[[77126,45924,0],[-9,1]],[[76899,46000,0],[31,186],[-299,-133]],[[76631,46053,0],[19,82],[127,64]],[[76777,46199,0],[-104,271]],[[76644,46506,0],[-54,78],[-27,39],[-20,-8],[-13,19],[11,133],[-148,14],[1,23],[-399,41]],[[75962,47396,0],[104,-28],[337,-85],[-9,106],[41,168],[354,22],[27,2]],[[76870,47099,0],[65,5],[-4,35]],[[76931,47139,0],[92,39],[60,26],[139,83],[122,114],[120,110],[171,-64],[-29,127],[38,77],[99,-37],[7,14],[7,20],[4,24],[-1,21],[-3,10],[-5,12],[-7,11],[-10,12],[-12,11],[-29,15],[31,55],[113,-59],[71,-36],[81,-41],[81,-43],[74,-38],[195,-99],[180,-92],[17,-6],[10,-2],[19,-1],[29,3],[22,10],[23,17],[112,-29],[19,-4]],[[77358,45901,0],[1,4]],[[77441,45913,0],[6,3]],[[77803,45632,0],[-17,-104]],[[77720,45265,0],[-23,-75]],[[77173,44814,0],[-248,7],[-114,2],[-20,0],[-84,1],[-39,-1],[-41,0]],[[76624,44836,0],[-11,56],[-3,16],[-33,71],[33,4]],[[76610,44983,0],[-22,108],[-22,116],[-1,9],[-2,34],[-6,60],[-3,26],[-3,29],[4,35],[1,9],[2,23],[4,51],[9,71],[6,36],[1,14],[-3,15],[-5,18],[-6,17],[-7,32],[-7,41],[-7,47],[-1,14],[6,41],[1,10],[42,27],[6,28],[17,79],[17,80]],[[76631,46053,0],[319,120]],[[77126,45924,0],[12,-2]],[[77228,45911,0],[1,-6]],[[77538,44774,0],[-4,-63],[-2,-27]],[[77532,44684,0],[48,-10]],[[77580,44674,0],[20,-6],[17,-7]],[[77617,44661,0],[31,-222]],[[77648,44439,0],[2,-9],[14,-92]],[[77664,44338,0],[12,-87],[15,-103]],[[77691,44148,0],[1,-15],[8,-42],[5,-32],[6,-35]],[[77711,44024,0],[3,-18],[4,-29],[9,-54],[8,-46],[10,-67],[17,-92],[8,-47],[-5,-51],[-14,-65],[-25,-115],[-39,-193],[-8,-29],[-11,-44],[-8,-46],[-30,1]],[[77630,43129,0],[-85,4]],[[77545,43133,0],[-7,4],[-8,-18],[-55,-108],[-36,-77],[-11,-20],[3,-105],[-2,-8]],[[77429,42801,0],[-1,1],[-22,21]],[[77135,42857,0],[-95,-13]],[[61426,20388,0],[37,8],[48,12]],[[61575,20361,0],[108,48]],[[61683,20409,0],[122,57]],[[61805,20466,0],[220,98],[203,90],[205,91],[16,6],[62,-95]],[[62611,20501,0],[82,-130]],[[81090,47515,0],[-71,-71],[-162,382],[-160,369],[-43,99],[-16,27],[-29,23],[-33,12],[-38,6],[-42,6],[-56,8],[-189,35]],[[79374,48740,0],[5,10],[49,101],[198,412],[33,67],[2,3],[13,28],[35,73],[3,6],[38,79],[111,230],[185,384],[16,-66],[18,-74],[11,-28],[40,-44],[40,-22],[25,-9],[183,-45],[66,-14],[197,-75],[182,-51],[160,-54],[117,-38],[151,-56],[127,-45],[259,-102],[194,-81],[336,-154],[406,-222],[177,-10]],[[82751,48943,0],[-170,-176],[-80,-56],[-136,-96],[-212,-149],[-226,-120]],[[81927,48346,0],[-53,-27]],[[81326,47747,0],[-185,-173],[-21,-19]],[[81120,47555,0],[-28,-27],[-6,-6]],[[76658,28245,0],[-19,-20],[-53,-49],[-12,-100],[96,-278],[14,-30],[6,-10],[22,-43],[138,-265],[7,0],[-204,-690]],[[75795,26440,0],[1,104]],[[75796,26544,0],[23,282],[6,433]],[[75825,27259,0],[-29,439]],[[75815,28154,0],[6,79]],[[75844,28556,0],[8,106],[5,76]],[[75864,28837,0],[25,-26],[111,-10],[40,-2]],[[76040,28799,0],[100,-16],[80,-15],[61,-12],[74,-12],[31,1]],[[79604,45553,0],[1,-37],[112,-7],[148,-8],[-3,-268],[-44,2],[-113,-108],[-95,-19],[-21,-4],[-27,-6],[-46,-18],[-125,-48],[-38,-15],[-28,-11],[-31,-10],[-18,-14],[-78,-60],[-18,-14],[-46,-19],[31,-17],[6,-9],[11,-12],[8,-13],[2,-20],[-40,-167]],[[79152,44651,0],[-36,15],[-50,11],[-192,42],[-594,124],[-234,47],[-116,26]],[[77930,44916,0],[-112,25],[-50,10]],[[77768,44951,0],[-153,30]],[[77846,45912,0],[14,-1]],[[77860,45911,0],[6,64]],[[77866,45975,0],[12,116]],[[77878,46091,0],[22,200]],[[78250,46596,0],[50,23]],[[78300,46619,0],[12,12],[20,21]],[[78332,46652,0],[49,99]],[[78381,46751,0],[47,101]],[[78428,46852,0],[42,95]],[[78470,46947,0],[29,68]],[[78499,47015,0],[91,4],[30,-1]],[[78620,47018,0],[49,120]],[[78669,47138,0],[64,157]],[[78733,47295,0],[38,104]],[[78878,47293,0],[317,-183]],[[82947,44692,0],[-231,-400],[-113,-211],[-57,-107],[-19,-38],[-49,-91]],[[82478,43845,0],[-34,-65],[-24,-45],[-35,-65]],[[82385,43670,0],[-49,-95],[-32,-61],[-18,-34],[-14,-26],[-41,-76],[-23,-45],[-7,-11],[-68,-130]],[[82133,43192,0],[-97,1]],[[82036,43193,0],[-139,6]],[[81897,43199,0],[-117,5],[-124,4],[-38,2],[-51,15]],[[81567,43225,0],[-11,88],[-37,195],[-53,273],[-40,206],[-14,83],[-4,79],[-2,48],[2,51],[4,37],[6,54],[9,43],[11,58],[15,48],[14,40],[26,73],[35,102],[238,661],[93,18],[149,20],[28,-4],[116,-5],[52,-3],[161,-50],[55,38],[9,3],[119,16],[126,-141],[128,-126],[54,-50],[73,-78],[44,-53],[33,-21],[69,-38],[11,-27],[-139,-171]],[[83906,42655,0],[-4,-25],[-66,-421]],[[83689,41744,0],[-25,2],[-73,13],[-68,9],[-162,26],[-173,27],[-144,23],[-139,-111]],[[82905,41733,0],[-73,3]],[[82819,41959,0],[-5,98]],[[82814,42057,0],[-1,14]],[[82813,42071,0],[-4,79]],[[82809,42150,0],[0,12]],[[82809,42162,0],[-2,40]],[[82807,42202,0],[-6,109],[-1,15]],[[82800,42326,0],[-4,88]],[[82796,42414,0],[-15,294]],[[82520,42880,0],[-77,-4],[-44,4]],[[82399,42880,0],[-42,4]],[[82357,42884,0],[-42,5]],[[82315,42889,0],[-143,18],[-106,11],[-6,-2]],[[82060,42916,0],[-8,-2],[-10,-6],[-6,-5],[-4,-7]],[[82032,42896,0],[19,60]],[[82051,42956,0],[5,33],[28,75],[4,9],[5,15]],[[82093,43088,0],[5,12],[35,92]],[[82133,43192,0],[71,137],[8,14],[48,90],[57,106],[62,119],[6,12]],[[82385,43670,0],[38,70],[31,60],[24,45]],[[82478,43845,0],[71,133],[61,115],[12,24],[57,107],[36,68],[20,35],[5,7],[81,140],[126,218]],[[82947,44692,0],[105,-106],[96,-103],[120,-123],[91,-94],[8,-10],[68,-69],[10,-11],[95,-99],[90,-94],[19,-20],[12,-11],[57,-57],[66,-44],[328,-208],[262,-167],[48,-31],[41,-27]],[[86090,42789,0],[-9,-31],[-9,-30],[-6,-31]],[[86066,42697,0],[-5,-25],[-36,23]],[[86025,42695,0],[-56,36]],[[85969,42731,0],[-116,-96],[-62,-52],[-137,-247],[37,-90],[-141,-151],[-59,5]],[[85491,42100,0],[-12,39],[-4,33],[1,61],[15,235],[3,28],[35,161],[35,137],[-69,14],[-146,-19],[-82,-59],[-102,43],[-2,172],[-133,36],[38,87],[11,26],[-55,35],[-58,38],[-475,300]],[[84821,44111,0],[26,-2],[344,-34],[158,-16],[182,-18],[166,-16],[155,-15],[21,-3],[14,-2],[29,-5],[30,-6],[31,-9],[30,-9],[30,-12],[31,-13],[31,-14],[30,-17],[30,-18],[31,-22],[31,-24],[31,-29],[30,-30],[26,-32],[24,-31],[21,-31],[18,-31],[15,-31],[14,-30],[12,-31],[9,-30],[8,-31],[7,-31],[5,-31],[4,-31],[2,-30],[0,-16]],[[86447,43380,0],[-25,-5],[-86,-13]],[[86336,43362,0],[-2,-30],[-3,-31]],[[86331,43301,0],[-6,-31],[-7,-37],[-11,-31]],[[86307,43202,0],[-11,-31],[-13,-31]],[[86283,43140,0],[-19,-38],[-33,-56]],[[86231,43046,0],[-44,-74],[-27,-46],[-26,-45]],[[86134,42881,0],[-18,-32],[-14,-30],[-12,-30]],[[86415,41231,0],[-21,8]],[[86278,41280,0],[0,1],[-22,9]],[[86195,41311,0],[-137,42],[-97,27],[-117,18]],[[85844,41398,0],[-30,26],[-9,19],[-2,16],[3,27],[9,71],[-1,14],[-7,22],[-3,8],[-8,16],[-209,322],[-57,89],[-14,22],[-13,29]],[[85503,42079,0],[-12,21]],[[85969,42731,0],[25,-16],[31,-20]],[[86066,42697,0],[5,26],[8,29],[11,37]],[[86134,42881,0],[55,92],[42,73]],[[86283,43140,0],[24,62]],[[86331,43301,0],[5,61]],[[86336,43362,0],[111,18]],[[86447,43380,0],[138,21],[297,-2],[-58,-65],[-14,-73],[55,-98],[155,-104],[-4,-16],[-316,-440],[2,-202],[57,-159],[278,-173],[-14,-18],[-51,-77],[263,-134],[162,-91],[65,-77],[130,-152],[-170,-544],[-14,-16],[-15,-13],[-17,-7],[-16,-5],[-22,0],[-26,5],[-183,52],[-90,25],[-120,33],[-60,21],[-187,68],[-146,52]],[[85491,42100,0],[3,0],[9,-21]],[[85844,41398,0],[46,-32]],[[85548,41404,0],[-15,2]],[[85111,41463,0],[-145,23]],[[84674,41534,0],[-181,26],[-15,2]],[[84478,41562,0],[-12,1],[-138,16]],[[83691,41708,0],[-11,5],[6,21],[3,10]],[[84213,43079,0],[216,294],[34,45]],[[84463,43418,0],[-39,25],[32,45],[35,-21]],[[82399,42880,0],[43,-4]],[[82781,42719,0],[0,-11]],[[82781,42708,0],[1,-9]],[[82783,42662,0],[8,-158],[5,-90]],[[82796,42414,0],[2,-62],[1,-9]],[[82799,42343,0],[1,-17]],[[82800,42326,0],[0,-15],[2,-15],[5,-94]],[[82807,42202,0],[0,-6],[2,-34]],[[82809,42150,0],[1,-11],[3,-68]],[[82814,42057,0],[1,-7],[4,-91]],[[82820,41947,0],[0,-6]],[[82820,41941,0],[5,-110],[1,-13]],[[82828,41794,0],[3,-51],[0,-7]],[[82831,41736,0],[-1,-31],[-2,-12],[-4,-16],[-14,-27],[-12,-9],[-3,-2],[-22,-17]],[[82773,41622,0],[-101,-80],[-1,0],[-134,-105],[-3,-3],[-76,-61],[-9,-7],[-5,-3]],[[82442,41361,0],[-67,-45],[-106,-71],[-25,-17],[45,-45],[-85,-56],[-51,-33],[-21,-15],[-15,-14],[-12,-13],[-17,-23],[-13,-21],[-18,-43],[-7,-33],[-3,-25],[-1,-4],[-2,-17],[6,-26],[48,-285],[16,-94],[-9,0],[-21,-4],[-37,-6],[-21,-4],[-16,-2],[-42,161],[-89,323],[-11,38],[-7,40],[-3,26],[-3,44],[0,55],[3,54],[7,43],[9,43],[3,10]],[[81877,41302,0],[10,43],[11,40],[22,70],[22,56],[42,80],[7,3],[3,5],[63,101]],[[82057,41700,0],[5,9],[6,14],[13,30]],[[82081,41753,0],[23,64],[15,36]],[[82119,41853,0],[1,5],[3,9],[19,60],[5,19]],[[82147,41946,0],[7,31],[8,33]],[[82162,42010,0],[1,3],[0,6],[1,4]],[[82164,42023,0],[1,14],[7,84]],[[82172,42121,0],[0,2],[0,2],[-4,65],[-2,55]],[[82166,42245,0],[-4,15],[-1,2],[0,1],[-15,60]],[[82146,42323,0],[-2,6],[-12,40],[-7,27]],[[82125,42396,0],[-1,0],[-16,37],[-4,16]],[[82104,42449,0],[-22,58],[-2,5],[-8,19],[-4,11]],[[82068,42542,0],[-3,15],[-2,10],[-10,56]],[[82053,42623,0],[-14,82]],[[82039,42705,0],[-2,22],[-8,61],[0,3]],[[82029,42791,0],[6,60],[2,4],[0,4],[2,13],[2,10],[0,5],[0,1],[2,16],[0,1]],[[82032,42896,0],[4,-45],[-7,-60]],[[82029,42791,0],[10,-86]],[[82053,42623,0],[15,-81]],[[82068,42542,0],[14,-36],[22,-57]],[[82104,42449,0],[4,-17],[17,-36]],[[82125,42396,0],[21,-73]],[[82146,42323,0],[17,-63],[3,-15]],[[82166,42245,0],[3,-55],[3,-69]],[[82172,42121,0],[-8,-98]],[[82164,42023,0],[-2,-13]],[[82147,41946,0],[-4,-19],[-24,-74]],[[82081,41753,0],[-12,-30],[-12,-23]],[[82057,41700,0],[-77,-6],[-30,12],[-14,103],[-12,92],[-15,107],[-7,37],[-6,21],[-12,32],[-9,25],[-16,29],[-10,19],[-20,31],[-35,46],[-18,19],[-25,24],[-12,11],[-27,22],[-26,20],[-34,21],[-24,13],[-47,20],[-49,20],[-50,20],[-69,26],[-122,47],[-100,41],[-44,20],[-38,23],[-43,27],[-68,46],[-68,38],[-49,29],[42,133],[41,123],[22,61],[113,-45],[93,-36]],[[81192,42971,0],[13,1],[10,3],[11,7],[9,10]],[[81235,42992,0],[5,27]],[[81240,43019,0],[11,65],[25,187],[1,19],[-8,21],[-12,12],[-12,13]],[[81245,43336,0],[86,-28],[43,-15],[147,-50],[46,-18]],[[81897,43199,0],[68,-3],[71,-3]],[[82133,43192,0],[-40,-104]],[[81240,43019,0],[0,-2],[-5,-25]],[[81192,42971,0],[-7,1],[-91,33],[-114,47],[-21,-60],[-43,-121],[-42,-135],[-20,12],[-86,46],[-71,36],[-11,4],[-149,64],[-79,33],[-21,8],[-40,13],[-21,9],[-17,5],[-28,9],[-134,33],[-88,17],[-74,11],[-101,10],[-62,4],[-62,3],[-22,0],[-17,-1],[-28,-4],[-31,-6],[-30,-9],[-32,-8],[-50,-19],[-29,-15],[-42,-24],[-40,-18],[-24,-13],[-24,3],[-14,20]],[[79427,42959,0],[-53,81],[-4,8],[-62,112],[-55,101]],[[79253,43261,0],[31,10],[100,20],[37,8],[44,8],[15,3],[58,12],[2,0],[68,13],[38,8]],[[79646,43343,0],[98,19],[91,21],[37,9],[26,6],[27,1],[55,54]],[[79980,43453,0],[25,23]],[[80552,43595,0],[94,-47],[81,-37],[109,-38],[29,-10],[156,-53],[149,-49],[75,-25]],[[79253,43261,0],[-29,64],[-80,171],[-15,33],[-10,20],[-2,4],[-14,23],[-43,71],[-5,8],[-34,58],[0,24],[-3,14],[-13,52],[-24,36],[-28,42],[-8,12],[-106,91],[-184,137],[-71,53],[-6,11],[-11,10],[-33,27],[-92,80],[-77,66]],[[78365,44368,0],[-29,27],[-182,169],[-296,273],[-2,61],[3,34]],[[77859,44932,0],[71,-16]],[[79152,44651,0],[5,-60],[314,-67],[47,-17],[34,-18],[45,-28],[37,-28],[49,-51],[84,-89],[120,-126],[86,-90],[54,-54],[72,-79],[22,-23],[121,-109],[13,-13],[0,-21],[-3,-15],[-10,-12],[-41,-38],[-105,-104],[-111,-110],[-38,-16]],[[79947,43483,0],[33,-30]],[[79427,42959,0],[-55,-35],[-59,-43],[-24,-25],[-56,-61],[-47,-40],[-20,-19],[-13,-19],[-15,-20],[-57,-122],[-14,-53],[-6,-14],[-3,-9],[-13,-8],[-24,5],[-15,12],[-59,117],[-53,108],[-22,36],[-21,44],[-21,43],[-21,36],[-19,31],[-1,4],[-42,87],[-48,-16],[-43,-14],[-173,-48],[-82,-20],[-72,-20],[-47,-14],[-70,-21],[-51,-14],[-55,-20],[-31,-9],[-47,-14],[-33,-9],[-32,-8],[-24,6],[-105,100],[-47,41],[-17,22],[-89,110],[-33,44],[-18,19]],[[77630,43129,0],[5,41],[14,43],[5,19],[25,61],[0,62],[4,17],[60,245],[5,61],[7,204],[-10,1],[-1,5],[-2,9],[-10,61],[-10,6],[-5,34],[-2,14],[-4,12]],[[77711,44024,0],[-10,31],[-2,51],[-1,13],[-3,12],[-4,17]],[[77691,44148,0],[-27,190]],[[77664,44338,0],[1,0]],[[77665,44338,0],[-17,101]],[[77617,44661,0],[-37,13]],[[77532,44684,0],[6,90]],[[77546,44791,0],[13,40],[1,1]],[[77768,44951,0],[91,-19]],[[64005,39419,0],[-39,-60]],[[63966,39359,0],[-121,-236],[-21,-50],[-18,-51],[-1,-12],[6,-14],[11,-10],[19,-7],[-13,-90],[-24,0],[-23,-7],[-18,-11],[-11,-14],[-21,-51],[-22,-69],[-25,-73]],[[63684,38664,0],[-165,13],[-27,-143],[-13,-30],[-23,-17],[-20,-6],[-16,0],[-89,28],[-102,33],[-81,21],[-93,20],[-34,5],[-43,5],[-128,5],[-33,-1],[-32,-2],[-19,-2],[-30,-4],[-72,-10],[-74,-14],[-22,-7],[-18,-4],[-58,-16],[-135,-53],[-33,-12],[-50,-6],[-35,1],[-36,8],[-40,33],[-52,57]],[[62399,40724,0],[243,-194],[20,-21],[18,-32],[4,-9],[5,-15],[1,-3],[2,-7],[1,-6],[49,0],[30,0],[0,-2]],[[67546,50727,0],[14,-22],[43,-58]],[[67688,50131,0],[1,-2],[7,-14]],[[68291,49482,0],[-21,2],[-34,5]],[[68189,49495,0],[-63,9]],[[68126,49504,0],[-89,3]],[[67732,49573,0],[-32,7],[-28,5]],[[65669,50577,0],[16,47]],[[65970,51032,0],[16,80],[2,10]],[[65988,51122,0],[7,51],[1,8]],[[65996,51181,0],[1,9],[289,131]],[[62438,37883,0],[-211,-167]],[[62943,36392,0],[172,-306],[59,-99],[25,-48],[10,-27],[10,-25],[14,-36],[9,-30],[6,-27],[6,-29],[2,-14],[1,-8],[7,-38],[3,-31],[1,-40],[-2,-44],[-7,-59],[-15,-89],[-35,-84]],[[62890,34835,0],[-1,9],[-1,10],[-2,11],[-3,7],[-5,12],[-6,11],[-9,12],[-10,10],[-11,9],[-20,12],[-24,8],[-9,0],[-9,-2],[-12,-5],[-9,-8],[-9,-10],[-22,-51],[-18,-49],[-20,-68],[-13,-182],[0,-48],[-4,-113],[-3,-62]],[[62670,34348,0],[-2,-5],[-17,-86]],[[62651,34257,0],[-12,-38],[-188,-679],[-23,-77],[-17,-34],[-35,-72],[-12,-28],[-61,-133],[-8,-22],[-2,-22],[2,-58],[2,-69],[5,-66],[-10,-126],[-6,-74],[-18,-160],[-5,-51],[-19,-186],[-10,-146],[-14,-71],[-36,-135],[-1,-63],[12,-90],[23,-188],[14,-65],[47,-102],[10,-55],[5,-114],[4,-34],[6,-77],[1,-24],[3,-14],[6,-13],[10,-23],[10,-27],[13,-21],[14,-19],[13,-13],[13,-8],[19,-11],[20,-34],[-7,-2]],[[62445,30664,0],[-2,-5],[-14,-47]],[[62429,30612,0],[-20,-36],[-6,-11]],[[62089,30391,0],[-15,-1],[-14,-2]],[[61790,30404,0],[-25,2],[-32,3]],[[61323,30511,0],[-31,13],[-35,19],[-64,36],[-61,40],[-33,23],[-9,8],[-41,34],[-30,26],[-51,49],[-31,29],[-94,90],[-52,53],[-37,44],[-41,44],[-33,43],[-29,49],[-27,49],[-27,65],[-14,48],[-8,35],[-9,38],[-7,42],[0,115],[6,108],[7,107],[7,105],[7,126],[1,7],[14,-5],[32,30],[48,46],[-63,38],[-19,12],[-20,17],[-14,17],[-16,22],[-18,28],[-9,31],[-5,28],[-91,2]],[[59612,36410,0],[197,17],[93,10],[10,0],[127,5]],[[60039,36442,0],[28,1],[59,1]],[[60126,36444,0],[1,33],[1,72]],[[60128,36549,0],[-1,18]],[[60127,36567,0],[2,59],[1,40]],[[60130,36666,0],[1,51],[0,18]],[[60131,36735,0],[1,18],[1,63]],[[60133,36816,0],[0,56],[1,64]],[[60134,36936,0],[7,59],[1,10]],[[60142,37005,0],[3,15],[4,28]],[[60149,37048,0],[11,46],[15,51]],[[60175,37145,0],[8,23],[10,28]],[[60193,37196,0],[9,20],[4,11]],[[60206,37227,0],[9,23],[19,53],[11,27],[37,53],[62,85]],[[60344,37468,0],[70,76]],[[60414,37544,0],[124,120],[59,50],[39,23],[10,6],[41,20],[44,18],[54,17],[56,13],[46,7],[43,5],[64,0],[28,0]],[[61022,37823,0],[27,-3],[153,-18],[47,-6]],[[61249,37796,0],[36,-10],[6,15],[13,32],[0,1],[-8,61]],[[61296,37895,0],[-17,5],[-21,10]],[[61258,37910,0],[-15,15],[-6,8],[-6,10]],[[61231,37943,0],[-4,16],[0,15],[3,14],[-37,4],[-61,5],[-8,-47],[-246,15],[-47,-20]],[[88936,57118,0],[55,-39]],[[88991,57079,0],[114,8],[113,-35],[2,-1]],[[89220,57051,0],[212,-80],[54,-20]],[[89486,56951,0],[34,-24],[22,-46]],[[89542,56881,0],[36,-21],[23,-12],[19,-14],[-3,-21]],[[89617,56813,0],[-29,-37]],[[89588,56776,0],[-15,-30],[-53,-210]],[[89520,56536,0],[-148,95],[-5,-4],[-11,-4]],[[89356,56623,0],[-635,-278],[-46,-18]],[[88675,56327,0],[-68,-427],[161,-424],[223,-305],[-45,-19]],[[88946,55152,0],[-233,-138]],[[88713,55014,0],[-68,-28],[-227,-45]],[[88418,54941,0],[-479,62]],[[87939,55003,0],[-398,-64]],[[87541,54939,0],[-117,-24],[-165,-36]],[[87259,54879,0],[-78,-11]],[[87181,54868,0],[-384,-50],[-172,-22],[-144,-2],[-171,-15],[-173,26],[-313,68],[-35,7],[-108,45],[-101,41]],[[85580,54966,0],[-37,17],[-103,45]],[[85440,55028,0],[-212,68],[-157,48],[-242,80],[-75,40],[-70,32],[-364,132],[-22,8]],[[84298,55436,0],[-212,74],[-130,46],[-113,41]],[[83843,55597,0],[-122,73]],[[83721,55670,0],[-103,31]],[[83618,55701,0],[-101,31]],[[83517,55732,0],[-52,20],[-50,22]],[[83415,55774,0],[-97,180]],[[83318,55954,0],[15,66],[52,142],[48,122],[35,182]],[[83468,56466,0],[7,37],[42,165]],[[83517,56668,0],[38,134]],[[83555,56802,0],[6,25],[114,209],[9,17],[67,44],[80,47]],[[83831,57144,0],[84,43],[27,23],[104,92],[162,128],[114,100],[26,21],[81,91],[87,90],[69,70],[95,103],[56,59]],[[84736,57964,0],[140,160]],[[84876,58124,0],[111,117],[74,111],[37,36],[159,156],[33,33],[173,145],[146,110],[88,73],[24,37],[6,53],[258,230],[63,81],[80,77]],[[86128,59383,0],[164,83],[188,97],[12,8]],[[86492,59571,0],[398,35]],[[86890,59606,0],[-103,-85],[289,-89],[35,-191],[52,-136]],[[87163,59105,0],[119,-249]],[[87282,58856,0],[230,-423]],[[87512,58433,0],[228,-395]],[[87740,58038,0],[281,-414],[46,-58]],[[88067,57566,0],[81,-37]],[[88148,57529,0],[284,-204]],[[88432,57325,0],[65,-47],[166,-52],[52,-30],[34,-14],[70,-30],[55,-15],[62,-19]],[[84115,60591,0],[63,17]],[[84178,60608,0],[26,15]],[[84204,60623,0],[57,7]],[[84261,60630,0],[43,-7]],[[84304,60623,0],[30,-34]],[[84334,60589,0],[197,-36]],[[84531,60553,0],[165,-24],[45,-6],[211,-31]],[[84952,60492,0],[219,-6],[17,-4],[26,-21],[39,-5],[33,3],[140,58],[33,62],[97,123],[69,5],[54,-30],[197,-64],[37,63],[51,-7],[81,-55],[87,-222],[208,-113],[-88,-213],[322,-92],[125,-32],[127,-39],[356,-99],[23,0],[8,-10],[-22,-21]],[[87191,59773,0],[-301,-167]],[[86492,59571,0],[-364,-188]],[[84876,58124,0],[-13,-14],[-127,-146]],[[83831,57144,0],[-82,-48],[-37,-58],[-152,-216],[-5,-20]],[[83517,56668,0],[-42,-162],[-7,-40]],[[83318,55954,0],[-19,25]],[[83299,55979,0],[-19,21]],[[83280,56000,0],[-222,161]],[[83058,56161,0],[-187,134]],[[82871,56295,0],[-328,141]],[[82543,56436,0],[-37,-8]],[[82506,56428,0],[10,56],[61,326],[6,34],[89,142],[27,45],[18,67],[10,37],[16,71],[-1,15],[0,162],[4,54],[117,240],[101,205],[94,197],[16,52],[1,33],[-1,20],[-6,26],[-6,21],[-36,42],[-51,32],[-17,2],[-273,37],[-65,9],[-173,16],[-118,-17],[-33,-7],[-81,-22],[-97,-26],[-31,-9],[-117,-28],[-208,-42]],[[81762,58218,0],[-44,64],[-77,62],[-65,51],[-248,113],[-34,71],[-31,29],[-21,16],[-32,23],[-26,53],[52,52],[30,65],[305,212],[57,88],[10,17],[-32,83],[-47,28],[74,200],[91,68],[80,50],[75,36],[91,19],[12,2],[93,27],[24,2],[21,-27],[30,-2],[59,55],[59,11],[81,36],[32,39],[56,3],[33,27],[11,3],[48,13],[63,-9],[-9,263]],[[82583,60061,0],[-1,12],[174,76],[215,36],[-77,137],[97,88]],[[82991,60410,0],[-47,132]],[[82944,60542,0],[140,107],[176,44]],[[83260,60693,0],[5,-40],[31,-10],[22,-1],[35,7],[24,-7],[42,-22]],[[83419,60620,0],[55,-5]],[[83474,60615,0],[48,-59],[79,36],[18,15],[12,19],[22,35],[13,42],[19,78],[16,74],[11,76],[32,33],[39,12],[32,-1],[114,-26],[186,-358]],[[80937,60843,0],[64,5],[40,3]],[[81041,60851,0],[212,3],[138,-2],[149,104],[37,-42],[128,49],[63,-41],[109,31],[50,49],[99,210],[157,287],[62,-5],[10,28],[53,-31],[170,38],[519,-102],[-16,-66],[-28,-74],[-50,-68],[-21,-56],[128,-33]],[[83010,61130,0],[54,-173]],[[83064,60957,0],[23,-71]],[[83087,60886,0],[151,-43]],[[83238,60843,0],[13,-86],[4,-25],[5,-39]],[[82944,60542,0],[8,-22],[39,-110]],[[81762,58218,0],[-63,-22]],[[81699,58196,0],[-26,-11]],[[81673,58185,0],[-13,-9],[-28,-23],[-41,-38],[-110,-100],[-30,-22],[-24,-15],[-201,-93],[-58,-27],[-25,-13],[-16,-13],[-12,-10],[-17,-21],[-11,-17]],[[81087,57784,0],[-3,-7],[-6,-15]],[[81078,57762,0],[-26,-64],[-5,-13]],[[81047,57685,0],[-36,-83],[-7,-16]],[[81004,57586,0],[-92,-230],[-109,-5]],[[80803,57351,0],[-18,-1],[-93,-2]],[[80692,57348,0],[-19,-1],[-213,-22]],[[80460,57325,0],[-2,0],[-25,-3],[-198,-25]],[[80235,57297,0],[-39,27]],[[80196,57324,0],[1,269],[0,17]],[[80197,57610,0],[19,208],[3,29],[29,311],[18,183],[16,175],[8,88],[-2,110]],[[80288,58714,0],[0,17],[1,78]],[[80289,58809,0],[-1,5],[0,7],[-1,8],[-1,7],[-2,7],[-3,7],[-3,7],[-1,4],[-5,12],[-6,11],[-6,11],[-6,10],[-7,11],[-7,10],[-23,33],[-32,45],[-31,45],[-31,45],[-30,46]],[[80093,59140,0],[-37,60],[-44,71]],[[80012,59271,0],[-49,69],[-28,36],[-15,18]],[[79920,59394,0],[5,11],[70,111],[2,12],[0,6],[-2,12],[-9,105],[64,2],[19,-1],[23,1],[11,7],[10,9]],[[80113,59669,0],[73,85],[26,32]],[[80212,59786,0],[9,10]],[[80221,59796,0],[2,10],[-3,18],[-9,36]],[[80211,59860,0],[-28,110],[-6,22],[-41,162]],[[80136,60154,0],[66,263],[4,16],[23,91]],[[80229,60524,0],[-4,33],[-25,171]],[[80200,60728,0],[23,184],[3,20]],[[80226,60932,0],[124,-211]],[[80350,60721,0],[142,243],[11,55]],[[80503,61019,0],[-24,527]],[[80479,61546,0],[-10,239]],[[80469,61785,0],[375,-20],[8,-211],[-79,-63],[-19,-92],[32,-64]],[[80786,61335,0],[-11,-68],[-7,-40]],[[80768,61227,0],[-5,-84],[-4,-178],[71,-103],[107,-19]],[[74578,61996,0],[-26,-51],[-23,-45],[187,-16],[5,-167],[-52,-313],[65,-42],[27,-24],[37,-52],[39,-51],[34,-52],[37,-57],[56,-80]],[[74964,61046,0],[2,-4],[15,-32]],[[74981,61010,0],[48,-63],[60,-32],[85,-67],[57,4],[153,-12],[174,-12]],[[75558,60828,0],[9,0],[38,-3]],[[75605,60825,0],[56,-1],[56,5]],[[75717,60829,0],[53,2]],[[75770,60831,0],[1,-192]],[[75771,60639,0],[50,-41],[15,-13],[42,-62],[53,-70],[26,-10],[114,-64],[13,-19],[61,-77],[18,-26],[22,-179],[49,-128],[3,-29],[-38,-15],[-40,-5],[33,-69],[0,-81],[13,-51],[-22,-67],[70,-45],[110,-81],[64,-49],[-164,-42],[-24,-7],[-167,-25],[-57,7],[-35,-31],[-217,-58],[-5,28],[-30,-12],[-179,-83],[-133,-59],[-87,-91],[-40,-41],[-32,-47]],[[75257,58997,0],[-185,95],[-158,82]],[[74914,59174,0],[-16,10],[-326,161],[-135,28],[-111,11],[-7,-33],[-2,-23],[21,-274],[19,-100],[235,32],[-9,-595],[-65,-44],[-13,-9],[-46,-32],[20,-85],[-111,-270],[6,-260],[0,-21],[-61,8]],[[74313,57678,0],[-55,161]],[[74258,57839,0],[-61,17],[-172,-75],[-215,-71],[-70,9],[-62,-51],[-144,-40],[-94,-67],[-157,-81],[-68,-46],[-6,19],[-11,17],[-34,2],[-29,15],[-45,23],[-26,1],[-46,1],[-74,17],[-33,53],[-52,5],[-17,69],[-11,-6]],[[72831,57650,0],[-7,-8],[-103,0],[-65,-5],[-36,-16],[-56,3],[-6,-27],[-61,-2],[-124,44],[-114,9],[-33,-14],[-95,3],[-59,26],[-41,12],[-321,88],[-130,-33],[-29,60],[-35,172],[-34,169],[-24,63],[-130,226],[-76,92]],[[71252,58512,0],[-58,52],[-12,11]],[[71182,58575,0],[-79,138]],[[71103,58713,0],[58,64]],[[71161,58777,0],[41,58]],[[71202,58835,0],[37,45]],[[71239,58880,0],[49,22]],[[71288,58902,0],[70,-20],[13,-4],[43,-13]],[[71414,58865,0],[65,34]],[[71479,58899,0],[108,-8]],[[71587,58891,0],[44,-18]],[[71631,58873,0],[72,6]],[[71703,58879,0],[70,-4]],[[71773,58875,0],[27,22],[30,1],[22,22],[29,1]],[[71881,58921,0],[77,76]],[[71958,58997,0],[92,23],[44,28],[64,68],[68,65]],[[72226,59181,0],[24,27]],[[72250,59208,0],[-36,58],[-48,29],[-18,51],[-12,36],[-28,35],[-1,28],[-9,14],[-22,22],[-30,29],[8,56],[3,13],[-5,25],[20,42],[61,107],[63,76],[42,25],[36,37],[119,105],[90,143],[41,35],[23,7],[274,25],[52,7],[13,1],[88,31],[78,23],[54,10],[36,4],[35,23],[36,12],[-1,25],[51,64],[67,60],[-4,42],[-17,65],[-8,26],[-62,82],[-67,101]],[[73172,60782,0],[-61,196]],[[73111,60978,0],[-107,242],[76,120],[-78,65],[-16,34],[-12,15],[-29,8],[-36,38],[-7,4],[-49,-5],[10,202]],[[72863,61701,0],[63,-15]],[[72926,61686,0],[63,-12],[52,4],[85,42],[45,-2],[74,29],[55,16],[8,-54],[54,-7],[35,16],[-2,43]],[[73395,61761,0],[110,44],[23,9]],[[73528,61814,0],[88,20],[34,8],[55,19],[65,27],[40,24],[153,38]],[[73963,61950,0],[211,34]],[[74174,61984,0],[41,0]],[[74215,61984,0],[73,0]],[[74288,61984,0],[24,11],[56,21],[67,5]],[[74435,62021,0],[133,18]],[[74568,62039,0],[50,32],[-40,-75]],[[87181,54868,0],[16,-46]],[[87197,54822,0],[-543,-73],[543,73]],[[87197,54822,0],[17,-61]],[[87214,54761,0],[-52,-23],[-276,-118],[25,-52],[40,-84]],[[86951,54484,0],[-247,-183]],[[86704,54301,0],[-210,31],[210,-31]],[[86704,54301,0],[47,-42],[125,-113],[-1,-96],[0,-20]],[[86875,54030,0],[6,-37]],[[86881,53993,0],[41,-94],[24,-56]],[[86946,53843,0],[189,-140],[6,-4]],[[87141,53699,0],[11,-10],[22,-21],[-161,-294]],[[87013,53374,0],[-305,-262]],[[86708,53112,0],[-79,-75],[-126,-110]],[[86503,52927,0],[-144,-130]],[[86359,52797,0],[-9,-7],[-9,-7]],[[86341,52783,0],[-19,-16],[-17,-15],[-5,-8],[-1,-3],[-118,-7],[-21,34],[-6,10],[-87,16],[-182,35],[-4,1],[-21,2],[-63,67],[-34,157],[-16,71],[-12,178],[-97,-35],[-95,-33],[-67,-32],[-11,-5],[-31,7],[-5,1],[-38,-7],[-7,-18],[-6,-14],[-76,4],[-85,-31],[-33,49],[-67,127],[531,200],[-531,-200],[-13,-6],[-136,-78],[-152,135],[-35,32],[-25,-16],[-34,-20],[-24,-14],[-34,-20],[85,-192],[3,-8],[5,-10],[43,-88],[47,-89],[78,-87],[59,-64],[33,-64],[-16,-7],[-91,-38],[9,-65],[7,-48],[-111,-14],[-162,-20],[-170,-156],[-451,-59],[-11,52],[-1,3],[-164,-35],[-17,-98],[-116,29],[-158,40],[11,42],[20,81],[-69,-7],[-8,0],[-13,-25],[-53,5],[-69,18],[-22,5],[-186,-18],[-7,-1],[-85,-63],[-19,-14],[-18,-58],[-7,-59],[-2,-13],[-155,-40],[84,-294],[-14,-6],[-18,-8],[-7,-66],[-6,-42],[-10,-56],[-16,-40],[-164,13],[-165,16],[16,51]],[[82583,51734,0],[55,121]],[[82638,51855,0],[-59,-3],[-29,-1]],[[82550,51851,0],[-188,4],[-36,0],[-176,4],[-61,8],[-164,61],[-19,6]],[[81906,51934,0],[6,28],[21,113]],[[81933,52075,0],[4,24],[5,30]],[[81942,52129,0],[5,41],[-14,17]],[[81933,52187,0],[-3,20]],[[81930,52207,0],[-9,57]],[[81921,52264,0],[-2,71]],[[81919,52335,0],[2,83]],[[81921,52418,0],[9,29],[11,32],[13,37]],[[81954,52516,0],[10,27]],[[81964,52543,0],[15,37]],[[81979,52580,0],[23,43]],[[82002,52623,0],[45,93]],[[82047,52716,0],[6,13],[50,139],[10,37],[4,42]],[[82117,52947,0],[8,36]],[[82125,52983,0],[9,2]],[[82134,52985,0],[2,-7]],[[82136,52978,0],[34,5]],[[82170,52983,0],[-4,28]],[[82166,53011,0],[10,2]],[[82176,53013,0],[0,7],[36,50],[-7,47],[52,12],[9,15],[29,52],[80,141],[9,23]],[[82384,53360,0],[67,151],[31,72],[5,7]],[[82487,53590,0],[-1,24],[57,7],[12,-9],[50,5],[23,96],[28,13]],[[82656,53726,0],[-17,112],[-289,15]],[[82350,53853,0],[-122,8]],[[82228,53861,0],[-128,5],[-34,-16],[-114,133],[23,44]],[[81975,54027,0],[-158,63],[-22,12],[-12,12]],[[81783,54114,0],[-335,239],[-222,225]],[[81226,54578,0],[22,-3]],[[81248,54575,0],[42,-5]],[[81290,54570,0],[45,0],[42,4]],[[81377,54574,0],[36,9]],[[81413,54583,0],[14,4]],[[81427,54587,0],[21,8],[79,36]],[[81527,54631,0],[310,137],[336,108]],[[82173,54876,0],[338,108]],[[82511,54984,0],[227,105],[421,198]],[[83159,55287,0],[234,109]],[[83393,55396,0],[235,86],[4,1],[26,10]],[[83658,55493,0],[29,11],[-15,33]],[[83672,55537,0],[-11,25]],[[83661,55562,0],[6,29],[32,86]],[[83699,55677,0],[22,-7]],[[83843,55597,0],[455,-161]],[[85440,55028,0],[140,-62]],[[77245,54581,0],[316,67],[18,4]],[[77579,54652,0],[233,59],[20,5]],[[77832,54716,0],[3,1],[20,6]],[[77855,54723,0],[275,85]],[[78130,54808,0],[-3,-26],[1,-12]],[[78128,54770,0],[-6,-99],[-1,-14]],[[78121,54657,0],[0,-26]],[[78121,54631,0],[-4,-112],[0,-9]],[[78117,54510,0],[-4,-119],[0,-6]],[[78113,54385,0],[-1,-17],[198,-26]],[[78310,54342,0],[52,-3]],[[78362,54339,0],[121,11]],[[78483,54350,0],[68,5]],[[78551,54355,0],[201,17]],[[78752,54372,0],[129,12]],[[78881,54384,0],[10,-96],[449,64],[149,-210],[10,-15],[51,-72]],[[79550,54055,0],[51,-75]],[[79601,53980,0],[49,-105],[25,-55]],[[79675,53820,0],[32,-117]],[[79707,53703,0],[28,-85]],[[79735,53618,0],[29,-104]],[[79764,53514,0],[28,-102]],[[79792,53412,0],[31,-119],[116,-205],[-21,-168]],[[79918,52920,0],[-259,-419],[-19,-12],[-7,-50]],[[79633,52439,0],[-63,-587]],[[79570,51852,0],[-397,30]],[[79173,51882,0],[32,104]],[[78211,51822,0],[-67,-42],[-20,-23],[-426,77],[50,190],[-329,89],[-240,91],[-269,133],[-281,-100],[-104,7],[-237,-152],[-306,-237]],[[75982,51855,0],[-107,47],[-22,80],[-279,897]],[[75574,52879,0],[168,359]],[[75742,53238,0],[-38,296]],[[75704,53534,0],[-54,409],[-8,68]],[[75642,54011,0],[-9,31]],[[75633,54042,0],[28,219]],[[75661,54261,0],[63,288],[9,140],[25,297],[-30,348]],[[75728,55334,0],[0,11],[103,-25],[15,-42],[87,-29],[29,-6],[138,-11],[131,-2],[-40,-202],[56,-137],[-25,-28]],[[76222,54863,0],[111,-69]],[[76333,54794,0],[81,-35],[3,-44],[49,-9],[-6,-31],[245,-42],[19,5],[24,6],[497,-63]],[[74258,57839,0],[6,-19],[44,-141],[-8,-162],[-3,-141],[44,-56],[4,-88],[67,4],[20,-191],[-38,-35],[-37,-285],[-2,-25],[-1,-5],[185,-3],[498,-122],[39,-46],[49,-57],[93,-109],[102,-114],[24,-19]],[[75344,56225,0],[-43,-40],[29,-58]],[[75330,56127,0],[59,-95],[212,-276],[41,-69],[65,-135],[-7,-82],[-15,-63],[-11,-65]],[[75674,55342,0],[11,-2],[43,-6]],[[75661,54261,0],[-15,-119],[-7,-53],[-6,-47]],[[75642,54011,0],[62,-477]],[[75704,53534,0],[25,-192],[13,-104]],[[75574,52879,0],[279,-896],[33,-119],[-38,12],[-11,47],[-49,-2],[-339,128],[-153,32],[-133,-30],[-205,64],[-173,111],[-331,95],[-159,-8],[-94,32],[-480,121],[-640,-10],[-73,51],[-286,-9],[-179,61],[-97,76],[-329,140],[-165,10],[-138,52],[-155,-25],[-154,18]],[[71505,52830,0],[-129,-9],[-107,67],[-59,112],[-233,82],[-108,-15],[10,38],[181,761],[158,244],[-624,178],[-143,86],[35,67],[-645,365],[-42,582],[51,487],[-338,622],[223,567],[30,845],[38,104]],[[69803,58013,0],[54,229],[-236,345]],[[69621,58587,0],[-39,181]],[[69582,58768,0],[256,-94],[175,188],[123,-99]],[[70136,58763,0],[306,-157]],[[70442,58606,0],[71,-37]],[[70513,58569,0],[52,-28],[88,-46]],[[70653,58495,0],[131,220]],[[70784,58715,0],[9,62]],[[70793,58777,0],[9,29],[20,28]],[[70822,58834,0],[20,19]],[[70842,58853,0],[16,29]],[[70858,58882,0],[31,51]],[[70889,58933,0],[31,-25],[44,-35]],[[70964,58873,0],[32,-26],[33,-26]],[[71029,58821,0],[74,-108]],[[71103,58713,0],[72,-126],[7,-12]],[[71182,58575,0],[70,-63]],[[78065,61469,0],[304,-68],[74,19]],[[78443,61420,0],[48,-38],[53,-8],[-3,-41],[-6,-157]],[[78535,61176,0],[-21,-155],[-6,-49]],[[78508,60972,0],[196,-16],[1,-30]],[[78705,60926,0],[12,-2],[101,-13]],[[78818,60911,0],[32,-18],[37,-21]],[[78887,60872,0],[10,-22],[8,-59]],[[78905,60791,0],[58,-75],[37,-49]],[[79000,60667,0],[27,-4],[91,-17],[40,-7]],[[79158,60639,0],[91,-47],[62,-31]],[[79311,60561,0],[43,18],[125,51]],[[79479,60630,0],[15,6],[215,74]],[[79709,60710,0],[54,99],[-23,49],[-9,127]],[[79731,60985,0],[-12,46],[-11,38]],[[79708,61069,0],[9,46]],[[79717,61115,0],[94,29],[359,2],[36,-1],[20,-213]],[[80226,60932,0],[-26,-204]],[[80200,60728,0],[29,-204]],[[80229,60524,0],[-93,-370]],[[80136,60154,0],[75,-294]],[[80221,59796,0],[-108,-127]],[[79920,59394,0],[-29,24],[-192,157]],[[79699,59575,0],[-78,52]],[[79621,59627,0],[-21,12],[-90,53]],[[79510,59692,0],[-99,38]],[[79411,59730,0],[-1,1],[-276,82]],[[79134,59813,0],[-243,59]],[[78891,59872,0],[-172,29],[-158,25],[-2,1]],[[78559,59927,0],[-169,23],[-13,2]],[[78377,59952,0],[-22,-1],[-112,0]],[[78243,59951,0],[-28,-4]],[[78215,59947,0],[-17,-2],[-73,-8]],[[78125,59937,0],[-59,-7]],[[78066,59930,0],[-45,-9],[-130,-25]],[[77891,59896,0],[-39,-5],[-203,-26]],[[77649,59865,0],[-151,-13],[-97,-9]],[[77401,59843,0],[-2,0],[-160,-1],[4,147]],[[77243,59989,0],[35,454]],[[77278,60443,0],[18,151]],[[77296,60594,0],[-3,37],[9,182]],[[77302,60813,0],[5,133]],[[77307,60946,0],[3,124]],[[77310,61070,0],[-7,109]],[[77303,61179,0],[167,-12]],[[77470,61167,0],[-7,66],[-11,106],[-13,114]],[[77439,61453,0],[0,3]],[[77439,61456,0],[-4,26],[-18,116],[-23,140]],[[77394,61738,0],[-27,171],[-36,174]],[[77331,62083,0],[-4,14],[295,47]],[[77622,62144,0],[133,27],[123,30],[38,7],[43,-106]],[[77959,62102,0],[55,-135]],[[78014,61967,0],[42,-142],[28,-93]],[[78084,61732,0],[-23,-39],[-20,-35],[-16,-28]],[[78025,61630,0],[4,-109]],[[78029,61521,0],[36,-52]],[[80197,57610,0],[-5,15],[-6,9],[-7,6],[-110,48],[-91,40],[-57,25],[-187,2],[-279,26],[-104,-30],[-97,-35]],[[79254,57716,0],[-52,-17],[-14,30],[-74,119]],[[79114,57848,0],[-48,78]],[[79066,57926,0],[-9,12],[-9,8],[-32,15],[-12,0],[-12,-3],[-40,-8],[-213,-44],[-44,-10],[-17,-7],[-16,-11],[-18,-13],[-18,-16],[-15,-13],[-34,-45]],[[78577,57791,0],[-25,-34],[-9,-11],[-95,-129]],[[78448,57617,0],[-75,76],[-13,14],[-91,61],[-16,10],[-136,83],[-105,64],[-16,9],[-164,96],[-67,40],[-49,31],[-14,9],[-52,39]],[[77650,58149,0],[-58,52]],[[77592,58201,0],[-28,30],[-26,27],[-16,25],[-38,61],[-34,69],[-22,52],[-50,149],[-20,76]],[[77358,58690,0],[-33,136]],[[77325,58826,0],[-7,66]],[[77318,58892,0],[-13,123],[-2,25],[-23,285],[-7,47],[-3,15],[-18,168],[-1,15],[-6,96],[-8,122]],[[77237,59788,0],[1,54],[163,1]],[[77649,59865,0],[242,31]],[[77891,59896,0],[175,34]],[[78125,59937,0],[90,10]],[[78243,59951,0],[134,1]],[[78377,59952,0],[182,-25]],[[78559,59927,0],[332,-55]],[[79134,59813,0],[277,-83]],[[79510,59692,0],[111,-65]],[[79699,59575,0],[221,-181]],[[80012,59271,0],[81,-131]],[[80289,58809,0],[0,-77],[-1,-18]],[[82506,56428,0],[-55,1]],[[82451,56429,0],[-182,14],[-150,10],[-25,2]],[[82094,56455,0],[-168,12],[-37,2]],[[81889,56469,0],[-103,13],[-108,13]],[[81678,56495,0],[-44,6],[-100,13]],[[81534,56514,0],[-131,15],[-12,2],[-46,7],[-8,1],[-120,15],[-10,1],[-16,3],[-5,0],[-92,27],[-8,2],[-125,34],[-8,2],[-26,6],[-9,1],[-125,26],[-9,1],[-183,39],[-14,3],[-23,4]],[[80564,56703,0],[-11,3],[-145,30]],[[80408,56736,0],[-11,2],[-179,37],[-15,3],[-18,16],[-17,15],[-20,18],[-128,115],[-9,7]],[[80011,56949,0],[-37,39],[-8,7]],[[79966,56995,0],[-92,77],[-57,47],[-61,51],[-25,21],[-18,12],[-26,15],[-40,23],[-15,10],[-59,54],[-56,51],[-44,40],[-64,84],[-26,33],[-23,30],[-41,53],[-65,120]],[[80197,57610,0],[-1,-286]],[[80235,57297,0],[225,28]],[[80460,57325,0],[232,23]],[[80692,57348,0],[111,3]],[[81004,57586,0],[43,99]],[[81047,57685,0],[31,77]],[[81078,57762,0],[9,22]],[[81673,58185,0],[16,7],[10,4]],[[79966,56995,0],[45,-46]],[[80408,56736,0],[156,-33]],[[81534,56514,0],[-21,-49],[0,-1]],[[81513,56464,0],[-1,-5],[-4,-20]],[[81508,56439,0],[-20,-104],[-17,-88],[42,-9],[-58,-155],[-4,-17]],[[81451,56066,0],[-10,-39],[-52,10]],[[81389,56037,0],[-124,23],[-22,-98],[-12,-51]],[[81231,55911,0],[-1,-2],[-3,-13]],[[81227,55896,0],[-2,-77]],[[81225,55819,0],[-1,-90],[-1,0]],[[81223,55729,0],[-26,-2]],[[81197,55727,0],[-2,0],[-3,0]],[[81192,55727,0],[-17,-1],[-89,-3]],[[81086,55723,0],[-83,-4],[-53,-2]],[[80950,55717,0],[-2,0],[-37,-1],[-32,-1],[-34,-1],[-182,-4],[-184,-4],[-185,-5],[-1,-10],[-8,-104],[0,-1],[-6,-31],[0,-1],[-13,-70]],[[80266,55484,0],[-7,-41],[-15,-79]],[[80244,55364,0],[-3,0]],[[80241,55364,0],[-33,0],[-104,8]],[[80104,55372,0],[0,3],[4,191]],[[80108,55566,0],[-1,99],[-3,26],[-5,29],[-6,29]],[[80093,55749,0],[-9,29],[-15,36]],[[80069,55814,0],[-25,40],[-16,24],[-14,15],[-23,24],[-20,15],[-89,61],[-84,57],[-178,129],[-36,23],[-83,57],[-27,25],[-19,19],[-15,17],[-11,13],[-18,22],[-15,23],[-16,23],[-15,23],[-14,23],[-77,131]],[[79274,56578,0],[-164,-42]],[[79110,56536,0],[-53,91]],[[79057,56627,0],[-55,94]],[[79002,56721,0],[-52,89]],[[78950,56810,0],[-52,87]],[[78898,56897,0],[-13,23]],[[78885,56920,0],[-72,121]],[[78813,57041,0],[-54,91]],[[78759,57132,0],[-87,142]],[[78672,57274,0],[-140,227]],[[78532,57501,0],[-28,43]],[[78504,57544,0],[-27,37],[-29,36]],[[78448,57617,0],[99,134],[16,21],[14,19]],[[79066,57926,0],[15,-25],[16,-25],[17,-28]],[[82543,56436,0],[221,-95],[107,-46]],[[83058,56161,0],[31,-23],[191,-138]],[[83299,55979,0],[9,-11],[10,-14]],[[83318,55954,0],[53,-98],[44,-82]],[[83415,55774,0],[102,-42]],[[83517,55732,0],[14,-4],[87,-27]],[[83618,55701,0],[81,-24]],[[83699,55677,0],[-2,-4],[-14,-33],[-4,-10],[-12,-38],[-3,-14],[-3,-16]],[[83661,55562,0],[5,-12],[6,-13]],[[83658,55493,0],[-1,0],[-26,-10],[-2,-1],[-236,-86]],[[83393,55396,0],[-190,-89],[-44,-20]],[[83159,55287,0],[-187,-88],[-233,-110],[-228,-105]],[[82173,54876,0],[-172,-56],[-163,-52],[-65,-29],[-246,-108]],[[81427,54587,0],[-5,-1],[-9,-3]],[[81377,54574,0],[-41,-4],[-22,0],[-24,0]],[[81248,54575,0],[-35,5],[-6,1]],[[81207,54581,0],[-9,2],[-43,8]],[[81155,54591,0],[-180,42]],[[80975,54633,0],[-81,18],[-113,24]],[[80781,54675,0],[-111,26],[-19,4]],[[80651,54705,0],[-43,9],[-12,3],[-8,2],[-78,25]],[[80510,54744,0],[-47,19],[-30,15],[-29,14],[-33,20],[-32,19],[-37,33]],[[80302,54864,0],[-7,7],[-30,32],[-42,48],[-64,73]],[[80159,55024,0],[-24,27],[-44,48]],[[80091,55099,0],[2,35],[1,44],[5,194]],[[80099,55372,0],[50,-3],[59,-4],[33,-1]],[[80244,55364,0],[15,80],[7,40]],[[80950,55717,0],[54,2],[82,4]],[[81192,55727,0],[5,0]],[[81223,55729,0],[2,0],[0,90]],[[81227,55896,0],[4,15]],[[81389,56037,0],[53,-10],[9,39]],[[81508,56439,0],[5,25]],[[81513,56464,0],[1,1],[20,49]],[[81678,56495,0],[211,-26]],[[81889,56469,0],[205,-14]],[[82094,56455,0],[176,-12],[181,-14]],[[82228,53861,0],[68,-4],[54,-4]],[[82487,53590,0],[-103,-230]],[[82176,53013,0],[-3,-1],[-7,-1]],[[82166,53011,0],[1,-8],[3,-20]],[[82136,52978,0],[-1,3],[-1,4]],[[82125,52983,0],[-2,-5],[-6,-31]],[[82047,52716,0],[-9,-21],[-36,-72]],[[81979,52580,0],[-11,-26],[-4,-11]],[[81921,52418,0],[0,-23],[-2,-60]],[[81921,52264,0],[3,-16],[6,-41]],[[81930,52207,0],[2,-13],[1,-7]],[[81942,52129,0],[-36,-195]],[[81906,51934,0],[-186,42]],[[81720,51976,0],[-92,36],[-31,11],[-60,26]],[[81537,52049,0],[-24,18],[-20,26],[-98,187],[-93,182],[-31,68],[-5,17],[-12,77],[-27,220],[-2,25],[5,24],[2,16],[-1,19],[-29,-10]],[[81202,52918,0],[-80,-29],[-373,-120]],[[80749,52769,0],[-11,69],[-7,41],[-22,75],[-31,94],[-54,117],[-55,120],[-36,84],[-36,90],[-38,105],[-34,111],[-49,188],[-15,62],[-34,128],[-25,99]],[[80302,54152,0],[-6,22],[-30,108],[-23,97],[-31,115],[-26,99],[-32,112],[-20,115],[-34,200],[-7,53],[-2,26]],[[80091,55099,0],[68,-75]],[[80159,55024,0],[110,-127],[7,-6],[6,-6],[3,-4],[3,-2],[3,-4],[4,-3],[5,-7],[2,-1]],[[80510,54744,0],[86,-28],[55,-11]],[[80651,54705,0],[130,-30]],[[80781,54675,0],[194,-42]],[[81155,54591,0],[52,-10]],[[81207,54581,0],[19,-3]],[[82583,51734,0],[-19,-62],[-32,-135],[-26,-162],[-1,-108],[48,-448],[-36,1],[-102,3],[-110,0],[-157,4],[-211,-19],[-163,1],[-151,-9],[-106,11],[-33,4],[-71,14],[-67,35],[-248,132],[-87,46],[-46,40],[-251,87],[-175,11],[81,189]],[[80620,51369,0],[49,149],[78,307],[31,152]],[[80778,51977,0],[15,80],[6,44],[5,76],[1,41],[-1,51],[-4,67],[-4,69],[-9,81],[-9,60],[-11,69],[-17,103],[-1,51]],[[80749,52769,0],[162,52],[41,14],[8,1],[43,14],[94,31],[105,37]],[[81537,52049,0],[183,-73]],[[77296,60594,0],[-15,-122],[-3,-29]],[[77278,60443,0],[-1,-12],[-13,-164],[-21,-278]],[[77243,59989,0],[0,-11],[-4,-135],[-2,-55]],[[77318,58892,0],[3,-34],[4,-32]],[[77325,58826,0],[-33,-26],[-216,-46],[-24,-5],[-85,-17],[-10,37],[-105,5],[0,-57],[-11,-178]],[[76841,58539,0],[-7,-36],[-71,-187]],[[76763,58316,0],[-432,-221]],[[76331,58095,0],[-453,-54]],[[75878,58041,0],[-2,61]],[[75876,58102,0],[2,62]],[[75878,58164,0],[1,234]],[[75879,58398,0],[-9,50],[-6,33]],[[75864,58481,0],[-16,2],[-168,14],[-69,5]],[[75611,58502,0],[-14,22],[-184,276]],[[75413,58800,0],[-170,141],[-32,27]],[[75211,58968,0],[-29,24],[16,35]],[[75198,59027,0],[59,-30]],[[75771,60639,0],[0,20],[-1,172]],[[75770,60831,0],[2,0]],[[75772,60831,0],[48,-11],[14,-35]],[[75834,60785,0],[120,4],[138,5],[9,0]],[[76101,60794,0],[137,12]],[[76238,60806,0],[10,2],[105,8]],[[76353,60816,0],[51,4],[107,8]],[[76511,60828,0],[57,3],[51,4]],[[76619,60835,0],[118,3],[93,-7]],[[76830,60831,0],[75,-2],[44,-1]],[[76949,60828,0],[118,25],[-28,125],[-13,136],[0,27]],[[77026,61141,0],[-1,56]],[[77025,61197,0],[44,0],[234,-18]],[[77310,61070,0],[-1,-11],[-2,-113]],[[77307,60946,0],[-1,-11],[-4,-122]],[[75211,58968,0],[16,-14],[186,-154]],[[75611,58502,0],[253,-21]],[[75864,58481,0],[15,-83]],[[75879,58398,0],[0,-61],[-1,-173]],[[75878,58164,0],[-2,-59],[0,-3]],[[75878,58041,0],[193,23],[25,3],[61,8],[127,15],[47,5]],[[76331,58095,0],[9,-58],[16,-79],[-7,-165],[24,-339],[-43,-9],[-170,-34],[-79,7],[-25,1],[2,-30],[24,-319],[4,-43],[-46,-11],[-85,-40],[-10,-7]],[[75945,56969,0],[-5,-4],[-7,-7]],[[75933,56958,0],[-8,-11],[-32,-52],[-44,-81],[-61,-92]],[[75788,56722,0],[-27,-43],[-50,-80],[-12,-20]],[[75699,56579,0],[-19,-30]],[[75680,56549,0],[-110,-198]],[[75570,56351,0],[-54,-34]],[[75516,56317,0],[-187,-102]],[[75329,56215,0],[-32,-19]],[[75297,56196,0],[-29,18],[-101,111],[-90,110],[-47,59],[-38,48],[-488,140],[-183,8],[1,5],[4,24],[45,284],[41,34],[-14,191],[-66,-2],[-1,88],[-41,56],[8,140],[15,168]],[[74914,59174,0],[284,-147]],[[77592,58201,0],[48,-44],[10,-8]],[[78504,57544,0],[5,-9],[23,-34]],[[78532,57501,0],[6,-10],[134,-217]],[[78672,57274,0],[5,-8],[82,-134]],[[78759,57132,0],[5,-9],[49,-82]],[[78813,57041,0],[5,-8],[67,-113]],[[78885,56920,0],[5,-8],[8,-15]],[[78898,56897,0],[5,-8],[47,-79]],[[78950,56810,0],[5,-9],[47,-80]],[[79002,56721,0],[6,-11],[49,-83]],[[79057,56627,0],[9,-14],[44,-77]],[[79110,56536,0],[-12,-3]],[[79098,56533,0],[-41,-11],[-284,-64],[17,-46],[-23,-3]],[[78767,56409,0],[-8,-1],[-143,-22]],[[78616,56386,0],[-40,-6],[-4,-1]],[[78572,56379,0],[-25,-4]],[[78547,56375,0],[-326,-41],[-33,-4],[-17,-2]],[[78171,56328,0],[-33,-4],[-127,-15],[-57,30],[-135,58]],[[77819,56397,0],[-71,31],[-3,2]],[[77745,56430,0],[-35,13],[-63,24]],[[77647,56467,0],[-39,8]],[[77608,56475,0],[-156,26]],[[77452,56501,0],[-33,5],[-94,15]],[[77325,56521,0],[-257,-7],[-82,-2],[-373,-10]],[[76613,56502,0],[-252,6],[-23,0],[-226,6],[-117,3]],[[75995,56517,0],[-29,6],[-103,22],[-164,34]],[[75699,56579,0],[54,86],[35,57]],[[75933,56958,0],[12,11]],[[76331,58095,0],[296,151],[136,70]],[[76841,58539,0],[9,149],[59,-4],[99,-14],[16,-33],[84,14],[24,4],[226,35]],[[75995,56517,0],[618,-15]],[[76613,56502,0],[392,10],[320,9]],[[77452,56501,0],[48,-338],[106,-14],[1,-34],[8,-194],[8,-184],[8,-192],[1,-29],[122,-7],[173,-10],[-28,-177]],[[77899,55322,0],[13,-61]],[[77912,55261,0],[-2,-125]],[[77910,55136,0],[89,26],[62,-146],[71,-165],[14,-36],[-16,-7]],[[77855,54723,0],[-23,-7]],[[77832,54716,0],[-253,-64]],[[77579,54652,0],[-334,-71]],[[76333,54794,0],[-3,2],[-108,67]],[[75728,55334,0],[-54,8]],[[75330,56127,0],[-33,69]],[[75329,56215,0],[15,10]],[[75344,56225,0],[9,4],[124,66],[39,22]],[[75516,56317,0],[10,6],[44,28]],[[75570,56351,0],[72,129],[38,69]],[[75699,56579,0],[296,-62]],[[80069,55814,0],[24,-65]],[[80108,55566,0],[-4,-194]],[[80104,55372,0],[-5,0]],[[80302,54152,0],[18,-72],[-150,-21],[-10,-2],[-140,-20],[-27,-4],[-54,146],[-162,-72],[-34,-9],[-29,23],[-113,-141]],[[78881,54384,0],[-77,-7],[-52,-5]],[[78752,54372,0],[-5,-1],[-194,-16],[-2,0]],[[78483,54350,0],[-111,-9],[-10,-2]],[[78362,54339,0],[-49,3],[-3,0]],[[78113,54385,0],[3,95],[1,30]],[[78117,54510,0],[4,110],[0,11]],[[78121,54657,0],[7,106],[0,7]],[[78130,54808,0],[-69,155],[-70,153],[-82,-20],[1,40]],[[77910,55136,0],[1,96],[1,29]],[[77899,55322,0],[-44,129],[-168,8],[-133,3],[-1,37],[-1,82],[-1,117],[3,121],[-19,266],[-145,26],[-65,410]],[[77325,56521,0],[283,-46]],[[77647,56467,0],[98,-37]],[[77745,56430,0],[74,-33]],[[78171,56328,0],[376,47]],[[78572,56379,0],[44,7]],[[78616,56386,0],[151,23]],[[79098,56533,0],[176,45]],[[80912,52376,0],[2,-17],[12,-98],[2,-162],[-3,-116],[-9,-82],[-28,-134],[-35,-174],[-2,-8],[-33,-128],[-2,-10],[-42,-174],[-18,-49],[-1,0]],[[80755,51224,0],[-22,-61],[-6,-15],[-58,-120],[-111,-214],[0,-1],[-6,-9],[-90,-174]],[[80462,50630,0],[-39,-74],[-146,-249],[-66,65]],[[80211,50372,0],[-1,0],[-33,33],[-37,36],[-33,32],[-138,126],[-49,44],[-6,5],[-58,62],[-43,48],[-63,74],[-46,53],[-7,2],[-117,25],[-25,6],[-25,5],[-51,11],[-46,59],[-77,-79],[-22,27],[-42,53],[-36,45],[-118,150],[21,53],[13,31],[5,80],[8,121],[9,126],[1,26],[-3,44],[-8,86],[-5,65],[-4,34],[0,8],[-2,19]],[[79173,51882,0],[5,0],[13,-1],[161,-13],[109,-8],[49,-4],[60,-4]],[[79570,51852,0],[6,64],[6,49],[2,21],[2,15],[3,35],[13,114],[31,289]],[[79918,52920,0],[9,80],[4,26],[7,62],[-62,110],[-53,96],[-18,68],[-13,50]],[[79792,53412,0],[-23,87],[-5,15]],[[79735,53618,0],[-12,37],[-16,48]],[[79707,53703,0],[-22,80],[-10,37]],[[79675,53820,0],[-25,56],[-49,104]],[[79550,54055,0],[119,229],[97,111],[28,32],[28,-21],[4,2],[27,7],[1,0],[150,71],[0,-1],[55,-135],[24,4],[1,0],[130,21],[1,-2],[14,-87],[16,-68],[38,4],[157,15],[13,-53],[5,-22],[1,-1],[23,-100],[3,-11],[18,-89],[19,-90],[0,-1],[24,-118],[20,-69],[20,-67],[24,-86],[24,-54],[23,-82],[40,-105],[41,-95],[35,-115],[30,-116],[41,-146],[3,-16],[5,-31],[2,-15],[11,-79],[6,-27],[0,-1],[10,-53],[10,-86],[11,-69],[10,-64]],[[75133,53385,0],[-316,601],[-40,82],[-94,-43],[-61,115],[-48,88],[-59,110],[-15,26],[-46,76],[-47,108],[26,14],[-126,226],[-22,13],[9,13],[1,1],[1,1],[1,2],[1,1],[1,1],[1,0],[1,2],[0,1],[1,1],[1,0],[1,2],[1,1],[1,0],[1,2],[1,1],[2,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,1],[1,0],[2,1],[1,0],[1,1],[1,1],[2,0],[1,1],[1,0],[1,1],[2,0],[2,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,-1],[1,0],[2,0],[20,-4],[23,95]],[[74423,54938,0],[-2,2],[-1,0],[-1,0]],[[74419,54940,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1]],[[74414,54945,0],[-1,0],[-1,1],[-1,1]],[[74411,54947,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1]],[[74406,54952,0],[-1,1],[-1,2]],[[74404,54955,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1]],[[74400,54961,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[74398,54968,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[74395,54975,0],[0,1],[0,1],[0,1]],[[74395,54978,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1]],[[74395,54985,0],[0,1],[0,1],[0,1]],[[74395,54988,0],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1]],[[74396,54995,0],[50,109]],[[74446,55104,0],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1]],[[74454,55120,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1]],[[74458,55131,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1]],[[74461,55138,0],[0,1],[1,1],[0,1],[0,1],[1,1]],[[74463,55143,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1]],[[74466,55152,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[74467,55158,0],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2]],[[74470,55169,0],[0,1],[1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1]],[[74472,55176,0],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1]],[[74475,55189,0],[1,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[74479,55209,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[74481,55224,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74482,55240,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74483,55251,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[74483,55260,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74483,55269,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74483,55274,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74483,55284,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2]],[[74482,55295,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[74482,55306,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[74480,55320,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1]],[[74478,55333,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74477,55341,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[74475,55348,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[74473,55359,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1]],[[74470,55367,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[74468,55376,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1]],[[74465,55384,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[74461,55399,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[74457,55409,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[74453,55419,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[74450,55426,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,0],[0,1]],[[74443,55440,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[74439,55447,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1]],[[74435,55455,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1]],[[74428,55467,0],[131,130]],[[74559,55597,0],[25,-24],[35,-9],[100,-144],[-7,-59],[13,-63],[19,-51],[56,-118],[7,-28],[19,-28],[21,-18],[29,-7],[80,15],[96,13],[135,19],[173,-19],[121,-63],[62,-19],[202,-90],[6,-3],[4,-1],[4,-2],[4,-1],[4,-2],[3,-1],[4,-2],[4,-1],[4,-1],[4,-2],[3,-2],[4,-1],[4,-2],[4,-2],[4,-1],[4,-1],[3,-2],[4,-1],[4,-2],[4,-2],[4,-1],[3,-2],[4,-1],[4,-2],[4,-1],[3,-2],[4,-2],[4,-1],[4,-2],[3,-1],[4,-2],[4,-2],[4,-1],[3,-2],[4,-2],[4,-2],[4,-1],[4,-2],[3,-1],[4,-2],[4,-2],[3,-1],[4,-2],[4,-2],[4,-2],[3,-1],[4,-2],[4,-2],[4,-2],[3,-1],[4,-2],[4,-2],[3,-1],[4,-3],[4,-1],[3,-2],[4,-2],[4,-2],[3,-1],[4,-2],[3,-2],[4,-2],[4,-2],[3,-2],[4,-1],[4,-2],[3,-2],[4,-2],[4,-2],[3,-2],[4,-1],[4,-3],[3,-1],[4,-2],[3,-2],[4,-2],[4,-2],[3,-2],[4,-2],[4,-1],[3,-3],[4,-2],[3,-1],[4,-3],[3,-1],[4,-2],[4,-2],[3,-2],[4,-2],[3,-2],[4,-2],[3,-2],[4,-2],[6,-4],[4,-2],[4,-2],[3,-2],[3,-2],[4,-2],[4,-2],[3,-2],[3,-2],[4,-2],[4,-2],[3,-2],[3,-2],[4,-2],[3,-3],[4,-1],[4,-3],[3,-2],[3,-2],[4,-2],[4,-2],[3,-2],[3,-2],[4,-3],[3,-2],[4,-2],[3,-2],[4,-2],[3,-3],[3,-1],[4,-3],[3,-2],[4,-2],[3,-2],[4,-2],[3,-2],[3,-3],[4,-2],[3,-2],[4,-3],[3,-2],[3,-2],[4,-2],[3,-2],[3,-3],[3,-2],[6,-3],[3,-3],[3,-2],[4,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-3],[3,-1],[3,-3],[4,-2],[3,-2],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-2],[4,-2],[3,-3],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-2],[3,-2],[4,-3],[3,-2],[3,-2],[2,-3],[4,-2],[3,-2],[3,-3],[6,-4],[2,-2],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-2],[3,-3],[3,-3],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[2,-2],[4,-3],[3,-3],[2,-2],[3,-2],[3,-3],[3,-2],[3,-3],[3,-2],[3,-2],[3,-3],[3,-3],[2,-2],[4,-2],[2,-2],[3,-3],[3,-3],[5,-4],[3,-2],[2,-3],[3,-2],[3,-2],[3,-3],[3,-3],[2,-2],[3,-3],[3,-2],[3,-2],[3,-3],[2,-3],[3,-2],[3,-3],[3,-2],[3,-3],[2,-2],[3,-3],[3,-2],[3,-3],[2,-3],[3,-2],[3,-3],[3,-2],[2,-3],[3,-2],[3,-3],[3,-2],[2,-3],[3,-3],[3,-2],[3,-3],[2,-3],[3,-3],[2,-2],[3,-3],[3,-2],[126,-139],[-10,-47],[0,-54],[-32,-35],[-24,-54],[-19,-494],[-142,12],[-127,5],[-124,0],[-121,-5],[-122,-11],[-113,-9],[-113,-15],[-116,-20],[-130,-25],[-126,-28],[-145,-30],[-124,-33]],[[73708,55445,0],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,-2],[1,-1],[2,-1],[2,-2],[1,-1]],[[73724,55429,0],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[1,-1],[2,-1],[1,-2],[2,-1],[1,-2],[1,-1]],[[73738,55414,0],[1,-2],[2,-1],[1,-2],[1,-1],[1,-1],[2,-2],[1,-1],[2,-2],[1,-1],[1,-2]],[[73751,55399,0],[1,-1],[1,-2],[2,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,-2],[1,-1],[2,-2]],[[73764,55385,0],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1]],[[73769,55378,0],[21,-26],[2,-1]],[[73792,55351,0],[162,-194],[0,-1]],[[73954,55156,0],[38,-46],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1]],[[73998,55103,0],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1]],[[74024,55074,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1]],[[74035,55062,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,0],[1,-1],[1,-2],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1]],[[74055,55042,0],[1,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[2,-1],[1,-2],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1]],[[74074,55024,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1]],[[74090,55009,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-2]],[[74102,54999,0],[1,-1],[1,0],[1,-1],[1,-2],[1,0],[1,-1],[2,-1],[1,-1]],[[74111,54992,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1]],[[74122,54983,0],[1,-1],[1,0]],[[74124,54982,0],[1,-2],[1,-1],[2,-1]],[[74128,54978,0],[70,-45],[38,96],[187,-91]],[[75133,53385,0],[-36,-7],[-242,-57],[-125,-28],[-671,-156],[-230,-55],[-93,-23],[-157,-36],[-139,-35],[-157,-29],[-126,-21],[-86,-4],[-69,-4],[-96,1],[-137,5],[-76,7],[-63,6],[-26,3],[-29,3],[-161,32],[-109,29],[-111,40],[-172,55],[-113,36],[-169,109]],[[71740,53256,0],[1,20],[-2,45],[-19,110],[-29,125],[-35,131],[-96,377]],[[71560,54064,0],[-97,296],[-13,83],[-4,28],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1]],[[71468,54484,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1]],[[71511,54535,0],[0,1],[0,1],[1,0],[10,16]],[[71522,54553,0],[8,13],[33,54]],[[71563,54620,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,19],[13,56],[-41,11],[32,137],[-133,96],[-134,97],[-59,71],[31,41]],[[71141,55307,0],[31,11],[141,-58],[150,-61],[9,13]],[[71472,55212,0],[16,48],[11,70]],[[71499,55330,0],[81,-34]],[[71580,55296,0],[1,0],[78,-32]],[[71659,55264,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0]],[[71672,55258,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[71683,55254,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[71696,55250,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[71704,55247,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0]],[[71718,55243,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[71736,55238,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[71749,55235,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1]],[[71759,55232,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71775,55230,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0]],[[71790,55227,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0]],[[71799,55226,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[71809,55224,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0]],[[71822,55223,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1]],[[71833,55222,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[71840,55222,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71845,55222,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71850,55222,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[71856,55221,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71865,55221,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71874,55221,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71885,55221,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71891,55221,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[71897,55222,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71906,55222,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0]],[[71916,55223,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71925,55223,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71934,55224,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[71942,55225,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71950,55226,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[71961,55228,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0]],[[71968,55229,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71975,55230,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[71988,55233,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[71997,55235,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0]],[[72007,55237,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,1]],[[72020,55241,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1]],[[72028,55243,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0]],[[72040,55246,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1]],[[72050,55250,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[72056,55251,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0]],[[72063,55254,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[3,0],[3,2],[2,1],[3,0],[2,1],[2,2],[3,0]],[[72090,55264,0],[3,1],[2,1],[3,1],[2,1],[3,1],[2,1],[3,1],[2,1]],[[72110,55272,0],[2,1],[3,1],[3,1],[2,1],[2,1],[3,1]],[[72125,55278,0],[3,1],[2,1],[2,1],[3,2],[2,0],[3,1],[2,1],[3,2],[2,1],[2,0],[3,1],[3,2],[2,1],[2,1],[3,1],[3,1]],[[72165,55295,0],[172,91]],[[72337,55386,0],[6,3],[79,41]],[[72422,55430,0],[91,39],[7,3]],[[72520,55472,0],[76,17],[5,1]],[[72601,55490,0],[2,0],[2,0],[1,0],[2,0],[1,1],[2,0],[1,0]],[[72612,55491,0],[2,0],[2,1],[2,0],[1,0],[2,1],[1,0]],[[72622,55493,0],[2,0],[1,0],[2,0],[2,1],[1,0],[2,0],[1,0]],[[72633,55494,0],[2,0],[1,0],[2,1],[1,0],[3,0],[1,0]],[[72643,55495,0],[2,0],[1,0],[2,1],[1,0],[2,0],[1,1],[2,0],[2,0]],[[72656,55497,0],[1,0],[2,0],[1,0],[2,0],[2,1],[1,0],[2,0],[2,0],[1,0]],[[72670,55498,0],[2,0],[1,0],[2,0],[1,1],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,1],[1,0]],[[72694,55500,0],[2,0],[1,0],[2,0],[1,1],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0]],[[72720,55501,0],[2,0],[1,0],[2,0],[1,1],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[72746,55502,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0]],[[72776,55502,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[3,-1],[1,0],[2,0],[1,0]],[[72797,55501,0],[122,-12]],[[72919,55489,0],[9,-2],[54,-8]],[[72982,55479,0],[127,-17]],[[73109,55462,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0]],[[73120,55460,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0]],[[73129,55459,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0]],[[73144,55457,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0]],[[73153,55456,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[73162,55456,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0]],[[73171,55455,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0]],[[73189,55454,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[73202,55454,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[73217,55454,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[73240,55454,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[73250,55455,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[73263,55456,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[73274,55456,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[73286,55458,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[73297,55459,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1]],[[73308,55461,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[73329,55464,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[73343,55467,0],[1,0],[1,0],[1,0],[1,1]],[[73347,55468,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[73352,55469,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[73362,55471,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0]],[[73370,55473,0],[1,0],[2,1],[1,0],[1,0]],[[73375,55474,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[73382,55476,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0]],[[73392,55479,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0]],[[73402,55483,0],[1,0],[1,0],[1,1],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0]],[[73416,55488,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1]],[[73424,55491,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[2,0],[1,0]],[[73433,55494,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1]],[[73443,55499,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0]],[[73454,55504,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1]],[[73466,55510,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1]],[[73477,55515,0],[1,1],[1,0],[1,0],[0,1],[2,0],[1,1],[1,0],[1,1],[1,1],[1,0]],[[73487,55520,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1]],[[73495,55525,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,1]],[[73502,55529,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0]],[[73513,55535,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0]],[[73526,55543,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1]],[[73539,55552,0],[1,1],[1,0],[1,1],[1,0]],[[73543,55554,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1]],[[73550,55556,0],[1,0],[1,0],[1,0]],[[73553,55556,0],[1,0],[1,0],[1,0]],[[73556,55556,0],[1,0],[1,0],[1,0],[1,1]],[[73560,55557,0],[1,0],[1,0],[1,-1]],[[73563,55556,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[73570,55556,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[73577,55554,0],[1,0],[1,0],[0,-1],[1,0]],[[73580,55553,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[73587,55550,0],[6,-5]],[[73593,55545,0],[4,-2],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1]],[[73604,55537,0],[1,-1],[2,-1],[2,-2],[1,-1],[2,-1],[1,-1],[2,-1],[1,-2],[1,-1]],[[73617,55526,0],[2,-1],[2,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[2,-1],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[1,-1]],[[73664,55486,0],[2,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-2]],[[73680,55472,0],[1,-1],[2,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[2,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[2,-2]],[[72130,57675,0],[106,-91],[78,59]],[[72314,57643,0],[2,-2]],[[72316,57641,0],[4,-3]],[[72320,57638,0],[4,-2]],[[72324,57636,0],[2,-2]],[[72326,57634,0],[5,-1]],[[72331,57633,0],[3,0]],[[72334,57633,0],[2,-1]],[[72336,57632,0],[5,0]],[[72341,57632,0],[3,0]],[[72344,57632,0],[5,1]],[[72349,57633,0],[4,1],[8,4]],[[72361,57638,0],[7,5]],[[72368,57643,0],[6,5]],[[72374,57648,0],[6,6]],[[72380,57654,0],[5,6]],[[72385,57660,0],[3,6],[18,4]],[[72406,57670,0],[18,3]],[[72424,57673,0],[18,1]],[[72442,57674,0],[10,0]],[[72452,57674,0],[11,-1]],[[72463,57673,0],[1,0],[36,-3],[180,-13]],[[72680,57657,0],[132,-8]],[[72812,57649,0],[15,-1],[28,-65],[5,-26],[47,5],[49,-52],[129,-21],[12,4],[17,-2],[28,-22],[45,-12],[34,-7],[5,-47],[39,-60],[77,-69],[73,-50],[56,-38],[27,-38],[33,-71],[33,-57],[-4,-38],[1,-58],[11,-137],[1,-117],[-41,-144],[-3,-39],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[5,-4],[97,-75],[474,-465],[78,-75],[104,-102],[66,-67],[2,-24],[18,-19]],[[74428,55467,0],[7,-12]],[[74435,55455,0],[4,-8]],[[74439,55447,0],[4,-7]],[[74443,55440,0],[7,-14]],[[74450,55426,0],[3,-7]],[[74453,55419,0],[4,-10]],[[74457,55409,0],[4,-10]],[[74461,55399,0],[4,-15]],[[74465,55384,0],[3,-8]],[[74468,55376,0],[2,-9]],[[74470,55367,0],[3,-8]],[[74473,55359,0],[2,-11]],[[74475,55348,0],[2,-7]],[[74477,55341,0],[1,-8]],[[74478,55333,0],[2,-13]],[[74480,55320,0],[2,-14]],[[74482,55306,0],[0,-11]],[[74482,55295,0],[1,-11]],[[74483,55284,0],[0,-10]],[[74483,55274,0],[0,-5]],[[74483,55269,0],[0,-9]],[[74483,55260,0],[0,-9]],[[74483,55251,0],[-1,-11]],[[74482,55240,0],[-1,-16]],[[74481,55224,0],[-2,-15]],[[74479,55209,0],[-4,-20]],[[74475,55189,0],[-3,-13]],[[74472,55176,0],[-2,-7]],[[74470,55169,0],[-3,-11]],[[74467,55158,0],[-1,-6]],[[74466,55152,0],[-3,-9]],[[74463,55143,0],[-2,-5]],[[74461,55138,0],[-3,-7]],[[74458,55131,0],[-4,-11]],[[74454,55120,0],[-8,-16]],[[74396,54995,0],[-1,-7]],[[74395,54988,0],[0,-3]],[[74395,54985,0],[0,-7]],[[74395,54978,0],[0,-3]],[[74395,54975,0],[3,-7]],[[74398,54968,0],[2,-7]],[[74400,54961,0],[4,-6]],[[74404,54955,0],[2,-3]],[[74406,54952,0],[5,-5]],[[74411,54947,0],[3,-2]],[[74414,54945,0],[5,-5]],[[74419,54940,0],[4,-2]],[[74128,54978,0],[-4,4]],[[74124,54982,0],[-2,1]],[[74122,54983,0],[-11,9]],[[74111,54992,0],[-9,7]],[[74102,54999,0],[-12,10]],[[74090,55009,0],[-16,15]],[[74074,55024,0],[-19,18]],[[74055,55042,0],[-20,20]],[[74035,55062,0],[-11,12]],[[74024,55074,0],[-26,29]],[[73998,55103,0],[-44,53]],[[73954,55156,0],[-162,195]],[[73792,55351,0],[-23,27]],[[73769,55378,0],[-5,7]],[[73764,55385,0],[-13,14]],[[73751,55399,0],[-13,15]],[[73738,55414,0],[-14,15]],[[73724,55429,0],[-16,16]],[[73708,55445,0],[-28,27]],[[73680,55472,0],[-16,14]],[[73664,55486,0],[-47,40]],[[73617,55526,0],[-13,11]],[[73604,55537,0],[-11,8]],[[73587,55550,0],[-7,3]],[[73580,55553,0],[-3,1]],[[73577,55554,0],[-7,2]],[[73570,55556,0],[-7,0]],[[73563,55556,0],[-3,1]],[[73560,55557,0],[-4,-1]],[[73556,55556,0],[-3,0]],[[73553,55556,0],[-3,0]],[[73550,55556,0],[-7,-2]],[[73543,55554,0],[-4,-2]],[[73539,55552,0],[-13,-9]],[[73526,55543,0],[-13,-8]],[[73513,55535,0],[-11,-6]],[[73502,55529,0],[-7,-4]],[[73495,55525,0],[-8,-5]],[[73487,55520,0],[-10,-5]],[[73477,55515,0],[-11,-5]],[[73466,55510,0],[-12,-6]],[[73454,55504,0],[-11,-5]],[[73443,55499,0],[-10,-5]],[[73433,55494,0],[-9,-3]],[[73424,55491,0],[-8,-3]],[[73416,55488,0],[-14,-5]],[[73402,55483,0],[-10,-4]],[[73392,55479,0],[-10,-3]],[[73382,55476,0],[-7,-2]],[[73375,55474,0],[-5,-1]],[[73370,55473,0],[-8,-2]],[[73362,55471,0],[-10,-2]],[[73352,55469,0],[-5,-1]],[[73347,55468,0],[-4,-1]],[[73343,55467,0],[-14,-3]],[[73329,55464,0],[-21,-3]],[[73308,55461,0],[-11,-2]],[[73297,55459,0],[-11,-1]],[[73286,55458,0],[-12,-2]],[[73274,55456,0],[-11,0]],[[73263,55456,0],[-13,-1]],[[73250,55455,0],[-10,-1]],[[73240,55454,0],[-23,0]],[[73217,55454,0],[-15,0]],[[73202,55454,0],[-13,0]],[[73189,55454,0],[-18,1]],[[73171,55455,0],[-9,1]],[[73162,55456,0],[-9,0]],[[73153,55456,0],[-9,1]],[[73144,55457,0],[-15,2]],[[73129,55459,0],[-9,1]],[[73120,55460,0],[-11,2]],[[72982,55479,0],[-63,10]],[[72797,55501,0],[-21,1]],[[72776,55502,0],[-30,0]],[[72746,55502,0],[-26,-1]],[[72720,55501,0],[-26,-1]],[[72694,55500,0],[-24,-2]],[[72670,55498,0],[-14,-1]],[[72656,55497,0],[-13,-2]],[[72643,55495,0],[-10,-1]],[[72633,55494,0],[-11,-1]],[[72622,55493,0],[-10,-2]],[[72612,55491,0],[-11,-1]],[[72601,55490,0],[-81,-18]],[[72520,55472,0],[-98,-42]],[[72422,55430,0],[-85,-44]],[[72165,55295,0],[-40,-17]],[[72125,55278,0],[-15,-6]],[[72110,55272,0],[-20,-8]],[[72090,55264,0],[-27,-10]],[[72063,55254,0],[-7,-3]],[[72056,55251,0],[-6,-1]],[[72050,55250,0],[-10,-4]],[[72040,55246,0],[-12,-3]],[[72028,55243,0],[-8,-2]],[[72020,55241,0],[-13,-4]],[[72007,55237,0],[-10,-2]],[[71997,55235,0],[-9,-2]],[[71988,55233,0],[-13,-3]],[[71975,55230,0],[-7,-1]],[[71968,55229,0],[-7,-1]],[[71961,55228,0],[-11,-2]],[[71950,55226,0],[-8,-1]],[[71942,55225,0],[-8,-1]],[[71934,55224,0],[-9,-1]],[[71925,55223,0],[-9,0]],[[71916,55223,0],[-10,-1]],[[71906,55222,0],[-9,0]],[[71897,55222,0],[-6,-1]],[[71891,55221,0],[-6,0]],[[71885,55221,0],[-11,0]],[[71874,55221,0],[-9,0]],[[71865,55221,0],[-9,0]],[[71856,55221,0],[-6,1]],[[71850,55222,0],[-5,0]],[[71845,55222,0],[-5,0]],[[71840,55222,0],[-7,0]],[[71833,55222,0],[-11,1]],[[71822,55223,0],[-13,1]],[[71809,55224,0],[-10,2]],[[71799,55226,0],[-9,1]],[[71790,55227,0],[-15,3]],[[71775,55230,0],[-16,2]],[[71759,55232,0],[-10,3]],[[71749,55235,0],[-13,3]],[[71736,55238,0],[-18,5]],[[71718,55243,0],[-14,4]],[[71704,55247,0],[-8,3]],[[71696,55250,0],[-13,4]],[[71683,55254,0],[-11,4]],[[71672,55258,0],[-13,6]],[[71659,55264,0],[-79,32]],[[71499,55330,0],[15,101]],[[71514,55431,0],[-81,28],[-142,60],[-128,52],[-41,18],[-39,17],[-88,42],[-45,24],[-36,19]],[[70914,55691,0],[-14,9]],[[70900,55700,0],[-8,5]],[[70892,55705,0],[-14,10]],[[70878,55715,0],[-15,10]],[[70863,55725,0],[-21,16]],[[70842,55741,0],[-10,8]],[[70832,55749,0],[-16,13]],[[70816,55762,0],[-30,25]],[[70786,55787,0],[-38,34]],[[70748,55821,0],[-22,24]],[[70726,55845,0],[-22,23]],[[70704,55868,0],[-19,23]],[[70685,55891,0],[-22,27]],[[70663,55918,0],[-23,46],[-22,33]],[[70618,55997,0],[-46,89]],[[70572,56086,0],[-10,16]],[[70562,56102,0],[5,11],[-49,133],[-56,149],[-34,92],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,1],[-1,1]],[[70416,56490,0],[-1,1],[0,1]],[[70415,56492,0],[-1,1],[-5,17]],[[70409,56510,0],[-2,4],[-2,5],[-4,9],[-2,7],[-1,3]],[[70398,56538,0],[-5,13],[-4,15]],[[70389,56566,0],[-1,9],[-2,11],[-1,10]],[[70385,56596,0],[-1,11],[0,11],[0,7]],[[70384,56625,0],[0,13],[9,77],[13,61],[-6,3],[10,75],[28,104],[32,104],[15,65]],[[70485,57127,0],[2,8],[3,10],[3,8],[1,8]],[[70494,57161,0],[3,8],[1,7],[1,8],[2,13]],[[70501,57197,0],[0,9],[1,8],[0,8],[0,7],[0,11]],[[70502,57240,0],[-8,55],[-21,60],[-4,17],[0,2],[0,3],[0,3],[0,2],[1,4],[2,2],[1,2],[2,3],[24,25],[70,61],[10,6],[61,44],[90,67],[108,61],[50,28],[105,60],[24,14],[95,54],[39,23]],[[71151,57836,0],[21,11],[11,6],[21,9],[18,8]],[[71222,57870,0],[17,7],[9,4],[17,6],[31,10],[7,2]],[[71303,57899,0],[16,5],[19,6],[16,4],[23,5]],[[71377,57919,0],[20,4],[16,3],[14,1],[16,3]],[[71443,57930,0],[27,1],[39,4]],[[71509,57935,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0]],[[71590,57934,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[2,0]],[[71658,57926,0],[2,0],[2,-1],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,-1],[2,0],[2,0],[2,0],[1,-1],[2,0],[1,0],[2,0],[1,-1],[2,0],[2,-1],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[2,0],[2,0],[1,0],[2,-1],[1,-1],[2,0],[1,0]],[[71710,57916,0],[2,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[2,0],[2,0],[1,-1],[2,-1],[1,0],[2,0],[1,-1],[2,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,-1],[2,0],[2,0]],[[71762,57904,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[2,0],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,0],[2,-1],[2,0],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,0]],[[71826,57884,0],[10,-4],[18,-9],[16,-8],[10,-5]],[[71880,57858,0],[13,-8],[13,-7]],[[71906,57843,0],[11,-8],[33,-23]],[[71950,57812,0],[39,-27]],[[71989,57785,0],[9,-6],[11,-6],[9,-5]],[[72018,57768,0],[15,-10],[5,-4],[6,-4],[4,-3]],[[72048,57747,0],[10,-8],[12,-10],[11,-9]],[[72081,57720,0],[20,-18],[16,-15],[13,-12]],[[70493,56051,0],[79,35]],[[70572,56086,0],[0,-1]],[[70572,56085,0],[46,-88]],[[70663,55918,0],[1,-2],[1,-2],[1,-1],[2,-1],[1,-2],[1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[2,-1],[1,-2],[1,-2],[1,-1],[2,-2],[1,-1],[2,-2]],[[70685,55891,0],[1,-1],[1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[1,-2],[2,-1],[1,-1],[2,-2],[1,-1],[1,-2],[1,-2],[2,-1],[1,-2]],[[70704,55868,0],[1,-1],[2,-2],[1,-1],[2,-1],[1,-2],[1,-2],[2,-1],[1,-2],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[2,-2],[1,-1]],[[70726,55845,0],[1,-2],[2,-1],[1,-2],[1,-1],[2,-2],[1,-1],[2,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,-2],[2,-1],[1,-2],[2,-1],[1,-2]],[[70748,55821,0],[2,-1],[1,-2],[2,-2],[2,-1],[1,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-1],[3,-2]],[[70786,55787,0],[1,-1],[2,-2],[1,-1],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[2,-2],[1,-1],[1,-1],[2,-1]],[[70816,55762,0],[1,-2],[1,-1],[2,-1],[1,-1],[2,-1],[2,-2],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1]],[[70832,55749,0],[1,-1],[1,-2],[2,-1],[2,-1],[1,-1],[2,-1],[1,-1]],[[70842,55741,0],[1,-1],[2,-1],[1,-1],[2,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,-2],[2,-1],[1,-1]],[[70863,55725,0],[2,0],[1,-2],[1,-1],[2,-1],[1,-1],[2,-1],[2,-1],[1,-2],[2,0],[1,-1]],[[70878,55715,0],[2,-1],[1,-2],[2,-1],[1,-1],[2,-1],[2,-1],[1,-1],[2,-1],[1,-1]],[[70892,55705,0],[2,-1],[1,-1],[1,-1],[2,-1],[2,-1]],[[70900,55700,0],[1,-1],[2,-2],[1,0],[2,-1],[1,-1],[2,-2],[2,0],[3,-2]],[[71514,55431,0],[-11,-74],[-4,-27]],[[71499,55330,0],[6,-3],[-7,-42],[-15,-49],[-5,-7],[-6,-17]],[[71141,55307,0],[-15,-20],[59,-73],[133,-94],[133,-91],[-29,-139],[39,-10],[-13,-57],[0,-20],[27,-15],[22,-20],[25,-28],[13,-17],[16,-20],[13,-22],[14,-34],[-16,-27],[1,0]],[[71522,54553,0],[-11,-18]],[[71468,54484,0],[8,-45],[8,-52],[19,-70],[43,-172],[14,-81]],[[71740,53256,0],[-334,102],[-445,145],[-162,48],[-75,21],[-184,41],[-40,9],[-283,60],[-365,82],[-231,51],[-144,38],[-178,46],[-183,63],[-276,88],[-403,139],[-235,78],[-81,30],[146,372],[4,276],[2,529],[441,691]],[[68714,56165,0],[701,-361],[133,-7],[102,68],[9,72],[1,12],[9,31],[59,-28],[118,-43],[106,-40],[35,76],[35,85],[36,88],[6,-10],[9,-14],[138,-198],[149,79],[133,76]],[[71859,58314,0],[60,-20],[36,74]],[[71955,58368,0],[299,-103],[289,-121],[128,-219],[160,-275]],[[72831,57650,0],[-13,-1],[-6,0]],[[72812,57649,0],[-116,7],[-16,1]],[[72463,57673,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[72452,57674,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[72442,57674,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[72424,57673,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0]],[[72406,57670,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[72385,57660,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[72380,57654,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[72374,57648,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0]],[[72368,57643,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1]],[[72361,57638,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0]],[[72349,57633,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[72344,57632,0],[-1,0],[-1,0],[-1,0]],[[72341,57632,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[72336,57632,0],[-1,0],[-1,0],[0,1]],[[72334,57633,0],[-1,0],[-1,0],[-1,0]],[[72331,57633,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[72326,57634,0],[0,1],[-1,0],[-1,0],[0,1]],[[72324,57636,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[72320,57638,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1]],[[72316,57641,0],[-1,0],[-1,1],[0,1]],[[72130,57675,0],[-49,45]],[[72081,57720,0],[-33,27]],[[72048,57747,0],[-30,21]],[[72018,57768,0],[-29,17]],[[71950,57812,0],[-44,31]],[[71906,57843,0],[-26,15]],[[71880,57858,0],[-54,26]],[[71826,57884,0],[-64,20]],[[71762,57904,0],[-52,12]],[[71710,57916,0],[-52,10]],[[71658,57926,0],[-68,8]],[[71590,57934,0],[-81,1]],[[71443,57930,0],[-66,-11]],[[71377,57919,0],[-74,-20]],[[71303,57899,0],[-81,-29]],[[71222,57870,0],[-71,-34]],[[70502,57240,0],[-1,-43]],[[70501,57197,0],[-7,-36]],[[70494,57161,0],[-9,-34]],[[70384,56625,0],[1,-29]],[[70385,56596,0],[4,-30]],[[70389,56566,0],[9,-28]],[[70398,56538,0],[11,-28]],[[70415,56492,0],[1,-2]],[[70562,56102,0],[10,-17]],[[70572,56085,0],[-79,-34]],[[68714,56165,0],[312,542],[71,697]],[[69097,57404,0],[550,178],[89,246]],[[69736,57828,0],[96,-28],[160,-101],[124,-59],[27,36],[41,52],[47,51]],[[70231,57779,0],[66,59]],[[70297,57838,0],[98,70]],[[70395,57908,0],[83,48]],[[70478,57956,0],[232,128]],[[70710,58084,0],[94,54]],[[70804,58138,0],[78,43],[116,62]],[[70998,58243,0],[28,15]],[[71026,58258,0],[51,26]],[[71077,58284,0],[30,11],[37,16]],[[71144,58311,0],[49,13],[81,24],[51,10],[86,12],[76,3],[65,0],[44,-3],[52,-4],[59,-12],[53,-10],[58,-16]],[[71818,58328,0],[41,-14]],[[71859,58314,0],[-12,4],[-29,10]],[[71144,58311,0],[-67,-27]],[[71077,58284,0],[-39,-20],[-12,-6]],[[70998,58243,0],[-107,-58],[-60,-33],[-27,-14]],[[70804,58138,0],[-78,-45],[-16,-9]],[[70710,58084,0],[-43,-23],[-178,-100],[-11,-5]],[[70478,57956,0],[-71,-41],[-12,-7]],[[70395,57908,0],[-90,-64],[-8,-6]],[[70297,57838,0],[-50,-45],[-16,-14]],[[69736,57828,0],[67,185]],[[70136,58763,0],[276,-142]],[[70412,58621,0],[58,-30]],[[70470,58591,0],[66,-34]],[[70536,58557,0],[46,-25],[71,-37]],[[70653,58495,0],[38,63],[53,90],[40,67]],[[70784,58715,0],[8,51],[1,11]],[[70793,58777,0],[7,20],[3,11],[19,26]],[[70842,58853,0],[47,80]],[[70889,58933,0],[51,-41]],[[70940,58892,0],[89,-71]],[[71029,58821,0],[16,-23],[58,-85]],[[71103,58713,0],[18,20],[40,44]],[[71202,58835,0],[18,22]],[[71220,58857,0],[19,23]],[[71239,58880,0],[39,18],[10,4]],[[71414,58865,0],[39,21]],[[71453,58886,0],[3,1],[23,12]],[[71479,58899,0],[70,-5],[38,-3]],[[71631,58873,0],[1,0],[71,6]],[[71703,58879,0],[56,-4],[14,0]],[[71881,58921,0],[34,33]],[[71915,58954,0],[16,-55],[62,-125],[78,-223],[-88,-142],[-28,-41]],[[86341,52783,0],[18,14]],[[86359,52797,0],[127,115],[17,15]],[[86503,52927,0],[126,111],[76,70],[3,4]],[[86708,53112,0],[199,171],[101,87],[4,4],[1,0]],[[87013,53374,0],[47,87],[113,207],[-32,31]],[[87141,53699,0],[-195,144]],[[86946,53843,0],[-65,150]],[[86881,53993,0],[-4,21],[-2,16]],[[86875,54030,0],[0,64],[1,53],[-7,5],[-165,149]],[[86704,54301,0],[-1,1],[248,182]],[[86951,54484,0],[-30,64],[-35,73],[328,140]],[[87197,54822,0],[-8,47],[38,6],[32,4]],[[87259,54879,0],[87,20],[78,17],[90,18],[27,5]],[[87939,55003,0],[254,-32],[225,-30]],[[88713,55014,0],[141,84],[92,54]],[[88946,55152,0],[20,9],[24,10],[-7,9],[-201,278],[-14,19],[-94,249],[-67,175],[65,408],[3,18]],[[88675,56327,0],[0,1],[24,9],[21,8],[0,1],[636,277]],[[89356,56623,0],[6,3],[5,2],[2,1],[3,3],[132,-85],[16,-11]],[[89520,56536,0],[53,211],[8,24],[2,7]],[[89583,56778,0],[5,-2]],[[89588,56776,0],[23,-6]],[[89611,56770,0],[46,-13],[14,-4]],[[89671,56753,0],[28,-19],[25,-18]],[[89724,56716,0],[26,-19],[42,-31],[37,9],[12,4],[94,26]],[[89935,56705,0],[1,8],[1,8],[1,13],[14,2],[11,1]],[[89963,56737,0],[18,-9]],[[89981,56728,0],[7,-4],[49,-24],[5,2]],[[90042,56702,0],[23,16],[15,9],[33,21]],[[90113,56748,0],[10,7],[126,-11]],[[90249,56744,0],[10,-1],[14,-3]],[[90273,56740,0],[12,24],[2,4]],[[90287,56768,0],[21,4]],[[90308,56772,0],[25,6],[39,-7],[38,-7]],[[90410,56764,0],[117,-19],[9,3],[3,2],[66,33]],[[90605,56783,0],[12,7],[5,2]],[[90622,56792,0],[5,3],[22,13],[6,2],[4,2],[11,10],[17,19],[24,10],[65,13],[121,24]],[[90897,56888,0],[22,4],[2,1],[8,0]],[[90929,56893,0],[85,-4]],[[91014,56889,0],[25,-1],[11,-1]],[[91050,56887,0],[38,6],[12,2],[22,36]],[[91122,56931,0],[20,33]],[[91142,56964,0],[15,25],[16,10],[30,19]],[[91203,57018,0],[26,14],[15,7]],[[91244,57039,0],[21,-7],[64,-24]],[[91329,57008,0],[24,-8],[29,15],[2,1]],[[91384,57016,0],[15,16],[5,6],[4,3],[35,8]],[[91443,57049,0],[46,11],[16,6]],[[91505,57066,0],[18,7],[52,18],[20,7]],[[91595,57098,0],[3,1],[7,3],[13,1],[25,3]],[[91643,57106,0],[58,6]],[[91701,57112,0],[12,3],[8,3],[5,5],[4,4]],[[91730,57127,0],[7,8],[12,13]],[[91749,57148,0],[16,17],[10,10]],[[91775,57175,0],[97,104],[16,17]],[[91888,57296,0],[18,17],[3,3],[4,8],[4,10],[2,4],[3,5],[16,-13],[12,-8],[46,-66],[5,-7],[231,-1029],[260,-215],[3,-2],[139,122],[83,142],[8,15],[6,9],[7,8],[7,7],[8,7],[9,7],[107,98],[94,99],[73,-8],[263,-25],[207,-171],[-47,-454],[-9,-11],[-3,-10],[2,-10],[6,-9],[9,-6],[18,-79],[-20,-39],[3,-23],[-86,-88],[-5,-5],[53,-46],[57,-39],[27,-19],[35,-51],[3,-5],[24,-10],[-2,-123],[0,-6],[86,-68],[-6,-9],[-5,-10],[-5,-9],[-5,-10],[-3,-9],[-3,-10],[-3,-11],[-2,-10],[-2,-10],[-1,-10],[0,-10],[0,-11],[1,-10],[2,-10],[1,-11],[3,-10],[3,-10],[4,-10],[4,-9],[5,-10],[5,-9],[2,-1],[172,-140],[-71,-102],[1,-2],[38,-67],[91,-3],[12,0],[7,-7],[3,-9],[58,-142],[11,-46],[6,-16],[2,-10],[2,-10],[0,-11],[-1,-10],[-1,-10],[-3,-10],[-4,-10],[-4,-10],[-6,-8],[1,-3],[27,-66],[63,23],[15,12],[6,8],[6,10],[4,12],[28,76],[-7,33],[156,36],[-18,-418],[-33,-223],[-6,-86],[0,-13],[0,-11],[-1,-10],[-2,-10],[-2,-11],[-2,-10],[-2,-10],[-2,-10],[-3,-10],[-29,-89],[-2,-11],[-40,-164],[0,-1],[-69,-324],[-72,-247],[-4,-10],[-107,-6],[-330,-4],[-263,-168],[-2,-3],[-51,-125],[119,-122],[-9,-15],[-126,-207],[-2,-2],[124,-467],[-171,92],[-2,-1],[-92,-68],[-13,-10],[170,-194],[-492,-397],[-88,-41],[-12,13],[-120,105],[-16,13],[-8,6],[-10,6],[-9,5],[-50,23],[-14,5],[-10,5],[-9,6],[-7,8],[-6,8],[-4,10],[-3,10],[-2,10],[-22,76],[-82,148],[-10,17],[-6,8],[-6,8],[-7,8],[-8,8],[-75,72],[4,23],[4,12],[-4,10],[-10,5],[-28,23],[-13,6],[-22,-3],[-10,4],[-9,7],[-5,8],[-2,11],[-25,79],[-3,10],[-5,10],[-6,8],[-9,7],[-9,4],[-11,3],[-1,1],[-140,58],[-92,37],[-15,-4],[-11,-1],[-11,1],[-10,2],[-11,3],[-9,6],[-9,5],[-41,37],[-82,23],[-82,-17],[-118,-29],[-163,42],[-19,0],[-92,0],[-115,-14],[-124,43],[-19,8],[-11,2],[-11,0],[-11,-1],[-10,-3],[-11,-4],[-8,-5],[-81,-26],[-92,-17],[-148,33],[-13,2],[-11,1],[-11,0],[-11,-2],[-10,-1],[-94,-33],[-33,-30],[-16,-11],[-10,-2],[-11,0],[-11,3],[-73,6],[-12,6],[-11,3],[-11,1],[-11,1],[-11,-1],[-10,-2],[-11,-3],[-10,-5],[-89,-23],[-19,-5],[-10,-3],[-11,-1],[-11,-1],[-11,0],[-11,0],[-11,0],[-143,-6],[-119,-23],[-227,-57],[-110,-62],[-98,-66],[-114,-49],[-65,-40],[-9,-7],[-10,-3],[-11,0],[-10,3],[-126,46],[-11,11],[-9,5],[-11,2],[-11,-1],[-32,-10],[-35,-10],[-115,-4],[-151,-43],[-139,14],[-80,-14],[-45,-13],[-96,-56],[-155,6],[-50,-10],[-221,-23],[-28,-1],[-118,-6],[-81,37],[-18,0],[-11,0],[-11,0],[-11,1],[-11,1],[-11,1],[-11,2],[-11,1],[-10,2],[-11,2],[-11,3],[-11,2],[-10,3],[-10,3],[-11,3],[-10,4],[-10,5],[-9,5],[-9,7],[-8,8],[-6,8],[-7,8],[-4,10],[-4,9],[-25,56],[-9,10],[-8,7],[-8,7],[-9,6],[-75,39],[-77,30],[-20,1],[-11,4],[-9,5],[-8,7],[-5,9],[-5,10],[-129,220],[0,19],[-1,9],[-4,10],[-5,9],[-7,9],[-54,92],[-74,49],[-13,10],[-7,8],[-6,9],[-4,9],[-9,53],[-35,66],[-29,65],[-46,69],[-80,43],[-22,40],[-32,52],[-52,32],[13,11]],[[86222,75652,0],[125,-1],[92,0],[325,-2],[91,0],[108,-4],[43,-1],[128,-4],[113,-3],[64,-3],[1,0],[209,-5],[31,-1],[360,-10],[35,0],[113,-88],[188,-68],[149,-108],[6,-5],[37,-35],[89,-84],[114,-61],[70,-40],[45,-26],[28,-20],[100,-94],[10,10],[8,-3],[114,-22],[122,-24],[50,-10],[78,-65],[66,-61],[46,-73],[69,-153],[24,-55],[45,-72],[89,-104],[82,-88],[29,-11],[115,-31],[214,-181],[82,-12],[130,2],[156,-82],[16,-13],[33,-28],[34,-82],[300,-265],[160,-147],[174,-84],[118,-92],[29,-22],[334,-259],[144,-143],[192,-187],[131,-125],[174,-128],[-78,-38],[-100,-30],[-49,0],[-25,-7],[-109,-23],[-35,-12],[-121,-70],[-23,-46],[-90,-32],[-5,-23],[2,-36],[-29,-56],[-12,-13]],[[91580,71993,0],[-76,52]],[[91504,72045,0],[-523,148],[-289,-18],[-156,-60],[-155,-20]],[[90381,72095,0],[-77,-104]],[[90304,71991,0],[28,-7]],[[90332,71984,0],[-1,-27]],[[90331,71957,0],[-350,-31],[-77,-55],[-259,-24]],[[89645,71847,0],[-179,-118]],[[89466,71729,0],[-182,-238]],[[89284,71491,0],[-191,-77]],[[89093,71414,0],[-51,-17]],[[89042,71397,0],[-136,-46]],[[88906,71351,0],[-345,-214],[-46,-34]],[[88515,71103,0],[-305,-104]],[[88210,70999,0],[-256,-216]],[[87954,70783,0],[-223,-150],[-134,-65],[-165,21],[-172,-61],[-309,-115]],[[86951,70413,0],[-66,-90]],[[86885,70323,0],[-21,-28],[-110,-34],[-253,83],[-9,12],[-288,5],[3,24],[10,75]],[[86217,70460,0],[6,17],[8,32],[3,12],[-28,137],[-38,198],[-94,250]],[[86074,71106,0],[-232,343]],[[85842,71449,0],[151,44]],[[85993,71493,0],[313,91]],[[86306,71584,0],[238,-61],[296,23]],[[86840,71546,0],[16,-28]],[[86856,71518,0],[13,-38],[44,48],[42,48],[17,12]],[[86972,71588,0],[13,0],[23,-3]],[[87008,71585,0],[28,-14],[39,-10],[32,-6],[3,0],[20,-2],[8,-1],[18,0],[44,1],[5,0],[46,8],[38,13],[29,13],[26,15],[28,16],[24,16],[18,19],[9,10],[3,2],[11,12],[52,56]],[[87489,71733,0],[89,100]],[[87578,71833,0],[22,29],[18,22],[12,16],[58,77],[176,-7]],[[87864,71970,0],[61,-2],[5,0]],[[87930,71968,0],[90,-4]],[[88020,71964,0],[-5,-148]],[[88015,71816,0],[-9,-156],[3,-24],[-4,-49],[38,0],[29,-1],[23,8],[24,1],[151,5],[133,3],[27,61]],[[88430,71664,0],[34,75]],[[88464,71739,0],[19,39],[10,20],[8,15],[9,17],[128,254]],[[88638,72084,0],[370,732]],[[89008,72816,0],[150,297]],[[89158,73113,0],[-4,227],[1,17],[-2,245],[189,84],[-22,49],[-27,-4],[-30,8],[-21,12],[-11,15],[-43,-18],[2,-16],[1,-20],[-7,-26],[-20,-19],[-56,-25],[-129,-59],[-1,60],[-8,190]],[[88970,73833,0],[-12,293]],[[88958,74126,0],[-1,30],[-7,185]],[[88950,74341,0],[-7,170]],[[88943,74511,0],[-7,179],[-230,-6],[-7,0],[-47,-3],[-9,0],[-89,0]],[[88554,74681,0],[4,-150],[2,-37]],[[88560,74494,0],[-57,-2],[-31,-2]],[[88472,74490,0],[-92,6],[-80,5]],[[88300,74501,0],[-110,-75],[-9,-6]],[[88181,74420,0],[-14,15],[-20,27],[-66,57],[-23,19],[-38,23],[-4,4],[-8,7],[1,38]],[[88009,74610,0],[0,7],[0,18]],[[88009,74635,0],[-3,150],[0,50],[0,35],[-110,4],[-115,4],[-3,0],[-14,0],[-13,0],[-104,4],[-46,2],[-11,0],[-42,1],[-18,-2],[-14,-2],[-215,-44],[-131,-27],[-76,-15],[-82,-17],[1,-48]],[[87013,74730,0],[-366,-170]],[[86647,74560,0],[54,-93]],[[86701,74467,0],[-183,33],[-143,110],[-45,304],[-59,391]],[[86271,75305,0],[-1,9],[-1,10],[-1,9]],[[86268,75333,0],[-24,168],[-22,151]],[[87088,74184,0],[40,17],[107,51],[39,-160],[54,-254],[13,-253],[-1,-216]],[[87050,74062,0],[38,122]],[[87098,74005,0],[-59,23],[11,34]],[[87163,73918,0],[-24,30],[-41,57]],[[87282,73508,0],[-38,169],[-19,81],[-22,66],[-5,24],[-35,70]],[[87317,73434,0],[-6,13],[-29,61]],[[87340,73369,0],[-23,65]],[[85990,75631,0],[7,31],[0,2]],[[86222,75652,0],[-25,-10],[-22,-25],[-64,19],[-121,-5]],[[85997,75664,0],[225,-12]],[[93449,68766,0],[-39,-11]],[[93410,68755,0],[-51,-26],[-242,-120]],[[93117,68609,0],[-45,4],[-41,4]],[[93031,68617,0],[-126,-89]],[[92905,68528,0],[-11,-9],[-12,-10]],[[92882,68509,0],[-41,-39],[-19,-17]],[[92822,68453,0],[-153,-75],[-82,22],[-95,27]],[[92492,68427,0],[-6,3],[-44,18]],[[92442,68448,0],[-87,52],[-109,65]],[[92246,68565,0],[-32,-104]],[[92214,68461,0],[-28,-8],[-15,-4]],[[92171,68449,0],[-28,-52],[-24,-44]],[[92119,68353,0],[-36,-69],[-9,-20]],[[92074,68264,0],[-90,41]],[[91984,68305,0],[-59,48],[-28,22]],[[91897,68375,0],[-97,-18],[-9,-2]],[[91791,68355,0],[-9,-3],[-55,-25]],[[91727,68327,0],[-50,-65]],[[91677,68262,0],[-57,-24],[-24,-9]],[[91596,68229,0],[-90,-66],[-67,-41],[-90,-14],[-31,-5]],[[91318,68103,0],[5,-15],[5,-16]],[[91328,68072,0],[-29,-14],[-80,-36]],[[91219,68022,0],[-8,-57],[-44,-159]],[[91167,67806,0],[-16,-27],[-30,-47]],[[91121,67732,0],[-50,-220],[-32,-110],[-44,-148]],[[90995,67254,0],[-87,-18],[-34,-7]],[[90874,67229,0],[-34,32]],[[90840,67261,0],[-4,-6],[-41,-77]],[[90795,67178,0],[-147,105]],[[90648,67283,0],[-113,53],[-41,19]],[[90494,67355,0],[-116,-50],[-233,-10]],[[90145,67295,0],[-165,-9],[-81,-4]],[[89899,67282,0],[-174,11],[-6,0]],[[89719,67293,0],[-218,0],[-70,-1]],[[89431,67292,0],[-59,91]],[[89372,67383,0],[51,183],[6,25],[3,13],[73,93],[42,18],[168,80],[-97,76],[-23,47],[-11,24],[2,10],[3,17],[14,46],[14,47],[3,9],[6,12],[30,59],[45,95],[27,54],[15,16],[127,131],[100,137],[25,34],[41,58],[35,73],[21,45],[4,30],[-561,301],[-25,-23],[-38,-29],[-313,-25],[-14,1],[-248,13]],[[88897,69053,0],[-65,3]],[[88832,69056,0],[-90,4],[-14,1]],[[88728,69061,0],[-56,-149]],[[88672,68912,0],[2,-23],[8,-123]],[[88682,68766,0],[-4,-54],[-1,-20]],[[88677,68692,0],[-99,28]],[[88578,68720,0],[-175,4]],[[88403,68724,0],[-139,33],[-118,29],[-31,8],[-8,2]],[[88107,68796,0],[-40,-25],[-75,-57],[-40,-31],[-155,-60],[-17,-7]],[[87780,68616,0],[-43,-17],[-150,-59]],[[87587,68540,0],[-41,10],[-9,2]],[[87537,68552,0],[-13,4],[-10,2],[-25,7]],[[87489,68565,0],[-63,17],[-90,25]],[[87336,68607,0],[-90,25]],[[87246,68632,0],[-5,28],[-3,14]],[[87238,68674,0],[-19,1]],[[87219,68675,0],[16,18]],[[87235,68693,0],[17,19]],[[87252,68712,0],[1,1],[-14,30]],[[87239,68743,0],[-161,359],[-19,30],[-64,106],[-20,113],[-5,30],[-7,41],[-4,26],[118,63]],[[87077,69511,0],[12,7],[36,20]],[[87125,69538,0],[153,82],[15,8],[-123,143],[-83,97],[-99,35]],[[86988,69903,0],[-369,167],[-40,19],[-66,4]],[[86513,70093,0],[-28,9],[-22,8]],[[86463,70110,0],[-274,93],[-67,96],[-6,19]],[[86116,70318,0],[-64,161]],[[86052,70479,0],[165,-19]],[[86885,70323,0],[37,50],[29,40]],[[87954,70783,0],[181,153],[75,63]],[[88210,70999,0],[124,42],[181,62]],[[88906,71351,0],[43,14],[93,32]],[[89093,71414,0],[9,3],[182,74]],[[89284,71491,0],[148,193],[34,45]],[[89466,71729,0],[150,99],[29,19]],[[90331,71957,0],[1,18],[0,9]],[[90304,71991,0],[44,60],[33,44]],[[91504,72045,0],[17,-11],[59,-41]],[[91580,71993,0],[222,-154],[103,-6],[233,23],[174,-87],[41,2],[38,-137],[50,-178],[718,56],[9,52],[9,53],[259,-33],[643,-16],[152,-40],[295,-183],[94,-40],[-49,-42],[-136,-117],[8,-36],[-47,-118],[-36,-110],[-102,-138],[-12,-20],[-168,-120],[-16,-126],[-27,-171],[-11,-38],[-41,-141],[-142,-192],[75,-22],[-8,-27],[-32,12],[-52,-133],[-102,-171],[61,-32],[182,82],[50,7],[80,36],[58,-31],[5,-57],[76,-71],[25,-3],[73,-41],[9,-12],[20,-26],[-234,-165],[-180,-115],[-30,-9],[-361,-277],[-22,-31],[-85,-84]],[[94529,62742,0],[-183,-12],[-6,8],[-369,-41],[-10,12],[-57,87],[-27,84],[18,56],[-33,83]],[[93862,63019,0],[-91,191]],[[93771,63210,0],[-172,-68],[-130,-79],[-6,6]],[[93463,63069,0],[-59,77]],[[93404,63146,0],[-123,80],[-15,51],[-3,11],[61,36]],[[93324,63324,0],[-358,273]],[[92966,63597,0],[-12,14],[-29,24],[-94,50]],[[92831,63685,0],[-184,107]],[[92647,63792,0],[-167,132]],[[92480,63924,0],[-122,114]],[[92358,64038,0],[-93,89],[-103,213],[50,189],[2,14],[-203,110],[-8,-15],[-30,16]],[[91973,64654,0],[123,293],[22,27],[13,16]],[[92131,64990,0],[129,160],[47,60],[194,232]],[[92501,65442,0],[64,44],[64,86]],[[92629,65572,0],[3,4],[80,102]],[[92712,65678,0],[-144,60],[-256,106],[206,365]],[[92518,66209,0],[27,50],[8,14],[11,19]],[[92564,66292,0],[42,-6],[165,116],[250,65],[47,40],[47,-5],[114,-63],[48,101],[53,111],[24,51],[2,4],[39,82],[-27,33],[-21,26],[115,65],[20,10],[80,46],[22,9],[95,42],[85,46],[3,2],[88,55]],[[93855,67122,0],[111,76],[27,20],[31,10],[61,20],[62,22],[40,9],[43,15],[23,13],[31,20],[42,-6],[79,-14],[18,-5],[63,-29],[89,-29],[116,-22],[21,-12],[18,-2],[23,-6],[29,-20],[16,-19],[19,-30],[55,-198],[88,-15],[76,60],[74,61],[77,59],[54,40],[37,28],[76,43],[82,53],[60,35],[18,12],[76,46],[130,89],[29,-74],[36,-97],[16,-35],[131,26],[240,92],[106,20],[96,7],[126,21],[47,2],[82,-13],[175,-31],[69,6],[171,6],[111,2],[74,1],[62,-5],[60,-1],[119,-17],[17,6],[180,47],[19,7],[40,7],[43,-10],[15,1],[94,-21],[79,-25],[168,-42],[21,-9],[43,-19],[28,-24],[76,-51],[328,-138],[62,-23],[173,-88],[39,-11],[44,-15],[66,-36],[71,-31],[84,-16],[106,0],[141,9],[55,15],[139,51],[219,19],[179,69],[-10,-131],[-8,-86],[-151,-231],[-37,-10],[-138,-135],[-48,-42],[-11,-62],[-155,-59],[-30,-10],[-226,-146],[-180,-186],[-34,-110],[-162,-218],[-257,-378],[-56,-80],[-141,-159],[-47,-44],[-85,-68],[-23,-30],[-36,-58],[-43,-69],[-29,-68],[-246,-137],[-140,-23],[-120,-53],[-108,0],[-46,-12],[-103,-7],[-101,-13],[-67,-13],[-139,-15],[-55,-8],[-85,-22],[-67,12],[-111,-10],[-44,3],[-148,9],[-107,8],[-96,6],[-57,-26],[-82,-1],[-82,16],[-123,-50],[-78,-94],[-46,-37],[-60,-47],[-43,-32],[-45,-17],[-62,-52],[-46,-48],[-21,-26],[-46,-62],[-115,-137],[-53,-55],[-98,-100],[-66,-59],[-101,-94],[-47,-37],[-30,-21],[-73,-49],[-48,-49],[-16,-19],[-45,-52],[-22,-37],[-13,-19],[-31,-56],[-11,-16],[-22,-33],[-12,-25],[-16,-31],[-34,-24],[-23,-20],[-46,-92],[-49,-93],[-18,-37]],[[92564,66292,0],[-46,-83]],[[92712,65678,0],[-80,-101],[-3,-5]],[[92501,65442,0],[-370,-452]],[[91973,64654,0],[-109,-220],[-29,-44]],[[91835,64390,0],[-48,-53]],[[91787,64337,0],[-92,-218],[-68,-162]],[[91627,63957,0],[-244,2]],[[91383,63959,0],[1,12],[5,181]],[[91389,64152,0],[-101,127]],[[91288,64279,0],[-124,57],[-79,35],[-179,61]],[[90906,64432,0],[-167,41],[-36,-69],[-116,-227]],[[90587,64177,0],[-4,-8],[-39,-78]],[[90544,64091,0],[-102,-274]],[[90442,63817,0],[-18,-28],[-26,-40],[-8,-13]],[[90390,63736,0],[-17,-25]],[[90373,63711,0],[-14,-14],[-23,-23],[-23,-22]],[[90313,63652,0],[-19,-19]],[[90294,63633,0],[-56,94],[-157,192],[-6,35],[-80,113]],[[89995,64067,0],[-10,-14],[-44,-63]],[[89941,63990,0],[-6,-6],[-76,-93]],[[89859,63891,0],[-48,-56],[-406,257],[39,67],[180,54],[-127,200],[-243,-253],[-63,0],[-49,78],[-38,62],[-76,63],[-124,137],[-69,-224],[-31,-38],[-63,136],[-101,169]],[[88640,64543,0],[-29,-5],[-36,-11],[-199,-56]],[[88376,64471,0],[-137,-39],[97,-187],[77,-2],[5,0],[67,-222],[-278,120],[-554,196]],[[87653,64337,0],[-14,101]],[[87639,64438,0],[-16,118],[-8,128]],[[87615,64684,0],[-3,64]],[[87612,64748,0],[9,11]],[[87621,64759,0],[268,409]],[[87889,65168,0],[2,3]],[[87891,65171,0],[-16,8]],[[87875,65179,0],[-442,216],[22,51]],[[87455,65446,0],[-74,38]],[[87381,65484,0],[-231,117]],[[87150,65601,0],[-202,103]],[[86948,65704,0],[-152,66],[-19,8]],[[86777,65778,0],[-82,-15]],[[86695,65763,0],[-13,-3]],[[86682,65760,0],[-46,18]],[[86636,65778,0],[19,22]],[[86655,65800,0],[46,53]],[[86701,65853,0],[11,14]],[[86712,65867,0],[12,13]],[[86724,65880,0],[76,75]],[[86800,65955,0],[4,2],[80,65]],[[86884,66022,0],[75,63]],[[86959,66085,0],[14,6]],[[86973,66091,0],[85,41],[19,8],[22,8]],[[87099,66148,0],[62,25]],[[87161,66173,0],[9,0],[96,34]],[[87266,66207,0],[49,7]],[[87315,66214,0],[3,1]],[[87318,66215,0],[50,11]],[[87368,66226,0],[113,9]],[[87481,66235,0],[107,0],[28,-2],[89,-6]],[[87705,66227,0],[27,66],[7,38],[7,46]],[[87746,66377,0],[1,25]],[[87747,66402,0],[1,18]],[[87748,66420,0],[3,13]],[[87751,66433,0],[6,21]],[[87757,66454,0],[0,91],[-3,54],[-124,-6]],[[87630,66593,0],[-10,0]],[[87620,66593,0],[-16,214],[-15,53]],[[87589,66860,0],[-21,99]],[[87568,66959,0],[105,31]],[[87673,66990,0],[390,67]],[[88063,67057,0],[1027,282]],[[89090,67339,0],[167,4],[115,40]],[[89431,67292,0],[288,1]],[[89719,67293,0],[180,-11]],[[89899,67282,0],[246,13]],[[90494,67355,0],[154,-72]],[[90795,67178,0],[45,83]],[[90874,67229,0],[121,25]],[[91121,67732,0],[46,74]],[[91219,68022,0],[109,50]],[[91328,68072,0],[-10,31]],[[91596,68229,0],[81,33]],[[91727,68327,0],[64,28]],[[91791,68355,0],[106,20]],[[91897,68375,0],[87,-70]],[[92074,68264,0],[45,89]],[[92119,68353,0],[52,96]],[[92171,68449,0],[43,12]],[[92246,68565,0],[196,-117]],[[92442,68448,0],[50,-21]],[[92822,68453,0],[60,56]],[[92882,68509,0],[23,19]],[[93031,68617,0],[86,-8]],[[93117,68609,0],[293,146]],[[93449,68766,0],[-22,-63],[19,-141],[256,-203],[-37,-26],[-47,-34],[16,-224],[-35,-63],[12,-159],[68,-52],[-7,-36],[-2,-14],[185,-629]],[[92358,64038,0],[87,-81],[35,-33]],[[92480,63924,0],[60,-47],[107,-85]],[[92647,63792,0],[42,-24],[142,-83]],[[92966,63597,0],[14,-11],[169,-128],[125,-96],[50,-38]],[[93404,63146,0],[48,-62],[11,-15]],[[93771,63210,0],[73,-154],[18,-37]],[[94529,62742,0],[-26,-42],[12,-29],[5,-23],[9,-144],[12,-87],[-17,-126],[-2,-33],[46,-129],[84,-175],[11,-67],[-37,-166],[-31,-50],[-36,-126],[-184,-189],[-2,-51],[2,-138],[-125,-287],[-130,-69],[-162,-117],[-81,-72],[-46,-44],[-77,-55],[-105,-104],[-7,-113],[-32,-59],[-117,-80],[-47,-27],[-67,-39],[-18,-22],[-104,-129],[-68,-87],[-151,-195],[-3,-31]],[[93035,59637,0],[-36,19],[-233,107],[-83,33],[-18,-43],[-44,-46],[-60,-22],[-63,0],[-65,18],[-65,49],[-29,30],[-23,23],[-71,70],[-22,24],[-55,45],[-80,52],[-165,100],[-162,62],[-39,29],[-24,21],[1,36],[16,24],[1,11],[-133,54],[-34,-6]],[[91549,60327,0],[-36,-742]],[[91513,59585,0],[2,-62]],[[91515,59523,0],[-26,1],[-66,-4],[-47,-15],[-36,-27],[-59,1],[-214,3],[-192,7]],[[90875,59489,0],[-192,6],[-198,7]],[[90485,59502,0],[-48,1],[-15,1],[-139,4]],[[90283,59508,0],[-96,48],[5,9],[51,72],[-7,3],[-139,71],[-135,69],[-59,37],[-36,38],[-23,42],[-13,34],[-6,44],[6,47],[11,44],[24,42],[25,29],[40,26],[57,23],[79,27],[108,38],[-14,22],[18,6],[34,17],[48,28],[39,35],[41,47],[30,40],[6,11],[23,48],[6,27],[0,19],[-15,25],[-91,32],[-43,9]],[[90257,60617,0],[3,17],[17,77]],[[90277,60711,0],[65,-19]],[[90342,60692,0],[27,-8]],[[90369,60684,0],[40,-12],[86,-28]],[[90495,60644,0],[32,-11]],[[90527,60633,0],[46,-14]],[[90573,60619,0],[68,-22]],[[90641,60597,0],[-32,-92],[-139,42],[-10,-36],[-21,-78],[62,-21],[79,-25]],[[90580,60387,0],[61,-15]],[[90641,60372,0],[50,-11],[42,-7],[49,-5]],[[90782,60349,0],[59,-2]],[[90841,60347,0],[57,0],[43,4]],[[90941,60351,0],[56,5]],[[90997,60356,0],[53,11],[50,12],[12,4],[40,13]],[[91152,60396,0],[51,20]],[[91203,60416,0],[58,26],[53,28],[44,26],[-5,6],[86,72]],[[91439,60574,0],[4,3],[18,14],[54,41]],[[91515,60632,0],[-3,9],[71,100],[69,105],[20,-9],[8,34],[34,127],[14,58],[95,-15]],[[91823,61041,0],[-9,44]],[[91814,61085,0],[-6,22],[-18,29],[-27,25],[-36,18],[-82,15],[-15,1],[-12,-7],[-9,-24],[-10,115],[28,-21]],[[91627,61258,0],[138,-28]],[[91765,61230,0],[36,-1],[29,8],[17,26],[6,27],[-5,33],[-7,22],[-136,13]],[[91705,61358,0],[-16,60]],[[91689,61418,0],[-31,83]],[[91658,61501,0],[-45,91]],[[91613,61592,0],[-77,128]],[[91536,61720,0],[-102,168]],[[91434,61888,0],[-70,126]],[[91364,62014,0],[-36,76]],[[91328,62090,0],[-23,84],[-108,-56],[-5,35],[-5,151],[1,50],[-5,52],[0,126],[2,32],[-3,49],[-16,81],[-23,66],[-26,63],[-41,67],[-45,66],[-47,54],[-57,47],[-53,39],[-31,17],[-28,16],[-36,20],[-23,11],[-21,10],[-56,20],[-69,17],[25,0],[15,7],[10,11],[7,13],[29,81],[3,16],[-2,10],[-6,12],[-6,8],[-13,9],[-44,23],[-27,18],[-6,3],[-30,-85],[-67,5],[-24,3],[-27,-1],[-6,0],[-118,-3],[-132,-23],[-13,-2]],[[90178,63312,0],[-228,-117],[-28,-18],[-10,-17],[-35,-68],[-49,-68],[-96,-83],[-15,-46],[-12,-19],[-140,-95]],[[89565,62781,0],[108,105],[41,22],[7,44],[61,38]],[[89782,62990,0],[88,117]],[[89870,63107,0],[37,67]],[[89907,63174,0],[18,66],[120,156],[59,31],[46,48],[51,99],[93,59]],[[90313,63652,0],[60,59]],[[90390,63736,0],[52,81]],[[90442,63817,0],[50,64],[8,40],[7,39],[10,47],[10,41],[17,43]],[[90544,64091,0],[43,86]],[[90906,64432,0],[5,-1],[181,-62],[196,-90]],[[91389,64152,0],[0,-22],[-6,-171]],[[91383,63959,0],[102,-1],[142,-1]],[[91627,63957,0],[67,161],[93,219]],[[91835,64390,0],[28,43],[110,221]],[[89859,63891,0],[82,99]],[[89941,63990,0],[54,77]],[[89565,62781,0],[-25,-106]],[[89540,62675,0],[46,-25]],[[89586,62650,0],[-32,-34],[-41,-34],[-30,-16]],[[89483,62566,0],[-63,-34],[-122,-44],[-142,-24],[-104,-4],[-102,-3],[-111,6],[-118,-11],[-78,-14],[-95,-34],[-133,-66],[-55,-42],[-41,47],[-159,-85],[-69,-30],[-64,-23],[-92,-23]],[[87935,62182,0],[-74,-168],[-88,-203]],[[87773,61811,0],[35,-25],[-69,-15],[-12,-29]],[[87727,61742,0],[-15,3],[-27,6]],[[87685,61751,0],[-40,-8],[-55,-11],[-79,4]],[[87511,61736,0],[-83,-5],[-71,8],[-68,15],[-64,22],[-52,27],[-60,39],[-84,81],[-61,86],[-79,146],[-123,279],[-41,88],[-22,33]],[[86703,62555,0],[-60,60],[-38,31]],[[86605,62646,0],[-103,51],[-51,17],[-123,50]],[[86328,62764,0],[-202,51]],[[86126,62815,0],[-6,21]],[[86120,62836,0],[-66,227]],[[86054,63063,0],[246,16],[226,-45],[374,-6],[30,187]],[[86930,63215,0],[-70,36]],[[86860,63251,0],[-51,6]],[[86809,63257,0],[-46,16],[-72,29]],[[86691,63302,0],[-133,26]],[[86558,63328,0],[-130,-24],[-54,109]],[[86374,63413,0],[82,233]],[[86456,63646,0],[50,138]],[[86506,63784,0],[-103,64],[-149,12]],[[86254,63860,0],[-17,88]],[[86237,63948,0],[81,-39],[235,35]],[[86553,63944,0],[134,-52],[67,-49],[395,-130],[87,264]],[[87236,63977,0],[417,360]],[[88376,64471,0],[214,60],[33,9],[17,3]],[[93035,59637,0],[-3,-105],[-4,-69],[-3,-15],[-25,-60],[-2,-5],[-46,-51],[-78,-85],[-22,-53],[-19,-32],[-58,-87],[-13,-21],[-57,-87],[-37,-54],[-27,-40],[-11,-16],[-80,-206],[-51,-134],[-29,-92],[-12,-29],[-83,-203],[-10,-29],[-14,-74],[-6,-43],[0,-1],[-9,-48],[-14,-84],[-53,-114],[-16,-30],[-27,-61],[-11,-19],[-22,-54],[-14,-30],[-26,-22],[-95,-87],[-105,-97],[-19,-32],[-12,-26],[-4,-8],[-9,-19],[-21,-19]],[[91888,57296,0],[-16,-18],[-97,-103]],[[91775,57175,0],[-26,-27]],[[91749,57148,0],[-19,-21]],[[91730,57127,0],[-8,-9],[-21,-6]],[[91643,57106,0],[-24,-3],[-13,-1],[-11,-4]],[[91595,57098,0],[-72,-26],[-18,-6]],[[91443,57049,0],[-35,-9],[-9,-9],[-15,-15]],[[91384,57016,0],[-31,-17],[-24,9]],[[91329,57008,0],[-64,23],[-21,8]],[[91244,57039,0],[-41,-21]],[[91203,57018,0],[-46,-30],[-15,-24]],[[91122,56931,0],[-22,-37],[-50,-7]],[[91050,56887,0],[-36,2]],[[90929,56893,0],[-32,-5]],[[90897,56888,0],[-121,-25],[-65,-13],[-24,-10],[-27,-28],[-11,-5],[-27,-15]],[[90622,56792,0],[-17,-9]],[[90605,56783,0],[-66,-34],[-12,-5],[-117,20]],[[90410,56764,0],[-77,13],[-25,-5]],[[90287,56768,0],[-14,-28]],[[90273,56740,0],[-24,4]],[[90113,56748,0],[-48,-31],[-23,-15]],[[90042,56702,0],[-5,-3],[-56,29]],[[89981,56728,0],[-13,9],[-5,0]],[[89963,56737,0],[-25,-4],[-2,-21],[-1,-7]],[[89935,56705,0],[-94,-27],[-48,-13],[-69,51]],[[89671,56753,0],[-60,17]],[[89611,56770,0],[-28,8]],[[89583,56778,0],[34,35]],[[89542,56881,0],[-21,46],[-35,24]],[[89220,57051,0],[-109,36],[-120,-8]],[[88991,57079,0],[-53,39],[-2,0]],[[88432,57325,0],[-177,126],[-49,36],[-58,42]],[[88148,57529,0],[-62,30],[-19,7]],[[87740,58038,0],[-194,334],[-34,61]],[[87282,58856,0],[-101,214],[-18,35]],[[86890,59606,0],[116,64]],[[87006,59670,0],[185,103]],[[87191,59773,0],[-120,-79],[-13,-9]],[[87058,59685,0],[-31,-36]],[[87027,59649,0],[-63,-66]],[[86964,59583,0],[112,-122],[153,-440],[69,-157],[210,-327],[119,-118],[71,-69],[387,-316],[27,-27],[73,-53],[88,-64],[5,-5],[97,-58],[116,-69],[2,-2],[116,-51],[58,-25]],[[88667,57680,0],[-61,14],[61,-14]],[[88667,57680,0],[158,-69],[242,-75],[90,-32],[152,-53],[150,-53],[135,-48]],[[89594,57350,0],[114,-40],[6,-2],[112,-37],[112,-18],[115,3],[22,1]],[[90075,57257,0],[37,1]],[[90112,57258,0],[177,50],[73,31]],[[90362,57339,0],[52,23],[85,-2]],[[90499,57360,0],[61,-4]],[[90560,57356,0],[123,-6]],[[90683,57350,0],[83,34],[57,25],[55,3],[57,16],[57,34],[8,8],[11,11],[26,29]],[[91037,57510,0],[24,52]],[[91061,57562,0],[2,6],[7,21],[4,22],[-1,29],[0,7],[0,21],[-2,21],[-8,29],[-7,25],[7,19],[4,11],[6,4],[112,64],[10,8],[74,59],[17,21]],[[91286,57929,0],[71,80],[13,16]],[[91370,58025,0],[73,103],[91,134],[56,81],[21,34],[55,106]],[[91666,58483,0],[-60,33]],[[91606,58516,0],[-51,29],[-17,10]],[[91538,58555,0],[-45,25],[-15,9],[-12,2]],[[91466,58591,0],[0,28],[1,85],[-3,165]],[[91464,58869,0],[-96,0],[-70,4]],[[91298,58873,0],[-2,67]],[[91296,58940,0],[1,80],[0,69]],[[91297,59089,0],[107,-1]],[[91404,59088,0],[48,-2]],[[91452,59086,0],[29,2],[30,8],[20,6],[36,13],[31,20],[28,23],[12,15],[19,30],[20,32]],[[91677,59235,0],[10,46]],[[91687,59281,0],[3,41],[0,5]],[[91690,59327,0],[0,20],[-9,30],[-15,25]],[[91666,59402,0],[-13,22],[-11,21]],[[91642,59445,0],[-32,32],[-34,23],[-40,16],[-21,7]],[[91513,59585,0],[28,587],[8,155]],[[89169,59162,0],[-9,-20],[-15,-34]],[[89145,59108,0],[-16,-34],[-18,-35],[47,-21],[80,-33],[206,-82],[30,-13],[43,-18]],[[89517,58872,0],[35,-16],[5,-3]],[[89557,58853,0],[44,-22],[26,-17],[35,-23],[27,-22],[26,-20],[29,-29],[27,-28],[28,-33],[35,-45],[33,-51],[27,-51],[18,-44],[11,-31],[12,-38],[4,-26],[6,-41],[4,-39],[4,-43],[0,-37],[-4,-39],[-8,-50],[-4,-16],[-6,-32],[-9,-27],[-12,-35],[-19,-43],[-20,-45],[-25,-57],[-5,-10],[-42,-86],[-3,-6],[-1,-6],[-1,-14],[1,-7],[2,-4],[6,-11],[7,-10],[-38,9],[-44,-90],[-67,-173],[-67,-111]],[[86964,59583,0],[53,55],[10,11]],[[87058,59685,0],[110,73],[0,-1],[23,16]],[[87191,59773,0],[-43,26],[51,57],[92,-64],[34,-29],[72,9],[106,15],[54,3],[79,4],[118,8],[130,9],[190,11],[144,8],[119,9],[263,9],[94,6],[130,5],[130,10],[175,8],[114,5]],[[89243,59882,0],[18,-90],[29,-86],[36,-69],[2,-5],[2,-4],[69,-100],[77,-82],[16,-14],[-52,-70],[-8,-10],[-73,-96],[-42,-78],[-23,11],[-43,27],[-23,16],[-59,-70]],[[91642,59445,0],[12,-21],[12,-22]],[[91690,59327,0],[-3,-46]],[[91687,59281,0],[-1,-5],[-9,-41]],[[91452,59086,0],[-12,0],[-33,1],[-3,1]],[[91404,59088,0],[-83,1],[-24,0]],[[91296,58940,0],[2,-61],[0,-6]],[[91464,58869,0],[2,-278]],[[91466,58591,0],[14,-3],[58,-33]],[[91538,58555,0],[68,-39]],[[91606,58516,0],[56,-31],[4,-2]],[[91370,58025,0],[-84,-96]],[[91061,57562,0],[0,-1],[-9,-17],[-14,-31],[-1,-3]],[[90683,57350,0],[-114,5],[-9,1]],[[90499,57360,0],[-86,2],[-51,-23]],[[90362,57339,0],[-71,-31],[-176,-49],[-3,-1]],[[90112,57258,0],[-34,0],[-3,-1]],[[89557,58853,0],[-40,19]],[[89145,59108,0],[24,54]],[[89243,59882,0],[95,54],[-2,52],[-1,10],[5,36],[13,81],[16,59],[28,77],[27,59],[24,45],[18,29],[25,25]],[[89491,60409,0],[37,34],[80,58],[87,49],[145,52],[92,23],[72,8]],[[90004,60633,0],[106,5],[104,-12],[43,-9]],[[90283,59508,0],[133,-5],[69,-1]],[[90485,59502,0],[177,-6],[213,-7]],[[76271,84599,0],[-13,-115],[-8,-49],[-8,-37],[7,-27],[5,-23],[22,-91],[-1,-45],[0,-7],[5,-30],[3,-51],[31,1],[3,-42],[278,-52],[43,-8]],[[76638,84023,0],[176,-67],[6,-103],[3,-99],[-10,-100],[7,-120],[20,-101],[22,-85],[18,-90],[5,-92],[47,-62],[-203,-122],[5,-24],[42,-45],[24,-62],[53,-119],[53,-91],[133,-32],[229,-76],[99,-68],[13,-23],[10,-121],[12,-120],[74,-89],[169,-166],[-15,-28],[-71,-37],[-74,-22],[-45,-26],[-155,-53],[-231,-31],[18,-176],[16,-185],[4,-33],[-4,-150],[29,-46]],[[77117,81159,0],[18,-65]],[[77135,81094,0],[-5,-97],[11,-56],[13,-22]],[[77154,80919,0],[-4,-44],[-3,-27]],[[77147,80848,0],[-68,-14]],[[77079,80834,0],[-71,-11],[-127,-12]],[[76881,80811,0],[-26,9],[-45,-10],[-71,8],[-114,-8]],[[76625,80810,0],[-68,-68]],[[76557,80742,0],[-133,-25],[-8,-16],[8,-12],[0,-18],[-10,-9],[-3,-21]],[[76411,80641,0],[-43,-44],[5,-27]],[[76373,80570,0],[14,-12],[45,-15],[24,-41]],[[76456,80502,0],[17,-174]],[[76473,80328,0],[-74,-24],[-44,-1]],[[76355,80303,0],[-219,8]],[[76136,80311,0],[-677,-160],[-44,-17],[72,-127],[121,-176],[183,-252]],[[75791,79579,0],[51,-87],[41,-54],[12,-18]],[[75895,79420,0],[118,-169]],[[76013,79251,0],[-114,-19]],[[75899,79232,0],[-81,-25]],[[75818,79207,0],[-541,-94]],[[75277,79113,0],[-162,8]],[[75115,79121,0],[11,-418],[-96,10]],[[75030,78713,0],[-112,-156]],[[74918,78557,0],[20,-32]],[[74938,78525,0],[-37,-40]],[[74901,78485,0],[-25,-69]],[[74876,78416,0],[-63,-74],[-30,-76]],[[74783,78266,0],[4,-54],[-335,40]],[[74452,78252,0],[-942,70],[-22,2]],[[73488,78324,0],[-12,-2],[-377,-49],[-95,-12]],[[73004,78261,0],[-158,0],[-249,-1]],[[72597,78260,0],[-181,3]],[[72416,78263,0],[-94,12],[-33,4]],[[72289,78279,0],[-310,115]],[[71979,78394,0],[34,86],[23,69],[26,114],[-1,55]],[[72061,78718,0],[-161,61],[-78,7],[-22,61],[-40,56],[-20,58],[-17,129],[-52,61],[-74,30],[-68,13]],[[71529,79194,0],[-94,8]],[[71435,79202,0],[-57,-2],[-73,-12]],[[71305,79188,0],[-39,-3],[-24,-2],[-9,-1]],[[71233,79182,0],[-77,-4],[-110,7],[7,37],[9,121],[11,154],[17,167]],[[71090,79664,0],[0,49]],[[71090,79713,0],[2,5]],[[71092,79718,0],[4,15]],[[71096,79733,0],[21,70],[13,93],[1,57]],[[71131,79953,0],[-3,11],[-4,13]],[[71124,79977,0],[-54,155],[47,-4],[116,112],[23,3],[76,-14],[51,-10],[57,14]],[[71440,80233,0],[18,36],[5,9]],[[71463,80278,0],[1,6],[12,162]],[[71476,80446,0],[-1,7],[-61,210]],[[71414,80663,0],[-75,101],[-130,328],[154,52]],[[71363,81144,0],[5,0],[206,33]],[[71574,81177,0],[3,27],[8,71]],[[71585,81275,0],[-1,6],[-4,69]],[[71580,81350,0],[-31,94],[33,119],[2,26],[61,-18],[55,92],[10,52],[57,62]],[[71767,81777,0],[0,5],[-3,67]],[[71764,81849,0],[-61,153]],[[71703,82002,0],[-71,127]],[[71632,82129,0],[130,54],[31,-9]],[[71793,82174,0],[10,-3],[98,-51],[42,51],[218,-173],[15,-12],[75,-59],[173,-137],[73,-24],[142,-45],[16,-300],[2,-27]],[[72657,81394,0],[10,-204]],[[72667,81190,0],[11,-32]],[[72703,81082,0],[48,-145],[97,12],[68,8],[58,10],[267,47],[151,-59],[79,-31],[187,-72],[96,23]],[[73754,80875,0],[56,192],[22,18],[176,151]],[[74008,81236,0],[799,329]],[[74834,81577,0],[68,27]],[[74619,82377,0],[-66,161],[-64,153]],[[71614,82282,0],[37,-43],[56,11],[86,-76]],[[71764,81849,0],[3,-72]],[[71580,81350,0],[5,-75]],[[71585,81275,0],[-11,-98]],[[71574,81177,0],[-211,-33]],[[71414,80663,0],[62,-217]],[[71476,80446,0],[-13,-168]],[[71463,80278,0],[-23,-45]],[[71124,79977,0],[7,-24]],[[71096,79733,0],[-6,-20]],[[71233,79182,0],[72,6]],[[71435,79202,0],[33,-3],[61,-5]],[[71979,78394,0],[-162,55],[-33,11]],[[71784,78460,0],[-415,139],[-30,9]],[[71339,78608,0],[-137,49]],[[71202,78657,0],[-224,102]],[[70978,78759,0],[-172,54]],[[70806,78813,0],[-226,53]],[[70580,78866,0],[-20,6],[-324,71]],[[70236,78943,0],[44,-119]],[[70280,78824,0],[-35,-256],[-41,-189]],[[70204,78379,0],[-35,-107]],[[70169,78272,0],[-9,-37],[1,-117],[-2,-98],[-20,-46],[-4,-34],[10,-58],[-32,-8],[-75,-24],[-3,-21]],[[70035,77829,0],[-33,-33],[-18,-20]],[[69984,77776,0],[-32,-7],[-32,0]],[[69920,77769,0],[-33,-7]],[[69887,77762,0],[-69,-1],[-191,-49],[-92,-45]],[[69535,77667,0],[-285,-75]],[[69250,77592,0],[-119,68],[-107,51]],[[69024,77711,0],[-38,55]],[[68986,77766,0],[1,39],[-19,17],[-250,-152],[-57,-21],[-224,-7],[-117,4],[-21,12]],[[68299,77658,0],[-27,2],[-28,-15]],[[68244,77645,0],[-102,28]],[[68142,77673,0],[-110,-36],[-181,-16]],[[67851,77621,0],[-130,-7],[-49,11]],[[67672,77625,0],[-57,-4],[-79,-43],[-121,-69],[-172,-140]],[[67243,77369,0],[-178,-104]],[[67065,77265,0],[-26,18],[-24,16],[-80,127],[-221,211],[-178,162],[-15,15],[27,44],[-90,74],[-48,42],[-122,58],[-134,67],[-101,47],[-168,106],[60,95],[43,94],[78,198],[91,-31],[45,-40],[96,-21],[23,19],[40,107],[29,91],[22,61],[37,111],[767,74],[-19,55],[-42,587],[11,104],[-12,25],[-13,195],[-78,96],[-26,58],[-11,137],[16,125],[43,119],[0,132],[11,138],[22,89],[68,268],[39,146],[40,128]],[[69355,81590,0],[208,28],[-9,91],[79,87],[59,1],[16,20],[169,218],[256,402]],[[70133,82437,0],[160,-75],[59,118]],[[70352,82480,0],[87,38]],[[70606,82612,0],[17,35]],[[70623,82647,0],[225,-115]],[[70912,82516,0],[117,-71],[-12,-34],[130,-56],[181,-22],[168,-71],[118,20]],[[86268,75333,0],[3,-28]],[[86701,74467,0],[13,-2],[193,-146],[9,-5]],[[86916,74314,0],[79,-51],[65,-44]],[[87060,74219,0],[32,-24]],[[87092,74195,0],[-4,-11]],[[87098,74005,0],[65,-87]],[[87282,73508,0],[35,-74]],[[87340,73369,0],[63,-124]],[[87403,73245,0],[100,-204]],[[87503,73041,0],[16,-32],[49,-102]],[[87568,72907,0],[54,-103],[-43,-68],[-5,-8],[2,-22],[-95,-133]],[[87481,72573,0],[-113,-156]],[[87368,72417,0],[-28,-155],[-8,-42]],[[87332,72220,0],[-23,-142]],[[87309,72078,0],[-159,-177]],[[87150,71901,0],[-58,-70]],[[87092,71831,0],[-108,-132]],[[86984,71699,0],[-104,-134]],[[86880,71565,0],[-12,-15],[-28,-4]],[[85993,71493,0],[-133,36],[-244,7],[-158,150],[-339,86],[-128,104]],[[84991,71876,0],[-39,42]],[[84952,71918,0],[-130,121]],[[84822,72039,0],[-48,35]],[[84774,72074,0],[-336,309],[9,95],[-87,106],[-46,116],[-48,99],[-25,53],[-24,75],[-21,4]],[[84196,72931,0],[-2,15],[-8,62],[-120,137],[-109,88],[-29,72],[-137,91],[-33,32],[-32,30],[-265,-169],[101,-382],[-340,-101],[-80,137],[-303,131],[-322,-347],[-95,65],[-225,11]],[[82197,72803,0],[-26,62],[-14,50],[-56,49],[39,128],[26,41],[14,45],[13,62],[9,37],[25,56]],[[82227,73333,0],[-26,21]],[[82201,73354,0],[-18,15],[5,128],[-18,66],[-4,54],[0,91],[36,98],[17,248],[35,24],[4,29],[62,46],[17,53],[140,12],[62,13],[113,-5]],[[82652,74226,0],[72,308],[6,21]],[[82730,74555,0],[5,29],[172,-37]],[[82907,74547,0],[46,121]],[[82953,74668,0],[103,271]],[[83056,74939,0],[14,33]],[[83070,74972,0],[51,145]],[[83121,75117,0],[4,14]],[[83125,75131,0],[173,436],[-107,73],[-25,30],[15,14],[-15,13],[-21,19]],[[83145,75716,0],[163,151],[110,155],[-128,67],[-115,62],[-283,204],[199,146],[-5,125],[87,151],[327,136],[147,-240],[107,-97],[131,-39],[58,-45],[86,106],[116,-51],[109,-13],[92,5],[121,8],[10,-2],[84,-16],[61,-65],[84,-129],[139,-130],[-194,-156],[-84,-74],[200,-201],[413,-252],[236,3],[65,123],[427,-170],[82,153]],[[83121,75117,0],[-7,-17],[-44,-128]],[[83056,74939,0],[-92,-240],[-11,-31]],[[82953,74668,0],[-35,-92],[-11,-29]],[[82730,74555,0],[-78,-329]],[[82201,73354,0],[10,-8],[16,-13]],[[82197,72803,0],[35,-53],[26,-95],[105,-62],[5,-53],[13,-21],[-5,-38],[-26,-45],[-9,-41],[26,-116],[-44,-20],[-82,-8],[-44,-4],[-109,-8],[-75,32],[-53,-8],[-118,-28],[-96,49],[-96,8],[-31,46],[-79,41],[-9,5],[-277,143],[-136,99],[-144,58],[-79,12],[-31,29],[-48,9],[-105,61],[-57,13],[-127,53],[-105,-156],[-44,-75],[-17,-20],[-52,-83],[-66,-82],[-87,-128],[-93,-132],[-26,-41],[-79,-194],[-65,-161],[-99,-187],[-201,-281],[-32,10],[-100,31],[-69,0],[-193,95],[-135,46],[-801,185],[-110,28],[-127,32]],[[78026,71748,0],[5,52],[3,30]],[[78034,71830,0],[17,172],[18,187],[4,31],[19,198],[22,226],[24,235],[22,227]],[[78160,73106,0],[2,17]],[[78162,73123,0],[1,8],[-12,140],[3,165],[0,169],[3,149],[-4,16],[-8,124],[-14,133],[-24,136],[-28,149],[-26,155],[-12,57],[-37,158]],[[78004,74682,0],[-10,32],[-31,99]],[[77963,74813,0],[-202,110],[-42,26],[-135,79]],[[77584,75028,0],[-25,41],[-9,38]],[[77550,75107,0],[-30,144]],[[77520,75251,0],[-5,171],[-1,9]],[[77514,75431,0],[-1,35],[-1,30],[-6,136],[0,131],[-1,26],[-4,28]],[[77501,75817,0],[-8,167]],[[77493,75984,0],[0,142]],[[77493,76126,0],[-5,26]],[[77488,76152,0],[-19,136]],[[77469,76288,0],[-6,66]],[[77463,76354,0],[-17,111],[-20,110],[-5,27],[-22,109],[-26,109],[-1,6],[-12,51],[-33,131],[9,6]],[[77336,77014,0],[11,-7],[153,29],[145,42],[37,19],[78,39],[95,40],[64,27],[57,12],[12,7],[58,34],[36,25],[9,6],[92,61],[12,4],[72,29],[49,17],[6,3],[115,56],[64,32],[62,80],[92,119],[-22,38],[31,36],[62,80],[26,-17],[7,12],[33,50],[88,-153],[66,-146],[18,-25],[88,141],[75,13],[105,0],[26,-141],[23,-108],[0,-25],[220,-33],[44,-13],[-124,-623],[133,25],[77,12],[70,49],[146,-8],[9,-125],[39,-45],[23,-21],[13,-108],[21,-179],[9,-54],[150,-4],[119,-12],[62,-13],[203,-4],[88,-13],[110,-16],[172,-16],[61,-5],[102,-17],[88,-20],[-27,-59],[31,-8],[73,-27],[54,-24],[79,-46],[75,4],[26,-25],[75,-38],[75,-78],[75,-55],[4,38],[44,-25],[119,0],[88,-33],[128,-13],[35,187],[75,0],[88,-45],[151,-43],[12,-3],[146,-17],[53,4],[26,-124],[34,-15],[160,-68],[110,-22],[97,-16],[123,67]],[[72597,78260,0],[407,1]],[[73004,78261,0],[484,63]],[[73488,78324,0],[964,-72]],[[74452,78252,0],[340,-41],[648,-52],[266,7],[321,55],[160,7],[147,1],[161,-3],[77,-99],[630,-821],[10,-16],[55,-100],[24,-42],[12,-34],[33,-100]],[[77463,76354,0],[3,-23],[1,-24],[1,-8],[1,-11]],[[77488,76152,0],[0,-5],[5,-21]],[[77493,75984,0],[0,-11],[8,-156]],[[77514,75431,0],[0,-8],[6,-172]],[[77550,75107,0],[9,-39],[25,-40]],[[77584,75028,0],[-2,-16],[-11,-214]],[[77571,74798,0],[23,-126],[1,-45],[-24,-114],[-23,-237],[-3,-36],[-32,-299],[12,-154],[15,-142],[-10,-135]],[[77530,73510,0],[-191,47]],[[77339,73557,0],[-55,14],[-81,22],[-13,3]],[[77190,73596,0],[-44,13],[-157,44],[-164,46],[-143,39]],[[76682,73738,0],[-60,15],[-17,5]],[[76605,73758,0],[62,178],[-163,37],[-229,53],[-107,26],[-519,-90],[-2,19],[-1,13],[22,101],[-9,89],[-38,21],[-113,-119],[-26,-44],[-110,-56],[-96,11],[-47,11],[-66,55],[0,98],[-20,73],[-23,65],[-46,77],[-19,46],[-14,52],[-69,98],[-49,77],[-141,101],[-118,90],[-164,108],[-58,11],[-50,10],[-112,44],[-48,7],[-47,-5],[-50,-31],[-152,-86]],[[73983,74898,0],[-43,86]],[[73940,74984,0],[-20,25],[-29,60],[-9,12]],[[73882,75081,0],[-9,3],[-49,22]],[[73824,75106,0],[-30,162],[-56,216]],[[73738,75484,0],[-2,43]],[[73736,75527,0],[-4,33],[-41,168],[-40,42],[-61,15]],[[73590,75785,0],[-20,16],[-20,16]],[[73550,75817,0],[17,41],[-65,64]],[[73502,75922,0],[-8,13]],[[73494,75935,0],[-5,10],[-3,9]],[[73486,75954,0],[-7,99],[-18,40],[-11,12],[-5,10],[-3,10],[-2,9]],[[73440,76134,0],[-1,11]],[[73439,76145,0],[-2,56]],[[73437,76201,0],[-27,23]],[[73410,76224,0],[-4,53]],[[73406,76277,0],[-20,5],[-10,4]],[[73376,76286,0],[-9,6],[-8,8]],[[73359,76300,0],[-7,8]],[[73352,76308,0],[-4,9]],[[73348,76317,0],[-4,10]],[[73344,76327,0],[-2,11],[0,10],[9,96],[-16,89]],[[73335,76533,0],[-72,121]],[[73263,76654,0],[-16,59],[-27,29]],[[73220,76742,0],[-139,53],[-14,25]],[[73067,76820,0],[-38,22]],[[73029,76842,0],[-51,9],[-44,42]],[[72934,76893,0],[-61,32]],[[72873,76925,0],[-91,160],[-102,79]],[[72680,77164,0],[-13,14]],[[72667,77178,0],[-9,8],[-9,5],[-10,5]],[[72639,77196,0],[-10,3],[-20,6],[-10,6]],[[72599,77211,0],[-9,6],[-8,6]],[[72582,77223,0],[-8,8],[-55,75],[-76,21],[-77,77],[-84,41],[-64,48],[-65,8],[-107,27]],[[72046,77528,0],[-95,61],[-109,43]],[[71842,77632,0],[-125,43],[-52,35]],[[71665,77710,0],[-24,13]],[[71641,77723,0],[-29,19],[-46,15],[-17,66],[-22,42]],[[71527,77865,0],[18,51]],[[71545,77916,0],[54,100],[97,159],[0,25],[-1,17],[3,9],[7,9],[9,6],[60,116]],[[71774,78357,0],[46,90]],[[71820,78447,0],[159,-53]],[[72289,78279,0],[127,-16]],[[71842,77632,0],[109,-44],[95,-60]],[[72582,77223,0],[8,-7],[9,-5]],[[72639,77196,0],[10,-6],[9,-5],[9,-7]],[[72680,77164,0],[102,-80],[91,-159]],[[72873,76925,0],[12,-7],[49,-25]],[[72934,76893,0],[44,-43],[51,-8]],[[73067,76820,0],[14,-26],[139,-52]],[[73220,76742,0],[27,-30],[16,-58]],[[73263,76654,0],[6,-10],[66,-111]],[[73344,76327,0],[2,-6],[2,-4]],[[73352,76308,0],[5,-6],[2,-2]],[[73376,76286,0],[9,-4],[21,-5]],[[73410,76224,0],[26,-23],[1,0]],[[73439,76145,0],[1,-10],[0,-1]],[[73486,75954,0],[3,-10],[5,-9]],[[73502,75922,0],[64,-64],[0,-1],[-16,-40]],[[73550,75817,0],[40,-32]],[[73736,75527,0],[2,-42],[0,-1]],[[73824,75106,0],[48,-22],[10,-3]],[[73940,74984,0],[42,-84],[0,-1],[1,-1]],[[73983,74898,0],[-1,0],[-91,-65],[-73,-35]],[[73818,74798,0],[-78,-64]],[[73740,74734,0],[-120,-228],[0,-1]],[[73620,74505,0],[-46,-85],[-185,-114],[-116,-7],[-36,-17],[-45,-26]],[[73192,74256,0],[-90,-14],[-106,-59]],[[72996,74183,0],[-180,-132],[-91,-125],[-96,-66]],[[72629,73860,0],[-1,-1],[-49,43],[-54,51]],[[72525,73953,0],[-38,36],[13,23]],[[72500,74012,0],[-76,58],[-60,-24],[-79,-74],[-10,-6],[-14,36]],[[72261,74002,0],[-201,-58],[-146,-59],[-49,-10],[-81,-42]],[[71784,73833,0],[-26,-68]],[[71758,73765,0],[-61,-46]],[[71697,73719,0],[-54,-34],[-91,-43]],[[71552,73642,0],[-71,-8]],[[71481,73634,0],[-100,-22],[-67,11],[-67,-12],[-56,12],[-20,-184]],[[71171,73439,0],[-17,-152]],[[71154,73287,0],[-28,-179]],[[71126,73108,0],[-72,-121],[-282,134]],[[70772,73121,0],[-245,125]],[[70527,73246,0],[-83,49],[-198,116],[-199,116]],[[70047,73527,0],[-240,139]],[[69807,73666,0],[-123,102],[-180,100]],[[69504,73868,0],[-129,79],[-166,113],[-265,175],[-119,113]],[[68825,74348,0],[-57,38],[-21,27]],[[68747,74413,0],[-275,313]],[[68472,74726,0],[-151,169],[-87,109]],[[68234,75004,0],[-137,198],[-85,140],[-127,170]],[[67885,75512,0],[-41,88],[-91,145]],[[67753,75745,0],[-52,102],[-19,58],[-54,99],[-72,204],[-50,84],[-22,69],[-35,61],[-15,61],[-73,158],[-41,73],[-21,54],[-65,116],[-31,35],[-36,86],[-30,38],[-12,35],[-34,50],[-64,122],[38,15]],[[67065,77265,0],[116,68],[62,36]],[[67672,77625,0],[49,-12],[130,8]],[[67851,77621,0],[182,16],[109,36]],[[68244,77645,0],[28,14],[27,-1]],[[68986,77766,0],[0,-1],[38,-54]],[[69250,77592,0],[279,73],[6,2]],[[69887,77762,0],[25,5],[8,2]],[[69984,77776,0],[18,19],[33,34]],[[70169,78272,0],[14,40],[21,67]],[[70204,78379,0],[41,188],[35,257]],[[70580,78866,0],[226,-54],[172,-53]],[[71339,78608,0],[30,-10],[414,-138],[37,-13]],[[71820,78447,0],[-46,-89],[0,-1]],[[71774,78357,0],[-69,-147],[-9,-48],[-22,-35],[-66,-96],[-6,-11],[-14,-24],[-17,-34],[-17,-29],[-9,-17]],[[71545,77916,0],[-10,-28],[-8,-23]],[[71527,77865,0],[22,-43],[16,-65],[47,-16],[29,-18]],[[71665,77710,0],[52,-36],[125,-42]],[[78162,73123,0],[-1,-10],[-1,-7]],[[78034,71830,0],[-8,-82]],[[78026,71748,0],[-25,-226],[-4,-17],[-28,-132],[-35,-131],[-60,-163],[-11,-21],[-123,53],[-166,50],[-164,29],[-61,-247],[-141,-29],[-80,-3],[-120,14],[-40,14],[-67,1],[-29,-16],[-190,18],[-30,3],[4,-48],[-5,-106],[3,-19],[15,-199]],[[76669,70573,0],[-96,-30]],[[76573,70543,0],[-81,203]],[[76492,70746,0],[-146,109]],[[76346,70855,0],[-145,111]],[[76201,70966,0],[-71,12]],[[76130,70978,0],[-94,16],[-87,117],[-12,12],[-54,48]],[[75883,71171,0],[-73,65]],[[75810,71236,0],[-36,66]],[[75774,71302,0],[-63,48]],[[75711,71350,0],[-62,23],[-57,21],[-121,39]],[[75471,71433,0],[-82,-76]],[[75389,71357,0],[-74,-56],[-279,-166]],[[75036,71135,0],[-98,-55]],[[74938,71080,0],[-99,-88],[-217,-116]],[[74622,70876,0],[66,-63]],[[74688,70813,0],[150,-141]],[[74838,70672,0],[-97,-42]],[[74741,70630,0],[-161,-106],[-129,-165],[-28,-25]],[[74423,70334,0],[-219,166],[-58,44],[-60,46]],[[74086,70590,0],[-302,198]],[[73784,70788,0],[-105,75],[-107,77],[-188,149]],[[73384,71089,0],[-183,186]],[[73201,71275,0],[-96,104]],[[73105,71379,0],[-98,137]],[[73007,71516,0],[26,10],[233,84],[68,-6],[58,7],[18,64],[-6,83],[22,119],[-192,29]],[[73234,71906,0],[56,81]],[[73290,71987,0],[2,31],[13,19],[3,26],[32,47],[18,12],[-4,35],[-67,10],[-113,57],[-95,69],[-44,-3],[-65,26],[8,81],[-28,228],[-11,209],[-4,31],[106,-17],[45,-24],[46,-6],[6,81],[31,80],[59,73],[17,42],[64,46],[27,4],[33,41],[41,94],[23,80],[38,78],[49,18],[16,44],[-4,50]],[[73532,73549,0],[58,89]],[[73590,73638,0],[-30,22],[-160,73],[-105,61],[-34,-87],[-127,-134],[-84,-61],[-29,-72],[4,-48],[4,-61],[-26,-86],[-32,-29],[-56,-90],[-58,-50],[-34,73],[-85,117],[-55,87],[-15,28],[-23,-6],[-134,-33],[-18,-24],[-34,-68],[-186,-80],[33,121],[65,104],[25,108],[121,158],[46,43],[37,31],[74,72]],[[72674,73807,0],[-45,53]],[[72996,74183,0],[107,60],[89,13]],[[73620,74505,0],[120,229]],[[73818,74798,0],[73,36],[92,64]],[[76605,73758,0],[77,-20]],[[77190,73596,0],[149,-39]],[[77339,73557,0],[189,-47],[2,0]],[[77571,74798,0],[13,230]],[[77963,74813,0],[41,-131]],[[87219,68675,0],[-25,-28],[52,-15]],[[87568,66959,0],[-43,-15]],[[87525,66944,0],[-103,-31]],[[87422,66913,0],[-74,-23]],[[87348,66890,0],[-7,-2]],[[87341,66888,0],[-95,-29]],[[87246,66859,0],[-34,-10]],[[87212,66849,0],[-38,-11],[-13,-4]],[[87161,66834,0],[-65,-17],[-12,-2]],[[87084,66815,0],[-36,-11],[-26,-7],[-44,-12],[-44,-14],[-27,-9]],[[86907,66762,0],[-62,-19],[-14,-5]],[[86831,66738,0],[-24,-8]],[[86807,66730,0],[-41,-12],[-28,-9]],[[86738,66709,0],[-56,-15],[-27,-7]],[[86655,66687,0],[-16,-4],[-35,-28]],[[86604,66655,0],[-41,-2]],[[86563,66653,0],[-41,-3],[-64,-4]],[[86458,66646,0],[-146,-8]],[[86312,66638,0],[-104,-6]],[[86208,66632,0],[-8,0]],[[86200,66632,0],[-9,-1]],[[86191,66631,0],[-5,0]],[[86186,66631,0],[-90,-6]],[[86096,66625,0],[-40,6],[-63,12]],[[85993,66643,0],[-74,18]],[[85919,66661,0],[-10,0]],[[85909,66661,0],[-11,1]],[[85898,66662,0],[-1,0]],[[85897,66662,0],[-69,10],[-56,-16]],[[85772,66656,0],[-8,-2],[-12,-9]],[[85752,66645,0],[-106,-73],[-34,-18]],[[85612,66554,0],[-11,-4]],[[85601,66550,0],[-57,-26],[-6,-3],[-37,-6],[-106,-18]],[[85395,66497,0],[-58,-12]],[[85337,66485,0],[-15,-3],[-88,-20],[-15,-3],[-93,-21],[-13,-2],[-72,-16],[-29,-6],[-16,-4],[-79,-17]],[[84917,66393,0],[-91,-21]],[[84826,66372,0],[-434,-95],[-63,-14]],[[84329,66263,0],[-194,-43],[-13,1],[-150,12]],[[83972,66233,0],[-33,-8],[-43,-10]],[[83896,66215,0],[-99,-24],[-120,-28],[-123,-30],[-100,-24],[-13,-3]],[[83441,66106,0],[-5,23]],[[83436,66129,0],[-1,42],[-1,36],[-1,31]],[[83433,66238,0],[0,32]],[[83433,66270,0],[-73,-42],[-14,-8]],[[83346,66220,0],[-6,-2],[-48,-22]],[[83292,66196,0],[-5,-4]],[[83287,66192,0],[-19,-15],[-38,-30]],[[83230,66147,0],[-10,0]],[[83220,66147,0],[-130,-104],[-276,-2],[-80,-23],[-35,-20]],[[82699,65998,0],[50,51],[20,40],[10,49],[-2,38],[0,36],[42,38],[-2,30],[66,20],[4,46],[23,72]],[[82910,66418,0],[-6,81]],[[82904,66499,0],[-1,11]],[[82903,66510,0],[-13,143]],[[82890,66653,0],[22,52],[2,13],[-5,95],[-15,153],[-10,12],[-18,9],[-10,7],[-1,15],[32,125]],[[82887,67134,0],[50,118],[6,129],[-281,34],[-20,13],[-38,121],[-76,77],[0,20],[4,15],[-20,110],[-6,19],[-32,41],[-12,23],[-10,34]],[[82452,67888,0],[-6,55],[-19,176]],[[82427,68119,0],[-33,86],[-2,13],[3,15],[28,48],[13,71],[15,19]],[[82451,68371,0],[13,20],[28,46]],[[82492,68437,0],[14,55],[33,123]],[[82539,68615,0],[7,52],[107,152]],[[82653,68819,0],[25,37]],[[82678,68856,0],[0,17],[-8,16],[-1,14],[9,11],[40,24],[10,8],[13,137],[-44,110],[43,81],[15,79],[-26,84],[0,15],[56,128],[95,160],[147,163],[66,46]],[[83093,69949,0],[159,49]],[[83252,69998,0],[118,10],[260,66],[159,43],[238,8],[135,45],[242,63],[188,12],[158,36]],[[84750,70281,0],[253,30]],[[85003,70311,0],[62,11]],[[85065,70322,0],[140,35]],[[85205,70357,0],[16,4],[112,22]],[[85333,70383,0],[139,22]],[[85472,70405,0],[98,31]],[[85570,70436,0],[235,-8]],[[85805,70428,0],[247,51]],[[82678,68856,0],[-9,-17],[-16,-20]],[[82539,68615,0],[-47,-178]],[[82492,68437,0],[-41,-66]],[[82427,68119,0],[25,-231]],[[82890,66653,0],[14,-154]],[[82699,65998,0],[-44,-71],[-29,-10],[-101,-40],[-93,-23],[-77,-30]],[[82355,65824,0],[-178,-33],[-124,-7],[1,-135],[-61,-23],[-66,-25],[-163,-2],[-56,21]],[[81708,65620,0],[-223,94],[-55,-132]],[[81430,65582,0],[-380,39]],[[81050,65621,0],[-165,48],[-21,-101],[-129,-2],[-120,-18],[-68,-39],[-31,-19],[-74,-28],[-64,5],[-140,12],[-223,15],[-28,2],[-184,28],[-115,16],[-129,-13],[-147,-29],[-19,-3],[-174,-35],[-244,-23],[-28,0]],[[78947,65437,0],[17,74],[17,49],[22,67],[24,56],[21,43],[7,17],[55,49],[24,23],[38,47],[52,63],[86,166],[-84,32],[36,67],[28,41],[96,80],[43,60],[12,20],[43,136],[12,80],[3,82],[15,79],[27,90],[25,96],[1,70],[-1,54],[-95,46],[4,29],[10,78],[-54,71],[-20,47],[-53,137],[-12,23],[-70,2],[-91,-41],[65,228],[9,31],[5,76],[-5,116],[-8,145],[-9,142],[-5,77]],[[79237,68285,0],[-32,76]],[[79205,68361,0],[-17,36],[-228,-88]],[[78960,68309,0],[-91,-34]],[[78869,68275,0],[-30,-7]],[[78839,68268,0],[-129,-29]],[[78710,68239,0],[-20,-5]],[[78690,68234,0],[-5,105]],[[78685,68339,0],[8,137]],[[78693,68476,0],[0,23],[2,149],[3,16]],[[78698,68664,0],[30,129]],[[78728,68793,0],[27,119],[27,114],[-38,11],[-262,62],[-20,4],[-41,0],[49,150],[11,27],[10,34],[-3,68],[4,18],[8,51],[16,60],[40,70],[8,12],[-12,7],[-68,13],[-60,-2],[-92,2],[-106,17],[-160,35],[90,133],[91,139]],[[78247,69937,0],[-131,57],[-25,11],[-79,32]],[[78012,70037,0],[38,22]],[[78050,70059,0],[350,236]],[[78400,70295,0],[348,115]],[[78748,70410,0],[112,74]],[[78860,70484,0],[58,64],[30,31]],[[78948,70579,0],[88,55],[39,-27]],[[79075,70607,0],[22,-22]],[[79097,70585,0],[28,-20],[88,199],[56,52],[30,32]],[[79299,70848,0],[127,240]],[[79426,71088,0],[71,5],[108,13]],[[79605,71106,0],[68,-22]],[[79673,71084,0],[108,-8]],[[79781,71076,0],[64,-19]],[[79845,71057,0],[86,-47]],[[79931,71010,0],[117,-83],[55,-30],[55,28]],[[80158,70925,0],[251,109]],[[80409,71034,0],[292,-79]],[[80701,70955,0],[191,-11],[71,242],[28,26],[84,74],[6,12],[-4,53],[14,18],[160,78],[103,112],[399,-231],[53,-89],[123,-66],[192,-9],[227,-38],[108,-48],[69,-67],[171,-321],[-101,-300],[104,-24],[155,-32],[33,-111],[24,-90],[13,-17],[145,-145],[24,-22]],[[76669,70573,0],[3,-23],[9,-86],[-4,-39],[33,-5],[213,-28]],[[76923,70392,0],[133,-95],[197,-36],[258,-59],[171,-44],[151,-38],[137,-65]],[[77970,70055,0],[42,-18]],[[78050,70059,0],[50,-30],[171,-69]],[[78271,69960,0],[-24,-23]],[[78728,68793,0],[-19,-83],[-11,-46]],[[78693,68476,0],[-3,-62],[-5,-75]],[[78690,68234,0],[12,3],[8,2]],[[78710,68239,0],[53,12],[76,17]],[[78869,68275,0],[83,31],[8,3]],[[79205,68361,0],[16,-38],[16,-38]],[[78947,65437,0],[-78,-3],[-105,16],[-49,6],[-47,5],[-58,26],[-67,27],[-71,26],[-87,40],[-15,11],[-25,17],[-103,59],[-31,19],[-104,58],[-86,73],[-83,64],[-40,22]],[[77898,65903,0],[-43,25],[-53,31]],[[77802,65959,0],[-31,17],[-46,26]],[[77725,66002,0],[-96,46],[-239,134]],[[77390,66182,0],[-25,-73],[-10,-30]],[[77355,66079,0],[-131,76],[-18,10],[-347,131],[-10,3],[-130,49],[-11,4],[-86,49],[-79,3],[-9,1],[2,-198],[8,-280],[-32,-3],[-126,-13],[-102,10],[-120,-7],[-91,3],[-162,3],[-48,3],[-81,50],[-200,368],[-201,197]],[[75381,66538,0],[0,1],[-16,45]],[[75365,66584,0],[-33,6],[-3,0],[-138,7],[-3,0]],[[75188,66597,0],[-18,0],[-187,3]],[[74983,66600,0],[-17,104]],[[74966,66704,0],[-26,230],[-49,419]],[[74891,67353,0],[-60,490],[1315,222],[-9,27],[-42,134],[-48,151]],[[76047,68377,0],[-3,8],[-59,127]],[[75985,68512,0],[-57,142]],[[75928,68654,0],[-42,75]],[[75886,68729,0],[-13,31],[-82,183],[-162,243],[-87,95]],[[75542,69281,0],[-63,58],[-35,31],[-40,36]],[[75404,69406,0],[-311,275],[-61,54]],[[75032,69735,0],[-16,14],[-37,32],[-57,32],[-64,66]],[[74858,69879,0],[-37,38],[-21,20]],[[74800,69937,0],[-61,61]],[[74739,69998,0],[-27,31],[-86,100]],[[74626,70129,0],[-102,89]],[[74524,70218,0],[-66,76],[-16,18]],[[74442,70312,0],[-19,22]],[[74741,70630,0],[74,32],[8,4],[15,6]],[[74838,70672,0],[-67,62],[-83,79]],[[74688,70813,0],[-66,62],[0,1]],[[74938,71080,0],[71,40],[27,15]],[[75389,71357,0],[77,71],[5,5]],[[75711,71350,0],[42,-32],[21,-16]],[[75774,71302,0],[7,-13],[29,-53]],[[75810,71236,0],[26,-23],[47,-42]],[[76130,70978,0],[39,-6],[32,-6]],[[76201,70966,0],[99,-75],[20,-16],[26,-20]],[[76492,70746,0],[66,-163],[15,-40]],[[73105,71379,0],[56,-60],[40,-44]],[[73201,71275,0],[12,-12],[171,-174]],[[73784,70788,0],[223,-147],[79,-51]],[[74423,70334,0],[-78,-78],[78,78]],[[74442,70312,0],[82,-94]],[[74626,70129,0],[113,-131]],[[74800,69937,0],[58,-58]],[[75032,69735,0],[372,-329]],[[75404,69406,0],[138,-125]],[[75886,68729,0],[7,-13],[35,-62]],[[75985,68512,0],[62,-135]],[[74891,67353,0],[75,-649]],[[74983,66600,0],[1,-12],[-2,0],[-166,-1],[-147,-1],[-32,0],[-138,0],[-5,0],[-132,12],[-139,14],[-142,12],[-167,16],[-3,0],[-146,15],[-267,-11]],[[73498,66644,0],[-274,-75]],[[73224,66569,0],[-486,-134],[-275,-85],[-5,-1],[-363,-126],[-377,-130]],[[71718,66093,0],[-26,-4]],[[71692,66089,0],[-474,-72],[-75,-11],[-102,-16],[-9,-1],[-195,-23]],[[70837,65966,0],[-119,17],[-57,7],[-64,28],[-41,22],[-59,35],[-251,153],[-269,144],[-511,366],[-26,6],[-168,47],[-102,18],[-360,34],[31,100],[-82,14],[-68,17],[132,48],[114,10],[12,3],[53,15],[106,20],[28,-1],[6,-1],[38,155],[1,4],[13,87],[-97,106],[65,117],[-2,20],[-4,39],[-27,23],[-18,29],[-106,131],[-54,35],[-7,72],[-13,4],[-143,31],[-144,19],[-44,-1],[-49,15],[16,93],[2,10],[-15,2],[-47,18],[-9,-16],[-46,5],[27,113],[34,87],[-11,23],[34,60],[27,140],[8,4],[38,24],[16,50],[6,47],[5,35],[12,0],[60,-14],[29,8],[22,66],[-6,132],[5,47],[90,22],[24,24]],[[68872,68934,0],[121,-46],[236,-98],[143,-75],[161,-61],[103,-49],[72,-11],[238,-75],[22,-5],[188,-38],[45,71],[151,139],[75,125],[32,34],[16,25],[17,29],[55,41],[29,57],[17,1],[37,-2],[103,65],[85,3],[62,-8],[50,-1],[43,8],[18,-10],[21,-6],[80,46],[45,31],[130,110],[172,147],[30,31],[85,91],[76,135],[26,1],[48,4],[16,4],[39,-4],[38,-4],[12,4],[66,69],[26,26],[50,31],[-22,102],[-35,59],[-31,78],[-27,42],[-83,191],[-21,46],[7,57],[-27,71],[-10,32],[-23,70],[8,26],[9,18],[-2,12],[-8,13],[-18,20],[-8,56],[16,6],[50,22],[88,-1],[40,-48],[37,-25],[36,1],[50,38],[28,40],[32,24],[16,61],[59,1],[16,1],[35,14],[10,30],[-16,39],[38,21],[4,30],[4,13],[8,0],[2,-16],[31,1],[77,68],[48,71],[79,98],[119,140],[40,57],[32,-29],[72,52],[34,47],[49,54],[100,139],[62,-48],[18,-26],[33,-21]],[[73007,71516,0],[49,-68],[49,-69]],[[70772,73121,0],[282,-133],[14,23],[58,97]],[[71126,73108,0],[2,13],[26,166]],[[71154,73287,0],[0,6],[17,146]],[[71481,73634,0],[56,6],[15,2]],[[71552,73642,0],[91,44],[54,33]],[[71697,73719,0],[48,37],[13,9]],[[71784,73833,0],[81,43],[49,10],[146,59],[201,57]],[[72500,74012,0],[-13,-22],[38,-37]],[[72525,73953,0],[54,-50],[50,-43]],[[72629,73860,0],[7,-10],[38,-43]],[[73590,73638,0],[-44,-68],[-14,-21]],[[73290,71987,0],[-11,-17],[-45,-64]],[[68872,68934,0],[184,189],[-32,7],[-53,11],[-63,31],[-89,59],[-147,52],[63,75],[-132,73],[44,59],[39,46],[36,51],[-119,68],[-19,12],[-16,10],[-80,-61],[-37,-39],[-50,-65],[-69,-89],[-44,-66],[-37,-54],[-45,-62],[-41,-88],[-151,80],[-198,80],[-6,-36],[-29,-80],[-18,-57],[-44,-89],[-34,-76],[-33,15],[-105,25],[-76,19],[-70,56],[-36,-53],[-34,18],[-48,0],[-39,1],[14,57],[19,201],[12,93],[-3,46],[-10,114],[-14,125],[-12,88],[-2,41],[11,42],[25,44],[45,61],[54,81],[12,38],[22,140],[23,148],[14,99],[3,60],[-10,178],[3,74],[20,88],[-3,77],[50,134],[28,106],[4,56],[-2,96],[81,248],[6,176],[2,201],[-8,149],[-12,74],[-9,75],[-26,92],[16,32],[3,92],[-44,139],[-11,33],[-28,44],[-9,31],[-13,68],[-14,48],[-48,90],[-32,76],[-13,52],[2,110],[-4,27],[-5,32],[-3,48],[-10,20],[1,34],[11,34],[-18,76],[-8,49],[0,71],[25,539],[71,63],[9,158],[3,78],[20,56],[84,92],[40,120],[0,38],[-16,43],[-11,62],[33,92],[-149,7],[-61,42],[-13,114],[-39,78],[-94,64],[-21,72],[15,20],[17,54],[4,84],[-3,78],[10,63],[3,22],[-21,70],[417,91],[53,26],[23,-45]],[[67753,75745,0],[58,-93],[25,-39],[8,-12],[41,-89]],[[68234,75004,0],[39,-50],[87,-102],[112,-126]],[[68472,74726,0],[48,-56],[227,-257]],[[68747,74413,0],[21,-26],[37,-26],[20,-13]],[[68825,74348,0],[63,-59],[56,-53],[34,-22],[14,-10],[120,-80],[97,-63],[53,-37],[113,-76],[129,-80]],[[69504,73868,0],[180,-99],[34,-29],[15,-12],[74,-62]],[[69807,73666,0],[29,-16],[211,-123]],[[70527,73246,0],[62,-32],[22,-11],[161,-82]],[[84803,64567,0],[100,43]],[[84903,64610,0],[100,43],[100,44],[100,43]],[[85203,64740,0],[58,24],[16,7],[26,12],[43,19],[20,9]],[[85366,64811,0],[37,15]],[[85403,64826,0],[99,43]],[[85502,64869,0],[15,7]],[[85517,64876,0],[86,36]],[[85603,64912,0],[51,22]],[[85654,64934,0],[49,22]],[[85703,64956,0],[97,48]],[[85800,65004,0],[94,53],[92,59],[86,63]],[[86072,65179,0],[35,28],[49,40],[15,14]],[[86171,65261,0],[-210,-262],[-9,-15]],[[85952,64984,0],[-38,-57]],[[85914,64927,0],[132,-87]],[[86046,64840,0],[67,-32],[124,-60],[-14,-15],[-23,-16]],[[86200,64717,0],[-27,-14]],[[86173,64703,0],[-27,-11]],[[86146,64692,0],[-28,-8]],[[86118,64684,0],[-22,-3]],[[86096,64681,0],[-29,-1]],[[86067,64680,0],[-13,0],[-39,0],[-31,0],[-13,2],[-31,-4]],[[85940,64678,0],[-23,-4]],[[85917,64674,0],[-31,-6]],[[85886,64668,0],[-29,-8],[-53,-18]],[[85804,64642,0],[-31,-14]],[[85773,64628,0],[-16,-11]],[[85757,64617,0],[337,-673],[56,40],[28,-3]],[[86178,63981,0],[59,-33]],[[86237,63948,0],[0,-1]],[[86237,63947,0],[10,-50],[7,-37]],[[86506,63784,0],[-23,-62],[-27,-76]],[[86456,63646,0],[-59,-169],[-23,-64]],[[86558,63328,0],[39,-8],[94,-18]],[[86809,63257,0],[10,-1],[41,-5]],[[86860,63251,0],[23,-12],[47,-24]],[[86054,63063,0],[39,-134],[27,-93]],[[86120,62836,0],[46,-155],[21,-53],[20,-51],[-116,-102],[-207,57],[-147,51],[-16,30],[-70,26],[-125,29],[-26,30],[-59,22],[-114,43],[-63,16],[-3,-72],[-66,2],[-168,-10],[-244,-21],[-89,-4],[-37,-17],[-95,-10],[-38,7],[-98,-14],[-71,-17],[-24,-6],[-50,-9],[-32,-5],[-29,-3],[-10,0],[-24,-2],[-18,-1],[-89,-4],[-60,-3],[-49,-1],[-48,-3],[-53,-4],[-58,-4],[-60,-3],[-87,-5],[-76,-5],[-108,-5],[-74,-4],[-72,-1],[-17,0],[-97,1],[-52,4],[-28,4],[-43,7],[-38,8],[-39,7],[-59,11],[-7,3],[-8,1],[-27,7],[-18,3],[-18,1],[-29,1]],[[82854,62613,0],[-20,0]],[[82834,62613,0],[-13,0],[-37,-2]],[[82784,62611,0],[-50,-6],[-31,-6],[-16,-6]],[[82687,62593,0],[44,-10],[-75,-252],[-296,167]],[[82360,62498,0],[-16,7],[5,100]],[[82349,62605,0],[0,17]],[[82349,62622,0],[-47,51],[-61,88],[-83,46]],[[82158,62807,0],[-93,114]],[[82065,62921,0],[37,166]],[[82102,63087,0],[26,118]],[[82128,63205,0],[22,184],[22,77],[51,245],[-78,9],[45,260],[16,50]],[[82206,64030,0],[0,29]],[[82206,64059,0],[25,133]],[[82231,64192,0],[89,-9]],[[82320,64183,0],[12,330]],[[82332,64513,0],[1,10],[17,240]],[[82350,64763,0],[-31,7]],[[82319,64770,0],[42,570]],[[82361,65340,0],[-4,302]],[[82357,65642,0],[0,10]],[[82357,65652,0],[-1,109]],[[82356,65761,0],[0,12],[-1,51]],[[83220,66147,0],[10,2],[12,-8]],[[83242,66141,0],[52,-28],[15,-11],[52,-36],[20,-15],[58,-53]],[[83439,65998,0],[21,-19],[10,-12]],[[83470,65967,0],[57,-69],[57,-91],[41,-95]],[[83625,65712,0],[10,-34],[6,-20]],[[83641,65658,0],[14,-46],[26,-101]],[[83681,65511,0],[21,-82],[5,-18]],[[83707,65411,0],[26,-98],[1,-3]],[[83734,65310,0],[9,-49],[9,-53]],[[83752,65208,0],[5,-105],[-8,-71],[-12,-64],[-2,-12],[-14,-56],[-39,-97],[-52,-91],[-66,-84],[-75,-75],[-58,-45]],[[83431,64508,0],[-30,-21],[-18,-14]],[[83383,64473,0],[-63,-45],[12,-5],[56,-22]],[[83388,64401,0],[48,-12],[101,-37]],[[83537,64352,0],[73,-15],[35,-8]],[[83645,64329,0],[51,-6],[15,-3],[43,-6]],[[83754,64314,0],[17,-1],[92,-6],[111,2],[109,9],[108,18],[106,26],[104,34],[69,28],[132,57],[101,43],[38,16],[62,27]],[[83542,61466,0],[3,38],[56,106],[-29,46],[25,46],[93,117],[103,37],[53,-70],[-32,-234],[162,-102],[134,-65],[-9,-30],[387,-83],[59,-99],[-84,-198],[-43,-135],[5,-80],[136,-180],[180,-26],[14,-19],[208,-28],[1,-15],[-12,0]],[[83384,61029,0],[38,173],[29,111],[91,153]],[[83238,60843,0],[81,4],[7,15],[28,50],[30,117]],[[83474,60615,0],[-42,4],[-13,1]],[[84178,60608,0],[-49,-13],[-14,-4]],[[84204,60623,0],[-14,-8],[-12,-7]],[[84304,60623,0],[-36,6],[-7,1]],[[84531,60553,0],[-34,7],[-163,29]],[[81050,65621,0],[139,-15]],[[81189,65606,0],[241,-24]],[[82355,65824,0],[1,-63]],[[82356,65761,0],[1,-119]],[[82350,64763,0],[-15,-226]],[[82335,64537,0],[-3,-24]],[[82231,64192,0],[-25,-132],[0,-30]],[[82128,63205,0],[-63,-284]],[[82158,62807,0],[159,-87],[2,-34],[32,-21],[-2,-60]],[[82360,62498,0],[-3,-35],[52,-28],[128,-75],[80,-99],[76,-94],[51,-115],[137,-112],[265,-189],[40,-37],[99,-58],[69,-51],[31,-29],[44,-39],[16,-10],[97,-61]],[[83087,60886,0],[-77,244]],[[81041,60851,0],[-104,-8]],[[80768,61227,0],[18,108]],[[80469,61785,0],[34,-766]],[[79708,61069,0],[23,-84]],[[79709,60710,0],[-230,-80]],[[79479,60630,0],[-168,-69]],[[79311,60561,0],[-153,78]],[[79158,60639,0],[-158,28]],[[79000,60667,0],[-95,124]],[[78887,60872,0],[-69,39]],[[78818,60911,0],[-113,15]],[[78508,60972,0],[27,204]],[[78025,61630,0],[59,102]],[[78084,61732,0],[-70,235]],[[77622,62144,0],[-294,-47],[-50,189],[-5,21],[-27,112]],[[77246,62419,0],[-37,119],[-38,123],[-9,27],[-46,150],[-26,85],[-15,43],[-10,26],[-42,138],[-38,126],[-38,126],[-5,21],[-68,202],[-6,26],[-49,181],[-3,21],[-21,87],[-13,115],[-11,137],[-6,19],[-14,131],[-6,30],[-6,137],[-2,105],[-10,125],[-13,329],[7,30],[-5,44],[44,90],[81,97],[87,89],[81,93],[100,104],[16,20],[84,101],[85,195],[61,168]],[[77355,66079,0],[35,103]],[[77725,66002,0],[77,-43]],[[77802,65959,0],[96,-56]],[[74983,66600,0],[205,-3]],[[75365,66584,0],[16,-46]],[[77246,62419,0],[36,-149],[49,-187]],[[77394,61738,0],[45,-282]],[[77439,61456,0],[31,-289]],[[77025,61197,0],[0,9],[1,-65]],[[76949,60828,0],[-119,3]],[[76619,60835,0],[-108,-7]],[[76511,60828,0],[-158,-12]],[[76353,60816,0],[-115,-10]],[[76101,60794,0],[-267,-9]],[[75772,60831,0],[-55,-2]],[[75605,60825,0],[-47,3]],[[74981,61010,0],[-17,36]],[[74578,61996,0],[14,53],[-2,4],[-22,-14]],[[74568,62039,0],[-30,-3],[-103,-15]],[[74288,61984,0],[-23,0],[-50,0]],[[74174,61984,0],[-194,-30],[-17,-4]],[[73528,61814,0],[-31,-11],[-102,-42]],[[72926,61686,0],[-70,16]],[[72856,61702,0],[-70,12]],[[72786,61714,0],[-198,-73],[-114,-34],[-11,-54],[-54,11],[-105,-27],[-45,1],[-55,0],[-56,-19],[-55,-34],[-46,-29],[-5,-2],[-73,-4],[-61,18],[-37,9],[-139,-37],[-48,-32],[-142,-7],[-185,28],[-117,-8],[-75,-5],[-57,-4],[-55,-7],[-56,-6],[-122,24]],[[70875,61423,0],[-35,27]],[[70840,61450,0],[-40,22]],[[70800,61472,0],[-11,7]],[[70789,61479,0],[-20,12],[49,91],[38,95],[12,28],[3,123],[-16,42],[-10,24],[-69,93],[-58,65],[-48,51],[-41,52],[-32,52],[-32,50],[-26,51],[-22,45],[-28,110],[-29,81],[5,156],[22,53],[3,26],[10,25],[18,53],[33,89],[30,70],[13,38],[26,97],[10,53],[10,52],[12,53],[13,52],[16,51],[15,51],[4,17],[-6,35],[-37,182],[-69,268],[-40,152],[-49,140],[-11,52],[-33,314],[-6,60],[17,19],[108,115],[12,32],[26,2],[51,7],[47,5],[27,9],[30,27],[29,34],[41,52],[14,32],[-3,33],[-3,19],[1,18],[9,25],[9,27],[27,23],[11,148],[1,16],[-14,120],[26,110],[32,67],[-133,6],[12,261],[11,76]],[[71692,66089,0],[21,3],[5,1]],[[73224,66569,0],[272,74],[2,1]],[[73111,60978,0],[60,-193],[1,-3]],[[72250,59208,0],[-9,-11],[-15,-16]],[[71958,58997,0],[-43,-43]],[[71915,58954,0],[-7,-6],[-27,-27]],[[71773,58875,0],[-15,0],[-55,4]],[[71631,58873,0],[-36,14],[-8,4]],[[71479,58899,0],[-26,-13]],[[71453,58886,0],[-9,-5],[-30,-16]],[[71239,58880,0],[-10,-12],[-9,-11]],[[70964,58873,0],[-24,19]],[[70940,58892,0],[-41,33],[-19,-8],[-2,-2],[-20,-33]],[[70536,58557,0],[-23,12]],[[70513,58569,0],[-43,22]],[[70470,58591,0],[-28,15]],[[70442,58606,0],[-30,15]],[[69582,58768,0],[4,-18],[35,-163]],[[69097,57404,0],[-79,20],[-107,-208],[-90,28],[-13,7],[-45,20],[-32,15],[32,164],[-37,150],[-26,62],[-76,75],[-186,-1],[-89,-293],[-113,-144],[-6,-112],[-262,-242],[-210,213],[-180,64],[-110,118],[-176,-161],[-13,11],[-777,701]],[[66502,57891,0],[-47,50],[-34,28],[91,35],[110,43],[223,128],[17,99],[81,145],[-207,-44],[-8,-1],[-85,108],[-43,55],[24,23],[83,84]],[[66707,58644,0],[62,58],[12,33],[116,311]],[[66897,59046,0],[588,178],[175,61],[57,13],[13,2],[21,4],[12,3],[46,10],[-51,114]],[[67758,59431,0],[33,24],[607,212],[75,39],[128,48],[28,11],[485,191],[103,-2],[130,57],[5,6],[105,129],[194,67],[48,7],[8,1],[150,21],[5,2],[263,58],[135,65],[131,113],[84,135],[45,179],[51,289],[65,160],[79,142],[74,94]],[[70800,61472,0],[36,-20],[4,-2]],[[70840,61450,0],[26,-20],[9,-7]],[[72786,61714,0],[62,-10],[8,-2]],[[72856,61702,0],[7,-1]],[[66897,59046,0],[60,417],[-385,-64],[-28,76],[-72,151],[-172,343],[-133,97],[-339,-19]],[[65828,60047,0],[-221,26]],[[65607,60073,0],[-544,106]],[[65063,60179,0],[-169,-52],[-138,-5],[-250,-27],[-126,-4]],[[64380,60091,0],[-198,-5],[32,44]],[[64214,60130,0],[32,43],[-143,105],[-19,123],[-16,103],[-1,217],[-8,54],[-23,37],[-15,23],[0,134],[-16,3],[-34,8]],[[63971,60980,0],[-54,11],[-26,5],[-11,1],[-40,8]],[[63840,61005,0],[-188,33]],[[63652,61038,0],[-83,11],[8,27],[5,18],[17,56],[-116,104],[-12,-2],[-63,-8],[-132,-26],[-33,69],[14,6]],[[63257,61293,0],[320,150]],[[63577,61443,0],[239,111],[29,44],[2,3]],[[63847,61601,0],[30,41]],[[63877,61642,0],[16,24],[20,28],[42,58],[-83,70],[-44,18],[-53,10],[-117,-9],[-53,17],[-89,80],[-427,-48],[-194,-25]],[[62895,61865,0],[-14,-1],[-103,-18],[-43,36],[-10,12]],[[62725,61894,0],[-47,52],[-29,53],[-46,61],[-32,11],[-26,-4],[-80,61],[-81,49],[-112,111],[-19,3],[-20,-7],[-182,25],[-97,-24]],[[61954,62285,0],[-10,-3],[-35,-6],[-60,-15],[-129,-25],[-12,-1]],[[61708,62235,0],[-71,-6],[-76,13],[-56,28],[-113,35],[-92,15],[40,166],[-38,11],[-185,8],[-52,7],[-95,12],[-127,-9],[-62,-18],[-181,24],[-87,4],[-13,-26],[-25,0],[-173,23]],[[60302,62522,0],[69,276],[102,234],[24,90],[68,86],[49,134],[17,117],[3,10],[7,21],[10,82],[54,160],[179,-84],[15,-5],[94,-32],[149,-43],[81,-7],[129,11],[19,8],[108,42],[90,7],[53,27],[86,27],[80,1],[68,12],[20,7],[98,30],[113,69],[75,47],[16,11],[48,29],[22,32],[39,37],[69,79],[70,130],[5,78],[17,-1],[42,0],[10,-27]],[[62500,64217,0],[23,-68],[37,-51],[29,-28],[277,-146],[113,-31],[126,-26],[80,-23],[84,-47],[320,-155],[282,-161],[105,-38],[244,-109],[294,-186],[201,-72],[537,-43],[254,34],[88,37],[56,3],[80,6],[70,2],[67,-4],[182,16],[55,3],[68,-17],[113,-40],[44,-52],[-15,-27],[23,-42],[129,-51],[82,-51],[1,-22],[5,-88],[2,-20],[14,-92],[-21,-143],[-8,-11],[-86,-87],[-13,-13],[-51,-108],[-7,-19],[-5,-45],[1,-46],[7,-40],[24,-134],[25,-226],[35,0],[45,-85],[10,-18],[8,-22],[26,-75],[42,-80],[6,-11],[103,-77],[149,-66],[58,45],[23,17],[7,5],[20,16],[29,19],[29,19],[78,53],[54,36],[47,17],[60,-7],[18,-1],[8,-1],[18,-7],[28,-10],[50,-13],[31,-8],[141,-59],[149,-100],[26,-36],[49,-68],[95,-242],[35,-232],[-9,-66],[-3,-22],[-6,-41],[-54,-140],[-18,-24],[-13,-19],[-13,-19],[-79,-68],[-93,-123],[-11,-14],[-14,-19],[-70,-107],[-4,-64],[56,-210],[37,-68],[70,-160],[49,-119],[16,-40],[4,-11]],[[60302,62522,0],[-243,-12]],[[60059,62510,0],[2,29]],[[60061,62539,0],[-52,18]],[[60009,62557,0],[-71,37]],[[59938,62594,0],[-42,28],[-15,10],[-104,97]],[[59777,62729,0],[-83,130]],[[59694,62859,0],[-70,-6],[-55,-5],[-22,-2],[-75,-8],[-49,-5],[-5,13],[-9,46],[-56,262],[57,23],[71,29],[8,4],[130,27]],[[59619,63237,0],[-7,23]],[[59612,63260,0],[29,36]],[[59641,63296,0],[61,52],[23,-14],[15,-1],[47,19],[404,359],[-199,147],[36,35],[18,65],[29,31],[21,29],[150,-51],[96,-52],[17,-6],[25,-3],[103,-55],[106,-40],[105,-37],[35,96],[-5,55],[-15,64],[29,134],[98,135],[-81,93],[-107,19],[-75,87],[-108,-6],[-112,17],[28,105],[-142,2],[-11,38],[-90,55],[-130,-28],[-49,0],[-25,-94],[-250,11],[-48,5],[-50,9],[-50,17],[-69,21],[-40,30],[10,257],[-54,72],[-81,0],[-84,116],[-50,41],[-67,33],[-12,9],[0,4],[5,19],[-55,55],[-16,22],[-27,53],[-71,99],[-9,58],[-68,124],[-8,18],[-38,62],[-36,52],[-42,93],[-51,103],[-13,28],[9,52],[0,82],[21,63],[29,41],[-33,6],[-21,3],[-179,-13],[-97,19],[-82,4],[-113,31],[-36,-2],[-100,34],[-142,45],[-115,26],[43,137],[-20,28],[-163,106],[1,58],[-44,13],[-26,20],[-24,12],[-24,51],[-26,11],[-39,76],[-51,37],[-30,21],[-43,29],[-71,-10],[-235,-117],[-39,125],[-27,50],[0,17],[-20,101],[-39,-8],[-14,-3],[-16,9],[-15,3],[-26,22],[-19,9],[-13,4],[-23,-2],[-28,3],[-58,70],[-60,29],[-30,44],[-25,-3],[-16,38],[-49,118],[-25,36],[-2,29],[297,203],[-12,3],[20,43],[19,9],[9,61],[15,67],[-9,75],[-2,8],[-43,117],[-78,-10],[-31,-20],[-32,-11],[-38,-6],[-57,-8],[-71,-6],[-38,-13],[-78,8],[-180,18],[-34,4],[7,60],[25,92],[-1,31],[-4,200],[2,68],[93,90],[180,127],[51,41],[72,-9],[6,0],[51,-48],[64,-25],[77,-9],[105,14],[32,-18],[61,0],[50,31],[86,11],[87,-17],[58,28],[85,21],[103,10],[53,-31],[413,-201],[87,-15],[40,-40],[200,-118],[-42,-52],[106,-65],[207,-125],[151,-104],[-17,-28],[301,-225],[8,-6],[59,-37],[58,-27],[43,-23],[186,-32],[77,-21],[45,-20],[198,-46],[153,-34],[96,-10],[111,-5],[23,-17],[75,-66],[38,-27],[26,-18],[84,-18],[2,0],[153,-56],[5,-2],[150,-77],[10,-96],[99,-17],[173,0],[263,7],[78,-3],[56,-16],[305,-108],[171,-79],[99,-66],[167,-111],[179,-149],[14,-15],[64,-120],[112,-203],[59,-89],[40,-43],[48,-41],[29,-21],[94,21],[23,10],[109,119],[94,106],[275,32],[-96,-111],[-45,-98],[-30,-163],[-20,-178],[-15,-46],[-4,-48],[-2,-77],[-43,-174],[-19,-67],[-33,-92],[-22,-43],[-7,-42],[-28,-48],[2,-31],[-187,-392],[-36,-41],[-11,-64],[-8,-92],[0,-126],[-3,-85],[1,-88]],[[80454,71021,0],[134,-36]],[[80588,70985,0],[9,-2],[32,-9]],[[80629,70974,0],[72,-19]],[[80701,70955,0],[28,-1],[75,-4]],[[80804,70950,0],[5,-58]],[[80809,70892,0],[3,-187],[-94,2],[2,-160]],[[80720,70547,0],[101,1],[102,1]],[[80923,70549,0],[-1,-82],[154,75],[16,0],[72,-46],[99,-45],[0,-48],[57,-32],[117,-56]],[[81437,70315,0],[79,-29],[38,-13]],[[81554,70273,0],[28,-9],[211,-65]],[[81793,70199,0],[17,-97]],[[81810,70102,0],[-151,-85],[-86,-32],[-29,-110],[-31,-115],[5,-5],[99,-79],[64,-52],[21,-16],[15,-12],[20,-17]],[[81737,69579,0],[78,-38],[38,-18]],[[81853,69523,0],[62,-58],[2,-1],[22,-21]],[[81939,69443,0],[29,-41],[35,-48],[22,-45]],[[82025,69309,0],[20,-60],[6,-16],[2,-6]],[[82053,69227,0],[52,-12],[80,-17]],[[82185,69198,0],[-19,-250],[-78,0]],[[82088,68948,0],[-199,-2],[-31,22],[-40,27]],[[81818,68995,0],[-126,7]],[[81692,69002,0],[-169,8]],[[81523,69010,0],[-102,14],[-217,1],[-3,-44],[-7,-35],[-3,-18],[-18,-51],[-29,-57],[-9,-12]],[[81135,68808,0],[-27,-34],[-23,-27]],[[81085,68747,0],[-23,-22],[-47,-31],[-36,-23],[-60,-33],[-33,-9],[-21,-5],[-49,-8],[-24,-2],[-15,0],[-21,-3],[-13,-8]],[[80743,68603,0],[8,110],[0,102],[14,2]],[[80765,68817,0],[-2,21],[-1,75]],[[80762,68913,0],[-6,120],[-13,50],[-6,90],[-1,28]],[[80736,69201,0],[-5,20],[-5,26]],[[80726,69247,0],[-18,66],[-9,22],[-35,87],[-47,92],[-226,445],[-12,46],[-17,88],[-16,9],[-11,206],[-11,115]],[[80324,70423,0],[3,21],[22,118]],[[80349,70562,0],[18,88],[11,39],[5,18],[21,94]],[[80404,70801,0],[15,74],[9,49],[2,14],[11,61],[1,6],[10,-1]],[[80452,71004,0],[2,17]],[[82088,68948,0],[0,-1],[77,1],[-6,-82],[-82,-382],[-15,-53],[-142,-182]],[[81920,68249,0],[-55,-9],[-199,-32],[-23,-28],[-4,-10],[3,-7],[-18,-39],[216,-230],[-35,-43],[-39,-47],[303,-146],[301,-276],[47,-42],[166,-149],[19,-23],[-71,-233]],[[82531,66935,0],[-2,-9]],[[82529,66926,0],[-81,-266],[-38,-125],[-4,-15],[-7,-24],[-8,-29],[-3,-10],[-8,-25],[-10,-34]],[[82370,66398,0],[-87,84],[-10,-19],[-16,-11],[-23,-3],[-26,11],[-107,81],[-79,93],[-81,127]],[[81941,66761,0],[-51,96],[-50,95]],[[81840,66952,0],[-13,24],[-3,10],[-10,16]],[[81814,67002,0],[-18,31],[-55,95],[-22,30]],[[81719,67158,0],[-13,19],[-119,167]],[[81587,67344,0],[-27,34],[-41,52],[-17,21],[-120,123],[-25,28]],[[81357,67602,0],[-164,165]],[[81193,67767,0],[-254,262],[-11,11]],[[80928,68040,0],[0,6],[-61,76],[-28,47],[-16,29],[-28,61],[-6,12],[-8,0],[-21,76],[-15,78],[-4,53],[0,105],[2,20]],[[81085,68747,0],[50,61]],[[81523,69010,0],[18,0],[151,-8]],[[81692,69002,0],[96,-6],[7,0],[23,-1]],[[87511,61736,0],[-4,-55]],[[87507,61681,0],[-1,-22],[-3,-21]],[[87503,61638,0],[-7,-104],[-8,-100],[49,-7],[-6,-93]],[[87531,61334,0],[203,-29],[229,-32],[75,-10],[169,-24]],[[88207,61239,0],[32,-13],[17,-22]],[[88256,61204,0],[14,-80],[5,-29]],[[88275,61095,0],[15,-87],[4,-18]],[[88294,60990,0],[-191,-28],[-28,-4]],[[88075,60958,0],[-516,-74]],[[87559,60884,0],[-206,-28]],[[87353,60856,0],[-71,-6]],[[87282,60850,0],[-158,-19],[-76,-12],[-10,-16],[-51,-5],[-12,-11],[-180,-21],[-21,-8],[-8,14],[-9,6],[-30,4],[-31,-3],[-119,-15],[-168,-25],[-101,-20],[-64,-16],[-74,-19],[-51,-14],[-89,-45]],[[86030,60625,0],[-26,-7],[-74,-22]],[[85930,60596,0],[-169,-47],[32,-11],[16,-35],[7,-17],[12,-30],[29,-56],[43,-61],[-18,-4],[-149,-35],[-73,-11],[-21,-7]],[[85639,60282,0],[-47,-4]],[[85592,60278,0],[-7,-1],[-76,-13]],[[85509,60264,0],[-84,-9]],[[85425,60255,0],[-9,0],[-80,-2]],[[85336,60253,0],[-83,-3]],[[85253,60250,0],[-16,0],[-108,-1]],[[85129,60249,0],[5,84],[12,-1]],[[85146,60332,0],[3,26],[2,17]],[[85151,60375,0],[5,40]],[[85156,60415,0],[2,17],[2,14]],[[85160,60446,0],[6,40],[-37,10],[23,118],[21,35]],[[85173,60649,0],[10,20],[45,93]],[[85228,60762,0],[-44,142],[17,7],[14,6],[19,11],[18,10],[19,14],[16,13],[17,15],[18,17],[15,18],[10,14],[11,17],[13,22],[11,19],[9,21],[6,17],[5,22],[0,26],[-2,60],[-8,98],[-26,117]],[[85366,61448,0],[-15,56],[-15,57]],[[85336,61561,0],[-41,100],[-23,39],[-5,4],[-65,58]],[[85202,61762,0],[-23,18],[-23,17]],[[85156,61797,0],[-83,29],[-28,8]],[[85045,61834,0],[12,126],[15,152]],[[85072,62112,0],[-2,100],[11,120],[100,-19],[44,-8]],[[85225,62305,0],[23,74],[33,108]],[[85281,62487,0],[-40,11],[-35,20],[-26,22],[-1,3],[-14,24],[-12,18],[-16,31],[-22,32],[-22,29],[-16,9],[-28,14],[-49,90]],[[85000,62790,0],[142,17],[229,22],[136,10],[72,6],[254,3],[293,-33]],[[86126,62815,0],[136,-35],[66,-16]],[[86605,62646,0],[78,-70],[20,-21]],[[85281,62487,0],[-56,-182]],[[85072,62112,0],[-27,-278]],[[85156,61797,0],[46,-35]],[[85336,61561,0],[30,-113]],[[85228,60762,0],[-55,-113]],[[85160,60446,0],[-4,-31]],[[85151,60375,0],[-5,-43]],[[85129,60249,0],[-54,5],[-90,15]],[[84985,60269,0],[-21,7],[-7,3],[-103,46]],[[84854,60325,0],[-82,34]],[[84772,60359,0],[-78,47],[-70,42]],[[84624,60448,0],[-74,46],[-44,25]],[[84506,60519,0],[-105,61],[-72,42],[-75,44],[-70,41],[-74,46],[-25,32],[5,43],[31,75],[20,86],[-46,7],[-76,9],[-9,1],[-40,7],[-33,-1],[-50,-5],[-161,-18],[-30,-2],[-23,-4],[-22,-12],[-16,-11],[-23,-29]],[[83612,60931,0],[12,77],[2,102],[-4,87],[-23,150],[-9,83]],[[83590,61430,0],[-26,120],[-1,9]],[[83563,61559,0],[-5,15],[-23,69],[-21,57],[-29,63],[-9,19],[-25,50]],[[83451,61832,0],[-32,40],[-28,35]],[[83391,61907,0],[-48,55],[-35,41],[-14,12],[-36,37],[-37,36],[-39,33],[-15,9],[-74,52],[-83,48],[-126,68]],[[82884,62298,0],[-202,119],[-11,6]],[[82671,62423,0],[-54,33],[-109,70]],[[82508,62526,0],[12,-3],[17,-3],[9,0],[12,2],[14,5],[38,29],[16,8],[27,16],[5,2],[29,11]],[[82784,62611,0],[50,2]],[[82854,62613,0],[4,0],[916,-6],[437,66],[494,73],[71,12],[57,11],[74,10],[93,11]],[[81035,88049,0],[0,-127],[-13,-458],[77,-328],[113,-542],[59,-68],[24,-39],[1,-36],[26,-96],[-25,-66],[-137,-151],[20,-13],[9,-50],[63,-71],[245,-100],[-76,-229],[-126,20],[101,-292],[21,-74],[-73,-58],[140,-191],[185,-171],[-149,-122],[-44,-57],[-145,-145],[37,-153],[-23,-430],[-26,-19],[-72,-79],[-119,8],[-24,-33],[3,-17],[-11,-36],[-16,-10],[-46,-70],[-68,-117],[-89,-164],[-47,-79],[-226,57],[3,43],[-193,35],[-26,4],[-23,-46],[-168,92],[-6,3],[-123,56],[-16,-16],[-19,-20],[-23,-34],[-17,0],[-35,-17],[-49,-74],[-38,-63],[-125,56],[-74,102],[-136,-86],[-109,-134],[-15,-12],[-202,161],[-62,5],[-51,13],[-28,2],[-37,0],[-62,21],[-52,35],[-45,43],[-34,13],[-7,-9],[-352,-478],[-131,112],[-39,-50],[-108,156],[-3,10],[-25,62],[-29,72],[-251,185],[-2,1],[-152,90],[-35,-83],[-51,15],[-331,198],[29,132],[16,26],[-70,29],[-97,21],[44,248],[1,17],[26,105],[5,21],[-24,3],[-44,5],[-128,4],[-33,3],[-90,116],[-7,23],[-240,42],[-5,-23],[-19,-74],[-6,-29],[-19,-55],[0,-2],[-43,-89],[-2,-6],[-24,-97],[-3,-16],[82,-25],[-35,-119],[2,-20],[6,-43],[-7,-80]],[[74787,78211,0],[-3,36],[-1,19]],[[74876,78416,0],[22,62],[3,7]],[[74938,78525,0],[-7,10],[-13,22]],[[74918,78557,0],[37,51]],[[74955,78608,0],[28,40],[47,65]],[[75115,79121,0],[118,-6],[44,-2]],[[75818,79207,0],[-152,235]],[[75666,79442,0],[-11,19],[-68,96],[-13,16],[-51,90],[-11,19]],[[75512,79682,0],[-3,4],[-118,156]],[[75391,79842,0],[-7,12],[-7,12],[-106,177]],[[75271,80043,0],[51,-15],[51,-72],[147,-217],[133,-168],[245,-339],[1,0]],[[76013,79251,0],[-24,35],[-94,134]],[[75791,79579,0],[-70,133],[-15,30],[-63,139],[-47,144],[-8,30],[-36,117],[174,41],[168,40],[170,40],[72,18]],[[76136,80311,0],[124,-4],[95,-4]],[[76473,80328,0],[-15,158],[-2,16]],[[76373,80570,0],[-5,28],[43,43]],[[76557,80742,0],[44,45],[24,23]],[[76881,80811,0],[198,23]],[[77147,80848,0],[7,71]],[[77135,81094,0],[-15,54],[-3,11]],[[77117,81159,0],[43,30],[60,4],[306,14],[22,1],[18,-145],[8,-122],[25,-46],[31,-15],[20,-48],[36,-76],[19,-42],[31,-70],[33,-69],[41,-88],[22,-40],[26,-45],[45,-88],[27,-48],[41,-83],[51,-70],[18,-26],[35,-76],[38,-81],[23,-47],[38,-80],[23,-31],[-45,22],[-160,-74],[-22,75],[-97,-53],[-3,8],[-153,-62],[-137,-51],[-28,62],[-12,52],[-105,-33],[-14,-35],[-39,15],[-164,-26],[28,-117],[1,-34],[-29,0],[3,-39],[13,-55],[-121,-41],[15,-50],[-27,12],[-192,-27],[-33,-5],[-140,-25],[13,-68],[14,-84],[37,-66],[24,-57],[46,-91],[25,-59],[19,-30],[38,7],[12,42],[11,35],[10,20],[30,42],[36,60],[9,15],[21,8],[152,2],[132,3],[-48,-128],[-11,-38],[-55,-177],[-65,-52],[-116,-86],[-99,-72],[-31,-26],[-17,-14],[-127,-92],[-129,-99],[-97,-95],[73,-115],[-135,-21],[-90,72],[-140,-1],[-118,-44],[-91,4],[-402,-24],[-10,0],[-173,-8],[-152,13],[-49,6],[-11,4],[-11,-2],[-498,49],[24,87]],[[83488,71870,0],[-85,-121],[-112,-99],[-32,-19],[-92,-57],[-129,-51],[-109,-30],[-59,-13],[-115,-13],[-122,5],[-324,32],[58,-13],[31,-24]],[[82398,71467,0],[46,-54]],[[82444,71413,0],[4,3]],[[82448,71416,0],[288,-323]],[[82736,71093,0],[-76,-24]],[[82660,71069,0],[-714,-153],[10,-226],[39,-463],[-13,-33],[-172,-92]],[[81793,70199,0],[-239,74]],[[81554,70273,0],[-117,42]],[[80923,70549,0],[-203,-2]],[[80809,70892,0],[-7,89]],[[80802,70981,0],[-52,15],[2,139],[-8,0],[6,200],[-4,34]],[[80746,71369,0],[2,195]],[[80748,71564,0],[83,13]],[[80831,71577,0],[5,75]],[[80836,71652,0],[4,52]],[[80840,71704,0],[1,21],[1,80]],[[80842,71805,0],[-13,0],[-1,10],[13,-1],[0,38],[-37,14],[-5,86]],[[80799,71952,0],[385,-7],[85,0],[138,-3],[416,-53],[59,-9],[385,-48],[0,-11],[36,0],[146,-19],[58,27],[5,5],[303,154],[43,21],[24,10],[129,66],[185,91],[0,235],[0,209]],[[83196,72620,0],[288,2],[142,-1]],[[83626,72621,0],[-2,-52],[0,-329],[-24,-73],[-24,-99],[-34,-96]],[[83542,71972,0],[-18,-36],[-36,-66]],[[84217,73385,0],[3,-17],[0,-37],[0,-19],[21,1],[0,-23],[-65,1],[0,-75],[0,-77],[0,-15],[0,-23],[-2,-16],[3,-9],[19,-145]],[[84196,72931,0],[146,-31],[126,-58],[91,-60],[53,-52],[59,-60]],[[84671,72670,0],[122,-141],[67,-75]],[[84860,72454,0],[-16,-5]],[[84844,72449,0],[-39,-4],[-102,0]],[[84703,72445,0],[-10,26],[-208,-2],[-2,-116]],[[84483,72353,0],[0,-11],[0,-5],[-4,-177]],[[84479,72160,0],[231,-4]],[[84710,72156,0],[63,-46],[1,-36]],[[84822,72039,0],[94,0],[37,-39],[-1,-82]],[[84991,71876,0],[86,3],[40,-37],[3,-134],[42,-51]],[[85162,71657,0],[55,4],[113,10]],[[85330,71671,0],[36,0],[-4,-102],[1,-9],[1,-40]],[[85364,71520,0],[-10,-66],[-50,1],[-170,34],[-50,-56],[53,-46],[21,-110],[117,21],[51,4]],[[85326,71302,0],[-37,-95]],[[85289,71207,0],[-89,-16],[-90,-20],[69,-176],[34,17],[-19,-48],[-23,-60],[-127,-322]],[[85044,70582,0],[-553,9]],[[84491,70591,0],[-7,17],[-17,42],[-141,-9],[-139,1],[-15,0],[-37,81],[219,80],[42,26],[-33,84],[-87,-47]],[[84276,70866,0],[-329,-113],[-119,-40]],[[83828,70713,0],[-74,188],[0,123],[-135,0],[-10,-11],[-308,-64],[-47,-8],[-6,30],[-74,-12],[-60,-9],[-188,29],[-47,17],[-106,65]],[[82773,71061,0],[-37,32]],[[82448,71416,0],[-1,-1],[-3,-2]],[[82444,71413,0],[-38,44],[-8,10]],[[83488,71870,0],[31,56],[23,46]],[[83626,72621,0],[0,155],[-12,-2],[-1,119],[0,42],[0,154],[0,38],[2,77],[1,94],[9,71]],[[83625,73369,0],[530,-1],[1,18],[13,-2],[48,1]],[[86666,73296,0],[30,-75]],[[86696,73221,0],[21,-63],[0,-10]],[[86717,73148,0],[132,-15],[68,-8]],[[86917,73125,0],[-3,9],[8,-2],[9,-72],[-2,-39],[34,16]],[[86963,73037,0],[46,14]],[[87009,73051,0],[40,3],[38,0],[40,-6],[12,2],[13,9],[6,10],[1,17],[78,-19],[4,-75],[28,-22],[96,0],[-1,33],[-13,255],[-11,111]],[[87340,73369,0],[158,-318]],[[87498,73051,0],[22,-44],[48,-100]],[[87481,72573,0],[-87,-121],[-26,-35]],[[87309,72078,0],[-76,-84],[-7,-8],[-76,-85]],[[87092,71831,0],[-35,-41],[-32,-42]],[[87025,71748,0],[-22,-23]],[[87003,71725,0],[-9,-13],[-10,-13]],[[86984,71699,0],[-100,-129],[-4,-5]],[[86306,71584,0],[-464,-135]],[[85842,71449,0],[2,51]],[[85844,71500,0],[-442,-1],[-38,21]],[[85330,71671,0],[-168,-14]],[[84710,72156,0],[-64,1],[-167,3]],[[84479,72160,0],[4,193]],[[84703,72445,0],[104,0],[37,4]],[[84860,72454,0],[-19,21],[-50,55],[-120,140]],[[84217,73385,0],[2,1],[44,33],[0,136],[55,20],[71,-69],[72,-1],[6,-8],[50,0],[14,11],[1,6],[58,-2],[17,0],[60,1],[13,-15],[67,-1],[10,-7],[66,-1],[15,12],[47,0],[0,-33],[134,0],[0,17],[40,-1],[10,0],[99,0],[69,0],[1,128],[3,29],[10,1],[0,-30],[108,-4],[-54,-115],[15,-5],[66,140],[26,57],[33,64],[101,203],[30,0],[11,14],[59,42],[8,-10],[11,8],[42,-51],[11,7],[43,-55],[33,0],[21,-1],[116,90],[-1,31],[9,6],[29,25],[19,13],[28,24],[16,13]],[[86031,74108,0],[64,-80],[47,-51],[24,-1],[70,-86],[-14,-10],[58,-72],[38,-44],[37,-42],[63,-55],[42,-48],[28,-43],[31,-50],[56,-70],[16,-22],[31,-48],[44,-90]],[[83625,73369,0],[2,2],[0,87],[-12,2],[-2,83],[2,22],[0,49],[5,0],[-2,39],[0,29],[-4,0],[1,49],[1,38],[-1,48],[0,25]],[[83615,73842,0],[3,133]],[[83618,73975,0],[-2,67],[1,345],[0,71],[5,415],[4,168],[0,29],[1,256],[0,21]],[[83627,75347,0],[432,173]],[[84059,75520,0],[51,14],[85,19],[92,9],[31,-1],[59,1],[95,-6],[92,-16],[81,-23],[48,-14],[99,-40],[108,-61],[80,-59],[28,-26],[39,-36],[66,-74],[163,-194],[45,-54],[32,-38],[209,-250],[32,-41],[437,-522]],[[83618,73975,0],[-2,-46],[-1,-87]],[[83196,72620,0],[-1,88],[-1,24],[0,185],[0,34],[0,429],[0,20],[-1,355],[-1,25],[0,28],[0,13],[-1,123],[-28,3],[-27,4],[-314,359],[-60,69],[-318,-9],[-304,-32],[123,69],[144,37],[67,50],[19,78],[38,-8],[275,-43],[0,-12],[24,2],[5,-3],[38,-6],[16,-3],[64,169]],[[83070,74972,0],[55,159]],[[83125,75131,0],[365,153],[137,63]],[[85997,75664,0],[-7,-33]],[[86916,74314,0],[144,-95]],[[87092,74195,0],[-42,-133]],[[87009,73051,0],[-16,-4],[-30,-10]],[[86917,73125,0],[-200,23]],[[86696,73221,0],[-20,51],[-7,19],[-3,5]],[[84059,75520,0],[130,77],[188,99],[236,29],[399,-1],[133,-7],[225,-14],[101,-6],[315,5],[138,3],[83,-3],[-10,-38]],[[80842,71805,0],[-2,-101]],[[80840,71704,0],[-1,-16],[-3,-36]],[[80836,71652,0],[-1,-23],[-4,-52]],[[80748,71564,0],[-141,-25]],[[80607,71539,0],[-272,-46],[-887,-156],[-160,-31],[-186,-31]],[[79102,71275,0],[-458,-84],[-139,-23]],[[78505,71168,0],[-399,-69]],[[78106,71099,0],[-23,-5],[28,214]],[[78111,71308,0],[16,124]],[[78127,71432,0],[19,8],[27,48],[11,2],[-15,153],[5,56],[20,82],[16,13],[4,14],[49,32],[607,357],[239,-127],[342,-244],[243,-166],[49,-43],[16,-97],[552,94],[-11,289],[39,140],[199,-17],[260,-23],[1,-51]],[[88181,74420,0],[119,81]],[[88472,74490,0],[88,4]],[[88560,74494,0],[-6,187]],[[88943,74511,0],[1,-32],[6,-138]],[[88958,74126,0],[7,-156],[5,-137]],[[89158,73113,0],[-132,-261],[-18,-36]],[[89008,72816,0],[-314,-621],[-56,-111]],[[88464,71739,0],[-23,-51],[-11,-24]],[[88015,71816,0],[2,91],[3,57]],[[87930,71968,0],[-66,2]],[[87578,71833,0],[-80,-91],[-9,-9]],[[87008,71585,0],[-36,3]],[[86856,71518,0],[-6,12],[-10,16]],[[86984,71699,0],[19,26]],[[87003,71725,0],[12,12],[10,11]],[[87332,72220,0],[36,197]],[[87503,73041,0],[-5,10]],[[87498,73051,0],[-95,194]],[[86647,74560,0],[188,87],[178,83]],[[88009,74635,0],[0,-25]],[[86948,65704,0],[142,-72],[60,-31]],[[87381,65484,0],[22,-12],[52,-26]],[[87875,65179,0],[8,-4],[8,-4]],[[87889,65168,0],[-267,-407],[-1,-2]],[[87612,64748,0],[1,-21],[2,-43]],[[87615,64684,0],[9,-128],[6,-52],[9,-66]],[[87639,64438,0],[7,-49],[7,-52]],[[87653,64337,0],[-384,-332],[-33,-28]],[[86553,63944,0],[-12,-2],[-222,-33],[-15,7],[-67,31]],[[86237,63947,0],[-58,34],[-1,0]],[[85757,64617,0],[6,4],[10,7]],[[85773,64628,0],[27,12],[4,2]],[[85804,64642,0],[54,18],[1,1],[27,7]],[[85886,64668,0],[19,4],[12,2]],[[85917,64674,0],[14,2],[9,2]],[[86067,64680,0],[27,1],[2,0]],[[86096,64681,0],[13,2],[9,1]],[[86118,64684,0],[10,3],[18,5]],[[86146,64692,0],[5,2],[22,9]],[[86173,64703,0],[24,13],[3,1]],[[86046,64840,0],[-37,24],[-95,63]],[[85914,64927,0],[15,23],[23,34]],[[85952,64984,0],[10,15],[36,45],[173,217]],[[86171,65261,0],[63,58],[75,77],[1,1],[45,52],[11,12],[12,15],[28,31],[13,17],[15,17],[13,15],[52,61],[17,20],[3,4],[15,17],[34,39],[8,11],[9,11],[39,45]],[[86624,65764,0],[5,5]],[[86629,65769,0],[7,9]],[[86682,65760,0],[6,1],[7,2]],[[86695,65763,0],[46,9],[36,6]],[[81979,52580,0],[-25,-64]],[[81942,52129,0],[-9,-54]],[[81933,52075,0],[-27,-141]],[[81906,51934,0],[20,-6],[-33,-102],[-47,-77]],[[81846,51749,0],[-178,123],[-154,106],[-94,-39]],[[81420,51939,0],[-57,-24],[-5,1]],[[81358,51916,0],[-4,29],[-3,14]],[[81351,51959,0],[-8,0]],[[81343,51959,0],[-6,26],[-19,29]],[[81318,52014,0],[-24,26]],[[81294,52040,0],[-3,24],[-46,39]],[[81245,52103,0],[-26,24],[-74,66],[-145,131]],[[81000,52324,0],[-31,25],[6,92],[7,57],[10,57],[15,102],[117,701],[79,477],[35,211],[7,23],[13,24],[10,13],[13,13],[19,13],[18,11],[30,11],[25,9],[30,7],[38,4],[23,0],[143,-18],[37,-5],[84,-21],[55,-16]],[[81975,54027,0],[38,-23],[25,-17],[258,-172],[38,28],[28,18],[43,25],[23,12],[25,14],[51,25],[26,10],[22,7],[54,14],[32,8],[50,1],[-56,-88],[24,-163]],[[84193,51484,0],[-89,58],[-252,157],[-99,-7],[-82,80]],[[83671,51772,0],[-316,-25]],[[83355,51747,0],[-10,132],[-22,274],[-17,9],[-74,28],[-2,62],[-174,127]],[[83056,52379,0],[-7,2],[-77,23]],[[82972,52404,0],[-6,2],[-15,7]],[[82951,52413,0],[-8,3],[-28,13],[-17,3],[-49,5],[-2,-9],[-36,0],[-7,-3],[-66,0]],[[82738,52425,0],[12,71],[59,-23],[82,140],[55,276],[30,152],[24,13],[3,316],[2,216],[139,108],[194,190],[64,61],[43,40],[130,-69],[23,-49],[-15,-69],[14,-41],[162,51],[63,20],[172,-476],[91,-242],[28,4],[50,-143],[16,-2],[256,-27],[8,1],[112,24],[61,57],[166,-82],[53,-34],[90,-61],[40,-33],[47,-34],[38,-34],[40,-33],[34,-39],[33,-63],[24,-43],[20,-49],[23,-51],[13,-36],[5,-27],[10,-108],[-13,-140],[-9,-84],[110,-45],[-11,-22],[-104,-160],[-47,-89],[-127,-148],[-237,-141],[-243,-51],[-117,-27],[-253,172],[-8,-78]],[[81351,51959,0],[2,-14],[4,-29],[1,0]],[[81358,51916,0],[5,0],[57,23]],[[81420,51939,0],[41,17],[53,23],[154,-106],[28,-20],[150,-104]],[[81846,51749,0],[296,-208],[49,-36],[48,-40],[138,-132],[1,-1],[15,-18]],[[82393,51314,0],[23,-29],[16,-25],[15,-22]],[[82447,51238,0],[27,-43],[10,-22],[1,0],[12,-25],[9,-22],[18,-45],[0,-1],[13,-31]],[[82537,51049,0],[17,-48]],[[82554,51001,0],[4,-16],[14,-60],[1,-6],[0,-5],[9,-30],[2,-8],[5,-18]],[[82589,50858,0],[4,-30]],[[82593,50828,0],[33,-213],[4,-27]],[[82630,50588,0],[16,-90],[8,-46],[2,-14],[23,-143]],[[82679,50295,0],[15,-95],[2,-14],[-80,-12]],[[82616,50174,0],[-1,0],[-197,-29],[-154,-21],[-2,0],[-147,-15],[-67,-3],[-97,2],[-1,0],[-11,0],[-66,5],[-35,4],[-61,8],[-24,3],[-5,1],[-1,0],[-18,3],[-28,3],[-34,7],[-65,13],[-41,11],[-38,8],[-60,18],[-43,14],[12,21],[-344,123],[-50,32],[-17,15],[-40,36],[-7,8],[-20,21],[-19,30],[-1,1],[-1,2],[-1,0],[0,-1],[-6,-11],[-228,-22],[-11,104],[12,0],[-3,24],[-10,-1],[-13,106],[-162,-18],[-34,-52],[-15,6]],[[80462,50630,0],[-40,18],[-14,6],[-41,19]],[[80367,50673,0],[-25,12],[96,225],[62,142],[39,129],[81,188]],[[80620,51369,0],[40,122],[8,28],[1,1],[46,181],[31,124],[32,152]],[[80778,51977,0],[10,52],[3,19],[2,10],[2,14],[3,29],[5,59],[0,2],[11,59],[10,54],[15,42],[14,25],[9,11],[12,11],[12,8],[19,4],[7,0]],[[80912,52376,0],[5,1],[20,-3],[23,-13],[9,-11],[18,-16],[13,-10]],[[81000,52324,0],[102,-93],[42,-38],[59,-51],[16,-14],[26,-25]],[[81245,52103,0],[10,-8],[36,-30],[2,-13],[1,-12]],[[81318,52014,0],[19,-28],[3,-15],[3,-12]],[[82951,52413,0],[21,-9]],[[82972,52404,0],[84,-25]],[[83355,51747,0],[153,13],[163,12]],[[84193,51484,0],[-102,-508],[-81,-52],[92,-121],[172,77],[73,-29],[139,-67],[82,-561],[40,-5],[55,-55],[-21,-227],[-43,7],[-70,15],[-60,13],[-29,10],[24,-114],[-68,-20],[-27,-9],[-38,-8],[-43,-6],[-43,-7],[-38,-1],[-49,3],[-36,4],[-13,1],[-59,11],[-49,9],[-16,6],[-43,13],[-57,22],[-10,6],[-78,45],[-37,23],[-137,79],[-110,60],[-27,16],[-149,71],[-45,7],[-26,4],[-41,5],[-39,6],[-39,1],[-46,1],[-74,-6],[-41,-4],[-22,-1],[-183,-9],[-25,-1],[-60,-3],[-2,14],[-40,252],[-24,137]],[[82630,50588,0],[-41,270]],[[82589,50858,0],[-4,18],[-11,38],[-1,11],[-19,76]],[[82537,51049,0],[-40,98],[-23,47],[-27,44]],[[82447,51238,0],[-31,46],[-23,30]],[[82393,51314,0],[-15,17],[172,520]],[[82550,51851,0],[88,4]],[[82638,51855,0],[4,128],[2,79],[2,60],[-1,46],[-2,42],[26,57],[36,63],[3,8],[4,10],[26,77]],[[79231,50356,0],[-27,-98],[-23,-84]],[[78472,50607,0],[75,131]],[[78161,51116,0],[-20,-8],[-26,-13]],[[77670,50952,0],[-25,63],[-44,97]],[[77570,51189,0],[-23,65],[-30,88]],[[77498,51525,0],[-2,21],[1,18],[7,72],[6,29],[8,39],[4,15],[7,28],[13,37],[13,31],[21,43],[12,19],[16,34],[23,35],[28,39],[11,12],[4,5],[49,54],[61,56],[75,49],[62,37],[74,33],[71,27],[72,19],[85,19],[140,23],[46,9],[134,20],[56,9],[48,7],[31,2],[67,3],[90,2],[66,-2],[82,-10],[64,-11],[82,-19],[60,-19],[85,-31],[129,-60],[125,-53],[67,-19],[39,-5],[135,-9],[131,-9],[53,4],[53,14],[47,23],[41,36],[24,25],[32,38],[142,-69],[83,-48],[23,-73],[28,-99],[11,-52],[5,-37],[2,-52],[-12,-80],[-27,-78],[-60,-174],[-236,-721],[-125,-94],[-53,-40],[-102,-78],[-101,-76],[-101,-78],[-104,-81],[-104,118],[-152,4],[-27,-84]],[[83754,64314,0],[-109,15]],[[83537,64352,0],[-104,32],[-45,17]],[[83383,64473,0],[20,15],[28,20]],[[83752,65208,0],[-18,102]],[[83707,65411,0],[7,2],[39,12]],[[83753,65425,0],[30,9]],[[83783,65434,0],[2,8],[3,5],[11,10],[16,10],[14,6],[23,6],[22,3],[7,1],[21,6],[23,6],[21,5],[20,5],[22,4],[21,4],[188,25],[164,22],[3,1],[49,7],[48,6]],[[84461,65574,0],[41,5],[184,26]],[[84686,65605,0],[18,3],[11,1]],[[84715,65609,0],[55,8],[84,11],[53,7]],[[84907,65635,0],[-11,-3],[-10,-5],[-10,-9],[-8,-8],[-4,-11],[-2,-12],[-9,-126]],[[84853,65461,0],[-2,-15]],[[84851,65446,0],[-1,-13],[-22,-172],[-13,-98],[-29,-235],[-8,-57],[-9,-76],[-9,-90],[-1,-3],[0,-3],[1,-5]],[[84760,64694,0],[1,-6],[17,-48],[1,-3],[19,-54],[5,-16]],[[84903,64610,0],[-101,-43],[-24,70],[-1,3],[-7,20],[-6,18],[0,3],[-1,3],[-2,5],[-1,5]],[[84760,64694,0],[-1,6],[1,6],[8,90],[9,62],[13,112],[2,15],[12,94],[1,11],[10,77],[4,28],[2,13],[7,55],[15,130],[6,41],[1,7],[1,5]],[[84853,65461,0],[3,50],[5,73],[0,2],[0,3],[2,10],[4,11],[2,2],[6,7],[9,8],[13,6],[11,3],[15,3],[4,0],[48,9],[46,10],[47,11],[47,12],[52,16],[38,12],[45,17],[32,13],[12,5],[45,19],[49,24],[1,1],[35,17],[42,22],[28,17],[13,8],[39,25],[39,26],[16,11],[21,15],[49,36],[45,34],[60,43],[13,9],[48,35],[61,45],[11,6],[12,3],[13,0],[13,-3],[12,-5],[9,-9],[6,-10],[2,-7],[3,-5]],[[85979,66101,0],[7,-45],[0,-2],[1,-5]],[[85987,66049,0],[19,-110],[4,-24]],[[86010,65915,0],[4,-21],[17,-94],[0,-1]],[[86031,65799,0],[13,-76],[1,0]],[[86045,65723,0],[24,-144],[1,0],[8,-47]],[[86078,65532,0],[6,-38]],[[86084,65494,0],[21,-73],[5,-19]],[[86110,65402,0],[2,-12],[5,-10]],[[86117,65380,0],[1,-2]],[[86118,65378,0],[19,-43]],[[86137,65335,0],[15,-31],[19,-42],[-16,-15],[-48,-39],[-8,-7],[-1,0],[-26,-22]],[[86072,65179,0],[-87,-62],[-91,-59],[-60,-34],[-34,-20]],[[85800,65004,0],[-51,-25],[-46,-23]],[[85703,64956,0],[-24,-11],[-25,-11]],[[85654,64934,0],[-27,-11],[-24,-11]],[[85603,64912,0],[-30,-12],[-56,-24]],[[85502,64869,0],[-48,-21],[-51,-22]],[[85366,64811,0],[-2,-1],[-46,-20],[-16,-7],[-41,-18],[-45,-20],[-13,-5]],[[84715,65609,0],[-29,-4]],[[84686,65605,0],[-184,-25],[-41,-6]],[[83783,65434,0],[-19,-6],[-11,-3]],[[83707,65411,0],[-26,100]],[[83641,65658,0],[-16,54]],[[83470,65967,0],[-31,31]],[[83242,66141,0],[-12,6]],[[83230,66147,0],[57,45]],[[83292,66196,0],[54,24]],[[83346,66220,0],[87,50]],[[83433,66270,0],[0,-28]],[[83433,66242,0],[0,-11],[1,-22],[2,-80]],[[83436,66129,0],[1,-7],[4,-16]],[[83896,66215,0],[76,18]],[[84329,66263,0],[67,15],[430,94]],[[84826,66372,0],[91,20],[-14,-46],[-14,-51],[-12,-52],[-9,-53],[-8,-52],[-4,-54],[0,-9],[-1,-37],[0,-75],[-1,-59],[2,-62],[1,-46],[2,-12],[5,-11],[6,-10],[7,-7],[11,-6],[11,-4],[13,-2],[10,2],[-5,-36],[-7,-52],[-3,-22],[0,-1]],[[85909,66594,0],[36,-207],[9,-47]],[[85954,66340,0],[0,-17],[-3,-11],[-8,-13],[-10,-8],[-60,-44],[-56,-42],[-8,-5],[-11,-7],[-22,-17],[-65,-47],[-9,-7],[-174,-127],[-10,-7],[-10,-6],[-56,-37],[-55,-32],[-55,-30],[-18,-8],[-39,-19],[-58,-24],[-59,-22],[-26,-9],[-17,-6],[-17,-5],[-69,-19],[-53,-13],[-63,-12],[-14,-2],[-10,-1],[-20,14],[-13,14],[-4,10],[-4,14],[-1,55],[-2,55],[0,18],[1,40],[1,75],[0,28],[0,10],[5,62],[3,22],[4,31],[9,52],[12,52],[14,52],[4,14],[10,36],[70,16],[23,5],[29,6],[74,17],[104,23],[18,4],[82,18],[3,1],[2,0],[17,3],[54,11],[107,20],[24,3],[16,6],[59,24],[14,5],[28,19],[1,1],[108,75],[21,4],[36,7],[19,4],[1,0],[0,1],[38,-4],[13,-1],[18,-2],[6,-33],[6,-36]],[[86959,66085,0],[-69,-57],[-6,-6]],[[86884,66022,0],[-15,-11],[-65,-53],[-4,-3]],[[86724,65880,0],[-11,-12],[-1,-1]],[[86712,65867,0],[-1,-2],[-10,-12]],[[86701,65853,0],[-6,-7],[-40,-46]],[[86655,65800,0],[-12,-14],[-7,-8]],[[86629,65769,0],[-1,-1],[-4,-4]],[[86171,65261,0],[-34,74]],[[86137,65335,0],[-10,25],[-9,18]],[[86118,65378,0],[0,1],[-1,1]],[[86117,65380,0],[-2,6],[-2,3],[-2,8],[-1,5]],[[86110,65402,0],[-26,92]],[[86078,65532,0],[-33,191]],[[86045,65723,0],[-1,5],[-13,71]],[[86031,65799,0],[-14,78],[-2,17],[-1,5],[-4,16]],[[86010,65915,0],[-16,97],[-7,37]],[[85987,66049,0],[-2,13],[-6,39]],[[85979,66101,0],[-1,8],[-4,35],[-13,125],[0,1],[-6,65],[-1,5]],[[85909,66594,0],[-5,30],[-6,38]],[[85898,66662,0],[2,0],[9,0],[10,-1]],[[85919,66661,0],[39,-10],[22,-5],[13,-3]],[[85993,66643,0],[21,-4],[43,-8],[39,-6]],[[86096,66625,0],[60,4],[30,2]],[[86186,66631,0],[4,0],[1,0]],[[86191,66631,0],[3,1],[6,0]],[[86208,66632,0],[39,3],[65,3]],[[86312,66638,0],[80,4],[66,4]],[[86458,66646,0],[36,2],[29,2],[1,0],[39,3]],[[86563,66653,0],[16,1],[25,1]],[[86604,66655,0],[21,17],[4,3],[11,8],[13,4],[2,0]],[[86738,66709,0],[29,9],[40,12]],[[86831,66738,0],[7,3],[8,2],[61,19]],[[87084,66815,0],[6,1],[2,0],[5,1],[64,17]],[[87161,66834,0],[3,-73],[-2,-29],[-1,-20],[-2,-15],[0,-6],[-1,-6],[-1,-12],[0,-5],[-5,-18],[-14,-60],[-1,-5],[-1,-3],[-9,-31],[-30,-107],[-15,-50],[-5,-8],[-6,-16],[0,-9],[-1,-7],[5,-33],[2,-8],[1,-6],[8,-27],[7,-10],[2,-4],[4,-4],[1,-1],[2,-1],[14,-9],[-42,-23],[-99,-52],[0,-24],[-2,-61]],[[87620,66593,0],[5,0],[5,0]],[[87630,66593,0],[125,6],[2,-53],[0,-40],[0,-52]],[[87757,66454,0],[-2,-7],[-4,-14]],[[87751,66433,0],[-2,-7],[-1,-6]],[[87748,66420,0],[-1,-10],[0,-8]],[[87747,66402,0],[0,-14],[-1,-11]],[[87746,66377,0],[-6,-46],[-7,-38],[-28,-66]],[[87481,66235,0],[-70,-6],[-43,-3]],[[87368,66226,0],[-28,-6],[-22,-5]],[[87315,66214,0],[-15,-2],[-34,-5]],[[87161,66173,0],[-5,-3],[-57,-22]],[[87099,66148,0],[-22,-7],[-19,-8],[-85,-42]],[[87212,66849,0],[15,4],[19,6]],[[87341,66888,0],[2,0],[5,2]],[[87422,66913,0],[25,7],[78,24]],[[87568,66959,0],[1,-5],[20,-94]],[[87589,66860,0],[8,-24],[8,-29],[15,-214]],[[85050,66857,0],[-9,-32],[-109,-381],[-4,-12],[-11,-39]],[[83433,66238,0],[0,4]],[[83230,66147,0],[-9,5],[16,40],[39,97],[38,97],[35,85],[5,12],[31,99],[9,46],[11,56],[5,77],[1,27],[-5,103],[-13,73]],[[83393,66964,0],[62,-12],[107,-20],[108,-22]],[[83670,66910,0],[95,-18],[12,-2]],[[83777,66890,0],[110,-14],[110,0],[109,13],[106,24],[16,5],[89,28],[105,33],[17,6],[85,31],[94,54],[85,65],[18,-16]],[[84721,67119,0],[10,-9],[75,-60],[41,-31],[28,-23],[16,-12],[89,-71],[70,-56]],[[86078,67606,0],[54,-103],[40,-61],[9,-13],[29,-45]],[[86210,67384,0],[8,-13],[14,-25],[10,-23],[10,-34]],[[86252,67289,0],[3,-18]],[[86255,67271,0],[2,-38]],[[86257,67233,0],[-1,-16]],[[86256,67217,0],[-2,-19]],[[86254,67198,0],[-8,-33]],[[86246,67165,0],[-2,-8]],[[86244,67157,0],[-19,-56]],[[86225,67101,0],[-21,-52],[-23,-51],[-20,-38],[-14,-28],[-39,-64],[-42,-61],[14,-21],[-52,-63],[-4,-3]],[[86024,66720,0],[-4,-3]],[[86020,66717,0],[-10,-3],[-11,0],[-2,1]],[[85997,66715,0],[-7,3]],[[85990,66718,0],[-7,11],[-4,5],[4,-21],[10,-70]],[[85909,66661,0],[-12,1]],[[85897,66662,0],[-24,3],[-44,7],[-57,-16]],[[85772,66656,0],[-7,-2],[-12,-9],[-1,0]],[[85612,66554,0],[-6,-3],[-5,-1]],[[85395,66497,0],[-57,-12],[-1,0]],[[84917,66393,0],[10,33],[3,12],[110,385],[10,34]],[[84721,67119,0],[43,43],[46,56],[34,52],[132,222]],[[84976,67492,0],[2,0],[29,-18],[-31,18]],[[84976,67492,0],[20,35],[23,37],[9,6],[10,3],[8,-1],[4,-4],[57,0],[-6,40],[-25,102],[-7,16],[-4,14]],[[85065,67740,0],[55,-7]],[[85120,67733,0],[84,-11],[85,-11],[89,-11]],[[85378,67700,0],[295,-36]],[[85673,67664,0],[7,-23],[66,-11],[34,-6]],[[85780,67624,0],[133,-8]],[[85913,67616,0],[165,-10]],[[85905,67160,0],[11,-59],[-13,68],[2,-9]],[[85568,67261,0],[-34,-58],[8,13],[26,45]],[[85637,67506,0],[1,0],[-241,42],[240,-42]],[[86738,66709,0],[-83,-22]],[[85990,66718,0],[6,-3],[1,0]],[[86020,66717,0],[0,1],[4,2]],[[86225,67101,0],[5,15],[14,41]],[[86246,67165,0],[2,10],[6,23]],[[86256,67217,0],[1,15],[0,1]],[[86255,67271,0],[-3,15],[0,3]],[[86210,67384,0],[99,37],[6,-9]],[[86315,67412,0],[6,-11]],[[86321,67401,0],[30,15]],[[86351,67416,0],[247,-30]],[[86598,67386,0],[2,24],[0,3],[0,8],[-1,8]],[[86599,67429,0],[-2,7]],[[86597,67436,0],[-2,3]],[[86595,67439,0],[-3,5],[-4,5],[-8,8]],[[86580,67457,0],[7,14]],[[86587,67471,0],[3,7],[10,24]],[[86600,67502,0],[15,33],[-61,43]],[[86554,67578,0],[-44,43]],[[86510,67621,0],[-38,46]],[[86472,67667,0],[-33,48]],[[86439,67715,0],[-3,4]],[[86436,67719,0],[-13,21],[-12,23],[-4,8]],[[86407,67771,0],[-10,20]],[[86397,67791,0],[-1,8],[1,7],[2,7],[8,12],[51,48],[36,51],[25,57],[12,61],[1,61],[-13,61]],[[86519,68164,0],[263,81]],[[86782,68245,0],[176,-261]],[[86958,67984,0],[81,-9],[-5,-32],[-1,-20],[3,-46],[7,-25],[9,-23],[37,-80],[110,39],[68,-149],[73,-154],[71,-152],[66,-152],[75,-169],[3,-11],[13,-42]],[[85115,68699,0],[234,6],[105,-3],[80,-2]],[[85534,68700,0],[-25,-72]],[[85509,68628,0],[-2,0],[-33,-1],[-87,-1]],[[85387,68626,0],[-7,0]],[[85380,68626,0],[-34,0],[-7,0]],[[85339,68626,0],[-1,0]],[[85338,68626,0],[12,-2],[8,-2]],[[85358,68622,0],[11,-4]],[[85369,68618,0],[10,-9],[9,-13],[12,-39],[5,-16],[1,-3],[45,-146],[0,-2],[2,-4]],[[85453,68386,0],[12,3],[4,-14],[-2,-4],[37,-115]],[[85504,68256,0],[1,-5],[42,-132],[7,-23],[43,-140]],[[85597,67956,0],[36,-118],[8,-24]],[[85641,67814,0],[-13,-4]],[[85628,67810,0],[44,-145],[0,-1],[-294,36]],[[85378,67700,0],[-89,10],[-85,11],[-84,12]],[[85120,67733,0],[-1,0],[-54,7]],[[85065,67740,0],[-1,0],[-11,4]],[[85053,67744,0],[-29,11],[-13,32],[-42,88]],[[84969,67875,0],[-5,7],[-33,56]],[[84931,67938,0],[-49,70]],[[84882,68008,0],[-70,80],[-32,34]],[[84780,68122,0],[-41,37],[-63,52],[-17,14]],[[84659,68225,0],[-26,15],[-76,45],[-38,20],[-43,22],[-40,18]],[[84436,68345,0],[-43,18]],[[84393,68363,0],[-29,11]],[[84364,68374,0],[-52,18],[-66,20]],[[84246,68412,0],[-39,9],[-49,9]],[[84158,68430,0],[-47,6],[-15,2]],[[84096,68438,0],[-45,4],[-31,1]],[[84020,68443,0],[-36,-1],[-15,0]],[[83969,68442,0],[-45,-5],[-65,-12]],[[83859,68425,0],[-69,-17],[-63,-20]],[[83727,68388,0],[-22,-8],[-44,-16]],[[83661,68364,0],[-19,-8],[-14,-3]],[[83628,68353,0],[-14,-1],[-31,2],[-31,8],[-24,14],[-11,9],[-11,12]],[[83506,68397,0],[-12,24],[-4,14],[-1,5]],[[83489,68440,0],[-4,21]],[[83485,68461,0],[1,11],[2,15]],[[83488,68487,0],[5,20],[10,23],[7,10]],[[83510,68540,0],[11,14],[47,59],[1,1]],[[83569,68614,0],[49,48],[17,15],[21,17],[65,49]],[[83721,68743,0],[20,14],[3,1],[47,28],[20,10],[1,0]],[[83812,68796,0],[71,31],[71,25]],[[83954,68852,0],[49,13],[12,1],[62,12]],[[84077,68878,0],[28,2],[49,4]],[[84154,68884,0],[54,-2],[26,-1],[52,-4]],[[84286,68877,0],[51,-7],[34,-7],[69,-18]],[[84440,68845,0],[16,-6],[152,-53]],[[84608,68786,0],[128,-40],[92,-26],[97,-18],[6,-1],[75,-3],[109,1]],[[86116,68400,0],[25,-30],[25,-33],[41,-63]],[[86207,68274,0],[31,-57],[12,-30]],[[86250,68187,0],[15,-36]],[[86265,68151,0],[72,-207],[12,-33]],[[86349,67911,0],[29,-79],[19,-41]],[[86407,67771,0],[17,-31],[11,-19],[1,-2]],[[86439,67715,0],[32,-46],[1,-2]],[[86472,67667,0],[27,-32],[11,-14]],[[86554,67578,0],[62,-43],[-7,-14],[-9,-19]],[[86587,67471,0],[-2,-2],[-5,-12]],[[86580,67457,0],[9,-8],[4,-5],[2,-5]],[[86597,67436,0],[0,-1],[2,-6]],[[86598,67386,0],[-20,3],[-227,27]],[[86321,67401,0],[-2,4],[-4,7]],[[86315,67412,0],[-5,9],[-3,-1],[-97,-36]],[[86078,67606,0],[-154,9],[-4,1],[-7,0]],[[85913,67616,0],[-10,1],[-123,7]],[[85673,67664,0],[-45,146]],[[85641,67814,0],[1,0],[-8,24],[-37,118]],[[85597,67956,0],[-42,140],[-7,23],[-42,131],[-2,6]],[[85453,68386,0],[-1,4],[-1,3],[-45,146],[0,2],[-6,17],[-11,38],[-9,13],[-11,9]],[[85358,68622,0],[-7,2],[-12,2]],[[85338,68626,0],[9,0],[33,0]],[[85387,68626,0],[88,1],[34,1]],[[85509,68628,0],[1,0],[24,73],[47,-7],[34,-7]],[[85615,68687,0],[51,-12],[41,-11]],[[85707,68664,0],[31,-11],[16,-5]],[[85754,68648,0],[30,-12],[45,-19],[56,-30],[24,-14],[52,-33],[57,-42]],[[86018,68498,0],[40,-34],[35,-32]],[[86093,68432,0],[23,-32]],[[58448,53786,0],[-13,9],[-476,307]],[[57670,53945,0],[-63,-42],[-342,-225]],[[57265,53678,0],[63,-304],[-14,-12]],[[56788,53317,0],[-137,-9],[-97,14],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1]],[[56559,53337,0],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2]],[[56562,53347,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1]],[[56564,53356,0],[0,2],[1,0],[0,1],[0,1],[0,1],[0,2],[0,2]],[[56565,53365,0],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1]],[[56566,53374,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2]],[[56566,53384,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1]],[[56566,53393,0],[0,1],[-1,2],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[56563,53412,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-6,20],[-10,20]],[[56518,53506,0],[-18,33],[10,41],[-7,38]],[[56521,53680,0],[-45,16],[-8,39]],[[56468,53735,0],[-103,3],[-55,2],[-53,1],[-47,4]],[[53159,52546,0],[-121,1],[-81,-8],[-31,-7]],[[52926,52532,0],[-151,-39],[-175,-137]],[[52035,51470,0],[12,6],[24,30],[12,27]],[[52083,51533,0],[87,80],[17,-7]],[[52260,51597,0],[34,-19],[28,-6],[20,-6]],[[52342,51566,0],[32,2],[63,-33]],[[52437,51535,0],[24,15],[19,7],[72,-26]],[[52587,51506,0],[26,-21],[14,-13]],[[52627,51472,0],[49,-23],[91,-58]],[[52801,51434,0],[52,19],[14,19]],[[52891,51499,0],[12,6],[15,23]],[[52918,51528,0],[37,27],[29,26],[31,30],[39,13]],[[53054,51624,0],[7,14],[4,15],[-4,13]],[[53073,51686,0],[4,29],[32,37]],[[53117,51781,0],[30,16],[43,37],[12,27],[57,25],[6,16],[90,6],[22,-5]],[[53409,51895,0],[29,-19],[92,-5]],[[53530,51871,0],[44,-36],[15,1]],[[53589,51836,0],[58,15],[81,-24]],[[53784,51703,0],[-9,-230],[-114,-6]],[[53661,51467,0],[-5,-14],[-76,-18]],[[53580,51435,0],[-146,-34],[-185,-104]],[[53249,51297,0],[37,-80],[37,-81],[-380,-291]],[[52943,50845,0],[-142,-70],[-45,27],[-53,-44]],[[52416,50380,0],[-50,-20],[-36,7]],[[52317,50386,0],[-54,33],[-73,19]],[[52124,50488,0],[-4,35],[19,106],[-106,39]],[[52033,50668,0],[-30,-63],[-53,-56],[-40,-9]],[[51910,50540,0],[-38,-1],[-90,35]],[[51782,50574,0],[-43,4],[-89,-15],[-2,17]],[[51648,50580,0],[-30,45],[-31,6],[-9,97],[1,35]],[[51491,50761,0],[-79,-65],[-64,-35]],[[51348,50661,0],[-337,179],[73,112],[26,244],[-57,19],[-37,104],[-51,136],[166,1568],[63,1042],[5,129]],[[51199,54194,0],[772,81],[826,143],[451,87],[81,20],[397,111],[435,170],[190,38],[440,44],[130,17],[1223,144],[50,6],[230,27],[391,45],[983,59]],[[57798,55186,0],[115,10],[18,1],[22,1],[18,1],[102,5]],[[58073,55204,0],[106,9],[-27,-70]],[[51348,50661,0],[-11,-134]],[[51337,50527,0],[-67,16],[-24,-166],[-24,-24]],[[51222,50353,0],[-12,-60]],[[51210,50293,0],[1,-26]],[[51211,50267,0],[1,-48],[-803,149]],[[50355,50376,0],[-58,-1]],[[50297,50375,0],[-183,-11]],[[46266,50877,0],[-330,457],[-1,55],[1,7],[18,82]],[[45963,51552,0],[4,34],[7,60],[6,91]],[[45980,51737,0],[4,47]],[[45984,51784,0],[11,85]],[[45995,51869,0],[-19,-4]],[[45976,51865,0],[-117,4],[-56,6]],[[45737,51878,0],[-95,1],[-65,11]],[[45577,51890,0],[-42,1],[-43,10]],[[45492,51901,0],[-107,6],[-13,22],[-43,-9]],[[45315,51920,0],[-135,-8],[-59,-1]],[[45121,51911,0],[-31,2]],[[44928,51952,0],[-41,14],[-24,-3]],[[44863,51963,0],[-12,-5],[-106,2],[-16,-5],[-112,11],[32,188],[11,-2],[21,66],[105,128],[50,78],[64,85],[81,88],[65,53],[11,53],[97,162],[-9,5],[29,40],[22,47],[74,80],[6,67],[21,70],[65,321],[48,92],[3,108],[431,129],[-308,405],[-11,47],[-60,90],[-40,79],[102,18],[85,59],[3,24],[28,16],[8,-7],[111,61],[45,27],[619,-46],[432,-68],[45,-7],[121,-18],[1064,-166],[902,-14],[514,-78],[138,27],[543,-65],[699,-14],[315,0]],[[89042,60913,0],[77,-59]],[[89119,60854,0],[39,-31]],[[89158,60823,0],[40,-40],[67,-73]],[[89265,60710,0],[78,-94],[12,-14],[15,-17],[73,-78],[48,-98]],[[87191,59773,0],[-26,-14],[-159,-89]],[[87006,59670,0],[-69,6],[-294,39],[-107,21],[-21,4],[-242,61],[-75,19],[-68,11]],[[86130,59831,0],[-72,29],[-110,69],[-56,40],[-47,36],[-37,34],[-33,37],[-30,34],[-29,38],[-34,52],[-43,82]],[[85930,60596,0],[100,29]],[[87282,60850,0],[33,2],[38,4]],[[87353,60856,0],[76,10],[130,18]],[[87559,60884,0],[77,11],[37,5],[402,58]],[[88294,60990,0],[147,19]],[[88441,61009,0],[13,2],[46,5],[49,-1],[67,1],[92,-1],[71,-8],[47,-6],[106,-27],[46,-23],[40,-21],[24,-17]],[[89483,62566,0],[52,-83],[22,0],[32,-18],[25,-14],[19,-17],[61,-41]],[[89694,62393,0],[3,-92],[2,-76]],[[89699,62225,0],[2,-62],[-37,3],[14,-100],[1,-117],[21,1],[-1,-25],[0,-15],[3,-21],[1,-25],[3,-34],[0,-82],[2,-19],[2,-51],[4,-42]],[[89714,61636,0],[0,-16],[2,-61]],[[89716,61559,0],[2,-41]],[[89718,61518,0],[-10,1],[-57,6]],[[89651,61525,0],[5,-97],[58,-2]],[[89714,61426,0],[12,-4],[2,0],[18,-6]],[[89746,61416,0],[14,-6],[17,-9]],[[89777,61401,0],[3,-2],[5,-3],[9,-7],[12,-9],[12,-10],[9,-11],[9,-10],[10,-14]],[[89846,61335,0],[12,-19]],[[89858,61316,0],[2,-5],[9,-19],[11,-26],[9,-25],[14,-35],[37,-80],[10,-15],[12,-16],[13,-15],[10,-13],[14,-15],[20,-17],[21,-12],[23,-12],[23,-9],[37,-17],[35,-7],[-5,-27],[-18,-88],[-7,-38],[-25,-1],[-48,1],[-27,-1],[-25,-3],[5,-87],[-4,-101]],[[89265,60710,0],[-38,42],[-69,71]],[[89119,60854,0],[-11,9],[-37,29],[-29,21]],[[88441,61009,0],[-95,-12],[-52,-7]],[[88275,61095,0],[-19,109]],[[88207,61239,0],[-676,95]],[[87503,61638,0],[4,43]],[[87685,61751,0],[42,-9]],[[87773,61811,0],[162,371]],[[91328,62090,0],[14,-30],[22,-46]],[[91364,62014,0],[18,-32],[44,-80],[8,-14]],[[91434,61888,0],[40,-66],[48,-80],[14,-22]],[[91536,61720,0],[33,-56],[44,-72]],[[91613,61592,0],[3,-8],[42,-83]],[[91658,61501,0],[4,-10],[27,-73]],[[91689,61418,0],[8,-27],[8,-33]],[[91765,61230,0],[-94,19],[-44,9]],[[91814,61085,0],[3,-18],[6,-26]],[[91515,60632,0],[-76,-58]],[[91203,60416,0],[-28,-11],[-23,-9]],[[90997,60356,0],[-9,0],[-47,-5]],[[90841,60347,0],[-44,1],[-15,1]],[[90641,60372,0],[-23,6],[-38,9]],[[90641,60597,0],[-43,15],[-25,7]],[[90573,60619,0],[-25,8],[-21,6]],[[90527,60633,0],[-16,5],[-16,6]],[[90369,60684,0],[-15,4],[-12,4]],[[90342,60692,0],[-37,11],[-28,8]],[[90277,60711,0],[-20,-94]],[[89858,61316,0],[-6,10],[-6,9]],[[89777,61401,0],[-31,15]],[[89746,61416,0],[-32,10]],[[89651,61525,0],[67,-7]],[[89716,61559,0],[-2,77]],[[89699,62225,0],[-5,168]],[[89586,62650,0],[-29,16],[-17,9]],[[89540,62675,0],[14,59],[11,47]],[[89565,62781,0],[156,129],[6,41],[55,39]],[[89870,63107,0],[28,38],[9,29]],[[89907,63174,0],[3,13],[105,65],[163,60]],[[77077,23085,0],[2,0],[5,0]],[[77084,23085,0],[-3,-47],[-1,-11]],[[77080,23027,0],[-1,-66],[-6,-85]],[[77070,22825,0],[-3,-25],[-3,-56]],[[77064,22744,0],[-4,-55],[-3,-35],[-24,-229]],[[77033,22425,0],[-23,-255],[-20,-272],[-22,-207]],[[76968,21691,0],[0,-1],[-5,-68],[9,-87]],[[76982,21406,0],[23,-130],[-62,1],[-19,0],[-9,-12]],[[76915,21265,0],[-3,-3],[-7,-6]],[[76905,21256,0],[-10,-5],[0,-1]],[[76895,21250,0],[-11,-4],[-17,-3]],[[76867,21243,0],[-69,-3],[-38,-2]],[[76760,21238,0],[-40,-5],[-40,-8],[-50,-13],[-5,-2],[-16,-5],[-28,-10],[-61,-26]],[[76520,21169,0],[-52,-25],[-4,-2]],[[76464,21142,0],[-129,-61],[-12,-6],[-37,-16]],[[76286,21059,0],[-47,-17],[-11,-3],[-9,-2],[-20,-6]],[[76199,21031,0],[-47,-8],[-13,-2]],[[76139,21021,0],[-30,-3],[-22,0],[-25,-1],[-12,1],[-10,0]],[[76040,21018,0],[-29,3]],[[76011,21021,0],[-17,1],[-2,0]],[[75992,21022,0],[-56,12],[-70,19],[-143,41]],[[75723,21094,0],[-130,34],[-12,3]],[[75581,21131,0],[-33,9],[-120,35],[-151,42]],[[75277,21217,0],[-147,43]],[[75130,21260,0],[40,90],[11,23]],[[75181,21373,0],[4,11]],[[75185,21385,0],[1,3]],[[75186,21388,0],[1,2],[1,1]],[[75188,21391,0],[1,2]],[[75189,21393,0],[0,2]],[[75189,21396,0],[8,27]],[[75197,21423,0],[13,46],[3,8]],[[75213,21477,0],[22,151],[10,61]],[[75306,22230,0],[68,840]],[[75374,23070,0],[18,-2],[12,-1],[7,91]],[[75412,23168,0],[7,78],[1,2],[4,13]],[[75424,23261,0],[3,6],[1,1]],[[75445,23286,0],[8,5],[2,1],[2,0],[8,3],[4,1],[5,2],[13,0]],[[75641,23285,0],[40,-3],[156,-16]],[[75837,23266,0],[151,-17],[88,-9]],[[76076,23240,0],[89,-13],[5,0],[3,0],[18,-1],[17,-2],[43,-3]],[[76350,23211,0],[187,-19],[7,-1]],[[76544,23191,0],[197,-23],[172,-20],[105,-11]],[[77018,23137,0],[16,-3],[4,-3],[4,-2]],[[77051,23120,0],[3,-4],[4,-6]],[[77058,23110,0],[4,-14]],[[77161,20939,0],[-10,-5],[10,5]],[[77545,20313,0],[54,-83]],[[77843,19864,0],[-104,-108]],[[76619,19059,0],[-4,-3],[-13,17]],[[76602,19073,0],[-276,348]],[[76206,20480,0],[41,38]],[[76247,20518,0],[26,20],[11,9]],[[76380,20733,0],[-140,216]],[[76201,20939,0],[-59,-10]],[[75586,20539,0],[-124,38],[-44,14]],[[75090,21171,0],[40,89]],[[75277,21217,0],[151,-43],[153,-43]],[[75581,21131,0],[142,-37]],[[75992,21022,0],[19,-1]],[[76040,21018,0],[23,-1],[46,0],[30,4]],[[76139,21021,0],[60,10]],[[76199,21031,0],[29,7],[58,21]],[[76286,21059,0],[49,21],[129,62]],[[76520,21169,0],[61,25],[44,15],[5,2],[50,13],[40,8],[40,6]],[[76760,21238,0],[107,5]],[[76867,21243,0],[18,2],[10,5]],[[76895,21250,0],[10,6]],[[76905,21256,0],[10,9]],[[76915,21265,0],[9,11],[81,-1]],[[56110,61241,0],[8,-75],[8,-71]],[[56126,61095,0],[5,-38],[6,-50]],[[56137,61007,0],[11,-49],[12,-53]],[[56160,60905,0],[38,-105],[35,-95]],[[56233,60705,0],[18,-33],[59,-107]],[[56310,60565,0],[26,-38]],[[56336,60527,0],[2,-3],[19,-30]],[[56357,60494,0],[51,-67],[7,-10]],[[56415,60417,0],[20,-20],[31,-33]],[[56466,60364,0],[47,-51],[95,-85]],[[56608,60228,0],[47,-36],[39,-30]],[[56694,60162,0],[62,-39],[40,-26]],[[56796,60097,0],[117,-59]],[[56913,60038,0],[41,-17],[55,-23]],[[57009,59998,0],[136,-44],[98,-23],[48,-16]],[[57291,59915,0],[-4,-82],[0,-31],[-1,-81],[1,-16],[1,-264],[-75,11],[-29,11],[-45,17],[-22,7],[-26,7],[-25,3],[-26,-3],[-24,-8],[-30,-13],[-28,-22],[-30,-35],[-5,-10],[-27,-5],[-20,9],[-23,-49]],[[56853,59361,0],[-7,3],[-36,18],[-46,21],[-114,57],[-34,18],[-98,46],[-1,-1],[-12,-13],[-6,-5],[-6,-3],[-7,-3],[-4,-2],[-5,-1],[-3,0],[-10,-1],[-9,0],[-7,1],[-7,1],[-17,7],[-28,12],[-25,-43],[-25,-47],[-11,-21],[-6,-12]],[[56329,59393,0],[-1,-3],[-3,-6]],[[56325,59384,0],[-16,-31],[-19,-35],[-15,-30]],[[56275,59288,0],[-51,24],[-14,6],[-49,24],[-14,7],[-52,25],[-17,8],[-29,16],[-14,8],[-17,8],[-18,11],[-22,12],[-4,3],[-11,5],[-6,4],[-10,5],[-34,20],[-9,6],[-18,11],[-23,15],[-19,12],[-9,6],[-8,5],[-18,11],[-23,18],[-42,30],[-15,12],[-42,33],[-16,12],[-5,4],[-5,4],[-7,6],[-29,24],[-17,15],[-17,14],[-25,23],[-12,11],[-16,15],[-21,20],[-14,14],[-15,15],[-17,16],[-21,21],[-12,13],[-24,24],[-3,4],[-14,15],[-17,20],[-5,5],[-14,20],[-9,10],[-1,0],[-28,32],[-6,7],[-23,31],[-18,19],[-9,16],[-17,21],[-12,17],[-15,21],[-11,19],[-10,15],[-12,16],[-12,20],[-14,22],[-25,43],[-10,15],[-23,42],[-11,19],[-20,42],[-10,19],[-17,38],[-5,11],[-9,16],[-20,46],[-13,28],[-16,40],[-10,30],[-10,26],[-2,6],[-5,17],[-9,30],[-5,16],[-6,18],[-7,25],[-6,19],[-1,3],[-3,15],[-11,34],[-3,15],[-1,5],[-4,10],[-7,31],[-4,19],[-1,19],[-9,46],[-3,13],[-3,12],[-8,63],[-1,9],[-6,64],[-1,9],[-6,71],[-2,75]],[[54851,61273,0],[124,-4],[44,-2],[171,-5],[2,13],[1,14],[1,24],[5,24],[5,24],[6,27],[19,54],[18,54],[13,33],[8,32],[13,29],[18,53],[8,35],[6,27],[2,30],[3,32],[-2,38],[-2,28],[-6,38],[0,4],[-4,21],[-40,156],[0,1],[-27,105],[-9,33],[68,16],[-8,29],[0,3],[-4,18],[1,18],[4,19],[7,20],[11,21],[42,44],[21,20],[13,7],[16,1],[12,-1],[11,-3],[9,-9],[8,-6],[28,-52],[25,-42],[74,-138],[24,-38],[49,-88],[20,-35],[25,-38],[26,-36],[23,-29],[61,-60],[69,-67],[63,-56],[48,-36],[62,-44],[53,-39],[26,-39]],[[56115,61551,0],[-24,-137],[19,-173]],[[56853,59361,0],[84,-48],[26,-14],[104,-62],[84,-51],[41,-27],[23,-14],[44,-31],[63,-48],[37,-29],[10,-8],[73,-65],[6,-6],[85,-82],[8,-7],[54,-59],[40,-45],[3,-4],[85,-99],[40,-46],[9,-11],[72,-80],[1,-2],[89,-106],[47,-47],[32,-27],[20,-13]],[[58033,58330,0],[-66,-90],[-117,-158]],[[57850,58082,0],[-102,82],[-54,47],[-118,137],[-4,5],[-110,124],[-5,6],[-89,106],[-17,18],[-7,7],[-38,43],[-24,18],[-27,30]],[[57255,58705,0],[0,1],[-34,33]],[[57221,58739,0],[-32,25],[-24,24]],[[57165,58788,0],[-49,41],[-48,36],[-29,21],[-24,17],[-33,21],[-16,12],[-3,2],[-42,21],[-11,8],[-7,4],[-34,20],[-15,10],[-34,19],[-20,9],[-40,21],[-26,13],[-5,2],[-59,28],[-98,44],[-59,31],[-55,28],[-59,28],[-64,29],[-60,35]],[[56325,59384,0],[4,9]],[[60175,59112,0],[61,-207],[19,-10],[25,-86]],[[60280,58809,0],[9,-27],[15,-44],[9,-25],[5,-22],[0,-22],[-4,-27],[-5,-22],[-16,-23],[-18,-23],[-23,-16],[-45,-41],[-32,-39],[-27,-40],[-20,-46],[-23,-49],[-24,-52],[-23,-52],[-21,-47],[-25,-53],[-24,-65],[-15,-40],[-31,-112],[-3,-24]],[[59939,57898,0],[-10,-65],[0,-2]],[[59929,57831,0],[-7,-81],[11,-65],[7,-39],[26,-101],[31,-78],[57,-110],[52,-76]],[[60106,57281,0],[1,-1],[34,-36]],[[60141,57244,0],[31,-34],[116,-111],[43,-39],[61,-56],[22,-23],[17,-28],[17,-26],[11,-31],[5,-30],[-1,-20],[-6,-24],[-18,-13],[-50,-118]],[[60389,56691,0],[-177,69],[-134,36]],[[60078,56796,0],[-225,71]],[[59853,56867,0],[-164,52],[-242,67]],[[59447,56986,0],[-207,50],[-208,134],[-63,42]],[[58969,57212,0],[-54,69]],[[58915,57281,0],[-10,33],[-10,42],[-5,56]],[[58890,57412,0],[7,81],[10,69],[27,102]],[[58934,57664,0],[42,139],[16,33],[23,39]],[[59015,57875,0],[2,5]],[[59017,57880,0],[2,5],[1,6]],[[59020,57891,0],[1,5]],[[59021,57896,0],[0,5]],[[59021,57901,0],[0,6],[0,5]],[[59021,57912,0],[-1,4]],[[59020,57916,0],[139,-124]],[[59159,57792,0],[21,-19],[73,133]],[[59253,57906,0],[3,6],[23,41]],[[59279,57953,0],[11,3],[18,33],[13,5],[93,159],[9,3],[32,13],[168,192]],[[59623,58361,0],[125,221]],[[59748,58582,0],[8,32],[11,44],[7,35],[6,33],[11,95],[-1,47],[-15,104],[-11,41],[-16,51],[-9,22]],[[59739,59086,0],[108,27],[131,33],[36,13],[95,23]],[[60109,59182,0],[1,-1],[20,-77],[45,8]],[[60752,56534,0],[60,-16],[17,62],[74,-34],[17,-8]],[[60920,56538,0],[22,-10],[194,-105]],[[61136,56423,0],[93,-48],[66,-34],[37,-17],[41,-21],[26,-10],[55,-22]],[[61454,56271,0],[70,-19],[5,-2],[109,-23],[66,-88]],[[61704,56139,0],[-34,-118]],[[61670,56021,0],[-11,-37],[-9,-31],[-7,-28],[-1,-4]],[[61642,55921,0],[-7,-26],[-39,-139],[-2,-9],[-34,-50],[-38,-20]],[[61522,55677,0],[-48,-26]],[[61474,55651,0],[-20,-9],[-15,-7],[-13,-46],[-5,-16]],[[61421,55573,0],[-10,-41]],[[61411,55532,0],[-1,0],[-7,3]],[[61403,55535,0],[-2,-1],[-7,-5]],[[61394,55529,0],[-13,-35]],[[61381,55494,0],[-3,-15],[0,-3]],[[61378,55476,0],[-9,-27],[-16,-56]],[[61353,55393,0],[-6,-21]],[[61347,55372,0],[-25,-84],[-5,-24]],[[61317,55264,0],[-22,-77],[-2,-14]],[[61293,55173,0],[0,-34],[0,-3]],[[61293,55136,0],[-3,-19]],[[61290,55117,0],[-2,-2],[-3,-3]],[[61285,55112,0],[3,-208]],[[61288,54904,0],[-16,6]],[[61272,54910,0],[-68,28],[-37,15],[-24,10]],[[61143,54963,0],[-5,2]],[[61138,54965,0],[-27,13],[-13,6]],[[61098,54984,0],[-29,16],[-15,-32]],[[61054,54968,0],[-79,37],[-42,19],[11,20],[4,10],[-29,13],[-7,4],[-12,6]],[[60900,55077,0],[-1,0],[-50,20]],[[60849,55097,0],[-30,15],[-18,-31],[-184,83],[-331,151],[12,22],[6,12],[-20,8],[-19,8],[-18,8]],[[60247,55373,0],[-34,18],[-5,2]],[[60208,55393,0],[-1,1],[-35,13],[-3,-6],[-14,-26],[-87,41],[-64,30],[2,-21],[1,-18]],[[60007,55407,0],[-226,98],[-164,88],[-35,18],[-95,51],[-57,39],[-36,26],[-133,99],[-91,66],[-34,27],[-69,55],[-40,43],[-30,35],[-22,33],[-9,14],[-26,49],[-13,25],[-13,32],[-13,30],[-4,29],[-7,35],[-8,50],[-18,84],[-6,32],[-21,94],[-14,59],[-8,34],[-44,99],[-47,65],[-31,43],[-121,144]],[[58572,57003,0],[86,49],[211,117],[100,43]],[[58969,57212,0],[63,-41],[208,-134],[207,-51]],[[59447,56986,0],[242,-66],[164,-53]],[[60078,56796,0],[133,-36],[179,-69],[22,-9]],[[60412,56682,0],[217,-93],[123,-55]],[[60858,58608,0],[-206,80],[-62,32],[-40,32],[-34,37],[-10,15],[-13,29],[-12,31]],[[60481,58864,0],[-13,32],[-6,22],[-14,102],[-8,29],[-13,56],[-27,92],[-4,10],[-3,13],[-37,-10],[-86,267]],[[60270,59477,0],[44,13],[-17,53],[5,11],[-17,53]],[[60285,59607,0],[84,25],[2,0]],[[60371,59632,0],[134,38]],[[60505,59670,0],[245,-269]],[[60750,59401,0],[-14,-3],[7,-8],[-146,-44],[28,-73],[4,-32],[234,-300],[253,63],[14,-15],[-30,-7],[570,-544],[-13,-15],[6,-8],[-220,-214],[-178,107],[-260,210],[-49,37],[-52,29],[-46,24]],[[62895,61865,0],[160,-16],[75,-2],[44,2],[217,7],[15,0],[15,0],[15,-1],[15,-1],[15,-1],[14,-2],[15,-1],[15,-3],[15,-2],[14,-3],[46,-11],[45,-10],[10,-2],[10,-3],[10,-3],[9,-4],[10,-4],[9,-4],[10,-5],[8,-4],[9,-6],[9,-5],[8,-6],[8,-6],[8,-7],[10,-9],[11,-9],[11,-8],[11,-9],[12,-7],[12,-8],[12,-8],[50,-62]],[[63877,61642,0],[-5,-6],[-25,-35]],[[63577,61443,0],[-239,-112],[-12,-5],[-45,-21],[-24,-12]],[[63652,61038,0],[1,-1],[183,-31],[4,-1]],[[63971,60980,0],[-7,-133],[-10,-693],[17,-1],[243,-23]],[[64380,60091,0],[-37,-339],[-164,-63],[-11,-4],[-412,-191],[-30,-13],[-389,-165]],[[63337,59316,0],[-118,113],[-122,-6],[-10,1],[-137,139]],[[62950,59563,0],[11,10]],[[62961,59573,0],[-39,39]],[[62922,59612,0],[-35,34],[-13,-9]],[[62874,59637,0],[-14,-14],[-21,-21]],[[62839,59602,0],[-16,18]],[[62823,59620,0],[-20,-1],[-25,-29]],[[62778,59590,0],[-11,2],[-42,41]],[[62725,59633,0],[12,9],[1,2]],[[62738,59644,0],[-110,106]],[[62628,59750,0],[-10,14],[-16,21]],[[62602,59785,0],[-13,-2],[-34,31],[-18,-1],[-32,33],[-17,1]],[[62488,59847,0],[-25,23],[-9,7]],[[62454,59877,0],[-62,56],[-37,37],[-28,28],[-14,4],[-11,7],[-109,106],[-101,94],[-8,0]],[[62084,60209,0],[-59,58],[-21,21]],[[62004,60288,0],[8,6]],[[62012,60294,0],[-10,7]],[[62002,60301,0],[-153,149],[139,150]],[[61988,60600,0],[-78,89],[-18,14]],[[61892,60703,0],[-11,2],[-6,1]],[[61875,60706,0],[-3,0],[-4,1],[-3,2],[-3,1]],[[61862,60710,0],[-5,3],[-3,4]],[[61854,60717,0],[-2,3]],[[61852,60720,0],[-2,4],[-2,4],[0,4]],[[61848,60732,0],[-1,3],[1,3]],[[61848,60738,0],[1,10],[3,9],[4,9]],[[61856,60766,0],[-59,36],[-42,24],[-66,56],[-5,14],[-76,62]],[[61608,60958,0],[-91,77]],[[61517,61035,0],[-32,47],[23,70],[17,179],[4,34],[1,19],[8,89],[5,4],[2,76],[4,40],[82,89],[6,7],[-23,15],[31,44],[8,36],[9,19],[20,10],[41,13],[43,9],[18,0],[11,0],[10,0],[15,0],[6,45],[1,7],[42,-5],[40,-12],[18,-10],[87,94],[-7,4],[-134,58],[4,11],[-140,63],[-21,34],[-4,9],[-2,9],[-3,8],[-1,9],[-2,10],[-1,9],[-1,9],[0,9],[0,9],[1,10],[1,8],[4,12]],[[61954,62285,0],[37,-2],[31,-6],[26,-7],[81,-34],[46,-23],[56,-31],[64,-42],[112,-87],[173,-103],[66,-28],[33,-15],[46,-13]],[[62002,60301,0],[9,-6],[1,-1]],[[62012,60294,0],[-7,-6],[-1,0]],[[62004,60288,0],[80,-79]],[[62454,59877,0],[34,-30]],[[62602,59785,0],[26,-35]],[[62738,59644,0],[-13,-11]],[[62778,59590,0],[26,29],[19,1]],[[62839,59602,0],[35,35]],[[62922,59612,0],[39,-38],[0,-1]],[[62961,59573,0],[-10,-10],[-1,0]],[[63337,59316,0],[-82,-37],[-25,-12]],[[63230,59267,0],[-100,-43]],[[63130,59224,0],[-111,-50],[-21,-9]],[[62998,59165,0],[-12,-4],[-39,-15]],[[62947,59146,0],[-10,-6],[-43,-20]],[[62894,59120,0],[-31,-15],[-20,-11]],[[62843,59094,0],[-32,-15],[-79,-38]],[[62732,59041,0],[-74,-45],[-10,-6]],[[62648,58990,0],[-3,-3],[-24,-18]],[[62621,58969,0],[-45,-34],[-4,-3]],[[62572,58932,0],[-4,-4],[-91,-86]],[[62477,58842,0],[-102,-118],[-39,-44]],[[62336,58680,0],[-125,-155]],[[62211,58525,0],[-2,-4],[-9,-14]],[[62200,58507,0],[-62,-61],[-83,-85]],[[62055,58361,0],[-46,-38],[-42,-35]],[[61967,58288,0],[-275,268],[-159,155],[-228,222],[-133,129],[-177,179],[8,8],[-119,128],[19,14],[3,48]],[[60906,59439,0],[-86,97],[-29,33]],[[60791,59569,0],[-72,89],[-9,32],[-16,29],[-22,15],[37,136],[45,43],[-26,20],[-22,23],[-18,29],[-12,31],[-6,31],[-2,29],[26,250]],[[60694,60326,0],[10,37]],[[60704,60363,0],[13,15],[16,15],[6,5]],[[60739,60398,0],[48,44]],[[60787,60442,0],[28,28],[13,-12],[26,-23]],[[60854,60435,0],[17,-21],[2,3],[11,15]],[[60884,60432,0],[24,26],[67,74]],[[60975,60532,0],[194,212],[-16,11],[-3,2]],[[61150,60757,0],[205,224]],[[61355,60981,0],[10,3],[139,32]],[[61504,61016,0],[12,17],[1,1],[91,-76]],[[61856,60766,0],[-2,-6],[-3,-5],[-1,-6],[-2,-5],[0,-6]],[[61848,60732,0],[0,-3],[1,-3],[0,-1],[1,-3],[2,-2]],[[61854,60717,0],[2,-2],[3,-3],[3,-2]],[[61875,60706,0],[17,-3]],[[61988,60600,0],[-138,-150],[152,-149]],[[64591,58216,0],[-105,60],[-32,18]],[[64454,58294,0],[-87,49],[-27,17],[-94,51],[-3,2]],[[64243,58413,0],[-164,95],[-7,3]],[[64072,58511,0],[-263,154],[-174,101],[-24,14],[-67,41]],[[63544,58821,0],[-131,78],[-34,20]],[[63379,58919,0],[-52,37],[-68,57],[-9,18],[-6,15],[-4,17],[0,12],[0,3],[1,7],[1,7]],[[63242,59092,0],[1,4],[2,4]],[[63245,59100,0],[5,11],[1,2]],[[63251,59113,0],[10,16],[6,7],[10,10]],[[63277,59146,0],[5,4],[6,4]],[[63288,59154,0],[11,6],[-69,107]],[[63230,59267,0],[107,49]],[[65063,60179,0],[353,-69],[191,-37]],[[65828,60047,0],[63,-28],[70,-34],[84,-48],[63,-48],[43,-37],[48,-41],[68,-71],[34,-42],[48,-70],[21,-33],[29,-57],[15,-37],[22,-54],[49,-145],[37,-121],[58,-157],[28,-76]],[[66608,58948,0],[-131,-141],[-91,-102]],[[66386,58705,0],[-83,-87],[-60,-67],[-67,-73],[-53,-51],[-82,-68],[-67,-50],[-88,-51],[-126,-72],[-57,-19],[-64,-23],[-34,-11],[-100,-25],[-83,-13],[-90,-12],[-102,-5],[-111,3],[-123,10],[-189,47],[-82,28],[-51,17],[-83,33]],[[66502,57891,0],[-178,-187],[-109,-116],[-69,-70],[-66,-54],[-53,-50],[-293,-231],[-450,-348],[-102,-80],[-66,-50],[-84,-54],[-88,-42],[-77,-31],[-94,-23],[-75,-4],[-35,-1],[-47,0],[-28,3],[-33,4],[-30,5],[-38,10],[-42,12],[-43,15],[-34,14],[-64,33],[-45,26],[-50,31],[-61,44],[-81,66],[-147,111],[-97,78],[-75,58],[-94,68],[-85,55],[-28,15]],[[63541,57198,0],[72,91]],[[63613,57289,0],[68,217]],[[63681,57506,0],[40,35],[59,67],[28,20],[21,15],[9,-10]],[[63838,57633,0],[33,20]],[[63871,57653,0],[-10,13],[-53,61],[-16,19],[-11,12],[15,-4],[19,-19],[41,-5],[31,-3],[23,-14],[31,-19],[19,-9],[33,-3],[26,5],[2,10],[62,3],[14,-2],[5,7],[1,180]],[[64103,57885,0],[-1,16]],[[64102,57901,0],[-2,26],[-96,160],[5,34]],[[64009,58121,0],[25,-1],[1,0]],[[64035,58120,0],[108,-3]],[[64143,58117,0],[-1,88]],[[64142,58205,0],[-9,23],[12,11],[1,34],[33,42],[64,98]],[[64454,58294,0],[137,-78]],[[66386,58705,0],[90,101],[132,142]],[[66608,58948,0],[35,-103],[25,-71],[26,-84],[13,-46]],[[64142,58205,0],[0,-12],[1,-39],[0,-37]],[[64035,58120,0],[-26,1]],[[64102,57901,0],[0,-3],[1,-7],[0,-6]],[[63871,57653,0],[-8,-5],[-25,-15]],[[63681,57506,0],[-157,148],[3,15],[10,10],[-25,16],[-74,67],[-12,14],[-84,58],[-16,10],[-87,53],[-15,7],[-90,46],[-21,10],[40,69],[-58,30],[-4,-6],[-88,57],[-5,9],[-109,38],[-105,9],[-29,4],[21,171],[-35,0]],[[62741,58341,0],[-113,-38],[-43,-15]],[[62585,58288,0],[-15,-10],[-30,-18]],[[62540,58260,0],[-23,-14],[-6,-4],[-115,-72]],[[62396,58170,0],[-103,-64],[-33,-19],[-39,-13],[-32,-7],[-36,-2],[-24,5],[-15,4],[-19,6],[-26,14],[-32,20],[-43,15],[-23,-12],[-15,-4],[-17,-1]],[[61939,58112,0],[28,176]],[[61967,58288,0],[88,73]],[[62055,58361,0],[145,146]],[[62200,58507,0],[11,18]],[[62336,58680,0],[141,162]],[[62477,58842,0],[95,90]],[[62572,58932,0],[49,37]],[[62621,58969,0],[27,21]],[[62648,58990,0],[84,51]],[[62732,59041,0],[111,53]],[[62843,59094,0],[51,26]],[[62894,59120,0],[53,26]],[[62947,59146,0],[51,19]],[[62998,59165,0],[132,59]],[[63288,59154,0],[-11,-8]],[[63251,59113,0],[-6,-13]],[[63245,59100,0],[-3,-8]],[[63379,58919,0],[165,-98]],[[64072,58511,0],[171,-98]],[[63194,56789,0],[-12,-189]],[[63182,56600,0],[-1,-7],[-1,-3],[0,-13]],[[63180,56577,0],[0,-3],[5,-17]],[[63185,56557,0],[1,-9],[1,-2]],[[63187,56546,0],[3,-14],[1,-1],[8,-23],[10,-21],[13,-25],[8,-15],[10,-15],[16,-27],[3,-3],[113,-152]],[[63372,56250,0],[30,-39]],[[63402,56211,0],[19,-28],[20,-27]],[[63441,56156,0],[15,-22],[34,-52]],[[63490,56082,0],[3,-8]],[[63493,56074,0],[1,-1],[31,-61]],[[63525,56012,0],[10,-23],[17,-37],[6,-18],[2,-3]],[[63560,55931,0],[1,-3],[3,-7]],[[63564,55921,0],[9,-25],[5,-17]],[[63578,55879,0],[19,-77],[11,-49]],[[63608,55753,0],[2,-14],[1,-13]],[[63611,55726,0],[7,-78],[3,-36],[0,-18],[0,-23],[1,-6],[1,-3]],[[63623,55562,0],[1,-2],[1,-4],[2,-3],[2,-3],[4,-4],[1,-2]],[[63634,55544,0],[-89,-110],[-22,-81],[-10,-27],[-18,-53],[-12,-23],[-28,-61],[-13,-21],[-28,-45],[-39,-53],[-14,-19],[-25,-30],[-27,-30],[-84,-75],[-54,-48],[-140,-109]],[[63031,54759,0],[-50,60]],[[62981,54819,0],[-80,-81],[0,-2]],[[62901,54736,0],[-40,-24],[-9,-5],[-5,-3],[-63,-38],[-32,-20]],[[62752,54646,0],[-35,-20],[-12,-7],[-53,-30]],[[62652,54589,0],[-45,-23],[-22,-11],[-8,-4],[-21,-10]],[[62556,54541,0],[-57,-27],[-41,-18]],[[62458,54496,0],[-80,-32],[-21,-9]],[[62357,54455,0],[-88,-11],[-21,-3]],[[62248,54441,0],[-2,0],[-46,12]],[[62200,54453,0],[-67,31]],[[62133,54484,0],[-1,2],[-2,2]],[[62130,54488,0],[-34,-1],[-76,70],[-16,25],[-2,27]],[[62002,54609,0],[0,1],[4,11]],[[62006,54621,0],[4,8]],[[62010,54629,0],[2,3],[3,4]],[[62015,54636,0],[11,12],[13,7]],[[62039,54655,0],[4,77],[0,8]],[[62043,54740,0],[-46,14],[-5,2]],[[61992,54756,0],[-77,2],[-99,4]],[[61816,54762,0],[-29,-4],[-24,-3],[-86,3],[-15,3],[-26,4],[-61,14],[-43,15],[-16,5],[-27,10],[-100,49],[-99,45],[-2,1]],[[61288,54904,0],[-1,63],[-2,145]],[[61285,55112,0],[5,5]],[[61293,55136,0],[0,26],[0,11]],[[61293,55173,0],[0,3],[2,10],[10,34],[12,44]],[[61317,55264,0],[6,24],[24,84]],[[61347,55372,0],[4,16],[2,5]],[[61353,55393,0],[25,83]],[[61378,55476,0],[1,9],[2,9]],[[61394,55529,0],[9,6]],[[61403,55535,0],[8,-3]],[[61421,55573,0],[19,61],[29,15],[5,2]],[[61522,55677,0],[39,20],[7,11],[26,38],[31,114],[11,35],[6,26]],[[61642,55921,0],[8,31],[20,69]],[[61704,56139,0],[-66,87],[-108,24],[-10,3],[-66,18]],[[61454,56271,0],[-75,31],[-5,1],[-8,4],[-71,33],[-159,83]],[[61136,56423,0],[-27,15],[-167,89],[-21,9],[-1,2]],[[60920,56538,0],[-91,41]],[[60829,56579,0],[20,6]],[[60849,56585,0],[18,10]],[[60867,56595,0],[30,45]],[[60897,56640,0],[42,25]],[[60939,56665,0],[34,8]],[[60973,56673,0],[11,0],[-6,2],[-3,2],[-5,3],[-4,5],[-1,6],[0,5]],[[60965,56696,0],[52,74]],[[61017,56770,0],[34,55],[18,32],[67,96],[48,67],[20,28]],[[61204,57048,0],[-40,28]],[[61164,57076,0],[42,61]],[[61206,57137,0],[62,84]],[[61268,57221,0],[151,-92],[131,-63]],[[61550,57066,0],[74,-28],[62,-24]],[[61686,57014,0],[92,-25],[33,-9]],[[61811,56980,0],[137,-25]],[[61948,56955,0],[50,-9],[85,-16]],[[62083,56930,0],[141,-17]],[[62224,56913,0],[163,-17],[62,-7]],[[62449,56889,0],[215,-22],[182,-16],[162,-19]],[[63008,56832,0],[61,-12],[29,-6]],[[63098,56814,0],[96,-25]],[[58296,58269,0],[51,-2],[8,0],[38,0]],[[58393,58267,0],[27,0]],[[58420,58267,0],[18,0],[34,-1]],[[58472,58266,0],[27,-2],[20,-2]],[[58519,58262,0],[12,-1]],[[58531,58261,0],[5,0],[7,-2]],[[58543,58259,0],[10,-1],[1,0],[11,-3],[12,-2]],[[58577,58253,0],[12,-3],[11,-3]],[[58600,58247,0],[11,-3],[7,-2],[5,-2],[11,-4],[10,-5],[1,0]],[[58645,58231,0],[16,-7],[17,-8]],[[58678,58216,0],[7,-3],[9,-4],[16,-8],[16,-9]],[[58726,58192,0],[16,-9]],[[58742,58183,0],[8,-4],[2,-1],[6,-4],[4,-3]],[[58762,58171,0],[10,-6],[10,-7]],[[58782,58158,0],[9,-7]],[[58791,58151,0],[9,-7],[7,-6],[2,-2]],[[58809,58136,0],[8,-8]],[[58817,58128,0],[8,-7],[1,-1]],[[58826,58120,0],[8,-8],[165,-156],[3,-4]],[[59002,57952,0],[1,-1],[3,-3]],[[59006,57948,0],[1,-2],[2,-3],[1,-1],[2,-3],[0,-1]],[[59012,57938,0],[1,-1],[1,-3],[1,0],[0,-1]],[[59015,57933,0],[1,-3],[1,-1],[0,-2],[1,-2],[1,-2]],[[59019,57923,0],[0,-1],[1,-3],[0,-1]],[[59020,57918,0],[0,-1],[1,-2],[0,-3]],[[59021,57901,0],[0,-3],[0,-2]],[[59021,57896,0],[0,-1],[-1,-4]],[[59017,57880,0],[-1,-3],[-1,-2]],[[59015,57875,0],[-17,-29],[-6,-9],[-17,-34],[-25,-86],[-16,-53]],[[58934,57664,0],[-27,-101],[-11,-70],[-6,-81]],[[58890,57412,0],[4,-55],[10,-43],[11,-33]],[[58915,57281,0],[-2,-36],[-27,-27],[-131,-62],[-87,-41],[-30,-15],[-67,-44],[-38,-27],[-63,-53],[28,-36],[74,63]],[[60007,55407,0],[-15,-39]],[[59992,55368,0],[-48,-60],[-38,-48]],[[59906,55260,0],[-100,17]],[[59806,55277,0],[-24,4],[-59,11]],[[59723,55292,0],[-117,18],[-6,2],[-12,6]],[[59588,55318,0],[0,2],[-2,9]],[[59586,55329,0],[5,19]],[[59591,55348,0],[-43,11],[-30,8],[-7,1],[-4,1]],[[59507,55369,0],[-8,-10]],[[59499,55359,0],[-5,-5],[-3,-3],[-2,-1],[-12,-2]],[[59477,55348,0],[-108,17],[-52,8],[-98,16],[-70,12],[-65,11],[-76,13]],[[59008,55425,0],[-74,-2],[-34,-10],[-16,-4]],[[58884,55409,0],[-36,-21],[-26,-17],[-7,-3]],[[58815,55368,0],[-10,0],[-13,3],[-29,-22]],[[58763,55349,0],[-23,-18],[8,-10],[6,-10]],[[58754,55311,0],[3,-12]],[[58757,55299,0],[-7,-25]],[[58750,55274,0],[-7,-11],[-4,-5],[-6,-8],[-4,-4],[-3,-3],[-9,-6],[-10,-8],[-8,-4],[-5,-2],[-16,-7]],[[58678,55216,0],[-16,-8],[-11,-3],[-10,-2],[-22,-4],[-20,-2],[-9,2]],[[58590,55199,0],[-40,9]],[[58550,55208,0],[-34,7],[-21,5],[-102,39],[-5,2]],[[58388,55261,0],[-75,40],[-6,4],[-66,44]],[[58241,55349,0],[-27,19],[-35,-42]],[[58179,55326,0],[-92,-106]],[[58087,55220,0],[-3,-2],[-114,100]],[[57970,55318,0],[8,10],[-95,79]],[[57883,55407,0],[16,18],[-106,92],[68,73],[-26,22],[38,39],[-111,94]],[[57762,55745,0],[111,112],[-92,143],[-14,21],[-35,170],[-3,155],[15,153],[38,149],[58,143]],[[57840,56791,0],[58,130],[49,97]],[[57947,57018,0],[43,98],[46,94]],[[58036,57210,0],[-61,25],[148,483],[3,9]],[[58126,57727,0],[2,9],[2,9],[1,9]],[[58131,57754,0],[1,9],[1,9]],[[58133,57772,0],[0,6],[0,6],[0,6],[-1,6]],[[58132,57796,0],[-2,6],[-2,6],[-2,5]],[[58126,57813,0],[-3,6]],[[58123,57819,0],[-3,5],[-3,5]],[[58117,57829,0],[-4,5]],[[58113,57834,0],[-4,5],[-4,4]],[[58105,57843,0],[-43,84],[-11,23],[-1,3]],[[58050,57953,0],[-2,3]],[[58048,57956,0],[-3,4],[-2,2]],[[58043,57962,0],[-4,3],[-3,2],[-3,2],[-4,2],[-9,2],[-8,4]],[[58012,57977,0],[-8,4],[-154,101]],[[57850,58082,0],[187,250],[4,5],[1,1]],[[58042,58338,0],[26,-10],[27,-10],[13,-5],[45,-16],[64,-17]],[[58217,58280,0],[23,-4]],[[58240,58276,0],[19,-2],[37,-5]],[[60208,55393,0],[39,-20]],[[60247,55373,0],[57,-25],[-18,-34],[516,-234],[18,32],[29,-15]],[[60849,55097,0],[51,-20]],[[60900,55077,0],[49,-24],[-16,-30],[121,-55]],[[61098,54984,0],[40,-19]],[[61143,54963,0],[6,-2],[0,7],[123,0],[0,-58]],[[61816,54762,0],[-16,-110],[-2,-13],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,-2],[1,0],[0,-1],[1,-1],[1,0],[0,-2],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[2,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[0,-3],[42,-115],[15,-17],[-9,-5],[-71,-38],[-29,-11],[-55,-13],[-25,1],[-54,-1],[-2,-27],[-16,-2],[1,-9],[-32,-7],[-50,2],[-48,17],[7,23],[-54,12],[-1,10],[-223,59],[-51,4],[-18,-25],[-116,-165],[-35,-52],[116,-68],[86,-46],[-2,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-65,-28],[-29,-13],[6,-75],[-34,-200],[-8,-50],[-50,-299],[-9,-51],[-14,-82]],[[58073,55204,0],[14,16]],[[58179,55326,0],[35,41],[27,-18]],[[58241,55349,0],[72,-49],[75,-39]],[[58388,55261,0],[5,-3],[103,-39],[54,-11]],[[58590,55199,0],[10,-2],[19,1],[22,4],[21,5],[16,9]],[[58678,55216,0],[16,6],[13,6],[19,14],[7,7],[10,13],[7,12]],[[58757,55299,0],[-3,9],[0,3]],[[58754,55311,0],[-6,9],[-8,10],[23,19]],[[58815,55368,0],[7,2],[27,18],[35,21]],[[58884,55409,0],[51,13],[73,3]],[[59008,55425,0],[76,-14],[136,-22],[149,-25],[108,-16]],[[59477,55348,0],[14,2],[3,3],[5,6]],[[59507,55369,0],[11,-3],[73,-18]],[[59586,55329,0],[2,-11]],[[59723,55292,0],[83,-15]],[[59906,55260,0],[86,108]],[[59992,55368,0],[15,38],[-3,39],[152,-71],[16,32],[36,-13]],[[63109,54675,0],[71,64],[1,0],[8,8],[4,3],[3,3],[4,3]],[[63200,54756,0],[61,-52],[4,-3],[25,-22],[4,-3],[2,-1]],[[63296,54675,0],[32,29],[28,26]],[[63356,54730,0],[48,-46]],[[63404,54684,0],[-8,-9],[-5,-5]],[[63391,54670,0],[34,-35]],[[63425,54635,0],[12,-12]],[[63437,54623,0],[46,-45],[10,-10],[204,-186]],[[63697,54382,0],[-19,-18],[-120,-107],[-145,-112]],[[63413,54145,0],[-151,-101],[-143,-88],[-141,-87]],[[62731,53717,0],[-132,-80],[-130,-80]],[[62374,53496,0],[-95,-58],[-108,-54]],[[61947,53299,0],[-116,-25],[-122,-18]],[[61591,53248,0],[-119,2],[-114,0],[-142,7]],[[60982,53310,0],[-33,6]],[[61816,54762,0],[176,-6]],[[61992,54756,0],[51,-16]],[[62043,54740,0],[-4,-85]],[[62015,54636,0],[-5,-7]],[[62006,54621,0],[-4,-12]],[[62130,54488,0],[3,-4]],[[62200,54453,0],[48,-12]],[[62248,54441,0],[109,14]],[[62357,54455,0],[101,41]],[[62458,54496,0],[98,45]],[[62556,54541,0],[96,48]],[[62652,54589,0],[100,57]],[[62752,54646,0],[149,90]],[[62981,54819,0],[88,-105]],[[63069,54714,0],[6,-6],[3,-3],[10,-9],[21,-21]],[[59000,63486,0],[28,-34],[1,-1]],[[59029,63451,0],[42,-46],[16,12]],[[59087,63417,0],[42,28],[26,20],[26,16]],[[59181,63481,0],[18,9],[8,3]],[[59207,63493,0],[91,62],[83,57]],[[59381,63612,0],[260,-316]],[[59612,63260,0],[3,-11],[4,-12]],[[59694,62859,0],[72,-113],[11,-17]],[[59938,62594,0],[67,-35],[4,-2]],[[60009,62557,0],[18,-7],[34,-11]],[[60061,62539,0],[0,-14],[-2,-15]],[[60059,62510,0],[207,11],[36,1]],[[60302,62522,0],[29,-35],[24,-30],[-72,-61],[18,-29],[3,-31],[-12,-29],[-25,-20],[-79,-41],[-46,-27],[-20,-11],[-37,-24],[-33,-23],[-48,-34],[-91,-75],[-36,-27]],[[59877,62025,0],[0,-1],[-57,-45]],[[59820,61979,0],[-15,-12],[-15,-13]],[[59790,61954,0],[-51,-43],[-8,-8]],[[59731,61903,0],[-3,-3],[-7,-7]],[[59721,61893,0],[-98,-84],[-85,-71]],[[59538,61738,0],[22,-28],[51,-61]],[[59611,61649,0],[-149,-127]],[[59462,61522,0],[-73,-62],[-40,-31],[-96,-70],[-68,-42],[-36,-16],[-71,-22],[-34,-7],[-48,-5],[-49,-2],[-47,2]],[[58900,61267,0],[-52,8]],[[58848,61275,0],[-55,13],[-65,25],[-27,14],[-75,41]],[[58626,61368,0],[-204,153]],[[58422,61521,0],[-82,60]],[[58340,61581,0],[-274,203]],[[58066,61784,0],[-148,108]],[[57918,61892,0],[-50,34],[-33,19],[-78,39],[-48,22],[-59,25],[-66,22],[-21,4],[35,137]],[[57598,62194,0],[364,474],[0,1]],[[57962,62669,0],[21,-17],[34,41],[-13,1],[-15,1],[-14,2],[-10,2],[-11,3],[-13,5],[-15,8],[-10,7],[-13,9],[-11,11],[-7,9],[-12,15],[-97,146],[307,403],[-179,87],[-147,68],[-53,-75],[-41,31],[-18,17],[-15,19],[-10,52],[-2,28],[0,206],[-66,23]],[[57552,63771,0],[-96,32],[-17,5]],[[57439,63808,0],[-53,22],[-47,25]],[[57339,63855,0],[103,100],[7,6]],[[57449,63961,0],[11,7],[24,17],[35,19]],[[57519,64004,0],[49,27],[26,10],[57,20]],[[57651,64061,0],[42,8]],[[57693,64069,0],[43,7],[8,1]],[[57744,64077,0],[29,0],[27,0],[37,-5],[22,-3],[32,-7],[53,-13],[6,-1],[78,-19],[91,-26],[83,-30],[91,-35],[99,-41]],[[58392,63897,0],[61,-28],[6,-2]],[[58459,63867,0],[6,-4],[76,-39],[104,-62]],[[58645,63762,0],[93,-59]],[[58738,63703,0],[110,-81]],[[58848,63622,0],[43,-37],[30,-25]],[[58921,63560,0],[79,-74]],[[61517,61035,0],[-4,-6],[-9,-13]],[[61355,60981,0],[-26,-28],[-38,-41],[-141,-155]],[[60975,60532,0],[-11,-12],[-80,-88]],[[60884,60432,0],[-3,-4],[-11,-14],[-9,12],[-7,9]],[[60854,60435,0],[-24,21],[-16,14],[-21,-22],[-6,-6]],[[60739,60398,0],[-5,-4],[-18,-16],[-4,-5],[-8,-10]],[[60704,60363,0],[-3,-9],[-7,-28]],[[60694,60326,0],[-14,25],[-29,53],[-25,34],[-37,32],[-35,19],[-39,17],[-74,28],[-44,19],[-74,35],[-40,23]],[[60283,60611,0],[-35,32],[-13,17],[-21,28],[-10,26],[-14,34],[-2,18],[-4,25],[0,7],[3,70],[8,62],[0,1],[7,54],[-8,71],[-6,35],[-13,34],[-3,7],[-20,38],[-13,19],[-8,12],[-39,41],[-19,18],[-16,15],[-7,6],[-40,28],[-20,14],[-26,16],[-4,3],[-56,34],[-31,26],[0,1],[-27,21],[-17,18],[-12,13],[-8,10],[-14,17],[-5,6],[-4,7],[-17,30],[-5,18],[-7,21],[-3,18],[-2,6],[0,4],[-2,41],[-20,-20],[-35,-10],[-21,-2],[-27,1],[-18,7],[-7,2],[-16,17],[0,1],[0,10],[4,8],[1,2]],[[59538,61738,0],[183,155]],[[59721,61893,0],[10,10]],[[59731,61903,0],[59,51]],[[59790,61954,0],[30,25]],[[59820,61979,0],[57,46]],[[58126,60549,0],[-18,-19]],[[58108,60530,0],[-64,-71],[-102,-7]],[[57942,60452,0],[-1,-48]],[[57941,60404,0],[-8,-42]],[[57933,60362,0],[-23,-44]],[[57910,60318,0],[-21,2]],[[57889,60320,0],[-23,-24]],[[57866,60296,0],[-46,-36]],[[57820,60260,0],[-16,-11],[-29,-16],[-83,-29],[-59,-14]],[[57633,60190,0],[-33,-9]],[[57600,60181,0],[-18,-9]],[[57582,60172,0],[-14,-11],[-25,-30]],[[57543,60131,0],[-11,-19]],[[57532,60112,0],[-6,-23]],[[57526,60089,0],[-1,-37]],[[57525,60052,0],[-8,-57]],[[57517,59995,0],[-17,-109]],[[57500,59886,0],[-92,15]],[[57408,59901,0],[-117,14]],[[57009,59998,0],[-96,40]],[[56796,60097,0],[-102,65]],[[56694,60162,0],[-86,66]],[[56466,60364,0],[-51,53]],[[56415,60417,0],[-58,77]],[[56357,60494,0],[-21,33]],[[56310,60565,0],[-77,140]],[[56160,60905,0],[-23,102]],[[56137,61007,0],[-11,88]],[[56126,61095,0],[-16,146]],[[56110,61241,0],[-19,171],[24,139]],[[56115,61551,0],[32,67],[57,102],[3,5],[7,11],[15,25],[34,40],[31,29],[24,21],[8,6],[19,15],[3,2],[34,26],[28,15],[27,13],[52,25],[249,116],[47,22],[107,51],[18,7],[18,11],[13,11],[14,15],[12,19],[9,17],[8,20],[6,19],[0,26]],[[56990,62287,0],[0,14],[207,28]],[[57197,62329,0],[70,-344]],[[57267,61985,0],[44,-125],[59,-133],[30,-50],[28,-44],[30,-40],[35,-43],[34,-39],[49,-47],[119,-95],[68,-48],[79,-46]],[[57842,61275,0],[68,-36]],[[57910,61239,0],[85,-40]],[[57995,61199,0],[112,-45]],[[58107,61154,0],[-82,-180],[37,-15],[29,-16],[48,-38],[31,-28],[28,-34],[17,-24],[9,-15],[24,-50],[26,-65],[-41,-44],[-19,-17],[-13,-14],[-11,7],[-64,-72]],[[59325,60685,0],[-91,-203],[17,-13],[12,-10],[12,-16],[13,-23],[5,-16],[5,-17],[2,-16],[-3,-23],[-7,-49],[-6,-39],[-2,-19],[-5,-58],[-2,-50],[2,-54],[10,-78],[11,-51],[13,-48],[16,-52],[17,-48],[21,-49],[16,-36],[21,-38],[43,-72],[30,-49],[12,-23],[8,-16],[4,-15],[-1,-13],[-6,-16],[-8,-10],[-16,-10],[-16,-4],[-14,1],[-90,-115],[43,-33],[36,-29],[42,-37],[32,-34],[65,-79],[19,-26],[16,-29],[16,-35],[103,43],[19,8]],[[59748,58582,0],[-93,-165],[-32,-56]],[[59279,57953,0],[-26,-47]],[[59159,57792,0],[-12,9],[-127,115]],[[59020,57916,0],[0,2]],[[59020,57918,0],[-1,5]],[[59019,57923,0],[-2,5],[-2,5]],[[59015,57933,0],[-3,5]],[[59012,57938,0],[-2,5],[-4,5]],[[59006,57948,0],[-4,4]],[[58826,58120,0],[-9,8]],[[58809,58136,0],[-9,7],[-9,8]],[[58782,58158,0],[-10,6],[-10,7]],[[58762,58171,0],[-10,6],[-10,6]],[[58726,58192,0],[-16,8],[-16,8],[-16,8]],[[58645,58231,0],[-11,4],[-11,4],[-11,4],[-12,4]],[[58577,58253,0],[-11,2],[-12,2],[-11,2]],[[58543,58259,0],[-12,2]],[[58519,58262,0],[-47,4]],[[58472,58266,0],[-52,1]],[[58393,58267,0],[-46,-1],[-51,3]],[[58296,58269,0],[-37,4],[-19,3]],[[58217,58280,0],[-64,16],[-58,21],[-7,3],[-46,18]],[[58042,58338,0],[-7,-10],[-2,2]],[[57408,59901,0],[85,-14],[7,-1]],[[57500,59886,0],[10,61],[7,48]],[[57525,60052,0],[0,4],[1,33]],[[57532,60112,0],[5,9],[6,10]],[[57582,60172,0],[5,3],[13,6]],[[57600,60181,0],[21,6],[12,3]],[[57820,60260,0],[31,24],[15,12]],[[57889,60320,0],[18,-1],[3,-1]],[[57910,60318,0],[10,19],[13,25]],[[57933,60362,0],[3,18],[5,24]],[[57941,60404,0],[1,26],[0,22]],[[58108,60530,0],[6,6],[12,13]],[[58107,61154,0],[528,-211],[337,-126],[353,-132]],[[63777,55371,0],[-6,21],[-5,8],[-26,48]],[[63740,55448,0],[-25,27]],[[63715,55475,0],[-73,63],[-8,6]],[[63634,55544,0],[-7,10],[-4,8]],[[63623,55562,0],[-1,4],[-1,6],[0,23],[-1,17],[-2,37],[-7,77]],[[63608,55753,0],[-11,50],[-3,10],[-16,66]],[[63578,55879,0],[-5,18],[-9,24]],[[63564,55921,0],[-3,8],[-1,2]],[[63525,56012,0],[-31,62],[-1,0]],[[63490,56082,0],[-21,33],[-13,20],[-9,12],[-6,9]],[[63441,56156,0],[-20,28],[-19,27]],[[63372,56250,0],[-7,10],[-6,8],[-21,29],[-1,0],[-49,72],[-11,16],[-7,9],[-7,11],[-13,23],[-11,20],[-9,18],[-19,35],[-10,5],[-11,27],[-3,13]],[[63187,56546,0],[-1,3],[-1,8]],[[63185,56557,0],[-5,18],[0,2]],[[63180,56577,0],[0,14],[0,3],[2,6]],[[63182,56600,0],[2,10],[5,10],[7,11],[11,12],[9,7],[16,10],[12,4],[13,3],[13,1],[29,-3],[10,-3],[9,-3],[32,-12],[27,-9],[18,-6],[59,-24],[57,-24],[38,-23],[25,-6],[26,-13],[24,-12],[24,-13],[68,-40],[13,-10],[22,-14],[32,-21],[64,-47],[11,-10],[50,-41],[43,-39],[16,-14],[14,-14],[44,-41],[16,-17],[15,-15],[23,-25],[53,-58],[49,-61],[34,-52],[12,-17],[19,-31],[21,-35],[4,-9],[11,-20],[20,-39],[31,-70],[5,-12],[21,-59],[8,-30],[8,-33],[4,-17],[17,-76],[7,-33],[13,-61],[4,-23],[8,-45],[-160,-16],[-35,-5],[-71,-8],[-120,-14]],[[64042,55345,0],[-56,-6],[-52,-6]],[[63934,55333,0],[-41,-5],[-100,-11],[-16,54]],[[54851,61273,0],[-182,7],[-6,348],[0,90],[-11,87],[-16,114],[-35,247],[-104,646],[118,311],[152,415],[114,314],[131,371],[173,537],[316,15],[371,44],[321,92],[310,2],[21,0],[50,-1],[35,-275],[26,-183],[31,-152],[80,-417],[74,-454],[174,-966],[9,-150],[-13,0],[0,-28]],[[62396,58170,0],[144,90]],[[62585,58288,0],[156,53]],[[63681,57506,0],[-12,-38],[-54,-174],[-2,-5]],[[63541,57198,0],[-21,12],[-20,9],[-17,6],[-18,3],[-18,3],[-18,1],[-19,-1],[-21,-2],[-21,-5],[-16,-5],[-21,-9],[-17,-9],[-13,-9],[-12,-9],[-14,-15],[-11,-13],[-12,-18],[-7,-12],[-9,-19],[-7,-16],[-3,-12],[-3,-14],[-2,-24],[-1,-17],[-2,-50],[-24,-184]],[[63098,56814,0],[-90,18]],[[62449,56889,0],[-225,24]],[[62083,56930,0],[-135,25]],[[61811,56980,0],[-125,34]],[[61686,57014,0],[-136,52]],[[61268,57221,0],[-111,84],[-86,72],[-70,72],[-96,111],[-68,92],[-57,97],[-46,94],[-49,112],[-47,108],[-43,130],[-91,291],[-22,74],[284,-64]],[[60766,58494,0],[24,-7],[48,-15],[54,-20],[46,-23],[49,-30],[43,-31],[174,-141],[44,-32],[37,-22],[65,-41],[14,-8],[20,-10],[22,-10],[31,-15],[29,-10]],[[61466,58079,0],[23,-5],[11,-3]],[[61500,58071,0],[30,-10],[36,-9],[19,-3],[23,-4]],[[61608,58045,0],[9,-2],[13,-1]],[[61630,58042,0],[31,-1],[50,-1],[35,2],[16,4],[42,7],[42,14],[50,22],[43,23]],[[59207,63493,0],[-1,0],[-25,-12]],[[59087,63417,0],[-15,-12],[-43,46]],[[59029,63451,0],[-29,35]],[[59000,63486,0],[-31,30],[-48,44]],[[58921,63560,0],[-19,16],[-54,46]],[[58738,63703,0],[-75,48],[-12,8],[-6,3]],[[58645,63762,0],[-104,61],[-82,44]],[[58459,63867,0],[-67,30]],[[57744,64077,0],[-8,-2],[-43,-6]],[[57651,64061,0],[-82,-30],[-50,-27]],[[57519,64004,0],[-34,-19],[-36,-24]],[[57449,63961,0],[0,-1],[-26,-8],[-16,-1],[-12,0],[-9,1],[-2,2],[-19,11],[-23,20],[-40,39],[-36,40],[-36,47],[-33,99],[-4,14],[-50,132],[-3,8],[-43,82],[-49,49],[-15,16],[-19,142],[-2,14],[-15,125],[237,-15],[32,-2],[164,7],[212,22],[685,73],[307,31],[398,-725],[263,-435],[86,-136]],[[63425,54635,0],[-13,13],[-21,22]],[[63391,54670,0],[13,14]],[[63356,54730,0],[-60,-55]],[[63296,54675,0],[-7,6],[-21,17],[-68,58]],[[63200,54756,0],[-8,-7],[-5,-4],[-78,-70]],[[63109,54675,0],[-29,28],[-11,11]],[[63069,54714,0],[19,13],[65,47],[63,51],[51,43],[43,40],[49,49],[82,72],[23,34],[19,33],[25,77],[29,60],[21,48],[5,10],[19,59],[19,57],[10,18],[10,9],[17,6],[21,-2],[15,-6],[14,-17],[20,-33],[23,-88],[11,-80],[3,-18],[-6,-97],[-20,-84],[-36,-96],[-21,-36],[-8,-14],[-37,-49],[-4,-6],[-1,-2],[-11,-12],[-29,-34],[-41,-46],[-40,-42],[-54,-55]],[[63740,55448,0],[31,-57],[6,-20]],[[63934,55333,0],[108,12]],[[64042,55345,0],[120,13],[6,-183],[-25,-185],[-48,-153],[-66,-151],[-83,-114]],[[63069,54714,0],[-38,45]],[[63634,55544,0],[81,-69]],[[63715,55475,0],[23,-24],[2,-3]],[[80693,35218,0],[-58,-9],[-191,-30],[-18,-2]],[[80426,35177,0],[4,-25],[-37,-6]],[[80393,35146,0],[-4,26],[-47,-7]],[[80342,35165,0],[-149,-22],[-102,-15],[-44,-70]],[[80013,34997,0],[-68,-109]],[[79921,34856,0],[-370,-153],[-8,-58]],[[79543,34645,0],[-27,-2],[-25,-53],[-5,-141],[-7,-55]],[[79479,34394,0],[-49,-47],[-422,-94]],[[79019,34207,0],[-68,-14],[-4,3],[-189,-46],[5,-19]],[[78635,34100,0],[-66,-18]],[[78569,34082,0],[36,561],[16,253],[-6,0],[1,8],[-114,11],[2,58],[-61,4],[1,14],[-57,5],[-1,-6],[-26,1],[-4,-48],[-9,0],[0,-13],[-118,5],[-105,6],[30,195],[-1,94],[85,-2],[1,12],[38,0],[1,41],[-9,1],[1,62],[-123,6],[0,42],[-10,0],[13,44],[177,2],[0,57],[18,65],[19,-3],[-1,-12],[34,-2],[-2,35],[12,4],[-1,28],[-8,1],[3,48],[1,50],[-9,1],[0,41],[35,0],[0,-4],[89,2],[0,8],[27,6],[-1,-21],[78,1],[-2,43],[-11,48],[-7,1],[9,51],[-50,9],[-2,-17],[-80,13],[0,32],[-18,42],[-25,-13],[-33,-4],[4,-45],[-44,-3],[0,-31],[-57,0],[-3,50],[-11,0],[-2,33],[-69,-4],[2,-45],[5,-49],[33,0],[2,-48],[-6,1],[1,-53],[-51,1],[0,2],[-55,0],[0,93],[-11,0],[0,22],[41,0],[33,92],[75,18],[13,2],[75,75],[41,4],[16,24],[1,52],[60,4],[15,13],[143,23],[25,0],[0,147],[33,5],[46,8],[31,7],[3,-5],[49,1],[16,-68],[141,18],[49,6],[77,7],[82,9],[1,3],[35,3],[0,6],[156,11],[79,8],[0,6],[81,7],[1,-5],[40,3],[0,5],[56,7],[57,8],[83,13],[8,2],[7,-28],[67,13],[56,10],[83,29],[99,35],[87,28],[24,-77],[28,5],[-1,16],[40,6],[1,-5],[71,15],[14,-57],[137,27],[45,-221],[42,-220],[57,-289],[435,81],[13,-80],[69,11],[12,-75],[13,-78],[36,-230],[-17,-9],[-527,-80]],[[35398,36989,0],[32,-322],[95,-837],[61,-574],[32,-280]],[[35618,34976,0],[-58,-57],[-101,-125],[-79,-85],[-60,-55],[-80,-56],[-71,-45],[-99,-48],[-88,-32],[-84,-19],[-135,-17],[-154,-8],[-299,15],[-68,-2],[-39,-5],[-47,-14],[-35,-15]],[[34121,34408,0],[-107,-68],[-43,-42],[-800,61],[-251,118],[-240,118],[-307,31],[-494,49]],[[31879,34675,0],[27,59],[93,204]],[[32330,35155,0],[-62,27],[-130,57]],[[32054,35340,0],[34,72],[56,118],[14,30]],[[32192,35630,0],[144,-19],[136,-17],[34,-5]],[[32558,35583,0],[59,142],[49,122],[49,121],[13,30]],[[32804,36075,0],[120,102],[25,21]],[[32949,36198,0],[44,-70],[17,-28]],[[33010,36100,0],[73,-121],[16,-28]],[[33190,35834,0],[99,-3],[34,-1]],[[33498,35845,0],[46,62],[20,26]],[[33564,35933,0],[35,57],[70,112],[17,27]],[[33708,36205,0],[-24,99],[-8,32]],[[33676,36336,0],[-63,118],[-15,29]],[[33584,36510,0],[-82,136],[-17,28]],[[33485,36674,0],[130,-12],[34,-4]],[[33649,36658,0],[14,13]],[[33663,36671,0],[103,105],[24,23]],[[33894,36959,0],[66,-34],[29,-16]],[[34019,36945,0],[95,-42],[31,-14]],[[34355,36820,0],[12,92],[5,32]],[[34449,36920,0],[33,-10],[130,-42],[89,-28]],[[34740,36828,0],[33,9],[67,19]],[[34840,36856,0],[33,9],[131,38],[132,38],[91,27]],[[35267,36901,0],[28,18],[103,70]],[[36604,32830,0],[-6,-45],[-5,-49]],[[36556,32563,0],[-100,-65],[-24,-16]],[[34996,32148,0],[-35,-30]],[[34961,32118,0],[-106,296],[-3,8],[-82,264],[-8,26],[-215,569],[-12,30],[-24,65],[-83,217],[-270,717],[-37,98]],[[35618,34976,0],[50,39],[40,25],[51,18],[49,11],[39,4],[139,0],[348,-63],[134,-14],[256,-33],[69,-10],[52,-20],[41,-18],[40,-25],[24,-22],[28,-39],[14,-23],[11,-39]],[[34961,32118,0],[-136,-113]],[[33875,30653,0],[-404,241],[-84,50],[-512,332],[-594,371],[-203,125],[-40,25]],[[32045,33383,0],[-111,307],[-58,163]],[[33875,30653,0],[-87,-98]],[[33788,30555,0],[-170,-187],[-45,-49]],[[33573,30319,0],[-15,0],[-29,0]],[[33529,30319,0],[-619,24]],[[32910,30343,0],[-301,13]],[[32609,30356,0],[-450,16],[-165,71]],[[31994,30443,0],[-204,86]],[[31790,30529,0],[-175,38],[-136,-20],[-74,-21]],[[31405,30526,0],[-168,-49],[-161,-44],[-246,-222]],[[30830,30211,0],[-91,-266]],[[30739,29945,0],[4,-236]],[[30743,29709,0],[46,-276],[9,-45]],[[30798,29388,0],[18,-111],[23,-102]],[[30839,29175,0],[-705,177],[-61,17],[-507,131]],[[29950,32015,0],[13,2],[34,6]],[[80147,18235,0],[22,-51],[8,-19]],[[80186,17791,0],[-30,-34],[-10,-11]],[[79979,17606,0],[20,-30]],[[79914,17530,0],[-2,-1],[-81,-42]],[[79619,17174,0],[22,-8],[33,-13]],[[79781,17132,0],[52,-3],[4,0]],[[80043,17158,0],[33,12],[33,13]],[[80109,17183,0],[30,15],[31,16]],[[80181,17215,0],[17,13],[41,29]],[[80341,17351,0],[5,6],[106,133]],[[80452,17490,0],[18,23],[126,159],[63,78],[134,169]],[[81303,18062,0],[-8,-105],[-17,-7],[-16,-7],[-11,-6],[-11,-7],[-12,-11],[-6,-14],[-6,-18],[-22,-79],[-18,-77],[-23,-79],[-14,-38],[-27,-72],[-18,-37],[-76,-135],[-32,-40],[-50,-64],[-52,-59],[-161,-175],[-56,-58],[-52,-59],[-51,-60],[-125,-167],[-116,-154],[-14,-27],[-6,-14],[-7,-19],[-266,-145],[10,10],[12,14],[11,22],[5,23],[7,57],[-35,-30],[-29,-18],[-12,-7],[-34,-14],[-32,-11],[-28,-8],[-29,-6],[-23,-3],[-29,-4],[-24,-1],[-118,-6],[-249,-16],[-225,-13],[-125,-4],[-65,-20],[-82,4]],[[78936,16298,0],[-7,79],[-5,55]],[[78924,16432,0],[-37,421],[-53,257],[-111,392],[-26,80],[-35,88],[-64,125],[-82,138],[-255,304],[-216,242],[-59,61],[-73,80],[-139,150],[-113,123]],[[77661,18893,0],[123,156]],[[66906,53469,0],[182,-33]],[[67857,52170,0],[-16,-35],[-184,-395]],[[67572,51779,0],[-11,-37],[-13,-44]],[[67529,51707,0],[-75,36],[-202,95]],[[67149,51887,0],[-95,45],[-167,80],[-58,27],[-253,121]],[[66576,52160,0],[-49,12],[-42,10]],[[66485,52182,0],[-41,-2],[-54,-2]],[[66251,52111,0],[-33,-40],[-19,-22]],[[66165,51949,0],[0,-25],[1,-33]],[[66251,51731,0],[24,-21],[11,-10]],[[66286,51700,0],[16,-8],[15,-8]],[[66317,51684,0],[21,-11],[109,-51]],[[66447,51622,0],[-16,-30],[-26,-49]],[[66286,51321,0],[-289,-130],[-1,-10]],[[65988,51122,0],[-18,-90]],[[65970,51032,0],[-10,5],[-46,21],[-58,27]],[[65800,50998,0],[-5,-8],[-38,-60]],[[65757,50930,0],[-7,3],[-5,2]],[[65504,51051,0],[-1,1],[-11,10]],[[65492,51062,0],[0,1],[-2,28]],[[65490,51091,0],[-5,21],[-2,8]],[[65475,51144,0],[-4,6],[-5,7]],[[65134,51587,0],[-40,58],[-19,31],[-73,119]],[[64969,51974,0],[0,9],[5,38],[9,42],[9,30],[0,1]],[[65062,52258,0],[17,30],[12,22]],[[65137,52377,0],[23,30],[45,60]],[[65205,52467,0],[32,40],[11,13]],[[65248,52520,0],[4,5],[19,20]],[[65271,52545,0],[24,20],[13,9]],[[65308,52574,0],[16,10],[16,11]],[[65382,52616,0],[16,6],[13,5]],[[65411,52627,0],[45,11],[148,39]],[[65757,52717,0],[41,9],[59,14]],[[66290,53238,0],[24,17],[29,20]],[[66343,53275,0],[6,3],[68,45],[21,13]],[[71619,52624,0],[3,-53],[7,-105],[15,-230]],[[71327,52294,0],[-177,-82],[-40,-19]],[[70749,51966,0],[-108,-274],[-24,-62]],[[70732,51044,0],[1,-172]],[[70741,50837,0],[15,-60],[14,-59]],[[71153,50165,0],[16,-20],[111,-134]],[[71880,49564,0],[3,-24]],[[71279,49186,0],[-97,92],[-6,7]],[[71176,49285,0],[-18,14],[-71,60]],[[69981,49705,0],[-31,0],[-6,0]],[[69855,52385,0],[-56,16]],[[70335,52917,0],[37,43],[7,10]],[[70379,52970,0],[44,-9],[22,1],[20,19],[33,0],[43,14],[17,11],[9,1],[84,12],[26,5],[73,17],[3,11],[41,-10],[18,0],[17,26],[78,21],[37,6],[68,3],[30,6],[13,2],[12,-9],[18,-3],[16,-7],[77,-40],[11,-31],[37,11],[50,-30],[-5,-5],[21,-26],[21,-28],[3,-6],[3,-20],[31,-57],[30,-27],[38,-4],[29,2]],[[78505,71168,0],[63,11],[65,11],[37,6],[129,24],[132,24],[154,28],[17,3]],[[79102,71275,0],[293,52],[232,42],[195,34],[55,10],[178,31],[26,4],[26,5],[126,22],[76,13],[115,20],[151,26],[32,5]],[[80607,71539,0],[120,21],[21,4]],[[80748,71564,0],[-1,-27],[-1,-168]],[[80802,70981,0],[2,-31]],[[80701,70955,0],[-53,14],[-19,5]],[[80629,70974,0],[-41,11]],[[80454,71021,0],[-8,3],[-37,10]],[[80409,71034,0],[-62,-27],[-20,68],[-37,146],[-243,-49],[-48,-15],[-30,-5],[-34,-4],[12,-138],[36,-14],[117,-79],[36,4],[81,30],[-59,-26]],[[79931,71010,0],[-9,5],[-62,33],[-15,9]],[[79845,71057,0],[-59,17],[-5,2]],[[79781,71076,0],[-54,4],[-54,4]],[[79605,71106,0],[-179,-18]],[[79426,71088,0],[-57,-107],[-70,-133]],[[79097,70585,0],[-6,7],[-16,15]],[[78948,70579,0],[-54,-59],[-12,-12],[-22,-24]],[[78748,70410,0],[-9,-3],[-144,-48],[-144,-48],[-51,-16]],[[78400,70295,0],[-79,-53]],[[78321,70242,0],[-170,270],[-105,-57],[-148,-86],[-36,-12],[-139,29],[-318,83],[-75,14],[-88,4],[-44,-2],[-37,-3],[-50,-23],[-34,-21],[-35,-25],[-37,-28],[-28,-32],[-54,39]],[[76923,70392,0],[50,33],[37,27],[65,41],[44,21],[32,11],[162,55],[24,100],[188,-20],[34,0],[83,33],[69,39],[57,36],[30,27],[33,48],[37,61],[28,55],[88,203],[49,106],[23,63],[22,55],[12,68],[37,-22]],[[78127,71432,0],[-4,-30],[-6,-49],[-6,-45]],[[78106,71099,0],[196,34],[-31,-16],[-121,-65],[-97,-51],[-65,56],[-57,-125],[-18,-42],[-24,-48],[-28,-39],[-51,-63],[-24,-23],[-40,-30],[-53,-33],[-55,-20],[-73,-15],[-15,-112],[300,-83],[266,146],[254,134],[131,81],[-18,26],[-181,322],[152,27],[20,3],[31,5]],[[78716,70850,0],[-17,25],[-123,-62],[-2,-22],[7,-12],[20,-4],[119,60],[4,2],[-8,13]],[[79482,71146,0],[129,-35],[68,100],[-106,57],[-91,-122]],[[78801,70832,0],[323,-180],[74,113],[253,396],[-56,32],[-341,-188],[-267,-144],[14,-29]],[[77970,70055,0],[-46,20],[397,167]],[[78282,70215,0],[-191,-129],[-79,-49]],[[78321,70242,0],[-39,-27]],[[61231,37943,0],[27,-33]],[[61258,37910,0],[38,-15]],[[61249,37796,0],[-39,5],[-188,22]],[[60414,37544,0],[-14,-16],[-56,-60]],[[60206,37227,0],[-13,-31]],[[60193,37196,0],[-18,-51]],[[60149,37048,0],[-7,-43]],[[60142,37005,0],[-8,-69]],[[60133,36816,0],[-2,-81]],[[60131,36735,0],[-1,-69]],[[60130,36666,0],[-3,-99]],[[60128,36549,0],[-2,-105]],[[60126,36444,0],[-87,-2]],[[75736,37789,0],[0,-1],[-56,-36],[-20,-13],[-68,-43],[-7,-5],[-32,-49],[-51,-79]],[[75095,37884,0],[-13,10]],[[75082,37894,0],[-11,8]],[[75071,37902,0],[-63,46]],[[74746,38129,0],[1,65],[-138,35],[-11,2],[-14,4],[-5,1],[-43,23],[-7,3],[-67,35],[-56,29],[-5,3],[-19,11]],[[74464,38410,0],[164,80]],[[74801,38577,0],[2,11],[20,10]],[[74823,38598,0],[41,20]],[[74864,38618,0],[196,97]],[[75064,38735,0],[13,9],[16,4]],[[75114,38741,0],[77,41],[49,20]],[[75381,38932,0],[-5,23]],[[75376,38955,0],[51,26],[16,-55]],[[75552,35206,0],[-21,-3],[-8,4],[-4,0],[-73,7],[3,18]],[[75449,35232,0],[9,46],[27,130]],[[75485,35408,0],[5,23]],[[75490,35431,0],[14,74],[5,21],[-100,91],[-103,90],[-71,62],[-126,116],[-23,23],[-34,32],[-90,83],[-40,38],[-28,28],[-24,22],[-4,4],[-41,44],[-30,30],[-230,40],[-134,23],[-52,9],[-44,8],[-21,3],[-9,1],[8,7],[3,8],[59,144],[29,74],[25,64],[1,2],[31,79],[14,38],[11,28],[62,-17],[290,-76],[110,-30],[83,-22],[195,-49],[16,-4],[1,0],[22,-6],[58,-15],[36,-10],[12,-3],[25,-7],[72,-19],[2,0],[36,-10],[74,-20],[13,-3],[12,-3],[87,-36],[12,-8],[16,-16],[19,-17],[234,-213],[175,-162],[4,-222],[120,-41],[2,-3],[9,-5],[6,-9],[2,-11],[-7,-77],[-6,-9],[-9,-6]],[[76268,35587,0],[-21,-4],[-64,-6]],[[76183,35577,0],[6,-8],[16,-38],[3,-8],[-52,-20],[-38,-14],[-18,-12],[-11,-21],[-2,-19],[-39,-13],[-16,-4],[-9,15],[-5,15],[-20,17],[-17,9],[-22,2],[-17,-3],[-18,-3],[-20,-3],[-20,-8],[-11,-5],[-19,-11],[-21,-17],[-11,-10],[-5,-7],[-40,-45],[-60,-65],[-42,-46],[-12,-13],[-14,-12],[-17,-9],[-10,-4],[-13,-4],[-16,-4],[-24,-2],[-2,2],[-15,-3]],[[34170,30287,0],[-80,-175],[-32,-72]],[[34058,30040,0],[-9,-15],[-63,-118]],[[33986,29907,0],[-25,-40],[-5,-7],[-1,-3]],[[33955,29857,0],[-4,-5]],[[33951,29852,0],[-6,-8],[-6,-8],[-5,-9]],[[33934,29827,0],[-3,-3],[-4,-5]],[[33927,29819,0],[-6,-8],[-2,-4],[-4,-3],[-5,-8]],[[33910,29796,0],[-7,-7],[-5,-8]],[[33898,29781,0],[-7,-6],[-6,-9]],[[33885,29766,0],[-6,-6],[-6,-7]],[[33873,29753,0],[-7,-8]],[[33866,29745,0],[-6,-7]],[[33860,29738,0],[-7,-6],[-4,-5],[-2,-3]],[[33847,29724,0],[-7,-6],[-7,-7]],[[33833,29711,0],[-7,-7],[-6,-7]],[[33820,29697,0],[-8,-6],[-13,-13]],[[33799,29678,0],[-7,-6]],[[33792,29672,0],[-8,-7]],[[33784,29665,0],[-8,-7],[-7,-7]],[[33769,29651,0],[-8,-7]],[[33761,29644,0],[-7,-5]],[[33754,29639,0],[-7,-7]],[[33747,29632,0],[-8,-5],[-7,-6]],[[33732,29621,0],[-8,-6]],[[33724,29615,0],[-8,-6]],[[33716,29609,0],[-8,-6]],[[33708,29603,0],[-8,-6]],[[33700,29597,0],[-8,-5],[-7,-6]],[[33685,29586,0],[-4,-3]],[[33681,29583,0],[-4,-2]],[[33677,29581,0],[-8,-6]],[[33669,29575,0],[-8,-5]],[[33661,29570,0],[-9,-7]],[[33652,29563,0],[-7,-6],[-8,-6],[-7,-8]],[[33630,29543,0],[-7,-6],[-7,-6],[-5,-6]],[[33611,29525,0],[-1,-2]],[[33610,29523,0],[-7,-7]],[[33603,29516,0],[-6,-7]],[[33597,29509,0],[-7,-7]],[[33590,29502,0],[-6,-7],[-6,-8]],[[33578,29487,0],[-5,-7]],[[33573,29480,0],[-6,-8]],[[33567,29472,0],[-6,-8]],[[33561,29464,0],[-5,-8]],[[33556,29456,0],[-5,-7]],[[33551,29449,0],[-5,-9]],[[33546,29440,0],[-5,-7]],[[33541,29433,0],[-4,-7]],[[33537,29426,0],[-1,-3]],[[33536,29423,0],[-5,-9]],[[33531,29414,0],[-5,-8]],[[33526,29406,0],[-4,-8]],[[33522,29398,0],[-4,-10]],[[33518,29388,0],[-4,-8]],[[33514,29380,0],[-4,-8],[-3,-10]],[[33507,29362,0],[-4,-8],[-3,-10]],[[33500,29344,0],[-3,-9]],[[33497,29335,0],[-3,-9]],[[33494,29326,0],[-3,-9],[-2,-9],[-2,-9]],[[33487,29299,0],[-2,-10]],[[33485,29289,0],[-3,-16]],[[33482,29273,0],[-2,-11]],[[33480,29262,0],[-2,-9]],[[33478,29253,0],[0,-4]],[[33478,29249,0],[-1,-6]],[[33477,29243,0],[-1,-8]],[[33476,29235,0],[-1,-10],[-1,-9],[0,-9]],[[33474,29207,0],[0,-10]],[[33474,29197,0],[0,-9]],[[33474,29188,0],[0,-9]],[[33474,29179,0],[0,-10]],[[33474,29169,0],[1,-9],[0,-10]],[[33475,29150,0],[1,-9]],[[33476,29141,0],[1,-9]],[[33477,29132,0],[1,-9]],[[33478,29123,0],[3,-10],[2,-11],[-1,-12],[0,-1]],[[33482,29089,0],[-10,-12],[-6,-9],[-6,-6],[-7,-7],[-8,-6],[-9,-4],[-60,-23],[-150,-81],[13,22],[1,9],[-3,11],[-27,35],[-54,53],[-62,50],[-43,27],[-67,39],[55,77],[28,-20],[40,51],[148,30],[-16,48],[-121,-22],[-436,-41],[-14,169]],[[32665,29501,0],[102,17],[-16,95],[-42,-5],[-56,-3],[-18,-1]],[[32635,29604,0],[-21,-1],[-146,5],[-217,35],[-48,7],[-44,5],[-10,1],[-10,0],[-10,0],[-10,0],[-10,-1],[-17,0],[-10,-1],[-12,-2],[-10,-1],[-10,-1],[-9,-2],[-10,-1],[-10,-2],[-10,-3],[-9,-2],[-10,-2],[-9,-3],[-10,-2],[-9,-3],[-10,-3],[-9,-3],[-9,-4],[-39,-17],[-8,-5],[-8,-4],[-9,-5],[-10,-6],[-8,-5],[-8,-5],[-8,-7],[-8,-6],[-8,-5],[-7,-6],[-8,-6],[-7,-7],[-7,-7],[-8,-6],[-7,-7],[-7,-7],[-6,-7],[-7,-8],[-6,-7],[-6,-7],[-17,-14]],[[31726,29445,0],[-10,-7],[-6,-8],[-4,-8],[-5,-9],[-5,-9],[-4,-8],[-4,-9],[-4,-8],[-4,-8],[-4,-10],[-3,-8],[-3,-9],[-4,-10],[-2,-9],[-3,-9],[-3,-9],[-2,-9],[-2,-9],[-2,-9],[-2,-10],[-1,-9],[-2,-8],[-60,-38],[-195,-92],[-191,-82],[-11,51],[-19,109],[-102,-19],[-230,-7]],[[30839,29175,0],[-23,103],[-18,110]],[[30798,29388,0],[-18,44]],[[30768,29556,0],[-25,153]],[[30743,29709,0],[0,10]],[[30743,29719,0],[-4,226]],[[30774,30048,0],[56,163]],[[30830,30211,0],[243,228],[23,1],[141,38],[168,48]],[[31405,30526,0],[74,22],[16,2],[120,18],[175,-39]],[[31790,30529,0],[97,-41],[107,-45]],[[32609,30356,0],[123,-5]],[[32732,30351,0],[178,-8]],[[33529,30319,0],[44,0]],[[33573,30319,0],[215,236]],[[33875,30653,0],[386,-120],[-91,-246]],[[33482,29089,0],[9,-15],[3,-10]],[[33505,29036,0],[4,-9],[3,-9]],[[33516,29009,0],[5,-9],[4,-9]],[[33530,28982,0],[5,-8],[5,-9],[5,-9]],[[33550,28948,0],[6,-8],[5,-9]],[[33567,28923,0],[6,-8],[6,-8]],[[33591,28891,0],[7,-7],[6,-8]],[[33604,28876,0],[7,-7],[8,-8]],[[33619,28861,0],[6,-7],[8,-7],[7,-8]],[[33640,28839,0],[7,-6],[7,-7],[8,-7]],[[33662,28819,0],[8,-6],[8,-6],[8,-7]],[[33695,28794,0],[7,-6],[9,-6]],[[33711,28782,0],[9,-5],[8,-6],[9,-5],[9,-5],[8,-6]],[[33763,28750,0],[10,-4],[9,-6]],[[33782,28740,0],[9,-4],[9,-4]],[[33810,28727,0],[9,-3],[9,-4],[1,-1],[36,-71],[33,-69]],[[34029,28317,0],[8,-11],[-1,-18]],[[34015,28232,0],[2,-22]],[[31362,27074,0],[-296,685],[-102,76],[-18,16],[-32,106],[-50,158],[14,185],[35,397],[-74,478]],[[46706,26826,0],[-22,-10],[-2,-1]],[[46634,26792,0],[-8,-3],[-40,-14]],[[46586,26775,0],[-26,-11],[-25,-9]],[[46535,26755,0],[-31,-10],[-20,-7]],[[46278,26681,0],[-19,-4],[-44,-12]],[[46120,26641,0],[-34,-10],[-27,-7]],[[45951,26596,0],[-58,-15],[-9,-2]],[[45884,26579,0],[-17,-5],[-113,-30]],[[45526,26540,0],[-17,6],[-20,7]],[[45380,26632,0],[8,22],[8,22]],[[45396,26676,0],[2,34],[0,4]],[[45394,26747,0],[-14,31],[-2,5]],[[45378,26783,0],[-1,2],[-18,24]],[[45359,26809,0],[-12,27],[-11,24],[-76,170]],[[45260,27030,0],[15,44],[10,32]],[[45285,27106,0],[5,22],[9,46]],[[45299,27174,0],[10,74],[3,25]],[[45328,27399,0],[1,12],[12,78]],[[45341,27489,0],[9,64],[1,11]],[[45351,27564,0],[2,14],[11,79]],[[45364,27657,0],[2,42],[0,12]],[[45363,27755,0],[-2,13],[-5,33]],[[45356,27801,0],[-7,25],[-2,6]],[[45347,27832,0],[-5,20],[-8,38]],[[45318,27971,0],[-2,13],[-4,31]],[[45312,28015,0],[-3,27],[-3,26]],[[45306,28068,0],[-1,22],[-1,20]],[[45308,28264,0],[5,32],[5,28]],[[45335,28404,0],[44,31],[35,48],[31,66],[20,161],[17,118],[21,96],[45,57],[50,40],[130,60],[98,42],[93,19],[35,-1],[25,-16],[17,-23],[5,-31],[-19,-87],[0,-74],[25,-167],[0,-61],[-3,-103],[-46,-119],[460,25],[79,5],[40,2],[46,6],[70,9],[10,3],[10,5],[34,19],[38,22],[28,15],[48,19],[23,8],[28,7]],[[45950,31504,0],[0,-89]],[[45950,31415,0],[-34,0],[-38,2],[-13,0],[0,-25],[-20,4],[-69,11],[-17,0],[-10,-3],[-17,3],[0,4],[-5,0],[-53,6]],[[45674,31417,0],[-65,-16]],[[45609,31401,0],[-70,5]],[[45539,31406,0],[-18,-16],[-11,-8],[-15,-3],[-12,-37],[-3,-11],[12,-2],[1,-4],[5,-13],[-3,-33],[-5,-46],[-3,-14],[-7,-15],[-15,-12],[-20,-5],[-20,-4],[-11,2],[-5,-14],[5,-2],[2,-29],[-3,-23],[-8,-36],[-6,-10],[1,-25],[13,-28],[13,-13],[32,-17]],[[45458,30988,0],[-13,-22]],[[45445,30966,0],[-28,14]],[[45417,30980,0],[-11,0],[-11,-3],[-33,-13],[-17,1],[-12,0]],[[45333,30965,0],[-26,-11]],[[45307,30954,0],[-23,-2],[-24,7]],[[45260,30959,0],[-53,11]],[[45207,30970,0],[-28,6]],[[45179,30976,0],[-51,17],[-5,4]],[[45123,30997,0],[-50,8]],[[45073,31005,0],[-56,6]],[[45017,31011,0],[-22,6],[-60,6],[-18,5],[-14,3],[-27,2],[-3,11],[-2,45],[-16,0]],[[44855,31089,0],[-16,0],[-66,-1]],[[44773,31088,0],[-8,0],[-169,7],[1,-18],[-61,-1]],[[44536,31076,0],[0,15],[9,70],[2,22],[10,86],[43,119],[52,89],[20,-10],[9,24],[28,16],[25,24],[20,31],[123,77],[97,62],[158,101],[10,0],[35,18],[98,52],[75,39],[11,6],[125,66],[139,53],[130,52],[48,17],[122,32],[49,12],[-2,-40],[0,-23]],[[45972,32086,0],[-1,-28],[-3,-56],[-1,-33],[-5,-135],[-12,-330]],[[45950,31415,0],[0,-30]],[[45971,31103,0],[59,-126],[54,-110],[20,-41],[29,-60]],[[46133,30766,0],[36,-44],[31,-39],[-49,-78],[-9,-15],[-142,65],[-37,-79],[-32,-69],[-149,55],[-4,-15],[-72,-20],[-15,-1],[-9,1],[-70,35],[-40,14],[-26,-107],[20,-59],[-12,-88],[-9,-51],[-13,-65],[-132,-13],[-18,6],[-27,-36],[-50,18],[-41,12],[-9,3],[-62,10],[-74,13],[-46,19],[-21,3],[-48,27],[-5,19],[-34,34],[-37,26],[-134,94],[-82,61],[-38,41],[-37,41],[1,10],[-3,2],[-5,3],[-3,0],[-9,-1],[-11,16],[-29,56],[-3,18],[-16,82],[-11,131],[-11,161],[-1,14]],[[44773,31088,0],[64,1],[18,0]],[[45017,31011,0],[45,-4],[11,-2]],[[45123,30997,0],[4,-4],[46,-15],[6,-2]],[[45179,30976,0],[10,-2],[18,-4]],[[45207,30970,0],[49,-11],[4,0]],[[45307,30954,0],[14,5],[12,6]],[[45417,30980,0],[12,-6],[16,-8]],[[45445,30966,0],[8,13],[5,9]],[[45539,31406,0],[19,-1],[51,-4]],[[45609,31401,0],[29,7],[5,1],[31,8]],[[63383,42197,0],[-51,-227],[-15,-71]],[[63245,41561,0],[-13,-65],[-19,-94]],[[63567,40859,0],[-10,-76]],[[62972,40556,0],[0,-30],[0,-10]],[[61628,41325,0],[-1,131]],[[61627,41493,0],[1,36]],[[62611,42659,0],[76,84],[35,39]],[[66360,41451,0],[86,-171]],[[66446,41280,0],[47,-93]],[[66493,41187,0],[47,-131]],[[66623,40850,0],[39,-93]],[[66738,39934,0],[-70,-7]],[[66370,39896,0],[-31,-3],[-112,-20]],[[66005,39813,0],[-79,-28]],[[65895,39773,0],[-142,-56]],[[65656,39681,0],[-112,-42],[-105,-38]],[[65439,39601,0],[-165,-63]],[[64302,39464,0],[-73,35]],[[64302,39858,0],[153,229],[39,58]],[[64550,40226,0],[25,42],[21,6],[21,0],[14,24]],[[64821,41325,0],[-30,-1],[-166,-6]],[[64638,42568,0],[9,0],[137,-7]],[[64948,42557,0],[49,-6],[24,-3]],[[65144,42516,0],[58,-27],[30,-13]],[[65562,42286,0],[65,-42],[30,-18]],[[66148,41913,0],[18,-35]],[[66249,41694,0],[35,-79],[17,-36]],[[66301,41579,0],[9,-21]],[[57141,14485,0],[-2,34],[0,36]],[[57034,14700,0],[23,161],[-16,71],[-102,35],[31,123],[80,-21],[43,-16],[124,-59],[26,16],[28,-14],[15,-24],[28,-77],[19,-44],[-4,-40],[10,-35],[-7,-51],[5,-41],[-5,-87],[11,-89]],[[60115,32206,0],[9,-103]],[[59541,29925,0],[-110,-31],[-62,-18]],[[59399,29360,0],[60,-141]],[[59459,29219,0],[60,-138]],[[58407,31284,0],[28,24],[45,38]],[[58973,31493,0],[46,-27],[57,-35]],[[59025,32037,0],[-15,40],[-23,59]],[[59164,32193,0],[6,2],[17,6]],[[59187,32201,0],[0,8],[2,30]],[[59237,32412,0],[221,22],[31,3]],[[59568,32488,0],[24,19]],[[60284,60079,0],[20,-29],[-32,-20],[46,-58],[62,-77],[422,-456],[-52,-38]],[[60505,59670,0],[-32,-8],[-65,-19],[-37,-11]],[[60371,59632,0],[-86,-25]],[[60285,59607,0],[-49,-12],[12,-37],[22,-81]],[[60481,58864,0],[-201,-55]],[[60175,59112,0],[-30,79],[-36,-9]],[[59325,60685,0],[43,-9],[26,2],[25,2],[36,8],[58,18],[139,58],[32,11],[21,3],[26,1],[62,-4],[31,-2],[28,-148],[8,-33],[4,-13],[11,6],[3,10],[132,-144],[-9,-6],[93,-103],[38,-47],[25,-34],[46,-55],[81,-127]],[[53746,14609,0],[22,54],[64,90],[-50,54],[-53,53]],[[53729,14860,0],[-16,11],[-55,38],[-55,37]],[[53603,14946,0],[-36,-58],[-40,-65]],[[53396,14864,0],[-21,3],[-20,2],[-32,1],[-5,11],[0,10]],[[53244,14960,0],[-87,8],[4,-93]],[[53161,14875,0],[-39,4],[-135,-11],[-151,-27],[-169,-41],[-82,-38]],[[52585,14762,0],[-187,56],[16,142],[46,128],[-356,116]],[[52104,15204,0],[45,15],[17,152],[-31,94],[-29,131],[10,117],[39,135],[11,189],[-1,91],[116,70],[88,80],[79,38],[33,-23],[45,32],[87,93],[100,38],[78,-4],[159,76],[78,22],[86,21],[75,66],[126,106],[77,77],[28,69],[31,54],[115,157],[156,101],[110,24],[28,-3],[21,6],[48,31],[1,9],[8,177],[150,1],[59,-9],[56,2],[118,-50],[70,-30],[55,-3],[33,64],[79,9],[65,35],[83,-5],[39,-16],[50,-32],[80,-106],[56,-28],[-55,-71],[23,-54],[25,-54],[20,-33],[8,-58],[9,-24],[6,-79],[16,-84],[30,-108],[-8,-174],[6,-43],[-5,-52],[7,-41],[-8,-104],[6,-65],[-14,-54],[-63,-136],[-44,-100],[-68,-85],[-40,-66],[-39,-51],[-80,-77],[-25,-30],[-92,-126],[-23,-37],[-6,-112],[-84,-4],[58,-118],[-23,-42],[-88,111],[-45,38],[-25,-82],[-42,-99],[-49,38],[-56,-55],[-252,-314],[27,-16],[60,-56],[-71,-135],[-104,-121]],[[54002,13933,0],[-3,29],[-14,95],[-11,87],[-10,82],[-9,73]],[[53945,14371,0],[-10,66],[-6,51]],[[53929,14488,0],[148,-11],[105,169],[155,-125],[48,-65],[50,20],[102,-81],[32,-331],[-24,-61],[-33,34],[-56,-141],[-21,-111],[-63,-216],[-62,-143],[-56,93],[45,172],[-40,29],[-44,34],[-35,18],[-21,18],[-32,23],[-23,17],[-60,39],[-40,12],[-1,31],[-1,21]],[[52585,14762,0],[-24,-9]],[[52561,14753,0],[-80,-42],[-20,-10]],[[52461,14701,0],[-127,-94],[-12,-8]],[[52322,14599,0],[-9,-9],[-74,-74]],[[52239,14516,0],[-80,-109],[-16,-20]],[[52066,14231,0],[-6,-17],[-29,-81],[-16,-53]],[[52006,14026,0],[-4,-25],[-28,-142]],[[51974,13859,0],[-15,-51],[-17,-52],[-46,-78]],[[51896,13678,0],[-44,-54],[-87,-67]],[[51765,13557,0],[-178,-119],[-4,-3],[-81,-54]],[[51502,13381,0],[-32,9],[-8,10],[-34,18],[-19,-2],[-15,-3]],[[51394,13413,0],[-4,10],[-2,9]],[[51388,13432,0],[-12,-4],[-28,-13],[-32,-16],[-7,-6],[-22,-18]],[[51287,13375,0],[-3,-2],[-21,-15]],[[51263,13358,0],[-18,-20],[-9,-11],[-5,-8],[-34,-56],[-169,64],[-118,-46],[-29,12],[-2,-4],[-26,10],[-7,2],[18,49],[24,55],[-71,32],[-10,4],[-33,16],[-119,-18],[-20,22],[-151,27],[-35,1],[-164,22],[-643,71]],[[49642,13582,0],[-90,313],[-130,466],[-296,578],[-49,371],[266,402],[143,-161],[100,303]],[[49685,15910,0],[95,54],[97,57]],[[50270,16265,0],[405,-124],[-15,-465],[1444,-472]],[[51263,13358,0],[24,17]],[[51388,13432,0],[6,-19]],[[51466,13347,0],[-26,-27],[-25,-26]],[[51300,13123,0],[-35,-84],[-2,-5]],[[51263,13034,0],[-10,-39],[-16,-62],[-7,-100]],[[51237,12731,0],[12,-70],[28,-88]],[[51277,12573,0],[39,-80],[49,-71],[58,-64]],[[51481,12303,0],[455,-378],[110,-92]],[[52046,11833,0],[154,-125],[340,-291],[50,-42]],[[52590,11375,0],[-25,-6],[-25,-6]],[[52540,11363,0],[-25,-14],[-86,-38]],[[52372,11283,0],[-43,-14],[-147,-97],[-506,-342],[-4,0],[-25,39],[-43,19],[-11,1],[-74,86],[-237,89],[-22,3],[-22,6],[-19,10],[-13,8],[-18,14],[-12,14],[-10,13],[-9,15],[-6,15],[2,14],[0,19],[-1,11],[-3,16],[-3,12],[-7,13],[-6,12],[-9,13],[-13,16],[-15,14],[-14,9],[-20,11],[-35,15],[-35,16],[-31,16],[-42,25],[-36,23],[-50,32],[-40,33],[-54,43],[-52,52],[-49,54],[-60,73],[-13,18],[-37,39],[-53,50],[-52,41],[-42,32],[-44,29],[-55,31],[-64,31],[-113,103],[-60,64],[-190,259],[-21,37],[-11,20],[-22,46],[-29,65],[-12,30],[-15,39],[-13,38],[-18,65],[-16,63],[-9,42],[-8,47],[-12,85],[-20,576],[-7,28]],[[70185,99615,0],[-14,-119],[-29,-68],[-62,-136],[-16,-68],[-19,-92],[7,-129],[3,-55],[-2,-63],[-1,-43],[-2,-27],[-3,-98],[-1,-6],[-1,-36],[0,-29],[-1,-50],[2,-46],[1,-39],[1,-40],[2,-8],[17,-69],[1,-114],[1,-139],[18,-176],[-8,-83],[-4,-207],[41,-211],[2,-58],[68,-196],[55,-98],[121,-216],[17,-34],[14,-43],[20,-35],[69,-39],[15,-35],[79,-45],[34,-49],[54,-70],[81,-68],[40,-54],[44,-49],[26,-27],[28,-39],[41,-43],[78,-117],[16,-22],[44,-45],[37,-43],[50,-81],[39,-60],[20,-39],[22,-48],[6,-32],[84,-91],[36,-60],[25,-45],[73,-120],[-29,-18],[-97,-59],[-121,-74],[14,-25],[5,-10],[-410,-297],[-555,-55],[-55,-437],[-426,84],[-82,12],[-78,-259],[-219,55],[-161,198],[-377,-97],[-46,185],[-66,32],[-12,111],[-31,134],[-32,100],[-30,59],[-76,72],[-336,-89],[47,-139],[-98,-32],[-175,61],[-61,199],[-246,384],[-424,-292],[-15,0],[-304,9],[-515,-48],[-37,174],[-52,330],[0,3],[-35,605],[-72,29],[-264,143],[-48,44],[-74,63],[-43,47],[-88,67],[-61,52],[-62,65],[-82,135],[-54,76],[-32,45],[-30,7],[-43,18],[-21,31],[-9,52],[-3,69],[0,84],[-36,191],[14,12],[26,21],[34,51],[17,68],[14,43],[10,30],[12,39],[9,69],[-39,93],[-70,70],[-50,50],[-26,65],[1,62],[7,22],[-27,15],[-67,15],[-63,2],[-55,17],[-31,-2],[-8,-1],[-199,11],[-38,-5],[-77,24],[-8,86],[-6,30],[-26,79],[-30,70],[-57,58],[-69,0],[-166,291],[-277,10],[-21,193],[-3,81],[-16,42],[0,46],[2,55],[200,27],[4,-22],[22,-1],[158,-4],[-13,-15],[157,-18],[17,59],[172,11],[312,100],[-5,-48],[15,-17],[152,-1],[116,-11],[3,-19],[82,-27],[120,32],[97,63],[25,-4],[83,-11],[580,27],[97,69],[8,22],[26,-27],[26,-7],[5,-24],[77,-30],[14,-30],[41,-17],[4,-14],[12,2],[26,-35],[14,-19],[85,-19],[240,71],[18,2],[220,38],[19,45],[64,-23],[55,-4],[129,14],[18,-56],[339,-47],[20,37],[123,-1],[24,-36],[5,-34],[67,-4],[129,61],[53,-55],[99,63],[128,58],[154,66],[32,-29],[385,171],[-16,35],[37,12],[739,254],[146,-168],[105,-125],[107,-91]],[[77183,18172,0],[101,182]],[[77459,18637,0],[202,256]],[[78924,16432,0],[5,-57],[7,-77]],[[78936,16298,0],[-193,-4],[-182,-11],[-146,-12],[-236,-6],[-455,-6],[-228,-1],[-452,-20],[-50,-1],[-47,-4],[-72,-8],[-63,-7],[-68,-11],[-58,-11],[-58,-13],[-59,-16],[-76,-22],[-60,-19],[-89,-30],[-369,-143],[-67,-25],[-184,-69]],[[67709,53740,0],[-49,27],[-6,3]],[[67631,53789,0],[-7,4],[-8,4],[68,43],[101,57],[38,19],[17,-32],[-93,-111],[-25,-40]],[[57798,55186,0],[-146,-9],[-258,1476],[-419,457],[-21,684],[-4,54],[-24,70],[-39,71],[-42,74],[-68,72],[-79,77],[-60,61],[465,432],[62,83]],[[57221,58739,0],[34,-34]],[[57850,58082,0],[1,0],[-1,0]],[[58012,57977,0],[9,-4],[8,-3],[10,-6],[4,-2]],[[58043,57962,0],[2,-3],[3,-3]],[[58050,57953,0],[1,-4],[11,-23],[43,-83]],[[58105,57843,0],[4,-5],[4,-4]],[[58117,57829,0],[6,-10]],[[58126,57813,0],[2,-6],[4,-11]],[[58133,57772,0],[0,-9],[-2,-9]],[[58131,57754,0],[-1,-10],[-2,-9],[-2,-8]],[[58126,57727,0],[-3,-10],[-147,-482],[60,-25]],[[58036,57210,0],[-46,-95],[-43,-97]],[[57947,57018,0],[-48,-98],[-59,-129]],[[57840,56791,0],[-57,-143],[-38,-149],[-16,-154],[3,-155],[35,-170],[14,-21],[92,-143],[-111,-111]],[[57883,55407,0],[95,-80],[-8,-9]],[[57970,55318,0],[114,-101],[-11,-13]],[[57962,62669,0],[-364,-475]],[[57598,62194,0],[-99,24],[-168,24],[-30,11],[-23,11],[-21,15],[-17,16],[-18,21],[-14,22],[-8,16],[-4,14]],[[57196,62368,0],[-21,124],[-50,270],[-51,286],[-41,228],[-40,205],[-27,143],[-40,224],[-44,241],[-20,120],[-25,140],[-3,14],[4,18],[6,13],[11,14],[17,12],[15,5],[14,3],[14,-1],[16,-3],[12,-6],[10,-6],[11,-10],[47,-47],[50,-59],[15,-24],[6,-13],[6,-12],[4,-11],[17,-40],[39,-110],[51,-104],[19,-24],[16,-19],[22,-23],[33,-29],[50,-32]],[[57439,63808,0],[113,-37]],[[64346,30291,0],[-2,-18]],[[64344,30273,0],[-2,-10],[-6,-10]],[[64281,29939,0],[-678,-409]],[[62536,28309,0],[-71,-354],[-26,-224],[-6,-18],[-8,-22],[-82,-39],[-5,15],[-59,185],[-31,92],[-35,102],[-8,25],[-46,158],[-8,87],[2,124],[-5,94],[-12,218],[-2,49],[2,82],[-1,112],[-123,99],[-75,45],[-85,69],[-26,43],[-133,224]],[[61693,29475,0],[-178,91],[-121,62]],[[61156,29823,0],[-87,69]],[[60984,29953,0],[-44,29],[-28,19]],[[60999,30148,0],[20,-6],[8,-2]],[[61250,30196,0],[1,4],[0,6]],[[61269,30273,0],[3,10],[2,7]],[[61275,30402,0],[48,109]],[[62651,34257,0],[19,91]],[[62845,33543,0],[10,-247]],[[60858,58608,0],[-92,-114]],[[61268,57221,0],[-10,-14],[-52,-70]],[[61164,57076,0],[26,-19],[14,-9]],[[61017,56770,0],[-46,-65],[-6,-9]],[[60973,56673,0],[-30,-6],[-4,-2]],[[60939,56665,0],[-1,0],[-41,-25]],[[60867,56595,0],[-2,0],[-16,-10]],[[60849,56585,0],[-16,-5],[-4,-1]],[[60829,56579,0],[-16,-62],[-61,17]],[[60412,56682,0],[-23,9]],[[60141,57244,0],[-35,37]],[[59929,57831,0],[10,67]],[[61610,52319,0],[5,-3],[2,-1]],[[61847,52264,0],[179,-94],[107,-55]],[[62412,51932,0],[-124,-265]],[[62020,51244,0],[-8,-39],[26,3],[27,1],[28,2],[27,0],[25,1],[5,0],[6,0],[5,1],[1,1],[163,51],[117,31],[9,3],[10,1],[9,1],[9,2],[9,0],[10,0],[9,0],[3,0],[14,-2],[15,-1],[14,-3],[14,-2],[7,-1],[135,-34],[9,-2],[9,-1],[10,-2],[9,-1],[9,0],[10,0],[9,0],[10,1],[9,2],[9,1],[9,2],[10,2],[6,3],[8,3],[7,2],[7,4],[7,4],[2,1],[29,20],[41,-49],[6,-7],[10,-12],[-5,-7],[-6,-7],[-5,-7],[-5,-7],[-5,-8],[-4,-8],[-4,-8],[-4,-8],[-2,-9],[-1,0],[-2,-8],[-2,-7],[-1,-8],[-1,-8],[0,-7],[0,-8],[0,-8],[1,-7],[1,-8],[2,-8],[2,-7],[2,-8],[3,-6],[45,-92],[15,-98],[3,-25],[1,-4],[-1,-4],[0,-4],[-2,-5],[-1,-3],[-24,-68],[-1,-6],[-2,-5],[0,-5],[0,-6],[0,-5],[0,-5],[1,-5],[2,-5],[2,-6],[2,-4],[3,-5],[3,-4],[4,-4],[3,-5],[4,-3],[4,-3],[2,-1],[35,-26],[7,-6],[7,-6],[7,-6],[6,-7],[1,-1],[4,-3],[85,-107],[5,-8],[3,-4],[3,-5],[2,-5],[1,-5],[1,-3],[29,-110],[3,-10],[2,-10],[1,-11],[1,-5],[0,-11],[0,-11],[0,-12],[1,-11],[1,-11],[2,-11],[2,-9],[0,-14],[1,-13],[-1,-14],[-1,-14],[-1,-14],[-1,-14],[-1,-5],[-2,-13],[-30,-89],[-23,-44],[-30,-30],[-7,-7],[-7,-6],[-6,-8],[-6,-7],[-5,-7],[-6,-8],[-4,-8],[-4,-8],[-5,-9],[-3,-8],[-3,-8],[-4,-10],[-2,-8],[-2,-10],[-1,-9],[-1,-8],[-1,-10],[0,-6],[4,-229],[3,-192],[0,-24],[3,-44],[-37,-4],[-36,-9],[-24,1],[-40,-1],[-39,-2],[-68,-2],[-57,-4],[-61,-6],[-52,-4],[-73,-15],[-64,-14],[-68,-14],[-136,-41],[-29,-9],[-37,-15],[-45,-18],[-58,-19]],[[62110,49196,0],[-9,9],[-43,51]],[[62058,49256,0],[-11,-8],[-42,-35],[-43,-35]],[[61962,49178,0],[-12,-8],[-123,-82]],[[61827,49088,0],[-10,12],[-11,12]],[[61638,49014,0],[-72,-30],[-2,-2],[-25,-10]],[[61539,48972,0],[-61,-34],[-37,-20]],[[61401,48973,0],[70,89],[4,4]],[[61844,49991,0],[13,8]],[[61829,49985,0],[-111,-63],[-202,-113]],[[61302,49892,0],[-16,-3],[-26,-7],[-11,-2]],[[61226,49873,0],[-7,8],[-55,70]],[[61479,50075,0],[-12,-5],[-6,-2]],[[61436,50061,0],[-13,-4],[-13,-3]],[[61370,50048,0],[-13,-1],[-4,-1]],[[61584,51114,0],[-9,11],[-8,12]],[[61564,51174,0],[-15,13],[-16,13]],[[61518,51214,0],[-15,14],[-14,14]],[[61177,51535,0],[-5,20],[-5,20]],[[61167,51575,0],[-4,20],[-4,20]],[[75391,79842,0],[121,-160]],[[75666,79442,0],[133,-207],[19,-28]],[[75030,78713,0],[-75,-105]],[[74938,78525,0],[-18,-20],[-19,-20]],[[74787,78211,0],[-335,41]],[[74452,78252,0],[-460,34],[-20,2],[-423,30],[-9,43]],[[73540,78361,0],[11,56],[7,188],[1,68],[45,-9],[109,-10],[225,-24],[-3,12],[-4,59],[-154,17],[-173,20],[-45,6],[-17,1],[-40,14],[-24,12],[-17,10],[-19,27],[-6,28],[-2,38],[6,278],[1,34],[7,40],[9,60],[11,53],[15,56],[25,52],[20,13],[13,1],[44,-2],[446,-36],[179,-15],[56,66],[-31,3],[-14,4],[-171,13],[-430,41],[-11,2],[-21,2]],[[73588,79539,0],[4,9],[7,15],[52,77],[83,70],[63,70],[93,101],[9,14],[10,20],[7,15],[-5,15],[-17,4],[-23,16],[-59,34],[13,68],[28,62],[34,110],[12,83],[32,295],[-113,64]],[[74120,81282,0],[242,100],[438,180],[7,3]],[[74807,81565,0],[48,-113],[58,-159],[37,-123],[8,-32],[11,-45],[4,-15],[8,-31],[48,-185],[12,-46],[47,-245],[59,-200],[19,-36],[39,-135],[66,-157]],[[72601,80055,0],[36,8],[120,-330],[139,22],[177,37],[60,13],[104,-103],[67,-42],[32,-10],[6,-25],[46,-7],[56,-35],[26,-19],[79,-12],[39,-13]],[[73540,78361,0],[-52,-37]],[[73488,78324,0],[-255,-33],[-229,-30]],[[73004,78261,0],[-588,2]],[[72289,78279,0],[-133,49],[-115,43],[-62,23]],[[72061,78718,0],[-40,15],[-99,38],[-13,95],[-8,71],[-68,401],[-23,138]],[[71810,79476,0],[22,4],[76,6],[34,5],[-8,120],[9,30],[5,10],[19,19],[21,10],[14,9],[21,11],[19,-2],[6,-4],[6,-4]],[[72054,79690,0],[9,41]],[[72063,79731,0],[-4,15],[14,8],[17,9],[90,-22],[79,-18],[90,-25],[67,-13],[160,-34],[12,-3],[50,-12],[58,-8],[62,-5]],[[72758,79623,0],[-144,347]],[[72614,79970,0],[-7,72],[-102,-6],[-5,39],[62,-2],[39,-18]],[[72737,80915,0],[-16,-72],[-10,-134],[-18,-204],[-58,12],[-29,-105],[-22,-173],[13,-160],[4,-24]],[[72614,79970,0],[145,-347],[-1,0]],[[72063,79731,0],[-4,-16],[-5,-25]],[[71810,79476,0],[-3,23],[-6,30],[-14,96],[-13,38],[-4,24],[-13,10],[-23,12],[-19,3],[-26,1],[-137,-5],[-125,-4],[-66,-9],[-79,-2],[-66,-1],[-52,-16],[-74,-12]],[[71092,79718,0],[6,22],[62,-1],[88,12],[112,5],[188,9],[42,0],[75,9],[44,17],[18,14],[18,42],[4,34],[-4,48],[-22,82],[-17,84],[-34,132],[-69,224],[-83,238],[-73,194],[-107,253]],[[71340,81136,0],[23,8]],[[71363,81144,0],[107,17],[-46,109],[-2,10],[1,11],[4,10],[4,9],[6,8],[7,4],[13,7],[76,15],[47,6]],[[71580,81350,0],[-25,78],[45,9],[88,20],[54,13],[41,16],[13,5],[19,15],[7,13],[5,22],[0,20],[-82,193],[22,23]],[[71764,81849,0],[-30,74],[-31,79]],[[71632,82129,0],[38,15],[26,-66],[58,-142],[277,68],[-56,141]],[[71979,78394,0],[-99,34],[-60,19]],[[71820,78447,0],[-36,13]],[[71339,78608,0],[-99,35],[-38,14]],[[70806,78813,0],[-64,15],[-162,38]],[[70236,78943,0],[-65,16],[-43,158],[-76,272],[-17,52],[-5,17],[-82,294],[-51,204],[-8,29],[-35,129],[-46,187]],[[69808,80301,0],[337,82]],[[70145,80383,0],[2,-11],[346,90],[41,-157],[17,-5],[56,22],[-109,344],[-103,344],[882,255]],[[71277,81265,0],[29,-55]],[[71306,81210,0],[34,-74]],[[71535,82268,0],[62,11],[17,3]],[[71614,82282,0],[-8,19],[-29,64]],[[71306,81210,0],[-14,27],[-15,28]],[[70145,80383,0],[-20,-4],[-317,-78]],[[69808,80301,0],[-64,170],[-9,40],[-59,231],[-113,445],[-108,416]],[[70971,82616,0],[14,5],[248,97]],[[86988,69903,0],[182,83],[-1,-75],[220,-52],[0,-68],[256,-264],[-30,-135],[-12,-10],[-9,6],[-67,45],[-60,21],[-46,9],[-33,1],[-31,-1],[45,-93],[-113,-52],[-52,-21],[-92,202],[-20,39]],[[87125,69538,0],[-48,-27]],[[87077,69511,0],[17,-32],[19,-40],[38,-80],[39,-81],[41,-85],[40,-82],[38,-75],[16,-30],[14,-29],[5,-8],[-137,-59],[90,-165],[-58,-2]],[[87239,68743,0],[13,-31]],[[87235,68693,0],[3,-19]],[[87238,68674,0],[8,-42]],[[87336,68607,0],[153,-42]],[[87537,68552,0],[50,-12]],[[87587,68540,0],[1,1],[192,75]],[[88107,68796,0],[91,-22],[205,-50]],[[88403,68724,0],[79,-2],[96,-2]],[[88677,68692,0],[5,74]],[[88682,68766,0],[-10,146]],[[88672,68912,0],[7,18],[49,131]],[[88728,69061,0],[104,-5]],[[88897,69053,0],[193,-1714]],[[88063,67057,0],[-77,-14],[-88,-15],[-225,-38]],[[86958,67984,0],[-103,153],[-73,108]],[[86782,68245,0],[-144,-44],[-119,-37]],[[86349,67911,0],[-40,113],[-21,60],[-23,67]],[[86250,68187,0],[-13,30],[-30,57]],[[86116,68400,0],[-7,8],[-16,24]],[[86093,68432,0],[-75,66]],[[85754,68648,0],[-47,16]],[[85615,68687,0],[-35,7],[-46,6]],[[85115,68699,0],[-108,-1],[-81,4],[-97,19],[-93,26],[-128,39]],[[84440,68845,0],[-84,21],[-18,4],[-52,7]],[[84286,68877,0],[-78,6],[-54,1]],[[84154,68884,0],[-77,-6]],[[84077,68878,0],[-61,-11],[-62,-15]],[[83954,68852,0],[-71,-24],[-71,-32]],[[83812,68796,0],[-20,-10],[-50,-28],[-21,-15]],[[83569,68614,0],[-47,-59],[-12,-15]],[[83488,68487,0],[-3,-26]],[[83489,68440,0],[6,-19],[11,-24]],[[83628,68353,0],[15,3],[18,8]],[[83727,68388,0],[64,20],[68,17]],[[83969,68442,0],[16,0],[35,1]],[[84096,68438,0],[62,-8]],[[84246,68412,0],[66,-19],[52,-19]],[[84393,68363,0],[23,-9],[20,-9]],[[84436,68345,0],[41,-18],[43,-22],[37,-19],[20,-12],[57,-33],[25,-16]],[[84659,68225,0],[17,-13],[63,-52],[41,-38]],[[84780,68122,0],[33,-33],[69,-81]],[[84931,67938,0],[38,-63]],[[85053,67744,0],[12,-4]],[[83777,66890,0],[-107,20]],[[83393,66964,0],[-75,14],[-51,245],[-19,84],[-9,94],[-4,77],[-7,142],[17,132],[14,87],[3,19],[17,84],[27,76],[1,5],[18,53],[14,34],[31,74],[67,215],[9,29],[61,126],[11,18],[30,44],[40,51],[27,31],[-89,63],[90,138],[18,69],[33,23],[21,19],[76,68],[32,18],[44,12],[38,15],[42,9],[125,16],[65,9],[122,-3],[35,-5],[58,-13],[16,-16],[76,-31],[98,-3],[33,-19],[67,-35],[108,-82],[68,-53],[221,-104],[164,-12],[59,8],[122,16],[151,12],[248,-104],[101,111],[86,95],[16,18],[-51,19],[-64,24],[-18,6],[-77,2],[-66,2],[-74,62],[-8,76],[-4,26],[-10,3],[-344,110],[-5,147],[363,-126],[29,2],[50,4],[80,6],[76,5],[30,3],[13,11],[70,51],[77,56],[16,12],[49,63],[45,58],[53,66],[-7,15],[-4,8],[-98,216],[-24,51],[-57,126],[-73,220],[190,57]],[[86463,70110,0],[50,-17]],[[81401,66970,0],[335,45]],[[81736,67015,0],[28,-41],[50,28]],[[81840,66952,0],[101,-191]],[[82370,66398,0],[59,198],[14,47],[86,283]],[[82531,66935,0],[72,239],[262,-37],[22,-3]],[[82903,66510,0],[7,-92]],[[81189,65606,0],[32,45],[-57,320],[-59,175],[-104,188],[-184,262],[-127,2],[-223,26],[37,128],[6,16],[13,106],[-5,112],[81,193],[63,185]],[[80662,67364,0],[263,-115],[130,-30],[97,-23],[136,-101],[100,-110],[13,-15]],[[80409,71034,0],[45,-13]],[[80452,71004,0],[-9,1],[-39,-204]],[[80349,70562,0],[-25,-139]],[[80726,69247,0],[10,-46]],[[80762,68913,0],[3,-96]],[[80928,68040,0],[265,-273]],[[81193,67767,0],[135,-135],[29,-30]],[[81587,67344,0],[132,-186]],[[81736,67015,0],[-313,-42],[-22,-3]],[[80662,67364,0],[-15,6],[-223,65],[-7,-11],[-36,-29],[-9,57],[12,118],[9,124],[-141,58],[-148,26],[-79,118],[-162,241],[-139,189],[-51,86],[-31,-4],[-187,-58],[-4,17],[-90,562],[-78,-35],[-26,44],[27,272],[60,258],[-214,10],[-151,38],[-14,15],[-80,104],[-83,107],[-23,4],[15,32],[-523,182]],[[78282,70215,0],[88,60],[30,20]],[[78400,70295,0],[278,92],[70,23]],[[79299,70848,0],[115,217],[12,23]],[[82357,65652,0],[4,-312]],[[82319,64770,0],[9,-2],[22,-5]],[[82335,64537,0],[-1,-5],[-2,-19]],[[82332,64513,0],[-8,-211],[-4,-119]],[[82320,64183,0],[-47,4],[-42,5]],[[82206,64059,0],[0,-14],[0,-15]],[[82102,63087,0],[-69,13]],[[82033,63100,0],[-35,3]],[[81998,63103,0],[-8,-18],[-11,-10],[-19,2],[-25,27],[-76,11],[-80,27],[-66,38],[-67,46],[-46,49],[-35,-1],[-22,21],[-5,22],[2,24]],[[81540,63341,0],[-130,37]],[[81410,63378,0],[-63,-121],[-126,-169],[-22,-29],[-12,-22],[-12,-27],[-13,-23],[-8,-29]],[[81154,62958,0],[-7,-31],[-6,-25]],[[81141,62902,0],[0,-19]],[[81141,62883,0],[-1,-20],[0,-21]],[[81140,62842,0],[0,-23]],[[81140,62819,0],[19,-87]],[[81159,62732,0],[-20,-299],[-35,8],[-149,32],[-20,-39],[-54,-89]],[[80881,62345,0],[13,-20],[-202,-117],[-106,-35],[8,-109],[164,4]],[[80758,62068,0],[-7,-89]],[[80751,61979,0],[-164,-68],[-109,14],[-123,-29],[-16,-31],[97,-50],[407,-18]],[[80843,61797,0],[-58,-20],[-48,-6],[-15,-8],[-15,-5],[-84,-61],[-19,-18],[-20,-16],[-20,-16]],[[80564,61647,0],[-38,-42]],[[80526,61605,0],[-17,-23]],[[80509,61582,0],[-30,-36]],[[80479,61546,0],[-17,-47]],[[80462,61499,0],[-7,-27],[-8,-26]],[[80447,61446,0],[-3,-22],[-5,-25],[-4,-23],[-2,-29],[0,-50],[3,-51],[19,-86],[35,-77],[-37,-22],[-31,-20],[-76,-58],[-2,-22]],[[80344,60961,0],[80,-114]],[[80424,60847,0],[-74,-126]],[[79717,61115,0],[-179,115],[-25,22],[-131,187],[-23,-260],[-9,-19],[-159,198],[-132,-20],[-180,29],[-32,22],[-82,110],[-7,14],[-255,162],[-2,-19],[-58,-236]],[[78065,61469,0],[-34,49],[-2,3]],[[78014,61967,0],[0,1],[-55,134]],[[77959,62102,0],[216,46],[-13,33],[-11,35],[-19,185],[43,63],[346,-152],[254,-36],[80,-58],[48,29],[103,71],[51,48],[12,15],[42,61],[43,123],[11,79],[35,6],[53,10],[44,2],[0,47],[127,14],[148,52],[8,117],[18,89],[-4,61],[19,13],[60,-35],[64,24],[59,-23],[-20,-122],[12,-188],[58,-147],[205,43],[51,279],[77,107],[118,96],[9,14],[74,119],[58,173],[45,-13],[30,-7],[-1,15],[15,-1],[7,10],[53,-10],[2,-33],[24,-20],[24,5],[31,5],[-6,28],[-7,16],[-52,87],[449,44],[-141,156],[-126,193],[-26,60],[-57,57],[-11,12],[75,111],[14,9],[30,-21],[48,-38],[53,-57],[43,-78],[95,-110],[54,-51],[65,-51],[76,-59],[61,-19],[35,-30],[29,-24],[42,-35],[49,-54],[13,-14],[28,-28],[167,-103],[48,69],[-70,67],[-2,24],[58,86],[18,-11],[47,-20],[36,102],[109,303],[-72,11],[29,127],[-40,5],[-82,4],[-29,16],[-51,14],[14,89],[-26,-2],[20,86],[28,236],[222,11],[55,9],[110,-8],[-1,854],[-12,75],[-38,-21],[-155,-38],[-31,-4],[-165,9],[-37,4],[37,103],[20,73]],[[82355,65824,0],[1,-53],[0,-10]],[[84624,60448,0],[148,-89]],[[84854,60325,0],[131,-56]],[[85129,60249,0],[124,1]],[[85336,60253,0],[89,2]],[[85509,60264,0],[83,14]],[[86130,59831,0],[-115,22],[-102,12],[-104,34],[-117,19],[-123,43],[-126,14],[-210,7],[-19,53],[-109,32],[-118,42],[-76,43],[-163,34],[-108,30],[-120,39],[-111,38],[-190,109],[2,16],[-42,1],[-31,-4],[-35,-4],[1,30],[1,150]],[[84334,60589,0],[75,-13],[97,-57]],[[84506,60519,0],[118,-71]],[[82944,60542,0],[7,-19],[40,-113]],[[82583,60061,0],[-110,15],[-128,7],[-256,-22],[-25,-2],[-33,1],[-37,-18],[-87,-41],[-90,-47],[-72,-3],[-70,-22],[-50,-12],[-26,3],[-94,20],[-118,12],[-43,-34],[-41,-102],[7,-66],[-180,68],[-194,50],[-147,-12],[-23,-134],[-177,0],[-14,17],[-91,10],[-33,-8],[-193,-18],[0,1],[-46,62]],[[80424,60847,0],[129,-103]],[[80553,60744,0],[-34,-31],[-15,-64],[112,-24],[224,-38],[224,-27],[230,-14],[278,-18],[136,2],[390,45],[30,6],[296,119],[268,101],[169,73],[24,7],[179,76]],[[83064,60957,0],[63,17],[80,22],[75,18],[62,13]],[[83344,61027,0],[40,2]],[[83238,60843,0],[22,-150]],[[78065,61469,0],[-239,-43],[-114,-95],[-7,47],[-20,110],[-246,-35]],[[77439,61453,0],[-45,285]],[[70394,44911,0],[0,-10],[-3,-50]],[[70391,44851,0],[-7,-102],[-7,-111]],[[70377,44638,0],[-2,-29]],[[70375,44609,0],[-7,-117]],[[70368,44492,0],[-3,-54],[-4,-66]],[[70361,44372,0],[-14,-258]],[[70046,43620,0],[-82,35],[-181,77]],[[69783,43732,0],[3,5]],[[69825,43803,0],[-2,1],[-57,22]],[[67809,45173,0],[-4,8],[-4,9]],[[67985,45256,0],[17,-4],[166,-35]],[[68168,45217,0],[174,-37]],[[68421,45162,0],[51,-8]],[[68520,45149,0],[109,-4],[64,2]],[[68875,45175,0],[109,32]],[[69031,45224,0],[19,9],[45,19]],[[69248,45343,0],[46,35]],[[69678,45663,0],[86,63],[116,86]],[[69925,45839,0],[41,24]],[[69966,45863,0],[42,22],[36,18]],[[70044,45903,0],[76,32]],[[70295,45996,0],[89,31]],[[70384,46027,0],[106,37]],[[70490,46064,0],[11,24]],[[70522,46067,0],[38,-97]],[[70370,45896,0],[13,-35],[11,-31],[11,-28]],[[70431,45731,0],[1,-12],[6,-61]],[[70428,45583,0],[-10,-74],[-3,-26]],[[70415,45483,0],[0,-48],[-1,-48]],[[70462,45201,0],[23,-44]],[[64633,35518,0],[-58,77]],[[64575,35595,0],[-42,91]],[[64444,35851,0],[-81,106]],[[64363,35957,0],[-87,96]],[[64248,36084,0],[-93,108]],[[63684,38664,0],[-23,-155],[-7,-115],[-6,-80],[1,-54],[0,-108],[-1,-53],[11,-130],[29,-104],[45,-124],[60,-117],[87,-129],[99,-112],[86,-75],[125,-88],[57,-27],[72,-31],[126,-43],[128,-30],[90,-11],[84,-9],[131,-6],[63,4],[56,12],[67,22],[21,9],[44,-115]],[[63966,39359,0],[54,83]],[[66561,39919,0],[108,8]],[[59462,61522,0],[37,32],[112,95]],[[60283,60611,0],[1,-532]],[[57995,61199,0],[-62,29],[-23,11]],[[57910,61239,0],[-34,17],[-34,19]],[[57267,61985,0],[-10,48],[-60,296]],[[57197,62329,0],[-1,39]],[[57598,62194,0],[-27,-107],[23,-6],[24,-7],[39,-14],[39,-15],[41,-18],[97,-70],[84,-65]],[[57918,61892,0],[104,-76],[44,-32]],[[58066,61784,0],[118,-87],[156,-116]],[[58340,61581,0],[9,-7],[73,-53]],[[58422,61521,0],[132,-99],[72,-54]],[[58848,61275,0],[15,-2],[37,-6]],[[61630,58042,0],[-22,3]],[[61500,58071,0],[-34,8]],[[60791,59569,0],[115,-130]],[[82185,69198,0],[219,-38],[67,52],[213,27],[-8,-22],[-6,-13],[-1,-10],[6,-16],[22,-72],[7,-16],[2,-14],[-1,-9],[-7,-88],[-3,-12],[-4,-3],[-44,-31],[-8,-8],[-7,-10],[-1,-12],[4,-14],[3,-10],[5,-7],[-2,-11],[-7,-12],[-119,-170],[-10,-61],[-13,-64],[-27,-93],[-23,-56],[-42,-32],[-129,-22],[-52,-102],[-299,0]],[[81920,68249,0],[-279,-44],[200,229],[-265,211],[-343,-199],[-235,-112],[-102,208],[17,83],[40,93],[-60,115],[-56,68],[31,35],[72,-10],[187,-118],[13,107],[21,189],[181,159],[237,224],[124,120],[34,-28]],[[81737,69579,0],[116,-56]],[[81853,69523,0],[86,-80]],[[82025,69309,0],[28,-82]],[[82053,69227,0],[132,-29]],[[81998,63103,0],[5,0],[30,-3]],[[82349,62622,0],[159,-96]],[[82671,62423,0],[67,-40],[146,-85]],[[83391,61907,0],[60,-75]],[[83563,61559,0],[27,-129]],[[83612,60931,0],[-184,83],[-44,15]],[[83384,61029,0],[-15,0],[-25,-2]],[[80553,60744,0],[-76,61],[-53,43],[-80,113]],[[80447,61446,0],[15,53]],[[80479,61546,0],[16,17],[14,19]],[[80526,61605,0],[20,22],[18,20]],[[80843,61797,0],[0,-15],[27,7],[42,-11],[11,53],[25,111],[-197,37]],[[80758,62068,0],[-4,23],[10,15],[5,11],[8,10],[16,22],[51,13],[128,43],[-25,130],[-66,10]],[[81159,62732,0],[-6,29],[-13,58]],[[81140,62842,0],[1,41]],[[81141,62902,0],[13,56]],[[81410,63378,0],[71,-21],[52,-14],[7,-2]],[[85844,71500,0],[-2,-37],[0,-14]],[[85842,71449,0],[120,-178],[12,-18],[19,-27],[25,-37],[10,-14],[46,-69]],[[85805,70428,0],[-211,7],[-24,1]],[[85472,70405,0],[-16,-3],[-123,-19]],[[85205,70357,0],[-96,-24],[-44,-11]],[[85065,70322,0],[-52,-9],[-10,-2]],[[85003,70311,0],[-23,-3],[-230,-27]],[[83252,69998,0],[-243,176],[35,17],[-55,19],[-4,5],[-5,54],[-88,96],[-115,14],[-37,60],[28,100],[1,4],[1,12],[0,4],[7,63],[3,41],[24,66],[-50,96],[-43,49],[-30,21],[-41,32],[-46,74],[5,54],[61,14]],[[82736,71093,0],[35,-31],[2,-1]],[[83828,70713,0],[448,153]],[[84491,70591,0],[178,-3],[375,-6]],[[85289,71207,0],[18,48],[19,47]]],"transform":{"scale":[0.0000019202792027920124,0.0000017377273772737583],"translate":[35.079838,31.713771]}} +{"type":"Topology","objects":{"jerusalem":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"","arcs":[[0],[-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]]},{"type":"Polygon","id":"0","arcs":[[34]]},{"type":"Polygon","id":"28046","arcs":[[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]]},{"type":"Polygon","id":"28047","arcs":[[61,62,63,64,65,66,67,68,69,70,71]]},{"type":"Polygon","id":"28048","arcs":[[-54,72,73,74,75,76,77,78,-71,79,80]]},{"type":"Polygon","id":"28049","arcs":[[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,-49,99,100,-46,101,102,103,-42,104,-40]]},{"type":"Polygon","id":"28050","arcs":[[-91,105,-89,106,-87,107,-85,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138]]},{"type":"Polygon","id":"28051","arcs":[[139,140,141,142,143,144,145,146,147,148,149,150,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],[-185,-186]]},{"type":"Polygon","id":"28052","arcs":[[186,187,188,189,-131,190,191,192,193,-126,194,-124,195,-122,196,-120,197,-118,198,199,-115,200,201,-112,202,-110,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,-171,223,224,225,-167,226,-165,227,228,-162,229,230,231,232,-157,233,-155,234,-153,235,-151,236,-149,237,238,239,-145,-138,240,-136]]},{"type":"Polygon","id":"28053","arcs":[[-172,-223,241,242,243,-219,244,245,246,247,248,-213,249,250,-210,251,252,253,-206,254,255,256,257,258,259,260,261,262,263]]},{"type":"Polygon","id":"28054","arcs":[[264,265,266,267,268,269,-263,270,271,272,273,274,275,276,277,278,279,280,281],[282]]},{"type":"Polygon","id":"28055","arcs":[[-282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299]]},{"type":"Polygon","id":"28107","arcs":[[300,301,302,303,304,305,-182,306,-180,307,308,309]]},{"type":"Polygon","id":"28108","arcs":[[310,-301,311,312,313,-50,-99,314,315,-96,316,317,318,319,-143,320,-141,-303]]},{"type":"Polygon","id":"28109","arcs":[[321,322,323,324,325,326,327,328,329,330,-269,331,-267,332,-265,-300,333,-298,334,-296,335,336,337,338]]},{"type":"Polygon","id":"28110","arcs":[[339]]},{"type":"Polygon","id":"28113","arcs":[[-259,340,-257,341,342,343,344,345,-261,346]]},{"type":"Polygon","id":"28115","arcs":[[-52,347,-313,348,-73,349]]},{"type":"Polygon","id":"28116","arcs":[[350,351,352,353,354,-75]]},{"type":"Polygon","id":"29501","arcs":[[355,356]]},{"type":"Polygon","id":"29505","arcs":[[357,358,-356,359]]},{"type":"Polygon","id":"29506","arcs":[[360,361,-358,362]]},{"type":"Polygon","id":"29508","arcs":[[363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,-361,378]]},{"type":"Polygon","id":"29509","arcs":[[379,380,381,382,383,-377,384,385,386,387,388,389]]},{"type":"Polygon","id":"29510","arcs":[[390,391,392,393,394,395,396,397,398,399,400,401,402,403,-390,404,405,406,407,408,409,410,-365,411,412,413]]},{"type":"Polygon","id":"29511","arcs":[[414,415,-414,416,417]]},{"type":"Polygon","id":"29512","arcs":[[418,-418,419]]},{"type":"Polygon","id":"29668","arcs":[[420,-398,421,-396,422,423,424,425,426,427,428,429,430,431,432,433,434,435,-400]]},{"type":"Polygon","id":"29669","arcs":[[-401,436,-435,437,438,439,440,441,442,443,444,445,446,447,448,449,-380,-404,450,-402]]},{"type":"Polygon","id":"29825","arcs":[[451,452,453,454]]},{"type":"Polygon","id":"29826","arcs":[[455,456,457,-454]]},{"type":"Polygon","id":"29827","arcs":[[458,459,460,-457]]},{"type":"Polygon","id":"29828","arcs":[[461,462,463,464,-460,465]]},{"type":"Polygon","id":"29835","arcs":[[466,467,468,-452,469]]},{"type":"Polygon","id":"29839","arcs":[[470,-467,471]]},{"type":"Polygon","id":"29844","arcs":[[-463,472,473,474]]},{"type":"Polygon","id":"29856","arcs":[[475,476,-464,-475]]},{"type":"Polygon","id":"29909","arcs":[[477,-175,478,479,-186,480,-177]]},{"type":"Polygon","id":"29910","arcs":[[481,482,483,-179,484,485]]},{"type":"Polygon","id":"29911","arcs":[[486,487,-466,-459,-456,-453,-469]]},{"type":"Polygon","id":"29912","arcs":[[488,489,-473,-462,-488,490]]},{"type":"Polygon","id":"29913","arcs":[[491,492,493,-489,494,495]]},{"type":"Polygon","id":"29914","arcs":[[496,-492,497,498]]},{"type":"Polygon","id":"29915","arcs":[[499,500,501,502,-499,503]]},{"type":"Polygon","id":"29918","arcs":[[504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536]]},{"type":"Polygon","id":"29919","arcs":[[537,538,539,540,541,542,543,544,545,-537,546]]},{"type":"Polygon","id":"29920","arcs":[[547,-544,548,549,550,551,552,553,554,555]]},{"type":"Polygon","id":"29921","arcs":[[-546,556,557,558,559,-505]]},{"type":"Polygon","id":"29922","arcs":[[-559,560,561,562,563,564,565]]},{"type":"Polygon","id":"29923","arcs":[[566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581]]},{"type":"Polygon","id":"29924","arcs":[[582,583,-493,-497,-503,584,-580]]},{"type":"Polygon","id":"29926","arcs":[[-494,-584,585,-476,-474,-490]]},{"type":"Polygon","id":"29928","arcs":[[586,-565,587,-563,588,-578,589,-576,590,591,-573,592,593,-570,594,595,-567,596,-581,-585,-502]]},{"type":"Polygon","id":"29929","arcs":[[-558,597,-561]]},{"type":"Polygon","id":"29933","arcs":[[598,599,600]]},{"type":"Polygon","id":"29934","arcs":[[601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,-600],[616]]},{"type":"Polygon","id":"29935","arcs":[[617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,-606,641,-604,642,-602,-599]]},{"type":"Polygon","id":"29936","arcs":[[643,-615,644,-613,-611,645,-609,646]]},{"type":"Polygon","id":"29937","arcs":[[647,648,649,650,651,652,-647,-607,-641,653,654,655,-637,656,-635,657,-633,658,-631]]},{"type":"Polygon","id":"29938","arcs":[[659,660,661,662,663,664,665,-649,-629,666,-627,667,-625,668,-623,669,-621,670,-619,671]]},{"type":"Polygon","id":"29939","arcs":[[672,-664,673,-662,674,-660,675,676,677,-652,678,-650,-666]]},{"type":"Polygon","id":"29940","arcs":[[679,-677]]},{"type":"Polygon","id":"29941","arcs":[[680,-495,-491,-487,-468,-471]]},{"type":"Polygon","id":"29944","arcs":[[681,682,-500,683,684,685,686,687]]},{"type":"Polygon","id":"29945","arcs":[[688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,-514,713,714,-511,715,-509,716,-507,717,-682,718,719,720]]},{"type":"Polygon","id":"29946","arcs":[[721,722,723,724,725,726,727,-547,-536,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749]]},{"type":"Polygon","id":"29947","arcs":[[-733,750,-731,751,-729,-535,752,-533,753,754,755,-529,756,-527,757,-525,758,759,-522,760,-520,761,762,763,-516,-712,764,765,766]]},{"type":"Polygon","id":"29951","arcs":[[767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803]]},{"type":"Polygon","id":"29952","arcs":[[-802,804,805,806]]},{"type":"Polygon","id":"29953","arcs":[[807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834]]},{"type":"Polygon","id":"29954","arcs":[[835,836,837,838,839,840,841,842,843,-803,844,845]]},{"type":"Polygon","id":"29955","arcs":[[846,847,848,849,850,851,-846,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872]]},{"type":"Polygon","id":"29956","arcs":[[873,-869,874,-867,875,-865,876,-863,877,878,879,880,-858,881,882,883,-854,884,885,886,887,888,889,890]]},{"type":"Polygon","id":"29957","arcs":[[-853,-845,-807,891,-830,892,-828,893,-826,894,895,896,897,-821,898,899,-818,900,-816,901,-814,902,-812,903,-810,904,-808,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,-886,953]]},{"type":"Polygon","id":"29959","arcs":[[954,-924,955,-922,956,957,-919,958,-917,959,960,-914,961,962,963,964,-909,965,966,-906,-835,967]]},{"type":"Polygon","id":"29960","arcs":[[968,-889,969,-951,970,971,-948,972,-946,973,-944,974,975,-941,976,977,-938,978,-936,979,-934,980,-932,981,-930,982,-928,983,984,985,-968,-834,986]]},{"type":"Polygon","id":"29981","arcs":[[987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003]]},{"type":"Polygon","id":"29982","arcs":[[1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032]]},{"type":"Polygon","id":"29983","arcs":[[1033,1034,1035,1036,1037,1038,-998,1039,-996,1040,-994,1041,-992,1042,-990,1043,-988,1044,1045,1046,-1020,1047,-1018,1048,-1016,1049,1050,1051,-1012,1052,1053,-1009,1054,1055,-1006,1056,1057,1058,1059,1060]]},{"type":"Polygon","id":"29984","arcs":[[1061,1062,1063,1064,-1003,1065,-1001,1066,-999,-1039,1067,-1037,1068,-1035,1069,-1061,1070,1071,1072,1073,1074]]},{"type":"Polygon","id":"29985","arcs":[[1075,1076,1077,1078,1079,-1074,1080,-1072,1081,-1059,1082,-1057,-1005,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094]]},{"type":"Polygon","id":"29986","arcs":[[1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,-1063,1111,-1075,-1080,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142]]},{"type":"Polygon","id":"29987","arcs":[[1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,-1064,-1111,1156,-1109,1157,-1107,1158,-1105,1159,1160]]},{"type":"Polygon","id":"29988","arcs":[[1161,-1155]]},{"type":"Polygon","id":"29989","arcs":[[1162,1163,1164,-1152,1165,1166,-1149,1167,-1147,1168,-1145,1169,-1161,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186]]},{"type":"Polygon","id":"29990","arcs":[[1187,1188,-16,1189,1190,1191,-1178,1192,-1176,1193,1194,-1173,1195,-1171,-1160,-1104,1196,-1102,1197,-1100,1198,-1098,1199,-1096,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230]]},{"type":"Polygon","id":"29991","arcs":[[1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,-1187,1241,1242,1243,1244,-1182,1245,1246,1247,-1191,1248,-18,1249,1250,1251,1252,1253]]},{"type":"Polygon","id":"29992","arcs":[[1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,-1251,1269,18,17,16,15,1270,-1188,1271,1272,-1229,1273,-1227,1274,-1225,1275,-1223,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,13,1288]]},{"type":"Polygon","id":"29993","arcs":[[-1239,1289,-1237,1290,-1235,1291,-1233,1292,-1254,1293,-1252,-1269,1294,-1267,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306]]},{"type":"Polygon","id":"29994","arcs":[[1307,-1306,1308,1309,1310,-1302,1311,1312,1313,1314,-1297,1315,1316,1317,1318,-1262,1319,-1260,1320,-1258,1321,1322,1323,1324]]},{"type":"Polygon","id":"29995","arcs":[[1325,1326,1327,1328,1329,1330,1331,1332,-1325,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357]]},{"type":"Polygon","id":"29996","arcs":[[1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,-1332,1373,1374,1375,1376,-1327,1377,1378,1379,1380,1381,1382,-1353,1383,-1351,1384,-1349,1385,-1347,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411]]},{"type":"Polygon","id":"29997","arcs":[[1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440]]},{"type":"Polygon","id":"29998","arcs":[[-1440,1441,-1438,1442,1443,-1435,1444,-1433,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460]]},{"type":"Polygon","id":"29999","arcs":[[-1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471]]},{"type":"Polygon","id":"30000","arcs":[[1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499]]},{"type":"Polygon","id":"30001","arcs":[[1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538]]},{"type":"Polygon","id":"30002","arcs":[[1539,-1535,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,-1537]]},{"type":"Polygon","id":"30003","arcs":[[1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601]]},{"type":"Polygon","id":"30004","arcs":[[-1593,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673]]},{"type":"Polygon","id":"30005","arcs":[[1674,-1667,1675,-1665,1676,1677,1678,-1661,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,-1669]]},{"type":"Polygon","id":"30006","arcs":[[1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,-1687,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007]]},{"type":"Polygon","id":"30007","arcs":[[-1672,2008,-1670,-1691,2009,2010,2011,-1705,2012,-1703,2013,-1701,2014,-1699,2015,-1697,2016,2017,2018,2019,2020,-2008,2021,2022,-2005,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049]]},{"type":"Polygon","id":"30008","arcs":[[-1674,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,-1594]]},{"type":"Polygon","id":"30009","arcs":[[2060,2061,2062,2063,2064,2065,2066,-2051,-1673,-2050,2067,-2048,2068,-2046,2069,2070,2071,2072]]},{"type":"Polygon","id":"30010","arcs":[[2073,2074,2075,2076,2077,-1595,-2060,2078,-2058,2079,2080,2081,-2054,2082,2083,-2066,2084,-2064,2085,2086,2087]]},{"type":"Polygon","id":"30011","arcs":[[2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,-1602,2103,2104,2105,-1598,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123]]},{"type":"Polygon","id":"30012","arcs":[[2124,-2118,2125,2126,-2115,2127,2128,-2112,2129,-2110,2130,2131,2132,2133,-2078,2134,-2076,2135,-2074,2136,2137]]},{"type":"Polygon","id":"30013","arcs":[[2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,-1539,2154,2155,2156,2157,2158]]},{"type":"Polygon","id":"30014","arcs":[[2159,-1590,2160,-1588,2161,-1586,2162,-1584,2163,-1582,2164,-1580,2165,-1578,2166,-1576,2167,-1574,2168,2169,2170,2171,-2157,2172,-2155,-1538,2173,-1558,2174,-1556,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,-1603,-1592]]},{"type":"Polygon","id":"30015","arcs":[[-2158,-2172,2188,-2170,-1572,2189]]},{"type":"Polygon","id":"30016","arcs":[[2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,-2159,-2190,-1571,2201,-1569,2202,-1567,2203,2204,-1564,2205,2206,-1561,-2102,2207,2208,2209,2210,2211]]},{"type":"Polygon","id":"30017","arcs":[[2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,-2089,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247]]},{"type":"Polygon","id":"30018","arcs":[[2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,-2220,2264,-2218,2265,-2216,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284]]},{"type":"Polygon","id":"30019","arcs":[[2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,-2258,2303,2304,2305,-2254,2306,-2252,2307,-2250,2308,2309,2310,2311,2312,2313,2314,2315,-2278,2316,2317,2318,2319,2320]]},{"type":"Polygon","id":"30019S","arcs":[[-1032,2321,-1030,2322,-1028,2323,-1026,2324,-1024,2325,-2300,2326,-2298,2327,-2296,2328,2329,-2293,2330,-2291,2331,2332,-2288,2333,2334]]},{"type":"Polygon","id":"30020","arcs":[[2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,-2334,-2287,2357,-2321,2358,-2319,2359,2360,-2274,2361,2362,2363,-2270,2364,-2268,2365,-2215,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384]]},{"type":"Polygon","id":"30021","arcs":[[2385,2386,-2137,-2088,2387,-2086,-2063,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401]]},{"type":"Polygon","id":"30022","arcs":[[2402,-2398,2403,2404,2405,-2394,2406,2407,-2391,2408,-2389,-2062,2409,-2073,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,-2400]]},{"type":"Polygon","id":"30023","arcs":[[2454,2455,-2070,-2045,2456,-2043,2457,-2041,2458,2459,2460,2461,2462,2463,-2444,2464,-2442,2465,2466,-2439,2467,-2437,2468,2469,-2434,2470,2471,2472,2473,-2429,2474,-2427,2475,-2425,2476,2477,2478,2479,2480,-2419,2481,-2417,2482,-2415,2483,-2413]]},{"type":"Polygon","id":"30024","arcs":[[-2040,2484,-2038,2485,-2036,2486,-2034,2487,2488,-2031,2489,-2029,2490,-2027,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,-2459]]},{"type":"Polygon","id":"30025","arcs":[[2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,-2460,-2502,2517,2518,2519,2520,2521,2522,2523]]},{"type":"Polygon","id":"30026","arcs":[[2524,2525,2526,2527,2528,2529,2530,2531,2532,-2452,2533,2534,2535,2536,-2447,2537,-2445,2538,-2463,2539,-2461,2540,2541,2542,-2514,2543,-2512,2544,-2510,2545,-2508,2546,-2506,2547,2548,-2503,2549,2550,2551,2552,2553],[2554],[2555]]},{"type":"Polygon","id":"30027","arcs":[[2556,-2402,2557,-2532,2558,2559,-2529,2560,2561,2562,2563,-2554,2564,2565,-2551,2566]]},{"type":"Polygon","id":"30028","arcs":[[2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634],[-2636,-2637,-2638,-2639,-2640,-2641,-2642,-2643,-2644,-2645,-2646,-2647,-2648,-2649,-2650,-2651]]},{"type":"Polygon","id":"30029","arcs":[[2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,-2373,2711,2712,-2370,2713,-2368,2714,2715,2716,2717,2718,2719,-2245,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,-2598,2731,-2596,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,-2637,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,-2651,2758,2759,2760,2761]]},{"type":"Polygon","id":"30030","arcs":[[2762,-2707,2763,2764,2765,2766,-2702,2767,2768,2769,2770,2771,2772,-2695,2773,2774,2775,2776,2777,2778,-2688,2779,-2686,2780,2781,-2683,2782,2783,2784]]},{"type":"Polygon","id":"30031","arcs":[[2785,2786,2787,2788,2789,2790,2791,2792,-2709,-2785,2793,2794,2795,2796,-2676,2797,2798,2799,-2672,2800,2801,2802,-2668,2803,2804,2805,2806,2807,2808,-2661,2809,2810,-2658,2811,2812,-2655,2813,-2653,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831]]},{"type":"Polygon","id":"30032","arcs":[[2832,2833,-2385,2834,-2383,2835,2836,-2380,2837,-2786,2838,2839,2840]]},{"type":"Polygon","id":"30033","arcs":[[2841,2842,-2830,2843,-2827,2844,2845,2846,2847,-2823,2848,-2821,2849,2850,-2818,2851,2852,2853,2854,2855,-2652,-2762,2856,-2760,2857,2858,2859,-2580,2860,2861,2862,-2576,2863,-2574,2864,-2572,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891]]},{"type":"Polygon","id":"30034","arcs":[[2892,-2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913]]},{"type":"Polygon","id":"30035","arcs":[[2914,2915,2916,2917,2918,2919,2920,-2910,2921,-2908,2922,-2906,2923,-2904,2924,2925,2926,-2900,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968]]},{"type":"Polygon","id":"30036","arcs":[[2969,2970,2971,2972,-2890,2973,2974,-2887,2975,2976,2977,2978,2979,2980,-2880,2981,-2878,2982,-2876,2983,-2874,2984,-2872,2985,2986,2987,2988,2989,2990,2991,-2569,2992,-2635,2993,-2633,2994,2995,-2630,2996,-2628,2997,-2626,2998,-2624,2999,-2622,3000,-2620,3001,-2618,3002,-2616,3003,3004,3005,3006,3007,3008,3009,3010,3011,-2606,3012,3013,3014,3015,-2601,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,-2932]]},{"type":"Polygon","id":"30037","arcs":[[3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,-3018,3046,3047,3048,3049,3050,3051,3052]]},{"type":"Polygon","id":"30038","arcs":[[3053,-2523,3054,3055,3056,-3048]]},{"type":"Polygon","id":"30039","arcs":[[-3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069]]},{"type":"Polygon","id":"30040","arcs":[[3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098]]},{"type":"Polygon","id":"30041","arcs":[[3099,3100,3101,3102,3103,-3067,3104,-3065,3105,-3063,3106,-3080,3107,3108,3109,3110,3111,3112,3113,-3072,3114,3115,3116,3117,3118,3119]]},{"type":"Polygon","id":"30042","arcs":[[3120,-3049,-3057,-3070,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135]]},{"type":"Polygon","id":"30043","arcs":[[3136,3137,3138,3139,-3052,3140,-3050,-3121,3141,-3135,3142,3143,-3132,3144,-3130,3145,-3128,3146,-3126,3147,3148,-3100,3149,3150,-3118,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165]]},{"type":"Polygon","id":"30044","arcs":[[3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197]]},{"type":"Polygon","id":"30045","arcs":[[3198,3199,3200,3201,3202,-3177,3203]]},{"type":"Polygon","id":"30046","arcs":[[3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,-3199,3217,3218]]},{"type":"Polygon","id":"30047","arcs":[[3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,-3155,3233,3234,3235,-3200,3236,-3216,3237,-3214]]},{"type":"Polygon","id":"30048","arcs":[[3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,-3162,3262,3263,3264,3265,3266,3267,3268,3269,-3230,3270,3271,-3227,3272,3273,3274,3275,3276,-3221,3277,3278,3279,3280,3281,3282,3283,-3207,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296]]},{"type":"Polygon","id":"30049","arcs":[[3297,3298,3299,3300,3301,-2954,3302,3303,-2951,3304,-2949,3305,3306,3307,-2945,3308,3309,-2942,3310,-2940,3311,3312,3313,3314,3315,-2934,3316,3317,3318,-3030,3319,3320,3321,3322,-3025,3323,3324,3325,3326,3327,3328,3329,-3045,3330,3331,-3042,3332,3333,3334,-3038,3335,-3036,3336,-3034,3337,-3053,3338,3339,-3138,3340,-3166,3341,3342,3343,-3256,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362]]},{"type":"Polygon","id":"30050","arcs":[[3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,-3353,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418]]},{"type":"Polygon","id":"30051","arcs":[[3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467]]},{"type":"Polygon","id":"30052","arcs":[[3468,3469,3470,3471,3472,-3426,3473,3474,3475,3476,3477,-3420,3478,-3467,3479,3480,-3464,3481,-3462,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,-2964,3496,3497,3498,3499,-2959,3500,3501,3502,-2955,3503,-3301,3504,-3299,3505,-3363,3506,-3361,3507,3508,3509,3510,3511,3512,3513,3514,-3394,3515,-3392,3516,-3390,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530]]},{"type":"Polygon","id":"30053","arcs":[[3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,-3436,3557,-3434,3558,-3432,3559,3560,3561,-3428,3562,-3473,3563,-3471,3564,-3469,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574]]},{"type":"Polygon","id":"30054","arcs":[[3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,-2914,3593,3594,3595,3596,-3547,3597,3598,-3544,3599,3600,-3541,3601,3602,3603,-3537,3604,3605,3606,3607,-3532,3608,-3574,3609,3610,-3571,3611,-3569,3612,3613]]},{"type":"Polygon","id":"30055","arcs":[[3614,3615,3616,3617,3618,3619,3620,-3592,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,-3579,3633,3634,3635,3636]]},{"type":"Polygon","id":"30056","arcs":[[3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,-3620,3681,-3618,3682,-3616,3683,-3637,3684,3685,3686,3687,3688,3689,3690,3691,3692]]},{"type":"Polygon","id":"30057","arcs":[[3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,-1430,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,-3673,3770,-3671,3771,-3669,3772,-3667,3773,-3665,3774,-3663,3775,-3661,3776,3777,3778,-3657,3779,-3655,3780,-3653,3781,-3651,3782,-3649,3783,-3647,3784,-3645,3785,-3643,3786,-3641,3787,-3639,3788,3789,-3692,3790,-3690,3791,-3688,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840]]},{"type":"Polygon","id":"30058","arcs":[[3841,3842,3843,-3836,3844,-3834,3845,3846,-3831,3847,-3829,3848,3849,-3826,3850,3851,-3823,3852,3853,3854,-3819,3855,-3817,3856,3857,-3813,3858,-3811,3859,-3809,3860,-3807,3861,-3805,3862,-3803,3863,-3801,3864,-3799,3865,3866,-3796,3867,-3794,3868,-3686,3869,3870,3871,3872]]},{"type":"Polygon","id":"30059","arcs":[[-3635,3873,3874,3875,3876,-3568,3877,-3530,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894]]},{"type":"Polygon","id":"30060","arcs":[[-3885,3895,-3883,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,-3891,3922,3923,3924,-3887,3925]]},{"type":"Polygon","id":"30061","arcs":[[3926,-3902,3927,-3900,3928,-3898,3929,3930,-3881,3931,-3879,-3529,3932,3933,-3526,3934,3935,-3523,3936,-3521,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,-3904]]},{"type":"Polygon","id":"30062","arcs":[[3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,-3984,4018,-3982,4019,-3980,4020,-3978,4021,4022,-3975,4023,4024,4025,4026,4027,4028,4029,-3967,4030,4031,4032,-3963,4033,-3961,4034,-3959,4035,-3957,4036,-3955,4037,-3953,4038,-3951,4039,4040,-3948,4041,4042,-3945,4043,4044,-3942,4045,4046,4047,-3386,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090]]},{"type":"Polygon","id":"30063","arcs":[[4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,-3911,4112,4113,4114,4115,-3906,4116,-3991,4117,-3989,4118,-3987,4119,-3985,4120,-4017,4121,4122,-4014,4123,4124,-4011,4125,4126,4127,-4007,4128,4129,-4004,4130,-4002,4131,-4000,4132,-3998,4133,-3996,4134,-3994,4135,-4090,4136,-4088,4137,-4086,4138,4139,4140,4141,4142,4143]]},{"type":"Polygon","id":"30064","arcs":[[4144,4145,4146,4147,4148,-4139,-4085,4149,-4083,4150,4151,4152,-4079,4153,4154,4155,4156,-4074,4157,4158,4159,-4070,4160,4161,4162,4163,4164]]},{"type":"Polygon","id":"30065","arcs":[[4165,4166,4167,4168,4169,-4065,4170,-4063,4171,-4061,4172,4173,-4058,4174,-4056,4175,-4054,4176,4177,4178,4179,4180,-3383,4181,4182,-3380,4183,-3378,4184,4185,4186,4187,-3373,4188,-3371,4189,-3369,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,-4164,4208,-4162]]},{"type":"Polygon","id":"30066","arcs":[[4209,-4199,4210,-4197,4211,4212,4213,4214,4215,-4191,-3368,4216,4217,-3365,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,-4204,4249,4250,-4201]]},{"type":"Polygon","id":"30067","arcs":[[4251,4252,-4207,4253,-4205,-4249,4254,4255,-4246,4256,4257,-4243,4258,-4241,4259,-4239,4260,-4237,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279]]},{"type":"Polygon","id":"30068","arcs":[[4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,-4266]]},{"type":"Polygon","id":"30069","arcs":[[4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,-4290]]},{"type":"Polygon","id":"30070","arcs":[[4322,4323,-4297,4324,-4295,4325,4326,4327,4328,4329,4330,4331,4332,4333,-4265,4334,-4232,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,-4300]]},{"type":"Polygon","id":"30071","arcs":[[4355,-4226,4356,4357,-4223,4358,-3417,4359,-3415,4360,4361,-4351,4362,-4349,4363,4364,-4346,4365,-4344,4366,4367,4368,4369,4370,4371,4372,-4228]]},{"type":"Polygon","id":"30072","arcs":[[4373,-4301,4374,-4354,4375,4376,-4362,4377,4378,4379,4380,4381,4382]]},{"type":"Polygon","id":"30073","arcs":[[4383,4384,-3218,-3204,-3176,4385,-3174,4386,-3172,4387,4388,-3169,4389,-3167,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,-4380]]},{"type":"Polygon","id":"30074","arcs":[[4401,-3407,4402,-3405,-3350,4403,4404,4405,4406,4407,4408,4409,-3244,4410,-3242,4411,-3240,4412,4413,-3296,4414,-3294,4415,4416,4417,-3290,4418,4419,-3287,-3219,-4385,4420,-4378,-4361,-3414,-3413,4421,-3411,4422,-3409]]},{"type":"Polygon","id":"30075","arcs":[[4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464]]},{"type":"Polygon","id":"30076","arcs":[[4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,-4381,4488,4489,-4399,4490,4491,-4396,4492,4493,4494,-4430,4495,4496,4497,4498,4499]]},{"type":"Polygon","id":"30077","arcs":[[4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,-4498,4513,-4496,-4429,4514,-4427,4515,-4425,4516,-4465,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570]]},{"type":"Polygon","id":"30078","arcs":[[4571,-4321,4572,-4318,4573,4574,4575,-4314,4576,4577,-4311,4578,-4309,4579,4580,4581,4582,4583,-4303,4584,4585,-4484,4586,4587,4588,-4480,4589,-4478,4590,-4476,4591,4592,-4473,4593,-4471,4594,-4469,4595,-4467,4596,4597,-4499,-4513,4598,-4511,4599,4600,-4508,4601,-4506,4602,-4504,4603,4604,-4501,4605,4606,4607,4608,4609,4610,4611,4612]]},{"type":"Polygon","id":"30079","arcs":[[4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,-4610,4647,-4608,4648,-4606,-4571,4649,-4569,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665]]},{"type":"Polygon","id":"30080","arcs":[[4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,-4623,4704,-4621,4705,-4619,4706,-4617,4707,-4615,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724]]},{"type":"Polygon","id":"30081","arcs":[[4725,4726,4727,4728,4729,-4208,-4253,4730,-4280,4731,4732,4733,4734,-4275,4735,-4273,4736,4737,4738,-4269,4739,4740,4741,4742,4743]]},{"type":"Polygon","id":"30082","arcs":[[4744,4745,-4743,4746,-4741,-4267,-4294,4747,-4292,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757]]},{"type":"Polygon","id":"30083","arcs":[[4758,4759,4760,4761,-4145,4762,-4730,4763,-4728,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787]]},{"type":"Polygon","id":"30084","arcs":[[4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,-4744,-4746,4807,-4758,4808,4809,4810,4811,4812,4813,4814,4815,4816,-4702,4817,-4700,4818,-4698,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837]]},{"type":"Polygon","id":"30085","arcs":[[4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,-4767,4853,-4765,-4727,4854,4855,-4805,4856,4857,4858,4859,4860,4861,4862,4863,-4796,4864,4865,4866,-4792,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885]]},{"type":"Polygon","id":"30086","arcs":[[4886,4887,-4112,4888,4889,4890,4891,-4107,4892,4893,-4104,4894,4895,-4101,4896,4897,-4098,4898,4899,-4095,4900,4901,-4092,4902,-4143,4903,-4141,4904,4905,-4148,4906,-4146,-4762,4907,4908,4909,-4788,4910,4911,4912,-4784,4913,-4782,4914,-4780,4915,-4778,4916,4917,-4775,4918,4919,4920,-4771,4921,-4769,4922,-4852,4923,-4850,4924,4925,4926]]},{"type":"Polygon","id":"30087","arcs":[[4927,4928,4929,4930,4931,-4927,4932,-4925,-4849,4933,-4847,4934,4935,4936]]},{"type":"Polygon","id":"30088","arcs":[[4937,4938,4939,-3893,4940,4941,4942,-3919,4943,4944,-3916,4945,-3914,4946,-4887,-4932,4947]]},{"type":"Polygon","id":"30089","arcs":[[-3685,-3636,-3895,4948,-4939,4949,4950,4951,4952,4953,-3870]]},{"type":"Polygon","id":"30090","arcs":[[4954,-4930,4955,4956,4957,4958,4959,4960,4961,4962]]},{"type":"Polygon","id":"30091","arcs":[[4963,4964,4965,-4959,4966,-4957,4967,-4956,-4929,4968,-4937,4969,-4935,-4846,4970,-4844,4971,-4842,4972,4973]]},{"type":"Polygon","id":"30092","arcs":[[4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992]]},{"type":"Polygon","id":"30094","arcs":[[4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039]]},{"type":"Polygon","id":"30095","arcs":[[5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,-4964,5060,5061,5062,5063,5064,5065,5066,5067,5068]]},{"type":"Polygon","id":"30096","arcs":[[5069,5070,5071,5072,5073,5074,-5038,5075,5076,5077,-5034,5078,-5032,5079,5080,5081,5082,5083,5084,-5025,5085,-5023,5086,-5021,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,-5010,5097,5098,5099,5100,5101,5102,5103]]},{"type":"Polygon","id":"30097","arcs":[[5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132]]},{"type":"Polygon","id":"30099","arcs":[[5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176]]},{"type":"Polygon","id":"30100","arcs":[[5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,-5123,5189,5190,5191,-5066,5192,-5064,5193,-5062,5194,-5142,5195,5196]]},{"type":"Polygon","id":"30101","arcs":[[5197,-4822,5198,-4820,-4697,5199,-4695,5200]]},{"type":"Polygon","id":"30102","arcs":[[-5195,-5061,-4974,5201,-4840,5202,-4886,5203,-4884,5204,-4882,5205,5206,5207,5208,5209,-5143]]},{"type":"Polygon","id":"30103","arcs":[[5210,-4880,5211,-4878,5212,5213,-4875,5214,-4873,5215,5216,-4870,-4789,5217,5218,5219,5220,-4834,5221,-4832,5222,5223,-4829,5224,5225,5226,-4825,5227,5228,-5198,5229,-5206]]},{"type":"Polygon","id":"30104","arcs":[[-5207,-5230,-5201,-4694,5230,5231,-4691,5232,5233,-4688,5234,-4686,5235,5236,5237,5238,5239]]},{"type":"Polygon","id":"30105","arcs":[[5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,-5239,5250,-5237,-4684,5251,-4682,5252,-4680,5253,-4678,5254,5255,5256,-4674,5257,-4672,5258,5259,-4669,5260,5261,5262,5263,5264,5265,5266]]},{"type":"Polygon","id":"30106","arcs":[[5267,-5157,5268,-5155,5269,5270,-5152,5271,5272,5273,-5148,5274,-5146,5275,5276,-5210,5277,-5208,-5240,-5250,5278,-5248,5279,-5246,5280,5281,5282]]},{"type":"Polygon","id":"30107","arcs":[[5283,5284,-4441,5285,-4439,5286,5287,-4436,5288,-4434,5289,5290,-4431,-4495,-4393,5291,-4391,-3198,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,-4444]]},{"type":"Polygon","id":"30108","arcs":[[5320,-3179,5321,5322,-3099,5323,-3097,5324,5325,5326,-3093,-3184,5327,5328,-3181]]},{"type":"Polygon","id":"30109","arcs":[[5329,-3201,-3236,5330,-3234,5331,5332,-3152,5333,-3116,5334,-5322,-3178,-3203]]},{"type":"Polygon","id":"30110","arcs":[[-1408,5335,5336,5337,5338,-1403,5339,5340,-1400,5341,-1398,5342,5343,5344,5345,5346,-1392,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,-3677,5358,5359,-3674,-3770,5360,-3768,5361,-3766,5362,-3764,5363,-3762,5364,5365,5366,-3758,5367,-3756,5368,-3754,5369,5370,-3751,5371,-3749,5372,-3747,5373,5374,5375,5376,-3743,5377,5378,-3740,5379,-3738,5380,-3736,5381,5382,-3733,5383,-3731,5384,5385,5386,-1411,5387,5388]]},{"type":"Polygon","id":"30111","arcs":[[5389,-1341,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,-5353,5400,5401,-5350,5402]]},{"type":"Polygon","id":"30112","arcs":[[5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426]]},{"type":"Polygon","id":"30114","arcs":[[5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,-1510,5457,-1508,5458,-1506,5459,5460,-1503,5461,-1501,-2154,5462,5463]]},{"type":"Polygon","id":"30115","arcs":[[5464,5465,5466,5467,5468,5469,5470,5471,5472,-1512,-5456,5473,-5454,5474,5475,5476,-5450,5477,-5448,5478,5479,5480,-5444,5481,5482]]},{"type":"Polygon","id":"30116","arcs":[[5483,-5465,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,-5472,5533,-5470,5534,-5468,5535]]},{"type":"Polygon","id":"30117","arcs":[[5536,5537,5538,5539,5540,-5508,5541,5542,-5505,5543,-5503,5544,5545,-5500,5546,-5498,5547,5548,-5495,5549,-5493,5550,-5491,5551,-5489,5552,-5487,5553,-5485,-5483,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565]]},{"type":"Polygon","id":"30118","arcs":[[5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,-5566,5599]]},{"type":"Polygon","id":"30119","arcs":[[5600,-5597,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,-5537,-5599]]},{"type":"Polygon","id":"30121","arcs":[[5631,-2494,5632,-2492,-2026,5633,5634,5635,5636,5637,5638,5639,5640,5641,-2496]]},{"type":"Polygon","id":"30122","arcs":[[5642,5643,-1932,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,-1988,5716,5717,5718,-1984,5719,-1982,5720,5721,5722,-1978,5723,5724,-1975,5725,-1973,5726,5727,5728,-1969,5729,-1967,5730,5731,-1964,5732,-1962,5733,-1960,5734,5735,-1957,5736,-1955,5737,-1953,5738,5739,5740,5741,5742,5743,-1946,5744,-1944,5745,-1942,5746,5747,5748,5749,5750,5751,-1935]]},{"type":"Polygon","id":"30123","arcs":[[5752,-1684,5753,-1682,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,-5646,5790,-1930,5791,-1928,5792,-1926,5793,-1924,5794,-1922,5795,-1920,5796,-1918,5797,-1916,5798,-1914,5799,-1912,5800,-1910,5801,-1908,5802,-1906,5803,-1904,5804,-1902,5805,-1900,5806,-1898,5807,-1896,5808,-1894,5809,-1892,5810,-1890,5811,-1888,5812,5813,-1885,5814,-1883,5815,-1881,5816,-1879,5817,-1877,5818,-1875,5819,-1873,5820,-1871,5821,-1869,5822,-1867,5823,-1865,5824,-1863,5825,-1861,5826,-1859,5827,-1857,5828,-1855,5829,-1853,5830,-1851,5831,-1849,5832,5833,5834,5835,5836,5837,-1842,5838,-1840,5839,-1838,5840,-1836,5841,-1834,5842,-1832,5843,-1830,5844,-1828,5845,5846,5847,-1824,5848,-1822,5849,-1820,5850,-1818,5851,-1816,5852,5853,5854,-1812,5855,-1810,5856,-1808,5857,-1806,5858,-1804,5859,-1802,5860,-1800,5861,-1798,5862,-1796,5863,-1794,5864,-1792,5865,-1790,5866,-1788,5867,-1786,5868,5869,-1783,5870,-1781,5871,-1779,5872,-1777,5873,-1775,5874,-1773,5875,-1771,5876,-1769,5877,-1767,5878,-1765,5879,-1763,5880,-1761,5881,-1759,5882,-1757,5883,-1755,5884,-1753,5885,-1751,5886,-1749,5887,-1747,5888,-1745,5889,-1743,5890,-1741,5891,5892,5893,-1737,5894,5895,5896,-1733,5897,-1731,5898,-1729,5899,5900,-1726,5901,5902,-1723,5903,5904,5905,5906,5907,5908,-1716,5909,-1714,5910,-1712,5911,-1710,5912,5913,-1707,5914,-1686]]},{"type":"Polygon","id":"30124","arcs":[[5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931]]},{"type":"Polygon","id":"30125","arcs":[[-1131,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,-5398,5942,5943,5944,-1286,5945,-1284,5946,5947,5948,5949,5950,5951,5952,-1221,5953,-1219,5954,-1217,5955,5956,-1214,5957,5958,5959,-1210,5960,-1208,5961,5962,-1205,5963,5964,5965,5966,5967,-1141,5968,5969,-1138,5970,5971,5972,5973,-1133,5974]]},{"type":"Polygon","id":"30126","arcs":[[-5919,5975,5976,5977,-2841,5978,5979,5980,5981,5982,-5920]]},{"type":"Polygon","id":"30127","arcs":[[-5978,5983,-5935,5984,5985,5986,5987,5988,-1127,5989,-1125,5990,5991,5992,-1121,5993,-1119,5994,5995,5996,-1115,5997,5998,5999,6000,6001,6002,6003,-1093,6004,6005,6006,-1089,6007,-1087,6008,-1085,6009,6010,6011,6012,6013,6014,6015,6016,-2349,6017,6018,6019,6020,6021,6022,6023,-2341,6024,6025,6026,6027,6028,-2833]]},{"type":"Polygon","id":"30128","arcs":[[-4977,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038]]},{"type":"Polygon","id":"30129","arcs":[[6039,6040,-4985,6041,-4983,6042,-4981,6043,-4979,6044,-6039,6045,6046,6047,6048,6049,6050,6051,6052,6053]]},{"type":"Polygon","id":"30130","arcs":[[6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082]]},{"type":"Polygon","id":"30131","arcs":[[6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,-6082,6095,-6080,6096,-6078,6097,-6076]]},{"type":"Polygon","id":"30132","arcs":[[6098,6099,-1458,6100,6101,-1455,6102,-1453,6103,-1451,6104,-1449,6105,-1447,6106,6107,-3710,6108,6109,-3707,6110,6111,6112,6113,6114,-3702,6115,-3700,6116,6117,-3697,6118,6119,6120,-3841,6121,-3839,6122,6123,6124,-1464,6125]]},{"type":"Polygon","id":"30133","arcs":[[6126,-5766,6127,6128,6129,-5762,6130,-5760,6131,-5758,6132,-5756,6133,-1681,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151]]},{"type":"Polygon","id":"30134","arcs":[[6152,6153,6154,6155,-5117,6156,6157,6158,6159,6160,-1495,6161,6162,6163,-1491,6164,6165,6166,-1487,6167,-1485,6168,6169,6170,6171,-1466,-1465,-6125]]},{"type":"Polygon","id":"30135","arcs":[[6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190]]},{"type":"Polygon","id":"30136","arcs":[[6191,6192,6193,-5408,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,-5420,6231,-5418,6232,-5416,6233,6234,-5413,6235]]},{"type":"Polygon","id":"30137","arcs":[[6236,6237,6238,6239,6240,6241,6242,6243,-5308,6244,-5306,6245,-5304,6246,-5302],[-6248,-6249,-6250,-6251,-6252,-6253,-6254,-6255,-6256,-6257,-6258,-6259,-6260],[5311,-6261,-6262,-6263,-6264,-6265,-6266,-6267,5309,-6268]]},{"type":"Polygon","id":"30138","arcs":[[6268,6269,6270,-5317,6271,6272,6273,6274,-6261,6275,-6263,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321]]},{"type":"Polygon","id":"30139","arcs":[[6322,6323,-5540,6324,-5538,-5631,6325,-5629,6326,-5628,6327,6328,6329,-5624,6330,-5622,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,-6030,-4976,6343,-4993,6344,6345,6346,6347,-5522,6348,-5520,6349,-5518,6350,-5516,6351,6352,-5513,6353,6354,6355]]},{"type":"Polygon","id":"30140","arcs":[[-1542,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,-6052,6369,6370,-6049,6371,6372,6373,6374,-6071,6375,6376,6377,6378,6379,-6065,6380,6381,6382,6383,6384,6385,6386,6387]]},{"type":"Polygon","id":"30141","arcs":[[6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,-1546,-6385,6400,-6383,-6062,6401,-6060,6402,-6058,6403,-6056,6404,-6083,-6095,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425]]},{"type":"Polygon","id":"30142","arcs":[[-6075,6426,-6073,6427,6428,6429,6430,-6047,6431,-6088,6432,-6086,6433,-6084]]},{"type":"Polygon","id":"30143","arcs":[[6434,6435,6436,6437,6438,6439,-6406,-6094,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,-5767,-6127]]},{"type":"Polygon","id":"30144","arcs":[[-6457,6554,6555,-6454,6556,-6452,6557,-6450,6558,-6448,6559,-6446,6560,-6444,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,-6492,6574,6575,6576,6577,6578,-6486,6579,-6484,6580,6581,-6481,6582,-6479,6583,-6477,6584,6585,6586,-6473,6587,6588,-6470,6589,-6468,6590,-6466,6591,6592,-6463,6593,6594,6595,-6459,6596]]},{"type":"Polygon","id":"30145","arcs":[[6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,-2520,6611,-2518,-2501,6612,6613,6614,-2497,-5642,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,-6173]]},{"type":"Polygon","id":"30146","arcs":[[-6632,6632,-6630,6633,-6628,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,-6174]]},{"type":"Polygon","id":"30147","arcs":[[6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663]]},{"type":"Polygon","id":"30148","arcs":[[6664,6665,6253,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,-3086,6682,6256]]},{"type":"Polygon","id":"30149","arcs":[[6683,-6660,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,-6662]]},{"type":"Polygon","id":"30150","arcs":[[6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,-6740,6757,-6738,6758,6759,-6735,6760,6761,6762,-6731,6763,-6729,6764,-6727,6765,-6725,6766,6767,6768,-6721,6769,6770,-6718,6771,-6716,6772,-6714,6773,6774,-6711,6775,6776,-6708,6777,-6706,6778,-6704,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816]]},{"type":"Polygon","id":"30151","arcs":[[6817,-4999,6818,-4997,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,-5001]]},{"type":"Polygon","id":"30152","arcs":[[6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,-6206,6930,6931,-6203,6932,-6201,6933,-6199,6934]]},{"type":"Polygon","id":"30153","arcs":[[6935,6936,6937,6938,-6278,6939,-6663,-6744,-6754,6940,-6752,6941,-6750,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971]]},{"type":"Polygon","id":"30154","arcs":[[-6685,-6659,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988]]},{"type":"Polygon","id":"30155","arcs":[[-6664,-6940,-6277,-6264,6989,6990,6991,6992,6993,6994]]},{"type":"Polygon","id":"30156","arcs":[[6995,6996,6997,6998,-6257,-6258,6999,-6260,7000,7001,-6239],[-7003,3185,-7004,3187,-7005,3189,-7006,-7007,-7008,-7009,-7010,-7011,-7012,3088,-7013,3090]]},{"type":"Polygon","id":"30157","arcs":[[-6321,7013,7014,-6318,7015,7016,7017,7018,-6313,7019,-6311,7020,7021,7022,-6307,7023,-6305,7024,-6303,7025,-6301,7026,7027,7028,7029,-6296,7030,7031,-6293,7032,7033,-6290,7034,7035,7036,-6286,7037,-6284,7038,-6282,7039,-6280,7040,-6939,7041,7042,7043,-6972,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,-6823,-5040,-5074,7054,-5072,7055]]},{"type":"Polygon","id":"30158","arcs":[[-3084,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,-6610,7066,-6608,7067,-6606,7068,7069,-6603,7070,7071,-6600,7072,-6598,-6191,7073]]},{"type":"Polygon","id":"30159","arcs":[[-6989,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,-6686]]},{"type":"Polygon","id":"30160","arcs":[[7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,-5098,-5009,7146,-6904,7147,7148,-6901,7149,-6899,7150,7151,7152]]},{"type":"Polygon","id":"30161","arcs":[[7153,7154,-6782,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,-6789,7187,-6787,7188,-6785]]},{"type":"Polygon","id":"30162","arcs":[[-7054,-6873,7189,-6871,7190,-6869,7191,-6867,7192,7193,7194,7195,7196,-6861,7197,7198,-6858,7199,7200,7201,7202,7203,-6852,7204,-6850,7205,7206,-6847,7207,7208,7209,7210,-6842,7211,7212,7213,7214,-6837,7215,-6835,7216,7217,-6832,7218,-6830,7219,-6828,7220,-6826,7221,-6824]]},{"type":"Polygon","id":"30163","arcs":[[-7120,7222,-7118,7223,7224,7225,-7114,7226,7227,7228,-7110,7229,-7108,7230,7231,7232,-7104,7233,-7102,7234,7235,7236,-7098,7237,7238,-7095,7239,-7093,7240,-7091,7241,-7089,7242,7243,7244,7245,7246,-7083,7247,-7081,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,-7165,7267,7268,-7162,7269,7270,-7159,7271,7272,-7156,-6781,-6702,7273,7274,7275,-6698,7276,7277,7278,-6694,7279,7280,7281,7282,-6689,7283,-6687,-7124,7284,-7122,7285]]},{"type":"Polygon","id":"30164","arcs":[[7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,-7264,7308,-7262,7309,7310,7311,-7258,7312,-7256,7313,-7254,7314,7315,7316,-7250]]},{"type":"Polygon","id":"30165","arcs":[[-3107,-3062,7317,7318,-3059,7319,-2521,-6611,-7066,7320,-7064,7321,-7062,7322,-7060,7323,7324,-7057,-3083,7325,-3081]]},{"type":"Polygon","id":"30166","arcs":[[-7298,7326,-7296,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394]]},{"type":"Polygon","id":"30167","arcs":[[7395,7396,-6973,-6658,7397]]},{"type":"Polygon","id":"30168","arcs":[[7398,-6896,7399,7400,7401,-6892,7402,7403,7404,7405,7406,-6886,7407,7408,-7125,-7152]]},{"type":"Polygon","id":"30169","arcs":[[7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568]]},{"type":"Polygon","id":"30170","arcs":[[7569,7570,7571,-5675,7572,-5673,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,-7435,7586,-7433,7587,-7431,7588,-7429,7589,-7427,7590,7591,7592,7593]]},{"type":"Polygon","id":"30171","arcs":[[7594,7595,7596,-5667,7597,-5665,7598,7599,7600,-5661,7601,7602,7603,-5657,7604,-5780,7605,-5778,7606,7607,-5775,7608,-5773,7609,7610,-5770,7611,7612,-6554,7613,7614,7615,7616,-6549,7617,-6547,7618,-6545,7619,-6543,7620,-6541,7621,-6539,7622,-6537,7623,-6535,7624,7625,-6532,7626,7627,7628,7629,7630,-6526,7631,7632,-6523,7633,-6521,7634,-6519,7635,-6517,7636,-6515,7637,-6513,7638,-6511,7639,7640,-6508,7641,7642,7643,-6504,7644,7645,7646,-6500,7647,-6498,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,-7567,7764,7765,-7564,7766,7767,-7561,7768,-7559,7769,-7557,7770,7771,7772,7773,-7552,7774,7775,-7549,7776,-7547,7777,7778,-7544,7779,7780,7781,-7540,7782,-7538,7783,7784,-7535,7785,-7533,7786,-7531,7787,-7529,7788,7789,-7526,7790,-7524,7791,-7522,7792,7793,-7519,7794,-7517,7795,7796,-7514,7797,-7512,7798,-7510,7799,-7508,7800,-7506,7801,-7504,7802,-7502,7803,7804,-7499,7805,-7497,7806,-7495,7807,-7493,7808,-7491,7809,-7489,7810,-7487,7811,-7485,7812,-7483,7813,-7481,7814,-7479,7815,-7477,7816,7817,-7474,7818,-7472,7819,-7470,7820,-7468,7821,7822,7823,-7464,7824,-7462,7825,7826,-7459,7827,7828,7829,-7455,7830,-7453,7831,7832,7833,-7449,7834,-7447,7835,-7445,7836,7837,7838,-7441,7839,-7439,7840,7841,7842,-7585,7843,7844,7845,7846,-7580,7847,-7578,7848,7849,-7575,-5671]]},{"type":"Polygon","id":"30172","arcs":[[-7717,7850,7851,-7714,7852,7853,7854,7855,7856,-7708,7857,-7706,7858,7859,7860,-7702,7861,-7700,7862,7863,-7697,7864,-7695,7865,7866,7867,-7691,7868,-7689,7869,7870,-7686,7871,-7684,7872,7873,7874,-7680,7875,7876,-7677,7877,7878,7879,7880,-7672,7881,7882,-7669,7883,-7667,7884,7885,-7664,7886,-7662,7887,-7660,7888,-7658,7889,-7656,7890,-7654,7891,-7652,7892,-7650,7893,7894,-6496,7895,7896,-6493,-6574,7897,7898,7899,-6570,7900,-6568,7901,7902,7903,7904,7905,7906,-7569,7907,-7763,7908,-7761,7909,-7759,7910,-7757,7911,-7755,7912,7913,7914,-7751,7915,7916,-7748,7917,-7746,7918,7919,7920,-7742,7921,-7740,7922,7923,-7737,7924,7925,-7734,7926,-7732,7927,-7730,7928,-7728,7929,-7726,7930,7931,7932,7933,-7721,7934,-7719,7935]]},{"type":"Polygon","id":"30173","arcs":[[-6423,7936,-6421,7937,7938,-6418,7939,7940,-6415,7941,-6413,7942,-6411,7943,-6409,7944,-6407,7945,7946,7947,-6437,7948,-6435,-6152,7949,-6150,7950,7951,7952,-6146,7953,7954,7955,-6142,7956,-6140,7957,7958,-6137,7959,-6135,-1680,-1660,7960,7961,-6425,7962]]},{"type":"Polygon","id":"30177","arcs":[[7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,-5584,7973,7974,7975,-5580,7976,7977,-5577,7978,7979]]},{"type":"Polygon","id":"30178","arcs":[[7980,-6915,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,-6923,8005,-6921,8006,-6919,8007,-6917]]},{"type":"Polygon","id":"30180","arcs":[[8008,-6642,8009,-6640,8010,8011,8012,8013,8014,-6652,8015,-6650,8016,-6648,8017,-6646,8018,-6644]]},{"type":"Polygon","id":"30181","arcs":[[8019,-6637,8020,-6635,8021,-6626,8022,8023,8024,-6622,8025,8026,-6619,8027,8028,8029,8030,-8011,-6639]]},{"type":"Polygon","id":"30182","arcs":[[8031,8032,-5635,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,-8030,8059,-8028,-6618,8060,-6616,-5641,8061,-5639,8062]]},{"type":"Polygon","id":"30183","arcs":[[8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082]]},{"type":"Polygon","id":"30184","arcs":[[-8052,8083,8084,8085,-5685,8086,8087,8088,-5681,8089,-5679,8090,-7594,8091,8092,-8070,8093]]},{"type":"Polygon","id":"30185","arcs":[[-2025,8094,-2003,8095,-2001,8096,-1999,8097,-1997,8098,-1995,8099,-1993,8100,-1991,8101,-1989,8102,8103,8104,8105,-5712,8106,8107,8108,8109,-5707,8110,-5705,8111,8112,-5702,8113,8114,8115,8116,8117,-5696,8118,-5694,8119,8120,8121,-5690,8122,8123,-8046,8124,-8044,8125,8126,-8041,8127,-8039,8128,-8037,8129,8130,8131,-5634]]},{"type":"Polygon","id":"30186","arcs":[[8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173]]},{"type":"Polygon","id":"30187","arcs":[[8174,-1531,8175,-1529,8176,-1527,8177,-1525,8178,8179,-1522,8180,-1520,8181,-1518,8182,8183,-1515,8184,-1513,-5473,8185,-5532,8186,-5530,8187,8188,-5527,8189,-5525,8190,8191,-6347,8192,-6345,8193,8194,-4990,8195,-4988,8196,8197,-6041,8198,-6054,8199,-6368,8200,-6366,8201,8202,-6363,8203,8204,-6360,8205,8206,8207,-1541,8208,-1533]]},{"type":"Polygon","id":"30188","arcs":[[8209,8210,-2222,8211,8212,-2261,8213,8214,8215,8216,8217,8218,8219,8220,-2148,8221,8222,-2145,8223,-2143,8224,-2141,8225,8226,-2200,8227,8228,-2197,8229,8230,8231,8232,8233,-2191,8234,8235,8236,8237,8238,8239,-2093,8240,-2228,8241,8242,8243]]},{"type":"Polygon","id":"30189","arcs":[[8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279]]},{"type":"Polygon","id":"30190","arcs":[[8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,-8265,8312,-8263,8313,8314,-8260,8315,-8258,8316,-8256,8317,8318,8319,8320,-8251,8321]]},{"type":"Polygon","id":"30191","arcs":[[8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,-8300,8340,8341,8342,-8296,8343,8344,8345,-8292,8346,8347,8348,8349,-8287,8350,8351,-8284,8352,-8282,8353,-8322,-8250,8354,8355,8356,8357,8358]]},{"type":"Polygon","id":"30192","arcs":[[8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,-8323,8386,8387,8388,8389,8390,8391,8392]]},{"type":"Polygon","id":"30193","arcs":[[-8380,8393,-8378,8394,8395,8396,8397,8398,8399,8400,8401,-8330,8402,-8328,8403,-8326,8404,-8324,-8386,8405,8406,8407,-8382,8408]]},{"type":"Polygon","id":"30194","arcs":[[8409,-8369,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,-7592,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,-8397,8435,-8395,-8377,8436,8437,-8374,8438,8439,-8371]]},{"type":"Polygon","id":"30195","arcs":[[-8092,-7593,-8420,8440,8441,-8417,8442,-8415,8443,-8413,8444,-8411,-8368,8445,-8366,8446,-8364,8447,8448,8449,8450,8451]]},{"type":"Polygon","id":"30196","arcs":[[8452,-8075,8453,-8073,8454,-8071,-8093,-8452,8455,8456,8457,8458,8459,8460,8461,8462,8463]]},{"type":"Polygon","id":"30197","arcs":[[8464,-2728,8465,-2726,8466,-2724,8467,8468,8469,-2242,8470,-2240,8471,8472,8473,-2236,8474,8475,-2233,8476,8477,8478,8479,8480,-2138,8481,-2386,-2557,8482]]},{"type":"Polygon","id":"30198","arcs":[[8483,-2186,8484,-2184,8485,8486,-2181,8487,8488,-2178,8489,8490,-1555,8491,8492,-1552,8493,-1550,8494,8495,-1547,-6400,8496,-6398,8497,-6396,8498,8499,8500,-6392,8501,-6390,8502,-6426,-7962,-1658,8503,-1656,8504,-1654,8505,-1652,8506,-1650,8507,-1648,8508,-1646,8509,-1644,8510,-1642,8511,-1640,8512,-1638,8513,-1636,8514,-1634,8515,-1632,8516,-1630,8517,-1628,8518,-1626,8519,-1624,8520,-1622,8521,-1620,8522,8523,-1617,8524,8525,-1614,8526,-1612,8527,-1610,8528,8529,8530,-1606,-1604,-2188]]},{"type":"Polygon","id":"30199","arcs":[[8531,8532,8533,-8421,-7591,-7426,8534,8535,8536,8537,8538,8539]]},{"type":"Polygon","id":"30200","arcs":[[8540,-7412,8541,-7410,-7907,8542,-7905,8543,8544,8545,8546,8547,-8539,8548,-8537,8549,-8535,8550,-7424,8551,-7422,8552,-7420,8553,-7418,8554,-7416,8555,-7414]]},{"type":"Polygon","id":"30201","arcs":[[-8387,-8359,-8245,8556,-8279,8557,8558,8559,8560]]},{"type":"Polygon","id":"30202","arcs":[[8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,-8559,8571,-8277,8572,-8275,8573,-8273,8574,8575,8576,-8269,8577,8578,-8310,8579,8580,8581]]},{"type":"Polygon","id":"30203","arcs":[[8582,8583,8584,8585,-7982,8586,8587,-6912,8588,8589,8590]]},{"type":"Polygon","id":"30204","arcs":[[8591,8592,8593,8594,8595,8596,8597,8598,-8585,8599,-8583]]},{"type":"Polygon","id":"30205","arcs":[[8600,-8598,8601,8602,8603,-7985,8604,-7983,-8586]]},{"type":"Polygon","id":"30206","arcs":[[-8597,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,-8602]]},{"type":"Polygon","id":"30207","arcs":[[8632,-8592,-8591,8633]]},{"type":"Polygon","id":"30208","arcs":[[8634,8635,-8593,-8633]]},{"type":"Polygon","id":"30209","arcs":[[-8636,8636,8637,8638,-8610,8639,-8608,8640,-8606,-8596,8641,8642]]},{"type":"Polygon","id":"30211","arcs":[[8643,8644,-7991,8645,-7989,8646,8647,-7986,-8604]]},{"type":"Polygon","id":"30212","arcs":[[8648,8649,8650,-5588,8651,8652,-7971,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,-5617,8663,8664,-5614,8665,-5612,8666,8667,8668,8669,8670,8671,8672,8673,-5603,-5595,8674,-5593,8675]]},{"type":"Polygon","id":"30213","arcs":[[8676,-8655,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,-6341,8711,-6339,8712,8713,8714,8715,8716,8717,8718,-8659,8719,-8657]]},{"type":"Polygon","id":"30214","arcs":[[8720,8721,8722,8723,-7967,8724,-7965,8725,8726,-7996,8727,-7994,8728]]},{"type":"Polygon","id":"30216","arcs":[[-8462,8729,8730,8731,8732,8733]]},{"type":"Polygon","id":"30223","arcs":[[8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808]]},{"type":"Polygon","id":"30224","arcs":[[8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,-8745,8842,-8743,8843,-8741,8844,-8739,8845,8846,-8736,8847,-8809,8848,8849,8850,8851]]},{"type":"Polygon","id":"30225","arcs":[[8852,8853,8854,8855,8856,8857,8858,8859,8860,-8787]]},{"type":"Polygon","id":"30226","arcs":[[8861,8862,8863,8864,-8778,8865,8866,-8775,8867,-8773,8868,-8771,8869,8870,8871,8872,8873,-8149,8874,-8147,8875,8876,-8144,8877,-8142,8878,8879,-8139,8880,8881,8882,-8135,8883,-8133,8884,-8173,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,-8783]]},{"type":"Polygon","id":"30227","arcs":[[-8172,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,-8886]]},{"type":"Polygon","id":"30228","arcs":[[8950,-8939,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989]]},{"type":"Polygon","id":"30229","arcs":[[8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,-8984,9001,9002,-8981,9003,9004]]},{"type":"Polygon","id":"30230","arcs":[[9005,9006,-5103,9007,-5101,9008,-5099,-7146,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,-8163,9020,-8161,9021,-8159,9022,-8157,9023,-8156,9024,-8154,9025,-8152,9026,-8150,-8874,9027,9028,9029]]},{"type":"Polygon","id":"30231","arcs":[[9030,9031,-8767,9032,9033,-8764,9034,9035,-8761,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,-9007,9053,-9030,9054,-9028,-8873,-8871]]},{"type":"Polygon","id":"30232","arcs":[[9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,-9043,9075,-9041,9076,9077,9078,9079,-8753,9080,9081,9082,9083,9084,9085,-8840,9086,9087,9088,9089,9090,9091,9092,9093,9094]]},{"type":"Polygon","id":"30233","arcs":[[9095,-9073,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,-6322,-7056,-5071,9108,-5104,-9053,9109,-9051,9110,9111,9112,9113,-9046,9114,-9044,-9075]]},{"type":"Polygon","id":"30234","arcs":[[9115,9116,9117,-9098,9118,9119,-9070,9120,-9068,9121,9122,9123,9124,9125]]},{"type":"Polygon","id":"30235","arcs":[[9126,9127,9128,9129,9130,9131,-4527,9132,-4525,9133,-4523,9134,-4521,9135,-4519,-4463,9136,-4461,9137,-4459,9138,-4457,9139,-4455,9140,-4453,9141,-4451,9142,-4449,9143,-4447,9144,-5319,9145,-6270,9146,-9107,9147,-9105,9148,-9103,9149,-9101,9150,9151,-9118,9152,-9116,9153]]},{"type":"Polygon","id":"30236","arcs":[[9154,-4651,-4568,9155,-4566,9156,-4564,9157,-4562,9158,-4560,9159,-4558,9160,-4556,9161,9162,9163,-4552,9164,9165,-4549,9166,9167,-4546,9168,-4544,9169,9170,9171,-4540,9172,-4538,9173,-4536,9174,-4534,9175,-4532,9176,-4530,9177,-4528,9178,9179,-9130,9180,-9128,9181,-9154,-9126,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197]]},{"type":"Polygon","id":"30237","arcs":[[9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,-9183,-9125,9208,-9123,-9066,9209,-9090,-9089,-9088,-9087,-8839,9210,-8837,9211,9212]]},{"type":"Polygon","id":"30238","arcs":[[9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,-9213,9224,9225,9226,9227,-8816,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237]]},{"type":"Polygon","id":"30239","arcs":[[9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,-9201,9259,-9199,-9224,9260,-9222,9261,-9221,9262,9263,9264,9265,9266,9267,9268,9269]]},{"type":"Polygon","id":"30240","arcs":[[9270,9271,-4723,9272,9273,-4720,9274,9275,9276,-4716,9277,-4714,9278,9279,-4711,9280,-4709,9281,-4666,-4664,9282,-4662,9283,-4660,9284,-4658,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303]]},{"type":"Polygon","id":"30241","arcs":[[9304,9305,9306,9307,9308,-5266,9309,9310,-5263,9311,-5261,-4668,9312,-4725,9313,-9272,9314,-9304,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324]]},{"type":"Polygon","id":"30242","arcs":[[9325,9326,9327,9328,9329,9330,-9324,9331,-9322,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347]]},{"type":"Polygon","id":"30243","arcs":[[9348,9349,9350,9351,9352,9353,9354,9355,-9325,-9331,9356,-9329,9357,9358,9359,9360,9361,9362,9363]]},{"type":"Polygon","id":"30244","arcs":[[9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,-5160,9374,-5283,9375,-5281,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397]]},{"type":"Polygon","id":"30245","arcs":[[9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,-5196,-5141,9410,9411,9412,-5137,9413,-5135,9414,-5177,9415,-5175,9416,-5173,9417,-5171,9418,-5169,9419,9420,9421,9422,9423,-5163,9424,-5161,-9374,9425,-9372,9426,-9370,9427,9428,-9367,9429,-9365,9430]]},{"type":"Polygon","id":"30246","arcs":[[9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,-5179,9443,-5197,9444,-9409,9445,-9407,9446,9447,-9404,9448,-9402,9449,-9400,9450]]},{"type":"Polygon","id":"30247","arcs":[[-6159,9451,9452,9453,9454,9455,-5110,9456,9457,9458,-5106,9459,9460,9461,9462]]},{"type":"Polygon","id":"30248","arcs":[[-8859,9463,-8857,9464,-8855,9465,-8784,-8924,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,-8913,9476,9477,9478,9479,9480,-8907,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,-8895,9492,-8893,9493,9494,9495,9496,9497,9498,-8950,9499,9500,-8947,9501,-8945,9502,9503,-8942,9504,9505,-8990,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555]]},{"type":"Polygon","id":"30249","arcs":[[9556,9557,9558,9559,9560,9561,9562,9563,-9234,9564,9565,9566,9567,9568,-8815,9569,-8813,9570,-8811,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584]]},{"type":"Polygon","id":"30253","arcs":[[-9208,9585,9586,-9205,9587,-9203,9588,-9258,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,-9184]]},{"type":"Polygon","id":"30254","arcs":[[9599,-8933,9600,-8931,9601,-8929,9602,-8927,9603,-8925,-8171,9604,-8169,9605,-8167,9606,-8165,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,-8969,9619,-8967,9620,-8965,9621,9622,9623,9624,9625,9626,9627,-8957,9628,-8955,9629,-8935]]},{"type":"Polygon","id":"30255","arcs":[[9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666]]},{"type":"Polygon","id":"30256","arcs":[[-9665,9667,9668,9669,9670,9671,9672,9673,9674]]},{"type":"Polygon","id":"30257","arcs":[[9675,9676,9677]]},{"type":"Polygon","id":"30258","arcs":[[-9614,9678,-9612,9679,-9610,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,-8972,9693,-9618,9694,-9616,9695]]},{"type":"Polygon","id":"30259","arcs":[[-9020,9696,9697,-9017,9698,-9015,9699,-9013,9700,-9011,-7144,9701,9702,-7141,9703,9704,-7138,9705,9706,-7135,9707,-7133,9708,-7131,9709,-7129,9710,-7127,9711,9712,9713,9714,9715,9716,9717,-9681,9718,-9608,-8164]]},{"type":"Polygon","id":"30260","arcs":[[-7409,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,-9716,9729,-9714,9730,-9712,-7126]]},{"type":"Polygon","id":"30261","arcs":[[-6878,9731,-6876,9732,9733,-7053,9734,-7051,9735,-7049,9736,-7047,-6969,9737,9738,9739,9740,9741,-6963,9742,9743,-6960,9744,-6958,9745,-6956,9746,-6954,9747,9748,9749,9750,-6949,9751,9752,-6946,9753,9754,9755,9756,-6746,9757,-6817,9758,9759,9760,-6813,9761,9762,9763,9764,9765,-6807,9766,9767,-6804,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,-9720,-7408,-6885,9814,9815,-6882,9816,9817,9818]]},{"type":"Polygon","id":"30262","arcs":[[-9724,9819,9820,-9721,-9814,9821,-9812,9822,9823,-9809,9824,9825,9826,9827,9828,9829,-9802,9830,-9800,9831,9832,9833,-9796,9834,-9794,9835,-9792,9836,9837,-9789,9838,-9787,9839,-9785,9840,9841,9842,-9781,9843,9844,9845,-9777,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919]]},{"type":"Polygon","id":"30263","arcs":[[-6803,9920,-6801,9921,-6799,9922,-6797,9923,-6795,9924,9925,-6792,9926,-6790,-7187,9927,-7185,9928,-7183,9929,9930,9931,9932,9933,9934,9935,-9861,9936,-9859,9937,9938,-9856,9939,9940,-9769]]},{"type":"Polygon","id":"30264","arcs":[[9941,-9917,9942,-9915,9943,9944,9945,-9911,9946,9947,9948,9949,-9906,9950,-9904,9951,9952,9953,-9900,9954,9955,9956,-9896,9957,-9894,9958,9959,-9891,9960,-9889,9961,9962,-9886,9963,9964,9965,-9882,9966,-9880,9967,9968,-9877,9969,9970,9971,-9873,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994]]},{"type":"Polygon","id":"30265","arcs":[[9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,-9636,10023,-9634,10024]]},{"type":"Polygon","id":"30268","arcs":[[10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,-9678,10040,-9690]]},{"type":"Polygon","id":"30269","arcs":[[-9718,10041,-9728,10042,10043,-9725,-9920,10044,10045,10046,-9992,10047,-9990,10048,10049,10050,10051,10052,10053,10054,-10038,10055,10056,-10035,10057,-10033,10058,10059,10060,-10029,10061,-10027,10062,-9688,10063,-9686,10064,-9684,10065,-9682]]},{"type":"Polygon","id":"30271","arcs":[[10066,10067,10068,10069,10070,10071,-9666,-9675,10072,10073]]},{"type":"Polygon","id":"30272","arcs":[[-8994,-8975,10074,-9691,-10041,-9677,10075,-10069,10076,-10067,10077]]},{"type":"Polygon","id":"30273","arcs":[[10078,-9241,10079,-9294]]},{"type":"Polygon","id":"30274","arcs":[[10080,10081,10082,10083,10084,-9217,10085,-9215,10086,-9238,10087,-9236,10088,-9563,10089,-9561,10090,10091,10092,-9557,10093,-9363,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111]]},{"type":"Polygon","id":"30275","arcs":[[10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,-6564,-6441,-6093]]},{"type":"Polygon","id":"30277","arcs":[[10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170]]},{"type":"Polygon","id":"30278","arcs":[[10171,10172,10173,10174,10175,10176,10177,-10164,10178,10179,10180,-10160,10181,10182,-10157,10183,-10155,10184,10185,10186,-10151,10187,10188,-10148,10189,-10146,10190,-10144,10191,-10142,10192,-10140,10193,10194,-10137,10195,10196,-10134,10197,-10132,10198,10199,-10129,10200,10201]]},{"type":"Polygon","id":"30279","arcs":[[10202,10203,10204,10205,10206,10207,-352,10208,-10174,10209,-10172,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236]]},{"type":"Polygon","id":"30280","arcs":[[10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,-10207,10297,-10205,10298,10299,10300,10301,10302,-10234,10303,10304,10305,10306,-10229,10307,10308,10309,-10225,10310,-10223,10311,-10221,10312,10313,10314,-10217,10315,-10215,10316,10317,10318,10319,-10202,10320]]},{"type":"Polygon","id":"30281","arcs":[[10321,-10257,10322,10323,10324,-78,10325,10326,-10287,10327,-10285,10328,-10283,10329,10330,10331,10332,10333,10334,10335,10336,-10274,10337,-10272,10338,10339,10340,10341,10342,10343,10344,-10264,10345,-10262,10346,-10260,10347]]},{"type":"Polygon","id":"30282","arcs":[[10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,-10324,10366]]},{"type":"Polygon","id":"30283","arcs":[[10367,10368,10369,10370,10371,10372,-10350,10373,-10367,-10323,-10256,10374]]},{"type":"Polygon","id":"30284","arcs":[[10375,-10375,-10255,10376,-10253,10377,-10251,10378,10379,10380,-10247,10381,-10245,10382,10383,10384,-10241,10385,10386,-10238,10387,-10113,-6092,10388,-6090]]},{"type":"Polygon","id":"30285","arcs":[[-6432,-6046,-6038,10389,10390,10391,10392,-10370,10393,-10368,-10376,-6089]]},{"type":"Polygon","id":"30286","arcs":[[10394,10395,-6034,10396,10397,-10372,10398,-10393,10399,-10391,10400,-6037]]},{"type":"Polygon","id":"30287","arcs":[[10401,10402,-10365,10403,-10363,10404,-10361,10405,-10359,10406,10407,10408,-10355,10409,-10353,10410,-10351,-10373,-10398]]},{"type":"Polygon","id":"30288","arcs":[[10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,-10402,-10397,-6033]]},{"type":"Polygon","id":"30289","arcs":[[-8711,10423,-8709,10424,10425,10426,-8705,10427,10428,-8702,10429,-8700,10430,10431,10432,10433,-10412,-6032,10434,-6342]]},{"type":"Polygon","id":"30290","arcs":[[10435,-10422,10436,-10420,10437,-8689]]},{"type":"Polygon","id":"30293","arcs":[[10438]]},{"type":"Polygon","id":"30296","arcs":[[10439,-10293,10440,10441,10442,-10289,10443,-10327,10444,10445,10446,-353,-10208,10447,-10296,10448]]},{"type":"Polygon","id":"30297","arcs":[[10449,10450,10451,10452,-8683,10453,10454,10455,-8679,10456]]},{"type":"Polygon","id":"30298","arcs":[[-10079,-9293,10457,-9291,10458,-9289,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,-9252,10495,10496,10497,-9248,10498,-9246,10499,-9244,10500,-9242]]},{"type":"Polygon","id":"30299","arcs":[[10501,-9286,10502,-4656,10503,-4654,10504,-4652,10505,10506,10507,-9196,10508,-9194,10509,-9192,10510,-9190,10511,-9188,10512,10513,-9185,10514,10515,10516,10517,10518,-9594,10519,-9592,-10490,10520,10521,-10487,10522,-10485,10523,-10483,10524,-10481,10525,-10479,10526,-10477,10527,-10475,10528,-10473,10529,10530,-10470,10531,-10468,10532,-10466,10533,-10464,10534,-10462,10535,-10460,-9288]]},{"type":"Polygon","id":"30300","arcs":[[10536,10537,10538,-5425,10539,-5423,10540,10541,-6231,10542,10543,10544,-5437,10545,-5435,10546,-5433,10547,-5431,10548,-5429,10549,-5464,10550,10551,-2151,10552,-2149,-8221,10553,10554,10555]]},{"type":"Polygon","id":"30304","arcs":[[10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587]]},{"type":"Polygon","id":"30310","arcs":[[10588,-10585,10589,-10583,10590,-10581,10591,-10579,10592,-10577,10593,-10575,10594,-10573,10595,10596,10597,10598,10599,10600]]},{"type":"Polygon","id":"30311","arcs":[[-10078,-10074,10601,10602,10603,10604,10605,10606,10607,10608,10609,-8995]]},{"type":"Polygon","id":"30312","arcs":[[-10607,-10605,10610,-10603,10611,10612,10613,10614]]},{"type":"Polygon","id":"30313","arcs":[[10615,-10614,10616,10617,10618,-10599]]},{"type":"Polygon","id":"30314","arcs":[[10619,-8996,-10610,10620,-10608,-10615,-10616,-10598,10621,-8998]]},{"type":"Polygon","id":"30315","arcs":[[-10613,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,-10617]]},{"type":"Polygon","id":"30316","arcs":[[10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,-10632]]},{"type":"Polygon","id":"30321","arcs":[[-10618,-10633,-10646,10646]]},{"type":"Polygon","id":"30332","arcs":[[10647,10648,10649,10650,-9984,10651,-9982,10652,-9980,10653,10654,10655,-10001,-9999,10656,-9997,-10025,-9633,10657,-10053,10658,10659,-10050]]},{"type":"Polygon","id":"30333","arcs":[[-10040,10660,-10054,-10658,-9632,10661,-9667,-10072,10662,-10070,-10076,-9676]]},{"type":"Polygon","id":"30335","arcs":[[-6180,10663,10664,10665,10666,-6655,10667,10668]]},{"type":"Polygon","id":"30336","arcs":[[-6175,-6653,-8015,10669,10670,-6177,10671]]},{"type":"Polygon","id":"30337","arcs":[[10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,-6974,-7397]]},{"type":"Polygon","id":"30338","arcs":[[-7080,10707,-7078,10708,10709,-7075,-6988,10710,10711,10712,10713,-6983,10714,10715,-6980,10716,10717,-6977,10718,10719,10720,-10706,10721,-10704,10722,-10702,10723,-10700,10724,-10698,10725,-10696,10726,-10694,10727,-10692,10728,-10690,10729,-10688,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,-7328,-7295,10743,10744,10745,-7291,10746,10747,10748,-7287,-7249]]},{"type":"Polygon","id":"30339","arcs":[[10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,-8083,10765,-8081,10766,10767,10768,-10681,10769,-10679,10770,-10677,-10676,10771,-10674,10772],[10686,10730,-10774,-10775,-10776,-10777,-10778,-10779,-10780,-10781]]},{"type":"Polygon","id":"30340","arcs":[[-10736,10781,-10734,10782,-10732,-10774,10783,-10776,10784,10785,10786,10787,10788,10789,-8463,-8734,10790,10791,10792,10793,10794,-7339,10795,-7337,10796,-7335,10797,-7333,10798,10799,-7330,10800,-10743,10801,10802,-10740,10803,-10738,10804]]},{"type":"Polygon","id":"30341","arcs":[[-10795,10805,10806,-10792,10807,-8732,10808,-8730,10809,-8460,10810,-8458,10811,-8456,10812,-8450,10813,-8448,-8363,10814,-8361,10815,-8393,10816,-8391,10817,-8389,10818,-8561,10819,-7346,10820,-7344,10821,10822,-7341,10823]]},{"type":"Polygon","id":"30342","arcs":[[10824,10825,-7351,10826,-7349,10827,-7347,-10820,-8560,-8571,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,-7356,10844,-7354]]},{"type":"Polygon","id":"30343","arcs":[[10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,-7390,10861,10862,10863,-7386,10864,10865,10866,10867,10868,-7380,10869,-7378,10870,-7376,10871,10872,10873,10874,-7371,10875,-7369,10876,-7367,10877,-7365,10878,-7363,10879,10880,-7360,10881,10882,10883,10884,10885,-10842,10886,10887,10888,10889,10890,10891,-10835,10892,-10833,10893,-10831,10894,10895,-8570,10896,10897,10898,10899,10900,-8564,10901,-8562,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982]]},{"type":"Polygon","id":"30345","arcs":[[10983,-7166,-7267,10984,-7265,-7308,10985,-7306,10986,-7304,10987,10988,10989,-7168]]},{"type":"Polygon","id":"30347","arcs":[[10990,10991,-9864,-9934,10992,-9932,10993,-9930,10994,10995,-7180,10996,10997,-7177,10998,-7175,10999,-7173,11000,-7171,11001,11002,-9871,11003,-9869,11004,-9867],[-11006,10001,10003,-11007,-11008,10006,-11009,10008,-11010,-11011,10011,-11012,10013,-11013,10015,10017,-11014,10019,-11015,10021,-11016,9974,-11017,9976]]},{"type":"Polygon","id":"30348","arcs":[[11017,-10988,-7303,11018,-7301,11019,-7299,11020,-7394,11021,11022,-10860,11023,-10858,11024,-10856,11025,-10854,11026,11027,11028,-10850,11029,11030,11031,11032,-10983,11033,-10981,11034,-10979,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,-7169,-10990]]},{"type":"Polygon","id":"30349","arcs":[[11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,-11266]]},{"type":"Polygon","id":"30350","arcs":[[11283,11284,11285,-9659,11286,-9657,11287,-9655,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,-9642,11300,-9640,11301,-9638,11302,11303,11304,-9671,11305,-9669,11306,-9663]]},{"type":"Polygon","id":"30351","arcs":[[11307,11308,11309,11310,11311,-11282]]},{"type":"Polygon","id":"30354","arcs":[[-10602,-10073,11312,11313,11314,11315,-10612]]},{"type":"Polygon","id":"30355","arcs":[[-11316,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,-10623]]},{"type":"Polygon","id":"30356","arcs":[[11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,-11317,-11315]]},{"type":"Polygon","id":"30357","arcs":[[11349,11350,11351,11352,11353,11354,11355,-11341,11356,-11339,11357,-11337,11358,-11335,11359,11360,-11332]]},{"type":"Polygon","id":"30358","arcs":[[11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,-11352]]},{"type":"Polygon","id":"30359","arcs":[[11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,-11379]]},{"type":"Polygon","id":"30360","arcs":[[-11364,11398,11399,-11311,11400,-11309,11401,11402,11403,-11389,11404,11405,-11386,11406,11407,11408,-11382,11409,-11377,11410,11411,11412,11413,-11372,11414,-11370,11415,11416,11417,-11366,11418]]},{"type":"Polygon","id":"30361","arcs":[[11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,-11395,11431,-11393,11432,-11391,-11403,11433]]},{"type":"Polygon","id":"30362","arcs":[[-11397,11434,-11430,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450]]},{"type":"Polygon","id":"30363","arcs":[[-11380,-11398,-11451,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,-11345,11467,-11353]]},{"type":"Polygon","id":"30364","arcs":[[-11348,11468,-11464,11469,-11462,11470,-11460,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481]]},{"type":"Polygon","id":"30365","arcs":[[-10644,11482,11483,11484,11485,11486,11487,11488,11489,11490,-11318,-11349,-11482,11491,11492,11493,11494,11495,11496,11497,11498,11499]]},{"type":"Polygon","id":"30367","arcs":[[-11499,11500,11501,-11496,11502,-11494,11503,-11492,-11481,11504,11505,-11478,11506,11507,-11475,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523]]},{"type":"Polygon","id":"30368","arcs":[[11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,-850,11556,-848,11557,11558,11559,-871,11560,-11523]]},{"type":"Polygon","id":"30369","arcs":[[11561,11562,11563,-11550,11564,-11548,11565,-11546,11566,11567,11568,-11542,11569,-11540,11570,11571,11572,11573,11574,-851,11575,11576,-11554]]},{"type":"Polygon","id":"30370","arcs":[[-11509,-11474,11577,11578,-11573,11579,-11537,11580,11581,-11534,11582,11583,-11531,11584,-11529,11585,-11527,11586,11587,-11521,11588,11589,-11518,11590,11591,-11515,11592,11593,11594,11595,11596]]},{"type":"Polygon","id":"30371","arcs":[[11597,11598,11599,-11456,11600,-11454,11601,11602,11603,-11449,11604,11605,-11446,11606,11607,-11443,11608,11609,-11440,11610,-11438,11611,11612,11613,11614,11615,11616,11617,-11578,-11473]]},{"type":"Polygon","id":"30372","arcs":[[-11618,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,-11574,-11579]]},{"type":"Polygon","id":"30373","arcs":[[11648,11649,11650,11651,11652,11653,11654,-11613,11655,-11437,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,-11642,-11641,11679,-11638,11680,-11636,11681,-11634,11682,-11632,11683,-11630,11684,11685,-11627,11686,11687,-11624,11688]]},{"type":"Polygon","id":"30374","arcs":[[11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,-837,11724,-11647]]},{"type":"Polygon","id":"30376","arcs":[[-11695,-11694,11725,-11692,11726,-11677,11727,11728,11729,11730,11731,11732,11733,-11711,11734,-11709,11735,-11706,-11705,-11704,11736,11737,-11698,11738]]},{"type":"Polygon","id":"30377","arcs":[[11739,11740,11741,11742,11743,11744,-11675,11745,-11673,11746,-11671,11747,-11669,11748,-11667,11749,-11665,11750,-11663,11751,-11661,11752,11753,-11658,11754]]},{"type":"Polygon","id":"30378","arcs":[[-11428,11755,11756,11757,11758,11759,11760,-11744,11761,-11742,11762,-11740,11763]]},{"type":"Polygon","id":"30379","arcs":[[-11426,11764,11765,-11423,11766,-11421,11767,11768,11769,-11758,11770,11771]]},{"type":"Polygon","id":"30380","arcs":[[-11770,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,-11759]]},{"type":"Polygon","id":"30382","arcs":[[11800,11801,11802,-11778,11803,-11776,11804,-11774]]},{"type":"Polygon","id":"30383","arcs":[[-11793,11805,11806,11807,11808,-11787,11809,11810,11811,-11733,11812,11813]]},{"type":"Polygon","id":"30384","arcs":[[-774,11814,-772,11815,11816,11817,-768,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,-787,11831,-785,11832,-783,11833,11834,-780,-779,11835,-777,11836,11837]]},{"type":"Polygon","id":"30385","arcs":[[-11829,-11828,-11827,11838,11839,11840,11841,11842,-800,11843,11844,-796,11845,-794,11846,-792,11847,11848,-789,11849,-11830]]},{"type":"Polygon","id":"30388","arcs":[[-11842,11850,11851,-685,11852]]},{"type":"Polygon","id":"30390","arcs":[[-11802,11853,11854,11855,11856,-699,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871]]},{"type":"Polygon","id":"30391","arcs":[[11872,11873,11874,11875,11876,-11872,11877,-11870,11878,-11868,11879,11880,-11865,11881,-11863,11882,11883,-11860,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038]]},{"type":"Polygon","id":"30392","arcs":[[12039,-11783,12040,-11781,12041,-11779,-11803,-11877,12042,12043,-11874,12044,-12039,12045,12046,-12035,12047,12048,-12032,12049,12050,12051,12052,12053,12054,12055,12056,-11788,-11787,-11786,-11785]]},{"type":"Polygon","id":"30393","arcs":[[12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,-710,12067,12068,-707,12069,12070,12071,12072,-702,12073,-11855]]},{"type":"Polygon","id":"30394","arcs":[[12074,-747,12075,-745,12076,-743,12077,-741,12078,-739,12079,12080,-736,-765,-711,-12067,12081,-12065,12082,-12063,12083,-12061,12084,-12059,12085]]},{"type":"Polygon","id":"30395","arcs":[[12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117]]},{"type":"Polygon","id":"30396","arcs":[[12118,-696,12119,-694,12120,-692,12121,12122,-689,12123,12124,12125,12126,-11929,12127,-11927,12128,12129,12130,12131,-11922,12132,-11920,12133,-11918,12134,-11916,12135,-11914,12136,12137,-11911,12138,-11909,12139,-11907,12140,12141,12142,12143,-11902,12144,-11900,12145,12146,12147,12148,12149,-11894,12150,12151,-11891,12152,-11889,12153,-11887,12154,-11885,-11859]]},{"type":"Polygon","id":"30397","arcs":[[12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174]]},{"type":"Polygon","id":"30398","arcs":[[12175,12176,-12157,12177,12178,12179,12180,12181]]},{"type":"Polygon","id":"30399","arcs":[[-12178,-12156,12182,12183,12184,12185,12186,12187,12188,12189]]},{"type":"Polygon","id":"30400","arcs":[[12190,-10635,12191,12192,-10629,12193,-10627,12194,-10625,12195,12196,12197,-11327,12198,-11325,12199,-11323,12200,12201,-11320,12202,-11490,12203,-11488,12204,-11486,12205,-11484,12206,-10642,12207,-10640,12208,12209,-10637]]},{"type":"Polygon","id":"30404","arcs":[[12210]]},{"type":"Polygon","id":"30407","arcs":[[12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,-12187,12235,12236,-12184,12237,12238,12239,12240,12241,12242,12243,12244,-11278,12245,12246,-11275,12247,12248,12249]]},{"type":"Polygon","id":"30408","arcs":[[12250,12251,12252,-11192,12253,-11190,12254,12255,12256,12257,12258,12259,-11183,12260,12261,12262,12263,12264,-11177,12265,-11175,12266,-11173,12267,-11171,12268,-11169,12269,12270,-11166,12271,-11164,12272,12273,12274,-11160,12275,12276,-11157,12277,-11155,12278,-11153,12279,-11151,12280,12281,-11148,12282,12283,-11145,12284,12285,12286,-11141,12287,12288,12289,12290,12291,12292,12293,-11133,12294,-11131,12295,-11129,12296,12297,12298,12299,12300,12301,12302,-11121,12303,-11119,12304,-11117,12305,-11115,12306,12307,-11112,12308,12309,-11109,12310,-11107,12311,-11105,12312,-11103,12313,12314,12315,12316,12317,12318,-11096,12319,-11094,12320,-11092,12321,-11090,12322,-11088,12323,12324,-11085,12325,-11083,12326,12327,-11080,12328,-11078,12329,-11076,12330,12331,-11073,12332,-11071,12333,12334,-11068,12335,-11066,12336,-11064,12337,-11062,12338,12339,-11059,12340,-11057,12341,-11055,12342,-11053,12343,-11051,12344,-11049,12345,-11047,12346,12347,-11044,12348,-11042,12349,12350,-11039,12351,-11037,12352,12353,12354,-10974,12355,12356,-10971,12357,12358,-10968,12359,-10966,12360,12361,12362,-10962,12363,-10960,12364,-10958,12365,-10956,12366,-10954,12367,12368,12369,12370,-10949,12371,12372,-10946,12373,-10944,12374,12375,-10941,12376,12377,-10938,12378,12379,-10935,12380,12381,12382,-10931,12383,12384,12385,-10927,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,-12180,12403,-12233,12404,-12231,12405,12406,12407,12408,12409,12410,12411,12412,-12222,12413,-12220,12414,-12218,12415,12416,12214,12417,12418,12419,12420,-11262,12421,12422,12423,12424,12425,-11256,12426,-11254,12427,12428,12429,-11250,12430,12431,12432,12433,-11245,12434,-11243,12435,12436,12437,12438,12439,-11237,12440,-11235,12441,12442,12443,12444,12445,12446,12447,-11227,12448,12449,-11224,12450,12451,12452,-11220,12453,12454,12455,-11216,12456,12457,-11213,12458,-11211,12459,-11209,12460,-11207,12461,12462,12463,-11203,12464,-11201,12465,12466,12467,12468,12469]]},{"type":"Polygon","id":"30412","arcs":[[12470,12471,12472,12473,12474,-10919,12475,-10917,12476,-10915,12477,12478,-10912,12479,12480,12481,-10908,12482,-10906,12483,12484,12485,-8308,12486,12487,-8305,12488,-8303,12489,12490,-12182,12491,12492,12493,-12400,12494,12495,12496,12497,12498,-12394,12499]]},{"type":"Polygon","id":"30413","arcs":[[-8301,-8340,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,-12176,-12491]]},{"type":"Polygon","id":"30414","arcs":[[-12177,-12515,12515,-12513,12516,-12511,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,-12158]]},{"type":"Polygon","id":"30415","arcs":[[12532,-12508,12533,-12506,12534,-12504,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,-12522,12545,-12520,12546,-12518,-12510]]},{"type":"Polygon","id":"30416","arcs":[[-11648,-11725,-836,-852,-11575]]},{"type":"Polygon","id":"30422","arcs":[[12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,-549,-543,12564,-541,12565,-539,12566,12567,12568,12569,12570]]},{"type":"Polygon","id":"30423","arcs":[[12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,-12561,12597,-12559,12598,12599,-12556,12600,-12554,12601,-12552,12602,12603,12604]]},{"type":"Polygon","id":"30424","arcs":[[-12595,12605,-12593,12606,-12591,12607,12608,12609,-12587,12610,-12585,12611,-12583,12612,12613,-12580,12614,-12578,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,-12563,12638]]},{"type":"Polygon","id":"30425","arcs":[[-12636,12639,-550,-12564,-12638,12640]]},{"type":"Polygon","id":"30426","arcs":[[12641,12642,12643,12644,12645,12646,12647,-551,-12640,-12635,12648,12649,12650,12651,12652,12653]]},{"type":"Polygon","id":"30427","arcs":[[12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,-12654,12670,12671,-12651,12672,-12649,-12634,12673,12674,-12631,12675,-12629,12676,12677,-12626,12678,-12624,12679,-12622,12680,-12620,12681,-12618,12682,-12616,-12577,12683]]},{"type":"Polygon","id":"30428","arcs":[[12684,12685,12686,-12541,12687,-12684,-12576,12688,-12574,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708]]},{"type":"Polygon","id":"30429","arcs":[[12709,12710,12711,12712,12713,12714,12715]]},{"type":"Polygon","id":"30430","arcs":[[12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,-12663,12727,-12661,12728,-12659,12729,-12657,12730,-12655,-12688,-12540]]},{"type":"Polygon","id":"30431","arcs":[[12731,12732,-12664,-12727,12733,12734,12735,12736,-12642,-12670,12737,-12668,12738]]},{"type":"Polygon","id":"30432","arcs":[[-12643,12739,12740,12741,12742,12743,-556,12744,12745,12746,12747,-12647,12748,-12645,12749]]},{"type":"Polygon","id":"30433","arcs":[[12750,12751,12752,12753,12754,12755,-12742,12756,-12740,-12737,12757]]},{"type":"Polygon","id":"30435","arcs":[[12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,-750,12770,-12100,12771,-12098]]},{"type":"Polygon","id":"30436","arcs":[[12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,-12761,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,-12172,12815,12816,12817,-12168,12818,12819,-12165,12820,12821,12822]]},{"type":"Polygon","id":"30437","arcs":[[12823,-12543,12824,12825,-12686,12826,12827,-12708,12828,12829,12830,-12704,12831,12832,12833,12834,12835,12836,12837,-12696,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,-12785,12855,-12783,12856,-12781,12857,-12779,12858,-12777,12859,12860,12861,-12773,12862,-12822,12863,-12163,12864,-12161,12865,12866,12867,-12531,12868,12869,12870,-12527,12871,12872,12873,12874,-12545]]},{"type":"Polygon","id":"30438","arcs":[[12875,12876,-12796,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,-12603,-12551,12888,-12549,12889,-12571,12890,12891,-12568,12892,12893,-725,12894,-723,12895,-12769,12896,12897,-12766,12898,-12764,12899,12900,12901,-12800,12902]]},{"type":"Polygon","id":"30439","arcs":[[-12847,12903,12904,12905,-12843,12906,12907,12908,12909,-12694,12910,-12692,-12605,12911,-12887,12912,-12885,12913,12914,12915,-12881,12916,-12879,12917,-12793,12918,-12791,12919,12920,12921,12922]]},{"type":"Polygon","id":"30451","arcs":[[12923,12924,-12758,12925,12926,12927,12928,12929,12930,12931,12932,12933]]},{"type":"Polygon","id":"30452","arcs":[[12934,12935,-12931,12936,12937,-12928,12938,-12926,12939,-12735,12940,-12726,12941,12942,12943,12944,-12721,12945,12946,12947]]},{"type":"Polygon","id":"30453","arcs":[[12948,12949,12950,12951,12952,-12948,12953]]},{"type":"Polygon","id":"30454","arcs":[[12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,-12954,-12947,12965,12966,-12717,-12539,12967,12968]]},{"type":"Polygon","id":"30455","arcs":[[-8333,12969,12970,-8402,12971,-12958,12972,-12956,12973,12974,12975,-12538,12976,-12536,-12503,-8337,12977,12978,12979]]},{"type":"Polygon","id":"30456","arcs":[[12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,-12962,13007,13008,-12959,-12972,-8401,13009]]},{"type":"Polygon","id":"30457","arcs":[[13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,-12951,13023,-12949,-12965,13024,13025,13026,-13002,13027,-13000,13028,-12998,13029,13030,-12995,13031,13032,13033,13034,-12990,13035,13036,-12987,13037,-12985,13038,-12983,13039,13040]]},{"type":"Polygon","id":"30458","arcs":[[13041,-12924,13042,-12933,13043,13044,13045,13046,13047,13048,13049,13050,13051]]},{"type":"Polygon","id":"30459","arcs":[[13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,-13052,13069,13070,13071,13072]]},{"type":"Polygon","id":"30460","arcs":[[-8533,13073,-12715,13074,-13063,13075,13076,-13060,13077,13078,13079,13080,13081,13082,13083,-13073,13084,13085,13086,13087,-13016,13088,-13014,13089,-13012,13090,-13041,13091]]},{"type":"Polygon","id":"30461","arcs":[[-13092,-13040,-12982,13092,-13010,-8400,13093,-8398,-8435,13094,13095,13096,13097,-8430,13098,13099,-8427,13100,-8425,13101,13102,-8422,-8534]]},{"type":"Polygon","id":"30465","arcs":[[-891,13103,13104]]},{"type":"Polygon","id":"30467","arcs":[[13105]]},{"type":"Polygon","id":"30489","arcs":[[-890,-969,13106,-13104]]},{"type":"Polygon","id":"30501","arcs":[[13107,-10127,13108,13109,-10124,13110,-10122,13111,-10120,13112,-10118,13113,13114,-10115,13115,13116,13117,13118,13119,-8545,13120,-7902,-6567,13121,-6565]]},{"type":"Polygon","id":"30502","arcs":[[13122,13123,13124,13125,-10170,13126,13127,13128,-8546,-13120,13129]]},{"type":"Polygon","id":"30503","arcs":[[-13129,13130,-12716,-13074,-8532,-8547]]},{"type":"Polygon","id":"30504","arcs":[[13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,-5045,13155,-5043,13156,13157,13158,-5068,13159,-5191,-5190,5122,13160,-5120,13161,13162]]},{"type":"Polygon","id":"30505","arcs":[[-13153,13163,-13151,13164,-13149,5048,13165,5050,13166,5052,5053,5054,5055,5056,5057,13167,-4962,13168,13169,13170,5041,5042,-13156,13171,-13155,13172]]},{"type":"Polygon","id":"30506","arcs":[[-5058,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,-4952,13184,-4963,-13168]]},{"type":"Polygon","id":"30507","arcs":[[-13116,-10114,-10388,-10321,-10201,-10171,13185,-13125,13186,13187,13188,-13118,13189]]},{"type":"Polygon","id":"30509","arcs":[[13190,-6165,1490,-6164,-6163,-6162,1494,-6161,-6160,13191,13192,13193,-1471,-1470,-1469,13194,13195,-1466]]},{"type":"Polygon","id":"30511","arcs":[[-2302,13196,-5427,13197,13198,13199,-10555,-8219,13200,-8217,13201,-8215,13202,13203]]},{"type":"Polygon","id":"30514","arcs":[[13204,13205,13206,13207,-5054,-5053,-13167,-5051,-13166,-5049,-13148,13208,13209,13210,13211,-5047,-13142,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,-6155,13222,-6153]]},{"type":"Polygon","id":"30518","arcs":[[13223,13224,13225,13226,13227,13228,13229]]},{"type":"Polygon","id":"30519","arcs":[[13230,1417,13231,13232,1420,1421,1422,1423,13233,13234,13235,13236,13237,13238,13239,13240,1425,-3723,1427,1428,1429,1430,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,1414,1415]]},{"type":"Polygon","id":"30520","arcs":[[13253,13254,13255,13256,13257,-1413,13258,13259,13260,13261,13262,13263,13264,13265]]},{"type":"Polygon","id":"30521","arcs":[[-1372,13266,-1370,13267,-1368,13268,13269,13270,-13257,13271,-13255,13272,-13266,13273,-13264,13274,-13262,13275,13276,13277]]},{"type":"Polygon","id":"30522","arcs":[[13278,-13270,13279,-1366,13280,-1364,13281,-1362,13282,13283,-1359,13284,-1418,-13231,-1416,13285,13286,-13258]]},{"type":"Polygon","id":"30523","arcs":[[13287,3718,3719,-1430,3720,3721,3722,3723,13288,13289,3725,13290,13291,13292,13293,13294,-13237,13295,-13235,13296,-1424,13297,13298,-1422,13299,13300,13301,-5376,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,3714,3715,3716,-13243]]},{"type":"Polygon","id":"30524","arcs":[[-13247,13319,13320,-13317,13321,13322,13323,13324,13325,13326,13327,13328,-13308,13329,-13306,13330,13331,13332,13333,13334,13335,-13229,13336,-13227,13337,-13248]]},{"type":"Polygon","id":"30525","arcs":[[13338,-13333,13339,13340,13341,13342,13343,-10,13344,-13335]]},{"type":"Polygon","id":"30526","arcs":[[13345,13346,13347,-13206,13348,13349,-13343,-13342]]},{"type":"Polygon","id":"30527","arcs":[[13350,13351,13352,13353,13354,13355,-13177,13356,-13175,13357,-5057,13358,-5055,-13208,13359,-13347,-13346,-13341]]},{"type":"Polygon","id":"30538","arcs":[[13360,13361,13362,-10668,-6654,-6995,13363,-6251]]},{"type":"Polygon","id":"30539","arcs":[[-9321,13364,-9319,13365,-9317,-9302,13366,-9300,13367,13368,-9297,13369,-9295,-10080,-9240,13370,-9270,13371,13372,13373,-9333]]},{"type":"Polygon","id":"30540","arcs":[[13374,-10665,13375,-6178,-10671,13376,13377,13378,10749,13379,13380,10752,13381,10754,13382,10756,13383,-10676,-10675,-10674,-10673,-7396,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,-6656,-10667]]},{"type":"Polygon","id":"30541","arcs":[[13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446]]},{"type":"Polygon","id":"30542","arcs":[[13447,13448,13449,13450,13451,13452,13453,13454,13455,-13439,13456,-13437,13457,-13435,13458,-13433,13459,-13431,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473]]},{"type":"Polygon","id":"30543","arcs":[[13474,13475,13476,13477,13478,13479,-13471,13480,-13469,-13468,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512]]},{"type":"Polygon","id":"30544","arcs":[[13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554]]},{"type":"Polygon","id":"30545","arcs":[[13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,-13426,13616,-13424,13617,-13422]]},{"type":"Polygon","id":"30546","arcs":[[13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,-9462,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655]]},{"type":"Polygon","id":"30547","arcs":[[-13526,-13525,13656,13657,13658,13659,-13653,13660,-13651,13661,13662,-13648,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681]]},{"type":"Polygon","id":"30548","arcs":[[13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,-13502,13702,-13499,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736]]},{"type":"Polygon","id":"30549","arcs":[[13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,-13718,13749,13750,-13715,13751,-13713,13752,13753,13754,-13709,13755,-13707,13756,-13705,13757,-13498,13758,-13496,13759,-13494]]},{"type":"Polygon","id":"30550","arcs":[[13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,-13738,13770,-13492,13771,13772,13773,-13488,13774,13775,13776,-13484,13777,-13482,-13467]]},{"type":"Polygon","id":"30551","arcs":[[-13770,13778,-13768,13779,-13766,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,-13741,13813,-13739]]},{"type":"Polygon","id":"30552","arcs":[[-13761,-13466,13814,-13464,13815,-13462,13816,13817,13818,13819,13820,13821,13822,-13613,13823,13824,13825,-13609,13826,-13607,13827,-13605,13828,-13603,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,-13795,13840,-13793,13841,-13791,13842,-13789,13843,-13787,13844,-13785,13845,-13783,13846,13847,-13765,13848,13849,13850]]},{"type":"Polygon","id":"30553","arcs":[[13851,-13597,-13596,13852,-13594,13853,13854,-13591,13855,-13589,13856,-13587,13857,-13585,13858,-13583,-13582,13859,-13580,13860,13861,-13577,13862,13863,13864,13865,13866,13867,13868,13869,13870,-13836,13871,13872,13873,-13832,13874,13875,-13601,-13600,-13599]]},{"type":"Polygon","id":"30554","arcs":[[-13573,-13572,13876,13877,13878,13879,-13866,13880,-13864,-13574]]},{"type":"Polygon","id":"30555","arcs":[[-13722,13881,13882,13883,-13748,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,-13521,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,-13725,13911,13912]]},{"type":"Polygon","id":"30556","arcs":[[13913,-13895,13914,13915,13916,13917,-13890,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,-13523,13929,-13897]]},{"type":"Polygon","id":"30557","arcs":[[-13745,13930,-13743,-13812,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,-13922,13957,-13920,13958,-13887,13959]]},{"type":"Polygon","id":"30558","arcs":[[13960,13961,-13953,13962,13963,13964,13965,-13622,13966,13967,13968,-13656,13969,-13654,13970,-13659,13971,-13928,13972,13973,13974,13975,-13924,13976]]},{"type":"Polygon","id":"30559","arcs":[[13977,-13798,13978,13979,-13839,-13869,13980,-13635,-13634,13981,13982,-13631,13983,13984,-13628,13985,13986,-13625,13987,-13623,13988,13989,-13964,13990,13991,-13951,13992,13993,-13948,13994,-13946,13995,13996,-13943,13997,-13800]]},{"type":"Polygon","id":"30560","arcs":[[13998,13999,14000,14001,14002,14003,-13642,14004,14005,-13639,14006,14007,14008,-13635,14009]]},{"type":"Polygon","id":"30561","arcs":[[14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060]]},{"type":"Polygon","id":"30562","arcs":[[14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,-14011,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208]]},{"type":"Polygon","id":"30563","arcs":[[14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,-14060,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,-14024,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,-14080,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,-14204,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,-14154,14352,-14152,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,-14137,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,-14090,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460]]},{"type":"Polygon","id":"30564","arcs":[[14461,14462,14463,-14429,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,-14415,14477,14478,-14088,14479,-14086,14480,-14084,14481,-14082,14482,14483]]},{"type":"Polygon","id":"30565","arcs":[[14484,14485,14486,14487,-14231,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,-14210,14508,14509,14510,14511,-14457,14512,14513,14514,14515,14516,14517,14518,14519,-14448,14520,14521,14522,14523,-14443,14524,14525,14526,-14439,14527,14528,14529,14530,-14434,14531,-14432,14532,14533,-14484,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547]]},{"type":"Polygon","id":"30566","arcs":[[-14485,14548,-14547,14549,14550,-14544,14551,14552,14553,14554,14555,14556,-14537,14557,13665,13666,13667,14558,14559,14560,14561,14562,14563,14564,13674,14565,14566,14567,14568,14569,13529,14570,14571,14572,13532,14573,14574,14575,13535,14576,14577,13538,14578,14579]]},{"type":"Polygon","id":"30571","arcs":[[14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,-13558,14591,14592,-13419,14593,-13417,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634]]},{"type":"Polygon","id":"30586","arcs":[[14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688],[-14690,-14691,-14692,-14693,-14694,-14695,-14696],[-14697,-14698,-14699]]},{"type":"Polygon","id":"30587","arcs":[[14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,-14653,14762,-14651,14763,14764,-14648,14765,-14646,14766,14767,14768,-14642,14769,-14640,14770,-14638,14771,14772]]},{"type":"Polygon","id":"30588","arcs":[[14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791]]},{"type":"Polygon","id":"30589","arcs":[[-14791,14792,-14789,14793,-14787,14794,-14785,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,-14734,14859,14860,14861,-14730,14862,-14728,14863,-14726,14864,-14724,14865,-14722,14866,14867,-14719,14868,-14717,14869,14870,14871,-14713,14872,14873,14874,-14709,14875,14876,-14706,14877,14878,-14703,14879,14880,-14700,14881]]},{"type":"Polygon","id":"30590","arcs":[[-14784,14882,14883,14884,-14780,14885,-14778,14886,-14776,14887,-14774,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,-14809,14931,-14807,14932,14933,14934,-14803,14935,-14801,14936,14937,14938,-14797,14939]]},{"type":"Polygon","id":"30591","arcs":[[14940,14941,-14810,-14931,-14930,-14929,-14928,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,-14815,14969,-14813]]},{"type":"Polygon","id":"30592","arcs":[[14970,14971,14972,14973,14974,-14630,14975,14976,-14627,14977,14978,14979,14980,14981,-14621,14982,14983,-14618,14984,14985,14986,14987,14988,-14612,14989,14990,-14609,14991,14992,14993,14994,14995,-14603,14996,14997,14998,-13410,14999,-13408,15000,15001,-13447,15002,15003,-13444,15004,-13442,15005,-13440,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,-14892,15040,-14890]]},{"type":"Polygon","id":"30598","arcs":[[15041,15042,15043,15044,-15014,-15012,15045,-15010,15046,15047,15048]]},{"type":"Polygon","id":"30599","arcs":[[-15040,15049,-15038,15050,15051,-15035,15052,15053,-15032,15054,-15030,15055,15056,15057,15058,-15025,15059,-15023,15060,-15021,15061,-15019,15062,15063,15064,-15015,-15045,15065,-15043,15066,-15049,15067,15068,15069,-14896,15070,15071,-14893]]},{"type":"Polygon","id":"30601","arcs":[[15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,-431,15134,15135,15136,-424,15137,-393,15138,-391,-416]]},{"type":"Polygon","id":"30602","arcs":[[15139,-15131,-15130,-15129,15140,-15127,15141,15142,15143,-15123,15144,15145,15146,-15119,15147,-15117,15148,-15114,-15113,15149,-15111,15150,-15109,-15108,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,-383,15177,15178,15179,-447,15180,15181,-445,15182]]},{"type":"Polygon","id":"30603","arcs":[[-14698,-14689,15183,-14687,15184,15185,15186,15187,-14691,-14692,15188,-14694,15189,-14696,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,-14658,-14657,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219]]},{"type":"Polygon","id":"30604","arcs":[[-15219,-15218,15220,-15216,15221,15222,-15213,15223,-15211,15224,-15209,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242]]},{"type":"Polygon","id":"30605","arcs":[[-15105,15243,15244,15245,15246,-15242,15247,-15240,15248,-15238,15249,-15236,15250,-15234,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,-15107,15300]]},{"type":"Polygon","id":"30606","arcs":[[15301,-15292,15302,-15290,15303,-15288,15304,15305,15306,-15284,15307,15308,15309,-15280,15310,-15278,15311,-15276,15312,-15274,15313,-15272,15314,-15270,15315,-15268,15316,15317,-15265,15318,-15263,15319,-15261,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,-15175,15351,15352,-15172,15353,-15170,15354,-15168,15355,-15166,15356,-15164,15357,-15162,15358,15359,-15159,-15158,15360,-15155,-15154,15361,15362,15363,15364,15365,-15295,15366]]},{"type":"Polygon","id":"30607","arcs":[[15367,-15228,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,-15327,15400,-15325,15401,-15323,15402,-15259,15403,-15257,15404,15405,-15254,15406,-15232,15407,-15230]]},{"type":"Polygon","id":"30608","arcs":[[-14761,-14760,-14759,-14758,-14757,-14756,-14755,-14754,-14753,-14752,15408,-14749,-14748,-14747,-14746,-14745,-14744,-14743,-14742,-14741,-14740,-14739,-14738,-14737,-14736,-14735,-14859,-14858,-14857,-14856,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479]]},{"type":"Polygon","id":"30609","arcs":[[-15470,15480,-15468,15481,15482,-15465,15483,-15463,-15462,15484,-15459,-15458,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520]]},{"type":"Polygon","id":"30610","arcs":[[-15371,15521,15522,15523,15503,15524,15525,-15502,15526,-15500,15527,-15498,15528,15529,-15495,15530,-15493,15531,-15491,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,-15388,15557,15558,15559,-15384,15560,-15382,15561,-15380,15562,15563,15564,-15376,15565,15566,-15373,15567]]},{"type":"Polygon","id":"30611","arcs":[[15568,15569,-15391,15570,-15389,15571,-15557,15572,-15555,15573,-15553,15574,-15551,15575,15576,-15548,15577,-15546,15578,-15544,15579,-15542,15580,15581,15582,15583,15584,15585,15586,15587]]},{"type":"Polygon","id":"30612","arcs":[[15588,15589,15590,-15336,15591,15592,15593,-15332,15594,-15330,15595,15596,15597,-15399,15598,-15397,15599,-15395,-15587,15600,15601,-15348,15602,15603,15604,15605,15606,15607,-15341,15608]]},{"type":"Polygon","id":"30613","arcs":[[15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,-14965,15640,15641,-14962,15642,-14960,15643,15644,-14957,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,-15486,-15457,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684],[-15686,-15687,-15688,13479,13471,-15689,13473,-15690,-15691,13449,-15692,13451,-15693,13453]]},{"type":"Polygon","id":"30614","arcs":[[-15490,15693,15694,-15488,-15487,15695,15696,-15666,-15665,-15664,15697,15698,-15662,-15661,15699,-15658,15700,-15655,15701,-15652,15702,-15687,-15688,-13479,15703,-13476,15704,-13513,15705,-13511,15706,-13508,-13507,-13698,-13697,15707,-13695,15708,15709,15710,15711,15712,-13689,15713,15714,-13686,15715,-13684,-13683,-13737,-13736,15716,15717,-13733,-13732,15718,15719,15720,-15536,15721,15722,-15533]]},{"type":"Polygon","id":"30615","arcs":[[15723,-15540,15724,-15538,-15720,15725,-13730,15726,15727,-13726,-13911,15728,-13909,15729,-13907,15730,15731,15732,-13903,15733,-13901,15734,-13518,15735,-13516,15736,-13514,15737,15738,-13553,15739,-13551,15740,-13549,15741,-13547,15742,15743,15744,15745,15746,15747,15748,-15585,15749,-15583,15750,-15581]]},{"type":"Polygon","id":"30616","arcs":[[-13545,15751,-13543,15752,-13541,15753,15754,-13539,15755,-14577,15756,-14576,15757,15758,-13533,-14573,15759,-14571,-13530,-14570,-14569,-13679,15760,15761,-13676,-13675,-14565,-14564,-14563,-14562,15762,15763,15764,15765,-14559,-13668,15766,-13666,-14558,-14536,15767,15768,15769,15770,15771,-15748,15772,15773,-15745,15774,15775]]},{"type":"Polygon","id":"30617","arcs":[[-15771,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794]]},{"type":"Polygon","id":"30618","arcs":[[-15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804]]},{"type":"Polygon","id":"30627","arcs":[[15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837]]},{"type":"Polygon","id":"30628","arcs":[[15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,-15829,15851,-15827,15852,15853,-15824]]},{"type":"Polygon","id":"30629","arcs":[[15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,-14953,15891,-14951]]},{"type":"Polygon","id":"30630","arcs":[[15892,-15887,15893,-15885,15894,-15883,15895,-15881,15896,-15879,15897,-15877,15898,-15875,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,-15650,15913,-15648,15914,-15889]]},{"type":"Polygon","id":"30631","arcs":[[15915,-15073,-415,-419]]},{"type":"Polygon","id":"30634","arcs":[[15916,-15100,15917,-15098,15918,15919,15920,-15095,15921,-15093,15922,15923,15924,15925,15926,-15091,15927,-15089,15928,15929,-15086,15930,-15084,15931,-15082,15932,-15080,15933,-15078,15934,-15076,15935,15936]]},{"type":"Polygon","id":"30642","arcs":[[15937,15938,15939,15940,15941,15942,-15816,15943,15944,-15813,15945,-15811,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957]]},{"type":"Polygon","id":"30643","arcs":[[15958,15959,15960,15961,15962,15963,15964,15965,15966,-15206,15967,-15204,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,-15941,15979,15980,-15938,15981,-15957,15982,15983]]},{"type":"Polygon","id":"30644","arcs":[[15984,15985,15986,15987,15988,15989,15990,15991,15193,15992,15195,15196,15993,15198,15994,15995,15996,15997,15201,-14658,15998,15999,16000,-15971,16001,-15969,15203,-15968,15205,-15967,16002,16003,-15964,16004,-15962,16005,-15960,-15959,16006,16007]]},{"type":"Polygon","id":"30645","arcs":[[-16007,-15984,16008,16009,16010,16011,16012]]},{"type":"Polygon","id":"30646","arcs":[[16013,-16009,-15983,-15956,16014,15214,15215,16015,16016,-16011]]},{"type":"Polygon","id":"30647","arcs":[[16017,-14698,-14689,-14688,-14687,15184,16018,15186,16019,-14692,-14693,-14694,-14695,-14696,-15990,16020,-15988,16021,-15986,16022,-16008,-16013,16023]]},{"type":"Polygon","id":"30648","arcs":[[-15954,16024,16025,16026,-15950,16027,16028,16029,16030,16031,16032,16033]]},{"type":"Polygon","id":"30649","arcs":[[16034,-14680,16035,16036,-14677,16037,-14675,16038,-14673,16039,16040,-14670,16041,-14668,16042,-14666,16043,-14664,16044,-14662,16045,-14660,16046,-15202,-15201,16047,16048,-15995,-15199,-15994,-15197,16049,-15993,-15194,-15193,16050,16051,-15191,-14690,-15188,-15187,-15186,-15185,-14686,16052,-14684,16053,-14682]]},{"type":"Polygon","id":"30650","arcs":[[16054,-14825,16055,-14823,16056,-14821,16057,-14819,16058,16059,16060,16061,-14968,16062,16063,-15637,16064,16065,16066,16067,16068,-15631,16069,16070,16071,16072,16073,-15625,16074,16075,16076,16077,16078,16079,-14830,16080,16081,-14827]]},{"type":"Polygon","id":"30652","arcs":[[-13596,-13595,-13594,-13593,-13592,-13591,-13590,-13589,-13588,-13587,13857,-13585,16082,-13582,-13581,-13580,-13579,13861,-13577,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,-13600,16095]]},{"type":"Polygon","id":"30653","arcs":[[16096,16097,16098,16099,16100,16101,16102]]},{"type":"Polygon","id":"30654","arcs":[[-16090,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,-16092,16123]]},{"type":"Polygon","id":"30655","arcs":[[16124,16125,-16099,16126,-16097,16127,16128,16129,-16110,16130,16131,16132,16133,16134,-16102]]},{"type":"Polygon","id":"30657","arcs":[[-9442,16135,-9440,16136,-9438,16137,-9436,16138,-9434,16139,-9432,16140]]},{"type":"Polygon","id":"30659","arcs":[[16141,-15683,16142,-15681,16143,-15679,16144,-15677,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,-15685]]},{"type":"Polygon","id":"30660","arcs":[[16155,16156,-16153,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,-15615,16174,-15613,16175,-15611]]},{"type":"Polygon","id":"30661","arcs":[[-16151,16176,16177,-16148,16178,-16146,16179,-15675,16180,-15673,16181,-15671,16182,16183,-15454,16184,16185,16186,16187,16188,-15448,16189,-15446,16190,16191]]},{"type":"Polygon","id":"30662","arcs":[[16192,16193]]},{"type":"Polygon","id":"30663","arcs":[[-14838,16194,16195,-14835,16196,16197,16198,16199,-16080,16200,-16078,16201,16202,16203,16204,16205,-16164,16206,16207,16208,16209,16210,16211,-16193,16212,16213,16214,16215,16216,16217,16218,-15428,16219,16220,16221,16222,16223,-15422,16224,-15420,16225,-15418,16226,16227]]},{"type":"Polygon","id":"30664","arcs":[[16228,16229,16230,16231,16232,16233,16234,-14846,16235,16236,-14843,16237,-14841,16238,16239,-16228,-15416,16240,-15414,16241,-15412,16242,-15410,16243,16244]]},{"type":"Polygon","id":"30665","arcs":[[16245,15443,15444,15445,15446,15447,15448,15449,16246,-16187,15451,15452,15453,15454,16247,16248,16249,16250,16251]]},{"type":"Polygon","id":"30666","arcs":[[16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,15432,15433,16266,16267,16268,15438,16269,15440,16270,15442,16271,-16252,16272,16273,16274,16275,16276,16277,16278,16279,16280],[-16282],[16282],[16283]]},{"type":"Polygon","id":"30667","arcs":[[15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,16284,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,-16266,16285,-16264,16286,-16262,16287,-16260,16288,-16258,16289,-16256,16290,-16254,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311]]},{"type":"Polygon","id":"30668","arcs":[[16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360]]},{"type":"Polygon","id":"30669","arcs":[[16361,16362,16363,16364,16365,-16308,16366,-16306,16367,16368,-16303,16369,-16301,16370,16371,-16298,16372,-16296,16373,-16294,16374,16375,-16253,16376,16377,-16279,16378,-16325,16379,16380,-16322,16381,-16320,16382,16317,16383,-16316,16384,16385,16386,16387,16388,16389,16390]]},{"type":"Polygon","id":"30681","arcs":[[16391,-8806,16392,16393,-8803,16394,16395,16396,16397,16398,16399,16400,16401,16402,-8793,16403,-8791,16404,16405,-8788,-8861,-9555,16406,16407,-9552,16408,16409,-9549,16410,16411,16412,-9545,16413,16414,-9542,16415,-9540,16416,16417,16418,-9536,16419,-9534,16420,-9532,16421,16422,16423,-9528,16424,16425,16426,16427,16428,-9522,16429,-9520,16430,-9518,16431,16432,16433,16434,16435,-9512,16436,16437,16438,16439,16440,-8851]]},{"type":"Polygon","id":"30682","arcs":[[-16438,16441,16442,16443,16444,16445,-8988,16446,16447,-8999,-10622,-10597,16448,-10571,16449,16450,16451,16452,16453,-10565,16454,16455,16456,-10561,16457,16458,-10558,16459,16460]]},{"type":"Polygon","id":"30688","arcs":[[16461,16462,16463,16464,-15068,-15048,16465,16466,16467,-15868,16468,-15866,16469,16470,16471,-15862,16472,16473]]},{"type":"Polygon","id":"30689","arcs":[[16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,-15069,-16465,16486,-16463,16487,-16474,16488,-15861,16489,-15859,16490,-15857,16491,-15855,-14950,16492,-14948,16493,-14946]]},{"type":"Polygon","id":"30690","arcs":[[16494,16495,16496,16497,16498,16499,16500,-14918,16501,-14916,16502,-14914,16503,-14912,16504,-14910,16505,-14908,16506,-14906,16507,-14904,16508,16509,16510,-14900,16511,16512,16513,-15070,-16486,16514,-16484,16515,16516,-16481,16517,-16479,16518,-16477,16519,-16475,-14945,16520,16521,16522,14928,16523,16524,-14926]]},{"type":"Polygon","id":"30695","arcs":[[16525,16526,16527,-6928,16528,16529,16530,16531,-8004,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,-5563,16551,16552,16553,16554,-5558,16555,16556,16557,-5482,16558,16559,-6224,16560,16561,-6221,16562,-6219,16563,16564,16565,-6215,16566,16567,16568,-6211,16569,16570,-6208]]},{"type":"Polygon","id":"30696","arcs":[[16571,-8001,16572,-7999,16573,-7997,-8727,16574,16575,-5575,16576,16577,-5572,16578,-5570,16579,-5568,16580,-5600,16581,-16549,16582,16583,-16546,16584,-16544,16585,16586,16587,16588,-16539,16589,16590,16591,16592,16593,16594,-8002]]},{"type":"Polygon","id":"30710","arcs":[[16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616]]},{"type":"Polygon","id":"30711","arcs":[[16617,16618,16619,16620,16621,16622,-16614,16623,-16612]]},{"type":"Polygon","id":"30712","arcs":[[16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651]]},{"type":"Polygon","id":"30714","arcs":[[16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,-16632,16688,16689]]},{"type":"Polygon","id":"30715","arcs":[[16690,16691,16692,16693,16694,16695,16696]]},{"type":"Polygon","id":"30716","arcs":[[16697,16698,-15787,16699,-15785,16700,-15783,16701,-15781,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,-15792,16732,-15790]]},{"type":"Polygon","id":"30717","arcs":[[16733,16734,16735,-16717,16736,-16715,16737,-16713,16738,-16711,16739,-16709,16740,-16707,16741,16742,-16704,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,-16730,16772,-16728,16773,-16726,16774,-16724,16775,-16722,16776]]},{"type":"Polygon","id":"30718","arcs":[[16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,-16703,-15780,16789,-15778,16790,16791,16792]]},{"type":"Polygon","id":"30719","arcs":[[16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,-16779,16805,-16793,16806,16807,-15769]]},{"type":"Polygon","id":"30720","arcs":[[-16805,16808,-16803,16809,-16801,16810,-16799,16811,-16797,16812,16813,16814,16815,16816,16817,16818,16819,16820,-16756,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,-16745,-16788,16831,-16786,16832,16833,-16783,16834,-16781,16835]]},{"type":"Polygon","id":"30723","arcs":[[16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,-16672,16876,16877,16878,16879,16880,16881,-16665,16882,16883,-16662,16884,-16660,16885,16886,-16657,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911]]},{"type":"Polygon","id":"30724","arcs":[[16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,-16643,16937,16938,-16640,16939,16940,16941,16942,16943,-16685,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991]]},{"type":"Polygon","id":"30725","arcs":[[16992,16993,16994,16995,-16679,16996,-16677,16997,-16675,-16874,16998,-8852,-16441,16999,-16968,17000,17001,17002,-16964,17003,17004,-16961,17005,17006,-16958,17007,17008,17009,17010,-16953,17011,-16951,17012,-16949,17013,-16947,17014,17015]]},{"type":"Polygon","id":"30726","arcs":[[17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,-9581,17026,-9579,17027,-9577,17028,-9575,17029,-9573,17030,-16999,17031,17032,17033,-16870,17034,-16868,17035,-16866,17036,-16864,17037,17038,17039,17040,17041,17042,17043,-16856,17044,17045]]},{"type":"Polygon","id":"30727","arcs":[[17046,17047,17048,17049,17050,17051,-15804,17052,-15802,17053,-15800,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089]]},{"type":"Polygon","id":"30728","arcs":[[-16732,17090,-16771,17091,-16769,17092,17093,17094,-16765,17095,17096,17097,17098,-17065,17099,17100,17101,17102,17103,-17059,-15793]]},{"type":"Polygon","id":"30729","arcs":[[17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,-16610,17123,-16608,17124,17125,-16605,17126,17127,17128,-16601,17129,-16599,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141]]},{"type":"Polygon","id":"30730","arcs":[[17142,-16650,17143,-16648,17144,-16646,17145,17146,17147,17148,17149,17150,17151,-16931,17152,-16929,17153,-16927,17154,17155,-16924,17156,-16922,17157,-16920,17158,17159,-16917,17160,17161,-16914,17162,17163,-16991,17164,17165,-16618,-16611,-17123,17166,17167,-17120,17168,-17118,17169,-17116,17170,17171,-17113,17172,-17111,17173,17174,17175,17176,-17106,17177,-17142,17178]]},{"type":"Polygon","id":"30731","arcs":[[17179,17180,17181,17182,17183,-16851,17184,17185,17186,-16847,17187,-16845,17188,17189,-16842,17190,17191,17192,17193,17194,17195,17196]]},{"type":"Polygon","id":"30732","arcs":[[-17135,-16616,17197]]},{"type":"Polygon","id":"30733","arcs":[[-16817,17198,-16815,17199,-16813,17200,-16795,17201,-16912,17202,-16910,17203,-16908,17204,-16906,17205,17206,-16903,17207,17208,17209,17210,17211,17212]]},{"type":"Polygon","id":"30734","arcs":[[-17051,17213,-17049,17214,17215,17216,17217,-17088,17218,17219,17220,-17084,17221,-17082,17222,17223,17224]]},{"type":"Polygon","id":"30735","arcs":[[-17023,17225,17226,-17020,17227,17228,17229,17230,17231]]},{"type":"Polygon","id":"30736","arcs":[[17232,-17197,17233,17234,-9584,-17024,-17232,17235,-16854,17236,17237]]},{"type":"Polygon","id":"30739","arcs":[[17238,17239,17240,17241,-5926,17242,-5924,17243,17244,17245,-5982,17246,-5980,17247,17248]]},{"type":"Polygon","id":"30753","arcs":[[17249,17250,17251,17252,-840,17253,-838,-11724,17254,-11722,17255,-11720,17256,-11718,17257,17258,17259,-11714,17260,-11712,-11711,-11710,17261,17262,-11707,17263,17264,-11704,17265,17266,17267,17268,-11698,-11697,17269,-11695,17270,-11693,-11692,-11691,17271,-11646,17272,-11644,17273,17274,-11641,-11640,17275]]},{"type":"Polygon","id":"30754","arcs":[[-11798,-11797,-11796,-11795,-11794,-11793,-11792,-11791,-11790,-11789,-12057,17276,-12055,17277,-12053,17278,17279,-17251,17280,-11760,-11800,-11799]]},{"type":"Polygon","id":"30755","arcs":[[-17280,17281,-12051,17282,-804,-844,17283,-842,-17252]]},{"type":"Polygon","id":"30756","arcs":[[-774,-773,-772,-771,-770,-769,-768,-17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,-798,-797,-796,-795,-794,-793,-792,-791,-790,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,17298,-778,-777,-776,-775]]},{"type":"Polygon","id":"30757","arcs":[[-8603,-8632,17299,-8630,17300,-8628,17301,-8626,17302,-8624,17303,-8622,17304,-8620,17305,17306,-8617,17307,-8615,17308,17309,-8612,-8638,17310,17311,17312,17313,-8729,-7993,-8644]]},{"type":"Polygon","id":"30758","arcs":[[17314,-9359,17315,-9328,17316,-9326,17317,-9347,17318,17319,17320,-9343,17321,-9341,17322,-9339,17323,17324,17325,17326,-9334,17327,-13373,17328,17329,-9268,17330,17331,-9265,17332,17333,17334,-10083,17335,-10081,17336,-10111,17337,-10109,17338,-10107,17339,17340,17341,17342,17343,-10101,17344,17345,-10098,17346,-10096,17347,17348,-9361]]},{"type":"Polygon","id":"30761","arcs":[[-9396,17349,-9394,17350,-9392,17351,-9390,17352,-9388,17353,-9386,17354,-9384,17355,-9382,-5267,17356,17357,-9307,17358,-9305,-9356,17359,-9354,17360,17361]]},{"type":"Polygon","id":"30770","arcs":[[17362,17363,17364,17365,-15948,17366,-15809,17367,17368,-15806,17369,17370,-15518,17371,17372,17373,-15514,17374,17375,-15511,17376,-15509,17377,-15507,17378,17379,17380,17381,17382,-16032,17383],[17384],[17385],[17386],[-17388,15523,-17389,-17390]]},{"type":"Polygon","id":"30775","arcs":[[-13405,17390,17391,-13402,17392,-13400,17393,-13398,17394,17395,-13395,17396,17397,-13392,17398,17399,17400,-13388,17401,17402,-13385,-7398,-6657]]},{"type":"Polygon","id":"30817","arcs":[[17403,-2919,17404,17405,17406,-2915,17407,-3451,17408,-3449,17409,17410,17411,-3445,17412,-3443,17413,-3441,17414,17415,-3554]]},{"type":"Polygon","id":"30820","arcs":[[17416,17417,17418,17419,-2828,17420,17421]]},{"type":"Polygon","id":"30822","arcs":[[17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,-11822,17499,17500,-11824,17501,17502,17503,-11840,17504,17505,17506,11827,17507,17508,17509,17510,-17290,17511,17512,-17288,17513,17514,-17285,17515]]},{"type":"Polygon","id":"30823","arcs":[[-17500,11821,-17499,17516,-11954,17517,-11952,17518,-11950,17519,-11948,17520,-11946,17521,-11944,17522,17523,17524,17525,17526,-11938,17527,17528,-11935,17529,17530,-11932,17531,-11930,17532,-12126,17533,-719,-688,17534,-17502,11823,-17501]]},{"type":"Polygon","id":"30837","arcs":[[-12174,-12814,17535,-12812,17536,17537,17538,-12808,17539,-12806,17540,-12804,17541,17542,-12759,-12097,17543,-12095,17544,17545,-12092,17546,17547,17548,17549,17550,17551,-12117,17552,17553,17554,17555,-12112,17556,17557,17558,-12108,17559,17560,17561,-12104,17562,-12102,17563]]},{"type":"Polygon","id":"30840","arcs":[[17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583]]},{"type":"Polygon","id":"30841","arcs":[[17584,-12240,17585,17586,-17582,17587,-17580,17588,-17578,17589,17590,17591,-17574,17592,-17572,17593,17594,-17569,17595,17596,-17566]]},{"type":"Polygon","id":"30863","arcs":[[-5309,-6244,17597,-6242,17598,-6240,-7002,17599,-6248,17600,-6250,-13364,-6994,17601,-6992,17602,-6990,-6265,17603,-6267]]},{"type":"Polygon","id":"30864","arcs":[[17604,17605,17606,-7007,17607,-7009,17608,-6679,-6678,17609,-6676,17610,-6674,17611,-6672,17612,17613,-6669,17614,-6667,-6254,-6255,17615,-6999,17616,-6997,17617,-6238,17618,-5299,17619,-5297,17620,-5295,17621,-5293,17622,-3196,17623,17624,-3193]]},{"type":"Polygon","id":"30865","arcs":[[-309,-483,17625,-486,17626]]},{"type":"Polygon","id":"30868","arcs":[[-10683,17627,-10767,-8080,17628,-8078,17629,17630,-8464,-10790,17631,-10788,17632,-10786,17633,-10777,17634,17635,-10780,17636,-10686,17637,-10684]]},{"type":"Polygon","id":"30869","arcs":[[17638,-16696,17639,17640,17641,-16692,17642,-16625,17643,-16651,-17143,17644]]},{"type":"Polygon","id":"30933","arcs":[[-326,17645,17646,17647,-322,17648,-338,17649,17650,17651,17652]]},{"type":"Polygon","id":"30940","arcs":[[17653,-329,17654,17655]]},{"type":"Polygon","id":"30962","arcs":[[-17652,17656,17657,17658,17659,17660,-290,17661,-288,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,-12754,17672,-12752,17673]]},{"type":"Polygon","id":"30964","arcs":[[17674,-17669,17675,-17667,-281,17676,-279,17677,17678,-276,17679,17680,-273,17681,17682,17683,17684,-343,17685,-17671]]},{"type":"Polygon","id":"31072","arcs":[[17686]]},{"type":"Polygon","id":"31227","arcs":[[4,3,17687,-8722,17688,-17313,17689,17690]]},{"type":"Polygon","id":"31266","arcs":[[-9351,17691,-9349,17692]]},{"type":"Polygon","id":"31277","arcs":[[17693,-16622,17694,-16620,17695,-16988,17696,17697,-16985,17698,17699,-16982,17700,-16980,17701,-16978,17702,17703,17704,17705,17706,17707,-16971,17708,17709,-16440]]},{"type":"Polygon","id":"31278","arcs":[[17710,17711,17712,-17078,17713,-17076]]},{"type":"Polygon","id":"31283","arcs":[[-8059,17714,17715,-8056,17716,-8054,17717,17718,-8067,17719,-8065,17720,-10765,17721,-10763,17722,-10761,17723,-10759,17724,-10757,-13383,-10755,-13382,-10753,-13381,-13380,-10750,-13379,17725,-13377,-10670,-8014,17726,-8012,-8031]]},{"type":"Polygon","id":"31292","arcs":[[17727,-17208,17728,-16901,17729,-16899,17730,-16897,17731,17732,-16894,17733,17734,17735,-16690,17736,-16630,17737,-16628,17738,-16626,-17643,-16691]]},{"type":"Polygon","id":"31297","arcs":[[17739,-8819,17740,-8817,-9228,17741,-9226,17742,17743,17744,17745,17746,-9060,17747,17748,-9057,17749,-9095,17750,-9093,17751,-9091,-9090,17752,-9088,17753,-8839,-8838,-8837,-8836,17754,-8834,17755,-8832,17756,-8830,17757,-8828,17758,-8826,17759,-8824,17760,17761,-8821]]},{"type":"Polygon","id":"31298","arcs":[[-15926,17762,-15924,17763,15092,15093,15094,17764,-15920,-15919,17765,-15918,15099,-15917,17766,17767,17768,17769,-428,-427,-426,17770,17771]]},{"type":"Polygon","id":"31299","arcs":[[17772,-17769,17773,17774,17775,-15301,17776,15107,17777,17778,17779,17780,17781,17782]]},{"type":"Polygon","id":"31300","arcs":[[-434,-433,-432,-431,-430,17783,-17783,17784,-17781,17785,-17779,17786,15113,15114,17787,17788,17789,17790,-15141,17791,15129,17792,-438]]},{"type":"Polygon","id":"31301","arcs":[[-15115,-15114,-17787,-17778,-15108,17793,17794,15152,17795,15154,15155,17796,15157,17797,17798,17799,17800,17801,-17788]]},{"type":"Polygon","id":"31302","arcs":[[17802,17803,-439,-17793,-15130,-17792,15140,-17791,-17790,-17789,-17802,17804,-17800,17805,17806,-381,-450,-449,-448,-447,-446,-445,-444,17807,-442]]},{"type":"Polygon","id":"31304","arcs":[[17808,17809,17810,17811,-14753,17812,17813,-14749,17814,-14747,17815,17816,-14744,17817,17818,-14741,17819,17820,17821,17822,-14736,17823,-14858,17824,-14856,-16312,17825,17826,-16309,-16366,17827,-16364,17828,-16362,17829,17830,-16389,17831,-16387,17832,-16313,17833,-16360,17834,17835,17836,17837,17838,17839,-16353,17840,-16351,17841,-16349,17842,-16347,17843,-16345,17844,-16343,17845,-16341,17846,-16339,17847,-16337,17848,17849,17850,17851,-16332,17852,-16330,17853,-16275,-16273,-16251,17854,-16249,17855,-14760,17856,-14758]]},{"type":"Polygon","id":"31305","arcs":[[17857,17858,-15845,17859,-15843,17860,-15841,17861,-15462,-15461,17862,-15458,15485,15486,15487,-15695,17863,17864]]},{"type":"Polygon","id":"31306","arcs":[[15518,17865,-15838,17866,-15836,17867,-15834,17868,-15832,17869,-15830,-15851,17870,17871,-15848,17872,-15846,-17859,17873,-17865,17874,15525,15502,-17389,17875,17876,15506,15507,15508,15509,15510,17877,-17375,15513,15514,15515,15516,15517]]},{"type":"Polygon","id":"31307","arcs":[[17878,-15665,17879,15697,17880,17881,17882,-15660,17883,-15658,-15657,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,-13507,-13698,17907,-13683,17908,-13736,15716,15717,17909,17910,-15487,17911,-15668]]},{"type":"Polygon","id":"31309","arcs":[[17912,-15902,17913,-15900,17914,-15873,17915,-15871,17916,-15869,-16468,17917,-15690,-15691,13449,-15692,13451,17918,17919]]},{"type":"Polygon","id":"31310","arcs":[[17920,-13469,17921,13500,13501,13502,-13701,13504,13505,13506,-17907,17922,17923,17924,17925,-15688,17926,-13471]]},{"type":"Polygon","id":"31311","arcs":[[13736,17927,17928,13729,13730,13731,13732,-15718,-15717,13735]]},{"type":"Polygon","id":"31317","arcs":[[-4756,17929,17930,17931,17932,17933,17934,-4749,-4291,17935,17936,4320,17937,-4613,17938,-4611,-4647,17939,17940,-4644,17941,-4642,17942,-4640,17943,-4638,17944,-4636,17945,-4634,17946,-4632,17947,17948,17949,-4628,17950,17951,17952,-4624,-4704,17953,-4817,17954,-4815,17955,-4813,17956,17957,-4810,17958]]},{"type":"Polygon","id":"31323","arcs":[[-6189,17959,17960,-6186,17961,17962,-6183,17963,-6181,-10669,-13363,17964]]},{"type":"Polygon","id":"31324","arcs":[[6681,-3086,-3085,-7074,-6190,-17965,-13362,17965,-6253,6666,-17615,6668,-17614,-17613,6671,-17612,6673,-17611,6675,-17610,6677,17966,-7011,-7012,-3088]]},{"type":"Polygon","id":"31328","arcs":[[-17067,17967,-17099,17968,-17645,-17179,-17141,17969,17970,-17138,17971,17972,-17712,17973,17974,17975,17976,17977,-17069,17978]]},{"type":"Polygon","id":"31329","arcs":[[-16818,-17213,17979,-17211,17980,-17209,-17728,-16697,-17639,-17969,-17098,-16762,17981,-16760]]},{"type":"Polygon","id":"31332","arcs":[[17982,17983,17984,17985,15819,17986,17987]]},{"type":"Polygon","id":"31338","arcs":[[17988,-17885,-15656,-15655,-15654,17989,-15912,17990,-15910,17991,-15908,17992,-15906,17993,17994,-17925,-17924,17995,-17905,17996,-17903,17997,-17901,17998,-17899,17999,-17897,18000,-17895,18001,-17893,18002,-17891,18003,-17889,18004,-17887]]},{"type":"Polygon","id":"31350","arcs":[[-16001,18005,18006,-14654,-14762,-15480,18007,-15478,18008,-15476,18009,18010,18011,-15472,18012,-15942,18013,-15978,18014,-15976,18015,-15974,18016,-15972]]}]}},"arcs":[[[70205,40946,0],[2,-9],[-3,-7],[-61,-35],[9,-7],[-128,-78],[-35,-32],[-25,-23],[-22,-22],[-22,-26],[-44,-59],[-39,-67],[-8,-15],[-13,-33],[-51,-139],[-2,-6],[-26,-20],[-181,19],[-25,3],[-63,5],[-12,7],[-15,8],[-21,24],[-11,18],[-5,11],[-11,46],[-37,132],[-31,112],[-11,45],[-5,34],[-2,27],[-1,20],[-2,24],[-1,5],[-1,20],[-2,25],[-2,25],[-2,22],[-2,29],[-2,20],[-2,22],[-2,23],[-1,23],[-4,53],[-2,25],[-3,21],[-1,20],[-1,13],[-1,9],[-2,26],[-1,15],[-1,24],[-2,26],[-3,27],[-2,36],[7,39],[24,-8],[23,-6],[18,-5],[24,-7],[24,-7],[6,-2],[14,-4],[27,-7],[23,-8],[21,-6],[27,-7],[31,-9],[13,-4],[26,-8],[20,-6],[21,-6],[23,-7],[32,-10],[-1,-5],[55,-20],[5,7],[54,-34],[80,-49],[-21,-31],[168,-117],[117,-83],[58,-40],[22,-16]],[[82357,45225,0],[81,-29],[12,-7],[5,-11],[3,-7],[7,-20],[1,-21],[-5,-21],[-10,-21],[-37,-85],[-71,-167],[-72,-169],[-76,-177],[-57,-137],[-9,-16],[-16,-20],[-7,-6],[-10,-26],[-7,-12],[-11,-7],[-15,-4],[-14,0],[-14,6],[-36,23],[12,-19],[110,-84],[89,-40],[13,-4],[37,-7],[41,-5],[31,-1],[20,3],[9,2],[16,6],[10,6],[15,10],[7,5],[14,13],[9,11],[7,12],[60,116],[67,122],[7,6],[12,5],[6,-1],[9,-5],[72,-36],[9,-5],[4,-6],[2,-7],[0,-1],[22,-10],[-75,-128],[-85,-141],[-79,-134],[-4,-7],[-48,-89],[-15,-17],[-13,-11],[-13,-6],[-14,-2],[-17,0],[-26,5],[-62,17],[-158,26],[-18,4],[-41,7],[-67,22],[-52,29],[-33,27],[-33,31],[-22,29],[-23,39],[-9,24],[-9,28],[-2,35],[-1,36],[4,38],[8,34],[9,18],[20,21],[14,5],[1,0],[8,60],[5,18],[-2,6],[-1,13],[4,21],[43,115],[61,167],[59,169],[61,169],[46,127],[10,14],[8,6],[9,3],[14,3],[7,-1],[13,-3],[5,-1],[6,14],[8,16],[11,12],[10,8],[17,6],[9,0],[13,-2],[87,-32]],[[77183,18172,0],[-317,-489],[-71,-111],[-23,-40],[-55,-84],[-115,-178],[-102,-158],[-274,-429],[-265,-397],[-69,-108],[-105,-120],[-63,-199]],[[76845,17930,0],[187,135],[151,107]],[[75724,15859,0],[-209,-67],[77,122],[43,70],[140,227],[210,339],[33,53],[11,22],[182,297],[219,353],[133,214],[106,167],[17,27],[151,241],[8,6]],[[82242,43606,0],[-24,-2],[-20,4],[-148,28],[-91,18],[-104,20],[-101,20],[-10,4],[-25,4],[-105,21],[-25,5],[-14,7],[-10,9],[-8,8],[-4,11],[-3,15],[-4,20],[-23,115],[-31,171],[-4,73],[3,111],[6,46],[14,78],[5,21],[21,68],[120,-44],[5,-2],[132,-43],[-47,-139],[-3,-19],[-3,-48],[2,-38],[6,-33],[3,-18],[14,-37],[4,-8],[8,-15],[18,-28],[10,-14],[15,-17],[16,-18],[17,-15],[18,-15],[13,-10],[20,-13],[20,-11],[19,-10],[41,-18],[20,-6],[33,-8],[31,-6],[40,-7],[101,-14],[45,-8],[41,-12],[17,-10],[14,-16],[6,-10],[5,-24],[-3,-16],[-13,-33],[-31,-57],[-12,-16],[-19,-16],[-18,-3]],[[77678,45149,0],[-24,-44],[-14,-24],[-24,-37],[-10,-16],[-42,-43],[-55,-38],[-15,-5],[-39,-14],[-11,-3],[-40,-9],[-252,-24],[-126,-14],[-64,2],[-63,2],[-66,2],[-50,5],[-18,3],[-13,9],[-7,11],[-3,19],[1,61],[6,111],[7,142],[0,27],[2,18],[16,15],[16,6],[18,0],[36,-4],[98,-10],[46,-5],[85,-10],[62,-3],[51,-7],[111,-23],[45,-19],[259,-47],[30,-6],[36,-5],[11,-7],[0,-16]],[[82372,44901,0],[46,-47],[9,8],[12,6],[15,-1],[17,-7],[15,-13],[39,-55],[86,-115],[10,-15],[7,-13],[1,-21],[-2,-14],[-6,-11],[-18,-29],[-69,-121],[-76,-136],[-48,-86],[-13,-21],[-7,-10],[-13,-11],[-23,-13],[-14,-5],[-20,-4],[-12,0],[-52,19],[-8,1],[-78,22],[-12,4],[-7,6],[-6,7],[-4,7],[-3,9],[-1,8],[4,12],[49,134],[54,152],[55,153],[46,127],[27,73]],[[82106,43312,0],[-25,-42],[-11,7],[-17,4],[-23,-6],[-14,-1],[-23,0],[-78,3],[-124,4],[-72,3],[-24,8],[-17,8],[-8,3],[-14,13],[-6,7],[-8,11],[-6,13],[-5,19],[-53,269],[-1,14],[6,10],[10,9],[12,5],[11,1],[16,-4],[251,-49],[120,-23],[98,-20],[90,-18],[11,-3],[9,-4],[6,-6],[5,-9],[3,-11],[-1,-7],[-5,-12],[-22,-39],[-34,-63],[-57,-94]],[[80552,43595,0],[-6,-23],[-60,-231],[-90,-54],[-205,82],[-170,68],[-11,6],[-8,12],[3,21]],[[80005,43476,0],[164,164],[102,96],[19,8],[26,0],[65,-47],[54,-34],[117,-68]],[[81102,30793,0],[16,-21],[10,-11],[35,-16],[18,8],[6,-20],[1,-17],[-2,-16],[-3,-17],[-6,-25],[-9,-31],[1,-62],[-3,-54],[2,-31],[-1,-14],[2,-20],[14,-60],[5,-31],[-12,-28],[-1,-31],[3,-23],[7,-29],[5,-20],[12,-47],[5,-28],[3,-20],[5,-19],[1,-17],[-4,-3],[-26,15],[-23,21],[2,-19],[0,-19],[2,-13],[3,-14],[2,-18],[-16,-3],[-1,5],[-13,-3],[1,-6],[-31,-9],[4,-12],[11,-28],[-5,-13],[-10,-1],[5,-28],[-1,-19],[-12,-16],[-38,-30],[-22,-20],[-19,-14],[-33,-9],[-6,11],[13,22],[10,24],[6,28],[9,3],[-9,37],[14,21],[1,17],[4,27],[-2,56],[0,55],[2,49],[-5,74],[1,42],[5,90],[0,13],[-4,28],[-6,53],[-2,25],[-3,30],[-1,75],[-9,40],[-10,42],[-3,11],[-15,36],[-19,48],[10,1],[18,-5],[29,4],[35,9],[37,0],[10,-10]],[[81397,29642,0],[-78,-8],[-7,6],[-12,14],[-5,9],[-11,39],[-4,11],[-1,11],[19,79],[-13,53],[-22,89],[-14,65],[-16,76],[-3,15],[-1,31],[1,11],[0,11],[0,7],[-4,4],[-4,7],[-4,11],[-5,4],[-3,5],[-4,11],[-2,13],[1,29],[-7,15],[-4,10],[-4,12],[-2,10],[1,30],[4,18],[4,9],[-1,6],[-2,24],[-3,15],[4,7],[-16,56],[-1,16],[-1,23],[5,16],[7,11],[4,29],[32,4],[6,-18],[8,-24],[8,-27],[6,-17],[9,-23],[24,-43],[16,-28],[14,-56],[4,-18],[12,-38],[7,-29],[28,-78],[10,-30],[6,-24],[32,-38],[12,-21],[18,-33],[22,-39],[29,-63],[36,-74],[-45,-9],[-44,-11],[-15,-17],[-10,-25],[-14,-16],[-10,-12],[-5,-25],[-3,-16],[22,-15],[-11,-7],[4,-12],[1,-17],[-5,-11]],[[83312,37243,0],[-48,192],[-4,-2],[-6,22],[36,14]],[[83627,35022,0],[-1,29],[-14,300],[0,124],[-10,57],[-4,96],[-18,128],[-10,128],[-1,44],[0,78],[-15,79],[-28,105],[-29,133],[-16,88],[-74,294],[-21,147],[-13,108],[-46,232],[-15,51]],[[83693,35024,0],[-66,-2]],[[83689,35066,0],[4,-42]],[[84114,35496,0],[-22,-9],[-70,-19],[-27,-19],[-43,-12],[-178,-39],[-102,-18],[-2,0],[5,-74],[-4,-12],[6,-27],[-4,-31],[6,-41],[5,-60],[5,-69]],[[84155,35503,0],[-41,-7]],[[83290,37469,0],[23,-50],[7,-32],[23,-93],[29,-128],[24,-90],[10,-84],[27,-198],[34,-188],[16,-18],[-1,-30],[14,-71],[11,-27],[59,-272],[29,-117],[26,-85],[5,-72],[7,-39],[7,-80],[13,-194],[11,-96],[-2,-21],[3,-39],[0,-17],[5,-32],[79,16],[92,15],[150,38],[22,10],[31,10],[47,13],[10,58],[18,0],[31,-6],[11,-35],[-6,-12]],[[69089,41081,0],[-22,0],[-1,27],[-4,59],[-3,41],[-1,20],[-1,21],[-1,24],[-2,22],[0,10],[-2,13],[-1,22],[-1,19],[-5,64],[93,5],[90,4],[5,-64],[5,-59],[1,-9],[8,-94],[3,-36],[4,-50],[1,-14],[1,-16],[-19,-1],[-26,-1],[-21,-2],[-19,0],[-21,-1],[-17,-1],[-23,-1],[-21,-2]],[[82022,32795,0],[-12,-69],[-8,-51],[-7,-43],[-5,-34],[-47,-184],[-6,-41],[-11,-52],[-42,13],[-26,7],[-13,19],[0,40],[-6,42],[15,49],[-24,-1],[1,9],[0,6],[3,31],[4,46],[2,34],[41,-4],[11,60],[10,58],[39,-5],[1,11],[13,-1],[8,68],[59,-8]],[[82954,29331,0],[153,-98],[-53,-63],[-63,41],[-96,63],[-5,10],[-4,-27],[10,-19],[35,-47],[-3,-3],[5,-19],[7,-46],[10,-26],[-33,-18],[-14,28],[11,5],[-10,18],[-22,-12],[18,-43],[4,-10],[8,-20],[-4,-1],[7,-19],[-42,-16],[-8,-3],[-5,0],[-9,18],[-10,28],[-13,-4],[-12,29],[-3,16],[-19,34],[-20,-7],[-27,49],[-1,11],[-16,56],[38,21],[16,-14],[9,-51],[20,11],[-7,17],[21,11],[30,-55],[30,14],[-11,18],[-11,18],[-21,-10],[-9,20],[-7,15],[0,25],[8,28],[45,6],[21,6],[6,-19],[46,34]],[[71208,40039,0],[-33,-106],[-62,11],[-87,16],[-19,3],[-13,2],[25,108],[30,-5],[65,-12],[18,-3],[76,-14]],[[69386,40417,0],[-8,-8],[-23,6],[-19,4],[-19,4],[5,17],[-3,12],[-5,16],[-4,15],[-2,8],[-3,11],[-2,8],[-2,8],[-5,19],[-5,17],[-5,18],[-5,17],[-5,17],[-5,18],[-4,15],[-5,18],[-4,16],[-7,24],[29,2],[28,2],[4,-15],[4,-16],[5,-17],[4,-15],[2,-6],[3,-11],[5,-19],[4,-16],[6,-18],[4,-19],[5,-16],[5,-19],[4,-15],[5,-17],[4,-16],[4,-14],[5,-18],[5,-17]],[[83002,29056,0],[16,-53],[8,-24],[6,-23],[2,-45],[-26,-26],[-33,14],[-20,12],[-15,19],[20,15],[1,18],[-10,-2],[5,-12],[-37,-22],[-37,70],[37,18],[2,9],[4,9],[-4,13],[19,7],[5,-13],[14,4],[15,5],[28,7]],[[69124,40804,0],[-36,-2],[-1,16],[-2,17],[-1,17],[-1,17],[20,1],[20,1],[19,1],[22,2],[15,1],[18,1],[19,1],[16,2],[19,0],[19,1],[1,-16],[2,-15],[1,-19],[1,-17],[-31,-2],[-19,-1],[-19,-1],[-19,-1],[-16,-2],[-16,0],[-19,-2],[-12,0]],[[69102,40898,0],[-20,-1],[-2,17],[-1,18],[-2,27],[11,1],[10,1],[14,1],[11,0],[9,1],[14,0],[15,1],[14,2],[15,0],[23,1],[21,1],[18,2],[12,1],[1,-30],[1,-15],[2,-19],[-18,0],[-17,-1],[-18,-1],[-17,-1],[-20,-2],[-16,0],[-21,-1],[-20,-2],[-19,-1]],[[69112,40716,0],[-19,0],[-2,22],[-1,18],[0,17],[34,2],[16,1],[18,1],[18,2],[20,1],[17,0],[18,2],[17,1],[21,1],[15,1],[9,-33],[7,-24],[-22,-1],[-19,-2],[-19,-1],[-17,-1],[-21,-1],[-17,-1],[-19,-1],[-17,-1],[-18,-1],[-19,-2]],[[69094,40991,0],[-20,-1],[-2,30],[-2,28],[17,1],[16,1],[17,1],[15,1],[17,1],[19,1],[25,1],[18,2],[22,1],[22,1],[2,-15],[0,-12],[2,-29],[-22,-1],[-20,-2],[-20,-2],[-23,-1],[-18,-1],[-17,-2],[-17,-1],[-16,0],[-15,-2]],[[71225,40085,0],[-13,-38],[-92,24],[17,40],[22,68],[85,-23],[-8,-29],[-5,-18],[-6,-24]],[[69290,40440,0],[-2,-10],[-20,4],[-20,5],[-17,4],[-19,5],[-20,4],[-84,20],[-3,42],[51,3],[43,-10],[18,-5],[16,-4],[16,-3],[15,-4],[13,-3],[9,-32],[4,-16]],[[69268,40525,0],[-3,-6],[-26,5],[-19,5],[-19,4],[-17,3],[8,51],[-2,18],[-2,19],[-1,16],[-2,17],[-1,16],[-2,19],[19,1],[20,1],[7,-25],[7,-26],[6,-23],[7,-23],[3,-13],[5,-18],[5,-18],[7,-23]],[[69153,40543,0],[-50,-3],[-3,52],[-1,14],[0,13],[-1,6],[-1,18],[-1,15],[-1,14],[-1,14],[28,2],[31,2],[2,-17],[1,-16],[0,-14],[1,-18],[2,-16],[1,-19],[-7,-47]],[[56938,44294,0],[-138,44],[31,132],[151,-29],[-27,-71],[-17,-76]],[[62511,10926,0],[-3,-38],[-6,-72],[-1,-16],[-6,-66],[-1,-14]],[[62494,10720,0],[-332,71],[-364,84],[-185,37],[-83,13],[-13,-50],[-54,-205],[-266,28],[-10,-62],[-44,4],[-77,22],[-13,1],[-110,-5],[-1,20],[-43,5],[0,-3],[-96,6],[-694,-115]],[[60109,10571,0],[-38,-6],[-56,-9],[-108,-16]],[[59907,10540,0],[-16,-1]],[[59891,10539,0],[-5,18]],[[59886,10557,0],[-4,11]],[[59882,10568,0],[-12,27]],[[59870,10595,0],[-16,26]],[[59854,10621,0],[-18,24],[11,14],[-18,18]],[[59829,10677,0],[-13,11]],[[59816,10688,0],[-23,13],[-14,7],[-42,7],[-8,12]],[[59729,10727,0],[-44,70]],[[59685,10797,0],[-6,9],[-52,81]],[[59627,10887,0],[-10,16]],[[59617,10903,0],[47,52],[19,25],[23,37],[25,54],[9,35],[4,32],[-2,39]],[[59742,11177,0],[-73,674]],[[59669,11851,0],[-8,153],[1,182],[11,226],[13,132],[26,197]],[[59712,12741,0],[31,220]],[[59743,12961,0],[23,-2],[82,-8],[70,-6],[74,-7],[112,-11],[211,-4],[40,-2],[87,-4],[1,-58],[6,-46],[10,-49],[13,-39],[11,-26],[23,-39],[14,-23],[35,-42],[17,-17],[37,-31],[22,-15],[27,-19],[42,-20],[75,-27],[15,-8],[163,-21],[90,-12],[71,-9],[43,-5],[25,-3],[160,-19],[33,-5],[62,-8],[116,-18],[45,-8],[271,-46],[175,-29],[120,-20],[18,-3],[96,-17],[31,-6],[29,-6],[38,-6],[28,-6],[64,-14],[126,-26]],[[62594,12171,0],[-2,-28]],[[62592,12143,0],[-1,-9],[-3,-50],[-1,-11]],[[62587,12073,0],[-4,-57]],[[62583,12016,0],[-18,-257],[-12,-169]],[[62553,11590,0],[-3,-41],[-4,-60],[-7,-109],[-5,-69],[-2,-52],[0,-10],[-4,-47],[-4,-52]],[[62524,11150,0],[0,-7],[-4,-70]],[[62520,11073,0],[-4,-54],[-4,-51],[-1,-42]],[[62494,10720,0],[1,15],[1,16],[4,49],[1,7],[0,9],[3,31],[4,42],[2,20],[1,17]],[[62511,10926,0],[1,43],[1,15],[3,36],[1,24],[1,4],[2,25]],[[62520,11073,0],[4,77]],[[62524,11150,0],[4,53],[2,29],[1,18],[1,10],[2,52],[5,69],[7,109],[4,68],[3,28],[0,4]],[[62553,11590,0],[12,170],[18,256]],[[62583,12016,0],[2,28],[0,9],[2,20]],[[62587,12073,0],[1,12],[3,50],[1,8]],[[62592,12143,0],[2,29],[53,-4],[-24,35]],[[62623,12203,0],[-9,37],[-2,46]],[[62612,12286,0],[2,52],[29,236]],[[62643,12574,0],[4,32],[12,97],[121,-63],[19,-11],[113,-65],[51,-23],[237,-7],[303,-11],[43,5],[58,-4],[55,-15],[128,-31],[20,-5],[92,-38],[109,-61],[32,-60],[14,-49],[9,-118],[-21,-203],[-15,-22],[-28,-16],[-28,-4],[-27,6],[-23,15],[-31,23],[-21,6],[-13,-9],[-6,-20],[27,-50],[14,-31],[38,-96],[18,-51],[33,-99],[13,-50],[9,-52],[8,-51],[7,-55],[2,-54],[4,-190],[-5,-61],[-15,-61],[-22,-47],[-32,-41],[-41,-36],[-44,-29],[-47,-27],[-1,-11],[0,-120],[0,-41],[-5,-15],[-14,-53],[-4,-15],[-15,-54],[-3,-15],[-117,12],[-69,8],[-120,14],[-116,15],[-169,25],[-136,21],[-161,28],[-188,34],[-116,23],[-89,22]],[[59743,12961,0],[11,84]],[[59754,13045,0],[50,336],[3,39],[37,240],[12,85],[-1,110],[14,99],[31,93],[38,275]],[[59938,14322,0],[5,39],[330,0]],[[60273,14361,0],[1189,15]],[[61462,14376,0],[140,-14],[264,-1],[85,-14],[72,-47],[64,-60]],[[62087,14240,0],[1,-8],[47,-73],[17,-22],[19,-13],[15,-36],[32,-27],[95,-82],[34,-29],[9,-12],[8,-66],[60,-77],[30,-29],[35,-22],[24,-20],[98,-76],[85,-57]],[[62696,13591,0],[1,-26],[-1,-79],[1,-422],[-3,-64],[-35,-298],[-12,-97],[-4,-31]],[[62612,12286,0],[3,-46],[8,-37]],[[62623,12203,0],[25,-27],[37,-11],[-91,6]],[[59891,10539,0],[6,1],[10,0]],[[59907,10540,0],[80,12],[27,5],[56,8],[39,6]],[[60109,10571,0],[163,-866],[-226,9],[-113,5],[-269,11],[-75,-5],[-49,-12],[-51,-20],[-46,-27],[-42,-33],[-36,-41],[-26,-45],[-16,-50],[-9,-51],[1,-52],[9,-51],[38,-161],[54,-207],[70,-252],[81,-303],[10,-38],[37,-140],[4,-16],[-83,-27],[-92,-30],[-91,-27],[-92,-26],[-93,-24],[-92,-21],[-94,-18],[-95,-17],[-4,18]],[[58882,8054,0],[-27,112]],[[58855,8166,0],[-5,18],[-60,254],[-6,24]],[[58784,8462,0],[-23,97]],[[58761,8559,0],[-6,28],[-45,181]],[[58710,8768,0],[-110,458]],[[58600,9226,0],[-8,32],[-7,33]],[[58585,9291,0],[-12,46],[-30,129],[-10,44]],[[58533,9510,0],[-15,58],[-4,18],[82,70],[74,75]],[[58670,9731,0],[66,84],[55,89]],[[58791,9904,0],[47,94],[120,247]],[[58958,10245,0],[43,83],[59,88]],[[59060,10416,0],[57,76]],[[59117,10492,0],[64,72],[52,53]],[[59233,10617,0],[72,64],[78,57]],[[59383,10738,0],[81,54],[81,54],[72,57]],[[59627,10887,0],[52,-80],[3,-5],[3,-5]],[[59685,10797,0],[19,-30],[25,-40]],[[59816,10688,0],[2,-2],[11,-9]],[[59829,10677,0],[18,-17],[-12,-14],[19,-25]],[[59854,10621,0],[11,-16],[5,-10]],[[59882,10568,0],[3,-5],[1,-6]],[[58585,9291,0],[8,-34],[7,-31]],[[58710,8768,0],[45,-182],[6,-27]],[[58784,8462,0],[6,-25],[60,-254],[5,-17]],[[58882,8054,0],[4,-19],[-66,-86],[-63,21],[-20,19],[-77,-11],[-3,30],[-99,-7],[-288,-3],[-95,-2],[-23,99],[-39,166],[-41,79],[-10,15],[-14,20],[-35,84],[-11,21],[0,28],[-80,60],[-12,-6],[-388,-162],[-40,-87],[-9,-12],[-76,-43],[-19,-1],[-118,41],[-38,-103],[-14,-13],[-89,-51],[6,-39],[3,-25],[7,-17],[13,-33],[3,-8],[13,-30],[8,-20],[93,-142],[55,-83],[86,-132],[-39,-28],[-11,-29],[-95,-35],[17,-19],[42,-47],[-41,-30],[-32,-18],[-42,-17],[-76,-29],[-44,-15],[-51,-12],[-63,-15],[-30,-5],[-51,-7],[-82,-3],[-83,7],[-80,15],[-35,7],[-44,12],[-55,20],[-49,24],[-31,42],[-27,47],[-22,46],[-15,50],[-13,81]],[[56354,7644,0],[1,13],[1,12]],[[56356,7669,0],[3,76]],[[56359,7745,0],[1,24],[9,243]],[[56369,8012,0],[4,20]],[[56373,8032,0],[-5,18]],[[56368,8050,0],[-12,13],[-45,15]],[[56311,8078,0],[5,16]],[[56316,8094,0],[17,46]],[[56333,8140,0],[4,10]],[[56337,8150,0],[16,41]],[[56353,8191,0],[9,24]],[[56362,8215,0],[16,42]],[[56378,8257,0],[13,35]],[[56391,8292,0],[58,151]],[[56449,8443,0],[6,17],[7,26],[34,82],[31,84],[9,23]],[[56536,8675,0],[15,40]],[[56551,8715,0],[14,34],[8,23]],[[56573,8772,0],[20,51]],[[56593,8823,0],[98,269]],[[56691,9092,0],[12,31]],[[56703,9123,0],[27,71]],[[56730,9194,0],[12,33],[84,262]],[[56826,9489,0],[19,25]],[[56845,9514,0],[34,46]],[[56879,9560,0],[30,41]],[[56909,9601,0],[127,169]],[[57036,9770,0],[57,14]],[[57093,9784,0],[17,4]],[[57110,9788,0],[28,7],[15,3]],[[57153,9798,0],[16,-76],[22,-48],[54,-59],[59,-53],[54,-39],[71,-40],[100,-44],[78,-26],[103,-24],[109,-16],[110,-2],[108,13],[108,23],[104,34],[100,44],[96,52],[69,48],[5,-17],[14,-58]],[[57841,11872,0],[-6,-40],[-3,-43],[-8,-54]],[[57824,11735,0],[-14,-80],[-14,-65],[-5,-26],[-7,-30],[-13,-51],[-2,-6],[-8,-34],[-8,-28],[-8,-26],[-6,-21],[-20,-63],[-11,-33],[-18,-49],[-4,-8],[-17,-44],[-10,-25],[-11,-29],[-13,-33],[-30,-77],[-33,-81],[-5,-12],[-10,-27],[-21,-47],[-5,-11],[-28,-69],[-7,-17],[-10,-25],[-25,-63],[-32,-80],[-2,-7]],[[57427,10568,0],[-58,-138]],[[57369,10430,0],[-57,-136],[-52,-123],[-4,-11],[-67,-163]],[[57189,9997,0],[-19,-44],[-17,-155]],[[57153,9798,0],[-20,13]],[[57133,9811,0],[-64,40]],[[57069,9851,0],[-8,5]],[[57061,9856,0],[-34,21]],[[57027,9877,0],[-39,25]],[[56988,9902,0],[-33,21]],[[56955,9923,0],[-40,25],[-9,8],[-9,8]],[[56897,9964,0],[-19,17]],[[56878,9981,0],[-178,160]],[[56700,10141,0],[-16,15]],[[56684,10156,0],[-150,137]],[[56534,10293,0],[-69,62]],[[56465,10355,0],[-87,73]],[[56378,10428,0],[-49,37]],[[56329,10465,0],[-47,35]],[[56282,10500,0],[-63,44]],[[56219,10544,0],[-61,42]],[[56158,10586,0],[-32,20]],[[56126,10606,0],[-21,12]],[[56105,10618,0],[-40,25]],[[56065,10643,0],[-31,19]],[[56034,10662,0],[-28,14]],[[56006,10676,0],[-31,18],[-27,15]],[[55948,10709,0],[-33,15]],[[55915,10724,0],[-178,77]],[[55737,10801,0],[-44,20]],[[55693,10821,0],[-32,14],[-50,22]],[[55611,10857,0],[-67,2],[-82,12]],[[55462,10871,0],[-18,2],[-56,10],[129,122],[183,174],[-8,2],[-50,61],[-50,81],[-39,46],[-61,112],[-19,68],[3,48],[19,38],[53,-15],[2,29],[116,-17],[56,-8],[301,-65],[10,-5],[27,31],[10,41],[74,74],[9,35],[53,86],[56,6],[-7,-18]],[[56255,11809,0],[-61,-118]],[[56194,11691,0],[-54,-110],[-19,-27],[34,-14]],[[56155,11540,0],[122,-67]],[[56277,11473,0],[66,-34],[22,32],[29,43],[31,51],[21,46],[8,15],[40,86],[34,90],[24,87],[4,14],[21,83],[11,61],[5,68],[1,20]],[[56594,12135,0],[3,26],[3,82],[-1,50],[-4,111],[-5,210],[-4,172],[1,16],[4,31],[10,21],[5,38],[6,31],[6,34],[9,33],[30,73],[60,82],[79,80],[33,23]],[[56829,13248,0],[54,41],[90,45],[143,40],[88,11]],[[57204,13385,0],[15,1],[26,-2],[78,-8]],[[57323,13376,0],[45,-10]],[[57368,13366,0],[49,-15],[30,-11]],[[57447,13340,0],[25,-13],[68,-32],[66,-46],[65,-58],[49,-62],[48,-79],[19,-45],[10,-25],[10,-31],[10,-40],[21,-133]],[[57838,12776,0],[2,-42],[1,-62],[2,-77],[3,-197],[1,-77],[1,-126],[2,-41],[0,-52],[-2,-36],[-1,-104],[-4,-52],[-2,-38]],[[56383,11956,0],[7,17],[14,-4]],[[56404,11969,0],[-4,-16],[-17,3]],[[57036,9770,0],[-111,-148],[-16,-21]],[[56909,9601,0],[-5,-7],[-25,-34]],[[56879,9560,0],[-17,-23],[-17,-23]],[[56845,9514,0],[-9,-11],[-10,-14]],[[56730,9194,0],[-24,-63],[-3,-8]],[[56703,9123,0],[-2,-4],[-10,-27]],[[56691,9092,0],[-49,-134],[-49,-135]],[[56593,8823,0],[-19,-49],[-1,-2]],[[56551,8715,0],[-6,-16],[-9,-24]],[[56449,8443,0],[-48,-125],[-10,-26]],[[56378,8257,0],[-3,-7],[-13,-35]],[[56353,8191,0],[-9,-22],[-7,-19]],[[56333,8140,0],[-13,-37],[-4,-9]],[[56316,8094,0],[-3,-9],[-2,-7]],[[56368,8050,0],[3,-12],[2,-6]],[[56373,8032,0],[-3,-16],[-1,-4]],[[56359,7745,0],[-2,-41],[-1,-35]],[[56354,7644,0],[-11,22],[-24,11],[-189,39],[-40,16],[-29,26],[-14,41],[-74,24],[-29,15],[-25,21],[-18,21],[-16,22],[-12,24],[-11,30],[-14,19],[-19,16],[-78,51],[-226,153],[-23,27],[-22,9],[-4,7],[-4,7],[9,14],[-22,12],[19,31],[-42,59],[-27,34],[-4,2],[-46,34],[-14,-12],[-49,57],[-340,507],[-205,307],[-156,225]],[[54595,9515,0],[2,4],[3,8],[22,47],[0,1]],[[54622,9575,0],[4,9]],[[54626,9584,0],[9,18],[15,34],[22,-5],[11,-3]],[[54683,9628,0],[3,0],[28,-5]],[[54714,9623,0],[22,5],[10,2],[29,17]],[[54775,9647,0],[22,23]],[[54797,9670,0],[26,51],[23,45]],[[54846,9766,0],[16,30],[10,20]],[[54872,9816,0],[27,49]],[[54899,9865,0],[22,38],[8,12],[9,14],[26,40]],[[54964,9969,0],[17,26],[14,22]],[[54995,10017,0],[6,9],[1,1],[1,2],[29,44],[12,18],[13,18],[12,19],[6,9]],[[55075,10137,0],[42,59],[36,47],[34,43],[77,93],[46,52]],[[55310,10431,0],[27,27],[17,18],[20,20],[22,23],[8,9]],[[55404,10528,0],[53,54]],[[55457,10582,0],[4,7],[9,14],[6,22]],[[55476,10625,0],[7,11],[7,11],[23,40]],[[55513,10687,0],[38,66],[4,8],[2,2]],[[55557,10763,0],[54,94]],[[55693,10821,0],[10,-5],[34,-15]],[[55737,10801,0],[138,-59],[40,-18]],[[55915,10724,0],[15,-7],[18,-8]],[[56006,10676,0],[12,-6],[16,-8]],[[56065,10643,0],[28,-18],[12,-7]],[[56105,10618,0],[4,-2],[17,-10]],[[56158,10586,0],[59,-41],[2,-1]],[[56219,10544,0],[7,-4],[56,-40]],[[56282,10500,0],[31,-23],[16,-12]],[[56329,10465,0],[9,-7],[40,-30]],[[56465,10355,0],[22,-19],[47,-43]],[[56684,10156,0],[7,-7],[9,-8]],[[56878,9981,0],[14,-12],[5,-5]],[[56955,9923,0],[14,-9],[19,-12]],[[57027,9877,0],[8,-5],[26,-16]],[[57061,9856,0],[4,-2],[4,-3]],[[57069,9851,0],[41,-26],[23,-14]],[[57110,9788,0],[-9,-2],[-8,-2]],[[55557,10763,0],[-7,-10],[-37,-66]],[[55513,10687,0],[-21,-36],[-16,-26]],[[55476,10625,0],[-6,-21],[-13,-22]],[[55404,10528,0],[-12,-13],[-18,-18],[-37,-38],[-27,-28]],[[55310,10431,0],[-46,-51],[-77,-93],[-70,-90],[-42,-60]],[[55075,10137,0],[-18,-27],[-25,-36],[-30,-46],[-7,-11]],[[54995,10017,0],[-31,-48]],[[54964,9969,0],[-35,-53],[-30,-51]],[[54872,9816,0],[-26,-50]],[[54846,9766,0],[-23,-44],[-26,-52]],[[54775,9647,0],[-29,-16],[-32,-8]],[[54714,9623,0],[-31,5]],[[54683,9628,0],[-33,9],[-24,-53]],[[54622,9575,0],[-22,-47],[-5,-13]],[[54595,9515,0],[-47,20],[-382,173],[-241,104],[-130,57],[-100,46],[-71,43],[-94,67],[-86,77],[-34,47],[-51,64],[-41,57],[-56,99],[-100,203]],[[53162,10572,0],[-22,45]],[[53140,10617,0],[-22,46]],[[53118,10663,0],[-16,34],[-2,3]],[[53100,10700,0],[-49,96]],[[53051,10796,0],[-23,46],[-1,2],[-1,2],[-27,52],[-34,57],[-5,7],[-28,41],[-44,64],[-47,62],[-31,36],[-35,40],[-38,38],[-50,49],[-48,41],[-5,5]],[[52634,11338,0],[-95,80]],[[52539,11418,0],[9,7],[24,19],[10,8],[36,29],[12,9],[54,-43],[53,-45],[53,-47],[61,-60],[43,-21],[-6,15],[-43,97],[-43,91],[-35,139],[-6,27],[-12,82],[2,134],[13,74],[21,86],[4,35],[-7,38],[-20,49],[15,5],[19,6],[10,4],[23,9],[16,6],[21,8],[51,19],[26,10],[55,20],[14,6]],[[53012,12234,0],[15,-54],[30,-80],[47,-105],[44,-90],[53,-92],[57,-87],[65,-86],[25,-35],[42,-44],[75,-74],[78,-74],[88,-74],[84,-64],[90,-59],[72,-41],[74,-39],[96,-45],[106,-43],[73,-23],[66,-19],[99,-26],[97,-20],[97,-15],[109,-13],[104,-8],[107,-4],[57,-4],[62,-1],[61,-3],[58,-3],[75,-6],[82,-8],[82,-11],[80,-13]],[[52989,13112,0],[-16,-81],[-6,-28],[-4,-29],[-11,-76],[-6,-69],[-3,-56],[0,-16]],[[52943,12757,0],[0,-61]],[[52943,12696,0],[0,-63],[3,-30]],[[52946,12603,0],[3,-29]],[[52949,12574,0],[3,-35]],[[52952,12539,0],[14,-102],[19,-98],[27,-105]],[[52539,11418,0],[-340,290],[-153,125]],[[52046,11833,0],[-565,470]],[[51481,12303,0],[-58,55]],[[51423,12358,0],[-58,65],[-49,71],[-39,79]],[[51277,12573,0],[-28,89],[-12,69]],[[51237,12731,0],[-7,102]],[[51230,12833,0],[7,101],[26,100]],[[51263,13034,0],[37,89]],[[51300,13123,0],[61,102],[54,69]],[[51415,13294,0],[51,53]],[[51466,13347,0],[36,34]],[[51502,13381,0],[25,-111],[9,-45],[6,-15],[5,-12],[31,-10],[32,6],[78,39],[69,14],[100,-8],[136,-42],[22,-16],[5,-20],[42,-2],[29,17],[251,-19],[60,4],[13,2],[84,25],[86,43],[80,74],[23,-23],[9,-9],[-50,-47],[11,-13],[21,-1],[-3,-44],[13,-1],[-2,-17],[8,-13],[59,-1],[39,-9],[13,-1],[183,-14]],[[52748,12716,0],[14,-75],[-1,78],[-13,-3]],[[51502,13381,0],[81,55],[182,121]],[[51765,13557,0],[87,68],[44,53]],[[51896,13678,0],[46,79],[32,102]],[[51974,13859,0],[27,143],[5,24]],[[52006,14026,0],[9,54]],[[52015,14080,0],[16,54],[29,81],[6,16]],[[52066,14231,0],[25,55],[52,101]],[[52143,14387,0],[96,129]],[[52239,14516,0],[83,83]],[[52322,14599,0],[139,102]],[[52461,14701,0],[100,52]],[[52561,14753,0],[109,44],[166,41],[156,30],[134,10],[73,-7]],[[53199,14871,0],[60,-40],[27,-37],[23,-31],[36,-75],[1,-2]],[[53346,14686,0],[26,-91]],[[53372,14595,0],[13,-54],[12,-107],[9,-81],[-6,-170],[0,-1],[-2,-28],[-9,-45],[-4,-18],[-6,-34],[-14,-72]],[[53365,13985,0],[-39,-107]],[[53326,13878,0],[-30,-66],[-35,-76],[-14,-25],[-73,-138],[-86,-170],[-35,-92],[-22,-59],[-18,-59],[-24,-81]],[[58738,11681,0],[-207,4]],[[58531,11685,0],[-294,6]],[[58237,11691,0],[-1,-10],[-137,10],[3,20],[-65,5],[-108,10],[-30,3],[-64,6],[-11,0]],[[57824,11735,0],[0,5],[9,48],[2,31],[1,13],[5,40]],[[57841,11872,0],[3,37],[4,52],[0,32],[1,73],[1,24],[1,11],[0,52],[-1,31],[-1,10],[0,81],[-1,46],[-1,49],[0,14],[0,14],[-2,100],[-1,95],[0,7],[-2,71],[-1,33],[0,30],[-3,42]],[[57838,12776,0],[-4,28],[-13,88],[-3,17],[-10,40],[-10,31],[-1,2],[-9,22],[-19,45],[-10,17],[-38,62],[-10,13],[-39,49],[-29,26],[-5,4],[-31,28],[-66,46],[-68,32],[-26,14]],[[57368,13366,0],[-36,8],[-9,2]],[[57204,13385,0],[-32,358],[79,4],[-7,23],[-5,7],[-16,20],[-8,21],[-8,24],[1,29],[-2,40],[0,22],[-10,-1],[-1,11],[-3,67],[-28,16],[13,19],[-8,0],[2,117],[-6,93]],[[57165,14255,0],[16,-3],[22,13],[22,-3],[25,-16],[8,-22],[18,18],[10,23],[12,55],[17,40],[18,8],[7,73],[4,8],[-1,59]],[[57343,14508,0],[-1,12],[34,-16],[218,-108],[114,-57],[201,-39],[71,-14],[92,-63],[159,-113],[62,-47],[165,-160],[73,-175],[-65,-135],[78,-130],[25,-148],[3,-208],[1,-229],[-10,-68],[-26,-104],[47,-111],[78,-115],[49,-146],[-14,-180],[4,-6],[-12,-106],[18,-147],[28,-134],[3,-80]],[[58237,11691,0],[13,-1],[281,-5]],[[58738,11681,0],[521,-10]],[[59259,11671,0],[31,-2],[138,13],[62,14],[133,2],[63,1]],[[59686,11699,0],[56,-522]],[[59383,10738,0],[-78,-58],[-72,-63]],[[59233,10617,0],[-52,-54],[-64,-71]],[[59060,10416,0],[-58,-89],[-44,-82]],[[58958,10245,0],[-120,-248],[-47,-93]],[[58791,9904,0],[-36,-60],[-19,-30],[-66,-83]],[[58670,9731,0],[-74,-76],[-73,-63],[-13,15],[-25,34],[-18,30],[-14,22],[-15,37],[-14,43],[-9,38],[-2,12],[-5,41],[-1,50],[2,42],[8,43],[8,35],[11,34],[4,11],[35,64],[39,71],[-629,-122],[-11,0],[-14,2],[-11,2],[-13,4],[-9,3],[-11,6],[-11,5],[-12,7],[-12,9],[-10,11],[-12,14],[-9,16],[-7,16],[-5,15],[-4,13],[-2,20],[0,18],[3,18],[5,22],[20,58],[7,28],[5,22],[7,70],[1,47],[0,38],[-14,99],[-15,-38],[-15,-34],[-42,-97],[-59,-94],[-55,-72],[-58,-68],[-54,-54],[-54,-47],[-59,-49],[-85,-58],[-81,-47]],[[57369,10430,0],[11,26],[47,112]],[[53396,14864,0],[54,-11],[53,-18],[24,-12]],[[53527,14823,0],[40,66],[36,57]],[[53603,14946,0],[55,-36],[55,-38],[16,-12]],[[53729,14860,0],[53,-52],[50,-54],[-65,-91],[-21,-54]],[[53746,14609,0],[13,-28],[7,-19],[8,-26],[49,-32]],[[53823,14504,0],[65,-10],[41,-6]],[[53929,14488,0],[5,-51],[11,-66]],[[53945,14371,0],[10,-72]],[[53955,14299,0],[9,-72],[10,-89],[13,-86],[12,-89],[3,-30]],[[54002,13933,0],[2,-36],[0,-40],[-4,-34],[-5,-28],[-19,-57],[-29,-56],[-35,-50],[-51,-49],[-53,-39],[-74,-36],[-74,-32],[-102,-49],[-11,-27],[-12,-29],[22,-77],[30,-103],[3,-62],[0,-53],[-2,-31],[-12,-36],[-7,-18],[-11,-28],[-18,-31],[-17,-23],[-57,-61],[-59,-58],[-105,-38],[5,-163],[-178,-1],[-149,0],[-4,-13],[-10,-15],[-14,-21]],[[52949,12574,0],[-2,18],[-1,11]],[[52943,12696,0],[0,45],[0,16]],[[53326,13878,0],[30,83],[9,24]],[[53372,14595,0],[-26,90],[0,1]],[[53199,14871,0],[-38,4]],[[53161,14875,0],[-5,94],[88,-9]],[[53244,14960,0],[20,-5],[18,-8],[15,-13],[10,-13],[6,-14],[5,-16]],[[53318,14891,0],[0,-9],[3,-9],[1,-2],[8,-1],[25,0],[20,-2],[21,-4]],[[62377,9598,0],[31,-41],[24,-25],[14,-18],[56,-75],[20,-13],[98,-57],[15,-15],[-71,-45],[-92,-46],[-77,-39],[-75,-56],[-73,-66],[-67,-62],[-17,-15],[-92,-81],[-98,-86],[-79,-59],[-39,-26],[-74,-52],[-38,-23],[-30,-18],[-86,-80],[-105,-100],[-50,-48],[-71,-57],[-11,-10],[-27,26],[-103,52],[-52,44],[-54,22],[-15,0],[-25,36],[-1,12],[-9,93],[-19,203],[-6,69],[-15,165],[-30,325],[-13,137],[13,0],[20,0],[37,4],[80,15],[62,17],[72,9],[35,5],[40,7],[27,-8],[37,-15],[28,-9],[30,4],[16,11],[30,28],[22,19],[38,26],[52,21],[29,10],[116,35],[80,22],[14,4],[72,29],[5,2],[29,8],[67,11],[26,-7],[45,-24],[43,-24],[21,-18],[6,-13],[20,-20],[39,-15],[7,-3],[45,-25],[29,-36],[12,-14],[12,-27]],[[53118,10663,0],[2,-26],[2,-16],[18,-4]],[[53162,10572,0],[67,-137],[12,-74],[20,-123],[22,-71],[38,-115],[42,-126],[19,-72],[16,-46],[43,-11],[48,-111],[77,-45],[-109,-104],[-74,-37],[-42,-11],[-122,-82],[-30,24],[-65,93],[-32,75],[-175,-72],[-16,65],[-8,59],[-26,70],[-13,38],[-45,138],[-11,61],[-27,125],[-7,22],[-18,45],[-25,-1],[-62,135],[10,10],[0,9],[-32,94],[-13,42],[-25,104],[21,8],[-5,114],[-13,82],[-30,-4],[-25,52],[-12,41],[-20,61],[-36,109],[-43,92],[-40,54],[-3,19],[-7,40],[-10,42],[-4,30]],[[52372,11283,0],[25,13],[32,15]],[[52429,11311,0],[85,38],[26,14]],[[52540,11363,0],[50,12]],[[52590,11375,0],[44,-37]],[[53051,10796,0],[24,-47],[25,-49]],[[59669,11851,0],[17,-152]],[[59259,11671,0],[9,18],[-10,125],[-18,88],[-19,86],[-9,63],[-1,37],[0,73],[19,141],[-5,79],[16,117],[5,74],[2,80],[-3,172],[203,-4],[2,0],[116,87],[126,94],[29,21],[13,11],[9,9],[8,11],[7,16],[-4,-24]],[[59743,12961,0],[-16,-114],[-15,-106]],[[59938,14322,0],[-6,-41],[-2,3],[-77,156],[-72,146],[-14,47],[-93,122],[-44,60],[-56,52],[93,92],[71,69],[29,35],[73,109],[70,104],[85,141],[28,44],[75,90],[111,141],[83,95],[172,260],[107,-54]],[[60571,15993,0],[169,-100],[230,-143],[169,-160]],[[61139,15590,0],[-149,-190],[-30,-56],[-67,-89],[-2,-14],[4,-11],[122,-98],[150,-40],[205,-31],[188,-17],[24,-5],[34,-6]],[[61618,15033,0],[-25,-108],[-13,-60]],[[61580,14865,0],[-10,-39],[-61,-255],[-36,-150],[-118,-46],[-688,-9],[-61,-1],[-333,-4]],[[65519,88537,0],[37,-162],[7,-36],[9,-38],[8,-35],[3,-15],[3,-10],[8,-37],[13,-41],[-48,-8]],[[65559,88155,0],[-106,-16],[-46,-27],[-31,-19],[-19,20],[-11,-4],[-145,-41],[-31,-20],[-33,-9],[-55,-17],[-63,-28],[-22,-4],[-11,-3],[-10,-4],[-10,-5],[-9,-6],[-9,-7],[-8,-7],[-11,5],[-20,12],[-24,3],[-74,93],[-62,2],[-83,3],[-15,-17],[-85,-6],[-27,-16],[-101,4],[-25,-56],[33,-123],[-21,-13],[-44,-4],[-177,-18],[-9,2],[-178,36],[-101,21],[-330,36],[-35,-156],[-112,-12],[-22,283],[-2,22],[-75,-29],[-31,-9],[-89,-59],[-75,-47],[-73,-25],[-57,16],[-33,170],[-102,-28],[-35,4],[-80,-16],[-88,24],[-39,2],[-39,-9],[-29,222],[-21,97],[11,69],[14,63],[-17,261],[-1,14],[13,49],[4,17],[13,73],[-10,123],[-6,20],[-21,73],[-26,192],[-2,63],[44,305],[-45,166],[276,-5],[9,1],[-80,437],[-114,335],[-26,117],[327,104],[251,121],[18,21],[223,250],[109,123],[24,27],[22,16],[98,49],[6,10],[42,76],[123,25],[2,28],[13,155],[21,262],[3,42],[125,-14],[8,30],[-304,848],[-68,312],[-45,205],[-37,296],[-44,285],[50,-3],[566,-5],[30,-89],[247,47],[374,70],[13,-23],[199,85],[-12,69],[396,92],[37,11],[346,54],[359,-116],[339,-3],[69,-291],[29,-323],[15,-439],[112,-132],[51,-1205],[23,0],[201,-2],[-4,-36],[-62,-566],[-30,3],[-39,-195],[-2,-149],[-32,-168],[-25,-133],[22,-451],[-11,-89],[-409,97],[-43,-27],[-40,0],[-35,0],[-28,-23],[-154,-122],[-156,-101],[-10,-26],[-110,-36],[-105,-49],[-241,-61],[-175,-29],[44,-414],[218,-701]],[[68395,87731,0],[-38,10],[-55,-69],[-28,-44],[-55,-87],[-25,-28],[-24,-26],[-49,-43],[-29,33],[-30,12],[26,49],[-240,75],[-67,20],[-24,-84],[-22,-124],[-7,-19],[7,-26],[-5,-44],[-51,4],[-37,-4],[-63,-25],[-23,-22],[-16,-25],[-35,-26],[-5,-21],[-29,-1],[-43,-3],[-2,10],[-4,13],[16,55],[-7,73],[-14,5],[-14,-12],[-15,4],[-14,-6],[-43,3],[23,-124],[-38,-16],[-136,74],[-55,-34],[-31,-68],[-8,-18],[-9,-17],[-30,-29],[-18,-23],[-32,6],[-32,-5],[-6,22],[-15,55],[-54,23],[-7,81],[-5,21],[-18,90],[-34,52],[-6,25],[-74,3],[-19,7],[-13,0],[-18,0],[-19,20],[-37,13],[-43,-10],[-39,7],[-34,-9],[-40,16],[-56,9],[-36,42],[-42,-9],[-29,-16],[-37,-3],[1,96],[-31,4],[-10,-8],[-4,-11],[1,-10],[21,-22],[-17,-59],[-17,-20],[-39,-6],[-35,-4],[-42,6],[-36,13],[-29,16],[-40,-17],[-69,8],[-39,11],[-23,16],[-52,-33]],[[65824,87523,0],[-36,106],[-11,19],[-20,7],[-69,82],[-9,35],[-1,55],[5,40],[1,17],[-33,29],[-36,80],[-56,162]],[[65519,88537,0],[45,-1],[88,-13],[185,-19],[62,-5],[58,-1],[30,1],[115,-22],[219,51],[42,34],[20,0],[35,-12],[57,-41],[36,-53],[51,-62],[-9,-57],[-2,-15],[122,-16],[26,20],[-3,45],[22,67],[6,63],[36,65],[39,80],[37,86],[6,9],[10,40],[33,101],[-8,22],[36,83],[164,-9],[41,22],[71,-3],[77,-16],[11,2],[123,-9],[175,-35],[107,-14],[81,-19],[156,3],[160,-35],[43,162],[4,16],[31,152],[15,86],[14,40],[181,-55],[45,-24],[47,-30],[104,-32],[31,-22],[44,-41],[59,-81],[7,-7],[49,-21],[26,15],[111,-47],[-11,-30],[-26,-65],[-28,-164],[-3,-17],[-42,-118],[-17,-64],[-134,52],[-25,-58],[-220,-504],[142,-59],[-65,-128],[-66,-99]],[[68770,87344,0],[-38,-88],[-26,-71],[-32,-82],[-14,-44],[-42,-108],[-38,-131],[0,-15],[-4,-38],[-15,-123],[1,-49],[-1,-30],[-1,-154],[-1,-47],[9,-25],[7,-119],[10,-30],[0,-34],[3,-56],[1,-30],[-2,-42],[5,-65]],[[68592,85963,0],[-28,-12],[-76,-12],[-271,30],[-873,80],[-171,-80],[-109,-102],[-44,-46],[-191,-194],[-93,-95],[-201,-175],[-23,-14],[-19,-4],[-177,-37],[-3,77],[-23,9],[-32,10],[-12,1],[-30,4],[-14,24],[-4,115],[-15,64],[34,57],[12,64],[-9,3],[-4,39],[33,9],[14,10],[1,43],[-19,4],[-8,34],[-2,24],[4,27],[18,38],[-4,28],[-33,23],[5,21],[0,28],[29,62],[17,43],[-18,6],[13,19],[0,24],[18,1],[3,20],[22,27],[27,19],[29,12],[-20,53],[-18,4],[-39,11],[-10,2],[-31,16],[-12,35],[10,64],[-69,57],[-12,65],[-11,26],[-9,40],[-32,133],[-6,21],[-29,96],[-37,84],[-2,24],[-16,18],[-45,82],[2,33],[-12,45],[4,16],[-4,57],[-3,20],[-58,67],[-42,39],[-40,124]],[[68395,87731,0],[29,-19],[32,-15],[53,-26],[136,-65],[39,-13],[164,-89],[-21,-43],[-57,-117]],[[70576,86389,0],[-251,-42],[-182,-30],[12,-51],[0,-1],[4,-26],[56,-113]],[[70215,86126,0],[56,-102]],[[70271,86024,0],[45,-50],[12,-13]],[[70328,85961,0],[20,-38],[63,-78],[51,-63]],[[70462,85782,0],[3,-3],[10,-12]],[[70475,85767,0],[238,-149],[142,-53]],[[70855,85565,0],[98,-38],[121,-46]],[[71074,85481,0],[52,-6],[6,-1],[47,-5],[5,-3],[48,-25],[-121,-329],[-61,-165]],[[71050,84947,0],[-60,15],[-55,14],[-329,82],[-292,74],[-56,18]],[[70258,85150,0],[-125,40],[-153,51]],[[69980,85241,0],[-88,29],[-84,28]],[[69808,85298,0],[-185,98],[-54,28]],[[69569,85424,0],[-501,29],[-162,8],[-93,35]],[[68813,85496,0],[-54,15],[-159,38],[-107,23]],[[68493,85572,0],[-190,45],[38,27],[70,37],[51,-5],[34,6],[34,21],[68,21],[-1,86],[-11,57],[-2,42],[8,54]],[[68770,87344,0],[300,-85],[79,-23],[22,-17],[63,-41],[169,-86],[28,-19],[43,125],[22,122],[1,14],[18,97],[14,88],[-1,60],[0,25],[-2,145],[96,-7],[177,-11],[279,-48],[91,-14],[7,-36],[4,-22],[30,-163],[16,-45],[5,-18],[7,-14],[32,-78],[-14,-80],[1,-74],[7,-28],[6,-32],[9,-23],[2,-15],[-2,-39],[0,-36],[0,-29],[3,-22],[19,-16],[106,-26],[52,-83],[119,-243],[-1,-44],[0,-48],[-1,-66]],[[70067,83571,0],[-44,-14],[-284,-50],[-25,-3],[-72,-11],[-48,-9],[-28,-5],[-41,-8],[-69,-13],[-161,-31],[-285,-53],[13,-86],[35,-137],[200,-784],[27,-102],[18,-69]],[[69303,82196,0],[18,-65],[2,-15],[122,-475],[10,-38]],[[69455,81603,0],[-100,-13]],[[69355,81590,0],[-58,-10],[-127,-30],[-52,9],[-97,18],[-200,7],[-238,-51],[-118,-6],[-163,-38],[-147,-40],[-120,-25],[-274,-42],[-304,21],[-152,7],[-40,2]],[[67265,81412,0],[-9,-2],[-10,166],[-30,78],[-42,198],[7,54],[-26,57],[10,17],[101,-40],[70,-5],[95,49],[173,28],[1,0],[40,59],[90,71],[74,-28],[133,-10],[60,-32],[92,25],[73,2],[9,38],[111,46],[7,2],[-69,144],[28,117],[-24,128],[-1,8],[-4,25],[-90,15],[-17,-30],[-37,-65],[-136,-23],[-197,-9],[-201,-15],[-134,10],[-59,32],[-204,12],[-40,71],[-12,48],[-40,81],[-55,64],[-2,2],[-18,31],[-35,40],[-46,53],[163,57],[86,1],[132,20],[253,-45],[15,-12],[9,-7],[9,-6],[9,-5],[10,-5],[9,-5],[10,-5],[10,-4],[11,-4],[10,-3],[10,-4],[11,-3],[11,-1],[11,-2],[11,-2],[10,-1],[12,0],[10,-1],[11,0],[11,1],[11,1],[73,-47],[158,-4],[-9,101],[20,100],[27,89],[-61,-4],[-7,16],[64,167],[49,79],[-139,30],[21,219],[-7,1],[-231,71],[71,235],[-57,20],[-3,0],[-119,11],[34,107],[40,68],[-8,49],[0,1],[-36,41],[47,69],[-3,36],[47,79],[159,136],[0,4],[19,185],[-37,25],[22,92],[3,7],[25,64],[-7,19],[-80,7],[-6,19],[78,209],[40,68],[-27,56],[-20,67],[120,59],[-8,42],[-5,26],[-3,49],[1,90],[129,-7],[173,-24],[190,-44]],[[68813,85496,0],[94,-35],[161,-9],[501,-28]],[[69569,85424,0],[54,-29],[185,-97]],[[69808,85298,0],[84,-29],[88,-28]],[[69980,85241,0],[153,-52],[125,-39]],[[70258,85150,0],[56,-19]],[[70314,85131,0],[-3,-30],[-109,-652],[-138,11],[-11,-93],[-12,-83],[-5,-39],[-6,-57],[-15,-217],[-12,-46],[75,-196],[-84,-31],[3,-10],[24,-39],[46,-78]],[[73686,84427,0],[60,-120],[13,-28],[293,-611],[14,-27],[65,-137],[115,-238],[41,-85],[97,-235],[90,-218],[15,-37]],[[74489,82691,0],[130,-314]],[[74619,82377,0],[51,-128],[82,-191],[74,-182],[60,-149],[12,-30],[34,-79],[-30,-14]],[[74902,81604,0],[-95,-39]],[[74807,81565,0],[-243,662]],[[74564,82227,0],[-24,-5],[-14,-3],[-164,-34],[-333,-51],[-25,-50],[-112,-16],[-12,-2],[-40,-27],[-8,92],[-21,101],[12,5],[24,19],[26,10],[-3,107],[-3,80],[-25,77],[538,72],[-41,97],[-21,49],[-30,72],[-53,125],[-62,147],[-9,19],[-377,-81],[-65,-16],[-132,-14],[-25,-2],[5,-23]],[[73570,82975,0],[-7,-108]],[[73563,82867,0],[-153,39]],[[73410,82906,0],[-36,53],[-119,174]],[[73255,83133,0],[-356,2],[-349,2],[-51,-1],[-145,1],[-119,0],[-31,-5],[-60,-64],[-37,-42],[-85,16],[-44,9],[-58,5],[-41,1],[-132,-18]],[[71747,83039,0],[-62,-14],[-84,-19],[-98,-30],[-39,-21],[-308,-124],[-180,-74],[-26,-10],[-327,-100]],[[70623,82647,0],[30,29],[10,45],[0,32],[-17,31],[-17,40],[-26,52]],[[70603,82876,0],[-54,109]],[[70549,82985,0],[-68,137],[-16,38],[-19,49],[10,67],[16,51],[23,57],[22,48],[74,163],[17,66],[-64,-7],[-30,-3],[-22,-4],[-406,-73],[-19,-3]],[[70314,85131,0],[621,-156],[56,-13],[59,-15]],[[71050,84947,0],[61,164],[122,330],[-54,27],[-46,6],[-59,7]],[[71074,85481,0],[-219,84]],[[70855,85565,0],[-142,52],[-238,150]],[[70475,85767,0],[-13,15]],[[70462,85782,0],[-114,140],[-20,39]],[[70328,85961,0],[-57,63]],[[70215,86126,0],[-50,113],[-10,25],[-11,53],[432,72]],[[70576,86389,0],[32,5],[949,315],[-10,159],[247,12]],[[71794,86880,0],[39,2],[81,44],[557,0],[757,-1],[26,14],[15,-78],[107,16],[76,-458],[-4,-58],[-2,-19],[-68,-952],[-4,-67],[-10,-140],[34,-160],[288,-596]],[[76654,87735,0],[-85,-24],[1,-62],[7,-89],[5,-91],[1,-38],[57,-102],[51,-94],[21,-29],[17,-66],[45,-168],[42,-163],[-68,-78],[-50,-53],[-144,-155],[-16,-80],[-15,-45],[24,-28],[14,-28],[60,-111],[23,-151],[-13,-99],[-11,-113],[-39,-112],[-1,-125],[-5,-182],[-31,-21],[-40,-57],[-145,66],[-104,44],[-124,51],[-60,29],[-23,-6],[-93,14],[-64,-8],[-167,-20],[-97,-8],[-98,-9],[-136,-12],[-85,-9],[-88,-10],[-153,-15],[14,-325],[2,-92],[2,-45],[3,-95],[301,-46],[139,-20],[95,-13],[111,-17],[138,-20],[137,-20],[170,-23],[116,-15],[-24,-148]],[[76271,84599,0],[-379,-17],[-66,-3],[-109,-8],[-127,-11],[-270,-19],[-279,-17],[-458,-33],[-42,55],[-60,77],[-91,76],[-91,-31],[-124,-43],[-13,-22],[-18,-12],[-129,-139],[-161,-10],[-168,-15]],[[71794,86880,0],[-2,40],[30,428],[139,1691],[12,180],[-8,18],[2169,608],[270,14],[39,-221],[159,-276],[-1,-46],[31,-45],[-15,-84],[570,-41],[647,-54]],[[75834,89092,0],[15,-524],[4,-97],[-2,-38],[8,-180],[-7,-41],[-77,-487],[6,-192],[200,186],[39,19],[45,28],[127,91],[380,276],[71,-47],[11,-351]],[[81035,88049,0],[-29,-10],[-129,-47],[-316,-168],[-50,-44],[-54,-50],[-27,-41],[-56,-90],[-52,-76],[-81,-82],[-26,-26],[-107,-122],[-158,-180],[-3,10],[-23,31],[-265,-2],[-91,5],[-42,3],[-142,20],[-29,16],[-105,33],[-261,95],[-69,25],[-129,50],[-26,6],[-29,9],[-49,230],[-13,76],[-63,1],[-11,67],[0,6],[-3,20],[1,66],[3,127],[-246,-50],[-44,12],[-95,38],[-8,8],[-49,53],[-26,46],[-175,11],[13,-156],[-93,-5],[-100,-45],[-70,-8],[-27,0],[-42,-9],[-99,-16],[-18,-1],[-21,-1],[-64,-8],[-55,-11],[-48,-7],[-53,-11],[-94,-25],[-56,-14],[-14,36],[-33,2],[-79,-15],[-59,-11],[-66,-26],[-47,-19],[-93,-21],[-34,2],[-52,-21]],[[75834,89092,0],[-128,699],[98,463],[-250,786],[42,13],[278,-3],[355,-144],[215,-59],[207,181],[34,0],[173,28],[238,-2],[504,308],[248,41],[598,123],[21,3],[59,-84],[113,-127],[55,-28],[90,-35],[121,-136],[104,-79],[200,-76],[96,-48],[102,-13],[123,-30],[207,-23],[99,-39],[130,-5],[98,-20],[55,-36],[144,-34],[121,-34],[206,-14],[180,-4],[86,23],[56,8],[14,-23],[262,-281],[500,-5],[523,-164],[40,-7],[283,-90],[123,-19],[33,-30],[-1,-81],[-74,-67],[-160,-237],[27,-65],[-25,0],[-64,-26],[-64,-99],[3,-38],[-33,-70],[-138,-129],[-18,-27],[-74,-171],[-47,-46],[12,-12],[-168,-174],[-64,-111],[-120,-157],[-44,-71],[-32,-101],[-50,-88],[-57,-87],[-76,-68],[-84,-30],[-242,-50],[-62,-22]],[[73255,83133,0],[155,-227]],[[73563,82867,0],[5,89],[2,19]],[[74564,82227,0],[122,-294],[148,-356]],[[74834,81577,0],[-27,-12]],[[74807,81565,0],[-442,-182],[-245,-101]],[[74120,81282,0],[-20,-8],[-92,-38]],[[74008,81236,0],[-21,-18],[34,-23],[-187,-257],[-53,30],[-27,-93]],[[73754,80875,0],[-27,-7],[137,-88],[-14,-18],[-16,-12],[-18,-9],[22,-36],[-8,-15],[-12,-9]],[[73818,80681,0],[-11,6],[-41,-77],[-58,42],[-68,25],[-36,14],[-15,6],[-48,22],[-9,43],[-41,12],[-67,0],[-160,-16],[-142,59],[-156,130],[-101,-17],[-128,-15]],[[72737,80915,0],[-13,14],[0,48],[-16,93],[-5,12]],[[72703,81082,0],[-25,76]],[[72678,81158,0],[-7,20],[-4,12]],[[72667,81190,0],[-2,30],[-196,-50],[-80,251],[-14,49],[64,-32],[128,-39],[90,-5]],[[72657,81394,0],[-5,75],[-55,1],[-77,32],[-26,8],[-56,26],[-20,8],[-41,25],[-22,17],[-22,21],[-38,39],[-50,84],[-71,153],[-72,162]],[[72102,82045,0],[-65,147],[-47,95],[-97,224],[-61,138],[-22,53],[45,16],[-46,96],[-75,-28],[-44,103]],[[71690,82889,0],[3,10],[54,140]],[[71747,83039,0],[-57,-150]],[[72102,82045,0],[-127,100]],[[71975,82145,0],[-16,34],[-62,139],[-63,143],[-257,-96]],[[71577,82365,0],[37,-83]],[[71614,82282,0],[-79,-14]],[[71535,82268,0],[-34,81],[-68,158],[-46,109],[-8,21],[-15,24],[-22,23],[-23,16],[-33,14],[-30,4],[-23,0]],[[71233,82718,0],[-262,-102]],[[70971,82616,0],[-26,-22],[-24,-31],[-9,-26],[0,-21]],[[70912,82516,0],[-64,16]],[[70848,82532,0],[-118,60],[-102,47],[-22,-27]],[[70606,82612,0],[-167,-94]],[[70439,82518,0],[-53,-23],[-34,-15]],[[70352,82480,0],[-38,-10],[-151,-47],[-30,14]],[[70133,82437,0],[-19,-29],[-39,-12],[-26,-18],[-13,-19],[-8,-22],[1,-32],[4,-25],[-56,-88],[-39,125],[-11,14],[-14,9],[-19,7],[-21,1],[-35,-9],[-535,-143]],[[70549,82985,0],[5,-11],[49,-98]],[[7285,30607,0],[29,-31],[1171,-1193],[607,-143],[243,11],[-57,-40],[-157,-114],[-223,-30],[-36,-9],[-139,9],[-149,97],[-46,-14],[7,-17],[145,-353],[85,-209],[387,-940],[16,-39],[-60,-92],[-19,-30],[9,-20],[-31,-76],[-87,-167],[-84,-173],[-27,-83],[-100,-99],[-137,-86],[-143,-41],[-35,0],[-41,0],[-95,0],[-193,-19],[-58,-4]],[[8067,26702,0],[-98,115],[-73,85],[-79,73],[-103,68],[-108,61],[-106,33],[-89,16],[-82,14],[-121,8],[-120,-22],[-95,-27],[-84,-29]],[[6909,27097,0],[-50,98],[-5,13],[-1033,-93],[-62,-7],[-54,-5],[-101,-9],[-162,-6],[-84,38],[-560,173],[-154,67],[-237,138],[-109,83],[-68,92],[-62,157],[-42,130],[-31,185],[-49,357],[-49,57],[-80,-39],[-263,-269],[-159,-211],[-109,-74],[-128,-66],[-117,-7],[-99,25],[-73,-5],[-53,-30],[-116,-71],[-187,-142],[-292,-163],[-240,-117],[-108,-22],[-188,51],[-118,79],[-121,24]],[[1546,27528,0],[29,88],[127,-35],[140,140],[29,217],[372,2783],[55,387],[997,-311],[949,-295],[1244,-391],[219,-72],[134,16],[61,0],[86,-83],[101,-50],[150,4],[279,79],[75,31],[188,83],[159,118],[95,200],[62,93],[188,77]],[[6909,27097,0],[-59,-23],[-79,-46],[-37,-34],[-62,-66],[-42,-57],[-74,-110],[-66,-184],[-105,-365],[-23,-83],[-73,-214],[-56,-123],[-56,-105],[-28,-49],[-29,-45],[-21,-22],[-56,-49],[-16,-12],[-40,-20]],[[5987,25490,0],[-45,-26],[-68,-16],[-59,-7],[-87,0],[-48,7],[-49,11],[-38,10],[-17,5],[-31,16],[-71,39],[-111,57],[-37,16],[-93,41],[-105,37],[-83,17],[-43,5],[-54,6],[-147,67],[-38,21],[-198,97],[-124,-22],[-89,-9],[-28,-3],[-26,-15],[-25,-16],[-579,-326],[-244,-184],[-156,-101],[-55,-39],[-158,-112],[-377,-293],[-166,-104],[-480,-75],[-276,-53]],[[1782,24541,0],[-181,96],[-166,161],[-177,155],[-234,245],[-61,0],[-48,205],[-78,243],[-145,138],[-13,19],[-25,77],[-194,163],[-66,140],[-186,186],[-198,80],[-10,41],[222,208],[220,115],[74,79],[44,42],[125,67],[200,114],[61,56],[182,69],[33,48],[77,59],[241,122],[67,59]],[[5987,25490,0],[-2,-131],[-1,-26],[-2,-122],[-10,-622],[25,-39],[-28,-69],[-6,-54],[21,-124],[116,-163],[68,-88],[18,-48],[-16,-88],[-132,-214],[-297,-145],[-52,-78],[-117,-208],[-110,-327],[1,-91],[5,-61],[136,-141],[54,-54],[144,-115],[145,-75]],[[5947,22407,0],[-52,-23],[-1058,-426],[-664,-268],[-926,-373],[-216,-88],[-34,-6],[-32,-8],[-28,-7],[-191,-49],[-78,-19],[-73,23],[-938,262],[-258,-14],[-70,-4],[-29,-2],[-66,-2]],[[1234,21403,0],[-18,423],[9,137],[14,97],[39,166],[34,120],[56,168],[57,159],[42,102],[47,104],[59,113],[-151,507],[-24,74],[-79,1],[-80,-1],[-49,-1],[286,481],[163,316],[15,35],[128,137]],[[8709,20819,0],[9,-56],[3,-48],[-11,-183],[24,-81],[58,-120],[133,-293],[181,-405],[80,-175],[23,-45]],[[9209,19413,0],[-65,32],[-56,29],[-224,318],[-11,12],[-111,188],[-59,105],[-29,72],[-40,-15],[-54,-19],[-240,-172],[-52,-92],[29,-221],[31,-221],[-6,-309],[12,-93],[-40,-13],[-912,-271],[-116,-36],[-22,-8],[-19,-2],[-137,-42],[-80,-21],[-12,-3],[-69,-10]],[[6927,18621,0],[-83,-10],[-105,-22],[-134,22],[-24,-56],[-137,-93],[-90,-135],[-123,-65],[-197,-74],[-218,-239],[-9,-85],[-65,-34],[-140,-148],[-27,-30],[-63,-112],[-124,-129],[-125,-104]],[[5263,17307,0],[-11,6],[-11,7],[-285,322],[-34,41],[-378,477],[-15,2],[-3366,1284],[-919,345],[-72,27],[-24,11],[-11,6],[-55,8],[15,28],[58,82],[173,197],[95,128],[98,149],[176,337],[46,72],[38,44],[221,215],[150,160],[51,73],[20,40],[11,35]],[[5947,22407,0],[501,-197],[218,-51],[606,-114],[51,-19],[198,-125],[186,-146],[37,-46],[53,-63],[167,-251],[134,-190],[82,-112],[70,-78],[101,-71],[167,-66],[191,-59]],[[11938,28220,0],[-396,-1376],[-138,-485],[-37,-128],[-8,-27],[33,-112],[33,-99],[7,-12],[21,-37],[90,-168],[-9,-197],[108,-136],[26,-33]],[[11668,25410,0],[-77,-82],[-64,-141],[-10,-162],[-36,-50],[-235,-224],[-309,-241]],[[10937,24510,0],[-90,-53],[-258,-144],[-152,-69],[-119,1],[-134,34],[-149,55],[-102,16],[-73,-7],[-78,-26],[-123,-82],[-81,40],[-30,42],[-107,142],[-122,131],[-59,47],[-188,53],[-160,79],[-179,124],[-180,148],[-390,281],[-121,95],[-277,250],[-87,50],[-4,41],[164,229],[212,227],[41,43],[83,89],[18,18],[85,92],[-112,128],[-98,118]],[[7285,30607,0],[60,82],[174,147],[214,-14],[109,29],[144,70],[224,229],[262,322],[22,3],[3,-38],[876,-498],[615,-342],[30,10],[10,9],[411,318],[-11,78],[47,-15],[17,6],[443,-2],[252,-9],[239,30],[53,-135],[10,-86],[83,-345],[-20,-43],[30,-134],[18,-117],[338,-1942]],[[15212,24004,0],[-17,13],[-125,100],[-60,38],[-32,19],[-107,40],[-75,26],[-226,-15],[-120,-20],[-38,18],[-465,-174],[-166,-61],[-84,-18],[-69,-6],[-42,-1],[-65,9],[-76,21],[-69,31],[-76,11],[-148,93],[-79,210],[24,131],[63,435],[-19,66],[-16,42],[-148,235],[-105,128],[-134,123],[-55,32],[-228,132],[-194,51],[-207,-6],[-83,-40],[-53,-35],[-250,-222]],[[11938,28220,0],[4577,359],[-637,-1574],[-326,-794],[-80,-364],[-32,-316],[87,-388],[-163,-46],[-135,-138],[-10,-629],[-3,-140],[-1,-35],[-3,-151]],[[9209,19413,0],[-16,-45],[1,-8],[0,-20],[-186,-943],[-48,-250],[-8,-56],[95,-121],[64,-82],[35,-187],[34,-95],[-21,-93],[27,-36],[727,-965],[31,-31]],[[9944,16481,0],[33,-30],[132,-119],[56,-54],[27,-26],[8,-7],[-60,-59],[-400,-361],[-157,-162]],[[9583,15663,0],[-34,-37],[-119,-83],[-112,-81],[-119,-77],[-118,-49],[-122,-64],[-137,-49],[-143,-34],[-140,-19],[-145,-7],[-153,23],[-137,33],[-140,61],[-119,88],[-108,83],[-90,107],[-57,138],[-48,146],[-14,133],[10,133],[-24,383],[18,131],[-5,123],[-13,122],[-37,118],[-128,505],[-133,352],[-1,16],[-32,124],[-57,112],[-112,236],[-59,137],[-26,128],[-2,26]],[[9583,15663,0],[344,-273],[305,-379],[203,-223],[80,-146],[11,-42]],[[10526,14600,0],[-60,-27],[-48,-40],[-149,-164],[-123,-100],[-138,-138],[-92,-38],[660,-534],[34,-24],[-264,-194],[-96,-32],[-454,-16],[-233,-32],[-184,-66],[-143,-15],[-168,-27],[-150,-18],[-365,-101],[-408,-22],[-216,-14],[-148,-62],[-95,-148],[-51,-3],[-73,147],[89,128],[-45,17],[-68,-78],[-42,-76],[-128,117],[60,185],[175,-24],[31,9],[-143,78],[-208,3],[-113,-63],[-59,0],[-816,186],[-1254,138],[-140,86],[-41,36],[-148,74],[-116,105],[-137,199],[-133,104],[-118,107],[-64,87],[-129,69],[-37,101],[44,62],[-169,285],[-127,187],[-54,138],[-39,69],[-58,34],[-11,14],[-22,92],[7,65],[-24,85],[-3,141],[-49,114],[-45,151],[128,226],[66,101],[88,120],[120,105],[1,18],[131,25],[159,105],[88,52],[439,188],[150,92],[130,84],[158,74],[177,160]],[[56277,11473,0],[-59,34],[-63,33]],[[56194,11691,0],[50,98],[11,20]],[[56255,11809,0],[7,19],[18,48],[0,6],[-11,36],[12,5],[6,7],[14,44],[82,-18]],[[56404,11969,0],[31,163],[115,1],[44,2]],[[57139,14555,0],[0,-35],[1,-16],[1,-19]],[[57141,14485,0],[2,-2],[3,-35],[4,-42],[2,-37],[1,-34],[-8,-29],[1,-30],[19,-8],[0,-13]],[[57165,14255,0],[6,-92],[-3,-117],[8,-1],[-13,-19],[28,-15],[3,-68],[1,-10],[10,0],[1,-21],[1,-40],[-1,-30],[8,-23],[8,-21],[16,-20],[5,-7],[7,-23],[-79,-4],[33,-337],[0,-22]],[[56829,13248,0],[4,6],[4,5],[3,5],[3,7],[2,6],[2,8],[2,6],[1,9],[0,8],[-1,7],[-3,9],[-1,4],[-17,43],[-11,29],[-5,7],[-6,4],[-6,4],[-6,4],[-7,1],[-6,2],[-4,0],[-39,-2],[-100,-4],[-22,0],[-78,0],[-12,1],[-13,2],[-12,3],[-13,2],[-14,4],[-14,4],[-11,4],[-15,6],[-16,7],[-14,7],[-15,8],[-7,4],[-20,14],[-16,12],[-20,16],[-7,7],[-17,17],[-16,16],[-18,22],[-14,24],[-20,44],[-11,22],[-40,83],[-8,17],[-24,92],[-6,19],[-7,40],[-7,54],[-1,17],[-2,56],[-1,20],[-12,8],[0,4],[-96,2],[-12,-3],[-28,1],[1,27],[-2,6],[-6,3],[-14,0],[2,72],[-151,1],[-6,58],[13,73],[17,34],[5,3],[-1,5],[3,6],[-17,6],[-2,-5],[-10,3],[-6,5],[0,3],[16,54],[-19,7],[2,8],[-5,4],[16,79],[16,51],[33,91],[36,65],[14,31],[42,91],[184,23],[175,23],[65,1],[5,0],[57,-13],[163,-29],[100,-17],[211,-70],[106,-63],[12,-8]],[[57034,14700,0],[56,-32],[1,-17],[0,-8],[26,2],[29,7],[3,-14],[-7,-48],[-3,-35]],[[10937,24510,0],[-360,-491],[-753,-1006],[-25,-36]],[[9799,22977,0],[-142,-480],[-108,-270],[-238,-259],[-106,-238],[-496,-911]],[[15335,21566,0],[-602,-179],[-42,-11],[164,-392],[33,-68],[152,-174],[11,-13],[-525,-219],[-30,-60],[-594,-1326],[-40,-92],[-707,-1628],[-7,-18],[-166,-222],[-127,-116],[-34,-271]],[[12821,16777,0],[-6,-42],[-34,-4],[-61,-13],[-108,-17],[-95,-7],[-111,21],[-82,24],[-144,52],[-361,133],[-134,10],[-160,-8],[-97,-12],[-172,6],[-383,14],[-164,-18],[-196,-61],[-71,-42],[-174,-110],[-324,-222]],[[9799,22977,0],[38,-23],[59,-36],[109,-29],[402,122],[101,25],[196,19],[100,25],[54,63],[91,149],[44,22],[145,25],[70,-4],[212,-61],[380,-86],[73,-30],[75,-31],[63,10],[335,-115],[153,-131],[147,-81],[181,-30],[40,-5],[308,63],[66,-9],[80,-38],[86,-43],[110,-35],[111,-24],[97,-32],[546,-244],[124,-136],[51,-29],[113,-33],[52,-38],[237,-184],[336,-270],[151,-157]],[[18106,21369,0],[-14,-1033],[0,-41],[35,10],[62,19],[53,25],[19,12],[145,124],[66,42],[184,-932]],[[18656,19595,0],[9,-46],[-20,5],[-57,6],[-59,-20],[-32,-54],[-8,-162],[24,-112],[-31,-29],[-606,-609],[185,-89],[16,-12],[96,-96],[79,-143],[23,-101],[-151,-383],[-154,-293],[-191,-420],[-3,-61],[41,-96],[-38,-19]],[[17779,16861,0],[-724,-400],[-667,-369],[-53,-8],[-1059,-132],[-107,50],[-83,36],[-98,-25],[-68,-34],[-108,-88],[-127,-95],[-99,-55],[-80,-9],[-165,52],[-248,169],[-61,70],[-130,428],[-10,21],[-43,54],[-40,40],[-86,37],[-405,125],[-236,96],[-73,40],[-142,-67],[-46,-20]],[[15335,21566,0],[84,-60],[202,-20],[129,-2],[88,53],[73,128],[43,33],[212,57],[205,25],[134,-9]],[[16505,21771,0],[990,-182],[178,-68],[77,-50],[169,-174],[75,-22],[19,-2],[44,36],[49,60]],[[22838,20307,0],[-119,-37],[-231,-24],[-65,-12],[-317,-53],[-25,-10],[-62,-36],[-384,-214],[-698,-284],[-499,-315],[-205,-120],[-284,-126],[-340,-77],[-221,-40],[-186,25],[-115,40],[-118,87],[-111,145],[-92,271],[-75,58],[-35,10]],[[18106,21369,0],[116,158],[141,87],[222,212],[264,156],[165,84],[275,107],[81,145],[-29,95],[-78,221],[-21,35],[-95,134],[-30,65],[0,62],[57,29],[286,132],[319,138],[111,22],[66,18],[13,52],[-6,58],[46,264],[39,89],[88,165],[208,286],[127,130],[49,24],[78,42],[41,43],[12,11],[47,66],[85,145],[171,116],[194,109],[103,13],[78,-5],[170,-41],[292,-120],[46,-118],[41,-56]],[[21878,24542,0],[42,-63],[136,-193],[356,-506],[751,-1070],[54,-71],[220,-1705],[36,-288],[-476,-257],[-159,-82]],[[27999,24600,0],[-119,-460],[-126,-484],[-11,-41],[94,-470],[80,-412],[12,-45]],[[27929,22688,0],[671,-1335],[90,-11],[25,-69],[42,-254],[39,-48],[111,-32],[47,-16],[27,-8],[15,-6],[-7,-52],[5,-220],[-11,-214],[-22,-103],[-17,-54],[-20,-48],[-29,-55],[-26,-37],[-31,-36],[-52,-48],[-38,-19],[-37,-12],[-36,-8],[-37,-3],[-41,4],[-54,11],[-72,41],[-36,46],[-37,55],[-54,111],[-790,-940],[19,-64],[-31,-13],[-159,-609],[18,-54]],[[27401,18588,0],[-222,115],[-61,51],[-70,110],[-130,323],[-139,302],[-81,147],[-36,67],[-25,26],[-31,32],[-307,309],[-79,75],[-114,111],[-120,35],[-214,19],[-226,3],[-346,58],[-176,11],[-110,-12]],[[24914,20370,0],[-191,-85],[-340,-235],[-80,-82],[-157,-131],[-97,-46],[-158,-61],[-100,-38],[-112,-122],[-186,-108],[-46,-58],[-174,-147],[-144,-79],[-203,-62],[448,986],[-22,81],[-102,5],[-353,101],[-59,18]],[[21878,24542,0],[45,-32],[57,-71],[37,-5],[76,-33],[63,39],[64,11],[18,5],[29,20],[69,49],[315,-22],[334,-8],[233,-83],[164,-96],[162,-58],[70,-47],[301,-370],[74,-13],[104,-122],[301,0],[236,519],[99,99],[124,-42],[298,42],[35,-58],[122,-31],[59,-307],[384,-246],[105,-29],[101,-72],[32,3],[108,-129],[-3,-64],[159,-152],[225,-172],[110,-50],[184,488],[41,135],[9,86],[-15,124],[-33,123],[54,133],[111,127],[34,30],[136,68],[387,102],[221,-14],[282,181]],[[38959,18757,0],[-137,-246],[-242,-98],[-273,112],[-325,211],[-423,143],[-139,-172],[15,-155],[-514,-170],[-665,-223],[-49,-17],[-122,-42],[-49,-34],[-75,-44],[-98,-49],[-97,-43],[-52,-19],[-46,-15],[-67,-9],[-23,0],[-42,6],[-48,33],[-39,33],[-81,65],[-315,265],[-159,141],[-118,108],[-34,45]],[[34742,18583,0],[-40,190],[-15,169],[-2,52],[9,410],[-79,322],[-101,112],[-60,154],[-19,90],[-12,62],[-72,331],[-9,244],[105,303],[92,-72],[36,-27],[44,94],[41,65],[259,249],[38,72],[70,421],[90,168],[24,47],[-25,73],[-44,191]],[[35072,22303,0],[21,3],[45,-5]],[[35138,22301,0],[127,-24],[82,-8],[91,-3]],[[35438,22266,0],[137,3],[27,-4]],[[35602,22265,0],[48,-16],[121,-56]],[[35771,22193,0],[44,-20]],[[35815,22173,0],[214,-92],[191,-78],[80,-38]],[[36300,21965,0],[89,-50],[66,-27]],[[36455,21888,0],[90,-19]],[[36545,21869,0],[92,-4],[120,-1],[92,2]],[[36849,21866,0],[90,2]],[[36939,21868,0],[43,5],[23,6],[22,7]],[[37027,21886,0],[26,13],[21,18]],[[37074,21917,0],[33,36],[17,24]],[[37124,21977,0],[24,47],[16,45],[23,48],[27,44]],[[37214,22161,0],[19,23],[26,28]],[[37259,22212,0],[190,179]],[[37449,22391,0],[98,97],[42,46],[73,86]],[[37662,22620,0],[32,35],[26,20],[21,12]],[[37741,22687,0],[51,22]],[[37792,22709,0],[98,36],[29,2],[23,-5]],[[37942,22742,0],[56,-13]],[[37998,22729,0],[82,-23],[64,-10]],[[38144,22696,0],[59,-4]],[[38203,22692,0],[132,-8],[92,-4],[77,-2]],[[38504,22678,0],[41,6],[36,8],[70,-203]],[[38651,22489,0],[12,-36],[50,0],[258,-3]],[[38971,22450,0],[132,237],[43,73]],[[39146,22760,0],[100,6],[283,16],[146,8],[281,16],[71,4],[11,0],[34,3]],[[40072,22813,0],[216,12]],[[40288,22825,0],[13,0],[21,2],[24,1],[31,0],[102,1],[18,23],[69,230],[45,67],[121,24],[29,16],[16,31],[637,-27],[44,-1],[11,-11],[145,-50]],[[41614,23131,0],[42,-112],[162,-614],[119,-239],[93,-171],[100,-184],[79,-114],[79,-68],[35,-28],[23,-13],[43,-22],[63,-14],[56,6],[114,50],[125,57],[169,74],[22,-35],[25,-37],[-65,-81],[-277,-283],[-105,-93],[-73,-38],[-68,-13],[-211,22],[-354,130],[-129,103],[-121,-10],[-103,-172],[-162,-225],[-62,-87],[-31,-66],[-11,-39],[-30,-104],[-401,-191],[-413,-41],[-293,2],[-180,78],[-166,-636],[-283,-312],[-99,-310],[-56,-128],[-137,-204],[-86,-144],[-88,-68]],[[43689,22849,0],[39,-348]],[[43728,22501,0],[21,-208],[5,-50],[-63,-61]],[[43691,22182,0],[-34,-34],[-116,-109],[-34,-32]],[[43507,22007,0],[-19,-18],[-7,-335],[-3,-182],[-3,-224]],[[43475,21248,0],[-6,-282],[-5,-256],[-2,-69]],[[43462,20641,0],[-3,-156],[45,-31]],[[43504,20454,0],[-417,-254],[-242,-244],[-39,-33],[-134,-111],[-26,-19],[-485,-606],[-20,-18],[9,-49],[13,-64],[63,-310],[10,-49],[110,-533],[6,-41],[99,-495]],[[42451,17628,0],[-21,20],[-98,56],[-168,66],[-102,23],[-90,14],[-116,12],[-305,4],[-191,-11],[-131,-13],[-59,-13],[-48,-19],[-102,-61],[-324,-272],[-160,-155],[-104,-120],[-53,-57],[-100,-127],[-84,-121]],[[40195,16854,0],[-120,60],[-378,195],[-14,8],[29,47],[72,121],[-62,67],[-116,107],[-141,60],[-39,7],[-24,3],[-107,-185],[-81,-94],[-132,-110],[-81,-92],[-46,31],[-44,31],[-60,38],[-287,159],[63,73],[-107,69],[-132,493],[-11,41],[99,-8],[65,15],[191,82],[170,103],[137,108],[220,255],[-300,219]],[[41614,23131,0],[237,62],[225,55],[231,60],[613,154],[231,-98],[-26,-30],[97,-253],[18,-83],[51,-250],[220,57],[42,12],[136,32]],[[46460,15992,0],[0,-38],[-1148,104],[-161,19],[-163,27],[-235,46],[-429,103],[-693,126],[-201,103],[-129,76],[-776,1012],[-74,58]],[[43504,20454,0],[378,-287],[552,-607],[29,-34],[62,-67],[258,-283],[45,-49]],[[44828,19127,0],[213,-239],[165,-186],[56,-63],[338,-380],[155,-173],[311,-350],[299,-387],[75,-97],[40,-59]],[[46480,17193,0],[-2,-103]],[[46478,17090,0],[-2,-68]],[[46476,17022,0],[0,-14],[0,-32]],[[46476,16976,0],[0,-64],[1,-87]],[[46477,16825,0],[-7,-57],[1,-35],[5,-41]],[[46476,16692,0],[-16,-598],[0,-102]],[[40195,16854,0],[-324,-557],[-414,-746],[-116,-224],[-112,-268],[-127,-314],[-50,-99],[-94,-146],[-171,-235],[-110,-134],[-116,-130],[-109,-117],[-113,-98],[-161,-125],[-125,-78],[-130,-65],[-210,-91],[-79,-35],[-99,-41],[-134,-45],[-80,-25],[-72,-16],[-174,-41],[-52,-14],[-85,-27],[-410,-121],[-53,-18],[-304,-94],[-86,-34],[-126,-64],[-39,-27],[-149,-123],[-329,-300],[-784,-743],[-42,-46]],[[34616,11613,0],[-192,184],[-32,28],[-261,248],[-45,43],[-47,43],[-35,33],[-436,410],[-95,210],[-50,162],[-34,115],[-43,420],[163,509],[-64,328],[4,272],[222,228],[145,265],[-73,176]],[[33743,15287,0],[57,295],[-10,224],[-112,116],[-292,171],[-11,446],[-2,46],[-65,237],[-77,111],[-31,43],[-18,27],[13,12],[29,28],[38,53],[32,68],[17,80],[1,65],[-4,68],[-12,108],[-22,100],[-47,195],[-17,38],[-59,89],[-42,52],[-113,134]],[[32996,18093,0],[-60,73],[-35,45],[-39,68],[-31,92],[-8,63],[2,44],[10,43],[11,28],[61,109],[35,42],[62,60],[151,70],[267,94],[113,43],[60,26],[154,85],[141,86],[228,143],[29,16],[52,12],[45,4],[45,-6],[41,-12],[65,-53],[43,-60],[43,-98],[70,-138],[31,-82],[46,-119],[26,-61],[28,-51],[60,-76]],[[33743,15287,0],[-185,-21],[-206,-249],[-282,-402],[-321,-86],[-319,29],[-353,431],[-52,76],[-230,331],[-333,-310],[-332,-236],[304,-366],[140,-197],[294,-415],[201,-267],[154,-205],[-480,-338],[-361,-37],[-521,-51]],[[30861,12974,0],[-8,46],[-30,177],[-10,179],[-44,43],[-45,45],[-72,76],[-73,80],[-168,-7],[-92,-3],[-66,-3]],[[30253,13607,0],[-29,297],[-4,42]],[[30220,13946,0],[-742,952],[-74,96],[-316,411]],[[29088,15405,0],[-38,48],[-30,38],[-38,21],[-82,43],[53,414],[8,251],[77,571],[83,427],[11,104],[20,529],[-15,86],[16,591]],[[29153,18528,0],[882,131],[44,4],[9,0],[299,-95],[1132,85],[185,-44],[712,-164],[291,-214],[289,-138]],[[25497,19292,0],[212,26]],[[25709,19318,0],[70,-49],[14,-14]],[[25793,19255,0],[56,-73],[23,-239]],[[25872,18943,0],[32,-116],[131,-267],[85,-127],[-16,-163],[-3,-86]],[[26101,18184,0],[44,-191],[66,-147]],[[26211,17846,0],[169,-342],[143,-155],[105,-82]],[[26628,17267,0],[132,-74]],[[26760,17193,0],[231,-55],[228,-31]],[[27219,17107,0],[257,13],[111,16]],[[27587,17136,0],[264,74]],[[27851,17210,0],[105,-84],[-21,-329]],[[27935,16797,0],[9,-139],[-44,-482],[-16,-42],[-60,-177],[-131,-263],[-242,-308],[-85,-163],[-44,-100],[-71,-162],[-91,-207],[14,-79],[-27,-52],[-116,-212],[-280,-308],[-237,-235],[-401,-448],[-2,-233]],[[26111,13187,0],[-843,-737],[-201,205],[-253,-9],[-320,-55],[-499,-83],[-141,-21],[7,607],[167,9],[360,119],[408,236],[160,89],[318,335],[81,105],[-101,1096],[-76,939],[-56,398],[-282,746],[-62,67]],[[24778,17233,0],[-25,88],[-95,118],[-119,109],[-25,142],[-89,889],[-3,45],[108,122],[112,194],[137,194],[130,246],[100,42]],[[25009,19422,0],[158,-103]],[[25167,19319,0],[67,-18],[263,-9]],[[24778,17233,0],[16,-65],[-16,-135],[90,-624],[34,-160],[78,-124],[17,-63],[23,-122],[-7,-148],[-23,-193],[-11,-168],[12,-367],[-48,-2],[-350,-17],[-44,-4],[-59,6],[-434,68],[182,583],[-513,16],[-260,-110],[1,-1179],[501,-73],[-38,-146],[-104,19],[-46,-195],[-492,162],[-132,-34],[-56,-2],[-29,230],[-120,395],[-202,515],[-1440,214],[-36,6],[-105,-90],[-200,-173],[-7,-7],[-58,-20],[-58,-20],[-274,-93],[-45,-15],[-3004,-910],[-181,195],[-192,233]],[[17148,14616,0],[-25,59],[173,549],[501,1612],[-18,25]],[[24914,20370,0],[5,-43],[90,-905]],[[17148,14616,0],[-41,-14],[-318,-138],[-35,-25],[-15,-10],[-38,-25],[-129,-86],[-62,-32],[298,-729],[20,-55],[-139,58],[-173,41],[-69,-25],[-98,-47],[-75,-71],[-123,-162],[-102,-162],[-84,-194],[-64,-317],[-56,-335],[-39,-43],[-127,-3],[-227,205],[-76,134],[25,258],[-6,83],[-8,150],[-16,152],[-29,104],[-32,90],[-123,241],[-63,94],[-63,81],[-62,54],[-352,270],[-64,34],[-105,44],[-110,88],[-62,109],[-38,30],[-271,72],[-205,88],[-261,166],[-257,194],[-410,249],[-321,178],[-156,80],[-172,81],[-91,29],[-94,10],[-127,-13],[-80,-24],[-187,-78],[-68,-55],[-43,-53],[-71,-127],[-66,-74],[-398,-220],[-35,-35],[-114,-242],[-26,-23],[-94,-41],[-130,-14],[-65,-11]],[[27401,18588,0],[137,-45],[212,-26],[324,-84],[231,-28],[221,32],[189,62],[343,141],[62,-11],[33,-100],[0,-1]],[[29088,15405,0],[316,-410],[74,-96],[742,-952],[0,-1]],[[30253,13607,0],[-638,109],[-157,-16],[-371,-34],[-380,12],[-258,-92],[-479,31],[-276,-63],[-407,-104],[-253,-237],[-167,-123],[-452,-127],[-304,223],[0,1]],[[27935,16797,0],[21,328],[-105,85]],[[27587,17136,0],[-111,-17],[-257,-12]],[[27219,17107,0],[-228,30],[-231,56]],[[26628,17267,0],[-105,81],[-142,156],[-170,342]],[[26211,17846,0],[-66,146],[-44,192]],[[25872,18943,0],[-23,238],[-56,74]],[[25793,19255,0],[-14,13],[-70,50]],[[25497,19292,0],[-263,8],[-67,19]],[[34616,11613,0],[-332,-343],[-100,-102],[-179,311],[-25,39],[-107,178],[-83,100],[-29,34],[-14,18],[-151,-88],[-122,-51],[-71,-24],[-108,-26],[-63,-9],[-117,-11],[-118,-23],[-121,-35],[-56,-23],[-64,-31],[-113,-67],[-45,-31],[-37,41],[-41,46],[-810,121],[-747,116],[-34,343],[-17,567],[-26,158],[-25,153]],[[75400,8585,0],[-73,-132],[-41,-71],[-57,-100],[-65,32],[-98,48],[-112,52],[-112,57],[-33,14],[-43,22],[-60,28],[-33,-18],[-93,-54],[-99,-54],[-93,-54],[-81,-48],[-67,88],[-59,88],[-33,55],[-26,35],[-51,75],[-12,-7],[-68,-40],[-28,-48],[-38,-67],[-105,-181],[-53,-89]],[[73767,8216,0],[-71,29],[-55,19],[-27,7],[-24,5],[-54,10],[-23,2],[-29,3],[-47,0],[-42,-2],[-12,-1],[-9,0],[-39,-6],[-89,57],[-92,55],[-92,57],[-48,37],[-37,0],[-72,1],[-82,1],[35,45],[-143,191],[-58,-80],[-95,-123],[-22,-25],[-31,2]],[[72509,8500,0],[13,33],[4,24],[33,79],[28,72],[44,113],[26,7],[10,1],[25,8],[37,61],[59,44],[44,34],[38,40],[56,60],[15,39],[25,64],[40,104],[81,208],[46,115],[46,99],[-71,244],[-4,14],[53,1],[4,-2],[55,-15],[75,167],[-29,15],[-33,95],[-25,64],[-35,86],[-24,53],[-22,57],[-35,61],[-44,75],[-33,63],[-84,132],[23,55],[34,-9],[35,-14],[47,-9],[110,-18],[38,-2],[19,-2],[113,-36],[87,-5],[52,-5],[41,5],[12,-7],[33,-1],[84,-21],[9,-7],[57,-21],[18,-9],[75,-45],[20,-14],[42,-37],[17,-18],[89,-93],[10,-23],[18,-27],[130,-84],[67,-31],[49,-29],[40,-23],[111,-73],[54,-39],[29,-13],[16,-8],[36,-13],[26,-6],[58,-22],[29,-5],[60,22],[95,-5],[42,7],[87,-13],[9,-15],[8,-7],[6,-11],[27,-12],[121,-38],[71,-22],[110,-33],[94,-23],[-7,-124],[-16,-93],[-13,-65],[-4,-88],[-9,-213],[-9,-157],[-1,-21],[-3,-137],[-5,-21],[-10,-42],[1,-83],[22,-58],[67,-66],[61,-34],[-15,-25],[-38,-63],[-24,-35],[18,-46]],[[73767,8216,0],[30,-16],[18,-10],[27,-18],[123,-82],[-77,-99],[-28,18],[-56,38],[-16,-22],[-39,-48],[90,-61],[102,-71],[-71,-93],[-10,-12],[-26,-34],[-40,-47],[95,-63],[-43,-53],[4,-2],[13,-9],[35,-26],[38,-31],[31,-28],[23,-22],[24,-23],[28,-25],[43,-52],[14,-19],[23,-32],[24,-38],[19,-33],[34,-61],[-17,-7],[-20,-8],[-44,-22],[-64,-30],[-50,-22],[28,-63],[13,-30],[12,-38]],[[74057,6922,0],[2,-4],[13,-35]],[[74072,6883,0],[9,-27],[27,-72],[24,-68],[-12,0],[-30,-1],[-32,-3],[-34,-6],[-29,-4],[-25,-6],[-29,-9],[-25,-8],[-35,-13],[-33,-15],[-33,-18],[-16,-9],[-23,-14],[-29,-18],[-41,-33],[-16,-15],[-25,-24],[-57,-55],[-64,-58]],[[73544,6407,0],[22,-23],[63,-65]],[[73629,6319,0],[59,-65],[10,-10],[32,-32],[19,-19],[55,-56],[76,-79],[28,-27],[44,-49]],[[73952,5982,0],[-18,-27],[-17,-31],[-14,-27],[-12,-36],[-7,-30],[-130,31],[10,69],[-140,25]],[[73624,5956,0],[9,43],[-9,-43]],[[73624,5956,0],[-89,24],[11,48],[10,31],[17,25]],[[73573,6084,0],[-99,45]],[[73474,6129,0],[19,41],[-82,61],[-88,-95],[-79,-76],[-9,-10],[-70,-63],[-46,-46],[-32,-30],[-41,-37],[-39,-35],[-46,-42],[-34,-31],[-30,-29],[-49,-47],[-17,-15],[-16,-14],[-18,-19],[-12,-20],[-10,-16],[-4,-14],[-22,33]],[[72749,5625,0],[12,22],[-12,-22]],[[72749,5625,0],[-24,18],[-44,32],[19,28],[12,14],[16,18],[-131,115],[39,38],[77,76],[77,75],[78,76],[4,4],[-22,13],[-61,36],[-19,-19],[-47,-46],[-77,-77],[-63,-61],[-98,84],[-11,-11],[-56,-57],[-77,-76],[-77,-76]],[[72264,5829,0],[-77,-75]],[[72187,5754,0],[-77,-76],[-54,129],[-53,-64],[-16,-21],[-133,84],[-110,48],[-20,9],[-97,25],[-42,16],[-78,16],[-79,39],[-40,-49],[-115,-41],[-17,-13],[-27,-46],[3,-19],[-26,-50],[-15,2],[-35,1],[-75,-146],[-49,-94],[-79,-32],[-24,-17],[-25,-25],[-20,-27],[-16,-26],[-62,9]],[[70806,5386,0],[0,35],[-7,91],[32,202],[-25,132],[-22,2],[-51,4],[-30,21],[-66,-121],[-11,-28],[-8,-45],[7,-44],[27,-55],[-25,5],[-35,6],[-69,47],[-47,57],[-36,21],[-13,14],[-20,36],[-28,43],[-11,10],[-118,-19],[-28,5],[-8,31],[74,32],[26,10],[41,57],[-12,61],[58,12],[-13,59],[-41,44],[13,22],[-113,69],[-15,31],[99,25],[33,-50],[31,-11],[73,30],[17,-45],[14,-12],[19,-19],[51,-33],[89,-109],[31,-25],[86,115],[115,153],[25,-13],[22,-42],[187,-69],[65,2],[56,0],[0,52],[0,40],[12,36],[12,36],[-2,23],[10,30],[-78,15],[7,49],[47,151],[76,75],[-129,121],[-79,74],[-81,71],[-15,15],[-17,34],[-34,41],[-4,14],[-2,14],[-6,23],[-6,10],[-11,5],[-27,5],[-22,19],[-25,65],[-10,83],[-8,10],[-67,-14],[-36,-3],[-61,-101],[-42,-22],[-52,-31],[-51,48],[-15,146],[20,25],[8,37],[-23,11],[-13,44],[-37,40],[1,135],[-4,41],[-17,50],[0,59],[15,48],[-13,50],[-17,30],[-21,16],[-30,21],[-32,30],[-52,17],[65,69],[40,20],[96,78],[79,59],[36,8],[27,7],[79,48],[82,15],[31,9],[32,11],[68,19],[93,72],[29,29],[134,83],[30,-25],[65,-48],[69,-40],[99,-71],[45,-33],[53,-33],[60,-58],[44,-33],[58,-24],[104,-48],[51,-26],[17,-5],[89,-42],[29,-14],[94,-43],[33,-16],[65,-34],[14,40],[12,35],[12,43],[11,42],[32,97],[22,56],[15,28],[14,22],[14,26],[25,23],[16,29],[16,25],[14,20],[22,35],[18,8],[8,26],[12,31],[9,39],[13,23]],[[73338,7251,0],[-122,-118],[-12,-9],[-9,-7],[-57,-54],[-14,-15],[20,-33],[14,-24],[41,-70],[12,-11],[78,-71],[55,-16],[91,-6],[83,-13],[13,-3],[41,-15],[13,-2],[13,0],[19,4],[57,25],[93,16],[57,2],[63,10],[41,7],[140,17],[-32,50],[-6,7],[-11,20],[-10,17],[-15,25],[-16,27],[-27,39],[-30,42],[-20,10],[-12,7],[-172,61],[-141,44],[-111,45],[-45,20],[-38,15],[-44,-43]],[[75400,8585,0],[58,-45],[25,-21],[23,-19],[124,-107],[82,-69],[82,-72],[82,-70],[84,-71],[82,-71],[80,-69],[165,-138],[80,-67],[131,-114],[114,-90],[86,-69],[83,-68],[83,-65],[14,-10],[41,-31],[28,-24],[65,-52],[102,-82],[85,-65],[171,-129],[60,-45],[24,-19],[42,-33],[36,-28],[8,-5],[14,-11],[175,-135]],[[77729,6691,0],[-89,38],[-103,33],[-105,29],[-149,32],[-107,24],[-4,2],[-93,9],[-93,12],[-42,5],[-6,-47],[-14,-74]],[[76924,6754,0],[-20,-84],[-9,-37]],[[76895,6633,0],[-19,-61],[-17,-50]],[[76859,6522,0],[-29,-99]],[[76830,6423,0],[-29,-87],[-32,-85]],[[76769,6251,0],[-30,-67]],[[76739,6184,0],[-49,20],[-90,36],[-23,-37],[-31,-36],[-47,-33],[-29,-16],[-33,-11],[-34,-9],[-38,-9],[-35,-9],[-48,-17],[-37,-15],[-32,-17],[-12,-6],[-18,-13],[-48,-44]],[[76135,5968,0],[-20,-23],[-26,-26]],[[76089,5919,0],[-43,-41],[-33,-39],[-25,-33]],[[75988,5806,0],[-57,-69]],[[75931,5737,0],[-61,-75],[-17,-20],[-109,-78]],[[75744,5564,0],[-51,66]],[[75693,5630,0],[-30,26],[27,27],[21,23],[31,39],[12,18],[17,29],[19,35],[7,16],[14,46],[9,34],[-35,9],[-50,17],[-47,13],[6,34],[1,37],[-72,14],[-65,9],[-64,9],[4,37],[2,39],[-116,17],[-9,-67],[-6,-30],[-9,-30],[-11,-28],[-4,-11],[-10,-17],[-8,-13]],[[75327,5962,0],[-5,-8],[-3,-5]],[[75319,5949,0],[-13,-15],[-11,-15]],[[75295,5919,0],[-16,-16]],[[75279,5903,0],[-14,-13],[-18,-16],[-16,-10],[-18,-10],[-22,-12],[-27,-11],[-24,-10],[-26,-7],[-29,-6],[-20,-2],[-26,-3],[-16,-3],[-20,-1],[-10,1]],[[74993,5800,0],[-10,0],[-10,0]],[[74973,5800,0],[-31,2],[-30,2],[-12,1],[-48,7],[-43,4],[-81,5],[-16,0],[-110,8],[-32,2],[-77,5],[-27,0],[-11,-1]],[[74455,5835,0],[-1,0],[-7,0]],[[74447,5835,0],[-3,-1],[-17,-2]],[[74427,5832,0],[-14,-4],[-8,-2]],[[74405,5826,0],[-19,-6],[-31,-16],[-26,-18],[-16,-12],[-15,-15],[-18,-20],[-27,-44],[-11,-32],[-70,75],[-59,68],[-31,35],[-80,84],[-50,57]],[[73629,6319,0],[-57,58],[-28,30]],[[74072,6883,0],[-15,39]],[[73491,2729,0],[-23,3],[-27,3],[-24,0],[-27,5],[-54,11],[-68,12],[-191,71],[-140,108],[-224,263],[-69,51],[-52,42],[-32,43],[-8,12],[-23,36],[-59,42],[-76,72],[-29,17],[-18,15],[-41,32],[-198,50],[-25,0],[-31,1],[-27,-5],[-94,-19],[-53,-34],[-41,-37],[-19,-78],[0,-9],[0,-57],[3,-117],[0,-92],[26,-83],[5,-45],[-101,-51],[-36,-18],[-80,-80],[-74,-92],[-82,-80],[-18,12],[-23,17],[-53,13],[-19,4],[-100,1],[-18,0],[-10,7],[-19,-9],[-11,13],[-33,-2],[-48,-14],[-121,-34],[-35,-11],[-42,36],[-172,24],[-68,271],[-12,47],[59,35],[52,35],[183,107],[43,26],[-112,331],[16,83],[-25,156],[-34,2],[-18,115],[-10,41],[-47,141],[-56,150],[4,95],[4,70],[17,64],[17,64],[59,222],[-14,235],[5,168],[-12,1],[-2,149]],[[72187,5754,0],[30,28],[47,47]],[[73474,6129,0],[34,-16],[65,-29]],[[73624,5956,0],[-74,-292],[-8,-30],[-11,-36],[-22,-48],[-12,-22],[-24,-39],[-31,-33],[-33,-31],[-38,-25],[-42,-21],[-43,-15],[-6,-1],[49,-181],[31,9],[14,-52],[76,21],[65,17],[101,27],[18,-67],[-274,-71],[45,-165],[17,-65],[455,119],[-159,-111],[-37,-30],[-11,-3],[-10,-6],[-7,-21],[-4,-16],[-11,-9],[123,-86],[-56,-83],[-21,-18],[-19,-18],[-12,-12],[-149,-101],[62,-78],[32,-110],[33,-96],[28,-74],[9,-23],[11,-36],[11,-29],[-134,-84],[-193,-96],[96,-133],[20,-84],[-18,-36],[3,-25],[19,-30],[32,-11],[32,1],[44,-94],[-69,-33],[-33,-21],[-22,-26],[-4,-30],[14,-160],[2,-27],[14,-148],[3,-32],[19,-38],[23,-16],[18,-2],[5,-48],[6,-61],[-32,-2],[-44,-30]],[[75693,5630,0],[29,-38],[22,-28]],[[75744,5564,0],[69,-60],[98,-76],[126,-140],[156,-169],[64,-73]],[[76257,5046,0],[102,-110],[-538,-344],[-81,127],[-23,-14],[81,-127],[-95,-61],[81,-121],[57,-136],[26,-137],[12,3],[22,1],[27,-5],[32,-21],[38,-55],[25,-23],[51,-40],[62,-34],[42,-9],[34,-7],[21,-1],[75,-2],[15,0],[23,0]],[[76346,3930,0],[44,0],[61,2]],[[76451,3932,0],[87,1],[15,-2],[17,1],[21,0],[22,0],[18,-2],[24,-1],[31,-10],[17,-1],[-10,-116],[-5,-76],[-2,-15],[-2,-42],[-5,-72],[-1,-12],[0,-3],[-4,-73],[-4,-30],[-1,-73],[-42,-8],[-48,-23],[-27,-19],[-14,-15],[-26,-37],[-19,-50],[-107,-281],[-32,-84],[-8,-20],[-6,-10],[-3,-8],[-18,-40],[-21,-41],[-43,-76]],[[76255,2694,0],[-97,39],[-56,25],[-43,17],[-98,43],[-70,35],[-23,11],[-35,15],[-74,32],[-188,79],[-98,43],[-93,35],[-232,-163],[-68,108],[-31,-1],[-168,-30],[-264,-70],[-190,-38],[-102,-23],[-121,-28],[-160,-41],[-172,-33],[-144,-26],[-237,6]],[[74405,5826,0],[22,6]],[[74427,5832,0],[20,3]],[[74447,5835,0],[8,0]],[[74973,5800,0],[20,0]],[[75279,5903,0],[12,12],[4,4]],[[75319,5949,0],[8,13]],[[79647,4345,0],[-108,-232],[-53,-114],[-28,150]],[[79458,4149,0],[-1,9],[0,-46]],[[79457,4112,0],[2,-70],[-53,1],[-25,0],[-185,92]],[[79196,4135,0],[-1,214],[0,150],[0,149],[0,13]],[[79195,4661,0],[-75,84],[-3,1],[1,-149],[0,-26],[-155,2],[0,19],[-2,167],[-2,122],[-26,21],[-29,18],[-41,26],[-67,43],[-40,24],[0,-42],[-68,-1],[-30,-61],[-43,26],[10,25],[-68,38],[-40,33]],[[78517,5031,0],[-37,64]],[[78480,5095,0],[-91,-65],[-70,15],[-25,-109],[-23,-82],[0,51],[-16,29],[-30,24],[-25,13],[-62,21],[-100,20],[-63,12],[-305,55],[-94,17],[-213,40],[-168,32],[-22,0],[-21,-8],[-52,-34],[-201,35],[-32,43],[-18,17],[-24,7],[-16,2],[-66,-1],[-70,-12],[-108,-17],[-130,-42],[-99,-54],[-65,-47],[-14,-11]],[[75931,5737,0],[24,30],[33,39]],[[76089,5919,0],[46,49]],[[76739,6184,0],[22,51],[8,16]],[[76830,6423,0],[17,57],[12,42]],[[76895,6633,0],[5,20],[24,101]],[[77729,6691,0],[324,-243],[239,-169],[310,-269],[23,-20],[98,-71],[25,-18],[68,-61],[75,-68],[64,-59],[59,-45],[75,-76],[82,-91],[114,-149],[78,-129],[142,-393],[50,-147],[75,-270],[17,-68]],[[78480,5095,0],[12,-24],[25,-40]],[[79195,4661,0],[1,-526]],[[79457,4112,0],[1,37]],[[79647,4345,0],[69,-266],[9,-50],[38,-184],[26,-130],[19,-223],[-32,-206],[26,-226],[3,-217],[6,-84],[7,-89],[8,-124],[10,-136],[-109,0]],[[79727,2410,0],[-30,35],[-444,-21],[-123,-4],[-159,1],[4,-10],[11,-41],[10,-55],[-12,-4],[-184,-70],[-72,185],[-59,1],[-13,0],[-97,-21],[7,-14],[27,-71],[-179,-62],[-46,79],[-11,22],[-413,-93],[-192,-47],[-76,183],[-34,81],[-148,0],[-51,-148],[-16,-51],[-29,-80]],[[77398,2205,0],[-16,7],[-67,30],[-553,238],[-507,214]],[[76451,3932,0],[-60,-2],[-45,0]],[[79727,2410,0],[94,-159],[-48,-191],[-50,-65],[-127,-6],[-40,-246],[67,-251],[37,-191],[48,-5],[-38,-317],[-113,-202],[-41,-23],[-72,-217],[-39,-13],[-6,-47],[-23,-118],[-15,-76],[-35,-99],[-16,-42],[-72,-7],[-73,-50],[-85,-1],[-68,-70],[-46,-7],[-52,-7],[-28,26],[-284,67],[-39,215],[-80,104],[-58,-3],[-96,6],[-73,7],[-169,143],[-19,120],[-90,133],[-40,190],[-10,77],[8,170],[-52,100],[-24,102],[-66,90],[-75,139],[-84,172],[-85,115],[-57,58],[-89,154],[-6,20]],[[15212,24004,0],[119,-107],[33,-99],[120,-160],[269,-186],[427,-246],[73,-29],[65,-17],[113,51],[73,-1402],[1,-38]],[[33134,27637,0],[1252,-1106],[-22,-56],[-154,-390],[-15,-41],[145,-519],[-116,-156],[-107,-263],[-415,-1040],[-436,5],[65,-505],[105,-808],[-227,-234]],[[33209,22524,0],[-39,189],[98,183],[-36,100],[-99,20],[-255,184],[-167,42],[-82,288],[-339,-116],[139,-234],[-81,-132],[-50,-136],[-229,-194],[-75,-193],[-217,-55],[-226,100],[12,125],[-22,187],[-109,171],[-149,20],[-173,-18],[-1407,364],[-73,1],[-205,53],[-98,7],[-208,-64],[-216,-153],[-165,-125],[-194,-72],[-397,-252],[-23,-19],[-195,-107]],[[27999,24600,0],[-219,102],[-140,65],[150,174],[18,120],[-24,34],[-140,152],[44,11],[56,21],[164,32],[64,-3],[109,17],[134,22],[5,87],[55,107],[128,113],[107,81]],[[28510,25735,0],[34,18],[12,6],[22,13],[109,61],[50,31],[71,44],[64,33],[203,105],[288,92],[12,4],[11,7],[123,77],[137,65],[20,9],[14,7],[40,20],[112,49],[223,95],[68,31],[42,18],[162,76],[32,41],[12,15],[102,67],[12,8]],[[30485,26727,0],[-30,42],[-7,9],[-9,9],[40,21]],[[30479,26808,0],[412,129],[14,-2],[32,-4],[78,42],[49,15],[93,40],[205,46]],[[31362,27074,0],[42,18],[48,28],[46,30],[82,61],[8,9],[38,22],[210,113],[182,75],[29,9],[98,23],[122,23],[40,2],[28,-1],[96,26],[46,13],[27,37],[217,18],[124,-4],[151,12],[24,3],[55,22],[17,6],[42,18]],[[34303,27713,0],[185,42],[192,45],[441,202]],[[35121,28002,0],[384,12],[214,6],[134,6]],[[35853,28026,0],[30,2],[38,2]],[[35921,28030,0],[86,-14]],[[36007,28016,0],[62,13],[77,-1],[358,-37],[124,-15]],[[36628,27976,0],[67,-10],[62,-10]],[[36757,27956,0],[127,-24],[35,-6]],[[36919,27926,0],[137,-30],[136,-26],[51,-16]],[[37243,27854,0],[91,-18],[281,33],[42,4]],[[37657,27873,0],[49,9],[4,-14],[56,9]],[[37766,27877,0],[12,-37],[17,-57],[48,6],[24,2],[6,-10]],[[37873,27781,0],[44,11],[42,11],[16,1]],[[37975,27804,0],[23,2],[18,-90],[18,-84],[6,-36]],[[38040,27596,0],[8,-9]],[[38048,27587,0],[13,-19],[-25,-39]],[[38036,27529,0],[-78,-48],[-122,-2],[-20,0]],[[37816,27479,0],[8,-38],[67,-387]],[[37891,27054,0],[26,-108],[25,-107],[9,-64]],[[37951,26775,0],[15,-130]],[[37966,26645,0],[3,-65],[15,-139]],[[37984,26441,0],[65,-131],[-1,-20]],[[38048,26290,0],[20,-36],[41,-74],[15,-27],[15,-52],[41,-142]],[[38180,25959,0],[-40,-21],[-26,-13],[-46,-18],[-27,-9],[-37,-11],[-65,-17],[22,-40],[76,-148],[29,-50],[75,-130],[50,-89],[26,-44],[26,-42],[42,-84],[160,-313],[2,-13],[169,-226],[75,-86],[101,-112],[97,-102],[64,-97],[149,-233]],[[39102,24061,0],[-85,-4],[-130,6],[-8,-55],[-5,-23],[-2,-17],[-43,9],[-315,-30],[-45,-77],[-235,62],[-20,8],[-367,207],[140,-386],[216,-90],[-448,-113],[-63,-9],[-224,-36],[43,-116],[-428,-263],[-30,-17],[129,-177],[-8,-236],[-156,-330],[-309,88],[118,-494],[4,-16],[5,-22],[7,-26],[6,-38]],[[36849,21866,0],[-92,-1],[-121,0],[-91,4]],[[36455,21888,0],[-66,28],[-89,49]],[[36300,21965,0],[-80,39],[-191,78],[-214,91]],[[35771,22193,0],[-121,57],[-48,15]],[[35438,22266,0],[-92,3],[-81,9],[-127,23]],[[35072,22303,0],[-55,-8],[-194,-86],[-510,-126],[-129,-20],[-64,-6],[-407,-8],[-116,99],[-60,50],[-134,114],[-194,212]],[[33134,27637,0],[48,38],[237,201],[101,80],[227,169],[270,85]],[[34017,28210,0],[21,-65]],[[34038,28145,0],[35,-121],[43,-66],[68,-107],[46,-70],[73,-68]],[[44007,24382,0],[112,-408]],[[44119,23974,0],[123,-11]],[[44242,23963,0],[2,-111],[0,-75],[-36,-66],[-64,-82]],[[44144,23629,0],[-33,-54],[-31,-74]],[[44080,23501,0],[-24,-137],[4,-170]],[[44060,23194,0],[44,-181],[16,-63]],[[44120,22950,0],[-431,-101]],[[40288,22825,0],[15,87],[5,330],[2,55],[6,100],[18,100],[11,41]],[[40345,23538,0],[25,88],[-6,4]],[[40364,23630,0],[-32,15]],[[40332,23645,0],[-13,10],[-24,21],[-26,24],[-98,98],[-75,87]],[[40096,23885,0],[-40,49]],[[40056,23934,0],[-53,73],[-78,109],[-49,81],[-8,13]],[[39868,24210,0],[-50,52],[-10,11],[-16,16],[-8,9]],[[39784,24298,0],[-22,24]],[[39762,24322,0],[313,195],[42,59]],[[40117,24576,0],[40,110],[24,55],[57,80]],[[40238,24821,0],[59,53]],[[40297,24874,0],[57,36],[44,21]],[[40398,24931,0],[40,15]],[[40438,24946,0],[65,13],[39,1],[35,-2]],[[40577,24958,0],[67,-9]],[[40644,24949,0],[77,-21],[76,-25],[147,-58]],[[40944,24845,0],[17,-7],[26,-6]],[[40987,24832,0],[52,3],[66,10],[266,45],[77,8]],[[41448,24898,0],[127,2]],[[41575,24900,0],[141,-8],[51,-3]],[[41767,24889,0],[67,-4],[90,-1],[81,9],[47,8],[72,14],[52,13]],[[42176,24928,0],[20,-55],[10,-28],[17,10],[21,6],[19,0],[15,-4],[12,-4],[23,-13],[112,-78],[95,-71],[83,-38],[55,-2],[58,5],[39,9],[74,36],[81,68],[94,101],[145,147],[23,12],[21,8],[23,7],[31,3],[100,-2],[66,0],[98,-17],[131,-63],[217,-151],[-26,-48],[74,-163],[100,-221]],[[40096,23885,0],[75,-86],[98,-98],[26,-24],[24,-21],[13,-11]],[[40364,23630,0],[-2,-9],[-17,-83]],[[40072,22813,0],[-34,-2],[-12,0],[-70,-4],[-281,-16],[-146,-8],[-283,-16],[-100,-7]],[[38971,22450,0],[-258,4],[-50,0],[-12,35]],[[38651,22489,0],[-70,204],[-36,-8],[-41,-7]],[[38504,22678,0],[-78,2],[-91,5],[-132,7]],[[38144,22696,0],[-64,11],[-82,22]],[[37942,22742,0],[-23,6],[-30,-3],[-97,-36]],[[37741,22687,0],[-21,-11],[-26,-20],[-32,-36]],[[37662,22620,0],[-73,-85],[-42,-46],[-98,-98]],[[37259,22212,0],[-26,-27],[-19,-24]],[[37124,21977,0],[-17,-23],[-33,-37]],[[37074,21917,0],[-21,-17],[-26,-14]],[[37027,21886,0],[-22,-6],[-23,-6],[-43,-6]],[[39102,24061,0],[21,-34],[10,-16],[48,1],[49,29],[78,43],[38,20],[38,18],[37,14],[32,12],[107,39],[22,8],[48,18],[63,23],[31,13],[12,8],[48,41]],[[39784,24298,0],[8,-8],[16,-16],[10,-11],[50,-53]],[[39868,24210,0],[8,-12],[49,-81],[77,-109],[54,-74]],[[32038,31797,0],[-38,1]],[[32000,31798,0],[-193,14],[-27,2]],[[31780,31814,0],[-126,7],[-106,10],[-100,9]],[[31448,31840,0],[-29,2],[-30,12]],[[31389,31854,0],[-40,0]],[[31349,31854,0],[-143,0],[-185,22]],[[31021,31876,0],[-126,10],[-65,18],[-44,14],[-73,58],[-47,38]],[[30666,32014,0],[-113,148],[-37,80]],[[30516,32242,0],[-39,89],[-81,62],[-34,26],[-29,23]],[[30333,32442,0],[-46,-137],[-27,-81]],[[30260,32224,0],[-78,-60],[-185,-141]],[[29997,32023,0],[-47,-8]],[[29950,32015,0],[-69,-15]],[[29881,32000,0],[-39,-9],[-24,-6]],[[29818,31985,0],[-58,103],[-52,35]],[[29708,32123,0],[-104,-132],[-24,-34],[-33,-48],[-43,-116]],[[29504,31793,0],[-21,-34],[-20,-39],[60,-129]],[[29523,31591,0],[115,-255]],[[29638,31336,0],[114,-117],[28,-28]],[[29780,31191,0],[19,-106],[48,0],[8,-58],[10,-83],[26,-204]],[[29891,30740,0],[19,-164],[-72,0]],[[29838,30576,0],[-194,-60],[-42,-28]],[[29602,30488,0],[-143,-55],[13,-24]],[[29472,30409,0],[-169,-112],[-29,-25]],[[29274,30272,0],[-77,-75]],[[29197,30197,0],[6,-7],[-68,-75],[-33,-31],[-51,-72],[164,-132]],[[29215,29880,0],[112,-81],[105,-34]],[[29432,29765,0],[20,-5],[107,-25],[41,-9]],[[29600,29726,0],[29,-7],[14,-4]],[[29643,29715,0],[55,-142],[-108,-59]],[[29590,29514,0],[-24,-14]],[[29566,29500,0],[-23,-13]],[[29543,29487,0],[-26,-13]],[[29517,29474,0],[-72,-39],[-83,-35],[-56,-35],[-80,83],[-29,19],[-83,66],[-28,37],[-92,76],[-45,29],[-96,83],[-157,126],[-87,55],[37,35],[28,35],[20,30],[38,-28],[56,60],[-247,248],[-150,198],[-70,145],[23,139],[61,78],[4,12],[39,47],[9,16],[-51,31],[-89,80],[-39,15],[-21,18],[-35,-2],[-69,-11],[-19,80],[-58,176],[-88,95],[-30,45],[-13,7],[-14,3],[-13,10],[-50,21],[-20,28],[-30,2],[-22,6],[-43,23],[-47,40],[-10,65],[-37,39],[-71,33],[-16,-26],[-37,-114],[5,-35],[-7,-40],[-23,-21],[-12,-9],[-61,-25],[-49,-26],[-24,-5],[-73,-3],[-38,-7],[-2,-17],[-65,-30],[-17,-26],[-172,-111],[-132,160],[3,15],[-10,108],[-21,211],[-183,177]],[[26654,31934,0],[-105,379],[-26,183],[-7,112],[4,67],[12,68],[26,91],[17,54],[45,91],[60,102],[40,53],[109,116],[125,92],[60,34],[114,56],[92,36],[69,19],[131,29],[259,45],[-14,87],[-5,74],[-25,58],[-832,1788],[-349,755]],[[26454,36323,0],[72,17],[84,29],[97,36],[346,124],[109,38],[59,18],[122,24],[177,19],[109,1],[448,5],[57,7],[48,10],[66,20],[50,19],[45,20],[71,37],[51,30],[70,43],[58,33],[76,39],[45,15],[52,4],[74,4],[90,-10],[61,-8],[34,-5],[27,-16],[16,-13],[6,-13],[6,-17],[-2,-57],[-9,-55],[-20,-94],[-15,-95],[-7,-87],[-9,-85],[-4,-184],[4,-107],[9,-77],[17,-110],[19,-96],[25,-91],[25,-75],[42,-100],[43,-71],[36,-51],[40,-44],[40,-29],[47,-34],[124,-67],[93,-42],[66,-24],[79,-25],[130,-48],[118,-47],[169,-60],[89,-39],[86,-39],[81,-45],[39,-22],[37,-29],[45,-39],[11,-9],[41,-47],[39,-48],[60,-81],[41,-62],[51,-73],[93,-156],[39,-82],[23,-69],[30,-91],[13,-51],[21,-130],[49,-376],[21,-88],[32,-85],[61,-119],[30,-49],[45,-62],[36,-42],[42,-41],[63,-49],[57,-40],[58,-34],[72,-32],[55,-20],[92,-22],[67,-15],[110,-13],[59,-1]],[[31928,32778,0],[7,-123],[5,-66],[38,-360],[14,-176],[-57,-117],[16,-20],[47,-61],[26,-36],[14,-22]],[[26654,31934,0],[-78,74],[-41,41],[-180,173],[-192,-147],[-319,32],[-298,85],[-271,140],[-137,247],[-191,241],[-220,-61],[-38,-354],[-77,-139],[-127,-81],[-90,-7],[18,60],[127,136],[34,145],[-70,52],[-91,-49],[-250,-216],[-108,-62],[-133,-40],[-107,25],[-6,37],[57,27],[124,23],[72,42],[63,74],[71,180],[-13,34],[-14,36],[-55,-17],[-70,-103],[-104,-69],[-171,17],[-257,131],[-222,144],[-269,232],[-270,282],[-75,60],[-96,32],[-92,9],[-41,-41],[-111,-137],[-161,-309],[-86,-112],[-44,-140],[-187,-330],[-380,-786],[-73,-54],[427,2093],[26,97],[203,988],[100,484],[175,450],[89,257]],[[22425,35860,0],[-8,36],[615,748]],[[23032,36644,0],[35,-47],[74,-45],[63,-12],[71,0],[89,18],[96,24],[52,26],[48,28],[45,30],[399,261],[72,41],[55,27],[86,37],[170,62],[141,36],[156,9],[103,-12],[226,-48],[189,-52],[67,-23],[82,-38],[111,-64],[34,-37],[17,-27],[24,-39],[69,-106],[54,-177],[38,-95],[22,-21],[32,-29],[68,-30],[97,-25],[64,-9],[92,-10],[115,-6],[111,7],[155,25]],[[19651,39755,0],[-267,-149]],[[19384,39606,0],[-28,-20],[-59,-42],[27,-33]],[[19324,39511,0],[42,-69]],[[19366,39442,0],[29,-66],[253,-677]],[[19648,38699,0],[23,-63],[18,-64]],[[19689,38572,0],[4,-48],[7,-75]],[[19700,38449,0],[-32,-215],[-107,-497],[-11,-72]],[[19550,37665,0],[-3,-39],[24,-245],[14,-80],[5,-26]],[[19590,37275,0],[35,-84]],[[19625,37191,0],[41,-63],[76,-88],[57,-46],[87,-57],[101,-47]],[[19987,36890,0],[102,-34],[96,-15],[313,-50],[85,-10],[86,-4]],[[20669,36777,0],[55,3],[128,16]],[[20852,36796,0],[432,88],[122,32]],[[21406,36916,0],[132,44]],[[21538,36960,0],[76,29],[104,47]],[[21718,37036,0],[95,52],[85,57],[306,212],[42,20],[40,16]],[[22286,37393,0],[474,53],[64,4],[63,-4],[147,-25]],[[23034,37421,0],[204,-58],[39,-13],[55,-32]],[[23332,37318,0],[26,-41]],[[23358,37277,0],[19,-69],[-2,-35],[-5,-45]],[[23370,37128,0],[-18,-46]],[[23352,37082,0],[-114,-107],[-150,-144]],[[23088,36831,0],[-41,-54],[-19,-68]],[[23028,36709,0],[1,-25],[3,-40]],[[23032,36644,0],[-615,-747],[8,-37]],[[22425,35860,0],[-144,-33],[-299,-94],[-219,-106],[-195,-92],[-280,-137],[-216,-114],[-244,-136],[-542,-283],[-205,-45],[-82,6],[-172,42],[-228,83],[-249,95],[-179,61],[-146,53],[-16,42],[-57,160],[-284,783],[-117,329],[134,100],[195,34],[383,-101],[63,41],[-65,64],[-34,73],[-270,116],[-463,-60],[-242,-54],[-240,-110],[-394,-72],[-211,-49],[-407,-165],[-60,-1],[-148,-59],[11,-38],[7,-20],[-157,-145],[-144,-77],[-77,56],[-165,9],[-135,-58],[-209,-52],[22,46],[142,302],[92,190],[680,1418],[18,38],[-239,136],[-25,253],[-13,43],[-225,187],[5,59],[47,21],[133,-29],[0,28],[6,47],[-99,195],[-20,193],[128,284],[43,47],[175,-43],[101,190],[91,124],[-9,40],[-149,-28],[-435,-26],[-164,-65],[-840,-134],[-45,228],[5,13],[253,155],[75,40],[1037,326],[106,32],[976,243],[217,32],[151,25]],[[18163,40516,0],[128,21],[430,7],[36,-7],[312,-132],[51,-16]],[[19120,40389,0],[16,-74],[93,-104],[229,-154],[142,-75],[63,-53],[57,-137],[-69,-37]],[[32081,38995,0],[-65,-282],[-60,-831],[14,-319],[44,-35],[43,-308],[-18,-105],[126,-125]],[[32165,36990,0],[-118,-355],[77,-241],[-37,-80],[44,-92],[-3,-10],[-186,-467],[-48,-82],[-151,-252],[285,-124]],[[32028,35287,0],[110,-48]],[[32138,35239,0],[192,-84]],[[32330,35155,0],[-331,-217]],[[31999,34938,0],[-120,-263]],[[31879,34675,0],[-37,-9],[-77,-22],[7,-124],[29,-325],[69,-283],[6,-59]],[[31876,33853,0],[169,-470]],[[32045,33383,0],[4,-31],[18,-133],[-9,-46],[-32,-161],[9,-47],[36,-57],[11,-21],[11,-28],[8,-17],[13,-45],[-125,-14],[-61,-5]],[[26454,36323,0],[-11,22],[12,84],[35,228],[10,63],[377,2413],[28,174],[14,79],[-25,28],[-42,48],[30,178]],[[26882,39640,0],[33,-2],[762,-162],[280,-60],[70,-14],[1872,-399],[823,68],[557,-293],[379,-20],[368,204],[55,33]],[[32580,41870,0],[35,0],[-2,-15]],[[32613,41855,0],[8,-132]],[[32621,41723,0],[25,-111],[-1,-51],[14,-28]],[[32659,41533,0],[-31,-116]],[[32628,41417,0],[-59,-61],[-41,-24],[-140,-30],[-53,-38],[-80,-31],[-32,-12],[-65,2],[-88,2],[-60,4],[-152,-66],[-54,-111],[-23,-50],[-25,-11],[-22,-27],[-29,-56],[-47,-18],[-15,-18],[-71,-11],[-29,13],[-91,-43],[-50,30],[-41,-8],[-111,-101],[-42,-50],[-30,-54],[-63,-72],[-27,-101],[5,-16],[52,-37],[4,-13],[44,-91],[-1,-20],[-3,-8],[-11,-7],[-23,-12],[-44,-35],[-19,-44],[-11,-18],[-3,-10],[63,-56],[19,-11],[104,-14],[67,-38],[33,-34],[77,-61],[267,-172],[36,-17],[113,-91],[72,-95],[10,-77]],[[31939,39498,0],[131,-193],[22,-129],[11,-88],[-22,-93]],[[26882,39640,0],[-39,1],[-120,-3],[-27,-2],[-19,10],[-67,71],[-156,232],[-1,27],[-7,8],[-32,38],[-20,18],[135,271],[348,698],[236,470]],[[27113,41479,0],[161,74]],[[27274,41553,0],[37,41],[92,137],[58,70]],[[27461,41801,0],[144,133],[39,29]],[[27644,41963,0],[57,10],[46,-8]],[[27747,41965,0],[98,-13],[32,-10]],[[27877,41942,0],[117,-70],[70,-33],[141,-52]],[[28205,41787,0],[72,-18],[60,-7],[298,1]],[[28635,41763,0],[76,2],[61,7],[107,22]],[[28879,41794,0],[88,21],[67,28]],[[29034,41843,0],[87,43],[342,256]],[[29463,42142,0],[179,122],[55,57]],[[29697,42321,0],[104,121]],[[29801,42442,0],[249,292],[76,108]],[[30126,42842,0],[87,133],[109,154],[82,83],[83,44],[186,29],[93,4],[109,19],[95,36],[112,70],[369,185],[169,67],[31,12]],[[31651,43678,0],[55,15],[315,84]],[[32021,43777,0],[49,18]],[[32070,43795,0],[171,71],[102,66],[78,67],[83,94],[193,309],[54,-1137]],[[32751,43265,0],[-104,-254],[-38,-237],[-24,-217],[202,-128]],[[32787,42429,0],[7,-135],[-264,-308]],[[32530,41986,0],[-9,-39],[59,-77]],[[29959,44833,0],[302,42],[55,1],[85,-8],[58,-10],[72,-20],[69,-27],[83,-46],[732,-507],[158,-106],[156,-111],[33,-24],[151,-109],[157,-113]],[[32021,43777,0],[-315,-83],[-55,-16]],[[30126,42842,0],[-76,-107],[-249,-293]],[[29697,42321,0],[-51,-60],[-183,-119]],[[29034,41843,0],[-67,-27],[-88,-22]],[[28879,41794,0],[-107,-21],[-61,-7],[-76,-3]],[[28635,41763,0],[-298,0],[-60,7],[-72,17]],[[28205,41787,0],[-142,52],[-69,34],[-117,69]],[[27747,41965,0],[-47,8],[-56,-10]],[[27644,41963,0],[-39,-28],[-144,-134]],[[27461,41801,0],[-58,-69],[-92,-137],[-37,-42]],[[27113,41479,0],[-1,51],[-174,-72]],[[26938,41458,0],[-442,-191]],[[26496,41267,0],[-69,-29],[-64,-15]],[[26363,41223,0],[-255,-22]],[[26108,41201,0],[2,13],[14,40],[124,364],[-137,5],[-347,155],[-221,455],[300,334],[-62,40],[-174,124],[-374,-4],[13,35],[121,278],[200,471],[71,158],[32,62],[138,282],[38,-8],[12,45],[234,171]],[[26092,44221,0],[0,-25],[127,-32],[38,1],[61,-19],[31,-22],[86,-21],[58,-14],[241,-34],[174,-102],[39,4],[48,7],[101,106],[84,46],[8,15],[29,59],[13,7],[25,0],[-24,110],[20,91],[11,58]],[[27262,44456,0],[182,29],[4,27],[6,19],[16,43],[54,77],[75,96],[27,26],[34,33],[27,27],[37,31],[38,23],[39,15],[124,49],[67,26],[19,9],[39,7],[59,12],[40,8],[71,6],[63,-3],[63,-11],[100,-27],[48,-1],[49,-1],[97,47],[38,20],[28,16],[35,30],[34,33],[99,-251],[63,-159],[136,102],[144,28],[196,40],[197,-17],[214,-85],[135,53]],[[23032,36644,0],[-3,39],[-1,26]],[[23088,36831,0],[150,143],[114,108]],[[23370,37128,0],[5,44],[2,35],[-19,70]],[[23332,37318,0],[-54,31],[-40,13],[-204,59]],[[23034,37421,0],[-147,24],[-63,4],[-64,-4],[-474,-52]],[[22286,37393,0],[-40,-17],[-42,-20],[-306,-212],[-84,-56],[-96,-52]],[[21718,37036,0],[-104,-48],[-76,-28]],[[21406,36916,0],[-122,-33],[-432,-87]],[[20852,36796,0],[-128,-17],[-55,-2]],[[19987,36890,0],[-101,46],[-87,57],[-57,46],[-76,88],[-41,64]],[[19590,37275,0],[-5,25],[-14,80],[-24,245],[3,40]],[[19700,38449,0],[-6,74],[-5,49]],[[19648,38699,0],[-253,676],[-29,67]],[[19324,39511,0],[-27,32],[59,42],[28,21]],[[19651,39755,0],[76,-257],[303,-510],[35,-26],[36,-16]],[[20101,38946,0],[66,-38],[8,-6],[24,-24],[33,-39],[7,-15]],[[20239,38824,0],[-4,-101],[-7,-109]],[[20228,38614,0],[-1,-54],[3,-37],[5,-70],[7,-58]],[[20242,38395,0],[40,-185],[79,-132]],[[20361,38078,0],[165,-121],[226,11]],[[20752,37968,0],[225,53],[228,240]],[[21205,38261,0],[212,333],[17,23]],[[21434,38617,0],[40,33],[17,13],[28,15]],[[21519,38678,0],[29,7],[36,2]],[[21584,38687,0],[35,-4],[30,-9],[71,-53]],[[21720,38621,0],[22,-14]],[[21742,38607,0],[17,-10],[43,-23]],[[21802,38574,0],[41,-12],[32,-1],[24,0],[28,7],[38,13]],[[21965,38581,0],[98,23],[38,17],[24,13],[18,12],[10,11]],[[22153,38657,0],[26,44],[19,60]],[[22198,38761,0],[8,44],[15,102]],[[22221,38907,0],[5,145],[90,152]],[[22316,39204,0],[-19,216],[-14,178]],[[22283,39598,0],[-27,72],[-149,402],[50,112],[20,42],[-210,134],[-29,19],[67,120],[61,-15]],[[22066,40484,0],[379,-57],[86,-4],[126,10]],[[22657,40433,0],[54,8],[103,27]],[[22814,40468,0],[74,21]],[[22888,40489,0],[28,2],[44,-5]],[[22960,40486,0],[101,-23],[74,-15]],[[23135,40448,0],[44,7],[58,13]],[[23237,40468,0],[55,14],[51,21]],[[23343,40503,0],[62,28],[50,19],[37,8]],[[23492,40558,0],[29,2]],[[23521,40560,0],[25,-5],[40,-11]],[[23586,40544,0],[17,-11],[66,-51]],[[23669,40482,0],[69,-50],[69,-29]],[[23807,40403,0],[48,-11]],[[23855,40392,0],[71,-3],[40,3]],[[23966,40392,0],[40,6],[114,24]],[[24120,40422,0],[73,19],[44,16]],[[24237,40457,0],[30,13],[19,18],[20,18]],[[24306,40506,0],[25,39],[49,86]],[[24380,40631,0],[15,23]],[[24395,40654,0],[30,26],[102,72],[74,61]],[[24601,40813,0],[37,48],[51,101]],[[24689,40962,0],[56,79],[46,37]],[[24791,41078,0],[39,27]],[[24830,41105,0],[44,21],[71,28],[56,20]],[[25001,41174,0],[110,24],[104,13]],[[25215,41211,0],[502,7],[104,-7],[140,-11]],[[25961,41200,0],[58,-3],[90,4],[254,22]],[[26363,41223,0],[64,14],[69,30]],[[26938,41458,0],[175,71],[0,-50]],[[22004,40499,0],[-66,-119],[29,-19],[210,-134],[-20,-42],[-50,-112],[149,-402],[27,-73]],[[22316,39204,0],[-90,-151],[-5,-146]],[[22198,38761,0],[-19,-59],[-26,-45]],[[22153,38657,0],[-10,-10],[-19,-13],[-23,-12],[-38,-17],[-98,-24]],[[21802,38574,0],[-43,24],[-17,9]],[[21720,38621,0],[-71,54],[-30,9],[-35,3]],[[21584,38687,0],[-37,-1],[-28,-8]],[[21434,38617,0],[-18,-22],[-211,-334]],[[21205,38261,0],[-228,-239],[-225,-54]],[[20752,37968,0],[-226,-10],[-165,120]],[[20361,38078,0],[-80,132],[-39,185]],[[20228,38614,0],[7,110],[4,100]],[[20239,38824,0],[-8,16],[-33,38],[-23,25],[-8,6],[-66,37]],[[19120,40389,0],[24,55],[194,-68],[41,-14],[19,-2],[20,-2],[18,-1],[19,0],[14,3],[21,6],[19,10],[15,13],[30,40],[28,33],[42,35],[22,10],[27,10],[205,46],[100,22],[9,2],[120,25],[22,-1],[20,0],[37,-10],[61,-20],[56,-25],[44,-15],[60,-20],[41,-12],[44,-14],[52,-11],[106,-20],[78,-9],[49,0],[42,2],[35,3],[85,10],[56,9],[52,11],[116,30],[154,41],[32,6],[27,4],[23,3],[179,-12],[74,-2],[32,3],[137,21],[31,0],[16,-3],[19,-6],[34,-20],[54,-38],[29,-18]],[[24449,44148,0],[30,-21],[73,-54],[52,-27],[46,3],[25,18],[16,15],[33,45],[21,28],[14,14],[19,17],[30,29],[24,70],[47,62],[72,63],[68,71],[35,43],[38,40],[37,40],[44,21],[196,45],[351,-243],[171,-112],[201,-94]],[[26108,41201,0],[-89,-3],[-58,2]],[[25215,41211,0],[-104,-12],[-110,-25]],[[25001,41174,0],[-56,-19],[-72,-29],[-43,-21]],[[24791,41078,0],[-46,-36],[-56,-80]],[[24601,40813,0],[-74,-60],[-103,-73],[-29,-26]],[[24380,40631,0],[-49,-85],[-25,-40]],[[24306,40506,0],[-20,-17],[-19,-18],[-30,-14]],[[24120,40422,0],[-114,-23],[-40,-7]],[[23966,40392,0],[-40,-2],[-71,2]],[[23807,40403,0],[-69,30],[-69,49]],[[23586,40544,0],[-40,12],[-25,4]],[[23492,40558,0],[-37,-7],[-51,-20],[-61,-28]],[[23237,40468,0],[-58,-12],[-44,-8]],[[22960,40486,0],[-44,6],[-28,-3]],[[22814,40468,0],[-103,-26],[-54,-9]],[[22657,40433,0],[-126,-9],[-86,4],[-379,56]],[[22066,40484,0],[-62,15]],[[18163,40516,0],[-45,150],[-48,156],[-55,170],[-14,106],[-2,52],[3,279],[7,108],[18,85],[30,118],[60,24],[311,41],[145,122],[133,165],[120,102],[-33,11],[-20,2],[-24,363],[-28,196],[-10,65],[-11,95],[131,95],[281,56],[-24,522],[-4,79],[147,-25],[298,78],[3,142],[150,159],[294,171],[0,-136],[269,33],[423,-53],[52,106],[114,234],[134,-147],[59,78],[15,19],[-59,127],[-55,117],[273,9],[-17,143],[17,43],[339,-118],[76,-47],[156,-105],[76,-34],[35,26],[67,22],[69,10],[73,39],[35,4],[46,11],[133,14],[40,5],[39,-9],[161,14],[95,-13],[49,6],[100,31],[43,4],[145,37],[392,38],[156,-29],[118,-41],[81,-41],[-2,-10],[86,-31],[221,-48],[93,-46],[51,-28],[24,-10],[105,-105],[99,-92],[8,-13],[15,-39],[24,-30]],[[79343,26796,0],[53,29],[48,27],[40,11],[25,19]],[[79509,26882,0],[79,18],[39,9]],[[79627,26909,0],[24,48],[10,74],[62,141],[-56,95],[-3,4]],[[79664,27271,0],[66,47]],[[79730,27318,0],[29,13],[15,30],[-1,18],[25,15],[42,8],[45,23],[-16,7],[-22,12],[-27,8],[-1,5],[2,51],[32,40],[7,29],[30,29],[17,29],[29,37],[37,-5],[20,-14],[57,6],[106,45],[50,6],[70,40],[18,29],[65,25],[44,-2],[64,29]],[[80467,27831,0],[63,35]],[[80530,27866,0],[9,3],[10,15],[19,21],[4,5],[52,22],[10,7],[19,-1],[41,12],[64,12],[44,51],[29,26],[15,11],[39,8],[24,20],[62,61],[33,39],[23,26],[16,28],[14,22],[18,20],[24,15],[50,26],[39,15],[34,21]],[[81222,28351,0],[15,11],[39,33]],[[81276,28395,0],[35,31],[32,31],[28,34]],[[81371,28491,0],[2,5],[27,56]],[[81400,28552,0],[33,67],[-2,32],[5,34],[1,12],[0,6]],[[81437,28703,0],[79,-1],[78,6],[62,5],[27,3],[68,12],[12,-13]],[[81763,28715,0],[27,19]],[[81790,28734,0],[15,5],[6,11],[12,-3],[31,22],[35,13],[46,31],[22,13]],[[81957,28826,0],[44,19]],[[82001,28845,0],[58,24],[21,-68],[11,3],[20,12],[14,9],[8,12],[3,8],[0,2],[2,7],[0,4],[22,11],[20,17],[28,12],[23,12],[23,3],[53,26],[3,-4]],[[82310,28935,0],[28,-14],[16,-51],[64,-107],[44,-75],[37,-60],[17,-22],[24,-24],[66,-201],[41,-93],[41,-68],[68,-73],[31,-75],[-7,-26],[5,-22],[15,-22],[60,-44],[36,-31],[9,-30],[-24,-138],[25,-81],[-14,0],[-100,-3],[-92,-14],[0,-19],[-78,-19],[-33,11],[6,11],[-71,50],[-46,30],[-134,89],[-20,14],[-15,-35],[-45,-67],[-86,-131],[-45,-64],[-55,-55],[-32,-53],[-25,-48],[-54,-99],[-25,-43],[-62,-30],[-29,-47],[-23,-49],[-23,-27],[-114,-25],[-66,-52],[-41,-9],[-30,-56],[-252,-133],[-96,0],[-37,18],[-85,-39],[-102,-3],[-28,2],[-64,-20],[-66,16],[-44,-71],[-16,-32],[-54,-38],[-53,20],[-55,-13],[-29,-21],[-30,-2],[-57,-21],[-180,19],[-57,-14],[-92,-33],[-69,-23],[-153,-34],[-113,-27],[-71,33],[-104,64],[-116,44],[-25,16],[-36,28],[-39,21],[-51,49],[-37,13],[-21,27],[21,12]],[[79131,30676,0],[162,-157],[3,-13],[11,-24],[1,0],[92,-25],[30,-4],[75,-18],[31,-8],[0,-38],[7,-69],[0,-13],[5,-15],[7,-11],[12,-14],[26,-19],[2,-2],[50,-35],[3,-3],[55,-28],[54,-23],[82,-28],[107,-37],[-10,-19],[-19,-21],[-41,-40],[-13,-11],[-63,-51],[-30,-27],[-73,-64],[-26,-41],[-12,-34],[-12,-56],[-6,-16],[-21,-55],[-42,-143],[-17,-55],[-15,-41],[2,-30],[-49,-65],[-15,-15],[-36,-31],[-29,-27],[-5,-1],[-23,-15],[-18,-19],[-23,-20],[-28,-21],[-38,-18],[-54,-27],[2,-24],[6,-12],[-2,-23],[15,-17],[27,-69],[14,-39],[11,-24],[6,-30],[29,-56],[-3,-1]],[[79335,28834,0],[-45,-7],[-72,-9],[-69,-10],[-47,-7],[-61,-8],[-53,-49],[-4,-2],[-58,-26],[-32,-25],[-30,55],[-9,-3],[-86,-20],[-10,-3],[-75,-31]],[[78684,28689,0],[-1,0],[-12,-3]],[[78671,28686,0],[-51,-13],[-2,0]],[[78618,28673,0],[-8,-4]],[[78610,28669,0],[-5,-2],[-66,-24]],[[78539,28643,0],[6,-14],[1,-3]],[[78546,28626,0],[17,-111],[20,-133]],[[78583,28382,0],[7,-41],[13,-83]],[[78603,28258,0],[1,-7],[1,-4]],[[78605,28247,0],[-91,-1],[-43,0]],[[78471,28246,0],[-12,-18],[-23,-41],[-49,-43],[-2,-13],[-3,-6],[-10,-8],[56,-17],[60,-16]],[[78488,28084,0],[6,-2],[72,-21]],[[78566,28061,0],[109,-50],[12,-120],[58,-146],[41,-109],[16,-19],[100,-128]],[[78902,27489,0],[55,-74],[6,-8]],[[78963,27407,0],[27,-47],[74,-128]],[[79064,27232,0],[34,-60],[15,-26]],[[79113,27146,0],[22,-48],[23,-51]],[[79158,27047,0],[11,-42],[-81,71],[-59,37],[-69,86],[-85,62],[-15,11],[-42,3],[-87,32],[-39,14],[-52,30],[-13,14],[-30,41],[-3,6],[-48,16],[-37,32],[-62,-13],[-80,21],[-29,2],[-61,21],[-22,16],[-52,35],[-95,30],[-100,34],[-147,51],[-147,50],[-118,41],[-205,68],[-32,34],[-94,23],[-122,58],[-31,15],[-113,19],[-38,18],[-52,13],[-72,20],[-83,25],[-75,28],[-39,13],[-46,6],[-20,2],[8,84],[11,23],[16,27],[36,30],[36,24],[13,24],[6,15],[194,5],[110,1],[213,4],[32,1],[64,14],[41,21],[145,-1]],[[77499,28362,0],[84,23],[36,11],[78,35],[53,50],[59,74],[40,50]],[[77849,28605,0],[58,115]],[[77907,28720,0],[13,34],[19,69]],[[77939,28823,0],[9,65]],[[77948,28888,0],[6,50]],[[77954,28938,0],[9,57]],[[77963,28995,0],[8,43],[13,39]],[[77984,29077,0],[16,36]],[[78000,29113,0],[23,42],[11,17],[17,20],[42,42],[39,29],[55,26],[30,30],[44,93],[38,77],[27,50],[9,16],[6,23],[9,38],[-5,61],[-1,93],[9,40],[4,18],[0,67],[-7,105],[-42,56],[-53,110],[-9,18],[-5,6],[-6,25],[1,36]],[[78236,30251,0],[-42,102],[70,-32],[91,-42],[1,-8],[115,-45],[12,8],[6,11],[27,38],[18,4],[30,-16],[20,-5],[66,-33],[30,-10],[25,-13],[49,-25],[9,-7],[16,-9],[104,-24],[45,-11],[13,52],[20,93],[10,30],[12,42],[28,68],[28,83],[8,16],[21,39],[28,69],[20,44],[7,-6],[8,12]],[[80997,29782,0],[17,-81]],[[81014,29701,0],[1,-39],[0,-3]],[[81015,29659,0],[-8,-87]],[[81007,29572,0],[-11,-27],[-6,-71],[20,-60],[3,-12],[2,-11],[87,-74],[27,-30],[26,-33],[48,-37]],[[81203,29217,0],[65,-24]],[[81268,29193,0],[33,-23],[35,-31],[31,-66],[13,-31],[2,-48],[12,-69],[8,-43],[12,-66],[23,-113]],[[81400,28552,0],[-29,-61]],[[81276,28395,0],[-54,-44]],[[80530,27866,0],[-4,-1],[-59,-34]],[[79730,27318,0],[-64,-46],[-2,-1]],[[79627,26909,0],[-118,-27]],[[79343,26796,0],[-9,25],[-25,61],[-6,13],[-11,29],[-134,123]],[[79158,27047,0],[-45,99]],[[79113,27146,0],[-49,86]],[[78963,27407,0],[-61,82]],[[78566,28061,0],[-78,23]],[[78471,28246,0],[134,1]],[[78605,28247,0],[-2,11]],[[78603,28258,0],[-20,124]],[[78546,28626,0],[-7,17]],[[78539,28643,0],[71,26]],[[78618,28673,0],[53,13]],[[78671,28686,0],[13,3]],[[79335,28834,0],[1,-2],[8,1]],[[79344,28833,0],[106,16]],[[79450,28849,0],[46,7],[78,28],[35,7],[36,15],[27,13],[21,14],[24,1],[11,0],[38,12],[33,16],[35,1],[18,-4],[24,-10],[25,6],[29,31],[2,9],[36,15],[29,20],[29,22],[19,22],[23,6],[18,15],[31,36],[3,4],[17,24],[49,97],[49,86],[-12,55],[57,12],[33,30],[24,33],[47,43],[49,32],[77,7],[5,0],[26,1],[51,4],[62,24],[89,14],[23,14],[22,9],[25,19],[25,12],[29,8],[38,44],[36,65],[7,-3],[14,31],[9,3]],[[80971,29799,0],[0,2],[3,1]],[[80974,29802,0],[10,9],[13,-29]],[[82272,30574,0],[18,6]],[[82290,30580,0],[7,3]],[[82297,30583,0],[59,-92],[46,-79],[23,-49],[49,-64],[88,-99],[40,-47],[44,-57],[19,-32],[25,-32],[27,-27],[20,-17],[44,-24],[41,-31],[44,-38],[79,-37],[43,-20],[70,-30]],[[83058,29808,0],[66,-19],[14,-35],[9,-20],[11,-15],[21,-23],[23,-29],[21,-39],[16,-27],[6,-15],[20,-19],[32,-39],[25,-37],[16,-29],[17,-21],[8,-12],[2,-19],[4,-37],[1,-43],[-3,-34],[-1,-16],[0,-12],[4,-49],[6,-34],[18,-18],[5,5],[25,-18],[27,-27],[18,1],[6,-9],[3,-20],[15,-17],[19,-28],[28,-32],[3,-10],[-4,-11],[-15,-21],[-15,-13],[-24,-4],[-12,-1],[-48,-5],[-44,-5],[-44,-19],[-35,-6],[-68,-12],[-31,-8],[-2,-41],[-47,-3],[-19,-1],[-15,-4],[-34,-9],[-26,-33],[-41,8],[-55,5],[-17,0],[-93,-4],[-34,10],[-32,23],[-21,12],[-18,12],[-17,14],[-17,40],[-15,43],[-13,39],[-102,3],[-80,-19],[-55,-12],[-41,-8],[-28,-18],[-34,-20],[-16,-13],[-2,-11],[3,-12],[-4,-1],[-8,12],[-10,16]],[[82001,28845,0],[-12,-6],[-32,-13]],[[81790,28734,0],[-9,-6],[-18,-13]],[[81268,29193,0],[-1,0],[-64,24]],[[81007,29572,0],[0,2],[8,85]],[[81014,29701,0],[-17,77],[0,4]],[[80974,29802,0],[-13,-2],[-2,-5],[-11,1],[-22,2],[0,3],[45,49],[14,24]],[[80985,29874,0],[6,28],[3,82],[11,295],[-1,46],[-1,44],[-6,143],[0,34],[-10,69],[-8,66]],[[80979,30681,0],[-4,12],[-4,13]],[[80971,30706,0],[-65,104],[-20,35],[-44,57],[-44,56],[-23,30],[-14,35],[-14,45],[-16,88],[-8,81],[-8,75]],[[80715,31312,0],[45,-84],[19,-42],[28,-49],[11,2],[36,-36],[16,-18],[14,10],[14,13],[-31,58],[-14,48],[-10,32],[-3,17],[13,22],[61,-6],[0,8],[1,9],[23,50],[4,9],[19,-3],[36,-6],[20,-6],[30,-11],[11,-3],[6,1],[31,44],[9,13],[6,16],[10,29],[9,6],[8,-24],[6,-14],[-12,-77],[0,-15],[0,-29],[-1,-59],[6,-14],[8,2],[19,-14],[24,-14],[51,-19],[11,-7],[36,-17],[18,-5],[11,-12],[14,-21],[7,-11],[12,-22],[11,-19],[11,-16],[16,-20],[19,-19],[10,-11],[3,-9],[4,-14],[6,-10],[-3,-3],[-6,-3],[0,-5],[12,-15],[10,-25],[20,-36],[17,-26],[20,-31],[5,-22],[-3,-15],[-3,-11],[-1,-17],[23,-57],[10,-27],[12,-29],[0,-20],[-1,-22],[0,-5],[10,0],[24,0],[30,2],[17,3],[9,-1],[23,9],[16,6],[35,9],[14,3],[50,-92],[0,28],[-3,25],[0,18],[22,-36],[38,-37],[46,-48],[8,5],[11,6],[52,30],[28,15],[43,20],[3,-5],[18,7],[73,29],[-11,28],[6,4],[9,0],[11,-2],[5,-7],[9,-19],[11,-25],[15,-9],[19,0],[26,11],[15,6],[51,15]],[[79781,31629,0],[37,-11],[45,8]],[[79863,31626,0],[74,-9]],[[79937,31617,0],[59,-8],[20,2],[158,-4]],[[80174,31607,0],[81,-4],[29,-5],[19,0],[53,-31]],[[80356,31567,0],[34,-29],[34,-26],[29,-36],[15,-22],[-1,-4],[24,-11],[34,-5],[27,-7],[30,-11],[34,-20],[20,-20],[14,-1],[1,-6],[22,-2],[12,-9],[16,-23],[14,-23]],[[80971,30706,0],[8,-25]],[[80985,29874,0],[-7,-42],[-7,-33]],[[79450,28849,0],[-59,-9],[-47,-7]],[[79131,30676,0],[21,60],[11,44],[2,5],[-20,5],[-24,9],[-47,7],[-353,41],[-14,162],[-11,48],[-34,65],[37,56],[-1,17],[-10,109],[140,19],[50,2],[127,53],[92,2],[59,11],[30,13],[21,0],[43,24]],[[79250,31428,0],[46,-5],[12,2]],[[79308,31425,0],[27,17],[24,5]],[[79359,31447,0],[13,14],[48,9]],[[79420,31470,0],[77,8],[65,7],[66,20],[82,-2]],[[79710,31503,0],[-1,-13]],[[79709,31490,0],[9,-2],[1,8],[45,-10]],[[79764,31486,0],[6,6],[87,-22],[1,5],[2,7],[1,4],[-28,7],[-22,15],[-33,6]],[[79778,31514,0],[-91,61]],[[79687,31575,0],[-10,21],[-19,8]],[[79658,31604,0],[-87,-1],[-17,3]],[[79554,31606,0],[-12,6],[-15,15],[-14,20],[-11,23],[-2,8],[2,8],[1,3],[154,0],[42,-5],[25,-21],[57,-34]],[[81465,33035,0],[23,-10],[27,0],[62,-7],[21,-2],[66,-28],[22,-10],[61,-55],[31,-11],[14,1],[16,30],[23,2],[12,22],[50,-3],[-1,-24]],[[81892,32940,0],[62,-33],[10,-5]],[[81964,32902,0],[-11,-68],[31,-3],[4,25],[24,-6],[74,-15],[11,49],[20,-1],[16,63]],[[82133,32946,0],[71,-27],[75,-29]],[[82279,32890,0],[18,-7],[36,-2]],[[82333,32881,0],[5,1],[44,2]],[[82382,32884,0],[10,-13],[60,13],[1,49],[3,25],[10,-6],[17,-12],[15,-3],[21,-3],[18,1]],[[82537,32935,0],[4,1],[14,2]],[[82555,32938,0],[20,8],[71,22],[11,4],[20,5],[13,4],[29,-31],[24,-47],[2,-24],[0,-30],[-2,-15]],[[82743,32834,0],[-15,-1],[-19,-64],[-13,-12],[-23,-11],[-14,-15],[-14,-26],[-15,-37]],[[82630,32668,0],[-23,-85],[-12,-45]],[[82595,32538,0],[-9,-51],[-4,-36],[4,-44],[4,-85]],[[82590,32322,0],[0,-17],[0,-42]],[[82590,32263,0],[-5,-41],[-17,-52],[-34,-58],[-33,-48],[-39,-49],[-20,-30],[-23,-61],[-12,-61],[-2,-66],[-26,-47],[-18,-51],[-15,-68],[-6,-47],[-2,-60],[6,-95],[-14,-6],[-60,-18],[-54,-13],[1,-64],[4,-35],[11,-42],[25,-69],[7,-12],[17,-28],[38,-73]],[[82319,31069,0],[8,-8],[17,-16]],[[82344,31045,0],[29,-21],[67,-59],[37,-30],[37,-51],[33,-28],[-92,-62],[-31,-19],[-54,-35],[-26,-6],[-64,-15],[-44,-30],[57,-99],[4,-7]],[[82290,30580,0],[-8,-3],[-10,-3]],[[80356,31567,0],[-50,31],[21,7],[18,16],[7,9],[4,12]],[[80356,31642,0],[0,23]],[[80356,31665,0],[2,26],[8,25]],[[80366,31716,0],[33,41]],[[80399,31757,0],[22,14]],[[80421,31771,0],[11,15]],[[80432,31786,0],[28,12]],[[80460,31798,0],[33,2]],[[80493,31800,0],[25,25],[19,19]],[[80537,31844,0],[32,32],[58,13]],[[80627,31889,0],[51,24],[51,9]],[[80729,31922,0],[10,8],[74,68]],[[80813,31998,0],[44,39]],[[80857,32037,0],[18,24],[10,23],[8,18],[5,14]],[[80898,32116,0],[22,51]],[[80920,32167,0],[1,11],[0,15]],[[80921,32193,0],[9,8]],[[80930,32201,0],[-1,14],[8,80],[8,39]],[[80945,32334,0],[-1,15]],[[80944,32349,0],[11,32]],[[80955,32381,0],[-5,48]],[[80950,32429,0],[8,18],[15,32],[8,19],[38,38],[37,40]],[[81056,32576,0],[23,25]],[[81079,32601,0],[20,1],[7,24]],[[81106,32626,0],[18,19]],[[81124,32645,0],[49,44]],[[81173,32689,0],[12,21],[21,29]],[[81206,32739,0],[33,35],[11,11],[25,26],[22,23]],[[81297,32834,0],[24,25]],[[81321,32859,0],[126,121],[6,15],[11,26]],[[81464,33021,0],[1,14]],[[84123,32199,0],[16,34],[24,51]],[[84163,32284,0],[37,42],[10,9],[55,52],[89,81],[-13,-25],[-13,-24],[-14,-26],[20,-10],[-9,-17],[10,-5],[30,-15],[61,-30],[18,-2],[4,-1],[70,-25],[14,-10],[15,-10],[43,28],[32,20]],[[84622,32316,0],[37,24],[22,14]],[[84681,32354,0],[3,2],[23,9],[32,12],[8,22],[46,5],[52,17],[5,2],[31,7],[43,9],[10,-12],[16,-23],[37,-19],[11,1],[18,9],[32,34],[27,-9],[-1,-9],[-5,-47],[12,-5],[4,-3],[3,-4],[2,-6],[-1,-16],[-4,-37],[0,-4]],[[85085,32289,0],[21,-17],[6,-5]],[[85112,32267,0],[58,-45]],[[85170,32222,0],[5,-6]],[[85175,32216,0],[18,-25],[3,-4],[27,-37]],[[85223,32150,0],[-2,-28],[4,-13],[4,-14],[2,-4],[8,-12],[7,-7]],[[85246,32072,0],[8,-7],[13,-10]],[[85267,32055,0],[27,-97],[1,-20],[-4,-20],[-13,-28],[-40,-44],[-50,-33],[-25,-40],[1,-108],[28,-49],[40,-62],[88,-62],[50,-18],[49,-31],[44,-17],[129,-84],[4,-9]],[[85596,31333,0],[-3,-10],[0,-3],[-21,-45],[-88,26],[-65,-110],[-120,59],[-47,-82],[-20,-34],[32,-19],[31,-17],[84,-49],[-6,-11]],[[85373,31038,0],[-76,-100],[-29,-37],[-35,-41],[-39,-30],[-12,-47],[-26,-19],[-27,-3],[-49,-2],[-27,-8],[-26,-21],[-26,-32],[-27,-45],[-56,-15],[-45,-72],[-33,-23],[-21,-8],[-43,-4],[-44,-3],[-83,-68],[29,-27],[-43,-55],[-89,-14],[-41,-26],[-57,-13],[-67,-27],[-78,-7],[-65,-8],[-40,-23],[-79,-16],[-26,-47],[-5,-36],[-18,-7],[-32,-34],[-54,-84],[-15,-14],[-1,-36],[7,-40],[23,-62],[4,-38],[-2,-20],[-39,-46],[-18,-23],[-60,-61],[-23,-2],[-119,73],[-50,28],[-97,85],[-26,12],[-14,11],[-21,10],[-19,-2],[-59,6],[-69,-11],[-53,-46],[-32,-20],[-44,-18],[-23,-4],[-22,-13],[-64,-23],[-90,26]],[[82344,31045,0],[-25,24]],[[82590,32263,0],[0,59]],[[82595,32538,0],[35,130]],[[82743,32834,0],[9,-36],[13,-46],[18,-41],[25,-48],[9,-28],[0,-47],[-3,-43],[10,-46]],[[82824,32499,0],[4,-18],[12,-9],[46,-34],[105,-53],[96,-9],[98,25],[64,1],[35,-1],[48,-18],[19,-5],[22,-2],[20,29],[12,-5],[233,-91],[77,19],[67,-2],[50,-18],[16,-5],[239,-91],[36,-13]],[[85596,31333,0],[128,-80],[87,-61],[37,-10],[28,-16],[27,-17],[27,-16],[27,-17],[28,-17],[27,-15],[27,-14],[27,-7],[24,-5],[28,-7],[27,-14],[17,-10],[18,-12],[29,-30],[12,-13],[34,-26],[16,-38],[16,-33],[12,-24],[10,-25],[11,-24],[12,-24],[37,-83],[70,-169],[47,-120],[21,-130],[9,-117],[37,-132],[84,-141],[48,-156],[9,-23],[13,1],[14,-19],[15,-22],[71,-47],[56,-3],[18,-34],[46,68],[22,-9],[70,-28],[7,37],[31,65],[14,68],[114,1],[22,-1],[-47,-87],[-26,-177],[-19,-117],[-38,-34],[-22,-43],[-28,-198],[-43,-51],[-27,-14],[-48,-26],[-99,-53],[-65,-66],[-67,-68],[-42,-114],[-10,6],[-16,-2],[-87,90],[-112,70],[-17,60],[-54,20],[-27,13],[-7,28],[-19,27],[-25,9],[-31,14],[-28,75],[-63,31],[-33,19],[-96,88],[-41,60],[-15,21],[-3,79],[32,39],[2,48],[-61,84],[-54,71],[-5,72],[-2,13],[-27,75],[-20,172],[-7,28],[9,58],[-5,67],[-20,48],[-13,18],[-6,26],[-14,56],[0,8],[8,34],[-3,83],[-26,92],[-3,33],[-1,39],[-39,35],[-5,26],[-24,43],[-11,28],[-6,17],[-38,46],[-3,7],[-13,32],[-28,33],[-46,49],[-37,41],[-23,21],[-44,36],[-27,10],[-19,6]],[[85973,33734,0],[482,-195]],[[86455,33539,0],[-37,-67],[34,-55],[-26,-57],[4,-19],[-5,-61],[5,-18],[30,-42],[7,-21],[-1,-24],[-17,-43],[-20,-32],[-7,-34],[-79,-76],[-18,-7],[-21,1],[-56,15],[-11,-53],[3,-6],[37,-56],[-5,-22],[3,-31],[-17,-16],[-159,73],[-32,11],[-50,35],[-46,9],[-24,4],[-46,-13],[-18,0],[-15,20],[-94,43],[-8,3],[-114,21],[-8,2],[-50,14],[4,27],[-69,9],[-86,24],[-41,24],[-35,-55],[-8,-92],[-9,-44],[43,-217],[-31,6],[1,-6],[0,-23],[-10,-65],[-68,-493],[-18,-77]],[[85267,32055,0],[-21,17]],[[85223,32150,0],[-48,66]],[[85175,32216,0],[-2,1],[-3,5]],[[85112,32267,0],[-27,22]],[[84681,32354,0],[-59,-38]],[[84163,32284,0],[-40,-85]],[[82824,32499,0],[27,94],[62,47],[25,68],[6,62],[-12,2],[-4,8],[13,14],[7,63],[12,40],[74,144]],[[83034,33041,0],[55,166]],[[83089,33207,0],[38,119],[2,16],[5,28],[21,27],[5,17],[8,1],[25,-2],[25,96]],[[83218,33509,0],[9,41],[21,91]],[[83248,33641,0],[4,21],[23,128],[4,24]],[[83279,33814,0],[14,-2],[14,136],[-4,3],[7,57]],[[83310,34008,0],[0,2],[6,29]],[[83316,34039,0],[8,80],[17,160],[149,214],[47,62],[16,12],[92,85]],[[83645,34652,0],[67,13]],[[83712,34665,0],[22,-111]],[[83734,34554,0],[27,-61]],[[83761,34493,0],[23,-43],[27,-37],[20,-19],[46,-28]],[[83877,34366,0],[45,-17]],[[83922,34349,0],[49,-11],[71,-16]],[[84042,34322,0],[448,-104]],[[84490,34218,0],[224,-47]],[[84714,34171,0],[175,-30],[203,-68],[869,-364],[12,25]],[[83550,35025,0],[27,-6]],[[83577,35019,0],[29,1],[21,2]],[[83693,35024,0],[0,-1]],[[83693,35023,0],[1,-16],[3,-32],[2,-43],[-1,-21],[10,-75],[-2,-23],[5,-48],[-1,-17],[0,-83]],[[83710,34665,0],[-65,-13]],[[83316,34039,0],[-6,-31]],[[83279,33814,0],[-31,-173]],[[83248,33641,0],[-30,-132]],[[83089,33207,0],[-8,-23],[-44,-132],[-3,-11]],[[82555,32938,0],[-18,-3]],[[82382,32884,0],[-49,-3]],[[82279,32890,0],[-146,56]],[[81964,32902,0],[-72,38]],[[81465,33035,0],[4,34],[11,35],[2,8]],[[81482,33112,0],[11,20],[10,18],[11,21],[2,4]],[[81516,33175,0],[23,41],[14,27]],[[81553,33243,0],[27,38],[30,42],[26,34]],[[81636,33357,0],[18,6]],[[81654,33363,0],[10,41],[11,26],[8,2]],[[81683,33432,0],[18,84],[-5,5]],[[81696,33521,0],[-12,4],[-5,7],[0,27]],[[81679,33559,0],[13,33],[17,23]],[[81709,33615,0],[28,28]],[[81737,33643,0],[6,27],[8,76]],[[81751,33746,0],[10,99],[12,92],[13,51],[14,56]],[[81800,34044,0],[8,82],[33,31]],[[81841,34157,0],[14,46]],[[81855,34203,0],[5,31],[3,11]],[[81863,34245,0],[5,33],[6,27]],[[81874,34305,0],[29,71]],[[81903,34376,0],[18,64],[7,22],[-7,63],[15,43],[7,21]],[[81943,34589,0],[39,50]],[[81982,34639,0],[55,63],[35,73]],[[82072,34775,0],[44,77],[54,56],[54,60]],[[82224,34968,0],[54,58],[29,20]],[[82307,35046,0],[11,-74],[4,-36]],[[82322,34936,0],[21,-54],[4,-13]],[[82347,34869,0],[44,-43],[32,-53],[44,19],[6,-3],[94,51],[29,7],[14,-3]],[[82610,34844,0],[24,8],[18,7]],[[82652,34859,0],[19,16]],[[82671,34875,0],[58,-1],[18,0]],[[82747,34874,0],[118,37],[-1,5],[115,24],[133,23],[50,13],[76,69],[46,79],[66,-5],[25,-35],[39,-34],[24,-9]],[[83438,35041,0],[24,-5],[28,-5]],[[83490,35031,0],[2,0],[58,-6]],[[84674,35524,0],[1,1],[41,17]],[[84716,35542,0],[128,37]],[[84844,35579,0],[49,16]],[[84893,35595,0],[20,-73]],[[84913,35522,0],[157,-48]],[[85070,35474,0],[81,-27],[15,-4],[72,-18],[41,-32],[127,-28],[167,-21],[100,-11],[30,-2],[52,1],[89,9],[-5,150],[0,101],[229,-54],[164,-39]],[[86232,35499,0],[7,-1],[9,-2]],[[86248,35496,0],[132,-33],[101,-171],[33,-57],[75,110]],[[86589,35345,0],[40,-202],[10,-17],[41,-31],[9,-16],[-2,-14],[-2,-28],[0,-23],[11,-38],[-4,-53],[17,-61],[-1,-8],[-16,-25],[-17,-28],[11,-7],[86,-69],[114,-75],[76,-58],[19,-14],[-95,-84],[29,-16],[75,-10],[-50,-207],[42,-4],[-9,-76],[-15,-73],[-26,-67],[-8,-74],[-29,-119],[-31,-38],[-40,-20],[-26,-13],[-56,-39],[44,-36],[-2,-55],[8,-73],[-58,-6],[-7,-44],[-25,-46],[-31,0],[-55,2],[-37,15],[-14,6],[-110,38]],[[86455,33539,0],[-53,21],[-102,41],[-72,30],[-11,5],[-8,3],[-59,24],[-75,30],[-102,41]],[[84714,34171,0],[-48,10],[-17,4],[-159,33]],[[84490,34218,0],[-446,104],[-2,0]],[[84042,34322,0],[-120,27]],[[83922,34349,0],[-44,17],[-1,0]],[[83761,34493,0],[-9,19],[-18,42]],[[83734,34554,0],[-14,73],[-8,38]],[[83712,34665,0],[-2,0]],[[83693,35023,0],[-4,43]],[[84114,35496,0],[101,18]],[[84215,35514,0],[103,58],[44,10],[56,4],[48,32],[57,22],[16,3],[20,2]],[[84559,35645,0],[1,-13]],[[84560,35632,0],[4,-15],[2,-4]],[[84566,35613,0],[25,-46],[83,-43]],[[83411,37973,0],[7,3],[3,-1],[-1,-59]],[[83420,37916,0],[12,-56]],[[83432,37860,0],[54,-100],[7,-27],[14,-23],[20,-36],[69,-76],[81,-186]],[[83677,37412,0],[36,-82]],[[83713,37330,0],[22,-8],[79,-56],[20,-60],[12,-46]],[[83846,37160,0],[74,-157]],[[83920,37003,0],[86,-152],[29,-21]],[[84035,36830,0],[39,1]],[[84074,36831,0],[100,-124],[68,-40]],[[84242,36667,0],[41,-24],[255,-74],[28,-9],[37,3],[60,-3],[104,-25],[71,-57],[49,-28]],[[84887,36450,0],[70,-43]],[[84957,36407,0],[22,-20],[83,-54],[-92,-220]],[[84970,36113,0],[14,-9]],[[84984,36104,0],[-92,-123]],[[84892,35981,0],[-8,-14],[-79,-75],[-168,-144],[-27,-23],[-21,-17],[-23,-2],[-7,-21],[0,-40]],[[84215,35514,0],[-60,-11]],[[83627,35022,0],[-50,-3]],[[83550,35025,0],[-60,6]],[[83490,35031,0],[-52,10]],[[82747,34874,0],[-76,1]],[[82652,34859,0],[-42,-15]],[[82347,34869,0],[-25,67]],[[82307,35046,0],[109,49]],[[82416,35095,0],[41,100]],[[82457,35195,0],[11,31],[41,59]],[[82509,35285,0],[80,141]],[[82589,35426,0],[130,141],[1,9]],[[82720,35576,0],[-16,130]],[[82704,35706,0],[19,49],[15,60]],[[82738,35815,0],[4,58]],[[82742,35873,0],[-16,56],[-73,151],[-4,113]],[[82649,36193,0],[5,28]],[[82654,36221,0],[33,137],[-20,121]],[[82667,36479,0],[51,49],[12,6],[19,10],[5,9],[16,30],[28,55],[59,65],[81,82],[53,76],[20,29],[85,63],[45,36],[34,46],[17,37],[51,64],[35,57],[34,50]],[[83290,37469,0],[-41,86],[-54,108],[-2,8],[-13,121],[-10,142],[-9,102],[250,-63]],[[86248,35496,0],[-16,3]],[[85070,35474,0],[-114,34],[-43,14]],[[84893,35595,0],[-3,-1],[-46,-15]],[[84716,35542,0],[-42,-18]],[[84566,35613,0],[-6,19]],[[84892,35981,0],[90,121],[2,2]],[[84970,36113,0],[91,219]],[[85061,36332,0],[90,-44]],[[85151,36288,0],[52,-21]],[[85203,36267,0],[29,-12]],[[85232,36255,0],[11,49],[9,30],[18,126]],[[85270,36460,0],[1,7],[29,213]],[[85300,36680,0],[23,309]],[[85323,36989,0],[36,101],[-4,3]],[[85355,37093,0],[14,21],[26,29]],[[85395,37143,0],[46,17],[37,-4]],[[85478,37156,0],[194,73]],[[85672,37229,0],[73,-2],[183,3],[140,-11],[22,-3],[112,33],[31,3],[32,-2],[19,-8],[65,-111],[108,-29],[105,-41],[46,-29],[45,-35],[159,-8],[2,-4],[37,-2],[3,5],[63,-1],[11,-3],[61,-27],[170,-124],[38,-19],[127,-30],[70,-24],[24,-7],[52,-3],[21,1],[110,22],[6,-22],[25,-90],[12,-29],[54,-102],[42,-70],[15,-21],[4,-9],[-460,-28],[-124,-49],[-125,-232],[-23,-285],[-8,-111],[-2,-11],[-256,-328],[-55,120],[-117,-161]],[[86113,38120,0],[-6,-6],[-12,-23],[-13,-43],[-36,-132],[-18,-31],[12,-58],[-56,-10],[-17,-5],[-18,-9],[-16,-7],[-10,-21],[-14,-35],[-11,-29],[-20,-60],[-14,-41],[-9,-12],[-107,-109],[-5,-6],[-3,-8],[-27,-178],[-10,-36],[-9,-12],[-22,-20]],[[85478,37156,0],[-37,5],[-35,-14],[-11,-4]],[[85395,37143,0],[-26,-28],[-14,-22]],[[85355,37093,0],[4,-2],[-12,-33],[-24,-69]],[[85300,36680,0],[-29,-212],[-1,-8]],[[85270,36460,0],[-8,-57],[-10,-68],[-8,-24],[-2,-7],[-2,-10],[-8,-39]],[[85232,36255,0],[-15,7],[-14,5]],[[85203,36267,0],[-24,10],[-28,11]],[[85061,36332,0],[0,1],[1,1],[-83,54],[-9,8],[-13,11]],[[84957,36407,0],[-60,37],[-10,6]],[[84887,36450,0],[-49,29],[-71,57],[-104,25],[-60,3],[-37,-3],[-28,9],[-256,73],[-29,18],[-11,6]],[[84242,36667,0],[-7,5],[-62,35],[-72,90],[-27,34]],[[84035,36830,0],[-16,12],[-13,10],[-86,151]],[[83846,37160,0],[-7,27],[-5,20],[-12,38],[-8,22],[-27,18],[-52,38],[-9,3],[-13,4]],[[83677,37412,0],[-50,115],[-31,72],[-69,76],[-19,33],[-1,3],[-14,23],[-8,26],[-53,100]],[[83432,37860,0],[-5,22],[-7,34]],[[83420,37916,0],[1,63],[31,18],[13,8]],[[83465,38005,0],[58,3],[12,1],[2,-1],[14,-7],[52,-22],[13,12],[3,2],[1,3],[2,4],[5,11],[4,7],[7,9],[6,7],[7,13],[5,2],[2,2],[159,53],[7,2],[58,8],[21,2],[43,7],[54,16],[179,34],[51,18],[19,9],[14,7],[35,21],[13,8],[19,4],[172,46],[94,24],[22,6],[20,3],[106,15],[72,4],[41,14],[75,2],[58,-18],[18,2],[137,-26],[27,-5],[23,5],[63,1],[171,2],[20,5],[17,5],[127,23],[52,4],[122,-3],[30,-10],[11,-3],[56,-1],[31,-5],[49,-20],[32,-21],[41,-43],[44,-67],[7,-10],[3,-3],[42,-46]],[[84516,39923,0],[158,0],[60,0]],[[84734,39923,0],[26,74]],[[84760,39997,0],[0,1],[179,-35]],[[84939,39963,0],[-16,-123],[-2,-10]],[[84921,39830,0],[0,-4],[-1,-20],[7,-16],[1,-4],[70,-16],[9,-12],[13,-18]],[[85020,39740,0],[7,-25],[1,-3]],[[85028,39712,0],[108,-2]],[[85136,39710,0],[-11,-94],[7,-49],[-1,-83],[6,-23],[26,-95],[25,-68],[19,-23],[33,-40],[82,-57],[45,-24],[43,-17],[96,-35],[69,-15],[39,75],[-6,59],[-5,83],[77,20],[32,-28],[153,-52],[-2,-64],[-5,-8],[8,-32],[37,-46],[96,-129],[85,-125],[69,-75],[40,-61],[0,-50],[-8,-205],[-6,-73],[-1,-16],[1,-59],[-11,-55],[-14,-35],[-11,-42],[-18,-20],[-12,-29]],[[83465,38005,0],[-48,-28],[-6,-4]],[[83411,37973,0],[-103,26],[-151,39]],[[83157,38038,0],[-2,0],[0,6],[1,1]],[[83156,38045,0],[17,35],[7,21]],[[83180,38101,0],[8,24],[-34,18],[-41,19],[10,21],[-11,4]],[[83112,38187,0],[-117,35],[0,2]],[[82995,38224,0],[3,10],[-186,64],[-26,12],[-32,22],[-21,21],[-9,10],[-15,27],[-9,35]],[[82700,38425,0],[-1,42]],[[82699,38467,0],[5,41],[8,26],[27,62]],[[82739,38596,0],[257,437],[8,29],[15,55],[4,35],[-1,73],[-9,60],[-45,234],[-19,60],[-73,140],[76,57],[17,12],[14,-99],[179,36],[7,2],[38,4],[51,16],[2,1],[15,11]],[[83275,39759,0],[49,7],[26,9]],[[83350,39775,0],[7,0],[3,0],[3,0],[13,-1]],[[83376,39774,0],[34,14],[39,15],[108,54]],[[83557,39857,0],[68,28],[-4,20]],[[83621,39905,0],[0,1],[5,2],[19,10]],[[83645,39918,0],[71,35]],[[83716,39953,0],[47,12],[25,6],[33,11],[66,24],[1,0],[7,-7],[19,-15],[45,10]],[[83959,39994,0],[27,-3]],[[83986,39991,0],[45,0],[23,-4]],[[84054,39987,0],[63,1],[55,10]],[[84172,39998,0],[81,3],[20,8],[17,-2],[1,0]],[[84291,40007,0],[51,-5],[36,3]],[[84378,40005,0],[-1,4],[0,1]],[[84377,40010,0],[27,-1],[19,-1]],[[84423,40008,0],[19,-1],[70,-2],[-1,-29],[-2,-38],[5,-11],[2,-4]],[[83691,41708,0],[30,-13],[52,-19],[3,0],[46,-7],[105,-14],[15,-2],[116,-25],[138,-27],[93,-18],[39,-4]],[[84328,41579,0],[150,-17]],[[84478,41562,0],[196,-28]],[[84674,41534,0],[20,-3],[169,-28],[103,-17]],[[84966,41486,0],[27,-4],[118,-19]],[[85111,41463,0],[83,-13],[119,-19],[5,0],[12,-2],[203,-23]],[[85533,41406,0],[9,-1],[6,-1]],[[85548,41404,0],[117,-9],[3,0],[91,-12],[131,-17]],[[85890,41366,0],[1,0],[99,-17],[37,-6],[79,-15],[82,-15],[7,-2]],[[86195,41311,0],[61,-21]],[[86256,41290,0],[22,-10]],[[86278,41280,0],[116,-41]],[[86394,41239,0],[17,-6],[4,-2]],[[86415,41231,0],[111,-40]],[[86526,41191,0],[137,-49],[-99,-80],[-217,-217],[-2,-3],[-62,-69],[-23,-26],[-118,-132],[90,-169],[-40,-103],[-74,-54],[-85,-88],[-80,-111],[-167,-149],[-108,-44],[-40,-16],[-83,-26],[-122,-16],[-42,-26],[-50,-9],[-77,-15],[-61,-46],[-67,-33]],[[85028,39712,0],[-8,28]],[[85020,39740,0],[-22,29],[-70,16],[-8,20],[1,25]],[[84921,39830,0],[18,133]],[[84939,39963,0],[-179,34]],[[84734,39923,0],[-218,0]],[[84516,39923,0],[-6,15],[2,66],[-89,4]],[[84423,40008,0],[-46,2]],[[84377,40010,0],[1,-5]],[[84378,40005,0],[-36,-4],[-51,6]],[[84291,40007,0],[-18,1],[-20,-8],[-81,-2]],[[84054,39987,0],[-23,3],[-45,1]],[[83959,39994,0],[-45,-11],[-26,22],[-100,-35],[-72,-17]],[[83645,39918,0],[-24,-13]],[[83557,39857,0],[-108,-55],[-73,-28]],[[83376,39774,0],[-16,0],[-10,1]],[[83350,39775,0],[-26,-10],[-49,-6]],[[83275,39759,0],[-17,-13],[-50,-15],[-45,-6],[-180,-37],[-14,99],[-101,-74]],[[82868,39713,0],[-15,30]],[[82853,39743,0],[-6,38],[-6,76]],[[82841,39857,0],[-5,61],[-11,117]],[[82825,40035,0],[-6,69],[0,9]],[[82819,40113,0],[-1,14],[-2,12]],[[82816,40139,0],[2,34]],[[82818,40173,0],[8,34],[2,56]],[[82828,40263,0],[-1,74]],[[82827,40337,0],[-5,38],[-14,71]],[[82808,40446,0],[-17,87],[-3,46],[-1,14]],[[82787,40593,0],[-2,39]],[[82785,40632,0],[-25,22]],[[82760,40654,0],[-51,112]],[[82709,40766,0],[-8,48],[-7,35]],[[82694,40849,0],[-7,34],[-1,21],[5,25]],[[82691,40929,0],[4,22],[21,63],[15,36]],[[82731,41050,0],[26,65]],[[82757,41115,0],[14,32],[36,113],[39,125]],[[82846,41385,0],[5,-1],[1,0],[49,234]],[[82901,41618,0],[6,35],[15,41]],[[82922,41694,0],[1,38]],[[82923,41732,0],[-7,0],[-1,22],[33,14],[27,-1],[78,7],[94,-6],[137,4],[56,-1],[78,-4],[54,-3],[80,-8],[31,-4],[64,-25],[44,-19]],[[84821,44111,0],[-38,-102],[-7,-14],[-13,-19],[-14,-11],[-19,-8],[-34,-13],[-27,-7],[-25,-14],[-9,-12],[-7,-14],[-22,-68],[-8,-26],[-112,-288],[-5,-13],[-1,-11],[2,-8],[3,-6],[6,-10]],[[84491,43467,0],[-28,-49]],[[84463,43418,0],[-250,-339]],[[84213,43079,0],[-89,-123],[-121,-167],[-84,-115],[-15,-14],[2,-5]],[[83906,42655,0],[-70,-446]],[[83836,42209,0],[-5,-167],[-61,-129],[-81,-169]],[[83689,41744,0],[-15,-53],[-38,21],[-100,17],[-184,13],[-294,3],[-153,-12]],[[82905,41733,0],[-22,1],[-25,0],[-26,2]],[[82832,41736,0],[-4,58]],[[82828,41794,0],[-2,24]],[[82826,41818,0],[0,13],[-6,116]],[[82820,41947,0],[-1,12]],[[82819,41959,0],[18,37],[16,47],[21,156],[-42,115],[-16,6],[-39,73],[-13,57],[7,18],[-3,37],[-3,36],[4,57],[13,69],[-1,41]],[[82781,42708,0],[0,14],[-6,134]],[[82775,42856,0],[-1,3],[-3,8]],[[82771,42867,0],[-11,14]],[[82760,42881,0],[-10,8],[-14,5],[-14,-1]],[[82722,42893,0],[-47,-2],[-24,-2]],[[82651,42889,0],[-131,-9]],[[82520,42880,0],[-2,-8],[-23,-51],[-10,-34],[-46,-9],[-33,-4],[-24,1],[-25,2],[-10,4],[-32,7],[-53,22],[-47,18],[-35,14],[-24,6],[-87,-2],[-43,18],[-13,-1],[-13,13],[5,112],[7,9],[13,176],[33,90],[32,57],[42,32],[1,12],[42,46]],[[82175,43410,0],[10,-3]],[[82185,43407,0],[28,68]],[[82213,43475,0],[41,76],[-7,3],[12,27],[128,256],[79,121],[229,344],[161,271]],[[82856,44573,0],[90,153]],[[82946,44726,0],[140,177]],[[83086,44903,0],[179,219],[16,0],[23,50],[77,136],[20,15],[68,91]],[[83469,45414,0],[113,155]],[[83582,45569,0],[49,69]],[[83631,45638,0],[44,61],[93,89],[22,-13],[131,-77],[230,-107],[-47,-67],[14,-26],[-32,-36],[-33,-79],[-23,-88],[-9,-47],[-3,-85],[43,-144],[-103,-26],[-1,-32],[30,-49],[18,-67],[-5,-40],[122,-90],[18,11],[78,64],[36,-28],[42,-20],[11,-4],[98,-65],[10,8],[6,31],[16,44],[136,-17],[44,4],[21,-223],[86,-5],[24,-21],[12,-38],[-11,-54],[1,-45],[47,-44],[46,-63],[43,-22],[31,-10],[46,11],[9,-11],[12,-15],[-31,-44],[-132,-48]],[[83582,45569,0],[-74,-100],[-39,-55]],[[83086,44903,0],[-56,-70],[-47,-61],[-37,-46]],[[82946,44726,0],[-15,-26],[-75,-127]],[[82213,43475,0],[-7,-17],[-21,-51]],[[82175,43410,0],[-121,29],[0,7],[-95,34],[-6,-17]],[[81953,43463,0],[-124,25],[-112,30],[-46,58],[-57,79]],[[81614,43655,0],[-23,57],[-3,9]],[[81588,43721,0],[-84,265],[-39,300],[-4,79],[22,68],[35,96],[43,157],[21,66],[62,143],[49,138]],[[81693,45033,0],[37,135],[4,17]],[[81734,45185,0],[19,91]],[[81753,45276,0],[2,103],[1,10]],[[81756,45389,0],[9,63],[9,12],[3,14],[-18,52],[-20,37],[-2,21],[3,28]],[[81740,45616,0],[1,9],[5,43]],[[81746,45668,0],[-25,121],[-34,181]],[[81687,45970,0],[-1,4],[-12,170],[-2,14]],[[81672,46158,0],[-4,32],[-4,31]],[[81664,46221,0],[-8,17]],[[81656,46238,0],[-44,94],[-14,30]],[[81598,46362,0],[118,-38],[139,-12],[227,22],[59,6],[100,15],[44,-1],[7,27],[61,11],[49,70]],[[82402,46462,0],[110,-58],[83,-48],[311,-107],[83,-65],[121,-67],[121,-65],[69,-33],[59,-65],[13,-15],[7,-18],[12,-30],[7,-19],[72,-106],[28,4],[27,-53],[106,-79]],[[81598,46362,0],[-3,1],[-21,6],[-45,12],[-171,45]],[[81358,46426,0],[-25,-3],[-3,-1]],[[81330,46422,0],[-123,-21],[-59,-8],[-75,-10],[-105,-1],[-53,-9],[-30,0],[-53,19],[-11,0],[-9,0],[-3,-16],[-45,-44]],[[80764,46332,0],[-51,18],[-17,6],[0,36],[-3,45],[-5,36],[-29,98],[-18,54],[-8,37],[-1,1],[-37,99],[-13,35],[-22,61],[-7,43],[7,32],[10,26],[15,30],[36,37],[58,47],[50,44],[11,9],[87,82],[53,49],[30,28],[161,138],[14,12],[33,29],[-28,51]],[[81090,47515,0],[-4,7]],[[81086,47522,0],[34,33]],[[81120,47555,0],[206,192]],[[81326,47747,0],[8,8]],[[81334,47755,0],[5,4],[64,71],[89,98],[52,56],[225,233]],[[81769,48217,0],[81,85],[24,17]],[[81874,48319,0],[44,-29],[107,-70],[97,-89],[34,-35],[82,-63],[94,-44],[151,-118],[1,-13],[88,-79],[98,-113],[24,-27],[-217,-165],[131,-150],[20,-24],[58,-46],[45,-58],[38,-42],[9,-26],[2,-30],[-7,-27],[-17,-31],[-22,-24],[-26,-21],[-26,-21],[-65,-53],[-70,-97],[-53,-122],[15,-26],[24,-34],[-79,-88],[-48,-86],[-4,-6]],[[80755,51224,0],[30,5],[21,4],[10,2],[87,-36],[12,-11],[115,-44],[79,-30],[6,-14],[7,-15],[60,-25],[51,-22],[0,-6],[105,-63],[16,-9],[63,-38],[34,-20],[16,-10],[3,-1],[80,-31],[2,-1],[37,-13],[26,-3],[68,-7],[61,-7],[98,9],[20,0],[17,-3],[24,-12],[21,-4],[2,0],[45,-2],[89,7],[10,1],[197,16],[43,-9],[2,0],[16,0],[40,-1],[102,-2],[30,-1],[16,0],[27,-1],[9,0],[41,1]],[[82593,50828,0],[49,0],[86,-292],[38,-132],[41,-141],[-128,32]],[[82679,50295,0],[-6,1],[-57,-122]],[[82616,50174,0],[-36,-75],[-43,-99],[-95,-71],[-103,-117],[-14,-98],[230,-317],[49,-62],[62,-69],[160,-45],[33,7],[4,-34],[19,-11],[16,20],[97,-24],[-244,-236]],[[82751,48943,0],[120,-114],[-247,-274],[-134,-34],[-160,-53],[-298,-100],[-105,-22]],[[81927,48346,0],[-52,-27],[-1,0]],[[81874,48319,0],[-105,-102]],[[81769,48217,0],[-226,-233],[-67,-74],[-138,-151],[-4,-4]],[[81334,47755,0],[-244,-239],[-1,-1],[0,1],[-51,93],[-55,101]],[[80983,47710,0],[-51,104],[-13,25]],[[80919,47839,0],[-19,37],[-52,99]],[[80848,47975,0],[-7,35],[-35,88]],[[80806,48098,0],[-25,68]],[[80781,48166,0],[-24,83],[-64,139]],[[80693,48388,0],[-18,0],[-9,1]],[[80666,48389,0],[-35,1],[-24,1]],[[80607,48391,0],[-17,0],[-31,1],[-179,3],[-21,3],[-102,12],[-6,1]],[[80251,48411,0],[-45,11],[-70,18],[-65,16]],[[80071,48456,0],[-91,26],[-4,1]],[[79976,48483,0],[-44,7],[-20,3]],[[79912,48493,0],[-64,24],[-24,10]],[[79824,48527,0],[-16,7],[-57,25]],[[79751,48559,0],[-50,22]],[[79701,48581,0],[-21,10],[-118,56]],[[79562,48647,0],[-42,21],[-146,72]],[[79374,48740,0],[-2,1],[131,264],[159,326],[15,29],[37,75],[45,88],[190,381],[12,23],[95,167],[120,212],[35,66]],[[80211,50372,0],[156,301]],[[80367,50673,0],[115,218],[1,4],[131,280],[24,51],[27,12],[5,-10],[7,-7],[1,-1],[19,-4],[17,0],[41,8]],[[73988,24456,0],[3,-14]],[[73991,24442,0],[-28,-43],[-41,-64],[-49,-72]],[[73873,24263,0],[-88,-138]],[[73785,24125,0],[-59,-92],[-4,-6],[-33,-52]],[[73689,23975,0],[22,-9],[48,-16],[6,-3]],[[73765,23947,0],[-13,-24]],[[73752,23923,0],[-35,-56],[-66,-108]],[[73651,23759,0],[-78,-126],[-69,-112],[25,-13],[-74,-116]],[[73455,23392,0],[-71,-115]],[[73384,23277,0],[-29,-44]],[[73355,23233,0],[-63,-99]],[[73292,23134,0],[-21,-42],[-40,-107],[-47,-132],[-32,-88],[-34,-95],[-37,-101],[-37,-103],[-38,-104],[-38,-104],[-45,-120],[-62,-171]],[[72861,21967,0],[-119,48],[-30,-87],[0,-1],[0,-1]],[[72712,21926,0],[-1,-1]],[[72711,21925,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0]],[[72694,21906,0],[-1,-1]],[[72693,21905,0],[-1,-1]],[[72692,21904,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1]],[[72683,21899,0],[-1,-1]],[[72682,21898,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[72670,21896,0],[-1,-1]],[[72669,21895,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-3,1]],[[72644,21897,0],[-260,101]],[[72384,21998,0],[-2,2]],[[72382,22000,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1]],[[72380,22006,0],[-1,1]],[[72379,22007,0],[0,1],[0,1],[0,1]],[[72379,22010,0],[0,2]],[[72379,22012,0],[0,1]],[[72379,22013,0],[1,1]],[[72380,22014,0],[0,1],[0,1],[54,119],[-52,54],[-61,65],[-59,20],[-16,6]],[[72246,22280,0],[-4,-8]],[[72242,22272,0],[-415,152],[-18,8]],[[71809,22432,0],[-400,184]],[[71409,22616,0],[93,272],[79,227],[9,26]],[[71590,23141,0],[76,220]],[[71666,23361,0],[59,177],[16,51],[49,159],[94,257],[61,139],[52,151],[44,130],[43,126],[46,136],[38,113],[17,46],[33,62],[50,98],[32,62],[15,26]],[[72315,25094,0],[32,13],[32,-9],[73,-23],[135,-40],[137,-40],[132,-39],[132,-40],[132,-38],[128,-38],[128,-37],[81,-24]],[[73457,24779,0],[14,-28],[13,-24],[62,-52],[37,10],[9,3],[37,-22],[65,-37],[41,-24],[205,-120],[48,-29]],[[71666,23361,0],[-2,-6],[-74,-214]],[[71409,22616,0],[-5,-16],[-21,-58]],[[71383,22542,0],[-263,50]],[[71120,22592,0],[-349,67],[-110,21]],[[70661,22680,0],[-278,52],[-243,48]],[[70140,22780,0],[-67,12],[-126,25]],[[69947,22817,0],[39,177],[-1,44],[48,257],[18,61],[3,12],[10,61]],[[70064,23429,0],[65,-11],[13,75],[0,1],[1,0],[0,1],[1,2],[0,1],[2,2],[0,1],[1,0]],[[70147,23501,0],[1,2]],[[70148,23503,0],[1,1]],[[70149,23504,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0]],[[70168,23509,0],[31,-3]],[[70199,23506,0],[9,50]],[[70208,23556,0],[9,52]],[[70217,23608,0],[-31,6]],[[70186,23614,0],[-1,0],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[13,71],[28,170],[6,37],[6,32],[2,10],[6,42],[12,89],[6,36],[11,87],[38,282],[5,42],[1,11],[12,53],[43,204],[14,65],[20,94],[2,13],[26,134],[30,142],[13,73],[12,63],[1,5],[1,4],[1,6],[2,11],[-11,79]],[[70468,25494,0],[41,-1],[42,-1],[253,-6],[260,-5],[45,-3],[15,0],[28,-6],[42,-10],[74,-19],[80,-20],[45,-11],[72,-18],[174,-44],[163,-41]],[[71802,25309,0],[49,-12],[62,-16]],[[71913,25281,0],[119,-29],[103,-27],[89,-22],[104,-26]],[[72328,25177,0],[-4,-23],[-9,-60]],[[73726,28439,0],[64,-49],[57,-43]],[[73847,28347,0],[-179,-23],[-121,-22]],[[73547,28302,0],[-53,-9],[-9,-1]],[[73485,28292,0],[-46,-17]],[[73439,28275,0],[-29,-11]],[[73410,28264,0],[-13,-4]],[[73397,28260,0],[-19,3]],[[73378,28263,0],[-24,-15]],[[73354,28248,0],[-6,-8]],[[73348,28240,0],[-86,-35],[-176,-71],[-9,-4],[-8,-5],[-118,-72],[-133,-96],[-212,-156]],[[72606,27801,0],[-175,-129],[-34,-24]],[[72397,27648,0],[-194,-147]],[[72203,27501,0],[-55,-41],[-65,-55],[-71,-65],[-25,-20],[-107,-85],[-86,-70],[-26,21],[-100,-76],[-91,-68],[-122,-92],[-101,-76],[-29,-22],[-20,-15],[-20,-15],[-8,-6]],[[71277,26816,0],[-4,-2]],[[71273,26814,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0]],[[71267,26813,0],[-1,0],[-1,0]],[[71265,26813,0],[-1,-1]],[[71264,26812,0],[-1,0],[-1,0],[-1,0]],[[71261,26812,0],[-2,-1]],[[71259,26811,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[71252,26811,0],[-1,0],[-1,0],[-2,0]],[[71248,26811,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[71241,26811,0],[-1,1]],[[71240,26812,0],[-1,0],[-1,0],[-1,0]],[[71237,26812,0],[-2,1]],[[71235,26813,0],[-1,0],[-1,0]],[[71233,26813,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0]],[[71223,26816,0],[-1,1],[-1,0]],[[71221,26817,0],[-1,0]],[[71220,26817,0],[-1,1],[-1,0]],[[71218,26818,0],[-1,0]],[[71217,26818,0],[-1,1],[-1,1],[-1,1]],[[71214,26821,0],[-83,50],[-107,64],[-10,7],[-96,57]],[[70918,26999,0],[40,39],[92,92]],[[71050,27130,0],[97,89],[33,35],[72,70],[148,142],[50,47],[103,99],[118,113],[25,26],[76,74],[78,76],[-2,2],[77,75],[28,26],[45,42],[69,68],[120,116],[26,26],[19,-16],[203,210],[-5,34],[-1,12]],[[72429,28496,0],[3,15],[26,-4],[28,4],[37,35],[20,19],[71,70],[22,19],[35,29],[19,18],[56,49],[77,72],[96,86],[96,87],[4,29]],[[73019,29024,0],[73,-68]],[[73092,28956,0],[3,-33],[29,-21]],[[73124,28902,0],[78,-60]],[[73202,28842,0],[59,-46],[34,-25]],[[73295,28771,0],[81,-62]],[[73376,28709,0],[25,-19],[103,-78]],[[73504,28612,0],[73,-56],[69,-54],[80,-63]],[[70918,26999,0],[-12,-10],[-41,-44],[-51,-64],[-35,-49],[-17,-23],[-61,-80],[-77,-101],[-84,-109],[-90,-101]],[[70450,26418,0],[-32,-39]],[[70418,26379,0],[8,19],[-8,-19]],[[70418,26379,0],[-6,-7]],[[70412,26372,0],[-48,-61]],[[70364,26311,0],[-55,-65]],[[70309,26246,0],[-15,-16]],[[70294,26230,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1]],[[70289,26223,0],[-1,-1]],[[70288,26222,0],[-1,0],[0,-2],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0]],[[70277,26211,0],[-1,-1]],[[70276,26210,0],[0,-1],[-1,-1]],[[70275,26208,0],[-1,-1]],[[70274,26207,0],[-1,-1]],[[70273,26206,0],[-1,-1]],[[70272,26205,0],[-1,-1]],[[70271,26204,0],[-2,-1]],[[70269,26203,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0]],[[70265,26199,0],[-1,-2]],[[70264,26197,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1]],[[70260,26193,0],[-1,-1]],[[70259,26192,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1]],[[70252,26186,0],[-1,-1]],[[70251,26185,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0]],[[70244,26180,0],[-1,-1]],[[70243,26179,0],[0,-1],[-1,0],[-1,-1]],[[70241,26177,0],[-1,-1]],[[70240,26176,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0]],[[70235,26173,0],[-1,-1]],[[70234,26172,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0]],[[70230,26169,0],[-1,-1]],[[70229,26168,0],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0]],[[70211,26155,0],[-1,-1]],[[70210,26154,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1]],[[70189,26142,0],[-1,-1]],[[70188,26141,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0]],[[70119,26112,0],[-1,-1]],[[70118,26111,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0]],[[70103,26107,0],[-1,-2]],[[70102,26105,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[70058,26097,0],[-1,-1]],[[70057,26096,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,0]],[[70047,26095,0],[-1,-1]],[[70046,26094,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[69946,26094,0],[-1,1]],[[69945,26095,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[69864,26104,0],[-1,1]],[[69863,26105,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[69858,26105,0],[-1,2]],[[69857,26107,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0]],[[69837,26109,0],[-1,1]],[[69836,26110,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0]],[[69820,26113,0],[-1,1]],[[69819,26114,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-206,44]],[[69599,26161,0],[-205,44]],[[69394,26205,0],[-22,4],[-113,22]],[[69259,26231,0],[-92,19]],[[69167,26250,0],[-75,11],[-82,10],[-7,0],[-162,9]],[[68841,26280,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,2],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[0,1],[1,0],[0,1],[1,2],[1,0],[0,1],[1,1],[0,1],[1,0],[1,2],[1,2],[1,1],[0,1],[0,1],[1,1],[1,2],[6,29]],[[68901,26352,0],[31,139]],[[68932,26491,0],[26,123]],[[68958,26614,0],[23,105]],[[68981,26719,0],[25,127],[3,15],[26,117],[1,10]],[[69036,26988,0],[-19,3]],[[69017,26991,0],[15,192],[1,16],[23,0]],[[69056,27199,0],[-1,190]],[[69055,27389,0],[0,3],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,2],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-142,32],[-104,75],[-62,45],[-75,54],[-102,72],[-66,3]],[[68436,27704,0],[99,55],[164,91],[37,20],[60,30],[85,43],[104,51],[53,26],[159,78],[4,2]],[[69201,28100,0],[68,33],[82,40]],[[69351,28173,0],[24,11],[21,10],[37,19],[116,57],[-38,53],[-12,16]],[[69499,28339,0],[39,198],[29,143],[30,147],[29,19],[77,-15],[105,-19],[104,-16],[130,-17],[175,-22],[95,-14]],[[70312,28743,0],[-7,-59],[17,-59],[84,-10],[7,-16],[6,-12],[-29,-74],[-8,-30],[6,-28],[6,-14],[201,-190],[15,-16],[-22,-59],[-26,-124],[-5,-18],[-39,-167],[24,-50],[105,-119],[-8,-27],[-1,-5],[-25,-91],[-31,-109],[-30,-105],[138,-67],[11,-4],[39,-19],[14,-7],[97,-45],[97,-44],[102,-45]],[[69055,27389,0],[0,-37],[1,-153]],[[69017,26991,0],[8,-1],[11,-2]],[[68981,26719,0],[-22,-103],[-1,-2]],[[68958,26614,0],[-18,-82],[-8,-41]],[[68932,26491,0],[-12,-55],[-19,-84]],[[68841,26280,0],[-11,0],[-64,-2],[-41,-1],[-30,-2],[-62,-3],[-133,-12],[-76,-8],[-54,-6],[-28,-3],[-103,-10],[-19,-1],[-2,-1],[-129,-9]],[[68089,26222,0],[-61,-8],[-71,-8],[-131,-13],[-42,-4],[-77,-9],[-12,0],[-40,-4],[-11,-2],[-45,-5],[-108,-11],[-53,-5],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-7,-2],[-55,-11],[-37,-8],[-75,-20],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-31,-11],[-13,-5]],[[66892,26017,0],[-2,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,2],[-1,0],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,0],[0,2],[-1,2],[0,2],[-1,0],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,2],[0,2],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[1,2],[0,1],[1,1],[0,2],[22,41],[-53,39]],[[66787,26185,0],[-8,2],[-30,6]],[[66749,26193,0],[-34,19],[-46,14]],[[66669,26226,0],[-32,13]],[[66637,26239,0],[-41,12],[-36,14],[-10,4],[-48,16],[-38,40],[-6,27],[-27,20],[-9,2],[-10,-4],[-13,5],[-12,6],[-44,21],[-45,22],[-56,-69],[-13,13],[-9,183]],[[66220,26551,0],[1,72],[-1,1],[-2,2],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,3],[0,1],[-1,0],[0,1],[0,3],[-1,2],[0,1],[-1,4],[0,1],[0,1],[-1,4],[0,5],[0,1],[0,2],[0,1],[-1,3],[0,1],[0,2],[0,3],[0,10],[0,1],[0,3],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[0,2],[0,5],[0,1],[1,3],[1,3],[0,1],[0,1],[0,1],[1,4],[0,1],[0,1],[2,12],[12,15],[78,96],[79,97],[66,80],[15,17],[4,7],[60,71],[15,19],[3,3],[19,21],[21,20],[19,18],[20,15],[13,8],[26,16],[13,7],[34,18],[71,34],[56,28],[30,15],[74,36],[25,10],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,1],[2,0],[1,1],[2,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,1],[2,0],[1,1],[2,0],[1,1],[1,0],[1,0],[2,0],[3,0],[1,1],[2,0],[1,0],[3,0],[1,1],[1,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[5,0],[1,1],[4,0],[1,1],[6,0],[1,0],[5,0],[1,1],[8,0],[1,0],[0,1],[11,0],[1,0],[44,0],[1,0],[11,0],[1,0],[0,-1],[7,0],[1,-1],[6,0],[1,0],[1,0],[3,0],[39,-7],[62,-18],[1,0],[123,-3],[63,3],[192,41],[46,9],[11,2],[9,3],[78,14],[182,35],[92,24],[11,3],[42,11],[67,26],[45,17]],[[68214,27596,0],[30,13],[38,16]],[[68282,27625,0],[58,27],[1,1]],[[68341,27653,0],[30,16],[17,9]],[[68388,27678,0],[48,26]],[[66606,28366,0],[196,-228]],[[66802,28138,0],[164,125]],[[66966,28263,0],[140,100]],[[67106,28363,0],[11,7],[14,11]],[[67131,28381,0],[24,26]],[[67155,28407,0],[18,23],[18,32],[21,-2],[56,-7]],[[67268,28453,0],[173,-29]],[[67441,28424,0],[143,-23],[10,-4],[55,-19],[8,-3],[65,-33],[59,-11],[11,-24]],[[67792,28307,0],[192,-375]],[[67984,27932,0],[28,-57]],[[68012,27875,0],[112,-223]],[[68124,27652,0],[33,-11],[34,12]],[[68191,27653,0],[18,-46]],[[68209,27607,0],[5,-11]],[[66220,26551,0],[0,-5]],[[66220,26546,0],[-1,-1]],[[66219,26545,0],[0,-3]],[[66219,26542,0],[-1,-2]],[[66218,26540,0],[0,-1],[0,-1]],[[66218,26538,0],[0,-4]],[[66218,26534,0],[0,-1]],[[66218,26533,0],[-1,-3]],[[66217,26530,0],[0,-1],[0,-1]],[[66217,26528,0],[0,-3]],[[66217,26525,0],[0,-1],[-1,-1]],[[66216,26523,0],[0,-3]],[[66216,26520,0],[0,-2]],[[66216,26518,0],[-1,-3]],[[66215,26515,0],[0,-2]],[[66215,26513,0],[-1,-5]],[[66214,26508,0],[-1,-4]],[[66213,26504,0],[0,-1]],[[66213,26503,0],[-1,-5]],[[66212,26498,0],[0,-5]],[[66212,26493,0],[-1,0],[0,-2]],[[66211,26491,0],[-1,-5]],[[66210,26486,0],[-1,-4]],[[66209,26482,0],[0,-2],[0,-1]],[[66209,26479,0],[-1,-4]],[[66208,26475,0],[-1,-1],[0,-1]],[[66207,26473,0],[-2,-5]],[[66205,26468,0],[0,-1],[0,-1],[0,-1]],[[66205,26465,0],[-1,-3]],[[66204,26462,0],[-1,-3]],[[66203,26459,0],[-1,-3]],[[66202,26456,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[66201,26452,0],[0,-3]],[[66201,26449,0],[-1,-2]],[[66200,26447,0],[-2,-7]],[[66198,26440,0],[-1,-1],[0,-1],[0,-1]],[[66197,26437,0],[-1,-4]],[[66196,26433,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1]],[[66189,26413,0],[-1,-2]],[[66188,26411,0],[-1,-2],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[66180,26391,0],[-1,-3]],[[66179,26388,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-2],[-1,0]],[[66174,26378,0],[-1,-3]],[[66173,26375,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[66160,26346,0],[-1,-1]],[[66159,26345,0],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[66152,26331,0],[-1,-1]],[[66151,26330,0],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1]],[[66149,26325,0],[-1,-2]],[[66148,26323,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1]],[[66143,26314,0],[-1,-2]],[[66142,26312,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[66139,26307,0],[-1,-1]],[[66138,26306,0],[0,-2],[-1,0],[0,-2]],[[66137,26302,0],[-2,-1]],[[66135,26301,0],[0,-1],[-1,-1],[0,-1]],[[66134,26298,0],[-1,-2]],[[66133,26296,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1]],[[66129,26291,0],[-1,-1]],[[66128,26290,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1]],[[66125,26284,0],[-1,-2]],[[66124,26282,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2]],[[66121,26276,0],[-1,-1]],[[66120,26275,0],[-1,-1]],[[66119,26274,0],[-2,-1]],[[66117,26273,0],[0,-2],[-1,0],[0,-2]],[[66116,26269,0],[-1,-1]],[[66115,26268,0],[-1,-2]],[[66114,26266,0],[-1,-1]],[[66113,26265,0],[-1,-1],[-1,-1],[0,-2]],[[66111,26261,0],[-2,-1]],[[66109,26260,0],[0,-1],[-1,-1],[-1,-2]],[[66107,26256,0],[-2,-1]],[[66105,26255,0],[0,-1],[-1,-1],[-1,-2]],[[66103,26251,0],[-1,-1]],[[66102,26250,0],[-1,-1]],[[66101,26249,0],[-1,-1]],[[66100,26248,0],[0,-2],[-1,-1],[-163,-215]],[[65936,26030,0],[-5,-4]],[[65931,26026,0],[-6,-4]],[[65925,26022,0],[-1,0]],[[65924,26022,0],[-3,-2]],[[65921,26020,0],[-1,0]],[[65920,26020,0],[-2,-1]],[[65918,26019,0],[-1,0]],[[65917,26019,0],[-2,-2]],[[65915,26017,0],[-1,0]],[[65914,26017,0],[-2,-1]],[[65912,26016,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1]],[[65901,26013,0],[-2,0]],[[65899,26013,0],[-1,-1]],[[65898,26012,0],[-2,0]],[[65896,26012,0],[-1,0]],[[65895,26012,0],[-4,0]],[[65891,26012,0],[-1,-1]],[[65890,26011,0],[-4,0]],[[65886,26011,0],[-1,-1]],[[65885,26010,0],[-3,0]],[[65882,26010,0],[-73,11],[-66,13],[1,-7],[2,-19],[-44,-35],[-32,-28],[-67,-61],[-25,-22]],[[65578,25862,0],[-21,-16]],[[65557,25846,0],[-1,-1],[-1,0]],[[65555,25845,0],[-12,-9]],[[65543,25836,0],[-1,0]],[[65542,25836,0],[-8,-5]],[[65534,25831,0],[-1,0]],[[65533,25831,0],[-6,-5]],[[65527,25826,0],[-1,0]],[[65526,25826,0],[-5,-3]],[[65521,25823,0],[-6,-3]],[[65515,25820,0],[-4,-3]],[[65511,25817,0],[-1,0]],[[65510,25817,0],[-4,-2]],[[65506,25815,0],[-1,0],[0,-1]],[[65505,25814,0],[-4,-2]],[[65501,25812,0],[-128,-51],[-5,30],[-108,-2],[-27,3],[-91,14],[-29,6]],[[65113,25812,0],[-3,2]],[[65110,25814,0],[-1,1],[-1,0]],[[65108,25815,0],[-2,1]],[[65106,25816,0],[-1,0]],[[65105,25816,0],[-5,4]],[[65100,25820,0],[-3,2]],[[65097,25822,0],[-3,3]],[[65094,25825,0],[-1,1]],[[65093,25826,0],[-4,3]],[[65089,25829,0],[0,1]],[[65089,25830,0],[-2,2]],[[65087,25832,0],[-1,1]],[[65086,25833,0],[-1,2]],[[65085,25835,0],[0,1]],[[65085,25836,0],[-2,1]],[[65083,25837,0],[0,1],[-1,1],[0,2],[-1,0],[0,1]],[[65081,25842,0],[-1,2]],[[65080,25844,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1]],[[65078,25850,0],[-1,2]],[[65077,25852,0],[0,1],[0,1],[-1,1]],[[65076,25855,0],[0,4]],[[65076,25859,0],[-1,1]],[[65075,25860,0],[0,4]],[[65075,25864,0],[0,5]],[[65075,25869,0],[0,3]],[[65075,25872,0],[1,5]],[[65076,25877,0],[3,14]],[[65079,25891,0],[-3,1]],[[65076,25892,0],[-1,0]],[[65075,25892,0],[-2,2]],[[65073,25894,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[65055,25899,0],[-2,0]],[[65053,25899,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1]],[[65047,25902,0],[-2,0]],[[65045,25902,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[65040,25903,0],[-3,0]],[[65037,25903,0],[-1,1]],[[65036,25904,0],[-2,0]],[[65034,25904,0],[-1,1],[-1,0],[-1,0]],[[65031,25905,0],[-2,0]],[[65029,25905,0],[-1,1]],[[65028,25906,0],[-2,0]],[[65026,25906,0],[-2,1]],[[65024,25907,0],[-2,0]],[[65022,25907,0],[-1,0]],[[65021,25907,0],[-2,0]],[[65019,25907,0],[-1,1]],[[65018,25908,0],[-3,0]],[[65015,25908,0],[-1,1]],[[65014,25909,0],[-2,0]],[[65012,25909,0],[-1,0]],[[65011,25909,0],[-4,0]],[[65007,25909,0],[-1,1]],[[65006,25910,0],[-3,0]],[[65003,25910,0],[-1,1]],[[65002,25911,0],[-5,0]],[[64997,25911,0],[-1,0]],[[64996,25911,0],[-4,0]],[[64992,25911,0],[-1,1]],[[64991,25912,0],[-4,0]],[[64987,25912,0],[-2,1]],[[64985,25913,0],[-6,0]],[[64979,25913,0],[-1,0]],[[64978,25913,0],[-8,0]],[[64970,25913,0],[-1,1]],[[64969,25914,0],[-38,0]],[[64931,25914,0],[-3,0]],[[64928,25914,0],[-2,-1]],[[64926,25913,0],[-7,0]],[[64919,25913,0],[-1,0]],[[64918,25913,0],[-6,0]],[[64912,25913,0],[-1,-1]],[[64911,25912,0],[-6,0]],[[64905,25912,0],[-1,-1]],[[64904,25911,0],[-5,0]],[[64899,25911,0],[-1,0]],[[64898,25911,0],[-5,0]],[[64893,25911,0],[-1,-1]],[[64892,25910,0],[-5,0]],[[64887,25910,0],[-1,-1]],[[64886,25909,0],[-4,0]],[[64882,25909,0],[-1,0]],[[64881,25909,0],[-4,0]],[[64877,25909,0],[-2,-1]],[[64875,25908,0],[-3,0]],[[64872,25908,0],[-1,-1]],[[64871,25907,0],[-4,0]],[[64867,25907,0],[-1,0]],[[64866,25907,0],[-4,0]],[[64862,25907,0],[-1,-1]],[[64861,25906,0],[-3,0]],[[64858,25906,0],[-1,-1]],[[64857,25905,0],[-3,0]],[[64854,25905,0],[-1,0]],[[64853,25905,0],[-4,0]],[[64849,25905,0],[-1,-1]],[[64848,25904,0],[-3,0]],[[64845,25904,0],[-1,-1]],[[64844,25903,0],[-2,0]],[[64842,25903,0],[-1,0]],[[64841,25903,0],[-4,0]],[[64837,25903,0],[-1,-1]],[[64836,25902,0],[-3,0]],[[64833,25902,0],[-1,0]],[[64832,25902,0],[-2,0]],[[64830,25902,0],[-1,-1]],[[64829,25901,0],[-2,0]],[[64827,25901,0],[-2,-1]],[[64825,25900,0],[-3,0]],[[64822,25900,0],[-30,45],[-71,9]],[[64721,25954,0],[37,82],[27,66]],[[64785,26102,0],[32,94]],[[64817,26196,0],[19,62]],[[64836,26258,0],[12,64]],[[64848,26322,0],[7,57],[0,76],[-7,45]],[[64848,26500,0],[-10,39]],[[64838,26539,0],[-10,27]],[[64828,26566,0],[-23,52]],[[64805,26618,0],[-80,145]],[[64725,26763,0],[-11,18],[-30,49],[-1,2]],[[64683,26832,0],[-1,1]],[[64682,26833,0],[0,1]],[[64682,26834,0],[-1,2]],[[64681,26836,0],[-1,1]],[[64680,26837,0],[-1,2]],[[64679,26839,0],[-1,1]],[[64678,26840,0],[-1,1]],[[64677,26841,0],[-1,2]],[[64676,26843,0],[-1,1]],[[64675,26844,0],[-1,1]],[[64674,26845,0],[-1,2]],[[64673,26847,0],[-1,1]],[[64672,26848,0],[0,1]],[[64672,26849,0],[-2,2]],[[64670,26851,0],[0,1],[-1,1],[-1,2]],[[64668,26855,0],[-1,1]],[[64667,26856,0],[-1,1]],[[64666,26857,0],[-1,1],[0,2]],[[64665,26860,0],[-2,1],[-1,1],[-1,2]],[[64661,26864,0],[0,1]],[[64661,26865,0],[-2,1]],[[64659,26866,0],[0,1]],[[64659,26867,0],[-1,2]],[[64658,26869,0],[-1,1]],[[64657,26870,0],[-2,2]],[[64655,26872,0],[0,1],[-2,2]],[[64653,26875,0],[0,1]],[[64653,26876,0],[-2,1],[-1,1],[-1,2]],[[64649,26880,0],[0,1]],[[64649,26881,0],[-2,2]],[[64647,26883,0],[-1,2]],[[64646,26885,0],[-1,1]],[[64645,26886,0],[-1,1]],[[64644,26887,0],[-2,2]],[[64642,26889,0],[0,1]],[[64642,26890,0],[-2,1],[0,2]],[[64640,26893,0],[-3,2]],[[64637,26895,0],[0,1]],[[64637,26896,0],[-1,1]],[[64636,26897,0],[-1,1]],[[64635,26898,0],[-2,3]],[[64633,26901,0],[-1,1]],[[64632,26902,0],[-2,2]],[[64630,26904,0],[0,1]],[[64630,26905,0],[-2,1]],[[64628,26906,0],[0,2]],[[64628,26908,0],[-45,44],[-80,71]],[[64503,27023,0],[-101,91]],[[64402,27114,0],[63,24]],[[64465,27138,0],[354,161]],[[64819,27299,0],[22,0],[14,16],[107,112]],[[64962,27427,0],[18,5]],[[64980,27432,0],[55,19],[31,26]],[[65066,27477,0],[90,27]],[[65156,27504,0],[18,13]],[[65174,27517,0],[106,10],[119,30]],[[65399,27557,0],[28,15],[105,34],[-261,333],[-19,23],[-18,15],[-17,8],[-21,12],[-21,7],[-28,4],[79,-7],[47,-4],[45,-1],[49,0],[47,3],[82,9],[24,6],[162,53],[-162,-11],[-16,12],[53,16],[53,18],[49,27]],[[65659,28129,0],[48,28]],[[65707,28157,0],[17,13],[19,12],[42,38]],[[65785,28220,0],[24,26]],[[65809,28246,0],[12,12],[30,40],[19,29]],[[65870,28327,0],[119,171]],[[65989,28498,0],[61,86],[54,79]],[[66104,28663,0],[13,18]],[[66117,28681,0],[59,-37]],[[66176,28644,0],[103,-66]],[[66279,28578,0],[286,-182]],[[66565,28396,0],[41,-30]],[[69351,28173,0],[-150,-73]],[[68388,27678,0],[-47,-25]],[[68341,27653,0],[-59,-28]],[[68282,27625,0],[-68,-29]],[[68209,27607,0],[-13,35],[-5,11]],[[68124,27652,0],[-55,111],[-48,92],[-9,20]],[[67984,27932,0],[-11,20],[-32,63],[-49,96],[-49,97],[-51,99]],[[67441,28424,0],[-160,28],[-13,1]],[[67155,28407,0],[-11,-12],[-13,-14]],[[67131,28381,0],[-25,-18]],[[67106,28363,0],[-21,-14],[-83,-60],[-36,-26]],[[66966,28263,0],[-84,-62],[-80,-63]],[[66802,28138,0],[-94,110],[-90,105],[-12,13]],[[66565,28396,0],[-9,5],[-125,80],[-111,71],[-41,26]],[[66279,28578,0],[-8,5],[-95,61]],[[66117,28681,0],[2,3]],[[66119,28684,0],[23,46],[27,51],[5,13],[12,31],[14,54],[4,51],[0,11],[1,43],[-1,26],[0,18],[1,24],[54,19],[12,7],[49,23],[76,40],[17,10],[95,64]],[[66508,29215,0],[5,5],[2,-3],[41,31],[49,38],[93,72],[-5,4],[12,10],[16,12],[13,12],[16,15],[39,39],[7,9],[32,33],[53,70],[13,17],[37,66],[25,48],[67,128],[8,14],[50,99],[1,39]],[[67082,29973,0],[101,16],[20,39],[51,96],[71,125]],[[67325,30249,0],[41,62]],[[67366,30311,0],[13,15]],[[67379,30326,0],[49,55]],[[67428,30381,0],[11,10]],[[67439,30391,0],[41,40]],[[67480,30431,0],[39,35]],[[67519,30466,0],[53,43]],[[67572,30509,0],[51,36]],[[67623,30545,0],[59,39],[55,31]],[[67737,30615,0],[98,47]],[[67835,30662,0],[16,6]],[[67851,30668,0],[52,20]],[[67903,30688,0],[19,8]],[[67922,30696,0],[-8,-26]],[[67914,30670,0],[48,-111]],[[67962,30559,0],[36,-86],[10,-22],[4,-16]],[[68012,30435,0],[18,-54]],[[68030,30381,0],[50,-79],[84,-129],[21,-1]],[[68185,30172,0],[54,-40],[-2,-39],[105,-119],[69,-80],[16,-18],[21,-25],[48,-60],[24,-15],[15,-6],[15,-2],[67,-87],[3,-21],[6,-13],[7,-13]],[[68633,29634,0],[25,-27]],[[68658,29607,0],[25,-30],[29,-38],[10,-12],[17,-24]],[[68739,29503,0],[29,-41],[16,-22]],[[68784,29440,0],[11,-15],[26,-43],[100,-165],[7,-12],[66,-108],[41,2],[42,-12],[9,-3],[12,-7],[9,-9],[19,-27],[5,-13],[3,-27],[-1,-9],[-7,-29],[-1,-8],[-13,-20],[-7,-10],[83,-142],[81,-134],[75,-129],[50,-84],[56,-97],[38,0],[11,0]],[[70312,28743,0],[7,52],[2,12]],[[70321,28807,0],[91,-11],[417,-48]],[[70829,28748,0],[550,-81]],[[71379,28667,0],[37,-3],[38,-4]],[[71454,28660,0],[125,-21]],[[71579,28639,0],[60,-18]],[[71639,28621,0],[430,-67]],[[72069,28554,0],[62,-7]],[[72131,28547,0],[231,-37]],[[72362,28510,0],[67,-14]],[[70054,30635,0],[2,-48]],[[70056,30587,0],[329,17],[-9,64],[48,5],[50,5],[62,1],[121,-3],[135,-1],[150,-2],[24,0],[151,-16]],[[71117,30657,0],[100,-11],[123,-13]],[[71340,30633,0],[-5,-42],[-1,-18],[-1,-34],[-1,-37],[-4,-47],[2,-41],[-3,-13],[2,-7],[3,-10],[-3,-18],[3,-11],[1,-38],[-1,-29],[-2,-17],[-6,-45],[-4,-47],[-3,-20],[-2,-12],[3,-5],[17,-30],[-6,-37],[-28,-111],[-92,25],[-71,16],[-59,8],[-39,-277],[-7,-45],[-22,-182],[-7,-57],[-117,9],[-19,-12],[-147,31]],[[70721,29480,0],[-156,34]],[[70565,29514,0],[-22,-1],[-29,-149],[-27,-141],[-15,-79],[-17,-94],[-40,-244],[-2,-10]],[[70413,28796,0],[-92,11]],[[68784,29440,0],[-45,63]],[[68658,29607,0],[-13,13],[-12,14]],[[68185,30172,0],[24,23],[-4,5],[46,55],[72,14],[4,-8],[47,15],[142,45],[30,9],[143,42],[75,22],[84,25],[242,68],[222,53],[172,41],[111,27],[28,10],[0,53],[99,40],[17,-3]],[[69739,30708,0],[138,-31]],[[69877,30677,0],[4,-29]],[[69881,30648,0],[2,-13],[46,-11],[8,-2],[117,13]],[[72636,30448,0],[11,-18],[2,-9],[7,-26],[14,-95],[-11,-21],[9,-175],[7,-46],[5,-88],[4,-82],[-22,-20],[0,-46],[34,-47],[-65,-118],[15,1]],[[72646,29658,0],[23,4]],[[72669,29662,0],[-4,-15],[-39,-39],[-34,-29],[-44,-39],[-31,-32],[-49,-49],[-25,-24],[41,-28]],[[72484,29407,0],[14,-11]],[[72498,29396,0],[95,-68],[106,-77],[103,-73],[217,-154]],[[72362,28510,0],[-72,12],[-153,24],[-6,1]],[[72069,28554,0],[-247,39],[-175,27],[-8,1]],[[71639,28621,0],[-46,14],[-14,4]],[[71579,28639,0],[-6,1],[-119,20]],[[71379,28667,0],[-23,4],[-527,77]],[[70829,28748,0],[-416,48]],[[70565,29514,0],[119,-25],[37,-9]],[[71340,30633,0],[1,16],[11,-1]],[[71352,30648,0],[621,-86]],[[71973,30562,0],[17,-3],[135,-19],[126,-18],[104,-14],[1,6],[36,-3],[69,-7],[95,-16],[50,-10],[30,-26],[0,-4]],[[75025,30787,0],[29,-221]],[[75054,30566,0],[35,-287],[0,-4],[1,-64],[-2,-194],[-4,-268],[-5,-195],[-1,-64],[-2,-12],[-1,-11]],[[75075,29467,0],[-10,-63],[-10,-59]],[[75055,29345,0],[-2,-12],[-8,-39],[-52,-238],[-18,-77]],[[74975,28979,0],[-6,-22],[-3,-11]],[[74966,28946,0],[-11,-29],[-9,-29],[-21,-62],[-33,-79],[-130,-274],[-22,-9],[-7,-19]],[[74733,28445,0],[-7,-18],[0,-1],[-1,0]],[[74725,28426,0],[-35,-8]],[[74690,28418,0],[-1,0],[-29,12]],[[74660,28430,0],[-7,4],[2,7]],[[74655,28441,0],[15,44],[-21,-12],[-5,-3],[-15,-6],[-27,-10],[-2,-1]],[[74600,28453,0],[-47,-11],[-19,-5]],[[74534,28437,0],[-15,-3],[-50,-9]],[[74469,28425,0],[-67,-9],[-555,-69]],[[73847,28347,0],[-57,44],[-64,48]],[[73504,28612,0],[-54,42],[-9,6],[-30,23],[-10,8],[-5,3],[-20,15]],[[73376,28709,0],[0,1],[-14,10],[-67,51]],[[73295,28771,0],[-34,26],[-59,45]],[[73124,28902,0],[-29,22],[0,1],[-3,32],[1,0],[110,103]],[[73203,29060,0],[44,40],[52,47]],[[73299,29147,0],[57,57],[44,45]],[[73400,29249,0],[3,-3],[33,34]],[[73436,29280,0],[-1,1],[-2,3],[20,20],[10,14],[7,10],[51,48],[30,28]],[[73551,29404,0],[5,-4],[98,95],[12,11],[20,20]],[[73686,29526,0],[131,125],[9,8]],[[73826,29659,0],[8,8],[64,61]],[[73898,29728,0],[31,40],[1,13]],[[73930,29781,0],[0,1],[31,36],[62,69]],[[74023,29887,0],[97,110],[98,111]],[[74218,30108,0],[31,34]],[[74249,30142,0],[100,114],[32,35],[5,5]],[[74386,30296,0],[0,1],[66,76],[11,12],[128,145]],[[74591,30530,0],[6,7],[130,146]],[[74727,30683,0],[16,19],[2,2],[3,4],[6,11],[88,185]],[[74842,30904,0],[11,12],[9,4],[6,1]],[[74868,30921,0],[11,2],[10,1],[7,-4],[12,-4],[16,-15],[84,26],[17,-140]],[[74386,30296,0],[-37,-41],[-100,-113]],[[74218,30108,0],[-98,-112],[-97,-109]],[[74023,29887,0],[-62,-70],[-31,-36]],[[73898,29728,0],[-72,-69]],[[73826,29659,0],[-140,-133]],[[73551,29404,0],[-29,-28],[-52,-49],[-16,-23],[-21,-21],[3,-3]],[[73400,29249,0],[-101,-102]],[[73299,29147,0],[-96,-87]],[[73203,29060,0],[-111,-104]],[[73092,28956,0],[-38,35],[-35,33]],[[72498,29396,0],[-3,3],[-11,8]],[[72669,29662,0],[-2,-1],[-21,-3]],[[72636,30448,0],[42,7],[22,3],[0,33],[12,83],[4,7],[-30,60],[-35,34],[-1,53],[-6,54],[-6,28],[-6,25],[-14,51],[-23,43],[29,32],[27,-9],[61,-16],[34,-3],[27,-3],[57,1],[55,1],[126,34],[17,3],[288,44],[28,-6]],[[73344,31007,0],[8,6],[10,2],[13,-3],[112,-73],[98,-58],[24,-20],[3,3],[57,-35],[13,-7],[69,-42],[47,-39],[43,-34],[5,-3],[38,-29],[178,-135],[74,-57],[0,-4],[23,-19],[3,4],[53,-41],[92,-70],[18,-13],[11,-7],[9,-7],[31,-21],[10,-9]],[[74382,27353,0],[77,-23]],[[74459,27330,0],[21,9]],[[74480,27339,0],[227,-56],[178,-44],[3,5],[180,-51]],[[75068,27193,0],[159,-54]],[[75227,27139,0],[18,-5]],[[75245,27134,0],[-97,-180],[-18,7]],[[75130,26961,0],[-7,-11],[-44,-83],[-36,-65],[-49,-91]],[[74994,26711,0],[-8,-15],[16,-6]],[[75002,26690,0],[-57,-117]],[[74945,26573,0],[-23,9],[-69,-127],[28,-11],[-73,-139]],[[74808,26305,0],[-53,-101],[-33,9],[-57,-141],[-40,-98],[-39,-94],[-69,-164],[-72,-170],[-56,-136],[-13,-30],[-57,-137]],[[74319,25243,0],[27,-11]],[[74346,25232,0],[-67,-169],[-59,-138]],[[74220,24925,0],[-56,-137],[-48,-114]],[[74116,24674,0],[-56,-130],[-26,-8]],[[74034,24536,0],[-19,-5],[-23,-7],[-4,-68]],[[73457,24779,0],[60,71],[22,62]],[[73539,24912,0],[7,24]],[[73546,24936,0],[32,97],[17,65],[45,153],[38,124],[25,84],[18,62],[23,81],[6,22],[22,75],[23,71]],[[73795,25770,0],[14,41],[19,60],[5,13],[41,118],[60,170],[31,84],[48,124],[4,13],[47,123],[16,45],[35,90],[6,17],[43,116],[-1,6],[-6,4]],[[74157,26794,0],[15,-2],[19,53],[28,76],[4,-1],[30,90],[4,10],[74,194],[51,139]],[[71214,26821,0],[3,-3]],[[71218,26818,0],[2,-1]],[[71221,26817,0],[2,-1]],[[71233,26813,0],[2,0]],[[71237,26812,0],[3,0]],[[71241,26811,0],[7,0]],[[71252,26811,0],[7,0]],[[71261,26812,0],[3,0]],[[71265,26813,0],[2,0]],[[71273,26814,0],[2,1],[2,1]],[[71277,26816,0],[-26,-18],[-57,-44],[28,-17],[10,-6],[10,-5],[32,-19],[18,-12],[9,-4],[18,-10],[34,-19],[102,-54],[124,-65],[192,-103],[29,-20],[16,-7],[131,-47],[13,-5],[134,-47],[113,-41],[54,-18],[27,-9],[190,-64],[21,-8],[78,-25],[195,-65],[105,-35],[123,-41],[115,-38],[92,-32],[60,-19]],[[73267,25919,0],[218,-61]],[[73485,25858,0],[273,-77],[37,-11]],[[73546,24936,0],[-1,-5],[-6,-19]],[[72315,25094,0],[13,83]],[[71913,25281,0],[-111,28]],[[70468,25494,0],[18,176]],[[70486,25670,0],[1,20]],[[70487,25690,0],[13,-2]],[[70500,25688,0],[4,28]],[[70504,25716,0],[4,26]],[[70508,25742,0],[17,109],[28,-8]],[[70553,25843,0],[2,10]],[[70555,25853,0],[2,11]],[[70557,25864,0],[7,24]],[[70564,25888,0],[16,68]],[[70580,25956,0],[23,88]],[[70603,26044,0],[9,33]],[[70612,26077,0],[48,43],[-4,18],[-23,50],[-3,7],[-12,22],[-14,29],[-10,20],[-144,152]],[[73485,25858,0],[-6,2],[-212,59]],[[72203,27501,0],[2,-4],[14,-26],[4,-7],[18,-34],[8,-15],[4,-6],[3,-5],[37,-36],[16,-11],[21,-13],[111,-62],[30,-10],[239,-74],[126,-38],[66,-21],[88,-28],[179,-55],[120,-37],[10,-3],[76,-22],[49,-19],[31,-13],[47,-14],[82,-23],[28,-7],[185,-49],[181,-38],[125,-25],[54,-12]],[[74658,28361,0],[2,-32]],[[74660,28329,0],[1,-5],[2,-4]],[[74663,28320,0],[-9,-40],[-17,-85]],[[74637,28195,0],[-17,-79],[-5,-25],[-18,-87]],[[74597,28004,0],[-15,-55],[-8,-29]],[[74574,27920,0],[-2,0],[-21,-78],[2,0]],[[74553,27842,0],[-31,-113],[-4,-15]],[[74518,27714,0],[-31,-101],[-6,0]],[[74481,27613,0],[-11,-29],[-24,-68]],[[74446,27516,0],[-30,-80]],[[74416,27436,0],[-34,-83]],[[72397,27648,0],[26,18],[30,22],[153,113]],[[73348,28240,0],[5,7],[1,1]],[[73378,28263,0],[4,-1],[15,-2]],[[73397,28260,0],[8,3],[5,1]],[[73439,28275,0],[27,10],[19,7]],[[73485,28292,0],[7,1],[55,9]],[[74469,28425,0],[50,8],[15,4]],[[74534,28437,0],[19,4],[47,12]],[[74600,28453,0],[2,0],[27,10],[15,6],[5,3],[21,12],[-15,-43]],[[74655,28441,0],[-2,-8]],[[74653,28433,0],[1,-17],[4,-55]],[[75906,32202,0],[21,9],[25,12]],[[75952,32223,0],[6,1],[4,1]],[[75962,32225,0],[20,-52],[13,-36],[37,-53],[93,-120],[7,-9],[74,-93],[-1,-3],[30,-61],[39,-77],[13,-32],[7,3],[17,-41],[-5,-2],[25,-56],[27,-82],[10,-31],[4,-14],[12,-36],[11,-59],[10,-54],[5,-35],[1,-12],[1,-8],[6,-48],[-6,-55],[-9,-29],[-7,-12],[-43,-69],[-17,-26],[-36,-62],[-29,-52]],[[76271,30909,0],[-22,-58],[-12,-31],[-35,-75],[-33,-71],[-51,-115],[-79,-184]],[[76039,30375,0],[-20,-51],[-23,-62]],[[75996,30262,0],[-21,-71],[-10,-46],[-7,-57],[-6,-40]],[[75952,30048,0],[-5,-80],[-3,-37],[-3,-46],[-9,-123]],[[75932,29762,0],[-11,-143],[-7,-107],[-8,-108]],[[75906,29404,0],[-8,-108],[-3,-35]],[[75895,29261,0],[-25,1],[-67,3]],[[75803,29265,0],[-20,1],[-2,1],[-85,5]],[[75696,29272,0],[-36,2],[-181,10]],[[75479,29284,0],[-3,0],[-114,4]],[[75362,29288,0],[-13,-122]],[[75349,29166,0],[-8,-67]],[[75341,29099,0],[-4,-16],[-23,-74],[-320,46]],[[74994,29055,0],[-1,0],[52,238],[4,21],[6,31]],[[75055,29345,0],[20,122]],[[75075,29467,0],[3,21],[0,1],[6,259],[4,262],[2,200],[-1,50],[0,18],[-35,288]],[[75025,30787,0],[-17,139]],[[75008,30926,0],[2,146],[0,29]],[[75010,31101,0],[4,21],[3,23]],[[75017,31145,0],[6,40],[4,29]],[[75027,31214,0],[9,57]],[[75036,31271,0],[26,63],[83,205]],[[75145,31539,0],[1,13],[7,95]],[[75153,31647,0],[31,112],[15,53]],[[75199,31812,0],[31,136]],[[75230,31948,0],[1,0],[0,1]],[[75231,31949,0],[0,1],[1,0],[0,2],[1,1],[1,0],[0,1],[1,0],[1,2],[0,1],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[2,-1],[3,9]],[[75276,31962,0],[28,82],[16,46]],[[75320,32090,0],[36,18],[175,87],[29,14],[104,53],[51,17]],[[75715,32279,0],[94,38]],[[75809,32317,0],[16,9],[6,2],[33,-1]],[[75864,32327,0],[9,-6],[3,-2],[9,-8]],[[75885,32311,0],[18,-94],[3,-15]],[[76831,29868,0],[21,-11],[64,16],[58,-54]],[[76974,29819,0],[17,-23]],[[76991,29796,0],[3,-13],[-3,-14],[-5,-34],[-2,-24]],[[76984,29711,0],[-5,-20],[-17,-35]],[[76962,29656,0],[-24,9],[-104,-164]],[[76834,29501,0],[-12,-18]],[[76822,29483,0],[-19,-62]],[[76803,29421,0],[9,-12],[5,-18]],[[76817,29391,0],[-69,-146]],[[76748,29245,0],[-150,-223],[-158,-222],[-27,-36],[-8,-7]],[[76405,28757,0],[-17,-10],[-2,-1],[-18,0],[-13,-1],[-70,10],[-5,2],[-57,12],[-4,0],[-80,15],[-2,0],[-97,15]],[[76040,28799,0],[-2,0],[-38,3],[-1,0],[-6,1],[-105,8],[-24,27]],[[75864,28838,0],[5,60]],[[75869,28898,0],[6,78],[8,107],[0,3],[0,6]],[[75883,29092,0],[6,98],[6,69],[0,2]],[[75895,29261,0],[1,16],[1,19],[9,108]],[[75932,29762,0],[9,122],[0,6],[3,42],[3,37],[5,79]],[[75996,30262,0],[22,62],[21,51]],[[76271,30909,0],[-11,-42]],[[76260,30867,0],[-6,-18],[-1,-10]],[[76253,30839,0],[-6,-28],[1,-27]],[[76248,30784,0],[-2,-8],[1,-11]],[[76247,30765,0],[4,-15],[4,-21]],[[76255,30729,0],[6,-18]],[[76261,30711,0],[7,-14],[10,-17]],[[76278,30680,0],[17,-20],[44,-53]],[[76339,30607,0],[28,-32],[66,-35],[11,-5]],[[76444,30535,0],[15,-1],[135,-10],[58,-4],[0,-11]],[[76652,30509,0],[0,-63]],[[76652,30446,0],[1,-109],[1,-26],[4,-17],[12,-17]],[[76670,30277,0],[2,-10],[117,-2],[19,-30]],[[76808,30235,0],[54,-87],[2,-18]],[[76864,30130,0],[16,-114],[23,-2]],[[76903,30014,0],[-42,-66]],[[76861,29948,0],[-20,-4],[-19,-13]],[[76822,29931,0],[-5,-12],[-1,-6]],[[76816,29913,0],[1,-25],[11,-15],[3,-5]],[[76996,30479,0],[95,-12]],[[77091,30467,0],[1,3],[185,-21],[170,-20],[45,-9],[19,-15],[32,-2],[10,-5],[40,-32],[29,-23],[7,8],[22,14],[21,11],[23,11],[18,7],[23,5],[16,3],[22,2],[25,-2],[18,-5]],[[77817,30397,0],[76,-25],[19,-10],[23,-19],[13,-15],[20,-34],[19,-88],[-151,-60],[33,-66]],[[77869,30080,0],[43,-296]],[[77912,29784,0],[5,-82]],[[77917,29702,0],[-15,-100]],[[77902,29602,0],[-15,-54]],[[77887,29548,0],[-4,-6],[-6,-10],[-31,-47],[-53,-107]],[[77793,29378,0],[-79,-136]],[[77714,29242,0],[-53,-129]],[[77661,29113,0],[-27,-99],[-27,-73],[-16,-69],[-5,-26],[-19,-80],[-14,-52],[-4,-21],[-6,-27]],[[77543,28666,0],[-26,-110],[-5,-24]],[[77512,28532,0],[-13,-19],[-7,-35],[6,-1]],[[77498,28477,0],[-22,-85],[-2,-7]],[[77474,28385,0],[-4,-15],[7,-7]],[[77477,28363,0],[15,-13],[-34,-47],[-16,-17],[-203,-1],[-581,-40]],[[76658,28245,0],[24,27],[3,4],[55,34],[-44,0],[-49,1],[-8,9],[-1,16],[-9,120],[-1,17],[-2,125],[1,30],[1,21],[0,17],[-38,12],[-88,26],[-32,24],[-7,0],[-65,15],[-12,2]],[[76386,28745,0],[19,12]],[[76748,29245,0],[31,66],[38,80]],[[76817,29391,0],[-5,17],[-9,13]],[[76803,29421,0],[4,11],[15,51]],[[76834,29501,0],[104,163],[24,-8]],[[76984,29711,0],[2,23],[6,35],[3,13],[-4,14]],[[76974,29819,0],[-58,53],[-64,-16],[-21,12]],[[76831,29868,0],[-3,4],[-11,15],[-1,26]],[[76816,29913,0],[1,5],[5,12],[0,1]],[[76822,29931,0],[2,1],[17,11],[20,5]],[[76861,29948,0],[37,58],[5,8]],[[76903,30014,0],[-22,2],[-17,114]],[[76864,30130,0],[-2,17],[-53,86],[-1,1],[0,1]],[[76808,30235,0],[-19,29],[-116,3],[-2,5],[-1,5]],[[76652,30446,0],[0,23],[0,1],[0,38],[0,1]],[[76652,30509,0],[0,10]],[[76652,30519,0],[131,-15]],[[76783,30504,0],[197,-22]],[[76980,30482,0],[16,-3]],[[78000,29113,0],[-6,-14],[-10,-22]],[[77963,28995,0],[-6,-33],[-3,-24]],[[77948,28888,0],[-1,-7],[-8,-58]],[[77907,28720,0],[-12,-24],[-46,-91]],[[77499,28362,0],[-22,1]],[[77474,28385,0],[24,92]],[[77512,28532,0],[31,134]],[[77661,29113,0],[41,99],[12,30]],[[77714,29242,0],[29,51],[50,85]],[[77887,29548,0],[11,36],[1,8],[3,10]],[[77917,29702,0],[-2,44],[-3,38]],[[77912,29784,0],[-9,60],[-8,58],[-5,36],[-4,26],[-6,36],[-11,80]],[[77817,30397,0],[8,14],[11,18]],[[77836,30429,0],[13,35],[81,-52],[97,-63],[9,-91],[22,-62],[75,29],[103,26]],[[77393,31782,0],[34,38],[95,-43]],[[77522,31777,0],[-46,-60]],[[77476,31717,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0]],[[77457,31721,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[77448,31722,0],[-1,-1],[-1,0],[-2,0],[-1,0]],[[77443,31721,0],[-1,0]],[[77442,31721,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[77438,31721,0],[-1,-1],[-1,0]],[[77436,31720,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1]],[[77426,31716,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,0]],[[77412,31706,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1]],[[77407,31698,0],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-2]],[[77404,31691,0],[0,-1],[-1,0]],[[77403,31690,0],[-18,-41]],[[77385,31649,0],[-10,-43],[-1,-16],[5,-21],[6,-27]],[[77385,31542,0],[7,-27],[24,-41]],[[77416,31474,0],[16,-31],[15,-23]],[[77447,31420,0],[15,-20]],[[77462,31400,0],[15,-16]],[[77477,31384,0],[25,-23],[4,-13]],[[77506,31348,0],[39,-109],[6,-15],[10,-28]],[[77561,31196,0],[2,-24],[4,-16],[8,-24],[4,-2],[24,-39],[1,-5],[74,-70],[6,-10],[127,-87],[60,-57],[27,-35],[15,-32],[11,-23],[18,-47],[39,-108],[-27,-41],[-46,35],[0,7],[-25,12],[-13,-25],[-46,-86],[-31,-59],[43,-31]],[[77091,30467,0],[-43,5],[-52,7]],[[76980,30482,0],[-135,15],[-62,7]],[[76652,30519,0],[-58,4],[-135,10],[-15,2]],[[76444,30535,0],[-11,4],[-66,35],[-28,33]],[[76278,30680,0],[-10,16],[-7,15]],[[76261,30711,0],[-6,17],[0,1]],[[76255,30729,0],[-4,20],[-4,16]],[[76248,30784,0],[-1,26],[6,29]],[[76260,30867,0],[0,1],[11,41]],[[75962,32225,0],[9,10]],[[75971,32235,0],[-9,8]],[[75962,32243,0],[-5,67],[0,13],[-2,19],[-7,93],[-3,41]],[[75945,32476,0],[5,69]],[[75950,32545,0],[9,161],[9,105],[30,146],[10,24],[9,16],[6,10]],[[76023,33007,0],[8,10],[15,19]],[[76046,33036,0],[29,30]],[[76075,33066,0],[1,0],[13,9]],[[76089,33075,0],[15,7],[5,1],[9,2]],[[76118,33085,0],[18,0],[35,2]],[[76171,33087,0],[37,2],[2,1]],[[76210,33090,0],[1,0],[135,16],[113,13],[27,2]],[[76486,33121,0],[49,-256],[11,-57],[21,-100]],[[76567,32708,0],[17,-35]],[[76584,32673,0],[33,-71],[6,-13],[42,-62],[27,-37],[17,-22]],[[76709,32468,0],[65,-79],[41,-54]],[[76815,32335,0],[85,-106]],[[76900,32229,0],[33,-38],[47,-47],[131,-127],[145,-136],[28,-25],[27,-33]],[[77311,31823,0],[22,-33],[5,-12],[55,4]],[[73625,32902,0],[-27,-30],[6,-120],[6,-120],[9,-177],[49,-59],[6,-108],[6,-110],[4,-107],[6,-110],[1,-31],[5,-82],[6,-42],[17,-71],[28,-72],[9,-23],[34,-62],[9,-13],[-25,-70],[-105,-74],[-35,-25],[-16,22],[-65,-42],[-30,-15],[-50,-22],[-38,-14],[-15,-4],[-56,-9],[-60,-9],[17,-130],[15,-108]],[[73336,31065,0],[0,-6],[8,-52]],[[71973,30562,0],[-385,53],[-236,33]],[[71117,30657,0],[61,93],[9,17],[2,22],[0,174]],[[71189,30963,0],[19,12]],[[71208,30975,0],[2,33],[-10,12]],[[71200,31020,0],[0,37]],[[71200,31057,0],[0,6]],[[71200,31063,0],[10,10],[0,25],[0,195],[2,9]],[[71212,31302,0],[92,467]],[[71304,31769,0],[22,118]],[[71326,31887,0],[5,39]],[[71331,31926,0],[11,75]],[[71342,32001,0],[0,16]],[[71342,32017,0],[2,128],[3,129],[8,130],[5,124],[5,129],[5,120]],[[71370,32777,0],[0,49]],[[71370,32826,0],[37,-7],[43,-8],[33,-5],[69,59],[102,86],[65,-2],[123,-3],[121,-3],[123,-3],[110,-3],[21,0],[37,-2],[15,0],[227,-6],[124,-4],[127,-3],[113,-3],[20,-1],[25,0],[18,-1],[113,-4],[123,-4],[125,-4],[113,-4],[124,-4],[20,1],[54,2],[30,2]],[[71342,32017,0],[0,-7],[0,-9]],[[71331,31926,0],[-4,-31],[-1,-8]],[[71326,31887,0],[-6,-34],[-16,-84]],[[71304,31769,0],[-77,-391],[-15,-76]],[[71200,31063,0],[0,-5],[0,-1]],[[71200,31057,0],[0,-8],[0,-29]],[[71208,30975,0],[-16,-10],[-3,-2]],[[70056,30587,0],[-2,35],[0,13]],[[69881,30648,0],[-2,12],[-2,17]],[[69877,30677,0],[-1,13],[-1,8]],[[69875,30698,0],[-3,42],[-10,102]],[[69862,30842,0],[-12,97],[0,1]],[[69850,30940,0],[-5,46],[-15,133]],[[69830,31119,0],[-17,156]],[[69813,31275,0],[-11,106]],[[69802,31381,0],[-1,21],[-1,9]],[[69800,31411,0],[10,0],[1,7],[5,32],[3,33],[1,13],[1,27]],[[69821,31523,0],[-22,34],[-3,5]],[[69796,31562,0],[-3,5],[-5,10]],[[69788,31577,0],[-4,14],[0,1]],[[69784,31592,0],[-1,26],[-1,81]],[[69782,31699,0],[-3,1],[-2,1]],[[69777,31701,0],[17,28],[4,52],[-8,7],[2,17]],[[69792,31805,0],[0,28],[0,7]],[[69792,31840,0],[-1,18]],[[69791,31858,0],[-3,11],[-3,17]],[[69785,31886,0],[3,42]],[[69788,31928,0],[0,2],[1,6]],[[69789,31936,0],[-4,41],[-1,10]],[[69784,31987,0],[-2,80],[-1,35]],[[69781,32102,0],[-1,7],[-1,9]],[[69779,32118,0],[-38,71]],[[69741,32189,0],[-1,11],[-6,57]],[[69734,32257,0],[1,5],[0,8]],[[69735,32270,0],[0,14],[1,3],[2,14],[2,17],[3,12],[1,5],[1,4],[7,21],[-5,5]],[[69747,32365,0],[-10,11],[-19,20]],[[69718,32396,0],[-8,10]],[[69710,32406,0],[11,15],[5,6]],[[69726,32427,0],[4,6],[18,25]],[[69748,32458,0],[27,42]],[[69775,32500,0],[16,24],[6,9]],[[69797,32533,0],[51,71]],[[69848,32604,0],[18,-6],[21,-7]],[[69887,32591,0],[108,-36],[35,21],[8,5],[51,28]],[[70089,32609,0],[27,11],[17,7]],[[70133,32627,0],[98,36],[156,57]],[[70387,32720,0],[442,161],[51,19]],[[70880,32900,0],[73,20],[101,28]],[[71054,32948,0],[134,16],[-2,30]],[[71186,32994,0],[47,-6]],[[71233,32988,0],[137,-162]],[[71370,32826,0],[0,-28],[0,-21]],[[69875,30698,0],[2,-21]],[[69877,30677,0],[-80,18],[-58,13]],[[68030,30381,0],[-8,21],[-10,33]],[[67962,30559,0],[-36,84],[-12,27]],[[67922,30696,0],[18,7],[61,21],[21,6],[149,39],[145,40],[16,4],[148,40],[1,15],[3,53],[-11,37],[-39,140],[-26,89],[-16,58],[-4,14],[-3,15],[-5,17],[-3,26],[-2,58],[0,31],[4,10],[23,69],[14,31],[21,40],[45,70],[43,67],[6,8],[17,21],[75,70],[10,9],[-42,26],[-1,1],[-108,67],[-137,85],[-1,0],[39,41],[41,43],[1,1],[34,41],[34,42],[35,45],[34,43],[38,46],[35,45],[16,21],[0,1],[35,43]],[[68686,32392,0],[37,45],[33,42],[37,48],[37,47],[40,50],[40,49],[44,56],[9,12],[78,99],[40,51],[38,50],[39,50],[31,40],[7,8]],[[69196,33039,0],[120,-79],[16,-10],[86,-84],[81,-130]],[[69499,32736,0],[-7,-28],[14,-2]],[[69506,32706,0],[102,-18],[37,-7]],[[69645,32681,0],[102,-40],[101,-37]],[[69797,32533,0],[-22,-33]],[[69748,32458,0],[-22,-31]],[[69726,32427,0],[-16,-21]],[[69718,32396,0],[29,-31]],[[69735,32270,0],[-1,-13]],[[69734,32257,0],[7,-68]],[[69779,32118,0],[2,-16]],[[69781,32102,0],[3,-115]],[[69784,31987,0],[5,-51]],[[69789,31936,0],[-1,-8]],[[69785,31886,0],[6,-28]],[[69792,31840,0],[0,-35]],[[69777,31701,0],[5,-2]],[[69782,31699,0],[2,-107]],[[69784,31592,0],[4,-15]],[[69788,31577,0],[8,-15]],[[69796,31562,0],[25,-39]],[[69800,31411,0],[2,-30]],[[69813,31275,0],[15,-132],[2,-24]],[[69850,30940,0],[12,-98]],[[67903,30688,0],[-17,-7],[-35,-13]],[[67835,30662,0],[-52,-25],[-46,-22]],[[67623,30545,0],[-34,-24],[-17,-12]],[[67519,30466,0],[-27,-25],[-12,-10]],[[67480,30431,0],[-9,-9],[-32,-31]],[[67428,30381,0],[-44,-49],[-5,-6]],[[67366,30311,0],[-12,-18],[-29,-44]],[[67082,29973,0],[-85,39],[-15,7],[-21,10],[-100,46],[-127,57],[-2,3],[-82,125],[-2,24],[0,2],[-8,90],[-13,145],[-12,122],[-11,121],[-7,81],[-1,14],[-9,105],[-2,24],[-10,114],[-1,3],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0]],[[66532,31125,0],[-14,-7]],[[66518,31118,0],[-7,-3],[-38,-19],[-5,-2],[-22,-15],[-8,-6],[-34,36],[-102,104],[-14,15],[-16,-8],[-108,149],[-2,-2],[-28,-13],[-52,-29],[-42,-34]],[[66040,31291,0],[-43,38],[-4,4]],[[65993,31333,0],[-66,87],[-40,52],[-25,34],[-72,96],[-21,27],[-22,28]],[[65747,31657,0],[14,10],[81,49],[121,67],[126,56],[93,28]],[[66182,31867,0],[70,21],[259,77]],[[66511,31965,0],[118,36],[16,5],[45,13],[159,48],[69,21]],[[66918,32088,0],[81,17],[241,39]],[[67240,32144,0],[58,7]],[[67298,32151,0],[-16,-75],[-3,-16],[12,-3],[31,-7],[11,-2],[16,-4],[28,25],[23,9],[6,2],[96,28],[16,4],[61,17],[26,5],[29,5],[8,1],[51,8],[49,8],[95,15],[53,8],[16,3],[22,3],[5,1],[10,1],[43,11],[8,3],[14,4],[13,3],[6,2],[21,8],[53,21],[15,5],[26,11],[22,10],[30,12],[22,9],[34,14],[26,11],[29,12],[68,27],[13,5],[98,41],[144,59],[16,-18],[10,-11],[32,-34]],[[69957,34763,0],[14,-114]],[[69971,34649,0],[2,-15],[11,-81],[2,-12]],[[69986,34541,0],[3,-60],[-4,-49]],[[69985,34432,0],[-11,-45]],[[69974,34387,0],[-11,-38],[-13,-36],[-21,-41],[9,-14],[79,-25]],[[70017,34233,0],[72,-33]],[[70089,34200,0],[41,-23],[35,-22],[52,-45],[12,-9]],[[70229,34101,0],[9,-8],[35,-37]],[[70273,34056,0],[-36,-30],[-2,-2],[-118,-100]],[[70117,33924,0],[-111,-95],[-79,-68],[-76,-66],[-60,-52],[-25,-22]],[[69766,33621,0],[-59,-51],[-35,-30]],[[69672,33540,0],[-94,-81],[-74,-65],[-42,-36]],[[69462,33358,0],[-49,-53],[-11,-12]],[[69402,33293,0],[-82,-102]],[[69320,33191,0],[-4,1],[-120,-153]],[[67298,32151,0],[-56,225],[-35,135],[-90,301],[-80,277],[-10,138],[-12,145]],[[67015,33372,0],[4,24],[5,28]],[[67024,33424,0],[11,70],[6,73],[-1,60],[6,125],[62,28],[169,316],[36,85],[189,456],[21,47]],[[67523,34684,0],[45,94],[23,43],[16,25],[23,10],[8,7],[143,61],[169,-8],[59,2],[37,2],[5,0],[35,1],[5,-2],[5,-3],[1,9],[0,13]],[[68097,34938,0],[19,-10]],[[68116,34928,0],[88,2],[127,1],[42,0],[117,1],[35,0],[20,1],[62,1],[34,1],[14,0],[122,5],[117,7],[61,3],[49,2],[83,3],[28,2],[204,7],[50,5],[22,2],[221,19],[9,1],[91,6],[161,13],[6,0]],[[69879,35010,0],[3,-3],[44,-37],[7,-7],[1,-7],[12,-103],[11,-90]],[[71498,34835,0],[0,-30],[3,-139],[-1,-17]],[[71500,34649,0],[-8,-145],[-7,-131]],[[71485,34373,0],[-8,-129],[-9,-158]],[[71468,34086,0],[-4,-56],[0,-13]],[[71464,34017,0],[-8,-107],[-5,-67]],[[71451,33843,0],[-3,-62],[-9,-136],[-6,-125],[-3,-20],[-5,-112],[-9,-131]],[[71416,33257,0],[-3,-47],[-3,-21],[-6,-65]],[[71404,33124,0],[-10,-76]],[[71394,33048,0],[-24,-221],[-137,161]],[[71186,32994,0],[2,-29],[-134,-17]],[[71054,32948,0],[-101,-27],[-73,-21]],[[70880,32900,0],[-51,-18],[-442,-162]],[[70387,32720,0],[-254,-93]],[[70089,32609,0],[-51,-27],[-8,-5],[-35,-21],[-108,35]],[[69848,32604,0],[-101,38],[-102,39]],[[69506,32706,0],[-14,3],[7,27]],[[69196,33039,0],[4,5],[120,147]],[[69320,33191,0],[0,1],[82,101]],[[69402,33293,0],[11,13],[49,52]],[[69672,33540,0],[34,30],[60,51]],[[70117,33924,0],[118,101],[38,31]],[[70229,34101,0],[-12,10],[-52,45],[-35,22],[-41,22]],[[70017,34233,0],[-79,26],[-9,14],[21,41],[13,36],[11,37]],[[69985,34432,0],[4,50],[-3,59]],[[69986,34541,0],[-2,13],[-11,81],[-2,14]],[[69957,34763,0],[-11,91],[-12,103],[198,37],[240,39],[176,27],[47,6],[123,14],[96,11],[98,11],[98,10],[95,11],[74,23],[84,28],[92,29],[120,38],[166,53],[129,41],[33,-74]],[[71803,35261,0],[-29,-40],[-32,-46],[-26,-37]],[[71716,35138,0],[-76,-105],[-8,-14]],[[71632,35019,0],[-106,-152],[-16,-19]],[[71510,34848,0],[-12,-13]],[[70259,34794,0],[37,-119],[-23,108],[-14,11]],[[70322,34824,0],[2,-11],[89,13],[-91,-2]],[[74289,33148,0],[-45,-22],[-115,-58],[-101,-51],[-24,-11],[-47,-22],[-39,-16],[-58,-23],[-16,-5],[-31,-9],[-91,-21],[-97,-8]],[[71370,32826,0],[24,222]],[[71404,33124,0],[9,85],[3,48]],[[71416,33257,0],[9,130],[6,112],[2,20],[7,126],[8,135],[3,63]],[[71464,34017,0],[4,69]],[[71468,34086,0],[9,157],[8,130]],[[71485,34373,0],[7,130],[8,146]],[[71500,34649,0],[1,16],[-3,139],[0,31]],[[71510,34848,0],[16,18],[106,153]],[[71632,35019,0],[8,13],[76,106]],[[71803,35261,0],[21,-26],[34,-40],[18,-21],[11,5],[20,3],[9,2],[8,0],[12,3],[8,-6],[87,-86],[285,-278],[21,-20],[56,-54],[67,-65],[100,-97],[22,-24],[32,-30],[6,-5],[19,-18],[62,-53],[80,-66],[80,-65],[67,-46],[30,-21],[29,-20],[31,-20],[154,-97],[117,-77],[80,-51],[31,-19],[33,-22],[31,-19],[62,-39],[2,-2],[46,-29],[87,-55],[118,-75],[71,-45],[31,-21],[73,-52],[71,-44],[92,-60],[15,-9],[103,-65],[55,-37],[11,-9],[10,-11],[9,-16],[3,-13],[2,-17],[-4,-30],[-11,-57],[-14,-64],[-7,-30]],[[73812,35868,0],[11,-21],[12,-27]],[[73835,35820,0],[61,25]],[[73896,35845,0],[124,51],[85,35]],[[74105,35931,0],[-1,-4],[-7,-24],[-6,-13],[-4,-12]],[[74087,35878,0],[-13,-38]],[[74074,35840,0],[-1,-5],[-1,-9]],[[74072,35826,0],[-2,-9],[-2,-6]],[[74068,35811,0],[-22,-99]],[[74046,35712,0],[-2,-11]],[[74044,35701,0],[-25,-119],[-5,-19]],[[74014,35563,0],[0,-1],[-15,-96]],[[73999,35466,0],[-1,-17]],[[73998,35449,0],[-18,-155]],[[73980,35294,0],[2,-9]],[[73982,35285,0],[7,-30]],[[73989,35255,0],[1,-3],[2,-6],[-327,-38],[-38,-3],[-25,55],[-2,5],[-9,13],[-13,15],[-25,24],[-14,11],[-17,11],[-25,14],[-36,15],[-14,6],[-7,1],[-30,6],[-39,5],[-39,0],[-35,-6],[-45,-12],[-40,-21],[-20,-13],[-21,-14],[-22,-19],[-31,-33],[-11,-19],[-7,-21],[-13,-37],[-12,-59],[-1,-45],[6,-45],[14,-96],[8,-56],[6,-45],[13,-101],[6,-49],[13,-91],[9,-66],[17,-71],[16,-36],[16,-29],[18,-25],[44,-47],[75,-39],[40,-9],[34,-6],[49,-2],[12,1],[23,2],[24,6],[47,15],[60,32],[24,19],[12,14],[21,4],[284,37],[110,14],[92,13]],[[74167,34431,0],[7,-12]],[[74174,34419,0],[11,-28]],[[74185,34391,0],[1,-1],[5,-12]],[[74191,34378,0],[21,-49],[14,-32]],[[74226,34297,0],[5,-13],[3,-7],[37,-56]],[[74271,34221,0],[9,-19],[6,-11],[5,-12],[9,-17]],[[74300,34162,0],[4,-12],[10,-20],[43,-94]],[[74357,34036,0],[11,-24],[10,-22]],[[74378,33990,0],[2,-5],[6,-13]],[[74386,33972,0],[9,-18]],[[74395,33954,0],[0,-2],[29,-61]],[[74424,33891,0],[10,-23],[6,-11]],[[74440,33857,0],[13,-38],[3,-17]],[[74456,33802,0],[18,-107],[20,-144]],[[74494,33551,0],[1,-15]],[[74495,33536,0],[0,-3],[-1,-7]],[[74494,33526,0],[-3,-13],[-2,-9],[-9,-14],[-5,-4],[-12,-9],[-16,-10],[-11,-1],[-12,-3],[-10,-2],[-13,1],[-11,2],[-8,2],[-12,7],[-17,10],[-32,20],[-8,5],[-7,4],[-35,24],[-59,37],[-61,40],[-12,7],[-1,1],[-7,4],[-8,5],[-6,2],[-45,30],[-19,14],[-3,1],[-20,12],[-15,9],[-23,13],[-31,20],[-32,22],[-12,8],[-35,22],[-32,19],[-78,51],[-45,29],[-53,34],[-52,33],[-111,70],[-13,8],[-5,4],[-23,15],[-42,26],[-48,31],[-47,31],[-13,8],[-26,16],[-52,34],[-6,4],[-20,11],[-8,6],[-47,32],[-16,11],[-60,40],[-52,36],[-33,22],[-39,27],[-17,13],[-71,53],[-14,11],[-69,60],[-55,47],[-9,8],[-13,11],[-37,34],[-42,38],[-34,34],[-38,38],[-35,33],[-38,37],[-22,21],[-31,30],[-21,23],[-38,36],[-19,18],[-57,56],[-7,7],[-2,2],[-74,69],[-76,77],[-38,35],[-37,34],[-11,11],[-25,23],[-8,9],[-5,8],[-12,15],[-2,2]],[[72004,35274,0],[137,85],[12,7]],[[72153,35366,0],[17,4],[2,1],[23,5]],[[72195,35376,0],[48,9]],[[72243,35385,0],[25,3],[11,1]],[[72279,35389,0],[47,7]],[[72326,35396,0],[17,-4]],[[72343,35392,0],[100,-8]],[[72443,35384,0],[28,13],[12,6]],[[72483,35403,0],[27,6]],[[72510,35409,0],[15,4],[41,9]],[[72566,35422,0],[17,4],[1,0]],[[72584,35426,0],[6,2],[13,3]],[[72603,35431,0],[0,1],[0,1],[-1,1]],[[72602,35434,0],[23,5],[12,3]],[[72637,35442,0],[7,-14],[2,-4]],[[72646,35424,0],[4,-8]],[[72650,35416,0],[-1,-1],[-5,0]],[[72644,35415,0],[4,-6]],[[72648,35409,0],[120,53],[114,50]],[[72882,35512,0],[30,14]],[[72912,35526,0],[102,45],[35,15]],[[73049,35586,0],[116,51],[38,18],[21,9]],[[73224,35664,0],[-42,74],[-17,29]],[[73165,35767,0],[39,22],[20,11]],[[73224,35800,0],[45,-72],[9,-14],[5,-8]],[[73283,35706,0],[33,-51],[5,-7],[5,-8],[183,18]],[[73509,35658,0],[-8,110],[-2,30],[-4,64]],[[73495,35862,0],[28,14]],[[73523,35876,0],[12,6],[19,10],[4,1]],[[73558,35893,0],[32,17]],[[73590,35910,0],[2,1],[21,10]],[[73613,35921,0],[5,-7],[4,-6]],[[73622,35908,0],[18,8],[5,2],[7,-10],[5,-7]],[[73657,35901,0],[16,7],[28,13]],[[73701,35921,0],[70,35],[41,-88]],[[74133,34527,0],[4,-8],[1,-3],[4,-22],[-2,-17],[-11,-8],[-24,-7],[-367,-45],[-63,-9],[-39,-10],[-14,-5],[-57,-39],[-11,-9],[-18,-15],[-21,-4],[-45,-5],[-36,1],[-37,6],[-43,15],[-51,25],[-52,42],[-27,37],[-14,23],[-12,29],[-11,36],[-15,98],[-29,174],[-41,289],[2,50],[9,40],[22,45],[26,39],[37,37],[46,30],[67,24],[20,4],[28,4],[18,-4],[39,-6],[39,-16],[20,-12],[36,-31],[31,-32],[15,-29],[47,-52],[25,2],[203,21],[30,-9],[105,15],[16,0],[18,-11],[4,-18],[4,-20]],[[74110,34591,0],[15,-44],[8,-20]],[[74098,34634,0],[4,-14],[8,-29]],[[74080,34730,0],[17,-88],[1,-8]],[[74057,34860,0],[23,-130]],[[74051,34865,0],[6,-5]],[[74044,34869,0],[2,-2],[5,-2]],[[74038,34875,0],[6,-6]],[[74038,34890,0],[-2,0],[-1,-1],[1,-7],[2,-7]],[[74033,34921,0],[1,-2],[4,-29]],[[74030,34919,0],[0,1],[3,1]],[[74034,34948,0],[-5,-13],[1,-7],[0,-9]],[[74038,34958,0],[-1,-3],[-3,-7]],[[74024,35055,0],[6,-41],[8,-56]],[[74016,35106,0],[3,-19],[5,-32]],[[74009,35167,0],[7,-61]],[[75449,35232,0],[74,-7]],[[75523,35225,0],[3,0]],[[75526,35225,0],[28,3]],[[75554,35228,0],[-2,-21],[0,-1]],[[75552,35206,0],[2,-9]],[[75554,35197,0],[2,-8]],[[75556,35189,0],[21,-11],[21,5]],[[75598,35183,0],[14,7],[14,10],[16,0],[27,-5],[24,4]],[[75693,35199,0],[22,-12]],[[75715,35187,0],[17,-25]],[[75732,35162,0],[5,-16]],[[75737,35146,0],[9,-6]],[[75746,35140,0],[-6,-26],[-33,-36],[-44,-22]],[[75663,35056,0],[4,-4]],[[75667,35052,0],[1,0],[-33,-7]],[[75635,35045,0],[-35,1],[-80,-24]],[[75520,35022,0],[-10,-2]],[[75510,35020,0],[-25,-3],[1,-32],[-1,-31]],[[75485,34954,0],[-1,-54],[1,-11]],[[75485,34889,0],[-43,5],[-38,0]],[[75404,34894,0],[-71,-15]],[[75333,34879,0],[-34,-2]],[[75299,34877,0],[-43,-4],[-23,-19]],[[75233,34854,0],[-30,-25]],[[75203,34829,0],[-29,-24],[-39,-101],[-12,-26]],[[75123,34678,0],[-9,-83]],[[75114,34595,0],[0,-12],[16,-70],[12,-70]],[[75142,34443,0],[27,-103],[1,-127]],[[75170,34213,0],[33,3],[24,-8]],[[75227,34208,0],[0,-1],[7,-65]],[[75234,34142,0],[3,-14]],[[75237,34128,0],[3,-14]],[[75240,34114,0],[4,-22]],[[75244,34092,0],[1,0],[1,-7],[3,-23]],[[75249,34062,0],[4,-26]],[[75253,34036,0],[3,-19],[-1,-8]],[[75255,34009,0],[-1,-26]],[[75254,33983,0],[0,-1],[-1,-24]],[[75253,33958,0],[0,-1],[-1,-20]],[[75252,33937,0],[0,-1],[30,-5]],[[75282,33931,0],[4,-23]],[[75286,33908,0],[0,-1],[5,-31]],[[75291,33876,0],[2,-24]],[[75293,33852,0],[0,-33],[-7,-23]],[[75286,33796,0],[-8,-24],[-69,-115]],[[75209,33657,0],[-15,-21],[0,-1],[-7,-50]],[[75187,33585,0],[0,-1],[0,-2],[-2,-5],[-10,-31],[-1,-1],[-5,-16]],[[75169,33529,0],[-3,-10]],[[75166,33519,0],[0,-1],[-6,-25]],[[75160,33493,0],[0,-1],[-2,-10]],[[75158,33482,0],[-1,-17],[-1,-17],[-1,-9],[-6,-27]],[[75149,33412,0],[0,-1],[-4,-27]],[[75145,33384,0],[-5,-31],[-1,0]],[[75139,33353,0],[-3,-14]],[[75136,33339,0],[149,-19],[52,4],[52,5]],[[75389,33329,0],[25,19],[167,4],[211,2],[37,0]],[[75829,33354,0],[5,1],[17,-38],[12,-29]],[[75863,33288,0],[168,-119],[24,-18],[1,-3]],[[76056,33148,0],[11,-48]],[[76067,33100,0],[8,-34]],[[76046,33036,0],[-23,-29]],[[76023,33007,0],[-15,-25],[-10,-24],[-16,-81],[-14,-65],[-9,-104],[0,-1],[-9,-162]],[[75945,32476,0],[17,-233]],[[75971,32235,0],[1,0],[-9,-10],[-1,0]],[[75962,32225,0],[-10,-2]],[[75952,32223,0],[-46,-21]],[[75906,32202,0],[-21,109]],[[75885,32311,0],[-1,0],[-6,7],[-14,9]],[[75864,32327,0],[-33,2],[-22,-12]],[[75715,32279,0],[-50,-17],[-133,-67],[-212,-105]],[[75320,32090,0],[-1,0],[-11,-8]],[[75308,32082,0],[-15,-8],[-1,-2]],[[75292,32072,0],[-22,0],[-8,3],[-106,5]],[[75156,32080,0],[0,1],[-8,13],[-12,22]],[[75136,32116,0],[-21,37],[-55,93],[-53,90],[-55,93],[-53,89],[-53,90],[-31,52]],[[74815,32660,0],[-28,49],[-25,44],[-53,90],[-54,91]],[[74655,32934,0],[-66,111],[-39,66]],[[74550,33111,0],[0,1],[-17,26]],[[74533,33138,0],[126,62],[-9,42],[-6,35],[-6,49],[-11,81],[-9,70],[-6,59],[-118,-10]],[[74494,33526,0],[1,10]],[[74494,33551,0],[-19,140],[-19,111]],[[74440,33857,0],[-7,15],[-9,19]],[[74424,33891,0],[-29,63]],[[74395,33954,0],[-2,4],[-7,14]],[[74386,33972,0],[-8,18]],[[74378,33990,0],[-21,46]],[[74357,34036,0],[-6,12],[-37,83],[-2,4],[-12,27]],[[74300,34162,0],[-14,30],[-15,29]],[[74271,34221,0],[-36,56],[-9,20]],[[74226,34297,0],[-28,64],[-7,17]],[[74191,34378,0],[-3,6],[-3,7]],[[74185,34391,0],[-2,3],[-9,25]],[[74174,34419,0],[-4,6],[-3,6]],[[74167,34431,0],[5,12],[-11,22],[-2,4],[-26,58]],[[74110,34591,0],[-12,43]],[[74098,34634,0],[-18,96]],[[74080,34730,0],[-21,119],[-2,11]],[[74057,34860,0],[-5,3],[-1,2]],[[74051,34865,0],[-7,4]],[[74044,34869,0],[-5,4],[-1,2]],[[74038,34875,0],[-1,2],[-2,13],[3,0]],[[74038,34890,0],[-5,31]],[[74033,34921,0],[-1,-1],[-2,-1]],[[74030,34919,0],[0,16],[3,11],[1,2]],[[74034,34948,0],[1,2],[3,8]],[[74038,34958,0],[-14,97]],[[74024,35055,0],[-8,51]],[[74009,35167,0],[-13,68],[-1,4],[-3,8]],[[73992,35247,0],[96,23],[11,1],[1,1],[6,-1],[135,-7],[94,-2],[219,-4],[225,-4],[16,-1],[25,-1],[112,-4],[49,-1]],[[74981,35247,0],[117,-4],[114,-3]],[[75212,35240,0],[108,-4],[77,-6],[1,7],[51,-5]],[[75863,33288,0],[-14,26],[-18,36],[-2,4]],[[75389,33329,0],[-105,-8],[-148,18]],[[75136,33339,0],[0,1],[3,13]],[[75139,33353,0],[4,24],[2,7]],[[75145,33384,0],[4,28]],[[75158,33482,0],[2,11]],[[75160,33493,0],[5,19],[1,7]],[[75166,33519,0],[1,5],[2,5]],[[75169,33529,0],[2,5],[3,12],[13,39]],[[75187,33585,0],[6,51],[2,1],[14,20]],[[75209,33657,0],[68,115],[2,5],[7,19]],[[75293,33852,0],[-2,19],[0,5]],[[75291,33876,0],[-5,32]],[[75286,33908,0],[-1,6],[-3,17]],[[75282,33931,0],[0,1],[-30,5]],[[75252,33937,0],[0,7],[1,14]],[[75253,33958,0],[0,3],[1,22]],[[75255,34009,0],[-2,27]],[[75249,34062,0],[-5,30]],[[75244,34092,0],[-3,17],[-1,5]],[[75237,34128,0],[-1,3],[-2,11]],[[75234,34142,0],[-1,10],[-6,56]],[[75227,34208,0],[114,-27],[30,-11],[13,-5],[13,-7],[12,63],[12,63],[0,2],[-2,27],[-4,27],[-6,30],[-3,25],[-3,26],[15,29],[0,1],[5,13],[-2,9],[-1,2],[-13,29],[-3,7],[-9,14],[16,6],[16,33],[13,17],[6,10],[21,24],[16,12],[2,2],[4,0],[18,2],[16,-11],[20,-9],[2,-1],[11,-3],[9,-5],[7,-5],[15,-6],[19,-2],[10,-1],[11,9],[15,12],[25,7],[32,9],[14,-29],[17,-3],[7,-5],[4,-3],[25,-9],[4,-2],[37,-40],[29,-31],[-23,-69],[-3,-10],[0,-1],[-11,-51],[1,-1],[7,-18],[14,-25],[8,-12],[9,-15],[3,-6],[-33,-16],[-8,-4],[14,-46],[28,7],[23,5],[8,-50],[2,-14],[13,4],[18,6],[20,-31],[4,-1],[8,-1],[17,-3],[34,-6],[-6,-12],[-18,-32],[-1,-19],[-3,-173],[28,-117],[0,-17],[0,-45],[-18,-106],[-55,-147],[-53,-189]],[[76595,33169,0],[-21,-44],[-88,-4]],[[76486,33121,0],[-27,-1],[-249,-30]],[[76210,33090,0],[-27,-2],[-12,-1]],[[76171,33087,0],[-53,-2]],[[76118,33085,0],[-14,-2],[-15,-8]],[[76089,33075,0],[-3,-2],[-11,-7]],[[76075,33066,0],[-4,15],[-4,19]],[[76067,33100,0],[-5,25],[-6,23]],[[75227,34208,0],[-5,2],[-20,7],[-18,-3],[-14,-1]],[[75170,34213,0],[-2,127],[-26,103]],[[75142,34443,0],[-13,70],[-10,47],[-6,23],[1,12]],[[75114,34595,0],[6,58],[3,25]],[[75203,34829,0],[1,1],[29,24]],[[75233,34854,0],[20,17],[3,3],[22,1],[21,2]],[[75299,34877,0],[11,1],[23,1]],[[75404,34894,0],[37,0],[22,-2],[22,-3]],[[75485,34889,0],[-1,12],[1,53]],[[75485,34954,0],[1,32],[-1,32],[25,2]],[[75520,35022,0],[22,7],[57,17],[36,-1]],[[75635,35045,0],[32,7]],[[75667,35052,0],[-1,1],[-3,3]],[[75663,35056,0],[22,11],[22,12],[33,36],[3,14],[3,11]],[[75746,35140,0],[-5,4],[-4,2]],[[75737,35146,0],[-1,6],[-4,10]],[[75715,35187,0],[-17,9],[-5,3]],[[75693,35199,0],[-25,-4],[-5,1],[-21,5],[-8,0],[-8,0],[-12,-9],[-2,-1],[-5,-3],[-9,-5]],[[75556,35189,0],[-2,7],[0,1]],[[75554,35197,0],[-1,2],[-1,7]],[[75554,35228,0],[-19,-2],[-8,-1],[-1,0]],[[75523,35225,0],[6,17],[0,1],[13,36]],[[75542,35279,0],[15,3],[10,9],[115,105]],[[75682,35396,0],[24,20]],[[75706,35416,0],[42,38]],[[75748,35454,0],[3,4],[53,48]],[[75804,35506,0],[0,1],[33,15]],[[75837,35522,0],[46,19],[2,-12],[1,-4]],[[75886,35525,0],[54,9],[3,3]],[[75943,35537,0],[8,9]],[[75951,35546,0],[-1,20],[21,-15],[17,3],[1,0],[44,6],[21,3],[54,5]],[[76108,35568,0],[40,5],[1,0]],[[76149,35573,0],[34,5],[68,8]],[[76251,35586,0],[17,1]],[[76268,35587,0],[1,1]],[[76269,35588,0],[21,2],[34,4]],[[76324,35594,0],[211,19],[42,5],[129,12],[31,4]],[[76737,35634,0],[26,-13],[26,-14]],[[76789,35607,0],[46,-24],[36,-18],[4,-2],[3,-45],[10,-32],[-6,0],[-5,-1],[-6,-8],[-19,-25],[-33,-44],[6,-119],[3,-61],[2,-10],[-16,-25],[0,-97],[-14,-80],[-35,-87],[-115,-310],[-14,-37],[-30,-158],[-36,-142],[-2,-143],[47,-272],[-13,-516],[-7,-182]],[[78483,32945,0],[2,-35],[-79,7],[-125,-58],[-63,-33],[20,-117],[-6,-40],[-6,-67],[-1,-81],[-63,-214],[-6,-14],[-75,-118],[-66,-69],[-50,-41],[-148,-101],[-28,-18],[-47,-14],[-49,-10],[-59,-4],[-97,-21],[-80,-43],[-30,-33]],[[77427,31821,0],[-13,-16],[-21,-23]],[[77311,31823,0],[-6,8],[-21,26],[-28,25],[-109,101],[-36,35],[-131,127],[-47,47],[-33,37]],[[76815,32335,0],[-19,26],[-23,29],[-35,43],[-29,35]],[[76709,32468,0],[-17,23],[-24,33],[-3,4],[-5,7],[-37,55],[-6,13],[-15,31],[-18,39]],[[76567,32708,0],[-21,101],[-5,20],[-7,36],[-19,102],[-29,154]],[[76595,33169,0],[4,7],[24,19],[15,51],[19,71],[-6,20],[-31,9],[14,17],[11,8],[-2,13],[88,87],[54,62],[61,116],[21,69],[8,23],[8,23],[22,87],[25,42],[22,41],[29,59],[10,15],[11,19],[22,36],[37,5],[38,0],[388,6],[0,-14],[69,2],[0,13],[402,-17],[141,-46],[293,42],[177,28]],[[78569,34082,0],[3,-11]],[[78572,34071,0],[-8,-27],[-32,-109],[-15,-18],[21,-428],[4,-40],[-16,-36],[-10,-65],[-13,-174],[-12,-88],[9,-5],[6,-10],[-2,-20],[-17,-11],[-4,-95]],[[76900,36312,0],[12,-10],[-9,-10],[21,-20],[11,-10],[6,7],[69,-65],[45,-57],[-46,-54],[-14,-19],[-7,4],[-4,-25],[-9,-41],[-45,7],[-56,10],[-9,-38],[-16,-7],[-19,-49],[-15,-123],[-17,-131],[-9,-74]],[[76789,35607,0],[-52,27]],[[76324,35594,0],[-56,-7]],[[76251,35586,0],[-68,-9]],[[76183,35577,0],[-34,-4]],[[76149,35573,0],[-41,-5]],[[76108,35568,0],[-54,-6],[-20,-2],[-46,-7],[-16,-2],[-21,15],[0,-20]],[[75943,35537,0],[-3,-4],[-54,-8]],[[75837,35522,0],[-33,-16]],[[75804,35506,0],[-52,-48],[-4,-4]],[[75706,35416,0],[-24,-21],[0,1]],[[75682,35396,0],[-34,61],[-10,18],[-61,-18],[-4,-1],[-83,-25]],[[75490,35431,0],[-19,-5],[14,-18]],[[75485,35408,0],[46,-57],[7,-51],[4,-21]],[[75542,35279,0],[-13,-38],[-6,-16]],[[75212,35240,0],[-231,7]],[[73992,35247,0],[0,1],[-3,7]],[[73989,35255,0],[-4,22],[-3,8]],[[73982,35285,0],[-1,3],[-1,6]],[[73998,35449,0],[1,15],[0,2]],[[73999,35466,0],[15,97]],[[74014,35563,0],[5,20],[23,109],[2,9]],[[74046,35712,0],[3,10],[19,89]],[[74072,35826,0],[2,12],[0,2]],[[74087,35878,0],[1,3],[9,23],[4,12],[5,15],[19,116],[11,119],[2,20]],[[74138,36186,0],[1,12]],[[74139,36198,0],[2,53],[0,7]],[[74141,36258,0],[0,15],[1,65]],[[74142,36338,0],[33,5],[17,2]],[[74192,36345,0],[2,-1]],[[74194,36344,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0]],[[74198,36341,0],[1,0],[0,-1]],[[74199,36340,0],[1,-1]],[[74200,36339,0],[2,0]],[[74202,36339,0],[1,0],[1,0]],[[74204,36339,0],[1,0],[1,0]],[[74206,36339,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1]],[[74218,36343,0],[1,1],[0,1]],[[74219,36345,0],[1,0],[0,1]],[[74220,36346,0],[1,0],[0,1]],[[74221,36347,0],[1,1],[56,143]],[[74278,36491,0],[41,107]],[[74319,36598,0],[45,107]],[[74364,36705,0],[20,55],[14,35]],[[74398,36795,0],[27,78],[13,36]],[[74438,36909,0],[15,12]],[[74453,36921,0],[11,12],[3,4]],[[74467,36937,0],[2,0],[10,2]],[[74479,36939,0],[96,16]],[[74575,36955,0],[13,1]],[[74588,36956,0],[92,14],[98,14],[10,-2],[44,-12],[60,-17],[11,-2],[9,-3],[89,-23],[19,-4],[33,-8],[62,-18],[8,-2],[25,-6],[11,-2],[26,-8],[26,-6],[15,-3],[10,-3],[10,-2],[12,-4],[26,-7],[26,-6],[10,-2],[17,-5],[53,-14],[31,-7],[31,-8],[17,-4],[7,-2],[27,-8],[27,-7],[27,-6],[23,-7],[80,-21],[37,-8],[150,-40],[117,-30],[21,-8],[14,-6],[47,-20],[26,-10],[15,-7],[49,-21],[21,-6],[7,-2],[19,-7],[52,-19],[13,-4],[11,-3],[36,-13],[-2,-6],[0,-3],[91,-35],[5,12],[2,-1],[3,-1],[8,-3],[5,3],[27,9],[32,12],[4,0],[76,-62],[7,-5],[6,-5],[40,-30],[31,-22],[60,-43],[120,-79],[5,-4],[30,-19],[6,-3],[5,1],[4,0],[26,29],[12,13],[1,2],[1,1]],[[76219,37759,0],[-34,-17],[-27,31],[-5,-3],[3,-3],[-85,-60],[49,-74],[4,2],[85,-113],[-16,-18],[-47,-48],[-74,-76],[11,-9],[-110,-133],[58,-42],[30,-24],[-5,-67],[0,-5],[39,-18],[-12,-41],[12,-10],[163,-142],[19,-18],[-6,-8],[28,-26],[8,8],[141,-128],[33,-29],[-9,-11],[29,-26],[10,9],[20,-19],[19,-20],[136,-122],[15,-13],[-6,-8],[30,-28],[10,9],[165,-147]],[[74588,36956,0],[-13,60],[-1,0],[-6,37]],[[74568,37053,0],[-1,5],[0,2]],[[74567,37060,0],[-2,22],[6,11],[5,9],[2,0],[4,2]],[[74582,37104,0],[12,5]],[[74594,37109,0],[1,0],[22,8],[25,9],[112,37]],[[74754,37163,0],[21,7],[27,10]],[[74802,37180,0],[116,38],[22,7]],[[74940,37225,0],[12,4]],[[74952,37229,0],[19,7],[15,5]],[[74986,37241,0],[0,7]],[[74986,37248,0],[14,4]],[[75000,37252,0],[1,-5],[1,0]],[[75002,37247,0],[70,22],[55,21]],[[75127,37290,0],[102,38],[33,12],[10,4]],[[75272,37344,0],[46,17]],[[75318,37361,0],[11,5],[16,8]],[[75345,37374,0],[19,8]],[[75364,37382,0],[8,4],[4,1],[207,90]],[[75583,37477,0],[62,32],[130,80],[13,35],[7,7],[34,17]],[[75829,37648,0],[45,25],[281,161]],[[76155,37834,0],[13,-4],[51,-71]],[[74746,38129,0],[84,-60],[43,-30],[2,3],[21,-14],[50,-32],[-2,-2],[64,-46]],[[75008,37948,0],[61,-44],[1,-1],[1,-1]],[[75071,37902,0],[8,-5],[3,-3]],[[75082,37894,0],[8,-5],[5,-5]],[[75095,37884,0],[47,-37],[79,-61],[65,-53],[80,-62],[79,-63],[57,-45]],[[75502,37563,0],[81,-86]],[[75583,37477,0],[-177,-76],[-31,-14],[-11,-5]],[[75345,37374,0],[-22,-11],[-5,-2]],[[75272,37344,0],[-44,-16],[-16,-6],[-85,-32]],[[75002,37247,0],[-2,5]],[[74986,37248,0],[0,-2],[0,-5]],[[74986,37241,0],[-17,-6],[-17,-6]],[[74952,37229,0],[-11,-4],[-1,0]],[[74802,37180,0],[-28,-10],[-20,-7]],[[74754,37163,0],[-80,-27],[-33,-10],[-47,-17]],[[74594,37109,0],[-2,-1],[-10,-4]],[[74582,37104,0],[-3,-1],[-3,-2],[-66,26],[-21,-8]],[[74489,37119,0],[-88,74],[1,1],[1,1],[2,2],[2,2],[-77,54],[-18,13],[-28,20],[-17,12],[-4,3],[-69,49],[-38,29],[-9,6],[-12,-15],[-13,10],[-12,9],[-62,46],[-5,4],[9,10],[2,3],[-24,17],[-40,28],[-20,14],[-49,36],[-34,23],[-25,18],[-41,30],[-38,27],[-9,24],[39,48],[15,18],[26,32],[12,15],[2,2],[5,4],[13,17],[17,20],[36,40],[20,22],[1,3],[0,4],[-4,3],[0,1],[-2,1],[-19,14],[-7,5],[-6,5],[-5,3],[-51,37],[-147,103],[-12,-4],[0,2],[1,2],[0,4],[0,6],[-141,98],[-31,21],[-1,1],[-65,48],[-28,19],[-44,27],[-90,62],[-8,1],[-4,-2],[-1,-3],[-1,-1],[-1,-2],[0,-1],[6,-60],[3,-1],[4,-1],[6,-55],[1,-6],[1,-13],[-10,-17],[-12,-1],[-1,0],[-13,-2],[-242,-19],[-20,-1],[-45,-4]],[[72971,38164,0],[-4,36]],[[72967,38200,0],[-2,99],[0,11],[-1,38]],[[72964,38348,0],[-1,11],[0,1]],[[72963,38360,0],[-3,87]],[[72960,38447,0],[-3,42],[0,3]],[[72957,38492,0],[0,8]],[[72957,38500,0],[-4,42],[-1,16]],[[72952,38558,0],[-5,49]],[[72947,38607,0],[0,3],[0,4],[-1,9]],[[72946,38623,0],[-6,52]],[[72940,38675,0],[-3,28]],[[72937,38703,0],[-4,37]],[[72933,38740,0],[0,3]],[[72933,38743,0],[-1,6]],[[72932,38749,0],[-3,22],[-3,29],[0,1]],[[72926,38801,0],[-6,55]],[[72920,38856,0],[-6,52],[-3,43]],[[72911,38951,0],[0,2],[-3,124]],[[72908,39077,0],[-1,66]],[[72907,39143,0],[-1,18],[0,3],[0,1]],[[72906,39165,0],[0,4],[0,26]],[[72906,39195,0],[5,21]],[[72911,39216,0],[10,1]],[[72921,39217,0],[60,-43],[5,-4]],[[72986,39170,0],[-1,-1],[-1,-3]],[[72984,39166,0],[70,-49]],[[73054,39117,0],[3,-2],[-3,-4]],[[73054,39111,0],[3,-3],[2,-2]],[[73059,39106,0],[26,-18],[19,-12]],[[73104,39076,0],[17,-11],[23,-15]],[[73144,39050,0],[23,-16],[43,-31]],[[73210,39003,0],[14,-10],[41,-29]],[[73265,38964,0],[42,-28]],[[73307,38936,0],[22,-17],[11,-8]],[[73340,38911,0],[30,-23]],[[73370,38888,0],[29,-23]],[[73399,38865,0],[9,-9],[11,-10],[79,-76],[74,-72],[29,-27],[13,-11],[8,-8],[9,-12],[4,-6],[36,-70],[33,-65],[6,-13],[10,-19],[3,-5],[3,-6],[9,-18],[1,-4],[74,51],[42,41],[221,-118],[-1,-2],[-2,-2],[40,-24],[22,-11],[61,-35],[1,2],[2,1],[5,-2],[30,-15],[2,3],[3,3],[124,-68],[-4,-7],[31,-17],[0,-1],[-1,-3],[85,-50],[37,-1],[26,-14],[92,-50],[120,14]],[[74489,37119,0],[8,-6],[11,-8],[25,-19],[21,-16],[13,-10]],[[74567,37060,0],[1,-5],[0,-2]],[[74568,37053,0],[2,-14],[4,-24],[14,-59]],[[74588,36956,0],[-2,0],[-4,-1],[-7,0]],[[74479,36939,0],[-12,-2]],[[74467,36937,0],[-14,-16]],[[74438,36909,0],[-15,-41],[-25,-73]],[[74398,36795,0],[-31,-82],[-3,-8]],[[74364,36705,0],[-6,-13],[-39,-94]],[[74319,36598,0],[-8,-21],[-33,-86]],[[74278,36491,0],[-31,-79],[-26,-64],[0,-1]],[[74221,36347,0],[-1,-1]],[[74219,36345,0],[-1,-1],[0,-1]],[[74206,36339,0],[-2,0]],[[74202,36339,0],[-1,0],[-1,0]],[[74199,36340,0],[-1,1]],[[74194,36344,0],[-1,1],[-1,0]],[[74192,36345,0],[-50,-7]],[[74142,36338,0],[-1,-19],[0,-61]],[[74141,36258,0],[-1,-27],[-1,-33]],[[74139,36198,0],[-1,-7],[0,-5]],[[74138,36186,0],[-13,-140],[-20,-115]],[[74105,35931,0],[-209,-86]],[[73835,35820,0],[-23,48]],[[73701,35921,0],[-44,-20]],[[73622,35908,0],[-5,6],[-4,7]],[[73613,35921,0],[-23,-11]],[[73558,35893,0],[-35,-17]],[[73495,35862,0],[14,-204]],[[73283,35706,0],[-59,94]],[[73165,35767,0],[59,-103]],[[73049,35586,0],[-137,-60]],[[72882,35512,0],[-234,-103]],[[72644,35415,0],[6,1]],[[72646,35424,0],[-9,18]],[[72637,35442,0],[-17,-4],[-18,-4]],[[72602,35434,0],[1,-3]],[[72603,35431,0],[-7,-1],[-12,-4]],[[72584,35426,0],[-18,-4]],[[72566,35422,0],[-56,-13]],[[72510,35409,0],[-13,-2],[-14,-4]],[[72483,35403,0],[-40,-19]],[[72443,35384,0],[-59,4],[-41,4]],[[72326,35396,0],[-4,-1],[-43,-6]],[[72279,35389,0],[-19,-2],[-17,-2]],[[72243,35385,0],[-32,-7],[-16,-2]],[[72195,35376,0],[-19,-5],[-23,-5]],[[72004,35274,0],[-12,24],[-10,21],[-32,79],[-7,16],[-24,56],[-12,11]],[[71907,35481,0],[16,10],[54,32],[-3,10],[54,53],[90,88],[36,32],[39,35],[39,34],[47,42],[28,26],[-43,-24],[-17,-6],[-19,1],[-5,2],[-6,4],[-7,6],[-4,4],[-56,85],[-18,28],[-34,49],[12,7],[13,8],[36,20],[8,5],[78,48],[-10,15],[-39,60],[-136,206],[-30,-18],[-114,-70],[-59,-36],[-15,-9],[-51,-32],[-28,-17],[-31,-19],[0,3],[0,3],[-3,76],[0,23],[-1,14],[-3,1],[-1,11],[-2,21],[-2,2],[-1,8],[-9,61],[-3,17],[-3,12],[-5,15],[-33,47],[-1,1],[-9,12],[-76,114],[-11,23],[-11,22],[-42,81],[-2,4],[-10,17],[32,70],[37,78],[40,47],[4,-3],[25,55],[10,22],[0,1],[-1,1],[19,25],[10,12],[33,18],[17,17],[19,19],[41,40],[5,2],[5,2],[17,0],[22,6],[16,3],[3,5],[12,10],[9,3],[19,7],[-13,35],[-10,29],[-15,2],[-11,29],[-25,63],[-28,104],[3,10],[60,22],[93,35],[-5,6],[7,17],[0,3],[6,58],[1,12],[21,79],[10,39],[6,19],[5,19],[24,85],[-47,21],[2,6],[10,29],[4,14],[42,135],[25,82],[9,28],[13,42]],[[72085,38211,0],[12,-2],[19,-3]],[[72116,38206,0],[67,-18],[46,-12]],[[72229,38176,0],[49,-12],[46,-13],[57,-15]],[[72381,38136,0],[7,27],[2,2],[4,5],[10,1],[78,-24],[34,-10],[-8,-35]],[[72508,38102,0],[17,-5],[2,0]],[[72527,38097,0],[31,-9],[65,-18]],[[72623,38070,0],[114,-31]],[[72737,38039,0],[65,-18],[86,-23]],[[72888,37998,0],[31,-10],[8,-3]],[[72927,37985,0],[10,-2],[16,-4],[3,0]],[[72956,37979,0],[7,45],[1,2],[0,1],[1,9]],[[72965,38036,0],[3,10],[0,16],[0,2]],[[72968,38064,0],[0,1],[1,16]],[[72969,38081,0],[1,45],[1,38]],[[71081,38377,0],[35,-8]],[[71116,38369,0],[96,-23],[66,-36],[14,-15],[26,-6],[43,-11],[10,-3],[24,4],[71,15]],[[71466,38294,0],[44,-8]],[[71510,38286,0],[22,-4],[44,-8]],[[71576,38274,0],[14,67]],[[71590,38341,0],[5,10]],[[71595,38351,0],[10,11]],[[71605,38362,0],[10,4]],[[71615,38366,0],[163,-14]],[[71778,38352,0],[48,-31],[72,-43]],[[71898,38278,0],[4,-4]],[[71902,38274,0],[20,-14]],[[71922,38260,0],[147,-43]],[[72069,38217,0],[16,-6]],[[71907,35481,0],[-3,-1],[-13,-1],[-187,-101]],[[71704,35378,0],[23,34],[1,3],[2,13],[-2,17],[-6,20],[-107,169],[-66,101],[-164,244],[-25,31],[-34,55],[-16,24],[-48,73],[-9,20],[-13,21],[-75,125],[-9,18],[-9,16],[-52,92],[-28,52],[-36,70],[-7,10],[-15,20]],[[71009,36606,0],[-1,14],[-3,16],[-52,114],[-69,148],[-10,16],[-10,12],[-15,12],[-21,14],[-16,8],[-14,8],[7,22],[7,18],[1,0],[109,-25],[-16,174],[-71,19],[-2,10],[-51,458]],[[70782,37644,0],[-9,99],[-6,72],[-6,72],[-6,73],[-5,74],[-8,100],[-5,72],[7,81],[8,67],[0,10],[-5,11]],[[70747,38375,0],[-8,11],[22,0]],[[70761,38386,0],[3,0],[173,-2]],[[70937,38384,0],[79,5],[1,4],[64,-16]],[[71704,35378,0],[-134,-40],[-42,-14],[-114,-37],[-147,-50],[-130,-40],[-47,-15],[-66,-8],[-15,-3],[-10,-2],[-131,-14],[-90,-10],[-32,-3],[-164,-19],[-33,7],[-53,11],[-74,-11],[-75,-11],[-29,-32],[-71,-11],[-1,0],[-20,12],[-9,-17],[-71,-13],[-34,21],[-152,-24],[-27,-15],[-54,-30]],[[68116,34928,0],[3,168],[0,3],[0,40],[-1,90],[-1,126],[0,14],[1,111]],[[68118,35480,0],[1,1],[26,4],[16,2],[18,3],[7,1],[13,2],[16,2],[5,1],[7,1],[18,2],[8,1],[10,2],[12,1],[49,4],[13,1],[15,2],[29,2],[7,1],[5,1],[43,3],[21,2],[29,-5],[45,-8],[9,-2],[4,-1],[4,-1],[7,-3],[5,-1],[2,-1],[8,-3],[3,-1],[10,-4],[3,71],[1,8],[0,8],[1,29],[46,-2],[10,0],[38,-1],[85,-59],[70,-49],[48,-32],[20,-14],[3,-2],[23,-16],[31,-21],[43,-29],[11,-8],[17,-12],[100,-69],[19,-10],[35,-6],[11,-1],[51,-8],[2,10],[4,22],[7,40],[21,2],[1,0],[12,0],[25,3],[19,1],[2,0],[9,1],[-3,22],[-2,23],[-11,93],[-10,78],[-2,17],[-3,25],[-8,65],[0,6],[-1,5],[-1,6],[-14,127],[-1,17],[-16,136],[-2,19],[-8,74],[-18,135],[-14,99],[-5,36],[-1,8],[-4,24]],[[69227,36360,0],[24,0],[55,-2],[4,0],[477,-12],[49,-23],[1,0],[1,-1],[33,-15],[38,-6],[76,-10],[7,-1],[0,-3],[0,-1],[0,-4],[50,9],[0,1],[1,0],[2,0],[32,8],[33,14],[17,7],[37,25],[14,11],[19,19],[32,6],[60,13],[98,20],[139,29],[92,19],[65,13],[87,18],[180,38],[7,4],[10,5],[7,4],[2,2],[2,1],[12,11],[11,13],[5,16],[0,3],[2,14],[1,1]],[[68118,35480,0],[-21,11]],[[68097,35491,0],[15,127],[4,38],[1,3],[-14,2],[-5,1],[4,90]],[[68102,35752,0],[0,1],[22,217]],[[68124,35970,0],[13,154],[12,145]],[[68149,36269,0],[18,78],[-1,58],[-9,452],[-5,240],[-13,12]],[[68139,37109,0],[42,2],[58,0],[58,0]],[[68297,37111,0],[12,0],[46,0]],[[68355,37111,0],[58,1],[62,0],[41,3],[111,1],[113,0],[45,0],[112,2]],[[68897,37118,0],[68,1],[79,1]],[[69044,37120,0],[-1,10]],[[69043,37130,0],[3,4],[5,8]],[[69051,37142,0],[61,2],[6,0]],[[69118,37144,0],[24,-177],[43,-351],[23,-179],[5,-43],[5,-34],[9,0]],[[67270,39008,0],[-29,15],[-54,-43],[70,-38],[47,-26],[36,-19],[18,-10],[10,-5],[24,-15],[37,-19],[33,-18],[12,-7],[22,-13],[26,-13],[12,-31],[10,-25],[16,-40],[9,-21],[25,-59],[33,-84],[16,-40],[8,-19],[9,-23],[7,-16],[13,-34],[30,-74],[30,-74],[23,-54],[8,-22],[11,-27],[18,-44],[18,-45],[6,-15],[6,-15],[5,-14],[40,-97],[4,-10],[3,-8],[6,-15],[9,-23],[29,-69],[18,-46],[25,-63],[7,-1]],[[67976,37689,0],[-7,-135]],[[67969,37554,0],[-22,-61],[-26,-72]],[[67921,37421,0],[-2,-5],[-6,-11]],[[67913,37405,0],[-28,-53],[-10,-20]],[[67875,37332,0],[-2,-3],[-4,-8]],[[67869,37321,0],[-1,-3],[-2,-5]],[[67866,37313,0],[-3,-5],[-3,-5]],[[67860,37303,0],[-21,-7],[-25,-9]],[[67814,37287,0],[-25,1],[-38,3],[-2,-30],[-13,-183]],[[67736,37078,0],[-95,-8],[-149,-13],[-41,-4],[-23,-2],[-35,-3],[-12,-1],[-29,-3],[-21,-1],[10,167],[-46,4]],[[67295,37214,0],[-7,1],[-32,3]],[[67256,37218,0],[-65,-14],[-138,-28],[-36,-8]],[[67017,37168,0],[-1,5],[-8,70],[-10,113],[-12,128],[-13,135]],[[66973,37619,0],[-15,161],[-20,184],[-7,67],[-4,49],[-5,44],[-15,143]],[[66907,38267,0],[-19,196],[-3,28],[-18,176],[-31,311],[-15,152],[-4,44],[-3,31],[-24,224],[-1,13]],[[66789,39442,0],[-35,339],[0,2]],[[66754,39783,0],[-1,7],[-12,111]],[[66741,39901,0],[35,-16],[56,-24],[53,-22]],[[66885,39839,0],[27,-12],[1,0]],[[66913,39827,0],[40,-18],[12,-5]],[[66965,39804,0],[70,-30],[21,-9],[54,-22],[75,-35]],[[67185,39708,0],[-27,-37],[-22,-35]],[[67136,39636,0],[-13,-18],[-5,-6]],[[67118,39612,0],[1,-9],[2,-36]],[[67121,39567,0],[2,-59],[1,-1]],[[67124,39507,0],[3,-45],[8,-81]],[[67135,39381,0],[5,-51],[1,-6]],[[67141,39324,0],[2,-24],[28,-76],[25,-66],[74,-150]],[[69057,37681,0],[11,-94]],[[69068,37587,0],[38,-342]],[[69106,37245,0],[12,-101]],[[69118,37144,0],[-67,-2]],[[69051,37142,0],[-8,-12]],[[69044,37120,0],[-147,-2]],[[68355,37111,0],[-58,0]],[[68139,37109,0],[-64,-1],[-58,-3],[-59,-1],[-52,-1],[-62,-1],[-58,0],[-1,-25],[-49,1]],[[67814,37287,0],[46,16]],[[67860,37303,0],[6,10]],[[67866,37313,0],[3,8]],[[67869,37321,0],[6,11]],[[67875,37332,0],[38,73]],[[67913,37405,0],[8,16]],[[67921,37421,0],[48,133]],[[67976,37689,0],[32,-16],[37,-27],[-19,43],[106,37]],[[68132,37726,0],[54,20],[37,13],[13,4],[29,5],[58,9],[32,5],[31,5],[91,12],[51,8],[61,10],[66,9],[62,8],[39,9],[25,2],[27,4],[24,5],[22,4],[48,6],[66,10]],[[68968,37874,0],[166,46]],[[69134,37920,0],[-14,-25],[-9,-16]],[[69111,37879,0],[-39,-77],[-8,-14]],[[69064,37788,0],[-7,-107]],[[70609,37632,0],[173,12]],[[69118,37144,0],[-1,14],[-1,1],[-10,86]],[[69106,37245,0],[-1,11],[-1,6],[-9,77],[-3,29],[-5,45],[-7,64],[-10,88],[-2,22]],[[69068,37587,0],[11,8],[23,17]],[[69102,37612,0],[12,-3],[55,-10]],[[69169,37599,0],[1,7],[185,-28],[88,15]],[[69443,37593,0],[70,12],[36,7],[4,1],[1,0],[2,-13],[182,37],[0,9],[1,1],[6,1]],[[69745,37648,0],[-3,9]],[[69742,37657,0],[206,41],[212,41]],[[70160,37739,0],[62,15]],[[70222,37754,0],[22,6],[15,3]],[[70259,37763,0],[148,1],[15,0]],[[70422,37764,0],[43,0],[24,0]],[[70489,37764,0],[72,-14],[17,-3]],[[70578,37747,0],[7,-26]],[[70585,37721,0],[15,-53],[9,-36]],[[71063,38762,0],[-62,-122]],[[71001,38640,0],[-32,-72],[-27,-52],[-16,-36],[-3,-10],[1,-8],[5,-7],[1,-16]],[[70930,38439,0],[2,-38]],[[70932,38401,0],[5,-17]],[[70761,38386,0],[-25,3],[11,-14]],[[70609,37632,0],[-24,89]],[[70578,37747,0],[-89,17]],[[70489,37764,0],[-67,0]],[[70259,37763,0],[-37,-9]],[[70160,37739,0],[-418,-82]],[[69745,37648,0],[-302,-55]],[[69169,37599,0],[-67,13]],[[69102,37612,0],[-34,-25]],[[69057,37681,0],[1,14],[6,93]],[[69064,37788,0],[13,24],[34,67]],[[69134,37920,0],[14,31],[38,75],[153,299],[78,151]],[[69417,38476,0],[67,131],[44,87]],[[69528,38694,0],[5,12]],[[69533,38706,0],[169,-42],[49,-12],[11,-3],[-2,-10],[114,-29]],[[69874,38610,0],[66,-16]],[[69940,38594,0],[15,4]],[[69955,38598,0],[100,25]],[[70055,38623,0],[95,23]],[[70150,38646,0],[49,13]],[[70199,38659,0],[116,28],[145,35],[75,18]],[[70535,38740,0],[57,16]],[[70592,38756,0],[3,-26],[192,74],[106,25],[46,13]],[[70939,38842,0],[17,5]],[[70956,38847,0],[205,64]],[[71161,38911,0],[-16,-18],[-51,-80],[-20,-30],[-11,-21]],[[67372,41287,0],[72,-37],[23,-10]],[[67467,41240,0],[92,-46],[64,-32]],[[67623,41162,0],[26,-12],[35,-18],[12,-6],[22,-11]],[[67718,41115,0],[20,-9],[18,-9]],[[67756,41097,0],[20,-10],[18,-9]],[[67794,41078,0],[39,-19],[2,-1],[37,-19]],[[67872,41039,0],[29,-14],[11,-5]],[[67912,41020,0],[10,-5]],[[67922,41015,0],[15,-7],[11,-6]],[[67948,41002,0],[40,-19],[21,-11],[17,-9],[34,-16],[33,-17]],[[68093,40930,0],[-25,-62],[-7,-20],[-4,-13],[1,-2],[-26,-61],[1,-7],[-2,-7],[-5,-1],[-4,-5],[-2,-5],[9,-2],[-6,-32],[-5,-7],[4,-3],[5,-63],[5,-34],[6,-31],[4,-25],[2,-10],[8,-81],[-1,-26],[-3,-54],[-1,-10],[-7,-70],[-1,-34],[-1,-37],[-3,-1],[-8,-34],[-6,-23],[-2,-12],[-13,-26],[-17,-33],[48,-25],[-24,-47],[14,-8],[-4,-8],[-19,-33],[-5,-9],[-1,0],[-11,4],[-23,-36],[-3,-4],[1,-14],[-5,2],[-12,-56],[-1,-5],[-3,-11],[0,-2],[75,-9],[-9,-58],[-80,12],[-11,-7],[-2,-1],[-5,-23],[-2,-13],[-9,-44],[-6,-11],[-6,3],[-46,24],[-5,-7],[-18,-27],[-17,-23],[-6,-9],[-2,-5],[-9,5],[-57,-72],[-4,-4]],[[67722,39578,0],[-21,-26]],[[67701,39552,0],[-13,7],[-33,15],[-33,15],[-66,-3]],[[67556,39586,0],[-68,42],[-27,17]],[[67461,39645,0],[-74,13],[-45,13]],[[67342,39671,0],[-22,7],[-34,10]],[[67286,39688,0],[-41,14],[-52,17]],[[67193,39719,0],[-8,-11]],[[67185,39708,0],[-40,25],[-14,10],[-56,65],[-24,12],[-53,29],[-33,17]],[[66965,39866,0],[-1,28],[-2,39],[-14,105],[-7,53],[-13,79],[-17,78],[-13,57],[0,1]],[[66898,40306,0],[-39,122]],[[66859,40428,0],[-34,88],[-35,78],[-13,28],[-16,35],[-22,45]],[[66739,40702,0],[-89,175]],[[66650,40877,0],[-11,21],[-72,142],[-9,20],[-7,13],[-58,114]],[[66493,41187,0],[-41,83],[-5,9],[-1,1]],[[66446,41280,0],[-80,159],[-6,12]],[[66360,41451,0],[-50,107]],[[66310,41558,0],[-1,3],[-8,18]],[[66301,41579,0],[-52,115]],[[66249,41694,0],[-22,47],[-11,24],[-50,113]],[[66166,41878,0],[-5,9],[-13,26]],[[66148,41913,0],[19,-5],[7,-8],[2,-2],[120,-44],[73,-32],[5,-2],[7,-3],[109,-41],[8,-3],[5,-2],[13,-7],[36,-17],[20,-10],[12,-6],[32,-16],[26,-12],[13,-6],[5,-2],[8,-4],[5,-1],[10,-5],[9,-5],[5,-1],[12,-6],[8,-4],[5,-3],[24,-13],[12,-6],[26,-14],[22,-11],[-3,-9],[-1,-2],[10,-5],[1,-1],[2,0],[18,-9],[2,4],[2,4],[5,-3],[20,-9],[-6,-11],[84,-51],[60,-38],[10,-6],[3,0],[4,-1],[34,-18],[28,-13],[63,-38],[6,-3],[31,-15],[29,-16],[19,-10],[22,-13],[8,-5],[20,-11],[12,-7],[27,-17],[56,-32]],[[68953,40438,0],[-64,-98],[-42,-64],[-62,-95],[-1,-15],[4,0],[-1,-38],[-1,-43],[-1,-40],[-2,-36],[-1,-41],[-1,-42],[0,-11],[-1,-26],[-1,-15],[-2,-44],[-1,-41],[-1,-38],[-2,-42],[-1,-37],[-1,-39],[-8,0],[-9,-46],[-2,-12],[-1,-4],[-1,-12],[16,-10],[3,-1],[-7,-21]],[[68762,39527,0],[-6,-13],[-11,-26],[-11,-25],[-10,-26],[-13,-29],[-20,-33],[-16,-26],[-9,-19],[-70,-124],[-28,-46],[-27,-49]],[[68541,39111,0],[-35,15],[-58,30],[-12,8]],[[68436,39164,0],[-27,15],[-23,12]],[[68386,39191,0],[-53,29],[-22,13],[-25,13],[-24,14],[-28,15],[-23,13],[2,3],[-24,14],[-25,16],[-24,14],[-29,18],[-22,13],[-25,15],[-19,11],[-27,16],[-25,14],[-24,13],[-24,14],[-25,15],[-21,12],[-26,14],[-23,14],[-22,13],[-25,13],[-81,48]],[[68093,40930,0],[75,-45],[56,-32],[3,1],[3,1],[34,-22],[14,-9],[58,-34],[4,-2],[6,-3],[46,-27],[16,-9],[16,-8],[46,-27],[44,-24],[21,-12],[18,-11],[42,-24],[79,-46],[32,-18],[77,-43],[170,-98]],[[69992,40228,0],[-6,-63]],[[69986,40165,0],[0,-22],[3,-31]],[[69989,40112,0],[2,-27],[4,-30],[5,-57],[2,-23],[2,-31]],[[70004,39944,0],[3,-31],[1,-9]],[[70008,39904,0],[2,-31],[8,-84]],[[70018,39789,0],[4,-51],[2,-25]],[[70024,39713,0],[2,-26],[0,-9],[2,-23]],[[70028,39655,0],[3,-33],[3,-29],[4,-36]],[[70038,39557,0],[1,-32]],[[70039,39525,0],[-303,-34],[-33,-1],[-259,-15],[-17,5],[-189,86],[-186,85],[-14,-29],[1,-4],[-6,-18],[-3,-3],[-33,-107]],[[68997,39490,0],[-1,-3],[-8,-17]],[[68988,39470,0],[-9,-18],[-15,7],[3,5],[-31,9],[-32,10],[-28,8],[-33,10],[-32,10],[-22,8]],[[68789,39519,0],[-13,4],[-14,4]],[[68953,40438,0],[24,-11]],[[68977,40427,0],[30,-9],[31,-7],[30,-8],[107,-28],[20,-5],[32,-9],[28,-7],[28,-8],[28,-6],[14,-4],[16,-5],[27,-6],[33,-9],[17,-1],[29,0],[32,-2],[2,-1],[11,0],[17,0],[24,-2],[32,-2],[35,-2],[29,-2],[53,-5],[44,-6],[12,-1],[21,-2],[6,-1],[28,-3],[15,-4],[8,-1],[15,-3],[25,-5],[5,0],[7,0],[20,-8],[7,-2],[18,-6],[26,-10],[20,-7],[6,-2],[27,-10]],[[70039,39525,0],[7,-50],[3,-14]],[[70049,39461,0],[2,0],[20,-84]],[[70071,39377,0],[7,-9],[24,-105]],[[70102,39263,0],[15,-38],[1,-8]],[[70118,39217,0],[6,-12],[13,-25]],[[70137,39180,0],[25,-60],[50,-130]],[[70212,38990,0],[0,-5],[-27,-92]],[[70185,38893,0],[-27,-47]],[[70158,38846,0],[-40,2],[-11,2]],[[70107,38850,0],[-56,9],[-1,-12]],[[70050,38847,0],[-34,-46]],[[70016,38801,0],[-30,-41]],[[69986,38760,0],[-19,-26]],[[69967,38734,0],[-53,-68],[-40,-56]],[[69533,38706,0],[-63,26],[-16,-29],[-207,88],[-64,42],[-19,13],[-45,31],[2,4]],[[69121,38881,0],[-229,95]],[[68892,38976,0],[-53,20],[-41,15],[-91,35],[-40,15],[-52,19],[-22,10],[-28,12],[-24,9]],[[68762,39527,0],[27,-8]],[[68988,39470,0],[9,20]],[[70686,39963,0],[33,-18],[12,28]],[[70731,39973,0],[77,-15]],[[70808,39958,0],[12,-2]],[[70820,39956,0],[-21,-35]],[[70799,39921,0],[68,-12],[11,-2],[76,-15],[75,-13]],[[71029,39879,0],[2,4]],[[71031,39883,0],[25,-5],[102,-20]],[[71158,39858,0],[2,0],[7,38]],[[71167,39896,0],[293,-45],[-68,-86],[2,-2],[9,-6],[24,-39],[0,-1]],[[71427,39717,0],[37,-55]],[[71464,39662,0],[26,-37],[5,-4]],[[71495,39621,0],[3,-2],[35,-27]],[[71533,39592,0],[86,-63],[-9,-14]],[[71610,39515,0],[-37,-50]],[[71573,39465,0],[-17,-22]],[[71556,39443,0],[-8,-10],[-21,-30]],[[71527,39403,0],[-30,-40],[-28,-38],[-3,-10],[-5,-15]],[[71461,39300,0],[-35,-91]],[[71426,39209,0],[-3,-10],[-1,-3],[-1,0],[-6,-1]],[[71415,39195,0],[-7,-1],[-15,-1],[-21,-3],[-17,-2],[-10,-14]],[[71345,39174,0],[-24,-33],[-36,-54],[-2,-3],[-106,-147],[-16,-26]],[[71161,38911,0],[-154,-48],[-51,-16]],[[70956,38847,0],[-3,-1],[-14,-4]],[[70939,38842,0],[-46,-12],[-39,-10],[-63,-15],[-196,-74],[-3,22],[0,3]],[[70535,38740,0],[-75,-17],[-145,-35],[-116,-29]],[[70199,38659,0],[-32,-8],[-17,-5]],[[70150,38646,0],[-36,-8],[-59,-15]],[[70055,38623,0],[-48,-12],[-52,-13]],[[69955,38598,0],[-8,-2],[-7,-2]],[[69940,38594,0],[-66,17],[24,33],[16,23],[53,67]],[[69967,38734,0],[7,11],[12,15]],[[69986,38760,0],[13,19],[17,22]],[[70050,38847,0],[0,5],[1,8],[56,-10]],[[70107,38850,0],[11,-1],[40,-3]],[[70185,38893,0],[27,93],[0,4]],[[70212,38990,0],[-23,60],[-27,71],[-25,59]],[[70137,39180,0],[-5,10],[-8,16],[-6,11]],[[70118,39217,0],[-1,9],[-3,7],[-12,30]],[[70102,39263,0],[-25,105],[-6,9]],[[70049,39461,0],[-3,15],[-1,11],[-6,38]],[[70039,39525,0],[-1,16],[0,16]],[[70038,39557,0],[-2,12],[-3,25],[-2,29],[-3,32]],[[70028,39655,0],[-2,24],[-1,14],[-1,20]],[[70024,39713,0],[-2,26],[-4,50]],[[70018,39789,0],[-8,85],[-2,22],[0,8]],[[70008,39904,0],[0,3],[-1,7],[-3,30]],[[69989,40112,0],[-2,20],[-1,12],[0,21]],[[69986,40165,0],[1,16],[5,47]],[[69992,40228,0],[30,-11]],[[70022,40217,0],[62,-22],[17,-6]],[[70101,40189,0],[8,-3],[10,-4],[20,-7],[26,-10],[28,-11],[26,-11],[18,-7]],[[70237,40136,0],[10,-4]],[[70247,40132,0],[28,-11],[26,-10]],[[70301,40111,0],[-2,-7],[20,-8]],[[70319,40096,0],[23,-6],[9,-3],[25,-8],[16,-5]],[[70392,40074,0],[13,-4]],[[70405,40070,0],[28,-8],[26,-9]],[[70459,40053,0],[29,-9],[-1,-8],[-2,-10],[18,-4],[118,-38]],[[70621,39984,0],[25,-8],[22,-7],[18,-6]],[[72665,39265,0],[22,-83]],[[72687,39182,0],[15,3]],[[72702,39185,0],[42,10]],[[72744,39195,0],[14,5],[0,-7],[11,9],[92,4]],[[72861,39206,0],[50,10]],[[72906,39195,0],[0,-30]],[[72906,39165,0],[0,-9],[1,-13]],[[72908,39077,0],[0,-5],[3,-121]],[[72920,38856,0],[3,-26],[3,-29]],[[72926,38801,0],[3,-32],[3,-20]],[[72932,38749,0],[1,-5],[0,-1]],[[72933,38740,0],[3,-23],[1,-14]],[[72937,38703,0],[2,-11],[1,-17]],[[72946,38623,0],[1,-16]],[[72952,38558,0],[5,-58]],[[72957,38500,0],[0,-4],[0,-4]],[[72957,38492,0],[2,-20],[1,-25]],[[72960,38447,0],[2,-40],[1,-47]],[[72963,38360,0],[1,-12]],[[72967,38200,0],[3,-28],[1,-8]],[[72971,38164,0],[-1,-5],[-1,-78]],[[72969,38081,0],[-1,-17]],[[72965,38036,0],[0,-3],[-9,-54]],[[72956,37979,0],[-9,2],[-20,4]],[[72927,37985,0],[-38,12],[-1,1]],[[72888,37998,0],[-15,4],[-136,37]],[[72623,38070,0],[-77,22],[-19,5]],[[72527,38097,0],[-19,5]],[[72508,38102,0],[-14,4],[-113,30]],[[72381,38136,0],[-61,16],[-91,24]],[[72229,38176,0],[-113,30]],[[72116,38206,0],[-26,4],[-5,1]],[[72085,38211,0],[-4,2],[-12,4]],[[71922,38260,0],[-7,5],[-13,9]],[[71902,38274,0],[-2,2],[-2,2]],[[71778,38352,0],[-133,11],[-30,3]],[[71615,38366,0],[-4,-2],[-6,-2]],[[71605,38362,0],[-2,-3],[-8,-8]],[[71590,38341,0],[-9,-46],[-5,-21]],[[71510,38286,0],[-43,8],[-1,0]],[[71116,38369,0],[-22,5],[-13,3]],[[70937,38384,0],[-1,2],[-4,15]],[[70932,38401,0],[-1,24],[-1,14]],[[71001,38640,0],[49,97],[13,25]],[[71161,38911,0],[16,25],[106,147],[29,42],[9,15],[12,16],[12,18]],[[71345,39174,0],[10,13],[4,1],[34,4],[22,3]],[[71415,39195,0],[6,0],[1,0],[3,10],[1,4]],[[71461,39300,0],[6,16],[3,8],[6,10],[51,69]],[[71527,39403,0],[25,34],[4,6]],[[71556,39443,0],[5,6],[12,16]],[[71573,39465,0],[35,47],[2,3]],[[71610,39515,0],[9,13]],[[71619,39528,0],[41,54],[18,23],[12,16],[44,56],[58,82],[17,24],[79,104],[2,2],[12,16],[4,2],[4,1],[2,0],[5,0],[12,-1]],[[71929,39907,0],[71,-50]],[[72000,39857,0],[98,-71]],[[72098,39786,0],[73,-53]],[[72171,39733,0],[26,-15]],[[72197,39718,0],[145,-106]],[[72342,39612,0],[126,-83]],[[72468,39529,0],[60,-41],[164,-118]],[[72692,39370,0],[3,-12]],[[72695,39358,0],[0,-16]],[[72695,39342,0],[-10,-59]],[[72685,39283,0],[-8,-10]],[[72677,39273,0],[-8,-6]],[[72669,39267,0],[-4,-2]],[[70613,41045,0],[1,0],[192,24]],[[70806,41069,0],[47,-6]],[[70853,41063,0],[24,-4],[201,-30]],[[71078,41029,0],[219,-37],[241,-40]],[[71538,40952,0],[198,-29]],[[71736,40923,0],[151,-52],[19,-6],[61,-19],[52,-23]],[[72019,40823,0],[87,-36],[54,-23]],[[72160,40764,0],[101,-29]],[[72261,40735,0],[2,-1],[8,-2]],[[72271,40732,0],[37,-10]],[[72308,40722,0],[30,-4],[32,-5]],[[72370,40713,0],[5,-1],[24,-4]],[[72399,40708,0],[9,-11],[7,-9]],[[72415,40688,0],[51,-16],[29,-9]],[[72495,40663,0],[89,-24],[113,-31],[29,-7],[135,-38]],[[72861,40563,0],[92,-20],[75,-16]],[[73028,40527,0],[4,10]],[[73032,40537,0],[34,-11],[40,-11]],[[73106,40515,0],[13,-4],[54,-16]],[[73173,40495,0],[-3,-9]],[[73170,40486,0],[13,-5],[23,-7]],[[73206,40474,0],[60,-18]],[[73266,40456,0],[48,-10],[43,-9]],[[73357,40437,0],[107,-23]],[[73464,40414,0],[94,-27]],[[73558,40387,0],[-47,-52]],[[73511,40335,0],[-2,-2]],[[73509,40333,0],[-54,-60],[-60,-65]],[[73395,40208,0],[-54,-60],[-1,-11]],[[73340,40137,0],[0,-16]],[[73340,40121,0],[-104,-101],[-4,-4],[-21,-20]],[[73211,39996,0],[-385,-356],[-11,-4],[-5,0]],[[72810,39636,0],[-22,-23]],[[72788,39613,0],[-93,-97],[-4,-4]],[[72691,39512,0],[-79,-83]],[[72612,39429,0],[-23,17],[-19,14],[-61,42],[-27,17],[-8,6],[-6,4]],[[72468,39529,0],[-5,3],[-11,6],[-31,21],[-79,53]],[[72342,39612,0],[-21,16],[-75,57],[-8,5],[-13,9],[-10,7],[-18,12]],[[72197,39718,0],[-13,7],[-13,8]],[[72098,39786,0],[-22,17],[-36,25],[-13,10],[-27,19]],[[72000,39857,0],[-60,42],[-11,8]],[[71929,39907,0],[-25,16]],[[71904,39923,0],[-92,67],[-6,3]],[[71806,39993,0],[-8,7]],[[71798,40000,0],[-64,43]],[[71734,40043,0],[-67,46],[-5,0],[-7,2],[-2,2],[-3,0],[-9,-4],[-7,4],[-4,3],[-19,11],[-6,3],[-8,5],[6,12],[-73,34],[-31,15],[-115,54],[-47,23],[-17,6],[-11,6],[-24,11],[-30,14],[-8,3],[-11,6],[-7,3],[-26,13],[-24,11],[-33,15],[-24,11],[-10,4],[-16,8],[-27,12],[-25,11],[-21,10],[-1,1],[-13,5],[-43,20],[-26,10],[-57,27],[1,10],[-24,16]],[[70860,40486,0],[-27,18],[-29,20]],[[70804,40524,0],[-22,15]],[[70782,40539,0],[-15,9],[-37,25]],[[70730,40573,0],[-43,31],[-52,35],[-9,6],[-6,3],[-18,13],[-20,13],[-30,21],[-49,34],[-111,87],[-40,30],[-1,0],[-29,22],[-4,3],[-8,5],[-2,2],[-9,6],[-3,3],[-61,39],[-20,14],[-10,6]],[[70205,40946,0],[12,15],[7,7],[21,27],[11,15],[19,16]],[[70275,41026,0],[51,63]],[[70326,41089,0],[14,17],[11,13]],[[70351,41119,0],[52,64],[4,3]],[[70407,41186,0],[9,-6],[46,-32]],[[70462,41148,0],[132,-90],[19,-13]],[[75106,39794,0],[34,-2],[57,0]],[[75197,39792,0],[37,0],[27,-10]],[[75261,39782,0],[26,-5],[13,-3]],[[75300,39774,0],[10,2],[9,1]],[[75319,39777,0],[5,-5],[4,-3]],[[75328,39769,0],[61,-10]],[[75389,39759,0],[9,-1]],[[75398,39758,0],[20,-126],[3,-14],[1,-50],[2,-57]],[[75424,39511,0],[-4,0]],[[75420,39511,0],[1,-16],[0,-25]],[[75421,39470,0],[0,-12],[0,-4]],[[75421,39454,0],[0,-1],[-3,-3]],[[75418,39450,0],[0,-4],[-1,-18],[3,-8]],[[75420,39420,0],[3,-6],[1,-2]],[[75424,39412,0],[-1,-81],[-4,0]],[[75419,39331,0],[0,-14],[1,-45]],[[75420,39272,0],[3,-77]],[[75423,39195,0],[0,-21],[2,-46]],[[75425,39128,0],[2,-62],[1,-20]],[[75428,39046,0],[0,-65],[-4,-1],[-48,-25]],[[75376,38955,0],[4,-19],[0,-1],[1,0],[0,-3]],[[75381,38932,0],[12,-54],[-152,-75],[-1,-1]],[[75240,38802,0],[-7,-2],[-15,-7],[-2,0],[-2,-2],[-22,-9],[-78,-41]],[[75114,38741,0],[-4,9],[-17,-2]],[[75093,38748,0],[-16,-3],[-9,-7],[-4,-3]],[[75064,38735,0],[-10,-10],[6,-10]],[[75060,38715,0],[-74,-36],[-122,-61]],[[74864,38618,0],[-35,-18],[-6,-2]],[[74823,38598,0],[-3,-2],[-16,-8],[-3,-11]],[[74801,38577,0],[-141,-70],[-3,-8],[-20,-10],[-9,1]],[[74628,38490,0],[-162,-79],[-2,-1]],[[74464,38410,0],[-63,-33],[-8,-15],[-11,-22]],[[74382,38340,0],[-23,12],[-29,22],[-490,266],[-39,22],[-47,27],[-40,27],[-77,72],[-153,143],[-1,4],[-3,9],[-1,11]],[[73479,38955,0],[1,5],[0,3]],[[73480,38963,0],[4,8],[5,7],[1,2]],[[73490,38980,0],[9,7],[54,46]],[[73553,39033,0],[1,0],[23,42],[18,16]],[[73595,39091,0],[55,45],[181,149]],[[73831,39285,0],[66,52]],[[73897,39337,0],[34,30],[20,17]],[[73951,39384,0],[42,22],[162,88],[101,55]],[[74256,39549,0],[1,0],[8,11]],[[74265,39560,0],[16,4],[13,3],[7,3],[7,4],[7,6],[5,6]],[[74320,39586,0],[6,9],[3,10],[2,7],[0,5],[0,9]],[[74331,39626,0],[1,3]],[[74332,39629,0],[12,4],[38,11],[0,1]],[[74382,39645,0],[10,2],[19,5],[161,37]],[[74572,39689,0],[121,24],[124,27]],[[74817,39740,0],[211,43],[78,11]],[[75543,40396,0],[-76,-219]],[[75467,40177,0],[-52,-174],[-17,-55]],[[75398,39948,0],[-8,-34]],[[75390,39914,0],[1,-37],[1,-82]],[[75392,39795,0],[6,-37]],[[75389,39759,0],[-15,3],[-46,7]],[[75328,39769,0],[-5,4],[-4,4]],[[75319,39777,0],[-19,-3]],[[75300,39774,0],[-39,8]],[[75261,39782,0],[-30,9],[-34,1]],[[75106,39794,0],[-78,-12],[-211,-42]],[[74572,39689,0],[-121,-27],[-41,-10],[-28,-7]],[[74382,39645,0],[-36,-12],[-14,-4]],[[74331,39626,0],[0,-5],[-1,-9],[-5,-17],[-5,-9]],[[74265,39560,0],[-9,-11]],[[74256,39549,0],[-146,-80],[-159,-85]],[[73951,39384,0],[-22,-19],[-32,-28]],[[73897,39337,0],[-57,-44],[-9,-8]],[[73831,39285,0],[-30,-25],[-113,-94],[-88,-70],[-5,-5]],[[73595,39091,0],[-5,-3],[-11,-8],[-26,-47]],[[73553,39033,0],[-40,-34],[-23,-19]],[[73490,38980,0],[-2,-3],[-4,-7],[-3,-6],[-1,-1]],[[73480,38963,0],[-1,-8]],[[73479,38955,0],[0,-11],[-22,-27],[-58,-52]],[[73399,38865,0],[-13,10],[-16,13]],[[73370,38888,0],[-18,13],[-12,10]],[[73340,38911,0],[-29,21],[-4,4]],[[73307,38936,0],[-9,6],[-33,22]],[[73210,39003,0],[-28,20],[-38,27]],[[73144,39050,0],[-40,26]],[[73104,39076,0],[-19,13],[-26,17]],[[73059,39106,0],[-1,1],[-4,4]],[[73054,39117,0],[-15,11],[-55,38]],[[72984,39166,0],[1,2],[1,2]],[[72986,39170,0],[-11,8],[-54,39]],[[72911,39216,0],[-15,-3],[-21,-5],[-14,-2]],[[72744,39195,0],[-5,-1],[-37,-9]],[[72687,39182,0],[-17,67],[-5,16]],[[72669,39267,0],[8,5],[0,1]],[[72685,39283,0],[6,35],[4,24]],[[72695,39342,0],[1,9],[0,3],[-1,4]],[[72695,39358,0],[-1,5],[-2,7]],[[72692,39370,0],[-3,3],[-1,1],[-11,8],[-12,10],[-53,37]],[[72612,39429,0],[11,12],[1,0],[54,57],[13,14]],[[72691,39512,0],[97,101]],[[72788,39613,0],[1,1],[21,22]],[[72810,39636,0],[6,0],[7,0],[65,61],[254,236],[44,40],[25,23]],[[73340,40121,0],[0,13],[0,3]],[[73395,40208,0],[36,39],[44,48],[34,38]],[[73511,40335,0],[4,4],[9,11],[28,30],[4,4],[2,3]],[[73558,40387,0],[65,-17]],[[73623,40370,0],[206,-67]],[[73829,40303,0],[70,-25],[13,3],[209,33]],[[74121,40314,0],[55,17],[98,30],[5,-7],[53,13],[28,2]],[[74360,40369,0],[93,14],[169,28]],[[74622,40411,0],[374,57]],[[74996,40468,0],[10,1]],[[75006,40469,0],[27,3]],[[75033,40472,0],[9,0]],[[75042,40472,0],[195,2]],[[75237,40474,0],[206,-4]],[[75443,40470,0],[123,-6]],[[75566,40464,0],[-5,-13],[-18,-55]],[[76372,39826,0],[-37,7],[-5,-118]],[[76330,39715,0],[-10,-21]],[[76320,39694,0],[6,-25]],[[76326,39669,0],[6,-7]],[[76332,39662,0],[16,-175]],[[76348,39487,0],[-3,-161]],[[76345,39326,0],[15,-74]],[[76360,39252,0],[1,-14]],[[76361,39238,0],[30,-69]],[[76391,39169,0],[55,-120]],[[76446,39049,0],[90,-134]],[[76536,38915,0],[17,-28]],[[76553,38887,0],[8,-10]],[[76561,38877,0],[135,-194],[3,-3]],[[76699,38680,0],[86,-149],[105,-180],[31,-46]],[[76921,38305,0],[-122,-64],[-114,-61]],[[76685,38180,0],[-198,-142]],[[76487,38038,0],[-193,-117]],[[76294,37921,0],[-54,-34]],[[76240,37887,0],[-85,-53]],[[76155,37834,0],[-282,-161],[-44,-25]],[[75829,37648,0],[-30,46],[-63,95]],[[75736,37789,0],[-17,25],[-6,33],[-10,88],[-11,195],[-4,43],[-4,28],[-1,28],[-3,27],[-1,26],[-7,27],[-7,26],[-73,138],[-18,28],[-7,19],[-46,132],[-44,127],[-7,23],[-27,124]],[[75443,38926,0],[-6,123],[-9,-3]],[[75428,39046,0],[-3,82]],[[75425,39128,0],[-2,67]],[[75420,39272,0],[-1,59]],[[75424,39412,0],[-4,8]],[[75418,39450,0],[3,4]],[[75421,39454,0],[0,16]],[[75421,39470,0],[-1,41]],[[75424,39511,0],[-4,107],[-22,140]],[[75392,39795,0],[-2,119]],[[75398,39948,0],[69,229]],[[75543,40396,0],[23,68]],[[75566,40464,0],[351,-7]],[[75917,40457,0],[21,-5],[185,-102],[29,-19],[53,-31],[172,-9]],[[76377,40291,0],[0,-9]],[[76377,40282,0],[-1,-40]],[[76376,40242,0],[1,-11],[8,-9],[-4,-52],[-12,-1],[-3,-87]],[[76366,40082,0],[11,-15]],[[76377,40067,0],[13,-19]],[[76390,40048,0],[-3,-84],[1,-14]],[[76388,39950,0],[-1,-33],[-15,-91]],[[76547,40275,0],[275,-3]],[[76822,40272,0],[26,12]],[[76848,40284,0],[1,-14],[1,-9],[3,-38]],[[76853,40223,0],[5,-2]],[[76858,40221,0],[147,-55]],[[77005,40166,0],[16,-9]],[[77021,40157,0],[141,-154]],[[77162,40003,0],[141,-164]],[[77303,39839,0],[57,-59]],[[77360,39780,0],[197,-110]],[[77557,39670,0],[12,-8]],[[77569,39662,0],[111,-46]],[[77680,39616,0],[225,-101],[23,-7]],[[77928,39508,0],[235,-117],[3,-3]],[[78166,39388,0],[93,52]],[[78259,39440,0],[10,2]],[[78269,39442,0],[92,6],[44,3]],[[78405,39451,0],[73,-249],[0,-1],[-37,-26],[13,-33],[-82,-61],[-32,14],[-38,-27],[32,-40],[-163,-139],[-45,45],[-64,-54],[-10,10],[-60,-51],[33,-35],[-66,-55],[17,-20],[-91,-78],[-158,-133],[-251,-206],[-20,21],[-58,-43],[-8,-8],[17,-21],[-34,-32],[-105,-92],[-12,9],[-21,-19],[5,-12],[-187,-157],[-164,175],[-90,-74],[-7,6],[-192,-142],[-26,26],[-16,-10],[-86,-65],[-74,-42],[-75,-40],[-4,6],[-6,-5],[-41,-21],[-15,-8],[2,-5],[-20,-9],[-2,4],[-2,5],[-12,-6],[-4,6]],[[76155,37834,0],[58,36],[27,17]],[[76240,37887,0],[21,13],[33,21]],[[76294,37921,0],[71,44],[122,73]],[[76487,38038,0],[89,64],[109,78]],[[76921,38305,0],[-14,22],[-16,24],[-106,181],[-86,148]],[[76699,38680,0],[-2,3],[-136,194]],[[76553,38887,0],[-8,14],[-9,14]],[[76536,38915,0],[-30,46],[-60,88]],[[76391,39169,0],[-2,4],[-28,65]],[[76361,39238,0],[0,6],[-1,8]],[[76360,39252,0],[-8,36],[-7,38]],[[76348,39487,0],[0,9],[-16,166]],[[76332,39662,0],[-3,3],[-3,4]],[[76326,39669,0],[-2,8],[-4,17]],[[76320,39694,0],[6,14],[4,7]],[[76372,39826,0],[7,39],[9,53],[0,32]],[[76390,40048,0],[-2,3],[-11,16]],[[76377,40067,0],[-4,7],[-7,8]],[[76376,40242,0],[1,20],[0,20]],[[76377,40291,0],[97,-6]],[[76474,40285,0],[73,-10]],[[78650,41726,0],[49,-112],[1,-1]],[[78700,41613,0],[46,-104],[3,-7],[32,-66],[19,-42],[3,-5],[-3,-1],[2,-3],[15,-30],[16,-33],[22,-33],[10,-18],[133,-205],[111,-176],[28,-44],[48,-74]],[[79185,40772,0],[1,-3],[17,-10]],[[79203,40759,0],[45,-21],[113,-55],[130,-90],[68,-67],[80,-77],[58,-59],[2,1],[21,-20],[-2,-2],[22,-21],[54,-41],[62,-48],[49,-38],[60,-47]],[[79965,40174,0],[1,0],[4,-3]],[[79970,40171,0],[11,-25],[2,-5],[8,-21],[102,-244]],[[80093,39876,0],[11,-33],[-68,-16],[-127,-31],[0,-6],[-47,-7],[-45,-7],[-10,-2],[-6,0],[-6,21],[-50,-11],[6,-29],[-218,-58],[-14,-81],[-161,-37],[-5,-1],[-25,-3],[-7,1],[-148,26],[-30,27],[-82,-13],[-15,9],[-20,-7],[-148,-49],[-22,-16],[-19,-13],[-67,-48],[21,-32],[-77,-59],[-13,16],[-25,-18],[25,-37],[-63,-51],[-19,-17],[16,-19],[-125,-103],[-9,11],[-24,18],[-72,250]],[[78269,39442,0],[-1,-1],[-5,0],[-4,-1]],[[78259,39440,0],[-71,-40],[-22,-12]],[[78166,39388,0],[-4,3],[-142,71],[-92,46]],[[77928,39508,0],[-12,4],[-12,3],[-92,42],[-132,59]],[[77680,39616,0],[-36,15],[-75,31]],[[77569,39662,0],[-8,5],[-4,3]],[[77557,39670,0],[-3,2],[-27,15],[-23,13],[-29,16],[-19,11],[-27,15],[-22,12],[-19,11],[-28,15]],[[77360,39780,0],[-20,21],[-37,38]],[[77303,39839,0],[-7,8],[-134,156]],[[77162,40003,0],[-1,2],[-67,73],[-13,13],[-60,66]],[[77021,40157,0],[-4,2],[-12,7]],[[77005,40166,0],[-3,1],[-77,29],[-67,25]],[[76853,40223,0],[-4,45],[-1,16]],[[76848,40284,0],[0,2],[72,43],[324,85],[14,4],[28,11],[22,9],[49,20],[26,11],[-2,4],[48,39],[13,12],[70,65],[48,53],[91,80],[17,147],[1,3],[1,5],[-13,66],[-3,17],[-10,76],[0,8],[4,5],[-1,25],[-9,36],[-7,24],[-41,62],[-15,25],[-15,33],[-13,10]],[[77547,41264,0],[7,4],[68,16],[15,3],[5,1],[98,21],[79,16],[198,49],[-18,70],[46,29],[112,51],[10,0],[11,-1],[7,-6],[16,-31],[6,1],[11,-12],[25,2],[6,1],[7,2],[44,15],[-8,78],[17,91],[73,26],[148,-6],[13,39],[20,5],[76,13]],[[78639,41741,0],[2,-4],[9,-11]],[[80667,42367,0],[37,-5],[26,3]],[[80730,42365,0],[17,-2]],[[80747,42363,0],[16,9],[9,-1],[9,-2]],[[80781,42369,0],[15,-4],[38,-21],[39,-10],[41,2],[86,11]],[[81000,42347,0],[18,2],[43,5]],[[81061,42354,0],[39,3],[39,3],[60,-1],[94,-3],[18,-1]],[[81311,42355,0],[76,-4]],[[81387,42351,0],[9,-1]],[[81396,42350,0],[18,-4],[29,-9]],[[81443,42337,0],[39,-16],[20,-13],[13,-10],[9,-14],[12,-40],[-68,-33],[-12,-13]],[[81456,42198,0],[-31,-61],[-8,-14]],[[81417,42123,0],[-11,-21]],[[81406,42102,0],[-4,-9],[-16,-20],[-11,-14]],[[81375,42059,0],[-3,-13],[-1,-6],[2,-1]],[[81373,42039,0],[-45,-50]],[[81328,41989,0],[-58,-4],[-34,-33]],[[81236,41952,0],[8,-2],[-16,-13]],[[81228,41937,0],[-16,-9],[-13,-7],[-21,-8],[-16,-5],[-18,-2],[-17,-1],[0,3],[-7,1],[-1,-1],[-12,7],[-3,-4],[-26,11]],[[81078,41922,0],[-38,6],[-10,-43]],[[81030,41885,0],[-7,-31]],[[81023,41854,0],[-9,-19]],[[81014,41835,0],[-13,-28],[-5,-14],[-6,-3]],[[80990,41790,0],[-1,-21],[-1,-14]],[[80988,41755,0],[2,-36],[8,-25]],[[80998,41694,0],[5,-17]],[[81003,41677,0],[6,-17],[3,-19]],[[81012,41641,0],[2,-22]],[[81014,41619,0],[-1,-40],[0,-20]],[[81013,41559,0],[-31,-65],[-17,-8]],[[80965,41486,0],[-32,-141],[-3,-9],[-18,-56],[18,-8],[18,-14]],[[80948,41258,0],[47,-31],[205,-138]],[[81200,41089,0],[22,-23],[38,-14],[96,-31],[66,-21]],[[81422,41000,0],[83,-26],[20,-4]],[[81525,40970,0],[26,-11],[23,-10],[54,-24],[65,-45]],[[81693,40880,0],[39,-27],[21,-27]],[[81753,40826,0],[33,-37],[45,-40]],[[81831,40749,0],[16,-25]],[[81847,40724,0],[46,-99],[38,-145]],[[81931,40480,0],[1,-22],[-10,-18]],[[81922,40440,0],[-7,-9]],[[81915,40431,0],[-35,-22],[-15,-7]],[[81865,40402,0],[-39,-8],[-24,-6]],[[81802,40388,0],[-129,-22],[6,-49],[2,-16]],[[81681,40301,0],[-4,-18],[-71,-8],[-96,-22],[-11,-2],[-7,23],[-52,-13],[5,-17],[-83,-22],[-64,-17],[-5,14],[-45,-9],[3,-20],[-85,-19],[-92,-22],[-31,-7],[-2,3],[-148,-37],[-7,19],[-57,-17],[5,-17],[-57,-17],[17,-45],[-110,-28],[-5,13],[-98,-24],[-3,0],[3,-14],[-179,-45],[-3,11],[-32,-8],[2,-9],[-137,-36],[-72,-19],[-3,-1],[-7,21],[-57,-16]],[[79970,40171,0],[-5,3]],[[79203,40759,0],[-18,13]],[[78700,41613,0],[-50,113]],[[78639,41741,0],[17,4],[-12,30],[-32,58],[-60,111]],[[78552,41944,0],[54,19],[96,36],[192,46],[29,14],[126,64],[30,15],[23,12],[56,30],[27,-34],[10,-16],[41,-136],[127,21],[59,11],[46,9],[38,16]],[[79506,42051,0],[2,0]],[[79508,42051,0],[141,9],[143,9],[53,4],[61,4]],[[79906,42077,0],[37,2],[135,10],[185,13]],[[80263,42102,0],[13,1],[9,5]],[[80285,42108,0],[11,18],[54,157]],[[80350,42283,0],[6,19],[61,153],[8,25],[35,-12],[15,-4],[54,-17],[12,-4],[9,-3]],[[80550,42440,0],[96,-32],[-14,-34],[35,-7]],[[79450,44262,0],[89,-23],[9,-2]],[[79548,44237,0],[12,0],[160,-3],[69,-38],[30,-15],[4,-3]],[[79823,44178,0],[5,-13],[8,-19],[20,-49],[2,-14],[6,-52],[4,-32]],[[79868,43999,0],[7,-9],[69,-35]],[[79944,43955,0],[46,-32],[12,-8]],[[80002,43915,0],[13,-32],[9,-17]],[[80024,43866,0],[-68,-46],[-28,-59],[-8,-151],[-9,-6]],[[79911,43604,0],[2,-2],[13,-15]],[[79926,43587,0],[17,-27]],[[79943,43560,0],[0,-1],[5,-18]],[[79948,43541,0],[-2,-58],[-15,-14],[39,-23],[-28,-29],[1,-1],[2,-1],[56,-27],[5,8],[97,-36],[31,-12],[57,-22],[30,-11],[1,0],[15,-8],[98,-8],[40,-3],[5,0],[17,-8],[41,-18],[49,-20],[3,0],[73,8],[132,-49],[8,-3],[137,-47],[129,-43],[13,-5],[136,-52],[68,-25]],[[81186,43034,0],[25,-3],[1,0],[24,-3],[5,-1],[27,-4],[23,-3],[98,-15],[122,-18],[64,-9]],[[81575,42978,0],[15,0],[50,-1],[17,-1],[35,0]],[[81692,42976,0],[36,-1]],[[81728,42975,0],[0,1],[1,2],[5,36],[0,4],[1,4],[1,7],[6,40]],[[81742,43069,0],[28,135],[1,3],[0,1],[11,32]],[[81782,43240,0],[101,-32]],[[81883,43208,0],[23,69],[25,72]],[[81931,43349,0],[10,51],[10,52],[2,11]],[[81953,43463,0],[13,31],[12,-3],[63,-14],[14,-19],[12,-2],[104,-28],[-14,-20],[-22,-30],[-12,-24],[-26,-17],[-13,5],[-8,-20],[-12,-26],[-7,-16],[-10,-22],[-10,-33],[-4,-28],[1,0],[19,-1],[17,-1],[51,-2],[-1,0],[-15,-27],[-31,-61],[-3,-14],[-1,-5],[-2,-7],[-4,-34],[-2,-15],[-7,-41],[-2,-17],[-2,-16]],[[82051,42956,0],[-6,-36],[-2,-8],[0,-1],[0,-6]],[[82043,42905,0],[7,6],[10,5]],[[82060,42916,0],[2,2],[1,1],[4,3],[111,-15],[137,-18]],[[82315,42889,0],[12,-1],[30,-4]],[[82357,42884,0],[85,-8]],[[82442,42876,0],[78,4]],[[82520,42880,0],[18,2],[10,0],[103,7]],[[82722,42893,0],[13,1],[14,-5],[1,-1],[2,-1],[8,-6]],[[82760,42881,0],[10,-13],[1,-1]],[[82771,42867,0],[4,-11]],[[82775,42856,0],[4,-96],[1,-38],[1,-3]],[[82781,42719,0],[0,-10],[1,-10]],[[82782,42699,0],[1,-37]],[[82783,42662,0],[0,-2],[-7,-46],[-2,-7],[-7,-52],[0,-36],[0,-11],[0,-10],[1,-13],[-1,-21],[0,-7],[-1,-17],[0,-1],[1,-17],[1,-11],[3,-14],[28,-54]],[[82799,42343,0],[0,-1],[15,-28],[19,-6],[18,-46],[3,-7],[11,-28],[2,-9],[5,-20],[1,-5],[2,-7],[0,-1],[-5,-29],[-4,-19],[-1,-4],[-4,-18],[-17,-66],[-25,-90]],[[82819,41959,0],[1,-18]],[[82820,41941,0],[1,-12],[9,-170],[1,-18],[0,-5]],[[82831,41736,0],[-10,0],[-1,-2]],[[82820,41734,0],[-8,-45]],[[82812,41689,0],[-13,-33]],[[82799,41656,0],[-11,-13]],[[82788,41643,0],[-15,-21]],[[82773,41622,0],[-1,-1]],[[82772,41621,0],[-24,-24]],[[82748,41597,0],[-8,-8],[-15,-14]],[[82725,41575,0],[-6,-5]],[[82719,41570,0],[-28,-27]],[[82691,41543,0],[-13,-9],[-80,-56]],[[82598,41478,0],[-38,-26]],[[82560,41452,0],[-21,-17],[-24,-19],[-37,-31],[-18,-14]],[[82460,41371,0],[-18,-10]],[[82442,41361,0],[-3,-2],[-37,-18]],[[82402,41341,0],[-31,-18],[-3,-2]],[[82368,41321,0],[-14,-10],[-25,-16]],[[82329,41295,0],[-16,-11],[-19,-1],[-35,0]],[[82259,41283,0],[-22,4],[-17,7]],[[82220,41294,0],[-7,2],[-29,19],[-8,6],[-44,28]],[[82132,41349,0],[-12,6],[-19,8]],[[82101,41363,0],[-41,0]],[[82060,41363,0],[-35,0],[-18,1],[-22,-8]],[[81985,41356,0],[-23,-9]],[[81962,41347,0],[-18,-13]],[[81944,41334,0],[-12,-8],[-18,-7]],[[81914,41319,0],[-24,-11]],[[81890,41308,0],[-13,-6]],[[81877,41302,0],[-45,-18]],[[81832,41284,0],[-7,-28]],[[81825,41256,0],[-10,-59]],[[81815,41197,0],[-8,-49]],[[81807,41148,0],[-4,-43]],[[81803,41105,0],[2,-28],[9,-37]],[[81814,41040,0],[28,-104]],[[81842,40936,0],[29,-105]],[[81871,40831,0],[13,-52]],[[81884,40779,0],[-21,-12],[-7,-4]],[[81856,40763,0],[-18,-10],[-3,-2]],[[81835,40751,0],[-4,-2]],[[81753,40826,0],[-22,27],[-38,27]],[[81525,40970,0],[-21,4],[-82,26]],[[81200,41089,0],[-206,138],[-46,31]],[[80965,41486,0],[16,8],[32,65]],[[81014,41619,0],[-2,12],[0,10]],[[81003,41677,0],[0,1],[-5,16]],[[80988,41755,0],[0,14],[2,21]],[[80990,41790,0],[6,4],[4,13],[14,28]],[[81014,41835,0],[8,19],[1,0]],[[81030,41885,0],[9,43],[39,-6]],[[81228,41937,0],[15,13],[-8,2],[1,0]],[[81328,41989,0],[19,20],[26,30]],[[81375,42059,0],[10,14],[16,20],[5,9]],[[81417,42123,0],[39,75]],[[81443,42337,0],[-30,10],[-17,3]],[[81387,42351,0],[-9,0],[-67,4]],[[81061,42354,0],[-44,-5],[-17,-2]],[[80781,42369,0],[-10,2],[-8,2],[-16,-9],[0,-1]],[[80730,42365,0],[-33,-4],[-30,6]],[[80667,42367,0],[-34,7],[-1,1],[13,33],[-95,32]],[[80350,42283,0],[-55,-157],[-10,-18]],[[80263,42102,0],[-186,-13],[-135,-10],[-36,-2]],[[79508,42051,0],[-52,200]],[[79456,42251,0],[-1,16],[4,11]],[[79459,42278,0],[11,12],[5,3]],[[79475,42293,0],[17,7]],[[79492,42300,0],[130,-5],[13,1]],[[79635,42296,0],[61,38],[25,5]],[[79721,42339,0],[13,15],[2,6],[-12,55],[36,75],[17,40],[6,15]],[[79783,42545,0],[2,35],[2,23]],[[79787,42603,0],[4,73]],[[79791,42676,0],[0,1],[2,22],[0,2]],[[79793,42701,0],[5,86],[4,27]],[[79802,42814,0],[30,181],[114,-6]],[[79946,42989,0],[7,42],[-110,6],[0,22],[-1,36]],[[79842,43095,0],[-2,3],[-8,13],[1,1],[25,41]],[[79858,43153,0],[40,47],[4,6]],[[79902,43206,0],[3,3],[3,6]],[[79908,43215,0],[28,41],[1,3]],[[79937,43259,0],[-6,0],[-53,-1],[-28,-1]],[[79850,43257,0],[-85,-2]],[[79765,43255,0],[-16,3],[-6,1]],[[79743,43259,0],[-80,5],[-9,58]],[[79654,43322,0],[-1,3],[-7,18]],[[79646,43343,0],[-4,11],[-1,3]],[[79641,43357,0],[-58,-11],[0,1],[-2,17],[-1,7]],[[79580,43371,0],[-4,25]],[[79576,43396,0],[-14,99],[-2,13]],[[79560,43508,0],[-1,12]],[[79559,43520,0],[-1,32],[0,30],[0,8]],[[79558,43590,0],[-1,5],[0,8],[34,32]],[[79591,43635,0],[11,24],[4,23]],[[79606,43682,0],[-2,16]],[[79604,43698,0],[-5,14],[-2,3]],[[79597,43715,0],[-2,4],[-8,11]],[[79587,43730,0],[-2,4],[-15,12]],[[79570,43746,0],[-17,4],[-10,2]],[[79543,43752,0],[-1,1],[-5,7],[-25,32]],[[79512,43792,0],[-50,61]],[[79462,43853,0],[-24,28],[-24,30],[-7,6],[-3,3]],[[79404,43920,0],[-10,5]],[[79394,43925,0],[-12,2],[-30,6],[-12,0]],[[79340,43933,0],[-10,-4],[-8,5],[-8,6]],[[79314,43940,0],[-69,47]],[[79245,43987,0],[-3,3],[-82,61],[-71,35]],[[79089,44086,0],[-21,11]],[[79068,44097,0],[-4,15],[-25,125]],[[79039,44237,0],[-3,8],[-9,37],[83,-25]],[[79110,44257,0],[109,-13]],[[79219,44244,0],[46,-2],[59,-2],[17,-1],[0,6],[1,42]],[[79342,44287,0],[55,-4],[53,-21]],[[78365,44368,0],[31,3],[10,2],[44,13],[11,5],[41,19],[5,0],[8,-3],[60,-20]],[[78575,44387,0],[26,-4],[230,-48],[58,-12],[138,-39],[12,-47]],[[79039,44237,0],[29,-140]],[[79089,44086,0],[72,-35],[84,-64]],[[79314,43940,0],[17,-11],[9,4]],[[79340,43933,0],[13,0],[41,-8]],[[79404,43920,0],[11,-9],[47,-58]],[[79512,43792,0],[26,-32],[5,-8]],[[79543,43752,0],[27,-6]],[[79587,43730,0],[10,-15]],[[79597,43715,0],[7,-17]],[[79606,43682,0],[-4,-24],[-11,-23]],[[79591,43635,0],[-33,-32],[0,-13]],[[79558,43590,0],[1,-70]],[[79560,43508,0],[16,-112]],[[79580,43371,0],[4,-25],[57,11]],[[79641,43357,0],[13,-32],[0,-3]],[[79743,43259,0],[22,-4]],[[79850,43257,0],[87,2]],[[79908,43215,0],[-6,-9]],[[79858,43153,0],[-25,-42],[-1,-1],[10,-15]],[[79946,42989,0],[-113,6],[-31,-181]],[[79793,42701,0],[-2,-25]],[[79787,42603,0],[-1,-23],[-3,-35]],[[79721,42339,0],[-25,-6],[-61,-37]],[[79635,42296,0],[-12,-1],[-131,5]],[[79475,42293,0],[-4,-3],[-12,-12]],[[79456,42251,0],[50,-200]],[[78552,41944,0],[-17,27],[-16,17],[-123,153],[-83,104],[-19,10],[-145,180],[-32,40],[-4,8],[-32,42],[-24,32],[-12,16],[-11,13],[-35,38],[-19,16],[-232,213],[-36,38],[-74,98],[-31,37],[-70,90]],[[77537,43116,0],[1,2],[7,15]],[[77545,43133,0],[47,173],[53,195],[21,93],[14,81],[9,-1],[0,15],[-1,25],[-3,25],[-4,24],[-5,25],[-4,23],[-24,99],[-16,60],[-11,77],[-11,35],[-2,29],[-19,123],[-16,99],[87,5],[5,0]],[[77665,44338,0],[55,-10],[16,-5],[106,122],[27,3],[18,-8],[90,0],[3,-27],[13,-19],[91,-40],[22,-5],[33,-3],[58,0],[54,-5],[37,9],[59,17],[18,1]],[[76848,40284,0],[-17,-8],[-9,-4]],[[76822,40272,0],[-50,1],[-11,0],[-111,1],[-66,0],[-21,0],[-16,1]],[[76547,40275,0],[-9,1],[-64,9]],[[76474,40285,0],[-24,2],[-7,0],[-51,3],[-15,1]],[[75917,40457,0],[-108,2],[-128,3],[-70,1],[-45,1]],[[75443,40470,0],[52,38]],[[75495,40508,0],[71,241]],[[75566,40749,0],[5,77],[7,123]],[[75578,40949,0],[-9,34]],[[75569,40983,0],[36,41]],[[75605,41024,0],[12,-4],[11,-2]],[[75628,41018,0],[12,2],[8,4],[6,7],[11,19],[98,161],[1,1]],[[75764,41212,0],[64,142],[17,36]],[[75845,41390,0],[1,3],[164,187]],[[76010,41580,0],[53,62],[134,160]],[[76197,41802,0],[37,42],[2,3]],[[76236,41847,0],[43,51],[2,3]],[[76281,41901,0],[57,69]],[[76338,41970,0],[2,-1]],[[76340,41969,0],[10,-5],[46,-30]],[[76396,41934,0],[102,122],[21,13]],[[76519,42069,0],[19,5],[12,-1],[9,-3],[10,-4],[12,-8],[155,-95],[47,-47],[50,-54],[61,-61],[65,-67],[69,-71],[42,-45],[90,-66],[77,-59],[142,-109],[65,-53],[6,-18],[17,11],[74,-56],[6,-4]],[[75628,41018,0],[-12,2],[-11,4]],[[75569,40983,0],[0,1],[-1,2]],[[75568,40986,0],[-45,78]],[[75523,41064,0],[-75,121],[-14,21]],[[75434,41206,0],[-12,18]],[[75422,41224,0],[-1,1],[0,1],[-13,22]],[[75408,41248,0],[-3,-2]],[[75405,41246,0],[-1,0],[-8,15]],[[75396,41261,0],[-15,25],[-28,40]],[[75353,41326,0],[0,1],[-45,67],[-16,27]],[[75292,41421,0],[6,4],[30,16],[7,4],[-79,130],[-10,40]],[[75246,41615,0],[-37,61],[-32,55],[-4,5]],[[75173,41736,0],[-8,14],[-2,4],[-19,30]],[[75144,41784,0],[-7,11],[-2,3]],[[75135,41798,0],[-129,212],[-14,8]],[[74992,42018,0],[-209,202],[-14,14],[-74,53]],[[74695,42287,0],[0,1],[13,17],[14,18],[18,23],[19,24]],[[74759,42370,0],[58,-12],[15,-3],[1,-1],[1,0]],[[74834,42354,0],[101,-21]],[[74935,42333,0],[291,-61],[19,-5]],[[75245,42267,0],[583,-160]],[[75828,42107,0],[126,-31],[6,-2]],[[75960,42074,0],[4,0],[73,-18]],[[76037,42056,0],[21,-5]],[[76058,42051,0],[127,-29],[151,-36]],[[76336,41986,0],[2,-9],[1,-5]],[[76339,41972,0],[-1,-2]],[[76281,41901,0],[-3,-3],[-42,-51]],[[76236,41847,0],[-3,-3],[-36,-42]],[[76197,41802,0],[-134,-159],[-53,-63]],[[75845,41390,0],[-17,-35],[-64,-143]],[[75396,41261,0],[9,-15]],[[75408,41248,0],[14,-24]],[[75434,41206,0],[14,-22],[75,-120]],[[75568,40986,0],[1,-3]],[[75569,40983,0],[3,-11],[6,-23]],[[75566,40749,0],[-56,-187],[-15,-54]],[[75237,40474,0],[-160,-2],[-35,0]],[[75042,40472,0],[-2,0],[-7,0]],[[75006,40469,0],[-5,0],[-5,-1]],[[74996,40468,0],[-183,-28],[-148,-23],[-43,-6]],[[74360,40369,0],[-22,-16],[-31,-5],[-49,-8],[-71,-11],[-8,-2],[-58,-13]],[[73829,40303,0],[-24,8],[-62,20],[-52,17],[-54,17],[-14,5]],[[73623,40370,0],[-27,7],[-38,10]],[[73558,40387,0],[-40,11],[-26,8]],[[73492,40406,0],[16,36],[10,24]],[[73518,40466,0],[20,53]],[[73538,40519,0],[14,40]],[[73552,40559,0],[2,24]],[[73554,40583,0],[1,25],[-19,35],[-53,117],[-6,13]],[[73477,40773,0],[-50,108]],[[73427,40881,0],[-15,90]],[[73412,40971,0],[11,6],[6,6]],[[73429,40983,0],[-3,12]],[[73426,40995,0],[4,2]],[[73430,40997,0],[-3,5]],[[73427,41002,0],[-7,5],[-5,7]],[[73415,41014,0],[-12,-1]],[[73403,41013,0],[-27,74]],[[73376,41087,0],[-26,48],[2,3]],[[73352,41138,0],[-26,52]],[[73326,41190,0],[-11,0],[-2,19],[-4,0],[-11,87],[85,6],[2,-7],[58,-41],[30,-25],[9,-5],[4,0],[74,-37],[15,-4]],[[73575,41183,0],[41,-5],[68,-4]],[[73684,41174,0],[51,1]],[[73735,41175,0],[82,5]],[[73817,41180,0],[42,4]],[[73859,41184,0],[38,11]],[[73897,41195,0],[11,2]],[[73908,41197,0],[15,-4],[30,-13]],[[73953,41180,0],[20,-12]],[[73973,41168,0],[51,-37]],[[74024,41131,0],[38,14],[2,-3]],[[74064,41142,0],[58,23]],[[74122,41165,0],[8,2]],[[74130,41167,0],[67,25]],[[74197,41192,0],[59,9]],[[74256,41201,0],[54,6]],[[74310,41207,0],[-7,21]],[[74303,41228,0],[66,11]],[[74369,41239,0],[64,10],[11,3]],[[74444,41252,0],[82,12]],[[74526,41264,0],[3,-8]],[[74529,41256,0],[108,9]],[[74637,41265,0],[17,-1]],[[74654,41264,0],[45,-6]],[[74699,41258,0],[14,5]],[[74713,41263,0],[17,3]],[[74730,41266,0],[89,14]],[[74819,41280,0],[26,8],[-7,29]],[[74838,41317,0],[26,4]],[[74864,41321,0],[13,3],[21,4]],[[74898,41328,0],[29,6]],[[74927,41334,0],[14,2],[18,4]],[[74959,41340,0],[36,7],[33,6]],[[75028,41353,0],[65,13]],[[75093,41366,0],[30,6],[40,8],[11,2],[6,1],[69,18]],[[75249,41401,0],[13,7],[30,13]],[[75292,41421,0],[16,-28],[45,-67]],[[73781,41848,0],[47,63],[15,23],[-5,4],[19,21],[18,18],[5,-4],[14,-8],[5,-4],[101,-59],[6,-6]],[[74006,41896,0],[19,-10],[11,-7]],[[74036,41879,0],[31,-19],[26,-16]],[[74093,41844,0],[8,-5],[18,-11]],[[74119,41828,0],[28,-17],[29,-18]],[[74176,41793,0],[3,-2],[25,-15]],[[74204,41776,0],[27,-16],[27,-17]],[[74258,41743,0],[17,-10],[14,-8]],[[74289,41725,0],[28,-18],[31,-18]],[[74348,41689,0],[1,-1],[6,-4]],[[74355,41684,0],[55,-34]],[[74410,41650,0],[5,-3],[22,-14]],[[74437,41633,0],[14,-8],[13,-9]],[[74464,41616,0],[30,-19],[29,-17]],[[74523,41580,0],[11,-7],[15,-10]],[[74549,41563,0],[21,-13],[6,-3]],[[74576,41547,0],[10,-7],[18,-9]],[[74604,41531,0],[26,-18],[28,-17],[30,-18]],[[74688,41478,0],[22,-15],[10,-6]],[[74720,41457,0],[4,-2],[23,-15]],[[74747,41440,0],[29,-19]],[[74776,41421,0],[7,-10],[2,-2]],[[74785,41409,0],[12,-17],[5,-7]],[[74802,41385,0],[31,-41]],[[74833,41344,0],[2,-14],[3,-13]],[[74819,41280,0],[-66,-11],[-23,-3]],[[74713,41263,0],[-8,-3],[-6,-2]],[[74654,41264,0],[-7,0],[-10,1]],[[74529,41256,0],[-2,4],[-1,4]],[[74526,41264,0],[-47,-7],[-35,-5]],[[74369,41239,0],[-12,-2],[-24,-4],[-21,-3],[-9,-2]],[[74303,41228,0],[2,-6],[5,-15]],[[74310,41207,0],[-17,-2],[-12,-2],[-7,0],[-18,-2]],[[74256,41201,0],[-19,-3],[-14,-2],[-26,-4]],[[74197,41192,0],[-32,-11],[-35,-14]],[[74130,41167,0],[-1,0],[-7,-2]],[[74122,41165,0],[-57,-23],[-1,0]],[[74024,41131,0],[-32,23],[-19,14]],[[73973,41168,0],[-14,8],[-6,4]],[[73953,41180,0],[-17,7],[-14,8],[-14,2]],[[73897,41195,0],[-9,-3],[-29,-8]],[[73817,41180,0],[-47,-3],[-35,-2]],[[73684,41174,0],[-61,4],[-48,5]],[[73326,41190,0],[18,-36],[8,-16]],[[73376,41087,0],[3,-9],[24,-65]],[[73415,41014,0],[2,-2],[2,-4],[8,-6]],[[73430,40997,0],[-1,-1],[-3,-1]],[[73426,40995,0],[1,-2],[2,-10]],[[73412,40971,0],[4,-24],[11,-66]],[[73427,40881,0],[6,-12],[6,-12],[38,-84]],[[73554,40583,0],[-1,-8],[-1,-16]],[[73552,40559,0],[-6,-16],[-8,-24]],[[73518,40466,0],[-20,-48],[-6,-12]],[[73492,40406,0],[-28,8]],[[73464,40414,0],[-74,16],[-33,7]],[[73266,40456,0],[-22,7],[-38,11]],[[73206,40474,0],[17,67],[1,6]],[[73224,40547,0],[5,13],[21,62]],[[73250,40622,0],[11,31],[12,35]],[[73273,40688,0],[-4,4],[-29,35]],[[73240,40727,0],[-4,-1],[-45,55],[-33,39],[-33,39]],[[73125,40859,0],[-16,19],[-25,27]],[[73084,40905,0],[-91,57],[7,5]],[[73000,40967,0],[-11,19],[-26,41]],[[72963,41027,0],[-11,19],[-16,29]],[[72936,41075,0],[3,6],[6,8]],[[72945,41089,0],[-4,5],[-9,14]],[[72932,41108,0],[0,37]],[[72932,41145,0],[-2,10],[-1,4],[-10,56]],[[72919,41215,0],[-35,191],[-23,58]],[[72861,41464,0],[-17,44],[-9,24]],[[72835,41532,0],[-21,-16]],[[72814,41516,0],[0,1],[-2,3]],[[72812,41520,0],[-81,79],[-5,5]],[[72726,41604,0],[-5,5],[-41,39]],[[72680,41648,0],[-10,16],[-19,30]],[[72651,41694,0],[124,62]],[[72775,41756,0],[19,8],[9,5]],[[72803,41769,0],[1,-1],[3,-2]],[[72807,41766,0],[18,9],[11,5]],[[72836,41780,0],[25,14]],[[72861,41794,0],[3,1],[27,15],[20,11]],[[72911,41821,0],[26,15],[11,6]],[[72948,41842,0],[29,17],[8,4],[11,6]],[[72996,41869,0],[4,2],[3,2],[26,14],[18,10]],[[73047,41897,0],[107,58]],[[73154,41955,0],[6,4],[23,12],[10,6],[13,7]],[[73206,41984,0],[23,13],[9,4],[29,17],[12,7],[5,2]],[[73284,42027,0],[29,16],[15,9]],[[73328,42052,0],[63,38]],[[73391,42090,0],[24,13],[29,18]],[[73444,42121,0],[42,23],[19,10]],[[73505,42154,0],[41,-40],[9,-10]],[[73555,42104,0],[3,-2],[6,-11]],[[73564,42091,0],[11,-15]],[[73575,42076,0],[28,-31],[25,-27]],[[73628,42018,0],[110,-121]],[[73738,41897,0],[41,-46],[2,-3]],[[74006,42494,0],[69,-14],[6,1]],[[74081,42481,0],[20,4]],[[74101,42485,0],[5,2]],[[74106,42487,0],[64,-23]],[[74170,42464,0],[33,-13]],[[74203,42451,0],[28,-11]],[[74231,42440,0],[28,-10]],[[74259,42430,0],[33,-13]],[[74292,42417,0],[35,-13]],[[74327,42404,0],[27,-9]],[[74354,42395,0],[33,-13]],[[74387,42382,0],[33,-12]],[[74420,42370,0],[26,-10],[65,-31]],[[74511,42329,0],[25,-12]],[[74536,42317,0],[29,-13]],[[74565,42304,0],[29,-14]],[[74594,42290,0],[27,-14]],[[74621,42276,0],[49,-23]],[[74670,42253,0],[4,5]],[[74674,42258,0],[17,24]],[[74691,42282,0],[4,5]],[[74992,42018,0],[14,-9],[129,-211]],[[75135,41798,0],[9,-14]],[[75144,41784,0],[21,-35],[8,-13]],[[75173,41736,0],[73,-121]],[[75292,41421,0],[-43,-20]],[[75093,41366,0],[-34,-6],[-31,-7]],[[74959,41340,0],[-32,-6]],[[74898,41328,0],[-34,-7]],[[74838,41317,0],[-5,27]],[[74802,41385,0],[-17,24]],[[74785,41409,0],[-9,12]],[[74747,41440,0],[-27,17]],[[74720,41457,0],[-32,21]],[[74604,41531,0],[-28,16]],[[74576,41547,0],[-27,16]],[[74549,41563,0],[-26,17]],[[74464,41616,0],[-27,17]],[[74437,41633,0],[-27,17]],[[74355,41684,0],[-7,5]],[[74289,41725,0],[-31,18]],[[74204,41776,0],[-28,17]],[[74119,41828,0],[-26,16]],[[74036,41879,0],[-30,17]],[[73781,41848,0],[-43,49]],[[73628,42018,0],[-53,58]],[[73564,42091,0],[-9,13]],[[73505,42154,0],[45,30],[30,32],[50,28],[53,27],[58,132],[11,17],[48,74],[9,-1],[8,38]],[[73817,42531,0],[17,-4]],[[73834,42527,0],[56,-11],[26,-5]],[[73916,42511,0],[29,-5]],[[73945,42506,0],[35,-6]],[[73980,42500,0],[26,-6]],[[73412,42689,0],[3,5],[22,-5]],[[73437,42689,0],[11,-4],[30,-14]],[[73478,42671,0],[169,-80]],[[73647,42591,0],[69,-32],[75,-22]],[[73791,42537,0],[26,-6]],[[73444,42121,0],[-53,-31]],[[73328,42052,0],[-44,-25]],[[73284,42027,0],[-78,-43]],[[73206,41984,0],[-52,-29]],[[73047,41897,0],[-51,-28]],[[72996,41869,0],[-48,-27]],[[72948,41842,0],[-37,-21]],[[72911,41821,0],[-50,-27]],[[72836,41780,0],[-29,-14]],[[72807,41766,0],[-4,3]],[[72803,41769,0],[-28,-13]],[[72651,41694,0],[-24,27],[-5,5]],[[72622,41726,0],[-9,13],[-91,-18],[-29,114],[53,11],[-26,112],[-50,-9],[-22,109],[-27,113],[-17,74],[-40,172]],[[72364,42417,0],[-17,77],[-10,43]],[[72337,42537,0],[-5,24],[19,4],[-7,30],[-25,108],[-14,25],[-2,21],[-10,8],[-9,10],[-17,68],[-9,37],[10,51]],[[72268,42923,0],[32,-6],[323,-63],[88,-17],[427,-98],[157,-5],[100,-39],[17,-6]],[[72622,41726,0],[29,-32]],[[72651,41694,0],[29,-46]],[[72680,41648,0],[46,-44]],[[72726,41604,0],[86,-84]],[[72812,41520,0],[2,-4]],[[72835,41532,0],[26,-68]],[[72919,41215,0],[13,-70]],[[72932,41108,0],[13,-19]],[[72945,41089,0],[-9,-14]],[[72963,41027,0],[37,-60]],[[73084,40905,0],[41,-46]],[[73240,40727,0],[33,-39]],[[73273,40688,0],[-23,-66]],[[73250,40622,0],[-26,-75]],[[73224,40547,0],[-18,-73]],[[73206,40474,0],[-36,12]],[[73173,40495,0],[-67,20]],[[73106,40515,0],[-74,22]],[[73028,40527,0],[-167,36]],[[72495,40663,0],[-80,25]],[[72415,40688,0],[-16,20]],[[72399,40708,0],[-29,5]],[[72370,40713,0],[-62,9]],[[72271,40732,0],[-10,3]],[[72160,40764,0],[-141,59]],[[71736,40923,0],[34,24]],[[71770,40947,0],[12,67]],[[71782,41014,0],[-4,33]],[[71778,41047,0],[-5,23]],[[71773,41070,0],[-6,43]],[[71767,41113,0],[-5,23]],[[71762,41136,0],[-2,18]],[[71760,41154,0],[-6,43]],[[71754,41197,0],[-5,26],[-32,211],[-1,16],[3,80]],[[71719,41530,0],[1,48]],[[71720,41578,0],[1,91]],[[71721,41669,0],[8,60]],[[71729,41729,0],[9,8]],[[71738,41737,0],[92,305],[60,111],[14,24],[31,52],[9,11]],[[71944,42240,0],[118,314],[5,17]],[[72067,42571,0],[120,325]],[[72187,42896,0],[-33,65]],[[72154,42961,0],[114,-38]],[[72337,42537,0],[27,-120]],[[71720,41578,0],[-1,-34],[0,-14]],[[71754,41197,0],[1,-12],[2,-10],[3,-21]],[[71762,41136,0],[2,-8],[3,-15]],[[71767,41113,0],[2,-16],[1,-5],[2,-11],[1,-11]],[[71773,41070,0],[4,-21],[1,-2]],[[71778,41047,0],[0,-1],[4,-32]],[[71782,41014,0],[-6,-36],[-6,-31]],[[71538,40952,0],[-460,77]],[[71078,41029,0],[-225,34]],[[70806,41069,0],[-193,-24]],[[70613,41045,0],[-151,103]],[[70462,41148,0],[-55,38]],[[70407,41186,0],[0,1],[13,26]],[[70420,41213,0],[16,32]],[[70436,41245,0],[36,74],[74,152]],[[70546,41471,0],[-11,71],[-7,38]],[[70528,41580,0],[38,-2]],[[70566,41578,0],[3,29],[6,50]],[[70575,41657,0],[14,132],[2,31]],[[70591,41820,0],[0,19],[1,35]],[[70592,41874,0],[1,47],[0,48],[0,17],[0,13],[0,109]],[[70593,42108,0],[0,15]],[[70593,42123,0],[20,93]],[[70613,42216,0],[5,23],[20,98],[7,26]],[[70645,42363,0],[25,-5],[21,-4]],[[70691,42354,0],[26,-3],[32,-3]],[[70749,42348,0],[43,-3],[20,-1]],[[70812,42344,0],[63,-5]],[[70875,42339,0],[37,-3],[33,-3]],[[70945,42333,0],[66,-5]],[[71011,42328,0],[24,-1],[41,-3]],[[71076,42324,0],[68,-5],[68,-4]],[[71212,42315,0],[47,-3],[22,-2]],[[71281,42310,0],[56,-4],[29,-1],[4,-1],[59,-4],[55,-6],[50,-3]],[[71534,42291,0],[48,-4],[29,-3]],[[71611,42284,0],[11,-1],[8,0]],[[71630,42283,0],[26,-1]],[[71656,42282,0],[54,-5],[51,-4]],[[71761,42273,0],[8,-2],[17,-3]],[[71786,42268,0],[25,-4],[21,-4],[112,-20]],[[71738,41737,0],[-8,-7],[-1,-1]],[[71729,41729,0],[-1,-9],[-7,-51]],[[71936,43034,0],[28,-8]],[[71964,43026,0],[190,-65]],[[72187,42896,0],[-48,-130],[-72,-195]],[[71786,42268,0],[-25,5]],[[71761,42273,0],[-105,9]],[[71630,42283,0],[-19,1]],[[71611,42284,0],[-77,7]],[[71281,42310,0],[-69,5]],[[71076,42324,0],[-65,4]],[[70945,42333,0],[-70,6]],[[70812,42344,0],[-63,4]],[[70749,42348,0],[-58,6]],[[70691,42354,0],[-46,9]],[[70645,42363,0],[18,95]],[[70663,42458,0],[6,29],[18,96],[6,27],[20,93],[6,29],[28,-6],[24,-5],[28,96],[6,30],[26,94],[7,28],[25,97],[6,28],[23,92],[4,19],[28,100]],[[70924,43305,0],[53,-13],[16,-4]],[[70993,43288,0],[33,-8]],[[71026,43280,0],[58,-18]],[[71084,43262,0],[58,-16]],[[71142,43246,0],[57,-17]],[[71199,43229,0],[50,-14]],[[71249,43215,0],[55,-16],[56,-17],[54,-16]],[[71414,43166,0],[57,-17]],[[71471,43149,0],[9,-1]],[[71480,43148,0],[27,-3]],[[71507,43145,0],[85,-15]],[[71592,43130,0],[99,-16]],[[71691,43114,0],[124,-35]],[[71815,43079,0],[-1,-7],[118,-38],[4,0]],[[70663,42458,0],[-26,5],[-35,7]],[[70602,42470,0],[-33,6],[-28,6]],[[70541,42482,0],[-32,6],[-25,5]],[[70484,42493,0],[-33,6],[-30,7]],[[70421,42506,0],[-31,5]],[[70390,42511,0],[-26,5],[-32,7]],[[70332,42523,0],[-33,6],[-34,7]],[[70265,42536,0],[-51,1],[-34,1],[-51,1],[-57,3],[-59,2],[-49,2]],[[69964,42546,0],[-85,2],[-71,5]],[[69808,42553,0],[12,56],[11,52],[16,71],[16,77],[11,44],[5,27],[18,77],[15,52],[13,56],[40,182],[15,71],[6,25],[13,65],[13,59],[6,32],[5,18],[15,73],[8,30]],[[70046,43620,0],[92,-38],[59,-24],[83,-32]],[[70280,43526,0],[73,-31],[52,-20]],[[70405,43475,0],[70,-31],[32,-13]],[[70507,43431,0],[44,-18],[43,-18],[43,-17],[46,-18],[39,-16],[60,-17],[30,-4],[39,-6],[73,-12]],[[69808,42553,0],[-25,4]],[[69783,42557,0],[-63,2],[-109,3],[-55,2]],[[69556,42564,0],[-60,2]],[[69496,42566,0],[-57,1]],[[69439,42567,0],[-7,0]],[[69432,42567,0],[-108,0],[-106,2],[-63,2],[-53,1],[-69,1]],[[69033,42573,0],[-70,3],[-82,0],[-67,3],[-79,2],[-78,1],[-81,2],[-73,2],[-89,1],[-104,3],[-108,2],[-58,2],[-4,-3],[-19,-1],[-3,3],[-16,0],[-4,3],[-25,-1]],[[68073,42595,0],[0,75],[-3,121],[-2,76],[-3,83],[-2,83],[-5,84],[-2,80],[-4,99],[-4,107],[-1,7],[19,20]],[[68066,43430,0],[194,5]],[[68260,43435,0],[37,3],[30,3]],[[68327,43441,0],[33,4],[43,4]],[[68403,43449,0],[64,7],[10,1]],[[68477,43457,0],[17,2],[57,7]],[[68551,43466,0],[13,2],[18,1]],[[68582,43469,0],[86,11],[78,8],[88,10],[-3,45]],[[68831,43543,0],[0,1],[0,3]],[[68831,43547,0],[6,76],[65,-2],[160,-6]],[[69062,43615,0],[45,-5],[55,-6]],[[69162,43604,0],[70,-7],[2,0]],[[69234,43597,0],[185,-14],[194,-4]],[[69613,43579,0],[11,4],[20,6]],[[69644,43589,0],[41,0],[12,0]],[[69697,43589,0],[7,10],[10,17]],[[69714,43616,0],[58,99]],[[69772,43715,0],[11,17]],[[69783,43732,0],[1,2],[2,3]],[[69786,43737,0],[39,66]],[[69825,43803,0],[235,-98],[-14,-85]],[[69432,42567,0],[6,0],[1,0]],[[69439,42567,0],[9,0],[48,-1]],[[69556,42564,0],[25,0],[30,-1],[109,-3],[63,-3]],[[69808,42553,0],[70,-4],[86,-3]],[[69964,42546,0],[25,0],[24,-1],[59,-2],[57,-3],[51,-1],[34,-1],[28,-1],[23,-1]],[[70265,42536,0],[34,-6],[24,-5],[9,-2]],[[70332,42523,0],[14,-3],[17,-4],[27,-5]],[[70390,42511,0],[19,-3],[12,-2]],[[70421,42506,0],[19,-4],[11,-2],[33,-7]],[[70484,42493,0],[18,-3],[7,-1],[20,-4],[12,-3]],[[70541,42482,0],[28,-5],[24,-5],[9,-2]],[[70602,42470,0],[18,-3],[17,-3],[6,-2],[20,-4]],[[70645,42363,0],[-7,-25],[-1,-1],[-19,-97],[-5,-24]],[[70593,42123,0],[0,-4],[0,-11]],[[70593,42108,0],[0,-108],[0,-11],[0,-19],[-1,-51],[0,-45]],[[70592,41874,0],[-51,15],[-28,8],[-77,16],[-52,12]],[[70384,41925,0],[-75,17],[-166,36]],[[70143,41978,0],[-49,11],[-55,12]],[[70039,42001,0],[-74,18],[-82,18]],[[69883,42037,0],[-46,10],[-57,13]],[[69780,42060,0],[-83,20],[-24,5],[-7,2]],[[69666,42087,0],[-76,17]],[[69590,42104,0],[-69,17],[-73,17]],[[69448,42138,0],[-68,15]],[[69380,42153,0],[-95,19],[-67,12]],[[69218,42184,0],[-18,4],[-7,1]],[[69193,42189,0],[-19,3]],[[69174,42192,0],[-11,3],[-32,6]],[[69131,42201,0],[-79,14]],[[69052,42215,0],[-5,86],[-3,64]],[[69044,42365,0],[0,6],[-2,29]],[[69042,42400,0],[-4,65]],[[69038,42465,0],[-2,54],[-3,54]],[[70575,41657,0],[-9,-79]],[[70528,41580,0],[18,-109]],[[70546,41471,0],[-110,-226]],[[70420,41213,0],[-13,-27]],[[70351,41119,0],[-25,-30]],[[70275,41026,0],[-95,72],[-35,27],[-53,39],[-11,8],[-47,34],[-20,15],[-47,28],[-94,71],[-49,24],[-122,45],[-119,44],[-30,10],[-30,8],[-23,7],[-30,9],[-31,8],[-53,13],[-27,8],[-26,6],[-31,9],[-30,7],[-24,8],[-28,2],[-28,5],[-56,8],[-30,4],[-63,9]],[[69043,41554,0],[19,122],[-1,20],[-1,86],[0,21],[-4,33],[4,35],[-2,11],[-1,96],[-1,18],[-2,163],[-2,56]],[[69131,42201,0],[43,-9]],[[69193,42189,0],[25,-5]],[[69218,42184,0],[67,-13],[95,-18]],[[69448,42138,0],[73,-18],[69,-16]],[[69666,42087,0],[31,-8],[83,-19]],[[69780,42060,0],[103,-23]],[[69883,42037,0],[82,-19],[74,-17]],[[70039,42001,0],[104,-23]],[[70143,41978,0],[166,-37],[75,-16]],[[70384,41925,0],[129,-29],[79,-22]],[[70592,41874,0],[-1,-54]],[[68006,42598,0],[67,-3]],[[69033,42573,0],[3,-55],[2,-53]],[[69042,42400,0],[2,-35]],[[69044,42365,0],[4,-64],[4,-86]],[[69043,41554,0],[-21,1]],[[69022,41555,0],[-36,-3],[-14,1]],[[68972,41553,0],[-10,-1],[-3,0],[-30,-2],[-28,-3],[-27,-1],[-32,-3],[-25,-1],[-31,-1],[-27,11],[-15,6],[-71,27],[-64,17],[-21,6],[-1,0],[-117,21],[-19,2],[-21,6],[-38,10],[-29,9],[-25,7],[-30,8],[-57,16],[-27,7],[-26,8],[-26,7],[-17,6],[-47,26],[-21,12],[-6,6],[-3,3],[-12,15],[-18,21],[-20,23],[-18,21],[-19,22],[-8,9],[-28,35],[-4,5],[-17,18],[-20,23],[-21,8],[-20,8],[-20,10],[-22,8],[-10,4],[-10,4],[-25,11],[-5,4],[-25,17]],[[67756,42028,0],[159,279],[31,54]],[[67946,42361,0],[65,120]],[[68011,42481,0],[-5,117]],[[68972,41553,0],[9,-133]],[[68981,41420,0],[0,-3],[4,-66],[1,-7],[0,-1],[0,-8],[6,-74],[3,-49],[2,-37],[1,-6],[0,-2],[0,-7],[2,-23],[1,-20],[0,-5],[1,-15],[2,-21],[1,-12],[0,-9],[4,-52],[3,-47],[4,-65],[2,-21],[2,-39],[3,-66],[2,-36],[8,-105],[2,-30],[3,-60],[-43,-26],[-18,-81]],[[67948,41002,0],[-26,13]],[[67912,41020,0],[-40,19]],[[67794,41078,0],[-38,19]],[[67756,41097,0],[-38,18]],[[67623,41162,0],[-156,78]],[[67372,41287,0],[17,80],[6,22],[42,174],[-57,-3],[-21,-1],[-20,-4],[-50,18],[-13,4],[1,2],[0,1],[11,47],[17,72],[8,33],[3,17],[19,83],[2,8],[-18,4],[-2,0],[10,50]],[[67327,41894,0],[43,194]],[[67370,42088,0],[0,1],[12,59]],[[67382,42148,0],[23,-7]],[[67405,42141,0],[28,-9]],[[67433,42132,0],[28,-8],[28,-9]],[[67489,42115,0],[23,-7]],[[67512,42108,0],[28,-7]],[[67540,42101,0],[34,-10]],[[67574,42091,0],[11,-6]],[[67585,42085,0],[171,-57]],[[71734,40043,0],[3,-2],[61,-41]],[[71806,39993,0],[58,-41],[40,-29]],[[71619,39528,0],[-86,64]],[[71533,39592,0],[-35,26],[-3,3]],[[71495,39621,0],[-5,3],[-26,38]],[[71464,39662,0],[-34,51],[-3,4]],[[71427,39717,0],[-24,39],[-5,3],[-6,5],[33,42],[35,44],[-293,46]],[[71167,39896,0],[-7,-39],[-1,1],[-1,0]],[[71158,39858,0],[-102,19],[-25,6]],[[71029,39879,0],[-29,5],[-45,8],[-80,15],[-8,1],[-68,13]],[[70820,39956,0],[-1,0],[-11,2]],[[70731,39973,0],[-6,-14],[-6,-15],[-33,19]],[[70686,39963,0],[-17,5],[-22,7],[-26,9]],[[70459,40053,0],[-25,8],[-29,9]],[[70392,40074,0],[-15,4],[-25,8],[-10,3],[-23,7]],[[70319,40096,0],[-20,7],[2,8]],[[70301,40111,0],[-17,6],[-8,4],[-29,11]],[[70237,40136,0],[-18,6],[-26,11],[-28,11],[-26,10],[-20,7],[-10,4],[-8,4]],[[70101,40189,0],[-17,5],[-62,23]],[[68981,41420,0],[36,122],[5,13]],[[70730,40573,0],[52,-34]],[[70804,40524,0],[30,-21],[26,-17]],[[65335,44009,0],[11,3],[35,5]],[[65381,44017,0],[20,10],[29,15],[35,2]],[[65465,44044,0],[32,2]],[[65497,44046,0],[26,-184],[38,10],[48,13],[54,21],[56,24],[53,27],[25,12]],[[65797,43969,0],[39,26]],[[65836,43995,0],[14,12],[35,31],[24,-89],[-64,-46],[85,-104],[7,-6],[73,-81],[-40,-33],[1,-6]],[[65971,43673,0],[-21,-16],[20,-60],[6,-22],[-11,-9],[-13,-11],[-27,-22],[-259,-212],[-17,-17],[-16,-20],[-12,-19],[-10,-24]],[[65611,43241,0],[-63,2],[-123,3]],[[65425,43246,0],[-3,5]],[[65422,43251,0],[-15,1],[-141,5]],[[65266,43257,0],[-96,6],[-72,5]],[[65098,43268,0],[-32,2],[-8,0]],[[65058,43270,0],[-103,7],[-167,-19]],[[64788,43258,0],[-71,-15]],[[64717,43243,0],[-163,-35]],[[64554,43208,0],[-5,-1]],[[64549,43207,0],[-106,-23]],[[64443,43184,0],[-12,1],[-97,-19]],[[64334,43166,0],[-58,-8]],[[64276,43158,0],[-84,-10]],[[64192,43148,0],[-113,-12],[-76,4],[-43,5],[-46,9],[-333,91],[-63,20]],[[63518,43265,0],[-220,69],[-186,58]],[[63112,43392,0],[25,47]],[[63137,43439,0],[1,10],[9,-3],[117,322]],[[63264,43768,0],[15,45],[0,1]],[[63279,43814,0],[50,51],[7,10],[75,76],[15,20],[-230,203],[-8,9],[4,6],[-8,7],[-19,-16]],[[63165,44180,0],[-10,9],[-5,6]],[[63150,44195,0],[27,28]],[[63177,44223,0],[33,34],[44,45]],[[63254,44302,0],[7,6],[8,6],[-1,-15],[0,-11],[5,-14],[7,-9],[273,-253],[94,-82],[3,18],[2,11],[4,23]],[[63656,43982,0],[194,73]],[[63850,44055,0],[59,20],[-4,7],[0,15],[0,26],[15,29],[36,9]],[[63956,44161,0],[6,17],[1,2]],[[63963,44180,0],[232,-61]],[[64195,44119,0],[45,1],[3,0]],[[64243,44120,0],[47,0],[59,7]],[[64349,44127,0],[6,2],[33,7]],[[64388,44136,0],[96,26],[20,5],[18,4],[25,12],[31,15],[32,19],[24,15]],[[64634,44232,0],[19,13],[66,51]],[[64719,44296,0],[22,19],[26,25],[30,31],[33,41],[25,33]],[[64855,44445,0],[90,-58]],[[64945,44387,0],[55,-54],[47,-46],[26,-61],[15,-36],[10,-28],[11,-37],[-1,-51],[-2,-45],[-5,-29],[6,-15],[40,-13],[21,-13],[54,4],[20,0],[25,-5],[10,10],[22,10],[36,31]],[[66819,44212,0],[4,0],[29,9]],[[66852,44221,0],[6,2]],[[66858,44223,0],[13,6],[9,4]],[[66880,44233,0],[20,-1]],[[66900,44232,0],[13,1],[24,2]],[[66937,44235,0],[40,-4],[42,4]],[[67019,44235,0],[4,1],[1,0]],[[67024,44236,0],[39,5],[0,3],[76,5]],[[67139,44249,0],[1,-12],[4,-84]],[[67144,44153,0],[5,-67],[4,-56]],[[67153,44030,0],[10,-90]],[[67163,43940,0],[1,-27],[0,-35]],[[67164,43878,0],[3,-14],[2,-31],[0,-12],[2,-51]],[[67171,43770,0],[2,0],[52,-2]],[[67225,43768,0],[32,-28],[8,-51],[2,-11]],[[67267,43678,0],[12,-79],[19,-123]],[[67298,43476,0],[5,0],[36,-1]],[[67339,43475,0],[50,2],[6,0]],[[67395,43477,0],[2,-8],[179,3],[9,0],[78,-7],[289,-12]],[[67952,43453,0],[16,-14],[12,-11]],[[67980,43428,0],[5,-139],[3,-100],[3,-83],[2,-76],[2,-82],[2,-79],[4,-82],[3,-120],[2,-69]],[[68006,42598,0],[4,-91],[1,-26]],[[68011,42481,0],[-40,-73],[-25,-47]],[[67756,42028,0],[-58,20],[-113,37]],[[67585,42085,0],[-6,3],[-5,3]],[[67540,42101,0],[-15,4],[-13,3]],[[67512,42108,0],[-19,6],[-4,1]],[[67433,42132,0],[-15,5],[-13,4]],[[67405,42141,0],[-21,6],[-2,1]],[[67382,42148,0],[-3,1],[-3,1],[-15,6],[-58,20],[-1,0],[-25,10],[-29,9],[-25,9],[-27,10],[-30,10],[-17,5],[-58,17],[-13,4],[-12,3],[-118,33],[14,43],[-57,18],[-59,20],[-30,12],[-23,10],[-40,22],[-60,38],[-20,12],[-18,10],[-161,98],[-129,79],[0,1],[-1,4],[-232,146],[-5,3],[-18,11],[-197,115],[-126,71],[-47,24],[-45,23],[-32,24],[-2,2],[-17,19],[-13,21],[-5,8],[-9,25],[-3,10],[-4,13],[-2,21],[0,3],[0,25],[4,24]],[[65971,43673,0],[126,101]],[[66097,43774,0],[24,21],[101,83]],[[66222,43878,0],[117,97],[7,5],[52,44],[238,197],[66,53],[74,61]],[[66776,44335,0],[28,-80]],[[66804,44255,0],[2,-8],[13,-35]],[[67010,45435,0],[-11,-2],[11,-77],[8,-53],[2,-15],[12,-104],[6,-35],[8,-53],[-237,-36],[-2,4],[-56,-10],[28,-181],[-83,-29]],[[66696,44844,0],[-501,-174]],[[66195,44670,0],[30,-80]],[[66225,44590,0],[50,-125],[39,-100]],[[66314,44365,0],[8,-21]],[[66322,44344,0],[18,-46]],[[66340,44298,0],[3,1],[36,4]],[[66379,44303,0],[10,1]],[[66389,44304,0],[41,6],[28,4]],[[66458,44314,0],[6,0],[209,26]],[[66673,44340,0],[8,0]],[[66681,44340,0],[49,3]],[[66730,44343,0],[61,5],[-15,-13]],[[66222,43878,0],[-125,-104]],[[65836,43995,0],[-23,-14],[-16,-12]],[[65497,44046,0],[-18,-1],[-14,-1]],[[65381,44017,0],[-22,-4],[-24,-4]],[[64945,44387,0],[-62,39],[-28,19]],[[64855,44445,0],[20,31],[16,30]],[[64891,44506,0],[1,3],[5,15]],[[64897,44524,0],[18,51],[14,53],[2,8],[3,10],[-14,32],[-17,40],[-18,39],[-32,-19],[-24,-12],[-31,-10],[-27,-4]],[[64771,44712,0],[-43,0]],[[64728,44712,0],[-25,4],[-20,7],[-40,18],[-12,8],[-61,38],[-36,24],[-47,44],[-23,21],[-11,10]],[[64453,44886,0],[6,9],[14,24]],[[64473,44919,0],[31,52],[51,88],[4,7],[34,58],[19,33]],[[64612,45157,0],[24,30]],[[64636,45187,0],[20,23],[18,19],[18,16],[30,23],[43,28],[26,14],[33,15],[23,10],[54,17]],[[64901,45352,0],[5,1],[2,0],[1,0],[2,0],[1,1],[2,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[11,0],[11,0],[1,-1],[19,0],[2,0],[9,0],[1,-1],[7,0],[1,-1],[6,0],[1,-1],[4,0],[1,0],[4,0],[1,-1],[4,0],[1,0],[3,0],[1,-1],[3,0],[2,0],[3,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[3,0],[1,0],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1]],[[65161,45347,0],[2,0]],[[65163,45347,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[3,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[125,-59],[3,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,2],[1,1],[1,1],[1,0],[0,2],[1,1],[1,1],[1,1],[0,1],[0,1],[1,2],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1]],[[65524,45247,0],[0,3]],[[65524,45250,0],[92,1],[-43,129],[-77,230],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,2],[1,1],[1,1],[0,1],[1,1],[0,1],[2,2],[1,1],[1,0],[1,1],[1,1],[2,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[3,0],[137,-71],[147,-74],[8,-5],[47,-22]],[[65929,45512,0],[8,-3],[4,-2]],[[65941,45507,0],[37,-9],[9,-1],[3,0],[1,-1],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,0],[1,0],[1,0],[1,0],[1,-1]],[[66017,45491,0],[2,0]],[[66019,45491,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0]],[[66232,45511,0],[2,1]],[[66234,45512,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,1],[1,0]],[[66260,45522,0],[2,1]],[[66262,45523,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0]],[[66303,45545,0],[1,1],[1,0]],[[66305,45546,0],[2,1],[1,1]],[[66308,45548,0],[1,1],[1,0]],[[66310,45549,0],[1,0],[1,1]],[[66312,45550,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1]],[[66317,45554,0],[1,0]],[[66318,45554,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0]],[[66325,45558,0],[1,1],[0,1],[1,1]],[[66327,45561,0],[1,0]],[[66328,45561,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0]],[[66336,45566,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1]],[[66342,45571,0],[1,0]],[[66343,45571,0],[1,1],[1,0]],[[66345,45572,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,2],[1,0],[1,1],[1,0]],[[66367,45588,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1]],[[66377,45596,0],[1,1],[0,1]],[[66378,45598,0],[1,1],[9,7]],[[66388,45606,0],[4,2],[0,2],[9,7],[1,1],[7,5],[0,2],[6,5],[1,1],[3,3],[4,4],[1,0],[0,1],[3,2],[0,1],[1,2],[2,1],[1,1],[0,2],[3,1],[1,1],[2,3],[1,1],[2,2],[1,2],[1,1],[1,1],[2,1],[0,1],[2,2],[0,1],[2,2],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1]],[[66454,45674,0],[2,1]],[[66456,45675,0],[0,1],[1,1]],[[66457,45677,0],[2,2]],[[66459,45679,0],[1,1],[1,2],[1,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,2]],[[66466,45689,0],[2,1]],[[66468,45690,0],[0,1],[1,1],[1,0],[1,2],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,2],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,2],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,2],[1,0],[0,2],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,2],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1]],[[66514,45761,0],[1,2],[12,23]],[[66527,45786,0],[74,149],[69,139],[40,81]],[[66710,46155,0],[21,35],[18,24]],[[66749,46214,0],[23,27],[28,30],[16,16]],[[66816,46287,0],[12,11],[26,7],[12,-3],[19,-19],[13,-87],[-11,-2],[11,-64]],[[66898,46130,0],[26,-162],[5,-33],[17,-96]],[[66946,45839,0],[5,-39],[2,-11],[57,-354]],[[69766,43826,0],[59,-23]],[[69786,43737,0],[-14,-22]],[[69714,43616,0],[-17,-27]],[[69697,43589,0],[-53,0]],[[69644,43589,0],[-31,-10]],[[69234,43597,0],[-72,7]],[[69162,43604,0],[-100,11]],[[68831,43547,0],[0,-4]],[[68582,43469,0],[-31,-3]],[[68551,43466,0],[-74,-9]],[[68477,43457,0],[-74,-8]],[[68403,43449,0],[-76,-8]],[[68327,43441,0],[-67,-6]],[[68066,43430,0],[-86,-2]],[[67980,43428,0],[-28,25]],[[67395,43477,0],[-56,-2]],[[67339,43475,0],[-41,1]],[[67298,43476,0],[-31,202]],[[67225,43768,0],[-54,2]],[[67164,43878,0],[-1,62]],[[67153,44030,0],[-9,123]],[[67144,44153,0],[-5,96]],[[67024,44236,0],[-5,-1]],[[66937,44235,0],[-37,-3]],[[66880,44233,0],[-22,-10]],[[66852,44221,0],[-33,-9]],[[66819,44212,0],[-15,43]],[[66730,44343,0],[-41,-3],[-8,0]],[[66673,44340,0],[-30,-5],[-44,-5],[-77,-9],[-64,-7]],[[66458,44314,0],[-69,-10]],[[66379,44303,0],[-39,-5]],[[66322,44344,0],[-7,18],[-1,3]],[[66225,44590,0],[0,2],[-30,78]],[[66195,44670,0],[23,8],[478,166]],[[67010,45435,0],[80,10],[57,9]],[[67147,45454,0],[13,-67]],[[67160,45387,0],[42,0],[81,-3],[45,-3],[82,-9],[48,-8]],[[67458,45364,0],[83,-15],[99,-20]],[[67640,45329,0],[78,-16],[97,-21]],[[67815,45292,0],[-2,-6],[-7,-30],[1,-3],[-18,-48],[12,-15]],[[67801,45190,0],[8,-17]],[[67809,45173,0],[9,-41],[20,-105],[88,-441],[6,-1],[26,-154],[1,-26],[-3,-14],[-5,-5],[3,-6],[35,-6],[6,2],[262,-54],[133,-23],[108,-20],[13,-5],[43,-13],[28,-7],[16,-4],[30,-6],[9,-2],[35,-11],[118,-34],[3,-1],[38,-12],[30,-10],[47,-15],[140,-53],[62,-24],[415,-161],[88,-36],[153,-59]],[[69853,47111,0],[2,-3]],[[69855,47108,0],[10,-16]],[[69865,47092,0],[28,-44]],[[69893,47048,0],[138,53],[36,0],[17,0],[12,0],[71,0],[19,-18]],[[70186,47083,0],[7,-7]],[[70193,47076,0],[0,-6],[1,-40],[2,-24],[1,-19],[1,-13],[3,-30],[6,-34],[3,-11],[1,-8],[0,-7],[4,-26]],[[70215,46858,0],[1,-7],[7,-40]],[[70223,46811,0],[9,-33],[14,-49],[10,-32],[1,-2],[2,-7],[1,-4],[7,-16],[8,-20],[16,-39],[9,-22],[19,-44]],[[70319,46543,0],[11,-25]],[[70330,46518,0],[19,-44],[12,-28],[31,-74],[31,-75],[27,-65],[3,-8],[32,-75],[21,-51]],[[70506,46098,0],[-5,-10]],[[70501,46088,0],[-3,-7],[-8,-17]],[[70490,46064,0],[-79,-27],[-27,-10]],[[70384,46027,0],[-41,-14],[-48,-17]],[[70295,45996,0],[-47,-16],[-39,-15],[-74,-26],[-15,-4]],[[70120,45935,0],[-49,-20],[-27,-12]],[[70044,45903,0],[-20,-10],[-24,-12],[-34,-18]],[[69966,45863,0],[-3,-2],[-38,-22]],[[69925,45839,0],[-45,-27]],[[69880,45812,0],[-124,-92],[-78,-57]],[[69678,45663,0],[-57,-43],[-101,-74],[-41,-30],[-140,-105],[-45,-33]],[[69294,45378,0],[-27,-20],[-6,-5],[-13,-10]],[[69248,45343,0],[-48,-32],[-49,-29],[-56,-30]],[[69095,45252,0],[-64,-28]],[[69031,45224,0],[-47,-17]],[[68984,45207,0],[-64,-19],[-45,-13]],[[68875,45175,0],[-76,-15],[-37,-6],[-57,-6],[-12,-1]],[[68693,45147,0],[-54,-2],[-26,0],[-93,4]],[[68520,45149,0],[-48,5]],[[68472,45154,0],[-29,5],[-22,3]],[[68421,45162,0],[-79,18]],[[68342,45180,0],[-44,9],[-130,28]],[[68168,45217,0],[-56,12],[-107,23],[-20,4]],[[67985,45256,0],[-103,22],[-58,12],[-9,2]],[[67640,45329,0],[-119,24],[-63,11]],[[67160,45387,0],[-7,38],[-6,29]],[[66946,45839,0],[-48,291]],[[66816,46287,0],[-42,79],[21,24],[11,21],[6,23],[1,15],[-45,124],[-45,116],[-69,192],[-42,140],[106,34],[-21,49],[-9,22]],[[66688,47126,0],[1,15],[3,22],[2,11],[8,18],[6,11],[7,10],[24,26],[32,12]],[[66771,47251,0],[30,4]],[[66801,47255,0],[38,5],[101,5],[53,0]],[[66993,47265,0],[202,-1]],[[67195,47264,0],[123,-5],[41,-2],[161,-14],[3,0],[17,-2],[282,-34]],[[67822,47207,0],[178,-21]],[[68000,47186,0],[82,-8],[266,-32],[54,-10],[44,-8],[57,-8]],[[68503,47120,0],[6,5],[40,38]],[[68549,47163,0],[50,46],[17,16],[20,26],[23,2],[40,10],[31,8],[25,9],[29,16],[33,19]],[[68817,47315,0],[46,31]],[[68863,47346,0],[28,27],[21,24]],[[68912,47397,0],[22,30],[4,6]],[[68938,47433,0],[7,9],[17,-8],[42,-6],[17,5],[46,3],[26,-6],[2,-1]],[[69095,47429,0],[-42,-65],[42,65]],[[69095,47429,0],[6,-2],[14,-2],[23,-2],[3,0],[56,-5],[35,-2],[6,3],[36,82],[89,-22],[22,-45],[19,-49],[113,2],[67,1],[82,1],[11,-6],[5,-5],[25,-35],[100,-160],[3,-5],[43,-67]],[[70366,49249,0],[234,-110]],[[70600,49139,0],[5,-2],[-23,-33],[2,-2],[15,-6],[14,-7],[102,-58],[75,-38],[94,-43]],[[70884,48950,0],[-1,0]],[[70883,48950,0],[0,-1],[-43,-24]],[[70840,48925,0],[8,-15],[5,-8]],[[70853,48902,0],[3,-3],[0,-1]],[[70856,48898,0],[5,-4],[12,-10]],[[70873,48884,0],[40,-20],[11,-6],[30,-16],[17,-13],[15,-10],[16,-13],[-6,-10],[-24,-42],[-33,-70],[-88,38]],[[70851,48722,0],[-98,42]],[[70753,48764,0],[-12,-77]],[[70741,48687,0],[-1,-11],[-12,-90]],[[70728,48586,0],[-79,14],[15,-34],[49,-64],[-9,-51]],[[70704,48451,0],[54,-13],[8,-2]],[[70766,48436,0],[12,-1]],[[70778,48435,0],[-24,-91],[-26,-103]],[[70728,48241,0],[-75,-6],[-31,-157],[184,-26],[150,-16],[44,-5],[17,8],[18,4],[17,-2],[11,-1],[26,-18],[64,-4],[29,-2],[3,-39],[0,-19]],[[71185,47958,0],[0,-2],[0,-22]],[[71185,47934,0],[42,-14],[50,-17],[3,-107],[185,3],[1,0],[10,1],[-1,-17],[6,-67],[3,-20],[2,-10],[-130,-47],[10,-14],[28,-31],[3,-2],[14,-10],[13,19],[22,31],[20,16],[4,3],[30,-13],[8,-22],[23,-64]],[[71531,47552,0],[-49,-63]],[[71482,47489,0],[-11,7],[-25,17]],[[71446,47513,0],[-68,-2],[-18,-1]],[[71360,47510,0],[8,-7]],[[71368,47503,0],[72,-43]],[[71440,47460,0],[20,-14],[11,-6]],[[71471,47440,0],[5,-4],[4,-2]],[[71480,47434,0],[18,-12],[14,-10]],[[71512,47412,0],[11,-8],[1,-1]],[[71524,47403,0],[11,-6]],[[71535,47397,0],[-23,-31],[-79,-105],[28,-21],[-106,-53],[0,-16],[-18,7],[-30,-14],[-35,-16],[-83,-31],[-3,-1],[-79,-33],[-27,-1],[-28,5],[-13,1],[-43,4],[-77,1],[-107,1],[-93,0],[-115,1],[-33,-26],[-4,-22],[-2,-16],[-1,-13],[-2,-39],[2,-45],[4,-37],[6,-43],[12,-46],[9,-26],[5,-13],[31,-73],[46,-111],[13,-33],[28,-68],[32,-78],[30,-72],[30,-73],[23,-55],[35,-15],[81,29],[0,-1],[81,29],[55,20],[26,9],[44,16],[26,9],[48,18],[70,-29],[27,-16],[43,-15]],[[71369,46260,0],[21,-8],[13,-4]],[[71403,46248,0],[3,-3],[23,-14],[75,-48],[9,-5],[84,-53],[-63,-79],[-8,-11]],[[71526,46035,0],[-17,-21],[-29,-38],[-66,-83],[-63,-81],[-37,-48]],[[71314,45764,0],[-75,-96],[-65,-84]],[[71174,45584,0],[-36,-47],[-70,-87],[-60,-69],[-41,28],[-42,27],[-18,12],[-48,38],[-25,23],[-36,34],[-34,37],[-46,58],[-16,23],[-23,35],[-32,51],[-8,13],[-29,67],[-11,25]],[[70599,45852,0],[-1,2],[-30,91]],[[70568,45945,0],[-8,25]],[[70560,45970,0],[-37,94],[-1,3]],[[70522,46067,0],[-16,31]],[[70330,46518,0],[-8,18],[-3,7]],[[70223,46811,0],[-6,34],[-2,13]],[[70193,47076,0],[-6,6],[-1,1]],[[69893,47048,0],[-27,42],[-1,2]],[[69855,47108,0],[10,35],[37,141],[19,76],[30,104],[11,43],[15,60]],[[69977,47567,0],[2,5]],[[69979,47572,0],[1,3],[9,34],[6,21],[11,42]],[[70006,47672,0],[-50,68]],[[69956,47740,0],[-7,0]],[[69949,47740,0],[-4,-1],[-17,27],[-17,28],[-7,21],[-15,46],[-9,25],[-3,7],[0,1],[-1,6],[1,124]],[[69877,48024,0],[0,7]],[[69877,48031,0],[-14,89],[-4,24],[-5,29],[-18,74],[-12,44],[-9,43],[-13,53],[-21,100],[2,5],[20,64],[8,29],[8,28]],[[69819,48613,0],[22,73]],[[69841,48686,0],[6,19],[26,88]],[[69873,48793,0],[5,21]],[[69878,48814,0],[20,59],[2,9],[64,211],[28,66],[34,33],[62,31],[78,14]],[[70166,49237,0],[77,-2]],[[70243,49235,0],[54,-10]],[[70297,49225,0],[1,3],[9,24]],[[70307,49252,0],[3,6],[5,16]],[[70315,49274,0],[51,-25]],[[72532,44081,0],[41,5]],[[72573,44086,0],[51,-42]],[[72624,44044,0],[-55,-80],[-30,-41],[-63,-89],[-83,-121],[-28,-37],[-5,-8],[-6,-14],[-7,-13],[-3,-16],[-5,-34],[-12,-88],[-9,-75],[-12,-79],[0,-15],[-11,-103],[-13,-82],[-12,-82]],[[72270,43067,0],[-7,-49],[0,-1]],[[72263,43017,0],[16,-3],[-11,-91]],[[71964,43026,0],[-1,0],[-27,8]],[[71815,43079,0],[-29,8],[-95,27]],[[71691,43114,0],[-74,12],[-25,4]],[[71592,43130,0],[-54,10],[-31,5]],[[71507,43145,0],[-5,1],[-22,2]],[[71471,43149,0],[-45,14],[-12,3]],[[71249,43215,0],[-30,9],[-20,5]],[[71199,43229,0],[-18,6],[-39,11]],[[71142,43246,0],[-50,13],[-8,3]],[[71026,43280,0],[-20,5],[-13,3]],[[70993,43288,0],[46,73],[15,28],[48,93],[49,95],[16,29],[53,97],[7,14]],[[71227,43717,0],[41,76]],[[71268,43793,0],[8,16],[1,2],[14,26],[35,66],[25,48],[19,39],[45,86],[36,70],[18,35],[21,38],[41,77],[12,23],[9,18],[12,23],[10,21],[27,49],[16,31],[5,10],[25,49],[35,9],[22,39]],[[71704,44568,0],[1,-1],[14,-8],[34,-20],[70,-41],[70,-41],[69,-41],[35,-21],[36,-22],[72,-42],[73,-42],[75,-44],[70,-41],[69,-41],[85,-51],[55,-31]],[[70733,45060,0],[29,41],[65,-46]],[[70827,45055,0],[66,-46],[67,-46],[66,-45],[68,-46],[70,-46],[19,-12],[107,-52],[84,-39],[90,-42],[80,-37],[50,-23],[29,-12],[60,-25],[21,-16]],[[71268,43793,0],[-3,-6],[-38,-70]],[[70507,43431,0],[-34,14],[-68,30]],[[70280,43526,0],[37,73],[1,27],[-191,78],[93,217],[77,174],[30,-1],[20,20]],[[70347,44114,0],[4,69],[-1,0],[6,104],[3,42],[2,43]],[[70361,44372,0],[5,83],[2,37]],[[70368,44492,0],[3,48],[4,69]],[[70375,44609,0],[1,13],[1,16]],[[70377,44638,0],[8,119],[6,94]],[[70391,44851,0],[3,60]],[[70394,44911,0],[15,203],[76,43]],[[70485,45157,0],[12,-23],[6,-11],[3,-8]],[[70506,45115,0],[63,-86],[73,-63],[14,-10],[77,104]],[[73344,43067,0],[19,-85]],[[73363,42982,0],[10,2]],[[73373,42984,0],[6,-29]],[[73379,42955,0],[25,-107],[33,-159]],[[73412,42689,0],[-118,46],[-155,5],[-93,19],[-279,66],[-73,15],[-176,35],[-250,48]],[[72263,43017,0],[7,50]],[[72624,44044,0],[75,-62],[41,-35]],[[72740,43947,0],[9,-7],[91,-79]],[[72840,43861,0],[83,-71],[11,-9],[73,-64],[77,-69]],[[73084,43648,0],[97,-84],[1,0],[69,-35]],[[73251,43529,0],[7,-4],[67,-44],[95,-62],[44,-29]],[[73464,43390,0],[31,-21]],[[73495,43369,0],[18,-12]],[[73513,43357,0],[16,-21]],[[73529,43336,0],[10,-12]],[[73539,43324,0],[4,-9]],[[73543,43315,0],[-1,-15]],[[73542,43300,0],[-2,-9]],[[73540,43291,0],[-6,-6]],[[73534,43285,0],[-66,-57],[-1,-1]],[[73467,43227,0],[-83,-72]],[[73384,43155,0],[-5,-3]],[[73379,43152,0],[-64,-45]],[[73315,43107,0],[-1,-1]],[[73314,43106,0],[-2,-9]],[[73312,43097,0],[8,-2],[8,-4]],[[73328,43091,0],[7,-4]],[[73335,43087,0],[4,-5]],[[73339,43082,0],[2,-5]],[[73341,43077,0],[3,-10]],[[73344,45923,0],[47,-40]],[[73391,45883,0],[-52,-74]],[[73339,45809,0],[-93,-132]],[[73246,45677,0],[-150,-214],[-27,-38]],[[73069,45425,0],[-51,-73]],[[73018,45352,0],[-39,-54]],[[72979,45298,0],[-106,-149]],[[72873,45149,0],[-80,-114],[-72,-100]],[[72721,44935,0],[-36,-50]],[[72685,44885,0],[-27,-37]],[[72658,44848,0],[-194,-270]],[[72464,44578,0],[-62,-84]],[[72402,44494,0],[-38,-46]],[[72364,44448,0],[58,-39]],[[72422,44409,0],[49,-65]],[[72471,44344,0],[20,-29]],[[72491,44315,0],[62,-94]],[[72553,44221,0],[53,-89]],[[72606,44132,0],[-32,-45],[-42,-6]],[[70827,45055,0],[-66,46],[-28,-41]],[[70506,45115,0],[-44,86]],[[70462,45201,0],[-34,90],[-14,96]],[[70414,45387,0],[1,96]],[[70415,45483,0],[13,100]],[[70428,45583,0],[10,75]],[[70438,45658,0],[-7,73]],[[70431,45731,0],[-26,71]],[[70405,45802,0],[-26,71],[-9,23]],[[70370,45896,0],[107,43],[83,31]],[[70568,45945,0],[31,-93]],[[71174,45584,0],[64,83],[76,97]],[[71526,46035,0],[125,-78],[175,-109],[58,-36]],[[71884,45812,0],[60,-37]],[[71944,45775,0],[115,-73]],[[72059,45702,0],[52,-34]],[[72111,45668,0],[73,-46]],[[72184,45622,0],[98,-62],[97,-62]],[[72379,45498,0],[70,-45],[51,-32]],[[72500,45421,0],[107,150]],[[72607,45571,0],[70,100]],[[72677,45671,0],[1,1],[17,-12],[3,3]],[[72698,45663,0],[46,43]],[[72744,45706,0],[29,27]],[[72773,45733,0],[23,30],[-7,5]],[[72789,45768,0],[-26,18]],[[72763,45786,0],[124,180],[71,102],[17,-10]],[[72975,46058,0],[24,-17]],[[72999,46041,0],[29,-18]],[[73028,46023,0],[72,101]],[[73100,46124,0],[114,-94],[130,-107]],[[74576,45583,0],[14,-13]],[[74590,45570,0],[25,-23],[36,-31],[5,-5],[13,-13],[26,-24],[14,-15]],[[74709,45459,0],[5,-5]],[[74714,45454,0],[-75,-57],[-52,-35],[-8,-6]],[[74579,45356,0],[-8,-5]],[[74571,45351,0],[-56,-39],[-51,-34],[-14,-10],[54,-63],[-71,-16],[-20,-8]],[[74413,45181,0],[-20,-5]],[[74393,45176,0],[-32,0],[-8,-18],[-3,-8],[-18,-47],[4,-2],[-18,-24],[-12,-15],[-6,-7],[-4,-4],[-121,-112]],[[74175,44939,0],[-11,1],[-10,2],[-31,-41],[-65,-84],[-4,-8],[-23,-47],[-74,-102],[-19,-26],[-23,-33]],[[73915,44601,0],[-33,-45],[-19,-26],[-147,-204]],[[73716,44326,0],[-9,-14],[-21,-32]],[[73686,44280,0],[-35,-48],[-49,-69],[-60,-82],[-7,-11],[-10,-14],[-96,-135],[-39,-55],[-36,-48],[-144,-198]],[[73210,43620,0],[-5,-7]],[[73205,43613,0],[-22,-50]],[[73183,43563,0],[-99,85]],[[72840,43861,0],[-100,86]],[[72573,44086,0],[33,46]],[[72606,44132,0],[-37,63],[-16,26]],[[72491,44315,0],[-2,2],[-18,27]],[[72471,44344,0],[-14,17],[-35,48]],[[72422,44409,0],[-18,12],[-40,27]],[[72364,44448,0],[2,3],[23,27],[12,15],[1,1]],[[72402,44494,0],[30,41],[32,43]],[[72464,44578,0],[69,96],[18,26],[107,148]],[[72658,44848,0],[15,22],[12,15]],[[72685,44885,0],[13,18],[23,32]],[[72873,45149,0],[11,15],[8,11],[87,123]],[[72979,45298,0],[5,7],[11,15],[23,32]],[[73018,45352,0],[19,29],[32,44]],[[73246,45677,0],[32,45],[61,87]],[[73339,45809,0],[29,42],[23,32]],[[73391,45883,0],[15,-12],[40,-31],[87,-57],[30,-20],[1,-3],[3,-5]],[[73567,45755,0],[2,-4]],[[73569,45751,0],[6,-13]],[[73575,45738,0],[4,-10],[9,-24],[10,-6],[18,-10]],[[73616,45688,0],[10,-5],[27,-21]],[[73653,45662,0],[30,-22]],[[73683,45640,0],[22,28],[6,8],[19,26]],[[73730,45702,0],[111,154]],[[73841,45856,0],[31,43],[36,50],[1,5]],[[73909,45954,0],[3,10],[0,10]],[[73912,45974,0],[-2,19]],[[73910,45993,0],[-6,12]],[[73904,46005,0],[161,-36]],[[74065,45969,0],[40,-30]],[[74105,45939,0],[43,-31],[14,-11],[29,-20],[41,-32],[20,-14],[23,-17],[43,-32],[45,-33]],[[74363,45749,0],[13,-11]],[[74376,45738,0],[31,-23],[44,-32],[41,-32],[16,-12],[28,-23],[40,-33]],[[74640,42770,0],[9,-3],[28,-11],[23,-11],[0,-1],[28,-70],[0,-1],[-4,-16],[5,-8],[7,-15],[10,-22],[19,-41],[9,-21],[8,-16],[10,-20],[5,-15],[2,-5],[-9,-41],[-11,-48],[-6,-11],[-14,-24]],[[74759,42370,0],[-63,-82],[-1,-1]],[[74691,42282,0],[-15,-20],[-2,-4]],[[74674,42258,0],[-2,-2],[-2,-3]],[[74670,42253,0],[-36,18],[-13,5]],[[74621,42276,0],[-1,1],[-2,1],[-24,12]],[[74565,42304,0],[-8,4],[-1,0],[-20,9]],[[74536,42317,0],[-17,8],[-8,4]],[[74420,42370,0],[-17,6],[-6,2],[-10,4]],[[74387,42382,0],[-31,12],[-2,1]],[[74327,42404,0],[-26,10],[-9,3]],[[74292,42417,0],[-12,4],[-20,8],[-1,1]],[[74231,42440,0],[-11,5],[-10,4],[-6,2],[-1,0]],[[74203,42451,0],[-3,2],[-30,11]],[[74106,42487,0],[-2,-1],[-3,-1]],[[74101,42485,0],[-12,-3],[-8,-1]],[[74006,42494,0],[-25,5],[-1,1]],[[73945,42506,0],[-19,4],[-7,1],[-3,0]],[[73834,42527,0],[-8,2],[-7,1],[-2,1]],[[73817,42531,0],[-14,3],[-10,2],[-2,1]],[[73647,42591,0],[-136,65],[-33,15]],[[73379,42955,0],[0,1],[-6,28]],[[73373,42984,0],[-8,-1],[-2,-1]],[[73363,42982,0],[-2,7],[-17,78]],[[73341,43077,0],[-1,2],[-1,3]],[[73339,43082,0],[-2,2],[-2,3]],[[73335,43087,0],[-4,3],[-3,1]],[[73312,43097,0],[0,1],[2,8]],[[73315,43107,0],[36,25],[28,20]],[[73384,43155,0],[48,42],[35,30]],[[73534,43285,0],[5,5],[1,1]],[[73540,43291,0],[1,6],[1,3]],[[73543,43315,0],[-1,2],[-3,7]],[[73539,43324,0],[-1,2],[-9,10]],[[73529,43336,0],[-14,18],[-2,3]],[[73495,43369,0],[-20,14],[-11,7]],[[73251,43529,0],[-28,14],[-40,20]],[[73205,43613,0],[1,1],[4,6]],[[73686,44280,0],[19,7]],[[73705,44287,0],[1,0],[13,5]],[[73719,44292,0],[46,15],[16,6],[19,6],[17,6],[1,1],[56,19],[2,1],[25,8],[1,1],[31,10],[1,1],[25,9],[2,0],[11,4],[11,4],[6,2],[4,1],[2,1],[4,1],[6,3],[15,4],[34,11],[28,15],[52,-132],[10,-29],[57,-129],[16,-31],[54,-124],[0,-1],[12,-31],[50,-110],[11,-33],[1,-1],[12,-27],[8,-20],[2,-29],[25,-57],[1,-2],[10,-24],[0,-1],[49,-140],[1,-1],[10,-28],[1,0],[38,-95],[10,-36],[0,-1],[5,-22],[1,-1],[15,-60],[14,-58],[18,-71],[-16,-35],[22,-105],[0,-1],[6,-21],[17,-56],[14,-46],[2,-4],[16,-52],[14,-37]],[[75435,44231,0],[43,60],[13,8],[42,-86]],[[75533,44213,0],[55,-111]],[[75588,44102,0],[24,-50],[35,-72],[28,-59],[19,-36],[14,-28],[46,-93]],[[75754,43764,0],[-103,-31],[14,-47]],[[75665,43686,0],[-43,-15],[-39,-16],[-28,-10],[-8,-3],[-2,-1],[-21,-7],[-21,-7],[-1,0],[-29,-11],[-14,-5],[-6,-2],[-5,13],[-46,-14],[-46,-16],[1,-2],[4,-13],[-40,-10],[-5,-1],[-71,-19],[-71,-19],[-1,0],[-55,-16],[-3,-1],[4,-9],[-1,0],[-21,-7],[-20,-5],[-5,-2],[-5,-1],[-1,4],[-5,12],[-64,-24],[-31,-11],[6,-17],[14,-38],[6,-11],[3,-9],[-4,-2],[-3,-3],[40,-115],[-1,-75],[-1,-6],[-1,-15],[-8,-56],[1,-3],[-11,-6],[-15,-8],[-6,-16],[-18,-51],[-33,-44],[-16,-10],[-45,-24],[-147,-77],[-5,-2],[5,-8],[1,-3],[-19,-23],[-13,-15],[-16,-19],[-29,-35],[-11,-7]],[[73719,44292,0],[-14,-5]],[[73716,44326,0],[26,37],[173,238]],[[74175,44939,0],[20,-24],[12,-14],[17,-16],[48,-39],[36,-24],[11,-7],[37,-23],[45,-24],[28,-15],[38,-21],[25,-13],[7,-5],[33,-18],[57,-31]],[[74589,44665,0],[37,-21],[45,-25]],[[74671,44619,0],[60,-32],[35,-20],[41,-23],[10,-5],[116,-62],[80,-43],[75,-42],[76,-43],[250,-136],[21,18]],[[76602,42188,0],[-60,-76],[-22,-28]],[[76520,42084,0],[-23,-28]],[[76497,42056,0],[-101,-122]],[[76340,41969,0],[-1,3]],[[76339,41972,0],[-3,14]],[[76336,41986,0],[-28,7],[-250,58]],[[76037,42056,0],[-27,6],[-50,12]],[[75960,42074,0],[-54,14],[-78,19]],[[75245,42267,0],[-19,4],[-291,62]],[[74834,42354,0],[-54,12],[-21,4]],[[75665,43686,0],[2,1],[22,-65],[6,-12],[60,-96],[26,-42],[91,-152],[3,-2],[53,-25],[83,-130],[66,-113],[66,-105],[60,-100],[41,-67],[6,-11],[8,-13],[102,-164],[8,-12],[1,-2],[89,-145],[68,-111],[9,-12],[24,-65],[10,-13],[33,-42]],[[76519,42069,0],[-22,-13]],[[76520,42084,0],[82,104]],[[76602,42188,0],[46,54],[22,27],[29,39],[14,17],[79,103],[2,2],[11,15],[34,44],[18,23],[54,70],[23,-1],[13,17],[-8,22],[105,132],[29,37],[21,28],[19,25],[22,15]],[[77135,42857,0],[271,-34]],[[77406,42823,0],[23,-22]],[[77429,42801,0],[31,113],[5,17],[65,169],[7,16]],[[77040,42844,0],[-56,-58],[-51,-67],[0,-1],[-118,-153],[-3,-6],[-78,-100],[-28,-36],[-62,-79],[-30,0],[-136,216],[-201,321],[-261,421],[-78,124],[-52,84],[-79,153],[-53,101]],[[75588,44102,0],[10,-2],[8,0],[139,108],[121,95],[3,3],[3,2],[19,15],[39,30],[9,8],[20,17],[3,1]],[[75962,44379,0],[5,4],[18,15],[28,22],[3,2],[7,6],[11,8],[37,28],[37,1],[-16,25]],[[76092,44490,0],[-10,16],[-2,3]],[[76080,44509,0],[-51,77],[-11,10],[-20,21],[-36,36],[10,28],[24,72]],[[75996,44753,0],[31,96],[3,1]],[[76030,44850,0],[99,-3],[88,-2],[65,-3],[201,-4],[60,-1],[81,-1]],[[76624,44836,0],[3,-13]],[[76627,44823,0],[73,-324],[26,-95],[115,15],[39,12],[16,-59],[-2,-5],[84,-319],[10,3],[13,-42],[304,-87],[6,-53],[32,8],[62,7],[4,-26],[7,-62],[76,-34],[10,-4],[-44,-89],[-28,-55],[-30,-63],[-92,-185],[-79,-153],[-84,-169],[-71,-146],[-34,-54]],[[75982,44978,0],[86,-34]],[[76068,44944,0],[-38,-94]],[[76030,44850,0],[-3,0],[-31,-97]],[[76080,44509,0],[12,-19]],[[75962,44379,0],[5,7],[-5,-7]],[[75533,44213,0],[-98,18]],[[74671,44619,0],[-42,23],[-40,23]],[[74393,45176,0],[17,4],[1,0],[2,1]],[[74571,45351,0],[1,0],[7,5]],[[74714,45454,0],[18,-18]],[[74732,45436,0],[36,-38],[7,-7],[14,-15],[16,-18],[49,-56],[36,3],[58,105],[40,71],[19,32],[38,-38],[46,-27],[-3,-8],[17,-8],[3,-1],[47,-21],[51,-24],[14,-12],[24,-11],[160,-71],[28,-12],[4,-2],[40,-26],[43,-27],[28,-25],[30,-25],[21,-19],[112,-59],[131,-69],[8,-3],[133,-47]],[[71319,18221,0],[-48,-106]],[[71271,18115,0],[-52,21],[-116,-243]],[[71103,17893,0],[-140,59],[-18,5],[-49,18],[-50,23],[-132,58],[-110,52],[-163,74],[-8,4]],[[70433,18186,0],[-43,19]],[[70390,18205,0],[91,254],[4,12],[16,49]],[[70501,18520,0],[53,169]],[[70554,18689,0],[79,240]],[[70633,18929,0],[34,100]],[[70667,19029,0],[36,98],[39,84]],[[70742,19211,0],[111,218]],[[70853,19429,0],[232,452],[55,-22]],[[71140,19859,0],[74,-29]],[[71214,19830,0],[42,-16]],[[71256,19814,0],[476,-180]],[[71732,19634,0],[43,-17]],[[71775,19617,0],[32,-12]],[[71807,19605,0],[55,-21]],[[71862,19584,0],[56,-22]],[[71918,19562,0],[-5,-9],[-36,-77],[-167,-329],[-224,-481],[-42,-87],[-9,2],[-73,-148],[22,-11],[-91,-190],[26,-11]],[[59710,44011,0],[-101,79],[-9,7]],[[59600,44097,0],[-7,6],[-34,28]],[[59559,44131,0],[-7,1],[-11,2]],[[59541,44134,0],[-29,4]],[[59512,44138,0],[-101,15],[-218,32]],[[59193,44185,0],[0,4],[-5,0]],[[59188,44189,0],[-33,6],[-15,3]],[[59140,44198,0],[-114,25]],[[59026,44223,0],[-12,2],[-89,19]],[[58925,44244,0],[-13,2],[-17,4]],[[58895,44250,0],[-38,8],[-9,2]],[[58848,44260,0],[-22,5],[-52,11]],[[58774,44276,0],[-21,4],[-24,5]],[[58729,44285,0],[-68,15],[-24,5]],[[58637,44305,0],[-2,1],[-1,1]],[[58634,44307,0],[-1,0],[-1,1],[-1,2],[-2,1],[-2,1],[0,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,3],[-1,4],[0,3],[0,3],[0,2],[1,1],[0,1],[0,1],[0,1],[1,3],[6,27],[16,63],[4,17],[22,89],[18,71],[6,23],[35,137],[5,19],[-197,40],[2,9],[5,15],[10,38],[12,40],[7,40],[11,37],[10,40],[3,12],[8,29],[11,29],[8,22],[0,3],[2,53],[0,24]],[[58625,45223,0],[92,-16]],[[58717,45207,0],[58,-9],[29,-6]],[[58804,45192,0],[10,-2],[19,-3]],[[58833,45187,0],[27,-6],[29,-6]],[[58889,45175,0],[73,-16],[11,-2]],[[58973,45157,0],[3,-1],[14,-2]],[[58990,45154,0],[81,-17],[57,-12]],[[59128,45125,0],[8,-2],[9,-2]],[[59145,45121,0],[28,-6],[31,-7]],[[59204,45108,0],[17,-4],[20,-4]],[[59241,45100,0],[10,-1],[0,-1]],[[59251,45098,0],[149,-32],[77,-17]],[[59477,45049,0],[24,-6],[50,-13]],[[59551,45030,0],[68,-19]],[[59619,45011,0],[76,-25],[11,-3]],[[59706,44983,0],[29,-10],[100,-37]],[[59835,44936,0],[9,-4],[13,-6]],[[59857,44926,0],[26,-10],[25,-9]],[[59908,44907,0],[15,-5],[9,-4]],[[59932,44898,0],[12,-5],[9,-3]],[[59953,44890,0],[4,-1],[9,-4]],[[59966,44885,0],[25,-10],[14,-5]],[[60005,44870,0],[52,-21],[40,-16]],[[60097,44833,0],[7,-3],[7,-3]],[[60111,44827,0],[52,-21]],[[60163,44806,0],[9,-4],[40,-19]],[[60212,44783,0],[13,-6],[2,-1]],[[60227,44776,0],[35,-16],[1,0]],[[60263,44760,0],[50,-25]],[[60313,44735,0],[11,-5],[16,-7]],[[60340,44723,0],[-23,-24],[-4,-5],[-3,-3],[-25,-28],[-122,-136],[-453,-516]],[[76777,46199,0],[23,-38],[150,12]],[[76950,46173,0],[-51,-173]],[[76899,46000,0],[35,-14],[43,-18],[13,-5],[27,-8],[28,-8],[15,-5],[57,-17]],[[77117,45925,0],[2,-1],[7,0]],[[77126,45924,0],[3,-1],[9,-1]],[[77138,45922,0],[75,242],[69,146],[14,2],[180,-39],[171,-83],[32,158],[-2,6],[-2,7],[14,120],[3,25],[149,-26],[106,-45],[-4,-17]],[[77943,46418,0],[-43,-127]],[[77900,46291,0],[-2,-7],[3,-8],[0,-22],[1,-25],[0,-28],[-4,-39],[5,-39],[1,-10],[0,-47],[-64,-214]],[[77840,45852,0],[-37,-220]],[[77803,45632,0],[-8,-53],[-9,-51]],[[77786,45528,0],[-8,-21],[-16,-78],[-8,-50],[-34,-114]],[[77720,45265,0],[-16,-52],[-7,-23]],[[77697,45190,0],[-19,-41]],[[77678,45149,0],[-63,-168]],[[77615,44981,0],[-13,-37],[-42,-112]],[[77560,44832,0],[-14,-41]],[[77546,44791,0],[-8,-17]],[[77538,44774,0],[-7,-1],[-74,8],[0,14],[-29,3],[-1,-7],[-254,23]],[[77173,44814,0],[-21,194],[-19,3],[-61,19],[-25,2],[-45,-11],[-30,-3],[-39,-2],[-27,-5],[-71,-8],[-89,-13],[-1,3],[-16,0],[-52,1],[-54,-9],[-13,-2]],[[76610,44983,0],[-139,-16],[-35,-15],[-98,-2],[0,-13],[-38,-1],[11,-24],[-30,-4],[-206,56],[-7,-20]],[[75982,44978,0],[30,172],[9,48],[25,149],[14,-2],[11,40],[24,88],[-4,46],[-4,16],[-6,14],[-9,25],[-35,53],[-41,87],[-4,31],[-14,16],[-7,30],[1,14],[1,23],[11,164],[2,39],[11,32],[0,6],[9,138],[3,70]],[[76009,46277,0],[10,74]],[[76019,46351,0],[-48,45]],[[75971,46396,0],[13,23],[29,51]],[[76013,46470,0],[13,79]],[[76026,46549,0],[0,34],[1,131],[-7,26],[-12,48]],[[76008,46788,0],[-15,74],[332,-21],[241,-29],[-32,-123],[40,-98],[53,-60],[17,-25]],[[76644,46506,0],[29,-36]],[[76673,46470,0],[-1,-25],[25,-37],[55,-144],[25,-65]],[[59988,45721,0],[7,-11],[6,-8]],[[60001,45702,0],[8,-15],[32,-53],[10,-17],[11,-17],[12,-20],[21,-33],[111,-181],[28,-40],[24,-46],[12,-24],[47,-50],[11,-14],[19,-16],[37,-34],[61,-46],[64,-50],[66,-52],[30,-25],[45,-37],[35,-35]],[[60685,44897,0],[-9,-9],[-16,-15],[-10,-11]],[[60650,44862,0],[-19,-18]],[[60631,44844,0],[-35,-35],[-100,42],[-58,-18],[-22,-24],[-76,-86]],[[60340,44723,0],[-27,12]],[[60263,44760,0],[-36,16]],[[60227,44776,0],[-15,7]],[[60212,44783,0],[-49,23]],[[60111,44827,0],[-14,6]],[[60005,44870,0],[-39,15]],[[59966,44885,0],[-13,5]],[[59953,44890,0],[-21,8]],[[59932,44898,0],[-24,9]],[[59908,44907,0],[-51,19]],[[59857,44926,0],[-22,10]],[[59706,44983,0],[-87,28]],[[59551,45030,0],[-74,19]],[[59251,45098,0],[-10,2]],[[59241,45100,0],[-37,8]],[[59204,45108,0],[-59,13]],[[59145,45121,0],[-17,4]],[[59128,45125,0],[-138,29]],[[58990,45154,0],[-17,3]],[[58973,45157,0],[-84,18]],[[58889,45175,0],[-56,12]],[[58833,45187,0],[-29,5]],[[58804,45192,0],[-87,15]],[[58625,45223,0],[-17,3],[-17,3]],[[58591,45229,0],[-7,4],[-8,7],[-3,6],[-3,7],[-1,6],[-1,13],[21,117],[1,5],[3,4],[2,4],[3,3],[9,7],[7,3],[5,1],[4,0],[11,0],[13,51],[-66,14],[-19,5],[2,8]],[[58564,45494,0],[22,-1]],[[58586,45493,0],[20,68],[9,35],[1,16],[4,31],[20,52],[9,7],[3,4],[12,16]],[[58664,45722,0],[69,93],[45,62]],[[58778,45877,0],[33,45],[14,12]],[[58825,45934,0],[7,-18],[15,-30],[25,-32],[43,-28],[72,-25],[25,-6],[112,-2],[44,8],[38,7],[82,20],[49,15],[32,9],[34,10],[60,19],[5,1],[88,19],[41,4],[25,1],[27,2],[69,-9],[35,-5],[5,-1],[45,-15],[61,-35],[41,-26],[2,-1],[5,-6],[29,-32],[19,-21],[6,-7],[1,-2],[21,-27]],[[77797,49299,0],[10,-46],[-3,-1],[-34,-8]],[[77770,49244,0],[2,-34]],[[77772,49210,0],[-7,-18],[-1,-4],[-4,-8],[-5,-7],[-5,-5],[-25,-20]],[[77725,49148,0],[-8,0],[-12,-13],[-1,-5],[-1,-5],[-39,-42],[-90,-95]],[[77574,48988,0],[26,-25],[46,-45],[15,-10],[4,-4]],[[77665,48904,0],[63,-36]],[[77728,48868,0],[47,-26],[2,-1],[63,-38],[76,-61]],[[77916,48742,0],[11,-12],[21,-22]],[[77948,48708,0],[33,-36],[13,-14]],[[77994,48658,0],[40,-43],[36,-35]],[[78070,48580,0],[44,-45],[21,-19],[55,-34],[4,-1],[37,-43],[861,20],[35,0],[120,2],[-5,-12],[-62,-133],[-39,-86]],[[79141,48229,0],[-74,-166],[-114,-257],[-29,-63],[-49,-107]],[[78875,47636,0],[-43,-96]],[[78832,47540,0],[-19,9],[-1,-2],[-1,-2],[-42,-101],[-15,-35],[-1,-3],[-22,-55],[-1,-1],[-36,-89],[-2,1],[-94,41],[-790,346],[3,14],[-45,22],[-10,3],[-17,5],[-9,-20],[-48,-113],[-22,-53],[-25,-59],[-171,64],[-242,-224],[-139,-83],[-40,-18],[-21,-8],[-91,-40]],[[76931,47139,0],[4,-34],[-65,-6]],[[76870,47099,0],[-54,482]],[[76816,47581,0],[-338,-189],[-17,-103],[-11,-66],[32,-113],[0,-1],[-422,94],[-46,10],[-57,2]],[[75957,47215,0],[1,29],[0,17],[0,24],[1,4],[1,58]],[[75960,47347,0],[2,49]],[[75962,47396,0],[-1,59],[-1,50]],[[75960,47505,0],[0,1],[-8,51]],[[75952,47557,0],[-13,61],[-18,62],[-7,24]],[[75914,47704,0],[-26,72],[-47,135],[-17,45]],[[75824,47956,0],[-16,26],[-13,19],[-22,64],[-17,54]],[[75756,48119,0],[1,25],[2,41],[-17,67]],[[75742,48252,0],[-11,44],[-5,17],[-5,20],[-9,33]],[[75712,48366,0],[-27,-3],[-22,-3],[-13,5],[-27,17],[-18,6],[-17,7],[-22,10],[-9,17],[8,63],[10,35],[16,3],[26,5],[32,19],[9,10],[23,21],[0,15],[-3,52],[2,51],[0,3]],[[75680,48699,0],[1,21],[4,84],[0,14],[1,0]],[[75686,48818,0],[350,16],[86,-37],[100,-117],[42,6],[266,37],[85,40],[93,20],[40,6],[24,3],[170,152],[21,18],[12,91],[12,61],[76,104],[112,123],[69,64],[39,27],[53,12],[59,4],[76,-2],[32,-5],[65,-30],[95,-60],[106,28],[20,-69],[8,-11]],[[74028,49886,0],[1,1],[6,3]],[[74035,49890,0],[24,-46]],[[74059,49844,0],[-6,-3],[-1,0]],[[74052,49841,0],[24,-46],[7,5],[24,-44]],[[74107,49756,0],[-4,-3],[-3,-1]],[[74100,49752,0],[29,-55],[3,-5]],[[74132,49692,0],[0,1],[4,2]],[[74136,49695,0],[12,-21],[-7,-3],[19,-31]],[[74160,49640,0],[29,-56],[9,-17],[13,-26],[26,-50],[13,-26],[6,3],[28,-53],[-6,-3],[26,-49],[7,3],[13,-22],[3,-8],[-7,-4],[39,-75],[4,2],[24,-50],[4,1],[12,-25],[15,-24],[-5,-2],[24,-41],[6,4],[21,-43],[-6,-3],[21,-37],[-75,-33],[-42,1],[-31,-2],[-150,-6],[9,100],[3,9],[0,26],[-36,-19],[-127,-58],[-16,12],[-7,3],[-2,-52],[-1,-17],[-3,-70],[-2,-35],[-1,-37],[-1,-10],[-2,-7],[-4,-10],[-9,-12],[-10,-7],[-22,-13],[-17,-7],[-20,-4],[1,-10],[1,-41],[2,-154],[2,-48],[2,-49],[1,-104],[27,1],[0,-42]],[[73949,48344,0],[-22,-2],[-218,-11],[-47,39],[-46,-2],[-36,-1],[-83,-7],[-130,-8]],[[73367,48352,0],[-31,36],[-28,33]],[[73308,48421,0],[-21,-3],[-39,-5]],[[73248,48413,0],[-15,-1],[4,4],[25,28],[-40,20],[-42,16]],[[73180,48480,0],[-85,32],[-69,26]],[[73026,48538,0],[-13,5]],[[73013,48543,0],[7,94],[3,48]],[[73023,48685,0],[3,40],[2,40]],[[73028,48765,0],[11,26],[34,82]],[[73073,48873,0],[11,28],[146,168],[3,3],[-14,51]],[[73219,49123,0],[3,73],[1,19]],[[73223,49215,0],[0,12],[0,1]],[[73223,49228,0],[3,100]],[[73226,49328,0],[-35,51],[-14,21]],[[73177,49400,0],[-56,-6],[-3,3],[-8,19],[-27,64],[14,13],[-39,46]],[[73058,49539,0],[-4,8],[-3,8]],[[73051,49555,0],[27,15],[28,15]],[[73106,49585,0],[80,13],[17,9],[32,15],[6,4],[3,2]],[[73244,49628,0],[1,1]],[[73245,49629,0],[4,4],[13,12]],[[73262,49645,0],[21,20]],[[73283,49665,0],[1,1],[7,6]],[[73291,49672,0],[6,3],[7,4]],[[73304,49679,0],[15,7],[7,4]],[[73326,49690,0],[42,21],[42,21]],[[73410,49732,0],[17,21],[2,4]],[[73429,49757,0],[4,5],[7,8],[10,24],[4,-1],[7,11],[3,4],[2,6],[5,10]],[[73471,49824,0],[-1,3],[-3,8]],[[73467,49835,0],[-2,5],[-7,8]],[[73458,49848,0],[0,3],[0,1]],[[73458,49852,0],[36,-3],[54,-6],[27,-4],[12,5],[57,27]],[[73644,49871,0],[7,-12],[2,-5]],[[73653,49854,0],[10,5],[73,33],[6,-11],[11,6],[48,22],[32,14],[5,-8],[16,9],[8,3],[5,1],[7,2]],[[73874,49930,0],[1,0],[3,1]],[[73878,49931,0],[4,0],[4,0],[3,0],[5,-3],[5,-1],[4,-2],[4,-2],[4,-4],[4,-4],[78,35],[35,-64]],[[75653,49462,0],[-25,-28]],[[75628,49434,0],[-10,-10],[-22,-25],[31,-100]],[[75627,49299,0],[19,-68],[9,-29],[22,-73],[8,-27],[6,-28],[2,-12],[5,-22],[20,-98],[9,-61],[-39,1],[-1,-39],[-1,-25]],[[75686,48818,0],[-6,-119]],[[75680,48699,0],[-2,-55],[4,-67],[10,-129],[20,-82]],[[75712,48366,0],[14,-54],[16,-60]],[[75742,48252,0],[18,-67],[-4,-66]],[[75756,48119,0],[17,-55],[22,-64],[13,-19],[16,-25]],[[75824,47956,0],[17,-46],[47,-135],[26,-71]],[[75914,47704,0],[25,-87],[13,-60]],[[75952,47557,0],[8,-52]],[[75960,47505,0],[1,-51],[1,-58]],[[75960,47347,0],[-1,-62],[-2,-70]],[[75957,47215,0],[9,-97],[13,-185],[4,0],[12,-88]],[[75995,46845,0],[13,-57]],[[76026,46549,0],[-7,-47],[-6,-32]],[[75971,46396,0],[16,-14],[32,-31]],[[76009,46277,0],[-24,7],[-51,9],[-108,19],[-111,20],[-46,0],[-51,0],[-39,-1],[-22,8],[-36,12],[-8,3],[-28,11],[-25,38],[-26,35],[-24,-25],[-11,-10],[-85,-65],[-5,-4],[-17,-14],[-19,20],[-52,61],[-8,-7],[-2,-1],[-2,-1],[-84,97],[-136,158],[9,6],[9,7],[-13,18],[-5,6],[0,16],[0,26],[-2,28],[-3,36],[-5,31],[0,6],[-3,16],[-3,21],[-3,21],[-14,63],[-4,14],[-16,51],[-5,17],[-26,64],[-11,22],[-6,11],[-8,17],[-18,34],[-11,20],[-10,19],[-21,41],[-17,30],[-6,10],[-4,9],[-5,9],[-5,10],[-5,9],[-6,9],[-5,9],[-5,9],[-2,3],[-3,3],[-5,14],[-6,12],[-39,68],[-42,81],[-17,30],[-31,58],[-41,74],[-101,189],[-39,69],[-5,10],[-18,37],[-1,35],[0,14],[27,54],[-68,30],[-41,-88],[-32,-70],[-19,-41],[-11,-23],[-3,-7],[-38,-79],[-52,-92],[-30,-44],[-13,-18],[-19,-24],[-13,-15],[-6,-3],[-8,-3],[-10,-3],[-12,-2],[-23,-8],[2,20],[0,15],[-3,17],[-4,34],[-3,18],[-2,16],[-33,244],[-1,8],[-25,0],[-8,106],[-12,189],[-3,54]],[[74160,49640,0],[7,3],[8,-10],[7,-3],[8,1],[12,6],[-3,7],[30,12],[-4,5],[50,23],[2,-4],[90,41],[35,-62],[46,21],[-10,19],[81,38],[26,-43],[14,-27],[25,12],[27,-52],[114,53],[32,-65],[27,11],[18,-34],[141,63],[4,2],[23,13],[-34,67],[85,42],[1,0],[48,21],[7,-14],[51,23],[9,-14],[67,32],[39,18],[43,-81],[61,-118],[124,56],[61,28],[5,-8],[53,24],[-4,11],[94,43],[7,-9],[73,35],[-3,10],[83,39],[19,-2]],[[75859,49873,0],[-10,-46],[-5,-23],[-7,-36],[-2,-15],[-2,-8],[-23,-88],[-29,-54],[-9,-16],[-5,-11],[-6,-12],[-10,-6],[-8,-6],[-11,-8],[-15,-12],[-9,-9],[-20,-21],[-35,-40]],[[71915,46527,0],[-19,-11],[71,-50],[4,-4],[62,-53],[21,-19],[138,-131],[38,-11],[24,-7],[-4,-12],[-5,-16],[-12,-16],[-8,-10],[-38,-52],[-49,-67],[-34,-7],[54,-69],[72,-46],[-13,-19],[-24,-35],[-37,-51],[-16,-24],[-9,-13],[-38,-55],[-18,-24],[-7,-10],[-3,-5],[-6,-8]],[[71944,45775,0],[-1,0],[-59,37]],[[71403,46248,0],[-34,12]],[[71535,47397,0],[61,-46],[18,-14],[1,-2],[29,-25],[34,-32],[2,-4],[4,-4],[2,-2],[50,-55],[19,-24],[18,-23],[2,-3],[1,-1],[21,-36],[15,-29],[8,-21],[3,-6],[6,-16],[14,-46],[2,-12],[0,-59],[0,-2],[-2,-26],[-1,-48],[-3,-86],[0,-20],[-5,-152],[78,-73],[3,-3]],[[74732,45436,0],[-14,14],[-2,2],[-7,7]],[[74590,45570,0],[-6,6],[-8,7]],[[74376,45738,0],[-1,1],[-10,8],[-2,2]],[[74105,45939,0],[-15,11],[-25,19]],[[73904,46005,0],[-15,24],[-13,21],[-15,19],[-106,125],[-1,1],[-210,249],[-43,50],[-105,126],[-68,77],[-56,65],[-86,102],[-173,201],[-3,3],[-64,75]],[[72946,47143,0],[52,30],[18,10],[-9,13],[-22,25],[-32,40],[32,13],[25,11],[44,16],[19,7],[-30,-10],[-3,-1],[-14,-2],[-25,2],[-19,5],[-14,6],[-3,2],[-8,4],[-16,14],[-7,9],[-6,8],[-8,17],[-5,21],[-1,8],[-22,8],[-41,15],[-9,13],[-5,7],[-51,73]],[[72786,47507,0],[97,37],[45,16],[55,20],[106,37]],[[73089,47617,0],[-20,94]],[[73069,47711,0],[-12,51],[-10,47],[-7,32],[270,85],[175,56],[28,8],[-5,24],[-10,57],[-11,63],[-13,43],[-17,52],[-6,10],[-7,14],[-39,50],[-38,49]],[[73904,46005,0],[4,-8],[2,-4]],[[73912,45974,0],[0,-5],[0,-6],[-1,-4],[-2,-5]],[[73841,45856,0],[-95,-133],[-16,-21]],[[73730,45702,0],[-47,-62]],[[73653,45662,0],[-28,21],[-9,5]],[[73575,45738,0],[-1,2],[-5,11]],[[73569,45751,0],[-1,1],[-1,3]],[[73344,45923,0],[-244,201]],[[73100,46124,0],[-71,-100],[-1,-1]],[[73028,46023,0],[-16,10],[-13,8]],[[72999,46041,0],[-13,9],[-11,8]],[[72763,45786,0],[24,-16],[2,-2]],[[72773,45733,0],[-5,-4],[-24,-23]],[[72744,45706,0],[-1,-1],[-45,-42]],[[72677,45671,0],[-54,-77],[-16,-23]],[[72607,45571,0],[-59,-83],[-48,-67]],[[72500,45421,0],[-52,33],[-40,25],[-29,19]],[[72184,45622,0],[-72,45],[-1,1]],[[72111,45668,0],[-51,33],[-1,1]],[[71915,46527,0],[66,40],[134,79],[42,25],[5,4],[69,41],[45,27],[44,25],[65,40],[22,13],[44,27],[47,28],[67,39],[12,8],[24,14],[47,28],[60,37],[91,53],[1,1],[44,25],[7,4],[31,18],[64,40]],[[71524,47403,0],[-12,9]],[[71512,47412,0],[-21,14],[-11,8]],[[71471,47440,0],[-31,20]],[[71440,47460,0],[-36,22],[-36,21]],[[71360,47510,0],[86,3]],[[71482,47489,0],[21,27],[28,36]],[[71531,47552,0],[84,-38],[27,2],[6,0],[41,3],[42,-41],[-3,-2],[72,-24],[8,-13],[12,-20],[25,7],[47,12],[3,-9],[47,13],[37,10],[15,5],[44,12],[32,-103],[30,8],[-34,106],[-4,12],[-5,13],[-16,57],[-1,1],[-10,50],[30,8],[7,2],[54,15],[59,16],[28,8],[8,2],[50,14],[46,12],[19,6]],[[72331,47696,0],[21,6],[7,2]],[[72359,47704,0],[17,4],[30,8],[2,1],[55,16]],[[72463,47733,0],[33,-48],[24,-30],[12,-15],[13,-16],[26,-30],[23,-29],[27,-31],[11,-13],[1,-1],[13,-14],[15,-19],[13,-16],[14,-16],[42,-49],[3,-5],[6,17],[24,70],[1,2],[5,12],[17,5]],[[71871,49441,0],[28,-188]],[[71899,49253,0],[9,5],[24,12]],[[71932,49270,0],[51,25],[30,15]],[[72013,49310,0],[5,-24],[2,-14]],[[72020,49272,0],[10,2],[42,7]],[[72072,49281,0],[-6,-58],[-2,-14],[-4,-45],[-10,-80],[43,-232],[18,-68],[13,-47],[24,-78],[10,-27],[7,-19],[28,-73]],[[72193,48540,0],[39,-91]],[[72232,48449,0],[16,-36],[13,-31],[9,-20],[13,-30],[1,-3],[10,-23]],[[72294,48306,0],[12,-28],[2,-6]],[[72308,48272,0],[15,-33],[39,-90],[19,-42],[11,-26],[23,-51],[26,-53],[17,-33],[16,-28],[-18,-5],[-18,-5],[-28,-7],[-48,-12],[35,-54],[10,-15],[4,-6],[16,-25],[23,-35],[13,-19]],[[72359,47704,0],[-28,-8]],[[71185,47934,0],[0,24]],[[70728,48241,0],[50,194]],[[70766,48436,0],[-62,15]],[[70728,48586,0],[13,101]],[[70741,48687,0],[4,29],[8,48]],[[70753,48764,0],[53,-23],[45,-19]],[[70873,48884,0],[-17,14]],[[70853,48902,0],[-13,23]],[[70840,48925,0],[43,25]],[[70884,48950,0],[41,132],[76,101],[94,-93]],[[71095,49090,0],[12,7],[10,7]],[[71117,49104,0],[17,8]],[[71134,49112,0],[-8,8],[-7,6]],[[71119,49126,0],[39,15],[65,24]],[[71223,49165,0],[56,21]],[[71279,49186,0],[88,-89],[12,9],[62,40],[196,131],[234,164]],[[73051,49555,0],[7,-16]],[[73177,49400,0],[49,-72]],[[73223,49228,0],[0,-13]],[[73223,49215,0],[-4,-92]],[[73073,48873,0],[-33,-82],[-12,-26]],[[73028,48765,0],[-5,-80]],[[73023,48685,0],[-10,-142]],[[73026,48538,0],[154,-58]],[[73248,48413,0],[60,8]],[[73308,48421,0],[59,-69]],[[73069,47711,0],[9,-43],[11,-51]],[[72308,48272,0],[-14,34]],[[72232,48449,0],[-7,17],[-32,74]],[[72072,49281,0],[24,14],[23,27],[10,4],[0,17],[-2,23],[26,4],[-1,8],[36,-6],[14,2],[6,11],[54,36],[24,17],[8,2],[50,3],[32,-5],[33,2],[277,29],[17,4],[3,0],[6,1],[17,3],[64,-1]],[[72793,49476,0],[46,-1],[41,-1]],[[72880,49474,0],[56,48],[84,58],[25,-28],[6,3]],[[64192,43148,0],[53,7],[31,3]],[[64276,43158,0],[8,1],[50,7]],[[64443,43184,0],[103,22],[3,1]],[[64554,43208,0],[107,23],[56,12]],[[64717,43243,0],[25,5],[46,10]],[[65058,43270,0],[12,0],[28,-2]],[[65266,43257,0],[156,-6]],[[65422,43251,0],[3,-4],[0,-1]],[[67370,42088,0],[-7,-30],[-36,-164]],[[66148,41913,0],[-35,17],[-79,48],[-39,37],[-34,29],[-42,29],[-51,33],[-81,45],[-130,75]],[[65657,42226,0],[-95,60]],[[65562,42286,0],[-111,65],[-65,38],[-73,43],[-24,13],[-57,31]],[[65232,42476,0],[-88,40]],[[65144,42516,0],[-123,32]],[[65021,42548,0],[-73,9]],[[64948,42557,0],[-44,3],[-120,1]],[[64784,42561,0],[-146,7]],[[64638,42568,0],[81,122]],[[64719,42690,0],[-73,26],[-12,9],[-23,10],[-75,29],[-17,6],[-27,12],[-60,26]],[[64432,42808,0],[-186,34],[-27,4],[-51,8]],[[64168,42854,0],[9,-39],[1,-70]],[[64178,42745,0],[-1,-22],[0,-6]],[[64177,42717,0],[-25,-9]],[[64152,42708,0],[-33,0],[-162,-1]],[[63957,42707,0],[-104,2],[-74,0],[-260,1],[-32,-1],[-73,-1],[-66,-27]],[[63348,42681,0],[-78,4],[-29,4],[-55,14]],[[63186,42703,0],[0,5]],[[63186,42708,0],[-1,23]],[[63185,42731,0],[-1,32],[2,16],[1,1],[12,81],[-2,3],[-3,2],[-23,7],[-76,23],[25,72],[86,249]],[[63206,43217,0],[3,1],[4,2]],[[63213,43220,0],[0,4],[-4,18]],[[63209,43242,0],[42,-16],[24,-8]],[[63275,43218,0],[-22,10],[-44,22]],[[63209,43250,0],[-106,37]],[[63103,43287,0],[7,87]],[[63110,43374,0],[2,18]],[[63112,43392,0],[406,-127]],[[67461,39645,0],[95,-59]],[[67701,39552,0],[22,-22],[-2,-3],[20,-17],[15,-7],[15,-8],[2,2],[10,-5],[-2,-6],[8,-2],[-22,-39],[-30,-52],[-23,-32],[-24,-32],[-31,-20],[-19,-14],[-41,-44],[-19,-23],[-3,3],[-20,-26],[-11,-15],[-23,-31],[-22,-29],[-9,-6],[-19,-24],[-27,-33],[-5,-6],[-21,-27],[-4,-7],[-45,-76]],[[67371,38951,0],[-72,41],[-29,16]],[[67141,39324,0],[-6,57]],[[67124,39507,0],[-3,60]],[[67121,39567,0],[-3,45]],[[67118,39612,0],[18,24]],[[67193,39719,0],[93,-31]],[[67286,39688,0],[56,-17]],[[68386,39191,0],[23,-13],[27,-14]],[[68892,38976,0],[8,-3],[221,-92]],[[69533,38706,0],[-4,-7],[-1,-5]],[[69528,38694,0],[-38,-74],[-73,-144]],[[69134,37920,0],[-85,-24],[-81,-22]],[[68132,37726,0],[-61,-22],[-60,36],[-14,35],[-18,44],[-34,90],[-15,36],[-36,92],[-3,9],[-15,36],[-6,13],[-15,35],[-16,43],[-10,26],[-10,22],[-22,55],[-28,72],[-28,74],[-14,37],[-14,36],[-35,84],[-72,180],[13,54],[-22,13],[-48,27],[-44,25],[-111,60],[-23,13]],[[82757,41115,0],[-24,-61],[-2,-4]],[[82731,41050,0],[-15,-35],[-7,-20],[-15,-44],[-3,-22]],[[82691,40929,0],[-4,-20],[-1,-4],[1,-21],[1,-6],[6,-29]],[[82694,40849,0],[6,-34],[1,0],[8,-49]],[[82760,40654,0],[3,-3],[22,-19]],[[82785,40632,0],[1,-16],[1,-23]],[[82808,40446,0],[12,-57],[2,-13],[5,-39]],[[82828,40263,0],[-2,-44],[0,-11],[-8,-35]],[[82818,40173,0],[0,-5],[-2,-29]],[[82816,40139,0],[2,-9],[0,-2],[1,-11],[0,-4]],[[82819,40113,0],[0,-8],[3,-30],[3,-40]],[[82825,40035,0],[5,-52],[6,-64],[5,-59],[0,-3]],[[82853,39743,0],[12,-23],[3,-7]],[[82868,39713,0],[66,-128],[14,-35],[16,-46],[9,-50],[24,-123],[13,-74],[6,-47],[0,-39],[1,-33],[-7,-27],[-12,-41],[-14,-33],[-21,-29],[-30,-43],[-60,-83],[-16,-23]],[[82857,38859,0],[-2,1],[-44,29]],[[82811,38889,0],[-12,8],[-16,-20],[-16,-14],[-27,-13],[-37,-8]],[[82703,38842,0],[-344,-81],[-129,-28],[-42,-9],[-119,-26],[-16,-3],[2,4],[-16,8],[-13,-14],[-93,-15]],[[81933,38678,0],[-9,48],[-26,-4]],[[81898,38722,0],[-48,-9],[0,1]],[[81850,38714,0],[-25,233],[33,1],[1,85],[-33,4],[-3,102],[21,6],[-15,148],[20,3],[-10,72],[-17,-1],[-8,100],[26,2],[-5,44],[-21,-3],[-32,290],[22,1],[-5,35],[-21,-2],[-21,181],[-9,79],[-7,0],[-20,164],[31,3],[-7,47],[-64,-7]],[[81681,40301,0],[-2,17],[-6,49],[129,21]],[[81802,40388,0],[24,7],[39,7]],[[81865,40402,0],[9,4],[6,4],[35,21]],[[81922,40440,0],[10,19],[-1,21]],[[81931,40480,0],[-38,146],[-46,98]],[[81835,40751,0],[21,12]],[[81884,40779,0],[-9,38],[-4,14]],[[81842,40936,0],[-2,10],[-26,94]],[[81803,41105,0],[3,33],[1,10]],[[81815,41197,0],[6,34],[4,25]],[[81825,41256,0],[3,13],[4,15]],[[81832,41284,0],[42,17],[3,1]],[[81890,41308,0],[9,4],[15,7]],[[81944,41334,0],[1,2],[17,11]],[[81985,41356,0],[23,8],[16,0],[1,0],[35,-1]],[[82060,41363,0],[12,0],[29,0]],[[82132,41349,0],[20,-13],[25,-15],[8,-6],[28,-18],[7,-3]],[[82259,41283,0],[35,1],[19,1],[16,10]],[[82368,41321,0],[1,0],[2,3],[1,0],[30,17]],[[82402,41341,0],[37,19],[3,1]],[[82442,41361,0],[2,2]],[[82444,41363,0],[16,8]],[[82560,41452,0],[33,23],[5,3]],[[82598,41478,0],[43,31],[37,26],[13,8]],[[82719,41570,0],[4,3],[2,2]],[[82748,41597,0],[23,22],[1,2]],[[82773,41622,0],[8,11],[7,10]],[[82788,41643,0],[0,1],[11,12]],[[82812,41689,0],[1,1],[6,35],[1,9]],[[82831,41736,0],[1,0]],[[82832,41736,0],[36,-2],[14,0],[23,-1]],[[82905,41733,0],[11,0],[7,-1]],[[82922,41694,0],[-4,-11],[-11,-29],[-6,-36]],[[82901,41618,0],[-8,-41],[-41,-192],[-6,0]],[[82739,38596,0],[-26,-58],[-8,-30],[-1,-9],[-5,-32]],[[82700,38425,0],[-10,-32],[2,-37],[12,-24],[12,-7],[22,-12],[44,-20],[46,-15],[88,-29],[75,-24],[4,-1]],[[82995,38224,0],[48,-15],[17,-6],[22,-7],[30,-9]],[[83112,38187,0],[-15,-42],[83,-44]],[[83180,38101,0],[-10,-20],[-14,-35],[0,-1]],[[83156,38045,0],[1,-7]],[[83157,38038,0],[1,-11],[16,-207],[15,-143],[6,-12],[0,-1],[4,-8],[87,-183],[-35,-15],[8,-29],[50,-186],[-22,-29],[-32,-53],[-15,-23],[-53,-70],[-16,-36],[-31,-41],[-26,-23],[-13,-12],[-16,-11],[-46,-31],[-35,-27],[-68,-100],[-58,-61],[-81,-87],[-49,-95],[-27,-15],[1,1],[3,30],[-22,-11]],[[82703,36549,0],[-1,-1],[-61,-58]],[[82641,36490,0],[-21,-16],[-23,-48],[-136,-283],[-6,-25],[-10,-92],[-10,-49],[-7,-14],[-52,-9],[-112,-19],[-94,-17]],[[82170,35918,0],[-44,333],[-70,668],[-20,135],[-27,261],[-1,19],[-13,51],[-13,135],[10,1],[-3,27],[-5,50],[-10,-1],[-36,293],[-37,309],[11,1],[-20,214],[-17,154],[-9,35],[-2,18],[-11,28],[-5,65],[2,0]],[[81850,38714,0],[48,8]],[[81933,38678,0],[79,13],[14,3],[13,15],[16,-9],[13,2],[119,24],[34,6],[137,30],[62,13],[163,39],[120,28]],[[82703,38842,0],[21,5],[14,4],[29,15],[15,14],[17,19],[12,-10]],[[82857,38859,0],[0,-1],[13,-8],[-21,-33],[-39,-61],[-15,-17],[-23,-49],[-33,-94]],[[76653,26760,0],[-51,-194],[-14,-69],[50,1],[56,6],[94,-106],[71,-39],[26,-20],[106,-114],[45,-43],[-238,-128],[-184,-110],[-4,-39],[-13,-116],[-9,-103],[-4,-32],[16,-69],[23,-95],[3,-8],[60,-117],[14,-32],[20,-33],[20,-36],[40,-48],[8,-14],[12,-17],[31,-51],[126,-96],[123,-76],[41,-25],[8,-26],[-5,-79],[7,-119]],[[77131,24713,0],[-84,-35],[-28,-8]],[[77019,24670,0],[-59,-6],[-95,-9]],[[76865,24655,0],[-148,-16]],[[76717,24639,0],[-3,4]],[[76714,24643,0],[-37,46],[-14,18],[-56,74]],[[76607,24781,0],[-55,74],[-79,115]],[[76473,24970,0],[-9,14]],[[76464,24984,0],[-75,137]],[[76389,25121,0],[-17,-8]],[[76372,25113,0],[-196,-38]],[[76176,25075,0],[-32,-3]],[[76144,25072,0],[-23,-2],[-2,-55],[-8,-15],[-9,-6]],[[76102,24994,0],[-13,-5],[-14,-1],[-38,14]],[[76037,25002,0],[-123,45]],[[75914,25047,0],[-158,-17]],[[75756,25030,0],[-121,-11]],[[75635,25019,0],[34,112],[28,85],[25,84],[6,576]],[[75728,25876,0],[-3,10],[-4,12]],[[75721,25898,0],[-9,15]],[[75712,25913,0],[-13,15],[-12,10]],[[75687,25938,0],[-18,9],[30,56],[6,-4],[6,-1],[6,0],[6,4],[6,10],[-9,135]],[[75720,26147,0],[-16,301],[66,-4],[25,-4]],[[75795,26440,0],[20,2],[392,54],[-39,312],[163,-1],[113,0],[209,-47]],[[74271,24462,0],[10,31],[4,-20]],[[74285,24473,0],[114,-69],[100,-33]],[[74499,24371,0],[92,-27],[78,-25]],[[74669,24319,0],[74,-17],[71,-17],[59,-10],[72,-12]],[[74945,24263,0],[55,-6],[59,-7]],[[75059,24250,0],[43,-2]],[[75102,24248,0],[179,-13],[24,1]],[[75305,24236,0],[22,7],[15,9]],[[75342,24252,0],[26,17]],[[75368,24269,0],[35,29],[32,33]],[[75435,24331,0],[44,70]],[[75479,24401,0],[-59,-368],[-43,-286]],[[75377,23747,0],[-53,-337]],[[75324,23410,0],[-29,-332]],[[75295,23078,0],[39,-4],[25,-2],[6,-2],[9,0]],[[75374,23070,0],[-31,-391],[-30,-364],[-7,-85]],[[75306,22230,0],[-84,16],[-172,35]],[[75050,22281,0],[-117,33]],[[74933,22314,0],[-126,40]],[[74807,22354,0],[-113,44]],[[74694,22398,0],[-115,53]],[[74579,22451,0],[-105,57]],[[74474,22508,0],[-108,58],[-102,53],[-44,24],[-104,54],[-100,53]],[[74016,22750,0],[-107,58]],[[73909,22808,0],[-32,17]],[[73877,22825,0],[-124,66]],[[73753,22891,0],[-44,23]],[[73709,22914,0],[-135,71]],[[73574,22985,0],[-112,58],[-170,91]],[[73292,23134,0],[4,4],[58,94],[1,1]],[[73384,23277,0],[52,83],[19,32]],[[73651,23759,0],[101,164]],[[73765,23947,0],[-76,28]],[[73689,23975,0],[96,150]],[[73873,24263,0],[118,179]],[[74034,24536,0],[18,-6]],[[74052,24530,0],[75,-8],[144,-60]],[[73912,21092,0],[-9,16],[-10,20],[-24,48],[-3,6],[-2,4],[-97,-42],[-8,-5]],[[73759,21139,0],[-14,5],[-43,17]],[[73702,21161,0],[-130,50]],[[73572,21211,0],[-109,41],[-46,17]],[[73417,21269,0],[-110,38],[-20,8]],[[73287,21315,0],[77,169],[53,121],[54,100],[8,16],[6,15],[4,13],[-124,43]],[[73365,21792,0],[-149,51],[-44,15]],[[73172,21858,0],[-8,3],[-101,35],[-105,36],[-63,22]],[[72895,21954,0],[-34,13]],[[73574,22985,0],[67,-35],[68,-36]],[[73753,22891,0],[97,-52],[27,-14]],[[73877,22825,0],[11,-6],[21,-11]],[[73909,22808,0],[48,-26],[59,-32]],[[74474,22508,0],[68,-37],[33,-18],[1,0],[3,-2]],[[74694,22398,0],[5,-2],[108,-42]],[[74807,22354,0],[68,-21],[58,-19]],[[74933,22314,0],[101,-29],[16,-4]],[[75306,22230,0],[-35,-359],[-26,-182]],[[75245,21689,0],[-73,-12],[-212,-31],[-100,-16],[-107,-16],[-221,-46],[-53,-17],[-93,-40],[-112,-57],[-111,-75],[-113,-96],[-107,-124],[-8,-19],[-12,-23],[-8,-18],[-3,-7]],[[73702,21161,0],[57,-22]],[[73912,21092,0],[-164,-281]],[[73748,20811,0],[-7,-11],[-1,-2]],[[73740,20798,0],[-9,-7],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0]],[[73722,20785,0],[0,-1],[0,-1]],[[73722,20783,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1]],[[73717,20780,0],[-1,-1],[0,-1]],[[73716,20778,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1]],[[73706,20770,0],[-1,-1],[0,-1]],[[73705,20768,0],[-1,-1],[-1,-1],[-1,0]],[[73702,20766,0],[0,-1],[0,-1]],[[73702,20764,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[73677,20731,0],[-1,-1],[0,-1]],[[73676,20729,0],[-1,-1],[0,-1]],[[73675,20727,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-2]],[[73671,20718,0],[-1,0],[0,-1]],[[73670,20717,0],[-1,-1]],[[73669,20716,0],[0,-1],[-1,-1]],[[73668,20714,0],[0,-1],[0,-1]],[[73668,20712,0],[-1,0]],[[73667,20712,0],[0,-1],[0,-1]],[[73667,20710,0],[-1,0]],[[73666,20710,0],[-1,-2]],[[73665,20708,0],[-28,-76],[-1,-2]],[[73636,20630,0],[-63,-169],[-32,12],[-61,-101],[-21,-37],[-27,-52],[-45,-89],[-65,-171],[-31,-99],[-30,-98]],[[73261,19826,0],[-1,-5],[-62,23]],[[73198,19844,0],[-124,41]],[[73074,19885,0],[-121,41]],[[72953,19926,0],[-58,20]],[[72895,19946,0],[-8,2],[-38,13]],[[72849,19961,0],[-23,8]],[[72826,19969,0],[-28,9]],[[72798,19978,0],[1,35],[8,32],[-36,12]],[[72771,20057,0],[-21,7]],[[72750,20064,0],[-102,34]],[[72648,20098,0],[-65,21]],[[72583,20119,0],[-16,5],[-30,9],[-12,4],[-10,4]],[[72515,20141,0],[-49,16]],[[72466,20157,0],[-52,16],[-110,38],[-17,36]],[[72287,20247,0],[22,43]],[[72309,20290,0],[29,6]],[[72338,20296,0],[33,13],[23,16],[22,22]],[[72416,20347,0],[22,75]],[[72438,20422,0],[16,51],[-10,30],[-12,23]],[[72432,20526,0],[-19,25]],[[72413,20551,0],[38,109],[53,153],[55,159],[37,107]],[[72596,21079,0],[6,19]],[[72602,21098,0],[43,124],[54,159]],[[72699,21381,0],[8,21]],[[72707,21402,0],[178,524],[10,28]],[[73172,21858,0],[42,-14],[151,-52]],[[73287,21315,0],[14,-6],[28,-9],[88,-31]],[[73572,21211,0],[33,-13],[41,-15],[56,-22]],[[74304,19417,0],[-68,-171],[-32,-84],[-33,-82],[-48,49]],[[74123,19129,0],[-19,4],[-121,31],[-35,12],[-48,-82],[-13,-23],[-135,55],[-14,5],[48,92],[-47,14],[-17,5],[-94,40],[10,90],[2,40],[8,70],[8,39],[22,97],[15,66],[-22,7],[-36,11],[-96,31]],[[73539,19733,0],[-22,7]],[[73517,19740,0],[-70,24],[-143,49]],[[73304,19813,0],[-43,13]],[[73636,20630,0],[29,78]],[[73665,20708,0],[1,1],[0,1]],[[73667,20710,0],[0,2]],[[73668,20712,0],[0,2]],[[73668,20714,0],[1,2]],[[73670,20717,0],[1,1]],[[73675,20727,0],[1,2]],[[73676,20729,0],[1,2]],[[73702,20764,0],[0,2]],[[73705,20768,0],[1,2]],[[73716,20778,0],[1,2]],[[73722,20783,0],[0,2]],[[73740,20798,0],[8,13]],[[75245,21689,0],[-32,-212]],[[75213,21477,0],[-16,-54]],[[75197,21423,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,0]],[[75189,21396,0],[0,-1]],[[75189,21395,0],[0,-1],[0,-1]],[[75189,21393,0],[-1,-1],[0,-1]],[[75188,21391,0],[0,-1],[-1,-1],[-1,-1]],[[75186,21388,0],[0,-1],[0,-1],[-1,-1]],[[75185,21385,0],[0,-1]],[[75185,21384,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2]],[[75181,21373,0],[-91,-202]],[[75090,21171,0],[-71,-154],[-75,-152],[-13,-26],[-58,-122],[-11,-27],[-28,-69],[-41,-110],[-12,-32],[-54,-151],[-38,-106],[-34,-101],[-12,-36],[-23,-63],[-5,-15],[-54,-147],[-15,-40],[-2,-4],[-14,-37],[-100,-267],[-81,22],[-35,-91],[-4,-11],[-6,-15]],[[75418,20591,0],[168,-52]],[[75586,20539,0],[56,246],[-143,31],[20,107],[14,86],[2,10],[6,8],[5,4],[8,5],[8,2],[10,2],[9,-1],[109,-30],[38,-10],[182,-51],[53,-13],[33,-4],[43,-4],[45,-1],[58,3]],[[76142,20929,0],[53,9],[6,1]],[[76201,20939,0],[39,10]],[[76240,20949,0],[48,-75],[92,-141]],[[76380,20733,0],[23,-96],[-119,-90]],[[76284,20547,0],[-12,-10],[-25,-19]],[[76247,20518,0],[-40,-38],[-1,0]],[[76206,20480,0],[-37,-42],[-26,-33],[-27,-42],[-26,-47],[-22,-54],[-20,-57],[-10,-42],[-8,-56],[-6,-75],[6,-71],[5,-42],[12,-52],[7,-23],[18,-61],[29,-67],[24,-40],[45,-61],[156,-194]],[[76326,19421,0],[-82,51],[-75,-55],[21,-42]],[[76190,19375,0],[44,-73],[18,-37],[20,-68],[21,-29]],[[76293,19168,0],[29,-3],[13,-4]],[[76335,19161,0],[249,-249],[115,-166],[51,-66]],[[76750,18680,0],[55,-68]],[[76805,18612,0],[-36,-67],[-112,74]],[[76657,18619,0],[-62,-85],[-72,-89]],[[76523,18445,0],[-245,68],[-243,76]],[[76035,18589,0],[23,122],[-209,60],[-58,6]],[[75791,18777,0],[-47,-19],[-46,-17],[-40,-20],[-90,-83]],[[75568,18638,0],[-59,32],[-2,59]],[[75507,18729,0],[-29,72]],[[75478,18801,0],[96,152]],[[75574,18953,0],[12,18],[-44,3]],[[75542,18974,0],[-42,26]],[[75500,19000,0],[-6,-5],[-115,50]],[[75379,19045,0],[-167,71]],[[75212,19116,0],[-149,29]],[[75063,19145,0],[-149,30],[-10,2]],[[74904,19177,0],[-8,14]],[[74896,19191,0],[-2,2],[-9,5],[-17,9],[-40,20],[-78,41]],[[74750,19268,0],[-62,-2]],[[74688,19266,0],[-9,-16],[-64,71]],[[74615,19321,0],[-102,32],[-106,33],[-103,31]],[[75090,21171,0],[399,-81],[-24,-160],[-23,-167],[-24,-172]],[[74615,19321,0],[61,-66],[12,11]],[[74750,19268,0],[101,-52],[45,-25]],[[74896,19191,0],[-51,-90]],[[74845,19101,0],[-55,-119],[-31,-65],[-12,-25]],[[74747,18892,0],[-29,-124],[-12,-54],[-40,-164],[-22,-90]],[[74644,18460,0],[-58,-195]],[[74586,18265,0],[-43,-77],[-19,-35],[-17,-30]],[[74507,18123,0],[-2,-7],[-26,-64]],[[74479,18052,0],[-73,-123]],[[74406,17929,0],[-25,-40]],[[74381,17889,0],[-23,-41],[-26,-46],[-39,-62]],[[74293,17740,0],[82,-88]],[[74375,17652,0],[-9,-10]],[[74366,17642,0],[-75,-77]],[[74291,17565,0],[-75,-73],[-77,-82],[-12,-13]],[[74127,17397,0],[-75,4]],[[74052,17401,0],[-42,-12]],[[74010,17389,0],[-50,-38],[-15,-11],[-43,-32],[-82,-73],[-71,-65],[-48,-38],[-38,-32],[-114,-90]],[[73549,17010,0],[-168,-179]],[[73381,16831,0],[-28,12],[-24,10],[-100,41],[12,24],[-125,56],[-73,33]],[[73043,17007,0],[20,35],[-11,5],[8,16]],[[73060,17063,0],[-72,29],[-25,11],[-48,25],[-90,31],[-42,15],[33,73],[21,50]],[[72837,17297,0],[83,188]],[[72920,17485,0],[27,60],[44,100]],[[72991,17645,0],[41,90]],[[73032,17735,0],[40,89],[9,21]],[[73081,17845,0],[20,46]],[[73101,17891,0],[80,180],[37,84],[43,96]],[[73261,18251,0],[52,121],[19,42],[75,169]],[[73407,18583,0],[58,-21]],[[73465,18562,0],[32,-14],[84,-37],[7,-2],[12,-4],[168,-37],[37,91],[6,16],[38,57],[12,19],[24,35],[22,46],[28,56],[26,50],[68,92],[94,199]],[[65993,31333,0],[47,-42]],[[66518,31118,0],[12,6],[2,1]],[[66508,29215,0],[-10,12],[-16,24],[-81,108],[14,22],[-195,41],[-49,11],[-27,4],[-106,22],[-15,11],[-20,3],[-24,3],[-61,8],[-18,-3],[-22,-2],[-44,-6],[-6,-2],[-35,-5],[-84,-11],[-23,4],[-29,4],[-21,-4],[-38,-8],[-166,10],[-133,10],[-22,6],[-158,43],[-62,17],[-93,10],[-133,40],[-39,-14],[-34,-14],[-149,-12],[-8,38],[-27,45],[19,64],[-46,56]],[[64547,29750,0],[49,26],[47,28],[13,9],[37,24],[37,27],[32,27],[24,21],[44,43],[33,36],[33,40],[11,14],[14,21],[21,29],[39,66],[20,37],[20,41],[9,24],[6,17],[28,82]],[[65064,30362,0],[1,4],[59,174]],[[65124,30540,0],[15,44],[0,2]],[[65139,30586,0],[96,281]],[[65235,30867,0],[10,33]],[[65245,30900,0],[15,36]],[[65260,30936,0],[10,22],[18,37],[13,26],[-107,63]],[[65194,31084,0],[7,4],[93,114],[37,58],[58,71],[37,38],[35,43],[216,197],[70,48]],[[64848,26322,0],[-9,-47],[-3,-17]],[[64836,26258,0],[-7,-24],[-12,-38]],[[64785,26102,0],[-27,-65],[-19,-42],[-19,-40],[-27,-55]],[[64693,25900,0],[-10,-18]],[[64683,25882,0],[-98,-14],[-51,-10],[-1,0]],[[64533,25858,0],[-70,-11],[-64,-17]],[[64399,25830,0],[-63,-18],[-53,-15],[-79,-27],[-25,-8]],[[64179,25762,0],[-17,-5],[-49,-18]],[[64113,25739,0],[-38,-15],[-22,-9]],[[64053,25715,0],[-15,-7],[-41,-18]],[[63997,25690,0],[-20,-9],[-14,-6]],[[63963,25675,0],[-159,-75],[-31,-14]],[[63773,25586,0],[-25,-19],[-72,-53],[-150,128]],[[63526,25642,0],[-53,54],[-4,5]],[[63469,25701,0],[-77,182]],[[63392,25883,0],[-4,11],[-5,10]],[[63383,25904,0],[12,6],[2,0]],[[63397,25910,0],[16,7],[13,4]],[[63426,25921,0],[25,9],[86,32],[-2,6]],[[63535,25968,0],[-9,20],[-11,25]],[[63515,26013,0],[-1,4],[-1,1]],[[63513,26018,0],[0,2],[-1,1]],[[63512,26021,0],[-63,130],[-35,107],[-7,23]],[[63407,26281,0],[-51,-19],[-113,-42]],[[63243,26220,0],[-16,-6]],[[63227,26214,0],[-73,-27],[-50,-19],[-77,-29],[-46,-18]],[[62981,26121,0],[-77,-28],[-49,-18]],[[62855,26075,0],[-54,-20],[-67,-26]],[[62734,26029,0],[-96,196],[0,1]],[[62638,26226,0],[63,69],[2,3],[40,52]],[[62743,26350,0],[34,52],[43,85],[19,52],[16,61]],[[62855,26600,0],[14,79],[4,38]],[[62873,26717,0],[1,65]],[[62874,26782,0],[-4,57],[-1,12]],[[62869,26851,0],[-6,33],[-6,28]],[[62857,26912,0],[-57,253]],[[62800,27165,0],[-12,64],[-17,110]],[[62771,27339,0],[-6,43],[1,8]],[[62766,27390,0],[-5,42],[-6,94]],[[62755,27526,0],[-1,16],[-2,15],[-1,121],[3,71]],[[62754,27749,0],[8,117],[1,12],[14,112],[10,62]],[[62787,28052,0],[20,90],[27,99]],[[62834,28241,0],[17,52]],[[62851,28293,0],[23,76]],[[62874,28369,0],[1,2],[2,5],[24,63]],[[62901,28439,0],[1,4],[1,0],[9,-4],[9,-5]],[[62921,28434,0],[45,-12],[6,-2],[1,0]],[[62973,28420,0],[112,-32]],[[63085,28388,0],[8,-2],[35,-13],[3,-1],[13,-5],[3,-1]],[[63147,28366,0],[1,0],[23,-9],[27,-10],[27,-7],[3,-1],[34,-9],[1,0]],[[63263,28330,0],[23,-4],[0,-1]],[[63286,28325,0],[12,-2]],[[63298,28323,0],[13,-4],[12,-2]],[[63323,28317,0],[27,-4],[23,-1]],[[63373,28312,0],[68,-1],[16,-3],[27,-4]],[[63484,28304,0],[40,-9],[1,0],[38,-9]],[[63563,28286,0],[39,-9],[138,-29],[6,-1],[20,-3],[3,0],[26,-3]],[[63795,28241,0],[1,0],[5,-1]],[[63801,28240,0],[-9,-47],[-1,-2]],[[63791,28191,0],[-6,-53]],[[63785,28138,0],[-1,-3],[0,-6],[-2,-41]],[[63782,28088,0],[0,-19],[1,-28],[0,-6],[0,-4]],[[63783,28031,0],[3,-38],[6,-50],[1,-16]],[[63793,27927,0],[3,-19],[3,-14]],[[63799,27894,0],[12,-46]],[[63811,27848,0],[1,-5],[3,-15]],[[63815,27828,0],[8,-28],[17,-44]],[[63840,27756,0],[9,-23],[13,-24],[12,-25],[12,-24]],[[63886,27660,0],[5,-11],[6,-11],[22,-35],[14,-22],[35,-55]],[[63968,27526,0],[27,-33],[23,-26]],[[64018,27467,0],[50,-53],[118,-122]],[[64186,27292,0],[31,-21],[14,-10]],[[64231,27261,0],[19,-14],[22,-18],[26,-24],[47,-42],[33,-28]],[[64378,27135,0],[23,-20],[1,-1]],[[64503,27023,0],[54,-48],[26,-22],[7,-8],[17,-16],[18,-19],[2,-1],[1,-1]],[[64628,26908,0],[0,-1],[0,-1]],[[64628,26906,0],[1,0],[1,-1]],[[64630,26904,0],[1,0],[1,-1],[0,-1]],[[64633,26901,0],[1,-1],[1,-1],[0,-1]],[[64635,26898,0],[1,0],[0,-1]],[[64636,26897,0],[1,0],[0,-1]],[[64637,26895,0],[1,0],[0,-1],[1,0],[1,-1]],[[64640,26893,0],[0,-1],[1,-1],[1,-1]],[[64642,26889,0],[1,0],[0,-1],[1,-1]],[[64645,26886,0],[0,-1],[1,0]],[[64646,26885,0],[0,-1],[1,-1]],[[64647,26883,0],[1,-1],[1,0],[0,-1]],[[64649,26880,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0]],[[64653,26875,0],[1,-1],[1,-2]],[[64655,26872,0],[1,0],[0,-1],[1,0],[0,-1]],[[64658,26869,0],[0,-1],[1,0],[0,-1]],[[64659,26866,0],[1,0],[0,-1],[1,0]],[[64661,26864,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1]],[[64665,26860,0],[0,-1],[1,-1],[0,-1]],[[64667,26856,0],[0,-1],[1,0]],[[64670,26851,0],[1,-1],[1,-1]],[[64672,26848,0],[1,0],[0,-1]],[[64673,26847,0],[1,-1],[0,-1]],[[64674,26845,0],[1,0],[0,-1]],[[64675,26844,0],[0,-1],[1,0]],[[64676,26843,0],[1,0],[0,-1],[0,-1]],[[64677,26841,0],[1,0],[0,-1]],[[64679,26839,0],[0,-1],[1,-1]],[[64681,26836,0],[0,-1],[1,-1]],[[64682,26833,0],[1,0],[0,-1]],[[64683,26832,0],[1,-1],[30,-49],[1,-2],[10,-17]],[[64725,26763,0],[52,-94],[28,-51]],[[64805,26618,0],[18,-41],[5,-11]],[[64828,26566,0],[3,-7],[7,-20]],[[64838,26539,0],[6,-22],[4,-17]],[[66637,26239,0],[18,-7],[14,-6]],[[66749,26193,0],[38,-8]],[[66892,26017,0],[-93,-42]],[[66799,25975,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,0],[-1,-1]],[[66667,25906,0],[-2,-2]],[[66665,25904,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1]],[[66523,25811,0],[-3,-3]],[[66520,25808,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-2],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,-1]],[[66393,25705,0],[-2,-2]],[[66391,25703,0],[-48,-42]],[[66343,25661,0],[-25,-25],[-15,-15],[-29,-29]],[[66274,25592,0],[-54,-52],[-62,-61]],[[66158,25479,0],[-22,-22],[-20,-20]],[[66116,25437,0],[-13,-13],[-66,-65],[-65,-64],[-11,-13],[-77,-73],[-47,-46],[-106,-102],[-70,-68]],[[65661,24993,0],[-163,-154],[-71,-77],[-30,-33],[-31,-34],[-84,-92],[-48,-50],[-56,-60],[-87,-87],[-45,-46],[-20,-16],[-22,-12],[-18,-5],[-19,-5],[-23,-2],[-22,3],[-28,8],[-23,11],[-16,8],[-49,26],[-14,8],[-50,27],[-21,11],[-60,34],[-45,25],[-14,7],[-19,12],[-24,15],[-38,23],[-36,26],[-28,21],[-46,36],[-22,-14],[-18,-13],[-24,-15],[-111,-81],[-16,-10],[-5,-6],[-84,-65],[-47,-36],[-89,-68],[-24,-19],[-49,-36],[-25,-19]],[[63897,24239,0],[-34,76],[-9,17]],[[63854,24332,0],[-72,155],[-6,14]],[[63776,24501,0],[-26,65]],[[63750,24566,0],[-20,59],[-4,14]],[[63726,24639,0],[-12,43],[-16,78]],[[63698,24760,0],[-4,17]],[[63694,24777,0],[-13,83],[-5,44]],[[63676,24904,0],[-2,29],[-1,52],[-1,57],[3,59],[5,81],[-37,7],[-96,15],[-160,27],[-161,26]],[[63226,25257,0],[6,20],[6,18]],[[63238,25295,0],[22,64],[30,64]],[[63290,25423,0],[37,65],[39,61]],[[63366,25549,0],[42,55],[33,40]],[[63441,25644,0],[34,35]],[[63475,25679,0],[-6,21],[57,-58]],[[63526,25642,0],[151,-128],[96,72]],[[63773,25586,0],[190,89]],[[63963,25675,0],[34,15]],[[63997,25690,0],[56,25]],[[64053,25715,0],[60,24]],[[64113,25739,0],[49,17],[17,6]],[[64179,25762,0],[104,34],[116,34]],[[64399,25830,0],[64,16],[70,12]],[[64533,25858,0],[52,9],[98,15]],[[64693,25900,0],[28,54]],[[64822,25900,0],[1,0],[1,0],[1,0]],[[64827,25901,0],[1,0],[1,0]],[[64830,25902,0],[1,0],[1,0]],[[64833,25902,0],[1,0],[1,0],[1,0]],[[64837,25903,0],[1,0],[2,0],[1,0]],[[64842,25903,0],[1,0],[1,0]],[[64845,25904,0],[1,0],[1,0],[1,0]],[[64849,25905,0],[1,0],[2,0],[1,0]],[[64854,25905,0],[1,0],[1,0],[1,0]],[[64858,25906,0],[1,0],[1,0],[1,0]],[[64862,25907,0],[1,0],[2,0],[1,0]],[[64867,25907,0],[1,0],[1,0],[1,0],[1,0]],[[64872,25908,0],[1,0],[1,0],[1,0]],[[64877,25909,0],[1,0],[1,0],[1,0],[1,0]],[[64882,25909,0],[1,0],[1,0],[1,0],[1,0]],[[64887,25910,0],[1,0],[2,0],[1,0],[1,0]],[[64893,25911,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[64899,25911,0],[1,0],[1,0],[2,0],[1,0]],[[64905,25912,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[64912,25913,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[64919,25913,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[64928,25914,0],[1,0],[2,0]],[[64931,25914,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[64970,25913,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[64979,25913,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[64987,25912,0],[1,0],[1,0],[1,0],[1,0]],[[64992,25911,0],[1,0],[1,0],[1,0],[1,0]],[[64997,25911,0],[2,0],[1,0],[1,0],[1,0]],[[65003,25910,0],[1,0],[1,0],[1,0]],[[65007,25909,0],[1,0],[1,0],[2,0]],[[65012,25909,0],[1,0],[1,0]],[[65015,25908,0],[1,0],[1,0],[1,0]],[[65019,25907,0],[1,0],[1,0]],[[65022,25907,0],[1,0],[1,0]],[[65026,25906,0],[1,0],[1,0]],[[65029,25905,0],[1,0],[1,0]],[[65034,25904,0],[1,0],[1,0]],[[65037,25903,0],[1,0],[2,0]],[[65045,25902,0],[1,0],[1,0]],[[65053,25899,0],[1,0],[1,0]],[[65073,25894,0],[1,-1],[1,-1]],[[65076,25892,0],[2,0],[1,-1]],[[65079,25891,0],[-3,-12],[0,-2]],[[65076,25877,0],[0,-1],[0,-2],[0,-1],[-1,-1]],[[65075,25872,0],[0,-1],[0,-2]],[[65075,25869,0],[0,-1],[0,-1],[0,-2],[0,-1]],[[65075,25864,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[65076,25859,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[65077,25852,0],[1,-1],[0,-1]],[[65080,25844,0],[1,-1],[0,-1]],[[65083,25837,0],[1,0],[1,-1]],[[65085,25835,0],[1,-1],[0,-1]],[[65087,25832,0],[0,-1],[1,0],[1,-1]],[[65089,25829,0],[2,-1],[0,-1],[1,0],[1,-1]],[[65094,25825,0],[1,-2],[1,0],[1,-1]],[[65097,25822,0],[1,-1],[1,0],[1,-1]],[[65100,25820,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1]],[[65106,25816,0],[1,0],[0,-1],[1,0]],[[65110,25814,0],[1,-1],[2,-1]],[[65501,25812,0],[2,1],[2,1]],[[65506,25815,0],[1,0],[1,1],[1,0],[1,1]],[[65511,25817,0],[1,1],[1,0],[1,1],[1,1]],[[65515,25820,0],[2,1],[1,0],[1,1],[1,0],[1,1]],[[65521,25823,0],[1,0],[1,2],[1,0],[1,1],[1,0]],[[65527,25826,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1]],[[65534,25831,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[2,1]],[[65543,25836,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0]],[[65557,25846,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[2,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1]],[[65882,26010,0],[1,0],[1,0],[1,0]],[[65886,26011,0],[1,0],[1,0],[1,0],[1,0]],[[65891,26012,0],[2,0],[1,0],[1,0]],[[65896,26012,0],[1,0],[1,0]],[[65899,26013,0],[1,0],[1,0]],[[65912,26016,0],[1,1],[1,0]],[[65915,26017,0],[1,1],[1,1]],[[65918,26019,0],[1,1],[1,0]],[[65921,26020,0],[1,1],[1,0],[1,1]],[[65925,26022,0],[1,1],[0,1],[1,0],[1,1],[1,0],[2,1]],[[65931,26026,0],[1,1],[1,0],[1,1],[1,1],[1,1]],[[66100,26248,0],[1,0],[0,1]],[[66102,26250,0],[1,0],[0,1]],[[66105,26255,0],[1,1],[1,0]],[[66109,26260,0],[1,1],[1,0]],[[66113,26265,0],[0,1],[1,0]],[[66115,26268,0],[0,1],[1,0]],[[66117,26273,0],[1,0],[1,1]],[[66120,26275,0],[0,1],[1,0]],[[66124,26282,0],[0,1],[1,1]],[[66128,26290,0],[1,0],[0,1]],[[66133,26296,0],[0,1],[1,1]],[[66135,26301,0],[1,1],[1,0]],[[66138,26306,0],[1,0],[0,1]],[[66142,26312,0],[0,1],[1,1]],[[66148,26323,0],[0,1],[1,1]],[[66151,26330,0],[1,0],[0,1]],[[66159,26345,0],[1,0],[0,1]],[[66173,26375,0],[1,1],[0,2]],[[66179,26388,0],[0,1],[0,1],[1,1]],[[66188,26411,0],[0,1],[1,1]],[[66196,26433,0],[0,1],[0,1],[1,1],[0,1]],[[66198,26440,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1]],[[66200,26447,0],[0,1],[0,1],[1,0]],[[66201,26449,0],[0,2],[0,1]],[[66202,26456,0],[1,1],[0,1],[0,1]],[[66203,26459,0],[0,1],[1,2]],[[66204,26462,0],[0,1],[0,1],[1,1]],[[66205,26468,0],[1,1],[0,1],[1,1],[0,2]],[[66208,26475,0],[0,1],[0,1],[0,1],[1,1]],[[66209,26482,0],[0,1],[1,1],[0,1],[0,1]],[[66210,26486,0],[0,1],[1,2],[0,1],[0,1]],[[66212,26493,0],[0,1],[0,2],[0,2]],[[66212,26498,0],[1,2],[0,1],[0,2]],[[66213,26504,0],[1,1],[0,1],[0,2]],[[66214,26508,0],[0,1],[0,1],[1,0],[0,2],[0,1]],[[66215,26513,0],[0,1],[0,1]],[[66215,26515,0],[0,1],[1,1],[0,1]],[[66216,26518,0],[0,1],[0,1]],[[66216,26520,0],[0,1],[0,2]],[[66217,26525,0],[0,1],[0,2]],[[66217,26530,0],[1,1],[0,2]],[[66218,26534,0],[0,1],[0,1],[0,2]],[[66218,26540,0],[1,0],[0,2]],[[66219,26542,0],[0,2],[0,1]],[[66220,26546,0],[0,1],[0,2],[0,1],[0,1]],[[80578,33615,0],[-11,-30],[-2,-5]],[[80565,33580,0],[-7,-16],[-4,-13]],[[80554,33551,0],[-5,-13],[-42,-81],[-59,-66],[2,-35],[-1,-2],[-5,-12],[3,-30],[9,-36],[26,-75],[1,-24],[7,-14],[0,-1],[-4,-12],[-13,-43],[-23,-32],[-23,-39],[-5,-49]],[[80422,32987,0],[-3,1]],[[80419,32988,0],[-24,7],[-9,3],[-41,26],[-24,4],[-15,7],[-12,5],[-20,24],[-9,5],[-9,10],[-5,26],[-12,22],[-38,72],[-11,7],[-28,17],[-48,66],[-6,16],[-6,18],[-5,11],[-15,31],[-29,40],[-18,17],[-19,38],[-6,8],[-34,39],[-19,18],[-13,30],[-17,23],[-18,33],[-8,21],[-4,10],[-5,20],[-4,20],[2,10],[-11,54],[0,14],[-14,12],[-15,8],[-45,28],[-36,24],[-12,37],[0,20],[3,98],[-8,22],[-27,78],[-15,-2],[-98,-34],[-13,34],[24,46],[-1,46],[-41,39],[-26,29],[-13,15],[-95,56],[4,14]],[[79451,34330,0],[46,45],[-18,19]],[[79479,34394,0],[7,56],[4,141],[26,53],[27,1]],[[79543,34645,0],[8,59],[370,152]],[[79921,34856,0],[24,32]],[[79945,34888,0],[24,40],[44,69]],[[80013,34997,0],[34,61]],[[80047,35058,0],[44,71],[251,36]],[[80342,35165,0],[35,6],[12,2],[4,-27]],[[80393,35146,0],[37,7],[-4,24]],[[80426,35177,0],[267,41]],[[80693,35218,0],[243,38],[276,42]],[[81212,35298,0],[8,1],[11,-82],[-3,0],[-37,-1],[-18,-14],[-3,-2],[-27,-22],[-5,-28],[-6,-91],[-3,-14],[0,-41],[0,-1],[-11,-38],[0,-20],[-11,-33],[-43,-107],[-1,-3],[-25,-45],[-23,-48],[-4,-9],[-12,-33],[-16,-40],[-1,-2],[-2,-5],[-43,-82],[-18,-38],[-30,-47],[-54,-83],[-30,-68],[-9,-27],[-46,-105],[-7,-14],[-31,-60],[-8,-15],[-21,-37],[-19,-52],[-26,-46],[-16,-39],[-6,-60],[0,-5],[2,-21],[-5,-29],[-15,-58],[-2,-37],[0,-5],[-2,-4],[-17,-52],[3,-16],[-2,-5]],[[80945,32334,0],[-4,1],[-76,33]],[[80865,32368,0],[-45,28],[-24,14]],[[80796,32410,0],[-95,65],[-54,39],[-23,30]],[[80624,32544,0],[-3,9],[-33,90],[-41,111],[-7,21]],[[80540,32775,0],[-2,5],[-10,27],[-2,4],[-18,38],[-24,47],[-21,29],[-23,31],[-21,32]],[[80419,32988,0],[-2,15],[3,11],[6,27],[35,55],[10,17],[8,25],[5,12],[2,7],[0,5],[-6,16],[-2,13],[0,8],[-7,20],[-12,42],[-7,20],[-7,31],[-4,30],[5,13],[1,29],[1,10],[25,28],[24,25],[9,13],[23,41],[12,26],[10,23],[3,1]],[[80554,33551,0],[1,1],[10,28]],[[80565,33580,0],[13,35]],[[80578,33615,0],[-3,25],[17,48],[3,9],[-1,6],[2,30],[15,63],[5,29],[-2,5],[0,14],[0,13],[1,13],[2,19],[3,17],[1,10],[4,9],[8,18],[9,17],[11,18],[9,19],[7,18],[6,18],[6,18],[4,10],[15,25],[6,6],[6,8],[8,15],[6,15],[7,14],[10,16],[4,12],[20,49],[18,34],[10,24],[9,30],[23,51],[45,74],[14,21],[22,34],[13,16],[20,45],[21,38],[10,27],[7,6],[1,8],[-3,2],[2,9],[7,13],[9,22],[14,35],[6,17],[11,20],[11,23],[20,38],[9,16],[10,26],[17,39],[10,23],[6,22],[5,16],[2,24],[10,22],[0,8],[0,16],[0,30],[4,15],[2,88],[10,29],[4,5],[21,14],[3,1],[19,14],[4,4],[29,1],[-7,54],[-3,23]],[[81212,35298,0],[-1,2],[5,1],[20,7],[-36,230],[-12,78],[49,7],[-5,42],[42,10],[-16,94],[742,120],[170,29]],[[82641,36490,0],[58,58],[4,1]],[[82703,36549,0],[17,5],[1,-24],[-3,-1],[-51,-50]],[[82667,36479,0],[1,-8],[18,-103],[1,-9],[-14,-60],[-19,-78]],[[82649,36193,0],[4,-112],[6,-13],[8,-15],[28,-60],[31,-63],[10,-38],[6,-19]],[[82738,35815,0],[-7,-31],[-8,-28],[-5,-14],[-14,-36]],[[82704,35706,0],[11,-86],[5,-44]],[[82720,35576,0],[-2,-9],[-69,-75],[-60,-66]],[[82589,35426,0],[-42,-73],[-38,-68]],[[82509,35285,0],[-4,-6],[-37,-52],[-11,-32]],[[82457,35195,0],[-15,-36],[-26,-64]],[[82416,35095,0],[-109,-48],[-29,-20],[-54,-59]],[[82072,34775,0],[-35,-72],[-55,-64]],[[81943,34589,0],[-7,-20],[-15,-43],[6,-64],[-24,-86]],[[81874,34305,0],[-11,-60]],[[81863,34245,0],[-8,-42]],[[81841,34157,0],[-33,-30],[-8,-83]],[[81800,34044,0],[-14,-55],[-13,-51],[-12,-92],[-10,-100]],[[81751,33746,0],[-8,-75],[-6,-28]],[[81709,33615,0],[-17,-22],[-13,-34]],[[81696,33521,0],[5,-4],[-18,-85]],[[81683,33432,0],[-8,-1],[-11,-26],[-10,-42]],[[81636,33357,0],[-27,-34],[-56,-80]],[[81553,33243,0],[-37,-68]],[[81516,33175,0],[-34,-63]],[[81482,33112,0],[-13,-42],[-5,-46],[0,-3]],[[81464,33021,0],[-11,-25],[-7,-16],[-125,-121]],[[81297,32834,0],[-8,-7],[-39,-41],[-30,-32],[-14,-15]],[[81206,32739,0],[-22,-29],[-11,-21]],[[81124,32645,0],[-14,-16],[-4,-3]],[[81106,32626,0],[-7,-23],[-20,-2]],[[81079,32601,0],[-14,-15],[-9,-10]],[[81056,32576,0],[-12,-12],[-26,-27],[-27,-28],[-10,-10],[-15,-32],[-16,-38]],[[80955,32381,0],[-6,-19],[-5,-13]],[[80422,32987,0],[29,-44],[38,-53],[39,-78],[4,-7],[8,-30]],[[80540,32775,0],[7,-28],[41,-106]],[[80588,32641,0],[-23,-2],[-12,-2],[-2,-12],[7,-29],[1,-29],[-14,-34],[-22,-27],[1,-43],[-3,-26],[-13,-13],[-13,-24],[-9,-26],[-37,3],[-53,7],[-80,16],[-10,3],[-42,3],[6,15],[-19,19],[-25,2],[-8,8],[-7,8],[-12,17],[-21,28],[-4,22],[-26,13],[-45,-4],[-81,-64],[-9,-5],[-17,-2],[-14,1],[-13,6],[-47,44],[3,25],[-14,5],[-55,3],[-26,-4],[-13,2],[-14,1],[-76,19],[-152,40],[-71,19],[-149,55],[-68,3],[-130,8],[-211,-1],[-10,0],[-10,7],[-10,9],[-19,19],[-6,-9],[-408,230]],[[78572,34071,0],[67,13],[-4,16]],[[78635,34100,0],[128,31]],[[78763,34131,0],[-5,20],[189,46],[72,10]],[[79019,34207,0],[-11,46]],[[79008,34253,0],[422,95],[21,-18]],[[80588,32641,0],[36,-97]],[[80796,32410,0],[69,-42]],[[80865,32368,0],[80,-34]],[[80945,32334,0],[-5,-23],[-3,-15],[-7,-70],[-1,-10],[1,-10],[0,-5]],[[80930,32201,0],[-5,-4],[-4,-4]],[[80921,32193,0],[0,-10],[-1,-5],[0,-8],[0,-3]],[[80898,32116,0],[-5,-13],[-19,-41],[-7,-10],[-10,-15]],[[80813,31998,0],[-80,-73],[-4,-3]],[[80729,31922,0],[-40,-7],[-11,-1],[-36,-18],[-15,-7]],[[80627,31889,0],[-59,-13],[-2,-2],[-29,-30]],[[80493,31800,0],[-2,0],[-31,-2]],[[80432,31786,0],[-8,-9],[-3,-6]],[[80421,31771,0],[-18,-11],[-4,-3]],[[80399,31757,0],[-9,-10],[-24,-31]],[[80356,31665,0],[0,-16],[0,-7]],[[80356,31642,0],[-4,-11],[-3,-4],[-5,-5],[-12,-12],[-5,-4],[-24,-7],[-22,-4],[-24,5],[-18,4],[-54,3],[-11,0]],[[80174,31607,0],[-18,1],[-27,1],[-54,1],[-36,0],[-23,0],[-22,0],[-57,7]],[[79937,31617,0],[-14,2],[-47,6],[-13,1]],[[79863,31626,0],[-50,-8],[-32,11]],[[79781,31629,0],[-38,24],[-18,11],[-23,15],[-8,5],[-35,7],[-61,-2],[-99,-2],[-4,-18],[14,-24],[10,-11],[6,-8],[14,-17],[15,-3]],[[79554,31606,0],[17,-1],[47,-1],[40,0]],[[79687,31575,0],[38,-26],[53,-35]],[[79778,31514,0],[33,-5],[23,-14],[22,-17],[-75,5],[-17,3]],[[79764,31486,0],[-18,1],[-24,2],[-13,1]],[[79710,31503,0],[-82,0],[-10,-3],[-56,-16],[-13,-2],[-52,-6],[-77,-6]],[[79359,31447,0],[-24,-4],[-27,-18]],[[79250,31428,0],[-16,-8],[-16,-10],[-11,-1],[-30,-4],[-22,-11],[-18,-4],[-40,-9],[-97,-6],[-112,-45],[-11,-1],[-49,-8],[-145,-20],[10,-106],[2,-20],[-33,-52],[-32,-9],[-117,7],[-43,23],[-62,8],[-40,-38],[-17,-26],[-37,-22],[-23,-22],[-17,-2],[-46,12],[-23,0],[-15,4],[-29,-3],[-97,4],[-63,-2],[-92,-21],[1,11],[-35,0],[-67,17],[-73,31],[-49,12],[-63,32],[-12,6],[-50,51]],[[77561,31196,0],[-2,6],[-8,23],[-6,15],[-26,74],[-13,34]],[[77506,31348,0],[-2,6],[-2,8],[-25,22]],[[77477,31384,0],[-13,14],[-2,2]],[[77462,31400,0],[-1,2],[-14,18]],[[77447,31420,0],[-10,16],[-5,8],[-16,30]],[[77416,31474,0],[-7,14],[-17,28],[-7,26]],[[77385,31542,0],[-7,28],[-4,21],[0,4],[0,11],[6,22],[5,21]],[[77403,31690,0],[1,1]],[[77404,31691,0],[3,7]],[[77407,31698,0],[5,8]],[[77412,31706,0],[7,7],[7,3]],[[77426,31716,0],[2,2],[6,2],[2,0]],[[77436,31720,0],[2,1]],[[77438,31721,0],[4,0]],[[77443,31721,0],[5,1]],[[77448,31722,0],[8,0],[1,-1]],[[77457,31721,0],[19,-4]],[[77476,31717,0],[31,42],[15,18]],[[77522,31777,0],[-95,44]],[[71103,17893,0],[-12,-27]],[[71091,17866,0],[-61,-128]],[[71030,17738,0],[-16,-25],[66,-11],[-5,-10],[-29,-60],[-65,-133],[-102,46],[-75,-99],[-89,-112],[-23,-29],[-65,-100],[-29,-40],[-11,-17],[-76,-114],[-45,-66],[-11,-16],[-24,-35],[-27,-40],[-23,-34],[-55,-81],[-75,-110],[-9,12],[-32,46],[-7,-9],[-113,-147],[-27,-39],[-18,-27],[-12,-21],[-56,-96],[-63,-107]],[[69914,16264,0],[-10,6],[-24,12],[-27,13],[-43,23],[-13,6],[-95,47],[-115,59],[-20,8],[-36,12],[41,116],[72,211],[-78,17],[-127,18],[-100,9],[-76,10],[-16,-8],[-110,22],[-97,5],[-22,5],[-85,13],[-83,17],[-39,-98]],[[68811,16787,0],[-55,15],[-108,176],[-13,18],[-114,186],[-42,68],[-14,62],[-24,97],[-11,47],[-20,82],[-6,25],[92,112],[79,79],[59,59],[25,51],[7,31],[6,26],[1,35],[2,9],[11,31],[-124,171],[-24,35],[-135,189],[-9,13]],[[68394,18404,0],[-12,26],[-17,35]],[[68365,18465,0],[-21,44],[-105,224]],[[68239,18733,0],[-158,112],[-42,30],[-50,38]],[[67989,18913,0],[47,13],[-19,52],[-120,65],[-108,75],[-98,96]],[[67691,19214,0],[1057,-368],[392,-179],[82,-36],[277,-126],[67,-30],[375,-154],[436,-178],[36,-13],[20,56]],[[71196,19973,0],[1,-1],[0,-1]],[[71197,19971,0],[0,-2],[0,-1],[0,-1],[0,-2],[-43,-80],[-13,-23],[-1,-3]],[[70853,19429,0],[-25,-50],[-86,-168]],[[70667,19029,0],[-6,-20],[-18,-50],[-10,-30]],[[70554,18689,0],[-49,-155],[-4,-14]],[[70390,18205,0],[17,-8],[26,-11]],[[67691,19214,0],[-13,12]],[[67678,19226,0],[42,93],[50,92],[306,-180],[38,53],[38,52],[62,85],[11,28],[-2,20],[41,42],[65,57],[50,38],[7,6],[31,23],[53,38],[15,11],[91,65],[214,130],[28,32],[25,21],[34,14],[63,20],[43,7],[39,1],[49,-1],[161,-22],[59,-7],[51,-5],[86,-7]],[[69428,19932,0],[82,-6]],[[69510,19926,0],[362,-28],[69,0],[58,3],[91,18]],[[70090,19919,0],[101,41],[36,23],[54,35]],[[70281,20018,0],[39,36],[41,37],[35,49]],[[70396,20140,0],[26,38]],[[70422,20178,0],[44,77],[14,24]],[[70480,20279,0],[327,-116],[186,-68],[173,-61],[-16,-33],[1,0],[1,0],[1,0],[1,0],[1,0],[1,2],[1,0],[2,0],[1,0],[1,0],[1,0],[3,0],[1,-2],[1,0],[1,0],[1,0],[1,0],[1,-1],[3,0],[0,-1],[2,0],[1,0],[0,-1],[2,-1],[3,-2],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1]],[[68968,22391,0],[13,-3],[35,-6]],[[69016,22382,0],[42,-9],[66,-10]],[[69124,22363,0],[35,-7],[90,-18],[30,-5]],[[69279,22333,0],[77,-16]],[[69356,22317,0],[91,-16],[10,-2]],[[69457,22299,0],[99,-19]],[[69556,22280,0],[22,-4],[77,-15]],[[69655,22261,0],[104,-18],[25,1],[17,10],[11,19],[-5,-32],[13,8]],[[69820,22249,0],[-5,-26]],[[69815,22223,0],[-5,-48],[-7,-28]],[[69803,22147,0],[-15,-81],[-19,-107]],[[69769,21959,0],[0,-3],[-20,-106]],[[69749,21850,0],[-1,-3],[-21,-107]],[[69727,21740,0],[0,-4],[-14,-219],[-11,-170]],[[69702,21347,0],[-114,-38],[34,-24]],[[69622,21285,0],[13,-21],[3,-28]],[[69638,21236,0],[-7,-46]],[[69631,21190,0],[-1,-12]],[[69630,21178,0],[-57,-54],[-45,-38],[-67,-44],[-84,-34],[-49,-18],[-180,-62],[-24,2],[-17,16],[-79,193],[-35,-9],[-42,-9],[-53,-15],[-27,-7],[-121,-31],[-72,-22],[-17,3],[-35,-2],[-123,9],[-19,8],[-6,19],[-18,1],[-32,7],[-13,-106],[-10,-86],[6,-13],[-49,-16],[-215,-78],[-36,-14],[-68,-26],[-15,-1],[-44,53],[-69,88],[-30,37]],[[67885,20929,0],[-18,-5]],[[67867,20924,0],[-57,-16],[-22,0],[-17,-7],[-35,2],[-31,-10],[-100,149],[-59,56],[-8,8]],[[67538,21106,0],[-16,21],[-33,51],[-24,41],[-28,57]],[[67437,21276,0],[-12,34],[-10,25]],[[67415,21335,0],[-9,32]],[[67406,21367,0],[-11,117],[-1,6]],[[67394,21490,0],[-2,38],[-2,6],[-12,6],[-182,58],[-35,7]],[[67161,21605,0],[7,10],[43,57]],[[67211,21672,0],[19,25],[23,32],[24,40],[30,55],[57,113],[20,37],[18,40],[38,92],[19,46],[8,28],[11,19],[58,197],[45,125],[16,41],[21,41],[23,67]],[[67641,22670,0],[39,-15],[454,-157],[65,-5],[34,-3],[15,-1],[5,-8],[15,-13],[12,-7],[86,-25],[66,-20],[17,-6],[128,-37],[65,-16],[83,-26],[42,-4],[38,-6],[23,-6],[70,-8],[13,1],[11,7],[10,8],[5,13],[11,58],[20,-3]],[[67538,21106,0],[-20,-14],[-287,-159],[-29,-22],[-77,49],[-69,78],[-24,27],[-60,73],[-52,54],[-27,-19],[-55,-37],[-128,-174],[-78,59],[-96,-82],[-13,-18],[-44,-96],[-12,-20],[-7,-11],[-20,-32],[-5,-10]],[[66435,20752,0],[-2,-3],[-10,-17]],[[66423,20732,0],[-6,-6],[-4,-5],[-46,-87],[-9,-8],[-10,-27],[-6,-12],[-31,-54]],[[66311,20533,0],[-5,-8],[-24,-40]],[[66282,20485,0],[-22,-38],[-11,-7],[-39,-62],[-13,-14],[-17,-24],[-27,-34],[-4,-13],[-11,-36],[-30,-59],[-13,-27],[8,-43],[-5,-24],[-15,-61],[-1,-12],[-2,-13],[-3,-40],[1,-11],[1,-12],[-5,-58],[-1,-7]],[[66073,19890,0],[-13,-102],[-13,-6],[-30,-14],[-4,-2],[-96,-20],[-87,-10],[-133,70],[-32,18],[-27,51],[-66,142]],[[65572,20017,0],[-13,9],[-37,-8],[-78,-19],[-8,37],[-4,15],[-8,54],[0,14],[2,31],[6,19]],[[65432,20169,0],[2,55],[0,42]],[[65434,20266,0],[-13,43],[-14,39],[-10,21],[-29,43],[-21,39],[-51,121]],[[65296,20572,0],[31,59],[22,44],[11,19],[-2,6],[-64,202],[-32,93],[-26,84],[-32,93],[-12,32]],[[65192,21204,0],[37,17],[31,12],[39,14],[30,9],[43,10],[78,34],[19,8],[135,69],[84,42],[85,36],[252,191],[38,25],[44,41],[19,17],[21,15],[43,36],[87,81],[91,103],[38,50],[81,99],[34,50],[50,80],[53,129],[63,236],[20,79],[9,36],[81,200],[127,167]],[[66924,23090,0],[53,-14],[24,-5],[75,-32],[15,-5],[44,-14],[62,-18],[90,-39],[158,-43],[188,-40],[21,-48],[22,-53],[-35,-109]],[[67211,21672,0],[-47,-63],[-3,-4]],[[67394,21490,0],[12,-123]],[[67415,21335,0],[22,-59]],[[81358,46426,0],[240,-64]],[[81598,46362,0],[58,-124]],[[81664,46221,0],[8,-63]],[[81672,46158,0],[15,-188]],[[81746,45668,0],[-6,-52]],[[81756,45389,0],[-3,-113]],[[81734,45185,0],[-41,-152]],[[81588,43721,0],[26,-66]],[[81953,43463,0],[-22,-114]],[[81931,43349,0],[-48,-141]],[[81782,43240,0],[-8,-22],[-32,-149]],[[81742,43069,0],[-14,-94]],[[81692,42976,0],[-117,2]],[[81575,42978,0],[-102,14],[-236,36],[-51,6]],[[81186,43034,0],[-22,18],[-49,23],[-16,5],[-120,42],[-62,21],[-88,24],[-81,72],[-64,-8],[-58,21],[-59,7],[-78,-5],[-77,38],[-24,13],[-98,6],[-88,5],[-36,33],[-50,-2],[-30,29],[-102,78],[-37,29]],[[79947,43483,0],[1,31],[0,27]],[[79948,43541,0],[-5,19]],[[79926,43587,0],[-15,17]],[[80024,43866,0],[-8,17],[-14,32]],[[80002,43915,0],[-58,40]],[[79868,43999,0],[-11,98],[-34,81]],[[79823,44178,0],[-102,56],[-173,3]],[[79548,44237,0],[-98,25]],[[79342,44287,0],[0,-43],[0,-5],[-123,5]],[[79110,44257,0],[-82,25],[-144,41],[-17,4],[-31,6],[-24,5],[-30,6],[-88,18],[-24,5],[-31,6],[-23,5],[-15,4],[-10,2],[-16,3]],[[78575,44387,0],[-2,1],[-18,6],[-34,11],[-10,2],[134,121],[49,57],[82,66],[53,21],[52,21],[146,115],[9,7],[-103,97],[54,234],[2,174],[2,128],[93,33],[24,9],[60,13],[115,6],[118,13],[-1,9],[80,16],[124,6]],[[79604,45553,0],[46,-4],[80,-4],[116,-7],[25,0],[52,0],[60,1],[73,7],[45,8],[53,16],[57,26],[40,30],[47,36],[49,48],[35,44],[25,43],[16,25],[22,38],[39,57],[15,15],[3,15],[34,34],[26,42],[30,49],[23,24],[7,17],[60,113],[82,106]],[[81330,46422,0],[28,4]],[[66376,23851,0],[-17,18],[-39,35],[-4,3],[-38,34],[-218,192],[-3,2],[-30,29],[-98,90],[-45,42],[42,42],[110,106],[64,62],[-101,114],[-100,109],[-58,66],[-108,119],[-72,79]],[[66116,25437,0],[42,42]],[[66158,25479,0],[116,113]],[[66274,25592,0],[69,69]],[[66391,25703,0],[1,1],[1,1]],[[66520,25808,0],[2,2],[1,1]],[[66665,25904,0],[2,1],[0,1]],[[66799,25975,0],[40,19],[53,23]],[[68089,26222,0],[21,-54],[10,-25],[10,-26],[-5,-1],[-17,-7],[-10,-9],[-6,-10],[-3,-13],[-1,-11],[4,-85],[0,-26],[0,-62],[-2,-42],[-6,-64],[-10,-67]],[[68074,25720,0],[-16,-68]],[[68058,25652,0],[-10,-61]],[[68048,25591,0],[-21,-39]],[[68027,25552,0],[-103,-190]],[[67924,25362,0],[-3,-7],[-11,-13],[-53,-80],[-36,-53],[-11,-16],[-15,-20],[-17,-27],[-13,-17],[-77,-96]],[[67688,25033,0],[-54,-59]],[[67634,24974,0],[-37,-39],[-56,-52]],[[67541,24883,0],[-40,-34]],[[67501,24849,0],[-62,-50]],[[67439,24799,0],[-43,-33]],[[67396,24766,0],[-52,-38],[-30,-22]],[[67314,24706,0],[-25,-16]],[[67289,24690,0],[-41,-30]],[[67248,24660,0],[-17,-13]],[[67231,24647,0],[-105,-76],[-112,-80],[-78,-57]],[[66936,24434,0],[-36,-25]],[[66900,24409,0],[-13,-9],[-8,-5],[-70,-55],[-69,-57],[-11,-9],[-49,-46],[-47,-46],[-23,-25],[-32,-35],[-35,-42],[-41,-51],[-44,-59],[-42,-59],[-40,-60]],[[79604,45553,0],[-6,61],[-1,37],[-1,193],[-3,228],[3,36],[-5,200],[-1,90],[-1,58],[0,17],[-1,49],[-3,65],[-3,54],[-1,9],[-13,174],[-8,19],[-122,69],[17,22],[13,19],[-163,95],[-110,62]],[[79195,47110,0],[-106,61],[-99,57],[-112,65]],[[78878,47293,0],[-77,45],[-18,9],[-13,31],[1,21]],[[78771,47399,0],[5,11],[56,130]],[[78875,47636,0],[78,169],[2,6],[186,418]],[[79141,48229,0],[106,230]],[[79247,48459,0],[64,137],[63,144]],[[79374,48740,0],[188,-93]],[[79562,48647,0],[139,-66]],[[79751,48559,0],[73,-32]],[[79824,48527,0],[88,-34]],[[79912,48493,0],[64,-10]],[[80071,48456,0],[13,-3],[167,-42]],[[80251,48411,0],[130,-16],[226,-4]],[[80607,48391,0],[59,-2]],[[80693,48388,0],[65,-139],[23,-83]],[[80806,48098,0],[41,-100],[1,-23]],[[80848,47975,0],[71,-136]],[[80919,47839,0],[64,-129]],[[80983,47710,0],[79,-145],[24,-43]],[[65185,34992,0],[-6,-28],[-68,9],[-45,5]],[[65066,34978,0],[-58,44],[-99,77],[-47,28],[-16,3],[-13,1],[-16,-1],[-14,-4],[-13,-6],[-12,-10],[-10,-13],[-7,-14],[-3,-15],[-1,-12],[2,-11],[8,-19],[-18,-11],[-32,-28],[-51,35],[-30,17],[-30,14],[-39,16],[-41,11],[-40,7],[-36,3],[-49,-3],[-42,-5],[-65,-14],[-57,-22],[-46,-25],[-19,-11],[-19,-13],[-27,-23],[-18,-17],[-17,-17],[-14,-16],[-13,-17],[-22,-30],[-98,23],[-50,11],[-12,-15],[-73,24],[-89,-88],[-92,-84]],[[63628,34748,0],[-33,1],[-52,0],[-112,99],[-6,-12],[-19,15]],[[63406,34851,0],[-41,33]],[[63365,34884,0],[-3,3],[38,37],[42,39],[4,10],[-126,65],[-25,13],[-85,45],[-13,7],[3,8],[-7,3],[-97,48]],[[63096,35162,0],[93,154],[20,42]],[[63209,35358,0],[39,79],[29,47],[41,47],[31,33],[27,23],[15,11],[53,40],[43,29],[-1,8],[-9,58],[-12,71],[-17,61],[-8,50],[-15,104],[-13,90]],[[63412,36109,0],[133,84],[55,35],[27,27],[36,39],[53,59],[36,32],[-43,101],[10,8],[8,8],[47,44],[14,12],[-34,34],[22,22]],[[63776,36614,0],[108,-120],[40,-42],[25,-28],[21,-24],[40,-50],[145,-158]],[[64155,36192,0],[81,-94],[12,-14]],[[64248,36084,0],[28,-31]],[[64276,36053,0],[18,-21],[69,-75]],[[64363,35957,0],[49,-64],[32,-42]],[[64444,35851,0],[35,-64],[54,-101]],[[64533,35686,0],[20,-44],[22,-47]],[[64575,35595,0],[13,-18],[45,-59]],[[64633,35518,0],[42,-47],[41,-36],[53,-4],[42,0],[53,5],[51,-13],[11,-3],[11,56],[6,51],[-3,97],[-7,13],[-37,63],[-63,166],[-164,421],[-74,196],[-92,209],[-61,121],[-14,28],[-4,30],[10,42],[20,36],[32,27],[31,9],[25,3],[25,-3],[83,-24],[36,-6],[45,-7],[104,-4],[60,0],[97,11],[81,21],[56,19]],[[65129,36995,0],[50,15],[58,23],[59,29]],[[65296,37062,0],[22,-98],[63,-173],[90,-70],[10,-36],[-29,4],[-55,7],[-133,-29],[-59,-13],[43,-107],[35,-78],[127,-164],[45,-89],[21,-77],[23,-26],[95,-108],[5,-46],[-23,-77],[-46,-109],[-135,88],[-25,61],[-264,67],[-17,-124],[72,-261],[-65,-224],[161,-40],[5,-20],[-50,-200],[-17,-77],[-10,-51]],[[76464,24984,0],[6,-9],[3,-5]],[[76473,24970,0],[7,-10],[61,-87],[16,-24],[46,-63],[4,-5]],[[76607,24781,0],[59,-79],[2,-1],[8,-11],[5,-6],[33,-41]],[[76717,24639,0],[56,6],[92,10]],[[76865,24655,0],[5,1],[91,8],[23,3],[13,1],[22,2]],[[77019,24670,0],[22,6],[7,3],[83,34]],[[77131,24713,0],[9,-76],[44,-101],[19,-46],[18,-36],[158,-100],[107,-73]],[[77486,24281,0],[-92,-407]],[[77394,23874,0],[-2,-4]],[[77392,23870,0],[-9,-16]],[[77383,23854,0],[-3,-5],[-52,-90],[0,-1]],[[77328,23758,0],[-15,-27]],[[77313,23731,0],[-29,-37],[-8,-11]],[[77276,23683,0],[-30,-49]],[[77246,23634,0],[-50,-81],[-85,-237],[-13,-93],[-9,-51],[-5,-87]],[[77084,23085,0],[-7,0]],[[77077,23085,0],[-15,2],[0,9]],[[77062,23096,0],[-3,14],[-1,0]],[[77058,23110,0],[-7,10]],[[77051,23120,0],[-9,9]],[[77042,23129,0],[-8,4],[-16,4]],[[77018,23137,0],[-105,10],[-172,20],[-197,24]],[[76544,23191,0],[-193,20],[-1,0]],[[76350,23211,0],[-99,10]],[[76251,23221,0],[-59,4],[-22,1],[-93,14],[-1,0]],[[76076,23240,0],[-239,26]],[[75837,23266,0],[-196,19]],[[75641,23285,0],[-149,13],[-5,0]],[[75487,23298,0],[-13,-1],[-8,-2],[-11,-4],[-10,-5]],[[75445,23286,0],[-8,-7],[-9,-11]],[[75428,23268,0],[-4,-7]],[[75424,23261,0],[-4,-15],[-8,-78]],[[75412,23168,0],[-1,-10]],[[75411,23158,0],[-7,-92],[-30,4]],[[75374,23070,0],[-79,8]],[[75295,23078,0],[26,305],[3,27]],[[75324,23410,0],[14,89],[39,248]],[[75377,23747,0],[45,291],[5,31],[24,159],[1,5],[26,167]],[[75478,24400,0],[12,76]],[[75490,24476,0],[3,21],[22,99],[29,141],[15,51],[43,128],[33,103]],[[75756,25030,0],[157,17],[1,0]],[[76037,25002,0],[38,-13],[14,1],[13,4]],[[76144,25072,0],[18,2],[14,1]],[[76176,25075,0],[3,0],[5,1],[24,5],[164,32]],[[76389,25121,0],[39,-70],[36,-67]],[[64719,42690,0],[-78,-119],[-3,-3]],[[64638,42568,0],[-12,-21],[13,-4],[19,-14],[11,-25],[3,-21],[-5,-15],[-31,-62],[-34,-64],[-34,-71],[-9,-25],[-2,-6],[-2,-8],[0,-2],[-13,-40],[-7,-27],[-7,-12],[-30,-52],[9,-83],[-5,-51],[-4,-75],[3,-70],[-2,-16],[-4,-24],[1,-3],[21,-50],[19,-71],[8,-75],[16,-75],[35,-85],[30,-103]],[[64625,41318,0],[-78,0],[-106,20],[-228,44],[-174,34],[-61,11],[-82,-116],[-40,-53],[-129,24],[-91,21]],[[63636,41303,0],[-45,11],[-205,47],[-173,41]],[[63213,41402,0],[32,159]],[[63245,41561,0],[4,16],[14,60],[5,22],[7,38],[11,58],[6,44],[25,100]],[[63317,41899,0],[66,298]],[[63383,42197,0],[4,16],[17,77],[51,206],[13,24],[23,17],[30,5],[24,-4],[0,57],[-2,62],[0,3],[5,23],[0,1],[-32,-2],[-65,-1],[-121,-7],[18,7]],[[63957,42707,0],[114,1],[37,0],[44,0]],[[64177,42717,0],[1,28]],[[64168,42854,0],[60,-11],[22,-2],[182,-33]],[[62972,40556,0],[4,16],[22,50],[11,17],[22,48],[11,18],[19,15],[33,7],[63,-2],[0,20],[5,38],[8,47],[22,-1],[164,-21],[201,-25]],[[62972,40516,0],[0,40]],[[62772,40435,0],[102,-2],[153,4],[-25,19],[-19,26],[-11,34]],[[64005,39419,0],[-21,9],[-164,64],[8,16],[0,19],[-2,22],[-8,15],[-20,17],[-293,241],[-147,117],[-25,20],[-54,44],[-87,71],[-190,154],[-116,97],[-111,88],[-3,22]],[[64020,39442,0],[-15,-23]],[[64142,39586,0],[-53,-48],[-69,-96]],[[64155,39641,0],[-9,-13],[-4,-21],[0,-21]],[[64302,39858,0],[-147,-217]],[[64494,40145,0],[-7,-10],[-185,-277]],[[63821,40208,0],[291,-81],[129,-67],[4,-74],[44,-4],[43,8],[72,59],[90,96]],[[63532,40653,0],[-6,-33],[140,-57],[16,-21],[79,-74],[116,-73],[-45,-120],[-11,-67]],[[63540,40693,0],[-8,-40]],[[63557,40783,0],[-17,-90]],[[62917,43078,0],[99,55],[11,6],[52,27],[15,85],[112,-34]],[[62865,43044,0],[18,11],[34,23]],[[62530,42706,0],[41,47],[122,135],[42,63],[6,4],[20,-19],[13,-9],[91,117]],[[62603,42649,0],[-36,28],[-9,7],[-21,17],[-7,5]],[[62611,42659,0],[-8,-10]],[[62722,42782,0],[-111,-123]],[[63186,42703,0],[0,-6],[-153,50],[-96,42],[-69,41],[-41,33],[-17,13],[-38,-41],[-17,-18],[-33,-35]],[[63185,42731,0],[0,-7],[1,-16]],[[61485,44151,0],[66,-31]],[[61551,44120,0],[71,-36],[99,-58],[39,-26],[102,-72],[50,-36],[79,-55],[158,-105],[33,-18],[54,-29],[103,-53],[143,-60],[125,-40],[59,-19],[63,-21],[380,-123]],[[63109,43369,0],[-6,-82]],[[63209,43250,0],[66,-32]],[[63275,43218,0],[-66,24]],[[63209,43242,0],[4,-22]],[[63213,43220,0],[-7,-3]],[[62917,43078,0],[-52,-34]],[[62530,42706,0],[-328,-363],[-255,-286],[-434,-481],[-82,-13],[-67,-9]],[[61364,41554,0],[-603,-91],[-40,12]],[[60721,41475,0],[308,720]],[[61029,42195,0],[26,60]],[[61055,42255,0],[20,49]],[[61075,42304,0],[2,27],[1,24]],[[61078,42355,0],[2,51]],[[61080,42406,0],[1,18],[2,38]],[[61083,42462,0],[0,18]],[[61083,42480,0],[8,171],[3,78]],[[61094,42729,0],[1,25]],[[61095,42754,0],[4,73]],[[61099,42827,0],[1,45]],[[61100,42872,0],[2,28],[2,56],[2,40]],[[61106,42996,0],[4,92]],[[61110,43088,0],[1,32]],[[61111,43120,0],[2,32]],[[61113,43152,0],[3,31]],[[61116,43183,0],[1,11]],[[61117,43194,0],[1,23],[3,29]],[[61121,43246,0],[4,29]],[[61125,43275,0],[6,32]],[[61131,43307,0],[4,25]],[[61135,43332,0],[9,34]],[[61144,43366,0],[4,13]],[[61148,43379,0],[5,18]],[[61153,43397,0],[9,29],[10,28]],[[61172,43454,0],[9,29]],[[61181,43483,0],[13,41],[8,18],[4,131]],[[61206,43673,0],[2,66]],[[61208,43739,0],[2,50],[-4,-3],[-30,-18]],[[61176,43768,0],[-49,-12]],[[61127,43756,0],[-17,-3]],[[61110,43753,0],[-17,-4]],[[61093,43749,0],[-39,-7]],[[61054,43742,0],[-56,-11]],[[60998,43731,0],[-17,-5],[9,44]],[[60990,43770,0],[34,164]],[[61024,43934,0],[9,45]],[[61033,43979,0],[1,7]],[[61034,43986,0],[7,33]],[[61041,44019,0],[5,26]],[[61046,44045,0],[20,86]],[[61066,44131,0],[70,-3]],[[61136,44128,0],[72,51],[36,38],[5,6],[20,21],[5,5]],[[61274,44249,0],[109,-54],[35,-17],[67,-27]],[[73198,19844,0],[62,-22],[1,4]],[[73261,19826,0],[1,0],[42,-13]],[[73517,19740,0],[6,-2],[16,-5]],[[73465,18562,0],[-44,16],[-14,5]],[[73261,18251,0],[-15,11],[15,-11]],[[73101,17891,0],[-9,-22],[-11,-24]],[[73081,17845,0],[-10,-24],[-39,-86]],[[73032,17735,0],[-39,-88],[-2,-2]],[[72920,17485,0],[-61,-137],[-22,-51]],[[73060,17063,0],[-14,-7],[-63,-59],[-15,-13],[-17,-7],[-20,-6],[-32,2],[-19,8],[-21,11],[-13,12],[-46,58]],[[72800,17062,0],[-18,18]],[[72782,17080,0],[-59,61],[-37,36],[-51,47],[-24,22]],[[72611,17246,0],[-46,35],[-32,22]],[[72533,17303,0],[-32,22]],[[72501,17325,0],[-71,43]],[[72430,17368,0],[-127,70],[-46,18],[-70,29]],[[72187,17485,0],[-76,29]],[[72111,17514,0],[-100,15],[-100,23]],[[71911,17552,0],[-68,12]],[[71843,17564,0],[-191,39],[-132,28],[-28,5],[-63,18],[-45,17],[-21,7],[-69,28],[-122,49],[-23,15],[-15,16],[-7,25],[0,21],[4,16],[9,14],[-48,-63],[-40,-45],[-20,-11]],[[71032,17743,0],[59,123]],[[71271,18115,0],[12,-5],[44,89],[7,16],[-15,6]],[[71918,19562,0],[40,85],[44,91],[45,95]],[[72047,19833,0],[50,103]],[[72097,19936,0],[49,104],[52,107],[72,148],[19,-44]],[[72289,20251,0],[-2,-4]],[[72466,20157,0],[3,-1],[46,-15]],[[72583,20119,0],[18,-7],[47,-14]],[[72750,20064,0],[2,0],[19,-7]],[[72798,19978,0],[16,-5],[12,-4]],[[72826,19969,0],[16,-6],[7,-2]],[[72895,19946,0],[54,-19],[4,-1]],[[72953,19926,0],[111,-38],[10,-3]],[[73074,19885,0],[115,-38],[9,-3]],[[71383,22542,0],[-64,-185],[-5,-15]],[[71314,22342,0],[-70,-202],[-4,-13],[-23,-65],[-4,-13],[-21,-59],[-48,-138]],[[71144,21852,0],[-62,-152],[-31,-76]],[[71051,21624,0],[-116,-277]],[[70935,21347,0],[-10,-24],[-4,-8]],[[70921,21315,0],[-16,-38],[-39,-96],[-12,-31]],[[70854,21150,0],[-9,-20]],[[70845,21130,0],[-2,-5],[-8,-20]],[[70835,21105,0],[-36,-84],[-45,-107]],[[70754,20914,0],[-3,-7]],[[70751,20907,0],[-8,-22],[-12,-33],[-39,-98],[-6,-17]],[[70686,20737,0],[-5,-13]],[[70681,20724,0],[-1,0],[-133,-305],[-64,-133],[-3,-6],[-58,-102]],[[70396,20140,0],[-35,-48],[-80,-74]],[[70281,20018,0],[-55,-34],[-35,-23],[-101,-42]],[[69510,19926,0],[-17,2],[-65,5],[20,74]],[[69448,20007,0],[6,33],[73,421]],[[69527,20461,0],[12,65]],[[69539,20526,0],[10,60],[9,56],[51,295],[10,57],[12,196]],[[69638,21236,0],[-3,29],[-13,20]],[[69622,21285,0],[-34,25],[114,37]],[[69702,21347,0],[10,171],[15,222]],[[69727,21740,0],[22,110]],[[69749,21850,0],[20,109]],[[69803,22147,0],[7,29],[5,47]],[[69815,22223,0],[5,25],[0,1]],[[69820,22249,0],[22,124]],[[69842,22373,0],[41,227],[1,-1],[8,-36]],[[69892,22563,0],[55,254]],[[69947,22817,0],[126,-24],[67,-13]],[[70140,22780,0],[243,-47],[278,-53]],[[70661,22680,0],[110,-20],[349,-68]],[[69670,24435,0],[-47,-160]],[[69623,24275,0],[-22,-78],[-114,42],[-61,-94],[-58,-81],[155,-60],[-3,-8],[-5,-15],[-17,-47],[-4,-14],[-13,-37]],[[69481,23883,0],[-18,-49]],[[69463,23834,0],[-13,-41],[-6,-25]],[[69444,23768,0],[57,-27]],[[69501,23741,0],[-34,-206]],[[69467,23535,0],[19,-5],[69,-22]],[[69555,23508,0],[-4,-7],[145,-26],[1,0]],[[69697,23475,0],[42,-4],[61,-6]],[[69800,23465,0],[2,0],[134,-9]],[[69936,23456,0],[91,-18]],[[70027,23438,0],[12,-3],[25,-6]],[[69892,22563,0],[-9,36],[-41,-226]],[[69655,22261,0],[-99,19]],[[69457,22299,0],[-101,18]],[[69279,22333,0],[-139,27],[-16,3]],[[69016,22382,0],[-48,9]],[[66924,23090,0],[124,162]],[[67048,23252,0],[40,36]],[[67088,23288,0],[30,27]],[[67118,23315,0],[7,6]],[[67125,23321,0],[74,70]],[[67199,23391,0],[81,88],[85,72],[66,47],[48,29]],[[67479,23627,0],[40,34]],[[67519,23661,0],[34,37],[64,28]],[[67617,23726,0],[53,17]],[[67670,23743,0],[148,47],[47,15],[21,8],[31,35],[35,22],[115,76],[43,31],[47,15],[91,102],[9,9],[110,103],[-8,9]],[[68359,24215,0],[22,29]],[[68381,24244,0],[49,33]],[[68430,24277,0],[25,19],[25,29],[27,17],[48,48]],[[68555,24390,0],[42,51]],[[68597,24441,0],[37,42]],[[68634,24483,0],[15,9]],[[68649,24492,0],[14,-9]],[[68663,24483,0],[113,117]],[[68776,24600,0],[80,83]],[[68856,24683,0],[30,33],[98,116],[93,105],[94,109]],[[69171,25046,0],[7,-10],[4,-6],[3,-3],[35,-42],[32,-38],[-10,-18],[94,-82],[16,-12],[24,-22],[35,37],[15,16],[53,-40],[48,-40],[20,17],[26,-12],[20,-10],[31,-15],[130,-68],[1,-15],[-1,-13],[-6,-18],[-7,-18],[-14,-19],[-22,-24],[-7,-13],[-9,-21],[-6,-25],[1,-22],[-14,-75]],[[67867,20924,0],[16,4],[2,1]],[[69630,21178,0],[-11,-185],[-10,-57],[-51,-295],[-9,-56],[-10,-59]],[[69539,20526,0],[-10,-60],[-2,-5]],[[69527,20461,0],[-73,-422],[-6,-32]],[[69448,20007,0],[-20,-75]],[[67678,19226,0],[-21,20],[-15,16],[-12,20],[-81,127],[-59,87],[-56,72],[-18,23],[-24,20],[-81,70],[-79,52],[-110,54],[-15,6],[-88,32],[-34,14],[-43,19],[-93,33],[-15,0],[-72,0],[-75,0],[-73,-1],[-67,0],[-16,0],[-65,0],[-45,0],[-23,-1],[-75,2],[-68,0],[-69,-1],[-65,0],[-48,0]],[[66282,20485,0],[29,48]],[[66423,20732,0],[12,20]],[[66376,23851,0],[111,-115],[12,-14]],[[66499,23722,0],[104,-109]],[[66603,23613,0],[102,-110],[17,-19],[14,-15]],[[66736,23469,0],[16,-18]],[[66752,23451,0],[117,-123]],[[66869,23328,0],[179,-76]],[[65192,21204,0],[-56,-21],[-52,-11],[-32,-11],[-84,-26],[-26,-6],[-26,-3],[-64,9]],[[64852,21135,0],[-5,71]],[[64847,21206,0],[12,61]],[[64859,21267,0],[-4,97]],[[64855,21364,0],[-1,27]],[[64854,21391,0],[14,17],[8,17],[7,15]],[[64883,21440,0],[30,183]],[[64913,21623,0],[2,9],[2,15],[-5,26],[-6,15],[-5,9],[-12,16],[-9,7],[-13,9],[-10,6]],[[64857,21735,0],[-29,15]],[[64828,21750,0],[-28,13],[-9,6],[-34,13],[-39,14],[-44,13]],[[64674,21809,0],[-26,5],[-82,13]],[[64566,21827,0],[-17,2]],[[64549,21829,0],[-1,23]],[[64548,21852,0],[0,20]],[[64548,21872,0],[-1,20]],[[64547,21892,0],[14,-1]],[[64561,21891,0],[8,3]],[[64569,21894,0],[11,4]],[[64580,21898,0],[14,9]],[[64594,21907,0],[11,11]],[[64605,21918,0],[9,15]],[[64614,21933,0],[1,16]],[[64615,21949,0],[1,81],[-1,34],[-3,85]],[[64612,22149,0],[-11,55]],[[64601,22204,0],[-15,57]],[[64586,22261,0],[-18,42]],[[64568,22303,0],[-31,62]],[[64537,22365,0],[-5,7]],[[64532,22372,0],[-33,49]],[[64499,22421,0],[-15,21]],[[64484,22442,0],[-14,18]],[[64470,22460,0],[-6,9]],[[64464,22469,0],[-17,20]],[[64447,22489,0],[-52,60]],[[64395,22549,0],[-53,45]],[[64342,22594,0],[-24,19]],[[64318,22613,0],[-20,14],[-93,71]],[[64205,22698,0],[-94,69]],[[64111,22767,0],[-18,13]],[[64093,22780,0],[42,47]],[[64135,22827,0],[24,26]],[[64159,22853,0],[24,29]],[[64183,22882,0],[17,23]],[[64200,22905,0],[41,54]],[[64241,22959,0],[12,23]],[[64253,22982,0],[32,64],[23,60],[-28,18],[-27,23],[-59,52]],[[64194,23199,0],[-36,35]],[[64158,23234,0],[-32,38]],[[64126,23272,0],[-40,47]],[[64086,23319,0],[-51,72]],[[64035,23391,0],[-31,58]],[[64004,23449,0],[-4,9],[-10,20]],[[63990,23478,0],[-31,59]],[[63959,23537,0],[-22,52]],[[63937,23589,0],[-22,58]],[[63915,23647,0],[-7,22],[-15,54],[-13,55],[-8,44],[-2,8]],[[63870,23830,0],[-4,21]],[[63866,23851,0],[24,98]],[[63890,23949,0],[1,0],[1,0]],[[63892,23949,0],[1,0]],[[63893,23949,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1]],[[63908,23949,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[63913,23949,0],[2,1],[1,0],[1,0],[1,0]],[[63918,23950,0],[1,0]],[[63919,23950,0],[1,0],[1,0]],[[63921,23950,0],[1,1]],[[63922,23951,0],[1,0],[1,0]],[[63924,23951,0],[1,0]],[[63925,23951,0],[1,0],[1,1]],[[63927,23952,0],[1,0],[1,1]],[[63929,23953,0],[1,0],[1,0]],[[63931,23953,0],[1,0],[1,1]],[[63933,23954,0],[1,0],[1,1],[2,0]],[[63937,23955,0],[1,0],[1,1]],[[63939,23956,0],[1,0]],[[63940,23956,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[2,1],[1,0]],[[63950,23961,0],[1,0]],[[63951,23961,0],[0,1],[1,0],[1,1],[1,0],[1,2]],[[63955,23965,0],[1,0],[1,0],[1,1]],[[63958,23966,0],[1,1],[1,1],[2,1],[1,1]],[[63963,23970,0],[0,1]],[[63963,23971,0],[1,1],[1,0],[0,1],[1,0],[1,1]],[[63967,23974,0],[1,2]],[[63968,23976,0],[1,1],[1,0],[0,1]],[[63970,23978,0],[1,1],[1,1],[0,1]],[[63972,23981,0],[1,1]],[[63973,23982,0],[1,0],[0,1]],[[63974,23983,0],[1,2]],[[63975,23985,0],[1,0],[0,1]],[[63976,23986,0],[1,1],[0,1]],[[63977,23988,0],[1,0],[0,2]],[[63978,23990,0],[1,1],[0,1]],[[63979,23992,0],[1,0],[0,1]],[[63980,23993,0],[1,1],[0,1]],[[63981,23995,0],[1,1],[0,1]],[[63982,23997,0],[0,1],[1,1]],[[63983,23999,0],[0,1],[1,1],[0,1],[0,1],[1,1]],[[63985,24004,0],[0,2]],[[63985,24006,0],[1,1],[0,1]],[[63986,24008,0],[1,0],[0,2]],[[63987,24010,0],[0,1],[0,1]],[[63987,24012,0],[1,1],[0,1]],[[63988,24014,0],[0,1],[0,1]],[[63988,24016,0],[0,1],[1,1],[0,1],[0,1]],[[63989,24020,0],[0,1],[0,1]],[[63989,24022,0],[0,1],[0,1]],[[63989,24024,0],[0,2],[0,1]],[[63989,24027,0],[0,2],[0,2],[0,2]],[[63989,24033,0],[0,1],[0,2]],[[63989,24036,0],[0,1],[0,1],[0,1]],[[63989,24039,0],[0,2]],[[63989,24041,0],[0,1],[-1,1],[0,2]],[[63988,24045,0],[0,1],[0,1]],[[63988,24047,0],[-49,104],[-42,88]],[[64561,21891,0],[-3,0],[-11,1]],[[64547,21892,0],[0,-10],[1,-10]],[[64548,21852,0],[1,-11],[0,-12]],[[64566,21827,0],[83,-13],[21,-4],[4,-1]],[[64828,21750,0],[6,-3],[23,-12]],[[64913,21623,0],[-26,-159],[-4,-24]],[[64854,21391,0],[0,-2],[1,-25]],[[64859,21267,0],[-7,-36],[-5,-25]],[[64847,21206,0],[1,-14],[4,-57]],[[64852,21135,0],[-388,52]],[[64464,21187,0],[22,121],[-116,24],[-59,13],[-102,23],[-27,7],[-44,12],[-22,6],[-48,14],[-33,11],[-91,32],[-65,26],[-25,10],[-46,20],[-17,9],[-122,63],[-57,33],[-77,46],[-79,50],[-55,39],[-43,31],[-86,66],[-11,10],[-38,28],[-22,18]],[[63201,21899,0],[-46,39],[-2,2]],[[63153,21940,0],[-19,17],[-25,23],[-14,14],[-75,72],[-59,58],[-20,22],[-31,36],[-32,37],[-33,39],[-37,45],[-47,60],[-43,61],[-11,16],[-58,89],[-35,58],[-42,75]],[[62572,22662,0],[79,73]],[[62651,22735,0],[17,18],[7,5]],[[62675,22758,0],[35,17]],[[62710,22775,0],[125,61],[3,1]],[[62838,22837,0],[9,16],[3,7]],[[62850,22860,0],[25,14],[124,67]],[[62999,22941,0],[4,3],[57,30],[133,73],[72,38],[71,39],[48,26],[130,69],[128,72],[58,30],[155,84],[135,73]],[[64004,23449,0],[21,-39],[10,-19]],[[64035,23391,0],[36,-51],[15,-21]],[[64086,23319,0],[22,-27],[18,-20]],[[64126,23272,0],[4,-6],[28,-32]],[[64158,23234,0],[35,-34],[1,-1]],[[64253,22982,0],[-7,-13],[-5,-10]],[[64200,22905,0],[-11,-15],[-6,-8]],[[64183,22882,0],[-8,-11],[-16,-18]],[[64135,22827,0],[-38,-41],[-4,-6]],[[64111,22767,0],[55,-41],[39,-28]],[[64318,22613,0],[20,-16],[4,-3]],[[64342,22594,0],[38,-33],[15,-12]],[[64395,22549,0],[12,-14],[40,-46]],[[64464,22469,0],[3,-4],[3,-5]],[[64470,22460,0],[13,-17],[1,-1]],[[64499,22421,0],[18,-26],[15,-23]],[[64537,22365,0],[8,-15],[23,-47]],[[64586,22261,0],[6,-20],[9,-37]],[[64601,22204,0],[6,-27],[5,-28]],[[64615,21949,0],[0,-7],[-1,-9]],[[64614,21933,0],[-5,-8],[-4,-7]],[[64605,21918,0],[-7,-7],[-4,-4]],[[64580,21898,0],[-6,-3],[-5,-1]],[[65185,34992,0],[149,-33],[650,-143],[20,-4],[19,-2],[19,-1],[24,1],[18,1],[32,7]],[[66116,34818,0],[21,6]],[[66137,34824,0],[27,11],[28,15],[70,35],[14,-25]],[[66276,34860,0],[14,-28],[1,-3]],[[66291,34829,0],[153,15]],[[66444,34844,0],[33,3]],[[66477,34847,0],[39,-3]],[[66516,34844,0],[24,-6]],[[66540,34838,0],[29,-8]],[[66569,34830,0],[68,-31]],[[66637,34799,0],[121,-17],[23,-18],[32,-36]],[[66813,34728,0],[22,-8]],[[66835,34720,0],[96,-7],[120,-19],[159,-57],[6,-2]],[[67216,34635,0],[51,-18],[41,-1],[196,58],[19,10]],[[67024,33424,0],[-9,-52]],[[67240,32144,0],[-240,-39],[-82,-17]],[[66918,32088,0],[-407,-123]],[[66511,31965,0],[-329,-98]],[[65194,31084,0],[-11,5]],[[65183,31089,0],[-182,103]],[[65001,31192,0],[-26,16]],[[64975,31208,0],[-88,56],[-16,27]],[[64871,31291,0],[-9,15],[-24,41]],[[64838,31347,0],[-9,15],[-2,5],[-23,46]],[[64804,31413,0],[-4,3],[-111,77],[-4,2],[-15,10],[-1,2],[-6,3],[-25,17],[-51,35],[-13,17],[-15,19],[-13,16],[-95,119]],[[64451,31733,0],[-19,32]],[[64432,31765,0],[-22,14]],[[64410,31779,0],[-2,21]],[[64408,31800,0],[-2,5]],[[64406,31805,0],[-36,39]],[[64370,31844,0],[-60,55],[-16,15],[0,21],[-61,56],[-2,7],[-8,24],[-26,45],[-2,4],[-4,7],[-13,21],[-6,11],[-7,48],[-2,12],[-7,23],[1,25],[-4,53],[-7,33],[3,20],[1,33],[-3,30]],[[64147,32387,0],[-1,13],[-1,3]],[[64145,32403,0],[-7,52]],[[64138,32455,0],[-4,14],[-2,15]],[[64132,32484,0],[4,12],[72,-84],[44,-37],[30,-20],[45,-17],[45,-10],[52,-4],[53,1],[44,11],[47,18],[46,19],[59,31],[353,240],[206,144],[60,41],[50,33],[76,82],[47,87],[21,82],[2,7],[12,104],[-1,506],[-76,1],[-2,187],[-91,2],[-2,373],[-110,2],[-5,109],[-45,4],[1,295],[-94,-3],[126,183],[-80,56],[-55,39]],[[64132,32484,0],[6,-29]],[[64145,32403,0],[2,-16]],[[64370,31844,0],[-126,-82],[-13,-11],[-23,-5],[-12,-9],[-88,-60],[-10,-6],[-15,-9],[-49,-24],[-35,-18],[-5,-3],[-5,0],[-59,11],[-75,23],[-34,15],[-56,56]],[[63765,31722,0],[-9,10]],[[63756,31732,0],[-10,10],[-27,77],[-49,134],[-25,65],[-15,38],[34,13],[29,13]],[[63693,32082,0],[-21,54]],[[63672,32136,0],[-91,202],[-91,200],[-11,24],[-13,-5]],[[63466,32557,0],[-4,10]],[[63462,32567,0],[-43,96],[-40,82]],[[63379,32745,0],[-9,23],[-14,56],[-5,0]],[[63351,32824,0],[-3,23],[-5,32]],[[63343,32879,0],[-6,39],[-2,17],[-4,43],[-3,31],[5,1]],[[63333,33010,0],[-5,63]],[[63328,33073,0],[-8,75],[-1,29]],[[63319,33177,0],[-1,18]],[[63318,33195,0],[-6,75],[-5,24],[34,8],[-3,16],[-15,91]],[[63323,33409,0],[-4,98],[-2,56]],[[63317,33563,0],[-9,102]],[[63308,33665,0],[-21,434]],[[63287,34099,0],[-19,304],[-1,40]],[[63267,34443,0],[25,1],[55,22],[59,24],[18,4],[113,6],[77,4],[12,199],[2,45]],[[61741,39885,0],[-46,-55],[-13,-14],[-26,-30],[-24,-28],[-73,43],[-13,9],[-5,-6],[-53,-70],[146,-86],[54,-28],[66,-39],[54,-31],[54,-32],[49,-28],[83,-48],[-74,-115],[-51,-67],[-10,-17],[-30,-48],[-43,-49],[40,-71],[19,-31],[15,-26],[22,-35],[4,-9],[9,-16],[23,-43],[24,-47],[22,-43],[8,-15],[19,-35],[12,-23]],[[62003,38752,0],[-71,-50],[-1,-1],[-8,-5],[-44,-33],[-41,-42],[-58,-61],[-79,-83],[-24,-26],[-32,-36],[-14,-16],[-88,-55],[-47,-77],[-6,-33],[8,-70],[-43,-92],[-76,-46]],[[61379,38026,0],[-5,55],[-12,42],[-98,35],[-113,41],[-63,-131],[-185,-64],[-10,9],[-21,-18],[-21,-27],[-20,-23]],[[60831,37945,0],[-35,26],[-253,15],[27,59],[-95,33],[-178,75],[-85,-110],[-60,-84],[-143,-222],[-84,-144],[-62,-122],[-69,-149]],[[59794,37322,0],[-63,24],[-19,9],[-29,15],[-25,-11],[-41,-23],[-48,-7],[-15,-3],[-1,-7],[0,-4],[-41,-11],[-41,-26],[-62,-93],[-57,-102]],[[59352,37083,0],[-16,11],[-28,19],[-101,122],[-73,73],[-2,3],[-47,48],[5,5],[15,12],[-9,13]],[[59096,37389,0],[-42,70],[-16,25],[-44,75],[-61,33],[-3,13],[-2,9]],[[58928,37614,0],[-4,23]],[[58924,37637,0],[-3,16],[133,109],[96,125],[-42,37],[8,32],[8,23],[3,10],[3,8],[23,48],[21,41],[8,13],[21,33],[42,63],[40,57],[11,21],[22,43],[21,42],[27,34],[36,33],[-98,93],[-77,88],[-32,43],[-3,5],[-5,6],[-19,16],[-36,31],[16,24],[27,40],[39,41],[32,30],[14,10],[40,25],[169,51],[292,46],[0,19],[0,2],[-2,44],[-179,-6],[-17,133],[-14,15],[-10,13],[-9,18],[-13,25],[-44,142],[-3,15],[-5,25],[-41,-12],[-218,-80],[-9,17],[-63,100],[-34,69],[-9,9],[-45,54],[-19,-8],[-87,151],[-7,21],[-10,27],[0,1],[-3,9]],[[58920,39777,0],[125,28],[374,87],[4,-8],[67,16],[102,23],[54,11],[116,27],[174,43],[72,11]],[[60008,40015,0],[25,-18],[25,-18],[93,-71],[4,-5],[86,11],[3,0],[86,-8],[11,-2],[39,-3],[68,3],[46,3],[104,-9],[17,96],[5,24],[1,8],[2,12],[118,6],[84,3],[34,2],[79,1],[43,-17],[15,-7],[73,17],[14,3],[8,2],[43,10],[21,5],[49,12],[65,4],[82,7],[81,-35],[18,-8],[16,-6],[56,-20],[2,-2],[131,-78],[38,-23],[9,-6],[39,-23]],[[64494,40145,0],[-70,-105],[-71,-106],[-51,-76]],[[64302,39858,0],[-38,-57],[-31,-46],[-32,-48],[-3,-3],[-7,-11],[-2,-3],[-5,-7],[-3,-4],[-26,-38]],[[64142,39586,0],[2,-7],[4,-19],[17,-23],[27,-19],[37,-19]],[[64229,39499,0],[67,-33],[6,-2]],[[64302,39464,0],[34,-15],[38,-11],[41,-12],[75,-12],[47,-6],[29,-3],[73,-4],[68,2],[62,5],[64,8],[50,9],[49,10],[17,4],[23,7],[26,15],[18,14],[7,7],[6,9],[7,11],[55,19],[105,36],[12,-8],[17,-9],[25,-4],[24,2]],[[65274,39538,0],[83,31],[82,32]],[[65439,39601,0],[146,53],[35,13],[36,14]],[[65656,39681,0],[97,36]],[[65753,39717,0],[129,51],[13,5]],[[65895,39773,0],[31,12]],[[65926,39785,0],[6,2],[73,26]],[[66005,39813,0],[108,32],[114,28]],[[66227,39873,0],[143,23]],[[66370,39896,0],[85,12],[106,11]],[[66561,39919,0],[107,8]],[[66668,39927,0],[60,-21],[13,-5]],[[66741,39901,0],[13,-118]],[[66754,39783,0],[35,-341]],[[66907,38267,0],[-139,-33],[-177,-33],[-157,-1],[-170,4],[-89,-6],[-32,-12],[-19,4],[-7,-7],[-9,-11],[-49,43],[-106,-38],[-65,-68],[-44,37],[-21,21],[-123,46],[-72,-55],[-65,-40],[-23,18],[-20,29],[-11,17],[-77,140],[-12,21],[-19,44],[-49,-20],[-36,-15],[-90,-36],[-15,5],[-132,-49],[-15,-28],[-59,12],[-1,-24],[-98,-34],[-54,-16],[90,-70],[-64,-33],[-233,-120],[-338,-184],[-47,59],[-126,-58],[-105,-129],[-58,-44],[-45,-37],[-62,-73],[-47,-30],[-12,-8],[-1,-1],[71,-105],[-303,-191],[-64,56],[-43,38],[-83,105],[41,21],[-60,66],[-76,133],[29,108],[-5,62],[-36,89],[-37,6],[-50,25],[-33,126],[-23,253],[-19,173],[-15,62],[-40,102],[-36,47],[-20,52],[-29,12],[-2,187],[91,202],[15,32],[-62,277],[69,5],[74,44],[135,139],[96,105],[62,69],[9,4],[82,114],[4,5],[16,19],[48,59],[26,27],[56,58],[86,80],[24,32],[5,36],[14,20]],[[58924,37637,0],[1,-8],[3,-15]],[[59096,37389,0],[-45,1],[-80,2],[-17,1],[-91,2],[-29,-4],[-53,6],[-118,29],[-74,15],[-128,11],[-33,-29],[-8,-6],[-208,81]],[[58212,37498,0],[-120,46],[-21,8],[-10,4],[-18,7],[-63,25],[-33,13],[-30,12],[-162,64],[-10,33],[-3,8],[-22,73],[-21,23],[-66,31],[-12,6],[-19,16],[-22,-10],[-78,-36],[-11,4],[-109,43],[0,3],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-86,33],[-10,3],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[0,2],[-1,0],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[-125,49],[-53,-117],[-72,-157],[-93,-77],[-61,-51],[-3,-3],[-6,-6]],[[56779,37577,0],[-21,20]],[[56758,37597,0],[-21,22],[-67,66]],[[56670,37685,0],[38,20]],[[56708,37705,0],[7,5],[45,28]],[[56760,37738,0],[51,46],[7,7]],[[56818,37791,0],[14,12],[21,19]],[[56853,37822,0],[-1,2],[-4,2]],[[56848,37826,0],[-86,68]],[[56762,37894,0],[-13,7],[-17,10]],[[56732,37911,0],[-46,26],[-56,32]],[[56630,37969,0],[-24,17],[-7,6]],[[56599,37992,0],[-45,24]],[[56554,38016,0],[-6,0],[-10,0]],[[56538,38016,0],[-44,25],[-32,18]],[[56462,38059,0],[-31,21],[-25,16]],[[56406,38096,0],[-39,22]],[[56367,38118,0],[55,74],[1,2]],[[56423,38194,0],[17,20]],[[56440,38214,0],[7,7],[4,5]],[[56451,38226,0],[6,7]],[[56457,38233,0],[22,15],[2,1]],[[56481,38249,0],[19,11]],[[56500,38260,0],[8,4],[13,7]],[[56521,38271,0],[22,9],[6,2]],[[56549,38282,0],[24,10]],[[56573,38292,0],[10,2],[18,3]],[[56601,38297,0],[33,6],[33,6]],[[56667,38309,0],[27,4]],[[56694,38313,0],[25,3],[107,13]],[[56826,38329,0],[101,19],[182,26],[29,5]],[[57138,38379,0],[68,10],[111,17]],[[57317,38406,0],[124,20],[182,28],[33,5]],[[57656,38459,0],[64,13],[39,7]],[[57759,38479,0],[4,1],[5,1]],[[57768,38481,0],[63,23],[3,3],[36,21],[10,7],[28,25]],[[57908,38560,0],[133,96],[4,3]],[[58045,38659,0],[9,8],[82,70]],[[58136,38737,0],[6,6],[15,16]],[[58157,38759,0],[62,72],[75,95]],[[58294,38926,0],[13,15],[65,80]],[[58372,39021,0],[32,37]],[[58404,39058,0],[21,39],[1,2]],[[58426,39099,0],[17,39]],[[58443,39138,0],[6,32],[0,2]],[[58449,39172,0],[1,38]],[[58450,39210,0],[6,173],[1,33]],[[58457,39416,0],[0,3],[4,19]],[[58461,39438,0],[4,9],[8,19]],[[58473,39466,0],[9,22]],[[58482,39488,0],[21,27],[10,12]],[[58513,39527,0],[20,20],[15,16]],[[58548,39563,0],[53,44]],[[58601,39607,0],[-14,12],[-17,14]],[[58570,39633,0],[23,19],[69,45]],[[58662,39697,0],[13,7],[13,6]],[[58688,39710,0],[19,8],[7,3]],[[58714,39721,0],[7,3],[26,10]],[[58747,39734,0],[173,43]],[[57869,40346,0],[-34,-96]],[[57835,40250,0],[161,3],[27,4],[78,21]],[[58101,40278,0],[56,12]],[[58157,40290,0],[11,-2]],[[58168,40288,0],[-3,-22]],[[58165,40266,0],[-7,-11],[-127,-182],[-13,-17],[-4,-5],[-67,-97],[-62,-100]],[[57885,39854,0],[-43,-72]],[[57842,39782,0],[32,-2],[116,-9],[142,-8],[207,-4],[122,-2],[83,5],[91,12],[34,8],[41,10]],[[58710,39792,0],[19,-30]],[[58729,39762,0],[12,-21],[6,-7]],[[58747,39734,0],[-33,-13]],[[58714,39721,0],[-26,-11]],[[58688,39710,0],[-26,-13]],[[58570,39633,0],[31,-26]],[[58548,39563,0],[-35,-36]],[[58513,39527,0],[-31,-39]],[[58473,39466,0],[-12,-28]],[[58461,39438,0],[-4,-22]],[[58457,39416,0],[-7,-206]],[[58449,39172,0],[-6,-34]],[[58426,39099,0],[-22,-41]],[[58372,39021,0],[-78,-95]],[[58157,38759,0],[-21,-22]],[[58136,38737,0],[-91,-78]],[[58045,38659,0],[-137,-99]],[[57768,38481,0],[-9,-2]],[[57759,38479,0],[-103,-20]],[[57317,38406,0],[-179,-27]],[[56826,38329,0],[-132,-16]],[[56667,38309,0],[-66,-12]],[[56601,38297,0],[-28,-5]],[[56549,38282,0],[-28,-11]],[[56521,38271,0],[-21,-11]],[[56481,38249,0],[-24,-16]],[[56451,38226,0],[-11,-12]],[[56423,38194,0],[-56,-76]],[[56367,38118,0],[-17,31],[-21,38],[-19,32],[-121,-144]],[[56189,38075,0],[-124,111],[-3,3]],[[56062,38189,0],[-49,-48]],[[56013,38141,0],[-37,28]],[[55976,38169,0],[-21,22],[-8,5],[-62,57],[-11,10],[-72,78]],[[55802,38341,0],[-116,-44]],[[55686,38297,0],[-19,-8]],[[55667,38289,0],[-43,-71]],[[55624,38218,0],[-102,14],[-44,-44],[-107,-115],[-78,-104],[-10,-14],[-46,33],[-29,23],[-29,23]],[[55179,38034,0],[95,192],[110,167]],[[55384,38393,0],[6,20]],[[55390,38413,0],[3,11],[2,8],[-95,52],[-97,54],[70,83],[23,27],[42,42],[45,41],[61,47],[78,49],[108,62],[59,25],[-8,16]],[[55681,38930,0],[149,52]],[[55830,38982,0],[204,75]],[[56034,39057,0],[100,39],[15,6]],[[56149,39102,0],[57,25]],[[56206,39127,0],[30,33],[34,41]],[[56270,39201,0],[68,101]],[[56338,39302,0],[-8,76],[-17,183],[-6,63]],[[56307,39624,0],[-24,8]],[[56283,39632,0],[-106,150]],[[56177,39782,0],[-108,186]],[[56069,39968,0],[142,171]],[[56211,40139,0],[288,178],[141,52]],[[56640,40369,0],[113,6]],[[56753,40375,0],[30,1]],[[56783,40376,0],[98,7]],[[56881,40383,0],[92,1]],[[56973,40384,0],[115,-10]],[[57088,40374,0],[13,-1]],[[57101,40373,0],[50,-4]],[[57151,40369,0],[6,0]],[[57157,40369,0],[138,-9]],[[57295,40360,0],[34,-1]],[[57329,40359,0],[131,-7]],[[57460,40352,0],[48,-4]],[[57508,40348,0],[137,-1],[75,-1],[149,0]],[[59140,44198,0],[48,-9]],[[59193,44185,0],[319,-47]],[[59541,44134,0],[18,-3]],[[59559,44131,0],[41,-34]],[[59600,44097,0],[110,-86]],[[59710,44011,0],[271,-212]],[[59981,43799,0],[-14,-17]],[[59967,43782,0],[-17,-20]],[[59950,43762,0],[-12,-7]],[[59938,43755,0],[-3,-2]],[[59935,43753,0],[-18,-5]],[[59917,43748,0],[-2,0]],[[59915,43748,0],[-27,-6],[-24,-3]],[[59864,43739,0],[-25,-13]],[[59839,43726,0],[-73,-17]],[[59766,43709,0],[-29,2]],[[59737,43711,0],[-59,-20]],[[59678,43691,0],[-27,-12]],[[59651,43679,0],[-15,-9]],[[59636,43670,0],[-50,18],[-108,38],[-44,15],[-74,24]],[[59360,43765,0],[-1,-5]],[[59359,43760,0],[-12,-70]],[[59347,43690,0],[11,-2]],[[59358,43688,0],[17,-5]],[[59375,43683,0],[-3,-2],[-4,-2],[-1,0]],[[59367,43679,0],[-3,-2]],[[59364,43677,0],[-4,-3]],[[59360,43674,0],[-3,-2]],[[59357,43672,0],[-1,-2]],[[59356,43670,0],[-2,-1],[0,-2]],[[59354,43667,0],[-2,-2]],[[59352,43665,0],[-1,-1]],[[59351,43664,0],[0,-1],[-1,-1]],[[59350,43662,0],[-1,-2]],[[59349,43660,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1]],[[59346,43653,0],[-22,-105]],[[59324,43548,0],[-26,-129]],[[59298,43419,0],[-10,-46]],[[59288,43373,0],[-24,-115]],[[59264,43258,0],[-16,-87]],[[59248,43171,0],[-9,-39],[-8,-38],[-9,-46]],[[59222,43048,0],[-12,-63]],[[59210,42985,0],[-2,-9]],[[59208,42976,0],[-7,-35]],[[59201,42941,0],[0,-4]],[[59201,42937,0],[0,-4]],[[59201,42933,0],[0,-6]],[[59201,42927,0],[0,-6]],[[59201,42921,0],[0,-5]],[[59201,42916,0],[1,-1],[0,-1]],[[59202,42914,0],[0,-3]],[[59202,42911,0],[0,-2],[1,-1],[0,-1]],[[59203,42907,0],[1,-7]],[[59204,42900,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1]],[[59208,42888,0],[1,-2]],[[59209,42886,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2]],[[59212,42879,0],[-21,2]],[[59191,42881,0],[-20,3]],[[59171,42884,0],[-39,4],[-9,0]],[[59123,42888,0],[-181,19]],[[58942,42907,0],[-7,-38],[-114,24]],[[58821,42893,0],[-4,30]],[[58817,42923,0],[-38,-12]],[[58779,42911,0],[-68,-20]],[[58711,42891,0],[-52,-15]],[[58659,42876,0],[-33,-6]],[[58626,42870,0],[-38,-6]],[[58588,42864,0],[-78,-35],[-105,-43],[-43,-17],[-89,-35],[-111,-43]],[[58162,42691,0],[45,168],[27,98],[12,45],[11,39],[19,72]],[[58276,43113,0],[9,36]],[[58285,43149,0],[16,63]],[[58301,43212,0],[8,28]],[[58309,43240,0],[57,208]],[[58366,43448,0],[12,48]],[[58378,43496,0],[5,18],[6,23],[35,128]],[[58424,43665,0],[9,33]],[[58433,43698,0],[10,37]],[[58443,43735,0],[28,106]],[[58471,43841,0],[17,63]],[[58488,43904,0],[7,23]],[[58495,43927,0],[10,36]],[[58505,43963,0],[9,34]],[[58514,43997,0],[9,34]],[[58523,44031,0],[10,36],[10,41]],[[58543,44108,0],[45,180]],[[58588,44288,0],[8,26]],[[58596,44314,0],[41,-9]],[[58637,44305,0],[92,-20]],[[58729,44285,0],[45,-9]],[[58774,44276,0],[74,-16]],[[58848,44260,0],[47,-10]],[[58895,44250,0],[30,-6]],[[58925,44244,0],[101,-21]],[[79354,22863,0],[-16,1],[-161,16]],[[79177,22880,0],[-56,-154],[-6,-6],[-59,-98],[-6,-9],[-130,-234],[-48,-93],[-39,-96],[-27,-102],[-13,-102],[-3,-26],[2,-145],[2,-53]],[[78794,21762,0],[1,-4],[1,-16]],[[78796,21742,0],[1,-153],[0,-38]],[[78797,21551,0],[-46,12],[-28,6],[-49,12],[-151,9],[-40,3],[-8,1],[-8,0],[-30,1],[-58,4]],[[78379,21599,0],[-8,0],[-2,0]],[[78369,21599,0],[-106,6],[-104,4],[61,91],[1,2],[7,13],[7,14],[3,6],[17,35],[1,3],[13,27],[2,4],[3,8],[-202,48],[-15,3]],[[78057,21863,0],[-109,25],[-24,5]],[[77924,21893,0],[-23,-274],[-304,24]],[[77597,21643,0],[-113,8],[-21,2]],[[77463,21653,0],[-195,15],[-238,17]],[[77030,21685,0],[-28,1]],[[77002,21686,0],[-34,3]],[[76968,21689,0],[0,2]],[[76968,21691,0],[22,206],[20,272],[23,256]],[[77033,22425,0],[24,228],[7,91]],[[77064,22744,0],[6,81]],[[77070,22825,0],[3,51]],[[77073,22876,0],[6,84],[1,67]],[[77080,23027,0],[4,58]],[[77246,23634,0],[2,3],[28,46]],[[77276,23683,0],[8,10],[29,38]],[[77328,23758,0],[52,90],[3,6]],[[77392,23870,0],[1,2],[1,2]],[[77486,24281,0],[242,-246],[85,-77],[155,-97],[112,-83],[502,-72],[6,1],[292,83],[302,-69],[246,-128],[106,-50],[-2,-13],[-3,-32],[-6,-54],[-19,-187],[-3,-24],[-25,-8],[-30,-14],[-16,-14],[-11,-13],[-15,-29],[0,-60],[-21,-105],[-25,-70],[-4,-36],[0,-21]],[[59947,41695,0],[129,-37]],[[60076,41658,0],[156,-44]],[[60232,41614,0],[113,-32]],[[60345,41582,0],[76,-23],[103,-31],[18,-5],[150,-42],[29,-6]],[[61364,41554,0],[-38,-30],[-46,-35],[-43,-33],[82,-63],[-99,-114],[-101,-117],[-107,-124],[-103,-120],[-142,-155],[-106,-117],[-93,-99],[-81,-95],[-78,-82],[-15,-14],[-46,-45],[-53,-42],[-54,-39],[-58,-36],[-54,-29],[-60,-28],[-31,-14],[-38,-14],[17,-24],[16,-22],[18,-23],[-43,-25]],[[58729,39762,0],[-7,11],[-12,19]],[[57842,39782,0],[14,24],[29,48]],[[58165,40266,0],[2,11],[1,11]],[[58168,40288,0],[3,28]],[[58171,40316,0],[23,-1]],[[58194,40315,0],[7,0]],[[58201,40315,0],[113,-1]],[[58314,40314,0],[33,-2]],[[58347,40312,0],[329,32],[39,4]],[[58715,40348,0],[11,2]],[[58726,40350,0],[-4,44]],[[58722,40394,0],[6,10]],[[58728,40404,0],[10,28]],[[58738,40432,0],[22,43],[12,31],[11,57],[2,12],[14,77],[17,63],[8,13],[2,9]],[[58826,40737,0],[23,84]],[[58849,40821,0],[27,84],[25,89],[6,0]],[[58907,40994,0],[43,-9]],[[58950,40985,0],[65,120],[24,36],[30,32],[14,14]],[[59083,41187,0],[25,-10]],[[59108,41177,0],[12,106],[-32,-3]],[[59088,41280,0],[-91,5]],[[58997,41285,0],[24,139]],[[59021,41424,0],[12,81]],[[59033,41505,0],[18,95]],[[59051,41600,0],[21,112]],[[59072,41712,0],[16,52]],[[59088,41764,0],[-11,4]],[[59077,41768,0],[-152,-34]],[[58925,41734,0],[0,4],[-9,166],[-1,83]],[[58915,41987,0],[92,-25]],[[59007,41962,0],[219,-62]],[[59226,41900,0],[126,-37],[186,-52],[165,-47],[244,-69]],[[59352,37083,0],[22,-13],[22,-16],[-35,-94],[-1,-94],[-2,-212],[-40,-4],[0,-49],[2,-141],[1,-131],[25,2],[3,-73],[11,-43],[47,-70],[16,-117],[12,-139],[-106,-13],[24,-320],[29,-128],[28,-97],[17,-40],[52,-172]],[[59479,35119,0],[4,-16],[-140,-25],[-18,-2],[-67,-21],[-133,-41],[-112,-45],[-171,-17],[-92,-31],[-61,0],[-246,-35],[-49,7],[-135,39],[-14,-1]],[[58245,34931,0],[-73,-4],[-18,-1]],[[58154,34926,0],[-3,0],[-38,4]],[[58113,34930,0],[-56,16]],[[58057,34946,0],[-20,5],[-12,4]],[[58025,34955,0],[-30,13],[-2,0]],[[57993,34968,0],[-29,14]],[[57964,34982,0],[-64,32],[-16,8]],[[57884,35022,0],[-62,20],[-27,8]],[[57795,35050,0],[0,-13]],[[57795,35037,0],[0,-15],[0,-14]],[[57795,35008,0],[-108,49],[-26,12]],[[57661,35069,0],[-12,6],[-33,13]],[[57616,35088,0],[-26,7],[-65,18]],[[57525,35113,0],[-20,44],[-2,7],[-35,-9],[-16,1],[-34,5],[-22,3],[-18,3]],[[57378,35167,0],[0,1],[6,16],[7,22],[-13,22],[-18,2],[-18,3],[-9,2],[-41,8],[-12,6],[-25,13],[-43,35],[23,73],[11,45],[14,50],[-28,7],[4,19],[3,9],[1,7],[3,13],[7,32],[21,46],[3,5],[11,23],[55,3],[71,3],[57,30],[3,8],[7,15],[37,76],[30,65],[7,15],[5,9],[22,44],[11,18],[13,29],[1,2],[3,6],[64,35],[41,37],[41,53],[58,2],[31,40],[11,35],[14,41],[4,48],[2,15],[15,36],[13,30],[0,15],[0,2],[8,4],[13,5],[17,82],[3,16],[11,77],[7,60],[8,56],[86,-3],[44,-6],[36,-5],[-1,24],[-2,25],[-15,117],[238,92],[17,7],[5,2],[-26,36],[-13,18],[-73,94],[-135,175],[23,13],[57,31],[73,39],[-18,17],[-1,2],[-6,5],[-61,46],[-35,39],[-1,1],[23,29],[9,11],[20,51]],[[62603,42649,0],[-63,-69],[-55,-64],[-91,-104],[-147,-144],[-154,-151],[-84,-99],[-384,-437],[3,-52]],[[61628,41529,0],[-1,-34],[0,-2]],[[61627,41493,0],[0,-37]],[[61627,41456,0],[1,-115],[0,-16]],[[61628,41325,0],[9,-3],[25,-9],[31,-17],[31,-17],[40,-40],[37,-47],[14,-59],[7,-27],[159,-102],[28,-18],[67,-43],[64,-60],[28,-17],[122,-77],[25,-4],[17,-5],[12,-7],[8,-7],[21,-18],[26,-24]],[[62399,40724,0],[-22,-25],[-17,-26],[-38,-62],[3,-15],[-13,-38],[10,-23],[18,-59],[-7,-11],[0,-57],[21,-35],[-29,-35],[22,-54],[13,-20],[-22,-40],[2,-51],[-20,-11],[-142,23],[-10,-24],[20,-26],[-101,-27],[-161,-40],[0,32],[-49,-58],[-93,-110],[-27,-29],[-15,-19],[-1,1]],[[64625,41318,0],[196,7]],[[64821,41325,0],[15,-62],[27,-125],[12,-80],[2,-24],[1,-28],[0,-38],[-4,-53],[-4,-35],[-10,-50],[-10,-45],[-16,-62],[-28,-79],[-36,-82],[-77,-153],[-21,-39],[-41,-72]],[[64631,40298,0],[-14,-21],[-20,1],[-12,-3],[-11,-6],[-24,-43]],[[64550,40226,0],[-11,-17],[-45,-64]],[[63532,40653,0],[6,30],[2,10]],[[63557,40783,0],[1,12],[9,64]],[[63567,40859,0],[56,366],[13,78]],[[66965,39866,0],[1,-41],[-1,-21]],[[66859,40428,0],[5,-19],[34,-103]],[[66650,40877,0],[2,-4],[87,-171]],[[66540,41056,0],[-3,8],[-44,123]],[[66623,40850,0],[-83,206]],[[66662,40757,0],[-35,81],[-4,12]],[[66738,39934,0],[27,6],[16,8],[34,28],[24,33],[11,28],[5,27],[-4,50],[-45,163],[-34,122],[-11,76],[-99,282]],[[66669,39927,0],[69,7]],[[66668,39927,0],[1,0]],[[66741,39901,0],[-73,26]],[[66913,39827,0],[-28,12]],[[61136,44128,0],[-1,0],[-69,3]],[[61066,44131,0],[-8,-35],[-12,-51]],[[61041,44019,0],[-1,-7],[-6,-26]],[[61034,43986,0],[0,-3],[-1,-4]],[[61033,43979,0],[-6,-32],[-3,-13]],[[61024,43934,0],[-7,-36],[-27,-128]],[[60998,43731,0],[8,2],[48,9]],[[61093,43749,0],[16,3],[1,1]],[[61110,43753,0],[10,2],[7,1]],[[61127,43756,0],[29,7],[20,5]],[[61208,43739,0],[-1,-46],[-1,-20]],[[61181,43483,0],[-4,-12],[-5,-17]],[[61153,43397,0],[-2,-7],[-3,-11]],[[61144,43366,0],[-1,-6],[-8,-28]],[[61135,43332,0],[-2,-12],[-2,-13]],[[61131,43307,0],[-3,-16],[-3,-16]],[[61125,43275,0],[-1,-8],[-3,-21]],[[61117,43194,0],[-1,-10],[0,-1]],[[61116,43183,0],[-1,-14],[-2,-17]],[[61111,43120,0],[-1,-22],[0,-10]],[[61110,43088,0],[-2,-47],[-2,-45]],[[61100,42872,0],[0,-17],[-1,-28]],[[61099,42827,0],[-1,-22],[-3,-51]],[[61095,42754,0],[0,-25],[-1,0]],[[61083,42480,0],[0,-7],[0,-11]],[[61080,42406,0],[-1,-29],[-1,-22]],[[61075,42304,0],[-8,-21],[-12,-28]],[[61029,42195,0],[-228,-534],[-80,-186]],[[60345,41582,0],[-2,0],[-111,32]],[[60232,41614,0],[-79,22],[-77,22]],[[60076,41658,0],[-97,27],[-32,10]],[[59226,41900,0],[-56,15],[-163,47]],[[59007,41962,0],[-42,11],[-50,14]],[[58915,41987,0],[-15,7],[-2,1],[-2,2],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[58870,42032,0],[0,1],[0,1],[0,1]],[[58870,42035,0],[0,2]],[[58870,42037,0],[0,1],[0,1],[0,1]],[[58870,42040,0],[0,2],[0,1],[18,71],[1,5],[31,113]],[[58920,42232,0],[20,-6],[63,-15],[-18,133],[83,12],[27,4],[16,6],[3,3],[7,9],[62,-43],[43,-27],[19,47],[48,52],[6,5],[5,-2],[50,56]],[[59354,42466,0],[29,33],[4,-3],[9,-8],[53,63],[8,10],[15,18],[9,12],[31,37],[-14,12],[-14,11],[-54,40],[-41,31],[-36,28],[-1,1],[-7,0],[-47,-1],[0,-5],[0,-10],[-138,0],[2,6],[2,8],[113,-1],[1,0],[-3,64],[-15,11],[-15,11],[-15,16],[-2,2],[-5,8],[-11,19]],[[59212,42879,0],[50,-6],[31,-4],[23,-3],[36,-4],[59,-8],[16,3],[20,2],[6,-27],[3,-11],[-5,-19],[10,-2],[1,2],[3,14],[16,-8],[81,-38],[10,-4],[5,-3],[21,-8],[63,-22],[25,-8],[37,-13],[4,-2],[8,-4],[38,-22],[44,-24],[63,-23],[15,-6],[5,-1],[24,-10],[46,-17],[19,-6],[9,-3],[19,-6],[19,-5],[22,-6],[66,-12],[9,29],[7,20],[11,35],[19,58],[30,93],[19,61],[12,36],[13,41],[21,64],[32,101],[31,-8],[4,12],[30,89],[2,7],[26,2],[2,7],[23,45],[11,15],[24,21],[22,22],[14,12],[-6,19],[-2,22],[13,75],[2,6],[-38,32],[-21,18],[-23,19],[-56,47],[-43,22],[-107,58],[-88,48],[-136,106]],[[60631,44844,0],[8,7],[11,11]],[[60685,44897,0],[38,-44],[43,-61],[50,-74],[50,-80],[55,-78],[68,-78],[73,-79],[92,-81],[61,-39],[59,-34]],[[67017,37168,0],[48,-499],[17,-102],[9,-88]],[[67091,36479,0],[13,-132],[10,-93]],[[67114,36254,0],[2,-22],[3,-23],[6,-64]],[[67125,36145,0],[5,-51]],[[67130,36094,0],[1,-11],[30,-287]],[[67161,35796,0],[14,-135]],[[67175,35661,0],[31,-298]],[[67206,35363,0],[13,-128],[13,-130],[7,-62]],[[67239,35043,0],[5,-118]],[[67244,34925,0],[-4,-154],[-9,-61],[-15,-75]],[[66835,34720,0],[-8,3],[-14,5]],[[66637,34799,0],[-44,20],[-24,11]],[[66540,34838,0],[-9,2],[-15,4]],[[66516,34844,0],[-17,2],[-22,1]],[[66444,34844,0],[-152,-15],[-1,0]],[[66291,34829,0],[-15,31]],[[66137,34824,0],[-17,-4],[-4,-2]],[[65296,37062,0],[62,46],[89,92],[51,53],[50,61],[43,62],[42,83],[15,49],[9,42],[6,40],[1,7],[138,-5],[244,-20],[41,-3],[22,-6],[114,41],[25,23],[18,-2],[23,9],[12,41],[127,-4],[-40,79],[50,-15],[81,-66],[73,-32],[71,-33],[1,15],[309,0]],[[57378,35167,0],[-10,-25],[-11,-2],[-68,-8]],[[57289,35132,0],[-95,-11],[-31,-4]],[[57163,35117,0],[-8,-1],[-19,-2]],[[57136,35114,0],[-110,-13],[-74,-9],[-125,-15]],[[56827,35077,0],[-27,-2],[-12,-2]],[[56788,35073,0],[-31,23]],[[56757,35096,0],[-64,50],[-17,20],[-16,22],[-54,64],[-11,12],[-20,19],[-29,33],[-23,38]],[[56523,35354,0],[-8,11],[-63,86]],[[56452,35451,0],[-66,103],[5,9],[3,17],[7,49]],[[56401,35629,0],[1,7],[0,8]],[[56402,35644,0],[11,24],[12,30]],[[56425,35698,0],[12,37],[3,11]],[[56440,35746,0],[6,5],[5,5]],[[56451,35756,0],[12,19],[5,9]],[[56468,35784,0],[8,36]],[[56476,35820,0],[13,20],[1,1]],[[56490,35841,0],[14,150],[1,16],[4,41],[-9,7]],[[56500,36055,0],[-95,38],[-80,31]],[[56325,36124,0],[-42,16],[5,23],[-2,23],[-6,51],[-1,14],[15,29],[-5,49],[-12,31]],[[56277,36360,0],[40,48],[38,48]],[[56355,36456,0],[56,-12]],[[56411,36444,0],[4,11],[1,5]],[[56416,36460,0],[11,41],[14,55]],[[56441,36556,0],[26,99],[7,22],[24,96]],[[56498,36773,0],[3,13],[3,10]],[[56504,36796,0],[13,47],[12,47]],[[56529,36890,0],[11,40],[2,6]],[[56542,36936,0],[14,55],[80,-37]],[[56636,36954,0],[64,-24],[30,-12]],[[56730,36918,0],[3,7]],[[56733,36925,0],[10,18],[4,8]],[[56747,36951,0],[-2,10],[-4,22]],[[56741,36983,0],[-2,27],[0,1]],[[56739,37011,0],[-1,70],[13,55],[9,46],[3,12],[13,7]],[[56776,37201,0],[6,-4],[7,-5]],[[56789,37192,0],[8,-4],[31,-17]],[[56828,37171,0],[36,-28],[31,-25]],[[56895,37118,0],[10,-13],[15,-16]],[[56920,37089,0],[6,-10],[3,-6]],[[56929,37073,0],[32,-52]],[[56961,37021,0],[24,-22],[42,-38]],[[57027,36961,0],[20,13],[51,30]],[[57098,37004,0],[92,28],[1,0]],[[57191,37032,0],[-89,102],[-76,86]],[[57026,37220,0],[-51,59]],[[56975,37279,0],[-31,35],[-61,68]],[[56883,37382,0],[-23,26]],[[56860,37408,0],[-22,26],[-9,10]],[[56829,37444,0],[-22,24]],[[56807,37468,0],[-59,70],[-9,10],[40,29]],[[56938,44294,0],[-1,-3],[-4,-19]],[[56933,44272,0],[-21,7],[-84,27],[-34,11],[-18,5]],[[56776,44322,0],[-55,16],[-22,7],[25,111],[11,51],[22,101],[12,54],[7,31],[17,74],[62,-15],[67,-16],[116,-27],[26,-6]],[[57064,44703,0],[8,-2],[36,-9]],[[57108,44692,0],[-6,-19]],[[57102,44673,0],[15,-4],[45,-14]],[[57162,44655,0],[33,-12],[11,-4]],[[57206,44639,0],[106,-16],[32,-4]],[[57344,44619,0],[15,49],[2,7],[28,-7]],[[57389,44668,0],[50,-14],[78,-22]],[[57517,44632,0],[79,-21],[9,-2],[9,0],[11,2],[8,2]],[[57633,44613,0],[3,2],[5,2]],[[57641,44617,0],[1,1],[7,5]],[[57649,44623,0],[6,7]],[[57655,44630,0],[2,2],[3,7]],[[57660,44639,0],[4,6],[8,16]],[[57672,44661,0],[-10,-121],[10,-3],[9,97],[10,111],[3,12],[3,13],[1,7],[5,116],[5,17],[20,81]],[[57728,44991,0],[10,42],[2,5]],[[57740,45038,0],[0,4],[4,16]],[[57744,45058,0],[14,56],[26,105],[34,106]],[[57818,45325,0],[0,1],[13,42]],[[57831,45368,0],[254,-68],[209,-36],[10,26],[169,-39],[7,-2],[33,-8],[3,0],[18,-4],[9,-1],[48,-7]],[[58634,44307,0],[3,-2]],[[58596,44314,0],[-3,-12],[-5,-14]],[[58588,44288,0],[-20,-84],[-25,-96]],[[58523,44031,0],[-5,-22],[-4,-12]],[[58505,43963,0],[-3,-12],[-7,-24]],[[58495,43927,0],[-47,13],[-212,46],[-122,27],[-24,5],[-209,48],[-48,11],[-4,1],[-90,20],[-3,0],[-103,24],[-1,0],[-63,15],[-4,1],[-25,7],[-19,5],[-5,1],[-163,41],[-9,2],[-76,21],[-46,12],[-68,20],[-69,20],[-6,1],[-4,2],[-25,7],[-2,-5],[-5,1],[-14,4],[-67,12],[-7,2],[-17,3]],[[56938,44294,0],[17,76],[27,71],[-151,29],[-31,-132],[138,-44]],[[55976,38169,0],[2,-2],[35,-26]],[[56013,38141,0],[34,33],[15,15]],[[56189,38075,0],[29,-25],[-109,-144],[-114,-142],[-126,-154]],[[55869,37610,0],[-53,-64],[-64,-78]],[[55752,37468,0],[-2,-1],[-137,-165]],[[55613,37302,0],[-44,-46],[-123,-128],[-67,-69],[-11,6],[-132,-133],[-49,-51],[-25,-25],[-41,-41],[-47,-49]],[[55074,36766,0],[-14,-14],[-32,-33]],[[55028,36719,0],[-69,-72],[-10,-9]],[[54949,36638,0],[-84,-86],[-159,-160],[-99,-103]],[[54607,36289,0],[-15,-16],[-15,-17],[-14,-13]],[[54563,36243,0],[-47,-53],[-39,-42]],[[54477,36148,0],[-88,-119]],[[54389,36029,0],[-51,12]],[[54338,36041,0],[-32,-13],[-5,-2]],[[54301,36026,0],[-45,-19],[-14,3],[-4,1],[-14,0],[-25,-1],[-25,9],[-14,0],[-10,6],[-14,0],[-44,14],[-13,2],[-17,3],[-3,1],[-22,-6],[-31,1],[-5,20],[17,39],[-38,0],[-7,30],[-22,23],[-58,-7],[-9,-1],[-29,0],[-7,0],[-54,-7],[-31,0],[-100,1],[-47,10],[-109,-3]],[[53507,36145,0],[8,28],[1,74],[-44,0],[-107,2],[-130,1]],[[53235,36250,0],[8,76],[-1,10],[3,61],[-3,14],[-8,34],[0,49],[6,2],[3,17],[4,19],[9,55],[-54,44],[-53,35],[-43,26],[49,37],[95,142],[24,80],[-10,29],[-7,19],[-44,9],[-112,13],[-73,16],[-13,6],[-20,11],[-29,15],[-41,4],[-50,-51],[-25,45],[-18,50],[-83,75],[-1,1],[-57,77],[-31,38],[-30,29],[-79,117],[-69,100],[69,51],[-1,11],[-21,12],[-64,114],[-28,50],[-18,2],[2,13],[5,4],[-9,45],[27,38],[6,93],[22,43]],[[52472,38030,0],[233,-78]],[[52705,37952,0],[51,-35],[26,-18]],[[52782,37899,0],[31,-3]],[[52813,37896,0],[13,-25],[16,-30]],[[52842,37841,0],[103,-30],[79,2],[20,1],[14,0],[35,-5],[3,-75],[5,-77],[5,-44]],[[53106,37613,0],[9,-77]],[[53115,37536,0],[192,-56],[52,-16],[17,76],[19,91],[85,-15]],[[53480,37616,0],[2,84]],[[53482,37700,0],[21,28],[2,2]],[[53505,37730,0],[29,39],[13,34],[6,18]],[[53553,37821,0],[30,84]],[[53583,37905,0],[15,39],[87,102],[141,118]],[[53826,38164,0],[76,-32],[109,-153],[20,-26]],[[54031,37953,0],[11,-15],[12,-17]],[[54054,37921,0],[65,-59],[21,-18],[79,-69],[66,-52],[6,-21]],[[54291,37702,0],[22,-34],[19,-30]],[[54332,37638,0],[37,15],[27,11],[24,9],[36,12],[142,47],[15,5],[85,26],[67,23],[18,2],[259,82],[103,156],[34,8]],[[55624,38218,0],[6,11],[37,60]],[[55686,38297,0],[4,1],[112,43]],[[59209,42886,0],[0,1],[-1,1]],[[59204,42900,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[59202,42911,0],[0,1],[0,1],[0,1]],[[59201,42916,0],[0,1],[0,2],[0,1],[0,1]],[[59201,42921,0],[0,1],[0,2],[0,2],[0,1]],[[59201,42927,0],[0,2],[0,1],[0,1],[0,2]],[[59201,42933,0],[0,1],[0,1],[0,1],[0,1]],[[59201,42937,0],[0,1],[0,1],[0,1],[0,1]],[[59208,42976,0],[1,8],[1,1]],[[59210,42985,0],[0,4],[12,59]],[[59248,43171,0],[9,48],[7,39]],[[59264,43258,0],[11,50],[13,65]],[[59288,43373,0],[7,34],[3,12]],[[59298,43419,0],[10,49],[16,80]],[[59324,43548,0],[7,38],[15,67]],[[59349,43660,0],[0,1],[1,1]],[[59351,43664,0],[0,1],[1,0]],[[59352,43665,0],[0,1],[1,1],[1,0]],[[59356,43670,0],[1,1],[0,1]],[[59357,43672,0],[2,1],[1,1]],[[59360,43674,0],[1,0],[0,1],[1,0],[1,1],[1,1]],[[59364,43677,0],[1,1],[2,1]],[[59375,43683,0],[-14,3],[-3,2]],[[59358,43688,0],[-4,0],[-7,2]],[[59347,43690,0],[8,50],[4,20]],[[59359,43760,0],[1,3],[0,2]],[[59636,43670,0],[9,6],[6,3]],[[59678,43691,0],[52,18],[7,2]],[[59737,43711,0],[3,0],[26,-2]],[[59839,43726,0],[17,9],[8,4]],[[59915,43748,0],[1,0],[1,0]],[[59935,43753,0],[2,1],[1,1]],[[59950,43762,0],[7,9],[10,11]],[[56975,37279,0],[5,-6],[46,-53]],[[57191,37032,0],[-93,-28]],[[57098,37004,0],[-71,-43]],[[57027,36961,0],[-66,60]],[[56929,37073,0],[-9,16]],[[56920,37089,0],[-25,29]],[[56895,37118,0],[-67,53]],[[56789,37192,0],[-13,9]],[[56739,37011,0],[2,-28]],[[56741,36983,0],[6,-32]],[[56747,36951,0],[-14,-26]],[[56730,36918,0],[-94,36]],[[56542,36936,0],[-13,-46]],[[56529,36890,0],[-25,-94]],[[56504,36796,0],[-6,-23]],[[56441,36556,0],[-25,-96]],[[56416,36460,0],[-5,-16]],[[56355,36456,0],[-78,-96]],[[56325,36124,0],[175,-69]],[[56490,35841,0],[-14,-21]],[[56468,35784,0],[-17,-28]],[[56451,35756,0],[-11,-10]],[[56440,35746,0],[-15,-48]],[[56425,35698,0],[-23,-54]],[[56402,35644,0],[-1,-15]],[[56452,35451,0],[71,-97]],[[56757,35096,0],[-165,-145],[-149,152],[-44,-39],[-156,-137],[-30,32],[-35,35],[-16,22],[-18,26],[-10,49],[2,42],[5,33],[-10,1]],[[56131,35167,0],[-24,4],[-154,20],[-271,-226],[-51,-30],[-29,-12],[-36,-6],[-26,-1],[-25,4],[-33,10],[-51,25],[-219,231],[-41,43],[-41,-3],[-99,19],[-59,-45]],[[54972,35200,0],[-60,-33]],[[54912,35167,0],[-80,-19]],[[54832,35148,0],[-22,-16]],[[54810,35132,0],[-23,-24]],[[54787,35108,0],[-223,-222]],[[54564,34886,0],[-22,-21]],[[54542,34865,0],[-79,-32]],[[54463,34833,0],[-29,-27],[-37,-20],[-68,-79],[-80,-92],[-8,10]],[[54241,34625,0],[-42,57]],[[54199,34682,0],[22,40]],[[54221,34722,0],[-74,77]],[[54147,34799,0],[-19,-1],[-23,7],[-33,1]],[[54072,34806,0],[-32,-8]],[[54040,34798,0],[-51,-55],[-19,-22],[-28,9],[-31,17]],[[53911,34747,0],[44,212],[23,68],[41,90],[77,145],[47,89],[40,75],[73,134],[59,108],[19,35]],[[54334,35703,0],[52,97],[54,103]],[[54440,35903,0],[27,46],[-30,16],[-12,8],[-13,8],[-23,48]],[[54477,36148,0],[86,95]],[[54563,36243,0],[44,46]],[[54949,36638,0],[79,81]],[[55028,36719,0],[46,47]],[[55613,37302,0],[139,166]],[[55752,37468,0],[117,142]],[[56406,38096,0],[56,-37]],[[56462,38059,0],[76,-43]],[[56538,38016,0],[16,0]],[[56599,37992,0],[31,-23]],[[56630,37969,0],[102,-58]],[[56732,37911,0],[30,-17]],[[56848,37826,0],[5,-4]],[[56853,37822,0],[-35,-31]],[[56818,37791,0],[-58,-53]],[[56760,37738,0],[-52,-33]],[[56670,37685,0],[88,-88]],[[56807,37468,0],[0,-1],[22,-23]],[[56860,37408,0],[21,-25],[1,0],[1,-1]],[[56131,35167,0],[-2,-2],[-31,-25],[-36,-30],[-57,-47],[-122,-98],[31,20],[27,12],[29,6],[25,0],[30,-2],[34,-10],[25,-12],[23,-22],[128,-129],[44,-46],[120,-120],[56,-59],[32,-34],[52,-52],[-44,-32],[-104,-2],[-16,-1],[-54,0],[-70,0],[-47,1],[-80,-1],[0,-148],[1,-19],[0,-28],[-1,-31],[-30,-16],[18,-19],[17,-17],[1,-1],[44,-45],[67,-70],[72,-77],[-16,-19],[80,-82],[-218,-209]],[[56159,33701,0],[-18,18],[-23,26]],[[56118,33745,0],[-9,9],[-31,33]],[[56078,33787,0],[-9,9],[-22,24]],[[56047,33820,0],[-17,17],[-47,50],[-70,-58],[-52,5],[-38,-8],[-54,-25],[-13,1],[-45,-23],[-63,-12],[-40,-10],[-42,3],[-46,2],[5,-64],[14,-52],[2,-55],[-5,-19],[2,-45],[11,-49],[11,-35],[10,-17],[9,-32],[5,-30],[77,9],[-2,-235],[-114,-6],[-29,-1],[-25,-6],[-43,-1]],[[55448,33124,0],[-29,20],[-7,6]],[[55412,33150,0],[-29,1],[-12,1]],[[55371,33152,0],[-48,3],[-53,3]],[[55270,33158,0],[-14,-2],[-103,-14],[-14,1],[-55,-7],[13,-47],[9,-31],[14,-54],[14,-51],[9,-57],[4,-21],[11,-15],[10,-10],[22,-13],[50,-29],[47,-27],[41,-41],[37,-42],[36,-40],[38,-42],[11,-14],[21,-22],[36,-40],[31,-38],[26,-29],[52,-64],[55,-54]],[[55671,32355,0],[-58,-32],[-46,-26],[17,-31],[-38,-19],[4,-6],[-56,-28],[-8,14],[-63,-30],[2,-4],[19,-24],[-6,-3],[23,-21],[-78,-31],[-31,22],[-36,24],[-71,40],[-161,-84],[-6,-6],[-46,-60]],[[55032,32050,0],[-10,-13]],[[55022,32037,0],[-108,87],[-127,104],[-42,35],[-12,10],[-11,11],[-7,6],[-20,-14],[-18,-14],[-86,-59],[-79,2],[-209,7],[-13,-14],[-21,34],[-10,15],[-52,14],[0,-5],[-131,19],[-2,7],[-20,7],[-15,5],[-106,37],[-54,19],[-76,27],[-62,-20],[-10,-4],[-31,-11],[-95,-37],[-18,-5],[-38,8],[-17,47],[-7,18],[-26,-6]],[[53499,32367,0],[-13,81],[-13,100],[-5,70],[-28,406],[-20,268]],[[53420,33292,0],[5,23],[1,6]],[[53426,33321,0],[6,29],[-81,231],[-5,13],[-4,19],[-2,39],[5,20],[4,19]],[[53349,33691,0],[1,1],[9,27]],[[53359,33719,0],[-36,7],[-25,5]],[[53298,33731,0],[17,33],[17,36],[26,45],[15,22],[40,53],[21,33],[58,106]],[[53492,34059,0],[29,60],[26,53]],[[53547,34172,0],[23,44],[27,25],[64,99],[30,42],[47,81],[27,38],[19,33],[8,11],[27,70]],[[53819,34615,0],[27,-9],[11,-3]],[[53857,34603,0],[54,144]],[[54040,34798,0],[6,2],[26,6]],[[54147,34799,0],[48,-49],[26,-28]],[[54221,34722,0],[-8,-13],[-14,-27]],[[54199,34682,0],[23,-32],[19,-25]],[[54463,34833,0],[49,20],[30,12]],[[54564,34886,0],[16,16],[207,206]],[[54810,35132,0],[1,0],[21,16]],[[54832,35148,0],[33,8],[47,11]],[[54912,35167,0],[53,30],[7,3]],[[68149,36269,0],[-25,-299]],[[68124,35970,0],[-22,-218]],[[68097,35491,0],[-3,-134],[-2,-52],[-4,-73],[-2,-26],[5,-61],[5,-45],[-3,-73],[-1,-11],[5,-78]],[[67244,34925,0],[-4,78],[-1,40]],[[67206,35363,0],[-14,129],[-13,130],[-4,39]],[[67161,35796,0],[-13,129],[-18,169]],[[67125,36145,0],[-3,34],[-8,75]],[[67114,36254,0],[-10,92],[-13,133]],[[67256,37218,0],[39,-4]],[[55022,32037,0],[7,9],[3,4]],[[55671,32355,0],[51,-55],[18,-30],[95,30],[21,13],[15,9],[63,38],[12,8],[52,-88],[77,-136],[29,-61],[107,26]],[[56211,32109,0],[74,-176],[88,-207]],[[56373,31726,0],[35,-85],[41,-95],[17,-42],[-21,-20],[17,-48],[11,-30]],[[56473,31406,0],[4,-13],[2,-5]],[[56479,31388,0],[3,-12],[7,-20]],[[56489,31356,0],[6,-19],[17,-49],[14,-41],[2,-7],[17,-49],[9,-21],[11,-26],[6,-16],[13,-31],[22,-45],[35,-55],[9,-12],[-98,-56],[-16,-9],[-10,-5],[-22,-17],[-17,-7],[-27,-8],[-27,-1],[-13,3],[-1,0]],[[56419,30885,0],[-16,3],[-2,1]],[[56401,30889,0],[-3,0],[-8,4],[-8,4],[-3,0],[-13,4],[-16,1],[-6,0],[-5,0]],[[56339,30902,0],[-1,0],[-7,-1]],[[56331,30901,0],[-16,-5]],[[56315,30896,0],[-5,-3],[-6,-3]],[[56304,30890,0],[-6,-3],[-8,-8],[-8,-10],[-2,-2],[-102,-94]],[[56178,30773,0],[-5,-9],[-11,-16]],[[56162,30748,0],[-35,12],[-84,-95],[-4,-7],[-29,-76],[-19,-56],[-57,-140],[-27,6],[-102,21],[-49,-186]],[[55756,30227,0],[-2,-8],[-3,-10],[-1,-4]],[[55750,30205,0],[20,-5],[42,-9]],[[55812,30191,0],[-10,-47]],[[55802,30144,0],[-9,-38],[-29,-133]],[[55764,29973,0],[-83,-166],[-21,-42]],[[55660,29765,0],[-120,38],[-104,35],[-99,33],[-98,33],[-111,36],[-119,40],[-129,43],[-132,43],[-58,18],[-16,48],[-40,121],[-51,155],[-3,125]],[[54580,30533,0],[-92,-6]],[[54488,30527,0],[-46,-8],[-32,-7],[-26,-5],[-77,-22]],[[54307,30485,0],[-50,-20]],[[54257,30465,0],[-45,-21]],[[54212,30444,0],[-24,-16],[-45,-29]],[[54143,30399,0],[-40,82],[-4,7]],[[54099,30488,0],[-43,92],[-8,-2],[-149,-35],[-14,-4],[-81,-27],[-192,-61],[-27,-10],[-5,-8],[6,-36]],[[53586,30397,0],[-26,11],[-69,29]],[[53491,30437,0],[-4,3],[-3,0],[-144,14],[-33,-3]],[[53307,30451,0],[12,14]],[[53319,30465,0],[43,57]],[[53362,30522,0],[-46,66]],[[53316,30588,0],[-33,46]],[[53283,30634,0],[-3,4]],[[53280,30638,0],[-31,45]],[[53249,30683,0],[-30,42]],[[53219,30725,0],[77,49]],[[53296,30774,0],[25,16]],[[53321,30790,0],[112,71]],[[53433,30861,0],[41,26]],[[53474,30887,0],[-62,50]],[[53412,30937,0],[-38,25],[11,14]],[[53385,30976,0],[-71,54]],[[53314,31030,0],[-181,247]],[[53133,31277,0],[54,44]],[[53187,31321,0],[-27,140]],[[53160,31461,0],[-59,137]],[[53101,31598,0],[-32,72]],[[53069,31670,0],[-6,33]],[[53063,31703,0],[-13,70]],[[53050,31773,0],[-4,20]],[[53046,31793,0],[-1,18]],[[53045,31811,0],[1,32]],[[53046,31843,0],[-28,2]],[[53018,31845,0],[-32,2]],[[52986,31847,0],[-33,121],[0,2]],[[52953,31970,0],[12,48]],[[52965,32018,0],[0,1],[3,10]],[[52968,32029,0],[7,14],[11,24]],[[52986,32067,0],[53,72]],[[53039,32139,0],[25,33],[30,40]],[[53094,32212,0],[-1,24],[0,4]],[[53093,32240,0],[-5,77],[-1,7],[-3,50]],[[53084,32374,0],[-3,52]],[[53081,32426,0],[90,10],[86,9]],[[53257,32445,0],[92,10],[23,3]],[[53372,32458,0],[48,6]],[[53420,32464,0],[76,-94],[3,-3]],[[59612,36410,0],[-3,-8],[-11,-1],[18,-144],[18,-84],[17,-43],[9,-27],[26,-92],[7,-19],[8,-19],[-55,-23],[34,-95],[36,-126],[38,-134],[23,-81],[15,-53],[13,-48],[25,-86],[-56,-15],[5,-25],[32,-147],[4,-29]],[[59815,35111,0],[-28,3],[-80,7],[-4,-1],[-57,-1],[-36,6],[-89,-3],[-17,11],[-25,-14]],[[59794,37322,0],[-42,-104],[-61,-154],[-30,-84],[-46,-146],[-24,-98],[-14,-54],[-9,-35],[-27,-134],[-22,-110],[93,7]],[[58495,43927,0],[-3,-10],[-4,-13]],[[58471,43841,0],[-14,-54],[-14,-52]],[[58443,43735,0],[0,-1],[-10,-36]],[[58433,43698,0],[-4,-16],[-5,-17]],[[58378,43496,0],[-6,-25],[-6,-23]],[[58366,43448,0],[-41,-147],[-16,-61]],[[58309,43240,0],[-3,-10],[-5,-18]],[[58301,43212,0],[-12,-46],[-4,-17]],[[58285,43149,0],[-9,-35],[0,-1]],[[58162,42691,0],[-1,0],[-34,-11],[-85,-18],[-40,-9],[-107,-24],[-20,-5],[-17,-4],[-21,2],[-20,1],[-131,-33]],[[57686,42590,0],[4,27],[4,25],[12,80],[30,-2],[0,-6],[35,-1],[12,-1],[2,0],[41,-3],[9,49],[36,212],[28,114],[33,129],[-141,37],[2,9],[3,11],[-43,14],[-3,0],[-64,20],[-18,24],[-1,2],[-1,0],[-20,27],[-2,2],[-2,3],[-12,15],[-14,19],[-8,63],[-9,86],[-84,49],[-73,40],[-5,2],[-34,19],[9,38],[1,5],[-112,30],[-71,20],[-24,7],[-12,6],[-9,5],[-6,4],[-7,6],[-2,-8],[-3,-17],[-13,-59],[-32,-2],[-18,0],[-62,-2],[-11,0],[-25,135],[17,17],[-3,11],[-26,106],[-9,25],[-11,32],[-5,15],[-4,17],[-5,15],[-2,6],[-5,18],[-6,21],[-2,15],[-4,29],[-5,39],[-3,83]],[[62300,23314,0],[-1,2],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-3,2],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0]],[[62262,23349,0],[-1,0],[-1,0]],[[62260,23349,0],[-1,1]],[[62259,23350,0],[-1,0],[-1,0]],[[62257,23350,0],[-1,1],[-1,0],[-2,0]],[[62253,23351,0],[-1,0],[-1,0]],[[62251,23351,0],[-1,0]],[[62250,23351,0],[-1,0],[-1,0]],[[62248,23351,0],[-1,0],[-1,0],[-1,0]],[[62245,23351,0],[-1,0],[-1,0]],[[62243,23351,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-3,-1],[-115,-58],[-25,-15],[-94,-46],[-19,-10],[-18,-9],[-188,-98],[-341,-167],[-63,-27],[-28,-8],[-94,-23],[-11,77],[-45,-5]],[[61181,22955,0],[-31,-3],[-30,-4]],[[61120,22948,0],[-26,-3],[-65,-5],[-35,-1],[-55,2],[-56,2],[-92,8],[-16,1],[-47,3],[-2,1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-3,2],[-1,0]],[[60709,22962,0],[-1,1],[-1,0]],[[60707,22963,0],[-4,4],[-1,2],[-4,2],[0,2],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,6],[0,1],[0,1],[0,3],[0,4],[0,4],[1,4],[1,2],[0,2],[1,0],[0,2],[1,1],[0,1],[1,1],[1,2],[0,1],[2,1],[0,2],[1,1],[2,1],[4,4],[3,3],[5,3],[-28,52],[-264,-122],[-44,-19],[-23,-8],[-42,-17],[-44,-13],[-25,-6],[-41,-9],[-22,0],[-22,5],[-20,6],[-16,21],[-25,27],[-8,6],[-12,11],[-24,18],[-10,6],[-14,8],[-31,15],[-48,15],[-43,10]],[[59906,23042,0],[-63,9],[-44,6]],[[59799,23057,0],[-111,23],[-86,23],[23,75],[81,40],[66,32],[-201,296],[-3,4],[126,65],[215,110],[-55,110],[-60,119],[-46,91],[-13,27],[-58,112],[133,59],[7,27],[-1,6],[-13,53],[-56,18],[-2,1],[-2,1],[-2,1],[-2,1],[-1,3],[-2,1],[-1,1],[-1,2],[-2,1],[-1,2],[-1,1],[-1,2],[0,2],[-1,1],[-1,3],[0,1],[0,2],[-1,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[1,2],[0,1],[1,2],[0,3],[1,1],[1,1],[1,2],[1,2],[13,19],[29,49],[11,24],[10,29],[13,45],[8,27],[1,2],[0,2],[0,1],[1,2],[1,2],[0,2],[1,1],[2,1],[0,3],[1,1],[1,2],[1,1],[0,1],[1,2],[2,2],[0,1],[1,1],[2,3],[1,1],[1,1],[2,2],[1,1],[1,1],[1,2],[1,1],[2,1],[1,2],[2,1],[1,1],[2,2],[2,1],[2,1],[1,1],[2,2],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[1,1],[3,1],[3,1],[2,1],[2,0],[2,1],[2,0],[2,1],[1,0],[2,0],[1,1],[2,0],[1,2],[12,0],[-7,103]],[[59894,24763,0],[546,34],[521,31],[479,28],[1,0],[1,1],[1,0],[1,0],[1,0]],[[61445,24857,0],[1,0],[0,1]],[[61446,24858,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[0,2],[1,0],[1,1],[1,0],[0,1],[1,2],[1,0],[0,1],[1,0],[0,2],[2,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,2],[1,0],[0,1],[1,1]],[[61509,24901,0],[0,1],[1,1]],[[61510,24903,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[61513,24911,0],[0,1],[1,1]],[[61514,24913,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1]],[[61518,24927,0],[0,1],[0,1]],[[61518,24929,0],[0,1],[1,2]],[[61519,24932,0],[0,-5]],[[61519,24927,0],[0,-1],[0,-4]],[[61519,24922,0],[0,-1],[0,-3]],[[61519,24918,0],[0,-5]],[[61519,24913,0],[0,-19]],[[61519,24894,0],[0,-1]],[[61519,24893,0],[0,-3],[0,-6]],[[61519,24884,0],[0,-4],[0,-2]],[[61519,24878,0],[0,-4],[0,-3],[0,-2],[0,-1]],[[61519,24868,0],[1,-2],[0,-1],[0,-4]],[[61520,24861,0],[0,-2],[1,-17]],[[61521,24842,0],[1,-3],[0,-3],[0,-1]],[[61522,24835,0],[0,-1],[0,-2]],[[61522,24832,0],[1,-1],[0,-4],[0,-1],[0,-3],[1,-2]],[[61524,24821,0],[0,-1],[0,-3]],[[61524,24817,0],[0,-2],[1,-1],[0,-2]],[[61525,24812,0],[0,-2],[0,-1]],[[61525,24809,0],[1,-2],[0,-3]],[[61526,24804,0],[1,-5],[1,-2]],[[61528,24797,0],[0,-1]],[[61528,24796,0],[0,-2]],[[61528,24794,0],[1,-5],[0,-2],[1,-5]],[[61530,24782,0],[1,-3],[0,-2]],[[61531,24777,0],[2,-6]],[[61533,24771,0],[0,-3]],[[61533,24768,0],[0,-1],[0,-1]],[[61533,24766,0],[1,0],[1,-5],[0,-2]],[[61535,24759,0],[0,-1],[1,-1]],[[61536,24757,0],[0,-1],[0,-2]],[[61536,24754,0],[0,-1],[1,-3]],[[61537,24750,0],[0,-1],[1,-1]],[[61538,24748,0],[0,-1],[0,-2]],[[61538,24745,0],[1,-1],[0,-3]],[[61539,24741,0],[2,-3],[0,-1]],[[61541,24737,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-3],[0,-1]],[[61543,24728,0],[1,-1]],[[61544,24727,0],[0,-1],[0,-1],[1,-2]],[[61545,24723,0],[0,-1],[0,-1]],[[61545,24721,0],[1,-1]],[[61546,24720,0],[0,-2]],[[61546,24718,0],[2,-5]],[[61548,24713,0],[0,-1],[1,-2],[0,-1],[1,-3]],[[61550,24706,0],[1,-3]],[[61551,24703,0],[0,-1],[0,-1],[1,0]],[[61552,24701,0],[0,-1],[1,0]],[[61553,24700,0],[0,-1]],[[61553,24699,0],[0,-2],[1,0]],[[61554,24697,0],[0,-2],[1,-1],[0,-1]],[[61555,24693,0],[0,-2],[1,0]],[[61556,24691,0],[0,-1],[1,-1]],[[61557,24689,0],[0,-2]],[[61557,24687,0],[1,-3]],[[61558,24684,0],[0,-1],[1,0]],[[61559,24683,0],[0,-1]],[[61559,24682,0],[1,-1]],[[61560,24681,0],[0,-1],[0,-1],[1,-1]],[[61561,24678,0],[0,-1],[1,-3]],[[61562,24674,0],[1,0],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1]],[[61565,24668,0],[0,-1],[1,0]],[[61566,24667,0],[0,-1],[1,-1],[0,-1],[0,-1],[2,-3],[0,-1],[0,-1],[1,-1],[0,-1]],[[61570,24656,0],[1,-1]],[[61571,24655,0],[0,-1]],[[61571,24654,0],[0,-1],[1,-1]],[[61572,24652,0],[1,-1],[0,-2],[1,0]],[[61574,24649,0],[0,-2]],[[61574,24647,0],[1,-1]],[[61575,24646,0],[0,-1],[1,-1],[0,-1]],[[61576,24643,0],[1,-2],[1,0]],[[61578,24641,0],[0,-1],[1,-1],[0,-2],[1,0],[0,-1]],[[61580,24636,0],[0,-1],[1,-1]],[[61581,24634,0],[0,-1],[1,0],[0,-1],[0,-1]],[[61582,24631,0],[0,-1],[1,-1]],[[61583,24629,0],[1,-1]],[[61584,24628,0],[0,-2],[1,0]],[[61585,24626,0],[0,-1]],[[61585,24625,0],[0,-1],[1,0]],[[61586,24624,0],[0,-1]],[[61586,24623,0],[0,-1],[1,0]],[[61587,24622,0],[0,-1],[1,-1],[0,-2],[1,0]],[[61589,24618,0],[0,-2],[1,0]],[[61590,24616,0],[0,-1],[1,-1]],[[61591,24614,0],[1,-1]],[[61592,24613,0],[0,-2],[1,0]],[[61593,24611,0],[0,-1],[1,-1],[0,-1]],[[61594,24608,0],[1,-2],[1,-1]],[[61596,24605,0],[0,-1],[1,-1]],[[61597,24603,0],[1,-1],[0,-1]],[[61598,24601,0],[1,-1]],[[61599,24600,0],[0,-1],[1,-1],[0,-1]],[[61600,24597,0],[1,-2],[1,-1],[1,0]],[[61603,24594,0],[0,-2],[1,-1]],[[61604,24591,0],[0,-1],[1,-1],[0,-1],[1,0]],[[61606,24588,0],[0,-1],[1,0]],[[61607,24587,0],[0,-1]],[[61607,24586,0],[0,-1],[1,-1],[0,-1]],[[61608,24583,0],[1,-1]],[[61609,24582,0],[1,-2]],[[61610,24580,0],[1,-1],[1,-1]],[[61612,24578,0],[0,-1],[0,-1]],[[61612,24576,0],[1,-1],[1,-2],[1,-1]],[[61615,24572,0],[2,-2],[0,-1]],[[61617,24569,0],[0,-1],[1,0]],[[61618,24568,0],[0,-1]],[[61618,24567,0],[1,-2],[1,-1],[1,-1]],[[61621,24563,0],[0,-1]],[[61621,24562,0],[1,-2],[1,0]],[[61623,24560,0],[0,-1],[1,0]],[[61624,24559,0],[0,-1],[0,-1]],[[61624,24557,0],[1,-1]],[[61625,24556,0],[1,-2],[1,-1],[0,-1],[2,-1]],[[61629,24551,0],[0,-1],[1,-1],[1,-1],[0,-1]],[[61631,24547,0],[2,-3]],[[61633,24544,0],[1,-2]],[[61634,24542,0],[0,-1]],[[61634,24541,0],[0,-1],[1,0]],[[61635,24540,0],[0,-2]],[[61635,24538,0],[1,-1],[0,-1]],[[61636,24536,0],[0,-2],[0,-1]],[[61636,24533,0],[0,-2],[1,0]],[[61637,24531,0],[0,-2],[0,-2]],[[61637,24527,0],[0,-4],[0,-2]],[[61637,24521,0],[0,-2]],[[61637,24519,0],[-1,-1],[0,-1],[0,-1]],[[61636,24516,0],[0,-1],[0,-1],[-1,-4]],[[61635,24510,0],[-1,-1],[0,-1]],[[61634,24508,0],[-1,-1],[0,-1]],[[61633,24506,0],[0,-1],[-1,-1]],[[61632,24504,0],[0,-1],[-1,0],[0,-1]],[[61631,24502,0],[-1,-2],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-2,-2],[0,-1],[-1,-1]],[[61623,24491,0],[-3,-3],[-2,-1],[-3,-2]],[[61615,24485,0],[3,-4],[42,-64],[59,-87],[40,-59]],[[61759,24271,0],[41,-62]],[[61800,24209,0],[9,-14],[29,-43]],[[61838,24152,0],[14,-21],[35,-52],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[83,-137],[37,-68],[38,-72],[7,-15],[20,-39],[35,-86],[8,-21],[12,-30],[3,-8],[26,-67],[4,-12],[5,-16],[56,-156],[6,-22]],[[62732,27152,0],[70,13],[55,-253]],[[62857,26912,0],[6,-29],[6,-32]],[[62869,26851,0],[5,-69]],[[62873,26717,0],[-4,-39],[-14,-78]],[[62743,26350,0],[-40,-53],[-65,-71]],[[62638,26226,0],[-55,53],[-42,40],[-1,1]],[[62540,26320,0],[-439,-409]],[[62101,25911,0],[-69,-64]],[[62032,25847,0],[-59,-60]],[[61973,25787,0],[-70,-79]],[[61903,25708,0],[-55,-71]],[[61848,25637,0],[-38,-53],[-25,-33]],[[61785,25551,0],[-123,-210]],[[61662,25341,0],[-70,-134],[-20,-46],[-24,-68]],[[61548,25093,0],[-10,-34],[-10,-45]],[[61528,25014,0],[-7,-55]],[[61521,24959,0],[-2,-27]],[[61518,24929,0],[0,-2]],[[61514,24913,0],[-1,-2]],[[61510,24903,0],[-1,-2]],[[61446,24858,0],[-1,-1]],[[59894,24763,0],[-280,-15],[-274,-15],[-165,-9]],[[59175,24724,0],[-23,573],[-11,204],[198,209]],[[59339,25710,0],[1412,382],[-8,25],[-147,480],[6,11]],[[60602,26608,0],[8,-4],[12,3],[37,14],[126,26],[186,32],[-4,-50],[1,-12],[33,-81],[33,-41],[12,1],[26,-99],[106,-55],[25,-108],[358,98],[157,58],[278,161],[227,156],[49,23],[30,38],[67,168],[25,144],[6,23],[22,23],[32,23],[19,9],[139,39],[23,-6],[10,-5],[9,-9],[7,-11],[6,-28],[34,7],[31,7]],[[62734,26029,0],[1,0],[120,46]],[[62855,26075,0],[126,46]],[[62981,26121,0],[124,47],[122,46]],[[63243,26220,0],[164,61]],[[63512,26021,0],[1,-3]],[[63513,26018,0],[2,-5]],[[63515,26013,0],[1,0],[19,-45]],[[63426,25921,0],[-29,-11]],[[63397,25910,0],[-14,-6]],[[63383,25904,0],[9,-21]],[[63469,25701,0],[6,-22]],[[63441,25644,0],[-33,-39],[-42,-56]],[[63290,25423,0],[-30,-63],[-22,-65]],[[63238,25295,0],[-5,-17],[-1,0],[-6,-21]],[[63676,24904,0],[5,-43],[13,-84]],[[63698,24760,0],[16,-77],[12,-44]],[[63726,24639,0],[4,-13],[20,-60]],[[63776,24501,0],[6,-13],[72,-156]],[[63854,24332,0],[9,-16],[34,-77]],[[63988,24047,0],[0,-2]],[[63988,24045,0],[0,-1],[0,-2],[1,-1]],[[63989,24041,0],[0,-1],[0,-1]],[[63989,24039,0],[0,-3]],[[63989,24033,0],[0,-6]],[[63989,24024,0],[0,-2]],[[63989,24020,0],[-1,-4]],[[63988,24014,0],[-1,-2]],[[63987,24010,0],[0,-1],[-1,-1]],[[63985,24006,0],[0,-1],[0,-1]],[[63983,23999,0],[-1,0],[0,-2]],[[63981,23995,0],[-1,-1],[0,-1]],[[63980,23993,0],[-1,-1]],[[63978,23990,0],[0,-1],[-1,-1]],[[63977,23988,0],[-1,-2]],[[63976,23986,0],[-1,-1]],[[63975,23985,0],[-1,-1],[0,-1]],[[63974,23983,0],[-1,-1]],[[63972,23981,0],[-2,-2],[0,-1]],[[63970,23978,0],[-2,-2]],[[63967,23974,0],[-1,0],[-3,-3]],[[63963,23970,0],[-2,-1],[-3,-3]],[[63955,23965,0],[-4,-4]],[[63950,23961,0],[-5,-2],[-2,-1],[-1,0],[-2,-2]],[[63939,23956,0],[-1,0],[-1,-1]],[[63933,23954,0],[-1,0],[-1,0],[0,-1]],[[63929,23953,0],[-1,0],[-1,0],[0,-1]],[[63927,23952,0],[-1,0],[-1,0],[0,-1]],[[63924,23951,0],[-2,0]],[[63922,23951,0],[-1,0],[0,-1]],[[63921,23950,0],[-2,0]],[[63918,23950,0],[-4,0],[-1,-1]],[[63913,23949,0],[-5,0]],[[63908,23949,0],[-1,0],[-12,0],[-2,0]],[[63892,23949,0],[-2,0]],[[63866,23851,0],[-76,18]],[[63790,23869,0],[-88,29],[-60,23],[-12,5],[-1,0]],[[63629,23926,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[63624,23928,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0]],[[63617,23930,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-3,1]],[[63607,23935,0],[-1,0]],[[63606,23935,0],[-1,1],[-1,0]],[[63604,23936,0],[-1,0]],[[63603,23936,0],[-1,1],[-1,0],[-2,1]],[[63599,23938,0],[-1,0],[-2,1],[-1,0]],[[63595,23939,0],[-2,1]],[[63593,23940,0],[-1,0],[-2,2],[-1,0]],[[63589,23942,0],[-2,1]],[[63587,23943,0],[-1,0],[-2,1],[-1,0],[-2,2],[-1,0],[-2,1],[-1,0]],[[63577,23947,0],[-2,2],[-1,0],[-2,1]],[[63572,23950,0],[-1,0]],[[63571,23950,0],[-2,1]],[[63569,23951,0],[-1,1],[-1,0],[-1,1],[-1,0]],[[63565,23953,0],[-1,0]],[[63564,23953,0],[-1,1]],[[63563,23954,0],[-1,0],[-2,1],[-2,1],[-1,0]],[[63557,23956,0],[0,1],[-2,1],[-1,0]],[[63554,23958,0],[-1,1],[-1,0]],[[63552,23959,0],[-1,0]],[[63551,23959,0],[-2,2],[-1,0]],[[63548,23961,0],[-1,0],[-1,0]],[[63546,23961,0],[-1,1]],[[63545,23962,0],[0,1],[-1,0],[-2,0]],[[63542,23963,0],[-1,2],[-1,0],[-3,1],[-1,0]],[[63536,23966,0],[-1,1],[-2,2],[-1,0],[-1,0]],[[63531,23969,0],[-2,1]],[[63529,23970,0],[-1,0]],[[63528,23970,0],[-2,2]],[[63526,23972,0],[-2,1]],[[63524,23973,0],[-2,1],[-2,1]],[[63520,23975,0],[-1,0]],[[63519,23975,0],[-1,1],[-2,2],[-1,0],[-1,0],[-2,2],[-1,0],[-1,1],[-3,1]],[[63507,23982,0],[-1,0]],[[63506,23982,0],[-1,1],[-3,2],[-1,0],[-5,3]],[[63496,23988,0],[-1,0],[-3,3]],[[63492,23991,0],[-1,0]],[[63491,23991,0],[-5,3],[-6,4],[-1,0],[-5,3]],[[63474,24001,0],[-1,0]],[[63473,24001,0],[-5,3]],[[63468,24004,0],[-1,1],[-16,11]],[[63451,24016,0],[-48,29]],[[63403,24045,0],[-57,39]],[[63346,24084,0],[-9,7],[-63,47]],[[63274,24138,0],[-183,141],[-44,32]],[[63047,24311,0],[-54,35],[-82,45],[-46,21],[-42,17]],[[62823,24429,0],[-81,26]],[[62742,24455,0],[-56,17]],[[62686,24472,0],[-24,5]],[[62662,24477,0],[-32,6]],[[62630,24483,0],[-1,1],[-3,0],[-1,0]],[[62625,24484,0],[-4,0],[-1,0]],[[62620,24484,0],[0,1],[-4,0],[-1,0]],[[62615,24485,0],[-1,0]],[[62614,24485,0],[-3,0],[-1,0]],[[62610,24485,0],[-1,1]],[[62609,24486,0],[-3,0],[-3,0]],[[62603,24486,0],[-1,1]],[[62602,24487,0],[-1,0],[-5,0]],[[62596,24487,0],[-1,1],[-3,0],[-3,0],[-1,0]],[[62588,24488,0],[-6,0],[-2,0]],[[62580,24488,0],[-1,0]],[[62579,24488,0],[0,1],[-7,0],[-4,0],[-1,0]],[[62567,24489,0],[-5,0],[-15,0]],[[62547,24489,0],[-1,1]],[[62546,24490,0],[-4,0],[-13,0],[-2,0]],[[62527,24490,0],[-1,-1],[-11,0]],[[62515,24489,0],[-39,-4],[-26,-2]],[[62450,24483,0],[-59,-14],[-46,-14],[-57,-18]],[[62288,24437,0],[-98,-38]],[[62190,24399,0],[-96,-47]],[[62094,24352,0],[-12,-5],[-21,-11]],[[62061,24336,0],[-1,0],[-3,-2]],[[62057,24334,0],[-1,0]],[[62056,24334,0],[-3,-2]],[[62053,24332,0],[-1,-1]],[[62052,24331,0],[-3,-2],[-3,-2],[-1,-2]],[[62045,24325,0],[-1,-1],[-1,-1]],[[62043,24323,0],[-2,-2]],[[62041,24321,0],[-1,-1]],[[62040,24320,0],[-2,-2]],[[62038,24318,0],[0,-1]],[[62038,24317,0],[-2,-1],[0,-1]],[[62036,24315,0],[-1,-2]],[[62035,24313,0],[-1,-1]],[[62034,24312,0],[-1,-1],[0,-1]],[[62033,24310,0],[-1,-1]],[[62032,24309,0],[0,-1],[0,-1],[-1,-1],[0,-1]],[[62031,24305,0],[-1,-1]],[[62030,24304,0],[-1,-2]],[[62029,24302,0],[-1,-1],[0,-1]],[[62028,24300,0],[-1,-3]],[[62027,24297,0],[-1,-2],[0,-1]],[[62026,24294,0],[0,-1]],[[62026,24293,0],[-1,-2],[0,-4]],[[62025,24287,0],[0,-1]],[[62025,24286,0],[-1,-2],[0,-1]],[[62024,24283,0],[0,-4],[0,-4]],[[62024,24275,0],[0,-1],[1,-3]],[[62025,24271,0],[0,-3]],[[62025,24268,0],[0,-2]],[[62025,24266,0],[1,-2],[0,-1]],[[62026,24263,0],[0,-1]],[[62026,24262,0],[1,-2],[0,-1]],[[62027,24259,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[62029,24254,0],[1,0],[0,-1]],[[62030,24253,0],[0,-1],[1,-1]],[[62031,24251,0],[0,-1],[1,-1]],[[62032,24249,0],[0,-1]],[[62032,24248,0],[1,-1]],[[62033,24247,0],[0,-1],[1,-1]],[[62034,24245,0],[-22,-10],[-174,-82],[-38,56]],[[61759,24271,0],[-39,60],[-60,87],[-44,67],[-1,0]],[[61615,24485,0],[3,3],[2,1],[3,2]],[[61631,24502,0],[1,2]],[[61632,24504,0],[1,2]],[[61634,24508,0],[0,2],[1,0]],[[61636,24516,0],[0,3],[1,0]],[[61637,24521,0],[0,3],[0,3]],[[61637,24527,0],[0,4]],[[61637,24531,0],[-1,2]],[[61636,24533,0],[0,2],[0,1]],[[61635,24538,0],[0,1],[0,1]],[[61635,24540,0],[-1,1]],[[61634,24542,0],[0,2],[-1,0]],[[61631,24547,0],[0,2],[-1,1],[-1,1]],[[61629,24551,0],[-1,1],[-1,2],[-1,1],[-1,1]],[[61624,24557,0],[0,2]],[[61624,24559,0],[-1,1]],[[61623,24560,0],[-1,1],[-1,1]],[[61621,24563,0],[-1,2],[-1,1],[-1,1]],[[61618,24568,0],[-1,1]],[[61617,24569,0],[0,2],[-2,1]],[[61612,24576,0],[0,2]],[[61610,24580,0],[0,1],[-1,1]],[[61608,24583,0],[0,2],[-1,1]],[[61607,24587,0],[-1,1]],[[61606,24588,0],[-1,2],[-1,1]],[[61603,24594,0],[-1,1],[-1,1],[-1,1]],[[61599,24600,0],[0,1],[-1,0]],[[61597,24603,0],[-1,2]],[[61596,24605,0],[0,1],[-1,1],[-1,1]],[[61593,24611,0],[-1,1],[0,1]],[[61591,24614,0],[-1,2]],[[61590,24616,0],[-1,1],[0,1]],[[61587,24622,0],[-1,1]],[[61586,24624,0],[-1,1]],[[61585,24626,0],[-1,1],[0,1]],[[61583,24629,0],[0,1],[-1,1]],[[61581,24634,0],[-1,2]],[[61578,24641,0],[-1,1],[-1,1]],[[61575,24646,0],[0,1],[-1,0]],[[61574,24647,0],[0,1],[0,1]],[[61572,24652,0],[0,1],[-1,1]],[[61571,24655,0],[0,1],[-1,0]],[[61566,24667,0],[-1,1]],[[61562,24674,0],[-1,4]],[[61560,24681,0],[0,1],[-1,0]],[[61559,24683,0],[-1,1]],[[61557,24687,0],[0,1],[0,1]],[[61556,24691,0],[-1,1],[0,1]],[[61554,24697,0],[-1,1],[0,1]],[[61553,24700,0],[-1,1]],[[61551,24703,0],[0,1],[-1,2]],[[61548,24713,0],[-1,1],[0,2],[0,1],[-1,1]],[[61546,24718,0],[0,1],[0,1]],[[61545,24721,0],[0,2]],[[61544,24727,0],[0,1],[-1,0]],[[61541,24737,0],[0,2],[-2,2]],[[61538,24745,0],[0,3]],[[61538,24748,0],[-1,2]],[[61537,24750,0],[-1,4]],[[61536,24757,0],[-1,2]],[[61533,24766,0],[0,2]],[[61533,24768,0],[0,1],[0,2]],[[61531,24777,0],[0,3],[-1,2]],[[61530,24782,0],[0,5],[-1,3],[-1,4]],[[61528,24794,0],[0,1],[0,1]],[[61528,24797,0],[-1,3],[-1,4]],[[61525,24809,0],[0,2],[0,1]],[[61525,24812,0],[0,3],[-1,1],[0,1]],[[61524,24817,0],[0,4]],[[61522,24832,0],[0,3]],[[61521,24842,0],[-1,18],[0,1]],[[61519,24868,0],[0,2],[0,2],[0,3],[0,3]],[[61519,24878,0],[0,3],[0,3]],[[61519,24884,0],[0,7],[0,2]],[[61519,24894,0],[0,5],[0,14]],[[61519,24918,0],[0,4]],[[61519,24922,0],[0,5]],[[61519,24927,0],[0,6],[2,26]],[[61528,25014,0],[10,46],[10,33]],[[61548,25093,0],[9,27],[15,42],[20,46],[6,12],[42,79],[22,42]],[[61662,25341,0],[22,36],[101,174]],[[61785,25551,0],[63,86]],[[61903,25708,0],[6,7],[64,72]],[[62032,25847,0],[63,58],[6,6]],[[62101,25911,0],[37,35],[402,374]],[[62547,24489,0],[20,0]],[[62567,24489,0],[1,-1],[11,0]],[[62580,24488,0],[8,0]],[[62588,24488,0],[0,-1],[1,0],[6,0],[1,0]],[[62596,24487,0],[6,0]],[[62602,24487,0],[0,-1],[1,0]],[[62603,24486,0],[6,0]],[[62610,24485,0],[4,0]],[[62615,24485,0],[4,0],[1,-1]],[[62620,24484,0],[5,0]],[[62625,24484,0],[1,-1],[3,0],[1,0]],[[62662,24477,0],[21,-5],[3,0]],[[62742,24455,0],[33,-11],[48,-15]],[[62823,24429,0],[32,-13],[10,-5],[33,-14],[13,-7],[82,-45],[43,-27],[11,-7]],[[63274,24138,0],[53,-40],[10,-8],[3,-2],[6,-4]],[[63403,24045,0],[16,-10],[32,-19]],[[63451,24016,0],[16,-12],[1,0]],[[63468,24004,0],[4,-3],[1,0]],[[63474,24001,0],[3,-2],[2,-2],[1,0],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[5,-2]],[[63492,23991,0],[4,-3]],[[63496,23988,0],[5,-4],[1,0],[4,-2]],[[63507,23982,0],[2,-1],[1,-1],[1,-1],[1,0],[3,-2],[1,0],[3,-2]],[[63520,23975,0],[4,-2]],[[63524,23973,0],[1,-1],[1,0]],[[63526,23972,0],[1,-1],[1,-1]],[[63529,23970,0],[1,0],[1,-1]],[[63531,23969,0],[1,-1],[1,0],[1,0],[2,-2]],[[63542,23963,0],[2,-1],[1,0]],[[63545,23962,0],[1,0],[0,-1]],[[63546,23961,0],[2,0]],[[63548,23961,0],[3,-2]],[[63552,23959,0],[1,-1],[1,0]],[[63554,23958,0],[0,-1],[1,0],[2,-1]],[[63563,23954,0],[0,-1],[1,0]],[[63565,23953,0],[2,-2],[1,0],[1,0]],[[63569,23951,0],[1,-1],[1,0]],[[63572,23950,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0]],[[63587,23943,0],[1,-1],[1,0]],[[63593,23940,0],[1,0],[1,-1]],[[63599,23938,0],[2,-2],[1,0],[1,0]],[[63604,23936,0],[1,-1],[1,0]],[[63607,23935,0],[3,-2],[1,0],[1,-1],[2,-1],[1,0],[2,-1]],[[63624,23928,0],[1,-1],[1,0],[2,-1],[1,0]],[[63790,23869,0],[48,-11],[28,-7]],[[63866,23851,0],[2,-10],[2,-11]],[[63915,23647,0],[20,-52],[2,-6]],[[63937,23589,0],[2,-5],[20,-47]],[[62999,22941,0],[-128,-70],[-21,-11]],[[62850,22860,0],[-12,-23]],[[62838,22837,0],[-128,-62]],[[62675,22758,0],[-24,-23]],[[62572,22662,0],[-59,108]],[[62513,22770,0],[-6,12],[-17,33]],[[62490,22815,0],[-11,23],[-39,85]],[[62440,22923,0],[-59,159]],[[62381,23082,0],[-40,110],[-4,12]],[[62337,23204,0],[-37,110]],[[61838,24152,0],[95,45],[101,47],[0,1]],[[62033,24247,0],[-1,0],[0,1]],[[62032,24249,0],[-1,0],[0,2]],[[62030,24253,0],[-1,1]],[[62027,24259,0],[-1,3]],[[62026,24263,0],[-1,3]],[[62025,24266,0],[0,1],[0,1]],[[62025,24268,0],[0,1],[0,2]],[[62024,24275,0],[0,3],[0,2],[0,1],[0,1],[0,1]],[[62024,24283,0],[1,2],[0,1]],[[62025,24287,0],[0,1],[0,1],[0,1],[1,3]],[[62026,24294,0],[1,3]],[[62027,24297,0],[0,1],[1,2]],[[62028,24300,0],[1,2]],[[62030,24304,0],[0,1],[1,0]],[[62032,24309,0],[1,0],[0,1]],[[62033,24310,0],[1,2]],[[62035,24313,0],[1,1],[0,1]],[[62036,24315,0],[2,2]],[[62038,24318,0],[1,1],[1,1]],[[62041,24321,0],[1,1],[1,1]],[[62045,24325,0],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1]],[[62053,24332,0],[2,0],[0,1],[1,1]],[[62057,24334,0],[1,0],[1,1],[1,0],[1,1]],[[62061,24336,0],[7,4],[26,12]],[[62094,24352,0],[28,14],[68,33]],[[62190,24399,0],[51,19],[47,19]],[[62450,24483,0],[65,6]],[[62527,24490,0],[19,0]],[[68663,24483,0],[-11,8],[-3,1]],[[68634,24483,0],[-14,-17],[-23,-25]],[[68597,24441,0],[-18,-22],[-24,-29]],[[68430,24277,0],[-42,-28],[-7,-5]],[[68381,24244,0],[-2,-3],[-20,-26]],[[67670,23743,0],[-13,-4],[-40,-13]],[[67519,23661,0],[-23,-19],[-17,-15]],[[67199,23391,0],[-48,-46],[-26,-24]],[[67118,23315,0],[-20,-19],[-10,-8]],[[67048,23252,0],[-91,38],[-88,38]],[[66869,23328,0],[-81,85],[-36,38]],[[66752,23451,0],[-6,7],[-10,11]],[[66603,23613,0],[-55,58],[-49,51]],[[66900,24409,0],[12,8],[24,17]],[[67231,24647,0],[14,11],[3,2]],[[67248,24660,0],[17,12],[24,18]],[[67289,24690,0],[6,4],[19,12]],[[67396,24766,0],[29,22],[14,11]],[[67439,24799,0],[29,24],[33,26]],[[67501,24849,0],[12,10],[28,24]],[[67634,24974,0],[47,51],[7,8]],[[67924,25362,0],[50,91],[53,99]],[[68027,25552,0],[12,20],[9,19]],[[68058,25652,0],[15,66],[1,2]],[[69167,26250,0],[88,-17],[4,-2]],[[69259,26231,0],[-6,-22],[-13,-58],[-4,-21],[10,-3],[-11,-54],[12,-3],[2,-10],[23,-113],[18,-95],[7,-29],[8,-36],[2,-13],[7,-43],[7,-35],[2,-7],[1,-4],[1,-7],[0,-1],[1,-6],[17,-86],[13,-64],[15,-79],[6,-23],[7,-37],[12,-59],[-19,-33],[-11,-22],[-97,-112],[-98,-110]],[[68856,24683,0],[-31,-32],[-49,-51]],[[76619,19059,0],[59,-104],[105,-114],[100,-109],[38,34],[8,-23]],[[76929,18743,0],[51,-74],[25,-24]],[[77005,18645,0],[8,-9],[8,-8],[4,-4],[9,-12],[1,-1]],[[77035,18611,0],[42,-48]],[[77077,18563,0],[34,-35],[24,-25],[29,-33],[26,-30]],[[77190,18440,0],[83,-76],[11,-10]],[[77284,18354,0],[-102,-181],[-150,-107],[-187,-136]],[[76845,17930,0],[-33,26],[-17,18],[-17,27],[-18,15],[-31,17],[-98,80],[-9,-8],[-104,84],[-30,42],[-35,74],[-73,81],[-100,49],[-35,6],[-115,-43],[-264,44],[-35,-97],[-193,-57],[-177,1],[-87,110],[-35,52],[102,137],[67,83]],[[75508,18671,0],[60,-33]],[[75568,18638,0],[90,84],[40,20],[46,17],[47,18]],[[76035,18589,0],[243,-75],[245,-69]],[[76523,18445,0],[72,90],[62,84]],[[76657,18619,0],[112,-73],[36,66]],[[76750,18680,0],[-52,66],[-114,167],[-249,248]],[[76335,19161,0],[-13,5],[-29,2]],[[76190,19375,0],[-21,43],[48,35],[27,20],[82,-51],[276,-349]],[[76602,19073,0],[13,-16],[4,2]],[[78369,21599,0],[10,0]],[[78797,21551,0],[101,-21],[32,-5],[36,-5],[18,-1],[233,-12],[78,-4],[81,-5],[371,-18],[74,-1],[-95,-104],[-91,-100],[-360,-389]],[[79275,20886,0],[-71,-77]],[[79204,20809,0],[-117,-126]],[[79087,20683,0],[-4,-4],[-71,-77],[-17,-19],[-34,-37],[-16,-24],[-44,-69],[-56,-87]],[[78845,20366,0],[-82,-130],[-28,-42],[-10,-17],[-32,-51],[-40,-62],[-17,-26],[-4,-8]],[[78632,20030,0],[-8,-12],[-6,-10]],[[78618,20008,0],[-15,-23],[-27,-43]],[[78576,19942,0],[-13,-22],[-62,-96]],[[78501,19824,0],[-10,-14],[-15,-23]],[[78476,19787,0],[-22,-34],[-12,-20],[-8,-12],[-213,-174]],[[78221,19547,0],[-7,-6],[-63,-51]],[[78151,19490,0],[-8,-7],[-29,-23],[-22,-17],[-13,-17],[-131,-168],[-120,-153],[-17,-21]],[[77811,19084,0],[-77,85],[-38,58]],[[77696,19227,0],[-11,14],[-17,21]],[[77668,19262,0],[-21,55],[-13,44],[-27,90],[-41,110],[-16,32]],[[77550,19593,0],[38,23],[35,18],[102,107],[14,15]],[[77739,19756,0],[98,103],[6,5]],[[77843,19864,0],[-41,65],[-75,118],[-57,89],[-62,82],[-9,12]],[[77599,20230,0],[-49,74],[-5,9]],[[77545,20313,0],[-50,81],[-18,30],[-56,91],[-19,31],[-73,119],[-109,173],[-46,81],[-13,20]],[[77161,20939,0],[-51,84],[-41,82],[-19,43],[-45,127]],[[77005,21275,0],[-23,131]],[[76982,21406,0],[-10,129]],[[76972,21535,0],[-9,86],[5,68]],[[77002,21686,0],[19,-1],[9,0]],[[77463,21653,0],[134,-10]],[[77924,21893,0],[133,-30]],[[63343,32879,0],[8,-55]],[[63379,32745,0],[41,-83],[42,-95]],[[63466,32557,0],[-218,-41],[6,-30],[2,-10],[-25,-8],[-14,-5],[-8,-3],[-40,-8],[-7,28],[-133,-19],[6,-38],[-5,-5],[-50,33],[-49,35],[-20,10]],[[62911,32496,0],[-23,14],[-1,25],[-9,16],[-8,143],[7,97],[0,21],[-8,181],[-8,187],[-6,116]],[[62855,33296,0],[0,11],[-10,236]],[[62845,33543,0],[-36,415],[-11,206],[-2,47],[-8,159]],[[62788,34370,0],[91,2],[25,9],[2,35],[0,2],[2,14],[0,2],[9,96],[12,54],[1,3],[9,45],[31,77],[8,10],[6,6],[7,5],[8,4],[10,4],[9,2],[8,1],[11,0],[12,-4],[11,-4],[12,-8],[6,-7],[119,-135],[22,-28],[12,-19],[9,-19],[8,-14],[10,-29],[6,-20],[3,-11]],[[63287,34099,0],[10,-195],[7,-166],[1,-15],[3,-58]],[[63317,33563,0],[6,-154]],[[63318,33195,0],[1,-12],[0,-6]],[[63328,33073,0],[4,-55],[1,-8]],[[63672,32136,0],[15,-38],[6,-16]],[[63756,31732,0],[8,-9],[1,-1]],[[64370,31844,0],[9,-10],[27,-29]],[[64408,31800,0],[1,-14],[1,-7]],[[64410,31779,0],[4,-2],[18,-12]],[[64432,31765,0],[16,-27],[3,-5]],[[64804,31413,0],[23,-47],[11,-19]],[[64838,31347,0],[23,-39],[10,-17]],[[64975,31208,0],[-37,-62],[-28,-22],[-7,-6],[-58,-44],[-23,-17],[-36,-28],[-55,-41],[-6,-4],[-58,-46],[-61,-45],[-8,-6],[-9,-6],[-32,-23],[-25,-18],[-10,-6],[-44,-26]],[[64478,30808,0],[-220,-29]],[[64258,30779,0],[-54,-8],[-29,-20],[-172,31],[-48,-42],[53,-13],[15,-10],[16,-14],[9,-11],[5,-6],[2,-6],[-3,-11],[-2,-9],[-5,-15],[-14,-25],[-29,-21],[-46,-42],[-40,-33],[-67,-59],[-31,-30],[-11,-11]],[[63807,30424,0],[-62,61],[-42,48],[-14,13],[-23,28],[-41,57],[-17,25],[-30,34],[-97,112],[-3,4],[-11,19],[-131,224],[-86,150],[-50,104],[-11,23],[-80,132],[-10,7],[-47,104],[5,2],[2,4],[1,5],[0,5],[-4,4],[-6,4],[-7,0],[-7,14],[-25,48],[20,8],[-54,127],[-18,-7],[-19,53],[-26,73],[31,10],[-5,21],[73,16],[22,6],[-13,41],[-29,101],[-25,104],[-57,288]],[[65139,30586,0],[-15,-46]],[[65124,30540,0],[-60,-178]],[[64547,29750,0],[-123,-53],[-55,-24]],[[64369,29673,0],[-37,-15],[-13,-5]],[[64319,29653,0],[-73,-32],[-27,-12]],[[64219,29609,0],[-27,-11],[-73,-38],[-33,-20],[-56,-33],[-21,-12],[-70,-47],[-89,-61],[-175,-122]],[[63675,29265,0],[-6,-4],[-1,-1]],[[63668,29260,0],[-44,-30],[-90,-63],[-121,-85]],[[63413,29082,0],[-38,-33],[-6,-5]],[[63369,29044,0],[-41,-33],[-43,-38]],[[63285,28973,0],[-8,-7],[-30,-28]],[[63247,28938,0],[-34,-36],[-2,-2]],[[63211,28900,0],[-55,-58]],[[63156,28842,0],[-22,-30],[-5,-5]],[[63129,28807,0],[-7,-10],[-47,-59],[-61,-90],[-53,-88],[-19,-37],[-33,-67],[-7,-14]],[[62902,28442,0],[-1,-3]],[[62901,28439,0],[-16,-43],[-11,-27]],[[62874,28369,0],[1,1]],[[62875,28370,0],[-63,-11],[-23,-4]],[[62789,28355,0],[-4,0],[-39,-7]],[[62746,28348,0],[-29,-6]],[[62717,28342,0],[-181,-33]],[[62536,28309,0],[15,69],[14,54],[46,115],[22,50],[26,58],[27,49],[30,54],[149,191],[110,125],[126,142],[71,58],[431,256]],[[63603,29530,0],[289,174],[389,235]],[[64281,29939,0],[-131,131],[175,161],[11,22]],[[64336,30253,0],[8,20]],[[64344,30273,0],[1,5],[1,13]],[[64346,30291,0],[-3,30],[-110,252],[-308,-270],[-5,6],[-42,42],[-71,73]],[[64258,30779,0],[151,20],[69,9]],[[65001,31192,0],[109,-61],[73,-42]],[[65260,30936,0],[-11,-25],[-4,-11]],[[65235,30867,0],[-1,0],[-95,-281]],[[60912,30001,0],[72,-48]],[[60984,29953,0],[85,-61]],[[61069,29892,0],[2,-2],[85,-67]],[[61156,29823,0],[238,-195]],[[61394,29628,0],[299,-153]],[[61693,29475,0],[183,-308],[9,-14]],[[61885,29153,0],[-325,-166],[-89,-45],[-76,-38],[-14,-8],[-26,-12],[-18,-10],[-105,-54],[-111,-56],[-14,-6],[-154,-80],[-65,-50],[-53,-42],[-21,-17],[-20,-14],[-118,-93],[-135,-105],[-10,-7],[-21,-16],[-10,-9],[-105,-81],[-60,-47],[-8,-7],[-110,-85]],[[60217,28105,0],[-17,21],[-48,102],[-92,174]],[[60060,28402,0],[-3,5],[-47,103]],[[60010,28510,0],[-52,38],[-53,38],[-32,32],[-16,28]],[[59857,28646,0],[-16,30],[-1,1]],[[59840,28677,0],[-35,36],[-13,11],[-84,73],[-16,13],[-87,75],[-3,2],[-18,44],[-35,80],[-28,65]],[[59521,29076,0],[-27,62],[-35,81]],[[59459,29219,0],[-33,76],[-27,65]],[[59399,29360,0],[-52,122],[-19,19],[-3,74],[-5,15],[-6,56],[6,69],[12,67],[20,64],[17,30]],[[59369,29876,0],[172,49]],[[59541,29925,0],[15,-86],[15,-75],[10,-57],[82,15],[-13,72],[-1,31],[4,18],[5,14],[8,10],[12,6],[77,22],[36,10],[-19,73],[-85,-23],[-43,4],[-20,16],[-8,19],[-6,10],[-36,142],[46,38],[62,35],[65,34],[60,24],[44,9],[65,16],[74,16],[-2,10],[31,9],[70,8],[50,-11],[27,-8],[56,-7],[18,-8],[102,-38]],[[60342,30273,0],[69,-25]],[[60411,30248,0],[51,-19]],[[60462,30229,0],[49,-19],[100,-44],[47,-21],[50,-28],[90,-46],[65,-39],[29,-17],[20,-14]],[[62746,28348,0],[43,7]],[[62789,28355,0],[86,15]],[[62875,28370,0],[-24,-77]],[[62834,28241,0],[-27,-100],[-20,-89]],[[62787,28052,0],[-10,-63],[-14,-112],[-1,-12],[-8,-116]],[[62754,27749,0],[-3,-72],[2,-120],[1,-16],[1,-15]],[[62766,27390,0],[-1,-9],[6,-42]],[[62800,27165,0],[-68,-13]],[[60602,26608,0],[-7,8],[-1,3],[-1,5],[13,25],[-27,95],[-9,28],[-18,41],[-9,72],[-8,-2],[-92,-13],[-117,-23],[-1,77],[-7,50],[38,10],[19,100],[-14,55],[139,11],[18,3],[-9,64],[-7,65],[-19,84],[-28,93],[-23,76],[-26,65],[-23,94],[-37,148],[-38,94],[-45,94]],[[60263,28030,0],[-27,56],[-19,19]],[[61885,29153,0],[54,-91],[281,-376],[215,-396],[282,52]],[[66119,28684,0],[-15,-21]],[[65989,28498,0],[-81,-117],[-38,-54]],[[65809,28246,0],[-5,-6],[-19,-20]],[[65707,28157,0],[-5,-2],[-43,-26]],[[65399,27557,0],[-122,-30],[-103,-10]],[[65156,27504,0],[-7,-2],[-83,-25]],[[64980,27432,0],[-8,-2],[-10,-3]],[[64819,27299,0],[-135,-62],[-219,-99]],[[64402,27114,0],[-24,21]],[[64378,27135,0],[-33,27],[-73,66],[-41,33]],[[64231,27261,0],[-45,31]],[[64186,27292,0],[-118,121],[-50,54]],[[63968,27526,0],[-35,54],[-36,57],[-11,23]],[[63886,27660,0],[-24,48],[-12,25],[-10,23]],[[63840,27756,0],[-17,43],[-8,29]],[[63815,27828,0],[-4,20]],[[63799,27894,0],[-6,33]],[[63783,28031,0],[0,9],[-1,48]],[[63782,28088,0],[2,46],[1,4]],[[63791,28191,0],[10,49]],[[63801,28240,0],[-6,1]],[[63795,28241,0],[-55,6],[-177,39]],[[63563,28286,0],[-38,8],[-41,10]],[[63484,28304,0],[-43,6],[-68,2]],[[63323,28317,0],[-12,1],[-13,5]],[[63286,28325,0],[-23,5]],[[63263,28330,0],[-65,16],[-51,20]],[[63147,28366,0],[-16,5],[-38,14],[-8,3]],[[62973,28420,0],[-6,1],[-46,13]],[[62921,28434,0],[-19,8]],[[63129,28807,0],[27,35]],[[63211,28900,0],[36,38]],[[63247,28938,0],[38,35]],[[63369,29044,0],[44,38]],[[63668,29260,0],[7,5]],[[64219,29609,0],[100,44]],[[64319,29653,0],[50,20]],[[64369,29673,0],[178,77]],[[56274,48697,0],[15,-71],[3,-48],[4,-65],[-2,-40],[-1,-38],[6,-44]],[[56299,48391,0],[3,-11],[0,-3]],[[56302,48377,0],[1,-6],[13,-46],[12,-37]],[[56328,48288,0],[13,-34],[11,-28]],[[56352,48226,0],[10,-23],[11,-25]],[[56373,48178,0],[19,-44],[14,-33]],[[56406,48101,0],[32,-72]],[[56438,48029,0],[29,-54],[18,-34]],[[56485,47941,0],[8,-18],[6,-13]],[[56499,47910,0],[31,-55]],[[56530,47855,0],[3,-4],[45,-76]],[[56578,47775,0],[53,-82]],[[56631,47693,0],[37,-54],[18,-27]],[[56686,47612,0],[18,-24],[6,-8]],[[56710,47580,0],[40,-50]],[[56750,47530,0],[27,-28],[14,-14]],[[56791,47488,0],[54,-50]],[[56845,47438,0],[-2,-2],[-11,-7],[-14,-10]],[[56818,47419,0],[-28,-5]],[[56790,47414,0],[-12,-19],[-23,-15]],[[56755,47380,0],[-20,-14],[-20,-13]],[[56715,47353,0],[-36,-37],[-9,-8],[-9,-11],[-28,-23]],[[56633,47274,0],[0,-1],[-6,-6]],[[56627,47267,0],[-6,-5],[-68,-69],[-82,-82],[-40,-13],[-22,-7],[-39,-20],[-15,-12],[-24,-19],[-5,-10],[27,-7],[82,-24]],[[56435,46999,0],[-3,-6],[-46,-95],[6,-25],[16,-75],[12,-62]],[[56420,46736,0],[3,-11],[2,-13],[6,-30]],[[56431,46682,0],[11,-56]],[[56442,46626,0],[31,-164],[0,-4]],[[56473,46458,0],[-278,-73],[-31,-16],[-1,0],[-11,-27],[-16,-40],[-46,-116],[-22,-54],[-26,-68],[-24,-59],[-27,-69],[-15,-36],[-24,-61]],[[55952,45839,0],[-3,-9],[0,-1]],[[55949,45829,0],[-3,-7],[-5,-10],[-6,-16],[-1,-5]],[[55934,45791,0],[-45,11],[-82,23],[-85,23],[-81,21],[-78,21],[-73,40],[-67,38],[-51,51],[-58,66],[-14,18],[30,64],[36,81],[62,146],[-15,11],[-109,-69],[-37,-21],[-79,-49],[-107,-95],[-37,28],[193,401],[-28,18],[-203,-189],[-141,-134],[-48,-155],[-28,-69],[-37,-23],[-48,14],[-24,59],[116,443],[-48,8],[-98,-74],[-28,-16],[-61,-5],[-99,72],[-83,41],[-103,-1]],[[54276,46589,0],[-48,20],[11,28],[27,68],[24,62],[15,38],[30,77],[32,82],[-107,28],[-9,2]],[[54251,46994,0],[-1,1],[-13,3]],[[54237,46998,0],[-14,6]],[[54223,47004,0],[-8,5],[-11,7]],[[54204,47016,0],[-10,6],[-12,10],[-11,8],[-10,9],[-7,8],[-7,7],[-8,11],[-6,7],[-5,9],[-5,8],[-4,10],[-2,7],[-9,18],[-8,22],[-2,14],[-2,15],[-2,11],[1,10],[1,18],[2,17],[3,6],[8,15],[16,21],[19,20],[18,19],[21,19],[37,23],[48,12],[38,9],[42,11],[68,15],[23,6],[11,3],[7,2]],[[54457,47422,0],[-3,9],[-2,7],[0,2],[-3,12]],[[54449,47452,0],[-12,46],[-5,25],[-9,32],[-6,23],[-1,4],[-7,32],[52,-1],[97,-6],[37,-3],[38,-4],[13,0],[12,6],[10,7],[7,14],[0,12],[-8,30],[-5,21],[-35,148],[-78,-17],[-9,0],[-6,4],[-13,19],[-22,17],[-28,17],[-43,12],[-8,-1],[-10,330]],[[54410,48219,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,1],[2,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[3,0],[24,-1],[105,-7],[13,-1],[98,-11],[43,-8],[103,-21],[93,130],[-91,58],[-89,61],[111,148],[58,-21],[39,-14],[101,-36],[58,-20],[24,-8],[157,25],[24,3],[83,-68],[16,-14],[37,33],[24,10],[5,-1],[59,-22],[25,-3],[54,3],[47,10],[33,29],[23,11],[29,23],[21,6],[28,17],[24,-2],[66,24],[54,11],[50,34],[13,9],[58,-32],[49,58],[15,18],[20,22],[4,4]],[[56215,48770,0],[17,10]],[[56232,48780,0],[37,-72],[5,-11]],[[72242,22272,0],[2,3],[2,5]],[[72380,22014,0],[-1,0],[0,-1]],[[72379,22012,0],[0,-1],[0,-1]],[[72379,22007,0],[0,-1],[1,0]],[[72382,22000,0],[1,0],[1,-2]],[[72384,21998,0],[241,-94],[19,-7]],[[72669,21895,0],[1,0],[0,1]],[[72682,21898,0],[0,1],[1,0]],[[72692,21904,0],[1,0],[0,1]],[[72693,21905,0],[1,0],[0,1]],[[72711,21925,0],[0,1],[1,0]],[[72895,21954,0],[-2,-4],[-1,1],[-9,-29],[-176,-520]],[[72699,21381,0],[-97,-283]],[[72596,21079,0],[-41,-118],[-53,-152],[-53,-154],[-36,-104]],[[72413,20551,0],[1,-1],[18,-24]],[[72438,20422,0],[-1,-5],[-20,-66],[-1,-3],[0,-1]],[[72338,20296,0],[-28,-5],[-1,-1]],[[72309,20290,0],[-20,-39]],[[72097,19936,0],[-35,-72],[-15,-31]],[[71918,19562,0],[-7,3],[-49,19]],[[71862,19584,0],[-20,8],[-35,13]],[[71775,19617,0],[-18,7],[-25,10]],[[71256,19814,0],[-10,4],[-32,12]],[[71214,19830,0],[-35,14],[-39,15]],[[71197,19971,0],[-1,2]],[[70480,20279,0],[4,6],[64,134],[120,276],[13,29]],[[70686,20737,0],[45,114],[20,54],[0,2]],[[70754,20914,0],[46,106],[35,85]],[[70835,21105,0],[10,25]],[[70854,21150,0],[12,30],[40,97],[15,38]],[[70921,21315,0],[14,32]],[[71051,21624,0],[31,75],[62,153]],[[71144,21852,0],[50,141],[19,55],[31,91],[70,203]],[[71314,22342,0],[5,14],[64,186]],[[71409,22616,0],[278,-128],[122,-56]],[[75479,29284,0],[52,-3],[130,-7],[35,-2]],[[75696,29272,0],[86,-5],[1,0],[20,-2]],[[75895,29261,0],[-5,-69],[0,-2],[-7,-98]],[[75883,29092,0],[0,-8],[-9,-108],[-5,-78]],[[75864,28838,0],[0,-1]],[[75864,28837,0],[-7,-99]],[[75857,28738,0],[-4,-75],[0,-1],[-9,-105],[0,-1]],[[75844,28556,0],[-12,-155],[-11,-168]],[[75821,28233,0],[-6,-78],[0,-1]],[[75815,28154,0],[-7,-98],[22,-58],[-39,-147],[-2,-28]],[[75789,27823,0],[-38,-27],[-3,-1]],[[75748,27795,0],[-296,-436],[-8,-65],[-33,-49],[-33,-53],[-27,-49],[-27,10],[-55,-109],[-77,-145],[-65,-110],[-60,-105],[-114,-218],[-38,-80],[-48,-105],[-59,24]],[[74945,26573,0],[58,117],[-1,0]],[[75002,26690,0],[-16,7],[8,14]],[[75130,26961,0],[19,-7],[96,180]],[[75227,27139,0],[0,1],[-159,53]],[[74480,27339,0],[-20,-9],[-1,0]],[[74459,27330,0],[-77,24],[34,82]],[[74446,27516,0],[35,97]],[[74481,27613,0],[6,1],[31,100]],[[74553,27842,0],[-2,1],[22,77],[1,0]],[[74574,27920,0],[23,84]],[[74597,28004,0],[19,87],[21,104]],[[74637,28195,0],[26,125]],[[74663,28320,0],[-3,9]],[[74658,28361,0],[-5,72]],[[74653,28433,0],[7,-3]],[[74660,28430,0],[30,-12]],[[74690,28418,0],[2,-2],[33,10]],[[74725,28426,0],[8,19]],[[74733,28445,0],[6,15],[24,11],[130,277],[33,78],[30,91],[10,29]],[[74975,28979,0],[19,76]],[[75341,29099,0],[6,51],[2,16]],[[75349,29166,0],[2,12],[11,110]],[[75362,29288,0],[2,0],[107,-4],[8,0]],[[53976,27774,0],[10,-36],[92,0]],[[54078,27738,0],[52,-62],[-38,-50],[-35,-47]],[[54057,27579,0],[-21,-27],[-5,-7]],[[54031,27545,0],[-29,-37],[-54,-70]],[[53948,27438,0],[-10,1],[-121,-32]],[[53817,27407,0],[-58,-13]],[[53759,27394,0],[-18,46],[-6,19]],[[53735,27459,0],[-9,29],[-13,49]],[[53713,27537,0],[-8,32],[-7,41],[-5,36],[-2,16]],[[53691,27662,0],[-4,27]],[[53687,27689,0],[-10,74],[-5,41]],[[53672,27804,0],[-10,73],[-5,27]],[[53657,27904,0],[-6,27],[-9,25],[-9,21],[-16,30],[-18,28]],[[53599,28035,0],[-14,17],[-12,13]],[[53573,28065,0],[-11,12],[-22,21],[-21,15]],[[53519,28113,0],[-3,2],[-27,17]],[[53489,28132,0],[-27,14],[-36,14]],[[53426,28160,0],[-39,12],[-113,23]],[[53274,28195,0],[0,18]],[[53274,28213,0],[-1,13],[-1,13]],[[53272,28239,0],[-19,11],[-16,9]],[[53237,28259,0],[-10,15],[-12,13],[36,97],[5,13]],[[53256,28397,0],[6,43],[52,2]],[[53314,28442,0],[50,15],[84,27]],[[53448,28484,0],[79,24]],[[53527,28508,0],[76,25],[76,15]],[[53679,28548,0],[81,18],[39,3]],[[53799,28569,0],[55,-11],[49,-17]],[[53903,28541,0],[43,-28]],[[53946,28513,0],[16,-11],[30,-27],[23,-42]],[[54015,28433,0],[3,-13],[14,-55]],[[54032,28365,0],[4,-69],[-19,-30],[-40,-79]],[[53977,28187,0],[-7,-13]],[[53970,28174,0],[41,-24],[-55,-93]],[[53956,28057,0],[-11,-18],[-4,-9],[-13,-77],[11,-38]],[[53939,27915,0],[22,-82],[15,-59]],[[53770,26810,0],[-24,-22]],[[53746,26788,0],[-35,8],[-20,-1],[-37,-7]],[[53654,26788,0],[-47,-93],[-5,-13],[-7,-16]],[[53595,26666,0],[-25,-20]],[[53570,26646,0],[-28,-21],[-33,-25]],[[53509,26600,0],[-15,-14],[-14,-12]],[[53480,26574,0],[-16,-19],[-14,-17],[-15,-19]],[[53435,26519,0],[-1,-2],[-13,-19]],[[53421,26498,0],[-4,-8],[-8,-13]],[[53409,26477,0],[-7,-13],[-4,-5]],[[53398,26459,0],[-17,-34],[-17,-35]],[[53364,26390,0],[-17,-34]],[[53347,26356,0],[-25,-52],[-15,-31]],[[53307,26273,0],[-19,-32],[-7,-11]],[[53281,26230,0],[-3,-5],[-16,-23]],[[53262,26202,0],[-45,-51],[-29,-32]],[[53188,26119,0],[-2,-2],[-1,-1]],[[53185,26116,0],[-27,-28],[-132,-138]],[[53026,25950,0],[-28,-26],[0,-1]],[[52998,25923,0],[-136,-129]],[[52862,25794,0],[-13,95],[-9,59],[31,30],[37,42],[68,63],[6,12],[2,3],[2,12],[-3,11],[-1,0],[-6,14],[-14,11],[-83,58],[-59,37],[-43,24],[-38,19],[-48,21],[-23,9],[-10,5],[-29,11],[-35,13],[-21,20],[-8,8],[-107,60],[-45,16],[-46,15],[-126,55],[-22,11],[-55,37],[-93,89],[-42,58],[-40,60],[-139,145],[-79,82],[-12,12],[-101,105],[-144,145],[-23,44]],[[51491,27305,0],[-6,12],[-46,91]],[[51439,27408,0],[-15,169]],[[51424,27577,0],[50,160],[56,181]],[[51530,27918,0],[115,248]],[[51645,28166,0],[4,8],[2,4]],[[51651,28178,0],[25,42],[32,54]],[[51708,28274,0],[99,80],[333,250],[153,121]],[[52293,28725,0],[155,192],[27,33]],[[52475,28950,0],[100,-90],[123,-109],[72,-43],[78,-48],[36,-22],[20,-11],[190,-177],[168,-11]],[[53262,28439,0],[-6,-42]],[[53256,28397,0],[3,-3],[-44,-108],[11,-15],[11,-12]],[[53272,28239,0],[1,-14],[1,-12]],[[53274,28195,0],[113,-24],[39,-11]],[[53426,28160,0],[36,-15],[27,-13]],[[53519,28113,0],[21,-16],[23,-20],[10,-12]],[[53599,28035,0],[18,-29],[16,-30],[9,-21],[10,-25],[5,-26]],[[53672,27804,0],[5,-42],[10,-73]],[[53687,27689,0],[1,-6],[3,-21]],[[53691,27662,0],[2,-17],[5,-36],[7,-41],[8,-31]],[[53713,27537,0],[13,-50],[9,-28]],[[53759,27394,0],[91,-219],[9,-25],[7,-23],[5,-34],[1,-28],[-1,-18],[-5,-55],[-9,-34],[-2,-12],[-9,-27],[-17,-34],[-17,-26],[-42,-49]],[[54783,26535,0],[-28,-50],[-55,-102],[-4,-8]],[[54696,26375,0],[-9,-12],[-77,-107],[-79,-112],[-105,73],[-14,-16],[-21,17],[-188,-190],[31,-34],[42,-39],[74,-64],[-33,-53],[-42,-68],[19,-15],[14,-14],[10,-11],[9,-12]],[[54327,25718,0],[5,-7]],[[54332,25711,0],[10,-17],[7,-16],[5,-11],[5,-13],[4,-16],[1,-6],[3,-12],[1,-19],[1,-14]],[[54369,25587,0],[-2,-20]],[[54367,25567,0],[-1,-9],[-9,-45],[-10,-52],[4,-20],[6,-26],[7,-32],[13,-17],[15,-21],[5,-7],[-17,-4],[-26,-6],[-10,-2],[-18,-2],[-27,-4],[-9,0],[-14,-1],[-32,0],[-27,1],[-27,2],[-28,4],[-43,9],[11,36],[-63,17],[-15,-41],[-18,4],[-49,13],[-12,5],[-12,8],[-3,-4],[-20,-21],[-23,-24],[-7,-7],[-197,153]],[[53711,25474,0],[-48,-138],[-12,-35]],[[53651,25301,0],[138,-105],[-87,-91],[-33,-34],[-106,-111],[-24,-25]],[[53539,24935,0],[-37,38]],[[53502,24973,0],[-174,185]],[[53328,25158,0],[-141,151]],[[53187,25309,0],[-26,26]],[[53161,25335,0],[-108,107]],[[53053,25442,0],[-6,7]],[[53047,25449,0],[-158,128]],[[52889,25577,0],[-9,20]],[[52880,25597,0],[-16,168]],[[52864,25765,0],[-2,29]],[[52998,25923,0],[28,27]],[[53026,25950,0],[159,166]],[[53185,26116,0],[3,3]],[[53262,26202,0],[19,28]],[[53281,26230,0],[26,43]],[[53307,26273,0],[40,83]],[[53364,26390,0],[34,69]],[[53398,26459,0],[11,18]],[[53409,26477,0],[12,21]],[[53421,26498,0],[14,21]],[[53480,26574,0],[29,26]],[[53509,26600,0],[61,46]],[[53595,26666,0],[14,33],[45,89]],[[53746,26788,0],[12,11],[12,11]],[[53817,27407,0],[121,27],[10,4]],[[53948,27438,0],[83,107]],[[54031,27545,0],[26,34]],[[54057,27579,0],[73,96],[-51,62],[-1,1]],[[54078,27738,0],[23,0],[183,1],[47,0],[72,20],[53,15],[-17,-66],[-4,-18],[158,-319],[28,-57],[7,-13],[110,-34],[4,-16],[-15,-26],[-18,-96],[-12,-78],[-14,-96],[-7,-42],[-2,-19],[-15,-65],[-40,-167],[14,-10],[16,-13],[13,-16],[21,-26],[8,-6],[16,-12],[23,-18],[14,-13],[12,-5],[27,-8]],[[56409,27790,0],[5,5],[4,6]],[[56418,27801,0],[5,5],[6,5],[8,5],[117,-65],[87,-24],[35,-9],[98,-27],[26,-7],[7,-2],[92,-26],[29,-8],[67,-19],[46,-26],[36,-20],[33,-50],[19,-27],[15,-25],[12,-19],[75,-24],[29,-10],[34,-11],[18,-6],[140,-45]],[[57452,27366,0],[42,-14]],[[57494,27352,0],[29,-9],[32,-14],[11,-2],[-15,148],[15,-2]],[[57566,27473,0],[10,-92],[7,-50]],[[57583,27331,0],[1,-11],[9,-81]],[[57593,27239,0],[9,-72],[5,-64],[6,-46],[1,-40],[-2,-49],[-3,-41],[-5,-36],[-3,-20]],[[57601,26871,0],[-9,-46],[-12,-43]],[[57580,26782,0],[-14,-44],[-9,-21],[-10,-26],[-27,-74],[-48,-117],[-24,-60],[-26,-72],[-7,-15],[-10,-21],[-13,-20],[-13,-15],[-13,-30]],[[57366,26267,0],[-39,-16],[-20,-5],[-12,-3],[-19,-2],[-13,-2],[-18,-1],[-19,0]],[[57226,26238,0],[-15,0],[-36,1]],[[57175,26239,0],[-41,3],[-40,3],[-53,5]],[[57041,26250,0],[-51,8],[-50,10],[-56,16]],[[56884,26284,0],[-12,3],[-26,5]],[[56846,26292,0],[0,14],[-1,14]],[[56845,26320,0],[-35,42],[-9,10]],[[56801,26372,0],[-49,3],[-146,5]],[[56606,26380,0],[-28,-11],[6,-17],[6,-27],[6,-21],[8,-16],[-3,-20],[-12,-73],[-38,-224]],[[56551,25971,0],[-229,65],[48,64],[40,24],[38,120],[-31,-1],[-32,-1],[-62,-5],[-31,-4],[-27,-4],[-33,-10],[-32,-11],[-27,-9],[-31,-12],[-29,-13],[-34,-21],[-12,-7],[-39,-22],[-35,14],[-13,5],[-12,4],[-19,16],[-9,9]],[[55940,26172,0],[-38,32],[-1,0]],[[55901,26204,0],[-29,25],[-100,78],[-10,8],[-22,48],[-141,93]],[[55599,26456,0],[-42,-24],[-9,-4]],[[55548,26428,0],[-101,-23]],[[55447,26405,0],[-25,-8],[-23,-8]],[[55399,26389,0],[-101,20],[-71,15]],[[55227,26424,0],[-7,-23],[-46,-136]],[[55174,26265,0],[-92,33],[-10,-31],[-34,7],[-153,40],[-9,3],[-121,36],[-16,8],[-18,8],[-15,5],[-10,1]],[[54783,26535,0],[33,58],[46,82],[17,35],[43,151],[31,107],[8,31],[30,121],[1,21],[3,20],[11,106],[13,45],[77,226],[65,119],[108,157],[48,48],[27,30],[26,65],[3,26],[-31,49]],[[55342,28032,0],[90,2],[40,0]],[[55472,28034,0],[141,4],[74,1],[101,-46],[143,-41],[108,-30],[98,-28]],[[56137,27894,0],[10,-3],[55,-16]],[[56202,27875,0],[62,-27]],[[56264,27848,0],[68,-31]],[[56332,27817,0],[8,-3],[30,-13],[25,-7],[14,-4]],[[55901,26204,0],[39,-32]],[[56551,25971,0],[-35,-202]],[[56516,25769,0],[-15,-146]],[[56501,25623,0],[-5,-5],[-12,-35],[-3,-8],[-8,-42],[-4,-22],[-24,7],[-6,-27],[-24,-55],[-14,-22],[-21,-47],[-2,-18],[-16,-26],[-86,-247],[-11,-26],[-4,-35],[3,-18],[-2,-26],[-15,-224],[-2,-55],[10,-41],[-1,-40],[-10,-417],[47,-306],[34,-42],[19,-56]],[[56344,23790,0],[-9,-10]],[[56335,23780,0],[-65,-344]],[[56270,23436,0],[-14,-72]],[[56256,23364,0],[-117,15],[-125,22],[-333,76],[-257,62],[-171,44],[-128,38],[-204,62],[-83,32],[-60,29],[-62,34]],[[54716,23778,0],[-96,72],[-22,21],[-87,86],[-324,314],[-251,248],[-200,207],[-58,60],[-139,149]],[[53651,25301,0],[60,173]],[[54367,25567,0],[1,15],[1,5]],[[54332,25711,0],[-1,1],[-4,6]],[[55174,26265,0],[53,159]],[[55227,26424,0],[172,-35]],[[55399,26389,0],[48,16]],[[55548,26428,0],[51,28]],[[57175,26239,0],[51,-1]],[[57366,26267,0],[19,-10]],[[57385,26257,0],[6,-3],[22,-12]],[[57413,26242,0],[15,-8],[43,-23],[-97,-86]],[[57374,26125,0],[-15,-13],[-17,-15]],[[57342,26097,0],[-42,-37],[-30,-27],[10,-8],[14,-10],[83,-63],[64,-47],[40,-29],[33,-26],[59,-44]],[[57573,25806,0],[256,-192]],[[57829,25614,0],[29,-20],[12,-8],[43,-33],[130,-97],[52,-41]],[[58095,25415,0],[139,-104]],[[58234,25311,0],[214,377]],[[58448,25688,0],[43,-22],[223,-119],[13,-8],[40,40],[157,150],[40,41],[12,-2],[61,-24],[12,-10],[17,-17],[49,26],[23,11],[23,-16],[15,3],[163,-31]],[[59175,24724,0],[-143,-15],[-50,-8],[-81,-15],[-134,-41],[-78,-29],[-66,-32],[-134,-77],[-26,-18],[-202,-147],[-387,-272],[-53,-38],[-64,-43]],[[57757,23989,0],[-53,-18],[-196,-72],[-113,-55],[-193,-93]],[[57202,23751,0],[-250,-120],[90,44]],[[57042,23675,0],[40,-83]],[[57082,23592,0],[-24,-13]],[[57058,23579,0],[5,-10]],[[57063,23569,0],[-54,-25],[-32,-13],[-92,-32],[-66,-19],[-22,67],[-30,0],[-62,4],[-33,12],[-3,6],[-43,12]],[[56626,23581,0],[-18,-4]],[[56608,23577,0],[-27,8]],[[56581,23585,0],[-6,23]],[[56575,23608,0],[-17,22]],[[56558,23630,0],[-36,22]],[[56522,23652,0],[-50,29]],[[56472,23681,0],[-45,35]],[[56427,23716,0],[-25,22],[-22,16],[-12,7],[-12,13],[-12,16]],[[56501,25623,0],[13,120],[2,26]],[[56606,26380,0],[195,-8]],[[56801,26372,0],[44,-52]],[[56846,26292,0],[38,-8]],[[56884,26284,0],[64,-18],[68,-12],[25,-4]],[[58448,25688,0],[-119,-210],[-95,-167]],[[58234,25311,0],[-22,17],[-117,87]],[[57829,25614,0],[-79,59],[-177,133]],[[57342,26097,0],[32,28]],[[57413,26242,0],[-28,15]],[[57580,26782,0],[12,42],[9,47]],[[57593,27239,0],[-10,92]],[[57566,27473,0],[124,-15],[13,-1]],[[57703,27457,0],[-7,54]],[[57696,27511,0],[-4,24],[-15,78],[-22,95],[-12,19],[-3,6],[-36,76],[-39,83],[-40,77],[162,80]],[[57687,28049,0],[66,28]],[[57753,28077,0],[12,2],[133,28],[11,3],[189,53],[25,-45],[24,-46],[23,-46],[22,-46],[11,-22],[6,-15],[10,-24],[723,-148],[671,95],[650,164]],[[59519,29081,0],[2,-5]],[[59840,28677,0],[17,-31]],[[60010,28510,0],[50,-108]],[[57753,28077,0],[0,2],[-66,142]],[[57687,28221,0],[-152,330]],[[57535,28551,0],[-89,191],[-87,183],[-69,146],[-105,230],[-65,140],[-31,68]],[[57089,29509,0],[134,46],[76,26],[153,53]],[[57452,29634,0],[40,13]],[[57492,29647,0],[73,12],[9,2],[13,2]],[[57587,29663,0],[5,-26],[25,-87],[3,-10],[56,-153],[11,-29],[10,-28],[11,-27],[9,-26],[10,-30],[17,-51],[30,-82],[31,-73],[17,-43],[469,225],[150,76],[16,9],[-68,133],[-57,117],[-72,143],[-144,290],[-81,164]],[[58035,30155,0],[150,16],[114,12],[217,52]],[[58516,30235,0],[14,3],[148,-186],[51,-28],[-33,-144],[-48,-351],[-16,-215],[10,-338],[64,-304],[45,-161],[391,290],[7,6],[370,274]],[[74533,33138,0],[17,-27]],[[74655,32934,0],[53,-91],[53,-90],[25,-44],[29,-49]],[[75136,32116,0],[12,-23],[8,-13]],[[75292,32072,0],[16,10]],[[75308,32082,0],[12,8]],[[75320,32090,0],[-44,-128]],[[75231,31949,0],[-1,-1]],[[75199,31812,0],[-46,-165]],[[75153,31647,0],[-8,-108]],[[75145,31539,0],[-109,-268]],[[75027,31214,0],[-10,-69]],[[75017,31145,0],[-7,-44]],[[75008,30926,0],[-84,-26],[-16,15],[-19,8],[-21,-2]],[[74868,30921,0],[-14,-5],[-12,-12]],[[74842,30904,0],[-87,-185],[-9,-15],[-19,-21]],[[74727,30683,0],[-130,-147],[-6,-6]],[[74591,30530,0],[-127,-145],[-12,-13],[-66,-76]],[[73344,31007,0],[-8,58]],[[74289,33148,0],[68,34],[1,0],[1,0],[0,2],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[25,-14],[18,-15],[12,-17]],[[70612,26077,0],[-1,-4],[-8,-29]],[[70580,25956,0],[-14,-57],[-2,-11]],[[70557,25864,0],[-1,-7],[-1,-4]],[[70555,25853,0],[-1,-3],[-1,-7]],[[70508,25742,0],[-3,-16],[-1,-10]],[[70504,25716,0],[-1,-8],[-3,-20]],[[70487,25690,0],[-1,-19],[0,-1]],[[70486,25670,0],[-2,-23],[-16,-153]],[[70186,23614,0],[17,-3],[14,-3]],[[70217,23608,0],[-6,-34],[-3,-18]],[[70199,23506,0],[-1,1],[-30,2]],[[70149,23504,0],[0,-1],[-1,0]],[[70148,23503,0],[-1,-1],[0,-1]],[[70027,23438,0],[-2,0],[-89,18]],[[69800,23465,0],[-103,10]],[[69555,23508,0],[-88,27]],[[69467,23535,0],[16,93],[18,113]],[[69501,23741,0],[-48,22],[-9,5]],[[69463,23834,0],[11,30],[7,19]],[[69623,24275,0],[40,136],[7,24]],[[69394,26205,0],[94,-20],[111,-24]],[[69819,26114,0],[1,0],[0,-1]],[[69836,26110,0],[1,0],[0,-1]],[[69857,26107,0],[1,-1],[0,-1]],[[69863,26105,0],[1,0],[0,-1]],[[69945,26095,0],[1,0],[0,-1]],[[70046,26094,0],[0,1],[1,0]],[[70057,26096,0],[1,0],[0,1]],[[70102,26105,0],[0,1],[1,1]],[[70118,26111,0],[1,0],[0,1]],[[70188,26141,0],[0,1],[1,0]],[[70210,26154,0],[0,1],[1,0]],[[70229,26168,0],[1,0],[0,1]],[[70234,26172,0],[1,0],[0,1]],[[70240,26176,0],[0,1],[1,0]],[[70243,26179,0],[1,0],[0,1]],[[70251,26185,0],[0,1],[1,0]],[[70259,26192,0],[0,1],[1,0]],[[70264,26197,0],[1,1],[0,1]],[[70269,26203,0],[1,0],[1,1]],[[70271,26204,0],[1,0],[0,1]],[[70273,26206,0],[0,1],[1,0]],[[70274,26207,0],[0,1],[1,0]],[[70276,26210,0],[1,0],[0,1]],[[70288,26222,0],[0,1],[1,0]],[[70294,26230,0],[1,1],[14,15]],[[70309,26246,0],[25,31],[30,34]],[[70364,26311,0],[29,38],[19,23]],[[59823,21994,0],[-51,-2],[-3,0],[-55,-5],[-4,0],[-156,-11],[-104,-20],[-92,-18],[-21,-3],[-61,-5],[-66,-3],[-73,4],[-37,2],[1,-58],[-24,0],[-2,-21],[-2,-11],[-2,-11],[-8,-25],[-77,-1],[-62,-1],[-74,-1],[-18,0],[-28,0],[-153,-3],[-119,39],[-21,0],[-15,-8],[-10,-10],[-3,-11],[-2,-11],[-71,-1],[-4,59],[-4,16],[-6,9],[-13,12],[-120,58],[-33,10]],[[58230,21963,0],[9,29],[-9,15],[-25,58],[-8,23],[-9,33],[-44,0],[-58,1],[-221,76]],[[57865,22198,0],[-21,45],[-14,31],[-6,12],[-13,75],[-3,275],[204,469],[-29,11],[-81,30],[-49,17],[-35,13],[-2,460],[-1,129],[0,56],[-2,74],[-15,29],[-19,32],[-16,28],[-6,5]],[[59799,23057,0],[0,-41],[1,-140]],[[59800,22876,0],[0,-3],[0,-6]],[[59800,22867,0],[5,-78]],[[59805,22789,0],[3,-54],[5,-92]],[[59813,22643,0],[2,-36],[-1,-82],[6,-9],[3,-6],[23,-50],[8,-120]],[[59854,22340,0],[0,-11],[-2,-17],[-29,-318]],[[62257,23350,0],[2,0]],[[62260,23349,0],[2,0]],[[62337,23204,0],[44,-122]],[[62440,22923,0],[50,-108]],[[62490,22815,0],[-70,-168],[-98,-231],[-104,-242],[-6,-12],[-143,-342],[-34,-78],[-58,-136]],[[61977,21606,0],[-70,90],[-77,70],[-88,64],[-79,50],[-52,31],[-154,62],[-129,37],[-136,20],[-80,7],[-88,0],[-107,-9],[-81,-14],[-79,-17],[-103,-32],[-88,-35],[-60,-28],[-67,-37],[-35,-22],[-49,-35],[-37,-27],[-31,-26],[-41,-36],[-58,-59]],[[60188,21660,0],[-173,222],[-96,117],[-96,-5]],[[59823,21994,0],[31,346]],[[59813,22643,0],[-8,146]],[[59800,22867,0],[0,9]],[[59799,23057,0],[107,-15]],[[60707,22963,0],[2,-1]],[[61120,22948,0],[61,7]],[[62243,23351,0],[2,0]],[[62248,23351,0],[2,0]],[[62251,23351,0],[2,0]],[[53976,27774,0],[-15,58],[-22,83]],[[53956,28057,0],[56,92]],[[54012,28149,0],[4,-16],[26,-3],[12,-7],[81,-1],[97,-1],[20,22],[16,-10],[29,33],[24,32],[25,35],[39,64],[38,63],[20,44],[8,20],[13,31],[9,83],[5,42]],[[54478,28580,0],[21,2],[28,3],[18,2],[39,5],[12,2],[36,-14],[56,-24]],[[54688,28556,0],[92,-35],[67,-27],[21,-19],[50,-45],[16,-15],[19,-19],[33,-29],[57,-53],[19,-18],[33,-29],[84,-38],[121,-177],[15,-21],[27,1]],[[53137,29198,0],[14,-1]],[[53151,29197,0],[10,42]],[[53161,29239,0],[116,-16]],[[53277,29223,0],[-13,-39]],[[53264,29184,0],[105,-20]],[[53369,29164,0],[27,-18]],[[53396,29146,0],[20,67]],[[53416,29213,0],[143,-75]],[[53559,29138,0],[4,12]],[[53563,29150,0],[104,1],[75,0],[43,0],[116,-5],[66,-3],[19,-2],[83,-10],[106,-12],[44,-17],[21,-8],[44,-38],[-38,-36],[86,-112],[15,-97],[12,-79],[9,-54],[7,-20],[35,-86],[25,3],[43,5]],[[54012,28149,0],[-42,25]],[[53977,28187,0],[40,78],[20,30],[-5,70]],[[54015,28433,0],[-23,41],[-30,27],[-16,12]],[[53903,28541,0],[-49,16],[-55,12]],[[53799,28569,0],[-39,-4],[-81,-17]],[[53679,28548,0],[-76,-16],[-76,-24]],[[53448,28484,0],[-84,-28],[-50,-14]],[[53314,28442,0],[-52,-3]],[[52475,28950,0],[195,300]],[[52670,29250,0],[457,-52]],[[53127,29198,0],[10,0]],[[81767,21734,0],[-73,-64],[-62,1],[-81,1],[-83,-79],[-49,15]],[[81419,21608,0],[-42,11],[-33,10]],[[81344,21629,0],[-14,-6],[22,-92],[-175,-5],[50,-84],[45,-78],[-216,-38],[-64,-43],[-10,-33],[-149,-15],[-47,-176],[-168,-13],[-133,-74]],[[80485,20972,0],[-20,-18],[-33,20],[-82,39],[-11,4],[-12,4],[-14,5],[-15,4],[-17,4],[-16,4],[-15,3],[-15,3],[-28,4],[-29,2],[-32,2],[-24,0],[-11,0],[-64,-6],[-20,-3],[-13,-2],[-16,-4],[-15,-3],[-8,-3],[-55,-18],[-32,-16],[-22,18],[-21,30],[-47,-46],[-68,-57],[13,-15],[-57,-53],[-41,-48],[-43,-65],[-34,-79],[-15,-46],[-7,-54],[-55,-10],[-3,6],[-12,-3],[-43,-8],[-46,0],[-6,11],[-35,94],[-39,120],[-32,94]],[[78797,21551,0],[-1,191]],[[78796,21742,0],[-2,20]],[[79177,22880,0],[177,-17]],[[79354,22863,0],[4,-33],[8,-20],[25,-31],[17,-14],[21,-12],[97,-45],[124,-25],[65,-9],[55,-4],[744,-11],[383,-6],[71,-8],[43,-8],[88,-25],[78,-34],[67,-37],[49,-35],[40,-34],[24,-21],[71,-81],[58,-75],[51,-72],[53,-74],[4,-7]],[[81594,22142,0],[-78,-50],[52,-73],[25,-33],[113,-153],[61,-99]],[[81767,21734,0],[41,-68],[11,-6],[33,-71],[24,-53],[18,-42],[7,-25],[-4,-15],[19,-89],[3,-41],[3,-36],[-1,-34],[1,-143],[-1,-200],[0,-25],[-1,-29],[-1,-55],[0,-104]],[[81919,20698,0],[0,-51],[-15,-45],[-11,-35],[-15,-54],[40,-81],[6,-78],[4,-36],[16,-66],[8,3],[21,-60],[70,-183],[50,-133],[10,-32],[5,-21],[5,-35],[6,-1],[-1,-34],[-2,-16]],[[82116,19740,0],[-207,7],[-1,-16],[-12,1]],[[81896,19732,0],[-68,-41],[-228,-90]],[[81600,19601,0],[-77,-31],[-28,72],[-13,-7],[-135,-47],[-6,13],[-48,19],[-82,-32],[-83,-29],[-66,-25]],[[81062,19534,0],[-96,180],[-12,23],[-32,58]],[[80922,19795,0],[-13,29],[-28,51],[-24,50],[-14,32],[-22,55],[-21,72],[8,1],[-14,38],[-14,43],[-60,270],[-58,246],[-14,39],[-15,38],[-13,19],[-33,52],[-17,25],[-12,30]],[[80558,20885,0],[-73,87]],[[81344,21629,0],[24,-8],[51,-13]],[[80485,20972,0],[48,-56],[25,-31]],[[80922,19795,0],[-108,-12],[-387,-69],[-36,55],[-60,-6],[-73,-7],[-139,-12],[-31,-21],[-39,-25],[-13,-8],[-52,93],[-31,60],[-87,0],[4,-52],[0,-102],[0,-105],[0,-64],[-9,-1],[1,-416],[1,-132],[-2,-29],[-3,-45],[-2,-17],[-7,-34]],[[79849,18846,0],[-23,-66],[-3,-4],[-37,-59],[-18,-24],[-28,-32],[-33,-26],[-27,-20],[-11,-7],[-8,-6],[-22,-12],[-16,-7],[-27,-12],[-42,-13],[-44,-9],[-34,-4],[-21,-1],[-30,-1],[-12,0],[-23,1],[-30,5],[-37,9],[-27,6],[-33,11],[-30,13],[-16,8],[-14,8],[-22,14],[-61,44],[-47,45],[-22,21],[-21,25],[-27,37],[-21,34],[-32,58],[-21,51],[-1,3],[-4,9],[-5,17],[-16,52],[-1,6],[-12,55],[-1,56]],[[78889,19131,0],[-1,47],[0,66],[2,27],[13,70],[31,161],[8,36],[56,271],[7,34],[11,81],[-1,80],[-1,18],[-10,63],[-26,80],[-8,14],[-22,43],[-32,57],[-18,26],[-13,16],[-40,45]],[[79087,20683,0],[8,8],[109,118]],[[81062,19534,0],[-89,-36],[178,-333],[63,-116],[49,-124]],[[81263,18925,0],[19,-81],[6,-22]],[[81288,18822,0],[11,-51],[5,-55]],[[81304,18716,0],[4,-51],[0,-38],[-2,-65],[-1,-18]],[[81305,18544,0],[-13,-84],[-24,-103],[-34,-96],[-30,-62],[-17,-17],[-22,-9],[-31,-7],[-19,-1]],[[81115,18165,0],[-51,-4],[-59,-6],[57,-79]],[[81062,18076,0],[-53,-9],[-51,-19],[-39,-17],[-32,-20],[-60,-53],[-34,-39]],[[80793,17919,0],[-341,-429]],[[80452,17490,0],[-111,-139]],[[80341,17351,0],[-15,-17],[-35,-34],[-52,-43]],[[80239,17257,0],[-58,-42]],[[80181,17215,0],[-4,-2],[-7,1]],[[80170,17214,0],[-61,-31]],[[80109,17183,0],[-66,-25]],[[80043,17158,0],[-21,-7],[-29,-8],[-46,-9],[-58,-6],[-52,1]],[[79837,17129,0],[-56,3]],[[79781,17132,0],[-56,10],[-51,11]],[[79674,17153,0],[-55,21]],[[79619,17174,0],[-47,23],[-26,13],[-28,22],[-43,34],[21,100],[24,9],[12,-5],[13,-2],[12,1],[9,4],[45,22],[75,38],[23,10],[100,51],[-9,17],[9,5],[5,3],[17,-32]],[[79831,17487,0],[83,43]],[[79914,17530,0],[85,46]],[[79999,17576,0],[-9,13],[-11,17]],[[79979,17606,0],[41,25],[14,9],[21,15],[14,11],[14,15],[32,-27],[62,68],[-31,24]],[[80146,17746,0],[40,45]],[[80186,17791,0],[27,33],[6,13],[35,-17],[43,83],[-37,17],[14,28],[12,31],[9,33],[27,-10],[-3,27],[-5,14],[-6,10],[-18,14],[-14,10],[-59,41],[-16,14],[-15,17],[-9,16]],[[80177,18165,0],[-9,21],[-21,49]],[[80147,18235,0],[-50,120],[-19,-6],[-44,104],[-93,214],[16,202],[-54,-19],[-54,-4]],[[82477,20720,0],[-45,-10],[-62,-9],[-44,-3],[-46,-2],[-48,0],[-148,1],[-20,0],[-145,1]],[[81594,22142,0],[24,15],[75,29],[34,11],[2,7],[3,6],[89,8],[30,1],[40,-1],[42,-7],[23,-6],[6,0],[5,5],[48,-29],[19,-14],[63,-51],[26,-30],[24,-20],[7,4],[44,-55],[106,-112],[10,3],[35,-49],[55,-58],[58,-49],[9,-1],[60,-36],[51,-18],[29,-6],[41,-4],[53,2],[26,3],[34,9],[38,14],[9,0],[196,40],[399,86],[38,15],[27,6],[36,20],[44,28],[17,18],[7,3],[26,16],[35,30],[10,7],[12,3],[11,-1],[44,-27],[60,-46],[190,-78],[11,2],[12,0],[174,-72],[29,-16],[27,-20],[17,-16],[5,-13],[4,-10],[18,-23],[26,-32],[18,-36],[20,-71],[2,-39],[-4,-67],[-2,-7],[7,-45],[1,-21],[5,-18],[23,-43],[-78,-63],[2,-28],[36,9],[38,20],[9,-32],[12,-42],[-10,-10],[-24,-12],[-33,-7],[-62,-8],[-60,0],[-49,5],[-215,30],[-56,4],[-55,-3],[-65,-9],[-47,-14],[-35,-12],[-37,-19],[-279,-139],[-47,-25],[-102,-42],[-66,-24],[-366,-120],[-37,-14],[-114,-43],[-32,-17],[-54,-29],[-19,26],[-35,52]],[[82477,20720,0],[-50,-141],[-43,0],[2,-126],[43,-16],[0,-75],[24,-30],[40,-45],[15,-19],[115,-137],[123,-157],[139,-183],[166,-199],[223,-341],[81,-104],[28,-48],[-8,-2],[-35,-9],[-1,-9],[-109,-22],[-200,-29],[-73,-16],[-145,-27],[-6,0],[-2,10],[-124,-11],[-84,-15],[-5,-10],[-26,0],[-9,0],[-39,-7],[-33,0],[-79,-16],[-38,0],[-43,-23],[-21,-8],[-34,-23],[67,-91],[16,-7],[44,7],[19,4],[13,-1],[49,2],[92,14],[131,20],[116,22],[9,-34],[11,-3],[32,4],[136,22],[79,12],[25,4],[122,15],[35,2],[62,10],[42,-43],[6,0],[20,-4],[62,-20],[54,-36],[12,-6],[-7,-23],[-17,-36],[-22,-36],[-26,-27],[-27,-19],[-28,-19],[-36,-17],[-23,-4],[-37,7],[-63,31],[-39,14],[-78,20],[-16,-3],[-4,-15],[-31,-70],[-15,-27]],[[83054,18551,0],[-46,-19],[-8,12],[-146,-60],[-30,-12],[-68,-28],[-28,-11],[-42,-16],[2,-6],[-42,-8],[-17,-2],[-50,-5],[-45,-1],[-47,5],[-5,-6],[-35,10],[-40,13],[-43,29],[-4,-6],[-31,16],[-33,26],[-26,20],[-7,7],[-7,3],[-4,4],[-3,-4],[-26,20],[-12,17],[-10,17],[-27,40],[-7,-3],[-16,36],[-19,45],[-12,52],[-7,-1],[-4,29],[-3,41],[0,39],[2,199],[4,149],[0,26],[-1,90],[1,30],[0,14],[4,205],[3,155],[-4,1],[1,27]],[[83054,18551,0],[88,-38],[102,-90],[-29,-31],[-28,-33],[-24,-38],[-20,-36],[-18,-38],[-13,-43],[-8,-39],[-6,-42],[-1,-84],[4,-41],[7,-35],[8,-26],[10,-40],[16,-58],[35,-182],[3,-47],[6,2],[6,-34],[8,-44],[6,-43],[4,-58],[-2,-37],[-6,-50],[-10,-50],[-11,-44],[-23,-62],[-29,-53],[-46,-70],[-58,-64],[-42,-40],[-3,2],[-39,-30],[-46,-31],[-75,-44],[-3,4],[-43,-22],[-50,-21],[-46,-16],[-54,-11],[-1,6],[-64,-11],[-74,-7],[-65,0],[0,4],[-60,3],[-70,5],[-73,12],[-1,5],[-113,41],[-78,35],[-2,-2],[-35,19],[-78,53],[-56,40],[-48,44],[-64,64],[-51,55],[-66,83],[-45,71],[-42,74],[-36,74],[-15,40],[-6,14],[-22,66],[-44,147],[-27,91],[-13,41],[-23,49],[-25,34],[-32,14],[8,104]],[[81303,18062,0],[-241,14]],[[81062,18076,0],[-57,80],[59,6],[51,3]],[[81305,18544,0],[2,18],[2,65],[-1,39],[-4,50]],[[81288,18822,0],[-6,23],[-19,80]],[[81600,19601,0],[228,91],[68,40]],[[81896,19732,0],[12,0],[1,16],[207,-8]],[[78889,19131,0],[-9,17],[-21,66],[-20,34],[-31,43],[-24,26],[-36,30],[-15,9],[-14,9],[-55,20],[-35,10],[-33,5],[-57,1],[-68,-2],[-50,2],[-35,4],[-64,12],[-52,16],[-50,21],[-51,25],[-18,11]],[[78151,19490,0],[70,57]],[[78476,19787,0],[25,37]],[[78576,19942,0],[42,66]],[[78618,20008,0],[14,22]],[[75379,19045,0],[115,-49],[6,4]],[[75500,19000,0],[31,-19],[11,-7]],[[75542,18974,0],[44,-2],[-12,-19]],[[75478,18801,0],[14,-35],[15,-37]],[[75507,18729,0],[1,-58]],[[76845,17930,0],[-8,-5],[-151,-241],[-17,-27],[-106,-167],[-133,-214],[-219,-353],[-157,-265],[-211,-342],[-109,-177],[-209,-344]],[[75525,15795,0],[-121,-34],[-168,-21],[-208,-25],[-241,0],[-96,13]],[[74691,15728,0],[-7,1],[-68,5]],[[74616,15734,0],[-21,2],[-61,12],[-87,17],[-173,50],[-108,44],[-31,13],[-180,91],[-65,41],[-40,25],[-18,13],[-28,20],[-158,153],[-19,18],[-21,22],[-157,160],[-104,97],[-58,59],[-115,116]],[[73172,16687,0],[-39,42],[-48,49],[-97,104]],[[72988,16882,0],[-27,27],[-71,60]],[[72890,16969,0],[33,-14],[26,-2],[31,4],[34,22],[29,28]],[[73043,17007,0],[33,-15],[37,-16],[126,-57],[1,0],[-6,-14],[-5,-10],[100,-41],[52,-23]],[[73381,16831,0],[94,100],[74,79]],[[73549,17010,0],[92,73],[35,28],[27,22],[46,38],[85,76],[51,46],[15,13],[22,17],[29,21],[59,45]],[[74052,17401,0],[22,-1],[53,-3]],[[74127,17397,0],[11,13],[44,44],[33,33],[46,47],[30,31]],[[74366,17642,0],[5,7],[4,3]],[[74293,17740,0],[42,69],[9,16],[37,64]],[[74381,17889,0],[22,34],[3,6]],[[74406,17929,0],[4,8],[20,33],[26,44],[23,38]],[[74479,18052,0],[11,29],[11,28],[6,14]],[[74507,18123,0],[12,21],[5,10],[62,111]],[[74586,18265,0],[28,96],[30,99]],[[74644,18460,0],[57,235],[38,162],[8,35]],[[74747,18892,0],[6,11],[92,198]],[[74904,19177,0],[5,0],[5,-1],[149,-31]],[[75212,19116,0],[125,-53],[42,-18]],[[74616,15734,0],[75,-6]],[[75525,15795,0],[-117,-160],[16,-489],[-12,-50],[-123,-598],[-15,-57],[-14,-54],[-111,-490],[-163,-619],[-104,-460],[-33,-146],[-221,-125],[-308,-327],[-351,-371],[-22,6],[-23,0],[-428,8]],[[73496,11863,0],[-32,-36]],[[73464,11827,0],[-2,-2],[-17,-14]],[[73445,11811,0],[-29,-16],[-29,-17],[-12,-3],[-14,-4]],[[73361,11771,0],[-45,-29],[-7,-2],[-44,-9]],[[73265,11731,0],[-58,0],[-313,-46],[-299,290]],[[72595,11975,0],[-521,509],[-541,527]],[[71533,13011,0],[-469,458],[-129,127]],[[70935,13596,0],[-165,153],[-28,26],[-56,64],[-225,258]],[[70461,14097,0],[-87,100],[-135,156],[-20,17],[-16,14]],[[70203,14384,0],[7,20],[-19,9],[-33,19],[-11,9],[-53,47],[-25,27],[-102,81]],[[69967,14596,0],[-42,54],[-165,223],[-62,87],[-152,349],[-35,79]],[[69511,15388,0],[0,2],[15,35]],[[69526,15425,0],[19,49],[1,3]],[[69546,15477,0],[20,49],[13,34],[7,19]],[[69586,15579,0],[6,13],[15,35],[14,35],[6,14]],[[69627,15676,0],[10,26],[10,24]],[[69647,15726,0],[19,49],[4,7],[16,42],[11,24],[10,25],[10,27],[9,20],[22,54]],[[69748,15974,0],[14,31],[30,5],[21,4],[126,-39],[45,-44]],[[69984,15931,0],[10,-10],[250,69]],[[70244,15990,0],[357,102],[294,80]],[[70895,16172,0],[48,15],[15,1],[23,1],[46,90],[23,5],[26,5]],[[71076,16289,0],[67,0]],[[71143,16289,0],[92,-29],[44,-13]],[[71279,16247,0],[46,-2]],[[71325,16245,0],[42,5],[15,7],[13,7]],[[71395,16264,0],[4,6],[7,8]],[[71406,16278,0],[92,126]],[[71498,16404,0],[33,39],[12,14]],[[71543,16457,0],[5,3],[73,45]],[[71621,16505,0],[89,120],[24,64],[8,42]],[[71742,16731,0],[16,104]],[[71758,16835,0],[1,32],[3,63],[-14,154],[1,38],[1,27],[19,101],[18,69],[16,59],[10,44],[15,65]],[[71828,17487,0],[15,77]],[[71911,17552,0],[4,0],[96,-22],[100,-16]],[[72187,17485,0],[116,-46],[127,-71]],[[72430,17368,0],[70,-42],[1,-1]],[[72501,17325,0],[5,-3],[27,-19]],[[72533,17303,0],[32,-21],[22,-17],[24,-19]],[[72611,17246,0],[75,-68],[37,-36],[21,-22],[38,-40]],[[72782,17080,0],[5,-4],[13,-14]],[[72800,17062,0],[46,-57],[20,-17],[24,-19]],[[72988,16882,0],[184,-195]],[[77784,19049,0],[-325,-412]],[[77459,18637,0],[-65,-83],[-110,-200]],[[77284,18354,0],[-94,86]],[[77190,18440,0],[-55,62],[-58,61]],[[77035,18611,0],[-10,12],[-20,22]],[[76929,18743,0],[-8,22],[-38,-34],[-205,223],[-59,105]],[[76619,19059,0],[71,50],[5,5],[162,138],[296,145],[288,139],[109,57]],[[77668,19262,0],[28,-35]],[[77811,19084,0],[-27,-35]],[[57587,29663,0],[-7,42],[-10,43]],[[57570,29748,0],[-29,97]],[[57541,29845,0],[-21,61],[-24,57],[-31,70],[-58,108]],[[57407,30141,0],[-19,-4]],[[57388,30137,0],[-17,37],[-28,44],[-34,52],[-36,42],[-41,42],[-35,41],[-35,40],[-37,40],[-37,38],[-38,39],[-122,119],[-57,54],[-30,24],[65,42],[62,31],[103,44],[56,-15],[44,-6],[132,-25],[82,-14],[147,-71],[14,-8],[98,-43],[94,-80],[57,-45],[14,-10],[56,-38],[40,-90],[29,-62],[35,-71],[66,-133]],[[58206,52803,0],[-30,-59],[-6,-74],[-2,-46]],[[58168,52624,0],[2,-46]],[[58170,52578,0],[13,-102],[13,-36],[51,-132],[26,-52]],[[58273,52256,0],[90,-156],[76,-130]],[[58439,51970,0],[50,-73],[83,-118],[126,-110],[89,-52],[108,-39]],[[58895,51578,0],[122,-22],[51,3],[30,3]],[[59098,51562,0],[147,55],[115,66],[109,62]],[[59469,51745,0],[145,-212],[-59,-724]],[[59555,50809,0],[-35,-429]],[[59520,50380,0],[58,-249],[60,-138]],[[59638,49993,0],[120,-260]],[[59758,49733,0],[37,-79],[13,-26],[24,-45],[464,260]],[[60296,49843,0],[162,-129],[164,-134],[27,-23],[-59,-54]],[[60590,49503,0],[-13,-1],[-6,-1]],[[60571,49501,0],[-3,-14],[-1,-3]],[[60567,49484,0],[-42,-26],[-45,-29],[-14,-6],[-18,-9],[-8,-12]],[[60440,49402,0],[-11,-5],[-30,-14]],[[60399,49383,0],[-19,-15],[-17,-14],[-19,-20]],[[60344,49334,0],[-3,-15]],[[60341,49319,0],[-148,-131],[-47,-37],[-21,-16]],[[60125,49135,0],[-3,-1],[-22,-12],[-52,-43]],[[60048,49079,0],[-19,-11],[-37,-22],[-59,-25],[-145,-61],[-177,-44]],[[59611,48916,0],[-7,-23],[-40,6],[-13,2],[-22,4],[-39,-8],[-31,-7],[-93,-11],[-111,4]],[[59255,48883,0],[-51,2],[-57,2]],[[59147,48887,0],[-109,11],[-83,9]],[[58955,48907,0],[-18,8],[-47,20]],[[58890,48935,0],[-83,25]],[[58807,48960,0],[-21,10],[-36,18]],[[58750,48988,0],[-126,-2],[-105,-4],[-21,-5],[-58,-12]],[[58440,48965,0],[-48,9]],[[58392,48974,0],[-47,-7],[-383,-107],[-192,-21]],[[57770,48839,0],[-43,-3],[-52,-3]],[[57675,48833,0],[-65,33]],[[57610,48866,0],[-8,11],[-18,21]],[[57584,48898,0],[-32,37],[-102,113],[-24,83],[-16,25],[-3,25],[-21,122]],[[57386,49303,0],[-1,11],[-12,106],[30,103]],[[57403,49523,0],[75,114],[113,164]],[[57591,49801,0],[7,20],[5,11]],[[57603,49832,0],[14,34]],[[57617,49866,0],[40,85],[24,79],[-8,47]],[[57673,50077,0],[-35,71],[-44,65]],[[57594,50213,0],[-69,38],[-22,12],[-24,12],[-94,44],[-96,49]],[[57289,50368,0],[-46,12],[-30,5],[-72,41]],[[57141,50426,0],[-60,41],[-92,78]],[[56989,50545,0],[-65,64],[-17,16],[-22,28],[-51,65]],[[56834,50718,0],[-47,63],[-35,48]],[[56752,50829,0],[-52,76],[-69,102],[-6,19],[-3,8]],[[56622,51034,0],[-7,7],[-2,2],[-9,14],[-63,109]],[[56541,51166,0],[-127,214],[-105,171]],[[56309,51551,0],[-150,202],[-142,199],[-67,130],[-100,139],[-11,14],[-126,107]],[[55713,52342,0],[9,25],[27,97],[48,179],[24,17]],[[55821,52660,0],[12,15],[266,316]],[[56099,52991,0],[92,164],[-18,371],[35,175],[-70,54]],[[56138,53755,0],[72,-10]],[[56210,53745,0],[46,-3],[53,-2],[56,-1],[103,-4]],[[56468,53735,0],[8,-38],[45,-17]],[[56521,53680,0],[-18,-62]],[[56503,53618,0],[7,-37],[-10,-41],[18,-34]],[[56518,53506,0],[27,-46]],[[56545,53460,0],[10,-19],[6,-20],[2,-9]],[[56563,53412,0],[2,-10],[1,-9]],[[56566,53393,0],[0,-9]],[[56566,53384,0],[0,-10]],[[56566,53374,0],[-1,-9]],[[56565,53365,0],[-1,-9]],[[56564,53356,0],[-2,-9]],[[56562,53347,0],[-3,-10]],[[56559,53337,0],[-3,-8],[95,-20],[137,8]],[[56788,53317,0],[65,16],[461,29]],[[57314,53362,0],[14,13],[-63,303]],[[57265,53678,0],[342,226],[63,41]],[[57670,53945,0],[153,85],[136,72]],[[57959,54102,0],[476,-306],[13,-9],[26,-226]],[[58474,53561,0],[-5,-121],[-19,-49]],[[58450,53391,0],[-11,-33],[-233,-555]],[[60949,53316,0],[-77,-140]],[[60872,53176,0],[534,-480]],[[61406,52696,0],[252,-260],[126,-103]],[[61784,52333,0],[223,-117]],[[62007,52216,0],[206,-108],[98,-57]],[[62311,52051,0],[98,-70]],[[62409,51981,0],[3,-33]],[[62412,51948,0],[-137,88],[-142,79]],[[62133,52115,0],[-108,55],[-178,94]],[[61847,52264,0],[-8,-1],[-13,-1],[-13,0],[-13,1],[-13,0],[-13,2],[-13,2],[-12,1],[-13,3],[-13,3],[-12,3],[-5,2],[-21,6],[-19,6],[-7,3],[-9,3],[-8,4],[-9,4],[-8,5],[-8,5]],[[61617,52315,0],[-7,4]],[[61610,52319,0],[-5,2],[-5,2],[-6,2],[-5,1],[-6,1],[-3,0],[-27,3],[-27,4],[-4,0],[-9,1],[-9,1],[-10,0],[-9,0],[-10,-2],[-13,-1],[-15,0],[-15,-1],[-14,0],[-15,0],[-26,1],[-136,4],[-34,1],[-32,-332],[-15,-114],[-12,-112],[0,-12],[-1,-16],[0,-17],[0,-16],[1,-16],[1,-16],[1,-15],[3,-17],[3,-19],[3,-21]],[[61159,51615,0],[8,-40]],[[61167,51575,0],[10,-40]],[[61177,51535,0],[6,-20],[6,-20],[6,-20],[8,-19],[7,-20],[8,-19],[7,-19],[9,-19],[9,-19],[153,-8],[1,-2],[12,-16],[12,-16],[13,-15],[13,-16],[14,-15],[13,-15],[15,-15]],[[61489,51242,0],[29,-28]],[[61518,51214,0],[15,-14]],[[61533,51200,0],[31,-26]],[[61564,51174,0],[16,-13],[-6,-9],[-8,-13],[1,-2]],[[61567,51137,0],[17,-23]],[[61584,51114,0],[9,-11],[8,-10],[10,-11],[-49,-66],[-7,4],[-8,4],[-8,3],[-9,2],[-8,3],[-9,2],[-9,2],[-17,-24],[-26,-34],[-14,-18],[-21,-29],[-20,-28],[-20,-28],[-19,-28],[-20,-29],[-18,-29],[-19,-30],[-1,-2],[-3,-6],[-3,-5],[-4,-4],[-3,-5],[-75,-83],[-78,-89],[-29,23],[-113,-98],[-116,-103],[34,-41],[1,-1],[2,-3],[3,-4],[2,-4],[2,-4],[1,-4],[1,-5],[0,-1],[1,-1],[1,-3],[2,-1],[1,-2],[3,-1],[10,-4],[12,-6],[11,-6],[12,-7],[11,-7],[11,-7],[11,-8],[1,-1],[5,-3],[4,-3],[4,-4],[4,-4],[57,-66],[2,-2],[2,-3],[1,-3],[1,-3],[0,-3],[0,-2],[0,-2],[1,-3],[0,-3],[1,-3],[2,-2],[2,-2],[2,-2],[9,-9],[9,-9],[9,-9],[10,-8],[11,-8],[10,-8],[11,-7],[11,-7],[11,-6],[12,-7],[5,-3],[9,-6],[10,-6],[9,-4],[2,-2],[5,-2],[6,-2],[5,-1],[5,0],[5,-1],[14,-1],[14,-1],[14,-1],[13,0],[15,1],[13,0]],[[61353,50046,0],[17,2]],[[61370,50048,0],[14,2],[13,2],[13,2]],[[61410,50054,0],[26,7]],[[61436,50061,0],[13,3],[12,4]],[[61461,50068,0],[18,7]],[[61479,50075,0],[13,5],[13,6],[12,6],[12,6],[10,6],[13,7],[12,8],[12,8],[11,8],[12,9],[43,34],[-64,-86]],[[61578,50092,0],[-96,-31],[-91,-36]],[[61391,50025,0],[-76,-36],[-52,-6]],[[61263,49983,0],[-99,-32]],[[61164,49951,0],[-47,-52],[-171,-116],[-23,-26],[-40,-29],[-51,-18],[-26,-31],[-6,-15],[-151,-108]],[[60649,49556,0],[-27,23],[-164,134],[-162,130]],[[60296,49843,0],[-398,-224],[-66,-37],[-37,71],[-37,80]],[[59638,49993,0],[-60,137],[-58,250]],[[59555,50809,0],[60,723],[-146,213]],[[59098,51562,0],[-80,-6],[-123,22]],[[58439,51970,0],[-76,129],[-90,157]],[[58273,52256,0],[-26,51],[-50,133],[-14,35],[-13,103]],[[58168,52624,0],[2,45],[6,74],[30,60]],[[58450,53391,0],[19,48],[5,122]],[[58474,53561,0],[-26,225]],[[58448,53786,0],[37,-23],[10,-7],[212,-137],[-95,131],[-156,214],[-10,14],[-69,96],[-15,21],[-245,393],[-20,86],[-58,212],[9,28],[3,11],[20,62],[4,13],[31,107],[46,136]],[[58152,55143,0],[53,-31],[66,-31],[-79,-148],[126,-53],[-8,-53],[185,-27],[7,-27],[531,-340],[115,-74],[619,38],[573,-24],[7,-381],[253,-498],[349,-178]],[[56099,52991,0],[-266,-317],[-12,-14]],[[55821,52660,0],[-15,-17],[-8,-9],[-49,-171],[-27,-97],[-9,-25],[-74,-55],[-94,9],[-96,-4]],[[55449,52291,0],[-233,-12],[-129,1]],[[55087,52280,0],[-71,7],[-150,37]],[[54866,52324,0],[-120,25]],[[54746,52349,0],[-99,19],[-201,39]],[[54446,52407,0],[-170,13]],[[54276,52420,0],[-315,-5],[-320,61],[-146,31],[-160,22],[-18,2]],[[53317,52531,0],[1,11],[8,44],[225,215],[36,53],[44,36],[24,20],[29,24],[12,9],[26,13],[-18,36],[-20,102],[63,25],[-118,263],[-33,77],[-15,34],[12,29],[9,23],[15,-2],[25,-12],[17,-4],[78,-40],[10,-16],[23,-31],[15,-17],[43,-41],[44,27],[28,17],[18,10],[-26,38],[-67,145],[-56,104],[238,-99],[136,148],[303,14],[51,-12],[46,-37],[56,-11],[110,-37],[111,42],[133,62],[69,55],[-34,95],[-446,90],[126,459],[55,124],[236,100],[656,-206],[451,-16],[44,-67],[-4,-60],[5,-28],[26,-47],[43,-46],[-19,-45],[-38,-323],[15,-123]],[[56541,51166,0],[72,-124],[9,-8]],[[56622,51034,0],[9,-28],[121,-177]],[[56752,50829,0],[82,-111]],[[56834,50718,0],[73,-94],[82,-79]],[[57141,50426,0],[72,-42],[30,-5],[46,-11]],[[57289,50368,0],[97,-49],[118,-56],[90,-50]],[[57673,50077,0],[0,-48],[-16,-79],[-40,-84]],[[57603,49832,0],[-12,-31]],[[57403,49523,0],[-29,-103],[12,-117]],[[57386,49303,0],[-88,-1],[-34,-1],[-29,-1],[-36,1],[17,-182],[4,-37],[-8,-38],[9,-19],[14,-65],[10,-85],[6,-4],[11,-8],[13,-1],[4,-91],[10,-59],[6,-26],[-3,-14],[4,-17],[0,-19],[1,-31],[-2,-12],[2,-12],[3,-68],[18,-41],[9,-43],[-2,-28],[16,-51],[16,-21],[-2,-26],[23,-42],[7,-23],[0,-10],[4,-6],[2,-2],[4,-5],[34,-48],[-19,-12],[3,-13],[2,-12],[-4,-29],[-84,-84],[-10,-1],[-34,-40],[-50,-51],[-54,-60],[-22,-24],[-26,-21],[-141,-184],[-13,-11],[-81,-127]],[[56896,47498,0],[-46,46],[46,-46]],[[56896,47498,0],[-43,-68]],[[56853,47430,0],[-8,8]],[[56791,47488,0],[-41,42]],[[56710,47580,0],[-24,32]],[[56686,47612,0],[-55,81]],[[56578,47775,0],[-48,80]],[[56499,47910,0],[-14,31]],[[56485,47941,0],[-47,88]],[[56406,48101,0],[-33,77]],[[56373,48178,0],[-21,48]],[[56352,48226,0],[-24,62]],[[56302,48377,0],[-3,14]],[[56274,48697,0],[-42,83]],[[56215,48770,0],[-18,18],[-23,22],[-52,46],[-12,6],[-37,21],[-54,26],[-98,33],[-173,23],[-194,49],[-55,18],[-28,14],[-61,37],[-50,31],[-13,-21],[-22,16],[-6,5],[-101,145],[-85,123],[-96,136],[-68,98],[-69,101],[-32,47],[-55,84],[-54,85],[-72,110],[37,52],[-88,130],[-22,33]],[[54614,50258,0],[25,-15],[76,-45],[58,-32],[245,346],[-46,67],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1]],[[54970,50585,0],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1]],[[54968,50594,0],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,2],[0,2]],[[54966,50603,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[54967,50612,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[54969,50621,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,2],[0,1]],[[54972,50629,0],[1,1]],[[54973,50630,0],[1,2],[0,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1]],[[54977,50638,0],[1,1]],[[54978,50639,0],[1,1],[1,0],[0,1],[1,2],[1,0],[0,1],[1,0],[1,1]],[[54984,50645,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1]],[[54996,50655,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1]],[[55002,50658,0],[1,1],[2,0]],[[55005,50659,0],[1,0],[1,1]],[[55007,50660,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1]],[[55013,50662,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[55018,50663,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[55023,50664,0],[1,0],[2,0],[1,0],[1,0]],[[55028,50664,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1]],[[55038,50663,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[3,-1],[64,-16],[122,173],[11,15],[18,25]],[[55263,50858,0],[25,0]],[[55288,50858,0],[56,-1]],[[55344,50857,0],[2,17],[17,0],[46,20],[29,-3]],[[55438,50891,0],[51,-25]],[[55489,50866,0],[18,-8],[15,7]],[[55522,50865,0],[72,-30]],[[55594,50835,0],[23,37]],[[55617,50872,0],[19,28]],[[55636,50900,0],[19,26],[44,41],[16,24],[6,18]],[[55721,51009,0],[35,38],[68,82],[8,4]],[[55832,51133,0],[20,-5],[34,24]],[[55886,51152,0],[28,18]],[[55914,51170,0],[71,65],[33,29]],[[56018,51264,0],[64,73]],[[56082,51337,0],[25,34]],[[56107,51371,0],[67,60]],[[56174,51431,0],[75,52],[4,5]],[[56253,51488,0],[56,63]],[[54410,48219,0],[-62,-2],[-84,-9]],[[54264,48208,0],[-146,-28]],[[54118,48180,0],[-143,-39],[-88,-28],[-44,-19],[-83,-33],[-78,-34],[-187,-78],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0]],[[53484,47945,0],[-1,0],[-1,0]],[[53482,47945,0],[-1,-1]],[[53481,47944,0],[-1,0],[-1,0]],[[53479,47944,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[53465,47943,0],[-1,0],[-1,0]],[[53463,47943,0],[-2,0],[-1,0]],[[53460,47943,0],[-1,0],[-1,0]],[[53458,47943,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-19,36],[-130,71],[-161,90],[-15,-23],[-38,-55],[-33,14],[-125,95],[-68,-1],[-72,27],[-185,312]],[[52583,48523,0],[-14,23]],[[52569,48546,0],[-74,79],[-166,198],[-2,9]],[[52327,48832,0],[-16,177],[-37,326],[-51,247]],[[52223,49582,0],[-12,56]],[[52211,49638,0],[-12,55],[-7,37],[-3,6],[50,28],[35,24],[202,195]],[[52476,49983,0],[80,94],[74,99]],[[52630,50176,0],[106,125],[17,20],[63,60],[41,35],[95,69]],[[52952,50485,0],[30,20],[142,73],[156,80]],[[53280,50658,0],[122,46],[43,3]],[[53445,50707,0],[28,5],[62,9]],[[53535,50721,0],[78,2],[191,-16],[148,-30]],[[53952,50677,0],[132,-28]],[[54084,50649,0],[55,-17],[48,-29]],[[54187,50603,0],[95,-46],[201,-222]],[[54483,50335,0],[131,-77]],[[52189,49737,0],[10,-43],[12,-56]],[[52223,49582,0],[50,-246],[38,-326],[16,-178]],[[52327,48832,0],[1,-9],[167,-197],[74,-80]],[[52569,48546,0],[14,-22],[-33,-7]],[[52550,48517,0],[-223,-23],[0,-19],[-18,-148]],[[52309,48327,0],[-13,-103],[-126,-203],[-18,-29]],[[52152,47992,0],[74,-39]],[[52226,47953,0],[1,-28],[2,-10]],[[52229,47915,0],[2,-9]],[[52231,47906,0],[4,-8]],[[52235,47898,0],[4,-8]],[[52239,47890,0],[5,-9]],[[52244,47881,0],[6,-7],[8,-7],[7,-7]],[[52265,47860,0],[8,-6],[8,-5],[31,-20]],[[52312,47829,0],[10,-56],[55,-38],[-168,-213]],[[52209,47522,0],[-40,-61],[-91,-121]],[[52078,47340,0],[-35,-51],[-24,-30],[-23,-26],[-13,-46]],[[51983,47187,0],[-108,-190],[-20,-19],[-86,-140]],[[51769,46838,0],[-57,-71]],[[51712,46767,0],[-30,-25],[-46,-41]],[[51636,46701,0],[-47,17],[-47,17]],[[51542,46735,0],[-47,16],[-212,54],[-40,6],[-100,1],[-329,6]],[[50814,46818,0],[-303,18],[-79,-5]],[[50432,46831,0],[-265,-39],[-36,59]],[[50131,46851,0],[-125,-7]],[[50006,46844,0],[175,499],[24,67],[49,138]],[[50254,47548,0],[147,295],[17,34]],[[50418,47877,0],[187,-42],[122,224]],[[50727,48059,0],[87,158],[13,23],[-59,458]],[[50768,48698,0],[-4,89],[-2,44],[49,131],[-190,310],[-75,110],[-71,102]],[[50475,49484,0],[-19,225]],[[50456,49709,0],[-1,12],[-9,104]],[[50446,49825,0],[-14,30],[17,117],[-19,20],[-19,45]],[[50411,50037,0],[-98,77]],[[50313,50114,0],[-17,19],[-19,22]],[[50277,50155,0],[-15,29],[-25,18],[-20,15],[-41,61],[-6,7],[-8,12],[-7,11],[-9,12],[-10,14],[-27,25],[8,2],[180,14]],[[50297,50375,0],[27,1],[31,0]],[[50355,50376,0],[54,-8]],[[50409,50368,0],[48,-9],[755,-139]],[[51212,50220,0],[262,-52],[10,-3],[9,-2],[10,-3],[9,-3],[10,-2],[9,-3],[9,-4],[10,-2],[9,-3],[10,-5],[8,-2],[10,-4],[9,-4],[9,-3],[9,-4],[9,-4],[9,-4],[9,-4],[9,-4],[9,-4],[8,-5],[9,-4],[9,-5],[9,-4],[8,-5],[8,-4],[9,-5],[8,-6],[9,-4],[8,-5],[8,-5],[8,-5],[9,-7],[7,-5],[9,-5],[7,-6],[294,-220],[9,-6],[8,-4],[10,-2],[9,-3],[10,-1],[10,0],[14,0],[10,1],[10,3],[13,-52]],[[50727,48059,0],[-122,-225],[-187,43]],[[50418,47877,0],[-164,-329]],[[50254,47548,0],[-73,-206],[-175,-498]],[[50006,46844,0],[-213,14],[-71,1],[-92,20],[-269,25],[-186,-12],[-496,22]],[[48679,46914,0],[-92,5]],[[48587,46919,0],[-136,112]],[[48451,47031,0],[-447,116]],[[48004,47147,0],[-224,160],[-98,156],[61,28],[16,19],[0,23],[-7,28],[-15,36],[3,15],[19,40],[5,51],[59,2],[1,95],[1,68],[2,93],[26,94],[15,53],[-110,71],[6,7],[-6,7],[-26,26],[-46,44],[-23,22],[-10,9],[-38,37],[245,213],[109,119],[57,71]],[[48026,48734,0],[54,64],[371,465],[157,199],[65,73],[77,82],[78,84],[190,160],[89,59],[245,148],[191,112],[145,82],[2,1],[1,0],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[2,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[50114,50364,0],[22,-31],[19,-26],[7,-11],[14,-19],[41,-61],[45,-33],[15,-28]],[[50277,50155,0],[36,-41]],[[50411,50037,0],[19,-46],[20,-19],[-18,-118],[14,-29]],[[50446,49825,0],[10,-116]],[[50475,49484,0],[146,-213],[190,-310],[-48,-130],[5,-133]],[[50768,48698,0],[60,-458],[-101,-181]],[[58814,45970,0],[2,-11],[3,-12]],[[58819,45947,0],[6,-13]],[[58778,45877,0],[-48,-66],[-66,-89]],[[58586,45493,0],[-8,0],[-14,1]],[[57831,45368,0],[-13,-43]],[[57818,45325,0],[-39,9]],[[57779,45334,0],[-127,56],[-62,27]],[[57590,45417,0],[-79,41],[-90,28],[-94,14]],[[57327,45500,0],[-11,3],[-39,7]],[[57277,45510,0],[-42,9]],[[57235,45519,0],[-76,22],[-11,2]],[[57148,45543,0],[-86,26],[-86,24],[-89,26],[-90,12],[-88,21],[-71,29],[-82,31],[-29,12],[-48,17],[-32,10],[-41,12]],[[56406,45763,0],[-108,7],[-7,0]],[[56291,45770,0],[-52,-1],[-47,-1],[-17,0]],[[56175,45768,0],[-26,-1],[-87,-1],[-85,14],[-43,11]],[[55949,45829,0],[3,10]],[[56473,46458,0],[-31,168]],[[56431,46682,0],[-11,54]],[[56435,46999,0],[121,-42],[-121,42]],[[56627,47267,0],[6,7]],[[56715,47353,0],[40,27]],[[56790,47414,0],[25,3],[3,2]],[[56853,47430,0],[70,-61],[49,-41],[23,-16]],[[56995,47312,0],[19,-16],[26,-20]],[[57040,47276,0],[190,-110],[43,-26],[164,-95],[60,-31],[123,-57],[51,-22],[154,-65],[70,-28],[43,-12],[65,-12],[40,-7],[197,-36],[68,-12],[306,-56],[45,-22],[82,-45],[25,-23],[10,-19],[33,-84],[7,-21],[3,-27],[5,-96],[3,-44],[-13,-356]],[[57386,49303,0],[21,-123],[4,-24],[16,-26],[23,-83],[134,-149]],[[57584,48898,0],[26,-32]],[[57675,48833,0],[95,6]],[[57770,48839,0],[193,21],[382,106],[47,8]],[[58440,48965,0],[79,16],[105,4],[126,3]],[[58750,48988,0],[57,-28]],[[58890,48935,0],[65,-28]],[[58955,48907,0],[192,-20]],[[59147,48887,0],[108,-4]],[[59255,48883,0],[111,-5],[94,11],[69,15],[36,-6],[39,-6]],[[59604,48892,0],[27,-62],[9,-23]],[[59640,48807,0],[0,-14],[4,-10]],[[59644,48783,0],[8,-4],[0,-14],[-1,-12],[1,-20],[8,-3],[0,-46],[-4,-38],[-8,-17],[12,-67],[-19,-37],[13,-26],[-12,-18],[26,-21],[19,-34],[4,-13],[6,-10],[-8,-46],[-15,-50],[5,-15],[7,-13],[11,-12],[4,-34],[4,-42],[5,-7],[15,-15],[24,-13],[7,-8],[26,-11],[29,-24],[37,-21],[20,1],[2,-23],[-3,-42],[-13,-60],[1,-16],[-6,-19],[2,-13],[13,-10],[-16,-36],[-13,-13],[1,-30],[6,-55],[12,-18],[13,-26],[9,-36],[22,-22],[8,8],[24,-36],[9,-15],[11,-14],[5,-22],[14,-22],[23,-21],[14,-7],[15,-18],[12,-20],[10,-33]],[[60043,47474,0],[-13,-19],[-13,-18],[-39,-24],[-45,-1],[-42,0],[-13,2],[-18,15],[-39,-18],[-5,-3],[-37,-17],[-17,-9],[-273,163],[-56,33],[-3,-35],[14,-7],[21,-32],[0,-17],[25,-11],[17,-19],[17,-23],[1,-7],[14,-7],[30,-36],[8,-19],[-11,-27],[13,-25],[-98,-80],[18,-58],[-5,-96],[2,-17],[35,-81],[17,-93],[-38,-11],[-55,-17],[4,-36],[-53,-25],[-5,-3],[-42,-15],[-6,-2],[-63,-38],[-78,-45]],[[59212,46696,0],[-65,-12],[-52,-3]],[[59095,46681,0],[3,-108],[10,-127],[1,-93],[7,-70],[-12,-2]],[[59104,46281,0],[-84,-68]],[[59020,46213,0],[-26,-33],[-7,-8]],[[58987,46172,0],[-14,-26],[-23,-40]],[[58950,46106,0],[-4,-11],[-1,-4]],[[58945,46091,0],[-2,-16],[-15,-11]],[[58928,46064,0],[-53,-87]],[[58875,45977,0],[-4,-6],[-46,-37]],[[58819,45947,0],[-5,23]],[[57040,47276,0],[-45,36]],[[61475,49066,0],[-74,-93]],[[61401,48973,0],[-41,-59],[-44,-68],[-35,-58],[77,80],[83,50]],[[61441,48918,0],[98,54]],[[61539,48972,0],[99,42]],[[61638,49014,0],[37,6],[131,92]],[[61806,49112,0],[21,-24]],[[61827,49088,0],[135,90]],[[61962,49178,0],[96,78]],[[62058,49256,0],[52,-60]],[[62110,49196,0],[-65,-36],[-93,-48],[-125,-102]],[[61827,49010,0],[0,-26],[58,-52],[80,72],[51,-51],[21,-25],[11,-22],[63,38]],[[62111,48944,0],[-17,-23],[-198,-263]],[[61896,48658,0],[-130,-171],[-176,-441]],[[61590,48046,0],[-8,-77],[-30,-316],[-15,-154]],[[61537,47499,0],[-66,-554],[23,-246]],[[61494,46699,0],[23,-294],[2,-18]],[[61519,46387,0],[1,-10]],[[61520,46377,0],[-74,54],[-2,1],[-2,2],[-9,5],[-30,87],[-45,115],[-47,118],[-61,187],[-31,87],[-26,108]],[[61193,47141,0],[39,6]],[[61232,47147,0],[-15,97],[-7,44],[-3,26],[-30,-6],[-20,-3],[-88,-17],[-7,12],[-65,7],[-98,-28],[-51,-13],[-45,130],[-71,-21],[1,-5],[-22,-3],[-26,-5],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-12],[-20,-3],[-27,-3],[-20,-3],[-14,-3],[-5,-1],[-3,-1],[-4,-1],[-4,-1],[-4,-1],[-4,-1],[-4,-1],[-3,-2],[-4,-1],[-4,-1],[-4,15],[-21,-4],[-27,93],[-21,-6],[-89,-25],[-28,6],[7,11],[2,7],[-1,9],[0,8],[-3,8],[-7,11],[-2,14],[-2,11],[-2,9],[-24,27],[-8,62],[-169,1],[-54,1],[-74,2],[-1,-48],[1,-19],[8,-41]],[[59644,48783,0],[-3,9],[-1,15]],[[59604,48892,0],[7,24]],[[59611,48916,0],[177,43],[204,86],[56,34]],[[60048,49079,0],[77,56]],[[60125,49135,0],[68,52],[88,76],[60,56]],[[60344,49334,0],[32,30],[23,19]],[[60399,49383,0],[41,19]],[[60440,49402,0],[8,11],[32,15],[87,56]],[[60567,49484,0],[4,17]],[[60571,49501,0],[19,2]],[[60590,49503,0],[59,53]],[[61164,49951,0],[62,-78]],[[61226,49873,0],[23,7]],[[61249,49880,0],[53,12]],[[61302,49892,0],[11,8],[42,-9],[17,-16],[-36,-69],[-5,-46],[19,-13],[28,-21]],[[61378,49726,0],[138,83]],[[61516,49809,0],[198,111],[115,65]],[[61829,49985,0],[28,14]],[[61857,49999,0],[-7,-3],[-6,-5]],[[61844,49991,0],[-6,-6],[-4,-6],[-4,-6],[-3,-8],[-1,-7],[0,-8],[1,-7],[2,-7],[4,-14],[2,-14],[1,-14],[0,-13],[-1,-14],[-2,-14],[-3,-14],[-4,-13],[-5,-13],[-7,-13],[-5,-10],[-7,-9],[-6,-9],[-8,-9],[-8,-8],[-8,-8],[-9,-7],[-9,-7],[-10,-6],[-11,-6],[-155,-73],[-14,-6],[-13,-6],[-54,-28],[-11,-5],[-13,-7],[-12,-7],[-13,-7],[-11,-6],[-1,0],[-10,-6],[-10,-6],[-1,-1],[-11,-6],[29,-41],[-72,-44],[8,-10],[-2,-2],[9,-14],[-51,-30],[23,-36],[-55,-35],[41,-63],[4,3],[2,1],[1,0],[1,1],[2,1],[3,2],[1,0],[1,0],[5,3],[1,0],[0,1],[1,0],[3,1],[3,2],[1,0],[2,1],[5,1],[0,1],[1,0],[4,2],[3,0],[1,1],[2,0],[5,2],[9,3],[9,1],[8,1],[9,2],[9,1],[8,0],[9,0],[9,0],[8,0],[9,-1],[3,0],[3,-1],[1,0],[4,-1],[1,0],[1,0],[1,0],[4,-1],[1,0],[2,-1],[4,0],[3,-2],[3,0],[1,0],[3,-1],[2,-1],[3,-1],[3,-1],[2,-1],[3,-1],[1,-1],[1,0],[2,-1],[2,-1],[1,0],[3,-1],[2,-1],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[2,-1],[1,0],[2,0],[1,-1],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[3,0],[4,0],[4,0],[2,0],[2,1],[1,0],[2,0],[4,1],[4,2],[2,0],[1,1],[3,1],[3,2],[3,1],[2,3],[3,1],[2,2],[3,2],[2,2],[3,2],[2,3],[8,8],[49,-45],[-60,-66],[-133,-144]],[[61232,47147,0],[-27,-4],[-12,-2]],[[61520,46377,0],[52,-348],[16,-106]],[[61588,45923,0],[11,-80]],[[61599,45843,0],[11,-82],[57,-431]],[[61667,45330,0],[6,-44],[1,-10]],[[61674,45276,0],[9,-85],[0,-4],[0,-76],[-10,-60],[6,-37],[-3,-67]],[[61676,44947,0],[-16,-261],[-1,-10],[-2,-33]],[[61657,44643,0],[-31,-12]],[[61626,44631,0],[-1,-13],[-1,-26]],[[61624,44592,0],[-8,-166],[-2,-70],[-29,-29],[-1,-1]],[[61584,44326,0],[-15,-16],[-20,-21]],[[61549,44289,0],[-1,-2],[-25,-65],[-21,-54],[-8,-21]],[[61494,44147,0],[-9,4]],[[60001,45702,0],[-13,19]],[[58875,45977,0],[12,19],[41,68]],[[58945,46091,0],[5,15]],[[58950,46106,0],[37,66]],[[58987,46172,0],[33,41]],[[59020,46213,0],[34,28],[50,40]],[[59095,46681,0],[51,3],[66,12]],[[63736,45919,0],[-14,5],[-13,6],[-199,78],[-287,111],[-105,42],[-125,48],[-78,216],[-15,0],[-83,-7],[-15,-3],[-272,-26],[-14,-1],[-36,-5],[65,-298],[50,-210],[5,-23],[-3,-166],[18,-63],[-30,4],[-19,3],[-9,1],[-8,3],[-54,9],[-44,15],[-20,3],[0,6],[2,6],[-31,17],[-23,14],[-28,3],[-23,-5],[-21,-3],[-58,-5],[-4,-3]],[[62245,45691,0],[-29,-3],[-5,0]],[[62211,45688,0],[-19,3],[-158,42],[-435,110]],[[61588,45923,0],[-69,464]],[[61519,46387,0],[-25,312]],[[61537,47499,0],[53,547]],[[61896,48658,0],[215,286]],[[62111,48944,0],[95,68],[59,17],[48,21]],[[62313,49050,0],[75,14]],[[62388,49064,0],[69,0],[65,-9],[50,-8],[43,-8],[61,-12],[112,-14],[79,-26],[84,-105],[14,-52],[69,-76],[71,-81],[195,-165],[203,-137],[58,-46],[100,-82],[131,-179],[25,-35],[78,-162],[27,-99],[26,-133],[-1,-95],[50,-230],[27,-173],[84,-138]],[[64108,46999,0],[-17,-24],[-26,-133],[-56,-73],[-10,-11],[-32,-38],[-33,-38],[-13,-17],[-61,-73],[-33,-40],[-38,-45],[-12,-18],[-16,-34],[-6,-5],[-6,-7],[-33,-34],[-18,-17],[-49,34],[-18,0],[-5,-14],[-9,-24],[4,-6],[20,-91],[10,-29],[-8,-21],[-6,-20],[1,-32],[-12,-10],[-9,-5],[-6,-5],[41,-92],[74,-74],[49,-12],[-4,-28],[-35,-44]],[[64017,45482,0],[40,3]],[[64057,45485,0],[47,7],[51,11],[36,9],[42,14],[35,12],[26,11],[36,18],[31,17],[31,19],[27,16],[29,21],[34,28],[26,22],[54,52]],[[64562,45742,0],[66,-75]],[[64628,45667,0],[146,-192]],[[64774,45475,0],[83,-62]],[[64857,45413,0],[44,-61]],[[64636,45187,0],[-16,-20],[-8,-10]],[[64473,44919,0],[-16,-28],[-4,-5]],[[64728,44712,0],[15,0],[28,0]],[[64897,44524,0],[-6,-18]],[[64719,44296,0],[-67,-52],[-18,-12]],[[64388,44136,0],[-39,-9]],[[64243,44120,0],[-48,-1]],[[63963,44180,0],[-7,-19]],[[63850,44055,0],[-29,-11],[-3,-1],[-150,-57],[-12,-4]],[[63254,44302,0],[-72,-74],[-5,-5]],[[63150,44195,0],[15,-15]],[[63279,43814,0],[-15,-46]],[[63137,43439,0],[-13,-23],[-12,-24]],[[63110,43374,0],[-1,-5]],[[61551,44120,0],[-57,27]],[[61549,44289,0],[35,37]],[[61624,44592,0],[2,39]],[[61657,44643,0],[19,304]],[[61674,45276,0],[-7,54]],[[61667,45330,0],[-68,513]],[[62211,45688,0],[34,3]],[[63736,45919,0],[39,-15],[124,-49],[0,-32],[-2,-28],[-52,2],[-30,1],[18,-32],[43,-75],[-1,-3],[9,-32],[-64,-57],[16,-42],[2,-19],[-4,-18],[-6,-14],[-15,-14],[0,-12],[133,1],[22,0],[36,1],[13,0]],[[66611,47284,0],[77,-158]],[[66749,46214,0],[-10,-13],[-7,-10],[-22,-36]],[[66527,45786,0],[-13,-25]],[[66468,45690,0],[-1,0],[-1,-1]],[[66459,45679,0],[-1,-1],[-1,-1]],[[66456,45675,0],[-1,0],[-1,-1]],[[66388,45606,0],[-10,-8]],[[66377,45596,0],[-10,-8]],[[66367,45588,0],[-22,-16]],[[66345,45572,0],[-2,-1]],[[66342,45571,0],[-6,-5]],[[66336,45566,0],[-8,-5]],[[66327,45561,0],[-2,-3]],[[66325,45558,0],[-7,-4]],[[66317,45554,0],[-5,-4]],[[66310,45549,0],[-2,-1]],[[66308,45548,0],[-3,-2]],[[66305,45546,0],[-2,-1]],[[66262,45523,0],[-1,-1],[-1,0]],[[66234,45512,0],[-1,-1],[-1,0]],[[66019,45491,0],[-1,0],[-1,0]],[[65941,45507,0],[-12,5]],[[65524,45250,0],[0,-2],[0,-1]],[[65163,45347,0],[-1,0],[-1,0]],[[64901,45352,0],[-36,50],[-8,11]],[[64857,45413,0],[-17,13],[-19,14],[-47,35]],[[64628,45667,0],[-7,9],[-59,66]],[[64057,45485,0],[-40,-2],[0,-1]],[[64108,46999,0],[24,5]],[[64132,47004,0],[157,29],[192,18],[152,15],[134,-10],[38,-4],[116,-8],[91,-8],[50,3],[148,10],[28,1],[134,6],[16,2],[50,14],[29,28],[10,17],[22,45],[11,43]],[[65510,47205,0],[63,22],[37,8],[12,3],[43,1],[17,0]],[[65682,47239,0],[84,-4]],[[65766,47235,0],[45,-4]],[[65811,47231,0],[13,-1]],[[65824,47230,0],[42,-4]],[[65866,47226,0],[12,-1]],[[65878,47225,0],[16,-1]],[[65894,47224,0],[53,-1]],[[65947,47223,0],[122,-2]],[[66069,47221,0],[16,0]],[[66085,47221,0],[120,-2]],[[66205,47219,0],[167,-5]],[[66372,47214,0],[41,11]],[[66413,47225,0],[198,59]],[[63254,50119,0],[324,-325],[195,-204],[59,-74],[1,-1],[30,-41],[17,-23]],[[63880,49451,0],[142,-182]],[[64022,49269,0],[160,-198],[96,-125],[16,-29],[63,-104],[40,-90],[99,-208]],[[64496,48515,0],[-6,-2],[-126,-45],[1,-45]],[[64365,48423,0],[84,-267],[9,-28],[89,-111],[18,-43],[5,-13],[-6,-19],[-3,-11],[-16,-68]],[[64545,47863,0],[-13,-129],[-9,-15],[-40,-63]],[[64483,47656,0],[-23,-37],[-41,-64]],[[64419,47555,0],[-11,-16],[-71,-96],[-62,-85]],[[64275,47358,0],[-56,-77],[-6,-16],[-60,-190]],[[64153,47075,0],[-21,-71]],[[62388,49064,0],[-64,-10],[-11,-4]],[[61827,49010,0],[-22,30],[8,10],[-32,34],[31,52],[88,78],[65,71],[59,60],[59,38],[-17,9],[-16,14],[-9,-5],[-22,19],[-11,5],[-71,64],[-23,27],[-43,37],[-11,16],[-138,117],[-80,-72],[-97,-66],[-72,89],[-40,43],[-55,46]],[[61263,49983,0],[49,6],[79,36]],[[61578,50092,0],[195,260],[110,212],[63,218],[29,106]],[[61975,50888,0],[61,-1],[26,-2],[61,-17],[20,-6],[22,-2],[48,-7],[22,-6],[24,-6],[35,-29],[28,-26],[32,50],[19,7],[12,10],[30,-22],[7,-17],[16,-86],[23,-12],[22,-23],[58,-24],[55,-44],[63,-51],[0,-2],[30,-11],[237,-233],[248,-157],[12,-7],[55,-34],[13,-11]],[[64641,51628,0],[21,-16]],[[64662,51612,0],[99,-72],[29,-14],[13,-6],[11,-9],[16,-10]],[[64830,51501,0],[26,-5]],[[64856,51496,0],[41,-37],[8,-15],[40,-21],[61,-9],[135,-91],[43,-36],[13,-18],[19,-8],[21,-29],[17,-11],[31,2],[38,-26],[7,-19],[31,-13],[20,-16],[14,-5],[28,-26],[26,-6],[43,-50]],[[65492,51062,0],[12,-11]],[[65504,51051,0],[-112,-31],[-19,-6]],[[65373,51014,0],[-314,-141]],[[65059,50873,0],[-413,-137],[-39,-58],[-48,-26],[7,-9],[-57,-20],[-23,-3],[-17,-12],[-47,-1]],[[64422,50607,0],[-26,13],[-80,-2],[-204,-12],[-219,-15]],[[63893,50591,0],[-82,-4],[-47,-1]],[[63764,50586,0],[-184,-12],[1,-9],[18,-265],[-35,-23],[-29,-12],[-20,3],[-19,-13],[-25,26],[-12,-1],[-44,-6],[-16,11],[1,-15],[-32,-30],[-45,-52],[-30,-27],[-39,-42]],[[61975,50888,0],[18,67],[-1,105],[6,72],[3,31],[10,42],[9,39]],[[62020,51244,0],[5,33],[2,11],[81,137],[12,17],[134,181],[34,44]],[[62288,51667,0],[113,240],[11,25]],[[62412,51932,0],[0,16]],[[62409,51981,0],[40,48],[25,49],[24,48]],[[62498,52126,0],[67,119]],[[62565,52245,0],[40,67],[42,58]],[[62647,52370,0],[82,94],[42,71]],[[62771,52535,0],[27,46],[12,19],[24,30]],[[62834,52630,0],[118,102],[116,116]],[[63068,52848,0],[183,134],[148,60]],[[63399,53042,0],[23,-68],[28,-70],[43,-50],[65,-67],[16,-28],[31,-41],[46,-32],[7,-17],[-2,-17],[-22,-20],[29,-21],[34,-38],[37,-27],[12,-18],[47,-41],[37,-33],[49,-32],[10,-13],[303,-435],[9,-6],[67,-66],[30,-25],[13,-20]],[[64311,51857,0],[31,-26]],[[64342,51831,0],[71,-59],[78,-57],[45,-20],[16,-11],[13,-32],[50,-29],[14,1],[12,4]],[[65685,50624,0],[-1,-3],[-4,-14],[-11,-30]],[[65669,50577,0],[5,-3],[19,-14],[99,-69],[76,-52],[104,-75],[68,-47],[134,-85],[113,-63],[126,-69],[160,-82],[175,-80],[45,-19],[117,-52],[59,-25]],[[66969,49842,0],[-120,-227]],[[66849,49615,0],[-344,179],[-102,54]],[[66403,49848,0],[-29,-4]],[[66374,49844,0],[-137,-47],[-154,-53],[33,-46],[-51,1],[-124,-10],[-54,-10]],[[65887,49679,0],[-107,-38]],[[65780,49641,0],[-91,-38]],[[65689,49603,0],[-152,-76]],[[65537,49527,0],[-46,-27],[-98,-69],[-68,-65]],[[65325,49366,0],[-16,-12]],[[65309,49354,0],[-76,-91]],[[65233,49263,0],[-22,-38]],[[65211,49225,0],[-19,-49],[-13,-46],[-14,-50],[120,-103],[-45,-117]],[[65240,48860,0],[-22,-100]],[[65218,48760,0],[-16,-98]],[[65202,48662,0],[-27,-176]],[[65175,48486,0],[34,-114]],[[65209,48372,0],[-39,35],[-93,80],[-262,91]],[[64815,48578,0],[-204,-35]],[[64611,48543,0],[-13,-3],[-88,-21],[-14,-4]],[[64022,49269,0],[-141,182],[-1,0]],[[63764,50586,0],[129,5]],[[64422,50607,0],[-31,-8],[8,-141],[16,-286],[3,-62],[-3,62],[-16,286],[-8,141],[31,8]],[[65059,50873,0],[237,106],[77,35]],[[65373,51014,0],[131,37]],[[65504,51051,0],[33,-15],[208,-101]],[[65745,50935,0],[12,-5]],[[65757,50930,0],[43,68]],[[65800,50998,0],[56,87]],[[65856,51085,0],[59,-28],[55,-25]],[[65970,51032,0],[-32,-57],[-23,-30],[-44,-49],[-178,-186],[-9,-31],[1,-55]],[[69379,49635,0],[378,-137],[2,-1]],[[69759,49497,0],[53,-30],[76,43],[112,6],[52,1],[12,-32],[3,-9],[-61,-17],[-61,-20],[-49,-19],[39,-23],[94,22],[68,19],[21,4],[13,-1],[186,-5],[19,-2],[-28,-158],[-5,-23],[4,-1]],[[70297,49225,0],[-2,0],[-52,10]],[[70243,49235,0],[-33,1],[-44,1]],[[69878,48814,0],[-1,-3],[-4,-18]],[[69873,48793,0],[-19,-64],[-13,-43]],[[69841,48686,0],[-8,-28],[-14,-45]],[[69877,48031,0],[0,-4],[0,-3]],[[69949,47740,0],[1,0],[6,0]],[[69956,47740,0],[44,-59],[6,-9]],[[69979,47572,0],[-1,-2],[-1,-3]],[[69855,47108,0],[0,1],[-2,2]],[[68938,47433,0],[-26,-36]],[[68863,47346,0],[-37,-26],[-9,-5]],[[68549,47163,0],[-46,-43]],[[68000,47186,0],[7,135],[-6,58],[-2,10],[-4,41],[-4,45],[-21,15],[-6,4],[-6,4],[-126,88],[-78,73],[-61,56]],[[67693,47715,0],[-120,112]],[[67573,47827,0],[-109,101],[-114,106],[-12,-11],[-89,79],[-66,66]],[[67183,48168,0],[17,5],[140,23],[126,22],[13,1],[50,9],[17,2],[-31,205],[-4,23],[-47,288],[-5,29],[-16,92]],[[67443,48867,0],[-2,23]],[[67441,48890,0],[64,-44],[63,-51],[60,-57],[52,-59],[49,-63],[24,-47],[21,-38],[33,-46],[32,-49],[36,-46],[41,-44],[24,-21],[21,-21],[154,129],[-18,29],[-51,133],[-3,4]],[[68043,48599,0],[-75,196]],[[67968,48795,0],[-28,75],[-84,211],[-97,54],[-238,128],[-165,90],[-4,2]],[[67352,49355,0],[33,96],[79,204]],[[67464,49655,0],[208,-70]],[[67672,49585,0],[60,-12]],[[67732,49573,0],[305,-66]],[[68037,49507,0],[52,-2],[37,-1]],[[68126,49504,0],[30,-4],[33,-5]],[[68189,49495,0],[47,-6]],[[68236,49489,0],[55,-7]],[[68291,49482,0],[6,11]],[[68297,49493,0],[14,-1],[19,-1]],[[68330,49491,0],[42,-4],[127,-10],[81,10],[-64,25],[-41,55],[2,55],[1,6],[3,7],[18,36],[29,25],[66,19],[22,3],[30,2],[5,7],[125,3],[44,0],[-35,-16],[-21,-13],[-10,-7],[54,-15],[10,-2],[-5,-144],[541,112],[25,-10]],[[70109,51536,0],[-16,-485],[-9,-113],[-9,-61],[-15,-87],[-35,-126],[-26,-77],[-28,-69],[-34,-61],[-92,-156],[-13,-28],[-81,-232],[-51,-153],[-16,-41],[-25,-35],[-83,-75],[-34,-40],[-52,-28],[135,17],[118,12],[126,8],[75,-1]],[[69944,49705,0],[37,0]],[[69981,49705,0],[82,-4],[56,0],[80,-6],[87,-8],[82,-11],[103,-24],[117,-33],[72,-25],[42,-19],[86,-38],[115,-64],[59,-37],[125,-77]],[[71087,49359,0],[89,-74]],[[71176,49285,0],[103,-99]],[[71223,49165,0],[-104,-39]],[[71119,49126,0],[15,-14]],[[71117,49104,0],[-22,-14]],[[70600,49139,0],[-10,6],[-224,104]],[[70315,49274,0],[-8,-22]],[[69759,49497,0],[-15,6],[-103,37],[-262,95]],[[68330,49491,0],[-33,2]],[[68297,49493,0],[66,138],[36,86],[-155,-24],[-168,-17],[-149,-5],[-39,71],[-173,336],[-19,37]],[[67696,50115,0],[-8,16]],[[67688,50131,0],[-112,209],[-74,140],[166,79],[-65,88]],[[67603,50647,0],[-57,80]],[[67546,50727,0],[-53,25],[-274,139],[-69,36]],[[67150,50927,0],[119,213],[38,70]],[[67307,51210,0],[215,-107],[231,-114]],[[67753,50989,0],[29,-14],[20,-7],[54,5],[41,14],[201,131],[161,116],[10,44],[-8,27],[77,47]],[[68338,51352,0],[14,-9],[26,0],[20,4],[24,10],[150,145],[72,63],[28,25],[50,31],[35,17],[36,14],[28,-25],[20,11],[103,46],[51,-43],[22,-44],[-34,0],[-43,-4],[-33,-1],[-28,-10],[-9,-3],[63,-61],[2,-4],[118,-214],[168,47],[160,48],[14,-13],[5,-15],[97,23],[-17,34],[-9,33],[6,37],[23,36],[20,28],[17,32],[13,39],[1,33],[-1,42],[-5,29],[410,29],[16,-81],[3,-51],[6,-70],[6,-54],[123,30]],[[67529,51707,0],[19,-9]],[[67548,51698,0],[24,81]],[[67572,51779,0],[85,-39]],[[67657,51740,0],[366,-170]],[[68023,51570,0],[153,-71],[29,-13]],[[68205,51486,0],[58,-33],[48,-48],[27,-53]],[[67753,50989,0],[-29,17],[-417,204]],[[67150,50927,0],[-2,-4],[-553,254],[-309,144]],[[66286,51321,0],[119,222]],[[66405,51543,0],[42,79]],[[66447,51622,0],[-130,62]],[[66317,51684,0],[-31,16]],[[66286,51700,0],[-35,31]],[[66251,51731,0],[-48,53],[-23,47],[-14,60]],[[66166,51891,0],[-1,58]],[[66165,51949,0],[13,56],[21,44]],[[66199,52049,0],[52,62]],[[66251,52111,0],[79,51],[60,16]],[[66390,52178,0],[95,4]],[[66485,52182,0],[91,-22]],[[66576,52160,0],[573,-273]],[[67149,51887,0],[103,-49]],[[67252,51838,0],[277,-131]],[[67631,53789,0],[12,-5],[11,-14]],[[67654,53770,0],[1,-1],[54,-29]],[[67709,53740,0],[13,-7]],[[67722,53733,0],[93,-75],[11,-9],[57,3],[26,-6],[20,-19],[11,-9],[61,-47],[16,-9],[51,-23],[22,-4],[21,-9],[105,-15],[8,0],[56,12],[15,-4],[17,-1],[122,23],[57,-2],[75,-8],[9,4],[62,0],[50,0],[34,2],[26,-6],[22,2],[20,-11],[34,2],[47,-12],[86,-5],[69,-14],[8,0],[19,6],[36,-19],[57,-7],[162,-77],[40,-11],[177,-48],[29,-8],[14,-4],[61,-12],[20,-3],[9,52],[17,-2],[17,-4],[24,-15],[2,-16],[62,-35],[18,-16],[18,-28],[37,-45],[15,-14],[45,-26],[29,-26],[106,-66],[21,-23],[19,-5],[40,-23],[40,-13],[27,-5],[118,-40],[67,10]],[[70379,52970,0],[-44,-53]],[[70335,52917,0],[-33,-191],[-77,-28],[-66,-35],[-56,-32],[-156,-78],[-110,-39],[-32,-12],[-181,-54],[175,-47]],[[69799,52401,0],[18,-5],[38,-11]],[[69855,52385,0],[172,-67],[25,-16],[17,-20],[86,-150],[-17,-81],[-10,-80],[-2,-68],[2,-363],[-19,-4]],[[68205,51486,0],[-182,84]],[[67657,51740,0],[200,430]],[[67857,52170,0],[247,-86],[94,-23],[3,89],[10,340],[31,-15],[119,-30],[58,-6],[51,2],[1,121],[1,27],[11,448],[-32,86],[-158,-17],[-122,12],[-132,31],[-105,43],[-89,53],[-30,3],[-111,43],[-85,23],[-101,34],[-73,17],[-30,8],[-101,15],[-147,35],[-79,13]],[[67088,53436,0],[-13,3],[-169,30]],[[66906,53469,0],[-142,-1],[-81,-21],[-77,37],[-50,-45],[-118,-103]],[[66438,53336,0],[-21,-14],[-74,-47]],[[66343,53275,0],[-11,59],[-37,111],[0,2],[-14,132],[-34,66]],[[66247,53645,0],[-31,50],[-22,43],[-46,76],[-13,89],[-6,17],[-23,69],[-29,60],[-8,18],[-29,94],[-8,14],[-20,12],[15,7],[-87,25],[-5,32],[2,39],[-22,47],[-1,44],[3,12],[-9,14],[28,58],[39,0],[17,2],[22,11],[17,4],[42,-7],[13,-15],[26,-7],[18,-12],[33,-3],[2,-13],[40,-11],[37,1],[63,-7],[66,-12],[20,-5],[136,-69],[9,-8],[20,-13],[7,-8],[6,-3],[49,-47],[18,-22],[88,-73],[7,-5],[4,-1],[133,-51],[13,-10],[-4,-5],[49,-20],[121,-41],[109,-2],[66,-30],[37,-13],[40,0],[15,-6],[9,0],[61,-31],[30,-7],[31,-23],[20,-19],[0,-26],[4,-3],[98,-46],[27,-1],[37,-19]],[[72940,52530,0],[-10,-17],[-130,-226]],[[72800,52287,0],[-7,-52],[-19,-132]],[[72774,52103,0],[91,-261],[-37,-183],[13,-8],[35,-42],[103,-117],[10,-28],[55,-138],[48,-167],[2,-20]],[[73094,51139,0],[24,-159]],[[73118,50980,0],[2,-203]],[[73120,50777,0],[-1,-54],[-1,-41],[9,-507],[0,-19],[0,-70],[6,-21]],[[73133,50065,0],[17,-66]],[[73150,49999,0],[15,-61],[7,-19],[7,-29],[37,-149]],[[73216,49741,0],[8,-30],[11,-40]],[[73235,49671,0],[9,-43]],[[73106,49585,0],[-55,-30]],[[72880,49474,0],[-87,2]],[[72072,49281,0],[-52,-9]],[[72020,49272,0],[-7,38]],[[72013,49310,0],[-81,-40]],[[71932,49270,0],[-33,-17]],[[71899,49253,0],[-19,130],[-9,58]],[[71871,49441,0],[26,15],[-14,84]],[[71883,49540,0],[-2,13],[-1,11]],[[71880,49564,0],[-7,38],[-4,39],[0,29],[133,10],[4,38],[5,21],[5,12],[11,30],[-89,57],[-148,94],[-16,7],[-35,35],[-110,-80],[17,23],[4,12],[-2,16],[-4,10],[-5,13],[-20,22],[-103,48],[-14,7],[-31,23],[-25,29],[-20,25],[-146,-111]],[[71280,50011,0],[-127,154]],[[71153,50165,0],[-38,56],[-1,8],[-118,143],[-108,132],[-39,48],[-63,133],[-16,33]],[[70770,50718,0],[-14,58],[-15,61]],[[70741,50837,0],[-8,35]],[[70733,50872,0],[-2,126],[1,46]],[[70732,51044,0],[19,143],[10,43],[6,24],[10,41],[39,95],[-89,31],[-169,59],[59,150]],[[70617,51630,0],[131,333],[1,3]],[[70749,51966,0],[151,124],[17,11],[26,13],[167,79]],[[71110,52193,0],[217,101]],[[71327,52294,0],[140,35],[90,24],[22,-99],[11,-56],[56,1],[-2,37]],[[71644,52236,0],[-25,388]],[[71619,52624,0],[-131,13],[-86,48],[-68,81],[96,46],[17,14]],[[71447,52826,0],[58,4]],[[71505,52830,0],[41,-2],[39,4],[17,5],[45,-15],[7,-19],[80,14],[27,7],[27,-1],[76,7],[7,0],[9,-1],[47,-12],[6,-1],[11,1],[43,-17],[35,-8],[12,-2],[6,6],[6,6],[7,-5],[47,-9],[29,2],[25,12],[94,-11],[16,-4],[17,-4],[38,-16],[24,-10],[34,-19],[18,-17],[29,-16],[6,-3],[30,-23],[32,-19],[21,-41],[14,-11],[18,-7],[117,-42],[19,-4],[18,-2],[12,-3],[65,-10],[164,-10]],[[75982,51855,0],[62,-109],[37,-67],[21,-98],[66,-14],[146,-253],[12,-21],[18,-34]],[[76344,51259,0],[-36,11],[-22,7],[-26,-236]],[[76260,51041,0],[-8,-68]],[[76252,50973,0],[-24,-210],[49,-55],[-45,-26]],[[76232,50682,0],[-55,-30]],[[76177,50652,0],[-39,-22],[-36,-6]],[[76102,50624,0],[-10,-48],[-5,-19],[-3,-13]],[[76084,50544,0],[-36,-156]],[[76048,50388,0],[-13,-61]],[[76035,50327,0],[-10,-34]],[[76025,50293,0],[-32,-76],[-9,-16],[-10,-19],[-4,-8],[-18,-22],[-9,-24],[-13,-29],[-19,-44],[-14,-49]],[[75897,50006,0],[-38,-133]],[[74136,49695,0],[-4,-3]],[[74132,49692,0],[-32,60]],[[74100,49752,0],[7,4]],[[74052,49841,0],[7,3]],[[74035,49890,0],[-7,-4]],[[73878,49931,0],[-4,-1]],[[73653,49854,0],[-9,17]],[[73458,49852,0],[0,-4]],[[73467,49835,0],[4,-11]],[[73429,49757,0],[-19,-25]],[[73410,49732,0],[-84,-42]],[[73326,49690,0],[-22,-11]],[[73304,49679,0],[-13,-7]],[[73291,49672,0],[-8,-7]],[[73262,49645,0],[-17,-16]],[[73235,49671,0],[-19,70]],[[73150,49999,0],[-9,35],[-8,31]],[[73120,50777,0],[0,42],[-2,161]],[[73118,50980,0],[-9,56],[-15,103]],[[72774,52103,0],[26,184]],[[72940,52530,0],[84,-6],[145,-53],[188,17],[114,-11],[16,1],[17,1],[98,5],[142,-9],[90,2],[46,-6],[47,-16],[100,-53],[6,-4],[142,-4],[15,-1],[184,-50],[128,6],[142,-44],[87,-25],[99,-17],[4,-2],[58,-48],[94,-45],[8,-5],[34,-24],[17,-7],[61,-15],[51,-17],[71,17],[7,1],[64,4],[39,5],[48,1],[23,1],[59,-15],[74,-40],[70,-30],[22,-13],[15,-13],[19,-18],[62,-22],[96,4],[-2,-30],[21,-36],[137,-61]],[[77498,51525,0],[-2,-33],[4,-39],[6,-38],[3,-16],[8,-57]],[[77517,51342,0],[23,-69],[30,-84]],[[77570,51189,0],[23,-57],[8,-20]],[[77601,51112,0],[45,-99],[24,-61]],[[77670,50952,0],[23,-47],[7,-17],[132,62],[6,3],[152,83],[125,59]],[[78115,51095,0],[46,21]],[[78161,51116,0],[40,-23],[42,-22],[39,-18],[45,-19],[45,-17],[32,-14],[47,-15],[28,-15],[41,-18],[35,-19],[37,-23],[27,-21],[26,-24],[-70,-90],[-17,-20],[-11,-20]],[[78547,50738,0],[-16,-29],[-59,-102]],[[78472,50607,0],[34,-12],[21,-7],[21,-8],[13,-7],[20,-12],[22,-15],[10,-8],[12,-9],[10,-10],[15,-16],[14,-17],[42,-66],[49,-63],[15,-21],[33,-38],[29,-31],[42,-43],[12,-8],[14,-6],[20,-4],[25,1],[104,0],[132,-33]],[[79181,50174,0],[50,182]],[[79231,50356,0],[5,16]],[[79236,50372,0],[118,-31],[-62,-201],[18,-5],[-10,-31],[46,-67],[-33,-37],[-32,-34],[-33,-31],[-28,-24],[-27,-21],[-31,-17],[-25,-12],[-32,-15],[-60,-24],[-42,-7],[-55,-2],[-178,8],[-71,6],[-5,-68],[-80,3],[-95,6],[-121,7],[-205,15],[-363,10],[-418,21],[-223,7],[-48,4],[-66,0],[-101,-4],[-100,-8],[-73,-19],[-108,-30],[-105,-34],[-73,-28],[-111,-48],[-60,-30],[-175,-81],[-149,-68],[-164,-82],[-225,-101],[-4,0]],[[75628,49434,0],[12,14],[13,14]],[[75859,49873,0],[35,121],[3,12]],[[76025,50293,0],[4,14],[6,20]],[[76048,50388,0],[36,153],[0,3]],[[76084,50544,0],[2,8],[16,72]],[[76177,50652,0],[53,29],[2,1]],[[76252,50973,0],[8,67],[0,1]],[[76344,51259,0],[-2,51],[-1,124],[1,103],[29,4],[166,-1],[139,-1],[80,-2],[71,5],[137,-5],[142,-4],[143,-4],[108,-1],[56,-2],[85,-1]],[[79247,48459,0],[-64,1],[-90,-3],[-862,-20],[-37,43],[-59,35],[-20,18],[-45,47]],[[78070,48580,0],[-36,34],[-40,44]],[[77994,48658,0],[-46,50]],[[77948,48708,0],[-32,34]],[[77916,48742,0],[-76,60],[-21,15],[-43,25],[-48,26]],[[77665,48904,0],[-18,14],[-73,70]],[[77574,48988,0],[129,136],[2,10],[12,13],[8,1]],[[77725,49148,0],[30,24],[9,15],[8,23]],[[77770,49244,0],[38,8],[-11,47]],[[77797,49299,0],[-8,10],[-20,69],[59,81],[43,63],[96,-7],[-11,169],[-12,150],[-17,222],[17,8],[56,31],[77,76],[98,313],[-34,151],[-259,106],[-59,81],[-8,55],[-1,28],[67,32],[63,35],[33,-12],[58,-64],[107,94],[-56,54],[-27,3],[-14,12],[5,71],[30,98],[-78,36],[-14,47],[137,179],[-23,16],[-2,89],[46,170],[6,20],[59,37]],[[78211,51822,0],[22,7],[416,129],[262,85],[315,8],[-21,-65]],[[79205,51986,0],[-27,-108],[-25,-145],[2,-48],[-1,-43],[2,-61],[-32,-60],[-19,-50],[-15,-38],[-15,-41],[-33,-57],[55,-69],[13,-49],[19,-65],[40,-64],[64,-112],[77,24],[59,45],[17,14],[6,12],[38,-36],[13,-30],[89,-22],[24,-10],[31,26],[86,-11],[76,-71],[47,-70],[35,-44],[45,-38],[58,-21],[17,-23],[17,-41],[26,-27],[53,-43],[46,-19],[56,-30],[80,-34],[5,-4],[-860,-1783]],[[54446,52407,0],[200,-39],[100,-19]],[[54866,52324,0],[150,-36],[71,-8]],[[55449,52291,0],[96,5],[94,-9],[74,55]],[[56253,51488,0],[-79,-57]],[[56174,51431,0],[-66,-59],[-1,-1]],[[56107,51371,0],[-13,-18],[-12,-16]],[[56082,51337,0],[-22,-26],[-42,-47]],[[56018,51264,0],[-31,-26],[-2,-2],[-71,-66]],[[55914,51170,0],[-12,-7],[-16,-11]],[[55886,51152,0],[-6,-4],[-28,-19],[-20,4]],[[55832,51133,0],[-76,-85],[-35,-39]],[[55721,51009,0],[-7,-17],[-15,-24],[-14,-13],[-30,-28],[-9,-13],[-10,-14]],[[55636,50900,0],[-9,-13],[-10,-15]],[[55594,50835,0],[-2,2],[-70,28]],[[55522,50865,0],[-16,-6],[-17,7]],[[55489,50866,0],[-19,10],[-32,15]],[[55438,50891,0],[-29,4],[-46,-20],[-17,0],[-1,-9],[-1,-9]],[[55344,50857,0],[-27,0],[-29,1]],[[55263,50858,0],[-18,-24],[-11,-15],[-122,-173],[-65,15],[-9,2]],[[55038,50663,0],[-10,1]],[[55028,50664,0],[-5,0]],[[55023,50664,0],[-5,-1]],[[55018,50663,0],[-5,-1]],[[55013,50662,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1]],[[55007,50660,0],[-2,-1]],[[55005,50659,0],[-1,0],[-2,-1]],[[55002,50658,0],[-1,0],[-2,-1],[-3,-2]],[[54996,50655,0],[-5,-3],[-7,-7]],[[54984,50645,0],[-6,-6]],[[54977,50638,0],[-4,-6],[0,-2]],[[54972,50629,0],[-3,-8]],[[54969,50621,0],[-2,-9]],[[54967,50612,0],[-1,-9]],[[54966,50603,0],[2,-9]],[[54968,50594,0],[2,-9]],[[54970,50585,0],[48,-72],[-245,-346],[-29,16],[-30,16],[-75,45],[-25,14]],[[54483,50335,0],[-202,222],[-94,46]],[[54187,50603,0],[-48,30],[-55,16]],[[53952,50677,0],[-148,31],[-191,16],[-78,-3]],[[53445,50707,0],[-43,-2],[-122,-47]],[[53280,50658,0],[-156,-79],[-143,-73],[-29,-21]],[[52630,50176,0],[-74,-98],[-80,-95]],[[52476,49983,0],[-202,-194],[-36,-25],[-49,-27]],[[51212,50220,0],[0,20],[-1,27]],[[51211,50267,0],[-1,23],[0,3]],[[51210,50293,0],[7,37],[5,23]],[[51222,50353,0],[1,1],[23,24],[24,166],[19,-6],[48,-11]],[[51337,50527,0],[11,135],[64,35],[79,64]],[[51491,50761,0],[38,-3],[50,5]],[[51579,50763,0],[-1,-34],[9,-97],[31,-6],[30,-46]],[[51648,50580,0],[2,-16],[89,15],[43,-5]],[[51782,50574,0],[90,-34],[38,0]],[[51910,50540,0],[39,10],[53,55],[31,63]],[[52033,50668,0],[106,-38],[-19,-106],[4,-36]],[[52124,50488,0],[11,-14],[-2,-17],[57,-19]],[[52190,50438,0],[72,-18],[55,-34]],[[52317,50386,0],[13,-19]],[[52330,50367,0],[36,-6],[50,19]],[[52416,50380,0],[20,21],[118,190],[35,56],[30,32],[84,79]],[[52703,50758,0],[53,45],[45,-27],[142,69]],[[52943,50845,0],[380,292],[-37,81],[-37,79]],[[53249,51297,0],[185,105],[146,33]],[[53580,51435,0],[75,19],[6,13]],[[53661,51467,0],[114,7],[9,229]],[[53784,51703,0],[-41,27],[-5,26],[-10,71]],[[53728,51827,0],[-81,25],[-58,-16]],[[53589,51836,0],[-15,0],[-44,35]],[[53530,51871,0],[-92,6],[-29,18]],[[53409,51895,0],[-32,8]],[[53377,51903,0],[-22,6],[-90,-6],[-6,-16],[-57,-25],[-12,-27],[-44,-38],[-29,-16]],[[53117,51781,0],[-8,-29]],[[53109,51752,0],[-33,-37],[-3,-29]],[[53073,51686,0],[-12,-20]],[[53061,51666,0],[4,-12],[-4,-15],[-7,-15]],[[53054,51624,0],[-39,-12],[-31,-30],[-29,-26],[-37,-28]],[[52918,51528,0],[-16,-22],[-11,-7]],[[52891,51499,0],[-12,2],[-12,-29]],[[52867,51472,0],[-14,-18],[-52,-20]],[[52801,51434,0],[-34,-43]],[[52767,51391,0],[-91,59],[-49,22]],[[52627,51472,0],[-14,14],[-26,20]],[[52587,51506,0],[-35,25]],[[52552,51531,0],[-72,27],[-20,-7],[-23,-16]],[[52437,51535,0],[-63,34],[-32,-3]],[[52342,51566,0],[-20,7],[-28,6],[-34,18]],[[52260,51597,0],[-49,-1],[-24,10]],[[52187,51606,0],[-17,8],[-87,-81]],[[52083,51533,0],[-12,-26],[-24,-30],[-12,-7]],[[52035,51470,0],[-34,17],[-39,49],[-22,11],[-6,9],[-32,45],[-65,39],[178,165],[121,106],[60,56],[80,89],[231,208],[93,92]],[[52600,52356,0],[174,138],[152,38]],[[52926,52532,0],[31,8],[80,7],[122,-1]],[[53159,52546,0],[158,-15]],[[53317,52531,0],[18,-1],[160,-22],[146,-31],[320,-61],[315,4]],[[65261,54158,0],[-100,-133],[-68,-64]],[[65093,53961,0],[-31,-24],[-25,-30],[-31,-26],[-199,-197]],[[64807,53684,0],[-68,-58],[-58,-36],[-39,-23]],[[64642,53567,0],[-66,-37],[-213,-121]],[[64363,53409,0],[-44,-23],[-110,-47],[-86,-37]],[[64123,53302,0],[-146,-55],[-347,-131],[-101,-21]],[[63529,53095,0],[-82,-22]],[[63447,53073,0],[-49,-31],[-125,-50],[-23,-9],[-182,-135]],[[62834,52630,0],[-24,-29],[-12,-19],[-27,-47]],[[62771,52535,0],[-29,-47],[-14,-23],[-59,-70],[-22,-25]],[[62647,52370,0],[-42,-57],[-40,-68]],[[62565,52245,0],[-26,-46],[-41,-73]],[[62498,52126,0],[-36,-70],[-13,-26],[-26,-32],[-14,-17]],[[62311,52051,0],[-98,58],[-206,107]],[[61784,52333,0],[-149,122],[-229,241]],[[60872,53176,0],[77,141],[33,-7]],[[60982,53310,0],[234,-53]],[[61216,53257,0],[142,-6],[114,0],[119,-3]],[[61591,53248,0],[118,8]],[[61709,53256,0],[122,19],[116,24]],[[61947,53299,0],[113,34],[111,51]],[[62171,53384,0],[108,55],[95,57]],[[62374,53496,0],[95,61]],[[62469,53557,0],[130,81],[132,79]],[[62731,53717,0],[116,70],[131,82]],[[62978,53869,0],[141,88],[143,88],[151,100]],[[63413,54145,0],[145,113],[120,107],[19,17]],[[63697,54382,0],[36,-35],[113,110],[100,115]],[[63946,54572,0],[417,-133],[58,-17],[88,-30],[28,-7],[88,-28],[106,-33],[198,-62],[183,-59],[23,-6],[126,-39]],[[64153,47075,0],[60,191],[5,15],[57,77]],[[64275,47358,0],[61,86],[24,31],[56,74],[3,6]],[[64483,47656,0],[40,64],[9,15],[13,128]],[[64365,48423,0],[0,1],[-1,0],[0,45],[132,47],[14,4],[88,21],[13,2]],[[64815,48578,0],[262,-90],[93,-75],[1,0],[38,-41]],[[65209,48372,0],[112,-40],[0,-1]],[[65321,48331,0],[-4,-14],[-18,-52],[-18,-54],[-13,-56],[-12,-50],[-8,-54],[-6,-57]],[[65242,47994,0],[-8,-94]],[[65234,47900,0],[18,-30],[46,-74],[39,-69],[36,-73]],[[65373,47654,0],[6,-13],[16,-33]],[[65395,47608,0],[12,-25],[11,-26],[17,-39]],[[65435,47518,0],[15,-37],[15,-44]],[[65465,47437,0],[30,-125],[13,-57],[0,-1]],[[65508,47254,0],[2,-49]],[[53458,47943,0],[2,0]],[[53463,47943,0],[2,0]],[[53479,47944,0],[2,0]],[[53482,47945,0],[2,0]],[[54118,48180,0],[41,8],[45,-125],[-45,125],[105,20]],[[54449,47452,0],[8,-30]],[[54204,47016,0],[19,-12]],[[54237,46998,0],[14,-4]],[[54276,46589,0],[102,-96],[-7,-27],[-26,-17],[-96,-8],[-91,-27],[-174,-89]],[[53984,46325,0],[-33,-13],[-107,-42]],[[53844,46270,0],[-20,-8],[-87,-28]],[[53737,46234,0],[-27,-1],[-142,-8]],[[53568,46225,0],[-195,21],[-116,-1]],[[53257,46245,0],[-27,2],[-111,7]],[[53119,46254,0],[-209,-5]],[[52910,46249,0],[-103,7]],[[52807,46256,0],[-117,23],[-121,15]],[[52569,46294,0],[-165,16],[-120,12]],[[52284,46322,0],[-89,10],[-87,27],[-171,133],[-66,53],[-76,73],[-133,72],[-26,11]],[[51636,46701,0],[46,40],[30,26]],[[51769,46838,0],[86,139],[20,19],[108,191]],[[52078,47340,0],[91,120],[40,62]],[[52312,47829,0],[-31,19],[-2,2],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1]],[[52265,47860,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,2],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,1]],[[52244,47881,0],[0,1],[-1,1],[-1,0],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1]],[[52239,47890,0],[-1,1],[0,1],[-1,0],[0,2],[-1,0],[0,2],[-1,2]],[[52235,47898,0],[-1,2],[-1,2],[0,1],[-1,1],[0,2],[-1,0]],[[52231,47906,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[52229,47915,0],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,2],[0,22]],[[52152,47992,0],[18,28],[126,203],[13,104]],[[52550,48517,0],[33,6]],[[49672,41965,0],[1,-3],[1,-1],[19,-40]],[[49693,41921,0],[55,-111],[86,49]],[[49834,41859,0],[103,-206],[84,-171],[33,-89],[16,-80],[0,-91],[-17,-90],[-39,-88]],[[50014,41044,0],[-13,-28],[-21,-35],[-21,-34],[-19,-24],[-122,-115],[-14,-14],[-36,-42],[-25,-34],[-10,-21],[-16,-22],[-26,-55],[-19,-50],[-19,-65],[-4,-31],[-7,-39],[0,-39],[6,-78],[10,-72],[17,-59],[15,-43],[18,-39],[42,-82],[50,-71],[23,-27],[21,-26],[39,-33],[25,-21],[48,-30],[50,-27],[-39,-88],[-66,-153],[-30,-101],[68,-24],[60,-20],[59,-13],[-79,-80],[-57,-76]],[[49922,39233,0],[70,-28]],[[49992,39205,0],[-129,-111],[-57,-101],[-11,-15],[-3,-137],[-188,11],[-80,9],[-58,8],[-74,12],[-83,16],[-93,18],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-2,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,2],[-1,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,2],[-1,0],[-1,1],[-1,2],[-53,-127],[181,-45],[-75,-136],[-10,-21],[-27,-59],[-28,-64],[-68,12],[10,-105],[-16,-31]],[[49071,38395,0],[-44,40],[31,64]],[[49058,38499,0],[-46,46],[-37,85],[-45,84],[-12,22]],[[48918,38736,0],[3,5],[4,7],[49,144]],[[48974,38892,0],[-57,20],[-78,32]],[[48839,38944,0],[-78,26],[-21,37]],[[48740,39007,0],[-74,91]],[[48666,39098,0],[-13,47],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1]],[[48691,39149,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1]],[[48700,39153,0],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[0,1],[1,1],[1,0],[1,1]],[[48712,39160,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,2],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,2],[1,1],[0,1],[1,0],[1,2],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,2],[1,1],[0,1],[1,0],[0,1],[0,2],[1,1]],[[48737,39194,0],[0,1],[1,1],[0,2],[1,1],[0,2],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[1,2],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[48741,39227,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[48740,39237,0],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,2]],[[48739,39246,0],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[0,1]],[[48737,39255,0],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,1]],[[48735,39264,0],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,2],[-1,0],[0,2],[-1,2],[0,1],[-1,1],[0,2],[-1,1],[-11,19],[-44,52],[-24,21],[-16,18]],[[48633,39392,0],[-87,93],[-20,-14],[-78,90]],[[48448,39561,0],[-17,22],[-30,41]],[[48401,39624,0],[-40,63],[-11,21]],[[48350,39708,0],[-9,19],[-34,58]],[[48307,39785,0],[-23,52]],[[48284,39837,0],[-21,48],[-21,63]],[[48242,39948,0],[-14,57],[-8,35],[-12,61]],[[48208,40101,0],[-4,24],[-8,56]],[[48196,40181,0],[-4,54],[-2,70]],[[48190,40305,0],[0,48],[2,69]],[[48192,40422,0],[17,96],[-94,17]],[[48115,40535,0],[-107,12]],[[48008,40547,0],[24,62],[54,100],[86,148],[38,76],[31,75],[21,68],[16,71],[10,81],[3,49],[-9,105],[-5,26],[-3,17],[-10,42],[-17,61],[-23,57],[-19,41],[-20,34],[-40,65],[-22,30],[211,184],[-118,104],[-139,125]],[[48077,42168,0],[64,59],[79,76],[7,7],[119,111],[17,5],[77,26],[11,3],[151,126],[101,-88]],[[48703,42493,0],[129,-111],[132,-112],[146,-130],[44,-45],[29,-38],[25,-42],[12,-29],[41,-111],[19,-54],[21,2],[0,-35],[15,-6],[39,-17],[207,23],[-25,140],[18,21],[-47,125],[-1,3],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,2],[0,1],[1,1],[1,1],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,2],[1,1],[1,0],[1,1],[1,0],[-214,-97],[-53,89],[248,156],[64,-127],[103,-205]],[[48008,40547,0],[-12,-27]],[[47996,40520,0],[-42,-3],[-62,5]],[[47892,40522,0],[-22,1],[-49,-132]],[[47821,40391,0],[-18,7]],[[47803,40398,0],[-12,88],[-234,6],[-5,14]],[[47552,40506,0],[-62,6],[-65,0],[-7,-67]],[[47418,40445,0],[-24,79],[-96,304],[-232,733],[-333,259],[-16,13],[-713,640]],[[46004,42473,0],[731,65],[20,-84],[42,-114],[62,-95],[64,57],[-1,21],[-9,120],[105,-4],[114,4],[11,86],[8,0],[49,1],[20,89],[27,0],[4,22],[117,-4],[15,-3],[69,-12],[19,-4],[-2,45],[0,32],[3,26],[221,-13],[-6,-54],[8,-89],[21,-72],[19,-40],[20,-35],[68,-108],[17,-20],[0,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,2],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[2,0],[2,1],[80,-72],[52,-46]],[[51135,43981,0],[-72,113],[-82,102],[-90,96],[-96,88]],[[50795,44380,0],[-126,91],[-51,34],[-80,47],[-77,40],[-33,13],[39,94],[469,-106],[18,-166],[-53,-121],[29,-14],[17,-18],[114,-55],[33,-51],[21,-14],[29,-37]],[[51144,44117,0],[-11,-55],[11,-56],[-9,-25]],[[53119,46254,0],[138,-9]],[[53568,46225,0],[169,9]],[[53844,46270,0],[8,-19],[140,-327],[-8,-9],[-14,-19],[-303,-373],[-142,-201],[-27,-31],[-99,-497],[-66,-100],[75,-229]],[[53408,44465,0],[-20,-1],[-99,-98],[-10,6],[2,10],[12,66],[10,65]],[[53303,44513,0],[11,80],[33,197],[17,94]],[[53364,44884,0],[-274,46],[-115,20]],[[52975,44950,0],[-11,1],[-110,18]],[[52854,44969,0],[-8,-49],[-15,-80]],[[52831,44840,0],[-10,-50],[-27,-147]],[[52794,44643,0],[-26,-140]],[[52768,44503,0],[0,-3]],[[52768,44500,0],[-157,26],[-47,7],[-54,12],[-29,2],[-23,7],[-46,11],[-87,20],[-28,8],[-34,14],[-65,34],[-18,16],[-41,25],[-12,15],[-7,1],[-4,2],[-57,50],[-31,3],[-27,-2],[-23,6],[-83,23],[-22,4],[-16,5],[-26,2],[-20,7],[-17,0],[-120,24],[-88,-136],[0,-10],[-16,-9],[-1,-6],[-18,-36],[-8,-6],[-27,-38],[-40,-38],[-50,-2],[-170,-56]],[[51256,44485,0],[-216,199],[-5,228],[-243,147],[-200,118],[-9,154],[-104,81],[-54,77],[-76,107],[153,94],[-8,349],[40,94],[15,38],[-2,144],[-236,234],[-57,97],[-83,136],[-4,9]],[[50167,46791,0],[265,40]],[[50432,46831,0],[79,4],[303,-17]],[[51542,46735,0],[47,-18],[47,-16]],[[52284,46322,0],[285,-28]],[[52807,46256,0],[41,-2],[62,-5]],[[56175,45768,0],[116,2]],[[56291,45770,0],[115,-7]],[[57148,45543,0],[87,-24]],[[57277,45510,0],[50,-10]],[[57590,45417,0],[87,-39],[4,-1],[98,-43]],[[57744,45058,0],[-4,-20]],[[57740,45038,0],[-12,-47]],[[57672,44661,0],[-12,-22]],[[57660,44639,0],[-5,-9]],[[57649,44623,0],[-8,-6]],[[57641,44617,0],[-8,-4]],[[57517,44632,0],[-128,36]],[[57344,44619,0],[-138,20]],[[57162,44655,0],[-60,18]],[[57108,44692,0],[-44,11]],[[56776,44322,0],[-3,-100],[-99,9]],[[56674,44231,0],[-346,29]],[[56328,44260,0],[-673,-179],[-19,5],[-35,7],[-28,3],[-30,0],[-19,-1],[-27,-5],[-36,-8],[-40,-15],[-49,-23],[-32,-16],[-31,-23],[-39,-33],[-30,-46],[-181,-116]],[[55059,43810,0],[-102,-13]],[[54957,43797,0],[-139,43]],[[54818,43840,0],[-10,15]],[[54808,43855,0],[-40,59],[-30,46],[-7,14],[-13,23],[-21,31],[-21,24],[-19,22],[-22,21],[-26,21],[-30,19],[-26,14],[-36,16],[-40,15],[-35,10],[-16,3],[-14,-2],[-21,-5],[-37,-9],[-29,-10],[-32,-12],[-46,-24],[-42,-25],[-24,-17],[-28,-26],[-44,-52],[-52,-69],[-85,15],[-10,3],[-87,28],[-28,8],[-46,14],[-33,12],[-41,-1],[-72,14],[-34,14],[-35,9],[-107,65],[13,39],[1,45],[12,51],[2,30],[4,39],[-15,63],[-24,39],[-14,8],[-36,-17],[-14,45]],[[53844,46270,0],[140,55]],[[57686,42590,0],[-5,-1],[-13,-2],[-90,-9],[-173,-18],[-22,-2],[-80,-8],[-81,-9],[-22,-2],[-69,-8],[-12,-1],[-58,-5],[-55,-6],[-37,-4],[-41,-4],[-6,-1],[-78,5],[-280,17]],[[56564,42532,0],[-277,17],[-202,11]],[[56085,42560,0],[-116,6],[-69,3]],[[55900,42569,0],[-72,-1],[-170,-3]],[[55658,42565,0],[-481,-22]],[[55177,42543,0],[21,85]],[[55198,42628,0],[17,65],[12,46]],[[55227,42739,0],[40,215],[16,85],[27,151]],[[55310,43190,0],[39,150],[-178,-18],[-239,20],[-1,144],[-1,97],[-1,75],[-1,51],[0,21],[-26,13],[-21,17],[-25,25],[-18,25]],[[54838,43810,0],[-20,30]],[[54957,43797,0],[86,10],[16,3]],[[56328,44260,0],[343,-29],[3,0]],[[58942,42907,0],[11,-1],[170,-18]],[[59171,42884,0],[13,-2],[7,-1]],[[59191,42881,0],[6,-1],[15,-1]],[[59354,42466,0],[-199,1],[-26,0],[-30,-5],[-22,-7],[-19,-9],[-19,-10],[-41,-32],[-14,-18],[-21,-38],[-28,-47],[-15,-69]],[[58870,42040,0],[0,-3]],[[58870,42035,0],[0,-3]],[[58925,41734,0],[101,23],[51,11]],[[59077,41768,0],[9,-3],[2,-1]],[[59088,41764,0],[-2,-8],[-14,-44]],[[59072,41712,0],[-17,-89],[-4,-23]],[[59051,41600,0],[-1,-3],[-17,-92]],[[59021,41424,0],[-18,-103],[-6,-36]],[[58997,41285,0],[68,-3],[23,-2]],[[59108,41177,0],[-16,7],[-9,3]],[[58950,40985,0],[-25,5],[-18,4]],[[58849,40821,0],[-19,-69],[-4,-15]],[[58738,40432,0],[-4,-12],[-6,-16]],[[58728,40404,0],[-3,-4],[-3,-6]],[[58722,40394,0],[0,-4],[4,-40]],[[58726,40350,0],[-7,-1],[-4,-1]],[[58347,40312,0],[-15,1],[-18,1]],[[58314,40314,0],[-3,0],[-110,1]],[[58194,40315,0],[-15,0],[-8,1]],[[58171,40316,0],[-2,-15],[-1,-13]],[[58168,40288,0],[-10,1],[-1,1]],[[58157,40290,0],[-12,-3],[-8,-1],[-20,-5],[-16,-3]],[[57835,40250,0],[6,17],[28,79]],[[57508,40348,0],[-18,1],[-30,3]],[[57460,40352,0],[-72,4],[-59,3]],[[57329,40359,0],[-28,1],[-6,0]],[[57157,40369,0],[-2,0],[-4,0]],[[57151,40369,0],[-25,3],[-25,1]],[[57101,40373,0],[-11,1],[-2,0]],[[57088,40374,0],[-19,2],[-96,8]],[[56973,40384,0],[-38,-1],[-54,0]],[[56783,40376,0],[-3,0],[-27,-1]],[[56753,40375,0],[-73,-4],[-26,-2],[-10,0],[-4,0]],[[56211,40139,0],[0,26],[-106,-65],[-17,33]],[[56088,40133,0],[-3,5],[-78,135]],[[56007,40273,0],[-19,23],[-20,7],[-99,-51]],[[55869,40252,0],[4,2],[23,18]],[[55896,40272,0],[2,1],[7,6]],[[55905,40279,0],[4,5],[4,5]],[[55913,40289,0],[20,23],[3,4]],[[55936,40316,0],[2,2],[4,8]],[[55942,40326,0],[9,12],[6,15]],[[55957,40353,0],[8,19],[0,1]],[[55965,40373,0],[1,3],[5,15]],[[55971,40391,0],[2,15],[0,6]],[[55973,40412,0],[3,22],[34,12]],[[56010,40446,0],[17,7],[6,2]],[[56033,40455,0],[7,4],[17,9]],[[56057,40468,0],[16,8],[20,11]],[[56093,40487,0],[24,15],[21,14]],[[56138,40516,0],[9,7],[13,10]],[[56160,40533,0],[17,16],[15,14]],[[56192,40563,0],[2,3],[20,21]],[[56214,40587,0],[32,41]],[[56246,40628,0],[18,27],[8,11]],[[56272,40666,0],[17,29],[92,154]],[[56381,40849,0],[-32,18],[-14,8]],[[56335,40875,0],[-45,27],[-34,20]],[[56256,40922,0],[-7,-9],[-9,-5]],[[56240,40908,0],[-4,-1],[-7,-3]],[[56229,40904,0],[-15,-3],[-170,-3],[-334,-1],[-2,330],[-9,-1],[1,42],[-3,23],[-5,83],[-4,53]],[[55688,41427,0],[2,9],[1,4]],[[55691,41440,0],[-3,10],[-7,18]],[[55681,41468,0],[-1,6],[0,4]],[[55680,41478,0],[-2,157],[0,10]],[[55678,41645,0],[74,17],[75,17]],[[55827,41679,0],[68,16]],[[55895,41695,0],[8,4],[11,5]],[[55914,41704,0],[23,11],[2,1]],[[55939,41716,0],[10,3],[63,18]],[[56012,41737,0],[149,9],[269,15]],[[56430,41761,0],[40,2],[23,1]],[[56493,41764,0],[2,26],[5,72]],[[56500,41862,0],[14,200]],[[56514,42062,0],[0,3],[13,122]],[[56527,42187,0],[3,27],[1,12]],[[56531,42226,0],[18,163]],[[56549,42389,0],[4,38],[0,1]],[[56553,42428,0],[3,26],[8,78]],[[58588,42864,0],[13,2],[25,4]],[[58626,42870,0],[14,3],[19,3]],[[58711,42891,0],[31,9],[37,11]],[[58779,42911,0],[30,9],[8,3]],[[58817,42923,0],[3,-22],[1,-8]],[[55658,42565,0],[242,4]],[[55900,42569,0],[185,-9]],[[56553,42428,0],[-4,-39]],[[56531,42226,0],[-4,-39]],[[56527,42187,0],[-13,-125]],[[56500,41862,0],[-7,-98]],[[56493,41764,0],[-63,-3]],[[56430,41761,0],[-418,-24]],[[56012,41737,0],[-73,-21]],[[55939,41716,0],[-25,-12]],[[55914,41704,0],[-19,-9]],[[55827,41679,0],[-149,-34]],[[55680,41478,0],[1,-10]],[[55681,41468,0],[10,-28]],[[55691,41440,0],[-3,-13]],[[56229,40904,0],[11,4]],[[56256,40922,0],[79,-47]],[[56381,40849,0],[-109,-183]],[[56272,40666,0],[-26,-38]],[[56214,40587,0],[-22,-24]],[[56160,40533,0],[-22,-17]],[[56093,40487,0],[-36,-19]],[[56057,40468,0],[-24,-13]],[[56033,40455,0],[-23,-9]],[[55973,40412,0],[-2,-21]],[[55971,40391,0],[-6,-18]],[[55965,40373,0],[-8,-20]],[[55942,40326,0],[-6,-10]],[[55936,40316,0],[-23,-27]],[[55913,40289,0],[-8,-10]],[[55905,40279,0],[-9,-7]],[[55896,40272,0],[-27,-20]],[[55869,40252,0],[101,50],[7,-9],[12,1],[18,-21]],[[56007,40273,0],[81,-140]],[[56088,40133,0],[-53,-21]],[[56035,40112,0],[-136,-65]],[[55899,40047,0],[-236,-118],[-136,-81],[-161,-77],[-285,-150],[-11,-5]],[[55070,39616,0],[-87,-53]],[[54983,39563,0],[-77,-36]],[[54906,39527,0],[-114,-59]],[[54792,39468,0],[-65,-27]],[[54727,39441,0],[-78,-44]],[[54649,39397,0],[-154,-98]],[[54495,39299,0],[-108,-59]],[[54387,39240,0],[-7,12],[33,36],[48,56],[25,9],[43,34],[39,25]],[[54568,39412,0],[6,7],[51,29],[5,11],[10,2],[10,-12]],[[54650,39449,0],[90,55]],[[54740,39504,0],[133,83],[-42,101],[-58,44]],[[54773,39732,0],[-151,-66],[-23,-10]],[[54599,39656,0],[-46,-17],[13,-29],[-119,-65],[-75,-40],[-160,-68],[-225,-7],[-131,39]],[[53856,39469,0],[1,7],[-33,-5]],[[53824,39471,0],[-95,3]],[[53729,39474,0],[30,60]],[[53759,39534,0],[64,99],[32,56],[15,20]],[[53870,39709,0],[2,10]],[[53872,39719,0],[3,15]],[[53875,39734,0],[24,54],[10,16]],[[53909,39804,0],[21,38]],[[53930,39842,0],[33,65],[18,37]],[[53981,39944,0],[1,20],[-81,13],[4,59]],[[53905,40036,0],[3,53]],[[53908,40089,0],[5,74],[-16,17],[-13,1]],[[53884,40181,0],[-13,3],[-18,2]],[[53853,40186,0],[-21,5]],[[53832,40191,0],[-12,4]],[[53820,40195,0],[-13,5]],[[53807,40200,0],[-16,7]],[[53791,40207,0],[-14,6],[-19,11]],[[53758,40224,0],[-22,15]],[[53736,40239,0],[-27,20],[-15,15]],[[53694,40274,0],[-11,10],[-15,17],[-16,24]],[[53652,40325,0],[-8,15],[-4,7],[-8,15]],[[53632,40362,0],[-7,19]],[[53625,40381,0],[-7,24]],[[53618,40405,0],[-97,439],[123,22]],[[53644,40866,0],[53,112]],[[53697,40978,0],[49,77]],[[53746,41055,0],[66,165],[-55,22]],[[53757,41242,0],[-12,6]],[[53745,41248,0],[23,24],[7,8]],[[53775,41280,0],[20,21]],[[53795,41301,0],[5,6],[5,8]],[[53805,41315,0],[24,-9]],[[53829,41306,0],[30,-8],[59,-7]],[[53918,41291,0],[43,1]],[[53961,41292,0],[39,5],[25,7]],[[54025,41304,0],[34,10],[37,16]],[[54096,41330,0],[46,26]],[[54142,41356,0],[66,50],[-26,27],[-19,198]],[[54163,41631,0],[258,195]],[[54421,41826,0],[-39,19]],[[54382,41845,0],[-99,29],[-101,7]],[[54182,41881,0],[-102,45]],[[54080,41926,0],[0,43],[37,28]],[[54117,41997,0],[29,44],[-27,100]],[[54119,42141,0],[-203,-1]],[[53916,42140,0],[-43,254]],[[53873,42394,0],[-57,-8]],[[53816,42386,0],[-30,-4],[-9,12]],[[53777,42394,0],[-11,11]],[[53766,42405,0],[25,6],[23,6],[8,3],[12,7],[14,11],[26,8],[54,8],[160,60],[36,23],[25,28],[-2,20],[-8,26],[30,4],[24,-19],[73,-5],[21,-1],[35,0],[45,-4],[72,-16],[38,3],[108,3],[110,-7],[121,-11],[154,-10],[207,-5]],[[56069,39968,0],[7,-12],[101,-174]],[[56283,39632,0],[7,-3],[17,-5]],[[56338,39302,0],[-35,-52],[-33,-49]],[[56206,39127,0],[-21,-9],[-36,-16]],[[56034,39057,0],[-71,-26],[-133,-49]],[[55830,38982,0],[-52,-18],[-97,-34]],[[55390,38413,0],[-2,-7],[-4,-13]],[[54332,37638,0],[-41,64]],[[54054,37921,0],[-23,32]],[[53826,38164,0],[-77,131],[-17,29],[-3,6],[-2,3],[-49,-39],[-9,-7],[-11,-14],[-75,-91],[-230,159]],[[53353,38341,0],[-9,9],[-10,11]],[[53334,38361,0],[-93,105],[-88,101]],[[53153,38567,0],[62,37],[48,26],[119,64]],[[53382,38694,0],[76,35],[96,53],[59,32],[122,52],[122,65],[28,15],[70,46],[2,2],[3,3],[71,31],[88,39],[60,41],[128,81],[51,32],[29,19]],[[54387,39240,0],[23,13],[85,46]],[[54495,39299,0],[88,56],[66,42]],[[54727,39441,0],[48,20],[17,7]],[[54906,39527,0],[12,6],[65,30]],[[54983,39563,0],[39,23],[48,30]],[[55899,40047,0],[1,0],[135,65]],[[56035,40112,0],[38,15],[14,6],[1,0]],[[53777,42394,0],[9,-11],[30,3]],[[53873,42394,0],[27,-157],[16,-97]],[[54119,42141,0],[18,-64],[10,-36],[-30,-44]],[[54117,41997,0],[-11,-8],[-26,-19],[0,-44]],[[54080,41926,0],[82,-36],[20,-9]],[[54382,41845,0],[30,-15],[9,-4]],[[54421,41826,0],[-251,-190],[-7,-5]],[[54163,41631,0],[12,-122],[7,-75],[2,-2],[25,-26],[-21,-15],[-46,-35]],[[54142,41356,0],[-26,-14],[-20,-12]],[[54025,41304,0],[-24,-6],[-25,-4],[-15,-2]],[[53918,41291,0],[-59,8],[-7,1],[-23,6]],[[53829,41306,0],[-22,9],[-2,0]],[[53805,41315,0],[-5,-7],[-5,-6],[0,-1]],[[53775,41280,0],[-2,-1],[-4,-7],[-24,-24]],[[53745,41248,0],[10,-5],[2,-1]],[[53757,41242,0],[24,-9],[31,-12],[-66,-166]],[[53697,40978,0],[-27,-57],[-5,-11],[-21,-44]],[[53618,40405,0],[4,-13],[3,-11]],[[53625,40381,0],[4,-11],[3,-8]],[[53652,40325,0],[12,-17],[4,-6],[16,-18],[10,-10]],[[53736,40239,0],[10,-7],[12,-8]],[[53758,40224,0],[19,-10],[2,-1],[12,-6]],[[53807,40200,0],[11,-4],[2,-1]],[[53820,40195,0],[3,-1],[9,-3]],[[53832,40191,0],[8,-2],[13,-3]],[[53884,40181,0],[1,0],[12,0],[17,-18],[-2,-19],[-4,-54],[0,-1]],[[53905,40036,0],[0,-4],[-4,-54],[82,-14],[-1,-8],[-1,-12]],[[53981,39944,0],[-17,-37],[-34,-65]],[[53909,39804,0],[-9,-15],[-16,-35],[-9,-20]],[[53875,39734,0],[-1,-3],[-2,-12]],[[53872,39719,0],[-1,-7],[-1,-3]],[[53759,39534,0],[-30,-59],[-34,6]],[[53695,39481,0],[-32,15],[-22,11],[-22,3],[-40,19],[-21,10],[-129,93]],[[53429,39632,0],[-37,36],[-71,83],[-90,106],[-37,56]],[[53194,39913,0],[-70,96],[-53,56],[-28,48]],[[53043,40113,0],[-91,129],[-17,34],[-18,60],[-56,33],[-110,60]],[[52751,40429,0],[78,30],[-41,132],[-105,334],[-96,308],[26,55],[30,61],[13,27],[79,162],[91,186]],[[52826,41724,0],[90,-33],[1,4],[10,26],[47,126]],[[52974,41847,0],[19,51]],[[52993,41898,0],[40,102],[19,49]],[[53052,42049,0],[63,165]],[[53115,42214,0],[0,4],[1,3],[108,23]],[[53224,42244,0],[6,26],[11,20]],[[53241,42290,0],[6,9],[7,11]],[[53254,42310,0],[20,17],[8,7]],[[53282,42334,0],[10,3],[14,4]],[[53306,42341,0],[-1,7],[-2,15],[-2,13],[-1,5]],[[53300,42381,0],[39,-7],[17,-5],[102,8]],[[53458,42377,0],[44,-8]],[[53502,42369,0],[7,4],[46,0]],[[53555,42373,0],[14,0]],[[53569,42373,0],[74,5],[28,6]],[[53671,42384,0],[93,20]],[[53764,42404,0],[13,-10]],[[51133,40638,0],[28,-28],[-28,28]],[[51133,40638,0],[142,128],[317,47],[-2,-22],[174,-148]],[[51764,40643,0],[152,-124],[38,-32],[66,-54]],[[52020,40433,0],[246,14]],[[52266,40447,0],[-105,-825],[105,825]],[[52266,40447,0],[75,-9],[36,-1],[117,-15]],[[52494,40422,0],[-11,-22]],[[52483,40400,0],[-11,-8],[11,8]],[[52483,40400,0],[144,-100]],[[52627,40300,0],[5,-10],[7,-15],[39,-41]],[[52678,40234,0],[28,-17]],[[52706,40217,0],[90,-154]],[[52796,40063,0],[14,-18],[5,-21]],[[52815,40024,0],[16,2]],[[52831,40026,0],[19,-27],[22,-40]],[[52872,39959,0],[23,-32]],[[52895,39927,0],[17,-42]],[[52912,39885,0],[-3,-6],[46,-118],[21,-57]],[[52976,39704,0],[2,-29],[-31,-79],[-68,-95]],[[52879,39501,0],[-12,-32],[-42,-54]],[[52825,39415,0],[-29,-8],[-21,4],[-63,-39],[-65,-39],[-102,-64],[-55,-40]],[[52490,39229,0],[-23,8],[23,-8]],[[52490,39229,0],[-22,-102],[-42,-48],[-41,-58],[69,-90]],[[52454,38931,0],[-25,-13]],[[52429,38918,0],[-1,-7]],[[52428,38911,0],[-19,-12],[0,-15],[-22,-48],[37,-93]],[[52424,38743,0],[-49,-101],[-156,-24]],[[52219,38618,0],[-332,-30],[-497,7],[-18,0],[-214,-5],[-160,-6],[-256,-129],[-99,11],[-29,-9],[-27,-3],[-27,-12],[-264,-66],[2,-15],[-34,-18],[28,-35],[25,-34],[-7,-14],[7,-8],[-2,-35],[8,-1],[6,-66],[-13,-21],[-286,100],[-415,15],[-66,3],[-47,9],[-53,32],[-274,46],[-82,44],[-22,17]],[[49992,39205,0],[-49,19],[-21,9]],[[50014,41044,0],[254,-101],[426,-200],[251,83],[16,-76],[29,-74],[41,-66],[28,-33],[74,61]],[[52768,44500,0],[-13,-71]],[[52755,44429,0],[-25,-129],[-20,-107],[-17,-91],[-26,-138],[-15,-81]],[[52652,43883,0],[0,-4],[-35,-185]],[[52617,43694,0],[-15,-89],[-25,-118]],[[52577,43487,0],[0,-3],[0,-4]],[[52577,43480,0],[-1,-1],[-11,-60]],[[52565,43419,0],[-5,-35],[-3,-14]],[[52557,43370,0],[-7,-35],[-13,-44]],[[52537,43291,0],[-5,-12],[-4,-13]],[[52528,43266,0],[-16,-30],[-20,-34],[-18,-21],[-26,-30],[-20,-19]],[[52428,43132,0],[-105,-107],[-55,-55]],[[52268,42970,0],[-14,-14],[-65,-66]],[[52189,42890,0],[-87,-89],[-39,-43],[-42,-37],[-49,-43]],[[51972,42678,0],[-49,37]],[[51923,42715,0],[-30,28],[-40,40],[-52,52],[-35,37],[-59,83],[-34,51],[-98,183],[-214,385],[-172,310],[-47,86],[-7,11]],[[51144,44117,0],[36,-47],[71,391],[5,24]],[[54808,43855,0],[8,-13],[22,-32]],[[55310,43190,0],[-83,-451]],[[55227,42739,0],[-29,-111]],[[53766,42405,0],[-2,-1]],[[53764,42404,0],[-19,-4],[-74,-16]],[[53671,42384,0],[-28,-7],[-74,-4]],[[53555,42373,0],[-46,-1],[-7,-3]],[[53458,42377,0],[-102,-9],[-17,5],[-39,8]],[[53300,42381,0],[-17,113],[-292,-60],[-98,-9],[-58,-4],[-44,335],[-26,59],[-1,4],[-35,0]],[[52729,42819,0],[-38,-13],[-74,-40],[-73,-35]],[[52544,42731,0],[-33,-7],[-123,-27]],[[52388,42697,0],[-57,-15],[-33,-12],[-42,-18],[-13,-10],[-18,-13],[-22,-18],[-19,-30],[-18,-10],[-14,-4],[-15,-1],[-15,8]],[[52122,42574,0],[-61,37],[-59,43]],[[52002,42654,0],[-30,24]],[[52189,42890,0],[79,80]],[[52268,42970,0],[160,162]],[[52528,43266,0],[9,25]],[[52557,43370,0],[8,49]],[[52565,43419,0],[12,61]],[[52577,43480,0],[0,7]],[[52617,43694,0],[33,174],[2,15]],[[52755,44429,0],[13,74]],[[52794,44643,0],[37,197]],[[52854,44969,0],[121,-19]],[[53364,44884,0],[-14,-89],[-34,-206],[-13,-76]],[[47309,45245,0],[246,-285],[209,170],[83,-103],[-232,-328],[163,-176],[163,-94],[285,-214],[113,-117],[384,217],[222,126]],[[48945,44441,0],[11,-101],[8,-82]],[[48964,44258,0],[83,-133],[13,-19],[40,-65],[53,-82]],[[49153,43959,0],[-74,-41],[-131,-72],[-134,-75],[-132,-75],[-40,-22],[-59,-42],[-69,-53],[-40,-35],[-59,-58],[-52,-57],[-57,-71]],[[48306,43358,0],[-1,-1],[0,-1]],[[48305,43356,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[1,-2],[0,-2],[1,0],[1,-3],[270,-7],[-8,-53],[-1,-97],[8,-44],[22,-83],[14,-38],[52,-131],[-145,-51],[31,-36],[48,-49],[88,-76],[75,-65],[40,-32],[-96,-55]],[[46004,42473,0],[78,1484]],[[46082,43957,0],[103,-28],[153,-44],[123,-43],[79,279],[82,167],[49,113],[31,110],[53,131],[20,54],[57,113],[43,80],[53,93],[381,263]],[[50131,46851,0],[36,-60]],[[50795,44380,0],[-130,-20],[-90,-15],[-38,-7],[-29,-5],[-22,-8],[-28,-19],[-14,-10],[-16,-9],[-36,-14],[-31,-8],[-54,-12],[-36,-3],[-175,0],[-45,1],[-54,-1],[-89,-7],[-71,-9],[-57,-8],[-64,-14],[-97,-26],[-94,-34],[-58,-23],[-50,-24],[-65,-34],[-91,-51],[-60,-34],[-48,-27]],[[48964,44258,0],[-8,79],[-11,104]],[[47309,45245,0],[33,34],[148,161],[494,178],[174,149],[290,248],[223,115],[-170,586],[191,4],[-7,115],[-2,26],[-4,53]],[[67352,49355,0],[-503,260]],[[66969,49842,0],[57,-23],[48,-23],[35,-13],[161,-61],[194,-67]],[[65134,51587,0],[332,-430]],[[65466,51157,0],[9,-13]],[[65475,51144,0],[8,-24]],[[65483,51120,0],[7,-29]],[[65490,51091,0],[2,-29]],[[64856,51496,0],[-25,5],[-1,0]],[[64662,51612,0],[-21,15],[0,1]],[[64342,51831,0],[-16,14],[-15,12]],[[63399,53042,0],[48,31]],[[63529,53095,0],[101,20],[348,132],[145,55]],[[64363,53409,0],[213,120],[66,38]],[[64642,53567,0],[39,22],[58,36],[68,59]],[[64807,53684,0],[199,196],[31,26],[25,30],[31,25]],[[65261,54158,0],[119,-22],[89,-22],[49,-16],[57,-21],[83,-37],[42,-22],[62,-38],[485,-335]],[[66343,53275,0],[-53,-37]],[[66290,53238,0],[-299,-334],[-85,-98],[-49,-66]],[[65857,52740,0],[-100,-23]],[[65757,52717,0],[-153,-40]],[[65604,52677,0],[-193,-50]],[[65411,52627,0],[-29,-11]],[[65382,52616,0],[-42,-21]],[[65340,52595,0],[-32,-21]],[[65308,52574,0],[-37,-29]],[[65271,52545,0],[-23,-25]],[[65248,52520,0],[-43,-53]],[[65205,52467,0],[-68,-90]],[[65137,52377,0],[-46,-67]],[[65091,52310,0],[-29,-52]],[[65062,52258,0],[-26,-55],[-31,-72],[-13,-37]],[[64992,52094,0],[-9,-32],[-10,-41],[-4,-47]],[[64969,51974,0],[-2,-42],[5,-54],[6,-28],[24,-55]],[[65002,51795,0],[92,-151],[40,-57]],[[65296,20572,0],[-24,-10],[-45,-17],[-65,-26],[-54,-21],[-10,-2],[-79,-27],[-46,-16],[-122,-53],[-113,-60],[-49,-32],[-60,-40],[-28,-23],[-71,-63],[-20,-20],[-75,-73],[-28,-29],[-65,-63],[-101,-93],[-98,-69],[-13,-12],[-29,-18],[-56,-27],[-10,-6],[-23,-19],[-140,-50],[-27,-7],[-92,-8],[-10,-2],[-73,-14]],[[63670,19672,0],[-39,-4],[-40,-3],[-146,20],[-91,25],[-44,11],[-37,17],[-92,46],[-24,18],[-93,71],[-71,73],[-22,23],[-73,99]],[[62898,20068,0],[8,8],[60,44],[-6,7],[-18,23],[-14,24],[-25,46]],[[62903,20220,0],[3,16],[11,39]],[[62917,20275,0],[32,105]],[[62949,20380,0],[73,-14],[9,-5],[41,12],[16,12],[13,12],[28,-13],[16,-66],[18,-15]],[[63163,20303,0],[105,-81]],[[63268,20222,0],[67,-43],[55,-35],[5,4],[-55,53],[26,17]],[[63366,20218,0],[102,67]],[[63468,20285,0],[92,-55],[143,6],[35,-2],[13,-1],[80,-4],[28,0],[193,38],[0,5],[11,126]],[[64063,20398,0],[-5,76]],[[64058,20474,0],[-15,115],[72,49],[42,59],[14,27],[11,20],[7,20],[14,99],[2,57]],[[64205,20920,0],[-3,270]],[[64202,21190,0],[136,-7]],[[64338,21183,0],[115,-25],[4,12]],[[64457,21170,0],[4,10],[3,7]],[[61493,19997,0],[-4,-19],[-4,-15]],[[61485,19963,0],[1,-26]],[[61486,19937,0],[-5,-55]],[[61481,19882,0],[-1,-5],[-6,-6],[-3,-1],[-8,-34]],[[61463,19836,0],[-11,-46]],[[61452,19790,0],[-7,-23]],[[61445,19767,0],[-2,-5]],[[61443,19762,0],[-5,-34]],[[61438,19728,0],[-41,-30],[-56,-77],[-7,-9],[-4,-5],[6,-2],[-48,-69]],[[61288,19536,0],[-16,-27]],[[61272,19509,0],[-76,-169]],[[61196,19340,0],[-9,-12]],[[61187,19328,0],[-5,-22]],[[61182,19306,0],[-5,-14],[-36,-94],[-14,-32],[-29,-50]],[[61098,19116,0],[-13,-28]],[[61085,19088,0],[-4,-11],[-4,-18],[-12,-35],[-18,-42],[-4,-33],[-15,-35],[8,-16]],[[61036,18898,0],[-38,-74]],[[60998,18824,0],[-22,8]],[[60976,18832,0],[-42,-84]],[[60934,18748,0],[-39,-45]],[[60895,18703,0],[-30,-32]],[[60865,18671,0],[-9,-12]],[[60856,18659,0],[-27,-25]],[[60829,18634,0],[-32,-22]],[[60797,18612,0],[-36,-22]],[[60761,18590,0],[-15,-15]],[[60746,18575,0],[-14,-5]],[[60732,18570,0],[-73,-22]],[[60659,18548,0],[-11,4],[-4,11],[-44,-31]],[[60600,18532,0],[-58,-32]],[[60542,18500,0],[-69,-40]],[[60473,18460,0],[-34,-21],[-9,-5]],[[60430,18434,0],[-39,-27]],[[60391,18407,0],[-155,-105]],[[60236,18302,0],[-87,-71]],[[60149,18231,0],[-10,-12]],[[60139,18219,0],[-63,-54]],[[60076,18165,0],[-27,-65]],[[60049,18100,0],[-76,-190]],[[59973,17910,0],[-149,-56],[-69,-18],[-71,6],[-120,20],[-93,-6],[-158,-29],[-228,-76],[-37,61],[6,38],[-26,61],[1,8],[-59,76],[-18,46],[12,71],[49,70],[63,73],[134,38],[-52,26],[6,21],[37,96],[20,177],[47,144],[-19,91],[211,238],[211,325],[222,-92],[62,216],[44,70],[61,91],[88,130],[8,11],[87,156],[53,117],[74,25],[54,-10],[25,-6],[39,7],[180,8],[22,2],[98,14],[71,6],[113,26],[187,69],[158,43]],[[61317,20294,0],[13,33]],[[61330,20327,0],[96,61]],[[61426,20388,0],[22,-116],[15,-88],[10,-71],[8,-55],[3,-13],[9,-48]],[[62004,18090,0],[-102,23],[-65,-5],[-35,-3],[-60,-4],[-142,-27]],[[61600,18074,0],[-209,-23],[-65,-7]],[[61326,18044,0],[-31,-4],[-28,-7],[-107,-28],[-82,-62],[-101,-64],[-44,-38],[-9,-12]],[[60924,17829,0],[-23,-26],[-41,-44],[-28,-21],[-14,-11],[-13,-7],[-13,-6],[-79,-82],[-42,-56],[-31,-55],[-127,82],[-180,99],[-112,71],[-114,63],[-52,22],[-76,17],[-6,35]],[[59973,17910,0],[25,61],[51,129]],[[60049,18100,0],[16,39],[11,26]],[[60076,18165,0],[17,14],[46,40]],[[60149,18231,0],[53,43],[3,2],[31,26]],[[60236,18302,0],[58,40],[97,65]],[[60391,18407,0],[1,1],[38,26]],[[60473,18460,0],[36,21],[32,19],[1,0]],[[60542,18500,0],[43,24],[15,8]],[[60659,18548,0],[45,13],[28,9]],[[60746,18575,0],[8,7],[7,8]],[[60761,18590,0],[16,8],[20,14]],[[60797,18612,0],[6,4],[26,18]],[[60856,18659,0],[7,9],[2,3]],[[60865,18671,0],[23,24],[7,8]],[[60934,18748,0],[38,77],[4,7]],[[60998,18824,0],[11,21],[27,53]],[[61085,19088,0],[1,2],[12,26]],[[61182,19306,0],[3,15],[2,7]],[[61196,19340,0],[26,57],[50,112]],[[61272,19509,0],[7,13],[9,14]],[[61438,19728,0],[1,4],[4,30]],[[61443,19762,0],[1,3],[1,2]],[[61452,19790,0],[7,29],[4,17]],[[61481,19882,0],[3,33],[2,22]],[[61486,19937,0],[0,9],[-1,17]],[[61493,19997,0],[11,46],[33,17],[9,-20],[46,-83],[31,-49],[42,-64],[14,-20],[13,-21],[25,-38],[47,-73],[164,-246],[172,-105],[78,-45],[46,-23],[26,-9],[90,-33],[8,-4],[11,-9],[11,-4],[8,-4],[-8,-34]],[[62370,19176,0],[-3,-16],[-1,-5],[-1,-5],[-35,-66],[-3,-7],[-14,-24],[-9,-15],[-2,-3],[-12,-20],[-19,-30],[-1,-3],[-20,-23],[-6,-7],[1,-31],[-4,-17],[10,-48],[1,-11],[4,-57],[-44,-54],[-73,-80],[-16,-26],[-45,-117],[-19,-50],[-2,-10],[-4,-12],[-6,-13],[-7,-15],[-3,-38],[-3,-33],[-1,-20],[0,-8],[-1,-8],[-2,-13],[-8,-45],[-3,-14],[0,-3],[-17,-55],[-5,-8],[-3,-4],[4,-25],[4,-25],[2,-22]],[[61986,16480,0],[-69,-135]],[[61917,16345,0],[-17,-20]],[[61900,16325,0],[-71,-120],[-37,-80]],[[61792,16125,0],[-5,-16]],[[61787,16109,0],[-11,-34],[43,-245]],[[61819,15830,0],[-11,-99],[-20,-40],[-20,-128],[65,-24],[4,-50],[-4,-10],[-12,-21],[-6,-22],[-21,-31],[-31,-56],[-80,20],[-27,12],[-71,12],[-44,13],[-66,16],[-80,7],[-49,11],[-111,51],[-35,29],[-24,33],[-37,37]],[[60571,15993,0],[-125,63],[41,52],[51,4],[35,29],[19,20],[40,46],[107,154],[14,-7],[11,10],[90,91],[57,53],[11,33],[45,109],[-11,21],[-21,26],[-5,3],[-56,37],[-37,19],[-58,23],[-39,4],[137,205],[44,72],[76,104],[147,183],[39,56],[-55,30],[-39,29],[-43,22],[-45,31],[15,32],[26,47],[11,13],[50,105],[9,5],[-47,13],[-141,99]],[[61326,18044,0],[274,30]],[[62004,18090,0],[2,-15]],[[62006,18075,0],[-1,-38]],[[62005,18037,0],[1,-23]],[[62006,18014,0],[2,-89]],[[62008,17925,0],[-3,-31],[-10,-12]],[[61995,17882,0],[-1,-90]],[[61994,17792,0],[0,-11],[5,-54],[3,-36]],[[62002,17691,0],[11,-72]],[[62013,17619,0],[4,-18]],[[62017,17601,0],[6,-60]],[[62023,17541,0],[4,-9]],[[62027,17532,0],[3,-47]],[[62030,17485,0],[-2,-69]],[[62028,17416,0],[0,-11]],[[62028,17405,0],[0,-4],[-1,-48]],[[62027,17353,0],[3,-70]],[[62030,17283,0],[4,-73]],[[62034,17210,0],[-7,-122]],[[62027,17088,0],[-9,-43]],[[62018,17045,0],[-8,-46]],[[62010,16999,0],[-14,-112]],[[61996,16887,0],[-4,-31]],[[61992,16856,0],[20,-12]],[[62012,16844,0],[18,-88],[3,-26],[0,-68],[-20,-73]],[[62013,16589,0],[-2,-12]],[[62011,16577,0],[-4,-39]],[[62007,16538,0],[-21,-58]],[[63312,18958,0],[2,-22],[-1,-84]],[[63313,18852,0],[1,-41],[3,-96]],[[63317,18715,0],[1,-29],[0,-12]],[[63318,18674,0],[-6,-42],[-1,-72],[-1,-17],[-1,-30],[-5,-42],[-14,-56],[-22,-69]],[[63268,18346,0],[14,-3],[9,-2]],[[63291,18341,0],[1,-3],[3,-5]],[[63295,18333,0],[14,0],[13,-1]],[[63322,18332,0],[20,-8],[-1,-14],[44,-9],[74,-31],[81,-35]],[[63540,18235,0],[11,-5],[3,-2]],[[63554,18228,0],[6,-11],[1,-5]],[[63561,18212,0],[19,-8],[34,-12]],[[63614,18192,0],[19,-6],[18,-6]],[[63651,18180,0],[67,-12],[1,0]],[[63719,18168,0],[61,-14],[64,-10]],[[63844,18144,0],[48,4],[2,0]],[[63894,18148,0],[31,4]],[[63925,18152,0],[5,1],[5,0]],[[63935,18153,0],[4,-20]],[[63939,18133,0],[7,-23],[-24,-111],[-9,-36],[1,-19],[-7,-50],[-6,-18],[-5,-14],[-4,-24],[-3,-18],[-1,-16],[-2,-42],[-5,-26],[-2,-23],[1,-32],[-2,-19],[2,-10],[3,-14],[4,-38],[0,-44],[-2,-27],[-5,-14],[-5,-5],[0,-12],[5,-5],[-10,-57],[-12,-37],[-3,-11],[-11,-67],[-13,-81],[-7,-32],[-17,-29],[-3,-11],[-11,1],[-16,-34],[-37,-74],[17,-4],[-4,-44],[-14,-26],[-10,-46],[2,-5],[-1,-17],[-17,-74],[-3,-13],[-8,-20],[-15,-34],[-15,-46],[-13,-23],[-12,-31],[-16,-34],[-20,-48],[-19,-53],[-11,-18],[-12,-28],[-14,-31],[-19,-48],[-18,-41],[-5,-13],[-14,-102],[-13,-51],[-18,-64]],[[63468,16147,0],[-24,-22],[-28,-10]],[[63416,16115,0],[-17,1],[-14,2]],[[63385,16118,0],[-16,4],[-18,4]],[[63351,16126,0],[-42,13],[-55,13]],[[63254,16152,0],[-27,15],[-19,10]],[[63208,16177,0],[-21,13]],[[63187,16190,0],[-11,7],[-8,5]],[[63168,16202,0],[-3,3],[-28,20]],[[63137,16225,0],[-2,1],[-16,11]],[[63119,16237,0],[-12,11],[-18,14]],[[63089,16262,0],[-15,14],[-6,6]],[[63068,16282,0],[-9,7],[-12,8]],[[63047,16297,0],[-8,5],[-23,17]],[[63016,16319,0],[-8,10],[-8,9]],[[63000,16338,0],[-8,14],[-1,4]],[[62991,16356,0],[-26,35],[-28,28],[1,-7]],[[62938,16412,0],[-16,-5],[-13,-4]],[[62909,16403,0],[-23,-7]],[[62886,16396,0],[1,-7],[5,-35]],[[62892,16354,0],[2,-18],[1,-3]],[[62895,16333,0],[8,-60],[33,-245]],[[62936,16028,0],[-55,24],[-71,32]],[[62810,16084,0],[-3,2],[-1,0]],[[62806,16086,0],[-4,-18],[-1,-7]],[[62801,16061,0],[2,-2],[9,-6]],[[62812,16053,0],[4,-7],[5,-7]],[[62821,16039,0],[6,-15],[3,-13]],[[62830,16011,0],[0,-5],[1,-8]],[[62831,15998,0],[-2,-12]],[[62829,15986,0],[-8,-58],[-1,-6]],[[62820,15922,0],[-1,-18],[-41,-189]],[[62778,15715,0],[-40,10],[-150,36]],[[62588,15761,0],[-78,7],[-89,8]],[[62421,15776,0],[-8,1],[-155,15]],[[62258,15792,0],[-5,0],[-15,2]],[[62238,15794,0],[-62,6],[-78,8]],[[62098,15808,0],[-49,-2]],[[62049,15806,0],[-10,0],[-1,1]],[[62038,15807,0],[-3,0],[-53,1]],[[61982,15808,0],[-105,10],[-26,1]],[[61851,15819,0],[-31,11],[-1,0]],[[61787,16109,0],[0,1],[5,15]],[[61900,16325,0],[10,12],[7,8]],[[61917,16345,0],[22,42],[47,93]],[[61986,16480,0],[11,29],[10,29]],[[62007,16538,0],[2,16],[2,23]],[[62011,16577,0],[1,3],[1,9]],[[62012,16844,0],[-15,10],[-5,2]],[[61992,16856,0],[3,21],[1,10]],[[61996,16887,0],[6,44],[8,68]],[[62010,16999,0],[5,32],[3,14]],[[62027,17088,0],[1,13],[6,109]],[[62034,17210,0],[-3,59],[-1,14]],[[62030,17283,0],[-1,22],[-2,48]],[[62028,17405,0],[0,2],[0,9]],[[62030,17485,0],[-2,22],[-1,25]],[[62023,17541,0],[-2,25],[-4,35]],[[62017,17601,0],[-2,11],[-2,7]],[[62013,17619,0],[-10,70],[-1,2]],[[61994,17792,0],[0,39],[1,51]],[[62008,17925,0],[-1,36],[-1,53]],[[62006,18014,0],[-1,13],[0,10]],[[62005,18037,0],[1,33],[0,5]],[[62006,18075,0],[-1,7],[-1,8]],[[62370,19176,0],[50,-21],[159,-49],[202,-30],[13,-5],[61,-22],[121,-71],[42,-19],[46,-20],[30,-10],[134,7],[51,13],[33,9]],[[63385,16118,0],[31,-3]],[[63468,16147,0],[97,-12],[43,-4],[28,-3],[38,-7],[4,31],[12,-10],[21,-16],[32,-11],[-15,-56],[-24,-8],[-16,-43],[-14,-103],[-4,-32],[-1,-47],[7,-77],[18,-67],[8,-13],[-1,-15],[33,-107],[12,-19]],[[63746,15528,0],[-104,-8],[3,-19],[21,-55],[18,-70],[0,-66],[48,-120],[16,-8],[8,-35],[13,-73],[9,-64],[32,-43],[19,-16],[-1,-105],[6,-40],[11,-33],[13,-87],[10,-9],[9,-46],[10,-14],[1,-69],[11,-70],[-3,-51],[6,-40],[18,-60],[16,-107],[5,-22],[-1,-24],[12,-23],[30,-102],[14,-34],[22,-35],[14,-36],[23,-66],[3,-20],[12,-43],[14,-111],[3,-67],[8,-85],[26,-137],[15,-65],[44,-110],[40,-63],[17,-35],[59,-44],[17,-25],[36,-37],[30,-71],[18,-20]],[[64397,12945,0],[-65,-6],[-71,74],[-25,7],[-42,3],[-11,-17],[-29,-15],[-41,-11],[-54,-7],[-46,-12],[-88,-6],[-67,4],[-26,48],[-71,8],[-55,0],[-33,3],[-75,1],[-99,-3],[33,83],[2,19],[-116,46],[-29,16],[-2,7],[-55,-50],[-27,0],[-32,3],[5,15],[-89,61],[-80,-154],[-19,-4],[-62,11],[-14,-4],[-37,0],[-4,12],[-20,12],[-2,27],[-32,6],[-38,-2],[-12,-8],[-31,-9],[-73,4],[-10,165],[4,25],[-6,15],[2,66],[11,29],[10,17],[9,24],[7,31],[-1,20],[-1,7],[-59,44],[-35,41]],[[62087,14240,0],[1,28],[-13,25],[-4,0],[-12,26],[-12,21],[-29,37],[-20,35],[-5,22],[-8,22],[74,88],[51,34],[25,9],[20,17],[15,8],[44,14],[96,42],[79,20],[40,17],[47,1],[2,-4],[10,1],[9,-2],[-73,161]],[[62424,14862,0],[1,12],[10,120],[13,148],[198,-23],[-18,36],[11,10],[26,82],[72,265],[41,203]],[[62820,15922,0],[9,64]],[[62831,15998,0],[-1,13]],[[62821,16039,0],[-9,14]],[[62812,16053,0],[-11,8]],[[62801,16061,0],[5,25]],[[62806,16086,0],[4,-2]],[[62810,16084,0],[126,-56]],[[62936,16028,0],[-41,305]],[[62895,16333,0],[-3,21]],[[62892,16354,0],[-6,42]],[[62909,16403,0],[29,9]],[[62991,16356,0],[9,-18]],[[63000,16338,0],[16,-19]],[[63016,16319,0],[31,-22]],[[63047,16297,0],[21,-15]],[[63068,16282,0],[21,-20]],[[63089,16262,0],[30,-25]],[[63119,16237,0],[18,-12]],[[63168,16202,0],[19,-12]],[[63208,16177,0],[46,-25]],[[63351,16126,0],[34,-8]],[[65124,15749,0],[8,22],[7,20]],[[65139,15791,0],[19,69],[15,25],[43,-7],[37,-4],[27,2],[49,-14],[111,-9],[17,-3],[21,-2],[34,-11],[35,-16],[59,-38],[32,-27],[11,-10],[29,-24],[34,-27],[89,-37],[85,-70]],[[65886,15588,0],[-36,-61]],[[65850,15527,0],[-8,-20],[-7,-18]],[[65835,15489,0],[-42,-114]],[[65793,15375,0],[-32,-83],[-24,-64]],[[65737,15228,0],[-23,-40],[-93,-154]],[[65621,15034,0],[-21,-38],[-30,-55]],[[65570,14941,0],[-25,-59],[-26,-62]],[[65519,14820,0],[-20,-46],[-25,-58]],[[65474,14716,0],[-36,-83]],[[65438,14633,0],[-4,-17],[-2,-11]],[[65432,14605,0],[-8,-20],[-12,-44],[-5,-17],[-6,-19],[-12,-30],[-15,-42]],[[65374,14433,0],[-23,-73],[-5,-18]],[[65346,14342,0],[-9,-1],[-32,-331],[-26,-282]],[[65279,13728,0],[-2,-16],[-6,-49]],[[65271,13663,0],[0,-5],[10,-1]],[[65281,13657,0],[-7,-173],[-1,-15],[-2,-55],[-2,-20],[8,-88],[-5,-58],[48,-289],[-149,22],[-57,6],[-46,4],[-61,0],[-57,4],[-114,18],[-312,-52],[-43,-8],[-84,-8]],[[63746,15528,0],[26,4],[27,0],[31,7],[6,14],[14,28],[20,38],[19,18],[22,35],[12,23],[20,25],[32,21],[50,32],[28,26],[31,44],[24,27],[132,-9],[52,-3],[6,26],[37,46],[54,-11],[63,-15],[161,-54],[186,-60],[54,12],[89,11],[20,-12],[108,-91],[25,-22],[16,30],[13,31]],[[64980,17664,0],[24,-10],[88,-43],[47,-23],[6,-2],[23,-11],[12,-7],[122,-58],[56,-26],[178,-84],[5,-2],[24,-10],[20,-11],[8,-6],[12,-7],[74,-37],[12,-6],[117,-66],[43,-26],[25,-21],[21,-17],[17,-12],[34,-36],[27,-30],[27,-39],[43,-74],[9,-16],[22,-49],[47,-154]],[[66123,16781,0],[28,-71],[12,-30]],[[66163,16680,0],[28,-72],[21,-47],[11,-23]],[[66223,16538,0],[54,-71]],[[66277,16467,0],[38,-35],[14,-23],[19,-33],[47,-29],[39,-29],[12,-7],[16,-12],[57,-34],[98,-57],[34,-25],[9,-9],[11,-9],[27,-9],[118,-41],[16,-16],[56,-21],[14,1],[16,2]],[[66918,16081,0],[1,-39],[-19,-45],[-37,-18],[-90,-2],[-140,-43],[-110,-17],[-97,-29],[-146,-46],[-44,-32],[-58,-60],[-43,-24],[-148,-66],[-70,-40],[-31,-32]],[[65139,15791,0],[-15,-42]],[[63939,18133,0],[12,-8],[216,-132],[142,-87],[15,-4],[37,-15],[5,-3],[94,-38],[148,-60],[18,-6],[86,-59],[165,-109],[5,-6],[55,-35],[17,23],[13,18],[13,52]],[[65572,20017,0],[34,-164],[-19,6],[10,-31],[11,-33],[6,-19],[-1,-32],[-1,-9],[-2,-22],[0,-35],[-96,-73],[-100,-78],[-57,-35],[-29,16],[-19,10],[12,-57],[8,-77],[7,-47],[4,-49],[9,-139],[1,-33],[-3,-117],[1,-25],[4,-13],[2,-31],[-1,-25],[-5,-24],[11,-62],[5,-15],[9,-47],[-19,-27],[-27,-41],[-9,-27],[-25,-5],[-13,-26],[-1,-6],[-2,-17],[-14,-31],[-11,-37],[-29,-38],[-8,-10],[-3,-28],[-5,-12],[-2,-20],[-11,-13],[1,-38],[6,-20],[-36,-98],[-27,-108],[-3,-7],[-18,-78],[-7,-13],[-2,-20],[-9,-19],[-3,-18],[1,-7],[-3,-9],[-7,-21],[-3,-10],[-9,-47],[-8,-27],[-6,-14],[-2,-22],[-19,-42],[-6,-25],[-30,-20],[-5,-35],[-5,-19],[-14,-38]],[[63935,18153,0],[-10,-1]],[[63894,18148,0],[-50,-4]],[[63719,18168,0],[-68,12]],[[63651,18180,0],[-37,12]],[[63614,18192,0],[-53,20]],[[63554,18228,0],[-14,7]],[[63322,18332,0],[-27,1]],[[63295,18333,0],[-4,8]],[[63291,18341,0],[-23,5]],[[63318,18674,0],[-1,41]],[[63317,18715,0],[-4,137]],[[63312,18958,0],[-1,9],[0,6],[83,24],[48,102],[15,39],[8,29],[14,70],[65,250],[11,47],[16,67],[9,3],[76,45],[14,23]],[[65434,20266,0],[0,-44],[-2,-53]],[[67989,18913,0],[-122,-36]],[[67867,18877,0],[-198,-60],[-16,-5],[-41,-20],[-22,-18],[-70,-31],[-49,-15],[-20,-10],[-15,-9],[-20,-1],[-62,-16],[-37,3],[-29,-6]],[[67288,18689,0],[-10,-1],[-7,-2]],[[67271,18686,0],[-18,-7],[-10,-7],[-26,-36],[-22,-24],[-49,-22],[-11,-7],[-18,-6],[-28,-8],[-29,-12],[-31,-18],[-36,-26],[-20,-16],[-19,-11],[-12,-6],[-75,-81],[-16,-21],[-10,-21],[-18,-29],[-6,-38],[-1,-13],[-4,-33],[-4,-35],[-3,-36],[-3,-11],[1,-18],[8,-31],[6,-33],[19,-33],[12,-24],[5,-20],[4,-34],[4,-21],[1,-36],[2,-16],[2,-23],[1,-12],[-6,-73],[9,-53],[-4,-41],[3,-36],[-6,-9],[-1,-39],[-11,-28],[-12,-45],[-4,-38],[-10,-41],[-2,-27],[-5,-17],[-4,-9],[-33,-71],[-22,-32],[-16,-12],[-11,-12],[-25,-27],[-15,-21],[-75,-107],[-77,-107],[-74,-101],[-15,-21],[-17,-25],[-45,-69],[-59,-95],[-69,-107],[-38,-60]],[[66163,16680,0],[-40,101]],[[68239,18733,0],[126,-268]],[[68365,18465,0],[29,-61]],[[68811,16787,0],[-15,-46],[-16,-64],[-8,-12],[-36,-117],[-33,-115],[-16,-60],[-27,-117],[-1,-8],[-41,-201],[-6,-17],[32,-18],[7,-5],[0,-18],[4,-16],[2,-16],[0,-13],[-3,-50],[-2,-60],[0,-28],[-7,-31],[-6,-42],[-64,7],[-17,7],[-74,4],[-3,-71],[-86,-9],[-176,-11],[-64,-4],[-104,-3],[-215,-4],[-15,-22],[-32,-61]],[[67789,15566,0],[-47,32],[-110,62],[-12,-11],[-30,12],[-9,12],[-27,17],[-25,45],[-17,29],[-40,43],[-25,23],[-18,24],[-18,13],[-115,69],[-89,52],[-80,44],[-32,17],[-27,19],[-33,10],[-12,4],[-22,11],[-19,6],[-19,-11],[-45,-7]],[[66277,16467,0],[-45,58],[-9,13]],[[67271,18686,0],[17,3]],[[67867,18877,0],[60,18],[62,18]],[[67789,15566,0],[-12,-27],[42,-19],[27,-45],[113,-44],[106,-24],[68,-18],[42,-13],[-10,-43],[-6,-28],[-26,-143],[-9,-111],[-10,-52],[2,-58],[13,-47],[69,-90],[43,-50]],[[68241,14754,0],[-14,-21],[-44,-75],[-61,-107],[-50,-92],[-53,-119],[-52,-128],[-29,-65],[-24,-60],[-51,-139],[-74,-83],[-13,-25],[-91,-117],[-85,-103],[-69,-80],[-65,29],[-61,25],[-78,-54],[-107,-86],[-34,-13],[-70,-70],[-85,-73],[-86,-103],[-96,-104],[-21,-30],[-21,-18],[-35,-25],[-9,-21],[-1,-13],[-20,-16],[-74,-42],[-34,13],[-62,40],[-124,87],[-72,45],[-35,33],[-26,36],[-29,34],[-10,57],[13,24],[-9,25],[-20,57],[-6,37],[-16,28],[-13,32],[-27,48],[-51,69],[-45,99],[-128,-16],[-148,-11],[-234,-3],[-74,2],[-188,-9],[-49,4]],[[65271,13663,0],[8,65]],[[65346,14342,0],[28,91]],[[65432,14605,0],[6,28]],[[65474,14716,0],[45,104]],[[65519,14820,0],[51,121]],[[65570,14941,0],[51,93]],[[65737,15228,0],[56,147]],[[65835,15489,0],[15,38]],[[69914,16264,0],[-96,-162],[-56,-98]],[[69762,16004,0],[-14,-30]],[[69748,15974,0],[-22,-55],[-19,-47],[-20,-48],[-21,-50],[-19,-48]],[[69647,15726,0],[-20,-50]],[[69627,15676,0],[-20,-50],[-21,-47]],[[69586,15579,0],[-20,-54],[-20,-48]],[[69546,15477,0],[-20,-52]],[[69526,15425,0],[-19,-47]],[[69507,15378,0],[-19,-45],[-19,-53],[-28,-79]],[[69441,15201,0],[-19,-29],[-24,-33]],[[69398,15139,0],[-21,-34]],[[69377,15105,0],[-94,-179],[-148,-217],[0,-15],[-22,-6],[-41,-64],[-45,-79],[-62,19],[7,21],[-71,23],[-53,9],[-302,88],[-43,7],[-184,65],[-24,17],[-19,17],[-35,-57]],[[71828,17487,0],[-14,-65],[-11,-45],[-34,-128],[-19,-101],[-2,-65],[14,-154],[-4,-94]],[[71742,16731,0],[-8,-43],[-24,-64],[-89,-119]],[[71621,16505,0],[-78,-48]],[[71543,16457,0],[-45,-53]],[[71406,16278,0],[-11,-14]],[[71395,16264,0],[-28,-15],[-42,-4]],[[71279,16247,0],[-136,42]],[[71076,16289,0],[-48,-10],[-47,-91],[-37,-1],[-49,-15]],[[70895,16172,0],[-293,-80],[-358,-102]],[[70244,15990,0],[-250,-70],[-10,11]],[[69984,15931,0],[-45,43],[-126,39],[-51,-9]],[[71030,17738,0],[2,5]],[[69967,14596,0],[-41,33],[-90,51],[-29,22],[-42,35],[-38,37],[-25,28],[-12,8],[-43,32],[-28,21],[-17,12],[-45,31],[-43,30],[-32,24],[-7,10],[-30,41],[-34,45],[-34,49]],[[69398,15139,0],[12,16],[11,17],[14,21],[6,8]],[[69507,15378,0],[4,10]],[[67869,12215,0],[128,-96],[169,-131],[76,-26],[294,-101],[349,-112],[195,-149],[163,-26],[735,26],[783,23],[29,1],[2,-13],[2,-13],[-15,-154],[9,-55],[1,-60],[18,-149],[10,-88],[4,-57],[27,-33],[105,-81],[27,-33],[107,-86],[51,-62],[44,-77],[27,-36],[7,-28],[9,-47],[-17,-56],[-59,-59],[-17,-35],[-43,-28],[-49,-38],[-72,-85],[-2,-14],[-76,-83],[-48,-48],[-50,-39],[-14,-8],[-14,-6],[-44,-38],[-12,-34],[-31,-29],[-20,-26],[-15,-6],[-97,-31],[-35,1],[-49,18],[-191,94],[-51,48],[-17,10],[-127,12],[-80,36],[-216,6],[-25,-11],[-13,1],[-71,24],[-83,-7],[-208,42],[-109,-3],[-60,16],[-34,5],[-45,-15],[-74,3],[-102,13],[-83,41],[-297,59],[-27,-27],[-19,-46],[-63,-195],[-3,-68],[-8,-15],[18,-253],[-5,-26],[-18,-38],[-15,-11],[-30,-42],[-63,-115],[-33,-41],[-6,-18],[-29,-44],[-33,-73],[-21,-31],[-38,-29],[-70,-27],[-67,-37],[-25,-8],[-76,9],[-114,39],[-97,121],[-80,96],[-69,67],[-28,55],[-27,39],[-42,49],[-67,91],[-54,67],[-67,79],[-114,188],[-27,77],[-30,45],[-1,-1],[-45,65],[-48,80],[-29,62],[-18,49],[-91,69],[-20,20],[-29,20],[-116,61],[57,72],[263,373],[818,1185]],[[62038,15807,0],[11,-1]],[[62098,15808,0],[140,-14]],[[62238,15794,0],[20,-2]],[[62258,15792,0],[163,-16]],[[62588,15761,0],[190,-46]],[[62424,14862,0],[-23,-3],[-308,-151],[-264,-142],[-367,-190]],[[61462,14376,0],[118,489]],[[61580,14865,0],[38,168]],[[61819,15830,0],[32,-11]],[[61982,15808,0],[56,-1]],[[70203,14384,0],[37,-31],[221,-256]],[[70461,14097,0],[281,-323],[193,-178]],[[70935,13596,0],[129,-128],[469,-457]],[[71533,13011,0],[1062,-1036]],[[73265,11731,0],[51,10],[45,30]],[[73361,11771,0],[27,6],[57,34]],[[73445,11811,0],[19,16]],[[73496,11863,0],[428,-9],[23,0],[-20,-52],[-42,-196],[-10,-2],[-9,11],[-43,45],[-41,24],[-43,20],[-75,3],[-81,-28],[-24,-24],[-19,-52],[-72,-58],[-34,-17],[-80,-40],[-119,-72],[-165,-76],[-123,-61],[-33,-105],[-36,-85],[-43,-82],[-12,-18],[-20,-37],[-299,133],[-73,27],[-115,48],[-102,72],[-105,42],[-156,135],[-207,137],[-88,84],[-82,176],[-81,216],[-14,74],[-63,106],[-152,169],[-117,87],[-8,6],[-51,77],[-45,29],[-29,22],[-64,49],[-21,15],[-41,82],[41,-82],[-50,38],[-98,85],[-12,-8],[-138,134],[-69,46],[-20,6],[-41,27],[-26,27],[-34,53],[-147,116],[-82,65],[-115,95],[-93,111],[-5,11],[-9,20],[-37,51],[-50,77],[-84,117],[-54,114],[-8,18],[-32,94],[-41,103],[-32,58],[-87,101],[-83,76],[-24,12],[-40,-3],[-4,12],[57,15],[140,16],[209,-38],[76,-2],[9,3],[47,48],[78,27],[19,-1],[28,-4],[124,8]],[[67968,48795,0],[54,-142],[13,-33],[8,-21]],[[67441,48890,0],[-2,1],[4,-24]],[[67183,48168,0],[-24,24]],[[67159,48192,0],[-33,28]],[[67126,48220,0],[-79,74]],[[67047,48294,0],[-61,51]],[[66986,48345,0],[-69,45]],[[66917,48390,0],[-32,18]],[[66885,48408,0],[-18,9],[-51,21]],[[66816,48438,0],[1,24]],[[66817,48462,0],[-19,15]],[[66798,48477,0],[-107,25]],[[66691,48502,0],[-16,2]],[[66675,48504,0],[-22,3]],[[66653,48507,0],[-44,1]],[[66609,48508,0],[-83,-6],[-62,-14]],[[66464,48488,0],[-45,-13]],[[66419,48475,0],[-17,-7],[-43,-17]],[[66359,48451,0],[-38,-22]],[[66321,48429,0],[-37,-23]],[[66284,48406,0],[-31,-23]],[[66253,48383,0],[-16,-16]],[[66237,48367,0],[-51,-49]],[[66186,48318,0],[-32,-39],[-22,-37],[-22,-47],[-22,-77]],[[66088,48118,0],[-8,-53]],[[66080,48065,0],[-96,31]],[[65984,48096,0],[-199,66]],[[65785,48162,0],[-66,22]],[[65719,48184,0],[-82,28]],[[65637,48212,0],[-22,7]],[[65615,48219,0],[-83,30]],[[65532,48249,0],[-200,77]],[[65332,48326,0],[-11,5]],[[65321,48331,0],[-37,13],[-12,5],[-63,23]],[[65209,48372,0],[-17,57],[-17,57]],[[65175,48486,0],[17,104],[10,72]],[[65202,48662,0],[9,53],[7,45]],[[65218,48760,0],[15,68],[7,32]],[[65211,49225,0],[13,23],[9,15]],[[65233,49263,0],[21,25],[55,66]],[[65309,49354,0],[15,12],[1,0]],[[65537,49527,0],[39,20],[113,56]],[[65780,49641,0],[59,20],[48,18]],[[66374,49844,0],[14,2],[15,2]],[[67573,47827,0],[38,-35],[82,-77]],[[68000,47186,0],[-175,20],[-3,1]],[[67195,47264,0],[-14,0],[-188,1]],[[66801,47255,0],[-5,0],[-25,-4]],[[66688,47126,0],[-36,74],[-41,84]],[[66611,47284,0],[-40,-12],[-158,-47]],[[66413,47225,0],[-32,-8],[-9,-3]],[[66205,47219,0],[-82,1],[-38,1]],[[66069,47221,0],[-99,2],[-23,0]],[[65894,47224,0],[-8,1],[-8,0]],[[65866,47226,0],[-26,3],[-16,1]],[[65811,47231,0],[-29,3],[-16,1]],[[65766,47235,0],[-81,4],[-3,0]],[[65510,47205,0],[-2,43],[0,6]],[[65508,47254,0],[-13,57],[-30,126]],[[65465,47437,0],[-15,43],[-15,38]],[[65435,47518,0],[-17,38],[-6,15],[-5,11],[-12,26]],[[65395,47608,0],[-15,33],[-7,13]],[[65234,47900,0],[1,7],[7,87]],[[65332,48326,0],[140,-54],[60,-23]],[[65532,48249,0],[7,-3],[76,-27]],[[65637,48212,0],[2,0],[80,-28]],[[65785,48162,0],[73,-24],[126,-42]],[[66080,48065,0],[5,31],[3,22]],[[66186,48318,0],[30,30],[21,19]],[[66253,48383,0],[4,3],[27,20]],[[66321,48429,0],[30,18],[8,4]],[[66419,48475,0],[1,0],[44,13]],[[66609,48508,0],[37,-1],[7,0]],[[66653,48507,0],[2,-1],[20,-2]],[[66691,48502,0],[59,-14],[48,-11]],[[66817,48462,0],[-1,-11],[0,-13]],[[66885,48408,0],[26,-14],[6,-4]],[[66986,48345,0],[35,-30],[26,-21]],[[67126,48220,0],[3,-3],[30,-25]],[[75825,27259,0],[-5,-433],[-24,-282]],[[75796,26544,0],[0,-100],[0,-4],[-1,0]],[[75795,26440,0],[-10,0],[-19,2],[-56,4],[-1,0],[6,-144],[1,-23],[4,-114],[0,-18]],[[75687,25938,0],[13,-10],[12,-15]],[[75721,25898,0],[7,-22]],[[75728,25876,0],[-1,-210],[-3,-368],[-25,-80],[-18,-59],[-9,-29],[-25,-74],[-12,-37]],[[75490,24476,0],[-11,-75]],[[75479,24401,0],[-1,-1]],[[75478,24400,0],[-43,-69]],[[75368,24269,0],[-3,-2],[-23,-15]],[[75305,24236,0],[-23,-1],[-180,13]],[[75059,24250,0],[-59,8],[-55,5]],[[74669,24319,0],[-77,25],[-93,27]],[[74285,24473,0],[-3,20],[-11,-31]],[[74052,24530,0],[6,14],[49,111],[9,19]],[[74116,24674,0],[49,114],[55,137]],[[74346,25232,0],[-1,1],[-26,10]],[[75748,27795,0],[41,28]],[[75789,27823,0],[7,-125]],[[75796,27698,0],[16,-251],[10,-148],[3,-40]],[[44863,51963,0],[24,4],[41,-15]],[[44928,51952,0],[80,-21],[82,-18]],[[45090,51913,0],[19,-1],[12,-1]],[[45121,51911,0],[48,1],[11,1],[10,0],[125,7]],[[45315,51920,0],[14,0]],[[45329,51920,0],[43,10],[13,-22],[80,-5],[27,-2]],[[45492,51901,0],[43,-9],[14,-1],[28,-1]],[[45577,51890,0],[46,-7],[18,-4],[11,0],[85,-1]],[[45737,51878,0],[66,-3]],[[45803,51875,0],[56,-5],[51,-2],[66,-3]],[[45976,51865,0],[10,2],[9,2]],[[45995,51869,0],[-9,-74],[-2,-11]],[[45984,51784,0],[-1,-14],[-3,-33]],[[45980,51737,0],[-6,-90],[-7,-60],[-4,-35]],[[45963,51552,0],[-9,-74]],[[45954,51478,0],[-18,-87],[0,-1],[0,-55],[330,-457],[-33,-44]],[[46233,50834,0],[-14,10],[-27,35]],[[46192,50879,0],[-35,23],[-19,1],[-43,31],[-23,14],[-25,23]],[[46047,50971,0],[-34,7],[-11,-6]],[[46002,50972,0],[-42,15],[-17,7]],[[45943,50994,0],[-97,-32],[-34,25]],[[45812,50987,0],[-17,24],[-18,-1]],[[45777,51010,0],[-84,-5]],[[45693,51005,0],[-8,-30],[7,-25]],[[45692,50950,0],[-214,-25]],[[45478,50925,0],[-113,13],[-24,0]],[[45341,50938,0],[-17,-1],[-25,8],[-61,2],[-65,-2]],[[45173,50945,0],[-34,15],[-5,-12]],[[45134,50948,0],[-66,-17]],[[45068,50931,0],[-38,-5],[-36,-12]],[[44994,50914,0],[-412,98],[-285,68],[-188,45]],[[44109,51125,0],[-60,4],[-100,1],[5,75],[-83,5],[-1,-22],[-2,-25],[-121,7],[-130,3],[-30,-101],[-31,-78],[-66,20],[-21,-58],[-128,40],[-94,30],[-13,5],[-64,162],[42,38],[59,101],[10,32],[13,60],[-1,62],[-12,62],[-26,62],[-21,34],[-17,23],[-49,56],[-43,45],[-44,40],[-49,40],[-62,47],[-71,50],[-78,48],[-104,59],[-117,59],[-112,54],[-39,18],[-53,20],[-85,28],[-85,24],[-103,20],[-79,11],[-46,4],[-77,2],[-86,0],[0,26],[10,76],[5,15],[39,19],[107,51],[247,113],[15,221],[10,158],[389,-102],[346,-154],[1039,-528],[281,-112],[285,-114],[48,-113],[-40,119],[113,-11],[16,5],[105,-3],[13,5]],[[44994,50914,0],[6,-1],[31,12],[37,6]],[[45134,50948,0],[5,11],[34,-14]],[[45341,50938,0],[25,0],[112,-13]],[[45692,50950,0],[-7,24],[8,31]],[[45777,51010,0],[18,0],[17,-23]],[[45943,50994,0],[18,-7],[3,2],[38,-17]],[[46047,50971,0],[25,-24],[23,-14],[43,-31],[20,-1],[34,-22]],[[46233,50834,0],[33,43]],[[46266,50877,0],[54,-43],[53,-13],[35,-17],[24,-17],[75,-87],[1,-23],[0,-19],[53,-22],[19,-6],[24,10],[55,-15],[61,-9],[52,12],[17,-4],[9,25],[74,-20],[134,-24],[79,-19],[84,-33],[41,-24],[79,-49],[75,-66],[46,-40],[123,-107],[-36,-206],[25,-209],[20,-191],[-4,-93],[-8,-57],[-30,-73],[-59,-154],[-19,-66],[-12,-60],[-31,-103],[9,-83]],[[47388,48972,0],[-213,-340],[-84,-145]],[[47091,48487,0],[-1,11],[-53,41],[-84,95],[-3,11],[-21,27],[-21,36],[-10,9],[-26,23],[-22,22],[-21,28],[-36,28],[-59,35],[-34,32],[-18,24],[-28,26],[-68,38],[-50,24],[43,81],[-136,62],[-27,-32],[-73,9],[-38,-26],[1,-26],[-38,-91],[-9,-1],[-14,3],[-31,17],[-39,14],[-45,17],[-6,14],[-3,3],[-70,-9],[-124,-14],[-101,-10],[-212,11],[0,-17],[-16,1],[-6,-6],[-5,-9],[-2,-13],[1,-19],[-4,-5],[-7,-7],[-9,-10],[-9,-14],[-47,19],[7,54],[-143,35],[-102,24],[-130,24]],[[45142,49076,0],[29,23],[1,8],[0,7],[-45,62],[-28,39],[-126,128],[-22,21],[-17,4],[-62,41],[-78,67],[5,17],[40,137],[21,75],[24,89],[16,96],[12,65],[-1,34],[-6,109],[-14,115],[-40,144],[-22,80],[-28,24],[-153,117],[-175,139],[-61,50],[-17,14],[-59,64],[-89,78],[-138,202]],[[44109,51125,0],[188,-46],[285,-68],[412,-97]],[[46082,43957,0],[-120,34]],[[45962,43991,0],[7,20],[45,117],[45,118],[46,122],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-2,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,2],[-1,0],[0,1]],[[46091,44383,0],[-1,2]],[[46090,44385,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,3],[7,28],[17,56],[31,111],[28,111],[24,93],[-66,11],[-48,8],[-61,6],[-18,-7],[-27,1],[-11,19],[-23,5],[-11,2],[-1,89],[1,132],[2,139],[0,15],[1,146],[1,25],[0,18],[-5,10],[-8,15],[-8,16],[-60,113],[-50,93]],[[45803,45660,0],[47,12],[-47,-12]],[[45803,45660,0],[153,394],[-5,8],[-8,14],[-14,24]],[[45929,46100,0],[109,47],[57,29],[73,35],[139,68],[69,34],[30,9],[60,16],[83,22],[34,7],[76,14],[81,14],[27,2],[17,2],[168,40],[1,6],[91,42],[120,74],[122,61],[629,237],[119,33],[169,15],[96,0]],[[48299,46907,0],[58,-1]],[[48357,46906,0],[229,-7],[1,20]],[[46090,44385,0],[0,-1],[1,-1]],[[45962,43991,0],[-41,11],[-66,17],[-38,10],[-29,54],[-49,22],[-87,29],[-76,26],[-73,16],[-24,5],[-19,1],[-19,4],[-35,3],[-5,-32],[-15,2],[1,5],[-42,18],[-85,19],[-31,3],[-49,16],[-31,11],[-24,8],[-34,6],[-55,21],[-29,9],[-82,26],[-29,10],[-22,7],[-36,12],[-97,25],[13,55],[8,126],[12,34],[-41,9],[-60,5],[-73,12],[-18,5],[0,98],[0,10],[8,5],[-18,72],[-10,38],[-30,41],[-16,22],[-27,29],[-75,-25],[-43,-2],[-98,-34],[-38,-32]],[[44235,44823,0],[5,84],[-23,38],[23,4],[75,11],[66,14],[75,21],[115,52],[24,12],[50,28],[25,16],[98,92],[-3,3],[9,10],[-1,3],[2,3],[-3,4],[3,5],[-1,1],[-25,47],[-8,34],[-5,25],[-7,23],[-22,47],[-13,20],[-72,150],[-31,63],[-77,75],[-22,9],[-29,4],[-25,27],[36,3],[-76,158],[-20,42]],[[44378,45951,0],[-2,12],[-2,40],[66,293],[149,271],[168,237],[192,247]],[[44949,47051,0],[44,-28],[92,11],[7,-6],[196,-190],[37,31],[54,56],[88,93],[37,33],[76,40],[40,-34],[49,-42],[88,-73],[-23,-35],[121,-111],[27,-26],[30,-27],[17,-16],[43,-40],[-112,-153],[-194,-266],[-2,-17],[1,-28],[0,-36],[1,-13],[0,-23],[-14,-194],[54,31],[89,47],[134,65]],[[47091,48487,0],[-197,-212],[-117,-128],[-108,-103],[-74,-73],[8,-11],[-85,-81],[-88,-67],[-52,-39],[-18,-13],[-144,-75],[-312,-66],[-60,-14],[-201,-80],[-177,-38],[-33,-7],[-272,-96],[-48,-37],[-35,-23],[-129,-273]],[[44378,45951,0],[-28,-4],[-5,-7],[-52,-9],[-28,8],[-28,35],[-55,71],[-25,49],[-23,73],[-12,49],[-9,2],[-26,36],[-10,22],[-16,27],[-24,53],[-19,59],[-12,51],[-33,55],[-11,28],[-10,30],[2,49],[-3,43],[7,17],[14,57],[3,27],[1,28],[-11,24],[-43,30],[-42,38],[-49,26],[-106,8],[-91,1]],[[43634,46927,0],[24,11],[8,20],[24,59],[-43,11],[-38,12],[-56,20],[-33,16],[-53,27],[-39,22],[-18,13],[-11,11],[-9,12],[-9,13],[-7,14],[-6,16],[-3,21],[0,14],[2,24],[6,16],[8,16],[7,10],[8,10],[10,9],[14,12],[17,9],[19,8],[32,8],[21,-1],[16,-2],[126,-21],[25,-3],[26,0],[21,1],[14,3],[22,7],[17,5],[19,6],[28,13],[10,8],[21,18],[295,308],[210,218],[-274,167]],[[44085,48088,0],[53,22],[21,-9],[66,2],[98,16],[27,4],[16,11],[21,21],[29,23],[57,34],[78,67],[68,66],[27,27],[55,42],[12,10],[58,19],[25,22],[75,90],[14,21],[14,6],[31,48],[55,77],[52,78],[7,14],[5,84],[-18,7],[40,59],[9,13],[20,39],[34,61],[8,14]],[[48004,47147,0],[337,-88],[110,-28]],[[48357,46906,0],[-38,1],[-20,0]],[[47388,48972,0],[130,58],[28,-15],[119,-65],[57,-38],[277,-162],[27,-16]],[[44235,44823,0],[-33,21],[-8,3],[-4,5],[-10,7],[-20,-2],[-20,5],[-93,9],[-51,15],[-30,-2],[-59,22],[-37,9],[-40,10],[-5,-15],[-7,-22],[-26,-88],[-13,-32],[-6,-15],[-12,-53],[-31,-65],[-9,-11],[-30,-14],[-16,-20],[-16,-102],[-10,-26],[-275,54],[-1,34],[0,33],[7,2],[3,61],[16,110],[5,34],[3,20],[-16,3],[-147,21],[-87,12],[-37,4],[-133,17],[-61,8],[-294,42],[-238,33],[-162,11]],[[42232,44961,0],[-28,23]],[[42204,44984,0],[-35,35]],[[42169,45019,0],[7,23],[-13,19],[-30,47]],[[42133,45108,0],[-26,49]],[[42107,45157,0],[-11,21],[1,6],[8,21],[-18,48]],[[42087,45253,0],[-71,-9]],[[42016,45244,0],[-100,-4],[0,6],[-22,2]],[[41894,45248,0],[-11,-2]],[[41883,45246,0],[-10,24],[-3,7],[-6,22],[15,2],[30,5],[17,4],[43,22],[29,16],[155,110],[9,7],[99,178],[110,199],[53,89],[120,243],[32,43],[2,7],[45,126],[5,15]],[[42628,46365,0],[97,47],[27,44],[25,40],[23,21],[44,76],[84,78],[164,41],[50,14],[125,36],[76,42],[127,48],[122,47],[70,-11],[-28,39]],[[41883,45246,0],[-36,-9],[-14,-3]],[[41833,45234,0],[-54,-5]],[[41779,45229,0],[-49,-2],[-86,3]],[[41644,45230,0],[-58,3],[-92,4],[-53,1],[-122,7],[-24,2]],[[41295,45247,0],[-77,7],[-68,10],[-20,5],[-38,12],[-62,28],[-39,21],[-32,19]],[[40959,45349,0],[-20,11],[-39,22]],[[40900,45382,0],[-166,93]],[[40734,45475,0],[-48,26],[-99,56],[-35,12]],[[40552,45569,0],[-32,7]],[[40520,45576,0],[-32,-3],[-38,-5],[-165,-27]],[[40285,45541,0],[-199,-30],[-74,-7],[-57,1],[-38,4],[-21,3],[-66,15],[-23,9],[-53,21],[-38,16],[-118,50],[-88,43],[-71,35],[-76,37]],[[39363,45738,0],[-4,145],[-1,34],[-4,162],[-4,158],[-2,78],[-1,36],[7,175],[-7,58],[-10,93],[-17,64],[-7,52],[-21,123],[-12,82],[-3,11],[-9,54],[-68,407],[5,32],[34,126],[5,36],[4,32],[10,46],[11,30],[21,52],[18,94],[23,105],[314,-53],[135,-33],[127,-40],[114,-37],[467,-174]],[[40488,47686,0],[408,-154],[404,-151],[247,-93],[92,-39],[80,-40],[67,-32],[114,-65],[95,-61],[120,-84],[116,-92],[103,-96],[105,-105],[223,-221],[-34,-88]],[[40488,47686,0],[213,227],[246,262],[175,186],[69,74],[556,0],[1039,8],[403,4],[10,0],[58,-45],[58,-32],[110,-54],[90,-41],[133,-51],[45,-7],[79,-1],[47,17],[48,-28],[75,-42],[38,-21],[105,-54]],[[53300,42381,0],[3,-19],[3,-21]],[[53306,42341,0],[-24,-7]],[[53282,42334,0],[-28,-24]],[[53254,42310,0],[-13,-20]],[[53224,42244,0],[-109,-24],[0,-6]],[[53052,42049,0],[-59,-151]],[[52974,41847,0],[-47,-125],[-11,-32],[-90,34]],[[52826,41724,0],[-170,-349],[-70,-143],[202,-642],[41,-132],[-78,-29]],[[52751,40429,0],[-72,-27],[-185,20]],[[52020,40433,0],[-256,210]],[[49834,41859,0],[-2,3],[0,4],[0,1],[0,1],[0,1],[0,2],[0,2],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,2],[1,2],[1,0],[0,1],[0,1],[1,2],[0,1],[1,1],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,2],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,2],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[2,1],[1,1],[1,0],[1,0],[1,2],[1,0],[1,1],[1,0],[1,1],[58,41],[28,39],[9,19],[10,35],[2,33],[-19,67],[-69,131],[24,11],[-7,15],[386,197],[138,-35],[54,57],[90,95],[100,104],[405,-217],[341,-153],[102,28],[28,-24],[62,-48],[16,24],[311,-192],[24,-26],[4,8],[49,83],[3,6],[15,26],[8,14],[26,70],[10,48],[5,20],[16,76],[10,45],[12,48]],[[52388,42697,0],[156,34]],[[52544,42731,0],[74,34],[72,39],[24,8],[15,7]],[[51923,42715,0],[79,-61]],[[49693,41921,0],[-21,44]],[[48305,43356,0],[0,2],[1,0]],[[63412,36109,0],[-202,51],[-212,251],[-55,-19]],[[62943,36392,0],[-65,109],[-24,39],[-68,77],[-54,89],[-32,81],[-17,44],[-67,119],[-83,143],[-5,8],[-25,35],[-52,77],[-24,28],[-34,45],[-26,29],[-63,74],[-23,29],[-145,149],[-64,44],[127,83],[28,22]],[[62227,37716,0],[189,150],[22,17]],[[62438,37883,0],[-212,254],[-116,15],[-41,9],[-113,83],[-27,-22],[-125,-159],[-46,-79],[-16,-34],[-20,-15],[-19,-10],[-41,-5],[-17,2],[-27,3],[-11,1],[-31,2],[-115,51],[-82,47]],[[62003,38752,0],[8,5],[53,-102],[47,-89]],[[62111,38566,0],[135,-197],[79,-113],[131,-148],[52,-58],[91,-100],[92,-111],[68,-86],[34,-43],[28,-31],[99,-113],[127,-140],[96,-105],[150,-172],[141,-155],[50,-56],[178,-199],[71,-76],[43,-49]],[[62788,34370,0],[-1,39],[-22,93],[16,94],[57,141],[41,76],[11,22]],[[62890,34835,0],[22,-7],[110,180],[15,45],[11,18],[14,26],[34,65]],[[63365,34884,0],[2,-2],[39,-31]],[[59815,35111,0],[41,2],[143,-15],[103,-13],[27,-4],[152,-13],[78,-11],[53,-96],[52,7],[15,-32],[19,-69],[2,-67],[-6,-55],[102,-335],[-55,-12],[-28,1],[0,-166],[2,-151],[1,-132],[3,-66],[0,-26],[5,-47],[3,-28],[3,-40],[11,-84],[4,-26],[7,-32],[8,-36],[9,-38],[11,-42],[19,-74],[21,-78],[12,-49],[4,-22],[2,-17],[0,-15],[-4,-27],[-3,-14],[-4,-16],[-9,-18],[-10,-17],[-11,-19],[-9,-11],[-21,-20],[-15,-13],[-18,-18],[-16,-22],[-10,-15],[-8,-16],[-12,-24],[-7,-23],[-3,-14],[-2,-20],[-3,-18],[-1,-9],[-12,-205],[-11,-172],[-10,-134],[-1,-11]],[[60438,32374,0],[-1,-86],[-4,-25]],[[60433,32263,0],[-3,-15]],[[60430,32248,0],[-4,-26]],[[60426,32222,0],[-7,-19]],[[60419,32203,0],[-6,-12]],[[60413,32191,0],[-4,-7],[-6,-5],[-7,-5],[-12,-4],[-10,-2],[-8,2],[-17,6],[-58,-50],[-13,-10],[-7,-7],[-18,16],[-11,14],[-13,19]],[[60229,32158,0],[-1,1],[-9,16]],[[60219,32175,0],[-11,22],[-6,22]],[[60202,32219,0],[-87,-13]],[[60115,32206,0],[-1,0]],[[60114,32206,0],[-9,90],[-3,27],[-9,88],[-12,91],[-13,88],[-17,106],[-8,50],[-19,99],[-99,-77],[-127,-101],[-81,-63],[-72,-55],[-4,-4],[-49,-38]],[[59592,32507,0],[-4,-2],[-20,-17]],[[59568,32488,0],[-65,-50],[-13,-2],[-1,1]],[[59489,32437,0],[-11,13]],[[59478,32450,0],[-22,83]],[[59456,32533,0],[-62,128],[-2,5]],[[59392,32666,0],[-42,88],[-20,62]],[[59330,32816,0],[-1,2],[-1,5]],[[59328,32823,0],[-102,-25],[-11,-21],[-25,-22],[-43,-13],[-49,2],[-24,6],[-15,3],[-23,12],[-110,-72],[-36,-1],[-15,10],[-19,20],[-29,78],[-8,44],[-21,180],[-11,89],[-14,118],[-1,14],[-8,53],[-10,66],[-13,82],[-14,96],[-23,92],[-18,92],[1,36],[9,30],[19,26],[24,12],[42,12]],[[58781,33842,0],[57,8],[18,2]],[[58856,33852,0],[-24,76],[-21,-2]],[[58811,33926,0],[-82,-11],[-7,-1]],[[58722,33914,0],[-221,-26],[-59,-12],[-79,-6],[-103,-9],[-65,11],[-39,6],[-61,16],[-114,64],[-68,60]],[[57913,34018,0],[-47,48],[-83,83]],[[57783,34149,0],[-78,78]],[[57705,34227,0],[-6,4],[-26,24]],[[57673,34255,0],[6,8],[15,19],[26,32],[37,46],[20,12]],[[57777,34372,0],[40,18],[16,9]],[[57833,34399,0],[48,52],[45,52],[30,5],[6,1],[-13,8],[-129,117],[48,48]],[[57868,34682,0],[44,92],[37,77]],[[57949,34851,0],[7,28]],[[57956,34879,0],[4,7],[2,4]],[[57962,34890,0],[6,12],[17,46],[4,13],[42,-16],[36,-10],[53,-11],[17,-4],[78,-20],[20,-3]],[[58235,34897,0],[5,20],[5,14]],[[56788,35073,0],[39,4]],[[57136,35114,0],[27,3]],[[57163,35117,0],[126,15]],[[57525,35113,0],[91,-25]],[[57616,35088,0],[45,-19]],[[57661,35069,0],[134,-61]],[[57795,35008,0],[0,29]],[[57795,35050,0],[89,-28]],[[57884,35022,0],[80,-40]],[[57993,34968,0],[32,-13]],[[58025,34955,0],[32,-9]],[[58113,34930,0],[41,-4]],[[58154,34926,0],[91,5]],[[58245,34931,0],[-10,-34]],[[57962,34890,0],[-6,-11]],[[57949,34851,0],[-81,-169]],[[57833,34399,0],[-56,-27]],[[57673,34255,0],[32,-28]],[[57783,34149,0],[130,-131]],[[58722,33914,0],[89,12]],[[58856,33852,0],[-75,-10]],[[59328,32823,0],[2,-7]],[[59392,32666,0],[64,-133]],[[59478,32450,0],[-243,-24],[-82,10]],[[59153,32436,0],[-45,-1],[-134,-15],[-161,-133],[2,-13],[-138,-137],[-36,-38],[-73,-72],[-27,-27],[-8,9],[-40,-59],[-111,125],[-107,119],[-45,53],[-209,-161],[-41,-31],[-6,7],[-36,-22],[-30,-23],[-27,37],[-18,17],[-14,6],[-17,2],[-18,-4],[-42,-16],[-16,-4],[-14,0],[-13,2],[-91,35],[-17,2],[-11,-6],[-7,-12],[-8,-25],[-52,18],[-37,15],[-25,-9],[-10,26],[-33,92],[-26,-23],[-45,-51],[-86,-58]],[[57281,32061,0],[-41,-36]],[[57240,32025,0],[-68,-45]],[[57172,31980,0],[-26,-11]],[[57146,31969,0],[-88,-42]],[[57058,31927,0],[-87,190]],[[56971,32117,0],[-24,95]],[[56947,32212,0],[-17,111]],[[56930,32323,0],[-4,125],[-447,-162],[19,-72],[-183,-57]],[[56315,32157,0],[-41,-12]],[[56274,32145,0],[-34,-24]],[[56240,32121,0],[-29,-12]],[[55270,33158,0],[101,-6]],[[55371,33152,0],[41,-2]],[[55412,33150,0],[36,-26]],[[56047,33820,0],[31,-33]],[[56078,33787,0],[40,-42]],[[56118,33745,0],[41,-44]],[[62419,31013,0],[7,-27],[19,-52],[16,-39],[4,-33],[7,-41],[-2,-43],[-5,-42],[-20,-72]],[[62445,30664,0],[-4,-17],[-12,-35]],[[62429,30612,0],[-26,-47]],[[62403,30565,0],[-27,-29],[-36,-31],[-16,-13],[-52,-39],[-37,-17],[-13,-5],[-8,-4],[-68,-22],[-33,-8],[-24,-6]],[[62089,30391,0],[-29,-3]],[[62060,30388,0],[-96,2],[-40,7],[-14,-1],[-19,-1],[-44,2],[-57,7]],[[61790,30404,0],[-57,5]],[[61733,30409,0],[-96,19],[-54,11],[-42,8],[-23,4],[-25,4],[-51,12],[-30,13],[-10,5],[-79,26]],[[61323,30511,0],[-12,-28],[-36,-81]],[[61275,30402,0],[-2,-6],[6,-37],[1,-26],[-2,-16],[-4,-27]],[[61274,30290,0],[-5,-17]],[[61269,30273,0],[-6,-21],[-9,-33],[-3,-13]],[[61251,30206,0],[-1,-10]],[[61250,30196,0],[0,-5],[5,-20],[6,-17],[10,-15],[19,-17],[-137,73],[-15,8],[-6,-5],[-11,-9],[-26,-16],[-29,-19],[-14,-9],[-25,-5]],[[61027,30140,0],[-28,8]],[[60999,30148,0],[-18,-35],[-3,-5],[-13,-22],[-53,-85]],[[60462,30229,0],[-34,13],[-17,6]],[[60342,30273,0],[185,-47],[161,-43],[8,26],[50,167],[-143,45],[-66,32],[-20,16],[-18,15],[-14,16],[-15,24],[-10,21],[-7,19],[-7,23],[-2,18],[-1,22],[1,19],[2,15],[5,14],[4,13],[5,11],[24,81],[11,49],[1,42],[-1,33],[-22,80],[-16,35],[-36,64],[-6,12],[-43,71],[-24,43],[-18,36],[-37,63],[-54,99],[-8,18],[-15,34],[-18,45],[-6,16],[-6,32],[-5,31],[-14,93],[-13,106],[-7,75],[-23,246]],[[60124,32103,0],[-10,103]],[[60114,32206,0],[17,3],[71,10]],[[60219,32175,0],[10,-17]],[[60413,32191,0],[1,2],[5,10]],[[60430,32248,0],[3,14],[0,1]],[[60438,32374,0],[18,2],[111,13],[54,6],[17,-120],[254,30],[42,-105],[229,143],[56,34],[94,-134],[42,0],[-2,-59],[-10,-150],[0,-19],[-1,-120],[0,-18],[1,-66],[0,-6],[2,-12],[3,-33],[1,-21],[10,-68],[8,-39],[6,-29],[17,-49],[20,-49],[27,-47],[20,-27],[-44,-33],[12,-13],[44,-49],[12,-13],[33,-32],[47,-43],[2,-3],[11,-9],[37,-31],[45,-34],[6,-5],[54,-36],[26,-18],[32,-17],[64,-29],[68,-23],[30,-8],[36,-7],[35,-5],[27,-1],[34,2],[29,7],[31,12],[27,13],[22,14],[12,10],[15,12],[128,-93],[87,14]],[[59143,32381,0],[10,55]],[[59145,32344,0],[-2,37]],[[58987,32136,0],[-3,9],[176,56],[1,24],[-13,15],[3,22],[-12,27],[-1,32],[7,23]],[[59164,32193,0],[-177,-57]],[[59187,32201,0],[-23,-8]],[[59189,32239,0],[-2,-38]],[[59237,32412,0],[-58,7],[-4,-39],[4,-27],[-11,-26],[0,-34],[13,-21],[-7,-18],[15,-15]],[[59489,32437,0],[-252,-25]],[[57146,31969,0],[19,8],[7,3]],[[57240,32025,0],[25,21],[16,15]],[[59143,32381,0],[2,-17],[0,-20]],[[58987,32136,0],[38,-99]],[[59025,32037,0],[24,-94],[14,-5],[33,-218],[0,-111],[-4,-56],[7,-19],[-2,-26],[7,-23],[0,-17],[-12,-47],[-16,10]],[[59076,31431,0],[-103,62]],[[58973,31493,0],[-59,105],[-16,29],[-27,32],[-58,13],[-57,-2],[7,-76],[1,-79],[-50,-18],[-27,-9],[-72,-34],[-33,-20],[-9,-8],[-93,-80]],[[58480,31346,0],[-73,-62]],[[58407,31284,0],[-5,-8],[-10,-2],[-4,3],[-136,96],[-86,80],[-56,-55],[-84,-75],[-129,-118],[-139,-128],[155,-46],[26,-36],[85,-119],[48,-72],[3,-11],[-3,-8],[-8,-7],[-8,-2],[-25,-5],[14,-65],[21,2],[17,0],[18,-1],[20,-4],[17,-8],[26,-16],[18,-15],[7,-9],[15,-17],[93,-119],[177,-229],[42,-55]],[[57388,30137,0],[-83,-13]],[[57305,30124,0],[-107,25],[41,-57],[64,-102]],[[57303,29990,0],[-17,-3],[-197,-31]],[[57089,29956,0],[-33,38],[-13,15]],[[57043,30009,0],[-53,52],[-117,120],[-93,92],[-20,22],[-132,155],[-101,118],[-29,36],[-21,12],[-19,6],[-17,2],[-26,-4],[-23,-8],[-16,-11],[-19,7],[39,73],[-218,92]],[[56304,30890,0],[11,6]],[[56331,30901,0],[8,1]],[[56401,30889,0],[18,-4]],[[56489,31356,0],[-10,32]],[[56479,31388,0],[-6,18]],[[56373,31726,0],[-162,383]],[[56240,32121,0],[16,11],[18,13]],[[56274,32145,0],[25,7],[16,5]],[[56930,32323,0],[13,-87],[4,-24]],[[56971,32117,0],[32,-71],[55,-119]],[[57043,30009,0],[46,-53]],[[57089,29956,0],[214,34]],[[57305,30124,0],[102,17]],[[57541,29845,0],[20,-63],[9,-34]],[[57587,29663,0],[-95,-16]],[[57452,29634,0],[-363,-125]],[[57535,28551,0],[38,-85],[114,-245]],[[57753,28077,0],[-17,-4],[-49,-24]],[[57696,27511,0],[2,-19],[5,-35]],[[57494,27352,0],[-4,2],[-38,12]],[[56418,27801,0],[-9,-11]],[[56332,27817,0],[-22,11],[-46,20]],[[56202,27875,0],[-65,19]],[[55472,28034,0],[-130,-2]],[[54688,28556,0],[62,69],[34,38],[109,122],[32,35],[173,207],[75,89],[-13,9],[84,101],[69,85],[83,100],[15,-8],[67,79],[101,121],[81,162]],[[55764,29973,0],[38,171]],[[55812,30191,0],[-62,14]],[[55750,30205,0],[6,22]],[[56162,30748,0],[16,25]],[[54099,30488,0],[44,-89]],[[54143,30399,0],[69,45]],[[54257,30465,0],[14,5],[36,15]],[[54488,30527,0],[49,3],[43,3]],[[53563,29150,0],[-57,156]],[[53506,29306,0],[-6,17]],[[53500,29323,0],[-6,14],[-4,13],[-8,69]],[[53482,29419,0],[-5,39]],[[53477,29458,0],[-14,114]],[[53463,29572,0],[-3,24]],[[53460,29596,0],[-3,29],[-2,132]],[[53455,29757,0],[0,58]],[[53455,29815,0],[1,15]],[[53456,29830,0],[1,69]],[[53457,29899,0],[2,68]],[[53459,29967,0],[1,77]],[[53460,30044,0],[4,102]],[[53464,30146,0],[-13,19]],[[53451,30165,0],[-195,279]],[[53256,30444,0],[51,7]],[[53491,30437,0],[95,-40]],[[51689,32198,0],[6,0],[68,8]],[[51763,32206,0],[13,2],[86,15]],[[51862,32223,0],[105,27],[65,16]],[[52032,32266,0],[94,23],[34,9]],[[52160,32298,0],[47,9]],[[52207,32307,0],[37,7]],[[52244,32314,0],[5,1],[20,4]],[[52269,32319,0],[49,9],[10,2]],[[52328,32330,0],[33,9],[48,15],[26,12]],[[52435,32366,0],[19,12],[6,3]],[[52460,32381,0],[32,23],[29,25],[14,-2],[50,0],[13,0],[32,0]],[[52630,32427,0],[12,0],[5,0]],[[52647,32427,0],[52,1],[98,0],[68,0],[44,-2]],[[52909,32426,0],[81,0]],[[52990,32426,0],[91,0]],[[53081,32426,0],[1,-22],[2,-30]],[[53093,32240,0],[1,-28]],[[53094,32212,0],[-55,-73]],[[53039,32139,0],[-47,-64],[-6,-8]],[[52968,32029,0],[-3,-11]],[[52965,32018,0],[-8,-30],[-4,-18]],[[52953,31970,0],[33,-123]],[[52986,31847,0],[15,-1],[17,-1]],[[53018,31845,0],[11,-1],[17,-1]],[[53045,31811,0],[1,-16],[0,-2]],[[53050,31773,0],[4,-24],[9,-46]],[[53069,31670,0],[6,-14],[26,-58]],[[53101,31598,0],[25,-58],[34,-79]],[[53160,31461,0],[8,-39],[19,-101]],[[53187,31321,0],[-59,-47],[-14,-12],[19,15]],[[53314,31030,0],[49,-37],[22,-17]],[[53412,30937,0],[23,-18],[39,-32]],[[53433,30861,0],[-100,-64],[-12,-7]],[[53296,30774,0],[-53,-34],[-24,-15]],[[53249,30683,0],[8,-12],[23,-33]],[[53280,30638,0],[1,-2],[2,-2]],[[53316,30588,0],[41,-60],[5,-6]],[[53362,30522,0],[0,-1],[-43,-56]],[[53319,30465,0],[-11,-12],[-1,-2]],[[53307,30451,0],[-41,-5],[-10,-2]],[[53256,30444,0],[182,-260],[12,-18],[1,-1]],[[53464,30146,0],[-2,-58],[-2,-44]],[[53460,30044,0],[0,-21],[-1,-56]],[[53459,29967,0],[-2,-61],[0,-7]],[[53457,29899,0],[0,-12],[-1,-57]],[[53456,29830,0],[0,-6],[-1,-9]],[[53455,29815,0],[0,-35],[0,-23]],[[53460,29596,0],[3,-23],[0,-1]],[[53477,29458,0],[3,-23],[2,-16]],[[53500,29323,0],[2,-7],[4,-10]],[[53506,29306,0],[27,-74],[30,-82]],[[53559,29138,0],[-130,69],[26,-14],[-26,14],[-13,6]],[[53416,29213,0],[-10,-35],[-5,-16],[-5,-16]],[[53396,29146,0],[-5,4],[-22,14]],[[53369,29164,0],[-55,11],[-4,0],[-23,5],[-23,4]],[[53264,29184,0],[2,5],[11,34]],[[53161,29239,0],[0,-1],[-10,-41]],[[53137,29198,0],[-1,0],[-9,0]],[[53127,29198,0],[-25,3],[-87,10],[-36,4],[-56,6],[-123,14],[-130,15]],[[52670,29250,0],[-123,19],[-185,28]],[[52362,29297,0],[-110,17]],[[52252,29314,0],[-39,6],[-50,8]],[[52163,29328,0],[-45,7],[-210,259]],[[51908,29594,0],[-1,4],[-2,11]],[[51905,29609,0],[-93,336]],[[51812,29945,0],[-9,6],[-6,4]],[[51797,29955,0],[-7,4]],[[51790,29959,0],[-17,12],[-17,11]],[[51756,29982,0],[-190,126],[-69,46]],[[51497,30154,0],[-89,-104]],[[51408,30050,0],[-13,-10],[-130,-91]],[[51265,29949,0],[-30,87],[-21,34],[-61,36]],[[51153,30106,0],[-44,55]],[[51109,30161,0],[50,41],[39,36]],[[51198,30238,0],[13,13],[10,10]],[[51221,30261,0],[12,13],[28,32]],[[51261,30306,0],[-93,54]],[[51168,30360,0],[24,37]],[[51192,30397,0],[18,30],[14,22]],[[51224,30449,0],[13,33],[3,8]],[[51240,30490,0],[15,47],[12,58],[2,50],[1,30]],[[51270,30675,0],[-3,52]],[[51267,30727,0],[-6,27],[-4,21]],[[51257,30775,0],[-10,39],[-11,39],[-31,116]],[[51205,30969,0],[-7,24],[-21,74],[-9,38],[-5,39],[-5,43]],[[51158,31187,0],[3,42]],[[51161,31229,0],[7,104],[4,69],[0,3],[2,38]],[[51174,31443,0],[2,16],[6,57],[2,25],[8,80]],[[51192,31621,0],[7,61],[2,20]],[[51201,31702,0],[2,0],[1,0],[1,0]],[[51205,31702,0],[2,0]],[[51207,31702,0],[1,0],[1,1]],[[51209,31703,0],[1,0],[1,0]],[[51211,31703,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1]],[[51217,31705,0],[1,0],[1,0],[1,1]],[[51220,31706,0],[1,1],[1,0],[1,1],[1,0]],[[51224,31708,0],[1,1]],[[51225,31709,0],[1,0],[0,1]],[[51226,31710,0],[1,0]],[[51227,31710,0],[1,1],[1,1]],[[51229,31712,0],[1,1],[1,0]],[[51231,31713,0],[1,1],[0,1],[1,1]],[[51233,31716,0],[1,0],[0,1]],[[51234,31717,0],[1,1]],[[51235,31718,0],[0,1],[1,1]],[[51236,31720,0],[1,1]],[[51237,31721,0],[1,1],[0,2]],[[51238,31724,0],[1,1]],[[51239,31725,0],[0,1]],[[51239,31726,0],[1,2]],[[51240,31728,0],[0,1],[0,1]],[[51240,31730,0],[1,1],[0,1]],[[51241,31732,0],[0,1]],[[51241,31733,0],[1,0],[0,1],[0,1]],[[51242,31735,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[51242,31741,0],[0,2]],[[51242,31743,0],[0,1]],[[51242,31744,0],[0,1],[-1,0]],[[51241,31745,0],[0,2]],[[51241,31747,0],[-1,0],[0,1]],[[51240,31748,0],[0,1],[0,1],[-1,1],[0,1]],[[51239,31752,0],[-1,2]],[[51238,31754,0],[0,1]],[[51238,31755,0],[-1,0],[0,1]],[[51237,31756,0],[-1,1],[0,2]],[[51236,31759,0],[-1,0],[0,1]],[[51235,31760,0],[4,6],[6,9]],[[51245,31775,0],[16,21]],[[51261,31796,0],[4,4]],[[51265,31800,0],[-7,19],[-5,11]],[[51253,31830,0],[-4,11],[-2,5],[-4,10],[-82,209],[-28,73],[22,83]],[[51155,32221,0],[4,17],[18,67],[35,130]],[[51212,32435,0],[21,-11],[47,-25]],[[51280,32399,0],[75,-44],[66,-44]],[[51421,32311,0],[43,-31],[46,-33]],[[51510,32247,0],[44,-24],[25,-13]],[[51579,32210,0],[20,-6],[6,-2]],[[51605,32202,0],[17,-3],[39,-1],[28,0]],[[54301,36026,0],[37,15]],[[54440,35903,0],[-46,-89],[-60,-111]],[[53857,34603,0],[-38,12]],[[53547,34172,0],[-55,-113]],[[53298,33731,0],[-98,-154],[-26,-5],[-19,6],[-13,-20],[-94,-79],[-12,-15],[-61,-81],[-4,-11],[-42,-14],[-148,-8],[-75,79],[-91,60],[-142,42],[-152,46],[-111,7]],[[52210,33584,0],[6,41],[3,20]],[[52219,33645,0],[-146,5],[-110,-16],[-51,0],[-117,16],[-173,22],[-179,59],[-55,49],[-30,50],[-25,66],[-5,34],[-14,181],[-1,12],[-10,60],[-4,182],[-9,182],[-32,200],[-22,86],[-59,102],[174,91],[117,55],[45,22],[-7,171],[-4,119],[6,77],[14,44],[16,21],[9,0],[147,-71],[51,-22],[11,-4],[112,-26],[66,-9],[69,-3],[73,4],[69,14],[21,5],[85,20],[106,24],[107,26],[106,30],[108,31],[47,10],[52,7],[53,0],[51,-2],[39,-3],[63,-4],[97,-10],[59,-3],[50,4],[62,10],[53,15],[56,20],[6,28],[17,91],[45,-7],[6,16],[9,20],[9,25],[14,36],[23,25],[21,171],[-3,142]],[[54740,39504,0],[-89,-55],[-1,0]],[[54650,39449,0],[-4,6],[-5,6],[-11,-1],[-5,-11],[-41,-23],[-10,-6],[-6,-8]],[[53382,38694,0],[-118,-64],[-48,-26],[-63,-37]],[[53334,38361,0],[11,-11],[8,-9]],[[53826,38164,0],[-141,-117],[-86,-103],[-16,-39]],[[53583,37905,0],[-15,-45],[-15,-39]],[[53505,37730,0],[-1,-1],[-22,-29]],[[53482,37700,0],[-2,-83],[0,-1]],[[53115,37536,0],[-5,45],[-1,8],[-3,24]],[[52842,37841,0],[-29,55]],[[52782,37899,0],[-77,53]],[[52472,38030,0],[-6,111],[-4,46],[-24,12],[-12,11],[-3,3],[-2,45],[-20,20],[-24,33],[-29,25],[-34,26],[9,5],[14,8],[18,12],[15,10],[2,1],[2,0],[68,49],[77,61],[1,1],[1,1],[1,1],[370,381],[11,13],[80,80],[84,155],[87,134],[104,138],[0,2],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,2],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[2,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,2],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[260,-10]],[[53695,39481,0],[20,-4],[14,-3]],[[53824,39471,0],[34,5],[-2,-7]],[[54599,39656,0],[174,76]],[[52494,40422,0],[185,-19],[72,26]],[[52678,40234,0],[-38,42],[-1,0],[-7,15],[-5,9]],[[52706,40217,0],[0,1],[-28,16]],[[52815,40024,0],[0,1],[-5,21],[-14,17]],[[52872,39959,0],[-22,41],[-19,26]],[[52895,39927,0],[0,1],[-23,31]],[[52976,39704,0],[-20,57],[-46,118],[2,6]],[[52825,39415,0],[42,55],[12,31]],[[52429,38918,0],[26,13],[-1,0]],[[52424,38743,0],[-36,93],[21,49],[1,14],[18,12]],[[53429,39632,0],[129,-94],[-128,6],[-45,-4],[-7,-2],[-5,0],[-4,-1],[-4,0],[-5,-1],[-4,-2],[-4,-1],[-5,-1],[-4,-1],[-4,-2],[-5,-1],[-4,-2],[-4,-1],[-5,-2],[-4,-1],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-3],[-4,-2],[-3,-3],[-4,-2],[-4,-2],[-3,-3],[-4,-3],[-4,-3],[-3,-2],[-3,-3],[-4,-3],[-3,-2],[-3,-4],[-4,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-3],[-3,-4],[-3,-3],[-2,-4],[-3,-3],[-3,-3],[-3,-4],[-2,-4],[-25,-31],[-40,-57],[-183,-275],[-49,-75],[-55,-66],[-333,-340],[-48,-46],[-36,-34],[-95,-67],[-63,-42],[-16,25],[-1,88],[-18,24],[-1,33],[-22,50]],[[53043,40113,0],[28,-49],[53,-56],[70,-95]],[[52219,33645,0],[-9,-61]],[[53359,33719,0],[-10,-28]],[[53426,33321,0],[-6,-29]],[[53499,32367,0],[-79,97]],[[53372,32458,0],[-115,-13]],[[53257,32445,0],[-176,-19]],[[52990,32426,0],[-35,0],[6,11],[-6,-11],[-46,0]],[[52647,32427,0],[-17,0]],[[52460,32381,0],[-25,-15]],[[52328,32330,0],[-59,-11]],[[52269,32319,0],[-25,-5]],[[52244,32314,0],[-21,-4],[-16,-3]],[[52160,32298,0],[-128,-32]],[[52032,32266,0],[-170,-43]],[[51862,32223,0],[-99,-17]],[[51763,32206,0],[-74,-8]],[[51605,32202,0],[-26,8]],[[51510,32247,0],[-89,64]],[[51280,32399,0],[-68,36]],[[51212,32435,0],[-62,29],[-2,1],[-1,0]],[[51147,32465,0],[-2,2]],[[51145,32467,0],[-1,0]],[[51144,32467,0],[-3,1]],[[51141,32468,0],[-1,0],[-2,1],[-1,0],[-2,2]],[[51135,32471,0],[-1,0]],[[51134,32471,0],[-2,1]],[[51132,32472,0],[-1,0]],[[51131,32472,0],[-2,1]],[[51129,32473,0],[-1,0],[-2,2]],[[51126,32475,0],[-1,0]],[[51125,32475,0],[-2,1]],[[51123,32476,0],[-1,0]],[[51122,32476,0],[-2,1]],[[51120,32477,0],[-1,0],[-1,1],[-1,0]],[[51117,32478,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,2]],[[51107,32483,0],[-1,0]],[[51106,32483,0],[-2,1]],[[51104,32484,0],[-1,0],[-1,0]],[[51102,32484,0],[-1,0],[-2,2]],[[51099,32486,0],[-1,0]],[[51098,32486,0],[-1,0],[-1,0],[-1,1]],[[51095,32487,0],[-1,0]],[[51094,32487,0],[-2,1]],[[51092,32488,0],[-2,0]],[[51090,32488,0],[-1,1]],[[51089,32489,0],[-1,0],[-1,1]],[[51087,32490,0],[-1,0]],[[51086,32490,0],[-2,1]],[[51084,32491,0],[-1,0]],[[51083,32491,0],[-1,1]],[[51082,32492,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[51077,32493,0],[-2,1]],[[51075,32494,0],[-1,0],[-1,1]],[[51073,32495,0],[-1,0]],[[51072,32495,0],[-1,0],[-1,0],[-1,1]],[[51069,32496,0],[-1,0],[-1,1]],[[51067,32497,0],[-2,0]],[[51065,32497,0],[-1,1]],[[51064,32498,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[51059,32499,0],[-1,0],[-1,0],[-1,1]],[[51056,32500,0],[-1,0]],[[51055,32500,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1]],[[51050,32502,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[51045,32503,0],[-1,1]],[[51044,32504,0],[-2,0],[-2,1]],[[51040,32505,0],[-1,0]],[[51039,32505,0],[-1,0],[-1,0],[-1,1]],[[51036,32506,0],[-1,0]],[[51035,32506,0],[-1,0],[-1,0],[-1,1]],[[51032,32507,0],[-2,0]],[[51030,32507,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0]],[[51025,32509,0],[-2,0],[-1,1]],[[51022,32510,0],[-1,0]],[[51021,32510,0],[-2,0],[-2,0],[-1,1]],[[51016,32511,0],[-1,0]],[[51015,32511,0],[-1,0],[-2,0],[-1,2]],[[51011,32513,0],[-1,0],[-1,0]],[[51009,32513,0],[-2,0]],[[51007,32513,0],[-1,1]],[[51006,32514,0],[-2,0]],[[51004,32514,0],[-2,0]],[[51002,32514,0],[-1,0],[-1,1]],[[51000,32515,0],[-2,0]],[[50998,32515,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,1]],[[50991,32517,0],[-3,0]],[[50988,32517,0],[-1,1]],[[50987,32518,0],[-2,0]],[[50985,32518,0],[-1,0]],[[50984,32518,0],[-2,0]],[[50982,32518,0],[-1,1]],[[50981,32519,0],[-2,0]],[[50979,32519,0],[-2,0]],[[50977,32519,0],[-2,0],[-1,1],[-2,0],[-1,1]],[[50971,32521,0],[-3,0]],[[50968,32521,0],[-1,0]],[[50967,32521,0],[-3,0],[-1,1]],[[50963,32522,0],[-3,0]],[[50960,32522,0],[-1,1]],[[50959,32523,0],[-3,0]],[[50956,32523,0],[-1,1]],[[50955,32524,0],[-4,0]],[[50951,32524,0],[-1,0]],[[50950,32524,0],[-3,0]],[[50947,32524,0],[-1,1]],[[50946,32525,0],[-3,0]],[[50943,32525,0],[-1,0],[-4,0],[-1,1]],[[50937,32526,0],[-4,0]],[[50933,32526,0],[-1,0],[-5,0],[-1,1],[-4,0],[-1,1]],[[50921,32528,0],[-5,0]],[[50916,32528,0],[-2,1]],[[50914,32529,0],[-6,0]],[[50908,32529,0],[-1,0]],[[50907,32529,0],[-7,0]],[[50900,32529,0],[-1,1]],[[50899,32530,0],[-7,0]],[[50892,32530,0],[-1,0]],[[50891,32530,0],[-4,0],[-33,-1]],[[50854,32529,0],[-96,-7],[-4,0],[-1,0]],[[50753,32522,0],[-11,0]],[[50742,32522,0],[-1,-1],[-31,0],[-1,1]],[[50709,32522,0],[-11,0]],[[50698,32522,0],[-1,0],[-7,0],[-2,2]],[[50688,32524,0],[-5,0]],[[50683,32524,0],[-1,0]],[[50682,32524,0],[-4,0]],[[50678,32524,0],[-2,1]],[[50676,32525,0],[-4,0]],[[50672,32525,0],[-1,0]],[[50671,32525,0],[-4,0],[-1,1]],[[50666,32526,0],[-4,0]],[[50662,32526,0],[-1,0]],[[50661,32526,0],[-2,0],[-1,1],[-3,0],[-1,1]],[[50654,32528,0],[-3,0]],[[50651,32528,0],[-1,1]],[[50650,32529,0],[-3,0]],[[50647,32529,0],[-1,0]],[[50646,32529,0],[-2,0]],[[50644,32529,0],[-1,1]],[[50643,32530,0],[-2,0]],[[50641,32530,0],[-1,0]],[[50640,32530,0],[-2,0],[-1,1],[-2,0],[-1,1]],[[50634,32532,0],[-2,0]],[[50632,32532,0],[-1,0]],[[50631,32532,0],[-1,0],[-1,1]],[[50629,32533,0],[-3,0]],[[50626,32533,0],[-1,1]],[[50625,32534,0],[-1,0],[-1,0]],[[50623,32534,0],[-2,0]],[[50621,32534,0],[-1,1],[-1,0],[-1,1]],[[50618,32536,0],[-2,0]],[[50616,32536,0],[-1,0],[-1,0],[-1,1]],[[50613,32537,0],[-1,0]],[[50612,32537,0],[-1,0],[-1,0],[-1,1]],[[50609,32538,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0]],[[50603,32540,0],[-2,0]],[[50601,32540,0],[-1,1],[-1,0]],[[50599,32541,0],[-1,0],[-1,0],[-102,34]],[[50495,32575,0],[-66,21]],[[50429,32596,0],[-82,21]],[[50347,32617,0],[-63,14],[-3,0],[-1,1]],[[50280,32632,0],[-4,0]],[[50276,32632,0],[-2,0]],[[50274,32632,0],[-3,0]],[[50271,32632,0],[-1,1]],[[50270,32633,0],[-4,0]],[[50266,32633,0],[-1,0]],[[50265,32633,0],[-5,0],[-1,1],[-4,0],[-1,1]],[[50254,32635,0],[-5,0]],[[50249,32635,0],[-1,0],[-5,0],[-1,1]],[[50242,32636,0],[-6,0]],[[50236,32636,0],[-1,1]],[[50235,32637,0],[-6,0]],[[50229,32637,0],[-1,0]],[[50228,32637,0],[-8,0]],[[50220,32637,0],[-1,1]],[[50219,32638,0],[-10,0],[-1,1]],[[50208,32639,0],[-12,0]],[[50196,32639,0],[-1,0],[-23,0],[-2,1]],[[50170,32640,0],[-19,0]],[[50151,32640,0],[-2,-1],[-22,0],[-1,0]],[[50126,32639,0],[-12,0]],[[50114,32639,0],[-1,-1],[-9,0]],[[50104,32638,0],[-1,-1],[-8,0]],[[50095,32637,0],[-1,0]],[[50094,32637,0],[-7,0]],[[50087,32637,0],[-1,-1]],[[50086,32636,0],[-5,0],[-1,-1],[-6,0],[-1,0]],[[50073,32635,0],[-5,0]],[[50068,32635,0],[-1,-1],[-5,0],[-1,-1],[-4,0]],[[50057,32633,0],[-1,0]],[[50056,32633,0],[-4,0]],[[50052,32633,0],[-1,-1]],[[50051,32632,0],[-3,0]],[[50048,32632,0],[-1,0]],[[50047,32632,0],[-5,0]],[[50042,32632,0],[-1,-1]],[[50041,32631,0],[-3,0]],[[50038,32631,0],[-1,-1],[-3,0],[-2,-1],[-3,0]],[[50029,32629,0],[-1,0]],[[50028,32629,0],[-2,0]],[[50026,32629,0],[-1,-1],[-3,0],[-1,0]],[[50021,32628,0],[-3,0]],[[50018,32628,0],[-1,-1],[-1,0]],[[50016,32627,0],[-73,-15],[-83,-20]],[[49860,32592,0],[-53,-13],[-66,-12]],[[49741,32567,0],[-3,0]],[[49738,32567,0],[-1,-1]],[[49737,32566,0],[-4,0]],[[49733,32566,0],[-1,-1],[-4,0],[-1,-1],[-4,0]],[[49723,32564,0],[-1,0]],[[49722,32564,0],[-4,0]],[[49718,32564,0],[-1,-1],[-3,0],[-1,0]],[[49713,32563,0],[-5,0]],[[49708,32563,0],[-1,-1]],[[49707,32562,0],[-3,0]],[[49704,32562,0],[-1,-1]],[[49703,32561,0],[-4,0]],[[49699,32561,0],[-2,0]],[[49697,32561,0],[-4,0]],[[49693,32561,0],[-1,-1]],[[49692,32560,0],[-4,0]],[[49688,32560,0],[-1,-1],[-5,0],[-1,0]],[[49681,32559,0],[-4,0]],[[49677,32559,0],[-1,-1],[-6,0],[-1,-1],[-4,0],[-1,0]],[[49664,32557,0],[-6,0]],[[49658,32557,0],[-1,-1]],[[49657,32556,0],[-5,0]],[[49652,32556,0],[-1,0]],[[49651,32556,0],[-6,0]],[[49645,32556,0],[-1,-1]],[[49644,32555,0],[-5,0]],[[49639,32555,0],[-1,-1],[-6,0],[-1,-1],[-7,0]],[[49624,32553,0],[-1,0]],[[49623,32553,0],[-5,0]],[[49618,32553,0],[-1,-1]],[[49617,32552,0],[-7,0]],[[49610,32552,0],[-1,0]],[[49609,32552,0],[-8,0]],[[49601,32552,0],[-1,-1]],[[49600,32551,0],[-8,0]],[[49592,32551,0],[-1,-1],[-7,0],[-2,-1],[-8,0],[-2,0]],[[49572,32549,0],[-8,0]],[[49564,32549,0],[-1,-1],[-10,0],[-1,0]],[[49552,32548,0],[-11,0]],[[49541,32548,0],[-1,-1],[-64,-2]],[[49476,32545,0],[-64,-2]],[[49412,32543,0],[-66,-6]],[[49346,32537,0],[-82,-13],[-74,-14]],[[49190,32510,0],[-136,541],[-1,108],[-10,817],[-1,127],[30,202],[188,170],[-363,769],[-133,279],[-50,325]],[[48714,35848,0],[285,1],[1005,227],[565,328],[163,97],[337,210],[229,91],[255,16],[427,-54],[287,-112],[163,-115],[69,-256],[736,-31]],[[49190,32510,0],[-66,-16],[-79,-21],[-61,-20],[-316,-112]],[[48668,32341,0],[-137,-49],[-73,-22]],[[48458,32270,0],[-84,-24],[-23,-3]],[[48351,32243,0],[-24,-2],[-38,-1]],[[48289,32240,0],[-59,10],[-272,104],[-71,27]],[[47887,32381,0],[-62,19],[-79,20],[-60,9]],[[47686,32429,0],[-55,5],[-237,15]],[[47394,32449,0],[-102,0]],[[47292,32449,0],[-134,-29]],[[47158,32420,0],[-230,-69],[-103,-24]],[[46825,32327,0],[-78,-14]],[[46747,32313,0],[-77,-7],[-68,-5],[-279,-12]],[[46323,32289,0],[-107,-7],[-71,-8]],[[46145,32274,0],[-171,-35],[7,661],[-487,64],[-49,64],[-8,127],[12,121],[-183,-6],[-233,28],[-195,35],[-114,-116],[-54,1],[-255,100],[-304,156],[-109,67],[-43,173],[9,209],[63,167],[93,126],[140,154],[143,138],[136,126],[378,438],[439,545]],[[45360,35617,0],[-121,216],[84,186],[142,212],[201,213],[198,201],[240,152],[196,72]],[[46300,36869,0],[205,25],[258,-23],[253,-65],[228,-121],[296,-246],[275,-254],[280,-169],[279,-102],[340,-66]],[[48192,40422,0],[-2,-68],[0,-49]],[[48190,40305,0],[2,-69],[4,-55]],[[48196,40181,0],[8,-55],[4,-25]],[[48242,39948,0],[21,-62],[21,-49]],[[48307,39785,0],[34,-57],[9,-20]],[[48401,39624,0],[30,-40],[17,-23]],[[48448,39561,0],[77,-89],[21,14],[87,-94]],[[48633,39392,0],[16,-17],[24,-21],[44,-52],[11,-19],[3,-9],[4,-10]],[[48735,39264,0],[2,-9]],[[48737,39255,0],[2,-9]],[[48739,39246,0],[1,-9]],[[48740,39237,0],[1,-10]],[[48741,39227,0],[0,-10],[-1,-10],[-3,-13]],[[48737,39194,0],[-5,-9],[-6,-10],[-7,-8],[-7,-7]],[[48712,39160,0],[-12,-7]],[[48700,39153,0],[-9,-4]],[[48691,39149,0],[-10,-2],[-29,-2],[14,-47]],[[48740,39007,0],[21,-36],[78,-27]],[[48974,38892,0],[-50,-144],[-6,-12]],[[49058,38499,0],[-31,-63],[44,-40],[-92,-156],[-80,-190],[-43,-317],[-127,21],[-253,77],[-101,78],[-181,173],[-86,87],[-106,133],[-75,136],[-274,498],[-81,130],[-115,177],[-17,175],[18,285],[-144,361],[80,461],[24,-80]],[[47418,40445,0],[7,68],[65,0],[62,-7]],[[47552,40506,0],[5,-13],[234,-6],[12,-89]],[[47821,40391,0],[49,133],[22,-2]],[[47996,40520,0],[12,28],[107,-13]],[[45360,35617,0],[-1440,653],[87,68]],[[44007,36338,0],[24,35],[68,49],[139,72]],[[44238,36494,0],[65,37]],[[44303,36531,0],[88,43],[140,62],[57,21],[79,82],[41,58],[65,91],[16,60],[51,54],[45,81],[87,72]],[[44972,37155,0],[51,31],[20,39],[-10,51],[-35,68],[-7,13],[-14,41],[505,161],[113,48],[137,61],[130,60],[72,29],[93,19],[86,-3],[24,-55],[74,-175],[278,-651],[-189,-23]],[[46004,42473,0],[-997,-300],[-229,-21],[-520,130],[-69,15],[-55,-4],[-605,-54],[-53,1],[-140,0],[-123,-4],[-27,-2]],[[43186,42234,0],[-44,-9],[-122,-8]],[[43020,42217,0],[-3,41],[-2,28],[-3,33],[-27,51],[-10,26],[-25,60],[-2,26],[-2,40],[-32,192],[-22,306],[-24,203],[244,54],[5,9],[42,400]],[[43159,43686,0],[172,110],[127,-14],[65,32],[170,138],[61,80],[123,153],[53,79],[49,148],[89,104],[91,103],[65,94],[4,13],[4,25],[0,17],[2,44],[1,11]],[[43159,43686,0],[-275,-154],[-83,-55],[-161,-67],[-111,-60],[-135,-66],[-40,-32],[-58,-47],[-61,-20],[-57,-18],[-253,-23],[-50,-5],[-182,52],[-59,12],[-47,6],[-30,-1],[-29,-3],[-19,-3],[-25,-7],[-6,-1],[-93,-36],[-186,-87],[-61,-12],[-419,-42],[-11,28],[-170,325],[-290,236]],[[40248,43606,0],[13,23],[25,56],[10,17],[31,13],[113,5],[63,83],[21,25],[13,25],[-101,67],[-41,109],[-13,13],[-84,-116],[-22,7],[17,64],[-136,29],[-55,6],[28,63],[-9,47],[20,44],[1,40],[9,22],[-14,16],[22,46],[-93,91],[-5,3],[-82,46],[-31,15],[-17,26],[27,71],[45,95],[15,43],[12,34],[2,19],[5,31]],[[40037,44784,0],[59,-8]],[[40096,44776,0],[72,-11]],[[40168,44765,0],[44,-7],[44,-5],[12,-2],[11,1],[20,0]],[[40299,44752,0],[11,0],[9,1]],[[40319,44753,0],[12,1]],[[40331,44754,0],[130,12],[35,9]],[[40496,44775,0],[105,30],[105,35],[41,4],[104,-66]],[[40851,44778,0],[100,-53],[67,-16],[14,-2]],[[41032,44707,0],[191,-26],[77,-12],[90,3]],[[41390,44672,0],[174,34],[61,12],[135,39]],[[41760,44757,0],[50,11],[146,21],[152,20]],[[42108,44809,0],[26,8],[71,27],[66,18],[-39,99]],[[43020,42217,0],[-151,-14]],[[42869,42203,0],[-64,27],[-9,4],[-53,14],[-38,9],[-64,14]],[[42641,42271,0],[-76,-1],[-194,-34]],[[42371,42236,0],[-12,-3],[-111,-30]],[[42248,42203,0],[-74,-22],[-44,-30],[-27,-21],[-14,-15],[-9,-15]],[[42080,42100,0],[-45,-110],[-12,-23]],[[42023,41967,0],[-44,-152]],[[41979,41815,0],[-30,-53],[-29,-16]],[[41920,41746,0],[-22,0],[-11,3],[-87,-61],[-43,-31]],[[41757,41657,0],[-157,-28],[-144,-9]],[[41456,41620,0],[-19,-1],[-71,-32]],[[41366,41587,0],[-27,-13],[-151,-85]],[[41188,41489,0],[-93,-73],[-168,-89],[-145,-37]],[[40782,41290,0],[-167,-54],[-56,-15],[-28,-16],[-27,-4],[-43,-4]],[[40461,41197,0],[-63,-5]],[[40398,41192,0],[-26,-14],[-55,-8]],[[40317,41170,0],[-189,-14],[-56,-2]],[[40072,41154,0],[-9,99],[10,68],[-44,3],[-54,108],[24,12],[-66,145],[44,35],[-117,204],[-31,-29],[-64,73],[37,73],[33,110],[-102,171],[18,14],[-70,91],[-20,26],[-72,93],[-24,-17],[-138,103],[-54,29]],[[39373,42565,0],[91,194],[19,26],[27,23],[45,27],[66,39],[74,64],[92,32],[73,87],[26,14],[4,15],[22,35],[26,42],[58,37],[53,80],[38,52],[49,82],[32,54],[56,103],[24,35]],[[42869,42203,0],[151,15],[122,8],[44,8]],[[43186,42234,0],[19,-74],[145,-120],[-13,-22],[-12,-14],[-23,-18],[-28,-23],[-56,-82],[-47,-95],[-12,-34],[-20,-67],[-1,-43],[23,-257],[31,-76],[42,-45],[14,-35],[8,-19],[-23,-66],[-26,-33],[-21,-44],[0,-21],[2,-18],[10,-28],[-6,-60],[-8,-163],[14,-93],[0,-22],[1,-21],[9,-40],[9,-37],[10,-70],[12,-87],[6,-74],[-26,-102],[14,-18],[99,0],[87,-174],[-38,-65],[-29,-49],[-73,-33],[-55,-27],[-21,-115],[-25,-112],[-5,-25],[-41,-151],[1,-10]],[[43133,39452,0],[-42,1],[-65,3],[-68,9],[-16,1],[-55,1],[-19,1],[-1,-22],[-2,-18],[-14,-2],[-14,-1],[-138,35],[-65,8],[-22,1],[-54,-7],[-33,6],[-20,3],[-54,33],[-45,25],[7,46],[-56,-3],[-118,33],[-21,-80],[-98,10],[-35,5],[-53,2],[-24,3],[-141,-96],[-164,-181],[-54,-40],[-60,-43],[-61,-42],[-32,-9],[-120,-30],[-58,-1],[-22,-3],[-67,0],[-21,9],[-123,47]],[[41085,39156,0],[22,31],[76,49],[-50,301],[-9,52],[-20,72],[-66,-5],[-48,0],[-4,13],[-6,50],[-3,10],[-19,83],[1,61],[-80,28],[-23,15],[-105,72],[-26,14],[-2,11],[9,13],[33,63],[16,46],[-5,10],[9,21],[6,9],[25,30],[30,37],[-17,9],[-47,21],[-92,-140],[-55,28],[49,59],[-51,55],[111,86],[93,70],[-38,51],[-68,144],[-13,33],[-37,55],[-36,49],[-15,22],[-19,33],[-23,44],[-26,53],[-22,22],[-40,-15],[-104,-66],[-25,-17],[-19,-14],[-31,-23],[-20,-11],[-57,-33],[-83,98],[53,44],[61,38],[114,83],[83,38],[20,0],[116,54],[-17,35],[31,22],[-7,68]],[[40615,41237,0],[167,53]],[[40782,41290,0],[144,38],[169,89],[93,72]],[[41188,41489,0],[151,86],[27,12]],[[41456,41620,0],[144,10],[157,27]],[[41920,41746,0],[29,17],[30,52]],[[42023,41967,0],[11,24],[46,109]],[[42248,42203,0],[111,31],[12,2]],[[42371,42236,0],[193,34],[77,1]],[[43133,39452,0],[-1,-78],[11,-29],[1,-32],[37,-160],[42,-36],[38,-117],[7,-151],[-24,-139],[-38,-235],[0,-46],[13,-170],[11,-88],[36,-91],[41,-37],[83,-106],[8,-7],[33,-41],[16,-17],[58,-23],[95,-105],[106,-86],[113,-26],[97,-40],[38,-23],[90,-57],[116,-72],[43,-21],[0,-13]],[[44203,37406,0],[-57,-7],[-91,-12]],[[44055,37387,0],[-61,1]],[[43994,37388,0],[-44,7],[-157,20],[-22,2]],[[43771,37417,0],[-52,1]],[[43719,37418,0],[-57,3],[-59,3]],[[43603,37424,0],[-53,1],[-87,44]],[[43463,37469,0],[-44,32],[-35,23],[-52,17],[-110,-32],[-29,-23]],[[43193,37486,0],[-46,-34],[-72,-69]],[[43075,37383,0],[-150,-161]],[[42925,37222,0],[-67,-47]],[[42858,37175,0],[-20,-28],[-23,-34],[-13,-28]],[[42802,37085,0],[-26,-54],[-72,-91]],[[42704,36940,0],[-17,-29],[-19,-31]],[[42668,36880,0],[65,-54],[20,-11]],[[42753,36815,0],[-128,-32]],[[42625,36783,0],[-50,-13]],[[42575,36770,0],[-102,57],[25,48],[-67,39],[-89,134],[-80,54],[-44,87],[-19,58],[-17,62],[-9,31],[-7,84],[7,42],[0,65],[-1,27],[1,69],[-59,7],[-11,4],[-62,51],[-37,30],[-141,14],[-66,-15],[-35,91],[-180,-42],[-4,46],[-3,57],[-189,18],[-56,20],[-25,10],[-51,24],[-47,14],[-62,36],[-282,236],[-26,23],[-18,14],[-69,57],[-170,177],[-106,112],[-52,53]],[[40422,38664,0],[-26,33],[30,39],[34,41],[44,-10],[15,30],[67,-26],[55,46],[10,12],[36,-54],[74,38],[-66,67],[51,17],[35,-30],[28,20],[35,35],[54,55],[48,47],[119,114],[20,18]],[[42575,36770,0],[-80,-18],[-98,-21],[-95,-10],[-20,-3]],[[42282,36718,0],[-81,-33],[-218,-73]],[[41983,36612,0],[-19,9],[-25,13],[-54,28]],[[41885,36662,0],[-27,8],[-23,-4]],[[41835,36666,0],[-23,-4],[-61,-55]],[[41751,36607,0],[-38,-96],[-7,-63]],[[41706,36448,0],[-19,-52],[-3,-68]],[[41684,36328,0],[-1,-32],[-23,-45]],[[41660,36251,0],[-34,-19]],[[41626,36232,0],[-24,-13],[-15,-10],[-27,-34],[-3,-24]],[[41557,36151,0],[-21,-7],[-86,-18],[-48,-7],[-88,7]],[[41314,36126,0],[-67,7],[-29,7]],[[41218,36140,0],[-69,31]],[[41149,36171,0],[-13,7],[-97,30]],[[41039,36208,0],[-15,4],[-56,15]],[[40968,36227,0],[-85,10],[-36,5],[-56,-1]],[[40791,36241,0],[-14,60],[-21,87],[-18,43],[-20,91],[-54,185],[-27,91],[-19,88],[-44,86],[-69,128],[-11,23],[-17,20],[-71,113],[-10,18],[-22,48],[-34,56],[-19,44],[-9,23],[-16,17],[-35,34],[-25,36],[-19,21],[-54,63],[-97,66],[-85,58],[-115,75],[-184,192],[-50,52],[-61,63],[-28,24],[-25,21],[-51,66],[-25,41],[-9,17],[-36,38]],[[39397,38329,0],[86,60],[24,19],[27,5],[96,-63],[35,-21],[65,-22],[17,-14],[13,-13],[32,25],[32,28],[-33,46],[89,60],[-26,23],[58,76],[76,-75],[35,-32],[53,-56],[21,8],[155,65],[52,64],[50,55],[68,97]],[[44055,37387,0],[91,11],[57,8]],[[44203,37406,0],[-2,-46],[73,-14],[63,-12],[144,4],[123,2],[157,13],[40,2],[4,5],[8,-3],[18,-5],[28,10],[1,-15],[0,-10],[-9,-30],[3,-10],[6,2],[4,-3],[7,0],[8,-12],[-6,-5],[22,-18],[17,-20],[48,-54],[12,-32]],[[44303,36531,0],[-32,-18],[-33,-19]],[[44007,36338,0],[-246,-193],[-77,-75],[-115,-105],[-168,-157],[-40,-51],[-136,-125],[-15,-21],[-21,-39],[-7,-19],[-7,-13],[-7,-25],[-14,-31],[-92,-167],[-37,-112],[-27,-50],[-41,-75],[1,-142],[-12,-34],[-42,-125],[-26,-100],[-3,-27],[0,-27],[-16,-65],[-18,-104],[9,-52],[-11,-116],[-55,-214],[-19,-95],[-34,1],[-54,1]],[[42677,33981,0],[12,52],[12,51],[4,34],[17,122],[-5,15],[3,6],[-73,60],[-49,66],[-4,28],[15,58],[-9,32],[3,41],[3,34],[0,23],[-47,11],[-5,27],[-1,11],[-35,-2],[-69,-6],[-42,16],[-26,10],[-48,-15],[-18,-3],[-31,21],[-24,6],[-31,4],[-43,8],[-32,26],[-5,17],[-16,42],[-13,36],[-41,77],[-19,16],[-30,23],[-13,10],[-39,24],[4,16],[7,47],[-1,9],[-6,13],[-32,68],[-23,22],[3,19],[-1,2],[-15,24],[-25,44],[-58,32],[-51,28],[-1,4],[76,96],[21,26],[8,11],[13,18],[4,6],[15,52],[6,19],[-2,8],[-13,42],[-18,16],[-25,22],[-34,-1],[-14,8],[-8,4],[-20,8],[-43,16],[-21,7],[-34,10],[-81,17],[-2,66],[0,17],[0,85],[27,59],[66,81],[2,59],[-5,10],[-17,28],[-71,82],[-52,-11]],[[41557,36151,0],[4,24],[26,33],[15,10],[24,14]],[[41660,36251,0],[23,44],[1,33]],[[41684,36328,0],[3,67],[19,53]],[[41751,36607,0],[61,54],[23,5]],[[41835,36666,0],[23,3],[27,-7]],[[41885,36662,0],[54,-29],[26,-12],[18,-9]],[[42282,36718,0],[20,2],[95,10],[99,22],[80,17],[49,14]],[[42753,36815,0],[-20,10],[-65,55]],[[42668,36880,0],[20,31],[16,29]],[[42704,36940,0],[72,90],[26,55]],[[42802,37085,0],[13,27],[24,34],[19,29]],[[42925,37222,0],[7,5],[143,156]],[[43193,37486,0],[29,22],[111,33],[51,-18],[35,-23],[44,-31]],[[43463,37469,0],[88,-44],[52,-1]],[[43603,37424,0],[60,-3],[56,-3]],[[43771,37417,0],[22,-3],[157,-20],[44,-6]],[[41404,32962,0],[-30,29],[-57,56]],[[41317,33047,0],[-101,70],[-62,69],[-40,67],[-43,101]],[[41071,33354,0],[-29,60],[-42,91]],[[41000,33505,0],[4,32],[-3,26],[16,104],[10,47],[9,16],[27,49],[3,49],[-3,10],[-70,40]],[[40993,33878,0],[3,87],[1,58]],[[40997,34023,0],[-1,21],[11,5],[18,7],[14,78],[-2,63],[47,91],[5,30],[3,14],[-67,48],[-15,11]],[[41010,34391,0],[-159,250]],[[40851,34641,0],[-27,25],[-62,71],[-38,55],[-29,36],[-51,41],[-33,32],[-4,14]],[[40607,34915,0],[38,62],[45,98],[11,24],[24,86],[24,81],[12,42],[13,48],[24,90],[13,67],[15,77],[7,65],[4,46],[1,63],[1,46],[2,112],[1,51],[1,16],[-22,109],[-5,33]],[[40816,36131,0],[-19,69],[-2,11]],[[40795,36211,0],[-4,12]],[[40791,36223,0],[0,17],[57,1],[35,-5],[77,-8],[8,-1]],[[41039,36208,0],[97,-31],[13,-6]],[[41218,36140,0],[29,-8],[67,-6]],[[42677,33981,0],[-32,8],[-2,-14],[-45,8],[-58,18],[-8,-7],[-32,-41],[-18,-39],[-28,-25],[-15,-24],[-25,-65],[25,-112],[-26,-11],[-48,-27],[-25,-12],[-48,-19],[-63,-12],[16,-46],[25,-36],[13,-21],[15,-15],[27,-45],[35,-29],[25,-58],[8,-24],[23,-21],[21,-44],[13,-8],[95,-190],[-30,-26],[-48,3],[14,-37],[-18,-36],[-18,-21],[-11,-29],[22,-3],[49,-19],[-39,-113],[-46,-43],[-23,-68],[-4,-12],[-1,-23],[-8,-15],[-61,9],[-91,-5],[-23,5],[-17,-26],[-16,7],[-106,49],[-62,-7],[-47,-70],[-130,77],[-33,17],[-61,32],[-6,6],[35,34],[6,25],[-6,-25],[-35,-34],[-52,40],[-106,54],[-19,6],[-8,31],[-142,109]],[[40791,36241,0],[0,-18]],[[40795,36211,0],[2,-10],[6,-121],[18,-104],[-26,-216],[-13,-100],[0,-141],[-9,-204],[14,-11],[-134,-208],[-20,-30],[-43,-52],[-39,-47],[-32,85],[-9,8],[-18,12],[-18,14],[-33,26],[-29,47],[-45,25],[-74,52],[-97,70],[-48,52],[-14,20],[-43,72],[-34,62],[-40,80],[-47,93],[-8,17],[-2,43],[-4,22],[-30,95],[-6,21],[-9,34],[-11,17],[-29,41],[-35,44],[-26,13],[-39,25],[-31,22],[-17,12],[-65,64],[-9,13],[-30,43],[-110,92],[-74,71],[-30,35],[-33,38],[-24,48],[-35,21],[-24,20],[-37,28],[-36,67],[-50,65],[-32,40],[-19,41],[-26,42],[-27,41],[-36,48],[-17,22],[-19,32],[-28,50]],[[38962,37012,0],[-25,37],[-37,56],[-9,15],[-49,85],[-11,17],[-68,78],[-64,76],[-42,-19],[-48,34],[-39,10],[-26,5],[-28,12],[-26,23],[-39,-29],[-26,-17],[-12,-7],[-38,29],[-81,43],[-9,8],[-24,20],[-44,16],[-15,6],[-11,22],[-77,100],[-126,157],[-39,-10],[-13,21],[-42,91]],[[37894,37891,0],[40,36]],[[37934,37927,0],[17,15],[23,35],[50,75]],[[38024,38052,0],[12,22],[25,72],[4,41],[5,27]],[[38070,38214,0],[6,23],[0,52]],[[38076,38289,0],[86,40],[10,5],[10,-3]],[[38182,38331,0],[72,-29],[-35,33]],[[38219,38335,0],[-17,80],[183,51]],[[38385,38466,0],[55,15],[63,16]],[[38503,38497,0],[-8,25],[43,12]],[[38538,38534,0],[41,9],[20,6]],[[38599,38549,0],[49,17],[42,58],[18,-49]],[[38708,38575,0],[45,19]],[[38753,38594,0],[-73,137],[70,38],[26,13],[141,34]],[[38917,38816,0],[38,-74],[58,-52],[134,-122],[74,-69],[37,-32],[28,-26],[31,-30],[80,-82]],[[38917,38816,0],[-62,128],[-34,57]],[[38821,39001,0],[-46,71],[-30,61],[-25,62]],[[38720,39195,0],[-12,52]],[[38708,39247,0],[-95,-23],[-13,16],[-27,86]],[[38573,39326,0],[-7,59]],[[38566,39385,0],[2,23],[-35,241]],[[38533,39649,0],[12,40],[5,69],[6,318],[5,82],[57,161],[78,222]],[[38696,40541,0],[29,28],[187,197]],[[38912,40766,0],[61,76],[98,116]],[[39071,40958,0],[68,80],[34,31],[25,13],[25,26]],[[39223,41108,0],[94,68],[31,10]],[[39348,41186,0],[114,38],[192,-20]],[[39654,41204,0],[149,-35],[99,-8],[34,8]],[[39936,41169,0],[68,-13],[68,-2]],[[40072,41154,0],[56,3],[189,13]],[[40317,41170,0],[55,9],[26,13]],[[40461,41197,0],[43,5],[27,4],[28,16],[56,15]],[[40072,41154,0],[-68,1],[-68,14]],[[39654,41204,0],[-192,19],[-114,-37]],[[39223,41108,0],[-25,-27],[-24,-12],[-35,-32],[-68,-79]],[[38912,40766,0],[-187,-198]],[[38725,40568,0],[-58,43],[-58,-9],[14,51],[34,35],[31,78],[34,81],[6,27],[-85,-16],[6,43],[-71,22],[3,37],[1,3],[12,33],[-7,26],[-33,14],[-39,-44],[-54,-83],[2,-20],[-10,-45],[-15,-30],[-32,-6],[-12,-19],[-102,3],[-10,-35],[-116,16],[-9,-41],[-69,20],[25,165],[-73,-2],[20,136],[-3,33],[-1,10],[-81,-12],[-98,-12],[-236,45],[-84,4],[-7,-36],[-43,2],[-21,27],[-283,27]],[[37203,41139,0],[4,12],[-21,259],[-3,44],[-6,2],[-54,26],[-19,55],[-56,238],[-33,74],[-19,99],[-23,57],[-30,117],[-25,104],[-32,72],[-41,237],[-144,-38],[-83,55]],[[36618,42552,0],[175,152],[-14,15],[-49,51],[-17,38],[-5,30]],[[36708,42838,0],[44,76],[0,57],[-10,36]],[[36742,43007,0],[-4,56],[4,38]],[[36742,43101,0],[33,82]],[[36775,43183,0],[44,53],[13,18]],[[36832,43254,0],[19,-13],[194,64],[9,0],[26,2],[27,17]],[[37107,43324,0],[75,26],[93,55]],[[37275,43405,0],[16,-18],[73,-79],[35,32],[85,-50],[25,-14],[-122,-252],[289,-143],[4,-2],[17,-9],[19,-136],[84,-32],[0,-208],[-5,-57],[-11,-52],[-24,-83],[29,-5],[117,-63],[24,-1],[12,29],[6,27],[16,39],[58,30],[32,31],[31,38],[21,31],[26,49],[5,24],[21,33],[42,19],[4,-31],[63,-22],[14,-4],[10,-18],[70,-11],[-5,-17],[-19,-27],[105,-20],[75,5],[31,5],[11,37],[89,-31],[46,6],[8,47],[2,29],[7,58],[18,41],[-2,17],[1,17],[3,14],[9,9],[23,16],[65,25],[50,24],[38,-42],[36,23],[15,-23],[48,-68],[90,68],[60,-37],[-18,-21],[73,-22],[42,-40],[16,24],[95,-49]],[[40285,45541,0],[87,-147],[21,-42],[29,-51]],[[40422,45301,0],[24,-57],[18,-42]],[[40464,45202,0],[12,-21],[4,-3]],[[40480,45178,0],[-43,-22],[-41,-13],[-131,-31],[-21,-4]],[[40244,45108,0],[-85,-25],[-63,-2]],[[40096,45081,0],[-63,-4],[-32,-7]],[[40001,45070,0],[3,-71],[45,1]],[[40049,45000,0],[-4,-102],[-2,-47]],[[40043,44851,0],[-6,-67]],[[37275,43405,0],[19,43]],[[37294,43448,0],[5,11],[25,73],[-8,61]],[[37316,43593,0],[-2,50],[-4,20]],[[37310,43663,0],[26,74],[-11,41],[-6,76],[0,23]],[[37319,43877,0],[-20,86],[38,48],[5,41]],[[37342,44052,0],[4,18],[71,114]],[[37417,44184,0],[11,28],[13,38]],[[37441,44250,0],[14,50],[11,57],[9,133]],[[37475,44490,0],[1,18],[1,14],[23,-4],[515,-78],[182,-46],[29,116],[16,119],[-8,83],[-28,201],[49,54],[-77,111],[-133,216],[-34,179],[38,57],[33,23],[28,13],[25,4],[-27,121],[-40,46],[-15,25],[39,41],[42,122],[133,48],[-65,125],[300,168],[50,15],[35,-32],[222,-248],[17,21],[21,-23],[47,-30],[53,-30],[416,-201]],[[37441,44250,0],[-13,-37],[-11,-29]],[[37417,44184,0],[-72,-114],[-3,-18]],[[37319,43877,0],[-1,-23],[6,-75],[12,-41],[-26,-75]],[[37316,43593,0],[7,-61],[-24,-72],[-5,-12]],[[37107,43324,0],[-27,-16],[-29,1],[-200,-67],[-19,12]],[[36832,43254,0],[-14,-17],[-43,-54]],[[36742,43101,0],[-4,-37],[4,-57]],[[36742,43007,0],[10,-35],[0,-57],[-44,-77]],[[36618,42552,0],[-19,12]],[[36599,42564,0],[-251,302],[-189,192]],[[36159,43058,0],[-333,14],[-22,4]],[[35804,43076,0],[-142,58],[-18,-37]],[[35644,43097,0],[-22,-51],[-18,-53]],[[35604,42993,0],[-1,-17],[4,-15],[7,-14]],[[35614,42947,0],[11,-13]],[[35625,42934,0],[14,-8],[9,-5]],[[35648,42921,0],[-15,-28],[-35,-73]],[[35598,42820,0],[-39,-35],[-34,-18]],[[35525,42767,0],[-14,-4],[-39,8]],[[35472,42771,0],[-65,-28],[-29,-1],[-12,12]],[[35366,42754,0],[-15,-5],[-96,-35],[-90,3]],[[35165,42717,0],[-39,-3],[-86,36],[-17,-7],[-14,-27]],[[35009,42716,0],[-103,76],[-66,47],[-24,52],[-33,69],[-31,202],[13,21],[3,87],[1,71],[-132,189],[-21,11],[-45,17],[-76,29],[-113,65],[-114,67],[-105,72],[-124,89],[-82,77]],[[33957,43957,0],[127,316],[76,151],[161,192],[150,179],[36,41],[10,9],[40,45],[56,60],[12,10],[16,11],[28,15],[18,5],[26,3],[28,-2],[107,-6],[121,17],[20,3],[127,18],[129,18],[129,19],[123,23],[122,23],[129,25],[129,24],[173,25],[-20,103],[184,73],[83,-13],[16,-102],[0,-46],[57,1],[-3,-37],[19,-2],[110,-10],[140,-13],[25,18],[63,-6],[3,-24],[84,-24],[89,-25],[-2,-12],[59,-51],[8,-5],[78,14],[27,-1],[21,-14],[-22,57],[-35,59],[43,32],[175,129],[105,-60],[21,-9],[45,-59],[41,-88],[5,-24],[42,-107],[1,-21],[9,-34],[12,-95],[3,-16],[-5,-34],[-33,-72],[-2,-23],[-4,-28],[-15,-89],[-1,-14],[-1,-19]],[[35009,42716,0],[90,-48],[4,-43]],[[35103,42625,0],[42,-448],[4,-39]],[[35149,42138,0],[-11,-84],[-12,-63],[-26,-59],[-31,6],[-33,-39],[-22,77]],[[35014,41976,0],[-165,147],[-31,28]],[[34818,42151,0],[-61,-25]],[[34757,42126,0],[-30,-99],[-37,-34]],[[34690,41993,0],[37,-168]],[[34727,41825,0],[34,-116],[20,-140]],[[34781,41569,0],[7,-150],[-30,-189]],[[34758,41230,0],[-14,-37]],[[34744,41193,0],[-21,-40],[-7,-31]],[[34716,41122,0],[-24,-70],[-20,-38]],[[34672,41014,0],[77,-43],[-21,-42],[-12,-27]],[[34716,40902,0],[-12,-28],[-2,-29],[-11,-31],[-14,-35],[-80,21]],[[34597,40800,0],[-84,24],[-10,-52]],[[34503,40772,0],[-40,8]],[[34463,40780,0],[3,29],[1,41],[-26,-44]],[[34441,40806,0],[-27,-20],[-43,-1],[-68,206]],[[34303,40991,0],[-19,60],[-16,3],[-18,46]],[[34250,41100,0],[-1,36],[30,59]],[[34279,41195,0],[39,44],[-9,37]],[[34309,41276,0],[-82,-11],[-14,-13],[-25,-10],[-16,-24]],[[34172,41218,0],[-19,-40],[-6,-92],[-55,13]],[[34092,41099,0],[-7,91]],[[34085,41190,0],[-67,19],[-10,-11],[-15,-16],[11,-60],[-8,-30]],[[33996,41092,0],[-12,-29],[-2,-31]],[[33982,41032,0],[-121,12]],[[33861,41044,0],[-53,12],[-20,11],[-16,11],[-21,6],[-249,109]],[[33502,41193,0],[23,108],[-66,17],[-61,2]],[[33398,41320,0],[-39,6],[-77,0],[-105,29],[-11,24],[-171,37],[-67,4]],[[32928,41420,0],[-45,-8],[-25,-14]],[[32858,41398,0],[-4,-15],[-48,3],[-127,17],[-51,14]],[[32659,41533,0],[-14,29],[1,51],[-25,110]],[[32613,41855,0],[1,15],[-34,0]],[[32580,41870,0],[-59,78],[9,38]],[[32530,41986,0],[264,309],[-7,134]],[[32751,43265,0],[104,51],[165,-39],[88,-258],[85,-6],[224,-13],[36,23],[16,6],[50,-6],[92,8],[61,11],[19,2],[30,283],[-27,126],[14,35],[41,109],[-43,117],[74,41],[135,178],[26,35],[16,-11]],[[33398,41320,0],[61,-3],[66,-17],[-23,-107]],[[33502,41193,0],[249,-110],[22,-6],[16,-10],[19,-12],[53,-11]],[[33861,41044,0],[113,-11],[8,-1]],[[33996,41092,0],[8,29],[-11,60],[15,16],[10,11],[67,-18]],[[34092,41099,0],[55,-14],[6,92],[19,41]],[[34309,41276,0],[9,-38],[-39,-43]],[[34279,41195,0],[-30,-60],[1,-35]],[[34250,41100,0],[18,-47],[16,-3],[19,-59]],[[34441,40806,0],[27,44],[-2,-42],[-3,-28]],[[34503,40772,0],[10,51],[84,-23]],[[34597,40800,0],[80,-22],[14,35]],[[34691,40813,0],[7,-2],[115,-22],[47,64],[110,-32],[-8,-35],[51,-6],[89,13],[40,-2],[19,-127],[73,-85],[108,-99],[83,-84],[48,-56],[175,-124]],[[35648,40216,0],[-19,-6],[-110,-109],[-11,-34],[-6,-23],[-65,-56],[-70,-31],[-104,93],[-56,-74],[-14,-11],[-17,-14],[-88,-82],[75,-122],[-80,-32],[-21,-15],[-26,22],[-43,-21],[-1,-19],[-17,-19],[-18,-20],[-68,-37],[-45,-62],[-12,-17],[-66,35],[-165,64],[-21,-38],[-61,20],[-34,26],[-76,36],[-47,35],[-32,-56],[30,-35],[-76,-86],[-60,51],[-52,-53],[97,-130],[-41,-26],[-130,-17],[203,-179],[63,-105],[-37,-89],[-8,-18],[-336,85],[-91,-67],[-325,13],[-256,66]],[[33311,39059,0],[-14,27],[-9,17],[-33,26],[-27,12],[-182,79],[-97,126],[-135,-11],[-38,-4],[-229,145],[-23,15],[-73,11],[-206,180],[-39,-21],[-97,-60],[-170,-103]],[[32628,41417,0],[51,-15],[127,-17],[49,-2],[3,15]],[[32858,41398,0],[26,14],[44,8]],[[37203,41139,0],[-47,2],[-17,-87],[-30,-27],[-4,-53],[-12,-68],[-4,-71],[7,-32],[-7,-19],[-15,-155],[18,-50],[14,-69],[-13,-32],[4,-17],[-7,-27],[-103,-13],[-110,-252],[-150,-104],[-133,251],[-35,1],[-87,6],[36,-363],[-267,-320]],[[36241,39640,0],[-164,180],[-30,33],[-120,133],[-150,93],[-129,137]],[[34691,40813,0],[12,32],[1,28],[12,29]],[[34672,41014,0],[20,37],[24,71]],[[34716,41122,0],[8,31],[20,40]],[[34758,41230,0],[30,188],[-7,151]],[[34781,41569,0],[-20,139],[-34,117]],[[34690,41993,0],[37,33],[30,100]],[[34818,42151,0],[31,-29],[165,-146]],[[35149,42138,0],[-3,32],[-1,6],[-42,449]],[[35103,42625,0],[-4,42],[-89,49],[14,26],[16,7],[86,-36],[39,4]],[[35366,42754,0],[12,-13],[29,1],[65,29]],[[35472,42771,0],[40,-9],[13,5]],[[35598,42820,0],[35,72],[15,29]],[[35648,42921,0],[-9,4],[-14,9]],[[35614,42947,0],[-7,13],[-3,16],[0,17]],[[35604,42993,0],[18,52],[22,52]],[[35644,43097,0],[19,36],[141,-57]],[[35804,43076,0],[16,-12],[339,-6]],[[36159,43058,0],[189,-193],[251,-301]],[[38725,40568,0],[-29,-27]],[[38696,40541,0],[-78,-223],[-57,-161],[-5,-82],[-5,-317],[-6,-70],[-12,-39]],[[38533,39649,0],[35,-242],[-2,-22]],[[38573,39326,0],[27,-87],[13,-16],[95,24]],[[38720,39195,0],[25,-63],[30,-61],[46,-70]],[[38821,39001,0],[34,-58],[62,-127]],[[38917,38816,0],[-141,-35],[-26,-13],[-70,-38],[73,-136]],[[38708,38575,0],[-18,48],[-42,-58],[-49,-16]],[[38599,38549,0],[-20,-7],[-41,-8]],[[38503,38497,0],[-63,-17],[-55,-14]],[[38385,38466,0],[-183,-52],[17,-79]],[[38182,38331,0],[-10,2],[-10,-5],[-86,-39]],[[38076,38289,0],[0,-53],[-6,-22]],[[38024,38052,0],[-49,-76],[-24,-35],[-17,-14]],[[37894,37891,0],[-19,21],[-21,14],[-14,5]],[[37840,37931,0],[-11,8],[-25,31],[-27,19]],[[37777,37989,0],[-25,18],[-76,81]],[[37676,38088,0],[-21,-7],[-48,56]],[[37607,38137,0],[-41,34],[-27,17],[-15,19]],[[37524,38207,0],[-33,27],[-38,35]],[[37453,38269,0],[23,15],[-48,61],[46,11],[-15,31],[-56,62],[-64,43],[-19,1],[-37,22],[-19,33],[-34,32],[18,24],[-77,51],[-99,101],[27,38],[-42,36],[65,65],[-262,223],[-103,67],[-151,70],[44,60],[-112,32],[-71,36],[-144,152],[-100,59],[-17,11],[16,15],[19,20]],[[37453,38269,0],[-18,15],[-32,-10]],[[37403,38274,0],[-106,-51],[-18,-26]],[[37279,38197,0],[-123,0],[-37,-3]],[[37119,38194,0],[-46,-5],[-103,-10],[-21,54]],[[36949,38233,0],[-6,24],[-7,19]],[[36936,38276,0],[-4,14]],[[36932,38290,0],[-9,69],[-2,58]],[[36921,38417,0],[-57,-17],[-18,-3]],[[36846,38397,0],[-56,-12]],[[36790,38385,0],[-155,-31],[-15,-26]],[[36620,38328,0],[-19,-34],[20,-221],[-51,-182],[-2,-8],[-14,0]],[[36554,37883,0],[-75,-137]],[[36479,37746,0],[-58,-74],[-43,-49]],[[36378,37623,0],[-95,70],[-60,49]],[[36223,37742,0],[-82,48],[-61,41],[-501,-304],[16,-52],[-55,-28],[5,-17],[-32,-39]],[[35513,37391,0],[-23,-50]],[[35490,37341,0],[-20,-69],[-12,-58]],[[35458,37214,0],[-80,28]],[[35378,37242,0],[-120,-15],[51,-87]],[[35309,37140,0],[89,-151]],[[35398,36989,0],[-131,-88]],[[35267,36901,0],[-21,-14]],[[35246,36887,0],[-6,26],[-13,55]],[[35227,36968,0],[-387,-112]],[[34840,36856,0],[-100,-28]],[[34740,36828,0],[-39,12]],[[34701,36840,0],[-252,80]],[[34449,36920,0],[-77,24]],[[34372,36944,0],[1,7],[21,61],[-104,118],[-61,69],[-310,348],[-31,12],[-159,68],[-205,67],[-54,18]],[[33470,37712,0],[-59,-12],[-94,79],[-79,66],[-71,134],[231,19],[-44,119],[10,162],[68,51],[4,12],[101,299],[-226,418]],[[36949,38233,0],[20,-53],[104,10],[46,4]],[[37119,38194,0],[36,3],[124,0]],[[37279,38197,0],[18,27],[106,50]],[[37403,38274,0],[32,11],[18,-15],[38,-35],[33,-28]],[[37524,38207,0],[15,-18],[27,-17],[41,-35]],[[37607,38137,0],[48,-55],[21,6]],[[37676,38088,0],[75,-81],[26,-18]],[[37840,37931,0],[14,-4],[21,-14],[19,-22]],[[38962,37012,0],[-39,-20],[-22,-13],[-30,-11],[-21,-8],[-38,-27],[-38,-38],[-51,-26],[-37,-12],[-21,4],[-101,-15],[-23,-4],[-77,-11],[-54,-12],[20,-79]],[[38430,36740,0],[-3,-51]],[[38427,36689,0],[-10,-13],[-24,-20]],[[38393,36656,0],[-42,-5],[-41,-37]],[[38310,36614,0],[-48,-17],[-56,-30],[-130,-70]],[[38076,36497,0],[-51,-27],[-37,-22]],[[37988,36448,0],[-58,-17],[-90,-28],[-48,-11]],[[37792,36392,0],[-225,-54],[-65,-68]],[[37502,36270,0],[-42,-10]],[[37460,36260,0],[-6,-37],[-63,-4]],[[37391,36219,0],[-13,31],[-14,35],[-41,65],[-25,10],[-73,31],[-49,-60]],[[37176,36331,0],[-39,-47],[-40,-50]],[[37097,36234,0],[-37,-45],[-59,-11]],[[37001,36178,0],[-12,-15],[-28,-42]],[[36961,36121,0],[32,-4],[102,-11]],[[37095,36106,0],[-18,-46],[-14,-38]],[[37063,36022,0],[-20,-54],[-33,-58]],[[37010,35910,0],[-55,-63],[-35,15],[-30,-155]],[[36890,35707,0],[-86,-97]],[[36804,35610,0],[39,-150]],[[36843,35460,0],[-109,21],[-46,25],[-11,6],[-153,68],[-56,25],[-51,22],[-34,15],[-111,-17],[-51,31],[-79,-19],[-5,29],[-31,8],[-26,8],[-35,9],[-36,9],[-120,31],[-17,4],[-43,12],[-10,6],[-134,119],[-28,23],[-2,49],[-3,22],[-55,18],[-50,15],[-41,13],[-24,0],[-34,1],[-86,-3],[-41,57],[-126,47],[-22,8],[-44,15],[-62,20],[-5,45],[-9,64],[-12,80],[-9,68],[-4,20],[-13,38],[-36,107],[-124,24],[-147,28],[-59,31]],[[34649,36662,0],[52,178]],[[34701,36840,0],[39,-11],[100,27]],[[35246,36887,0],[21,15],[131,87]],[[35309,37140,0],[-51,88],[120,14]],[[35458,37214,0],[11,59],[21,68]],[[35513,37391,0],[32,40],[-5,17],[55,28],[-16,52],[501,304],[61,-41],[82,-49]],[[36378,37623,0],[43,50],[58,73]],[[36554,37883,0],[15,8],[52,183],[-20,221],[19,33]],[[36620,38328,0],[15,27],[155,30]],[[36846,38397,0],[18,4],[57,16]],[[36921,38417,0],[2,-57],[9,-70]],[[36936,38276,0],[7,-18],[6,-25]],[[34372,36944,0],[-17,-124]],[[34355,36820,0],[-5,-46],[-45,24],[-61,35]],[[34244,36833,0],[-73,28]],[[34171,36861,0],[-20,14],[-6,14]],[[34145,36889,0],[-126,56]],[[34019,36945,0],[-30,-36]],[[33989,36909,0],[-95,50]],[[33894,36959,0],[-52,-44]],[[33842,36915,0],[-42,-60],[6,-36],[-16,-20]],[[33790,36799,0],[-127,-128]],[[33663,36671,0],[-4,-5]],[[33659,36666,0],[-10,-8]],[[33649,36658,0],[-164,16]],[[33485,36674,0],[99,-164]],[[33584,36510,0],[14,-27]],[[33598,36483,0],[78,-147]],[[33676,36336,0],[32,-131]],[[33708,36205,0],[6,-15],[-17,-37],[-11,-24]],[[33686,36129,0],[-122,-196]],[[33564,35933,0],[-66,-88]],[[33498,35845,0],[-47,-47],[-17,-59]],[[33434,35739,0],[-12,-4],[-23,-8]],[[33399,35727,0],[-56,73],[-20,30]],[[33323,35830,0],[-133,4]],[[33190,35834,0],[-65,73],[-26,44]],[[33099,35951,0],[-89,149]],[[33010,36100,0],[-61,98]],[[32949,36198,0],[-145,-123]],[[32804,36075,0],[-69,-60],[-3,-6],[-4,-11]],[[32728,35998,0],[-170,-415]],[[32558,35583,0],[-52,6]],[[32506,35589,0],[-314,41]],[[32192,35630,0],[-34,-70]],[[32158,35560,0],[-104,-220]],[[32054,35340,0],[-26,-53]],[[32165,36990,0],[126,-71],[86,78],[172,54],[154,50],[88,64],[37,-31],[102,16],[224,117],[69,217],[50,10],[129,162],[68,56]],[[34145,36889,0],[6,-13],[20,-15]],[[34244,36833,0],[61,-34],[45,-24],[5,46],[263,-143],[31,-16]],[[36843,35460,0],[74,-14],[5,-11],[47,-112],[63,55],[-3,-142],[34,-135],[-14,-37],[-23,-67],[-17,-81],[-17,-78],[-26,-30],[16,-3],[-14,-108]],[[36968,34697,0],[-21,-9],[-82,-39],[-114,-50],[-31,-16],[-30,-14],[-14,-9],[-96,-58],[-15,-12],[-74,-55]],[[36491,34435,0],[-45,-33],[-30,-21],[-13,-18],[-46,-4],[-35,-3],[-24,-3]],[[36298,34353,0],[-53,-15],[-21,-6],[-18,9],[-74,14]],[[36132,34355,0],[-150,-12],[-60,-15],[-6,-13]],[[35916,34315,0],[-62,-4],[-12,0],[-20,0],[-41,-10],[-27,-5],[-89,-36],[-54,-22],[-39,-17],[-37,-18],[-35,-28],[-16,-21],[-63,-90],[-18,-25],[-12,-18],[-4,-8],[-59,-112],[-11,-21],[-5,-17],[-21,-71],[-71,-76],[-29,-31],[-8,-9],[-42,-42],[-33,-32],[-2,-20],[-23,-20],[-14,-25],[-78,-64],[-48,-33],[-69,-46],[-18,-10],[-40,-24],[-20,-11],[-26,-15],[-32,-18],[-15,-10],[-20,-14],[-75,-32],[-62,17],[-103,-26],[-19,-2],[-96,-8],[-9,-4],[-56,-23],[-8,18],[-13,3],[-29,-1],[-78,-23],[-60,-8],[-15,9],[-85,-11],[-35,-4],[-95,-11],[-31,-18],[-11,-6],[-23,0],[-33,-8]],[[33767,33154,0],[135,141],[1,50],[-16,51],[-10,34],[-13,38],[-5,17],[-7,10],[-40,61],[-48,73],[-45,48],[-147,151],[232,109],[185,249],[-40,17],[-30,12],[15,74],[43,256],[47,31],[12,86],[-73,71],[-44,67],[-119,41],[-27,67],[26,27],[17,17],[4,22],[-4,46],[-40,-1],[-24,17],[-51,3],[-29,0],[-108,56],[-14,22],[-26,42],[-20,31],[-11,111],[-5,57],[-12,56],[-13,161],[-1,20],[-5,51],[-12,23],[-17,34],[-29,24]],[[33434,35739,0],[17,60],[47,46]],[[33564,35933,0],[122,197],[11,24],[16,36],[-5,15]],[[33584,36510,0],[-99,165],[164,-16],[10,7]],[[33659,36666,0],[131,133]],[[33842,36915,0],[52,45],[95,-51]],[[38551,36136,0],[0,-22],[-33,-21],[3,-15],[18,-105],[-33,-147],[-98,-63],[-5,-11],[1,-15],[1,-70],[-71,19],[-15,-38],[81,-47],[50,-5],[2,-18],[17,-131],[46,-6],[10,-99],[5,-59],[-53,-104],[-83,12],[-54,-29],[-185,-67],[-279,11],[-154,-8]],[[37722,35098,0],[-138,7]],[[37584,35105,0],[-30,2],[-96,2],[-60,-47]],[[37398,35062,0],[30,-116]],[[37428,34946,0],[-13,-6],[-24,4],[-60,51],[-38,50],[-47,84],[-56,34],[-45,2],[-86,-59]],[[37059,35106,0],[-30,129],[8,146],[-5,-4],[-63,-55],[-47,112],[-4,12],[-75,13],[-39,151]],[[36890,35707,0],[30,154],[35,-15],[55,64]],[[37063,36022,0],[15,38],[17,46]],[[36961,36121,0],[29,42],[11,15]],[[37097,36234,0],[40,49],[39,48]],[[37391,36219,0],[63,3],[6,38]],[[37502,36270,0],[66,68],[224,54]],[[37988,36448,0],[38,21],[50,28]],[[38310,36614,0],[41,36],[42,6]],[[38393,36656,0],[24,19],[10,14]],[[38430,36740,0],[99,6],[57,-236],[-28,-44],[-60,1],[-10,-64],[-10,-24],[-14,-30],[-31,-71],[156,-40],[-38,-102]],[[40607,34915,0],[-44,-41]],[[40563,34874,0],[-12,12],[-9,10]],[[40542,34896,0],[-38,-41],[-353,-271],[-69,-36],[-324,-140],[-274,-84],[-143,25],[-356,5],[-76,-16],[-67,-4],[-48,17],[-85,42],[-140,80],[-31,24]],[[38538,34497,0],[-42,36],[-37,13],[-17,10],[-13,-21],[-15,-23],[-28,-42],[-7,-5],[-22,-11],[-14,-4],[-12,1],[-15,1],[-16,3],[-21,10],[-9,9],[-40,30],[-83,56],[-58,31],[-17,8],[-28,9],[-33,8],[-286,75],[-38,8],[-41,4],[-37,3],[-35,0],[-58,-3],[-177,-22],[-23,-4],[-87,-16],[-42,-7],[-17,-1],[-18,0],[-18,3],[-20,6],[-19,9],[-9,8],[-8,12],[-3,10],[0,9],[-19,-5],[-37,-3]],[[37019,34702,0],[-16,65]],[[37003,34767,0],[6,51],[9,50],[10,54],[12,78],[12,67],[7,39]],[[37428,34946,0],[-8,31],[-22,85]],[[37584,35105,0],[34,-2],[45,-2],[59,-3]],[[38551,36136,0],[113,-20],[79,-5],[87,-6],[82,-6],[29,1],[0,21],[49,0],[48,6],[48,10],[68,25],[76,24],[84,31],[117,45],[132,29],[88,16],[50,9],[41,-2],[33,-6],[20,-9],[49,-29],[34,-21],[41,-37],[87,-8],[154,-10],[155,-12],[148,-12],[107,-8],[65,-6],[147,-23],[34,-2]],[[41010,34391,0],[238,-172],[-161,-236],[-90,40]],[[40997,34023,0],[-4,-145]],[[41000,33505,0],[71,-151]],[[41317,33047,0],[87,-85]],[[41404,32962,0],[-18,-25],[-24,-26],[-16,-27],[-47,30],[-52,-6],[-71,16],[-51,24],[-47,19],[-105,21],[-111,55],[-26,6],[-42,-21],[-84,-41],[-56,-23],[-22,-12],[-42,-13],[-34,-2],[-24,-7],[-15,-6],[-54,-22],[-124,-61],[-82,13],[-87,-46],[-67,-47],[-71,-53],[-25,-18],[-79,-76],[-42,-44],[-180,-257],[-50,-121],[-10,-10],[-19,-56],[0,-25],[-11,-29],[3,-15],[-20,-50],[-29,-129],[2,-31],[-46,5],[-10,2],[0,-40],[5,-56],[-11,-45],[-12,4],[-57,-6],[-14,50],[-22,33],[-37,2],[14,-72],[21,-39],[22,-62],[18,-42],[-16,-28],[-18,12]],[[39409,31565,0],[-3,18],[-10,20],[-43,34],[-40,73],[0,18],[-33,75],[-28,1],[-14,24],[-17,3],[-28,20],[-5,11],[-24,103],[5,24],[-31,56],[5,66],[23,103],[15,0],[-11,56],[-16,35],[-13,27],[-25,-12],[-17,35],[1,33],[49,67],[-227,149],[-15,-9],[-15,-7],[-17,-6],[-18,-1],[-18,0],[-24,6],[-25,16],[-19,21],[-10,24],[-11,91],[-8,179],[-10,266],[17,161],[9,92],[3,90],[0,58],[-2,39],[-12,69],[-11,55],[-19,61],[-17,52],[-31,79],[-30,59],[-28,51],[-40,69],[-45,70],[-55,72],[-31,38],[-8,11],[-3,7],[-2,9],[-1,12],[11,26],[8,13],[48,59],[26,37],[19,24]],[[40542,34896,0],[21,-22]],[[40563,34874,0],[191,-190],[32,-36],[13,-19],[52,12]],[[39409,31565,0],[-88,-242],[-80,9],[-74,42],[-268,92],[6,-68]],[[38905,31398,0],[-30,1],[-112,-2],[-5,-63],[-170,11],[-102,108],[-72,76]],[[38414,31529,0],[-91,67],[-39,29]],[[38284,31625,0],[-64,23],[-94,33],[-27,1],[-106,-22],[-32,-26]],[[37961,31634,0],[-45,-53],[-9,-9]],[[37907,31572,0],[41,-53],[-131,-59],[-69,-62],[-12,33],[-77,-60]],[[37659,31371,0],[-37,17],[-11,73],[-39,125],[10,24],[0,34],[-16,38]],[[37566,31682,0],[24,23],[9,8]],[[37599,31713,0],[15,17],[19,40],[2,69],[49,9]],[[37684,31848,0],[7,5],[6,3]],[[37697,31856,0],[40,21],[0,9],[33,29]],[[37770,31915,0],[13,12],[4,4]],[[37787,31931,0],[18,23],[29,60],[-8,5],[-85,72],[-17,14],[-24,11],[-171,145],[-17,27],[-16,14],[-38,54],[-39,46],[-38,70],[-82,10],[-85,61],[-73,29],[-50,-4],[14,-30],[-25,-51],[-6,-66],[-117,29],[-33,15],[-88,16],[-169,48],[1,2],[8,11],[-1,4],[-7,28],[-2,13],[-1,5],[-4,3]],[[36661,32595,0],[-17,10],[-7,20]],[[36637,32625,0],[-12,25],[-12,59]],[[36613,32709,0],[6,19],[44,43],[4,4],[1,1],[10,24],[3,7],[1,4],[18,47],[24,74],[5,31]],[[36729,32963,0],[5,27]],[[36734,32990,0],[-3,57]],[[36731,33047,0],[-83,7],[-20,85],[-4,20],[-8,40],[8,36]],[[36624,33235,0],[2,85],[-33,-7]],[[36593,33313,0],[-71,96]],[[36522,33409,0],[-44,-11],[-115,-32],[-66,-16],[-161,31],[-23,2],[-3,44],[2,38],[17,63],[8,16],[20,21],[38,31],[29,15],[73,51],[2,16],[-62,30],[-44,35],[-49,60],[-14,32],[-26,29],[-38,68],[-8,36],[-53,87],[-33,84],[-3,3],[-11,24],[-7,51]],[[35951,34217,0],[-11,42],[-24,56]],[[35916,34315,0],[-2,9],[8,3],[60,15],[23,2],[127,11]],[[36132,34355,0],[74,-15],[19,-8],[73,21]],[[36298,34353,0],[59,7],[45,6],[14,14],[75,55]],[[36491,34435,0],[89,66],[110,67],[62,28],[109,52],[55,25],[52,24]],[[36968,34697,0],[51,5]],[[38905,31398,0],[39,-208],[229,-258],[168,-270],[216,-452],[75,-277]],[[39632,29933,0],[-330,-30],[-369,105],[-187,53],[-228,12],[-275,4],[-325,3],[-190,316],[-154,52],[-6,-17],[-251,88]],[[37317,30519,0],[284,705],[58,147]],[[37907,31572,0],[54,62]],[[38284,31625,0],[130,-96]],[[36593,33313,0],[33,8],[-2,-86]],[[36624,33235,0],[-7,-36],[8,-40],[4,-19],[8,-37],[3,-14],[7,-38],[40,-2],[30,-2],[14,0]],[[36731,33047,0],[1,-27],[2,-30]],[[36734,32990,0],[-10,-60],[-15,-46],[-2,-5],[-7,-20],[-3,-12],[-11,-36],[-5,-10],[-12,-21],[-2,-3],[-48,-48],[-6,-20]],[[36637,32625,0],[7,-19],[17,-11]],[[36661,32595,0],[7,-20],[1,-2],[7,-22],[-1,-4],[-6,-15],[0,-1],[-2,-1],[-43,-35],[-33,-7],[-41,-57],[-12,-25],[48,-44],[-17,-84],[-89,-63],[5,-28],[-47,-27],[1,-51],[-69,-14],[2,-78],[48,-17],[47,-8],[-28,-48],[-1,-119],[-6,-23],[-2,-36],[1,-49],[6,-26],[1,-23],[-18,-4],[-12,-49],[29,-5],[-11,-52],[29,-17],[97,-39],[-13,-45],[121,-37],[30,-13],[187,-97],[87,-43],[16,-22],[-38,-37],[-24,-17],[-15,-13],[2,-10],[-22,-24],[-28,-34],[-33,-29],[-51,-55],[13,-10],[-23,-29],[42,-35],[9,-22],[20,-17],[-50,-73],[-35,18],[-38,-63],[-16,-37],[-29,-37],[-15,-9],[-1,0],[-26,-15],[-27,-27],[-45,27],[-54,35],[-87,49],[-1,1],[-30,8],[0,1],[-67,45],[-130,27],[-147,11],[-62,4],[-28,-4],[-62,-12],[-65,-13],[-76,-20],[-52,-23],[0,-1],[-1,0]],[[35688,30805,0],[-113,-52],[-119,-55],[-12,8],[-43,31],[-34,24],[-1,1],[-10,7],[-224,178],[-48,39],[25,36],[1,26],[-18,-10],[-19,18],[-82,36],[-62,38],[-10,5],[-52,-39],[-34,-26],[-57,-85],[-41,20],[-102,60],[-38,16],[-50,-34],[-75,-46],[-35,-9],[-48,-14],[-18,-3],[-41,-6],[-69,-36],[-126,-65],[-24,-19],[-46,-19],[-55,-13],[-26,-7],[-30,-21],[-72,-47],[-8,10],[137,279],[27,92],[25,64],[12,68],[-74,18],[-32,8],[-81,24],[18,131],[18,159],[-93,30],[-67,21],[5,65],[14,29],[-61,32],[-35,-73],[-56,18],[-45,24],[-32,36],[-51,43],[-175,-198],[-91,24],[-52,28],[-183,102],[169,116],[31,41],[20,25],[39,95],[4,10],[26,60],[6,17],[4,12],[27,51],[14,43],[9,28],[27,80],[-3,22],[9,47],[2,13],[20,73],[9,30],[21,66],[43,120],[22,45],[9,19],[35,66],[36,39],[24,51],[-6,11],[32,38],[15,16],[38,35],[0,15],[76,84],[9,10]],[[35916,34315,0],[24,-59],[11,-39]],[[35951,34217,0],[2,-19],[5,-30],[11,-19],[34,-86],[58,-97],[5,-33],[37,-69],[28,-30],[15,-30],[4,-8],[49,-54],[38,-33],[18,-9],[43,-20],[-2,-21],[-40,-25],[-33,-21],[-15,-10],[-13,-6],[-38,-33],[-18,-21],[-27,-77],[-1,-26],[-1,-11],[6,-46],[20,-4],[164,-31],[63,17],[115,32],[44,12]],[[31021,31876,0],[184,-21],[26,0],[118,-1]],[[31389,31854,0],[30,-11],[29,-3]],[[31448,31840,0],[99,-9],[107,-9],[126,-8]],[[31780,31814,0],[220,-16]],[[32038,31797,0],[228,-15],[-3,-10],[9,-4],[121,-15],[44,10],[198,0],[100,-3],[46,-2],[-2,-33],[-21,3],[-26,-87],[83,-83],[-14,-139],[154,-68],[-78,-102],[140,-145],[1,-22],[-81,15],[-183,43],[-278,5],[-80,13],[-12,-43],[-12,-53],[20,-19],[11,-27],[198,-13],[107,4],[-2,-15],[-26,-209],[-8,-90],[-3,-27],[-2,-43],[5,-95],[4,-29],[58,3],[-2,-151]],[[32732,30351,0],[0,-30],[0,-52],[-1,-58],[236,-3],[45,-5],[4,-27],[-7,-8],[-4,-18],[18,-105],[17,-59],[40,-3],[24,-61],[-38,-8],[-171,-23],[-12,-9],[-102,-3],[-236,1],[5,-27],[104,-230],[-20,0],[1,-19]],[[32635,29604,0],[1,-12],[7,-23],[22,-68]],[[32665,29501,0],[3,-22]],[[32668,29479,0],[-27,-1],[-22,-15],[-22,10],[-68,18],[-139,21],[5,-101],[-4,-31],[-559,74],[-107,-21],[1,12]],[[31726,29445,0],[3,21]],[[31729,29466,0],[32,136],[-34,134],[-9,4],[-4,65],[-43,-17],[-116,120],[-29,31],[-25,17],[-66,73],[-59,44],[-190,-276],[-48,3],[-221,10],[-73,-57],[-101,-34]],[[30743,29719,0],[-22,-7]],[[30721,29712,0],[-4,59],[-4,119],[26,55]],[[30739,29945,0],[35,103]],[[30774,30048,0],[9,72],[47,91]],[[30830,30211,0],[-133,77],[-77,72],[-129,106],[17,34],[20,42],[16,34],[-5,11],[-5,9],[-17,12],[-6,9],[-25,41],[-18,30],[-69,133],[-2,18],[-50,-29],[-103,-58],[-94,-223],[-166,37],[-21,6],[-53,5]],[[29910,30577,0],[-19,163]],[[29780,31191,0],[-28,29],[-114,116]],[[29523,31591,0],[-60,130],[20,39],[21,33]],[[29708,32123,0],[52,-34],[58,-104]],[[29818,31985,0],[31,8],[32,7]],[[29997,32023,0],[185,142],[78,59]],[[30333,32442,0],[144,-110],[39,-90]],[[30516,32242,0],[36,-79],[114,-149]],[[30721,29712,0],[17,-93],[30,-63]],[[30768,29556,0],[12,-124]],[[30780,29432,0],[14,-151],[20,-100],[-30,-4],[-3,-234],[-27,-117],[-57,-449],[-3,-66],[0,-101],[2,-34],[2,-175],[-20,5],[7,-73],[24,-45],[-17,-13],[16,-34],[-51,-67],[-13,-17],[-157,-35],[-45,45],[-65,-115],[-27,-34],[-42,-59],[-63,-83],[-1,-152],[-179,-81]],[[30065,27243,0],[-17,24],[-8,14],[-116,182],[-5,9],[-13,27],[-17,40],[-5,11],[-7,11],[-33,69],[-51,79],[-16,30],[-15,32],[-25,52],[-13,28],[-7,20],[-19,47],[-11,29],[-24,52],[-37,-16],[-58,81],[-43,60],[-8,12],[-6,11],[-28,54],[-14,24],[-85,147],[-7,13],[14,8],[13,7],[-24,50],[-67,143],[-5,10],[-24,38],[-84,136]],[[29200,28777,0],[7,7],[-20,39],[-29,57],[-10,39],[-38,52],[-39,49],[147,74],[49,19],[174,80],[-62,85],[-73,88],[56,35],[83,35],[72,38]],[[29543,29487,0],[47,27]],[[29590,29514,0],[108,60],[-55,141]],[[29600,29726,0],[-41,10],[-108,24],[-19,5]],[[29215,29880,0],[-165,132],[52,73],[33,31],[68,75],[-6,6]],[[29274,30272,0],[29,26],[169,111]],[[29472,30409,0],[-13,25],[143,54]],[[29838,30576,0],[72,1]],[[30065,27243,0],[16,-25],[113,-137],[56,-42],[47,-53],[49,-68],[133,-110]],[[30479,26808,0],[34,-44],[-28,-37]],[[28510,25735,0],[-60,69],[-47,85],[-13,29],[-10,18],[9,29],[170,82],[9,-14],[68,25],[37,21],[-16,71],[-20,33],[-35,-16],[-11,42],[7,36],[-5,52],[-9,11],[4,201],[-42,15],[-13,1],[-53,31],[-16,3],[-31,8],[-77,40],[-40,27],[-20,9],[-51,29],[-21,-2],[-26,23],[-153,118],[-116,126],[-14,32],[-47,131],[-79,-25],[-42,111],[-42,123],[-104,295],[-105,604],[-74,89],[-252,-3],[-2,172],[164,-22],[28,116],[-8,49],[9,86],[0,13],[-34,75],[-16,39],[-15,58],[-21,58],[-9,9],[368,50],[91,68],[138,9],[157,-50],[114,183],[57,7],[154,-330],[19,3],[1,-23],[29,-45],[4,-23],[22,-41],[32,-26],[32,30],[109,52],[11,2],[51,-32],[26,-6],[31,2],[62,20],[44,-11],[36,-13],[17,-12],[30,-45],[22,-27],[36,-29],[11,-25],[38,18],[52,41],[99,57],[41,26]],[[39632,29933,0],[-8,-303],[-206,-336],[-22,-40],[-17,-28],[-39,5],[-2,-7],[-54,-26],[-20,-37],[-4,-6],[12,-20],[20,-25],[-4,-21],[-37,13],[-17,-18],[14,-12],[4,-13],[-38,-40],[-35,-61],[51,-65],[33,-28],[88,-60],[-10,-25],[-57,25],[-20,7],[-16,4],[-30,-38],[-76,60],[-47,-10],[-1,-10],[-1,-21]],[[39093,28797,0],[-27,-114],[-10,-6],[4,-37],[-469,72],[-177,-22],[-187,-237],[-254,-322],[25,-326]],[[37998,27805,0],[-23,-1]],[[37975,27804,0],[-16,-2],[-42,-11],[-44,-10]],[[37766,27877,0],[-8,-2],[-48,-8],[-3,15],[-50,-9]],[[37657,27873,0],[-19,24],[-26,164],[-30,99],[-71,197],[-23,103],[-31,72],[-55,-24],[-39,38],[-30,23],[-68,39],[-44,32],[-37,35]],[[37184,28675,0],[53,95]],[[37237,28770,0],[36,56]],[[37273,28826,0],[26,38]],[[37299,28864,0],[73,100]],[[37372,28964,0],[-58,76]],[[37314,29040,0],[-49,75],[-46,79]],[[37219,29194,0],[-59,102]],[[37160,29296,0],[-26,75]],[[37134,29371,0],[-54,160]],[[37080,29531,0],[44,212]],[[37124,29743,0],[24,125],[52,258],[41,200]],[[37241,30326,0],[41,101]],[[37282,30427,0],[35,92]],[[35997,30857,0],[32,-3],[57,-6]],[[36086,30848,0],[118,-28]],[[36204,30820,0],[72,-6],[24,-1]],[[36300,30813,0],[146,-42],[310,-91]],[[36756,30680,0],[498,-142],[63,-19]],[[37282,30427,0],[-22,-55],[-19,-46]],[[37124,29743,0],[-42,-201],[-2,-11]],[[37134,29371,0],[18,-53],[8,-22]],[[37160,29296,0],[17,-29],[42,-73]],[[37314,29040,0],[11,-14],[47,-62]],[[37299,28864,0],[-9,-13],[-17,-25]],[[37273,28826,0],[-23,-36],[-13,-20]],[[37184,28675,0],[-57,-112]],[[37127,28563,0],[-15,-26],[-49,-88]],[[37063,28449,0],[-27,-36]],[[37036,28413,0],[-6,-14],[-28,-53]],[[37002,28346,0],[-18,-2]],[[36984,28344,0],[-32,-8],[-4,-1]],[[36948,28335,0],[-76,-43]],[[36872,28292,0],[-38,-17],[-13,-5]],[[36821,28270,0],[-9,-3],[-48,-19]],[[36764,28248,0],[-80,-23]],[[36684,28225,0],[-2,4],[-2,6]],[[36680,28235,0],[-27,-4],[-60,-10]],[[36593,28221,0],[-13,0],[-3,0]],[[36577,28221,0],[29,-16],[2,-1]],[[36608,28204,0],[-8,-1],[-18,-2]],[[36582,28201,0],[-31,-3]],[[36551,28198,0],[-13,0],[-15,0]],[[36523,28198,0],[-33,5]],[[36490,28203,0],[-67,14],[-36,8]],[[36387,28225,0],[-14,4],[-26,7]],[[36347,28236,0],[-47,13],[-73,20]],[[36227,28269,0],[-72,24],[-75,24]],[[36080,28317,0],[-165,63]],[[35915,28380,0],[-24,9],[-39,16]],[[35852,28405,0],[-100,43],[-103,51]],[[35649,28499,0],[-37,17],[-60,29]],[[35552,28545,0],[-107,49]],[[35445,28594,0],[-8,1],[-69,13]],[[35368,28608,0],[-55,-84],[-71,-106]],[[35242,28418,0],[-219,219]],[[35023,28637,0],[-83,-84],[-18,-19]],[[34922,28534,0],[-62,65]],[[34860,28599,0],[-33,23],[-23,17]],[[34804,28639,0],[-144,-166],[-35,10]],[[34625,28483,0],[-9,10],[-13,15]],[[34603,28508,0],[-51,19]],[[34552,28527,0],[-76,42],[-61,34]],[[34415,28603,0],[-39,15],[-44,36]],[[34332,28654,0],[-28,4],[-21,4]],[[34283,28662,0],[-7,-7],[-10,-8]],[[34266,28647,0],[-36,-23],[-24,-15]],[[34206,28609,0],[-16,-22],[-8,-12]],[[34182,28575,0],[-53,-96],[-13,-32]],[[34116,28447,0],[-8,-13],[-10,-16],[-2,-3],[-12,-20]],[[34084,28395,0],[-55,-78]],[[34029,28317,0],[-90,180],[-41,82]],[[33898,28579,0],[-33,68],[-37,72],[-9,4],[-9,4]],[[33810,28727,0],[-10,5]],[[33800,28732,0],[-9,3],[-9,5]],[[33782,28740,0],[-9,5],[-10,5]],[[33763,28750,0],[-9,5]],[[33754,28755,0],[-8,5],[-9,5],[-9,5],[-8,6],[-9,6]],[[33711,28782,0],[-8,6],[-8,6]],[[33695,28794,0],[-9,6]],[[33686,28800,0],[-8,6],[-8,6],[-8,7]],[[33662,28819,0],[-7,7],[-8,6],[-7,7]],[[33640,28839,0],[-7,7],[-8,7],[-6,8]],[[33619,28861,0],[-8,7],[-7,8]],[[33604,28876,0],[-6,7],[-7,8]],[[33591,28891,0],[-6,8],[-6,8]],[[33579,28907,0],[-6,7],[-6,9]],[[33567,28923,0],[-6,8]],[[33561,28931,0],[-5,8],[-6,9]],[[33550,28948,0],[-5,8]],[[33545,28956,0],[-5,8],[-5,9],[-5,9]],[[33530,28982,0],[-5,9]],[[33525,28991,0],[-4,8],[-5,10]],[[33516,29009,0],[-4,9]],[[33512,29018,0],[-3,8],[-4,10]],[[33505,29036,0],[-4,9],[-3,10],[-4,9]],[[33494,29064,0],[-3,9],[-3,9],[-3,10],[-2,9],[-3,14],[-1,2],[0,1],[0,2],[-1,1],[0,1],[0,1]],[[33478,29123,0],[0,2],[0,2],[-1,1],[0,2],[0,1],[0,1]],[[33477,29132,0],[0,1],[0,1],[0,2],[-1,1],[0,2],[0,2]],[[33476,29141,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1]],[[33475,29150,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[33474,29169,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[33474,29179,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2]],[[33474,29188,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1]],[[33474,29197,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2]],[[33474,29207,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[33476,29235,0],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2]],[[33477,29243,0],[0,2],[0,1],[0,1],[1,2]],[[33478,29249,0],[0,1],[0,1],[0,2]],[[33478,29253,0],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1]],[[33480,29262,0],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1]],[[33482,29273,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[1,2]],[[33485,29289,0],[0,2],[1,2],[0,2],[0,1],[1,2],[0,1]],[[33487,29299,0],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[0,1]],[[33494,29326,0],[1,1],[0,2],[1,1],[0,1],[0,2],[1,1],[0,1]],[[33497,29335,0],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,2]],[[33500,29344,0],[0,1],[1,1],[0,2],[1,0],[0,2],[1,2],[0,1],[1,1],[1,2],[0,1],[1,1],[0,2],[1,1],[0,1]],[[33507,29362,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,2],[0,1],[1,1],[1,2],[0,1]],[[33514,29380,0],[0,1],[1,0],[0,2],[1,0],[0,2],[0,1],[1,0],[1,1],[0,1]],[[33518,29388,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1]],[[33522,29398,0],[1,0],[0,2],[1,0],[0,2],[1,0],[0,1],[1,1],[0,2]],[[33526,29406,0],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1]],[[33531,29414,0],[1,1],[0,2],[1,0],[0,1],[1,1],[1,2],[0,1],[1,1]],[[33536,29423,0],[1,2],[0,1]],[[33537,29426,0],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1]],[[33541,29433,0],[1,1],[1,0],[0,2],[1,1],[1,1],[0,1],[1,1]],[[33546,29440,0],[0,1],[1,1],[1,2],[1,0],[0,2],[1,1],[1,1],[0,1]],[[33551,29449,0],[1,0],[0,2],[1,1],[1,1],[1,1],[1,2]],[[33556,29456,0],[1,1],[0,1],[1,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1]],[[33561,29464,0],[1,0],[1,2],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1]],[[33567,29472,0],[1,0],[0,2],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1]],[[33573,29480,0],[1,0],[0,2],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1]],[[33578,29487,0],[1,1],[0,1],[2,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,2],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1]],[[33590,29502,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,2],[0,1],[1,0],[1,1]],[[33597,29509,0],[1,1],[1,2],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1]],[[33603,29516,0],[1,1],[0,1],[2,0],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1]],[[33610,29523,0],[0,1],[1,1]],[[33611,29525,0],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0]],[[33630,29543,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,2],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1]],[[33652,29563,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[2,2],[1,1]],[[33661,29570,0],[1,0],[1,1],[1,0],[1,2],[1,0],[1,1],[1,0],[1,1]],[[33669,29575,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1]],[[33677,29581,0],[1,0],[1,1],[1,1],[1,0]],[[33681,29583,0],[1,1],[1,1],[1,0],[1,1]],[[33685,29586,0],[1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[2,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1]],[[33700,29597,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1]],[[33708,29603,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1]],[[33716,29609,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1]],[[33724,29615,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1]],[[33732,29621,0],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1]],[[33747,29632,0],[1,0],[0,2],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1]],[[33754,29639,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1]],[[33761,29644,0],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1]],[[33769,29651,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[0,2],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,2]],[[33784,29665,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,2]],[[33792,29672,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[0,1]],[[33799,29678,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,2],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,2],[1,1],[1,1],[1,0],[1,1],[1,2],[1,1],[1,0],[1,1]],[[33820,29697,0],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,2],[0,1]],[[33833,29711,0],[1,0],[1,1],[1,1],[1,2],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1]],[[33847,29724,0],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,2],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1]],[[33860,29738,0],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1]],[[33866,29745,0],[1,1],[0,1],[2,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1]],[[33873,29753,0],[1,1],[1,0],[0,2],[1,0],[1,1],[0,1],[1,0],[1,1],[1,2],[1,1],[1,0],[1,2],[1,1],[1,1]],[[33885,29766,0],[1,2],[1,0],[0,1],[1,0],[1,2],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,2],[1,0]],[[33898,29781,0],[0,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,0],[0,1],[1,2],[2,1],[0,1],[1,1],[1,2],[1,0]],[[33910,29796,0],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,2],[1,0],[1,1],[0,1]],[[33927,29819,0],[1,0],[0,1],[1,2],[1,0],[0,1],[1,0],[1,2],[1,1],[1,1]],[[33934,29827,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,2],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[1,2],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,2]],[[33951,29852,0],[1,1],[0,1],[1,1],[1,0],[0,2],[1,0]],[[33955,29857,0],[0,2],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[24,40]],[[33986,29907,0],[72,133]],[[34058,30040,0],[112,247]],[[34170,30287,0],[91,245]],[[34261,30532,0],[713,-233],[76,96],[63,70],[91,84],[109,80]],[[35313,30629,0],[5,24],[4,17]],[[35322,30670,0],[15,60],[6,29]],[[35343,30759,0],[107,14],[180,24]],[[35630,30797,0],[58,8]],[[35688,30805,0],[92,13]],[[35780,30818,0],[25,3],[17,2]],[[35822,30823,0],[87,11],[-4,23],[29,-2],[63,2]],[[37787,31931,0],[-17,-16]],[[37697,31856,0],[-13,-8]],[[37599,31713,0],[-33,-31]],[[36756,30680,0],[-456,133]],[[36300,30813,0],[-70,5],[-26,2]],[[36086,30848,0],[-89,9]],[[35822,30823,0],[-42,-5]],[[35780,30818,0],[-150,-21]],[[35343,30759,0],[-21,-89]],[[35322,30670,0],[-6,-29],[-3,-12]],[[34261,30532,0],[-386,121]],[[33875,30653,0],[120,133],[69,155],[104,238],[97,217],[65,145],[256,265],[239,199]],[[34825,32005,0],[171,143]],[[34996,32148,0],[121,104],[27,23],[148,44],[269,-9],[303,-11],[272,-9],[164,106],[132,86]],[[36432,32482,0],[124,81]],[[36556,32563,0],[19,13],[18,160]],[[36593,32736,0],[11,94]],[[36604,32830,0],[80,85],[45,48]],[[39093,28797,0],[178,-247],[131,-181],[205,-296],[53,-73],[14,-18],[37,-41],[32,-28],[30,-18],[23,-10],[59,-24],[42,-13],[36,-5],[34,-4],[32,-2],[65,2],[19,1],[298,23],[99,2],[67,-7],[31,-8],[52,-18],[43,-22],[35,-23],[22,-21],[21,-22],[17,-23],[24,-36],[11,-22],[12,-29],[10,-28],[9,-31],[6,-75],[1,-65],[-4,-58],[-9,-51],[-9,-38],[-101,-279],[-30,-99],[-1011,-176],[-648,-98],[14,-974]],[[39043,25662,0],[-17,-4],[-14,9]],[[39012,25667,0],[-93,66],[-58,45]],[[38861,25778,0],[-66,43]],[[38795,25821,0],[-34,25],[-21,8]],[[38740,25854,0],[-47,7]],[[38693,25861,0],[-62,10],[-37,1]],[[38594,25872,0],[-188,24],[-57,14]],[[38349,25910,0],[-33,9],[-71,5],[-51,-9]],[[38194,25915,0],[-14,44]],[[38048,26290,0],[1,19],[-65,132]],[[37984,26441,0],[-14,138],[-4,66]],[[37951,26775,0],[-8,64],[-26,106],[-26,109]],[[37891,27054,0],[-67,386],[-8,39]],[[37816,27479,0],[21,0],[121,1],[78,49]],[[38036,27529,0],[25,38],[-13,20]],[[38040,27596,0],[-6,35],[-18,84],[-18,90]],[[41767,24889,0],[-52,3],[-140,8]],[[41448,24898,0],[-77,-7],[-266,-45],[-66,-10],[-52,-4]],[[40944,24845,0],[-147,59],[-76,25],[-77,20]],[[40577,24958,0],[-35,3],[-39,-1],[-65,-14]],[[40398,24931,0],[-44,-20],[-57,-37]],[[40238,24821,0],[-57,-79],[-24,-55],[-40,-111]],[[40117,24576,0],[-42,-58],[-313,-196]],[[38194,25915,0],[51,10],[71,-5],[33,-10]],[[38594,25872,0],[36,-1],[63,-10]],[[38740,25854,0],[21,-7],[34,-26]],[[38861,25778,0],[58,-44],[93,-67]],[[39043,25662,0],[-14,975],[648,98],[1011,176],[-4,-29],[0,-112],[1,-20],[14,-84],[45,-96],[144,-218],[44,-77],[17,-38],[16,-56],[77,-467],[8,-42],[12,-55],[24,-57],[24,-50],[29,-38],[25,-28],[20,-23],[139,-127],[444,-405]],[[45299,27174,0],[-14,-68]],[[45285,27106,0],[-25,-76]],[[45260,27030,0],[99,-221]],[[45359,26809,0],[19,-26]],[[45378,26783,0],[16,-36]],[[45394,26747,0],[4,-33]],[[45398,26714,0],[-2,-38]],[[45396,26676,0],[-16,-44]],[[45380,26632,0],[0,-15],[4,-13],[105,-51]],[[45489,26553,0],[37,-13]],[[45526,26540,0],[66,-15]],[[45592,26525,0],[-63,9],[-103,12],[-81,41],[-117,99],[-109,107],[-57,53],[-38,36],[-23,21],[-83,68],[-102,74],[-107,46]],[[44709,27091,0],[-27,6],[-94,21]],[[44588,27118,0],[-117,2],[-127,-31],[-105,-47],[-50,-41],[-84,-73],[-149,-172]],[[43956,26756,0],[-78,-92],[0,39],[0,1],[-1,202],[-96,223],[-1,24],[-4,19],[-16,48],[-9,25],[-10,41],[-8,40],[-4,43],[-2,51],[4,46],[7,60],[-8,93],[-7,67],[1,44],[7,238],[2,81],[253,629],[163,206],[118,81],[268,-51],[87,-88],[55,-20],[84,-37],[81,-49],[46,-27],[53,-39],[56,-49],[46,-42],[43,-49],[249,-110]],[[45335,28404,0],[-17,-80]],[[45318,28324,0],[-10,-60]],[[45308,28264,0],[-4,-90],[0,-64]],[[45304,28110,0],[2,-42]],[[45306,28068,0],[6,-53]],[[45312,28015,0],[6,-44]],[[45318,27971,0],[16,-81]],[[45334,27890,0],[13,-58]],[[45347,27832,0],[9,-31]],[[45356,27801,0],[7,-46]],[[45363,27755,0],[3,-44]],[[45366,27711,0],[-2,-54]],[[45364,27657,0],[-13,-93]],[[45351,27564,0],[-10,-75]],[[45341,27489,0],[-13,-90]],[[45328,27399,0],[-16,-126]],[[45312,27273,0],[-13,-99]],[[37657,27873,0],[-42,-5],[-281,-33],[-91,19]],[[36919,27926,0],[-34,6],[-128,24]],[[36628,27976,0],[-124,14],[-358,37],[-76,1],[-63,-12]],[[35921,28030,0],[-38,-3],[-30,-1]],[[35853,28026,0],[-134,-7],[-214,-6],[-384,-11]],[[34303,27713,0],[-73,67],[-46,70],[-68,107],[-43,66],[-35,122]],[[34038,28145,0],[-21,64],[-2,9],[0,14]],[[34015,28232,0],[9,20],[12,36]],[[34036,28288,0],[1,17],[-8,12]],[[34084,28395,0],[32,52]],[[34182,28575,0],[24,34]],[[34206,28609,0],[60,38]],[[34266,28647,0],[17,15]],[[34283,28662,0],[49,-8]],[[34415,28603,0],[137,-76]],[[34603,28508,0],[22,-25]],[[34804,28639,0],[56,-40]],[[34922,28534,0],[101,103]],[[35242,28418,0],[126,190]],[[35368,28608,0],[77,-14]],[[35552,28545,0],[97,-46]],[[35852,28405,0],[63,-25]],[[36080,28317,0],[147,-48]],[[36227,28269,0],[120,-33]],[[36347,28236,0],[40,-11]],[[36387,28225,0],[103,-22]],[[36523,28198,0],[28,0]],[[36582,28201,0],[26,3]],[[36608,28204,0],[-31,17]],[[36577,28221,0],[16,0]],[[36593,28221,0],[87,14]],[[36680,28235,0],[4,-10]],[[36764,28248,0],[57,22]],[[36821,28270,0],[51,22]],[[36948,28335,0],[36,9]],[[37002,28346,0],[34,67]],[[37063,28449,0],[64,114]],[[46977,28799,0],[237,-93],[381,8],[283,6],[-9,-54],[-45,-184],[-19,-65],[-12,-67],[59,-58],[57,-54],[7,-7],[36,-36],[5,-5],[75,-109],[66,-97],[13,-17],[2,-2],[14,-19],[86,-107]],[[48213,27839,0],[31,-38],[77,-98],[30,-36],[35,-34],[15,-15],[152,-111]],[[48553,27507,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[-2,-3],[-20,-20],[-58,-61],[-64,-68],[-22,-23],[-12,-11],[-21,-21],[-25,-23],[-52,-48],[-20,-18],[-28,-23],[-38,-29],[-22,-14],[-31,-22],[-43,-21],[-2,-2],[-69,-27],[-52,-15],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-2],[1,0],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[-39,-35],[-24,-72],[-20,-59],[-24,-135],[-6,-20],[-10,-29],[-1,-2],[-19,-79],[-14,-61],[-36,-153],[-69,-287]],[[47621,26027,0],[-19,7],[-107,44]],[[47495,26078,0],[-121,49],[-95,54]],[[47279,26181,0],[-85,57],[-110,97]],[[47084,26335,0],[-9,7],[-11,14]],[[47064,26356,0],[-31,35]],[[47033,26391,0],[-10,12]],[[47023,26403,0],[-30,35]],[[46993,26438,0],[-4,5],[-3,5]],[[46986,26448,0],[-25,36],[-28,41]],[[46933,26525,0],[-56,80]],[[46877,26605,0],[-46,86],[-12,23]],[[46819,26714,0],[-4,7],[-7,10]],[[46808,26731,0],[-3,4],[-4,7]],[[46801,26742,0],[-9,29]],[[46792,26771,0],[-18,52],[-13,39]],[[46761,26862,0],[-6,23],[-41,103],[-55,120],[-16,175],[-5,49],[-29,83],[-3,8],[-5,17],[46,68],[-40,64],[-3,54],[24,45],[27,43],[6,10],[16,29],[-60,29],[-48,24],[-3,16],[0,8],[3,12],[8,17],[21,50],[59,100],[25,45],[73,99],[43,54],[37,36],[27,28],[47,44],[77,62],[-17,22],[11,5],[-56,121],[-12,27],[-32,-3],[-31,-8],[23,64]],[[46872,28605,0],[10,26],[95,168]],[[50372,27810,0],[0,-120],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-19,-12],[-18,-18],[-10,-13],[-51,-84],[-39,-53],[-39,-48],[-45,-46],[-9,-8],[-217,-73]],[[49817,27332,0],[-141,-16],[-70,-5],[-95,-2],[-54,1],[-82,3],[-101,9],[-21,3],[-191,29],[-63,13],[-49,10],[-33,8],[-51,12],[-67,22],[-6,1],[-9,4],[-93,34],[-138,49]],[[48213,27839,0],[94,70],[19,18],[28,28],[51,59],[44,63],[23,43],[9,18],[19,45],[17,46],[17,56],[11,38],[30,129],[38,170],[40,168],[38,165],[14,59],[13,51],[16,59],[32,89],[33,75],[31,70],[20,38],[18,34],[12,22],[54,81],[25,32],[33,42],[50,47],[47,46],[100,92],[38,36],[49,54],[46,58],[31,47],[28,60],[23,57],[4,14]],[[49408,30118,0],[103,-24],[3,-1]],[[49514,30093,0],[9,-2],[5,-1]],[[49528,30090,0],[110,-28],[2,-1]],[[49640,30061,0],[74,-19],[-5,-21],[-17,-53],[-8,-21],[-6,-15],[-34,-71],[-1,-4],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-2],[44,-21],[47,-19],[15,-5],[6,-2],[40,-12],[-18,-73],[-25,-48],[-25,-45],[-37,-67],[-52,-83],[-76,-109],[-100,-140],[-43,-127],[121,-39],[-21,-55],[19,-42],[28,-61],[7,-15],[7,-12],[34,-64],[5,-8],[2,-4],[32,-53],[41,-64],[82,-110],[7,-9],[111,-127],[85,-87],[16,-17],[54,-54],[62,-54],[7,-6],[31,-25],[6,-6],[3,-2],[96,-79],[90,-64],[-24,-45],[-2,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[0,-2],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-2],[-1,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-2],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0]],[[46977,28799,0],[79,148],[46,39],[9,32],[90,89],[0,34],[0,29],[0,9],[28,327],[17,357],[-4,85],[-3,37],[-1,8],[-47,103],[136,15]],[[47327,30111,0],[608,69],[161,3]],[[48096,30183,0],[26,0],[43,2]],[[48165,30185,0],[127,2],[270,8]],[[48562,30195,0],[12,0],[53,2]],[[48627,30197,0],[228,5],[53,2],[78,2]],[[48986,30206,0],[29,0],[109,4],[54,55]],[[49178,30265,0],[78,-50],[152,-97]],[[41644,45230,0],[86,-2],[49,1]],[[41833,45234,0],[14,4],[36,9],[11,1]],[[41894,45248,0],[22,-1],[100,-3]],[[42087,45253,0],[18,-47],[-8,-21],[10,-28]],[[42133,45108,0],[30,-46],[13,-19],[-7,-24]],[[42204,44984,0],[28,-22],[39,-99],[-66,-18],[-71,-27],[-26,-9]],[[42108,44809,0],[-152,-19],[-146,-21],[-50,-12]],[[41760,44757,0],[-135,-38],[-61,-12],[-174,-35]],[[41032,44707,0],[-14,3],[-67,16],[-100,52]],[[40496,44775,0],[-35,-8],[-130,-13]],[[40319,44753,0],[-9,0],[-11,-1]],[[40299,44752,0],[-20,1],[-11,-1],[-12,2],[-44,5],[-44,6]],[[40096,44776,0],[-59,9],[6,66]],[[40049,45000,0],[-45,0],[-3,70]],[[40096,45081,0],[63,3],[85,24]],[[40480,45178,0],[-16,24]],[[40422,45301,0],[-29,52],[-21,42],[-87,147],[165,27],[37,4],[33,3]],[[40552,45569,0],[35,-11],[99,-56],[48,-27]],[[40900,45382,0],[38,-22],[21,-11]],[[40959,45349,0],[32,-18],[39,-21],[62,-28],[38,-12],[20,-5],[68,-10],[77,-8]],[[42571,30927,0],[-5,-16],[-6,-2],[-11,-42],[-37,-203],[-3,-22],[-7,-14],[-200,-23],[-6,49],[-8,72],[-63,69],[13,42],[12,28],[20,51],[32,-3],[10,2],[49,5],[8,4],[47,5],[4,0],[51,3],[14,2],[36,-3],[50,-4]],[[48289,32240,0],[38,2],[24,1]],[[48351,32243,0],[23,4],[84,23]],[[48458,32270,0],[74,22],[136,49]],[[48668,32341,0],[0,1]],[[48668,32342,0],[17,-50]],[[48685,32292,0],[9,-25],[16,-48],[1,-1],[32,-104],[183,-302]],[[48926,31812,0],[-58,-45],[9,-15]],[[48877,31752,0],[13,-21],[12,-19]],[[48902,31712,0],[7,3],[13,0],[8,-3],[10,-14],[0,-13]],[[48940,31685,0],[-63,-194],[-31,-91]],[[48846,31400,0],[-16,-55]],[[48830,31345,0],[-12,-50],[-5,-43]],[[48813,31252,0],[-4,-70],[3,-68],[2,-15],[5,-42]],[[48819,31057,0],[15,-100]],[[48834,30957,0],[33,-226]],[[48867,30731,0],[11,-40]],[[48878,30691,0],[9,-30],[3,-10],[21,-55],[15,-32]],[[48926,30564,0],[17,-32],[17,-25],[26,-33],[16,-20]],[[49002,30454,0],[21,-23],[74,-79]],[[49097,30352,0],[71,-75]],[[49168,30277,0],[10,-11]],[[49178,30266,0],[0,-1]],[[49178,30265,0],[-54,-54],[-108,-4],[-1,0],[-26,-1],[-3,0]],[[48986,30206,0],[-131,-3],[-228,-6]],[[48562,30195,0],[-270,-7],[-127,-3]],[[48165,30185,0],[-43,-1],[-25,-1],[-1,0]],[[47327,30111,0],[-1,0],[-134,-15],[0,1],[-58,84],[-87,57],[-88,56],[-285,72],[-155,44],[-99,55],[-53,35],[-59,57],[-88,101],[-87,108]],[[46133,30766,0],[-102,211],[-60,126]],[[45971,31103,0],[-19,142],[-2,140]],[[45950,31385,0],[0,119]],[[45950,31504,0],[12,331],[10,251]],[[45972,32086,0],[1,23],[2,82],[0,48],[170,35]],[[46145,32274,0],[71,9],[107,6]],[[46323,32289,0],[279,13],[68,5],[77,6]],[[46825,32327,0],[103,25],[230,68]],[[47158,32420,0],[83,18],[51,11]],[[47394,32449,0],[238,-15],[54,-5]],[[47686,32429,0],[61,-8],[79,-21],[61,-19]],[[47887,32381,0],[344,-130],[58,-11]],[[50170,32640,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1]],[[50196,32639,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[50208,32639,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[50220,32637,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[50229,32637,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50235,32637,0],[1,0],[0,-1]],[[50236,32636,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50242,32636,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1]],[[50249,32635,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50254,32635,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[0,-1]],[[50266,32633,0],[1,0],[1,0],[1,0],[1,0]],[[50270,32633,0],[1,0],[0,-1]],[[50271,32632,0],[1,0],[1,0],[1,0]],[[50274,32632,0],[1,0],[1,0]],[[50276,32632,0],[1,0],[1,0],[1,0],[1,0]],[[50347,32617,0],[11,-3],[71,-18]],[[50495,32575,0],[102,-33],[1,0],[1,-1]],[[50601,32540,0],[1,0],[1,0]],[[50609,32538,0],[1,0],[1,0],[1,-1]],[[50613,32537,0],[1,0],[1,0],[1,-1]],[[50616,32536,0],[1,0],[1,0]],[[50621,32534,0],[1,0],[1,0]],[[50625,32534,0],[1,0],[0,-1]],[[50626,32533,0],[2,0],[1,0]],[[50629,32533,0],[1,0],[1,0],[0,-1]],[[50632,32532,0],[1,0],[1,0]],[[50634,32532,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[0,-1]],[[50641,32530,0],[1,0],[1,0]],[[50644,32529,0],[1,0],[1,0]],[[50647,32529,0],[1,0],[1,0],[1,0]],[[50651,32528,0],[2,0],[1,0]],[[50654,32528,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[50662,32526,0],[1,0],[2,0],[1,0]],[[50666,32526,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[50672,32525,0],[1,0],[1,0],[1,0],[1,0]],[[50676,32525,0],[1,0],[1,-1]],[[50678,32524,0],[1,0],[1,0],[1,0],[1,0]],[[50683,32524,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50688,32524,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1]],[[50698,32522,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50709,32522,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[50742,32522,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[50753,32522,0],[1,1],[1,0],[3,0],[96,6]],[[50854,32529,0],[19,1],[14,1],[1,0],[1,0],[2,0],[0,-1]],[[50892,32530,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50900,32529,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[50908,32529,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50914,32529,0],[2,0],[0,-1]],[[50916,32528,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50921,32528,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,-1]],[[50933,32526,0],[1,0],[1,0],[1,0],[1,0]],[[50937,32526,0],[1,0],[1,0],[2,0],[1,0],[1,-1]],[[50943,32525,0],[1,0],[1,0],[1,0]],[[50947,32524,0],[1,0],[1,0],[1,0]],[[50951,32524,0],[1,0],[2,0],[1,0]],[[50956,32523,0],[1,0],[1,0],[1,0]],[[50960,32522,0],[1,0],[1,0],[1,0]],[[50963,32522,0],[1,0],[2,0],[1,0],[0,-1]],[[50968,32521,0],[1,0],[1,0],[1,0]],[[50971,32521,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[50979,32519,0],[1,0],[1,0]],[[50982,32518,0],[1,0],[1,0]],[[50985,32518,0],[1,0],[1,0]],[[50988,32517,0],[1,0],[2,0]],[[50991,32517,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1]],[[50998,32515,0],[1,0],[1,0]],[[51000,32515,0],[1,0],[1,0],[0,-1]],[[51002,32514,0],[1,0],[1,0]],[[51004,32514,0],[1,0],[1,0]],[[51007,32513,0],[1,0],[1,0]],[[51011,32513,0],[1,-1],[1,0],[1,0],[1,-1]],[[51016,32511,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[51022,32510,0],[1,0],[1,0],[1,-1]],[[51030,32507,0],[1,0],[1,0]],[[51032,32507,0],[1,0],[1,0],[1,-1]],[[51036,32506,0],[1,0],[1,0],[1,-1]],[[51040,32505,0],[2,0],[1,0],[1,0],[0,-1]],[[51044,32504,0],[1,0],[0,-1]],[[51050,32502,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[51056,32500,0],[1,0],[1,0],[1,-1]],[[51064,32498,0],[1,0],[0,-1]],[[51065,32497,0],[1,0],[1,0]],[[51069,32496,0],[1,0],[1,0],[1,-1]],[[51073,32495,0],[1,0],[1,0],[0,-1]],[[51075,32494,0],[1,0],[1,-1]],[[51082,32492,0],[1,0],[0,-1]],[[51084,32491,0],[1,0],[1,-1]],[[51087,32490,0],[1,0],[1,0],[0,-1]],[[51090,32488,0],[1,0],[1,0]],[[51092,32488,0],[1,0],[1,-1]],[[51095,32487,0],[1,0],[1,0],[1,-1]],[[51099,32486,0],[1,0],[0,-1],[1,0],[1,0],[0,-1]],[[51104,32484,0],[1,-1],[1,0]],[[51107,32483,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1]],[[51120,32477,0],[1,0],[1,0],[0,-1]],[[51123,32476,0],[1,0],[1,-1]],[[51126,32475,0],[1,0],[1,-1],[1,0],[0,-1]],[[51129,32473,0],[1,0],[1,-1]],[[51132,32472,0],[1,0],[1,-1]],[[51135,32471,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[51141,32468,0],[1,0],[1,-1],[1,0]],[[51145,32467,0],[1,-1],[1,-1]],[[51212,32435,0],[-35,-129],[-22,-85]],[[51155,32221,0],[-22,-82],[13,-35],[15,-38],[47,-119],[45,-117]],[[51253,31830,0],[9,-21],[3,-9]],[[51261,31796,0],[-12,-15],[-4,-6]],[[51245,31775,0],[-10,-15]],[[51236,31759,0],[0,-1],[1,-1],[0,-1]],[[51237,31756,0],[1,-1]],[[51238,31754,0],[1,-1],[0,-1]],[[51240,31748,0],[1,-1]],[[51241,31747,0],[0,-1],[0,-1]],[[51241,31745,0],[1,-1]],[[51242,31743,0],[0,-1],[0,-1]],[[51242,31735,0],[-1,-2]],[[51241,31732,0],[-1,-1],[0,-1]],[[51240,31728,0],[-1,0],[0,-1],[0,-1]],[[51239,31725,0],[-1,0],[0,-1]],[[51238,31724,0],[-1,-2],[0,-1]],[[51237,31721,0],[-1,0],[0,-1]],[[51236,31720,0],[-1,0],[0,-2]],[[51234,31717,0],[-1,-1]],[[51233,31716,0],[-1,0],[-1,-2],[0,-1]],[[51229,31712,0],[-1,0],[-1,-1],[0,-1]],[[51226,31710,0],[-1,-1]],[[51225,31709,0],[-1,0],[0,-1]],[[51220,31706,0],[-1,0],[-1,0],[-1,-1]],[[51217,31705,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1]],[[51209,31703,0],[-2,-1]],[[51207,31702,0],[-1,0],[-1,0]],[[51201,31702,0],[-5,-46],[-4,-35]],[[51192,31621,0],[-8,-79],[-8,-82],[-2,-17]],[[51174,31443,0],[-7,-109],[-6,-105]],[[51158,31187,0],[5,-40],[0,-2],[0,-3],[5,-36],[9,-38],[12,-44],[16,-55]],[[51205,30969,0],[30,-110],[1,-5],[11,-39],[10,-40]],[[51257,30775,0],[10,-48]],[[51270,30675,0],[0,-5],[-1,-24],[-1,-17],[-1,-33],[-12,-58],[-15,-48]],[[51240,30490,0],[-16,-41]],[[51224,30449,0],[-17,-27],[-15,-25]],[[51192,30397,0],[-24,-36],[0,-1]],[[51168,30360,0],[-33,22]],[[51135,30382,0],[-53,-4],[-83,-8]],[[50999,30370,0],[-75,84],[-25,29],[-53,53]],[[50846,30536,0],[-16,-10]],[[50830,30526,0],[-28,-15],[-46,-21]],[[50756,30490,0],[-35,-14]],[[50721,30476,0],[-90,-39],[-194,-85],[-3,-1],[-12,-5],[-111,-49]],[[50311,30297,0],[-7,-3],[-6,-3],[-17,-8],[-7,-3]],[[50274,30280,0],[-30,-11],[-47,-13],[-6,-2],[-3,-1],[-18,-3],[-11,-2]],[[50159,30248,0],[-40,-6]],[[50119,30242,0],[-104,-6],[-143,-8]],[[49872,30228,0],[-52,-2],[-55,-3]],[[49765,30223,0],[-27,-6],[-76,-16],[-5,-58],[-17,-81],[-112,28]],[[49514,30093,0],[-64,16],[-42,10],[-97,62],[-55,35],[-60,38],[-18,11]],[[49178,30266,0],[-2,2],[-8,9]],[[49097,30352,0],[-16,17],[-59,62],[-11,13],[-9,10]],[[49002,30454,0],[-17,20],[-15,19],[-11,14],[-17,25],[-12,23],[-4,9]],[[48926,30564,0],[-6,12],[-10,20],[-21,55],[-3,10],[-8,30]],[[48878,30691,0],[-3,11],[-8,29]],[[48867,30731,0],[-17,114],[-16,112]],[[48834,30957,0],[-6,39],[-9,61]],[[48819,31057,0],[-6,42],[-1,9],[-1,6],[-1,35],[-2,33],[5,69],[0,1]],[[48813,31252,0],[5,44],[4,17],[8,32]],[[48846,31400,0],[14,41],[16,50],[39,118],[25,76]],[[48902,31712,0],[-13,19],[-12,21]],[[48926,31812,0],[-184,302],[-32,104],[-10,31],[-7,18],[-1,4],[-7,21]],[[48685,32292,0],[-14,40],[-3,9]],[[48668,32342,0],[316,112],[48,16],[13,4],[79,21],[6,1],[60,14]],[[49190,32510,0],[74,15],[82,12]],[[49346,32537,0],[2,0],[64,6]],[[49412,32543,0],[34,1],[30,1]],[[49541,32548,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[49552,32548,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[49564,32549,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49572,32549,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49592,32551,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[49601,32552,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[49610,32552,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[49617,32552,0],[0,1],[1,0]],[[49618,32553,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49624,32553,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[49639,32555,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49644,32555,0],[0,1],[1,0]],[[49645,32556,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[49652,32556,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49658,32557,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[49664,32557,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49677,32559,0],[1,0],[1,0],[1,0],[1,0]],[[49681,32559,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0]],[[49688,32560,0],[1,0],[1,0],[1,0],[1,0]],[[49693,32561,0],[1,0],[1,0],[1,0],[1,0]],[[49699,32561,0],[1,0],[1,0],[1,0],[1,0]],[[49703,32561,0],[0,1],[1,0]],[[49704,32562,0],[1,0],[1,0],[1,0]],[[49707,32562,0],[0,1],[1,0]],[[49708,32563,0],[1,0],[1,0],[2,0],[1,0]],[[49713,32563,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[49718,32564,0],[1,0],[1,0],[1,0],[1,0]],[[49723,32564,0],[0,1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[49733,32566,0],[1,0],[1,0],[1,0],[1,0]],[[49738,32567,0],[1,0],[2,0]],[[49741,32567,0],[32,6],[33,7],[19,4],[35,8]],[[49860,32592,0],[82,20],[74,15]],[[50018,32628,0],[1,0],[1,0],[1,0]],[[50021,32628,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[50026,32629,0],[1,0],[1,0]],[[50029,32629,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0]],[[50038,32631,0],[1,0],[1,0],[1,0]],[[50042,32632,0],[1,0],[1,0],[1,0],[2,0]],[[50048,32632,0],[1,0],[1,0],[1,0]],[[50052,32633,0],[1,0],[1,0],[1,0],[1,0]],[[50057,32633,0],[0,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50068,32635,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50073,32635,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[50087,32637,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[50095,32637,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[50104,32638,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[50114,32639,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[50126,32639,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50151,32640,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[50999,30370,0],[69,6],[67,6]],[[51135,30382,0],[26,-18],[7,-4]],[[51168,30360,0],[24,-13],[69,-41]],[[51261,30306,0],[-40,-45]],[[51221,30261,0],[-23,-23]],[[51109,30161,0],[39,-48],[5,-7]],[[51265,29949,0],[143,101]],[[51497,30154,0],[103,-69],[156,-103]],[[51756,29982,0],[34,-23]],[[51797,29955,0],[15,-10]],[[51812,29945,0],[37,-135],[56,-201]],[[51905,29609,0],[3,-13],[0,-2]],[[52163,29328,0],[89,-14]],[[52362,29297,0],[308,-47]],[[52670,29250,0],[-12,-19],[-183,-281]],[[52475,28950,0],[-182,-225]],[[51708,28274,0],[-57,-96]],[[51651,28178,0],[-6,-12]],[[51530,27918,0],[-106,-341]],[[51439,27408,0],[52,-103]],[[51491,27305,0],[-327,-103],[-9,-3],[-200,206],[-55,56],[-27,25],[-21,20],[-60,51],[-64,47],[-93,59],[-89,49],[-15,9],[-159,89]],[[49640,30061,0],[17,81],[4,47],[1,11],[103,23]],[[49765,30223,0],[56,2],[51,3]],[[49872,30228,0],[58,3],[85,4],[65,4],[39,3]],[[50159,30248,0],[11,1],[9,2],[12,2],[53,15],[3,1],[27,11]],[[50274,30280,0],[24,10],[13,7]],[[50311,30297,0],[111,48],[15,6],[284,125]],[[50721,30476,0],[3,1],[32,13]],[[50756,30490,0],[47,21],[24,13],[3,2]],[[50846,30536,0],[10,-9],[43,-45],[100,-112]],[[52864,25765,0],[7,-73],[9,-95]],[[52880,25597,0],[5,-10],[4,-10]],[[52889,25577,0],[17,-49],[7,-18],[8,-49],[6,-32],[1,-11],[3,-18],[4,-25],[10,-65],[-1,-25],[-307,280],[-18,3],[-2,-1],[-19,-5],[-13,-7],[-4,-3],[-25,-60],[2,-14],[8,-17],[2,-17],[48,-37],[64,-48],[37,-38],[24,-47],[10,-54],[1,-14],[8,-21],[2,-6],[4,-31],[-3,-24],[-23,-49],[-11,-24],[-105,-223],[-56,-111],[-46,-93],[-58,-117],[-58,-117],[-18,-38]],[[52388,24352,0],[-12,7],[-46,17],[-7,2],[-10,1],[-129,55],[11,-19],[-12,-28],[-31,13],[-12,5],[-39,15],[-24,-10],[-57,-119],[-21,10],[-177,58]],[[51822,24359,0],[-2,0],[-11,4]],[[51809,24363,0],[-37,10]],[[51772,24373,0],[-4,1],[-5,2]],[[51763,24376,0],[10,28],[-66,69],[4,10],[-201,26],[-33,5],[61,221],[9,25],[3,13],[-16,4],[-55,8],[-14,3],[-21,7],[-43,-21],[-71,5],[-5,14],[-36,6]],[[51289,24799,0],[-17,6],[-4,1]],[[51268,24806,0],[-55,5],[-3,29],[-11,-3],[-75,-18],[-58,-15],[-46,5],[-36,2],[-109,-13],[-3,47],[-83,68]],[[50789,24913,0],[-1,14],[-4,30],[-11,51],[-11,36]],[[50762,25044,0],[-4,16],[-1,4]],[[50757,25064,0],[-13,39],[-3,10],[-2,4],[-7,21],[-15,43],[-20,50],[-25,58],[-25,48],[-24,48],[-21,41],[-3,5],[-5,10],[-63,127],[-56,109],[-55,108],[-53,110],[-17,37],[-3,6],[-24,61],[-16,65],[-12,58],[-8,51],[-2,14],[-8,56],[-12,99],[-3,21],[-5,44],[-11,76],[-15,117],[0,1]],[[50231,26601,0],[0,3],[-10,55]],[[50221,26659,0],[-7,26],[-10,41],[-10,34],[-7,22],[-20,59],[-1,5],[-6,14],[-44,127],[-4,7],[-1,0],[-59,61],[-16,27],[-16,28],[-69,103],[-7,10],[-3,4],[-48,72],[-2,3],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[50221,26659,0],[10,-58]],[[50757,25064,0],[5,-20]],[[50789,24913,0],[3,-13]],[[50792,24900,0],[1,-11],[4,-64]],[[50797,24825,0],[-1,-76],[-11,-35],[-3,-16],[-8,-7],[-18,-13],[-20,-14],[-15,-10],[-13,-8],[-6,-2],[-17,-12],[-36,7],[-27,-24]],[[50622,24615,0],[-22,14],[-21,15]],[[50579,24644,0],[-250,-73],[16,24],[-51,-22],[-111,17],[-205,30],[-17,7],[-23,13],[-212,-83],[-159,-61]],[[49567,24496,0],[-103,239],[-62,143]],[[49402,24878,0],[-23,52],[-18,42],[-106,190]],[[49255,25162,0],[-12,22],[-26,46]],[[49217,25230,0],[-27,47],[-20,24]],[[49170,25301,0],[-23,27],[-7,9],[-101,120]],[[49039,25457,0],[-132,116],[-22,20],[-11,10]],[[48874,25603,0],[-119,89],[-92,57],[-114,50],[-190,58]],[[48359,25857,0],[-245,18],[-126,28],[-78,19]],[[47910,25922,0],[-120,45],[-70,26]],[[47720,25993,0],[-75,27],[-24,7]],[[51268,24806,0],[21,-7]],[[51763,24376,0],[9,-3]],[[51809,24363,0],[13,-4]],[[52388,24352,0],[-34,-71],[18,-8],[176,-78],[-66,-141],[-6,-13],[11,-5],[29,-12],[-161,-299],[-90,-241],[-52,-213]],[[52213,23271,0],[-137,-344]],[[52076,22927,0],[-76,-160]],[[52000,22767,0],[-118,-249],[-199,-330]],[[51683,22188,0],[-165,-133],[-115,-88],[-135,-56],[-200,-11],[-320,90],[-294,217],[-96,-60]],[[50358,22147,0],[-105,109],[121,73],[-138,370],[-20,593],[-307,-20],[-4,-203],[-26,-131],[-20,-71],[-36,206],[17,190],[4,51],[24,66],[14,56]],[[49882,23436,0],[-1,208]],[[49881,23644,0],[-41,195]],[[49840,23839,0],[-66,187]],[[49774,24026,0],[-160,369],[-47,101]],[[50579,24644,0],[43,-29]],[[50797,24825,0],[-5,75]],[[44815,22156,0],[45,-5],[14,0]],[[44874,22151,0],[16,1],[26,4],[52,10],[34,10]],[[45002,22176,0],[36,15],[26,21]],[[45064,22212,0],[25,23]],[[45089,22235,0],[5,-11]],[[45094,22224,0],[18,-25]],[[45112,22199,0],[4,-6]],[[45116,22193,0],[12,-16],[58,-119]],[[45186,22058,0],[140,48],[123,40],[124,39]],[[45573,22185,0],[24,-3],[1,0]],[[45598,22182,0],[-42,-24],[-7,-12]],[[45549,22146,0],[-3,-10],[-1,-7],[5,-27],[8,-26]],[[45558,22076,0],[23,-37],[32,-42],[34,-33]],[[45647,21964,0],[38,-30],[6,-2]],[[45691,21932,0],[102,-53]],[[45793,21879,0],[-46,-93],[8,-5],[2,-1],[5,-6],[5,-4],[6,-13],[4,-14],[1,-11],[1,-8],[0,-28],[-8,-39],[-38,-90],[-31,-33],[-3,-70],[-3,-49],[-8,-85],[-5,-41],[0,-67],[-1,-18],[1,-22],[0,-8],[0,-5],[0,-10],[-1,-14],[-1,-21],[1,-63],[0,-6],[0,-21],[3,-58],[1,-22],[1,-30],[6,-51],[5,-29],[17,-107],[3,-18],[7,-33],[8,-31],[7,-27],[21,-75],[3,-11],[10,-40],[22,-62],[8,-21],[16,-39],[17,-37],[7,-15],[9,-20],[17,-33],[18,-30],[7,-11],[4,-6],[12,-19],[38,-71],[12,-16],[3,-6],[2,-4],[-32,-20],[-33,-22],[-98,-58],[-59,-37],[86,-170]],[[45830,19805,0],[-241,-165],[-378,-255],[-298,-201],[-42,-28],[-43,-29]],[[43462,20641,0],[3,69],[5,256],[5,282]],[[43507,22007,0],[35,32],[115,110],[34,33]],[[43728,22501,0],[-38,348],[430,101]],[[44120,22950,0],[18,-77],[-13,-79],[73,-139],[66,-33],[14,-24],[20,-33],[85,-127],[32,-36],[46,-52],[42,-44]],[[44503,22306,0],[52,-44],[23,-16]],[[44578,22246,0],[59,-36],[45,-20],[21,-7]],[[44703,22183,0],[51,-17],[61,-10]],[[48670,21616,0],[0,-11],[1,-4]],[[48671,21601,0],[3,-95],[0,-8]],[[48674,21498,0],[2,-44],[0,-10],[1,-28]],[[48677,21416,0],[-33,-32],[-8,-8]],[[48636,21376,0],[-16,-15]],[[48620,21361,0],[-2,-1],[-128,-125],[-1,0],[-25,-25],[25,2],[-97,-100],[-152,-166],[-30,20],[-24,16],[-60,37],[-82,40],[-136,38],[-54,-3],[-38,-6],[-27,-5],[-166,-22],[4,-38],[1,-57],[20,-118],[0,-15],[-42,-9],[5,-10],[-67,-16],[-99,-24],[-103,-25],[-25,-5],[-39,-13],[-25,-11],[-10,-4],[-7,-3],[-11,-8],[-19,-16],[-27,-33],[-8,-9],[-18,-33],[-5,-14],[-24,-33],[-27,-18],[-40,-6]],[[47057,20543,0],[-3,1]],[[47054,20544,0],[-25,8],[-21,9],[-14,5],[-6,2]],[[46988,20568,0],[-48,38]],[[46940,20606,0],[-103,89],[-17,14]],[[46820,20709,0],[-17,28],[-29,46],[-21,51],[-6,13]],[[46747,20847,0],[-7,31],[-6,23]],[[46734,20901,0],[0,4],[-2,10]],[[46732,20915,0],[-6,35],[-6,62],[-2,43],[-1,5],[15,-1],[-5,55],[-2,18],[-1,9],[-2,11],[-1,21],[-4,41]],[[46717,21214,0],[-2,17],[-4,31]],[[46711,21262,0],[-6,57],[-4,30],[-3,8],[-15,39]],[[46683,21396,0],[-22,57],[-12,34]],[[46649,21487,0],[-8,13],[-15,26]],[[46626,21526,0],[-13,18],[-10,14],[-10,16],[-22,30]],[[46571,21604,0],[-9,9],[-28,22]],[[46534,21635,0],[-16,12],[-12,11]],[[46506,21658,0],[-53,43],[-44,27],[-20,11],[-13,8]],[[46376,21747,0],[-19,9],[-1,1],[-22,11]],[[46334,21768,0],[-9,-19],[-68,20]],[[46257,21769,0],[-122,31],[-177,41],[-165,38]],[[45793,21879,0],[-72,36],[-30,17]],[[45647,21964,0],[-35,33],[-32,42],[-22,37]],[[45549,22146,0],[7,11],[42,25]],[[45598,22182,0],[-25,3]],[[45186,22058,0],[-59,119],[-11,16]],[[45112,22199,0],[-1,2],[-17,23]],[[45089,22235,0],[61,72],[15,28]],[[45165,22335,0],[36,67]],[[45201,22402,0],[20,27],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,2],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[3,-1],[88,-36],[26,-9],[24,-6],[26,-6],[92,-1],[238,36],[208,30],[291,41],[36,8],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[8,18],[149,-68],[3,-2],[152,-73],[156,-74],[47,-23],[111,-52],[44,-21],[113,-55],[155,-72],[24,-11],[134,-66],[-9,-15],[207,-100],[7,15],[157,-75],[7,-3],[152,-72],[16,-8],[140,-66],[11,-5],[54,-25],[16,-7],[27,-10],[16,-5],[17,-5],[11,-3],[5,-1],[22,-3],[26,-2],[45,-2],[30,0],[36,1],[0,-24],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[3,0]],[[46334,21768,0],[24,-11],[18,-10]],[[46506,21658,0],[13,-11],[15,-12]],[[46571,21604,0],[23,-30],[10,-16],[22,-32]],[[46626,21526,0],[15,-25],[8,-14]],[[46649,21487,0],[13,-34],[21,-57]],[[46711,21262,0],[6,-48]],[[46732,20915,0],[2,-14]],[[46747,20847,0],[28,-64],[45,-74]],[[46820,20709,0],[120,-103]],[[46988,20568,0],[7,-2],[35,-14],[24,-8]],[[47057,20543,0],[159,-18],[43,-5],[16,-2]],[[47275,20518,0],[90,-14]],[[47365,20504,0],[59,-4],[22,-1],[27,-1],[0,1],[1,8],[35,-2],[5,2],[34,-2]],[[47548,20505,0],[0,-6],[21,-1]],[[47569,20498,0],[2,-18],[21,0],[20,1],[1,-4],[4,-4],[13,-14],[20,-9],[10,-4],[21,-10],[7,-4],[25,-15],[25,-23],[1,-1]],[[47739,20393,0],[31,-31]],[[47770,20362,0],[23,-22],[29,-38],[16,-26],[14,-28],[15,-30],[10,-25]],[[47877,20193,0],[1,-2],[9,-31]],[[47887,20160,0],[8,-48]],[[47895,20112,0],[4,-43],[-1,-18]],[[47898,20051,0],[0,-9],[-3,-26],[-7,-47],[-6,-21],[-3,-8],[-2,-3],[-8,-39],[1,-1],[-34,-38],[-54,-58],[-47,-54],[-15,-17],[-7,-5],[-23,-14],[-11,-8],[-19,-14]],[[47660,19689,0],[1,-4],[-29,-18]],[[47632,19667,0],[-30,-14],[-41,-20]],[[47561,19633,0],[-44,-9],[-27,-9],[-42,-15],[2,-13]],[[47450,19587,0],[-28,-7],[19,-54]],[[47441,19526,0],[-19,-55]],[[47422,19471,0],[-10,-30],[-5,-1],[-101,-12],[1,-15]],[[47307,19413,0],[2,-13],[-105,-11]],[[47204,19389,0],[-31,-2],[-9,-1]],[[47164,19386,0],[-24,-2]],[[47140,19384,0],[-2,0],[-7,0],[-353,-44]],[[46778,19340,0],[-37,14],[-212,80],[-81,30],[-73,28]],[[46375,19492,0],[-216,80],[-329,233]],[[45793,21879,0],[166,-38],[177,-41],[121,-31]],[[47140,19384,0],[-107,-325],[-171,-517],[-62,-190],[21,-449],[15,-321],[9,-106],[-12,-123],[-150,-55],[-203,-105]],[[46375,19492,0],[153,-58],[250,-94]],[[48649,18913,0],[28,-1203],[128,-617]],[[48805,17093,0],[-130,7],[-273,35]],[[48402,17135,0],[-554,23],[-138,-5],[-141,8],[-140,-19]],[[47429,17142,0],[-134,-20]],[[47295,17122,0],[-138,-23],[-135,-28]],[[47022,17071,0],[-132,-11],[-137,9],[-136,10]],[[46617,17079,0],[-139,11]],[[47164,19386,0],[210,-59],[-5,-17],[63,-18],[138,-40],[37,-14],[95,-27]],[[47702,19211,0],[20,-5]],[[47722,19206,0],[37,-11],[54,-15],[133,-36],[70,-16]],[[48016,19128,0],[38,-9]],[[48054,19119,0],[7,-2]],[[48061,19117,0],[122,-70],[108,-62],[97,-57],[37,-6],[91,-12],[89,2],[37,0],[7,1]],[[49501,21270,0],[27,-126],[0,-1],[42,-175]],[[49570,20968,0],[23,-96],[66,-289],[38,-156]],[[49697,20427,0],[-21,-4]],[[49676,20423,0],[-11,-7],[-5,-2]],[[49660,20414,0],[-52,-81]],[[49608,20333,0],[-46,-10],[-59,-14]],[[49503,20309,0],[69,-284]],[[49572,20025,0],[6,-6],[1,-2]],[[49579,20017,0],[16,-22],[16,-31],[11,-35],[13,-61]],[[49635,19868,0],[8,-54],[15,-100],[-2,-51],[-32,1],[-7,0],[2,47],[-12,85]],[[49607,19796,0],[-1,5],[0,5]],[[49606,19806,0],[-3,16],[-11,50]],[[49592,19872,0],[-278,24],[-152,12]],[[49162,19908,0],[-11,-97],[24,0]],[[49175,19811,0],[2,-33],[2,-44]],[[49179,19734,0],[-4,-78],[-5,-69],[-1,-9],[-48,-153],[-57,-148],[-67,-107],[-2,-2],[-21,-23],[-15,-38],[-18,-41],[-6,3],[-23,-27],[-24,-28],[-21,-20],[-56,-32],[-31,-14],[-69,-25],[-62,-10]],[[48061,19117,0],[-3,1],[-4,1]],[[48054,19119,0],[-31,7],[-7,2]],[[47722,19206,0],[-7,2],[-13,3]],[[47204,19389,0],[104,11],[-1,13]],[[47307,19413,0],[-1,14],[100,13],[5,1],[11,30]],[[47441,19526,0],[-19,53],[28,8]],[[47561,19633,0],[41,19],[29,14],[1,1]],[[47632,19667,0],[29,17],[-1,5]],[[47898,20051,0],[0,18],[-3,43]],[[47887,20160,0],[-9,32],[-1,1]],[[47770,20362,0],[-29,28],[-2,3]],[[47569,20498,0],[-22,1],[1,6]],[[47365,20504,0],[-38,6],[-52,8]],[[48620,21361,0],[118,-6],[15,0],[52,0],[192,11],[122,10],[215,-122],[14,1],[98,10],[55,5]],[[48794,23801,0],[54,-132],[24,-53],[47,-107],[11,-5],[183,-100]],[[49113,23404,0],[359,20]],[[49472,23424,0],[285,8],[45,1],[80,3]],[[50358,22147,0],[-45,-28],[-7,-4],[-215,-155],[-698,-52],[42,-519],[192,18],[95,7],[115,3],[-88,-131],[-52,-2],[-79,-4],[-117,-10]],[[48636,21376,0],[41,40]],[[48674,21498,0],[-3,103]],[[48671,21601,0],[-1,15]],[[48670,21616,0],[3,1],[11,4],[55,28],[37,21],[31,30],[20,18],[17,20],[20,23],[2,4],[32,55],[22,52],[14,31],[16,23],[2,27],[3,34],[-1,49],[-10,62],[-8,30],[0,1],[-12,35],[-28,62],[-49,89],[-66,122],[-24,45],[-25,46],[-40,73],[-29,41],[-27,38]],[[48636,22680,0],[-45,60]],[[48591,22740,0],[-11,14],[-68,78],[-27,31],[-42,47],[-52,60],[-20,22],[-37,43],[-4,3],[-14,-3],[-49,57],[-4,5],[-22,23],[-30,34],[-19,19],[-36,41],[-26,31]],[[48130,23245,0],[2,-2],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[48163,23230,0],[1,0],[1,0]],[[48165,23230,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[48175,23230,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0]],[[48194,23234,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1]],[[48210,23245,0],[1,0],[1,1],[1,0],[0,2],[1,1],[1,0],[0,1],[1,0],[1,2]],[[48217,23252,0],[2,1],[0,2],[1,0],[0,1],[1,1],[1,1],[0,2]],[[48222,23260,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1]],[[48226,23268,0],[46,158],[5,21]],[[48277,23447,0],[32,118],[42,158]],[[48351,23723,0],[21,29],[11,15],[46,-16]],[[48429,23751,0],[38,-15],[56,-21]],[[48523,23715,0],[81,26],[32,11]],[[48636,23752,0],[70,23]],[[48706,23775,0],[71,21],[17,5]],[[59238,19819,0],[-159,-136],[-162,-231],[-21,7],[-57,15],[-8,-43],[-10,-60],[-3,-14],[-9,-44],[-22,-42],[-22,-27],[-6,-34],[-17,-40],[-14,-32],[-22,-92],[-19,-65],[-80,-126],[9,-36],[-70,-78],[-24,-26],[-133,-106],[-282,-80],[-540,102],[-228,84],[-185,96],[-119,12],[-73,33]],[[56962,18856,0],[47,47]],[[57009,18903,0],[124,191],[164,215],[23,454],[4,51],[35,33],[36,35]],[[57395,19882,0],[-81,95],[-76,103]],[[57238,20080,0],[-75,109],[-84,108],[-88,103],[-57,50],[-52,42]],[[56882,20492,0],[59,99],[17,38],[30,65],[91,202],[254,45],[95,17],[-8,27],[242,15],[568,26],[192,11],[23,1],[21,1]],[[58466,21039,0],[10,1],[8,0],[6,0],[45,1],[113,8],[26,-153],[13,-17],[-1,-54],[-2,-16],[5,-104],[7,-138],[0,-11],[6,1],[0,-8],[-4,-6],[-65,-35],[-18,-7],[-10,-1],[-25,-8],[2,-43],[1,-17],[19,-58],[7,-23],[28,-88],[20,-61],[18,7],[67,25],[51,21],[7,3],[73,33],[84,47],[70,31],[14,9],[98,83],[-4,-12],[-3,-19],[0,-17],[3,-16],[9,-26],[48,-90],[32,-60],[6,-12],[23,-32],[34,-41],[14,-15],[-233,-187],[48,-33],[60,-40],[47,-31],[15,-11]],[[51683,22188,0],[112,-254],[-350,-387]],[[51445,21547,0],[-115,-132],[-36,-41]],[[51294,21374,0],[-8,-16],[-127,-245]],[[51159,21113,0],[-3,-10],[21,-13]],[[51177,21090,0],[17,-14],[19,-19],[11,-15],[11,-19],[8,-19]],[[51243,21004,0],[7,-31]],[[51250,20973,0],[2,-16]],[[51252,20957,0],[1,-13]],[[51253,20944,0],[-2,-18]],[[51251,20926,0],[-1,-11],[-5,-19],[-130,-444],[-79,7],[-43,2],[1,-46],[-232,-643]],[[50762,19772,0],[-100,10],[-1027,86]],[[49579,20017,0],[-7,8]],[[49503,20309,0],[105,24]],[[49660,20414,0],[16,9]],[[49697,20427,0],[-127,541]],[[49592,19872,0],[14,-66]],[[49606,19806,0],[1,-10]],[[50762,19772,0],[-37,-122],[-13,-291]],[[50712,19359,0],[-2,-252],[20,-547]],[[50730,18560,0],[129,-567]],[[50859,17993,0],[-144,3],[-148,-24],[-141,-52],[-126,-85],[-105,-83],[-102,-92],[-207,-167],[-94,-95],[-107,-71],[-114,-65],[-115,-63],[-128,-38],[-124,-31],[-131,-24],[-133,-8],[-135,-5]],[[49179,19734,0],[-4,77]],[[49162,19908,0],[430,-36]],[[48805,17093,0],[2,-48]],[[48807,17045,0],[0,-47],[11,-152],[4,-46],[-7,-186]],[[48815,16614,0],[1,-41]],[[48816,16573,0],[11,-338],[36,-437]],[[48863,15798,0],[-245,-9],[-727,71],[-46,10],[-171,40],[-32,7],[-366,96],[-130,-12],[-289,-22],[-240,-22],[-157,-2],[0,37]],[[46476,16692,0],[-5,42],[-1,35],[7,56]],[[46477,16825,0],[-1,151]],[[46476,16976,0],[0,46]],[[46476,17022,0],[2,69],[139,-12]],[[47022,17071,0],[135,29],[138,22]],[[47429,17142,0],[139,19],[142,-7],[138,5],[554,-24]],[[51162,16703,0],[-70,-186],[14,-9],[-28,-55],[-5,-29],[-21,9],[-76,-157],[-331,23],[-252,21],[-126,-42],[3,-13]],[[50270,16265,0],[-393,-244]],[[49877,16021,0],[-51,-31],[-141,-80]],[[49685,15910,0],[-85,-50],[-14,-6]],[[49586,15854,0],[-303,-7],[-176,-22],[-244,-27]],[[48863,15798,0],[-36,436],[-11,339]],[[48815,16614,0],[7,185],[-3,46],[-12,152],[0,48]],[[50859,17993,0],[-1,-43],[1,-16],[9,-65],[129,-108],[-17,-46],[-6,-46],[35,-134],[18,-40],[36,-164],[13,-39],[18,-46],[41,-126],[59,6],[1,-18],[4,-45],[17,-175],[6,-58],[-60,-127]],[[45592,26525,0],[105,7],[57,12]],[[45754,26544,0],[130,35]],[[45884,26579,0],[4,-26],[9,-65],[5,-38],[18,-123],[-96,-19],[2,-153],[-28,-35],[-30,-32],[-12,-15],[-15,3],[-11,-12],[62,-74],[-162,-190],[3,-11],[3,-20],[-51,-46],[0,-8],[-6,-21],[-3,-21],[3,-10],[3,-9],[17,-26],[26,-45],[16,-39],[8,-34],[9,-37],[0,-20],[-2,-80],[0,-23],[-8,-24],[-4,-48],[-1,-24],[2,-46],[-10,-10],[-66,-65],[-12,-12],[-22,-22],[-204,-204],[-142,-142]],[[45189,24753,0],[-145,-154],[-59,-59],[-63,-53],[-34,-21]],[[44888,24466,0],[-47,-28]],[[44841,24438,0],[-23,-7],[-24,-6],[-18,-5],[-92,-19]],[[44684,24401,0],[-96,-3],[-76,14],[-11,6]],[[44501,24418,0],[-80,29],[-44,21]],[[44377,24468,0],[-31,11],[-31,-13]],[[44315,24466,0],[-22,-15]],[[44293,24451,0],[-52,-35],[-11,-8]],[[44230,24408,0],[-6,-52],[-56,-35],[-161,61]],[[42176,24928,0],[-4,17],[22,7],[26,12],[24,15],[19,13],[15,15],[14,21],[13,25],[8,17],[7,21],[5,26],[32,211],[21,123],[41,115],[90,171],[136,180],[151,141],[198,109],[299,71],[137,38],[81,39],[105,57],[50,40],[77,90],[213,254]],[[44588,27118,0],[121,-27]],[[46864,26025,0],[-1,-72]],[[46863,25953,0],[2,-94],[-44,-27]],[[46821,25832,0],[-142,-90],[-22,-13]],[[46657,25729,0],[98,-290],[15,-24],[12,-17]],[[46782,25398,0],[17,-19],[28,-33]],[[46827,25346,0],[57,-58],[86,-88]],[[46970,25200,0],[56,-57],[27,-31],[34,-41],[50,-68],[17,-20]],[[47154,24983,0],[0,-18],[2,-15]],[[47156,24950,0],[7,-44]],[[47163,24906,0],[3,-42],[-2,-12]],[[47164,24852,0],[0,-12],[-4,-24],[-8,-30],[-9,-27],[-24,-58],[-5,-12],[-21,-49]],[[47093,24640,0],[-30,-60],[-22,-37],[-17,-22]],[[47024,24521,0],[-13,-15],[-34,-34],[-286,-182]],[[46691,24290,0],[-230,-146],[-2,-2],[-7,-5],[-1,0],[-5,-4],[-5,-3],[-1,-1],[-1,-2],[-4,-2],[-4,-4],[-1,-1],[-3,-3],[-1,-2],[-3,-2],[-1,-2],[-3,-2],[-1,-2]],[[46418,24107,0],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1]],[[46406,24092,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[0,-2],[-1,-1]],[[46397,24076,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,-4],[-1,-1],[0,-1],[0,-1],[-1,-1]],[[46389,24058,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-2,-6],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2]],[[46383,24039,0],[-1,-31]],[[46382,24008,0],[1,-17]],[[46383,23991,0],[7,-86],[5,-53],[15,-183]],[[46410,23669,0],[5,-69]],[[46415,23600,0],[-114,48],[-23,9]],[[46278,23657,0],[-256,108],[-142,70]],[[45880,23835,0],[-163,103],[-251,166],[-140,106]],[[45326,24210,0],[-53,63],[-38,69]],[[45235,24342,0],[-25,78],[-6,27]],[[45204,24447,0],[-31,232]],[[45173,24679,0],[1,26],[5,26]],[[45179,24731,0],[10,22]],[[45884,26579,0],[67,17]],[[45951,26596,0],[108,28]],[[46059,26624,0],[61,17]],[[46120,26641,0],[51,14],[44,10]],[[46215,26665,0],[63,16]],[[46278,26681,0],[149,42],[57,15]],[[46484,26738,0],[51,17]],[[46535,26755,0],[51,20]],[[46586,26775,0],[48,17]],[[46634,26792,0],[48,23]],[[46682,26815,0],[24,11]],[[46706,26826,0],[25,15],[30,21]],[[46761,26862,0],[31,-91]],[[46801,26742,0],[7,-11]],[[46808,26731,0],[11,-17]],[[46819,26714,0],[58,-109]],[[46933,26525,0],[53,-77]],[[46986,26448,0],[7,-10]],[[47023,26403,0],[-43,-47]],[[46980,26356,0],[-31,-51],[-40,-79]],[[46909,26226,0],[-18,-54],[-18,-84],[-9,-63]],[[49774,24026,0],[32,-92],[34,-95]],[[49881,23644,0],[0,-71],[1,-137]],[[49882,23436,0],[-126,-3],[-284,-9]],[[49113,23404,0],[-194,106],[-47,107],[-24,53],[-54,131]],[[48794,23801,0],[0,1],[-88,-27]],[[48636,23752,0],[-113,-37]],[[48523,23715,0],[-94,36]],[[48429,23751,0],[-46,17],[-32,-45]],[[48277,23447,0],[-5,-20],[-46,-159]],[[48226,23268,0],[-4,-8]],[[48222,23260,0],[-5,-8]],[[48217,23252,0],[-7,-7]],[[48210,23245,0],[-8,-6],[-8,-5]],[[48194,23234,0],[-9,-2],[-10,-2]],[[48175,23230,0],[-10,0]],[[48163,23230,0],[-8,2],[-14,-1],[-10,14],[-62,75]],[[48069,23320,0],[-45,44],[-22,22],[-71,47]],[[47931,23433,0],[-42,29],[-91,58]],[[47798,23520,0],[-41,29],[-19,12]],[[47738,23561,0],[-70,46],[-17,11],[-26,17]],[[47625,23635,0],[-18,13],[-80,52]],[[47527,23700,0],[-34,24],[-19,12]],[[47474,23736,0],[-74,49],[-59,40]],[[47341,23825,0],[-117,90],[-130,111]],[[47094,24026,0],[-20,3],[-46,33]],[[47028,24062,0],[-76,34],[-57,15],[-94,3]],[[46801,24114,0],[-87,-24],[-57,-15],[-212,-61]],[[46445,24014,0],[-60,25],[1,10],[3,9]],[[46389,24058,0],[4,9],[4,9]],[[46397,24076,0],[4,8],[5,8]],[[46406,24092,0],[5,8],[7,7]],[[46418,24107,0],[6,7],[7,8],[8,6],[7,6],[9,6],[236,150]],[[47024,24521,0],[17,23],[21,36],[31,60]],[[47164,24852,0],[2,13],[-3,41]],[[47156,24950,0],[-2,16],[0,17]],[[46970,25200,0],[-86,89],[-57,57]],[[46782,25398,0],[-18,15],[-10,26],[-97,290]],[[46657,25729,0],[22,14],[142,89]],[[46821,25832,0],[44,28],[-2,93]],[[46864,26025,0],[9,64],[17,83],[19,54]],[[46980,26356,0],[43,48],[10,-13]],[[47064,26356,0],[11,-13],[9,-8]],[[47279,26181,0],[95,-53],[121,-50]],[[47495,26078,0],[106,-44],[20,-7]],[[47621,26027,0],[24,-6],[75,-28]],[[47910,25922,0],[78,-18],[126,-28],[245,-19]],[[48359,25857,0],[189,-57],[115,-50],[92,-57],[119,-90]],[[48874,25603,0],[11,-9],[22,-20],[132,-117]],[[49170,25301,0],[20,-23],[27,-48]],[[49217,25230,0],[25,-46],[13,-22]],[[49255,25162,0],[106,-189],[18,-42],[23,-53]],[[49402,24878,0],[61,-143],[104,-239]],[[45235,24342,0],[38,-68],[53,-64]],[[45326,24210,0],[139,-106],[251,-166],[164,-103]],[[46278,23657,0],[22,-8],[115,-49]],[[46415,23600,0],[62,-103]],[[46477,23497,0],[-33,-68],[-9,-21]],[[46435,23408,0],[-2,-11]],[[46433,23397,0],[-1,-12],[0,-21],[-129,-133],[-11,-10],[-44,-84]],[[46248,23137,0],[-68,-128],[-41,-67],[-16,-24],[-80,-70]],[[46043,22848,0],[-35,-13],[-174,-56],[-10,-1],[-168,-9]],[[45656,22769,0],[-151,-5]],[[45505,22764,0],[-78,-30],[-62,-35]],[[45365,22699,0],[-39,-53]],[[45326,22646,0],[-44,-84],[-81,-159],[-36,-68]],[[45064,22212,0],[-27,-21],[-35,-15]],[[44874,22151,0],[-15,0],[-44,5]],[[44703,22183,0],[-21,8],[-45,20],[-59,35]],[[44578,22246,0],[-23,17],[-52,43]],[[44120,22950,0],[0,1],[-17,62],[-43,181]],[[44060,23194,0],[-4,171],[24,136]],[[44144,23629,0],[64,83],[36,66],[-1,75],[-1,110]],[[44119,23974,0],[-112,409],[106,-41],[55,-20],[55,35],[7,51]],[[44293,24451,0],[7,6],[15,9]],[[44315,24466,0],[24,11],[7,3],[25,-10],[6,-2]],[[44501,24418,0],[11,-5],[76,-14],[96,2]],[[44841,24438,0],[37,23],[10,5]],[[44888,24466,0],[34,22],[62,52],[60,60],[129,136],[16,18],[-10,-23]],[[45179,24731,0],[-5,-25],[-1,-27]],[[45204,24447,0],[6,-26],[25,-79]],[[47341,23825,0],[60,-40],[73,-49]],[[47474,23736,0],[19,-13],[34,-23]],[[47527,23700,0],[80,-53],[18,-12]],[[47738,23561,0],[19,-13],[41,-28]],[[47798,23520,0],[91,-59],[42,-28]],[[47931,23433,0],[71,-48],[22,-22],[45,-43]],[[48069,23320,0],[61,-75]],[[48591,22740,0],[34,-47],[11,-13]],[[45201,22402,0],[81,159],[44,85]],[[45365,22699,0],[62,34],[78,31]],[[45656,22769,0],[168,8],[10,1],[174,56],[35,14]],[[46043,22848,0],[81,70],[15,23],[41,67],[68,129]],[[46248,23137,0],[44,83],[11,10],[130,134],[-1,20],[1,13]],[[46435,23408,0],[9,20],[33,69]],[[46415,23600,0],[-5,58],[0,11]],[[46383,23991,0],[0,9],[-1,8]],[[46383,24039,0],[62,-25]],[[46445,24014,0],[213,61],[57,15],[86,24]],[[46801,24114,0],[94,-4],[58,-15],[75,-33]],[[47028,24062,0],[46,-34],[20,-2]],[[53878,17902,0],[21,-68]],[[53899,17834,0],[-411,-487],[-303,-260],[-199,-78],[-460,-104],[-374,-103],[-369,-1],[-586,-138],[-35,40]],[[50859,17993,0],[142,-21],[409,-32],[139,-5]],[[51549,17935,0],[133,-9],[133,-1]],[[51815,17925,0],[131,8]],[[51946,17933,0],[131,21],[133,32]],[[52210,17986,0],[132,35],[127,39]],[[52469,18060,0],[122,40],[106,64],[95,82]],[[52792,18246,0],[91,87],[78,131],[40,-16]],[[53001,18448,0],[43,-19],[72,-130],[11,-19]],[[53127,18280,0],[21,-37],[406,-190],[324,-151]],[[53095,18795,0],[-97,-240],[-37,-90]],[[52961,18465,0],[-77,-132],[-92,-87]],[[52469,18060,0],[-126,-39],[-133,-35]],[[52210,17986,0],[-132,-32],[-132,-21]],[[51815,17925,0],[-133,2],[-133,8]],[[50859,17993,0],[0,1],[-116,506],[-13,60]],[[50712,19359,0],[13,292],[37,121]],[[51251,20926,0],[2,15],[0,3]],[[51253,20944,0],[0,5],[-1,8]],[[51252,20957,0],[0,3],[-2,13]],[[51250,20973,0],[-6,29],[-1,2]],[[51177,21090,0],[-4,3],[-16,10],[2,10]],[[51159,21113,0],[44,-7],[667,-79]],[[51870,21027,0],[-33,-269],[65,-196],[6,-331],[71,-372],[131,-351],[240,-132],[665,-531],[38,-24],[42,-26]],[[53567,21022,0],[65,-95],[128,-189],[44,-63],[63,-96],[136,-204],[26,15]],[[54029,20390,0],[16,-126],[4,-32]],[[54049,20232,0],[4,-37],[21,-267],[4,-50],[1,-30]],[[54079,19848,0],[-337,-223],[-124,-62]],[[53618,19563,0],[-116,-81],[-109,-83],[-87,-110],[-79,-115],[-58,-123],[-74,-256]],[[51870,21027,0],[206,0],[-9,-46],[-8,-63],[232,-33],[42,46],[0,-19],[-2,-11],[5,-22],[7,-22],[6,-13],[12,-19],[16,-16],[13,-10],[14,-8],[102,-13],[46,-4],[33,12],[83,-13],[10,-14],[260,-41],[13,-2],[-20,-105],[137,-24],[-21,-112],[91,-2],[250,-39],[21,133],[36,196],[17,104],[14,79],[13,77],[54,-16],[24,15]],[[52660,22739,0],[200,-91]],[[52860,22648,0],[10,16],[39,-16],[4,-1],[172,-78],[18,-7],[8,-4],[124,-54]],[[53235,22504,0],[34,61]],[[53269,22565,0],[12,26],[126,-53],[94,-39],[22,-10]],[[53523,22489,0],[107,-45],[17,-7],[-18,-21],[-3,-4],[-63,-69],[-13,-24]],[[53550,22319,0],[-37,-48]],[[53513,22271,0],[-13,-18]],[[53500,22253,0],[-28,-35],[73,-51],[98,-57],[-57,-83]],[[53586,22027,0],[101,-51]],[[53687,21976,0],[-5,-5]],[[53682,21971,0],[-24,-40],[-3,-7],[-15,-33],[-4,-7],[-4,-9],[-13,-36],[-5,-15],[-13,-35],[-3,-11],[-1,-7],[-12,-71],[-7,-46],[-7,-63],[-2,-21],[-1,-9],[-3,-25],[-1,-7],[-31,-210],[-1,-8],[37,-49],[-3,-19],[0,-37],[2,-16],[5,-18],[23,11],[64,-103],[-93,-58]],[[51159,21113,0],[135,261]],[[51294,21374,0],[151,173]],[[52000,22767,0],[715,84]],[[52715,22851,0],[-55,-112]],[[53328,25158,0],[88,-93],[86,-92]],[[53502,24973,0],[24,-25],[13,-13]],[[54716,23778,0],[-15,-31],[-12,-28],[-16,-21],[-26,-35],[-22,-29],[-19,-36],[8,-8],[-40,-52],[-6,-8],[-41,-45],[-40,-43],[-12,-12],[-38,-43],[-9,-11],[-35,-40],[-26,-24],[-17,-16],[-18,-24],[-13,-18],[-13,-17],[-124,-128],[-62,56],[-66,-61],[-9,-7],[-5,-4],[-93,-67],[-5,8],[-49,69],[-11,16],[-17,-10],[-18,-16],[-29,-27],[-38,15],[-84,-81],[-73,-75],[-1,0],[-29,11],[-8,-26],[-37,-78],[-3,-6],[-8,4],[-7,4],[-13,-34],[10,-9],[-12,-24],[-10,-28],[76,-1],[33,-15],[42,-20],[-49,-63],[-21,-26],[10,-5],[-44,-73],[-29,-47]],[[53269,22565,0],[-2,-3],[-32,-58]],[[52860,22648,0],[-61,28],[-139,63]],[[52660,22739,0],[5,11],[50,101]],[[52715,22851,0],[-684,-80],[-31,-4]],[[52076,22927,0],[54,138],[83,206]],[[53047,25449,0],[5,-5],[1,-2]],[[53053,25442,0],[18,-19],[90,-88]],[[53161,25335,0],[17,-17],[9,-9]],[[56283,23053,0],[-16,-28]],[[56267,23025,0],[19,0],[95,-13],[22,-3],[8,-1],[-1,-7],[-2,-8],[-4,-65],[-34,2],[-46,4],[-3,1],[-11,0],[-38,-103],[-36,-35],[-9,-24],[-1,-5],[-48,-155],[-103,-9],[-11,-3]],[[56064,22601,0],[1,3],[-19,13]],[[56046,22617,0],[-4,7],[-4,8]],[[56038,22632,0],[-120,-13],[-12,-1]],[[55906,22618,0],[-5,-1],[-1,0]],[[55900,22617,0],[-183,-47],[-76,-23],[-79,-38]],[[55562,22509,0],[-78,-37],[-33,-15],[-1,-1]],[[55450,22456,0],[-67,-42],[-96,-59]],[[55287,22355,0],[-21,-14],[-237,157],[-49,-62],[-30,-41],[-32,-51],[-23,-34],[-28,-39],[-30,-63],[-29,-39]],[[54808,22169,0],[-32,23],[-24,18]],[[54752,22210,0],[-31,21],[-77,51]],[[54644,22282,0],[-132,87],[-11,8]],[[54501,22377,0],[-104,-143],[-48,-67]],[[54349,22167,0],[-30,-40],[22,-13]],[[54341,22114,0],[-21,-29],[-11,-16]],[[54309,22069,0],[-4,-6],[-28,-39]],[[54277,22024,0],[-81,41]],[[54196,22065,0],[-4,-6],[-10,-17]],[[54182,22042,0],[-16,-26],[-19,-40],[-7,-14],[-44,19],[-45,20],[-5,2],[-55,20]],[[53991,22023,0],[-4,-7],[-7,-14]],[[53980,22002,0],[-70,-140]],[[53910,21862,0],[-21,9],[-27,9]],[[53862,21880,0],[-81,35],[-26,11],[-39,17]],[[53716,21943,0],[-22,18],[-12,10]],[[53682,21971,0],[1,1],[4,4]],[[53687,21976,0],[-58,30],[-43,21]],[[53500,22253,0],[8,11],[5,7]],[[53513,22271,0],[18,24],[19,24]],[[56256,23364,0],[-26,-90],[58,-8],[4,-1],[40,-3],[-2,-19],[-1,-5],[26,-2],[-1,-16],[0,-33],[0,-47],[-1,-45],[-3,-14],[-9,-34],[-58,6]],[[54853,21343,0],[-3,-97]],[[54850,21246,0],[3,-95],[4,-53],[5,-37],[10,-27],[5,-64],[3,-24],[1,-12]],[[54881,20934,0],[5,-30]],[[54886,20904,0],[3,-13],[3,-13],[-85,-63]],[[54807,20815,0],[-27,-21]],[[54780,20794,0],[82,-63]],[[54862,20731,0],[107,-82]],[[54969,20649,0],[27,-20]],[[54996,20629,0],[-117,-81]],[[54879,20548,0],[-103,-94],[-188,-190],[-95,-95]],[[54493,20169,0],[-74,-67]],[[54419,20102,0],[-25,-22],[-98,-82]],[[54296,19998,0],[-98,-80],[-119,-70]],[[54049,20232,0],[-20,158]],[[53682,21971,0],[34,-28]],[[53716,21943,0],[146,-63]],[[53862,21880,0],[48,-18]],[[53980,22002,0],[11,21]],[[54182,22042,0],[14,23]],[[54277,22024,0],[32,45]],[[54309,22069,0],[32,45]],[[54349,22167,0],[152,210]],[[54501,22377,0],[143,-95]],[[54644,22282,0],[108,-72]],[[54752,22210,0],[56,-41]],[[55287,22355,0],[163,101]],[[55450,22456,0],[112,53]],[[55900,22617,0],[6,1]],[[56038,22632,0],[8,-15]],[[56064,22601,0],[-12,-52]],[[56052,22549,0],[-121,-140],[-64,-17],[-69,-16],[-60,-17],[-82,-22],[-38,-19],[-78,-37],[-34,-18],[-34,-19],[-10,-10],[-40,-37],[-15,-12],[-46,-31],[-44,-34],[-158,-120],[-38,-46],[-39,-52],[-9,-14],[-146,-243],[-8,-20],[-30,-92],[-20,-96],[-16,-94]],[[55602,19507,0],[-60,13],[-158,-9],[-37,-7],[-41,-5],[-59,9],[-3,-74],[-112,-39],[-89,-50],[-10,-36],[-60,-59],[-25,-19],[-22,-21],[-36,-84],[-15,-46],[-56,-129],[-8,-54],[-11,-144],[-31,-21],[-34,-21],[-506,-526],[-330,-351]],[[53878,17902,0],[-324,152],[-406,190],[-21,36]],[[53001,18448,0],[-40,17]],[[52961,18465,0],[37,91],[97,239]],[[53095,18795,0],[73,256],[52,128],[83,112],[84,114],[111,83],[120,75]],[[53618,19563,0],[124,63],[337,222]],[[54079,19848,0],[119,71],[98,79]],[[54296,19998,0],[98,83],[7,6],[18,15]],[[54419,20102,0],[35,32],[15,13],[2,2],[22,20]],[[54493,20169,0],[65,66],[6,6],[24,24],[188,190],[78,71],[25,22]],[[54879,20548,0],[42,-29],[34,-23],[4,-129],[38,-111],[15,-21],[16,-11],[11,-9],[32,-47],[19,-30],[6,-12],[9,-19],[17,-40],[16,-35],[26,-58],[20,-51],[73,-74],[88,-88],[204,-202],[53,-52]],[[55265,20229,0],[41,1],[130,4],[94,1],[143,4],[221,4]],[[55894,20243,0],[231,5],[18,0],[123,3]],[[56266,20251,0],[193,-3],[3,0],[35,0]],[[56497,20248,0],[122,-1],[45,70],[22,34]],[[56686,20351,0],[10,21],[9,17]],[[56705,20389,0],[32,64],[1,1],[0,2]],[[56738,20456,0],[1,4],[7,22]],[[56746,20482,0],[1,15]],[[56747,20497,0],[-2,22],[-1,10]],[[56744,20529,0],[-2,29],[-2,4],[-8,22]],[[56732,20584,0],[33,-15]],[[56765,20569,0],[94,-62],[23,-15]],[[56882,20492,0],[52,-41],[20,-19],[37,-31],[88,-103],[84,-108],[34,-51],[41,-59]],[[57238,20080,0],[76,-102],[81,-96]],[[57395,19882,0],[-37,-35],[-34,-32],[-4,-51],[-20,-394],[-3,-60],[-30,-40],[-135,-176],[-123,-191]],[[57009,18903,0],[-31,-30],[-16,-17]],[[56962,18856,0],[-171,176],[-119,94],[-310,263],[-384,140],[-230,22],[-96,-29],[-50,-15]],[[54879,20548,0],[17,12],[100,69]],[[54996,20629,0],[0,1],[7,4],[4,2],[41,-72]],[[55048,20564,0],[5,-7],[19,-30],[25,-37],[72,-111],[18,-28],[41,-64]],[[55228,20287,0],[13,-20],[24,-38]],[[58230,21963,0],[24,-29],[10,-13],[15,-25],[9,-20],[8,-19],[3,-14],[12,-13],[28,-47],[22,-39],[-6,-2],[20,-37],[10,-24],[14,-52],[2,-26],[0,-24],[0,-11],[7,2],[5,-1],[3,-3],[3,-5],[1,-17],[-1,-29],[-8,-66],[-10,-44],[-5,-20],[0,-2],[-7,-18],[-4,-18],[-3,-15],[-1,-15],[1,-24],[4,-23],[7,-24],[5,-15],[10,-6],[4,-1],[28,-15],[15,3],[6,-83],[1,-15],[1,-35],[3,-40]],[[56882,20492,0],[-117,77]],[[56732,20584,0],[10,-27],[2,-28]],[[56744,20529,0],[3,-32]],[[56746,20482,0],[-8,-26]],[[56738,20456,0],[-1,-4],[-32,-63]],[[56705,20389,0],[-10,-20],[-9,-18]],[[56686,20351,0],[-67,-105],[-122,2]],[[56497,20248,0],[-22,0],[-15,0],[-194,3]],[[56266,20251,0],[-141,-4],[-231,-4]],[[55894,20243,0],[-221,-5],[-142,-3],[-95,-2],[-171,-4]],[[55228,20287,0],[-59,91],[-72,111],[-44,67],[-5,8]],[[55048,20564,0],[-41,71],[-11,-6]],[[54996,20629,0],[-15,12],[-12,8]],[[54969,20649,0],[-60,46],[-47,36]],[[54780,20794,0],[1,2],[26,19]],[[54886,20904,0],[-3,19],[-2,11]],[[54850,21246,0],[1,50],[2,47]],[[56052,22549,0],[387,51],[389,-129],[4,-1],[13,-5],[402,-143],[237,-84],[23,-9],[250,7],[108,-38]],[[56267,23025,0],[2,3],[14,25]],[[56270,23436,0],[33,173],[0,2],[11,58],[18,93],[3,18]],[[56427,23716,0],[38,-29],[7,-6]],[[56472,23681,0],[2,-1],[48,-28]],[[56522,23652,0],[22,-14],[14,-8]],[[56558,23630,0],[11,-16],[6,-6]],[[56581,23585,0],[8,-2],[19,-6]],[[56608,23577,0],[4,1],[14,3]],[[57063,23569,0],[-2,3],[-3,7]],[[57082,23592,0],[-27,56],[-13,27]],[[57042,23675,0],[160,76]],[[27262,44456,0],[12,173],[19,237],[21,104],[12,64],[32,169],[187,153],[52,41],[144,252],[58,105],[55,89],[95,47],[108,25],[56,-56],[30,-11],[50,-16],[46,115],[3,41],[53,194],[36,145],[-195,-31],[-285,-45],[-25,16],[-58,27],[-103,41],[-87,38],[-490,137],[-133,24],[-29,144],[-61,-24],[-103,-39]],[[26762,46615,0],[-21,143],[-14,74],[-29,176],[-16,-2],[-88,198],[17,79],[24,18],[136,45],[-56,113],[-60,172],[-46,65],[-5,83],[81,38],[53,75],[16,51],[60,90],[66,83],[110,123],[124,138],[28,22],[138,68],[135,66],[113,63],[45,6],[-26,174],[687,95],[500,79],[99,21],[62,18],[515,190],[114,31],[160,34],[298,43],[330,-66],[177,-31],[182,-28],[123,-15],[112,-12],[-141,-694],[32,-76],[41,-55],[65,-81],[14,-44],[19,-46],[-33,-145],[-23,-105],[-13,-60],[-4,-154],[-7,-134],[3,-36],[32,-64],[41,-76],[42,-95],[28,-34],[66,-87],[73,-79],[87,48],[0,-65],[-12,-69],[-88,-81],[-39,-14],[-78,-21],[-259,-94],[-132,-69],[-153,-85],[-88,-60],[-164,5],[-124,-27],[-118,-31],[-97,-47],[-105,-55],[-154,-71],[-90,-55],[-71,-85],[-106,-103],[346,-342],[13,-15],[-13,-12],[-99,-96],[80,-86],[71,-75],[17,-20],[-19,-17],[-71,-63],[-68,-58],[-12,-12],[72,-87],[-6,-66],[3,-53],[14,-54],[25,-52],[27,-36],[37,-35],[20,-18],[31,-16],[52,-19],[43,-12],[46,-14]],[[33639,46060,0],[103,-73],[22,-15],[10,-7],[27,-17],[33,-22],[81,-54],[11,-9],[36,-23],[89,-61],[-55,-45],[-74,-60],[-34,-28],[-26,-21],[22,-27],[-71,-50],[-73,-50],[-70,-54],[-66,-57],[-66,-62],[-61,-61],[-21,-26],[-112,-132],[-79,72],[-40,35],[-29,27],[-96,85],[-45,42],[-177,-5],[-194,31],[-366,88],[-91,94],[-74,101],[-9,12],[40,22],[74,39],[27,14],[21,11],[77,42],[90,50],[13,7],[179,98],[12,7],[17,7],[22,9],[23,9],[10,5],[76,18],[79,0],[82,-11],[7,72],[12,96],[12,121],[6,63],[53,-1],[59,-10],[56,-17],[32,-7],[53,-31],[10,-7],[25,-15],[12,-8],[53,-31],[13,-10],[33,-21],[31,-22],[186,-127]],[[24449,44148,0],[67,93],[18,-17],[42,22],[184,670],[11,40],[19,25],[360,86],[288,127],[216,111],[119,105],[85,102],[476,514],[259,287],[116,147],[39,56],[18,25],[-4,74]],[[64464,21187,0],[-7,-17]],[[64338,21183,0],[-70,4],[-66,3]],[[64202,21190,0],[1,-121],[2,-149]],[[64058,20474,0],[1,-13],[4,-63]],[[63468,20285,0],[-68,-45],[-34,-22]],[[63268,20222,0],[-56,43],[-49,38]],[[62949,20380,0],[-6,-18],[-26,-87]],[[62917,20275,0],[-14,-55]],[[62898,20068,0],[-55,78],[-32,44],[-76,116],[-42,65]],[[62693,20371,0],[-2,4],[-80,126]],[[62611,20501,0],[-100,155]],[[62511,20656,0],[-61,94],[-285,442],[-71,109],[-64,91]],[[62030,21392,0],[-12,18],[-80,105],[39,91]],[[62490,22815,0],[23,-45]],[[63153,21940,0],[48,-41]],[[61805,20466,0],[-30,-14],[-92,-43]],[[61683,20409,0],[-70,-31],[-3,-1],[-35,-16]],[[61575,20361,0],[-59,-25],[-5,72]],[[61511,20408,0],[-62,-15],[-23,-5]],[[61330,20327,0],[-2,-6],[-11,-27]],[[61317,20294,0],[-44,-12],[-37,-11],[-51,66],[-82,113],[-99,141],[-66,63],[-48,64],[-66,79],[-68,76],[-68,67],[-93,68],[-34,9],[-56,8],[-40,-4],[-45,-14],[-103,-25]],[[60317,20982,0],[-6,47],[-45,34],[-6,4],[-35,22],[-18,42],[-14,30],[-12,29],[-24,53],[-30,68],[-18,38],[-31,64],[-23,50],[15,43],[116,152],[2,2]],[[62030,21392,0],[-8,-49],[-65,-442],[-62,-278],[-11,-122],[-34,-15],[-45,-20]],[[60317,20982,0],[10,-60],[-38,-88],[-343,-374],[-122,-149],[-59,-78],[-155,-125],[-201,-166],[-171,-123]],[[78771,47399,0],[-10,-26],[-28,-78]],[[78733,47295,0],[-44,-109],[-20,-48]],[[78669,47138,0],[-24,-59],[-25,-61]],[[78620,47018,0],[-121,-3]],[[78499,47015,0],[-15,-35],[-14,-33]],[[78470,46947,0],[-2,-5],[-7,-16],[-33,-74]],[[78428,46852,0],[-2,-3],[0,-1],[-42,-91],[-3,-6]],[[78381,46751,0],[-27,-54],[-1,-2],[-15,-31],[-6,-12]],[[78332,46652,0],[-8,-8],[-4,-4],[-13,-14],[-7,-7]],[[78300,46619,0],[-11,-5],[-18,-8],[-17,-8],[-4,-2]],[[78250,46596,0],[-186,-100],[-38,-23],[-83,-55]],[[77943,46418,0],[-17,-51],[-22,-64],[-4,-12]],[[77900,46291,0],[-6,-52],[-16,-148]],[[77878,46091,0],[-1,-10],[-1,-10],[-10,-96]],[[77866,45975,0],[-1,-7],[0,-5],[-5,-52]],[[77860,45911,0],[-3,0],[-11,1]],[[77846,45912,0],[-6,-25],[0,-35]],[[77840,45852,0],[-6,10],[-132,88],[-17,-50],[-44,6],[-29,4],[-15,1],[-65,3],[-13,1],[-72,1]],[[77447,45916,0],[-3,-1],[-3,-2]],[[77441,45913,0],[-12,-1],[-14,0],[-56,-7]],[[77359,45905,0],[-1,-3],[0,-1]],[[77358,45901,0],[-129,4]],[[77229,45905,0],[0,2],[-1,4]],[[77228,45911,0],[-90,11]],[[77126,45924,0],[-9,1]],[[76899,46000,0],[31,186],[-299,-133]],[[76631,46053,0],[19,82],[127,64]],[[76777,46199,0],[-104,271]],[[76644,46506,0],[-54,78],[-27,39],[-20,-8],[-13,19],[11,133],[-148,14],[1,23],[-399,41]],[[75962,47396,0],[104,-28],[337,-85],[-9,106],[41,168],[354,22],[27,2]],[[76870,47099,0],[65,5],[-4,35]],[[76931,47139,0],[92,39],[60,26],[139,83],[122,114],[120,110],[171,-64],[-29,127],[38,77],[99,-37],[7,14],[7,20],[4,24],[-1,21],[-3,10],[-5,12],[-7,11],[-10,12],[-12,11],[-29,15],[31,55],[113,-59],[71,-36],[81,-41],[81,-43],[74,-38],[195,-99],[180,-92],[17,-6],[10,-2],[19,-1],[29,3],[22,10],[23,17],[112,-29],[19,-4]],[[77358,45901,0],[1,4]],[[77441,45913,0],[6,3]],[[77803,45632,0],[-17,-104]],[[77720,45265,0],[-23,-75]],[[77173,44814,0],[-248,7],[-114,2],[-20,0],[-84,1],[-39,-1],[-41,0]],[[76624,44836,0],[-11,56],[-3,16],[-33,71],[33,4]],[[76610,44983,0],[-22,108],[-22,116],[-1,9],[-2,34],[-6,60],[-3,26],[-3,29],[4,35],[1,9],[2,23],[4,51],[9,71],[6,36],[1,14],[-3,15],[-5,18],[-6,17],[-7,32],[-7,41],[-7,47],[-1,14],[6,41],[1,10],[42,27],[6,28],[17,79],[17,80]],[[76631,46053,0],[319,120]],[[77126,45924,0],[12,-2]],[[77228,45911,0],[1,-6]],[[77538,44774,0],[-4,-63],[-2,-27]],[[77532,44684,0],[48,-10]],[[77580,44674,0],[20,-6],[17,-7]],[[77617,44661,0],[31,-222]],[[77648,44439,0],[2,-9],[14,-92]],[[77664,44338,0],[12,-87],[15,-103]],[[77691,44148,0],[1,-15],[8,-42],[5,-32],[6,-35]],[[77711,44024,0],[3,-18],[4,-29],[9,-54],[8,-46],[10,-67],[17,-92],[8,-47],[-5,-51],[-14,-65],[-25,-115],[-39,-193],[-8,-29],[-11,-44],[-8,-46],[-30,1]],[[77630,43129,0],[-85,4]],[[77545,43133,0],[-7,4],[-8,-18],[-55,-108],[-36,-77],[-11,-20],[3,-105],[-2,-8]],[[77429,42801,0],[-1,1],[-22,21]],[[77135,42857,0],[-95,-13]],[[61426,20388,0],[37,8],[48,12]],[[61575,20361,0],[108,48]],[[61683,20409,0],[122,57]],[[61805,20466,0],[220,98],[203,90],[205,91],[16,6],[62,-95]],[[62611,20501,0],[82,-130]],[[81090,47515,0],[-71,-71],[-162,382],[-160,369],[-43,99],[-16,27],[-29,23],[-33,12],[-38,6],[-42,6],[-56,8],[-189,35]],[[79374,48740,0],[5,10],[49,101],[198,412],[33,67],[2,3],[13,28],[35,73],[3,6],[38,79],[111,230],[185,384],[16,-66],[18,-74],[11,-28],[40,-44],[40,-22],[25,-9],[183,-45],[66,-14],[197,-75],[182,-51],[160,-54],[117,-38],[151,-56],[127,-45],[259,-102],[194,-81],[336,-154],[406,-222],[177,-10]],[[82751,48943,0],[-170,-176],[-80,-56],[-136,-96],[-212,-149],[-226,-120]],[[81927,48346,0],[-53,-27]],[[81326,47747,0],[-185,-173],[-21,-19]],[[81120,47555,0],[-28,-27],[-6,-6]],[[76658,28245,0],[-19,-20],[-53,-49],[-12,-100],[96,-278],[14,-30],[6,-10],[22,-43],[138,-265],[7,0],[-204,-690]],[[75795,26440,0],[1,104]],[[75796,26544,0],[23,282],[6,433]],[[75825,27259,0],[-29,439]],[[75815,28154,0],[6,79]],[[75844,28556,0],[8,106],[5,76]],[[75864,28837,0],[25,-26],[111,-10],[40,-2]],[[76040,28799,0],[100,-16],[80,-15],[61,-12],[74,-12],[31,1]],[[79604,45553,0],[1,-37],[112,-7],[148,-8],[-3,-268],[-44,2],[-113,-108],[-95,-19],[-21,-4],[-27,-6],[-46,-18],[-125,-48],[-38,-15],[-28,-11],[-31,-10],[-18,-14],[-78,-60],[-18,-14],[-46,-19],[31,-17],[6,-9],[11,-12],[8,-13],[2,-20],[-40,-167]],[[79152,44651,0],[-36,15],[-50,11],[-192,42],[-594,124],[-234,47],[-116,26]],[[77930,44916,0],[-112,25],[-50,10]],[[77768,44951,0],[-153,30]],[[77846,45912,0],[14,-1]],[[77860,45911,0],[6,64]],[[77866,45975,0],[12,116]],[[77878,46091,0],[22,200]],[[78250,46596,0],[50,23]],[[78300,46619,0],[12,12],[20,21]],[[78332,46652,0],[49,99]],[[78381,46751,0],[47,101]],[[78428,46852,0],[42,95]],[[78470,46947,0],[29,68]],[[78499,47015,0],[91,4],[30,-1]],[[78620,47018,0],[49,120]],[[78669,47138,0],[64,157]],[[78733,47295,0],[38,104]],[[78878,47293,0],[317,-183]],[[82947,44692,0],[-231,-400],[-113,-211],[-57,-107],[-19,-38],[-49,-91]],[[82478,43845,0],[-34,-65],[-24,-45],[-35,-65]],[[82385,43670,0],[-49,-95],[-32,-61],[-18,-34],[-14,-26],[-41,-76],[-23,-45],[-7,-11],[-68,-130]],[[82133,43192,0],[-97,1]],[[82036,43193,0],[-139,6]],[[81897,43199,0],[-117,5],[-124,4],[-38,2],[-51,15]],[[81567,43225,0],[-11,88],[-37,195],[-53,273],[-40,206],[-14,83],[-4,79],[-2,48],[2,51],[4,37],[6,54],[9,43],[11,58],[15,48],[14,40],[26,73],[35,102],[238,661],[93,18],[149,20],[28,-4],[116,-5],[52,-3],[161,-50],[55,38],[9,3],[119,16],[126,-141],[128,-126],[54,-50],[73,-78],[44,-53],[33,-21],[69,-38],[11,-27],[-139,-171]],[[83906,42655,0],[-4,-25],[-66,-421]],[[83689,41744,0],[-25,2],[-73,13],[-68,9],[-162,26],[-173,27],[-144,23],[-139,-111]],[[82905,41733,0],[-73,3]],[[82819,41959,0],[-5,98]],[[82814,42057,0],[-1,14]],[[82813,42071,0],[-4,79]],[[82809,42150,0],[0,12]],[[82809,42162,0],[-2,40]],[[82807,42202,0],[-6,109],[-1,15]],[[82800,42326,0],[-4,88]],[[82796,42414,0],[-15,294]],[[82520,42880,0],[-77,-4],[-44,4]],[[82399,42880,0],[-42,4]],[[82357,42884,0],[-42,5]],[[82315,42889,0],[-143,18],[-106,11],[-6,-2]],[[82060,42916,0],[-8,-2],[-10,-6],[-6,-5],[-4,-7]],[[82032,42896,0],[19,60]],[[82051,42956,0],[5,33],[28,75],[4,9],[5,15]],[[82093,43088,0],[5,12],[35,92]],[[82133,43192,0],[71,137],[8,14],[48,90],[57,106],[62,119],[6,12]],[[82385,43670,0],[38,70],[31,60],[24,45]],[[82478,43845,0],[71,133],[61,115],[12,24],[57,107],[36,68],[20,35],[5,7],[81,140],[126,218]],[[82947,44692,0],[105,-106],[96,-103],[120,-123],[91,-94],[8,-10],[68,-69],[10,-11],[95,-99],[90,-94],[19,-20],[12,-11],[57,-57],[66,-44],[328,-208],[262,-167],[48,-31],[41,-27]],[[86090,42789,0],[-9,-31],[-9,-30],[-6,-31]],[[86066,42697,0],[-5,-25],[-36,23]],[[86025,42695,0],[-56,36]],[[85969,42731,0],[-116,-96],[-62,-52],[-137,-247],[37,-90],[-141,-151],[-59,5]],[[85491,42100,0],[-12,39],[-4,33],[1,61],[15,235],[3,28],[35,161],[35,137],[-69,14],[-146,-19],[-82,-59],[-102,43],[-2,172],[-133,36],[38,87],[11,26],[-55,35],[-58,38],[-475,300]],[[84821,44111,0],[26,-2],[344,-34],[158,-16],[182,-18],[166,-16],[155,-15],[21,-3],[14,-2],[29,-5],[30,-6],[31,-9],[30,-9],[30,-12],[31,-13],[31,-14],[30,-17],[30,-18],[31,-22],[31,-24],[31,-29],[30,-30],[26,-32],[24,-31],[21,-31],[18,-31],[15,-31],[14,-30],[12,-31],[9,-30],[8,-31],[7,-31],[5,-31],[4,-31],[2,-30],[0,-16]],[[86447,43380,0],[-25,-5],[-86,-13]],[[86336,43362,0],[-2,-30],[-3,-31]],[[86331,43301,0],[-6,-31],[-7,-37],[-11,-31]],[[86307,43202,0],[-11,-31],[-13,-31]],[[86283,43140,0],[-19,-38],[-33,-56]],[[86231,43046,0],[-44,-74],[-27,-46],[-26,-45]],[[86134,42881,0],[-18,-32],[-14,-30],[-12,-30]],[[86415,41231,0],[-21,8]],[[86278,41280,0],[0,1],[-22,9]],[[86195,41311,0],[-137,42],[-97,27],[-117,18]],[[85844,41398,0],[-30,26],[-9,19],[-2,16],[3,27],[9,71],[-1,14],[-7,22],[-3,8],[-8,16],[-209,322],[-57,89],[-14,22],[-13,29]],[[85503,42079,0],[-12,21]],[[85969,42731,0],[25,-16],[31,-20]],[[86066,42697,0],[5,26],[8,29],[11,37]],[[86134,42881,0],[55,92],[42,73]],[[86283,43140,0],[24,62]],[[86331,43301,0],[5,61]],[[86336,43362,0],[111,18]],[[86447,43380,0],[138,21],[297,-2],[-58,-65],[-14,-73],[55,-98],[155,-104],[-4,-16],[-316,-440],[2,-202],[57,-159],[278,-173],[-14,-18],[-51,-77],[263,-134],[162,-91],[65,-77],[130,-152],[-170,-544],[-14,-16],[-15,-13],[-17,-7],[-16,-5],[-22,0],[-26,5],[-183,52],[-90,25],[-120,33],[-60,21],[-187,68],[-146,52]],[[85491,42100,0],[3,0],[9,-21]],[[85844,41398,0],[46,-32]],[[85548,41404,0],[-15,2]],[[85111,41463,0],[-145,23]],[[84674,41534,0],[-181,26],[-15,2]],[[84478,41562,0],[-12,1],[-138,16]],[[83691,41708,0],[-11,5],[6,21],[3,10]],[[84213,43079,0],[216,294],[34,45]],[[84463,43418,0],[-39,25],[32,45],[35,-21]],[[82399,42880,0],[43,-4]],[[82781,42719,0],[0,-11]],[[82781,42708,0],[1,-9]],[[82783,42662,0],[8,-158],[5,-90]],[[82796,42414,0],[2,-62],[1,-9]],[[82799,42343,0],[1,-17]],[[82800,42326,0],[0,-15],[2,-15],[5,-94]],[[82807,42202,0],[0,-6],[2,-34]],[[82809,42150,0],[1,-11],[3,-68]],[[82814,42057,0],[1,-7],[4,-91]],[[82820,41947,0],[0,-6]],[[82820,41941,0],[5,-110],[1,-13]],[[82828,41794,0],[3,-51],[0,-7]],[[82831,41736,0],[-1,-31],[-2,-12],[-4,-16],[-14,-27],[-12,-9],[-3,-2],[-22,-17]],[[82773,41622,0],[-101,-80],[-1,0],[-134,-105],[-3,-3],[-76,-61],[-9,-7],[-5,-3]],[[82442,41361,0],[-67,-45],[-106,-71],[-25,-17],[45,-45],[-85,-56],[-51,-33],[-21,-15],[-15,-14],[-12,-13],[-17,-23],[-13,-21],[-18,-43],[-7,-33],[-3,-25],[-1,-4],[-2,-17],[6,-26],[48,-285],[16,-94],[-9,0],[-21,-4],[-37,-6],[-21,-4],[-16,-2],[-42,161],[-89,323],[-11,38],[-7,40],[-3,26],[-3,44],[0,55],[3,54],[7,43],[9,43],[3,10]],[[81877,41302,0],[10,43],[11,40],[22,70],[22,56],[42,80],[7,3],[3,5],[63,101]],[[82057,41700,0],[5,9],[6,14],[13,30]],[[82081,41753,0],[23,64],[15,36]],[[82119,41853,0],[1,5],[3,9],[19,60],[5,19]],[[82147,41946,0],[7,31],[8,33]],[[82162,42010,0],[1,3],[0,6],[1,4]],[[82164,42023,0],[1,14],[7,84]],[[82172,42121,0],[0,2],[0,2],[-4,65],[-2,55]],[[82166,42245,0],[-4,15],[-1,2],[0,1],[-15,60]],[[82146,42323,0],[-2,6],[-12,40],[-7,27]],[[82125,42396,0],[-1,0],[-16,37],[-4,16]],[[82104,42449,0],[-22,58],[-2,5],[-8,19],[-4,11]],[[82068,42542,0],[-3,15],[-2,10],[-10,56]],[[82053,42623,0],[-14,82]],[[82039,42705,0],[-2,22],[-8,61],[0,3]],[[82029,42791,0],[6,60],[2,4],[0,4],[2,13],[2,10],[0,5],[0,1],[2,16],[0,1]],[[82032,42896,0],[4,-45],[-7,-60]],[[82029,42791,0],[10,-86]],[[82053,42623,0],[15,-81]],[[82068,42542,0],[14,-36],[22,-57]],[[82104,42449,0],[4,-17],[17,-36]],[[82125,42396,0],[21,-73]],[[82146,42323,0],[17,-63],[3,-15]],[[82166,42245,0],[3,-55],[3,-69]],[[82172,42121,0],[-8,-98]],[[82164,42023,0],[-2,-13]],[[82147,41946,0],[-4,-19],[-24,-74]],[[82081,41753,0],[-12,-30],[-12,-23]],[[82057,41700,0],[-77,-6],[-30,12],[-14,103],[-12,92],[-15,107],[-7,37],[-6,21],[-12,32],[-9,25],[-16,29],[-10,19],[-20,31],[-35,46],[-18,19],[-25,24],[-12,11],[-27,22],[-26,20],[-34,21],[-24,13],[-47,20],[-49,20],[-50,20],[-69,26],[-122,47],[-100,41],[-44,20],[-38,23],[-43,27],[-68,46],[-68,38],[-49,29],[42,133],[41,123],[22,61],[113,-45],[93,-36]],[[81192,42971,0],[13,1],[10,3],[11,7],[9,10]],[[81235,42992,0],[5,27]],[[81240,43019,0],[11,65],[25,187],[1,19],[-8,21],[-12,12],[-12,13]],[[81245,43336,0],[86,-28],[43,-15],[147,-50],[46,-18]],[[81897,43199,0],[68,-3],[71,-3]],[[82133,43192,0],[-40,-104]],[[81240,43019,0],[0,-2],[-5,-25]],[[81192,42971,0],[-7,1],[-91,33],[-114,47],[-21,-60],[-43,-121],[-42,-135],[-20,12],[-86,46],[-71,36],[-11,4],[-149,64],[-79,33],[-21,8],[-40,13],[-21,9],[-17,5],[-28,9],[-134,33],[-88,17],[-74,11],[-101,10],[-62,4],[-62,3],[-22,0],[-17,-1],[-28,-4],[-31,-6],[-30,-9],[-32,-8],[-50,-19],[-29,-15],[-42,-24],[-40,-18],[-24,-13],[-24,3],[-14,20]],[[79427,42959,0],[-53,81],[-4,8],[-62,112],[-55,101]],[[79253,43261,0],[31,10],[100,20],[37,8],[44,8],[15,3],[58,12],[2,0],[68,13],[38,8]],[[79646,43343,0],[98,19],[91,21],[37,9],[26,6],[27,1],[55,54]],[[79980,43453,0],[25,23]],[[80552,43595,0],[94,-47],[81,-37],[109,-38],[29,-10],[156,-53],[149,-49],[75,-25]],[[79253,43261,0],[-29,64],[-80,171],[-15,33],[-10,20],[-2,4],[-14,23],[-43,71],[-5,8],[-34,58],[0,24],[-3,14],[-13,52],[-24,36],[-28,42],[-8,12],[-106,91],[-184,137],[-71,53],[-6,11],[-11,10],[-33,27],[-92,80],[-77,66]],[[78365,44368,0],[-29,27],[-182,169],[-296,273],[-2,61],[3,34]],[[77859,44932,0],[71,-16]],[[79152,44651,0],[5,-60],[314,-67],[47,-17],[34,-18],[45,-28],[37,-28],[49,-51],[84,-89],[120,-126],[86,-90],[54,-54],[72,-79],[22,-23],[121,-109],[13,-13],[0,-21],[-3,-15],[-10,-12],[-41,-38],[-105,-104],[-111,-110],[-38,-16]],[[79947,43483,0],[33,-30]],[[79427,42959,0],[-55,-35],[-59,-43],[-24,-25],[-56,-61],[-47,-40],[-20,-19],[-13,-19],[-15,-20],[-57,-122],[-14,-53],[-6,-14],[-3,-9],[-13,-8],[-24,5],[-15,12],[-59,117],[-53,108],[-22,36],[-21,44],[-21,43],[-21,36],[-19,31],[-1,4],[-42,87],[-48,-16],[-43,-14],[-173,-48],[-82,-20],[-72,-20],[-47,-14],[-70,-21],[-51,-14],[-55,-20],[-31,-9],[-47,-14],[-33,-9],[-32,-8],[-24,6],[-105,100],[-47,41],[-17,22],[-89,110],[-33,44],[-18,19]],[[77630,43129,0],[5,41],[14,43],[5,19],[25,61],[0,62],[4,17],[60,245],[5,61],[7,204],[-10,1],[-1,5],[-2,9],[-10,61],[-10,6],[-5,34],[-2,14],[-4,12]],[[77711,44024,0],[-10,31],[-2,51],[-1,13],[-3,12],[-4,17]],[[77691,44148,0],[-27,190]],[[77664,44338,0],[1,0]],[[77665,44338,0],[-17,101]],[[77617,44661,0],[-37,13]],[[77532,44684,0],[6,90]],[[77546,44791,0],[13,40],[1,1]],[[77768,44951,0],[91,-19]],[[64005,39419,0],[-39,-60]],[[63966,39359,0],[-121,-236],[-21,-50],[-18,-51],[-1,-12],[6,-14],[11,-10],[19,-7],[-13,-90],[-24,0],[-23,-7],[-18,-11],[-11,-14],[-21,-51],[-22,-69],[-25,-73]],[[63684,38664,0],[-165,13],[-27,-143],[-13,-30],[-23,-17],[-20,-6],[-16,0],[-89,28],[-102,33],[-81,21],[-93,20],[-34,5],[-43,5],[-128,5],[-33,-1],[-32,-2],[-19,-2],[-30,-4],[-72,-10],[-74,-14],[-22,-7],[-18,-4],[-58,-16],[-135,-53],[-33,-12],[-50,-6],[-35,1],[-36,8],[-40,33],[-52,57]],[[62399,40724,0],[243,-194],[20,-21],[18,-32],[4,-9],[5,-15],[1,-3],[2,-7],[1,-6],[49,0],[30,0],[0,-2]],[[67546,50727,0],[14,-22],[43,-58]],[[67688,50131,0],[1,-2],[7,-14]],[[68291,49482,0],[-21,2],[-34,5]],[[68189,49495,0],[-63,9]],[[68126,49504,0],[-89,3]],[[67732,49573,0],[-32,7],[-28,5]],[[65669,50577,0],[16,47]],[[65970,51032,0],[16,80],[2,10]],[[65988,51122,0],[7,51],[1,8]],[[65996,51181,0],[1,9],[289,131]],[[62438,37883,0],[-211,-167]],[[62943,36392,0],[172,-306],[59,-99],[25,-48],[10,-27],[10,-25],[14,-36],[9,-30],[6,-27],[6,-29],[2,-14],[1,-8],[7,-38],[3,-31],[1,-40],[-2,-44],[-7,-59],[-15,-89],[-35,-84]],[[62890,34835,0],[-1,9],[-1,10],[-2,11],[-3,7],[-5,12],[-6,11],[-9,12],[-10,10],[-11,9],[-20,12],[-24,8],[-9,0],[-9,-2],[-12,-5],[-9,-8],[-9,-10],[-22,-51],[-18,-49],[-20,-68],[-13,-182],[0,-48],[-4,-113],[-3,-62]],[[62670,34348,0],[-2,-5],[-17,-86]],[[62651,34257,0],[-12,-38],[-188,-679],[-23,-77],[-17,-34],[-35,-72],[-12,-28],[-61,-133],[-8,-22],[-2,-22],[2,-58],[2,-69],[5,-66],[-10,-126],[-6,-74],[-18,-160],[-5,-51],[-19,-186],[-10,-146],[-14,-71],[-36,-135],[-1,-63],[12,-90],[23,-188],[14,-65],[47,-102],[10,-55],[5,-114],[4,-34],[6,-77],[1,-24],[3,-14],[6,-13],[10,-23],[10,-27],[13,-21],[14,-19],[13,-13],[13,-8],[19,-11],[20,-34],[-7,-2]],[[62445,30664,0],[-2,-5],[-14,-47]],[[62429,30612,0],[-20,-36],[-6,-11]],[[62089,30391,0],[-15,-1],[-14,-2]],[[61790,30404,0],[-25,2],[-32,3]],[[61323,30511,0],[-31,13],[-35,19],[-64,36],[-61,40],[-33,23],[-9,8],[-41,34],[-30,26],[-51,49],[-31,29],[-94,90],[-52,53],[-37,44],[-41,44],[-33,43],[-29,49],[-27,49],[-27,65],[-14,48],[-8,35],[-9,38],[-7,42],[0,115],[6,108],[7,107],[7,105],[7,126],[1,7],[14,-5],[32,30],[48,46],[-63,38],[-19,12],[-20,17],[-14,17],[-16,22],[-18,28],[-9,31],[-5,28],[-91,2]],[[59612,36410,0],[197,17],[93,10],[10,0],[127,5]],[[60039,36442,0],[28,1],[59,1]],[[60126,36444,0],[1,33],[1,72]],[[60128,36549,0],[-1,18]],[[60127,36567,0],[2,59],[1,40]],[[60130,36666,0],[1,51],[0,18]],[[60131,36735,0],[1,18],[1,63]],[[60133,36816,0],[0,56],[1,64]],[[60134,36936,0],[7,59],[1,10]],[[60142,37005,0],[3,15],[4,28]],[[60149,37048,0],[11,46],[15,51]],[[60175,37145,0],[8,23],[10,28]],[[60193,37196,0],[9,20],[4,11]],[[60206,37227,0],[9,23],[19,53],[11,27],[37,53],[62,85]],[[60344,37468,0],[70,76]],[[60414,37544,0],[124,120],[59,50],[39,23],[10,6],[41,20],[44,18],[54,17],[56,13],[46,7],[43,5],[64,0],[28,0]],[[61022,37823,0],[27,-3],[153,-18],[47,-6]],[[61249,37796,0],[36,-10],[6,15],[13,32],[0,1],[-8,61]],[[61296,37895,0],[-17,5],[-21,10]],[[61258,37910,0],[-15,15],[-6,8],[-6,10]],[[61231,37943,0],[-4,16],[0,15],[3,14],[-37,4],[-61,5],[-8,-47],[-246,15],[-47,-20]],[[88936,57118,0],[55,-39]],[[88991,57079,0],[114,8],[113,-35],[2,-1]],[[89220,57051,0],[212,-80],[54,-20]],[[89486,56951,0],[34,-24],[22,-46]],[[89542,56881,0],[36,-21],[23,-12],[19,-14],[-3,-21]],[[89617,56813,0],[-29,-37]],[[89588,56776,0],[-15,-30],[-53,-210]],[[89520,56536,0],[-148,95],[-5,-4],[-11,-4]],[[89356,56623,0],[-635,-278],[-46,-18]],[[88675,56327,0],[-68,-427],[161,-424],[223,-305],[-45,-19]],[[88946,55152,0],[-233,-138]],[[88713,55014,0],[-68,-28],[-227,-45]],[[88418,54941,0],[-479,62]],[[87939,55003,0],[-398,-64]],[[87541,54939,0],[-117,-24],[-165,-36]],[[87259,54879,0],[-78,-11]],[[87181,54868,0],[-384,-50],[-172,-22],[-144,-2],[-171,-15],[-173,26],[-313,68],[-35,7],[-108,45],[-101,41]],[[85580,54966,0],[-37,17],[-103,45]],[[85440,55028,0],[-212,68],[-157,48],[-242,80],[-75,40],[-70,32],[-364,132],[-22,8]],[[84298,55436,0],[-212,74],[-130,46],[-113,41]],[[83843,55597,0],[-122,73]],[[83721,55670,0],[-103,31]],[[83618,55701,0],[-101,31]],[[83517,55732,0],[-52,20],[-50,22]],[[83415,55774,0],[-97,180]],[[83318,55954,0],[15,66],[52,142],[48,122],[35,182]],[[83468,56466,0],[7,37],[42,165]],[[83517,56668,0],[38,134]],[[83555,56802,0],[6,25],[114,209],[9,17],[67,44],[80,47]],[[83831,57144,0],[84,43],[27,23],[104,92],[162,128],[114,100],[26,21],[81,91],[87,90],[69,70],[95,103],[56,59]],[[84736,57964,0],[140,160]],[[84876,58124,0],[111,117],[74,111],[37,36],[159,156],[33,33],[173,145],[146,110],[88,73],[24,37],[6,53],[258,230],[63,81],[80,77]],[[86128,59383,0],[164,83],[188,97],[12,8]],[[86492,59571,0],[398,35]],[[86890,59606,0],[-103,-85],[289,-89],[35,-191],[52,-136]],[[87163,59105,0],[119,-249]],[[87282,58856,0],[230,-423]],[[87512,58433,0],[228,-395]],[[87740,58038,0],[281,-414],[46,-58]],[[88067,57566,0],[81,-37]],[[88148,57529,0],[284,-204]],[[88432,57325,0],[65,-47],[166,-52],[52,-30],[34,-14],[70,-30],[55,-15],[62,-19]],[[84115,60591,0],[63,17]],[[84178,60608,0],[26,15]],[[84204,60623,0],[57,7]],[[84261,60630,0],[43,-7]],[[84304,60623,0],[30,-34]],[[84334,60589,0],[197,-36]],[[84531,60553,0],[165,-24],[45,-6],[211,-31]],[[84952,60492,0],[219,-6],[17,-4],[26,-21],[39,-5],[33,3],[140,58],[33,62],[97,123],[69,5],[54,-30],[197,-64],[37,63],[51,-7],[81,-55],[87,-222],[208,-113],[-88,-213],[322,-92],[125,-32],[127,-39],[356,-99],[23,0],[8,-10],[-22,-21]],[[87191,59773,0],[-301,-167]],[[86492,59571,0],[-364,-188]],[[84876,58124,0],[-13,-14],[-127,-146]],[[83831,57144,0],[-82,-48],[-37,-58],[-152,-216],[-5,-20]],[[83517,56668,0],[-42,-162],[-7,-40]],[[83318,55954,0],[-19,25]],[[83299,55979,0],[-19,21]],[[83280,56000,0],[-222,161]],[[83058,56161,0],[-187,134]],[[82871,56295,0],[-328,141]],[[82543,56436,0],[-37,-8]],[[82506,56428,0],[10,56],[61,326],[6,34],[89,142],[27,45],[18,67],[10,37],[16,71],[-1,15],[0,162],[4,54],[117,240],[101,205],[94,197],[16,52],[1,33],[-1,20],[-6,26],[-6,21],[-36,42],[-51,32],[-17,2],[-273,37],[-65,9],[-173,16],[-118,-17],[-33,-7],[-81,-22],[-97,-26],[-31,-9],[-117,-28],[-208,-42]],[[81762,58218,0],[-44,64],[-77,62],[-65,51],[-248,113],[-34,71],[-31,29],[-21,16],[-32,23],[-26,53],[52,52],[30,65],[305,212],[57,88],[10,17],[-32,83],[-47,28],[74,200],[91,68],[80,50],[75,36],[91,19],[12,2],[93,27],[24,2],[21,-27],[30,-2],[59,55],[59,11],[81,36],[32,39],[56,3],[33,27],[11,3],[48,13],[63,-9],[-9,263]],[[82583,60061,0],[-1,12],[174,76],[215,36],[-77,137],[97,88]],[[82991,60410,0],[-47,132]],[[82944,60542,0],[140,107],[176,44]],[[83260,60693,0],[5,-40],[31,-10],[22,-1],[35,7],[24,-7],[42,-22]],[[83419,60620,0],[55,-5]],[[83474,60615,0],[48,-59],[79,36],[18,15],[12,19],[22,35],[13,42],[19,78],[16,74],[11,76],[32,33],[39,12],[32,-1],[114,-26],[186,-358]],[[80937,60843,0],[64,5],[40,3]],[[81041,60851,0],[212,3],[138,-2],[149,104],[37,-42],[128,49],[63,-41],[109,31],[50,49],[99,210],[157,287],[62,-5],[10,28],[53,-31],[170,38],[519,-102],[-16,-66],[-28,-74],[-50,-68],[-21,-56],[128,-33]],[[83010,61130,0],[54,-173]],[[83064,60957,0],[23,-71]],[[83087,60886,0],[151,-43]],[[83238,60843,0],[13,-86],[4,-25],[5,-39]],[[82944,60542,0],[8,-22],[39,-110]],[[81762,58218,0],[-63,-22]],[[81699,58196,0],[-26,-11]],[[81673,58185,0],[-13,-9],[-28,-23],[-41,-38],[-110,-100],[-30,-22],[-24,-15],[-201,-93],[-58,-27],[-25,-13],[-16,-13],[-12,-10],[-17,-21],[-11,-17]],[[81087,57784,0],[-3,-7],[-6,-15]],[[81078,57762,0],[-26,-64],[-5,-13]],[[81047,57685,0],[-36,-83],[-7,-16]],[[81004,57586,0],[-92,-230],[-109,-5]],[[80803,57351,0],[-18,-1],[-93,-2]],[[80692,57348,0],[-19,-1],[-213,-22]],[[80460,57325,0],[-2,0],[-25,-3],[-198,-25]],[[80235,57297,0],[-39,27]],[[80196,57324,0],[1,269],[0,17]],[[80197,57610,0],[19,208],[3,29],[29,311],[18,183],[16,175],[8,88],[-2,110]],[[80288,58714,0],[0,17],[1,78]],[[80289,58809,0],[-1,5],[0,7],[-1,8],[-1,7],[-2,7],[-3,7],[-3,7],[-1,4],[-5,12],[-6,11],[-6,11],[-6,10],[-7,11],[-7,10],[-23,33],[-32,45],[-31,45],[-31,45],[-30,46]],[[80093,59140,0],[-37,60],[-44,71]],[[80012,59271,0],[-49,69],[-28,36],[-15,18]],[[79920,59394,0],[5,11],[70,111],[2,12],[0,6],[-2,12],[-9,105],[64,2],[19,-1],[23,1],[11,7],[10,9]],[[80113,59669,0],[73,85],[26,32]],[[80212,59786,0],[9,10]],[[80221,59796,0],[2,10],[-3,18],[-9,36]],[[80211,59860,0],[-28,110],[-6,22],[-41,162]],[[80136,60154,0],[66,263],[4,16],[23,91]],[[80229,60524,0],[-4,33],[-25,171]],[[80200,60728,0],[23,184],[3,20]],[[80226,60932,0],[124,-211]],[[80350,60721,0],[142,243],[11,55]],[[80503,61019,0],[-24,527]],[[80479,61546,0],[-10,239]],[[80469,61785,0],[375,-20],[8,-211],[-79,-63],[-19,-92],[32,-64]],[[80786,61335,0],[-11,-68],[-7,-40]],[[80768,61227,0],[-5,-84],[-4,-178],[71,-103],[107,-19]],[[74578,61996,0],[-26,-51],[-23,-45],[187,-16],[5,-167],[-52,-313],[65,-42],[27,-24],[37,-52],[39,-51],[34,-52],[37,-57],[56,-80]],[[74964,61046,0],[2,-4],[15,-32]],[[74981,61010,0],[48,-63],[60,-32],[85,-67],[57,4],[153,-12],[174,-12]],[[75558,60828,0],[9,0],[38,-3]],[[75605,60825,0],[56,-1],[56,5]],[[75717,60829,0],[53,2]],[[75770,60831,0],[1,-192]],[[75771,60639,0],[50,-41],[15,-13],[42,-62],[53,-70],[26,-10],[114,-64],[13,-19],[61,-77],[18,-26],[22,-179],[49,-128],[3,-29],[-38,-15],[-40,-5],[33,-69],[0,-81],[13,-51],[-22,-67],[70,-45],[110,-81],[64,-49],[-164,-42],[-24,-7],[-167,-25],[-57,7],[-35,-31],[-217,-58],[-5,28],[-30,-12],[-179,-83],[-133,-59],[-87,-91],[-40,-41],[-32,-47]],[[75257,58997,0],[-185,95],[-158,82]],[[74914,59174,0],[-16,10],[-326,161],[-135,28],[-111,11],[-7,-33],[-2,-23],[21,-274],[19,-100],[235,32],[-9,-595],[-65,-44],[-13,-9],[-46,-32],[20,-85],[-111,-270],[6,-260],[0,-21],[-61,8]],[[74313,57678,0],[-55,161]],[[74258,57839,0],[-61,17],[-172,-75],[-215,-71],[-70,9],[-62,-51],[-144,-40],[-94,-67],[-157,-81],[-68,-46],[-6,19],[-11,17],[-34,2],[-29,15],[-45,23],[-26,1],[-46,1],[-74,17],[-33,53],[-52,5],[-17,69],[-11,-6]],[[72831,57650,0],[-7,-8],[-103,0],[-65,-5],[-36,-16],[-56,3],[-6,-27],[-61,-2],[-124,44],[-114,9],[-33,-14],[-95,3],[-59,26],[-41,12],[-321,88],[-130,-33],[-29,60],[-35,172],[-34,169],[-24,63],[-130,226],[-76,92]],[[71252,58512,0],[-58,52],[-12,11]],[[71182,58575,0],[-79,138]],[[71103,58713,0],[58,64]],[[71161,58777,0],[41,58]],[[71202,58835,0],[37,45]],[[71239,58880,0],[49,22]],[[71288,58902,0],[70,-20],[13,-4],[43,-13]],[[71414,58865,0],[65,34]],[[71479,58899,0],[108,-8]],[[71587,58891,0],[44,-18]],[[71631,58873,0],[72,6]],[[71703,58879,0],[70,-4]],[[71773,58875,0],[27,22],[30,1],[22,22],[29,1]],[[71881,58921,0],[77,76]],[[71958,58997,0],[92,23],[44,28],[64,68],[68,65]],[[72226,59181,0],[24,27]],[[72250,59208,0],[-36,58],[-48,29],[-18,51],[-12,36],[-28,35],[-1,28],[-9,14],[-22,22],[-30,29],[8,56],[3,13],[-5,25],[20,42],[61,107],[63,76],[42,25],[36,37],[119,105],[90,143],[41,35],[23,7],[274,25],[52,7],[13,1],[88,31],[78,23],[54,10],[36,4],[35,23],[36,12],[-1,25],[51,64],[67,60],[-4,42],[-17,65],[-8,26],[-62,82],[-67,101]],[[73172,60782,0],[-61,196]],[[73111,60978,0],[-107,242],[76,120],[-78,65],[-16,34],[-12,15],[-29,8],[-36,38],[-7,4],[-49,-5],[10,202]],[[72863,61701,0],[63,-15]],[[72926,61686,0],[63,-12],[52,4],[85,42],[45,-2],[74,29],[55,16],[8,-54],[54,-7],[35,16],[-2,43]],[[73395,61761,0],[110,44],[23,9]],[[73528,61814,0],[88,20],[34,8],[55,19],[65,27],[40,24],[153,38]],[[73963,61950,0],[211,34]],[[74174,61984,0],[41,0]],[[74215,61984,0],[73,0]],[[74288,61984,0],[24,11],[56,21],[67,5]],[[74435,62021,0],[133,18]],[[74568,62039,0],[50,32],[-40,-75]],[[87181,54868,0],[16,-46]],[[87197,54822,0],[-543,-73],[543,73]],[[87197,54822,0],[17,-61]],[[87214,54761,0],[-52,-23],[-276,-118],[25,-52],[40,-84]],[[86951,54484,0],[-247,-183]],[[86704,54301,0],[-210,31],[210,-31]],[[86704,54301,0],[47,-42],[125,-113],[-1,-96],[0,-20]],[[86875,54030,0],[6,-37]],[[86881,53993,0],[41,-94],[24,-56]],[[86946,53843,0],[189,-140],[6,-4]],[[87141,53699,0],[11,-10],[22,-21],[-161,-294]],[[87013,53374,0],[-305,-262]],[[86708,53112,0],[-79,-75],[-126,-110]],[[86503,52927,0],[-144,-130]],[[86359,52797,0],[-9,-7],[-9,-7]],[[86341,52783,0],[-19,-16],[-17,-15],[-5,-8],[-1,-3],[-118,-7],[-21,34],[-6,10],[-87,16],[-182,35],[-4,1],[-21,2],[-63,67],[-34,157],[-16,71],[-12,178],[-97,-35],[-95,-33],[-67,-32],[-11,-5],[-31,7],[-5,1],[-38,-7],[-7,-18],[-6,-14],[-76,4],[-85,-31],[-33,49],[-67,127],[531,200],[-531,-200],[-13,-6],[-136,-78],[-152,135],[-35,32],[-25,-16],[-34,-20],[-24,-14],[-34,-20],[85,-192],[3,-8],[5,-10],[43,-88],[47,-89],[78,-87],[59,-64],[33,-64],[-16,-7],[-91,-38],[9,-65],[7,-48],[-111,-14],[-162,-20],[-170,-156],[-451,-59],[-11,52],[-1,3],[-164,-35],[-17,-98],[-116,29],[-158,40],[11,42],[20,81],[-69,-7],[-8,0],[-13,-25],[-53,5],[-69,18],[-22,5],[-186,-18],[-7,-1],[-85,-63],[-19,-14],[-18,-58],[-7,-59],[-2,-13],[-155,-40],[84,-294],[-14,-6],[-18,-8],[-7,-66],[-6,-42],[-10,-56],[-16,-40],[-164,13],[-165,16],[16,51]],[[82583,51734,0],[55,121]],[[82638,51855,0],[-59,-3],[-29,-1]],[[82550,51851,0],[-188,4],[-36,0],[-176,4],[-61,8],[-164,61],[-19,6]],[[81906,51934,0],[6,28],[21,113]],[[81933,52075,0],[4,24],[5,30]],[[81942,52129,0],[5,41],[-14,17]],[[81933,52187,0],[-3,20]],[[81930,52207,0],[-9,57]],[[81921,52264,0],[-2,71]],[[81919,52335,0],[2,83]],[[81921,52418,0],[9,29],[11,32],[13,37]],[[81954,52516,0],[10,27]],[[81964,52543,0],[15,37]],[[81979,52580,0],[23,43]],[[82002,52623,0],[45,93]],[[82047,52716,0],[6,13],[50,139],[10,37],[4,42]],[[82117,52947,0],[8,36]],[[82125,52983,0],[9,2]],[[82134,52985,0],[2,-7]],[[82136,52978,0],[34,5]],[[82170,52983,0],[-4,28]],[[82166,53011,0],[10,2]],[[82176,53013,0],[0,7],[36,50],[-7,47],[52,12],[9,15],[29,52],[80,141],[9,23]],[[82384,53360,0],[67,151],[31,72],[5,7]],[[82487,53590,0],[-1,24],[57,7],[12,-9],[50,5],[23,96],[28,13]],[[82656,53726,0],[-17,112],[-289,15]],[[82350,53853,0],[-122,8]],[[82228,53861,0],[-128,5],[-34,-16],[-114,133],[23,44]],[[81975,54027,0],[-158,63],[-22,12],[-12,12]],[[81783,54114,0],[-335,239],[-222,225]],[[81226,54578,0],[22,-3]],[[81248,54575,0],[42,-5]],[[81290,54570,0],[45,0],[42,4]],[[81377,54574,0],[36,9]],[[81413,54583,0],[14,4]],[[81427,54587,0],[21,8],[79,36]],[[81527,54631,0],[310,137],[336,108]],[[82173,54876,0],[338,108]],[[82511,54984,0],[227,105],[421,198]],[[83159,55287,0],[234,109]],[[83393,55396,0],[235,86],[4,1],[26,10]],[[83658,55493,0],[29,11],[-15,33]],[[83672,55537,0],[-11,25]],[[83661,55562,0],[6,29],[32,86]],[[83699,55677,0],[22,-7]],[[83843,55597,0],[455,-161]],[[85440,55028,0],[140,-62]],[[77245,54581,0],[316,67],[18,4]],[[77579,54652,0],[233,59],[20,5]],[[77832,54716,0],[3,1],[20,6]],[[77855,54723,0],[275,85]],[[78130,54808,0],[-3,-26],[1,-12]],[[78128,54770,0],[-6,-99],[-1,-14]],[[78121,54657,0],[0,-26]],[[78121,54631,0],[-4,-112],[0,-9]],[[78117,54510,0],[-4,-119],[0,-6]],[[78113,54385,0],[-1,-17],[198,-26]],[[78310,54342,0],[52,-3]],[[78362,54339,0],[121,11]],[[78483,54350,0],[68,5]],[[78551,54355,0],[201,17]],[[78752,54372,0],[129,12]],[[78881,54384,0],[10,-96],[449,64],[149,-210],[10,-15],[51,-72]],[[79550,54055,0],[51,-75]],[[79601,53980,0],[49,-105],[25,-55]],[[79675,53820,0],[32,-117]],[[79707,53703,0],[28,-85]],[[79735,53618,0],[29,-104]],[[79764,53514,0],[28,-102]],[[79792,53412,0],[31,-119],[116,-205],[-21,-168]],[[79918,52920,0],[-259,-419],[-19,-12],[-7,-50]],[[79633,52439,0],[-63,-587]],[[79570,51852,0],[-397,30]],[[79173,51882,0],[32,104]],[[78211,51822,0],[-67,-42],[-20,-23],[-426,77],[50,190],[-329,89],[-240,91],[-269,133],[-281,-100],[-104,7],[-237,-152],[-306,-237]],[[75982,51855,0],[-107,47],[-22,80],[-279,897]],[[75574,52879,0],[168,359]],[[75742,53238,0],[-38,296]],[[75704,53534,0],[-54,409],[-8,68]],[[75642,54011,0],[-9,31]],[[75633,54042,0],[28,219]],[[75661,54261,0],[63,288],[9,140],[25,297],[-30,348]],[[75728,55334,0],[0,11],[103,-25],[15,-42],[87,-29],[29,-6],[138,-11],[131,-2],[-40,-202],[56,-137],[-25,-28]],[[76222,54863,0],[111,-69]],[[76333,54794,0],[81,-35],[3,-44],[49,-9],[-6,-31],[245,-42],[19,5],[24,6],[497,-63]],[[74258,57839,0],[6,-19],[44,-141],[-8,-162],[-3,-141],[44,-56],[4,-88],[67,4],[20,-191],[-38,-35],[-37,-285],[-2,-25],[-1,-5],[185,-3],[498,-122],[39,-46],[49,-57],[93,-109],[102,-114],[24,-19]],[[75344,56225,0],[-43,-40],[29,-58]],[[75330,56127,0],[59,-95],[212,-276],[41,-69],[65,-135],[-7,-82],[-15,-63],[-11,-65]],[[75674,55342,0],[11,-2],[43,-6]],[[75661,54261,0],[-15,-119],[-7,-53],[-6,-47]],[[75642,54011,0],[62,-477]],[[75704,53534,0],[25,-192],[13,-104]],[[75574,52879,0],[279,-896],[33,-119],[-38,12],[-11,47],[-49,-2],[-339,128],[-153,32],[-133,-30],[-205,64],[-173,111],[-331,95],[-159,-8],[-94,32],[-480,121],[-640,-10],[-73,51],[-286,-9],[-179,61],[-97,76],[-329,140],[-165,10],[-138,52],[-155,-25],[-154,18]],[[71505,52830,0],[-129,-9],[-107,67],[-59,112],[-233,82],[-108,-15],[10,38],[181,761],[158,244],[-624,178],[-143,86],[35,67],[-645,365],[-42,582],[51,487],[-338,622],[223,567],[30,845],[38,104]],[[69803,58013,0],[54,229],[-236,345]],[[69621,58587,0],[-39,181]],[[69582,58768,0],[256,-94],[175,188],[123,-99]],[[70136,58763,0],[306,-157]],[[70442,58606,0],[71,-37]],[[70513,58569,0],[52,-28],[88,-46]],[[70653,58495,0],[131,220]],[[70784,58715,0],[9,62]],[[70793,58777,0],[9,29],[20,28]],[[70822,58834,0],[20,19]],[[70842,58853,0],[16,29]],[[70858,58882,0],[31,51]],[[70889,58933,0],[31,-25],[44,-35]],[[70964,58873,0],[32,-26],[33,-26]],[[71029,58821,0],[74,-108]],[[71103,58713,0],[72,-126],[7,-12]],[[71182,58575,0],[70,-63]],[[78065,61469,0],[304,-68],[74,19]],[[78443,61420,0],[48,-38],[53,-8],[-3,-41],[-6,-157]],[[78535,61176,0],[-21,-155],[-6,-49]],[[78508,60972,0],[196,-16],[1,-30]],[[78705,60926,0],[12,-2],[101,-13]],[[78818,60911,0],[32,-18],[37,-21]],[[78887,60872,0],[10,-22],[8,-59]],[[78905,60791,0],[58,-75],[37,-49]],[[79000,60667,0],[27,-4],[91,-17],[40,-7]],[[79158,60639,0],[91,-47],[62,-31]],[[79311,60561,0],[43,18],[125,51]],[[79479,60630,0],[15,6],[215,74]],[[79709,60710,0],[54,99],[-23,49],[-9,127]],[[79731,60985,0],[-12,46],[-11,38]],[[79708,61069,0],[9,46]],[[79717,61115,0],[94,29],[359,2],[36,-1],[20,-213]],[[80226,60932,0],[-26,-204]],[[80200,60728,0],[29,-204]],[[80229,60524,0],[-93,-370]],[[80136,60154,0],[75,-294]],[[80221,59796,0],[-108,-127]],[[79920,59394,0],[-29,24],[-192,157]],[[79699,59575,0],[-78,52]],[[79621,59627,0],[-21,12],[-90,53]],[[79510,59692,0],[-99,38]],[[79411,59730,0],[-1,1],[-276,82]],[[79134,59813,0],[-243,59]],[[78891,59872,0],[-172,29],[-158,25],[-2,1]],[[78559,59927,0],[-169,23],[-13,2]],[[78377,59952,0],[-22,-1],[-112,0]],[[78243,59951,0],[-28,-4]],[[78215,59947,0],[-17,-2],[-73,-8]],[[78125,59937,0],[-59,-7]],[[78066,59930,0],[-45,-9],[-130,-25]],[[77891,59896,0],[-39,-5],[-203,-26]],[[77649,59865,0],[-151,-13],[-97,-9]],[[77401,59843,0],[-2,0],[-160,-1],[4,147]],[[77243,59989,0],[35,454]],[[77278,60443,0],[18,151]],[[77296,60594,0],[-3,37],[9,182]],[[77302,60813,0],[5,133]],[[77307,60946,0],[3,124]],[[77310,61070,0],[-7,109]],[[77303,61179,0],[167,-12]],[[77470,61167,0],[-7,66],[-11,106],[-13,114]],[[77439,61453,0],[0,3]],[[77439,61456,0],[-4,26],[-18,116],[-23,140]],[[77394,61738,0],[-27,171],[-36,174]],[[77331,62083,0],[-4,14],[295,47]],[[77622,62144,0],[133,27],[123,30],[38,7],[43,-106]],[[77959,62102,0],[55,-135]],[[78014,61967,0],[42,-142],[28,-93]],[[78084,61732,0],[-23,-39],[-20,-35],[-16,-28]],[[78025,61630,0],[4,-109]],[[78029,61521,0],[36,-52]],[[80197,57610,0],[-5,15],[-6,9],[-7,6],[-110,48],[-91,40],[-57,25],[-187,2],[-279,26],[-104,-30],[-97,-35]],[[79254,57716,0],[-52,-17],[-14,30],[-74,119]],[[79114,57848,0],[-48,78]],[[79066,57926,0],[-9,12],[-9,8],[-32,15],[-12,0],[-12,-3],[-40,-8],[-213,-44],[-44,-10],[-17,-7],[-16,-11],[-18,-13],[-18,-16],[-15,-13],[-34,-45]],[[78577,57791,0],[-25,-34],[-9,-11],[-95,-129]],[[78448,57617,0],[-75,76],[-13,14],[-91,61],[-16,10],[-136,83],[-105,64],[-16,9],[-164,96],[-67,40],[-49,31],[-14,9],[-52,39]],[[77650,58149,0],[-58,52]],[[77592,58201,0],[-28,30],[-26,27],[-16,25],[-38,61],[-34,69],[-22,52],[-50,149],[-20,76]],[[77358,58690,0],[-33,136]],[[77325,58826,0],[-7,66]],[[77318,58892,0],[-13,123],[-2,25],[-23,285],[-7,47],[-3,15],[-18,168],[-1,15],[-6,96],[-8,122]],[[77237,59788,0],[1,54],[163,1]],[[77649,59865,0],[242,31]],[[77891,59896,0],[175,34]],[[78125,59937,0],[90,10]],[[78243,59951,0],[134,1]],[[78377,59952,0],[182,-25]],[[78559,59927,0],[332,-55]],[[79134,59813,0],[277,-83]],[[79510,59692,0],[111,-65]],[[79699,59575,0],[221,-181]],[[80012,59271,0],[81,-131]],[[80289,58809,0],[0,-77],[-1,-18]],[[82506,56428,0],[-55,1]],[[82451,56429,0],[-182,14],[-150,10],[-25,2]],[[82094,56455,0],[-168,12],[-37,2]],[[81889,56469,0],[-103,13],[-108,13]],[[81678,56495,0],[-44,6],[-100,13]],[[81534,56514,0],[-131,15],[-12,2],[-46,7],[-8,1],[-120,15],[-10,1],[-16,3],[-5,0],[-92,27],[-8,2],[-125,34],[-8,2],[-26,6],[-9,1],[-125,26],[-9,1],[-183,39],[-14,3],[-23,4]],[[80564,56703,0],[-11,3],[-145,30]],[[80408,56736,0],[-11,2],[-179,37],[-15,3],[-18,16],[-17,15],[-20,18],[-128,115],[-9,7]],[[80011,56949,0],[-37,39],[-8,7]],[[79966,56995,0],[-92,77],[-57,47],[-61,51],[-25,21],[-18,12],[-26,15],[-40,23],[-15,10],[-59,54],[-56,51],[-44,40],[-64,84],[-26,33],[-23,30],[-41,53],[-65,120]],[[80197,57610,0],[-1,-286]],[[80235,57297,0],[225,28]],[[80460,57325,0],[232,23]],[[80692,57348,0],[111,3]],[[81004,57586,0],[43,99]],[[81047,57685,0],[31,77]],[[81078,57762,0],[9,22]],[[81673,58185,0],[16,7],[10,4]],[[79966,56995,0],[45,-46]],[[80408,56736,0],[156,-33]],[[81534,56514,0],[-21,-49],[0,-1]],[[81513,56464,0],[-1,-5],[-4,-20]],[[81508,56439,0],[-20,-104],[-17,-88],[42,-9],[-58,-155],[-4,-17]],[[81451,56066,0],[-10,-39],[-52,10]],[[81389,56037,0],[-124,23],[-22,-98],[-12,-51]],[[81231,55911,0],[-1,-2],[-3,-13]],[[81227,55896,0],[-2,-77]],[[81225,55819,0],[-1,-90],[-1,0]],[[81223,55729,0],[-26,-2]],[[81197,55727,0],[-2,0],[-3,0]],[[81192,55727,0],[-17,-1],[-89,-3]],[[81086,55723,0],[-83,-4],[-53,-2]],[[80950,55717,0],[-2,0],[-37,-1],[-32,-1],[-34,-1],[-182,-4],[-184,-4],[-185,-5],[-1,-10],[-8,-104],[0,-1],[-6,-31],[0,-1],[-13,-70]],[[80266,55484,0],[-7,-41],[-15,-79]],[[80244,55364,0],[-3,0]],[[80241,55364,0],[-33,0],[-104,8]],[[80104,55372,0],[0,3],[4,191]],[[80108,55566,0],[-1,99],[-3,26],[-5,29],[-6,29]],[[80093,55749,0],[-9,29],[-15,36]],[[80069,55814,0],[-25,40],[-16,24],[-14,15],[-23,24],[-20,15],[-89,61],[-84,57],[-178,129],[-36,23],[-83,57],[-27,25],[-19,19],[-15,17],[-11,13],[-18,22],[-15,23],[-16,23],[-15,23],[-14,23],[-77,131]],[[79274,56578,0],[-164,-42]],[[79110,56536,0],[-53,91]],[[79057,56627,0],[-55,94]],[[79002,56721,0],[-52,89]],[[78950,56810,0],[-52,87]],[[78898,56897,0],[-13,23]],[[78885,56920,0],[-72,121]],[[78813,57041,0],[-54,91]],[[78759,57132,0],[-87,142]],[[78672,57274,0],[-140,227]],[[78532,57501,0],[-28,43]],[[78504,57544,0],[-27,37],[-29,36]],[[78448,57617,0],[99,134],[16,21],[14,19]],[[79066,57926,0],[15,-25],[16,-25],[17,-28]],[[82543,56436,0],[221,-95],[107,-46]],[[83058,56161,0],[31,-23],[191,-138]],[[83299,55979,0],[9,-11],[10,-14]],[[83318,55954,0],[53,-98],[44,-82]],[[83415,55774,0],[102,-42]],[[83517,55732,0],[14,-4],[87,-27]],[[83618,55701,0],[81,-24]],[[83699,55677,0],[-2,-4],[-14,-33],[-4,-10],[-12,-38],[-3,-14],[-3,-16]],[[83661,55562,0],[5,-12],[6,-13]],[[83658,55493,0],[-1,0],[-26,-10],[-2,-1],[-236,-86]],[[83393,55396,0],[-190,-89],[-44,-20]],[[83159,55287,0],[-187,-88],[-233,-110],[-228,-105]],[[82173,54876,0],[-172,-56],[-163,-52],[-65,-29],[-246,-108]],[[81427,54587,0],[-5,-1],[-9,-3]],[[81377,54574,0],[-41,-4],[-22,0],[-24,0]],[[81248,54575,0],[-35,5],[-6,1]],[[81207,54581,0],[-9,2],[-43,8]],[[81155,54591,0],[-180,42]],[[80975,54633,0],[-81,18],[-113,24]],[[80781,54675,0],[-111,26],[-19,4]],[[80651,54705,0],[-43,9],[-12,3],[-8,2],[-78,25]],[[80510,54744,0],[-47,19],[-30,15],[-29,14],[-33,20],[-32,19],[-37,33]],[[80302,54864,0],[-7,7],[-30,32],[-42,48],[-64,73]],[[80159,55024,0],[-24,27],[-44,48]],[[80091,55099,0],[2,35],[1,44],[5,194]],[[80099,55372,0],[50,-3],[59,-4],[33,-1]],[[80244,55364,0],[15,80],[7,40]],[[80950,55717,0],[54,2],[82,4]],[[81192,55727,0],[5,0]],[[81223,55729,0],[2,0],[0,90]],[[81227,55896,0],[4,15]],[[81389,56037,0],[53,-10],[9,39]],[[81508,56439,0],[5,25]],[[81513,56464,0],[1,1],[20,49]],[[81678,56495,0],[211,-26]],[[81889,56469,0],[205,-14]],[[82094,56455,0],[176,-12],[181,-14]],[[82228,53861,0],[68,-4],[54,-4]],[[82487,53590,0],[-103,-230]],[[82176,53013,0],[-3,-1],[-7,-1]],[[82166,53011,0],[1,-8],[3,-20]],[[82136,52978,0],[-1,3],[-1,4]],[[82125,52983,0],[-2,-5],[-6,-31]],[[82047,52716,0],[-9,-21],[-36,-72]],[[81979,52580,0],[-11,-26],[-4,-11]],[[81921,52418,0],[0,-23],[-2,-60]],[[81921,52264,0],[3,-16],[6,-41]],[[81930,52207,0],[2,-13],[1,-7]],[[81942,52129,0],[-36,-195]],[[81906,51934,0],[-186,42]],[[81720,51976,0],[-92,36],[-31,11],[-60,26]],[[81537,52049,0],[-24,18],[-20,26],[-98,187],[-93,182],[-31,68],[-5,17],[-12,77],[-27,220],[-2,25],[5,24],[2,16],[-1,19],[-29,-10]],[[81202,52918,0],[-80,-29],[-373,-120]],[[80749,52769,0],[-11,69],[-7,41],[-22,75],[-31,94],[-54,117],[-55,120],[-36,84],[-36,90],[-38,105],[-34,111],[-49,188],[-15,62],[-34,128],[-25,99]],[[80302,54152,0],[-6,22],[-30,108],[-23,97],[-31,115],[-26,99],[-32,112],[-20,115],[-34,200],[-7,53],[-2,26]],[[80091,55099,0],[68,-75]],[[80159,55024,0],[110,-127],[7,-6],[6,-6],[3,-4],[3,-2],[3,-4],[4,-3],[5,-7],[2,-1]],[[80510,54744,0],[86,-28],[55,-11]],[[80651,54705,0],[130,-30]],[[80781,54675,0],[194,-42]],[[81155,54591,0],[52,-10]],[[81207,54581,0],[19,-3]],[[82583,51734,0],[-19,-62],[-32,-135],[-26,-162],[-1,-108],[48,-448],[-36,1],[-102,3],[-110,0],[-157,4],[-211,-19],[-163,1],[-151,-9],[-106,11],[-33,4],[-71,14],[-67,35],[-248,132],[-87,46],[-46,40],[-251,87],[-175,11],[81,189]],[[80620,51369,0],[49,149],[78,307],[31,152]],[[80778,51977,0],[15,80],[6,44],[5,76],[1,41],[-1,51],[-4,67],[-4,69],[-9,81],[-9,60],[-11,69],[-17,103],[-1,51]],[[80749,52769,0],[162,52],[41,14],[8,1],[43,14],[94,31],[105,37]],[[81537,52049,0],[183,-73]],[[77296,60594,0],[-15,-122],[-3,-29]],[[77278,60443,0],[-1,-12],[-13,-164],[-21,-278]],[[77243,59989,0],[0,-11],[-4,-135],[-2,-55]],[[77318,58892,0],[3,-34],[4,-32]],[[77325,58826,0],[-33,-26],[-216,-46],[-24,-5],[-85,-17],[-10,37],[-105,5],[0,-57],[-11,-178]],[[76841,58539,0],[-7,-36],[-71,-187]],[[76763,58316,0],[-432,-221]],[[76331,58095,0],[-453,-54]],[[75878,58041,0],[-2,61]],[[75876,58102,0],[2,62]],[[75878,58164,0],[1,234]],[[75879,58398,0],[-9,50],[-6,33]],[[75864,58481,0],[-16,2],[-168,14],[-69,5]],[[75611,58502,0],[-14,22],[-184,276]],[[75413,58800,0],[-170,141],[-32,27]],[[75211,58968,0],[-29,24],[16,35]],[[75198,59027,0],[59,-30]],[[75771,60639,0],[0,20],[-1,172]],[[75770,60831,0],[2,0]],[[75772,60831,0],[48,-11],[14,-35]],[[75834,60785,0],[120,4],[138,5],[9,0]],[[76101,60794,0],[137,12]],[[76238,60806,0],[10,2],[105,8]],[[76353,60816,0],[51,4],[107,8]],[[76511,60828,0],[57,3],[51,4]],[[76619,60835,0],[118,3],[93,-7]],[[76830,60831,0],[75,-2],[44,-1]],[[76949,60828,0],[118,25],[-28,125],[-13,136],[0,27]],[[77026,61141,0],[-1,56]],[[77025,61197,0],[44,0],[234,-18]],[[77310,61070,0],[-1,-11],[-2,-113]],[[77307,60946,0],[-1,-11],[-4,-122]],[[75211,58968,0],[16,-14],[186,-154]],[[75611,58502,0],[253,-21]],[[75864,58481,0],[15,-83]],[[75879,58398,0],[0,-61],[-1,-173]],[[75878,58164,0],[-2,-59],[0,-3]],[[75878,58041,0],[193,23],[25,3],[61,8],[127,15],[47,5]],[[76331,58095,0],[9,-58],[16,-79],[-7,-165],[24,-339],[-43,-9],[-170,-34],[-79,7],[-25,1],[2,-30],[24,-319],[4,-43],[-46,-11],[-85,-40],[-10,-7]],[[75945,56969,0],[-5,-4],[-7,-7]],[[75933,56958,0],[-8,-11],[-32,-52],[-44,-81],[-61,-92]],[[75788,56722,0],[-27,-43],[-50,-80],[-12,-20]],[[75699,56579,0],[-19,-30]],[[75680,56549,0],[-110,-198]],[[75570,56351,0],[-54,-34]],[[75516,56317,0],[-187,-102]],[[75329,56215,0],[-32,-19]],[[75297,56196,0],[-29,18],[-101,111],[-90,110],[-47,59],[-38,48],[-488,140],[-183,8],[1,5],[4,24],[45,284],[41,34],[-14,191],[-66,-2],[-1,88],[-41,56],[8,140],[15,168]],[[74914,59174,0],[284,-147]],[[77592,58201,0],[48,-44],[10,-8]],[[78504,57544,0],[5,-9],[23,-34]],[[78532,57501,0],[6,-10],[134,-217]],[[78672,57274,0],[5,-8],[82,-134]],[[78759,57132,0],[5,-9],[49,-82]],[[78813,57041,0],[5,-8],[67,-113]],[[78885,56920,0],[5,-8],[8,-15]],[[78898,56897,0],[5,-8],[47,-79]],[[78950,56810,0],[5,-9],[47,-80]],[[79002,56721,0],[6,-11],[49,-83]],[[79057,56627,0],[9,-14],[44,-77]],[[79110,56536,0],[-12,-3]],[[79098,56533,0],[-41,-11],[-284,-64],[17,-46],[-23,-3]],[[78767,56409,0],[-8,-1],[-143,-22]],[[78616,56386,0],[-40,-6],[-4,-1]],[[78572,56379,0],[-25,-4]],[[78547,56375,0],[-326,-41],[-33,-4],[-17,-2]],[[78171,56328,0],[-33,-4],[-127,-15],[-57,30],[-135,58]],[[77819,56397,0],[-71,31],[-3,2]],[[77745,56430,0],[-35,13],[-63,24]],[[77647,56467,0],[-39,8]],[[77608,56475,0],[-156,26]],[[77452,56501,0],[-33,5],[-94,15]],[[77325,56521,0],[-257,-7],[-82,-2],[-373,-10]],[[76613,56502,0],[-252,6],[-23,0],[-226,6],[-117,3]],[[75995,56517,0],[-29,6],[-103,22],[-164,34]],[[75699,56579,0],[54,86],[35,57]],[[75933,56958,0],[12,11]],[[76331,58095,0],[296,151],[136,70]],[[76841,58539,0],[9,149],[59,-4],[99,-14],[16,-33],[84,14],[24,4],[226,35]],[[75995,56517,0],[618,-15]],[[76613,56502,0],[392,10],[320,9]],[[77452,56501,0],[48,-338],[106,-14],[1,-34],[8,-194],[8,-184],[8,-192],[1,-29],[122,-7],[173,-10],[-28,-177]],[[77899,55322,0],[13,-61]],[[77912,55261,0],[-2,-125]],[[77910,55136,0],[89,26],[62,-146],[71,-165],[14,-36],[-16,-7]],[[77855,54723,0],[-23,-7]],[[77832,54716,0],[-253,-64]],[[77579,54652,0],[-334,-71]],[[76333,54794,0],[-3,2],[-108,67]],[[75728,55334,0],[-54,8]],[[75330,56127,0],[-33,69]],[[75329,56215,0],[15,10]],[[75344,56225,0],[9,4],[124,66],[39,22]],[[75516,56317,0],[10,6],[44,28]],[[75570,56351,0],[72,129],[38,69]],[[75699,56579,0],[296,-62]],[[80069,55814,0],[24,-65]],[[80108,55566,0],[-4,-194]],[[80104,55372,0],[-5,0]],[[80302,54152,0],[18,-72],[-150,-21],[-10,-2],[-140,-20],[-27,-4],[-54,146],[-162,-72],[-34,-9],[-29,23],[-113,-141]],[[78881,54384,0],[-77,-7],[-52,-5]],[[78752,54372,0],[-5,-1],[-194,-16],[-2,0]],[[78483,54350,0],[-111,-9],[-10,-2]],[[78362,54339,0],[-49,3],[-3,0]],[[78113,54385,0],[3,95],[1,30]],[[78117,54510,0],[4,110],[0,11]],[[78121,54657,0],[7,106],[0,7]],[[78130,54808,0],[-69,155],[-70,153],[-82,-20],[1,40]],[[77910,55136,0],[1,96],[1,29]],[[77899,55322,0],[-44,129],[-168,8],[-133,3],[-1,37],[-1,82],[-1,117],[3,121],[-19,266],[-145,26],[-65,410]],[[77325,56521,0],[283,-46]],[[77647,56467,0],[98,-37]],[[77745,56430,0],[74,-33]],[[78171,56328,0],[376,47]],[[78572,56379,0],[44,7]],[[78616,56386,0],[151,23]],[[79098,56533,0],[176,45]],[[80912,52376,0],[2,-17],[12,-98],[2,-162],[-3,-116],[-9,-82],[-28,-134],[-35,-174],[-2,-8],[-33,-128],[-2,-10],[-42,-174],[-18,-49],[-1,0]],[[80755,51224,0],[-22,-61],[-6,-15],[-58,-120],[-111,-214],[0,-1],[-6,-9],[-90,-174]],[[80462,50630,0],[-39,-74],[-146,-249],[-66,65]],[[80211,50372,0],[-1,0],[-33,33],[-37,36],[-33,32],[-138,126],[-49,44],[-6,5],[-58,62],[-43,48],[-63,74],[-46,53],[-7,2],[-117,25],[-25,6],[-25,5],[-51,11],[-46,59],[-77,-79],[-22,27],[-42,53],[-36,45],[-118,150],[21,53],[13,31],[5,80],[8,121],[9,126],[1,26],[-3,44],[-8,86],[-5,65],[-4,34],[0,8],[-2,19]],[[79173,51882,0],[5,0],[13,-1],[161,-13],[109,-8],[49,-4],[60,-4]],[[79570,51852,0],[6,64],[6,49],[2,21],[2,15],[3,35],[13,114],[31,289]],[[79918,52920,0],[9,80],[4,26],[7,62],[-62,110],[-53,96],[-18,68],[-13,50]],[[79792,53412,0],[-23,87],[-5,15]],[[79735,53618,0],[-12,37],[-16,48]],[[79707,53703,0],[-22,80],[-10,37]],[[79675,53820,0],[-25,56],[-49,104]],[[79550,54055,0],[119,229],[97,111],[28,32],[28,-21],[4,2],[27,7],[1,0],[150,71],[0,-1],[55,-135],[24,4],[1,0],[130,21],[1,-2],[14,-87],[16,-68],[38,4],[157,15],[13,-53],[5,-22],[1,-1],[23,-100],[3,-11],[18,-89],[19,-90],[0,-1],[24,-118],[20,-69],[20,-67],[24,-86],[24,-54],[23,-82],[40,-105],[41,-95],[35,-115],[30,-116],[41,-146],[3,-16],[5,-31],[2,-15],[11,-79],[6,-27],[0,-1],[10,-53],[10,-86],[11,-69],[10,-64]],[[75133,53385,0],[-316,601],[-40,82],[-94,-43],[-61,115],[-48,88],[-59,110],[-15,26],[-46,76],[-47,108],[26,14],[-126,226],[-22,13],[9,13],[1,1],[1,1],[1,2],[1,1],[1,1],[1,0],[1,2],[0,1],[1,1],[1,0],[1,2],[1,1],[1,0],[1,2],[1,1],[2,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,1],[1,0],[2,1],[1,0],[1,1],[1,1],[2,0],[1,1],[1,0],[1,1],[2,0],[2,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,-1],[1,0],[2,0],[20,-4],[23,95]],[[74423,54938,0],[-2,2],[-1,0],[-1,0]],[[74419,54940,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1]],[[74414,54945,0],[-1,0],[-1,1],[-1,1]],[[74411,54947,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1]],[[74406,54952,0],[-1,1],[-1,2]],[[74404,54955,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1]],[[74400,54961,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[74398,54968,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[74395,54975,0],[0,1],[0,1],[0,1]],[[74395,54978,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1]],[[74395,54985,0],[0,1],[0,1],[0,1]],[[74395,54988,0],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1]],[[74396,54995,0],[50,109]],[[74446,55104,0],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1]],[[74454,55120,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1]],[[74458,55131,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1]],[[74461,55138,0],[0,1],[1,1],[0,1],[0,1],[1,1]],[[74463,55143,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1]],[[74466,55152,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[74467,55158,0],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2]],[[74470,55169,0],[0,1],[1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1]],[[74472,55176,0],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1]],[[74475,55189,0],[1,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[74479,55209,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[74481,55224,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74482,55240,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74483,55251,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[74483,55260,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74483,55269,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74483,55274,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74483,55284,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2]],[[74482,55295,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[74482,55306,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[74480,55320,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1]],[[74478,55333,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[74477,55341,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[74475,55348,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[74473,55359,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1]],[[74470,55367,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[74468,55376,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1]],[[74465,55384,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[74461,55399,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[74457,55409,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[74453,55419,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[74450,55426,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,0],[0,1]],[[74443,55440,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[74439,55447,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1]],[[74435,55455,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1]],[[74428,55467,0],[131,130]],[[74559,55597,0],[25,-24],[35,-9],[100,-144],[-7,-59],[13,-63],[19,-51],[56,-118],[7,-28],[19,-28],[21,-18],[29,-7],[80,15],[96,13],[135,19],[173,-19],[121,-63],[62,-19],[202,-90],[6,-3],[4,-1],[4,-2],[4,-1],[4,-2],[3,-1],[4,-2],[4,-1],[4,-1],[4,-2],[3,-2],[4,-1],[4,-2],[4,-2],[4,-1],[4,-1],[3,-2],[4,-1],[4,-2],[4,-2],[4,-1],[3,-2],[4,-1],[4,-2],[4,-1],[3,-2],[4,-2],[4,-1],[4,-2],[3,-1],[4,-2],[4,-2],[4,-1],[3,-2],[4,-2],[4,-2],[4,-1],[4,-2],[3,-1],[4,-2],[4,-2],[3,-1],[4,-2],[4,-2],[4,-2],[3,-1],[4,-2],[4,-2],[4,-2],[3,-1],[4,-2],[4,-2],[3,-1],[4,-3],[4,-1],[3,-2],[4,-2],[4,-2],[3,-1],[4,-2],[3,-2],[4,-2],[4,-2],[3,-2],[4,-1],[4,-2],[3,-2],[4,-2],[4,-2],[3,-2],[4,-1],[4,-3],[3,-1],[4,-2],[3,-2],[4,-2],[4,-2],[3,-2],[4,-2],[4,-1],[3,-3],[4,-2],[3,-1],[4,-3],[3,-1],[4,-2],[4,-2],[3,-2],[4,-2],[3,-2],[4,-2],[3,-2],[4,-2],[6,-4],[4,-2],[4,-2],[3,-2],[3,-2],[4,-2],[4,-2],[3,-2],[3,-2],[4,-2],[4,-2],[3,-2],[3,-2],[4,-2],[3,-3],[4,-1],[4,-3],[3,-2],[3,-2],[4,-2],[4,-2],[3,-2],[3,-2],[4,-3],[3,-2],[4,-2],[3,-2],[4,-2],[3,-3],[3,-1],[4,-3],[3,-2],[4,-2],[3,-2],[4,-2],[3,-2],[3,-3],[4,-2],[3,-2],[4,-3],[3,-2],[3,-2],[4,-2],[3,-2],[3,-3],[3,-2],[6,-3],[3,-3],[3,-2],[4,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-3],[3,-1],[3,-3],[4,-2],[3,-2],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-2],[4,-2],[3,-3],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-2],[3,-2],[4,-3],[3,-2],[3,-2],[2,-3],[4,-2],[3,-2],[3,-3],[6,-4],[2,-2],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[3,-2],[3,-3],[3,-3],[3,-2],[3,-2],[3,-3],[3,-2],[3,-2],[2,-2],[4,-3],[3,-3],[2,-2],[3,-2],[3,-3],[3,-2],[3,-3],[3,-2],[3,-2],[3,-3],[3,-3],[2,-2],[4,-2],[2,-2],[3,-3],[3,-3],[5,-4],[3,-2],[2,-3],[3,-2],[3,-2],[3,-3],[3,-3],[2,-2],[3,-3],[3,-2],[3,-2],[3,-3],[2,-3],[3,-2],[3,-3],[3,-2],[3,-3],[2,-2],[3,-3],[3,-2],[3,-3],[2,-3],[3,-2],[3,-3],[3,-2],[2,-3],[3,-2],[3,-3],[3,-2],[2,-3],[3,-3],[3,-2],[3,-3],[2,-3],[3,-3],[2,-2],[3,-3],[3,-2],[126,-139],[-10,-47],[0,-54],[-32,-35],[-24,-54],[-19,-494],[-142,12],[-127,5],[-124,0],[-121,-5],[-122,-11],[-113,-9],[-113,-15],[-116,-20],[-130,-25],[-126,-28],[-145,-30],[-124,-33]],[[73708,55445,0],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,-2],[1,-1],[2,-1],[2,-2],[1,-1]],[[73724,55429,0],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[1,-1],[2,-1],[1,-2],[2,-1],[1,-2],[1,-1]],[[73738,55414,0],[1,-2],[2,-1],[1,-2],[1,-1],[1,-1],[2,-2],[1,-1],[2,-2],[1,-1],[1,-2]],[[73751,55399,0],[1,-1],[1,-2],[2,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,-2],[1,-1],[2,-2]],[[73764,55385,0],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1]],[[73769,55378,0],[21,-26],[2,-1]],[[73792,55351,0],[162,-194],[0,-1]],[[73954,55156,0],[38,-46],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1]],[[73998,55103,0],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1]],[[74024,55074,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1]],[[74035,55062,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,0],[1,-1],[1,-2],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1]],[[74055,55042,0],[1,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[2,-1],[1,-2],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1]],[[74074,55024,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1]],[[74090,55009,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-2]],[[74102,54999,0],[1,-1],[1,0],[1,-1],[1,-2],[1,0],[1,-1],[2,-1],[1,-1]],[[74111,54992,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1]],[[74122,54983,0],[1,-1],[1,0]],[[74124,54982,0],[1,-2],[1,-1],[2,-1]],[[74128,54978,0],[70,-45],[38,96],[187,-91]],[[75133,53385,0],[-36,-7],[-242,-57],[-125,-28],[-671,-156],[-230,-55],[-93,-23],[-157,-36],[-139,-35],[-157,-29],[-126,-21],[-86,-4],[-69,-4],[-96,1],[-137,5],[-76,7],[-63,6],[-26,3],[-29,3],[-161,32],[-109,29],[-111,40],[-172,55],[-113,36],[-169,109]],[[71740,53256,0],[1,20],[-2,45],[-19,110],[-29,125],[-35,131],[-96,377]],[[71560,54064,0],[-97,296],[-13,83],[-4,28],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1]],[[71468,54484,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1]],[[71511,54535,0],[0,1],[0,1],[1,0],[10,16]],[[71522,54553,0],[8,13],[33,54]],[[71563,54620,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,19],[13,56],[-41,11],[32,137],[-133,96],[-134,97],[-59,71],[31,41]],[[71141,55307,0],[31,11],[141,-58],[150,-61],[9,13]],[[71472,55212,0],[16,48],[11,70]],[[71499,55330,0],[81,-34]],[[71580,55296,0],[1,0],[78,-32]],[[71659,55264,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0]],[[71672,55258,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[71683,55254,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[71696,55250,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[71704,55247,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0]],[[71718,55243,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[71736,55238,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[71749,55235,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1]],[[71759,55232,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71775,55230,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0]],[[71790,55227,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0]],[[71799,55226,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[71809,55224,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0]],[[71822,55223,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1]],[[71833,55222,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[71840,55222,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71845,55222,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71850,55222,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[71856,55221,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71865,55221,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71874,55221,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71885,55221,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71891,55221,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[71897,55222,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71906,55222,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0]],[[71916,55223,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71925,55223,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71934,55224,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[71942,55225,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71950,55226,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[71961,55228,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0]],[[71968,55229,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[71975,55230,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[71988,55233,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[71997,55235,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0]],[[72007,55237,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,1]],[[72020,55241,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1]],[[72028,55243,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0]],[[72040,55246,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1]],[[72050,55250,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[72056,55251,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0]],[[72063,55254,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[3,0],[3,2],[2,1],[3,0],[2,1],[2,2],[3,0]],[[72090,55264,0],[3,1],[2,1],[3,1],[2,1],[3,1],[2,1],[3,1],[2,1]],[[72110,55272,0],[2,1],[3,1],[3,1],[2,1],[2,1],[3,1]],[[72125,55278,0],[3,1],[2,1],[2,1],[3,2],[2,0],[3,1],[2,1],[3,2],[2,1],[2,0],[3,1],[3,2],[2,1],[2,1],[3,1],[3,1]],[[72165,55295,0],[172,91]],[[72337,55386,0],[6,3],[79,41]],[[72422,55430,0],[91,39],[7,3]],[[72520,55472,0],[76,17],[5,1]],[[72601,55490,0],[2,0],[2,0],[1,0],[2,0],[1,1],[2,0],[1,0]],[[72612,55491,0],[2,0],[2,1],[2,0],[1,0],[2,1],[1,0]],[[72622,55493,0],[2,0],[1,0],[2,0],[2,1],[1,0],[2,0],[1,0]],[[72633,55494,0],[2,0],[1,0],[2,1],[1,0],[3,0],[1,0]],[[72643,55495,0],[2,0],[1,0],[2,1],[1,0],[2,0],[1,1],[2,0],[2,0]],[[72656,55497,0],[1,0],[2,0],[1,0],[2,0],[2,1],[1,0],[2,0],[2,0],[1,0]],[[72670,55498,0],[2,0],[1,0],[2,0],[1,1],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,1],[1,0]],[[72694,55500,0],[2,0],[1,0],[2,0],[1,1],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0]],[[72720,55501,0],[2,0],[1,0],[2,0],[1,1],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[72746,55502,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0]],[[72776,55502,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[3,-1],[1,0],[2,0],[1,0]],[[72797,55501,0],[122,-12]],[[72919,55489,0],[9,-2],[54,-8]],[[72982,55479,0],[127,-17]],[[73109,55462,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0]],[[73120,55460,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0]],[[73129,55459,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0]],[[73144,55457,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0]],[[73153,55456,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[73162,55456,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0]],[[73171,55455,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0]],[[73189,55454,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[73202,55454,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[73217,55454,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[73240,55454,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[73250,55455,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[73263,55456,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[73274,55456,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0]],[[73286,55458,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[73297,55459,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1]],[[73308,55461,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[73329,55464,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[73343,55467,0],[1,0],[1,0],[1,0],[1,1]],[[73347,55468,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[73352,55469,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[73362,55471,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0]],[[73370,55473,0],[1,0],[2,1],[1,0],[1,0]],[[73375,55474,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[73382,55476,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0]],[[73392,55479,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0]],[[73402,55483,0],[1,0],[1,0],[1,1],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0]],[[73416,55488,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1]],[[73424,55491,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[2,0],[1,0]],[[73433,55494,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1]],[[73443,55499,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0]],[[73454,55504,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1]],[[73466,55510,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1]],[[73477,55515,0],[1,1],[1,0],[1,0],[0,1],[2,0],[1,1],[1,0],[1,1],[1,1],[1,0]],[[73487,55520,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1]],[[73495,55525,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,1]],[[73502,55529,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0]],[[73513,55535,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0]],[[73526,55543,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1]],[[73539,55552,0],[1,1],[1,0],[1,1],[1,0]],[[73543,55554,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1]],[[73550,55556,0],[1,0],[1,0],[1,0]],[[73553,55556,0],[1,0],[1,0],[1,0]],[[73556,55556,0],[1,0],[1,0],[1,0],[1,1]],[[73560,55557,0],[1,0],[1,0],[1,-1]],[[73563,55556,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[73570,55556,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[73577,55554,0],[1,0],[1,0],[0,-1],[1,0]],[[73580,55553,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[73587,55550,0],[6,-5]],[[73593,55545,0],[4,-2],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1]],[[73604,55537,0],[1,-1],[2,-1],[2,-2],[1,-1],[2,-1],[1,-1],[2,-1],[1,-2],[1,-1]],[[73617,55526,0],[2,-1],[2,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[2,-1],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[1,-1]],[[73664,55486,0],[2,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-2]],[[73680,55472,0],[1,-1],[2,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[2,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[2,-2]],[[72130,57675,0],[106,-91],[78,59]],[[72314,57643,0],[2,-2]],[[72316,57641,0],[4,-3]],[[72320,57638,0],[4,-2]],[[72324,57636,0],[2,-2]],[[72326,57634,0],[5,-1]],[[72331,57633,0],[3,0]],[[72334,57633,0],[2,-1]],[[72336,57632,0],[5,0]],[[72341,57632,0],[3,0]],[[72344,57632,0],[5,1]],[[72349,57633,0],[4,1],[8,4]],[[72361,57638,0],[7,5]],[[72368,57643,0],[6,5]],[[72374,57648,0],[6,6]],[[72380,57654,0],[5,6]],[[72385,57660,0],[3,6],[18,4]],[[72406,57670,0],[18,3]],[[72424,57673,0],[18,1]],[[72442,57674,0],[10,0]],[[72452,57674,0],[11,-1]],[[72463,57673,0],[1,0],[36,-3],[180,-13]],[[72680,57657,0],[132,-8]],[[72812,57649,0],[15,-1],[28,-65],[5,-26],[47,5],[49,-52],[129,-21],[12,4],[17,-2],[28,-22],[45,-12],[34,-7],[5,-47],[39,-60],[77,-69],[73,-50],[56,-38],[27,-38],[33,-71],[33,-57],[-4,-38],[1,-58],[11,-137],[1,-117],[-41,-144],[-3,-39],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[5,-4],[97,-75],[474,-465],[78,-75],[104,-102],[66,-67],[2,-24],[18,-19]],[[74428,55467,0],[7,-12]],[[74435,55455,0],[4,-8]],[[74439,55447,0],[4,-7]],[[74443,55440,0],[7,-14]],[[74450,55426,0],[3,-7]],[[74453,55419,0],[4,-10]],[[74457,55409,0],[4,-10]],[[74461,55399,0],[4,-15]],[[74465,55384,0],[3,-8]],[[74468,55376,0],[2,-9]],[[74470,55367,0],[3,-8]],[[74473,55359,0],[2,-11]],[[74475,55348,0],[2,-7]],[[74477,55341,0],[1,-8]],[[74478,55333,0],[2,-13]],[[74480,55320,0],[2,-14]],[[74482,55306,0],[0,-11]],[[74482,55295,0],[1,-11]],[[74483,55284,0],[0,-10]],[[74483,55274,0],[0,-5]],[[74483,55269,0],[0,-9]],[[74483,55260,0],[0,-9]],[[74483,55251,0],[-1,-11]],[[74482,55240,0],[-1,-16]],[[74481,55224,0],[-2,-15]],[[74479,55209,0],[-4,-20]],[[74475,55189,0],[-3,-13]],[[74472,55176,0],[-2,-7]],[[74470,55169,0],[-3,-11]],[[74467,55158,0],[-1,-6]],[[74466,55152,0],[-3,-9]],[[74463,55143,0],[-2,-5]],[[74461,55138,0],[-3,-7]],[[74458,55131,0],[-4,-11]],[[74454,55120,0],[-8,-16]],[[74396,54995,0],[-1,-7]],[[74395,54988,0],[0,-3]],[[74395,54985,0],[0,-7]],[[74395,54978,0],[0,-3]],[[74395,54975,0],[3,-7]],[[74398,54968,0],[2,-7]],[[74400,54961,0],[4,-6]],[[74404,54955,0],[2,-3]],[[74406,54952,0],[5,-5]],[[74411,54947,0],[3,-2]],[[74414,54945,0],[5,-5]],[[74419,54940,0],[4,-2]],[[74128,54978,0],[-4,4]],[[74124,54982,0],[-2,1]],[[74122,54983,0],[-11,9]],[[74111,54992,0],[-9,7]],[[74102,54999,0],[-12,10]],[[74090,55009,0],[-16,15]],[[74074,55024,0],[-19,18]],[[74055,55042,0],[-20,20]],[[74035,55062,0],[-11,12]],[[74024,55074,0],[-26,29]],[[73998,55103,0],[-44,53]],[[73954,55156,0],[-162,195]],[[73792,55351,0],[-23,27]],[[73769,55378,0],[-5,7]],[[73764,55385,0],[-13,14]],[[73751,55399,0],[-13,15]],[[73738,55414,0],[-14,15]],[[73724,55429,0],[-16,16]],[[73708,55445,0],[-28,27]],[[73680,55472,0],[-16,14]],[[73664,55486,0],[-47,40]],[[73617,55526,0],[-13,11]],[[73604,55537,0],[-11,8]],[[73587,55550,0],[-7,3]],[[73580,55553,0],[-3,1]],[[73577,55554,0],[-7,2]],[[73570,55556,0],[-7,0]],[[73563,55556,0],[-3,1]],[[73560,55557,0],[-4,-1]],[[73556,55556,0],[-3,0]],[[73553,55556,0],[-3,0]],[[73550,55556,0],[-7,-2]],[[73543,55554,0],[-4,-2]],[[73539,55552,0],[-13,-9]],[[73526,55543,0],[-13,-8]],[[73513,55535,0],[-11,-6]],[[73502,55529,0],[-7,-4]],[[73495,55525,0],[-8,-5]],[[73487,55520,0],[-10,-5]],[[73477,55515,0],[-11,-5]],[[73466,55510,0],[-12,-6]],[[73454,55504,0],[-11,-5]],[[73443,55499,0],[-10,-5]],[[73433,55494,0],[-9,-3]],[[73424,55491,0],[-8,-3]],[[73416,55488,0],[-14,-5]],[[73402,55483,0],[-10,-4]],[[73392,55479,0],[-10,-3]],[[73382,55476,0],[-7,-2]],[[73375,55474,0],[-5,-1]],[[73370,55473,0],[-8,-2]],[[73362,55471,0],[-10,-2]],[[73352,55469,0],[-5,-1]],[[73347,55468,0],[-4,-1]],[[73343,55467,0],[-14,-3]],[[73329,55464,0],[-21,-3]],[[73308,55461,0],[-11,-2]],[[73297,55459,0],[-11,-1]],[[73286,55458,0],[-12,-2]],[[73274,55456,0],[-11,0]],[[73263,55456,0],[-13,-1]],[[73250,55455,0],[-10,-1]],[[73240,55454,0],[-23,0]],[[73217,55454,0],[-15,0]],[[73202,55454,0],[-13,0]],[[73189,55454,0],[-18,1]],[[73171,55455,0],[-9,1]],[[73162,55456,0],[-9,0]],[[73153,55456,0],[-9,1]],[[73144,55457,0],[-15,2]],[[73129,55459,0],[-9,1]],[[73120,55460,0],[-11,2]],[[72982,55479,0],[-63,10]],[[72797,55501,0],[-21,1]],[[72776,55502,0],[-30,0]],[[72746,55502,0],[-26,-1]],[[72720,55501,0],[-26,-1]],[[72694,55500,0],[-24,-2]],[[72670,55498,0],[-14,-1]],[[72656,55497,0],[-13,-2]],[[72643,55495,0],[-10,-1]],[[72633,55494,0],[-11,-1]],[[72622,55493,0],[-10,-2]],[[72612,55491,0],[-11,-1]],[[72601,55490,0],[-81,-18]],[[72520,55472,0],[-98,-42]],[[72422,55430,0],[-85,-44]],[[72165,55295,0],[-40,-17]],[[72125,55278,0],[-15,-6]],[[72110,55272,0],[-20,-8]],[[72090,55264,0],[-27,-10]],[[72063,55254,0],[-7,-3]],[[72056,55251,0],[-6,-1]],[[72050,55250,0],[-10,-4]],[[72040,55246,0],[-12,-3]],[[72028,55243,0],[-8,-2]],[[72020,55241,0],[-13,-4]],[[72007,55237,0],[-10,-2]],[[71997,55235,0],[-9,-2]],[[71988,55233,0],[-13,-3]],[[71975,55230,0],[-7,-1]],[[71968,55229,0],[-7,-1]],[[71961,55228,0],[-11,-2]],[[71950,55226,0],[-8,-1]],[[71942,55225,0],[-8,-1]],[[71934,55224,0],[-9,-1]],[[71925,55223,0],[-9,0]],[[71916,55223,0],[-10,-1]],[[71906,55222,0],[-9,0]],[[71897,55222,0],[-6,-1]],[[71891,55221,0],[-6,0]],[[71885,55221,0],[-11,0]],[[71874,55221,0],[-9,0]],[[71865,55221,0],[-9,0]],[[71856,55221,0],[-6,1]],[[71850,55222,0],[-5,0]],[[71845,55222,0],[-5,0]],[[71840,55222,0],[-7,0]],[[71833,55222,0],[-11,1]],[[71822,55223,0],[-13,1]],[[71809,55224,0],[-10,2]],[[71799,55226,0],[-9,1]],[[71790,55227,0],[-15,3]],[[71775,55230,0],[-16,2]],[[71759,55232,0],[-10,3]],[[71749,55235,0],[-13,3]],[[71736,55238,0],[-18,5]],[[71718,55243,0],[-14,4]],[[71704,55247,0],[-8,3]],[[71696,55250,0],[-13,4]],[[71683,55254,0],[-11,4]],[[71672,55258,0],[-13,6]],[[71659,55264,0],[-79,32]],[[71499,55330,0],[15,101]],[[71514,55431,0],[-81,28],[-142,60],[-128,52],[-41,18],[-39,17],[-88,42],[-45,24],[-36,19]],[[70914,55691,0],[-14,9]],[[70900,55700,0],[-8,5]],[[70892,55705,0],[-14,10]],[[70878,55715,0],[-15,10]],[[70863,55725,0],[-21,16]],[[70842,55741,0],[-10,8]],[[70832,55749,0],[-16,13]],[[70816,55762,0],[-30,25]],[[70786,55787,0],[-38,34]],[[70748,55821,0],[-22,24]],[[70726,55845,0],[-22,23]],[[70704,55868,0],[-19,23]],[[70685,55891,0],[-22,27]],[[70663,55918,0],[-23,46],[-22,33]],[[70618,55997,0],[-46,89]],[[70572,56086,0],[-10,16]],[[70562,56102,0],[5,11],[-49,133],[-56,149],[-34,92],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,1],[-1,1]],[[70416,56490,0],[-1,1],[0,1]],[[70415,56492,0],[-1,1],[-5,17]],[[70409,56510,0],[-2,4],[-2,5],[-4,9],[-2,7],[-1,3]],[[70398,56538,0],[-5,13],[-4,15]],[[70389,56566,0],[-1,9],[-2,11],[-1,10]],[[70385,56596,0],[-1,11],[0,11],[0,7]],[[70384,56625,0],[0,13],[9,77],[13,61],[-6,3],[10,75],[28,104],[32,104],[15,65]],[[70485,57127,0],[2,8],[3,10],[3,8],[1,8]],[[70494,57161,0],[3,8],[1,7],[1,8],[2,13]],[[70501,57197,0],[0,9],[1,8],[0,8],[0,7],[0,11]],[[70502,57240,0],[-8,55],[-21,60],[-4,17],[0,2],[0,3],[0,3],[0,2],[1,4],[2,2],[1,2],[2,3],[24,25],[70,61],[10,6],[61,44],[90,67],[108,61],[50,28],[105,60],[24,14],[95,54],[39,23]],[[71151,57836,0],[21,11],[11,6],[21,9],[18,8]],[[71222,57870,0],[17,7],[9,4],[17,6],[31,10],[7,2]],[[71303,57899,0],[16,5],[19,6],[16,4],[23,5]],[[71377,57919,0],[20,4],[16,3],[14,1],[16,3]],[[71443,57930,0],[27,1],[39,4]],[[71509,57935,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0]],[[71590,57934,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[2,0]],[[71658,57926,0],[2,0],[2,-1],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,-1],[2,0],[2,0],[2,0],[1,-1],[2,0],[1,0],[2,0],[1,-1],[2,0],[2,-1],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[2,0],[2,0],[1,0],[2,-1],[1,-1],[2,0],[1,0]],[[71710,57916,0],[2,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[2,0],[2,0],[1,-1],[2,-1],[1,0],[2,0],[1,-1],[2,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,-1],[2,0],[2,0]],[[71762,57904,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[2,0],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,0],[2,-1],[2,0],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,0]],[[71826,57884,0],[10,-4],[18,-9],[16,-8],[10,-5]],[[71880,57858,0],[13,-8],[13,-7]],[[71906,57843,0],[11,-8],[33,-23]],[[71950,57812,0],[39,-27]],[[71989,57785,0],[9,-6],[11,-6],[9,-5]],[[72018,57768,0],[15,-10],[5,-4],[6,-4],[4,-3]],[[72048,57747,0],[10,-8],[12,-10],[11,-9]],[[72081,57720,0],[20,-18],[16,-15],[13,-12]],[[70493,56051,0],[79,35]],[[70572,56086,0],[0,-1]],[[70572,56085,0],[46,-88]],[[70663,55918,0],[1,-2],[1,-2],[1,-1],[2,-1],[1,-2],[1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[2,-1],[1,-2],[1,-2],[1,-1],[2,-2],[1,-1],[2,-2]],[[70685,55891,0],[1,-1],[1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[1,-2],[2,-1],[1,-1],[2,-2],[1,-1],[1,-2],[1,-2],[2,-1],[1,-2]],[[70704,55868,0],[1,-1],[2,-2],[1,-1],[2,-1],[1,-2],[1,-2],[2,-1],[1,-2],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[2,-2],[1,-1]],[[70726,55845,0],[1,-2],[2,-1],[1,-2],[1,-1],[2,-2],[1,-1],[2,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,-2],[2,-1],[1,-2],[2,-1],[1,-2]],[[70748,55821,0],[2,-1],[1,-2],[2,-2],[2,-1],[1,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-2],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-1],[3,-2]],[[70786,55787,0],[1,-1],[2,-2],[1,-1],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[2,-2],[1,-1],[1,-1],[2,-1]],[[70816,55762,0],[1,-2],[1,-1],[2,-1],[1,-1],[2,-1],[2,-2],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1]],[[70832,55749,0],[1,-1],[1,-2],[2,-1],[2,-1],[1,-1],[2,-1],[1,-1]],[[70842,55741,0],[1,-1],[2,-1],[1,-1],[2,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,-2],[2,-1],[1,-1]],[[70863,55725,0],[2,0],[1,-2],[1,-1],[2,-1],[1,-1],[2,-1],[2,-1],[1,-2],[2,0],[1,-1]],[[70878,55715,0],[2,-1],[1,-2],[2,-1],[1,-1],[2,-1],[2,-1],[1,-1],[2,-1],[1,-1]],[[70892,55705,0],[2,-1],[1,-1],[1,-1],[2,-1],[2,-1]],[[70900,55700,0],[1,-1],[2,-2],[1,0],[2,-1],[1,-1],[2,-2],[2,0],[3,-2]],[[71514,55431,0],[-11,-74],[-4,-27]],[[71499,55330,0],[6,-3],[-7,-42],[-15,-49],[-5,-7],[-6,-17]],[[71141,55307,0],[-15,-20],[59,-73],[133,-94],[133,-91],[-29,-139],[39,-10],[-13,-57],[0,-20],[27,-15],[22,-20],[25,-28],[13,-17],[16,-20],[13,-22],[14,-34],[-16,-27],[1,0]],[[71522,54553,0],[-11,-18]],[[71468,54484,0],[8,-45],[8,-52],[19,-70],[43,-172],[14,-81]],[[71740,53256,0],[-334,102],[-445,145],[-162,48],[-75,21],[-184,41],[-40,9],[-283,60],[-365,82],[-231,51],[-144,38],[-178,46],[-183,63],[-276,88],[-403,139],[-235,78],[-81,30],[146,372],[4,276],[2,529],[441,691]],[[68714,56165,0],[701,-361],[133,-7],[102,68],[9,72],[1,12],[9,31],[59,-28],[118,-43],[106,-40],[35,76],[35,85],[36,88],[6,-10],[9,-14],[138,-198],[149,79],[133,76]],[[71859,58314,0],[60,-20],[36,74]],[[71955,58368,0],[299,-103],[289,-121],[128,-219],[160,-275]],[[72831,57650,0],[-13,-1],[-6,0]],[[72812,57649,0],[-116,7],[-16,1]],[[72463,57673,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[72452,57674,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[72442,57674,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[72424,57673,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0]],[[72406,57670,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[72385,57660,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[72380,57654,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[72374,57648,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0]],[[72368,57643,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1]],[[72361,57638,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0]],[[72349,57633,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[72344,57632,0],[-1,0],[-1,0],[-1,0]],[[72341,57632,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[72336,57632,0],[-1,0],[-1,0],[0,1]],[[72334,57633,0],[-1,0],[-1,0],[-1,0]],[[72331,57633,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[72326,57634,0],[0,1],[-1,0],[-1,0],[0,1]],[[72324,57636,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[72320,57638,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1]],[[72316,57641,0],[-1,0],[-1,1],[0,1]],[[72130,57675,0],[-49,45]],[[72081,57720,0],[-33,27]],[[72048,57747,0],[-30,21]],[[72018,57768,0],[-29,17]],[[71950,57812,0],[-44,31]],[[71906,57843,0],[-26,15]],[[71880,57858,0],[-54,26]],[[71826,57884,0],[-64,20]],[[71762,57904,0],[-52,12]],[[71710,57916,0],[-52,10]],[[71658,57926,0],[-68,8]],[[71590,57934,0],[-81,1]],[[71443,57930,0],[-66,-11]],[[71377,57919,0],[-74,-20]],[[71303,57899,0],[-81,-29]],[[71222,57870,0],[-71,-34]],[[70502,57240,0],[-1,-43]],[[70501,57197,0],[-7,-36]],[[70494,57161,0],[-9,-34]],[[70384,56625,0],[1,-29]],[[70385,56596,0],[4,-30]],[[70389,56566,0],[9,-28]],[[70398,56538,0],[11,-28]],[[70415,56492,0],[1,-2]],[[70562,56102,0],[10,-17]],[[70572,56085,0],[-79,-34]],[[68714,56165,0],[312,542],[71,697]],[[69097,57404,0],[550,178],[89,246]],[[69736,57828,0],[96,-28],[160,-101],[124,-59],[27,36],[41,52],[47,51]],[[70231,57779,0],[66,59]],[[70297,57838,0],[98,70]],[[70395,57908,0],[83,48]],[[70478,57956,0],[232,128]],[[70710,58084,0],[94,54]],[[70804,58138,0],[78,43],[116,62]],[[70998,58243,0],[28,15]],[[71026,58258,0],[51,26]],[[71077,58284,0],[30,11],[37,16]],[[71144,58311,0],[49,13],[81,24],[51,10],[86,12],[76,3],[65,0],[44,-3],[52,-4],[59,-12],[53,-10],[58,-16]],[[71818,58328,0],[41,-14]],[[71859,58314,0],[-12,4],[-29,10]],[[71144,58311,0],[-67,-27]],[[71077,58284,0],[-39,-20],[-12,-6]],[[70998,58243,0],[-107,-58],[-60,-33],[-27,-14]],[[70804,58138,0],[-78,-45],[-16,-9]],[[70710,58084,0],[-43,-23],[-178,-100],[-11,-5]],[[70478,57956,0],[-71,-41],[-12,-7]],[[70395,57908,0],[-90,-64],[-8,-6]],[[70297,57838,0],[-50,-45],[-16,-14]],[[69736,57828,0],[67,185]],[[70136,58763,0],[276,-142]],[[70412,58621,0],[58,-30]],[[70470,58591,0],[66,-34]],[[70536,58557,0],[46,-25],[71,-37]],[[70653,58495,0],[38,63],[53,90],[40,67]],[[70784,58715,0],[8,51],[1,11]],[[70793,58777,0],[7,20],[3,11],[19,26]],[[70842,58853,0],[47,80]],[[70889,58933,0],[51,-41]],[[70940,58892,0],[89,-71]],[[71029,58821,0],[16,-23],[58,-85]],[[71103,58713,0],[18,20],[40,44]],[[71202,58835,0],[18,22]],[[71220,58857,0],[19,23]],[[71239,58880,0],[39,18],[10,4]],[[71414,58865,0],[39,21]],[[71453,58886,0],[3,1],[23,12]],[[71479,58899,0],[70,-5],[38,-3]],[[71631,58873,0],[1,0],[71,6]],[[71703,58879,0],[56,-4],[14,0]],[[71881,58921,0],[34,33]],[[71915,58954,0],[16,-55],[62,-125],[78,-223],[-88,-142],[-28,-41]],[[86341,52783,0],[18,14]],[[86359,52797,0],[127,115],[17,15]],[[86503,52927,0],[126,111],[76,70],[3,4]],[[86708,53112,0],[199,171],[101,87],[4,4],[1,0]],[[87013,53374,0],[47,87],[113,207],[-32,31]],[[87141,53699,0],[-195,144]],[[86946,53843,0],[-65,150]],[[86881,53993,0],[-4,21],[-2,16]],[[86875,54030,0],[0,64],[1,53],[-7,5],[-165,149]],[[86704,54301,0],[-1,1],[248,182]],[[86951,54484,0],[-30,64],[-35,73],[328,140]],[[87197,54822,0],[-8,47],[38,6],[32,4]],[[87259,54879,0],[87,20],[78,17],[90,18],[27,5]],[[87939,55003,0],[254,-32],[225,-30]],[[88713,55014,0],[141,84],[92,54]],[[88946,55152,0],[20,9],[24,10],[-7,9],[-201,278],[-14,19],[-94,249],[-67,175],[65,408],[3,18]],[[88675,56327,0],[0,1],[24,9],[21,8],[0,1],[636,277]],[[89356,56623,0],[6,3],[5,2],[2,1],[3,3],[132,-85],[16,-11]],[[89520,56536,0],[53,211],[8,24],[2,7]],[[89583,56778,0],[5,-2]],[[89588,56776,0],[23,-6]],[[89611,56770,0],[46,-13],[14,-4]],[[89671,56753,0],[28,-19],[25,-18]],[[89724,56716,0],[26,-19],[42,-31],[37,9],[12,4],[94,26]],[[89935,56705,0],[1,8],[1,8],[1,13],[14,2],[11,1]],[[89963,56737,0],[18,-9]],[[89981,56728,0],[7,-4],[49,-24],[5,2]],[[90042,56702,0],[23,16],[15,9],[33,21]],[[90113,56748,0],[10,7],[126,-11]],[[90249,56744,0],[10,-1],[14,-3]],[[90273,56740,0],[12,24],[2,4]],[[90287,56768,0],[21,4]],[[90308,56772,0],[25,6],[39,-7],[38,-7]],[[90410,56764,0],[117,-19],[9,3],[3,2],[66,33]],[[90605,56783,0],[12,7],[5,2]],[[90622,56792,0],[5,3],[22,13],[6,2],[4,2],[11,10],[17,19],[24,10],[65,13],[121,24]],[[90897,56888,0],[22,4],[2,1],[8,0]],[[90929,56893,0],[85,-4]],[[91014,56889,0],[25,-1],[11,-1]],[[91050,56887,0],[38,6],[12,2],[22,36]],[[91122,56931,0],[20,33]],[[91142,56964,0],[15,25],[16,10],[30,19]],[[91203,57018,0],[26,14],[15,7]],[[91244,57039,0],[21,-7],[64,-24]],[[91329,57008,0],[24,-8],[29,15],[2,1]],[[91384,57016,0],[15,16],[5,6],[4,3],[35,8]],[[91443,57049,0],[46,11],[16,6]],[[91505,57066,0],[18,7],[52,18],[20,7]],[[91595,57098,0],[3,1],[7,3],[13,1],[25,3]],[[91643,57106,0],[58,6]],[[91701,57112,0],[12,3],[8,3],[5,5],[4,4]],[[91730,57127,0],[7,8],[12,13]],[[91749,57148,0],[16,17],[10,10]],[[91775,57175,0],[97,104],[16,17]],[[91888,57296,0],[18,17],[3,3],[4,8],[4,10],[2,4],[3,5],[16,-13],[12,-8],[46,-66],[5,-7],[231,-1029],[260,-215],[3,-2],[139,122],[83,142],[8,15],[6,9],[7,8],[7,7],[8,7],[9,7],[107,98],[94,99],[73,-8],[263,-25],[207,-171],[-47,-454],[-9,-11],[-3,-10],[2,-10],[6,-9],[9,-6],[18,-79],[-20,-39],[3,-23],[-86,-88],[-5,-5],[53,-46],[57,-39],[27,-19],[35,-51],[3,-5],[24,-10],[-2,-123],[0,-6],[86,-68],[-6,-9],[-5,-10],[-5,-9],[-5,-10],[-3,-9],[-3,-10],[-3,-11],[-2,-10],[-2,-10],[-1,-10],[0,-10],[0,-11],[1,-10],[2,-10],[1,-11],[3,-10],[3,-10],[4,-10],[4,-9],[5,-10],[5,-9],[2,-1],[172,-140],[-71,-102],[1,-2],[38,-67],[91,-3],[12,0],[7,-7],[3,-9],[58,-142],[11,-46],[6,-16],[2,-10],[2,-10],[0,-11],[-1,-10],[-1,-10],[-3,-10],[-4,-10],[-4,-10],[-6,-8],[1,-3],[27,-66],[63,23],[15,12],[6,8],[6,10],[4,12],[28,76],[-7,33],[156,36],[-18,-418],[-33,-223],[-6,-86],[0,-13],[0,-11],[-1,-10],[-2,-10],[-2,-11],[-2,-10],[-2,-10],[-2,-10],[-3,-10],[-29,-89],[-2,-11],[-40,-164],[0,-1],[-69,-324],[-72,-247],[-4,-10],[-107,-6],[-330,-4],[-263,-168],[-2,-3],[-51,-125],[119,-122],[-9,-15],[-126,-207],[-2,-2],[124,-467],[-171,92],[-2,-1],[-92,-68],[-13,-10],[170,-194],[-492,-397],[-88,-41],[-12,13],[-120,105],[-16,13],[-8,6],[-10,6],[-9,5],[-50,23],[-14,5],[-10,5],[-9,6],[-7,8],[-6,8],[-4,10],[-3,10],[-2,10],[-22,76],[-82,148],[-10,17],[-6,8],[-6,8],[-7,8],[-8,8],[-75,72],[4,23],[4,12],[-4,10],[-10,5],[-28,23],[-13,6],[-22,-3],[-10,4],[-9,7],[-5,8],[-2,11],[-25,79],[-3,10],[-5,10],[-6,8],[-9,7],[-9,4],[-11,3],[-1,1],[-140,58],[-92,37],[-15,-4],[-11,-1],[-11,1],[-10,2],[-11,3],[-9,6],[-9,5],[-41,37],[-82,23],[-82,-17],[-118,-29],[-163,42],[-19,0],[-92,0],[-115,-14],[-124,43],[-19,8],[-11,2],[-11,0],[-11,-1],[-10,-3],[-11,-4],[-8,-5],[-81,-26],[-92,-17],[-148,33],[-13,2],[-11,1],[-11,0],[-11,-2],[-10,-1],[-94,-33],[-33,-30],[-16,-11],[-10,-2],[-11,0],[-11,3],[-73,6],[-12,6],[-11,3],[-11,1],[-11,1],[-11,-1],[-10,-2],[-11,-3],[-10,-5],[-89,-23],[-19,-5],[-10,-3],[-11,-1],[-11,-1],[-11,0],[-11,0],[-11,0],[-143,-6],[-119,-23],[-227,-57],[-110,-62],[-98,-66],[-114,-49],[-65,-40],[-9,-7],[-10,-3],[-11,0],[-10,3],[-126,46],[-11,11],[-9,5],[-11,2],[-11,-1],[-32,-10],[-35,-10],[-115,-4],[-151,-43],[-139,14],[-80,-14],[-45,-13],[-96,-56],[-155,6],[-50,-10],[-221,-23],[-28,-1],[-118,-6],[-81,37],[-18,0],[-11,0],[-11,0],[-11,1],[-11,1],[-11,1],[-11,2],[-11,1],[-10,2],[-11,2],[-11,3],[-11,2],[-10,3],[-10,3],[-11,3],[-10,4],[-10,5],[-9,5],[-9,7],[-8,8],[-6,8],[-7,8],[-4,10],[-4,9],[-25,56],[-9,10],[-8,7],[-8,7],[-9,6],[-75,39],[-77,30],[-20,1],[-11,4],[-9,5],[-8,7],[-5,9],[-5,10],[-129,220],[0,19],[-1,9],[-4,10],[-5,9],[-7,9],[-54,92],[-74,49],[-13,10],[-7,8],[-6,9],[-4,9],[-9,53],[-35,66],[-29,65],[-46,69],[-80,43],[-22,40],[-32,52],[-52,32],[13,11]],[[86222,75652,0],[125,-1],[92,0],[325,-2],[91,0],[108,-4],[43,-1],[128,-4],[113,-3],[64,-3],[1,0],[209,-5],[31,-1],[360,-10],[35,0],[113,-88],[188,-68],[149,-108],[6,-5],[37,-35],[89,-84],[114,-61],[70,-40],[45,-26],[28,-20],[100,-94],[10,10],[8,-3],[114,-22],[122,-24],[50,-10],[78,-65],[66,-61],[46,-73],[69,-153],[24,-55],[45,-72],[89,-104],[82,-88],[29,-11],[115,-31],[214,-181],[82,-12],[130,2],[156,-82],[16,-13],[33,-28],[34,-82],[300,-265],[160,-147],[174,-84],[118,-92],[29,-22],[334,-259],[144,-143],[192,-187],[131,-125],[174,-128],[-78,-38],[-100,-30],[-49,0],[-25,-7],[-109,-23],[-35,-12],[-121,-70],[-23,-46],[-90,-32],[-5,-23],[2,-36],[-29,-56],[-12,-13]],[[91580,71993,0],[-76,52]],[[91504,72045,0],[-523,148],[-289,-18],[-156,-60],[-155,-20]],[[90381,72095,0],[-77,-104]],[[90304,71991,0],[28,-7]],[[90332,71984,0],[-1,-27]],[[90331,71957,0],[-350,-31],[-77,-55],[-259,-24]],[[89645,71847,0],[-179,-118]],[[89466,71729,0],[-182,-238]],[[89284,71491,0],[-191,-77]],[[89093,71414,0],[-51,-17]],[[89042,71397,0],[-136,-46]],[[88906,71351,0],[-345,-214],[-46,-34]],[[88515,71103,0],[-305,-104]],[[88210,70999,0],[-256,-216]],[[87954,70783,0],[-223,-150],[-134,-65],[-165,21],[-172,-61],[-309,-115]],[[86951,70413,0],[-66,-90]],[[86885,70323,0],[-21,-28],[-110,-34],[-253,83],[-9,12],[-288,5],[3,24],[10,75]],[[86217,70460,0],[6,17],[8,32],[3,12],[-28,137],[-38,198],[-94,250]],[[86074,71106,0],[-232,343]],[[85842,71449,0],[151,44]],[[85993,71493,0],[313,91]],[[86306,71584,0],[238,-61],[296,23]],[[86840,71546,0],[16,-28]],[[86856,71518,0],[13,-38],[44,48],[42,48],[17,12]],[[86972,71588,0],[13,0],[23,-3]],[[87008,71585,0],[28,-14],[39,-10],[32,-6],[3,0],[20,-2],[8,-1],[18,0],[44,1],[5,0],[46,8],[38,13],[29,13],[26,15],[28,16],[24,16],[18,19],[9,10],[3,2],[11,12],[52,56]],[[87489,71733,0],[89,100]],[[87578,71833,0],[22,29],[18,22],[12,16],[58,77],[176,-7]],[[87864,71970,0],[61,-2],[5,0]],[[87930,71968,0],[90,-4]],[[88020,71964,0],[-5,-148]],[[88015,71816,0],[-9,-156],[3,-24],[-4,-49],[38,0],[29,-1],[23,8],[24,1],[151,5],[133,3],[27,61]],[[88430,71664,0],[34,75]],[[88464,71739,0],[19,39],[10,20],[8,15],[9,17],[128,254]],[[88638,72084,0],[370,732]],[[89008,72816,0],[150,297]],[[89158,73113,0],[-4,227],[1,17],[-2,245],[189,84],[-22,49],[-27,-4],[-30,8],[-21,12],[-11,15],[-43,-18],[2,-16],[1,-20],[-7,-26],[-20,-19],[-56,-25],[-129,-59],[-1,60],[-8,190]],[[88970,73833,0],[-12,293]],[[88958,74126,0],[-1,30],[-7,185]],[[88950,74341,0],[-7,170]],[[88943,74511,0],[-7,179],[-230,-6],[-7,0],[-47,-3],[-9,0],[-89,0]],[[88554,74681,0],[4,-150],[2,-37]],[[88560,74494,0],[-57,-2],[-31,-2]],[[88472,74490,0],[-92,6],[-80,5]],[[88300,74501,0],[-110,-75],[-9,-6]],[[88181,74420,0],[-14,15],[-20,27],[-66,57],[-23,19],[-38,23],[-4,4],[-8,7],[1,38]],[[88009,74610,0],[0,7],[0,18]],[[88009,74635,0],[-3,150],[0,50],[0,35],[-110,4],[-115,4],[-3,0],[-14,0],[-13,0],[-104,4],[-46,2],[-11,0],[-42,1],[-18,-2],[-14,-2],[-215,-44],[-131,-27],[-76,-15],[-82,-17],[1,-48]],[[87013,74730,0],[-366,-170]],[[86647,74560,0],[54,-93]],[[86701,74467,0],[-183,33],[-143,110],[-45,304],[-59,391]],[[86271,75305,0],[-1,9],[-1,10],[-1,9]],[[86268,75333,0],[-24,168],[-22,151]],[[87088,74184,0],[40,17],[107,51],[39,-160],[54,-254],[13,-253],[-1,-216]],[[87050,74062,0],[38,122]],[[87098,74005,0],[-59,23],[11,34]],[[87163,73918,0],[-24,30],[-41,57]],[[87282,73508,0],[-38,169],[-19,81],[-22,66],[-5,24],[-35,70]],[[87317,73434,0],[-6,13],[-29,61]],[[87340,73369,0],[-23,65]],[[85990,75631,0],[7,31],[0,2]],[[86222,75652,0],[-25,-10],[-22,-25],[-64,19],[-121,-5]],[[85997,75664,0],[225,-12]],[[93449,68766,0],[-39,-11]],[[93410,68755,0],[-51,-26],[-242,-120]],[[93117,68609,0],[-45,4],[-41,4]],[[93031,68617,0],[-126,-89]],[[92905,68528,0],[-11,-9],[-12,-10]],[[92882,68509,0],[-41,-39],[-19,-17]],[[92822,68453,0],[-153,-75],[-82,22],[-95,27]],[[92492,68427,0],[-6,3],[-44,18]],[[92442,68448,0],[-87,52],[-109,65]],[[92246,68565,0],[-32,-104]],[[92214,68461,0],[-28,-8],[-15,-4]],[[92171,68449,0],[-28,-52],[-24,-44]],[[92119,68353,0],[-36,-69],[-9,-20]],[[92074,68264,0],[-90,41]],[[91984,68305,0],[-59,48],[-28,22]],[[91897,68375,0],[-97,-18],[-9,-2]],[[91791,68355,0],[-9,-3],[-55,-25]],[[91727,68327,0],[-50,-65]],[[91677,68262,0],[-57,-24],[-24,-9]],[[91596,68229,0],[-90,-66],[-67,-41],[-90,-14],[-31,-5]],[[91318,68103,0],[5,-15],[5,-16]],[[91328,68072,0],[-29,-14],[-80,-36]],[[91219,68022,0],[-8,-57],[-44,-159]],[[91167,67806,0],[-16,-27],[-30,-47]],[[91121,67732,0],[-50,-220],[-32,-110],[-44,-148]],[[90995,67254,0],[-87,-18],[-34,-7]],[[90874,67229,0],[-34,32]],[[90840,67261,0],[-4,-6],[-41,-77]],[[90795,67178,0],[-147,105]],[[90648,67283,0],[-113,53],[-41,19]],[[90494,67355,0],[-116,-50],[-233,-10]],[[90145,67295,0],[-165,-9],[-81,-4]],[[89899,67282,0],[-174,11],[-6,0]],[[89719,67293,0],[-218,0],[-70,-1]],[[89431,67292,0],[-59,91]],[[89372,67383,0],[51,183],[6,25],[3,13],[73,93],[42,18],[168,80],[-97,76],[-23,47],[-11,24],[2,10],[3,17],[14,46],[14,47],[3,9],[6,12],[30,59],[45,95],[27,54],[15,16],[127,131],[100,137],[25,34],[41,58],[35,73],[21,45],[4,30],[-561,301],[-25,-23],[-38,-29],[-313,-25],[-14,1],[-248,13]],[[88897,69053,0],[-65,3]],[[88832,69056,0],[-90,4],[-14,1]],[[88728,69061,0],[-56,-149]],[[88672,68912,0],[2,-23],[8,-123]],[[88682,68766,0],[-4,-54],[-1,-20]],[[88677,68692,0],[-99,28]],[[88578,68720,0],[-175,4]],[[88403,68724,0],[-139,33],[-118,29],[-31,8],[-8,2]],[[88107,68796,0],[-40,-25],[-75,-57],[-40,-31],[-155,-60],[-17,-7]],[[87780,68616,0],[-43,-17],[-150,-59]],[[87587,68540,0],[-41,10],[-9,2]],[[87537,68552,0],[-13,4],[-10,2],[-25,7]],[[87489,68565,0],[-63,17],[-90,25]],[[87336,68607,0],[-90,25]],[[87246,68632,0],[-5,28],[-3,14]],[[87238,68674,0],[-19,1]],[[87219,68675,0],[16,18]],[[87235,68693,0],[17,19]],[[87252,68712,0],[1,1],[-14,30]],[[87239,68743,0],[-161,359],[-19,30],[-64,106],[-20,113],[-5,30],[-7,41],[-4,26],[118,63]],[[87077,69511,0],[12,7],[36,20]],[[87125,69538,0],[153,82],[15,8],[-123,143],[-83,97],[-99,35]],[[86988,69903,0],[-369,167],[-40,19],[-66,4]],[[86513,70093,0],[-28,9],[-22,8]],[[86463,70110,0],[-274,93],[-67,96],[-6,19]],[[86116,70318,0],[-64,161]],[[86052,70479,0],[165,-19]],[[86885,70323,0],[37,50],[29,40]],[[87954,70783,0],[181,153],[75,63]],[[88210,70999,0],[124,42],[181,62]],[[88906,71351,0],[43,14],[93,32]],[[89093,71414,0],[9,3],[182,74]],[[89284,71491,0],[148,193],[34,45]],[[89466,71729,0],[150,99],[29,19]],[[90331,71957,0],[1,18],[0,9]],[[90304,71991,0],[44,60],[33,44]],[[91504,72045,0],[17,-11],[59,-41]],[[91580,71993,0],[222,-154],[103,-6],[233,23],[174,-87],[41,2],[38,-137],[50,-178],[718,56],[9,52],[9,53],[259,-33],[643,-16],[152,-40],[295,-183],[94,-40],[-49,-42],[-136,-117],[8,-36],[-47,-118],[-36,-110],[-102,-138],[-12,-20],[-168,-120],[-16,-126],[-27,-171],[-11,-38],[-41,-141],[-142,-192],[75,-22],[-8,-27],[-32,12],[-52,-133],[-102,-171],[61,-32],[182,82],[50,7],[80,36],[58,-31],[5,-57],[76,-71],[25,-3],[73,-41],[9,-12],[20,-26],[-234,-165],[-180,-115],[-30,-9],[-361,-277],[-22,-31],[-85,-84]],[[94529,62742,0],[-183,-12],[-6,8],[-369,-41],[-10,12],[-57,87],[-27,84],[18,56],[-33,83]],[[93862,63019,0],[-91,191]],[[93771,63210,0],[-172,-68],[-130,-79],[-6,6]],[[93463,63069,0],[-59,77]],[[93404,63146,0],[-123,80],[-15,51],[-3,11],[61,36]],[[93324,63324,0],[-358,273]],[[92966,63597,0],[-12,14],[-29,24],[-94,50]],[[92831,63685,0],[-184,107]],[[92647,63792,0],[-167,132]],[[92480,63924,0],[-122,114]],[[92358,64038,0],[-93,89],[-103,213],[50,189],[2,14],[-203,110],[-8,-15],[-30,16]],[[91973,64654,0],[123,293],[22,27],[13,16]],[[92131,64990,0],[129,160],[47,60],[194,232]],[[92501,65442,0],[64,44],[64,86]],[[92629,65572,0],[3,4],[80,102]],[[92712,65678,0],[-144,60],[-256,106],[206,365]],[[92518,66209,0],[27,50],[8,14],[11,19]],[[92564,66292,0],[42,-6],[165,116],[250,65],[47,40],[47,-5],[114,-63],[48,101],[53,111],[24,51],[2,4],[39,82],[-27,33],[-21,26],[115,65],[20,10],[80,46],[22,9],[95,42],[85,46],[3,2],[88,55]],[[93855,67122,0],[111,76],[27,20],[31,10],[61,20],[62,22],[40,9],[43,15],[23,13],[31,20],[42,-6],[79,-14],[18,-5],[63,-29],[89,-29],[116,-22],[21,-12],[18,-2],[23,-6],[29,-20],[16,-19],[19,-30],[55,-198],[88,-15],[76,60],[74,61],[77,59],[54,40],[37,28],[76,43],[82,53],[60,35],[18,12],[76,46],[130,89],[29,-74],[36,-97],[16,-35],[131,26],[240,92],[106,20],[96,7],[126,21],[47,2],[82,-13],[175,-31],[69,6],[171,6],[111,2],[74,1],[62,-5],[60,-1],[119,-17],[17,6],[180,47],[19,7],[40,7],[43,-10],[15,1],[94,-21],[79,-25],[168,-42],[21,-9],[43,-19],[28,-24],[76,-51],[328,-138],[62,-23],[173,-88],[39,-11],[44,-15],[66,-36],[71,-31],[84,-16],[106,0],[141,9],[55,15],[139,51],[219,19],[179,69],[-10,-131],[-8,-86],[-151,-231],[-37,-10],[-138,-135],[-48,-42],[-11,-62],[-155,-59],[-30,-10],[-226,-146],[-180,-186],[-34,-110],[-162,-218],[-257,-378],[-56,-80],[-141,-159],[-47,-44],[-85,-68],[-23,-30],[-36,-58],[-43,-69],[-29,-68],[-246,-137],[-140,-23],[-120,-53],[-108,0],[-46,-12],[-103,-7],[-101,-13],[-67,-13],[-139,-15],[-55,-8],[-85,-22],[-67,12],[-111,-10],[-44,3],[-148,9],[-107,8],[-96,6],[-57,-26],[-82,-1],[-82,16],[-123,-50],[-78,-94],[-46,-37],[-60,-47],[-43,-32],[-45,-17],[-62,-52],[-46,-48],[-21,-26],[-46,-62],[-115,-137],[-53,-55],[-98,-100],[-66,-59],[-101,-94],[-47,-37],[-30,-21],[-73,-49],[-48,-49],[-16,-19],[-45,-52],[-22,-37],[-13,-19],[-31,-56],[-11,-16],[-22,-33],[-12,-25],[-16,-31],[-34,-24],[-23,-20],[-46,-92],[-49,-93],[-18,-37]],[[92564,66292,0],[-46,-83]],[[92712,65678,0],[-80,-101],[-3,-5]],[[92501,65442,0],[-370,-452]],[[91973,64654,0],[-109,-220],[-29,-44]],[[91835,64390,0],[-48,-53]],[[91787,64337,0],[-92,-218],[-68,-162]],[[91627,63957,0],[-244,2]],[[91383,63959,0],[1,12],[5,181]],[[91389,64152,0],[-101,127]],[[91288,64279,0],[-124,57],[-79,35],[-179,61]],[[90906,64432,0],[-167,41],[-36,-69],[-116,-227]],[[90587,64177,0],[-4,-8],[-39,-78]],[[90544,64091,0],[-102,-274]],[[90442,63817,0],[-18,-28],[-26,-40],[-8,-13]],[[90390,63736,0],[-17,-25]],[[90373,63711,0],[-14,-14],[-23,-23],[-23,-22]],[[90313,63652,0],[-19,-19]],[[90294,63633,0],[-56,94],[-157,192],[-6,35],[-80,113]],[[89995,64067,0],[-10,-14],[-44,-63]],[[89941,63990,0],[-6,-6],[-76,-93]],[[89859,63891,0],[-48,-56],[-406,257],[39,67],[180,54],[-127,200],[-243,-253],[-63,0],[-49,78],[-38,62],[-76,63],[-124,137],[-69,-224],[-31,-38],[-63,136],[-101,169]],[[88640,64543,0],[-29,-5],[-36,-11],[-199,-56]],[[88376,64471,0],[-137,-39],[97,-187],[77,-2],[5,0],[67,-222],[-278,120],[-554,196]],[[87653,64337,0],[-14,101]],[[87639,64438,0],[-16,118],[-8,128]],[[87615,64684,0],[-3,64]],[[87612,64748,0],[9,11]],[[87621,64759,0],[268,409]],[[87889,65168,0],[2,3]],[[87891,65171,0],[-16,8]],[[87875,65179,0],[-442,216],[22,51]],[[87455,65446,0],[-74,38]],[[87381,65484,0],[-231,117]],[[87150,65601,0],[-202,103]],[[86948,65704,0],[-152,66],[-19,8]],[[86777,65778,0],[-82,-15]],[[86695,65763,0],[-13,-3]],[[86682,65760,0],[-46,18]],[[86636,65778,0],[19,22]],[[86655,65800,0],[46,53]],[[86701,65853,0],[11,14]],[[86712,65867,0],[12,13]],[[86724,65880,0],[76,75]],[[86800,65955,0],[4,2],[80,65]],[[86884,66022,0],[75,63]],[[86959,66085,0],[14,6]],[[86973,66091,0],[85,41],[19,8],[22,8]],[[87099,66148,0],[62,25]],[[87161,66173,0],[9,0],[96,34]],[[87266,66207,0],[49,7]],[[87315,66214,0],[3,1]],[[87318,66215,0],[50,11]],[[87368,66226,0],[113,9]],[[87481,66235,0],[107,0],[28,-2],[89,-6]],[[87705,66227,0],[27,66],[7,38],[7,46]],[[87746,66377,0],[1,25]],[[87747,66402,0],[1,18]],[[87748,66420,0],[3,13]],[[87751,66433,0],[6,21]],[[87757,66454,0],[0,91],[-3,54],[-124,-6]],[[87630,66593,0],[-10,0]],[[87620,66593,0],[-16,214],[-15,53]],[[87589,66860,0],[-21,99]],[[87568,66959,0],[105,31]],[[87673,66990,0],[390,67]],[[88063,67057,0],[1027,282]],[[89090,67339,0],[167,4],[115,40]],[[89431,67292,0],[288,1]],[[89719,67293,0],[180,-11]],[[89899,67282,0],[246,13]],[[90494,67355,0],[154,-72]],[[90795,67178,0],[45,83]],[[90874,67229,0],[121,25]],[[91121,67732,0],[46,74]],[[91219,68022,0],[109,50]],[[91328,68072,0],[-10,31]],[[91596,68229,0],[81,33]],[[91727,68327,0],[64,28]],[[91791,68355,0],[106,20]],[[91897,68375,0],[87,-70]],[[92074,68264,0],[45,89]],[[92119,68353,0],[52,96]],[[92171,68449,0],[43,12]],[[92246,68565,0],[196,-117]],[[92442,68448,0],[50,-21]],[[92822,68453,0],[60,56]],[[92882,68509,0],[23,19]],[[93031,68617,0],[86,-8]],[[93117,68609,0],[293,146]],[[93449,68766,0],[-22,-63],[19,-141],[256,-203],[-37,-26],[-47,-34],[16,-224],[-35,-63],[12,-159],[68,-52],[-7,-36],[-2,-14],[185,-629]],[[92358,64038,0],[87,-81],[35,-33]],[[92480,63924,0],[60,-47],[107,-85]],[[92647,63792,0],[42,-24],[142,-83]],[[92966,63597,0],[14,-11],[169,-128],[125,-96],[50,-38]],[[93404,63146,0],[48,-62],[11,-15]],[[93771,63210,0],[73,-154],[18,-37]],[[94529,62742,0],[-26,-42],[12,-29],[5,-23],[9,-144],[12,-87],[-17,-126],[-2,-33],[46,-129],[84,-175],[11,-67],[-37,-166],[-31,-50],[-36,-126],[-184,-189],[-2,-51],[2,-138],[-125,-287],[-130,-69],[-162,-117],[-81,-72],[-46,-44],[-77,-55],[-105,-104],[-7,-113],[-32,-59],[-117,-80],[-47,-27],[-67,-39],[-18,-22],[-104,-129],[-68,-87],[-151,-195],[-3,-31]],[[93035,59637,0],[-36,19],[-233,107],[-83,33],[-18,-43],[-44,-46],[-60,-22],[-63,0],[-65,18],[-65,49],[-29,30],[-23,23],[-71,70],[-22,24],[-55,45],[-80,52],[-165,100],[-162,62],[-39,29],[-24,21],[1,36],[16,24],[1,11],[-133,54],[-34,-6]],[[91549,60327,0],[-36,-742]],[[91513,59585,0],[2,-62]],[[91515,59523,0],[-26,1],[-66,-4],[-47,-15],[-36,-27],[-59,1],[-214,3],[-192,7]],[[90875,59489,0],[-192,6],[-198,7]],[[90485,59502,0],[-48,1],[-15,1],[-139,4]],[[90283,59508,0],[-96,48],[5,9],[51,72],[-7,3],[-139,71],[-135,69],[-59,37],[-36,38],[-23,42],[-13,34],[-6,44],[6,47],[11,44],[24,42],[25,29],[40,26],[57,23],[79,27],[108,38],[-14,22],[18,6],[34,17],[48,28],[39,35],[41,47],[30,40],[6,11],[23,48],[6,27],[0,19],[-15,25],[-91,32],[-43,9]],[[90257,60617,0],[3,17],[17,77]],[[90277,60711,0],[65,-19]],[[90342,60692,0],[27,-8]],[[90369,60684,0],[40,-12],[86,-28]],[[90495,60644,0],[32,-11]],[[90527,60633,0],[46,-14]],[[90573,60619,0],[68,-22]],[[90641,60597,0],[-32,-92],[-139,42],[-10,-36],[-21,-78],[62,-21],[79,-25]],[[90580,60387,0],[61,-15]],[[90641,60372,0],[50,-11],[42,-7],[49,-5]],[[90782,60349,0],[59,-2]],[[90841,60347,0],[57,0],[43,4]],[[90941,60351,0],[56,5]],[[90997,60356,0],[53,11],[50,12],[12,4],[40,13]],[[91152,60396,0],[51,20]],[[91203,60416,0],[58,26],[53,28],[44,26],[-5,6],[86,72]],[[91439,60574,0],[4,3],[18,14],[54,41]],[[91515,60632,0],[-3,9],[71,100],[69,105],[20,-9],[8,34],[34,127],[14,58],[95,-15]],[[91823,61041,0],[-9,44]],[[91814,61085,0],[-6,22],[-18,29],[-27,25],[-36,18],[-82,15],[-15,1],[-12,-7],[-9,-24],[-10,115],[28,-21]],[[91627,61258,0],[138,-28]],[[91765,61230,0],[36,-1],[29,8],[17,26],[6,27],[-5,33],[-7,22],[-136,13]],[[91705,61358,0],[-16,60]],[[91689,61418,0],[-31,83]],[[91658,61501,0],[-45,91]],[[91613,61592,0],[-77,128]],[[91536,61720,0],[-102,168]],[[91434,61888,0],[-70,126]],[[91364,62014,0],[-36,76]],[[91328,62090,0],[-23,84],[-108,-56],[-5,35],[-5,151],[1,50],[-5,52],[0,126],[2,32],[-3,49],[-16,81],[-23,66],[-26,63],[-41,67],[-45,66],[-47,54],[-57,47],[-53,39],[-31,17],[-28,16],[-36,20],[-23,11],[-21,10],[-56,20],[-69,17],[25,0],[15,7],[10,11],[7,13],[29,81],[3,16],[-2,10],[-6,12],[-6,8],[-13,9],[-44,23],[-27,18],[-6,3],[-30,-85],[-67,5],[-24,3],[-27,-1],[-6,0],[-118,-3],[-132,-23],[-13,-2]],[[90178,63312,0],[-228,-117],[-28,-18],[-10,-17],[-35,-68],[-49,-68],[-96,-83],[-15,-46],[-12,-19],[-140,-95]],[[89565,62781,0],[108,105],[41,22],[7,44],[61,38]],[[89782,62990,0],[88,117]],[[89870,63107,0],[37,67]],[[89907,63174,0],[18,66],[120,156],[59,31],[46,48],[51,99],[93,59]],[[90313,63652,0],[60,59]],[[90390,63736,0],[52,81]],[[90442,63817,0],[50,64],[8,40],[7,39],[10,47],[10,41],[17,43]],[[90544,64091,0],[43,86]],[[90906,64432,0],[5,-1],[181,-62],[196,-90]],[[91389,64152,0],[0,-22],[-6,-171]],[[91383,63959,0],[102,-1],[142,-1]],[[91627,63957,0],[67,161],[93,219]],[[91835,64390,0],[28,43],[110,221]],[[89859,63891,0],[82,99]],[[89941,63990,0],[54,77]],[[89565,62781,0],[-25,-106]],[[89540,62675,0],[46,-25]],[[89586,62650,0],[-32,-34],[-41,-34],[-30,-16]],[[89483,62566,0],[-63,-34],[-122,-44],[-142,-24],[-104,-4],[-102,-3],[-111,6],[-118,-11],[-78,-14],[-95,-34],[-133,-66],[-55,-42],[-41,47],[-159,-85],[-69,-30],[-64,-23],[-92,-23]],[[87935,62182,0],[-74,-168],[-88,-203]],[[87773,61811,0],[35,-25],[-69,-15],[-12,-29]],[[87727,61742,0],[-15,3],[-27,6]],[[87685,61751,0],[-40,-8],[-55,-11],[-79,4]],[[87511,61736,0],[-83,-5],[-71,8],[-68,15],[-64,22],[-52,27],[-60,39],[-84,81],[-61,86],[-79,146],[-123,279],[-41,88],[-22,33]],[[86703,62555,0],[-60,60],[-38,31]],[[86605,62646,0],[-103,51],[-51,17],[-123,50]],[[86328,62764,0],[-202,51]],[[86126,62815,0],[-6,21]],[[86120,62836,0],[-66,227]],[[86054,63063,0],[246,16],[226,-45],[374,-6],[30,187]],[[86930,63215,0],[-70,36]],[[86860,63251,0],[-51,6]],[[86809,63257,0],[-46,16],[-72,29]],[[86691,63302,0],[-133,26]],[[86558,63328,0],[-130,-24],[-54,109]],[[86374,63413,0],[82,233]],[[86456,63646,0],[50,138]],[[86506,63784,0],[-103,64],[-149,12]],[[86254,63860,0],[-17,88]],[[86237,63948,0],[81,-39],[235,35]],[[86553,63944,0],[134,-52],[67,-49],[395,-130],[87,264]],[[87236,63977,0],[417,360]],[[88376,64471,0],[214,60],[33,9],[17,3]],[[93035,59637,0],[-3,-105],[-4,-69],[-3,-15],[-25,-60],[-2,-5],[-46,-51],[-78,-85],[-22,-53],[-19,-32],[-58,-87],[-13,-21],[-57,-87],[-37,-54],[-27,-40],[-11,-16],[-80,-206],[-51,-134],[-29,-92],[-12,-29],[-83,-203],[-10,-29],[-14,-74],[-6,-43],[0,-1],[-9,-48],[-14,-84],[-53,-114],[-16,-30],[-27,-61],[-11,-19],[-22,-54],[-14,-30],[-26,-22],[-95,-87],[-105,-97],[-19,-32],[-12,-26],[-4,-8],[-9,-19],[-21,-19]],[[91888,57296,0],[-16,-18],[-97,-103]],[[91775,57175,0],[-26,-27]],[[91749,57148,0],[-19,-21]],[[91730,57127,0],[-8,-9],[-21,-6]],[[91643,57106,0],[-24,-3],[-13,-1],[-11,-4]],[[91595,57098,0],[-72,-26],[-18,-6]],[[91443,57049,0],[-35,-9],[-9,-9],[-15,-15]],[[91384,57016,0],[-31,-17],[-24,9]],[[91329,57008,0],[-64,23],[-21,8]],[[91244,57039,0],[-41,-21]],[[91203,57018,0],[-46,-30],[-15,-24]],[[91122,56931,0],[-22,-37],[-50,-7]],[[91050,56887,0],[-36,2]],[[90929,56893,0],[-32,-5]],[[90897,56888,0],[-121,-25],[-65,-13],[-24,-10],[-27,-28],[-11,-5],[-27,-15]],[[90622,56792,0],[-17,-9]],[[90605,56783,0],[-66,-34],[-12,-5],[-117,20]],[[90410,56764,0],[-77,13],[-25,-5]],[[90287,56768,0],[-14,-28]],[[90273,56740,0],[-24,4]],[[90113,56748,0],[-48,-31],[-23,-15]],[[90042,56702,0],[-5,-3],[-56,29]],[[89981,56728,0],[-13,9],[-5,0]],[[89963,56737,0],[-25,-4],[-2,-21],[-1,-7]],[[89935,56705,0],[-94,-27],[-48,-13],[-69,51]],[[89671,56753,0],[-60,17]],[[89611,56770,0],[-28,8]],[[89583,56778,0],[34,35]],[[89542,56881,0],[-21,46],[-35,24]],[[89220,57051,0],[-109,36],[-120,-8]],[[88991,57079,0],[-53,39],[-2,0]],[[88432,57325,0],[-177,126],[-49,36],[-58,42]],[[88148,57529,0],[-62,30],[-19,7]],[[87740,58038,0],[-194,334],[-34,61]],[[87282,58856,0],[-101,214],[-18,35]],[[86890,59606,0],[116,64]],[[87006,59670,0],[185,103]],[[87191,59773,0],[-120,-79],[-13,-9]],[[87058,59685,0],[-31,-36]],[[87027,59649,0],[-63,-66]],[[86964,59583,0],[112,-122],[153,-440],[69,-157],[210,-327],[119,-118],[71,-69],[387,-316],[27,-27],[73,-53],[88,-64],[5,-5],[97,-58],[116,-69],[2,-2],[116,-51],[58,-25]],[[88667,57680,0],[-61,14],[61,-14]],[[88667,57680,0],[158,-69],[242,-75],[90,-32],[152,-53],[150,-53],[135,-48]],[[89594,57350,0],[114,-40],[6,-2],[112,-37],[112,-18],[115,3],[22,1]],[[90075,57257,0],[37,1]],[[90112,57258,0],[177,50],[73,31]],[[90362,57339,0],[52,23],[85,-2]],[[90499,57360,0],[61,-4]],[[90560,57356,0],[123,-6]],[[90683,57350,0],[83,34],[57,25],[55,3],[57,16],[57,34],[8,8],[11,11],[26,29]],[[91037,57510,0],[24,52]],[[91061,57562,0],[2,6],[7,21],[4,22],[-1,29],[0,7],[0,21],[-2,21],[-8,29],[-7,25],[7,19],[4,11],[6,4],[112,64],[10,8],[74,59],[17,21]],[[91286,57929,0],[71,80],[13,16]],[[91370,58025,0],[73,103],[91,134],[56,81],[21,34],[55,106]],[[91666,58483,0],[-60,33]],[[91606,58516,0],[-51,29],[-17,10]],[[91538,58555,0],[-45,25],[-15,9],[-12,2]],[[91466,58591,0],[0,28],[1,85],[-3,165]],[[91464,58869,0],[-96,0],[-70,4]],[[91298,58873,0],[-2,67]],[[91296,58940,0],[1,80],[0,69]],[[91297,59089,0],[107,-1]],[[91404,59088,0],[48,-2]],[[91452,59086,0],[29,2],[30,8],[20,6],[36,13],[31,20],[28,23],[12,15],[19,30],[20,32]],[[91677,59235,0],[10,46]],[[91687,59281,0],[3,41],[0,5]],[[91690,59327,0],[0,20],[-9,30],[-15,25]],[[91666,59402,0],[-13,22],[-11,21]],[[91642,59445,0],[-32,32],[-34,23],[-40,16],[-21,7]],[[91513,59585,0],[28,587],[8,155]],[[89169,59162,0],[-9,-20],[-15,-34]],[[89145,59108,0],[-16,-34],[-18,-35],[47,-21],[80,-33],[206,-82],[30,-13],[43,-18]],[[89517,58872,0],[35,-16],[5,-3]],[[89557,58853,0],[44,-22],[26,-17],[35,-23],[27,-22],[26,-20],[29,-29],[27,-28],[28,-33],[35,-45],[33,-51],[27,-51],[18,-44],[11,-31],[12,-38],[4,-26],[6,-41],[4,-39],[4,-43],[0,-37],[-4,-39],[-8,-50],[-4,-16],[-6,-32],[-9,-27],[-12,-35],[-19,-43],[-20,-45],[-25,-57],[-5,-10],[-42,-86],[-3,-6],[-1,-6],[-1,-14],[1,-7],[2,-4],[6,-11],[7,-10],[-38,9],[-44,-90],[-67,-173],[-67,-111]],[[86964,59583,0],[53,55],[10,11]],[[87058,59685,0],[110,73],[0,-1],[23,16]],[[87191,59773,0],[-43,26],[51,57],[92,-64],[34,-29],[72,9],[106,15],[54,3],[79,4],[118,8],[130,9],[190,11],[144,8],[119,9],[263,9],[94,6],[130,5],[130,10],[175,8],[114,5]],[[89243,59882,0],[18,-90],[29,-86],[36,-69],[2,-5],[2,-4],[69,-100],[77,-82],[16,-14],[-52,-70],[-8,-10],[-73,-96],[-42,-78],[-23,11],[-43,27],[-23,16],[-59,-70]],[[91642,59445,0],[12,-21],[12,-22]],[[91690,59327,0],[-3,-46]],[[91687,59281,0],[-1,-5],[-9,-41]],[[91452,59086,0],[-12,0],[-33,1],[-3,1]],[[91404,59088,0],[-83,1],[-24,0]],[[91296,58940,0],[2,-61],[0,-6]],[[91464,58869,0],[2,-278]],[[91466,58591,0],[14,-3],[58,-33]],[[91538,58555,0],[68,-39]],[[91606,58516,0],[56,-31],[4,-2]],[[91370,58025,0],[-84,-96]],[[91061,57562,0],[0,-1],[-9,-17],[-14,-31],[-1,-3]],[[90683,57350,0],[-114,5],[-9,1]],[[90499,57360,0],[-86,2],[-51,-23]],[[90362,57339,0],[-71,-31],[-176,-49],[-3,-1]],[[90112,57258,0],[-34,0],[-3,-1]],[[89557,58853,0],[-40,19]],[[89145,59108,0],[24,54]],[[89243,59882,0],[95,54],[-2,52],[-1,10],[5,36],[13,81],[16,59],[28,77],[27,59],[24,45],[18,29],[25,25]],[[89491,60409,0],[37,34],[80,58],[87,49],[145,52],[92,23],[72,8]],[[90004,60633,0],[106,5],[104,-12],[43,-9]],[[90283,59508,0],[133,-5],[69,-1]],[[90485,59502,0],[177,-6],[213,-7]],[[76271,84599,0],[-13,-115],[-8,-49],[-8,-37],[7,-27],[5,-23],[22,-91],[-1,-45],[0,-7],[5,-30],[3,-51],[31,1],[3,-42],[278,-52],[43,-8]],[[76638,84023,0],[176,-67],[6,-103],[3,-99],[-10,-100],[7,-120],[20,-101],[22,-85],[18,-90],[5,-92],[47,-62],[-203,-122],[5,-24],[42,-45],[24,-62],[53,-119],[53,-91],[133,-32],[229,-76],[99,-68],[13,-23],[10,-121],[12,-120],[74,-89],[169,-166],[-15,-28],[-71,-37],[-74,-22],[-45,-26],[-155,-53],[-231,-31],[18,-176],[16,-185],[4,-33],[-4,-150],[29,-46]],[[77117,81159,0],[18,-65]],[[77135,81094,0],[-5,-97],[11,-56],[13,-22]],[[77154,80919,0],[-4,-44],[-3,-27]],[[77147,80848,0],[-68,-14]],[[77079,80834,0],[-71,-11],[-127,-12]],[[76881,80811,0],[-26,9],[-45,-10],[-71,8],[-114,-8]],[[76625,80810,0],[-68,-68]],[[76557,80742,0],[-133,-25],[-8,-16],[8,-12],[0,-18],[-10,-9],[-3,-21]],[[76411,80641,0],[-43,-44],[5,-27]],[[76373,80570,0],[14,-12],[45,-15],[24,-41]],[[76456,80502,0],[17,-174]],[[76473,80328,0],[-74,-24],[-44,-1]],[[76355,80303,0],[-219,8]],[[76136,80311,0],[-677,-160],[-44,-17],[72,-127],[121,-176],[183,-252]],[[75791,79579,0],[51,-87],[41,-54],[12,-18]],[[75895,79420,0],[118,-169]],[[76013,79251,0],[-114,-19]],[[75899,79232,0],[-81,-25]],[[75818,79207,0],[-541,-94]],[[75277,79113,0],[-162,8]],[[75115,79121,0],[11,-418],[-96,10]],[[75030,78713,0],[-112,-156]],[[74918,78557,0],[20,-32]],[[74938,78525,0],[-37,-40]],[[74901,78485,0],[-25,-69]],[[74876,78416,0],[-63,-74],[-30,-76]],[[74783,78266,0],[4,-54],[-335,40]],[[74452,78252,0],[-942,70],[-22,2]],[[73488,78324,0],[-12,-2],[-377,-49],[-95,-12]],[[73004,78261,0],[-158,0],[-249,-1]],[[72597,78260,0],[-181,3]],[[72416,78263,0],[-94,12],[-33,4]],[[72289,78279,0],[-310,115]],[[71979,78394,0],[34,86],[23,69],[26,114],[-1,55]],[[72061,78718,0],[-161,61],[-78,7],[-22,61],[-40,56],[-20,58],[-17,129],[-52,61],[-74,30],[-68,13]],[[71529,79194,0],[-94,8]],[[71435,79202,0],[-57,-2],[-73,-12]],[[71305,79188,0],[-39,-3],[-24,-2],[-9,-1]],[[71233,79182,0],[-77,-4],[-110,7],[7,37],[9,121],[11,154],[17,167]],[[71090,79664,0],[0,49]],[[71090,79713,0],[2,5]],[[71092,79718,0],[4,15]],[[71096,79733,0],[21,70],[13,93],[1,57]],[[71131,79953,0],[-3,11],[-4,13]],[[71124,79977,0],[-54,155],[47,-4],[116,112],[23,3],[76,-14],[51,-10],[57,14]],[[71440,80233,0],[18,36],[5,9]],[[71463,80278,0],[1,6],[12,162]],[[71476,80446,0],[-1,7],[-61,210]],[[71414,80663,0],[-75,101],[-130,328],[154,52]],[[71363,81144,0],[5,0],[206,33]],[[71574,81177,0],[3,27],[8,71]],[[71585,81275,0],[-1,6],[-4,69]],[[71580,81350,0],[-31,94],[33,119],[2,26],[61,-18],[55,92],[10,52],[57,62]],[[71767,81777,0],[0,5],[-3,67]],[[71764,81849,0],[-61,153]],[[71703,82002,0],[-71,127]],[[71632,82129,0],[130,54],[31,-9]],[[71793,82174,0],[10,-3],[98,-51],[42,51],[218,-173],[15,-12],[75,-59],[173,-137],[73,-24],[142,-45],[16,-300],[2,-27]],[[72657,81394,0],[10,-204]],[[72667,81190,0],[11,-32]],[[72703,81082,0],[48,-145],[97,12],[68,8],[58,10],[267,47],[151,-59],[79,-31],[187,-72],[96,23]],[[73754,80875,0],[56,192],[22,18],[176,151]],[[74008,81236,0],[799,329]],[[74834,81577,0],[68,27]],[[74619,82377,0],[-66,161],[-64,153]],[[71614,82282,0],[37,-43],[56,11],[86,-76]],[[71764,81849,0],[3,-72]],[[71580,81350,0],[5,-75]],[[71585,81275,0],[-11,-98]],[[71574,81177,0],[-211,-33]],[[71414,80663,0],[62,-217]],[[71476,80446,0],[-13,-168]],[[71463,80278,0],[-23,-45]],[[71124,79977,0],[7,-24]],[[71096,79733,0],[-6,-20]],[[71233,79182,0],[72,6]],[[71435,79202,0],[33,-3],[61,-5]],[[71979,78394,0],[-162,55],[-33,11]],[[71784,78460,0],[-415,139],[-30,9]],[[71339,78608,0],[-137,49]],[[71202,78657,0],[-224,102]],[[70978,78759,0],[-172,54]],[[70806,78813,0],[-226,53]],[[70580,78866,0],[-20,6],[-324,71]],[[70236,78943,0],[44,-119]],[[70280,78824,0],[-35,-256],[-41,-189]],[[70204,78379,0],[-35,-107]],[[70169,78272,0],[-9,-37],[1,-117],[-2,-98],[-20,-46],[-4,-34],[10,-58],[-32,-8],[-75,-24],[-3,-21]],[[70035,77829,0],[-33,-33],[-18,-20]],[[69984,77776,0],[-32,-7],[-32,0]],[[69920,77769,0],[-33,-7]],[[69887,77762,0],[-69,-1],[-191,-49],[-92,-45]],[[69535,77667,0],[-285,-75]],[[69250,77592,0],[-119,68],[-107,51]],[[69024,77711,0],[-38,55]],[[68986,77766,0],[1,39],[-19,17],[-250,-152],[-57,-21],[-224,-7],[-117,4],[-21,12]],[[68299,77658,0],[-27,2],[-28,-15]],[[68244,77645,0],[-102,28]],[[68142,77673,0],[-110,-36],[-181,-16]],[[67851,77621,0],[-130,-7],[-49,11]],[[67672,77625,0],[-57,-4],[-79,-43],[-121,-69],[-172,-140]],[[67243,77369,0],[-178,-104]],[[67065,77265,0],[-26,18],[-24,16],[-80,127],[-221,211],[-178,162],[-15,15],[27,44],[-90,74],[-48,42],[-122,58],[-134,67],[-101,47],[-168,106],[60,95],[43,94],[78,198],[91,-31],[45,-40],[96,-21],[23,19],[40,107],[29,91],[22,61],[37,111],[767,74],[-19,55],[-42,587],[11,104],[-12,25],[-13,195],[-78,96],[-26,58],[-11,137],[16,125],[43,119],[0,132],[11,138],[22,89],[68,268],[39,146],[40,128]],[[69355,81590,0],[208,28],[-9,91],[79,87],[59,1],[16,20],[169,218],[256,402]],[[70133,82437,0],[160,-75],[59,118]],[[70352,82480,0],[87,38]],[[70606,82612,0],[17,35]],[[70623,82647,0],[225,-115]],[[70912,82516,0],[117,-71],[-12,-34],[130,-56],[181,-22],[168,-71],[118,20]],[[86268,75333,0],[3,-28]],[[86701,74467,0],[13,-2],[193,-146],[9,-5]],[[86916,74314,0],[79,-51],[65,-44]],[[87060,74219,0],[32,-24]],[[87092,74195,0],[-4,-11]],[[87098,74005,0],[65,-87]],[[87282,73508,0],[35,-74]],[[87340,73369,0],[63,-124]],[[87403,73245,0],[100,-204]],[[87503,73041,0],[16,-32],[49,-102]],[[87568,72907,0],[54,-103],[-43,-68],[-5,-8],[2,-22],[-95,-133]],[[87481,72573,0],[-113,-156]],[[87368,72417,0],[-28,-155],[-8,-42]],[[87332,72220,0],[-23,-142]],[[87309,72078,0],[-159,-177]],[[87150,71901,0],[-58,-70]],[[87092,71831,0],[-108,-132]],[[86984,71699,0],[-104,-134]],[[86880,71565,0],[-12,-15],[-28,-4]],[[85993,71493,0],[-133,36],[-244,7],[-158,150],[-339,86],[-128,104]],[[84991,71876,0],[-39,42]],[[84952,71918,0],[-130,121]],[[84822,72039,0],[-48,35]],[[84774,72074,0],[-336,309],[9,95],[-87,106],[-46,116],[-48,99],[-25,53],[-24,75],[-21,4]],[[84196,72931,0],[-2,15],[-8,62],[-120,137],[-109,88],[-29,72],[-137,91],[-33,32],[-32,30],[-265,-169],[101,-382],[-340,-101],[-80,137],[-303,131],[-322,-347],[-95,65],[-225,11]],[[82197,72803,0],[-26,62],[-14,50],[-56,49],[39,128],[26,41],[14,45],[13,62],[9,37],[25,56]],[[82227,73333,0],[-26,21]],[[82201,73354,0],[-18,15],[5,128],[-18,66],[-4,54],[0,91],[36,98],[17,248],[35,24],[4,29],[62,46],[17,53],[140,12],[62,13],[113,-5]],[[82652,74226,0],[72,308],[6,21]],[[82730,74555,0],[5,29],[172,-37]],[[82907,74547,0],[46,121]],[[82953,74668,0],[103,271]],[[83056,74939,0],[14,33]],[[83070,74972,0],[51,145]],[[83121,75117,0],[4,14]],[[83125,75131,0],[173,436],[-107,73],[-25,30],[15,14],[-15,13],[-21,19]],[[83145,75716,0],[163,151],[110,155],[-128,67],[-115,62],[-283,204],[199,146],[-5,125],[87,151],[327,136],[147,-240],[107,-97],[131,-39],[58,-45],[86,106],[116,-51],[109,-13],[92,5],[121,8],[10,-2],[84,-16],[61,-65],[84,-129],[139,-130],[-194,-156],[-84,-74],[200,-201],[413,-252],[236,3],[65,123],[427,-170],[82,153]],[[83121,75117,0],[-7,-17],[-44,-128]],[[83056,74939,0],[-92,-240],[-11,-31]],[[82953,74668,0],[-35,-92],[-11,-29]],[[82730,74555,0],[-78,-329]],[[82201,73354,0],[10,-8],[16,-13]],[[82197,72803,0],[35,-53],[26,-95],[105,-62],[5,-53],[13,-21],[-5,-38],[-26,-45],[-9,-41],[26,-116],[-44,-20],[-82,-8],[-44,-4],[-109,-8],[-75,32],[-53,-8],[-118,-28],[-96,49],[-96,8],[-31,46],[-79,41],[-9,5],[-277,143],[-136,99],[-144,58],[-79,12],[-31,29],[-48,9],[-105,61],[-57,13],[-127,53],[-105,-156],[-44,-75],[-17,-20],[-52,-83],[-66,-82],[-87,-128],[-93,-132],[-26,-41],[-79,-194],[-65,-161],[-99,-187],[-201,-281],[-32,10],[-100,31],[-69,0],[-193,95],[-135,46],[-801,185],[-110,28],[-127,32]],[[78026,71748,0],[5,52],[3,30]],[[78034,71830,0],[17,172],[18,187],[4,31],[19,198],[22,226],[24,235],[22,227]],[[78160,73106,0],[2,17]],[[78162,73123,0],[1,8],[-12,140],[3,165],[0,169],[3,149],[-4,16],[-8,124],[-14,133],[-24,136],[-28,149],[-26,155],[-12,57],[-37,158]],[[78004,74682,0],[-10,32],[-31,99]],[[77963,74813,0],[-202,110],[-42,26],[-135,79]],[[77584,75028,0],[-25,41],[-9,38]],[[77550,75107,0],[-30,144]],[[77520,75251,0],[-5,171],[-1,9]],[[77514,75431,0],[-1,35],[-1,30],[-6,136],[0,131],[-1,26],[-4,28]],[[77501,75817,0],[-8,167]],[[77493,75984,0],[0,142]],[[77493,76126,0],[-5,26]],[[77488,76152,0],[-19,136]],[[77469,76288,0],[-6,66]],[[77463,76354,0],[-17,111],[-20,110],[-5,27],[-22,109],[-26,109],[-1,6],[-12,51],[-33,131],[9,6]],[[77336,77014,0],[11,-7],[153,29],[145,42],[37,19],[78,39],[95,40],[64,27],[57,12],[12,7],[58,34],[36,25],[9,6],[92,61],[12,4],[72,29],[49,17],[6,3],[115,56],[64,32],[62,80],[92,119],[-22,38],[31,36],[62,80],[26,-17],[7,12],[33,50],[88,-153],[66,-146],[18,-25],[88,141],[75,13],[105,0],[26,-141],[23,-108],[0,-25],[220,-33],[44,-13],[-124,-623],[133,25],[77,12],[70,49],[146,-8],[9,-125],[39,-45],[23,-21],[13,-108],[21,-179],[9,-54],[150,-4],[119,-12],[62,-13],[203,-4],[88,-13],[110,-16],[172,-16],[61,-5],[102,-17],[88,-20],[-27,-59],[31,-8],[73,-27],[54,-24],[79,-46],[75,4],[26,-25],[75,-38],[75,-78],[75,-55],[4,38],[44,-25],[119,0],[88,-33],[128,-13],[35,187],[75,0],[88,-45],[151,-43],[12,-3],[146,-17],[53,4],[26,-124],[34,-15],[160,-68],[110,-22],[97,-16],[123,67]],[[72597,78260,0],[407,1]],[[73004,78261,0],[484,63]],[[73488,78324,0],[964,-72]],[[74452,78252,0],[340,-41],[648,-52],[266,7],[321,55],[160,7],[147,1],[161,-3],[77,-99],[630,-821],[10,-16],[55,-100],[24,-42],[12,-34],[33,-100]],[[77463,76354,0],[3,-23],[1,-24],[1,-8],[1,-11]],[[77488,76152,0],[0,-5],[5,-21]],[[77493,75984,0],[0,-11],[8,-156]],[[77514,75431,0],[0,-8],[6,-172]],[[77550,75107,0],[9,-39],[25,-40]],[[77584,75028,0],[-2,-16],[-11,-214]],[[77571,74798,0],[23,-126],[1,-45],[-24,-114],[-23,-237],[-3,-36],[-32,-299],[12,-154],[15,-142],[-10,-135]],[[77530,73510,0],[-191,47]],[[77339,73557,0],[-55,14],[-81,22],[-13,3]],[[77190,73596,0],[-44,13],[-157,44],[-164,46],[-143,39]],[[76682,73738,0],[-60,15],[-17,5]],[[76605,73758,0],[62,178],[-163,37],[-229,53],[-107,26],[-519,-90],[-2,19],[-1,13],[22,101],[-9,89],[-38,21],[-113,-119],[-26,-44],[-110,-56],[-96,11],[-47,11],[-66,55],[0,98],[-20,73],[-23,65],[-46,77],[-19,46],[-14,52],[-69,98],[-49,77],[-141,101],[-118,90],[-164,108],[-58,11],[-50,10],[-112,44],[-48,7],[-47,-5],[-50,-31],[-152,-86]],[[73983,74898,0],[-43,86]],[[73940,74984,0],[-20,25],[-29,60],[-9,12]],[[73882,75081,0],[-9,3],[-49,22]],[[73824,75106,0],[-30,162],[-56,216]],[[73738,75484,0],[-2,43]],[[73736,75527,0],[-4,33],[-41,168],[-40,42],[-61,15]],[[73590,75785,0],[-20,16],[-20,16]],[[73550,75817,0],[17,41],[-65,64]],[[73502,75922,0],[-8,13]],[[73494,75935,0],[-5,10],[-3,9]],[[73486,75954,0],[-7,99],[-18,40],[-11,12],[-5,10],[-3,10],[-2,9]],[[73440,76134,0],[-1,11]],[[73439,76145,0],[-2,56]],[[73437,76201,0],[-27,23]],[[73410,76224,0],[-4,53]],[[73406,76277,0],[-20,5],[-10,4]],[[73376,76286,0],[-9,6],[-8,8]],[[73359,76300,0],[-7,8]],[[73352,76308,0],[-4,9]],[[73348,76317,0],[-4,10]],[[73344,76327,0],[-2,11],[0,10],[9,96],[-16,89]],[[73335,76533,0],[-72,121]],[[73263,76654,0],[-16,59],[-27,29]],[[73220,76742,0],[-139,53],[-14,25]],[[73067,76820,0],[-38,22]],[[73029,76842,0],[-51,9],[-44,42]],[[72934,76893,0],[-61,32]],[[72873,76925,0],[-91,160],[-102,79]],[[72680,77164,0],[-13,14]],[[72667,77178,0],[-9,8],[-9,5],[-10,5]],[[72639,77196,0],[-10,3],[-20,6],[-10,6]],[[72599,77211,0],[-9,6],[-8,6]],[[72582,77223,0],[-8,8],[-55,75],[-76,21],[-77,77],[-84,41],[-64,48],[-65,8],[-107,27]],[[72046,77528,0],[-95,61],[-109,43]],[[71842,77632,0],[-125,43],[-52,35]],[[71665,77710,0],[-24,13]],[[71641,77723,0],[-29,19],[-46,15],[-17,66],[-22,42]],[[71527,77865,0],[18,51]],[[71545,77916,0],[54,100],[97,159],[0,25],[-1,17],[3,9],[7,9],[9,6],[60,116]],[[71774,78357,0],[46,90]],[[71820,78447,0],[159,-53]],[[72289,78279,0],[127,-16]],[[71842,77632,0],[109,-44],[95,-60]],[[72582,77223,0],[8,-7],[9,-5]],[[72639,77196,0],[10,-6],[9,-5],[9,-7]],[[72680,77164,0],[102,-80],[91,-159]],[[72873,76925,0],[12,-7],[49,-25]],[[72934,76893,0],[44,-43],[51,-8]],[[73067,76820,0],[14,-26],[139,-52]],[[73220,76742,0],[27,-30],[16,-58]],[[73263,76654,0],[6,-10],[66,-111]],[[73344,76327,0],[2,-6],[2,-4]],[[73352,76308,0],[5,-6],[2,-2]],[[73376,76286,0],[9,-4],[21,-5]],[[73410,76224,0],[26,-23],[1,0]],[[73439,76145,0],[1,-10],[0,-1]],[[73486,75954,0],[3,-10],[5,-9]],[[73502,75922,0],[64,-64],[0,-1],[-16,-40]],[[73550,75817,0],[40,-32]],[[73736,75527,0],[2,-42],[0,-1]],[[73824,75106,0],[48,-22],[10,-3]],[[73940,74984,0],[42,-84],[0,-1],[1,-1]],[[73983,74898,0],[-1,0],[-91,-65],[-73,-35]],[[73818,74798,0],[-78,-64]],[[73740,74734,0],[-120,-228],[0,-1]],[[73620,74505,0],[-46,-85],[-185,-114],[-116,-7],[-36,-17],[-45,-26]],[[73192,74256,0],[-90,-14],[-106,-59]],[[72996,74183,0],[-180,-132],[-91,-125],[-96,-66]],[[72629,73860,0],[-1,-1],[-49,43],[-54,51]],[[72525,73953,0],[-38,36],[13,23]],[[72500,74012,0],[-76,58],[-60,-24],[-79,-74],[-10,-6],[-14,36]],[[72261,74002,0],[-201,-58],[-146,-59],[-49,-10],[-81,-42]],[[71784,73833,0],[-26,-68]],[[71758,73765,0],[-61,-46]],[[71697,73719,0],[-54,-34],[-91,-43]],[[71552,73642,0],[-71,-8]],[[71481,73634,0],[-100,-22],[-67,11],[-67,-12],[-56,12],[-20,-184]],[[71171,73439,0],[-17,-152]],[[71154,73287,0],[-28,-179]],[[71126,73108,0],[-72,-121],[-282,134]],[[70772,73121,0],[-245,125]],[[70527,73246,0],[-83,49],[-198,116],[-199,116]],[[70047,73527,0],[-240,139]],[[69807,73666,0],[-123,102],[-180,100]],[[69504,73868,0],[-129,79],[-166,113],[-265,175],[-119,113]],[[68825,74348,0],[-57,38],[-21,27]],[[68747,74413,0],[-275,313]],[[68472,74726,0],[-151,169],[-87,109]],[[68234,75004,0],[-137,198],[-85,140],[-127,170]],[[67885,75512,0],[-41,88],[-91,145]],[[67753,75745,0],[-52,102],[-19,58],[-54,99],[-72,204],[-50,84],[-22,69],[-35,61],[-15,61],[-73,158],[-41,73],[-21,54],[-65,116],[-31,35],[-36,86],[-30,38],[-12,35],[-34,50],[-64,122],[38,15]],[[67065,77265,0],[116,68],[62,36]],[[67672,77625,0],[49,-12],[130,8]],[[67851,77621,0],[182,16],[109,36]],[[68244,77645,0],[28,14],[27,-1]],[[68986,77766,0],[0,-1],[38,-54]],[[69250,77592,0],[279,73],[6,2]],[[69887,77762,0],[25,5],[8,2]],[[69984,77776,0],[18,19],[33,34]],[[70169,78272,0],[14,40],[21,67]],[[70204,78379,0],[41,188],[35,257]],[[70580,78866,0],[226,-54],[172,-53]],[[71339,78608,0],[30,-10],[414,-138],[37,-13]],[[71820,78447,0],[-46,-89],[0,-1]],[[71774,78357,0],[-69,-147],[-9,-48],[-22,-35],[-66,-96],[-6,-11],[-14,-24],[-17,-34],[-17,-29],[-9,-17]],[[71545,77916,0],[-10,-28],[-8,-23]],[[71527,77865,0],[22,-43],[16,-65],[47,-16],[29,-18]],[[71665,77710,0],[52,-36],[125,-42]],[[78162,73123,0],[-1,-10],[-1,-7]],[[78034,71830,0],[-8,-82]],[[78026,71748,0],[-25,-226],[-4,-17],[-28,-132],[-35,-131],[-60,-163],[-11,-21],[-123,53],[-166,50],[-164,29],[-61,-247],[-141,-29],[-80,-3],[-120,14],[-40,14],[-67,1],[-29,-16],[-190,18],[-30,3],[4,-48],[-5,-106],[3,-19],[15,-199]],[[76669,70573,0],[-96,-30]],[[76573,70543,0],[-81,203]],[[76492,70746,0],[-146,109]],[[76346,70855,0],[-145,111]],[[76201,70966,0],[-71,12]],[[76130,70978,0],[-94,16],[-87,117],[-12,12],[-54,48]],[[75883,71171,0],[-73,65]],[[75810,71236,0],[-36,66]],[[75774,71302,0],[-63,48]],[[75711,71350,0],[-62,23],[-57,21],[-121,39]],[[75471,71433,0],[-82,-76]],[[75389,71357,0],[-74,-56],[-279,-166]],[[75036,71135,0],[-98,-55]],[[74938,71080,0],[-99,-88],[-217,-116]],[[74622,70876,0],[66,-63]],[[74688,70813,0],[150,-141]],[[74838,70672,0],[-97,-42]],[[74741,70630,0],[-161,-106],[-129,-165],[-28,-25]],[[74423,70334,0],[-219,166],[-58,44],[-60,46]],[[74086,70590,0],[-302,198]],[[73784,70788,0],[-105,75],[-107,77],[-188,149]],[[73384,71089,0],[-183,186]],[[73201,71275,0],[-96,104]],[[73105,71379,0],[-98,137]],[[73007,71516,0],[26,10],[233,84],[68,-6],[58,7],[18,64],[-6,83],[22,119],[-192,29]],[[73234,71906,0],[56,81]],[[73290,71987,0],[2,31],[13,19],[3,26],[32,47],[18,12],[-4,35],[-67,10],[-113,57],[-95,69],[-44,-3],[-65,26],[8,81],[-28,228],[-11,209],[-4,31],[106,-17],[45,-24],[46,-6],[6,81],[31,80],[59,73],[17,42],[64,46],[27,4],[33,41],[41,94],[23,80],[38,78],[49,18],[16,44],[-4,50]],[[73532,73549,0],[58,89]],[[73590,73638,0],[-30,22],[-160,73],[-105,61],[-34,-87],[-127,-134],[-84,-61],[-29,-72],[4,-48],[4,-61],[-26,-86],[-32,-29],[-56,-90],[-58,-50],[-34,73],[-85,117],[-55,87],[-15,28],[-23,-6],[-134,-33],[-18,-24],[-34,-68],[-186,-80],[33,121],[65,104],[25,108],[121,158],[46,43],[37,31],[74,72]],[[72674,73807,0],[-45,53]],[[72996,74183,0],[107,60],[89,13]],[[73620,74505,0],[120,229]],[[73818,74798,0],[73,36],[92,64]],[[76605,73758,0],[77,-20]],[[77190,73596,0],[149,-39]],[[77339,73557,0],[189,-47],[2,0]],[[77571,74798,0],[13,230]],[[77963,74813,0],[41,-131]],[[87219,68675,0],[-25,-28],[52,-15]],[[87568,66959,0],[-43,-15]],[[87525,66944,0],[-103,-31]],[[87422,66913,0],[-74,-23]],[[87348,66890,0],[-7,-2]],[[87341,66888,0],[-95,-29]],[[87246,66859,0],[-34,-10]],[[87212,66849,0],[-38,-11],[-13,-4]],[[87161,66834,0],[-65,-17],[-12,-2]],[[87084,66815,0],[-36,-11],[-26,-7],[-44,-12],[-44,-14],[-27,-9]],[[86907,66762,0],[-62,-19],[-14,-5]],[[86831,66738,0],[-24,-8]],[[86807,66730,0],[-41,-12],[-28,-9]],[[86738,66709,0],[-56,-15],[-27,-7]],[[86655,66687,0],[-16,-4],[-35,-28]],[[86604,66655,0],[-41,-2]],[[86563,66653,0],[-41,-3],[-64,-4]],[[86458,66646,0],[-146,-8]],[[86312,66638,0],[-104,-6]],[[86208,66632,0],[-8,0]],[[86200,66632,0],[-9,-1]],[[86191,66631,0],[-5,0]],[[86186,66631,0],[-90,-6]],[[86096,66625,0],[-40,6],[-63,12]],[[85993,66643,0],[-74,18]],[[85919,66661,0],[-10,0]],[[85909,66661,0],[-11,1]],[[85898,66662,0],[-1,0]],[[85897,66662,0],[-69,10],[-56,-16]],[[85772,66656,0],[-8,-2],[-12,-9]],[[85752,66645,0],[-106,-73],[-34,-18]],[[85612,66554,0],[-11,-4]],[[85601,66550,0],[-57,-26],[-6,-3],[-37,-6],[-106,-18]],[[85395,66497,0],[-58,-12]],[[85337,66485,0],[-15,-3],[-88,-20],[-15,-3],[-93,-21],[-13,-2],[-72,-16],[-29,-6],[-16,-4],[-79,-17]],[[84917,66393,0],[-91,-21]],[[84826,66372,0],[-434,-95],[-63,-14]],[[84329,66263,0],[-194,-43],[-13,1],[-150,12]],[[83972,66233,0],[-33,-8],[-43,-10]],[[83896,66215,0],[-99,-24],[-120,-28],[-123,-30],[-100,-24],[-13,-3]],[[83441,66106,0],[-5,23]],[[83436,66129,0],[-1,42],[-1,36],[-1,31]],[[83433,66238,0],[0,32]],[[83433,66270,0],[-73,-42],[-14,-8]],[[83346,66220,0],[-6,-2],[-48,-22]],[[83292,66196,0],[-5,-4]],[[83287,66192,0],[-19,-15],[-38,-30]],[[83230,66147,0],[-10,0]],[[83220,66147,0],[-130,-104],[-276,-2],[-80,-23],[-35,-20]],[[82699,65998,0],[50,51],[20,40],[10,49],[-2,38],[0,36],[42,38],[-2,30],[66,20],[4,46],[23,72]],[[82910,66418,0],[-6,81]],[[82904,66499,0],[-1,11]],[[82903,66510,0],[-13,143]],[[82890,66653,0],[22,52],[2,13],[-5,95],[-15,153],[-10,12],[-18,9],[-10,7],[-1,15],[32,125]],[[82887,67134,0],[50,118],[6,129],[-281,34],[-20,13],[-38,121],[-76,77],[0,20],[4,15],[-20,110],[-6,19],[-32,41],[-12,23],[-10,34]],[[82452,67888,0],[-6,55],[-19,176]],[[82427,68119,0],[-33,86],[-2,13],[3,15],[28,48],[13,71],[15,19]],[[82451,68371,0],[13,20],[28,46]],[[82492,68437,0],[14,55],[33,123]],[[82539,68615,0],[7,52],[107,152]],[[82653,68819,0],[25,37]],[[82678,68856,0],[0,17],[-8,16],[-1,14],[9,11],[40,24],[10,8],[13,137],[-44,110],[43,81],[15,79],[-26,84],[0,15],[56,128],[95,160],[147,163],[66,46]],[[83093,69949,0],[159,49]],[[83252,69998,0],[118,10],[260,66],[159,43],[238,8],[135,45],[242,63],[188,12],[158,36]],[[84750,70281,0],[253,30]],[[85003,70311,0],[62,11]],[[85065,70322,0],[140,35]],[[85205,70357,0],[16,4],[112,22]],[[85333,70383,0],[139,22]],[[85472,70405,0],[98,31]],[[85570,70436,0],[235,-8]],[[85805,70428,0],[247,51]],[[82678,68856,0],[-9,-17],[-16,-20]],[[82539,68615,0],[-47,-178]],[[82492,68437,0],[-41,-66]],[[82427,68119,0],[25,-231]],[[82890,66653,0],[14,-154]],[[82699,65998,0],[-44,-71],[-29,-10],[-101,-40],[-93,-23],[-77,-30]],[[82355,65824,0],[-178,-33],[-124,-7],[1,-135],[-61,-23],[-66,-25],[-163,-2],[-56,21]],[[81708,65620,0],[-223,94],[-55,-132]],[[81430,65582,0],[-380,39]],[[81050,65621,0],[-165,48],[-21,-101],[-129,-2],[-120,-18],[-68,-39],[-31,-19],[-74,-28],[-64,5],[-140,12],[-223,15],[-28,2],[-184,28],[-115,16],[-129,-13],[-147,-29],[-19,-3],[-174,-35],[-244,-23],[-28,0]],[[78947,65437,0],[17,74],[17,49],[22,67],[24,56],[21,43],[7,17],[55,49],[24,23],[38,47],[52,63],[86,166],[-84,32],[36,67],[28,41],[96,80],[43,60],[12,20],[43,136],[12,80],[3,82],[15,79],[27,90],[25,96],[1,70],[-1,54],[-95,46],[4,29],[10,78],[-54,71],[-20,47],[-53,137],[-12,23],[-70,2],[-91,-41],[65,228],[9,31],[5,76],[-5,116],[-8,145],[-9,142],[-5,77]],[[79237,68285,0],[-32,76]],[[79205,68361,0],[-17,36],[-228,-88]],[[78960,68309,0],[-91,-34]],[[78869,68275,0],[-30,-7]],[[78839,68268,0],[-129,-29]],[[78710,68239,0],[-20,-5]],[[78690,68234,0],[-5,105]],[[78685,68339,0],[8,137]],[[78693,68476,0],[0,23],[2,149],[3,16]],[[78698,68664,0],[30,129]],[[78728,68793,0],[27,119],[27,114],[-38,11],[-262,62],[-20,4],[-41,0],[49,150],[11,27],[10,34],[-3,68],[4,18],[8,51],[16,60],[40,70],[8,12],[-12,7],[-68,13],[-60,-2],[-92,2],[-106,17],[-160,35],[90,133],[91,139]],[[78247,69937,0],[-131,57],[-25,11],[-79,32]],[[78012,70037,0],[38,22]],[[78050,70059,0],[350,236]],[[78400,70295,0],[348,115]],[[78748,70410,0],[112,74]],[[78860,70484,0],[58,64],[30,31]],[[78948,70579,0],[88,55],[39,-27]],[[79075,70607,0],[22,-22]],[[79097,70585,0],[28,-20],[88,199],[56,52],[30,32]],[[79299,70848,0],[127,240]],[[79426,71088,0],[71,5],[108,13]],[[79605,71106,0],[68,-22]],[[79673,71084,0],[108,-8]],[[79781,71076,0],[64,-19]],[[79845,71057,0],[86,-47]],[[79931,71010,0],[117,-83],[55,-30],[55,28]],[[80158,70925,0],[251,109]],[[80409,71034,0],[292,-79]],[[80701,70955,0],[191,-11],[71,242],[28,26],[84,74],[6,12],[-4,53],[14,18],[160,78],[103,112],[399,-231],[53,-89],[123,-66],[192,-9],[227,-38],[108,-48],[69,-67],[171,-321],[-101,-300],[104,-24],[155,-32],[33,-111],[24,-90],[13,-17],[145,-145],[24,-22]],[[76669,70573,0],[3,-23],[9,-86],[-4,-39],[33,-5],[213,-28]],[[76923,70392,0],[133,-95],[197,-36],[258,-59],[171,-44],[151,-38],[137,-65]],[[77970,70055,0],[42,-18]],[[78050,70059,0],[50,-30],[171,-69]],[[78271,69960,0],[-24,-23]],[[78728,68793,0],[-19,-83],[-11,-46]],[[78693,68476,0],[-3,-62],[-5,-75]],[[78690,68234,0],[12,3],[8,2]],[[78710,68239,0],[53,12],[76,17]],[[78869,68275,0],[83,31],[8,3]],[[79205,68361,0],[16,-38],[16,-38]],[[78947,65437,0],[-78,-3],[-105,16],[-49,6],[-47,5],[-58,26],[-67,27],[-71,26],[-87,40],[-15,11],[-25,17],[-103,59],[-31,19],[-104,58],[-86,73],[-83,64],[-40,22]],[[77898,65903,0],[-43,25],[-53,31]],[[77802,65959,0],[-31,17],[-46,26]],[[77725,66002,0],[-96,46],[-239,134]],[[77390,66182,0],[-25,-73],[-10,-30]],[[77355,66079,0],[-131,76],[-18,10],[-347,131],[-10,3],[-130,49],[-11,4],[-86,49],[-79,3],[-9,1],[2,-198],[8,-280],[-32,-3],[-126,-13],[-102,10],[-120,-7],[-91,3],[-162,3],[-48,3],[-81,50],[-200,368],[-201,197]],[[75381,66538,0],[0,1],[-16,45]],[[75365,66584,0],[-33,6],[-3,0],[-138,7],[-3,0]],[[75188,66597,0],[-18,0],[-187,3]],[[74983,66600,0],[-17,104]],[[74966,66704,0],[-26,230],[-49,419]],[[74891,67353,0],[-60,490],[1315,222],[-9,27],[-42,134],[-48,151]],[[76047,68377,0],[-3,8],[-59,127]],[[75985,68512,0],[-57,142]],[[75928,68654,0],[-42,75]],[[75886,68729,0],[-13,31],[-82,183],[-162,243],[-87,95]],[[75542,69281,0],[-63,58],[-35,31],[-40,36]],[[75404,69406,0],[-311,275],[-61,54]],[[75032,69735,0],[-16,14],[-37,32],[-57,32],[-64,66]],[[74858,69879,0],[-37,38],[-21,20]],[[74800,69937,0],[-61,61]],[[74739,69998,0],[-27,31],[-86,100]],[[74626,70129,0],[-102,89]],[[74524,70218,0],[-66,76],[-16,18]],[[74442,70312,0],[-19,22]],[[74741,70630,0],[74,32],[8,4],[15,6]],[[74838,70672,0],[-67,62],[-83,79]],[[74688,70813,0],[-66,62],[0,1]],[[74938,71080,0],[71,40],[27,15]],[[75389,71357,0],[77,71],[5,5]],[[75711,71350,0],[42,-32],[21,-16]],[[75774,71302,0],[7,-13],[29,-53]],[[75810,71236,0],[26,-23],[47,-42]],[[76130,70978,0],[39,-6],[32,-6]],[[76201,70966,0],[99,-75],[20,-16],[26,-20]],[[76492,70746,0],[66,-163],[15,-40]],[[73105,71379,0],[56,-60],[40,-44]],[[73201,71275,0],[12,-12],[171,-174]],[[73784,70788,0],[223,-147],[79,-51]],[[74423,70334,0],[-78,-78],[78,78]],[[74442,70312,0],[82,-94]],[[74626,70129,0],[113,-131]],[[74800,69937,0],[58,-58]],[[75032,69735,0],[372,-329]],[[75404,69406,0],[138,-125]],[[75886,68729,0],[7,-13],[35,-62]],[[75985,68512,0],[62,-135]],[[74891,67353,0],[75,-649]],[[74983,66600,0],[1,-12],[-2,0],[-166,-1],[-147,-1],[-32,0],[-138,0],[-5,0],[-132,12],[-139,14],[-142,12],[-167,16],[-3,0],[-146,15],[-267,-11]],[[73498,66644,0],[-274,-75]],[[73224,66569,0],[-486,-134],[-275,-85],[-5,-1],[-363,-126],[-377,-130]],[[71718,66093,0],[-26,-4]],[[71692,66089,0],[-474,-72],[-75,-11],[-102,-16],[-9,-1],[-195,-23]],[[70837,65966,0],[-119,17],[-57,7],[-64,28],[-41,22],[-59,35],[-251,153],[-269,144],[-511,366],[-26,6],[-168,47],[-102,18],[-360,34],[31,100],[-82,14],[-68,17],[132,48],[114,10],[12,3],[53,15],[106,20],[28,-1],[6,-1],[38,155],[1,4],[13,87],[-97,106],[65,117],[-2,20],[-4,39],[-27,23],[-18,29],[-106,131],[-54,35],[-7,72],[-13,4],[-143,31],[-144,19],[-44,-1],[-49,15],[16,93],[2,10],[-15,2],[-47,18],[-9,-16],[-46,5],[27,113],[34,87],[-11,23],[34,60],[27,140],[8,4],[38,24],[16,50],[6,47],[5,35],[12,0],[60,-14],[29,8],[22,66],[-6,132],[5,47],[90,22],[24,24]],[[68872,68934,0],[121,-46],[236,-98],[143,-75],[161,-61],[103,-49],[72,-11],[238,-75],[22,-5],[188,-38],[45,71],[151,139],[75,125],[32,34],[16,25],[17,29],[55,41],[29,57],[17,1],[37,-2],[103,65],[85,3],[62,-8],[50,-1],[43,8],[18,-10],[21,-6],[80,46],[45,31],[130,110],[172,147],[30,31],[85,91],[76,135],[26,1],[48,4],[16,4],[39,-4],[38,-4],[12,4],[66,69],[26,26],[50,31],[-22,102],[-35,59],[-31,78],[-27,42],[-83,191],[-21,46],[7,57],[-27,71],[-10,32],[-23,70],[8,26],[9,18],[-2,12],[-8,13],[-18,20],[-8,56],[16,6],[50,22],[88,-1],[40,-48],[37,-25],[36,1],[50,38],[28,40],[32,24],[16,61],[59,1],[16,1],[35,14],[10,30],[-16,39],[38,21],[4,30],[4,13],[8,0],[2,-16],[31,1],[77,68],[48,71],[79,98],[119,140],[40,57],[32,-29],[72,52],[34,47],[49,54],[100,139],[62,-48],[18,-26],[33,-21]],[[73007,71516,0],[49,-68],[49,-69]],[[70772,73121,0],[282,-133],[14,23],[58,97]],[[71126,73108,0],[2,13],[26,166]],[[71154,73287,0],[0,6],[17,146]],[[71481,73634,0],[56,6],[15,2]],[[71552,73642,0],[91,44],[54,33]],[[71697,73719,0],[48,37],[13,9]],[[71784,73833,0],[81,43],[49,10],[146,59],[201,57]],[[72500,74012,0],[-13,-22],[38,-37]],[[72525,73953,0],[54,-50],[50,-43]],[[72629,73860,0],[7,-10],[38,-43]],[[73590,73638,0],[-44,-68],[-14,-21]],[[73290,71987,0],[-11,-17],[-45,-64]],[[68872,68934,0],[184,189],[-32,7],[-53,11],[-63,31],[-89,59],[-147,52],[63,75],[-132,73],[44,59],[39,46],[36,51],[-119,68],[-19,12],[-16,10],[-80,-61],[-37,-39],[-50,-65],[-69,-89],[-44,-66],[-37,-54],[-45,-62],[-41,-88],[-151,80],[-198,80],[-6,-36],[-29,-80],[-18,-57],[-44,-89],[-34,-76],[-33,15],[-105,25],[-76,19],[-70,56],[-36,-53],[-34,18],[-48,0],[-39,1],[14,57],[19,201],[12,93],[-3,46],[-10,114],[-14,125],[-12,88],[-2,41],[11,42],[25,44],[45,61],[54,81],[12,38],[22,140],[23,148],[14,99],[3,60],[-10,178],[3,74],[20,88],[-3,77],[50,134],[28,106],[4,56],[-2,96],[81,248],[6,176],[2,201],[-8,149],[-12,74],[-9,75],[-26,92],[16,32],[3,92],[-44,139],[-11,33],[-28,44],[-9,31],[-13,68],[-14,48],[-48,90],[-32,76],[-13,52],[2,110],[-4,27],[-5,32],[-3,48],[-10,20],[1,34],[11,34],[-18,76],[-8,49],[0,71],[25,539],[71,63],[9,158],[3,78],[20,56],[84,92],[40,120],[0,38],[-16,43],[-11,62],[33,92],[-149,7],[-61,42],[-13,114],[-39,78],[-94,64],[-21,72],[15,20],[17,54],[4,84],[-3,78],[10,63],[3,22],[-21,70],[417,91],[53,26],[23,-45]],[[67753,75745,0],[58,-93],[25,-39],[8,-12],[41,-89]],[[68234,75004,0],[39,-50],[87,-102],[112,-126]],[[68472,74726,0],[48,-56],[227,-257]],[[68747,74413,0],[21,-26],[37,-26],[20,-13]],[[68825,74348,0],[63,-59],[56,-53],[34,-22],[14,-10],[120,-80],[97,-63],[53,-37],[113,-76],[129,-80]],[[69504,73868,0],[180,-99],[34,-29],[15,-12],[74,-62]],[[69807,73666,0],[29,-16],[211,-123]],[[70527,73246,0],[62,-32],[22,-11],[161,-82]],[[84803,64567,0],[100,43]],[[84903,64610,0],[100,43],[100,44],[100,43]],[[85203,64740,0],[58,24],[16,7],[26,12],[43,19],[20,9]],[[85366,64811,0],[37,15]],[[85403,64826,0],[99,43]],[[85502,64869,0],[15,7]],[[85517,64876,0],[86,36]],[[85603,64912,0],[51,22]],[[85654,64934,0],[49,22]],[[85703,64956,0],[97,48]],[[85800,65004,0],[94,53],[92,59],[86,63]],[[86072,65179,0],[35,28],[49,40],[15,14]],[[86171,65261,0],[-210,-262],[-9,-15]],[[85952,64984,0],[-38,-57]],[[85914,64927,0],[132,-87]],[[86046,64840,0],[67,-32],[124,-60],[-14,-15],[-23,-16]],[[86200,64717,0],[-27,-14]],[[86173,64703,0],[-27,-11]],[[86146,64692,0],[-28,-8]],[[86118,64684,0],[-22,-3]],[[86096,64681,0],[-29,-1]],[[86067,64680,0],[-13,0],[-39,0],[-31,0],[-13,2],[-31,-4]],[[85940,64678,0],[-23,-4]],[[85917,64674,0],[-31,-6]],[[85886,64668,0],[-29,-8],[-53,-18]],[[85804,64642,0],[-31,-14]],[[85773,64628,0],[-16,-11]],[[85757,64617,0],[337,-673],[56,40],[28,-3]],[[86178,63981,0],[59,-33]],[[86237,63948,0],[0,-1]],[[86237,63947,0],[10,-50],[7,-37]],[[86506,63784,0],[-23,-62],[-27,-76]],[[86456,63646,0],[-59,-169],[-23,-64]],[[86558,63328,0],[39,-8],[94,-18]],[[86809,63257,0],[10,-1],[41,-5]],[[86860,63251,0],[23,-12],[47,-24]],[[86054,63063,0],[39,-134],[27,-93]],[[86120,62836,0],[46,-155],[21,-53],[20,-51],[-116,-102],[-207,57],[-147,51],[-16,30],[-70,26],[-125,29],[-26,30],[-59,22],[-114,43],[-63,16],[-3,-72],[-66,2],[-168,-10],[-244,-21],[-89,-4],[-37,-17],[-95,-10],[-38,7],[-98,-14],[-71,-17],[-24,-6],[-50,-9],[-32,-5],[-29,-3],[-10,0],[-24,-2],[-18,-1],[-89,-4],[-60,-3],[-49,-1],[-48,-3],[-53,-4],[-58,-4],[-60,-3],[-87,-5],[-76,-5],[-108,-5],[-74,-4],[-72,-1],[-17,0],[-97,1],[-52,4],[-28,4],[-43,7],[-38,8],[-39,7],[-59,11],[-7,3],[-8,1],[-27,7],[-18,3],[-18,1],[-29,1]],[[82854,62613,0],[-20,0]],[[82834,62613,0],[-13,0],[-37,-2]],[[82784,62611,0],[-50,-6],[-31,-6],[-16,-6]],[[82687,62593,0],[44,-10],[-75,-252],[-296,167]],[[82360,62498,0],[-16,7],[5,100]],[[82349,62605,0],[0,17]],[[82349,62622,0],[-47,51],[-61,88],[-83,46]],[[82158,62807,0],[-93,114]],[[82065,62921,0],[37,166]],[[82102,63087,0],[26,118]],[[82128,63205,0],[22,184],[22,77],[51,245],[-78,9],[45,260],[16,50]],[[82206,64030,0],[0,29]],[[82206,64059,0],[25,133]],[[82231,64192,0],[89,-9]],[[82320,64183,0],[12,330]],[[82332,64513,0],[1,10],[17,240]],[[82350,64763,0],[-31,7]],[[82319,64770,0],[42,570]],[[82361,65340,0],[-4,302]],[[82357,65642,0],[0,10]],[[82357,65652,0],[-1,109]],[[82356,65761,0],[0,12],[-1,51]],[[83220,66147,0],[10,2],[12,-8]],[[83242,66141,0],[52,-28],[15,-11],[52,-36],[20,-15],[58,-53]],[[83439,65998,0],[21,-19],[10,-12]],[[83470,65967,0],[57,-69],[57,-91],[41,-95]],[[83625,65712,0],[10,-34],[6,-20]],[[83641,65658,0],[14,-46],[26,-101]],[[83681,65511,0],[21,-82],[5,-18]],[[83707,65411,0],[26,-98],[1,-3]],[[83734,65310,0],[9,-49],[9,-53]],[[83752,65208,0],[5,-105],[-8,-71],[-12,-64],[-2,-12],[-14,-56],[-39,-97],[-52,-91],[-66,-84],[-75,-75],[-58,-45]],[[83431,64508,0],[-30,-21],[-18,-14]],[[83383,64473,0],[-63,-45],[12,-5],[56,-22]],[[83388,64401,0],[48,-12],[101,-37]],[[83537,64352,0],[73,-15],[35,-8]],[[83645,64329,0],[51,-6],[15,-3],[43,-6]],[[83754,64314,0],[17,-1],[92,-6],[111,2],[109,9],[108,18],[106,26],[104,34],[69,28],[132,57],[101,43],[38,16],[62,27]],[[83542,61466,0],[3,38],[56,106],[-29,46],[25,46],[93,117],[103,37],[53,-70],[-32,-234],[162,-102],[134,-65],[-9,-30],[387,-83],[59,-99],[-84,-198],[-43,-135],[5,-80],[136,-180],[180,-26],[14,-19],[208,-28],[1,-15],[-12,0]],[[83384,61029,0],[38,173],[29,111],[91,153]],[[83238,60843,0],[81,4],[7,15],[28,50],[30,117]],[[83474,60615,0],[-42,4],[-13,1]],[[84178,60608,0],[-49,-13],[-14,-4]],[[84204,60623,0],[-14,-8],[-12,-7]],[[84304,60623,0],[-36,6],[-7,1]],[[84531,60553,0],[-34,7],[-163,29]],[[81050,65621,0],[139,-15]],[[81189,65606,0],[241,-24]],[[82355,65824,0],[1,-63]],[[82356,65761,0],[1,-119]],[[82350,64763,0],[-15,-226]],[[82335,64537,0],[-3,-24]],[[82231,64192,0],[-25,-132],[0,-30]],[[82128,63205,0],[-63,-284]],[[82158,62807,0],[159,-87],[2,-34],[32,-21],[-2,-60]],[[82360,62498,0],[-3,-35],[52,-28],[128,-75],[80,-99],[76,-94],[51,-115],[137,-112],[265,-189],[40,-37],[99,-58],[69,-51],[31,-29],[44,-39],[16,-10],[97,-61]],[[83087,60886,0],[-77,244]],[[81041,60851,0],[-104,-8]],[[80768,61227,0],[18,108]],[[80469,61785,0],[34,-766]],[[79708,61069,0],[23,-84]],[[79709,60710,0],[-230,-80]],[[79479,60630,0],[-168,-69]],[[79311,60561,0],[-153,78]],[[79158,60639,0],[-158,28]],[[79000,60667,0],[-95,124]],[[78887,60872,0],[-69,39]],[[78818,60911,0],[-113,15]],[[78508,60972,0],[27,204]],[[78025,61630,0],[59,102]],[[78084,61732,0],[-70,235]],[[77622,62144,0],[-294,-47],[-50,189],[-5,21],[-27,112]],[[77246,62419,0],[-37,119],[-38,123],[-9,27],[-46,150],[-26,85],[-15,43],[-10,26],[-42,138],[-38,126],[-38,126],[-5,21],[-68,202],[-6,26],[-49,181],[-3,21],[-21,87],[-13,115],[-11,137],[-6,19],[-14,131],[-6,30],[-6,137],[-2,105],[-10,125],[-13,329],[7,30],[-5,44],[44,90],[81,97],[87,89],[81,93],[100,104],[16,20],[84,101],[85,195],[61,168]],[[77355,66079,0],[35,103]],[[77725,66002,0],[77,-43]],[[77802,65959,0],[96,-56]],[[74983,66600,0],[205,-3]],[[75365,66584,0],[16,-46]],[[77246,62419,0],[36,-149],[49,-187]],[[77394,61738,0],[45,-282]],[[77439,61456,0],[31,-289]],[[77025,61197,0],[0,9],[1,-65]],[[76949,60828,0],[-119,3]],[[76619,60835,0],[-108,-7]],[[76511,60828,0],[-158,-12]],[[76353,60816,0],[-115,-10]],[[76101,60794,0],[-267,-9]],[[75772,60831,0],[-55,-2]],[[75605,60825,0],[-47,3]],[[74981,61010,0],[-17,36]],[[74578,61996,0],[14,53],[-2,4],[-22,-14]],[[74568,62039,0],[-30,-3],[-103,-15]],[[74288,61984,0],[-23,0],[-50,0]],[[74174,61984,0],[-194,-30],[-17,-4]],[[73528,61814,0],[-31,-11],[-102,-42]],[[72926,61686,0],[-70,16]],[[72856,61702,0],[-70,12]],[[72786,61714,0],[-198,-73],[-114,-34],[-11,-54],[-54,11],[-105,-27],[-45,1],[-55,0],[-56,-19],[-55,-34],[-46,-29],[-5,-2],[-73,-4],[-61,18],[-37,9],[-139,-37],[-48,-32],[-142,-7],[-185,28],[-117,-8],[-75,-5],[-57,-4],[-55,-7],[-56,-6],[-122,24]],[[70875,61423,0],[-35,27]],[[70840,61450,0],[-40,22]],[[70800,61472,0],[-11,7]],[[70789,61479,0],[-20,12],[49,91],[38,95],[12,28],[3,123],[-16,42],[-10,24],[-69,93],[-58,65],[-48,51],[-41,52],[-32,52],[-32,50],[-26,51],[-22,45],[-28,110],[-29,81],[5,156],[22,53],[3,26],[10,25],[18,53],[33,89],[30,70],[13,38],[26,97],[10,53],[10,52],[12,53],[13,52],[16,51],[15,51],[4,17],[-6,35],[-37,182],[-69,268],[-40,152],[-49,140],[-11,52],[-33,314],[-6,60],[17,19],[108,115],[12,32],[26,2],[51,7],[47,5],[27,9],[30,27],[29,34],[41,52],[14,32],[-3,33],[-3,19],[1,18],[9,25],[9,27],[27,23],[11,148],[1,16],[-14,120],[26,110],[32,67],[-133,6],[12,261],[11,76]],[[71692,66089,0],[21,3],[5,1]],[[73224,66569,0],[272,74],[2,1]],[[73111,60978,0],[60,-193],[1,-3]],[[72250,59208,0],[-9,-11],[-15,-16]],[[71958,58997,0],[-43,-43]],[[71915,58954,0],[-7,-6],[-27,-27]],[[71773,58875,0],[-15,0],[-55,4]],[[71631,58873,0],[-36,14],[-8,4]],[[71479,58899,0],[-26,-13]],[[71453,58886,0],[-9,-5],[-30,-16]],[[71239,58880,0],[-10,-12],[-9,-11]],[[70964,58873,0],[-24,19]],[[70940,58892,0],[-41,33],[-19,-8],[-2,-2],[-20,-33]],[[70536,58557,0],[-23,12]],[[70513,58569,0],[-43,22]],[[70470,58591,0],[-28,15]],[[70442,58606,0],[-30,15]],[[69582,58768,0],[4,-18],[35,-163]],[[69097,57404,0],[-79,20],[-107,-208],[-90,28],[-13,7],[-45,20],[-32,15],[32,164],[-37,150],[-26,62],[-76,75],[-186,-1],[-89,-293],[-113,-144],[-6,-112],[-262,-242],[-210,213],[-180,64],[-110,118],[-176,-161],[-13,11],[-777,701]],[[66502,57891,0],[-47,50],[-34,28],[91,35],[110,43],[223,128],[17,99],[81,145],[-207,-44],[-8,-1],[-85,108],[-43,55],[24,23],[83,84]],[[66707,58644,0],[62,58],[12,33],[116,311]],[[66897,59046,0],[588,178],[175,61],[57,13],[13,2],[21,4],[12,3],[46,10],[-51,114]],[[67758,59431,0],[33,24],[607,212],[75,39],[128,48],[28,11],[485,191],[103,-2],[130,57],[5,6],[105,129],[194,67],[48,7],[8,1],[150,21],[5,2],[263,58],[135,65],[131,113],[84,135],[45,179],[51,289],[65,160],[79,142],[74,94]],[[70800,61472,0],[36,-20],[4,-2]],[[70840,61450,0],[26,-20],[9,-7]],[[72786,61714,0],[62,-10],[8,-2]],[[72856,61702,0],[7,-1]],[[66897,59046,0],[60,417],[-385,-64],[-28,76],[-72,151],[-172,343],[-133,97],[-339,-19]],[[65828,60047,0],[-221,26]],[[65607,60073,0],[-544,106]],[[65063,60179,0],[-169,-52],[-138,-5],[-250,-27],[-126,-4]],[[64380,60091,0],[-198,-5],[32,44]],[[64214,60130,0],[32,43],[-143,105],[-19,123],[-16,103],[-1,217],[-8,54],[-23,37],[-15,23],[0,134],[-16,3],[-34,8]],[[63971,60980,0],[-54,11],[-26,5],[-11,1],[-40,8]],[[63840,61005,0],[-188,33]],[[63652,61038,0],[-83,11],[8,27],[5,18],[17,56],[-116,104],[-12,-2],[-63,-8],[-132,-26],[-33,69],[14,6]],[[63257,61293,0],[320,150]],[[63577,61443,0],[239,111],[29,44],[2,3]],[[63847,61601,0],[30,41]],[[63877,61642,0],[16,24],[20,28],[42,58],[-83,70],[-44,18],[-53,10],[-117,-9],[-53,17],[-89,80],[-427,-48],[-194,-25]],[[62895,61865,0],[-14,-1],[-103,-18],[-43,36],[-10,12]],[[62725,61894,0],[-47,52],[-29,53],[-46,61],[-32,11],[-26,-4],[-80,61],[-81,49],[-112,111],[-19,3],[-20,-7],[-182,25],[-97,-24]],[[61954,62285,0],[-10,-3],[-35,-6],[-60,-15],[-129,-25],[-12,-1]],[[61708,62235,0],[-71,-6],[-76,13],[-56,28],[-113,35],[-92,15],[40,166],[-38,11],[-185,8],[-52,7],[-95,12],[-127,-9],[-62,-18],[-181,24],[-87,4],[-13,-26],[-25,0],[-173,23]],[[60302,62522,0],[69,276],[102,234],[24,90],[68,86],[49,134],[17,117],[3,10],[7,21],[10,82],[54,160],[179,-84],[15,-5],[94,-32],[149,-43],[81,-7],[129,11],[19,8],[108,42],[90,7],[53,27],[86,27],[80,1],[68,12],[20,7],[98,30],[113,69],[75,47],[16,11],[48,29],[22,32],[39,37],[69,79],[70,130],[5,78],[17,-1],[42,0],[10,-27]],[[62500,64217,0],[23,-68],[37,-51],[29,-28],[277,-146],[113,-31],[126,-26],[80,-23],[84,-47],[320,-155],[282,-161],[105,-38],[244,-109],[294,-186],[201,-72],[537,-43],[254,34],[88,37],[56,3],[80,6],[70,2],[67,-4],[182,16],[55,3],[68,-17],[113,-40],[44,-52],[-15,-27],[23,-42],[129,-51],[82,-51],[1,-22],[5,-88],[2,-20],[14,-92],[-21,-143],[-8,-11],[-86,-87],[-13,-13],[-51,-108],[-7,-19],[-5,-45],[1,-46],[7,-40],[24,-134],[25,-226],[35,0],[45,-85],[10,-18],[8,-22],[26,-75],[42,-80],[6,-11],[103,-77],[149,-66],[58,45],[23,17],[7,5],[20,16],[29,19],[29,19],[78,53],[54,36],[47,17],[60,-7],[18,-1],[8,-1],[18,-7],[28,-10],[50,-13],[31,-8],[141,-59],[149,-100],[26,-36],[49,-68],[95,-242],[35,-232],[-9,-66],[-3,-22],[-6,-41],[-54,-140],[-18,-24],[-13,-19],[-13,-19],[-79,-68],[-93,-123],[-11,-14],[-14,-19],[-70,-107],[-4,-64],[56,-210],[37,-68],[70,-160],[49,-119],[16,-40],[4,-11]],[[60302,62522,0],[-243,-12]],[[60059,62510,0],[2,29]],[[60061,62539,0],[-52,18]],[[60009,62557,0],[-71,37]],[[59938,62594,0],[-42,28],[-15,10],[-104,97]],[[59777,62729,0],[-83,130]],[[59694,62859,0],[-70,-6],[-55,-5],[-22,-2],[-75,-8],[-49,-5],[-5,13],[-9,46],[-56,262],[57,23],[71,29],[8,4],[130,27]],[[59619,63237,0],[-7,23]],[[59612,63260,0],[29,36]],[[59641,63296,0],[61,52],[23,-14],[15,-1],[47,19],[404,359],[-199,147],[36,35],[18,65],[29,31],[21,29],[150,-51],[96,-52],[17,-6],[25,-3],[103,-55],[106,-40],[105,-37],[35,96],[-5,55],[-15,64],[29,134],[98,135],[-81,93],[-107,19],[-75,87],[-108,-6],[-112,17],[28,105],[-142,2],[-11,38],[-90,55],[-130,-28],[-49,0],[-25,-94],[-250,11],[-48,5],[-50,9],[-50,17],[-69,21],[-40,30],[10,257],[-54,72],[-81,0],[-84,116],[-50,41],[-67,33],[-12,9],[0,4],[5,19],[-55,55],[-16,22],[-27,53],[-71,99],[-9,58],[-68,124],[-8,18],[-38,62],[-36,52],[-42,93],[-51,103],[-13,28],[9,52],[0,82],[21,63],[29,41],[-33,6],[-21,3],[-179,-13],[-97,19],[-82,4],[-113,31],[-36,-2],[-100,34],[-142,45],[-115,26],[43,137],[-20,28],[-163,106],[1,58],[-44,13],[-26,20],[-24,12],[-24,51],[-26,11],[-39,76],[-51,37],[-30,21],[-43,29],[-71,-10],[-235,-117],[-39,125],[-27,50],[0,17],[-20,101],[-39,-8],[-14,-3],[-16,9],[-15,3],[-26,22],[-19,9],[-13,4],[-23,-2],[-28,3],[-58,70],[-60,29],[-30,44],[-25,-3],[-16,38],[-49,118],[-25,36],[-2,29],[297,203],[-12,3],[20,43],[19,9],[9,61],[15,67],[-9,75],[-2,8],[-43,117],[-78,-10],[-31,-20],[-32,-11],[-38,-6],[-57,-8],[-71,-6],[-38,-13],[-78,8],[-180,18],[-34,4],[7,60],[25,92],[-1,31],[-4,200],[2,68],[93,90],[180,127],[51,41],[72,-9],[6,0],[51,-48],[64,-25],[77,-9],[105,14],[32,-18],[61,0],[50,31],[86,11],[87,-17],[58,28],[85,21],[103,10],[53,-31],[413,-201],[87,-15],[40,-40],[200,-118],[-42,-52],[106,-65],[207,-125],[151,-104],[-17,-28],[301,-225],[8,-6],[59,-37],[58,-27],[43,-23],[186,-32],[77,-21],[45,-20],[198,-46],[153,-34],[96,-10],[111,-5],[23,-17],[75,-66],[38,-27],[26,-18],[84,-18],[2,0],[153,-56],[5,-2],[150,-77],[10,-96],[99,-17],[173,0],[263,7],[78,-3],[56,-16],[305,-108],[171,-79],[99,-66],[167,-111],[179,-149],[14,-15],[64,-120],[112,-203],[59,-89],[40,-43],[48,-41],[29,-21],[94,21],[23,10],[109,119],[94,106],[275,32],[-96,-111],[-45,-98],[-30,-163],[-20,-178],[-15,-46],[-4,-48],[-2,-77],[-43,-174],[-19,-67],[-33,-92],[-22,-43],[-7,-42],[-28,-48],[2,-31],[-187,-392],[-36,-41],[-11,-64],[-8,-92],[0,-126],[-3,-85],[1,-88]],[[80454,71021,0],[134,-36]],[[80588,70985,0],[9,-2],[32,-9]],[[80629,70974,0],[72,-19]],[[80701,70955,0],[28,-1],[75,-4]],[[80804,70950,0],[5,-58]],[[80809,70892,0],[3,-187],[-94,2],[2,-160]],[[80720,70547,0],[101,1],[102,1]],[[80923,70549,0],[-1,-82],[154,75],[16,0],[72,-46],[99,-45],[0,-48],[57,-32],[117,-56]],[[81437,70315,0],[79,-29],[38,-13]],[[81554,70273,0],[28,-9],[211,-65]],[[81793,70199,0],[17,-97]],[[81810,70102,0],[-151,-85],[-86,-32],[-29,-110],[-31,-115],[5,-5],[99,-79],[64,-52],[21,-16],[15,-12],[20,-17]],[[81737,69579,0],[78,-38],[38,-18]],[[81853,69523,0],[62,-58],[2,-1],[22,-21]],[[81939,69443,0],[29,-41],[35,-48],[22,-45]],[[82025,69309,0],[20,-60],[6,-16],[2,-6]],[[82053,69227,0],[52,-12],[80,-17]],[[82185,69198,0],[-19,-250],[-78,0]],[[82088,68948,0],[-199,-2],[-31,22],[-40,27]],[[81818,68995,0],[-126,7]],[[81692,69002,0],[-169,8]],[[81523,69010,0],[-102,14],[-217,1],[-3,-44],[-7,-35],[-3,-18],[-18,-51],[-29,-57],[-9,-12]],[[81135,68808,0],[-27,-34],[-23,-27]],[[81085,68747,0],[-23,-22],[-47,-31],[-36,-23],[-60,-33],[-33,-9],[-21,-5],[-49,-8],[-24,-2],[-15,0],[-21,-3],[-13,-8]],[[80743,68603,0],[8,110],[0,102],[14,2]],[[80765,68817,0],[-2,21],[-1,75]],[[80762,68913,0],[-6,120],[-13,50],[-6,90],[-1,28]],[[80736,69201,0],[-5,20],[-5,26]],[[80726,69247,0],[-18,66],[-9,22],[-35,87],[-47,92],[-226,445],[-12,46],[-17,88],[-16,9],[-11,206],[-11,115]],[[80324,70423,0],[3,21],[22,118]],[[80349,70562,0],[18,88],[11,39],[5,18],[21,94]],[[80404,70801,0],[15,74],[9,49],[2,14],[11,61],[1,6],[10,-1]],[[80452,71004,0],[2,17]],[[82088,68948,0],[0,-1],[77,1],[-6,-82],[-82,-382],[-15,-53],[-142,-182]],[[81920,68249,0],[-55,-9],[-199,-32],[-23,-28],[-4,-10],[3,-7],[-18,-39],[216,-230],[-35,-43],[-39,-47],[303,-146],[301,-276],[47,-42],[166,-149],[19,-23],[-71,-233]],[[82531,66935,0],[-2,-9]],[[82529,66926,0],[-81,-266],[-38,-125],[-4,-15],[-7,-24],[-8,-29],[-3,-10],[-8,-25],[-10,-34]],[[82370,66398,0],[-87,84],[-10,-19],[-16,-11],[-23,-3],[-26,11],[-107,81],[-79,93],[-81,127]],[[81941,66761,0],[-51,96],[-50,95]],[[81840,66952,0],[-13,24],[-3,10],[-10,16]],[[81814,67002,0],[-18,31],[-55,95],[-22,30]],[[81719,67158,0],[-13,19],[-119,167]],[[81587,67344,0],[-27,34],[-41,52],[-17,21],[-120,123],[-25,28]],[[81357,67602,0],[-164,165]],[[81193,67767,0],[-254,262],[-11,11]],[[80928,68040,0],[0,6],[-61,76],[-28,47],[-16,29],[-28,61],[-6,12],[-8,0],[-21,76],[-15,78],[-4,53],[0,105],[2,20]],[[81085,68747,0],[50,61]],[[81523,69010,0],[18,0],[151,-8]],[[81692,69002,0],[96,-6],[7,0],[23,-1]],[[87511,61736,0],[-4,-55]],[[87507,61681,0],[-1,-22],[-3,-21]],[[87503,61638,0],[-7,-104],[-8,-100],[49,-7],[-6,-93]],[[87531,61334,0],[203,-29],[229,-32],[75,-10],[169,-24]],[[88207,61239,0],[32,-13],[17,-22]],[[88256,61204,0],[14,-80],[5,-29]],[[88275,61095,0],[15,-87],[4,-18]],[[88294,60990,0],[-191,-28],[-28,-4]],[[88075,60958,0],[-516,-74]],[[87559,60884,0],[-206,-28]],[[87353,60856,0],[-71,-6]],[[87282,60850,0],[-158,-19],[-76,-12],[-10,-16],[-51,-5],[-12,-11],[-180,-21],[-21,-8],[-8,14],[-9,6],[-30,4],[-31,-3],[-119,-15],[-168,-25],[-101,-20],[-64,-16],[-74,-19],[-51,-14],[-89,-45]],[[86030,60625,0],[-26,-7],[-74,-22]],[[85930,60596,0],[-169,-47],[32,-11],[16,-35],[7,-17],[12,-30],[29,-56],[43,-61],[-18,-4],[-149,-35],[-73,-11],[-21,-7]],[[85639,60282,0],[-47,-4]],[[85592,60278,0],[-7,-1],[-76,-13]],[[85509,60264,0],[-84,-9]],[[85425,60255,0],[-9,0],[-80,-2]],[[85336,60253,0],[-83,-3]],[[85253,60250,0],[-16,0],[-108,-1]],[[85129,60249,0],[5,84],[12,-1]],[[85146,60332,0],[3,26],[2,17]],[[85151,60375,0],[5,40]],[[85156,60415,0],[2,17],[2,14]],[[85160,60446,0],[6,40],[-37,10],[23,118],[21,35]],[[85173,60649,0],[10,20],[45,93]],[[85228,60762,0],[-44,142],[17,7],[14,6],[19,11],[18,10],[19,14],[16,13],[17,15],[18,17],[15,18],[10,14],[11,17],[13,22],[11,19],[9,21],[6,17],[5,22],[0,26],[-2,60],[-8,98],[-26,117]],[[85366,61448,0],[-15,56],[-15,57]],[[85336,61561,0],[-41,100],[-23,39],[-5,4],[-65,58]],[[85202,61762,0],[-23,18],[-23,17]],[[85156,61797,0],[-83,29],[-28,8]],[[85045,61834,0],[12,126],[15,152]],[[85072,62112,0],[-2,100],[11,120],[100,-19],[44,-8]],[[85225,62305,0],[23,74],[33,108]],[[85281,62487,0],[-40,11],[-35,20],[-26,22],[-1,3],[-14,24],[-12,18],[-16,31],[-22,32],[-22,29],[-16,9],[-28,14],[-49,90]],[[85000,62790,0],[142,17],[229,22],[136,10],[72,6],[254,3],[293,-33]],[[86126,62815,0],[136,-35],[66,-16]],[[86605,62646,0],[78,-70],[20,-21]],[[85281,62487,0],[-56,-182]],[[85072,62112,0],[-27,-278]],[[85156,61797,0],[46,-35]],[[85336,61561,0],[30,-113]],[[85228,60762,0],[-55,-113]],[[85160,60446,0],[-4,-31]],[[85151,60375,0],[-5,-43]],[[85129,60249,0],[-54,5],[-90,15]],[[84985,60269,0],[-21,7],[-7,3],[-103,46]],[[84854,60325,0],[-82,34]],[[84772,60359,0],[-78,47],[-70,42]],[[84624,60448,0],[-74,46],[-44,25]],[[84506,60519,0],[-105,61],[-72,42],[-75,44],[-70,41],[-74,46],[-25,32],[5,43],[31,75],[20,86],[-46,7],[-76,9],[-9,1],[-40,7],[-33,-1],[-50,-5],[-161,-18],[-30,-2],[-23,-4],[-22,-12],[-16,-11],[-23,-29]],[[83612,60931,0],[12,77],[2,102],[-4,87],[-23,150],[-9,83]],[[83590,61430,0],[-26,120],[-1,9]],[[83563,61559,0],[-5,15],[-23,69],[-21,57],[-29,63],[-9,19],[-25,50]],[[83451,61832,0],[-32,40],[-28,35]],[[83391,61907,0],[-48,55],[-35,41],[-14,12],[-36,37],[-37,36],[-39,33],[-15,9],[-74,52],[-83,48],[-126,68]],[[82884,62298,0],[-202,119],[-11,6]],[[82671,62423,0],[-54,33],[-109,70]],[[82508,62526,0],[12,-3],[17,-3],[9,0],[12,2],[14,5],[38,29],[16,8],[27,16],[5,2],[29,11]],[[82784,62611,0],[50,2]],[[82854,62613,0],[4,0],[916,-6],[437,66],[494,73],[71,12],[57,11],[74,10],[93,11]],[[81035,88049,0],[0,-127],[-13,-458],[77,-328],[113,-542],[59,-68],[24,-39],[1,-36],[26,-96],[-25,-66],[-137,-151],[20,-13],[9,-50],[63,-71],[245,-100],[-76,-229],[-126,20],[101,-292],[21,-74],[-73,-58],[140,-191],[185,-171],[-149,-122],[-44,-57],[-145,-145],[37,-153],[-23,-430],[-26,-19],[-72,-79],[-119,8],[-24,-33],[3,-17],[-11,-36],[-16,-10],[-46,-70],[-68,-117],[-89,-164],[-47,-79],[-226,57],[3,43],[-193,35],[-26,4],[-23,-46],[-168,92],[-6,3],[-123,56],[-16,-16],[-19,-20],[-23,-34],[-17,0],[-35,-17],[-49,-74],[-38,-63],[-125,56],[-74,102],[-136,-86],[-109,-134],[-15,-12],[-202,161],[-62,5],[-51,13],[-28,2],[-37,0],[-62,21],[-52,35],[-45,43],[-34,13],[-7,-9],[-352,-478],[-131,112],[-39,-50],[-108,156],[-3,10],[-25,62],[-29,72],[-251,185],[-2,1],[-152,90],[-35,-83],[-51,15],[-331,198],[29,132],[16,26],[-70,29],[-97,21],[44,248],[1,17],[26,105],[5,21],[-24,3],[-44,5],[-128,4],[-33,3],[-90,116],[-7,23],[-240,42],[-5,-23],[-19,-74],[-6,-29],[-19,-55],[0,-2],[-43,-89],[-2,-6],[-24,-97],[-3,-16],[82,-25],[-35,-119],[2,-20],[6,-43],[-7,-80]],[[74787,78211,0],[-3,36],[-1,19]],[[74876,78416,0],[22,62],[3,7]],[[74938,78525,0],[-7,10],[-13,22]],[[74918,78557,0],[37,51]],[[74955,78608,0],[28,40],[47,65]],[[75115,79121,0],[118,-6],[44,-2]],[[75818,79207,0],[-152,235]],[[75666,79442,0],[-11,19],[-68,96],[-13,16],[-51,90],[-11,19]],[[75512,79682,0],[-3,4],[-118,156]],[[75391,79842,0],[-7,12],[-7,12],[-106,177]],[[75271,80043,0],[51,-15],[51,-72],[147,-217],[133,-168],[245,-339],[1,0]],[[76013,79251,0],[-24,35],[-94,134]],[[75791,79579,0],[-70,133],[-15,30],[-63,139],[-47,144],[-8,30],[-36,117],[174,41],[168,40],[170,40],[72,18]],[[76136,80311,0],[124,-4],[95,-4]],[[76473,80328,0],[-15,158],[-2,16]],[[76373,80570,0],[-5,28],[43,43]],[[76557,80742,0],[44,45],[24,23]],[[76881,80811,0],[198,23]],[[77147,80848,0],[7,71]],[[77135,81094,0],[-15,54],[-3,11]],[[77117,81159,0],[43,30],[60,4],[306,14],[22,1],[18,-145],[8,-122],[25,-46],[31,-15],[20,-48],[36,-76],[19,-42],[31,-70],[33,-69],[41,-88],[22,-40],[26,-45],[45,-88],[27,-48],[41,-83],[51,-70],[18,-26],[35,-76],[38,-81],[23,-47],[38,-80],[23,-31],[-45,22],[-160,-74],[-22,75],[-97,-53],[-3,8],[-153,-62],[-137,-51],[-28,62],[-12,52],[-105,-33],[-14,-35],[-39,15],[-164,-26],[28,-117],[1,-34],[-29,0],[3,-39],[13,-55],[-121,-41],[15,-50],[-27,12],[-192,-27],[-33,-5],[-140,-25],[13,-68],[14,-84],[37,-66],[24,-57],[46,-91],[25,-59],[19,-30],[38,7],[12,42],[11,35],[10,20],[30,42],[36,60],[9,15],[21,8],[152,2],[132,3],[-48,-128],[-11,-38],[-55,-177],[-65,-52],[-116,-86],[-99,-72],[-31,-26],[-17,-14],[-127,-92],[-129,-99],[-97,-95],[73,-115],[-135,-21],[-90,72],[-140,-1],[-118,-44],[-91,4],[-402,-24],[-10,0],[-173,-8],[-152,13],[-49,6],[-11,4],[-11,-2],[-498,49],[24,87]],[[83488,71870,0],[-85,-121],[-112,-99],[-32,-19],[-92,-57],[-129,-51],[-109,-30],[-59,-13],[-115,-13],[-122,5],[-324,32],[58,-13],[31,-24]],[[82398,71467,0],[46,-54]],[[82444,71413,0],[4,3]],[[82448,71416,0],[288,-323]],[[82736,71093,0],[-76,-24]],[[82660,71069,0],[-714,-153],[10,-226],[39,-463],[-13,-33],[-172,-92]],[[81793,70199,0],[-239,74]],[[81554,70273,0],[-117,42]],[[80923,70549,0],[-203,-2]],[[80809,70892,0],[-7,89]],[[80802,70981,0],[-52,15],[2,139],[-8,0],[6,200],[-4,34]],[[80746,71369,0],[2,195]],[[80748,71564,0],[83,13]],[[80831,71577,0],[5,75]],[[80836,71652,0],[4,52]],[[80840,71704,0],[1,21],[1,80]],[[80842,71805,0],[-13,0],[-1,10],[13,-1],[0,38],[-37,14],[-5,86]],[[80799,71952,0],[385,-7],[85,0],[138,-3],[416,-53],[59,-9],[385,-48],[0,-11],[36,0],[146,-19],[58,27],[5,5],[303,154],[43,21],[24,10],[129,66],[185,91],[0,235],[0,209]],[[83196,72620,0],[288,2],[142,-1]],[[83626,72621,0],[-2,-52],[0,-329],[-24,-73],[-24,-99],[-34,-96]],[[83542,71972,0],[-18,-36],[-36,-66]],[[84217,73385,0],[3,-17],[0,-37],[0,-19],[21,1],[0,-23],[-65,1],[0,-75],[0,-77],[0,-15],[0,-23],[-2,-16],[3,-9],[19,-145]],[[84196,72931,0],[146,-31],[126,-58],[91,-60],[53,-52],[59,-60]],[[84671,72670,0],[122,-141],[67,-75]],[[84860,72454,0],[-16,-5]],[[84844,72449,0],[-39,-4],[-102,0]],[[84703,72445,0],[-10,26],[-208,-2],[-2,-116]],[[84483,72353,0],[0,-11],[0,-5],[-4,-177]],[[84479,72160,0],[231,-4]],[[84710,72156,0],[63,-46],[1,-36]],[[84822,72039,0],[94,0],[37,-39],[-1,-82]],[[84991,71876,0],[86,3],[40,-37],[3,-134],[42,-51]],[[85162,71657,0],[55,4],[113,10]],[[85330,71671,0],[36,0],[-4,-102],[1,-9],[1,-40]],[[85364,71520,0],[-10,-66],[-50,1],[-170,34],[-50,-56],[53,-46],[21,-110],[117,21],[51,4]],[[85326,71302,0],[-37,-95]],[[85289,71207,0],[-89,-16],[-90,-20],[69,-176],[34,17],[-19,-48],[-23,-60],[-127,-322]],[[85044,70582,0],[-553,9]],[[84491,70591,0],[-7,17],[-17,42],[-141,-9],[-139,1],[-15,0],[-37,81],[219,80],[42,26],[-33,84],[-87,-47]],[[84276,70866,0],[-329,-113],[-119,-40]],[[83828,70713,0],[-74,188],[0,123],[-135,0],[-10,-11],[-308,-64],[-47,-8],[-6,30],[-74,-12],[-60,-9],[-188,29],[-47,17],[-106,65]],[[82773,71061,0],[-37,32]],[[82448,71416,0],[-1,-1],[-3,-2]],[[82444,71413,0],[-38,44],[-8,10]],[[83488,71870,0],[31,56],[23,46]],[[83626,72621,0],[0,155],[-12,-2],[-1,119],[0,42],[0,154],[0,38],[2,77],[1,94],[9,71]],[[83625,73369,0],[530,-1],[1,18],[13,-2],[48,1]],[[86666,73296,0],[30,-75]],[[86696,73221,0],[21,-63],[0,-10]],[[86717,73148,0],[132,-15],[68,-8]],[[86917,73125,0],[-3,9],[8,-2],[9,-72],[-2,-39],[34,16]],[[86963,73037,0],[46,14]],[[87009,73051,0],[40,3],[38,0],[40,-6],[12,2],[13,9],[6,10],[1,17],[78,-19],[4,-75],[28,-22],[96,0],[-1,33],[-13,255],[-11,111]],[[87340,73369,0],[158,-318]],[[87498,73051,0],[22,-44],[48,-100]],[[87481,72573,0],[-87,-121],[-26,-35]],[[87309,72078,0],[-76,-84],[-7,-8],[-76,-85]],[[87092,71831,0],[-35,-41],[-32,-42]],[[87025,71748,0],[-22,-23]],[[87003,71725,0],[-9,-13],[-10,-13]],[[86984,71699,0],[-100,-129],[-4,-5]],[[86306,71584,0],[-464,-135]],[[85842,71449,0],[2,51]],[[85844,71500,0],[-442,-1],[-38,21]],[[85330,71671,0],[-168,-14]],[[84710,72156,0],[-64,1],[-167,3]],[[84479,72160,0],[4,193]],[[84703,72445,0],[104,0],[37,4]],[[84860,72454,0],[-19,21],[-50,55],[-120,140]],[[84217,73385,0],[2,1],[44,33],[0,136],[55,20],[71,-69],[72,-1],[6,-8],[50,0],[14,11],[1,6],[58,-2],[17,0],[60,1],[13,-15],[67,-1],[10,-7],[66,-1],[15,12],[47,0],[0,-33],[134,0],[0,17],[40,-1],[10,0],[99,0],[69,0],[1,128],[3,29],[10,1],[0,-30],[108,-4],[-54,-115],[15,-5],[66,140],[26,57],[33,64],[101,203],[30,0],[11,14],[59,42],[8,-10],[11,8],[42,-51],[11,7],[43,-55],[33,0],[21,-1],[116,90],[-1,31],[9,6],[29,25],[19,13],[28,24],[16,13]],[[86031,74108,0],[64,-80],[47,-51],[24,-1],[70,-86],[-14,-10],[58,-72],[38,-44],[37,-42],[63,-55],[42,-48],[28,-43],[31,-50],[56,-70],[16,-22],[31,-48],[44,-90]],[[83625,73369,0],[2,2],[0,87],[-12,2],[-2,83],[2,22],[0,49],[5,0],[-2,39],[0,29],[-4,0],[1,49],[1,38],[-1,48],[0,25]],[[83615,73842,0],[3,133]],[[83618,73975,0],[-2,67],[1,345],[0,71],[5,415],[4,168],[0,29],[1,256],[0,21]],[[83627,75347,0],[432,173]],[[84059,75520,0],[51,14],[85,19],[92,9],[31,-1],[59,1],[95,-6],[92,-16],[81,-23],[48,-14],[99,-40],[108,-61],[80,-59],[28,-26],[39,-36],[66,-74],[163,-194],[45,-54],[32,-38],[209,-250],[32,-41],[437,-522]],[[83618,73975,0],[-2,-46],[-1,-87]],[[83196,72620,0],[-1,88],[-1,24],[0,185],[0,34],[0,429],[0,20],[-1,355],[-1,25],[0,28],[0,13],[-1,123],[-28,3],[-27,4],[-314,359],[-60,69],[-318,-9],[-304,-32],[123,69],[144,37],[67,50],[19,78],[38,-8],[275,-43],[0,-12],[24,2],[5,-3],[38,-6],[16,-3],[64,169]],[[83070,74972,0],[55,159]],[[83125,75131,0],[365,153],[137,63]],[[85997,75664,0],[-7,-33]],[[86916,74314,0],[144,-95]],[[87092,74195,0],[-42,-133]],[[87009,73051,0],[-16,-4],[-30,-10]],[[86917,73125,0],[-200,23]],[[86696,73221,0],[-20,51],[-7,19],[-3,5]],[[84059,75520,0],[130,77],[188,99],[236,29],[399,-1],[133,-7],[225,-14],[101,-6],[315,5],[138,3],[83,-3],[-10,-38]],[[80842,71805,0],[-2,-101]],[[80840,71704,0],[-1,-16],[-3,-36]],[[80836,71652,0],[-1,-23],[-4,-52]],[[80748,71564,0],[-141,-25]],[[80607,71539,0],[-272,-46],[-887,-156],[-160,-31],[-186,-31]],[[79102,71275,0],[-458,-84],[-139,-23]],[[78505,71168,0],[-399,-69]],[[78106,71099,0],[-23,-5],[28,214]],[[78111,71308,0],[16,124]],[[78127,71432,0],[19,8],[27,48],[11,2],[-15,153],[5,56],[20,82],[16,13],[4,14],[49,32],[607,357],[239,-127],[342,-244],[243,-166],[49,-43],[16,-97],[552,94],[-11,289],[39,140],[199,-17],[260,-23],[1,-51]],[[88181,74420,0],[119,81]],[[88472,74490,0],[88,4]],[[88560,74494,0],[-6,187]],[[88943,74511,0],[1,-32],[6,-138]],[[88958,74126,0],[7,-156],[5,-137]],[[89158,73113,0],[-132,-261],[-18,-36]],[[89008,72816,0],[-314,-621],[-56,-111]],[[88464,71739,0],[-23,-51],[-11,-24]],[[88015,71816,0],[2,91],[3,57]],[[87930,71968,0],[-66,2]],[[87578,71833,0],[-80,-91],[-9,-9]],[[87008,71585,0],[-36,3]],[[86856,71518,0],[-6,12],[-10,16]],[[86984,71699,0],[19,26]],[[87003,71725,0],[12,12],[10,11]],[[87332,72220,0],[36,197]],[[87503,73041,0],[-5,10]],[[87498,73051,0],[-95,194]],[[86647,74560,0],[188,87],[178,83]],[[88009,74635,0],[0,-25]],[[86948,65704,0],[142,-72],[60,-31]],[[87381,65484,0],[22,-12],[52,-26]],[[87875,65179,0],[8,-4],[8,-4]],[[87889,65168,0],[-267,-407],[-1,-2]],[[87612,64748,0],[1,-21],[2,-43]],[[87615,64684,0],[9,-128],[6,-52],[9,-66]],[[87639,64438,0],[7,-49],[7,-52]],[[87653,64337,0],[-384,-332],[-33,-28]],[[86553,63944,0],[-12,-2],[-222,-33],[-15,7],[-67,31]],[[86237,63947,0],[-58,34],[-1,0]],[[85757,64617,0],[6,4],[10,7]],[[85773,64628,0],[27,12],[4,2]],[[85804,64642,0],[54,18],[1,1],[27,7]],[[85886,64668,0],[19,4],[12,2]],[[85917,64674,0],[14,2],[9,2]],[[86067,64680,0],[27,1],[2,0]],[[86096,64681,0],[13,2],[9,1]],[[86118,64684,0],[10,3],[18,5]],[[86146,64692,0],[5,2],[22,9]],[[86173,64703,0],[24,13],[3,1]],[[86046,64840,0],[-37,24],[-95,63]],[[85914,64927,0],[15,23],[23,34]],[[85952,64984,0],[10,15],[36,45],[173,217]],[[86171,65261,0],[63,58],[75,77],[1,1],[45,52],[11,12],[12,15],[28,31],[13,17],[15,17],[13,15],[52,61],[17,20],[3,4],[15,17],[34,39],[8,11],[9,11],[39,45]],[[86624,65764,0],[5,5]],[[86629,65769,0],[7,9]],[[86682,65760,0],[6,1],[7,2]],[[86695,65763,0],[46,9],[36,6]],[[81979,52580,0],[-25,-64]],[[81942,52129,0],[-9,-54]],[[81933,52075,0],[-27,-141]],[[81906,51934,0],[20,-6],[-33,-102],[-47,-77]],[[81846,51749,0],[-178,123],[-154,106],[-94,-39]],[[81420,51939,0],[-57,-24],[-5,1]],[[81358,51916,0],[-4,29],[-3,14]],[[81351,51959,0],[-8,0]],[[81343,51959,0],[-6,26],[-19,29]],[[81318,52014,0],[-24,26]],[[81294,52040,0],[-3,24],[-46,39]],[[81245,52103,0],[-26,24],[-74,66],[-145,131]],[[81000,52324,0],[-31,25],[6,92],[7,57],[10,57],[15,102],[117,701],[79,477],[35,211],[7,23],[13,24],[10,13],[13,13],[19,13],[18,11],[30,11],[25,9],[30,7],[38,4],[23,0],[143,-18],[37,-5],[84,-21],[55,-16]],[[81975,54027,0],[38,-23],[25,-17],[258,-172],[38,28],[28,18],[43,25],[23,12],[25,14],[51,25],[26,10],[22,7],[54,14],[32,8],[50,1],[-56,-88],[24,-163]],[[84193,51484,0],[-89,58],[-252,157],[-99,-7],[-82,80]],[[83671,51772,0],[-316,-25]],[[83355,51747,0],[-10,132],[-22,274],[-17,9],[-74,28],[-2,62],[-174,127]],[[83056,52379,0],[-7,2],[-77,23]],[[82972,52404,0],[-6,2],[-15,7]],[[82951,52413,0],[-8,3],[-28,13],[-17,3],[-49,5],[-2,-9],[-36,0],[-7,-3],[-66,0]],[[82738,52425,0],[12,71],[59,-23],[82,140],[55,276],[30,152],[24,13],[3,316],[2,216],[139,108],[194,190],[64,61],[43,40],[130,-69],[23,-49],[-15,-69],[14,-41],[162,51],[63,20],[172,-476],[91,-242],[28,4],[50,-143],[16,-2],[256,-27],[8,1],[112,24],[61,57],[166,-82],[53,-34],[90,-61],[40,-33],[47,-34],[38,-34],[40,-33],[34,-39],[33,-63],[24,-43],[20,-49],[23,-51],[13,-36],[5,-27],[10,-108],[-13,-140],[-9,-84],[110,-45],[-11,-22],[-104,-160],[-47,-89],[-127,-148],[-237,-141],[-243,-51],[-117,-27],[-253,172],[-8,-78]],[[81351,51959,0],[2,-14],[4,-29],[1,0]],[[81358,51916,0],[5,0],[57,23]],[[81420,51939,0],[41,17],[53,23],[154,-106],[28,-20],[150,-104]],[[81846,51749,0],[296,-208],[49,-36],[48,-40],[138,-132],[1,-1],[15,-18]],[[82393,51314,0],[23,-29],[16,-25],[15,-22]],[[82447,51238,0],[27,-43],[10,-22],[1,0],[12,-25],[9,-22],[18,-45],[0,-1],[13,-31]],[[82537,51049,0],[17,-48]],[[82554,51001,0],[4,-16],[14,-60],[1,-6],[0,-5],[9,-30],[2,-8],[5,-18]],[[82589,50858,0],[4,-30]],[[82593,50828,0],[33,-213],[4,-27]],[[82630,50588,0],[16,-90],[8,-46],[2,-14],[23,-143]],[[82679,50295,0],[15,-95],[2,-14],[-80,-12]],[[82616,50174,0],[-1,0],[-197,-29],[-154,-21],[-2,0],[-147,-15],[-67,-3],[-97,2],[-1,0],[-11,0],[-66,5],[-35,4],[-61,8],[-24,3],[-5,1],[-1,0],[-18,3],[-28,3],[-34,7],[-65,13],[-41,11],[-38,8],[-60,18],[-43,14],[12,21],[-344,123],[-50,32],[-17,15],[-40,36],[-7,8],[-20,21],[-19,30],[-1,1],[-1,2],[-1,0],[0,-1],[-6,-11],[-228,-22],[-11,104],[12,0],[-3,24],[-10,-1],[-13,106],[-162,-18],[-34,-52],[-15,6]],[[80462,50630,0],[-40,18],[-14,6],[-41,19]],[[80367,50673,0],[-25,12],[96,225],[62,142],[39,129],[81,188]],[[80620,51369,0],[40,122],[8,28],[1,1],[46,181],[31,124],[32,152]],[[80778,51977,0],[10,52],[3,19],[2,10],[2,14],[3,29],[5,59],[0,2],[11,59],[10,54],[15,42],[14,25],[9,11],[12,11],[12,8],[19,4],[7,0]],[[80912,52376,0],[5,1],[20,-3],[23,-13],[9,-11],[18,-16],[13,-10]],[[81000,52324,0],[102,-93],[42,-38],[59,-51],[16,-14],[26,-25]],[[81245,52103,0],[10,-8],[36,-30],[2,-13],[1,-12]],[[81318,52014,0],[19,-28],[3,-15],[3,-12]],[[82951,52413,0],[21,-9]],[[82972,52404,0],[84,-25]],[[83355,51747,0],[153,13],[163,12]],[[84193,51484,0],[-102,-508],[-81,-52],[92,-121],[172,77],[73,-29],[139,-67],[82,-561],[40,-5],[55,-55],[-21,-227],[-43,7],[-70,15],[-60,13],[-29,10],[24,-114],[-68,-20],[-27,-9],[-38,-8],[-43,-6],[-43,-7],[-38,-1],[-49,3],[-36,4],[-13,1],[-59,11],[-49,9],[-16,6],[-43,13],[-57,22],[-10,6],[-78,45],[-37,23],[-137,79],[-110,60],[-27,16],[-149,71],[-45,7],[-26,4],[-41,5],[-39,6],[-39,1],[-46,1],[-74,-6],[-41,-4],[-22,-1],[-183,-9],[-25,-1],[-60,-3],[-2,14],[-40,252],[-24,137]],[[82630,50588,0],[-41,270]],[[82589,50858,0],[-4,18],[-11,38],[-1,11],[-19,76]],[[82537,51049,0],[-40,98],[-23,47],[-27,44]],[[82447,51238,0],[-31,46],[-23,30]],[[82393,51314,0],[-15,17],[172,520]],[[82550,51851,0],[88,4]],[[82638,51855,0],[4,128],[2,79],[2,60],[-1,46],[-2,42],[26,57],[36,63],[3,8],[4,10],[26,77]],[[79231,50356,0],[-27,-98],[-23,-84]],[[78472,50607,0],[75,131]],[[78161,51116,0],[-20,-8],[-26,-13]],[[77670,50952,0],[-25,63],[-44,97]],[[77570,51189,0],[-23,65],[-30,88]],[[77498,51525,0],[-2,21],[1,18],[7,72],[6,29],[8,39],[4,15],[7,28],[13,37],[13,31],[21,43],[12,19],[16,34],[23,35],[28,39],[11,12],[4,5],[49,54],[61,56],[75,49],[62,37],[74,33],[71,27],[72,19],[85,19],[140,23],[46,9],[134,20],[56,9],[48,7],[31,2],[67,3],[90,2],[66,-2],[82,-10],[64,-11],[82,-19],[60,-19],[85,-31],[129,-60],[125,-53],[67,-19],[39,-5],[135,-9],[131,-9],[53,4],[53,14],[47,23],[41,36],[24,25],[32,38],[142,-69],[83,-48],[23,-73],[28,-99],[11,-52],[5,-37],[2,-52],[-12,-80],[-27,-78],[-60,-174],[-236,-721],[-125,-94],[-53,-40],[-102,-78],[-101,-76],[-101,-78],[-104,-81],[-104,118],[-152,4],[-27,-84]],[[83754,64314,0],[-109,15]],[[83537,64352,0],[-104,32],[-45,17]],[[83383,64473,0],[20,15],[28,20]],[[83752,65208,0],[-18,102]],[[83707,65411,0],[7,2],[39,12]],[[83753,65425,0],[30,9]],[[83783,65434,0],[2,8],[3,5],[11,10],[16,10],[14,6],[23,6],[22,3],[7,1],[21,6],[23,6],[21,5],[20,5],[22,4],[21,4],[188,25],[164,22],[3,1],[49,7],[48,6]],[[84461,65574,0],[41,5],[184,26]],[[84686,65605,0],[18,3],[11,1]],[[84715,65609,0],[55,8],[84,11],[53,7]],[[84907,65635,0],[-11,-3],[-10,-5],[-10,-9],[-8,-8],[-4,-11],[-2,-12],[-9,-126]],[[84853,65461,0],[-2,-15]],[[84851,65446,0],[-1,-13],[-22,-172],[-13,-98],[-29,-235],[-8,-57],[-9,-76],[-9,-90],[-1,-3],[0,-3],[1,-5]],[[84760,64694,0],[1,-6],[17,-48],[1,-3],[19,-54],[5,-16]],[[84903,64610,0],[-101,-43],[-24,70],[-1,3],[-7,20],[-6,18],[0,3],[-1,3],[-2,5],[-1,5]],[[84760,64694,0],[-1,6],[1,6],[8,90],[9,62],[13,112],[2,15],[12,94],[1,11],[10,77],[4,28],[2,13],[7,55],[15,130],[6,41],[1,7],[1,5]],[[84853,65461,0],[3,50],[5,73],[0,2],[0,3],[2,10],[4,11],[2,2],[6,7],[9,8],[13,6],[11,3],[15,3],[4,0],[48,9],[46,10],[47,11],[47,12],[52,16],[38,12],[45,17],[32,13],[12,5],[45,19],[49,24],[1,1],[35,17],[42,22],[28,17],[13,8],[39,25],[39,26],[16,11],[21,15],[49,36],[45,34],[60,43],[13,9],[48,35],[61,45],[11,6],[12,3],[13,0],[13,-3],[12,-5],[9,-9],[6,-10],[2,-7],[3,-5]],[[85979,66101,0],[7,-45],[0,-2],[1,-5]],[[85987,66049,0],[19,-110],[4,-24]],[[86010,65915,0],[4,-21],[17,-94],[0,-1]],[[86031,65799,0],[13,-76],[1,0]],[[86045,65723,0],[24,-144],[1,0],[8,-47]],[[86078,65532,0],[6,-38]],[[86084,65494,0],[21,-73],[5,-19]],[[86110,65402,0],[2,-12],[5,-10]],[[86117,65380,0],[1,-2]],[[86118,65378,0],[19,-43]],[[86137,65335,0],[15,-31],[19,-42],[-16,-15],[-48,-39],[-8,-7],[-1,0],[-26,-22]],[[86072,65179,0],[-87,-62],[-91,-59],[-60,-34],[-34,-20]],[[85800,65004,0],[-51,-25],[-46,-23]],[[85703,64956,0],[-24,-11],[-25,-11]],[[85654,64934,0],[-27,-11],[-24,-11]],[[85603,64912,0],[-30,-12],[-56,-24]],[[85502,64869,0],[-48,-21],[-51,-22]],[[85366,64811,0],[-2,-1],[-46,-20],[-16,-7],[-41,-18],[-45,-20],[-13,-5]],[[84715,65609,0],[-29,-4]],[[84686,65605,0],[-184,-25],[-41,-6]],[[83783,65434,0],[-19,-6],[-11,-3]],[[83707,65411,0],[-26,100]],[[83641,65658,0],[-16,54]],[[83470,65967,0],[-31,31]],[[83242,66141,0],[-12,6]],[[83230,66147,0],[57,45]],[[83292,66196,0],[54,24]],[[83346,66220,0],[87,50]],[[83433,66270,0],[0,-28]],[[83433,66242,0],[0,-11],[1,-22],[2,-80]],[[83436,66129,0],[1,-7],[4,-16]],[[83896,66215,0],[76,18]],[[84329,66263,0],[67,15],[430,94]],[[84826,66372,0],[91,20],[-14,-46],[-14,-51],[-12,-52],[-9,-53],[-8,-52],[-4,-54],[0,-9],[-1,-37],[0,-75],[-1,-59],[2,-62],[1,-46],[2,-12],[5,-11],[6,-10],[7,-7],[11,-6],[11,-4],[13,-2],[10,2],[-5,-36],[-7,-52],[-3,-22],[0,-1]],[[85909,66594,0],[36,-207],[9,-47]],[[85954,66340,0],[0,-17],[-3,-11],[-8,-13],[-10,-8],[-60,-44],[-56,-42],[-8,-5],[-11,-7],[-22,-17],[-65,-47],[-9,-7],[-174,-127],[-10,-7],[-10,-6],[-56,-37],[-55,-32],[-55,-30],[-18,-8],[-39,-19],[-58,-24],[-59,-22],[-26,-9],[-17,-6],[-17,-5],[-69,-19],[-53,-13],[-63,-12],[-14,-2],[-10,-1],[-20,14],[-13,14],[-4,10],[-4,14],[-1,55],[-2,55],[0,18],[1,40],[1,75],[0,28],[0,10],[5,62],[3,22],[4,31],[9,52],[12,52],[14,52],[4,14],[10,36],[70,16],[23,5],[29,6],[74,17],[104,23],[18,4],[82,18],[3,1],[2,0],[17,3],[54,11],[107,20],[24,3],[16,6],[59,24],[14,5],[28,19],[1,1],[108,75],[21,4],[36,7],[19,4],[1,0],[0,1],[38,-4],[13,-1],[18,-2],[6,-33],[6,-36]],[[86959,66085,0],[-69,-57],[-6,-6]],[[86884,66022,0],[-15,-11],[-65,-53],[-4,-3]],[[86724,65880,0],[-11,-12],[-1,-1]],[[86712,65867,0],[-1,-2],[-10,-12]],[[86701,65853,0],[-6,-7],[-40,-46]],[[86655,65800,0],[-12,-14],[-7,-8]],[[86629,65769,0],[-1,-1],[-4,-4]],[[86171,65261,0],[-34,74]],[[86137,65335,0],[-10,25],[-9,18]],[[86118,65378,0],[0,1],[-1,1]],[[86117,65380,0],[-2,6],[-2,3],[-2,8],[-1,5]],[[86110,65402,0],[-26,92]],[[86078,65532,0],[-33,191]],[[86045,65723,0],[-1,5],[-13,71]],[[86031,65799,0],[-14,78],[-2,17],[-1,5],[-4,16]],[[86010,65915,0],[-16,97],[-7,37]],[[85987,66049,0],[-2,13],[-6,39]],[[85979,66101,0],[-1,8],[-4,35],[-13,125],[0,1],[-6,65],[-1,5]],[[85909,66594,0],[-5,30],[-6,38]],[[85898,66662,0],[2,0],[9,0],[10,-1]],[[85919,66661,0],[39,-10],[22,-5],[13,-3]],[[85993,66643,0],[21,-4],[43,-8],[39,-6]],[[86096,66625,0],[60,4],[30,2]],[[86186,66631,0],[4,0],[1,0]],[[86191,66631,0],[3,1],[6,0]],[[86208,66632,0],[39,3],[65,3]],[[86312,66638,0],[80,4],[66,4]],[[86458,66646,0],[36,2],[29,2],[1,0],[39,3]],[[86563,66653,0],[16,1],[25,1]],[[86604,66655,0],[21,17],[4,3],[11,8],[13,4],[2,0]],[[86738,66709,0],[29,9],[40,12]],[[86831,66738,0],[7,3],[8,2],[61,19]],[[87084,66815,0],[6,1],[2,0],[5,1],[64,17]],[[87161,66834,0],[3,-73],[-2,-29],[-1,-20],[-2,-15],[0,-6],[-1,-6],[-1,-12],[0,-5],[-5,-18],[-14,-60],[-1,-5],[-1,-3],[-9,-31],[-30,-107],[-15,-50],[-5,-8],[-6,-16],[0,-9],[-1,-7],[5,-33],[2,-8],[1,-6],[8,-27],[7,-10],[2,-4],[4,-4],[1,-1],[2,-1],[14,-9],[-42,-23],[-99,-52],[0,-24],[-2,-61]],[[87620,66593,0],[5,0],[5,0]],[[87630,66593,0],[125,6],[2,-53],[0,-40],[0,-52]],[[87757,66454,0],[-2,-7],[-4,-14]],[[87751,66433,0],[-2,-7],[-1,-6]],[[87748,66420,0],[-1,-10],[0,-8]],[[87747,66402,0],[0,-14],[-1,-11]],[[87746,66377,0],[-6,-46],[-7,-38],[-28,-66]],[[87481,66235,0],[-70,-6],[-43,-3]],[[87368,66226,0],[-28,-6],[-22,-5]],[[87315,66214,0],[-15,-2],[-34,-5]],[[87161,66173,0],[-5,-3],[-57,-22]],[[87099,66148,0],[-22,-7],[-19,-8],[-85,-42]],[[87212,66849,0],[15,4],[19,6]],[[87341,66888,0],[2,0],[5,2]],[[87422,66913,0],[25,7],[78,24]],[[87568,66959,0],[1,-5],[20,-94]],[[87589,66860,0],[8,-24],[8,-29],[15,-214]],[[85050,66857,0],[-9,-32],[-109,-381],[-4,-12],[-11,-39]],[[83433,66238,0],[0,4]],[[83230,66147,0],[-9,5],[16,40],[39,97],[38,97],[35,85],[5,12],[31,99],[9,46],[11,56],[5,77],[1,27],[-5,103],[-13,73]],[[83393,66964,0],[62,-12],[107,-20],[108,-22]],[[83670,66910,0],[95,-18],[12,-2]],[[83777,66890,0],[110,-14],[110,0],[109,13],[106,24],[16,5],[89,28],[105,33],[17,6],[85,31],[94,54],[85,65],[18,-16]],[[84721,67119,0],[10,-9],[75,-60],[41,-31],[28,-23],[16,-12],[89,-71],[70,-56]],[[86078,67606,0],[54,-103],[40,-61],[9,-13],[29,-45]],[[86210,67384,0],[8,-13],[14,-25],[10,-23],[10,-34]],[[86252,67289,0],[3,-18]],[[86255,67271,0],[2,-38]],[[86257,67233,0],[-1,-16]],[[86256,67217,0],[-2,-19]],[[86254,67198,0],[-8,-33]],[[86246,67165,0],[-2,-8]],[[86244,67157,0],[-19,-56]],[[86225,67101,0],[-21,-52],[-23,-51],[-20,-38],[-14,-28],[-39,-64],[-42,-61],[14,-21],[-52,-63],[-4,-3]],[[86024,66720,0],[-4,-3]],[[86020,66717,0],[-10,-3],[-11,0],[-2,1]],[[85997,66715,0],[-7,3]],[[85990,66718,0],[-7,11],[-4,5],[4,-21],[10,-70]],[[85909,66661,0],[-12,1]],[[85897,66662,0],[-24,3],[-44,7],[-57,-16]],[[85772,66656,0],[-7,-2],[-12,-9],[-1,0]],[[85612,66554,0],[-6,-3],[-5,-1]],[[85395,66497,0],[-57,-12],[-1,0]],[[84917,66393,0],[10,33],[3,12],[110,385],[10,34]],[[84721,67119,0],[43,43],[46,56],[34,52],[132,222]],[[84976,67492,0],[2,0],[29,-18],[-31,18]],[[84976,67492,0],[20,35],[23,37],[9,6],[10,3],[8,-1],[4,-4],[57,0],[-6,40],[-25,102],[-7,16],[-4,14]],[[85065,67740,0],[55,-7]],[[85120,67733,0],[84,-11],[85,-11],[89,-11]],[[85378,67700,0],[295,-36]],[[85673,67664,0],[7,-23],[66,-11],[34,-6]],[[85780,67624,0],[133,-8]],[[85913,67616,0],[165,-10]],[[85905,67160,0],[11,-59],[-13,68],[2,-9]],[[85568,67261,0],[-34,-58],[8,13],[26,45]],[[85637,67506,0],[1,0],[-241,42],[240,-42]],[[86738,66709,0],[-83,-22]],[[85990,66718,0],[6,-3],[1,0]],[[86020,66717,0],[0,1],[4,2]],[[86225,67101,0],[5,15],[14,41]],[[86246,67165,0],[2,10],[6,23]],[[86256,67217,0],[1,15],[0,1]],[[86255,67271,0],[-3,15],[0,3]],[[86210,67384,0],[99,37],[6,-9]],[[86315,67412,0],[6,-11]],[[86321,67401,0],[30,15]],[[86351,67416,0],[247,-30]],[[86598,67386,0],[2,24],[0,3],[0,8],[-1,8]],[[86599,67429,0],[-2,7]],[[86597,67436,0],[-2,3]],[[86595,67439,0],[-3,5],[-4,5],[-8,8]],[[86580,67457,0],[7,14]],[[86587,67471,0],[3,7],[10,24]],[[86600,67502,0],[15,33],[-61,43]],[[86554,67578,0],[-44,43]],[[86510,67621,0],[-38,46]],[[86472,67667,0],[-33,48]],[[86439,67715,0],[-3,4]],[[86436,67719,0],[-13,21],[-12,23],[-4,8]],[[86407,67771,0],[-10,20]],[[86397,67791,0],[-1,8],[1,7],[2,7],[8,12],[51,48],[36,51],[25,57],[12,61],[1,61],[-13,61]],[[86519,68164,0],[263,81]],[[86782,68245,0],[176,-261]],[[86958,67984,0],[81,-9],[-5,-32],[-1,-20],[3,-46],[7,-25],[9,-23],[37,-80],[110,39],[68,-149],[73,-154],[71,-152],[66,-152],[75,-169],[3,-11],[13,-42]],[[85115,68699,0],[234,6],[105,-3],[80,-2]],[[85534,68700,0],[-25,-72]],[[85509,68628,0],[-2,0],[-33,-1],[-87,-1]],[[85387,68626,0],[-7,0]],[[85380,68626,0],[-34,0],[-7,0]],[[85339,68626,0],[-1,0]],[[85338,68626,0],[12,-2],[8,-2]],[[85358,68622,0],[11,-4]],[[85369,68618,0],[10,-9],[9,-13],[12,-39],[5,-16],[1,-3],[45,-146],[0,-2],[2,-4]],[[85453,68386,0],[12,3],[4,-14],[-2,-4],[37,-115]],[[85504,68256,0],[1,-5],[42,-132],[7,-23],[43,-140]],[[85597,67956,0],[36,-118],[8,-24]],[[85641,67814,0],[-13,-4]],[[85628,67810,0],[44,-145],[0,-1],[-294,36]],[[85378,67700,0],[-89,10],[-85,11],[-84,12]],[[85120,67733,0],[-1,0],[-54,7]],[[85065,67740,0],[-1,0],[-11,4]],[[85053,67744,0],[-29,11],[-13,32],[-42,88]],[[84969,67875,0],[-5,7],[-33,56]],[[84931,67938,0],[-49,70]],[[84882,68008,0],[-70,80],[-32,34]],[[84780,68122,0],[-41,37],[-63,52],[-17,14]],[[84659,68225,0],[-26,15],[-76,45],[-38,20],[-43,22],[-40,18]],[[84436,68345,0],[-43,18]],[[84393,68363,0],[-29,11]],[[84364,68374,0],[-52,18],[-66,20]],[[84246,68412,0],[-39,9],[-49,9]],[[84158,68430,0],[-47,6],[-15,2]],[[84096,68438,0],[-45,4],[-31,1]],[[84020,68443,0],[-36,-1],[-15,0]],[[83969,68442,0],[-45,-5],[-65,-12]],[[83859,68425,0],[-69,-17],[-63,-20]],[[83727,68388,0],[-22,-8],[-44,-16]],[[83661,68364,0],[-19,-8],[-14,-3]],[[83628,68353,0],[-14,-1],[-31,2],[-31,8],[-24,14],[-11,9],[-11,12]],[[83506,68397,0],[-12,24],[-4,14],[-1,5]],[[83489,68440,0],[-4,21]],[[83485,68461,0],[1,11],[2,15]],[[83488,68487,0],[5,20],[10,23],[7,10]],[[83510,68540,0],[11,14],[47,59],[1,1]],[[83569,68614,0],[49,48],[17,15],[21,17],[65,49]],[[83721,68743,0],[20,14],[3,1],[47,28],[20,10],[1,0]],[[83812,68796,0],[71,31],[71,25]],[[83954,68852,0],[49,13],[12,1],[62,12]],[[84077,68878,0],[28,2],[49,4]],[[84154,68884,0],[54,-2],[26,-1],[52,-4]],[[84286,68877,0],[51,-7],[34,-7],[69,-18]],[[84440,68845,0],[16,-6],[152,-53]],[[84608,68786,0],[128,-40],[92,-26],[97,-18],[6,-1],[75,-3],[109,1]],[[86116,68400,0],[25,-30],[25,-33],[41,-63]],[[86207,68274,0],[31,-57],[12,-30]],[[86250,68187,0],[15,-36]],[[86265,68151,0],[72,-207],[12,-33]],[[86349,67911,0],[29,-79],[19,-41]],[[86407,67771,0],[17,-31],[11,-19],[1,-2]],[[86439,67715,0],[32,-46],[1,-2]],[[86472,67667,0],[27,-32],[11,-14]],[[86554,67578,0],[62,-43],[-7,-14],[-9,-19]],[[86587,67471,0],[-2,-2],[-5,-12]],[[86580,67457,0],[9,-8],[4,-5],[2,-5]],[[86597,67436,0],[0,-1],[2,-6]],[[86598,67386,0],[-20,3],[-227,27]],[[86321,67401,0],[-2,4],[-4,7]],[[86315,67412,0],[-5,9],[-3,-1],[-97,-36]],[[86078,67606,0],[-154,9],[-4,1],[-7,0]],[[85913,67616,0],[-10,1],[-123,7]],[[85673,67664,0],[-45,146]],[[85641,67814,0],[1,0],[-8,24],[-37,118]],[[85597,67956,0],[-42,140],[-7,23],[-42,131],[-2,6]],[[85453,68386,0],[-1,4],[-1,3],[-45,146],[0,2],[-6,17],[-11,38],[-9,13],[-11,9]],[[85358,68622,0],[-7,2],[-12,2]],[[85338,68626,0],[9,0],[33,0]],[[85387,68626,0],[88,1],[34,1]],[[85509,68628,0],[1,0],[24,73],[47,-7],[34,-7]],[[85615,68687,0],[51,-12],[41,-11]],[[85707,68664,0],[31,-11],[16,-5]],[[85754,68648,0],[30,-12],[45,-19],[56,-30],[24,-14],[52,-33],[57,-42]],[[86018,68498,0],[40,-34],[35,-32]],[[86093,68432,0],[23,-32]],[[58448,53786,0],[-13,9],[-476,307]],[[57670,53945,0],[-63,-42],[-342,-225]],[[57265,53678,0],[63,-304],[-14,-12]],[[56788,53317,0],[-137,-9],[-97,14],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1]],[[56559,53337,0],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2]],[[56562,53347,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1]],[[56564,53356,0],[0,2],[1,0],[0,1],[0,1],[0,1],[0,2],[0,2]],[[56565,53365,0],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1]],[[56566,53374,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2]],[[56566,53384,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1]],[[56566,53393,0],[0,1],[-1,2],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[56563,53412,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-6,20],[-10,20]],[[56518,53506,0],[-18,33],[10,41],[-7,38]],[[56521,53680,0],[-45,16],[-8,39]],[[56468,53735,0],[-103,3],[-55,2],[-53,1],[-47,4]],[[53159,52546,0],[-121,1],[-81,-8],[-31,-7]],[[52926,52532,0],[-151,-39],[-175,-137]],[[52035,51470,0],[12,6],[24,30],[12,27]],[[52083,51533,0],[87,80],[17,-7]],[[52260,51597,0],[34,-19],[28,-6],[20,-6]],[[52342,51566,0],[32,2],[63,-33]],[[52437,51535,0],[24,15],[19,7],[72,-26]],[[52587,51506,0],[26,-21],[14,-13]],[[52627,51472,0],[49,-23],[91,-58]],[[52801,51434,0],[52,19],[14,19]],[[52891,51499,0],[12,6],[15,23]],[[52918,51528,0],[37,27],[29,26],[31,30],[39,13]],[[53054,51624,0],[7,14],[4,15],[-4,13]],[[53073,51686,0],[4,29],[32,37]],[[53117,51781,0],[30,16],[43,37],[12,27],[57,25],[6,16],[90,6],[22,-5]],[[53409,51895,0],[29,-19],[92,-5]],[[53530,51871,0],[44,-36],[15,1]],[[53589,51836,0],[58,15],[81,-24]],[[53784,51703,0],[-9,-230],[-114,-6]],[[53661,51467,0],[-5,-14],[-76,-18]],[[53580,51435,0],[-146,-34],[-185,-104]],[[53249,51297,0],[37,-80],[37,-81],[-380,-291]],[[52943,50845,0],[-142,-70],[-45,27],[-53,-44]],[[52416,50380,0],[-50,-20],[-36,7]],[[52317,50386,0],[-54,33],[-73,19]],[[52124,50488,0],[-4,35],[19,106],[-106,39]],[[52033,50668,0],[-30,-63],[-53,-56],[-40,-9]],[[51910,50540,0],[-38,-1],[-90,35]],[[51782,50574,0],[-43,4],[-89,-15],[-2,17]],[[51648,50580,0],[-30,45],[-31,6],[-9,97],[1,35]],[[51491,50761,0],[-79,-65],[-64,-35]],[[51348,50661,0],[-337,179],[73,112],[26,244],[-57,19],[-37,104],[-51,136],[166,1568],[63,1042],[5,129]],[[51199,54194,0],[772,81],[826,143],[451,87],[81,20],[397,111],[435,170],[190,38],[440,44],[130,17],[1223,144],[50,6],[230,27],[391,45],[983,59]],[[57798,55186,0],[115,10],[18,1],[22,1],[18,1],[102,5]],[[58073,55204,0],[106,9],[-27,-70]],[[51348,50661,0],[-11,-134]],[[51337,50527,0],[-67,16],[-24,-166],[-24,-24]],[[51222,50353,0],[-12,-60]],[[51210,50293,0],[1,-26]],[[51211,50267,0],[1,-48],[-803,149]],[[50355,50376,0],[-58,-1]],[[50297,50375,0],[-183,-11]],[[46266,50877,0],[-330,457],[-1,55],[1,7],[18,82]],[[45963,51552,0],[4,34],[7,60],[6,91]],[[45980,51737,0],[4,47]],[[45984,51784,0],[11,85]],[[45995,51869,0],[-19,-4]],[[45976,51865,0],[-117,4],[-56,6]],[[45737,51878,0],[-95,1],[-65,11]],[[45577,51890,0],[-42,1],[-43,10]],[[45492,51901,0],[-107,6],[-13,22],[-43,-9]],[[45315,51920,0],[-135,-8],[-59,-1]],[[45121,51911,0],[-31,2]],[[44928,51952,0],[-41,14],[-24,-3]],[[44863,51963,0],[-12,-5],[-106,2],[-16,-5],[-112,11],[32,188],[11,-2],[21,66],[105,128],[50,78],[64,85],[81,88],[65,53],[11,53],[97,162],[-9,5],[29,40],[22,47],[74,80],[6,67],[21,70],[65,321],[48,92],[3,108],[431,129],[-308,405],[-11,47],[-60,90],[-40,79],[102,18],[85,59],[3,24],[28,16],[8,-7],[111,61],[45,27],[619,-46],[432,-68],[45,-7],[121,-18],[1064,-166],[902,-14],[514,-78],[138,27],[543,-65],[699,-14],[315,0]],[[89042,60913,0],[77,-59]],[[89119,60854,0],[39,-31]],[[89158,60823,0],[40,-40],[67,-73]],[[89265,60710,0],[78,-94],[12,-14],[15,-17],[73,-78],[48,-98]],[[87191,59773,0],[-26,-14],[-159,-89]],[[87006,59670,0],[-69,6],[-294,39],[-107,21],[-21,4],[-242,61],[-75,19],[-68,11]],[[86130,59831,0],[-72,29],[-110,69],[-56,40],[-47,36],[-37,34],[-33,37],[-30,34],[-29,38],[-34,52],[-43,82]],[[85930,60596,0],[100,29]],[[87282,60850,0],[33,2],[38,4]],[[87353,60856,0],[76,10],[130,18]],[[87559,60884,0],[77,11],[37,5],[402,58]],[[88294,60990,0],[147,19]],[[88441,61009,0],[13,2],[46,5],[49,-1],[67,1],[92,-1],[71,-8],[47,-6],[106,-27],[46,-23],[40,-21],[24,-17]],[[89483,62566,0],[52,-83],[22,0],[32,-18],[25,-14],[19,-17],[61,-41]],[[89694,62393,0],[3,-92],[2,-76]],[[89699,62225,0],[2,-62],[-37,3],[14,-100],[1,-117],[21,1],[-1,-25],[0,-15],[3,-21],[1,-25],[3,-34],[0,-82],[2,-19],[2,-51],[4,-42]],[[89714,61636,0],[0,-16],[2,-61]],[[89716,61559,0],[2,-41]],[[89718,61518,0],[-10,1],[-57,6]],[[89651,61525,0],[5,-97],[58,-2]],[[89714,61426,0],[12,-4],[2,0],[18,-6]],[[89746,61416,0],[14,-6],[17,-9]],[[89777,61401,0],[3,-2],[5,-3],[9,-7],[12,-9],[12,-10],[9,-11],[9,-10],[10,-14]],[[89846,61335,0],[12,-19]],[[89858,61316,0],[2,-5],[9,-19],[11,-26],[9,-25],[14,-35],[37,-80],[10,-15],[12,-16],[13,-15],[10,-13],[14,-15],[20,-17],[21,-12],[23,-12],[23,-9],[37,-17],[35,-7],[-5,-27],[-18,-88],[-7,-38],[-25,-1],[-48,1],[-27,-1],[-25,-3],[5,-87],[-4,-101]],[[89265,60710,0],[-38,42],[-69,71]],[[89119,60854,0],[-11,9],[-37,29],[-29,21]],[[88441,61009,0],[-95,-12],[-52,-7]],[[88275,61095,0],[-19,109]],[[88207,61239,0],[-676,95]],[[87503,61638,0],[4,43]],[[87685,61751,0],[42,-9]],[[87773,61811,0],[162,371]],[[91328,62090,0],[14,-30],[22,-46]],[[91364,62014,0],[18,-32],[44,-80],[8,-14]],[[91434,61888,0],[40,-66],[48,-80],[14,-22]],[[91536,61720,0],[33,-56],[44,-72]],[[91613,61592,0],[3,-8],[42,-83]],[[91658,61501,0],[4,-10],[27,-73]],[[91689,61418,0],[8,-27],[8,-33]],[[91765,61230,0],[-94,19],[-44,9]],[[91814,61085,0],[3,-18],[6,-26]],[[91515,60632,0],[-76,-58]],[[91203,60416,0],[-28,-11],[-23,-9]],[[90997,60356,0],[-9,0],[-47,-5]],[[90841,60347,0],[-44,1],[-15,1]],[[90641,60372,0],[-23,6],[-38,9]],[[90641,60597,0],[-43,15],[-25,7]],[[90573,60619,0],[-25,8],[-21,6]],[[90527,60633,0],[-16,5],[-16,6]],[[90369,60684,0],[-15,4],[-12,4]],[[90342,60692,0],[-37,11],[-28,8]],[[90277,60711,0],[-20,-94]],[[89858,61316,0],[-6,10],[-6,9]],[[89777,61401,0],[-31,15]],[[89746,61416,0],[-32,10]],[[89651,61525,0],[67,-7]],[[89716,61559,0],[-2,77]],[[89699,62225,0],[-5,168]],[[89586,62650,0],[-29,16],[-17,9]],[[89540,62675,0],[14,59],[11,47]],[[89565,62781,0],[156,129],[6,41],[55,39]],[[89870,63107,0],[28,38],[9,29]],[[89907,63174,0],[3,13],[105,65],[163,60]],[[77077,23085,0],[2,0],[5,0]],[[77084,23085,0],[-3,-47],[-1,-11]],[[77080,23027,0],[-1,-66],[-6,-85]],[[77070,22825,0],[-3,-25],[-3,-56]],[[77064,22744,0],[-4,-55],[-3,-35],[-24,-229]],[[77033,22425,0],[-23,-255],[-20,-272],[-22,-207]],[[76968,21691,0],[0,-1],[-5,-68],[9,-87]],[[76982,21406,0],[23,-130],[-62,1],[-19,0],[-9,-12]],[[76915,21265,0],[-3,-3],[-7,-6]],[[76905,21256,0],[-10,-5],[0,-1]],[[76895,21250,0],[-11,-4],[-17,-3]],[[76867,21243,0],[-69,-3],[-38,-2]],[[76760,21238,0],[-40,-5],[-40,-8],[-50,-13],[-5,-2],[-16,-5],[-28,-10],[-61,-26]],[[76520,21169,0],[-52,-25],[-4,-2]],[[76464,21142,0],[-129,-61],[-12,-6],[-37,-16]],[[76286,21059,0],[-47,-17],[-11,-3],[-9,-2],[-20,-6]],[[76199,21031,0],[-47,-8],[-13,-2]],[[76139,21021,0],[-30,-3],[-22,0],[-25,-1],[-12,1],[-10,0]],[[76040,21018,0],[-29,3]],[[76011,21021,0],[-17,1],[-2,0]],[[75992,21022,0],[-56,12],[-70,19],[-143,41]],[[75723,21094,0],[-130,34],[-12,3]],[[75581,21131,0],[-33,9],[-120,35],[-151,42]],[[75277,21217,0],[-147,43]],[[75130,21260,0],[40,90],[11,23]],[[75181,21373,0],[4,11]],[[75185,21385,0],[1,3]],[[75186,21388,0],[1,2],[1,1]],[[75188,21391,0],[1,2]],[[75189,21393,0],[0,2]],[[75189,21396,0],[8,27]],[[75197,21423,0],[13,46],[3,8]],[[75213,21477,0],[22,151],[10,61]],[[75306,22230,0],[68,840]],[[75374,23070,0],[18,-2],[12,-1],[7,91]],[[75412,23168,0],[7,78],[1,2],[4,13]],[[75424,23261,0],[3,6],[1,1]],[[75445,23286,0],[8,5],[2,1],[2,0],[8,3],[4,1],[5,2],[13,0]],[[75641,23285,0],[40,-3],[156,-16]],[[75837,23266,0],[151,-17],[88,-9]],[[76076,23240,0],[89,-13],[5,0],[3,0],[18,-1],[17,-2],[43,-3]],[[76350,23211,0],[187,-19],[7,-1]],[[76544,23191,0],[197,-23],[172,-20],[105,-11]],[[77018,23137,0],[16,-3],[4,-3],[4,-2]],[[77051,23120,0],[3,-4],[4,-6]],[[77058,23110,0],[4,-14]],[[77161,20939,0],[-10,-5],[10,5]],[[77545,20313,0],[54,-83]],[[77843,19864,0],[-104,-108]],[[76619,19059,0],[-4,-3],[-13,17]],[[76602,19073,0],[-276,348]],[[76206,20480,0],[41,38]],[[76247,20518,0],[26,20],[11,9]],[[76380,20733,0],[-140,216]],[[76201,20939,0],[-59,-10]],[[75586,20539,0],[-124,38],[-44,14]],[[75090,21171,0],[40,89]],[[75277,21217,0],[151,-43],[153,-43]],[[75581,21131,0],[142,-37]],[[75992,21022,0],[19,-1]],[[76040,21018,0],[23,-1],[46,0],[30,4]],[[76139,21021,0],[60,10]],[[76199,21031,0],[29,7],[58,21]],[[76286,21059,0],[49,21],[129,62]],[[76520,21169,0],[61,25],[44,15],[5,2],[50,13],[40,8],[40,6]],[[76760,21238,0],[107,5]],[[76867,21243,0],[18,2],[10,5]],[[76895,21250,0],[10,6]],[[76905,21256,0],[10,9]],[[76915,21265,0],[9,11],[81,-1]],[[56110,61241,0],[8,-75],[8,-71]],[[56126,61095,0],[5,-38],[6,-50]],[[56137,61007,0],[11,-49],[12,-53]],[[56160,60905,0],[38,-105],[35,-95]],[[56233,60705,0],[18,-33],[59,-107]],[[56310,60565,0],[26,-38]],[[56336,60527,0],[2,-3],[19,-30]],[[56357,60494,0],[51,-67],[7,-10]],[[56415,60417,0],[20,-20],[31,-33]],[[56466,60364,0],[47,-51],[95,-85]],[[56608,60228,0],[47,-36],[39,-30]],[[56694,60162,0],[62,-39],[40,-26]],[[56796,60097,0],[117,-59]],[[56913,60038,0],[41,-17],[55,-23]],[[57009,59998,0],[136,-44],[98,-23],[48,-16]],[[57291,59915,0],[-4,-82],[0,-31],[-1,-81],[1,-16],[1,-264],[-75,11],[-29,11],[-45,17],[-22,7],[-26,7],[-25,3],[-26,-3],[-24,-8],[-30,-13],[-28,-22],[-30,-35],[-5,-10],[-27,-5],[-20,9],[-23,-49]],[[56853,59361,0],[-7,3],[-36,18],[-46,21],[-114,57],[-34,18],[-98,46],[-1,-1],[-12,-13],[-6,-5],[-6,-3],[-7,-3],[-4,-2],[-5,-1],[-3,0],[-10,-1],[-9,0],[-7,1],[-7,1],[-17,7],[-28,12],[-25,-43],[-25,-47],[-11,-21],[-6,-12]],[[56329,59393,0],[-1,-3],[-3,-6]],[[56325,59384,0],[-16,-31],[-19,-35],[-15,-30]],[[56275,59288,0],[-51,24],[-14,6],[-49,24],[-14,7],[-52,25],[-17,8],[-29,16],[-14,8],[-17,8],[-18,11],[-22,12],[-4,3],[-11,5],[-6,4],[-10,5],[-34,20],[-9,6],[-18,11],[-23,15],[-19,12],[-9,6],[-8,5],[-18,11],[-23,18],[-42,30],[-15,12],[-42,33],[-16,12],[-5,4],[-5,4],[-7,6],[-29,24],[-17,15],[-17,14],[-25,23],[-12,11],[-16,15],[-21,20],[-14,14],[-15,15],[-17,16],[-21,21],[-12,13],[-24,24],[-3,4],[-14,15],[-17,20],[-5,5],[-14,20],[-9,10],[-1,0],[-28,32],[-6,7],[-23,31],[-18,19],[-9,16],[-17,21],[-12,17],[-15,21],[-11,19],[-10,15],[-12,16],[-12,20],[-14,22],[-25,43],[-10,15],[-23,42],[-11,19],[-20,42],[-10,19],[-17,38],[-5,11],[-9,16],[-20,46],[-13,28],[-16,40],[-10,30],[-10,26],[-2,6],[-5,17],[-9,30],[-5,16],[-6,18],[-7,25],[-6,19],[-1,3],[-3,15],[-11,34],[-3,15],[-1,5],[-4,10],[-7,31],[-4,19],[-1,19],[-9,46],[-3,13],[-3,12],[-8,63],[-1,9],[-6,64],[-1,9],[-6,71],[-2,75]],[[54851,61273,0],[124,-4],[44,-2],[171,-5],[2,13],[1,14],[1,24],[5,24],[5,24],[6,27],[19,54],[18,54],[13,33],[8,32],[13,29],[18,53],[8,35],[6,27],[2,30],[3,32],[-2,38],[-2,28],[-6,38],[0,4],[-4,21],[-40,156],[0,1],[-27,105],[-9,33],[68,16],[-8,29],[0,3],[-4,18],[1,18],[4,19],[7,20],[11,21],[42,44],[21,20],[13,7],[16,1],[12,-1],[11,-3],[9,-9],[8,-6],[28,-52],[25,-42],[74,-138],[24,-38],[49,-88],[20,-35],[25,-38],[26,-36],[23,-29],[61,-60],[69,-67],[63,-56],[48,-36],[62,-44],[53,-39],[26,-39]],[[56115,61551,0],[-24,-137],[19,-173]],[[56853,59361,0],[84,-48],[26,-14],[104,-62],[84,-51],[41,-27],[23,-14],[44,-31],[63,-48],[37,-29],[10,-8],[73,-65],[6,-6],[85,-82],[8,-7],[54,-59],[40,-45],[3,-4],[85,-99],[40,-46],[9,-11],[72,-80],[1,-2],[89,-106],[47,-47],[32,-27],[20,-13]],[[58033,58330,0],[-66,-90],[-117,-158]],[[57850,58082,0],[-102,82],[-54,47],[-118,137],[-4,5],[-110,124],[-5,6],[-89,106],[-17,18],[-7,7],[-38,43],[-24,18],[-27,30]],[[57255,58705,0],[0,1],[-34,33]],[[57221,58739,0],[-32,25],[-24,24]],[[57165,58788,0],[-49,41],[-48,36],[-29,21],[-24,17],[-33,21],[-16,12],[-3,2],[-42,21],[-11,8],[-7,4],[-34,20],[-15,10],[-34,19],[-20,9],[-40,21],[-26,13],[-5,2],[-59,28],[-98,44],[-59,31],[-55,28],[-59,28],[-64,29],[-60,35]],[[56325,59384,0],[4,9]],[[60175,59112,0],[61,-207],[19,-10],[25,-86]],[[60280,58809,0],[9,-27],[15,-44],[9,-25],[5,-22],[0,-22],[-4,-27],[-5,-22],[-16,-23],[-18,-23],[-23,-16],[-45,-41],[-32,-39],[-27,-40],[-20,-46],[-23,-49],[-24,-52],[-23,-52],[-21,-47],[-25,-53],[-24,-65],[-15,-40],[-31,-112],[-3,-24]],[[59939,57898,0],[-10,-65],[0,-2]],[[59929,57831,0],[-7,-81],[11,-65],[7,-39],[26,-101],[31,-78],[57,-110],[52,-76]],[[60106,57281,0],[1,-1],[34,-36]],[[60141,57244,0],[31,-34],[116,-111],[43,-39],[61,-56],[22,-23],[17,-28],[17,-26],[11,-31],[5,-30],[-1,-20],[-6,-24],[-18,-13],[-50,-118]],[[60389,56691,0],[-177,69],[-134,36]],[[60078,56796,0],[-225,71]],[[59853,56867,0],[-164,52],[-242,67]],[[59447,56986,0],[-207,50],[-208,134],[-63,42]],[[58969,57212,0],[-54,69]],[[58915,57281,0],[-10,33],[-10,42],[-5,56]],[[58890,57412,0],[7,81],[10,69],[27,102]],[[58934,57664,0],[42,139],[16,33],[23,39]],[[59015,57875,0],[2,5]],[[59017,57880,0],[2,5],[1,6]],[[59020,57891,0],[1,5]],[[59021,57896,0],[0,5]],[[59021,57901,0],[0,6],[0,5]],[[59021,57912,0],[-1,4]],[[59020,57916,0],[139,-124]],[[59159,57792,0],[21,-19],[73,133]],[[59253,57906,0],[3,6],[23,41]],[[59279,57953,0],[11,3],[18,33],[13,5],[93,159],[9,3],[32,13],[168,192]],[[59623,58361,0],[125,221]],[[59748,58582,0],[8,32],[11,44],[7,35],[6,33],[11,95],[-1,47],[-15,104],[-11,41],[-16,51],[-9,22]],[[59739,59086,0],[108,27],[131,33],[36,13],[95,23]],[[60109,59182,0],[1,-1],[20,-77],[45,8]],[[60752,56534,0],[60,-16],[17,62],[74,-34],[17,-8]],[[60920,56538,0],[22,-10],[194,-105]],[[61136,56423,0],[93,-48],[66,-34],[37,-17],[41,-21],[26,-10],[55,-22]],[[61454,56271,0],[70,-19],[5,-2],[109,-23],[66,-88]],[[61704,56139,0],[-34,-118]],[[61670,56021,0],[-11,-37],[-9,-31],[-7,-28],[-1,-4]],[[61642,55921,0],[-7,-26],[-39,-139],[-2,-9],[-34,-50],[-38,-20]],[[61522,55677,0],[-48,-26]],[[61474,55651,0],[-20,-9],[-15,-7],[-13,-46],[-5,-16]],[[61421,55573,0],[-10,-41]],[[61411,55532,0],[-1,0],[-7,3]],[[61403,55535,0],[-2,-1],[-7,-5]],[[61394,55529,0],[-13,-35]],[[61381,55494,0],[-3,-15],[0,-3]],[[61378,55476,0],[-9,-27],[-16,-56]],[[61353,55393,0],[-6,-21]],[[61347,55372,0],[-25,-84],[-5,-24]],[[61317,55264,0],[-22,-77],[-2,-14]],[[61293,55173,0],[0,-34],[0,-3]],[[61293,55136,0],[-3,-19]],[[61290,55117,0],[-2,-2],[-3,-3]],[[61285,55112,0],[3,-208]],[[61288,54904,0],[-16,6]],[[61272,54910,0],[-68,28],[-37,15],[-24,10]],[[61143,54963,0],[-5,2]],[[61138,54965,0],[-27,13],[-13,6]],[[61098,54984,0],[-29,16],[-15,-32]],[[61054,54968,0],[-79,37],[-42,19],[11,20],[4,10],[-29,13],[-7,4],[-12,6]],[[60900,55077,0],[-1,0],[-50,20]],[[60849,55097,0],[-30,15],[-18,-31],[-184,83],[-331,151],[12,22],[6,12],[-20,8],[-19,8],[-18,8]],[[60247,55373,0],[-34,18],[-5,2]],[[60208,55393,0],[-1,1],[-35,13],[-3,-6],[-14,-26],[-87,41],[-64,30],[2,-21],[1,-18]],[[60007,55407,0],[-226,98],[-164,88],[-35,18],[-95,51],[-57,39],[-36,26],[-133,99],[-91,66],[-34,27],[-69,55],[-40,43],[-30,35],[-22,33],[-9,14],[-26,49],[-13,25],[-13,32],[-13,30],[-4,29],[-7,35],[-8,50],[-18,84],[-6,32],[-21,94],[-14,59],[-8,34],[-44,99],[-47,65],[-31,43],[-121,144]],[[58572,57003,0],[86,49],[211,117],[100,43]],[[58969,57212,0],[63,-41],[208,-134],[207,-51]],[[59447,56986,0],[242,-66],[164,-53]],[[60078,56796,0],[133,-36],[179,-69],[22,-9]],[[60412,56682,0],[217,-93],[123,-55]],[[60858,58608,0],[-206,80],[-62,32],[-40,32],[-34,37],[-10,15],[-13,29],[-12,31]],[[60481,58864,0],[-13,32],[-6,22],[-14,102],[-8,29],[-13,56],[-27,92],[-4,10],[-3,13],[-37,-10],[-86,267]],[[60270,59477,0],[44,13],[-17,53],[5,11],[-17,53]],[[60285,59607,0],[84,25],[2,0]],[[60371,59632,0],[134,38]],[[60505,59670,0],[245,-269]],[[60750,59401,0],[-14,-3],[7,-8],[-146,-44],[28,-73],[4,-32],[234,-300],[253,63],[14,-15],[-30,-7],[570,-544],[-13,-15],[6,-8],[-220,-214],[-178,107],[-260,210],[-49,37],[-52,29],[-46,24]],[[62895,61865,0],[160,-16],[75,-2],[44,2],[217,7],[15,0],[15,0],[15,-1],[15,-1],[15,-1],[14,-2],[15,-1],[15,-3],[15,-2],[14,-3],[46,-11],[45,-10],[10,-2],[10,-3],[10,-3],[9,-4],[10,-4],[9,-4],[10,-5],[8,-4],[9,-6],[9,-5],[8,-6],[8,-6],[8,-7],[10,-9],[11,-9],[11,-8],[11,-9],[12,-7],[12,-8],[12,-8],[50,-62]],[[63877,61642,0],[-5,-6],[-25,-35]],[[63577,61443,0],[-239,-112],[-12,-5],[-45,-21],[-24,-12]],[[63652,61038,0],[1,-1],[183,-31],[4,-1]],[[63971,60980,0],[-7,-133],[-10,-693],[17,-1],[243,-23]],[[64380,60091,0],[-37,-339],[-164,-63],[-11,-4],[-412,-191],[-30,-13],[-389,-165]],[[63337,59316,0],[-118,113],[-122,-6],[-10,1],[-137,139]],[[62950,59563,0],[11,10]],[[62961,59573,0],[-39,39]],[[62922,59612,0],[-35,34],[-13,-9]],[[62874,59637,0],[-14,-14],[-21,-21]],[[62839,59602,0],[-16,18]],[[62823,59620,0],[-20,-1],[-25,-29]],[[62778,59590,0],[-11,2],[-42,41]],[[62725,59633,0],[12,9],[1,2]],[[62738,59644,0],[-110,106]],[[62628,59750,0],[-10,14],[-16,21]],[[62602,59785,0],[-13,-2],[-34,31],[-18,-1],[-32,33],[-17,1]],[[62488,59847,0],[-25,23],[-9,7]],[[62454,59877,0],[-62,56],[-37,37],[-28,28],[-14,4],[-11,7],[-109,106],[-101,94],[-8,0]],[[62084,60209,0],[-59,58],[-21,21]],[[62004,60288,0],[8,6]],[[62012,60294,0],[-10,7]],[[62002,60301,0],[-153,149],[139,150]],[[61988,60600,0],[-78,89],[-18,14]],[[61892,60703,0],[-11,2],[-6,1]],[[61875,60706,0],[-3,0],[-4,1],[-3,2],[-3,1]],[[61862,60710,0],[-5,3],[-3,4]],[[61854,60717,0],[-2,3]],[[61852,60720,0],[-2,4],[-2,4],[0,4]],[[61848,60732,0],[-1,3],[1,3]],[[61848,60738,0],[1,10],[3,9],[4,9]],[[61856,60766,0],[-59,36],[-42,24],[-66,56],[-5,14],[-76,62]],[[61608,60958,0],[-91,77]],[[61517,61035,0],[-32,47],[23,70],[17,179],[4,34],[1,19],[8,89],[5,4],[2,76],[4,40],[82,89],[6,7],[-23,15],[31,44],[8,36],[9,19],[20,10],[41,13],[43,9],[18,0],[11,0],[10,0],[15,0],[6,45],[1,7],[42,-5],[40,-12],[18,-10],[87,94],[-7,4],[-134,58],[4,11],[-140,63],[-21,34],[-4,9],[-2,9],[-3,8],[-1,9],[-2,10],[-1,9],[-1,9],[0,9],[0,9],[1,10],[1,8],[4,12]],[[61954,62285,0],[37,-2],[31,-6],[26,-7],[81,-34],[46,-23],[56,-31],[64,-42],[112,-87],[173,-103],[66,-28],[33,-15],[46,-13]],[[62002,60301,0],[9,-6],[1,-1]],[[62012,60294,0],[-7,-6],[-1,0]],[[62004,60288,0],[80,-79]],[[62454,59877,0],[34,-30]],[[62602,59785,0],[26,-35]],[[62738,59644,0],[-13,-11]],[[62778,59590,0],[26,29],[19,1]],[[62839,59602,0],[35,35]],[[62922,59612,0],[39,-38],[0,-1]],[[62961,59573,0],[-10,-10],[-1,0]],[[63337,59316,0],[-82,-37],[-25,-12]],[[63230,59267,0],[-100,-43]],[[63130,59224,0],[-111,-50],[-21,-9]],[[62998,59165,0],[-12,-4],[-39,-15]],[[62947,59146,0],[-10,-6],[-43,-20]],[[62894,59120,0],[-31,-15],[-20,-11]],[[62843,59094,0],[-32,-15],[-79,-38]],[[62732,59041,0],[-74,-45],[-10,-6]],[[62648,58990,0],[-3,-3],[-24,-18]],[[62621,58969,0],[-45,-34],[-4,-3]],[[62572,58932,0],[-4,-4],[-91,-86]],[[62477,58842,0],[-102,-118],[-39,-44]],[[62336,58680,0],[-125,-155]],[[62211,58525,0],[-2,-4],[-9,-14]],[[62200,58507,0],[-62,-61],[-83,-85]],[[62055,58361,0],[-46,-38],[-42,-35]],[[61967,58288,0],[-275,268],[-159,155],[-228,222],[-133,129],[-177,179],[8,8],[-119,128],[19,14],[3,48]],[[60906,59439,0],[-86,97],[-29,33]],[[60791,59569,0],[-72,89],[-9,32],[-16,29],[-22,15],[37,136],[45,43],[-26,20],[-22,23],[-18,29],[-12,31],[-6,31],[-2,29],[26,250]],[[60694,60326,0],[10,37]],[[60704,60363,0],[13,15],[16,15],[6,5]],[[60739,60398,0],[48,44]],[[60787,60442,0],[28,28],[13,-12],[26,-23]],[[60854,60435,0],[17,-21],[2,3],[11,15]],[[60884,60432,0],[24,26],[67,74]],[[60975,60532,0],[194,212],[-16,11],[-3,2]],[[61150,60757,0],[205,224]],[[61355,60981,0],[10,3],[139,32]],[[61504,61016,0],[12,17],[1,1],[91,-76]],[[61856,60766,0],[-2,-6],[-3,-5],[-1,-6],[-2,-5],[0,-6]],[[61848,60732,0],[0,-3],[1,-3],[0,-1],[1,-3],[2,-2]],[[61854,60717,0],[2,-2],[3,-3],[3,-2]],[[61875,60706,0],[17,-3]],[[61988,60600,0],[-138,-150],[152,-149]],[[64591,58216,0],[-105,60],[-32,18]],[[64454,58294,0],[-87,49],[-27,17],[-94,51],[-3,2]],[[64243,58413,0],[-164,95],[-7,3]],[[64072,58511,0],[-263,154],[-174,101],[-24,14],[-67,41]],[[63544,58821,0],[-131,78],[-34,20]],[[63379,58919,0],[-52,37],[-68,57],[-9,18],[-6,15],[-4,17],[0,12],[0,3],[1,7],[1,7]],[[63242,59092,0],[1,4],[2,4]],[[63245,59100,0],[5,11],[1,2]],[[63251,59113,0],[10,16],[6,7],[10,10]],[[63277,59146,0],[5,4],[6,4]],[[63288,59154,0],[11,6],[-69,107]],[[63230,59267,0],[107,49]],[[65063,60179,0],[353,-69],[191,-37]],[[65828,60047,0],[63,-28],[70,-34],[84,-48],[63,-48],[43,-37],[48,-41],[68,-71],[34,-42],[48,-70],[21,-33],[29,-57],[15,-37],[22,-54],[49,-145],[37,-121],[58,-157],[28,-76]],[[66608,58948,0],[-131,-141],[-91,-102]],[[66386,58705,0],[-83,-87],[-60,-67],[-67,-73],[-53,-51],[-82,-68],[-67,-50],[-88,-51],[-126,-72],[-57,-19],[-64,-23],[-34,-11],[-100,-25],[-83,-13],[-90,-12],[-102,-5],[-111,3],[-123,10],[-189,47],[-82,28],[-51,17],[-83,33]],[[66502,57891,0],[-178,-187],[-109,-116],[-69,-70],[-66,-54],[-53,-50],[-293,-231],[-450,-348],[-102,-80],[-66,-50],[-84,-54],[-88,-42],[-77,-31],[-94,-23],[-75,-4],[-35,-1],[-47,0],[-28,3],[-33,4],[-30,5],[-38,10],[-42,12],[-43,15],[-34,14],[-64,33],[-45,26],[-50,31],[-61,44],[-81,66],[-147,111],[-97,78],[-75,58],[-94,68],[-85,55],[-28,15]],[[63541,57198,0],[72,91]],[[63613,57289,0],[68,217]],[[63681,57506,0],[40,35],[59,67],[28,20],[21,15],[9,-10]],[[63838,57633,0],[33,20]],[[63871,57653,0],[-10,13],[-53,61],[-16,19],[-11,12],[15,-4],[19,-19],[41,-5],[31,-3],[23,-14],[31,-19],[19,-9],[33,-3],[26,5],[2,10],[62,3],[14,-2],[5,7],[1,180]],[[64103,57885,0],[-1,16]],[[64102,57901,0],[-2,26],[-96,160],[5,34]],[[64009,58121,0],[25,-1],[1,0]],[[64035,58120,0],[108,-3]],[[64143,58117,0],[-1,88]],[[64142,58205,0],[-9,23],[12,11],[1,34],[33,42],[64,98]],[[64454,58294,0],[137,-78]],[[66386,58705,0],[90,101],[132,142]],[[66608,58948,0],[35,-103],[25,-71],[26,-84],[13,-46]],[[64142,58205,0],[0,-12],[1,-39],[0,-37]],[[64035,58120,0],[-26,1]],[[64102,57901,0],[0,-3],[1,-7],[0,-6]],[[63871,57653,0],[-8,-5],[-25,-15]],[[63681,57506,0],[-157,148],[3,15],[10,10],[-25,16],[-74,67],[-12,14],[-84,58],[-16,10],[-87,53],[-15,7],[-90,46],[-21,10],[40,69],[-58,30],[-4,-6],[-88,57],[-5,9],[-109,38],[-105,9],[-29,4],[21,171],[-35,0]],[[62741,58341,0],[-113,-38],[-43,-15]],[[62585,58288,0],[-15,-10],[-30,-18]],[[62540,58260,0],[-23,-14],[-6,-4],[-115,-72]],[[62396,58170,0],[-103,-64],[-33,-19],[-39,-13],[-32,-7],[-36,-2],[-24,5],[-15,4],[-19,6],[-26,14],[-32,20],[-43,15],[-23,-12],[-15,-4],[-17,-1]],[[61939,58112,0],[28,176]],[[61967,58288,0],[88,73]],[[62055,58361,0],[145,146]],[[62200,58507,0],[11,18]],[[62336,58680,0],[141,162]],[[62477,58842,0],[95,90]],[[62572,58932,0],[49,37]],[[62621,58969,0],[27,21]],[[62648,58990,0],[84,51]],[[62732,59041,0],[111,53]],[[62843,59094,0],[51,26]],[[62894,59120,0],[53,26]],[[62947,59146,0],[51,19]],[[62998,59165,0],[132,59]],[[63288,59154,0],[-11,-8]],[[63251,59113,0],[-6,-13]],[[63245,59100,0],[-3,-8]],[[63379,58919,0],[165,-98]],[[64072,58511,0],[171,-98]],[[63194,56789,0],[-12,-189]],[[63182,56600,0],[-1,-7],[-1,-3],[0,-13]],[[63180,56577,0],[0,-3],[5,-17]],[[63185,56557,0],[1,-9],[1,-2]],[[63187,56546,0],[3,-14],[1,-1],[8,-23],[10,-21],[13,-25],[8,-15],[10,-15],[16,-27],[3,-3],[113,-152]],[[63372,56250,0],[30,-39]],[[63402,56211,0],[19,-28],[20,-27]],[[63441,56156,0],[15,-22],[34,-52]],[[63490,56082,0],[3,-8]],[[63493,56074,0],[1,-1],[31,-61]],[[63525,56012,0],[10,-23],[17,-37],[6,-18],[2,-3]],[[63560,55931,0],[1,-3],[3,-7]],[[63564,55921,0],[9,-25],[5,-17]],[[63578,55879,0],[19,-77],[11,-49]],[[63608,55753,0],[2,-14],[1,-13]],[[63611,55726,0],[7,-78],[3,-36],[0,-18],[0,-23],[1,-6],[1,-3]],[[63623,55562,0],[1,-2],[1,-4],[2,-3],[2,-3],[4,-4],[1,-2]],[[63634,55544,0],[-89,-110],[-22,-81],[-10,-27],[-18,-53],[-12,-23],[-28,-61],[-13,-21],[-28,-45],[-39,-53],[-14,-19],[-25,-30],[-27,-30],[-84,-75],[-54,-48],[-140,-109]],[[63031,54759,0],[-50,60]],[[62981,54819,0],[-80,-81],[0,-2]],[[62901,54736,0],[-40,-24],[-9,-5],[-5,-3],[-63,-38],[-32,-20]],[[62752,54646,0],[-35,-20],[-12,-7],[-53,-30]],[[62652,54589,0],[-45,-23],[-22,-11],[-8,-4],[-21,-10]],[[62556,54541,0],[-57,-27],[-41,-18]],[[62458,54496,0],[-80,-32],[-21,-9]],[[62357,54455,0],[-88,-11],[-21,-3]],[[62248,54441,0],[-2,0],[-46,12]],[[62200,54453,0],[-67,31]],[[62133,54484,0],[-1,2],[-2,2]],[[62130,54488,0],[-34,-1],[-76,70],[-16,25],[-2,27]],[[62002,54609,0],[0,1],[4,11]],[[62006,54621,0],[4,8]],[[62010,54629,0],[2,3],[3,4]],[[62015,54636,0],[11,12],[13,7]],[[62039,54655,0],[4,77],[0,8]],[[62043,54740,0],[-46,14],[-5,2]],[[61992,54756,0],[-77,2],[-99,4]],[[61816,54762,0],[-29,-4],[-24,-3],[-86,3],[-15,3],[-26,4],[-61,14],[-43,15],[-16,5],[-27,10],[-100,49],[-99,45],[-2,1]],[[61288,54904,0],[-1,63],[-2,145]],[[61285,55112,0],[5,5]],[[61293,55136,0],[0,26],[0,11]],[[61293,55173,0],[0,3],[2,10],[10,34],[12,44]],[[61317,55264,0],[6,24],[24,84]],[[61347,55372,0],[4,16],[2,5]],[[61353,55393,0],[25,83]],[[61378,55476,0],[1,9],[2,9]],[[61394,55529,0],[9,6]],[[61403,55535,0],[8,-3]],[[61421,55573,0],[19,61],[29,15],[5,2]],[[61522,55677,0],[39,20],[7,11],[26,38],[31,114],[11,35],[6,26]],[[61642,55921,0],[8,31],[20,69]],[[61704,56139,0],[-66,87],[-108,24],[-10,3],[-66,18]],[[61454,56271,0],[-75,31],[-5,1],[-8,4],[-71,33],[-159,83]],[[61136,56423,0],[-27,15],[-167,89],[-21,9],[-1,2]],[[60920,56538,0],[-91,41]],[[60829,56579,0],[20,6]],[[60849,56585,0],[18,10]],[[60867,56595,0],[30,45]],[[60897,56640,0],[42,25]],[[60939,56665,0],[34,8]],[[60973,56673,0],[11,0],[-6,2],[-3,2],[-5,3],[-4,5],[-1,6],[0,5]],[[60965,56696,0],[52,74]],[[61017,56770,0],[34,55],[18,32],[67,96],[48,67],[20,28]],[[61204,57048,0],[-40,28]],[[61164,57076,0],[42,61]],[[61206,57137,0],[62,84]],[[61268,57221,0],[151,-92],[131,-63]],[[61550,57066,0],[74,-28],[62,-24]],[[61686,57014,0],[92,-25],[33,-9]],[[61811,56980,0],[137,-25]],[[61948,56955,0],[50,-9],[85,-16]],[[62083,56930,0],[141,-17]],[[62224,56913,0],[163,-17],[62,-7]],[[62449,56889,0],[215,-22],[182,-16],[162,-19]],[[63008,56832,0],[61,-12],[29,-6]],[[63098,56814,0],[96,-25]],[[58296,58269,0],[51,-2],[8,0],[38,0]],[[58393,58267,0],[27,0]],[[58420,58267,0],[18,0],[34,-1]],[[58472,58266,0],[27,-2],[20,-2]],[[58519,58262,0],[12,-1]],[[58531,58261,0],[5,0],[7,-2]],[[58543,58259,0],[10,-1],[1,0],[11,-3],[12,-2]],[[58577,58253,0],[12,-3],[11,-3]],[[58600,58247,0],[11,-3],[7,-2],[5,-2],[11,-4],[10,-5],[1,0]],[[58645,58231,0],[16,-7],[17,-8]],[[58678,58216,0],[7,-3],[9,-4],[16,-8],[16,-9]],[[58726,58192,0],[16,-9]],[[58742,58183,0],[8,-4],[2,-1],[6,-4],[4,-3]],[[58762,58171,0],[10,-6],[10,-7]],[[58782,58158,0],[9,-7]],[[58791,58151,0],[9,-7],[7,-6],[2,-2]],[[58809,58136,0],[8,-8]],[[58817,58128,0],[8,-7],[1,-1]],[[58826,58120,0],[8,-8],[165,-156],[3,-4]],[[59002,57952,0],[1,-1],[3,-3]],[[59006,57948,0],[1,-2],[2,-3],[1,-1],[2,-3],[0,-1]],[[59012,57938,0],[1,-1],[1,-3],[1,0],[0,-1]],[[59015,57933,0],[1,-3],[1,-1],[0,-2],[1,-2],[1,-2]],[[59019,57923,0],[0,-1],[1,-3],[0,-1]],[[59020,57918,0],[0,-1],[1,-2],[0,-3]],[[59021,57901,0],[0,-3],[0,-2]],[[59021,57896,0],[0,-1],[-1,-4]],[[59017,57880,0],[-1,-3],[-1,-2]],[[59015,57875,0],[-17,-29],[-6,-9],[-17,-34],[-25,-86],[-16,-53]],[[58934,57664,0],[-27,-101],[-11,-70],[-6,-81]],[[58890,57412,0],[4,-55],[10,-43],[11,-33]],[[58915,57281,0],[-2,-36],[-27,-27],[-131,-62],[-87,-41],[-30,-15],[-67,-44],[-38,-27],[-63,-53],[28,-36],[74,63]],[[60007,55407,0],[-15,-39]],[[59992,55368,0],[-48,-60],[-38,-48]],[[59906,55260,0],[-100,17]],[[59806,55277,0],[-24,4],[-59,11]],[[59723,55292,0],[-117,18],[-6,2],[-12,6]],[[59588,55318,0],[0,2],[-2,9]],[[59586,55329,0],[5,19]],[[59591,55348,0],[-43,11],[-30,8],[-7,1],[-4,1]],[[59507,55369,0],[-8,-10]],[[59499,55359,0],[-5,-5],[-3,-3],[-2,-1],[-12,-2]],[[59477,55348,0],[-108,17],[-52,8],[-98,16],[-70,12],[-65,11],[-76,13]],[[59008,55425,0],[-74,-2],[-34,-10],[-16,-4]],[[58884,55409,0],[-36,-21],[-26,-17],[-7,-3]],[[58815,55368,0],[-10,0],[-13,3],[-29,-22]],[[58763,55349,0],[-23,-18],[8,-10],[6,-10]],[[58754,55311,0],[3,-12]],[[58757,55299,0],[-7,-25]],[[58750,55274,0],[-7,-11],[-4,-5],[-6,-8],[-4,-4],[-3,-3],[-9,-6],[-10,-8],[-8,-4],[-5,-2],[-16,-7]],[[58678,55216,0],[-16,-8],[-11,-3],[-10,-2],[-22,-4],[-20,-2],[-9,2]],[[58590,55199,0],[-40,9]],[[58550,55208,0],[-34,7],[-21,5],[-102,39],[-5,2]],[[58388,55261,0],[-75,40],[-6,4],[-66,44]],[[58241,55349,0],[-27,19],[-35,-42]],[[58179,55326,0],[-92,-106]],[[58087,55220,0],[-3,-2],[-114,100]],[[57970,55318,0],[8,10],[-95,79]],[[57883,55407,0],[16,18],[-106,92],[68,73],[-26,22],[38,39],[-111,94]],[[57762,55745,0],[111,112],[-92,143],[-14,21],[-35,170],[-3,155],[15,153],[38,149],[58,143]],[[57840,56791,0],[58,130],[49,97]],[[57947,57018,0],[43,98],[46,94]],[[58036,57210,0],[-61,25],[148,483],[3,9]],[[58126,57727,0],[2,9],[2,9],[1,9]],[[58131,57754,0],[1,9],[1,9]],[[58133,57772,0],[0,6],[0,6],[0,6],[-1,6]],[[58132,57796,0],[-2,6],[-2,6],[-2,5]],[[58126,57813,0],[-3,6]],[[58123,57819,0],[-3,5],[-3,5]],[[58117,57829,0],[-4,5]],[[58113,57834,0],[-4,5],[-4,4]],[[58105,57843,0],[-43,84],[-11,23],[-1,3]],[[58050,57953,0],[-2,3]],[[58048,57956,0],[-3,4],[-2,2]],[[58043,57962,0],[-4,3],[-3,2],[-3,2],[-4,2],[-9,2],[-8,4]],[[58012,57977,0],[-8,4],[-154,101]],[[57850,58082,0],[187,250],[4,5],[1,1]],[[58042,58338,0],[26,-10],[27,-10],[13,-5],[45,-16],[64,-17]],[[58217,58280,0],[23,-4]],[[58240,58276,0],[19,-2],[37,-5]],[[60208,55393,0],[39,-20]],[[60247,55373,0],[57,-25],[-18,-34],[516,-234],[18,32],[29,-15]],[[60849,55097,0],[51,-20]],[[60900,55077,0],[49,-24],[-16,-30],[121,-55]],[[61098,54984,0],[40,-19]],[[61143,54963,0],[6,-2],[0,7],[123,0],[0,-58]],[[61816,54762,0],[-16,-110],[-2,-13],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,-2],[1,0],[0,-1],[1,-1],[1,0],[0,-2],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[2,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[0,-3],[42,-115],[15,-17],[-9,-5],[-71,-38],[-29,-11],[-55,-13],[-25,1],[-54,-1],[-2,-27],[-16,-2],[1,-9],[-32,-7],[-50,2],[-48,17],[7,23],[-54,12],[-1,10],[-223,59],[-51,4],[-18,-25],[-116,-165],[-35,-52],[116,-68],[86,-46],[-2,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-65,-28],[-29,-13],[6,-75],[-34,-200],[-8,-50],[-50,-299],[-9,-51],[-14,-82]],[[58073,55204,0],[14,16]],[[58179,55326,0],[35,41],[27,-18]],[[58241,55349,0],[72,-49],[75,-39]],[[58388,55261,0],[5,-3],[103,-39],[54,-11]],[[58590,55199,0],[10,-2],[19,1],[22,4],[21,5],[16,9]],[[58678,55216,0],[16,6],[13,6],[19,14],[7,7],[10,13],[7,12]],[[58757,55299,0],[-3,9],[0,3]],[[58754,55311,0],[-6,9],[-8,10],[23,19]],[[58815,55368,0],[7,2],[27,18],[35,21]],[[58884,55409,0],[51,13],[73,3]],[[59008,55425,0],[76,-14],[136,-22],[149,-25],[108,-16]],[[59477,55348,0],[14,2],[3,3],[5,6]],[[59507,55369,0],[11,-3],[73,-18]],[[59586,55329,0],[2,-11]],[[59723,55292,0],[83,-15]],[[59906,55260,0],[86,108]],[[59992,55368,0],[15,38],[-3,39],[152,-71],[16,32],[36,-13]],[[63109,54675,0],[71,64],[1,0],[8,8],[4,3],[3,3],[4,3]],[[63200,54756,0],[61,-52],[4,-3],[25,-22],[4,-3],[2,-1]],[[63296,54675,0],[32,29],[28,26]],[[63356,54730,0],[48,-46]],[[63404,54684,0],[-8,-9],[-5,-5]],[[63391,54670,0],[34,-35]],[[63425,54635,0],[12,-12]],[[63437,54623,0],[46,-45],[10,-10],[204,-186]],[[63697,54382,0],[-19,-18],[-120,-107],[-145,-112]],[[63413,54145,0],[-151,-101],[-143,-88],[-141,-87]],[[62731,53717,0],[-132,-80],[-130,-80]],[[62374,53496,0],[-95,-58],[-108,-54]],[[61947,53299,0],[-116,-25],[-122,-18]],[[61591,53248,0],[-119,2],[-114,0],[-142,7]],[[60982,53310,0],[-33,6]],[[61816,54762,0],[176,-6]],[[61992,54756,0],[51,-16]],[[62043,54740,0],[-4,-85]],[[62015,54636,0],[-5,-7]],[[62006,54621,0],[-4,-12]],[[62130,54488,0],[3,-4]],[[62200,54453,0],[48,-12]],[[62248,54441,0],[109,14]],[[62357,54455,0],[101,41]],[[62458,54496,0],[98,45]],[[62556,54541,0],[96,48]],[[62652,54589,0],[100,57]],[[62752,54646,0],[149,90]],[[62981,54819,0],[88,-105]],[[63069,54714,0],[6,-6],[3,-3],[10,-9],[21,-21]],[[59000,63486,0],[28,-34],[1,-1]],[[59029,63451,0],[42,-46],[16,12]],[[59087,63417,0],[42,28],[26,20],[26,16]],[[59181,63481,0],[18,9],[8,3]],[[59207,63493,0],[91,62],[83,57]],[[59381,63612,0],[260,-316]],[[59612,63260,0],[3,-11],[4,-12]],[[59694,62859,0],[72,-113],[11,-17]],[[59938,62594,0],[67,-35],[4,-2]],[[60009,62557,0],[18,-7],[34,-11]],[[60061,62539,0],[0,-14],[-2,-15]],[[60059,62510,0],[207,11],[36,1]],[[60302,62522,0],[29,-35],[24,-30],[-72,-61],[18,-29],[3,-31],[-12,-29],[-25,-20],[-79,-41],[-46,-27],[-20,-11],[-37,-24],[-33,-23],[-48,-34],[-91,-75],[-36,-27]],[[59877,62025,0],[0,-1],[-57,-45]],[[59820,61979,0],[-15,-12],[-15,-13]],[[59790,61954,0],[-51,-43],[-8,-8]],[[59731,61903,0],[-3,-3],[-7,-7]],[[59721,61893,0],[-98,-84],[-85,-71]],[[59538,61738,0],[22,-28],[51,-61]],[[59611,61649,0],[-149,-127]],[[59462,61522,0],[-73,-62],[-40,-31],[-96,-70],[-68,-42],[-36,-16],[-71,-22],[-34,-7],[-48,-5],[-49,-2],[-47,2]],[[58900,61267,0],[-52,8]],[[58848,61275,0],[-55,13],[-65,25],[-27,14],[-75,41]],[[58626,61368,0],[-204,153]],[[58422,61521,0],[-82,60]],[[58340,61581,0],[-274,203]],[[58066,61784,0],[-148,108]],[[57918,61892,0],[-50,34],[-33,19],[-78,39],[-48,22],[-59,25],[-66,22],[-21,4],[35,137]],[[57598,62194,0],[364,474],[0,1]],[[57962,62669,0],[21,-17],[34,41],[-13,1],[-15,1],[-14,2],[-10,2],[-11,3],[-13,5],[-15,8],[-10,7],[-13,9],[-11,11],[-7,9],[-12,15],[-97,146],[307,403],[-179,87],[-147,68],[-53,-75],[-41,31],[-18,17],[-15,19],[-10,52],[-2,28],[0,206],[-66,23]],[[57552,63771,0],[-96,32],[-17,5]],[[57439,63808,0],[-53,22],[-47,25]],[[57339,63855,0],[103,100],[7,6]],[[57449,63961,0],[11,7],[24,17],[35,19]],[[57519,64004,0],[49,27],[26,10],[57,20]],[[57651,64061,0],[42,8]],[[57693,64069,0],[43,7],[8,1]],[[57744,64077,0],[29,0],[27,0],[37,-5],[22,-3],[32,-7],[53,-13],[6,-1],[78,-19],[91,-26],[83,-30],[91,-35],[99,-41]],[[58392,63897,0],[61,-28],[6,-2]],[[58459,63867,0],[6,-4],[76,-39],[104,-62]],[[58645,63762,0],[93,-59]],[[58738,63703,0],[110,-81]],[[58848,63622,0],[43,-37],[30,-25]],[[58921,63560,0],[79,-74]],[[61517,61035,0],[-4,-6],[-9,-13]],[[61355,60981,0],[-26,-28],[-38,-41],[-141,-155]],[[60975,60532,0],[-11,-12],[-80,-88]],[[60884,60432,0],[-3,-4],[-11,-14],[-9,12],[-7,9]],[[60854,60435,0],[-24,21],[-16,14],[-21,-22],[-6,-6]],[[60739,60398,0],[-5,-4],[-18,-16],[-4,-5],[-8,-10]],[[60704,60363,0],[-3,-9],[-7,-28]],[[60694,60326,0],[-14,25],[-29,53],[-25,34],[-37,32],[-35,19],[-39,17],[-74,28],[-44,19],[-74,35],[-40,23]],[[60283,60611,0],[-35,32],[-13,17],[-21,28],[-10,26],[-14,34],[-2,18],[-4,25],[0,7],[3,70],[8,62],[0,1],[7,54],[-8,71],[-6,35],[-13,34],[-3,7],[-20,38],[-13,19],[-8,12],[-39,41],[-19,18],[-16,15],[-7,6],[-40,28],[-20,14],[-26,16],[-4,3],[-56,34],[-31,26],[0,1],[-27,21],[-17,18],[-12,13],[-8,10],[-14,17],[-5,6],[-4,7],[-17,30],[-5,18],[-7,21],[-3,18],[-2,6],[0,4],[-2,41],[-20,-20],[-35,-10],[-21,-2],[-27,1],[-18,7],[-7,2],[-16,17],[0,1],[0,10],[4,8],[1,2]],[[59538,61738,0],[183,155]],[[59721,61893,0],[10,10]],[[59731,61903,0],[59,51]],[[59790,61954,0],[30,25]],[[59820,61979,0],[57,46]],[[58126,60549,0],[-18,-19]],[[58108,60530,0],[-64,-71],[-102,-7]],[[57942,60452,0],[-1,-48]],[[57941,60404,0],[-8,-42]],[[57933,60362,0],[-23,-44]],[[57910,60318,0],[-21,2]],[[57889,60320,0],[-23,-24]],[[57866,60296,0],[-46,-36]],[[57820,60260,0],[-16,-11],[-29,-16],[-83,-29],[-59,-14]],[[57633,60190,0],[-33,-9]],[[57600,60181,0],[-18,-9]],[[57582,60172,0],[-14,-11],[-25,-30]],[[57543,60131,0],[-11,-19]],[[57532,60112,0],[-6,-23]],[[57526,60089,0],[-1,-37]],[[57525,60052,0],[-8,-57]],[[57517,59995,0],[-17,-109]],[[57500,59886,0],[-92,15]],[[57408,59901,0],[-117,14]],[[57009,59998,0],[-96,40]],[[56796,60097,0],[-102,65]],[[56694,60162,0],[-86,66]],[[56466,60364,0],[-51,53]],[[56415,60417,0],[-58,77]],[[56357,60494,0],[-21,33]],[[56310,60565,0],[-77,140]],[[56160,60905,0],[-23,102]],[[56137,61007,0],[-11,88]],[[56126,61095,0],[-16,146]],[[56110,61241,0],[-19,171],[24,139]],[[56115,61551,0],[32,67],[57,102],[3,5],[7,11],[15,25],[34,40],[31,29],[24,21],[8,6],[19,15],[3,2],[34,26],[28,15],[27,13],[52,25],[249,116],[47,22],[107,51],[18,7],[18,11],[13,11],[14,15],[12,19],[9,17],[8,20],[6,19],[0,26]],[[56990,62287,0],[0,14],[207,28]],[[57197,62329,0],[70,-344]],[[57267,61985,0],[44,-125],[59,-133],[30,-50],[28,-44],[30,-40],[35,-43],[34,-39],[49,-47],[119,-95],[68,-48],[79,-46]],[[57842,61275,0],[68,-36]],[[57910,61239,0],[85,-40]],[[57995,61199,0],[112,-45]],[[58107,61154,0],[-82,-180],[37,-15],[29,-16],[48,-38],[31,-28],[28,-34],[17,-24],[9,-15],[24,-50],[26,-65],[-41,-44],[-19,-17],[-13,-14],[-11,7],[-64,-72]],[[59325,60685,0],[-91,-203],[17,-13],[12,-10],[12,-16],[13,-23],[5,-16],[5,-17],[2,-16],[-3,-23],[-7,-49],[-6,-39],[-2,-19],[-5,-58],[-2,-50],[2,-54],[10,-78],[11,-51],[13,-48],[16,-52],[17,-48],[21,-49],[16,-36],[21,-38],[43,-72],[30,-49],[12,-23],[8,-16],[4,-15],[-1,-13],[-6,-16],[-8,-10],[-16,-10],[-16,-4],[-14,1],[-90,-115],[43,-33],[36,-29],[42,-37],[32,-34],[65,-79],[19,-26],[16,-29],[16,-35],[103,43],[19,8]],[[59748,58582,0],[-93,-165],[-32,-56]],[[59279,57953,0],[-26,-47]],[[59159,57792,0],[-12,9],[-127,115]],[[59020,57916,0],[0,2]],[[59020,57918,0],[-1,5]],[[59019,57923,0],[-2,5],[-2,5]],[[59015,57933,0],[-3,5]],[[59012,57938,0],[-2,5],[-4,5]],[[59006,57948,0],[-4,4]],[[58826,58120,0],[-9,8]],[[58809,58136,0],[-9,7],[-9,8]],[[58782,58158,0],[-10,6],[-10,7]],[[58762,58171,0],[-10,6],[-10,6]],[[58726,58192,0],[-16,8],[-16,8],[-16,8]],[[58645,58231,0],[-11,4],[-11,4],[-11,4],[-12,4]],[[58577,58253,0],[-11,2],[-12,2],[-11,2]],[[58543,58259,0],[-12,2]],[[58519,58262,0],[-47,4]],[[58472,58266,0],[-52,1]],[[58393,58267,0],[-46,-1],[-51,3]],[[58296,58269,0],[-37,4],[-19,3]],[[58217,58280,0],[-64,16],[-58,21],[-7,3],[-46,18]],[[58042,58338,0],[-7,-10],[-2,2]],[[57408,59901,0],[85,-14],[7,-1]],[[57500,59886,0],[10,61],[7,48]],[[57525,60052,0],[0,4],[1,33]],[[57532,60112,0],[5,9],[6,10]],[[57582,60172,0],[5,3],[13,6]],[[57600,60181,0],[21,6],[12,3]],[[57820,60260,0],[31,24],[15,12]],[[57889,60320,0],[18,-1],[3,-1]],[[57910,60318,0],[10,19],[13,25]],[[57933,60362,0],[3,18],[5,24]],[[57941,60404,0],[1,26],[0,22]],[[58108,60530,0],[6,6],[12,13]],[[58107,61154,0],[528,-211],[337,-126],[353,-132]],[[63777,55371,0],[-6,21],[-5,8],[-26,48]],[[63740,55448,0],[-25,27]],[[63715,55475,0],[-73,63],[-8,6]],[[63634,55544,0],[-7,10],[-4,8]],[[63623,55562,0],[-1,4],[-1,6],[0,23],[-1,17],[-2,37],[-7,77]],[[63608,55753,0],[-11,50],[-3,10],[-16,66]],[[63578,55879,0],[-5,18],[-9,24]],[[63564,55921,0],[-3,8],[-1,2]],[[63525,56012,0],[-31,62],[-1,0]],[[63490,56082,0],[-21,33],[-13,20],[-9,12],[-6,9]],[[63441,56156,0],[-20,28],[-19,27]],[[63372,56250,0],[-7,10],[-6,8],[-21,29],[-1,0],[-49,72],[-11,16],[-7,9],[-7,11],[-13,23],[-11,20],[-9,18],[-19,35],[-10,5],[-11,27],[-3,13]],[[63187,56546,0],[-1,3],[-1,8]],[[63185,56557,0],[-5,18],[0,2]],[[63180,56577,0],[0,14],[0,3],[2,6]],[[63182,56600,0],[2,10],[5,10],[7,11],[11,12],[9,7],[16,10],[12,4],[13,3],[13,1],[29,-3],[10,-3],[9,-3],[32,-12],[27,-9],[18,-6],[59,-24],[57,-24],[38,-23],[25,-6],[26,-13],[24,-12],[24,-13],[68,-40],[13,-10],[22,-14],[32,-21],[64,-47],[11,-10],[50,-41],[43,-39],[16,-14],[14,-14],[44,-41],[16,-17],[15,-15],[23,-25],[53,-58],[49,-61],[34,-52],[12,-17],[19,-31],[21,-35],[4,-9],[11,-20],[20,-39],[31,-70],[5,-12],[21,-59],[8,-30],[8,-33],[4,-17],[17,-76],[7,-33],[13,-61],[4,-23],[8,-45],[-160,-16],[-35,-5],[-71,-8],[-120,-14]],[[64042,55345,0],[-56,-6],[-52,-6]],[[63934,55333,0],[-41,-5],[-100,-11],[-16,54]],[[54851,61273,0],[-182,7],[-6,348],[0,90],[-11,87],[-16,114],[-35,247],[-104,646],[118,311],[152,415],[114,314],[131,371],[173,537],[316,15],[371,44],[321,92],[310,2],[21,0],[50,-1],[35,-275],[26,-183],[31,-152],[80,-417],[74,-454],[174,-966],[9,-150],[-13,0],[0,-28]],[[62396,58170,0],[144,90]],[[62585,58288,0],[156,53]],[[63681,57506,0],[-12,-38],[-54,-174],[-2,-5]],[[63541,57198,0],[-21,12],[-20,9],[-17,6],[-18,3],[-18,3],[-18,1],[-19,-1],[-21,-2],[-21,-5],[-16,-5],[-21,-9],[-17,-9],[-13,-9],[-12,-9],[-14,-15],[-11,-13],[-12,-18],[-7,-12],[-9,-19],[-7,-16],[-3,-12],[-3,-14],[-2,-24],[-1,-17],[-2,-50],[-24,-184]],[[63098,56814,0],[-90,18]],[[62449,56889,0],[-225,24]],[[62083,56930,0],[-135,25]],[[61811,56980,0],[-125,34]],[[61686,57014,0],[-136,52]],[[61268,57221,0],[-111,84],[-86,72],[-70,72],[-96,111],[-68,92],[-57,97],[-46,94],[-49,112],[-47,108],[-43,130],[-91,291],[-22,74],[284,-64]],[[60766,58494,0],[24,-7],[48,-15],[54,-20],[46,-23],[49,-30],[43,-31],[174,-141],[44,-32],[37,-22],[65,-41],[14,-8],[20,-10],[22,-10],[31,-15],[29,-10]],[[61466,58079,0],[23,-5],[11,-3]],[[61500,58071,0],[30,-10],[36,-9],[19,-3],[23,-4]],[[61608,58045,0],[9,-2],[13,-1]],[[61630,58042,0],[31,-1],[50,-1],[35,2],[16,4],[42,7],[42,14],[50,22],[43,23]],[[59207,63493,0],[-1,0],[-25,-12]],[[59087,63417,0],[-15,-12],[-43,46]],[[59029,63451,0],[-29,35]],[[59000,63486,0],[-31,30],[-48,44]],[[58921,63560,0],[-19,16],[-54,46]],[[58738,63703,0],[-75,48],[-12,8],[-6,3]],[[58645,63762,0],[-104,61],[-82,44]],[[58459,63867,0],[-67,30]],[[57744,64077,0],[-8,-2],[-43,-6]],[[57651,64061,0],[-82,-30],[-50,-27]],[[57519,64004,0],[-34,-19],[-36,-24]],[[57449,63961,0],[0,-1],[-26,-8],[-16,-1],[-12,0],[-9,1],[-2,2],[-19,11],[-23,20],[-40,39],[-36,40],[-36,47],[-33,99],[-4,14],[-50,132],[-3,8],[-43,82],[-49,49],[-15,16],[-19,142],[-2,14],[-15,125],[237,-15],[32,-2],[164,7],[212,22],[685,73],[307,31],[398,-725],[263,-435],[86,-136]],[[63425,54635,0],[-13,13],[-21,22]],[[63391,54670,0],[13,14]],[[63356,54730,0],[-60,-55]],[[63296,54675,0],[-7,6],[-21,17],[-68,58]],[[63200,54756,0],[-8,-7],[-5,-4],[-78,-70]],[[63109,54675,0],[-29,28],[-11,11]],[[63069,54714,0],[19,13],[65,47],[63,51],[51,43],[43,40],[49,49],[82,72],[23,34],[19,33],[25,77],[29,60],[21,48],[5,10],[19,59],[19,57],[10,18],[10,9],[17,6],[21,-2],[15,-6],[14,-17],[20,-33],[23,-88],[11,-80],[3,-18],[-6,-97],[-20,-84],[-36,-96],[-21,-36],[-8,-14],[-37,-49],[-4,-6],[-1,-2],[-11,-12],[-29,-34],[-41,-46],[-40,-42],[-54,-55]],[[63740,55448,0],[31,-57],[6,-20]],[[63934,55333,0],[108,12]],[[64042,55345,0],[120,13],[6,-183],[-25,-185],[-48,-153],[-66,-151],[-83,-114]],[[63069,54714,0],[-38,45]],[[63634,55544,0],[81,-69]],[[63715,55475,0],[23,-24],[2,-3]],[[80693,35218,0],[-58,-9],[-191,-30],[-18,-2]],[[80426,35177,0],[4,-25],[-37,-6]],[[80393,35146,0],[-4,26],[-47,-7]],[[80342,35165,0],[-149,-22],[-102,-15],[-44,-70]],[[80013,34997,0],[-68,-109]],[[79921,34856,0],[-370,-153],[-8,-58]],[[79543,34645,0],[-27,-2],[-25,-53],[-5,-141],[-7,-55]],[[79479,34394,0],[-49,-47],[-422,-94]],[[79019,34207,0],[-68,-14],[-4,3],[-189,-46],[5,-19]],[[78635,34100,0],[-66,-18]],[[78569,34082,0],[36,561],[16,253],[-6,0],[1,8],[-114,11],[2,58],[-61,4],[1,14],[-57,5],[-1,-6],[-26,1],[-4,-48],[-9,0],[0,-13],[-118,5],[-105,6],[30,195],[-1,94],[85,-2],[1,12],[38,0],[1,41],[-9,1],[1,62],[-123,6],[0,42],[-10,0],[13,44],[177,2],[0,57],[18,65],[19,-3],[-1,-12],[34,-2],[-2,35],[12,4],[-1,28],[-8,1],[3,48],[1,50],[-9,1],[0,41],[35,0],[0,-4],[89,2],[0,8],[27,6],[-1,-21],[78,1],[-2,43],[-11,48],[-7,1],[9,51],[-50,9],[-2,-17],[-80,13],[0,32],[-18,42],[-25,-13],[-33,-4],[4,-45],[-44,-3],[0,-31],[-57,0],[-3,50],[-11,0],[-2,33],[-69,-4],[2,-45],[5,-49],[33,0],[2,-48],[-6,1],[1,-53],[-51,1],[0,2],[-55,0],[0,93],[-11,0],[0,22],[41,0],[33,92],[75,18],[13,2],[75,75],[41,4],[16,24],[1,52],[60,4],[15,13],[143,23],[25,0],[0,147],[33,5],[46,8],[31,7],[3,-5],[49,1],[16,-68],[141,18],[49,6],[77,7],[82,9],[1,3],[35,3],[0,6],[156,11],[79,8],[0,6],[81,7],[1,-5],[40,3],[0,5],[56,7],[57,8],[83,13],[8,2],[7,-28],[67,13],[56,10],[83,29],[99,35],[87,28],[24,-77],[28,5],[-1,16],[40,6],[1,-5],[71,15],[14,-57],[137,27],[45,-221],[42,-220],[57,-289],[435,81],[13,-80],[69,11],[12,-75],[13,-78],[36,-230],[-17,-9],[-527,-80]],[[35398,36989,0],[32,-322],[95,-837],[61,-574],[32,-280]],[[35618,34976,0],[-58,-57],[-101,-125],[-79,-85],[-60,-55],[-80,-56],[-71,-45],[-99,-48],[-88,-32],[-84,-19],[-135,-17],[-154,-8],[-299,15],[-68,-2],[-39,-5],[-47,-14],[-35,-15]],[[34121,34408,0],[-107,-68],[-43,-42],[-800,61],[-251,118],[-240,118],[-307,31],[-494,49]],[[31879,34675,0],[27,59],[93,204]],[[32330,35155,0],[-62,27],[-130,57]],[[32054,35340,0],[34,72],[56,118],[14,30]],[[32192,35630,0],[144,-19],[136,-17],[34,-5]],[[32558,35583,0],[59,142],[49,122],[49,121],[13,30]],[[32804,36075,0],[120,102],[25,21]],[[32949,36198,0],[44,-70],[17,-28]],[[33010,36100,0],[73,-121],[16,-28]],[[33190,35834,0],[99,-3],[34,-1]],[[33498,35845,0],[46,62],[20,26]],[[33564,35933,0],[35,57],[70,112],[17,27]],[[33708,36205,0],[-24,99],[-8,32]],[[33676,36336,0],[-63,118],[-15,29]],[[33584,36510,0],[-82,136],[-17,28]],[[33485,36674,0],[130,-12],[34,-4]],[[33649,36658,0],[14,13]],[[33663,36671,0],[103,105],[24,23]],[[33894,36959,0],[66,-34],[29,-16]],[[34019,36945,0],[95,-42],[31,-14]],[[34355,36820,0],[12,92],[5,32]],[[34449,36920,0],[33,-10],[130,-42],[89,-28]],[[34740,36828,0],[33,9],[67,19]],[[34840,36856,0],[33,9],[131,38],[132,38],[91,27]],[[35267,36901,0],[28,18],[103,70]],[[36604,32830,0],[-6,-45],[-5,-49]],[[36556,32563,0],[-100,-65],[-24,-16]],[[34996,32148,0],[-35,-30]],[[34961,32118,0],[-106,296],[-3,8],[-82,264],[-8,26],[-215,569],[-12,30],[-24,65],[-83,217],[-270,717],[-37,98]],[[35618,34976,0],[50,39],[40,25],[51,18],[49,11],[39,4],[139,0],[348,-63],[134,-14],[256,-33],[69,-10],[52,-20],[41,-18],[40,-25],[24,-22],[28,-39],[14,-23],[11,-39]],[[34961,32118,0],[-136,-113]],[[33875,30653,0],[-404,241],[-84,50],[-512,332],[-594,371],[-203,125],[-40,25]],[[32045,33383,0],[-111,307],[-58,163]],[[33875,30653,0],[-87,-98]],[[33788,30555,0],[-170,-187],[-45,-49]],[[33573,30319,0],[-15,0],[-29,0]],[[33529,30319,0],[-619,24]],[[32910,30343,0],[-301,13]],[[32609,30356,0],[-450,16],[-165,71]],[[31994,30443,0],[-204,86]],[[31790,30529,0],[-175,38],[-136,-20],[-74,-21]],[[31405,30526,0],[-168,-49],[-161,-44],[-246,-222]],[[30830,30211,0],[-91,-266]],[[30739,29945,0],[4,-236]],[[30743,29709,0],[46,-276],[9,-45]],[[30798,29388,0],[18,-111],[23,-102]],[[30839,29175,0],[-705,177],[-61,17],[-507,131]],[[29950,32015,0],[13,2],[34,6]],[[80147,18235,0],[22,-51],[8,-19]],[[80186,17791,0],[-30,-34],[-10,-11]],[[79979,17606,0],[20,-30]],[[79914,17530,0],[-2,-1],[-81,-42]],[[79619,17174,0],[22,-8],[33,-13]],[[79781,17132,0],[52,-3],[4,0]],[[80043,17158,0],[33,12],[33,13]],[[80109,17183,0],[30,15],[31,16]],[[80181,17215,0],[17,13],[41,29]],[[80341,17351,0],[5,6],[106,133]],[[80452,17490,0],[18,23],[126,159],[63,78],[134,169]],[[81303,18062,0],[-8,-105],[-17,-7],[-16,-7],[-11,-6],[-11,-7],[-12,-11],[-6,-14],[-6,-18],[-22,-79],[-18,-77],[-23,-79],[-14,-38],[-27,-72],[-18,-37],[-76,-135],[-32,-40],[-50,-64],[-52,-59],[-161,-175],[-56,-58],[-52,-59],[-51,-60],[-125,-167],[-116,-154],[-14,-27],[-6,-14],[-7,-19],[-266,-145],[10,10],[12,14],[11,22],[5,23],[7,57],[-35,-30],[-29,-18],[-12,-7],[-34,-14],[-32,-11],[-28,-8],[-29,-6],[-23,-3],[-29,-4],[-24,-1],[-118,-6],[-249,-16],[-225,-13],[-125,-4],[-65,-20],[-82,4]],[[78936,16298,0],[-7,79],[-5,55]],[[78924,16432,0],[-37,421],[-53,257],[-111,392],[-26,80],[-35,88],[-64,125],[-82,138],[-255,304],[-216,242],[-59,61],[-73,80],[-139,150],[-113,123]],[[77661,18893,0],[123,156]],[[66906,53469,0],[182,-33]],[[67857,52170,0],[-16,-35],[-184,-395]],[[67572,51779,0],[-11,-37],[-13,-44]],[[67529,51707,0],[-75,36],[-202,95]],[[67149,51887,0],[-95,45],[-167,80],[-58,27],[-253,121]],[[66576,52160,0],[-49,12],[-42,10]],[[66485,52182,0],[-41,-2],[-54,-2]],[[66251,52111,0],[-33,-40],[-19,-22]],[[66165,51949,0],[0,-25],[1,-33]],[[66251,51731,0],[24,-21],[11,-10]],[[66286,51700,0],[16,-8],[15,-8]],[[66317,51684,0],[21,-11],[109,-51]],[[66447,51622,0],[-16,-30],[-26,-49]],[[66286,51321,0],[-289,-130],[-1,-10]],[[65988,51122,0],[-18,-90]],[[65970,51032,0],[-10,5],[-46,21],[-58,27]],[[65800,50998,0],[-5,-8],[-38,-60]],[[65757,50930,0],[-7,3],[-5,2]],[[65504,51051,0],[-1,1],[-11,10]],[[65492,51062,0],[0,1],[-2,28]],[[65490,51091,0],[-5,21],[-2,8]],[[65475,51144,0],[-4,6],[-5,7]],[[65134,51587,0],[-40,58],[-19,31],[-73,119]],[[64969,51974,0],[0,9],[5,38],[9,42],[9,30],[0,1]],[[65062,52258,0],[17,30],[12,22]],[[65137,52377,0],[23,30],[45,60]],[[65205,52467,0],[32,40],[11,13]],[[65248,52520,0],[4,5],[19,20]],[[65271,52545,0],[24,20],[13,9]],[[65308,52574,0],[16,10],[16,11]],[[65382,52616,0],[16,6],[13,5]],[[65411,52627,0],[45,11],[148,39]],[[65757,52717,0],[41,9],[59,14]],[[66290,53238,0],[24,17],[29,20]],[[66343,53275,0],[6,3],[68,45],[21,13]],[[71619,52624,0],[3,-53],[7,-105],[15,-230]],[[71327,52294,0],[-177,-82],[-40,-19]],[[70749,51966,0],[-108,-274],[-24,-62]],[[70732,51044,0],[1,-172]],[[70741,50837,0],[15,-60],[14,-59]],[[71153,50165,0],[16,-20],[111,-134]],[[71880,49564,0],[3,-24]],[[71279,49186,0],[-97,92],[-6,7]],[[71176,49285,0],[-18,14],[-71,60]],[[69981,49705,0],[-31,0],[-6,0]],[[69855,52385,0],[-56,16]],[[70335,52917,0],[37,43],[7,10]],[[70379,52970,0],[44,-9],[22,1],[20,19],[33,0],[43,14],[17,11],[9,1],[84,12],[26,5],[73,17],[3,11],[41,-10],[18,0],[17,26],[78,21],[37,6],[68,3],[30,6],[13,2],[12,-9],[18,-3],[16,-7],[77,-40],[11,-31],[37,11],[50,-30],[-5,-5],[21,-26],[21,-28],[3,-6],[3,-20],[31,-57],[30,-27],[38,-4],[29,2]],[[78505,71168,0],[63,11],[65,11],[37,6],[129,24],[132,24],[154,28],[17,3]],[[79102,71275,0],[293,52],[232,42],[195,34],[55,10],[178,31],[26,4],[26,5],[126,22],[76,13],[115,20],[151,26],[32,5]],[[80607,71539,0],[120,21],[21,4]],[[80748,71564,0],[-1,-27],[-1,-168]],[[80802,70981,0],[2,-31]],[[80701,70955,0],[-53,14],[-19,5]],[[80629,70974,0],[-41,11]],[[80454,71021,0],[-8,3],[-37,10]],[[80409,71034,0],[-62,-27],[-20,68],[-37,146],[-243,-49],[-48,-15],[-30,-5],[-34,-4],[12,-138],[36,-14],[117,-79],[36,4],[81,30],[-59,-26]],[[79931,71010,0],[-9,5],[-62,33],[-15,9]],[[79845,71057,0],[-59,17],[-5,2]],[[79781,71076,0],[-54,4],[-54,4]],[[79605,71106,0],[-179,-18]],[[79426,71088,0],[-57,-107],[-70,-133]],[[79097,70585,0],[-6,7],[-16,15]],[[78948,70579,0],[-54,-59],[-12,-12],[-22,-24]],[[78748,70410,0],[-9,-3],[-144,-48],[-144,-48],[-51,-16]],[[78400,70295,0],[-79,-53]],[[78321,70242,0],[-170,270],[-105,-57],[-148,-86],[-36,-12],[-139,29],[-318,83],[-75,14],[-88,4],[-44,-2],[-37,-3],[-50,-23],[-34,-21],[-35,-25],[-37,-28],[-28,-32],[-54,39]],[[76923,70392,0],[50,33],[37,27],[65,41],[44,21],[32,11],[162,55],[24,100],[188,-20],[34,0],[83,33],[69,39],[57,36],[30,27],[33,48],[37,61],[28,55],[88,203],[49,106],[23,63],[22,55],[12,68],[37,-22]],[[78127,71432,0],[-4,-30],[-6,-49],[-6,-45]],[[78106,71099,0],[196,34],[-31,-16],[-121,-65],[-97,-51],[-65,56],[-57,-125],[-18,-42],[-24,-48],[-28,-39],[-51,-63],[-24,-23],[-40,-30],[-53,-33],[-55,-20],[-73,-15],[-15,-112],[300,-83],[266,146],[254,134],[131,81],[-18,26],[-181,322],[152,27],[20,3],[31,5]],[[78716,70850,0],[-17,25],[-123,-62],[-2,-22],[7,-12],[20,-4],[119,60],[4,2],[-8,13]],[[79482,71146,0],[129,-35],[68,100],[-106,57],[-91,-122]],[[78801,70832,0],[323,-180],[74,113],[253,396],[-56,32],[-341,-188],[-267,-144],[14,-29]],[[77970,70055,0],[-46,20],[397,167]],[[78282,70215,0],[-191,-129],[-79,-49]],[[78321,70242,0],[-39,-27]],[[61231,37943,0],[27,-33]],[[61258,37910,0],[38,-15]],[[61249,37796,0],[-39,5],[-188,22]],[[60414,37544,0],[-14,-16],[-56,-60]],[[60206,37227,0],[-13,-31]],[[60193,37196,0],[-18,-51]],[[60149,37048,0],[-7,-43]],[[60142,37005,0],[-8,-69]],[[60133,36816,0],[-2,-81]],[[60131,36735,0],[-1,-69]],[[60130,36666,0],[-3,-99]],[[60128,36549,0],[-2,-105]],[[60126,36444,0],[-87,-2]],[[75736,37789,0],[0,-1],[-56,-36],[-20,-13],[-68,-43],[-7,-5],[-32,-49],[-51,-79]],[[75095,37884,0],[-13,10]],[[75082,37894,0],[-11,8]],[[75071,37902,0],[-63,46]],[[74746,38129,0],[1,65],[-138,35],[-11,2],[-14,4],[-5,1],[-43,23],[-7,3],[-67,35],[-56,29],[-5,3],[-19,11]],[[74464,38410,0],[164,80]],[[74801,38577,0],[2,11],[20,10]],[[74823,38598,0],[41,20]],[[74864,38618,0],[196,97]],[[75064,38735,0],[13,9],[16,4]],[[75114,38741,0],[77,41],[49,20]],[[75381,38932,0],[-5,23]],[[75376,38955,0],[51,26],[16,-55]],[[75552,35206,0],[-21,-3],[-8,4],[-4,0],[-73,7],[3,18]],[[75449,35232,0],[9,46],[27,130]],[[75485,35408,0],[5,23]],[[75490,35431,0],[14,74],[5,21],[-100,91],[-103,90],[-71,62],[-126,116],[-23,23],[-34,32],[-90,83],[-40,38],[-28,28],[-24,22],[-4,4],[-41,44],[-30,30],[-230,40],[-134,23],[-52,9],[-44,8],[-21,3],[-9,1],[8,7],[3,8],[59,144],[29,74],[25,64],[1,2],[31,79],[14,38],[11,28],[62,-17],[290,-76],[110,-30],[83,-22],[195,-49],[16,-4],[1,0],[22,-6],[58,-15],[36,-10],[12,-3],[25,-7],[72,-19],[2,0],[36,-10],[74,-20],[13,-3],[12,-3],[87,-36],[12,-8],[16,-16],[19,-17],[234,-213],[175,-162],[4,-222],[120,-41],[2,-3],[9,-5],[6,-9],[2,-11],[-7,-77],[-6,-9],[-9,-6]],[[76268,35587,0],[-21,-4],[-64,-6]],[[76183,35577,0],[6,-8],[16,-38],[3,-8],[-52,-20],[-38,-14],[-18,-12],[-11,-21],[-2,-19],[-39,-13],[-16,-4],[-9,15],[-5,15],[-20,17],[-17,9],[-22,2],[-17,-3],[-18,-3],[-20,-3],[-20,-8],[-11,-5],[-19,-11],[-21,-17],[-11,-10],[-5,-7],[-40,-45],[-60,-65],[-42,-46],[-12,-13],[-14,-12],[-17,-9],[-10,-4],[-13,-4],[-16,-4],[-24,-2],[-2,2],[-15,-3]],[[34170,30287,0],[-80,-175],[-32,-72]],[[34058,30040,0],[-9,-15],[-63,-118]],[[33986,29907,0],[-25,-40],[-5,-7],[-1,-3]],[[33955,29857,0],[-4,-5]],[[33951,29852,0],[-6,-8],[-6,-8],[-5,-9]],[[33934,29827,0],[-3,-3],[-4,-5]],[[33927,29819,0],[-6,-8],[-2,-4],[-4,-3],[-5,-8]],[[33910,29796,0],[-7,-7],[-5,-8]],[[33898,29781,0],[-7,-6],[-6,-9]],[[33885,29766,0],[-6,-6],[-6,-7]],[[33873,29753,0],[-7,-8]],[[33866,29745,0],[-6,-7]],[[33860,29738,0],[-7,-6],[-4,-5],[-2,-3]],[[33847,29724,0],[-7,-6],[-7,-7]],[[33833,29711,0],[-7,-7],[-6,-7]],[[33820,29697,0],[-8,-6],[-13,-13]],[[33799,29678,0],[-7,-6]],[[33792,29672,0],[-8,-7]],[[33784,29665,0],[-8,-7],[-7,-7]],[[33769,29651,0],[-8,-7]],[[33761,29644,0],[-7,-5]],[[33754,29639,0],[-7,-7]],[[33747,29632,0],[-8,-5],[-7,-6]],[[33732,29621,0],[-8,-6]],[[33724,29615,0],[-8,-6]],[[33716,29609,0],[-8,-6]],[[33708,29603,0],[-8,-6]],[[33700,29597,0],[-8,-5],[-7,-6]],[[33685,29586,0],[-4,-3]],[[33681,29583,0],[-4,-2]],[[33677,29581,0],[-8,-6]],[[33669,29575,0],[-8,-5]],[[33661,29570,0],[-9,-7]],[[33652,29563,0],[-7,-6],[-8,-6],[-7,-8]],[[33630,29543,0],[-7,-6],[-7,-6],[-5,-6]],[[33611,29525,0],[-1,-2]],[[33610,29523,0],[-7,-7]],[[33603,29516,0],[-6,-7]],[[33597,29509,0],[-7,-7]],[[33590,29502,0],[-6,-7],[-6,-8]],[[33578,29487,0],[-5,-7]],[[33573,29480,0],[-6,-8]],[[33567,29472,0],[-6,-8]],[[33561,29464,0],[-5,-8]],[[33556,29456,0],[-5,-7]],[[33551,29449,0],[-5,-9]],[[33546,29440,0],[-5,-7]],[[33541,29433,0],[-4,-7]],[[33537,29426,0],[-1,-3]],[[33536,29423,0],[-5,-9]],[[33531,29414,0],[-5,-8]],[[33526,29406,0],[-4,-8]],[[33522,29398,0],[-4,-10]],[[33518,29388,0],[-4,-8]],[[33514,29380,0],[-4,-8],[-3,-10]],[[33507,29362,0],[-4,-8],[-3,-10]],[[33500,29344,0],[-3,-9]],[[33497,29335,0],[-3,-9]],[[33494,29326,0],[-3,-9],[-2,-9],[-2,-9]],[[33487,29299,0],[-2,-10]],[[33485,29289,0],[-3,-16]],[[33482,29273,0],[-2,-11]],[[33480,29262,0],[-2,-9]],[[33478,29253,0],[0,-4]],[[33478,29249,0],[-1,-6]],[[33477,29243,0],[-1,-8]],[[33476,29235,0],[-1,-10],[-1,-9],[0,-9]],[[33474,29207,0],[0,-10]],[[33474,29197,0],[0,-9]],[[33474,29188,0],[0,-9]],[[33474,29179,0],[0,-10]],[[33474,29169,0],[1,-9],[0,-10]],[[33475,29150,0],[1,-9]],[[33476,29141,0],[1,-9]],[[33477,29132,0],[1,-9]],[[33478,29123,0],[3,-10],[2,-11],[-1,-12],[0,-1]],[[33482,29089,0],[-10,-12],[-6,-9],[-6,-6],[-7,-7],[-8,-6],[-9,-4],[-60,-23],[-150,-81],[13,22],[1,9],[-3,11],[-27,35],[-54,53],[-62,50],[-43,27],[-67,39],[55,77],[28,-20],[40,51],[148,30],[-16,48],[-121,-22],[-436,-41],[-14,169]],[[32665,29501,0],[102,17],[-16,95],[-42,-5],[-56,-3],[-18,-1]],[[32635,29604,0],[-21,-1],[-146,5],[-217,35],[-48,7],[-44,5],[-10,1],[-10,0],[-10,0],[-10,0],[-10,-1],[-17,0],[-10,-1],[-12,-2],[-10,-1],[-10,-1],[-9,-2],[-10,-1],[-10,-2],[-10,-3],[-9,-2],[-10,-2],[-9,-3],[-10,-2],[-9,-3],[-10,-3],[-9,-3],[-9,-4],[-39,-17],[-8,-5],[-8,-4],[-9,-5],[-10,-6],[-8,-5],[-8,-5],[-8,-7],[-8,-6],[-8,-5],[-7,-6],[-8,-6],[-7,-7],[-7,-7],[-8,-6],[-7,-7],[-7,-7],[-6,-7],[-7,-8],[-6,-7],[-6,-7],[-17,-14]],[[31726,29445,0],[-10,-7],[-6,-8],[-4,-8],[-5,-9],[-5,-9],[-4,-8],[-4,-9],[-4,-8],[-4,-8],[-4,-10],[-3,-8],[-3,-9],[-4,-10],[-2,-9],[-3,-9],[-3,-9],[-2,-9],[-2,-9],[-2,-9],[-2,-10],[-1,-9],[-2,-8],[-60,-38],[-195,-92],[-191,-82],[-11,51],[-19,109],[-102,-19],[-230,-7]],[[30839,29175,0],[-23,103],[-18,110]],[[30798,29388,0],[-18,44]],[[30768,29556,0],[-25,153]],[[30743,29709,0],[0,10]],[[30743,29719,0],[-4,226]],[[30774,30048,0],[56,163]],[[30830,30211,0],[243,228],[23,1],[141,38],[168,48]],[[31405,30526,0],[74,22],[16,2],[120,18],[175,-39]],[[31790,30529,0],[97,-41],[107,-45]],[[32609,30356,0],[123,-5]],[[32732,30351,0],[178,-8]],[[33529,30319,0],[44,0]],[[33573,30319,0],[215,236]],[[33875,30653,0],[386,-120],[-91,-246]],[[33482,29089,0],[9,-15],[3,-10]],[[33505,29036,0],[4,-9],[3,-9]],[[33516,29009,0],[5,-9],[4,-9]],[[33530,28982,0],[5,-8],[5,-9],[5,-9]],[[33550,28948,0],[6,-8],[5,-9]],[[33567,28923,0],[6,-8],[6,-8]],[[33591,28891,0],[7,-7],[6,-8]],[[33604,28876,0],[7,-7],[8,-8]],[[33619,28861,0],[6,-7],[8,-7],[7,-8]],[[33640,28839,0],[7,-6],[7,-7],[8,-7]],[[33662,28819,0],[8,-6],[8,-6],[8,-7]],[[33695,28794,0],[7,-6],[9,-6]],[[33711,28782,0],[9,-5],[8,-6],[9,-5],[9,-5],[8,-6]],[[33763,28750,0],[10,-4],[9,-6]],[[33782,28740,0],[9,-4],[9,-4]],[[33810,28727,0],[9,-3],[9,-4],[1,-1],[36,-71],[33,-69]],[[34029,28317,0],[8,-11],[-1,-18]],[[34015,28232,0],[2,-22]],[[31362,27074,0],[-296,685],[-102,76],[-18,16],[-32,106],[-50,158],[14,185],[35,397],[-74,478]],[[46706,26826,0],[-22,-10],[-2,-1]],[[46634,26792,0],[-8,-3],[-40,-14]],[[46586,26775,0],[-26,-11],[-25,-9]],[[46535,26755,0],[-31,-10],[-20,-7]],[[46278,26681,0],[-19,-4],[-44,-12]],[[46120,26641,0],[-34,-10],[-27,-7]],[[45951,26596,0],[-58,-15],[-9,-2]],[[45884,26579,0],[-17,-5],[-113,-30]],[[45526,26540,0],[-17,6],[-20,7]],[[45380,26632,0],[8,22],[8,22]],[[45396,26676,0],[2,34],[0,4]],[[45394,26747,0],[-14,31],[-2,5]],[[45378,26783,0],[-1,2],[-18,24]],[[45359,26809,0],[-12,27],[-11,24],[-76,170]],[[45260,27030,0],[15,44],[10,32]],[[45285,27106,0],[5,22],[9,46]],[[45299,27174,0],[10,74],[3,25]],[[45328,27399,0],[1,12],[12,78]],[[45341,27489,0],[9,64],[1,11]],[[45351,27564,0],[2,14],[11,79]],[[45364,27657,0],[2,42],[0,12]],[[45363,27755,0],[-2,13],[-5,33]],[[45356,27801,0],[-7,25],[-2,6]],[[45347,27832,0],[-5,20],[-8,38]],[[45318,27971,0],[-2,13],[-4,31]],[[45312,28015,0],[-3,27],[-3,26]],[[45306,28068,0],[-1,22],[-1,20]],[[45308,28264,0],[5,32],[5,28]],[[45335,28404,0],[44,31],[35,48],[31,66],[20,161],[17,118],[21,96],[45,57],[50,40],[130,60],[98,42],[93,19],[35,-1],[25,-16],[17,-23],[5,-31],[-19,-87],[0,-74],[25,-167],[0,-61],[-3,-103],[-46,-119],[460,25],[79,5],[40,2],[46,6],[70,9],[10,3],[10,5],[34,19],[38,22],[28,15],[48,19],[23,8],[28,7]],[[45950,31504,0],[0,-89]],[[45950,31415,0],[-34,0],[-38,2],[-13,0],[0,-25],[-20,4],[-69,11],[-17,0],[-10,-3],[-17,3],[0,4],[-5,0],[-53,6]],[[45674,31417,0],[-65,-16]],[[45609,31401,0],[-70,5]],[[45539,31406,0],[-18,-16],[-11,-8],[-15,-3],[-12,-37],[-3,-11],[12,-2],[1,-4],[5,-13],[-3,-33],[-5,-46],[-3,-14],[-7,-15],[-15,-12],[-20,-5],[-20,-4],[-11,2],[-5,-14],[5,-2],[2,-29],[-3,-23],[-8,-36],[-6,-10],[1,-25],[13,-28],[13,-13],[32,-17]],[[45458,30988,0],[-13,-22]],[[45445,30966,0],[-28,14]],[[45417,30980,0],[-11,0],[-11,-3],[-33,-13],[-17,1],[-12,0]],[[45333,30965,0],[-26,-11]],[[45307,30954,0],[-23,-2],[-24,7]],[[45260,30959,0],[-53,11]],[[45207,30970,0],[-28,6]],[[45179,30976,0],[-51,17],[-5,4]],[[45123,30997,0],[-50,8]],[[45073,31005,0],[-56,6]],[[45017,31011,0],[-22,6],[-60,6],[-18,5],[-14,3],[-27,2],[-3,11],[-2,45],[-16,0]],[[44855,31089,0],[-16,0],[-66,-1]],[[44773,31088,0],[-8,0],[-169,7],[1,-18],[-61,-1]],[[44536,31076,0],[0,15],[9,70],[2,22],[10,86],[43,119],[52,89],[20,-10],[9,24],[28,16],[25,24],[20,31],[123,77],[97,62],[158,101],[10,0],[35,18],[98,52],[75,39],[11,6],[125,66],[139,53],[130,52],[48,17],[122,32],[49,12],[-2,-40],[0,-23]],[[45972,32086,0],[-1,-28],[-3,-56],[-1,-33],[-5,-135],[-12,-330]],[[45950,31415,0],[0,-30]],[[45971,31103,0],[59,-126],[54,-110],[20,-41],[29,-60]],[[46133,30766,0],[36,-44],[31,-39],[-49,-78],[-9,-15],[-142,65],[-37,-79],[-32,-69],[-149,55],[-4,-15],[-72,-20],[-15,-1],[-9,1],[-70,35],[-40,14],[-26,-107],[20,-59],[-12,-88],[-9,-51],[-13,-65],[-132,-13],[-18,6],[-27,-36],[-50,18],[-41,12],[-9,3],[-62,10],[-74,13],[-46,19],[-21,3],[-48,27],[-5,19],[-34,34],[-37,26],[-134,94],[-82,61],[-38,41],[-37,41],[1,10],[-3,2],[-5,3],[-3,0],[-9,-1],[-11,16],[-29,56],[-3,18],[-16,82],[-11,131],[-11,161],[-1,14]],[[44773,31088,0],[64,1],[18,0]],[[45017,31011,0],[45,-4],[11,-2]],[[45123,30997,0],[4,-4],[46,-15],[6,-2]],[[45179,30976,0],[10,-2],[18,-4]],[[45207,30970,0],[49,-11],[4,0]],[[45307,30954,0],[14,5],[12,6]],[[45417,30980,0],[12,-6],[16,-8]],[[45445,30966,0],[8,13],[5,9]],[[45539,31406,0],[19,-1],[51,-4]],[[45609,31401,0],[29,7],[5,1],[31,8]],[[63383,42197,0],[-51,-227],[-15,-71]],[[63245,41561,0],[-13,-65],[-19,-94]],[[63567,40859,0],[-10,-76]],[[62972,40556,0],[0,-30],[0,-10]],[[61628,41325,0],[-1,131]],[[61627,41493,0],[1,36]],[[62611,42659,0],[76,84],[35,39]],[[66360,41451,0],[86,-171]],[[66446,41280,0],[47,-93]],[[66493,41187,0],[47,-131]],[[66623,40850,0],[39,-93]],[[66738,39934,0],[-70,-7]],[[66370,39896,0],[-31,-3],[-112,-20]],[[66005,39813,0],[-79,-28]],[[65895,39773,0],[-142,-56]],[[65656,39681,0],[-112,-42],[-105,-38]],[[65439,39601,0],[-165,-63]],[[64302,39464,0],[-73,35]],[[64302,39858,0],[153,229],[39,58]],[[64550,40226,0],[25,42],[21,6],[21,0],[14,24]],[[64821,41325,0],[-30,-1],[-166,-6]],[[64638,42568,0],[9,0],[137,-7]],[[64948,42557,0],[49,-6],[24,-3]],[[65144,42516,0],[58,-27],[30,-13]],[[65562,42286,0],[65,-42],[30,-18]],[[66148,41913,0],[18,-35]],[[66249,41694,0],[35,-79],[17,-36]],[[66301,41579,0],[9,-21]],[[57141,14485,0],[-2,34],[0,36]],[[57034,14700,0],[23,161],[-16,71],[-102,35],[31,123],[80,-21],[43,-16],[124,-59],[26,16],[28,-14],[15,-24],[28,-77],[19,-44],[-4,-40],[10,-35],[-7,-51],[5,-41],[-5,-87],[11,-89]],[[60115,32206,0],[9,-103]],[[59541,29925,0],[-110,-31],[-62,-18]],[[59399,29360,0],[60,-141]],[[59459,29219,0],[60,-138]],[[58407,31284,0],[28,24],[45,38]],[[58973,31493,0],[46,-27],[57,-35]],[[59025,32037,0],[-15,40],[-23,59]],[[59164,32193,0],[6,2],[17,6]],[[59187,32201,0],[0,8],[2,30]],[[59237,32412,0],[221,22],[31,3]],[[59568,32488,0],[24,19]],[[60284,60079,0],[20,-29],[-32,-20],[46,-58],[62,-77],[422,-456],[-52,-38]],[[60505,59670,0],[-32,-8],[-65,-19],[-37,-11]],[[60371,59632,0],[-86,-25]],[[60285,59607,0],[-49,-12],[12,-37],[22,-81]],[[60481,58864,0],[-201,-55]],[[60175,59112,0],[-30,79],[-36,-9]],[[59325,60685,0],[43,-9],[26,2],[25,2],[36,8],[58,18],[139,58],[32,11],[21,3],[26,1],[62,-4],[31,-2],[28,-148],[8,-33],[4,-13],[11,6],[3,10],[132,-144],[-9,-6],[93,-103],[38,-47],[25,-34],[46,-55],[81,-127]],[[53746,14609,0],[22,54],[64,90],[-50,54],[-53,53]],[[53729,14860,0],[-16,11],[-55,38],[-55,37]],[[53603,14946,0],[-36,-58],[-40,-65]],[[53396,14864,0],[-21,3],[-20,2],[-32,1],[-5,11],[0,10]],[[53244,14960,0],[-87,8],[4,-93]],[[53161,14875,0],[-39,4],[-135,-11],[-151,-27],[-169,-41],[-82,-38]],[[52585,14762,0],[-187,56],[16,142],[46,128],[-356,116]],[[52104,15204,0],[45,15],[17,152],[-31,94],[-29,131],[10,117],[39,135],[11,189],[-1,91],[116,70],[88,80],[79,38],[33,-23],[45,32],[87,93],[100,38],[78,-4],[159,76],[78,22],[86,21],[75,66],[126,106],[77,77],[28,69],[31,54],[115,157],[156,101],[110,24],[28,-3],[21,6],[48,31],[1,9],[8,177],[150,1],[59,-9],[56,2],[118,-50],[70,-30],[55,-3],[33,64],[79,9],[65,35],[83,-5],[39,-16],[50,-32],[80,-106],[56,-28],[-55,-71],[23,-54],[25,-54],[20,-33],[8,-58],[9,-24],[6,-79],[16,-84],[30,-108],[-8,-174],[6,-43],[-5,-52],[7,-41],[-8,-104],[6,-65],[-14,-54],[-63,-136],[-44,-100],[-68,-85],[-40,-66],[-39,-51],[-80,-77],[-25,-30],[-92,-126],[-23,-37],[-6,-112],[-84,-4],[58,-118],[-23,-42],[-88,111],[-45,38],[-25,-82],[-42,-99],[-49,38],[-56,-55],[-252,-314],[27,-16],[60,-56],[-71,-135],[-104,-121]],[[54002,13933,0],[-3,29],[-14,95],[-11,87],[-10,82],[-9,73]],[[53945,14371,0],[-10,66],[-6,51]],[[53929,14488,0],[148,-11],[105,169],[155,-125],[48,-65],[50,20],[102,-81],[32,-331],[-24,-61],[-33,34],[-56,-141],[-21,-111],[-63,-216],[-62,-143],[-56,93],[45,172],[-40,29],[-44,34],[-35,18],[-21,18],[-32,23],[-23,17],[-60,39],[-40,12],[-1,31],[-1,21]],[[52585,14762,0],[-24,-9]],[[52561,14753,0],[-80,-42],[-20,-10]],[[52461,14701,0],[-127,-94],[-12,-8]],[[52322,14599,0],[-9,-9],[-74,-74]],[[52239,14516,0],[-80,-109],[-16,-20]],[[52066,14231,0],[-6,-17],[-29,-81],[-16,-53]],[[52006,14026,0],[-4,-25],[-28,-142]],[[51974,13859,0],[-15,-51],[-17,-52],[-46,-78]],[[51896,13678,0],[-44,-54],[-87,-67]],[[51765,13557,0],[-178,-119],[-4,-3],[-81,-54]],[[51502,13381,0],[-32,9],[-8,10],[-34,18],[-19,-2],[-15,-3]],[[51394,13413,0],[-4,10],[-2,9]],[[51388,13432,0],[-12,-4],[-28,-13],[-32,-16],[-7,-6],[-22,-18]],[[51287,13375,0],[-3,-2],[-21,-15]],[[51263,13358,0],[-18,-20],[-9,-11],[-5,-8],[-34,-56],[-169,64],[-118,-46],[-29,12],[-2,-4],[-26,10],[-7,2],[18,49],[24,55],[-71,32],[-10,4],[-33,16],[-119,-18],[-20,22],[-151,27],[-35,1],[-164,22],[-643,71]],[[49642,13582,0],[-90,313],[-130,466],[-296,578],[-49,371],[266,402],[143,-161],[100,303]],[[49685,15910,0],[95,54],[97,57]],[[50270,16265,0],[405,-124],[-15,-465],[1444,-472]],[[51263,13358,0],[24,17]],[[51388,13432,0],[6,-19]],[[51466,13347,0],[-26,-27],[-25,-26]],[[51300,13123,0],[-35,-84],[-2,-5]],[[51263,13034,0],[-10,-39],[-16,-62],[-7,-100]],[[51237,12731,0],[12,-70],[28,-88]],[[51277,12573,0],[39,-80],[49,-71],[58,-64]],[[51481,12303,0],[455,-378],[110,-92]],[[52046,11833,0],[154,-125],[340,-291],[50,-42]],[[52590,11375,0],[-25,-6],[-25,-6]],[[52540,11363,0],[-25,-14],[-86,-38]],[[52372,11283,0],[-43,-14],[-147,-97],[-506,-342],[-4,0],[-25,39],[-43,19],[-11,1],[-74,86],[-237,89],[-22,3],[-22,6],[-19,10],[-13,8],[-18,14],[-12,14],[-10,13],[-9,15],[-6,15],[2,14],[0,19],[-1,11],[-3,16],[-3,12],[-7,13],[-6,12],[-9,13],[-13,16],[-15,14],[-14,9],[-20,11],[-35,15],[-35,16],[-31,16],[-42,25],[-36,23],[-50,32],[-40,33],[-54,43],[-52,52],[-49,54],[-60,73],[-13,18],[-37,39],[-53,50],[-52,41],[-42,32],[-44,29],[-55,31],[-64,31],[-113,103],[-60,64],[-190,259],[-21,37],[-11,20],[-22,46],[-29,65],[-12,30],[-15,39],[-13,38],[-18,65],[-16,63],[-9,42],[-8,47],[-12,85],[-20,576],[-7,28]],[[70185,99615,0],[-14,-119],[-29,-68],[-62,-136],[-16,-68],[-19,-92],[7,-129],[3,-55],[-2,-63],[-1,-43],[-2,-27],[-3,-98],[-1,-6],[-1,-36],[0,-29],[-1,-50],[2,-46],[1,-39],[1,-40],[2,-8],[17,-69],[1,-114],[1,-139],[18,-176],[-8,-83],[-4,-207],[41,-211],[2,-58],[68,-196],[55,-98],[121,-216],[17,-34],[14,-43],[20,-35],[69,-39],[15,-35],[79,-45],[34,-49],[54,-70],[81,-68],[40,-54],[44,-49],[26,-27],[28,-39],[41,-43],[78,-117],[16,-22],[44,-45],[37,-43],[50,-81],[39,-60],[20,-39],[22,-48],[6,-32],[84,-91],[36,-60],[25,-45],[73,-120],[-29,-18],[-97,-59],[-121,-74],[14,-25],[5,-10],[-410,-297],[-555,-55],[-55,-437],[-426,84],[-82,12],[-78,-259],[-219,55],[-161,198],[-377,-97],[-46,185],[-66,32],[-12,111],[-31,134],[-32,100],[-30,59],[-76,72],[-336,-89],[47,-139],[-98,-32],[-175,61],[-61,199],[-246,384],[-424,-292],[-15,0],[-304,9],[-515,-48],[-37,174],[-52,330],[0,3],[-35,605],[-72,29],[-264,143],[-48,44],[-74,63],[-43,47],[-88,67],[-61,52],[-62,65],[-82,135],[-54,76],[-32,45],[-30,7],[-43,18],[-21,31],[-9,52],[-3,69],[0,84],[-36,191],[14,12],[26,21],[34,51],[17,68],[14,43],[10,30],[12,39],[9,69],[-39,93],[-70,70],[-50,50],[-26,65],[1,62],[7,22],[-27,15],[-67,15],[-63,2],[-55,17],[-31,-2],[-8,-1],[-199,11],[-38,-5],[-77,24],[-8,86],[-6,30],[-26,79],[-30,70],[-57,58],[-69,0],[-166,291],[-277,10],[-21,193],[-3,81],[-16,42],[0,46],[2,55],[200,27],[4,-22],[22,-1],[158,-4],[-13,-15],[157,-18],[17,59],[172,11],[312,100],[-5,-48],[15,-17],[152,-1],[116,-11],[3,-19],[82,-27],[120,32],[97,63],[25,-4],[83,-11],[580,27],[97,69],[8,22],[26,-27],[26,-7],[5,-24],[77,-30],[14,-30],[41,-17],[4,-14],[12,2],[26,-35],[14,-19],[85,-19],[240,71],[18,2],[220,38],[19,45],[64,-23],[55,-4],[129,14],[18,-56],[339,-47],[20,37],[123,-1],[24,-36],[5,-34],[67,-4],[129,61],[53,-55],[99,63],[128,58],[154,66],[32,-29],[385,171],[-16,35],[37,12],[739,254],[146,-168],[105,-125],[107,-91]],[[77183,18172,0],[101,182]],[[77459,18637,0],[202,256]],[[78924,16432,0],[5,-57],[7,-77]],[[78936,16298,0],[-193,-4],[-182,-11],[-146,-12],[-236,-6],[-455,-6],[-228,-1],[-452,-20],[-50,-1],[-47,-4],[-72,-8],[-63,-7],[-68,-11],[-58,-11],[-58,-13],[-59,-16],[-76,-22],[-60,-19],[-89,-30],[-369,-143],[-67,-25],[-184,-69]],[[67709,53740,0],[-49,27],[-6,3]],[[67631,53789,0],[-7,4],[-8,4],[68,43],[101,57],[38,19],[17,-32],[-93,-111],[-25,-40]],[[57798,55186,0],[-146,-9],[-258,1476],[-419,457],[-21,684],[-4,54],[-24,70],[-39,71],[-42,74],[-68,72],[-79,77],[-60,61],[465,432],[62,83]],[[57221,58739,0],[34,-34]],[[57850,58082,0],[1,0],[-1,0]],[[58012,57977,0],[9,-4],[8,-3],[10,-6],[4,-2]],[[58043,57962,0],[2,-3],[3,-3]],[[58050,57953,0],[1,-4],[11,-23],[43,-83]],[[58105,57843,0],[4,-5],[4,-4]],[[58117,57829,0],[6,-10]],[[58126,57813,0],[2,-6],[4,-11]],[[58133,57772,0],[0,-9],[-2,-9]],[[58131,57754,0],[-1,-10],[-2,-9],[-2,-8]],[[58126,57727,0],[-3,-10],[-147,-482],[60,-25]],[[58036,57210,0],[-46,-95],[-43,-97]],[[57947,57018,0],[-48,-98],[-59,-129]],[[57840,56791,0],[-57,-143],[-38,-149],[-16,-154],[3,-155],[35,-170],[14,-21],[92,-143],[-111,-111]],[[57883,55407,0],[95,-80],[-8,-9]],[[57970,55318,0],[114,-101],[-11,-13]],[[57962,62669,0],[-364,-475]],[[57598,62194,0],[-99,24],[-168,24],[-30,11],[-23,11],[-21,15],[-17,16],[-18,21],[-14,22],[-8,16],[-4,14]],[[57196,62368,0],[-21,124],[-50,270],[-51,286],[-41,228],[-40,205],[-27,143],[-40,224],[-44,241],[-20,120],[-25,140],[-3,14],[4,18],[6,13],[11,14],[17,12],[15,5],[14,3],[14,-1],[16,-3],[12,-6],[10,-6],[11,-10],[47,-47],[50,-59],[15,-24],[6,-13],[6,-12],[4,-11],[17,-40],[39,-110],[51,-104],[19,-24],[16,-19],[22,-23],[33,-29],[50,-32]],[[57439,63808,0],[113,-37]],[[64346,30291,0],[-2,-18]],[[64344,30273,0],[-2,-10],[-6,-10]],[[64281,29939,0],[-678,-409]],[[62536,28309,0],[-71,-354],[-26,-224],[-6,-18],[-8,-22],[-82,-39],[-5,15],[-59,185],[-31,92],[-35,102],[-8,25],[-46,158],[-8,87],[2,124],[-5,94],[-12,218],[-2,49],[2,82],[-1,112],[-123,99],[-75,45],[-85,69],[-26,43],[-133,224]],[[61693,29475,0],[-178,91],[-121,62]],[[61156,29823,0],[-87,69]],[[60984,29953,0],[-44,29],[-28,19]],[[60999,30148,0],[20,-6],[8,-2]],[[61250,30196,0],[1,4],[0,6]],[[61269,30273,0],[3,10],[2,7]],[[61275,30402,0],[48,109]],[[62651,34257,0],[19,91]],[[62845,33543,0],[10,-247]],[[60858,58608,0],[-92,-114]],[[61268,57221,0],[-10,-14],[-52,-70]],[[61164,57076,0],[26,-19],[14,-9]],[[61017,56770,0],[-46,-65],[-6,-9]],[[60973,56673,0],[-30,-6],[-4,-2]],[[60939,56665,0],[-1,0],[-41,-25]],[[60867,56595,0],[-2,0],[-16,-10]],[[60849,56585,0],[-16,-5],[-4,-1]],[[60829,56579,0],[-16,-62],[-61,17]],[[60412,56682,0],[-23,9]],[[60141,57244,0],[-35,37]],[[59929,57831,0],[10,67]],[[61610,52319,0],[5,-3],[2,-1]],[[61847,52264,0],[179,-94],[107,-55]],[[62412,51932,0],[-124,-265]],[[62020,51244,0],[-8,-39],[26,3],[27,1],[28,2],[27,0],[25,1],[5,0],[6,0],[5,1],[1,1],[163,51],[117,31],[9,3],[10,1],[9,1],[9,2],[9,0],[10,0],[9,0],[3,0],[14,-2],[15,-1],[14,-3],[14,-2],[7,-1],[135,-34],[9,-2],[9,-1],[10,-2],[9,-1],[9,0],[10,0],[9,0],[10,1],[9,2],[9,1],[9,2],[10,2],[6,3],[8,3],[7,2],[7,4],[7,4],[2,1],[29,20],[41,-49],[6,-7],[10,-12],[-5,-7],[-6,-7],[-5,-7],[-5,-7],[-5,-8],[-4,-8],[-4,-8],[-4,-8],[-2,-9],[-1,0],[-2,-8],[-2,-7],[-1,-8],[-1,-8],[0,-7],[0,-8],[0,-8],[1,-7],[1,-8],[2,-8],[2,-7],[2,-8],[3,-6],[45,-92],[15,-98],[3,-25],[1,-4],[-1,-4],[0,-4],[-2,-5],[-1,-3],[-24,-68],[-1,-6],[-2,-5],[0,-5],[0,-6],[0,-5],[0,-5],[1,-5],[2,-5],[2,-6],[2,-4],[3,-5],[3,-4],[4,-4],[3,-5],[4,-3],[4,-3],[2,-1],[35,-26],[7,-6],[7,-6],[7,-6],[6,-7],[1,-1],[4,-3],[85,-107],[5,-8],[3,-4],[3,-5],[2,-5],[1,-5],[1,-3],[29,-110],[3,-10],[2,-10],[1,-11],[1,-5],[0,-11],[0,-11],[0,-12],[1,-11],[1,-11],[2,-11],[2,-9],[0,-14],[1,-13],[-1,-14],[-1,-14],[-1,-14],[-1,-14],[-1,-5],[-2,-13],[-30,-89],[-23,-44],[-30,-30],[-7,-7],[-7,-6],[-6,-8],[-6,-7],[-5,-7],[-6,-8],[-4,-8],[-4,-8],[-5,-9],[-3,-8],[-3,-8],[-4,-10],[-2,-8],[-2,-10],[-1,-9],[-1,-8],[-1,-10],[0,-6],[4,-229],[3,-192],[0,-24],[3,-44],[-37,-4],[-36,-9],[-24,1],[-40,-1],[-39,-2],[-68,-2],[-57,-4],[-61,-6],[-52,-4],[-73,-15],[-64,-14],[-68,-14],[-136,-41],[-29,-9],[-37,-15],[-45,-18],[-58,-19]],[[62110,49196,0],[-9,9],[-43,51]],[[62058,49256,0],[-11,-8],[-42,-35],[-43,-35]],[[61962,49178,0],[-12,-8],[-123,-82]],[[61827,49088,0],[-10,12],[-11,12]],[[61638,49014,0],[-72,-30],[-2,-2],[-25,-10]],[[61539,48972,0],[-61,-34],[-37,-20]],[[61401,48973,0],[70,89],[4,4]],[[61844,49991,0],[13,8]],[[61829,49985,0],[-111,-63],[-202,-113]],[[61302,49892,0],[-16,-3],[-26,-7],[-11,-2]],[[61226,49873,0],[-7,8],[-55,70]],[[61479,50075,0],[-12,-5],[-6,-2]],[[61436,50061,0],[-13,-4],[-13,-3]],[[61370,50048,0],[-13,-1],[-4,-1]],[[61584,51114,0],[-9,11],[-8,12]],[[61564,51174,0],[-15,13],[-16,13]],[[61518,51214,0],[-15,14],[-14,14]],[[61177,51535,0],[-5,20],[-5,20]],[[61167,51575,0],[-4,20],[-4,20]],[[75391,79842,0],[121,-160]],[[75666,79442,0],[133,-207],[19,-28]],[[75030,78713,0],[-75,-105]],[[74938,78525,0],[-18,-20],[-19,-20]],[[74787,78211,0],[-335,41]],[[74452,78252,0],[-460,34],[-20,2],[-423,30],[-9,43]],[[73540,78361,0],[11,56],[7,188],[1,68],[45,-9],[109,-10],[225,-24],[-3,12],[-4,59],[-154,17],[-173,20],[-45,6],[-17,1],[-40,14],[-24,12],[-17,10],[-19,27],[-6,28],[-2,38],[6,278],[1,34],[7,40],[9,60],[11,53],[15,56],[25,52],[20,13],[13,1],[44,-2],[446,-36],[179,-15],[56,66],[-31,3],[-14,4],[-171,13],[-430,41],[-11,2],[-21,2]],[[73588,79539,0],[4,9],[7,15],[52,77],[83,70],[63,70],[93,101],[9,14],[10,20],[7,15],[-5,15],[-17,4],[-23,16],[-59,34],[13,68],[28,62],[34,110],[12,83],[32,295],[-113,64]],[[74120,81282,0],[242,100],[438,180],[7,3]],[[74807,81565,0],[48,-113],[58,-159],[37,-123],[8,-32],[11,-45],[4,-15],[8,-31],[48,-185],[12,-46],[47,-245],[59,-200],[19,-36],[39,-135],[66,-157]],[[72601,80055,0],[36,8],[120,-330],[139,22],[177,37],[60,13],[104,-103],[67,-42],[32,-10],[6,-25],[46,-7],[56,-35],[26,-19],[79,-12],[39,-13]],[[73540,78361,0],[-52,-37]],[[73488,78324,0],[-255,-33],[-229,-30]],[[73004,78261,0],[-588,2]],[[72289,78279,0],[-133,49],[-115,43],[-62,23]],[[72061,78718,0],[-40,15],[-99,38],[-13,95],[-8,71],[-68,401],[-23,138]],[[71810,79476,0],[22,4],[76,6],[34,5],[-8,120],[9,30],[5,10],[19,19],[21,10],[14,9],[21,11],[19,-2],[6,-4],[6,-4]],[[72054,79690,0],[9,41]],[[72063,79731,0],[-4,15],[14,8],[17,9],[90,-22],[79,-18],[90,-25],[67,-13],[160,-34],[12,-3],[50,-12],[58,-8],[62,-5]],[[72758,79623,0],[-144,347]],[[72614,79970,0],[-7,72],[-102,-6],[-5,39],[62,-2],[39,-18]],[[72737,80915,0],[-16,-72],[-10,-134],[-18,-204],[-58,12],[-29,-105],[-22,-173],[13,-160],[4,-24]],[[72614,79970,0],[145,-347],[-1,0]],[[72063,79731,0],[-4,-16],[-5,-25]],[[71810,79476,0],[-3,23],[-6,30],[-14,96],[-13,38],[-4,24],[-13,10],[-23,12],[-19,3],[-26,1],[-137,-5],[-125,-4],[-66,-9],[-79,-2],[-66,-1],[-52,-16],[-74,-12]],[[71092,79718,0],[6,22],[62,-1],[88,12],[112,5],[188,9],[42,0],[75,9],[44,17],[18,14],[18,42],[4,34],[-4,48],[-22,82],[-17,84],[-34,132],[-69,224],[-83,238],[-73,194],[-107,253]],[[71340,81136,0],[23,8]],[[71363,81144,0],[107,17],[-46,109],[-2,10],[1,11],[4,10],[4,9],[6,8],[7,4],[13,7],[76,15],[47,6]],[[71580,81350,0],[-25,78],[45,9],[88,20],[54,13],[41,16],[13,5],[19,15],[7,13],[5,22],[0,20],[-82,193],[22,23]],[[71764,81849,0],[-30,74],[-31,79]],[[71632,82129,0],[38,15],[26,-66],[58,-142],[277,68],[-56,141]],[[71979,78394,0],[-99,34],[-60,19]],[[71820,78447,0],[-36,13]],[[71339,78608,0],[-99,35],[-38,14]],[[70806,78813,0],[-64,15],[-162,38]],[[70236,78943,0],[-65,16],[-43,158],[-76,272],[-17,52],[-5,17],[-82,294],[-51,204],[-8,29],[-35,129],[-46,187]],[[69808,80301,0],[337,82]],[[70145,80383,0],[2,-11],[346,90],[41,-157],[17,-5],[56,22],[-109,344],[-103,344],[882,255]],[[71277,81265,0],[29,-55]],[[71306,81210,0],[34,-74]],[[71535,82268,0],[62,11],[17,3]],[[71614,82282,0],[-8,19],[-29,64]],[[71306,81210,0],[-14,27],[-15,28]],[[70145,80383,0],[-20,-4],[-317,-78]],[[69808,80301,0],[-64,170],[-9,40],[-59,231],[-113,445],[-108,416]],[[70971,82616,0],[14,5],[248,97]],[[86988,69903,0],[182,83],[-1,-75],[220,-52],[0,-68],[256,-264],[-30,-135],[-12,-10],[-9,6],[-67,45],[-60,21],[-46,9],[-33,1],[-31,-1],[45,-93],[-113,-52],[-52,-21],[-92,202],[-20,39]],[[87125,69538,0],[-48,-27]],[[87077,69511,0],[17,-32],[19,-40],[38,-80],[39,-81],[41,-85],[40,-82],[38,-75],[16,-30],[14,-29],[5,-8],[-137,-59],[90,-165],[-58,-2]],[[87239,68743,0],[13,-31]],[[87235,68693,0],[3,-19]],[[87238,68674,0],[8,-42]],[[87336,68607,0],[153,-42]],[[87537,68552,0],[50,-12]],[[87587,68540,0],[1,1],[192,75]],[[88107,68796,0],[91,-22],[205,-50]],[[88403,68724,0],[79,-2],[96,-2]],[[88677,68692,0],[5,74]],[[88682,68766,0],[-10,146]],[[88672,68912,0],[7,18],[49,131]],[[88728,69061,0],[104,-5]],[[88897,69053,0],[193,-1714]],[[88063,67057,0],[-77,-14],[-88,-15],[-225,-38]],[[86958,67984,0],[-103,153],[-73,108]],[[86782,68245,0],[-144,-44],[-119,-37]],[[86349,67911,0],[-40,113],[-21,60],[-23,67]],[[86250,68187,0],[-13,30],[-30,57]],[[86116,68400,0],[-7,8],[-16,24]],[[86093,68432,0],[-75,66]],[[85754,68648,0],[-47,16]],[[85615,68687,0],[-35,7],[-46,6]],[[85115,68699,0],[-108,-1],[-81,4],[-97,19],[-93,26],[-128,39]],[[84440,68845,0],[-84,21],[-18,4],[-52,7]],[[84286,68877,0],[-78,6],[-54,1]],[[84154,68884,0],[-77,-6]],[[84077,68878,0],[-61,-11],[-62,-15]],[[83954,68852,0],[-71,-24],[-71,-32]],[[83812,68796,0],[-20,-10],[-50,-28],[-21,-15]],[[83569,68614,0],[-47,-59],[-12,-15]],[[83488,68487,0],[-3,-26]],[[83489,68440,0],[6,-19],[11,-24]],[[83628,68353,0],[15,3],[18,8]],[[83727,68388,0],[64,20],[68,17]],[[83969,68442,0],[16,0],[35,1]],[[84096,68438,0],[62,-8]],[[84246,68412,0],[66,-19],[52,-19]],[[84393,68363,0],[23,-9],[20,-9]],[[84436,68345,0],[41,-18],[43,-22],[37,-19],[20,-12],[57,-33],[25,-16]],[[84659,68225,0],[17,-13],[63,-52],[41,-38]],[[84780,68122,0],[33,-33],[69,-81]],[[84931,67938,0],[38,-63]],[[85053,67744,0],[12,-4]],[[83777,66890,0],[-107,20]],[[83393,66964,0],[-75,14],[-51,245],[-19,84],[-9,94],[-4,77],[-7,142],[17,132],[14,87],[3,19],[17,84],[27,76],[1,5],[18,53],[14,34],[31,74],[67,215],[9,29],[61,126],[11,18],[30,44],[40,51],[27,31],[-89,63],[90,138],[18,69],[33,23],[21,19],[76,68],[32,18],[44,12],[38,15],[42,9],[125,16],[65,9],[122,-3],[35,-5],[58,-13],[16,-16],[76,-31],[98,-3],[33,-19],[67,-35],[108,-82],[68,-53],[221,-104],[164,-12],[59,8],[122,16],[151,12],[248,-104],[101,111],[86,95],[16,18],[-51,19],[-64,24],[-18,6],[-77,2],[-66,2],[-74,62],[-8,76],[-4,26],[-10,3],[-344,110],[-5,147],[363,-126],[29,2],[50,4],[80,6],[76,5],[30,3],[13,11],[70,51],[77,56],[16,12],[49,63],[45,58],[53,66],[-7,15],[-4,8],[-98,216],[-24,51],[-57,126],[-73,220],[190,57]],[[86463,70110,0],[50,-17]],[[81401,66970,0],[335,45]],[[81736,67015,0],[28,-41],[50,28]],[[81840,66952,0],[101,-191]],[[82370,66398,0],[59,198],[14,47],[86,283]],[[82531,66935,0],[72,239],[262,-37],[22,-3]],[[82903,66510,0],[7,-92]],[[81189,65606,0],[32,45],[-57,320],[-59,175],[-104,188],[-184,262],[-127,2],[-223,26],[37,128],[6,16],[13,106],[-5,112],[81,193],[63,185]],[[80662,67364,0],[263,-115],[130,-30],[97,-23],[136,-101],[100,-110],[13,-15]],[[80409,71034,0],[45,-13]],[[80452,71004,0],[-9,1],[-39,-204]],[[80349,70562,0],[-25,-139]],[[80726,69247,0],[10,-46]],[[80762,68913,0],[3,-96]],[[80928,68040,0],[265,-273]],[[81193,67767,0],[135,-135],[29,-30]],[[81587,67344,0],[132,-186]],[[81736,67015,0],[-313,-42],[-22,-3]],[[80662,67364,0],[-15,6],[-223,65],[-7,-11],[-36,-29],[-9,57],[12,118],[9,124],[-141,58],[-148,26],[-79,118],[-162,241],[-139,189],[-51,86],[-31,-4],[-187,-58],[-4,17],[-90,562],[-78,-35],[-26,44],[27,272],[60,258],[-214,10],[-151,38],[-14,15],[-80,104],[-83,107],[-23,4],[15,32],[-523,182]],[[78282,70215,0],[88,60],[30,20]],[[78400,70295,0],[278,92],[70,23]],[[79299,70848,0],[115,217],[12,23]],[[82357,65652,0],[4,-312]],[[82319,64770,0],[9,-2],[22,-5]],[[82335,64537,0],[-1,-5],[-2,-19]],[[82332,64513,0],[-8,-211],[-4,-119]],[[82320,64183,0],[-47,4],[-42,5]],[[82206,64059,0],[0,-14],[0,-15]],[[82102,63087,0],[-69,13]],[[82033,63100,0],[-35,3]],[[81998,63103,0],[-8,-18],[-11,-10],[-19,2],[-25,27],[-76,11],[-80,27],[-66,38],[-67,46],[-46,49],[-35,-1],[-22,21],[-5,22],[2,24]],[[81540,63341,0],[-130,37]],[[81410,63378,0],[-63,-121],[-126,-169],[-22,-29],[-12,-22],[-12,-27],[-13,-23],[-8,-29]],[[81154,62958,0],[-7,-31],[-6,-25]],[[81141,62902,0],[0,-19]],[[81141,62883,0],[-1,-20],[0,-21]],[[81140,62842,0],[0,-23]],[[81140,62819,0],[19,-87]],[[81159,62732,0],[-20,-299],[-35,8],[-149,32],[-20,-39],[-54,-89]],[[80881,62345,0],[13,-20],[-202,-117],[-106,-35],[8,-109],[164,4]],[[80758,62068,0],[-7,-89]],[[80751,61979,0],[-164,-68],[-109,14],[-123,-29],[-16,-31],[97,-50],[407,-18]],[[80843,61797,0],[-58,-20],[-48,-6],[-15,-8],[-15,-5],[-84,-61],[-19,-18],[-20,-16],[-20,-16]],[[80564,61647,0],[-38,-42]],[[80526,61605,0],[-17,-23]],[[80509,61582,0],[-30,-36]],[[80479,61546,0],[-17,-47]],[[80462,61499,0],[-7,-27],[-8,-26]],[[80447,61446,0],[-3,-22],[-5,-25],[-4,-23],[-2,-29],[0,-50],[3,-51],[19,-86],[35,-77],[-37,-22],[-31,-20],[-76,-58],[-2,-22]],[[80344,60961,0],[80,-114]],[[80424,60847,0],[-74,-126]],[[79717,61115,0],[-179,115],[-25,22],[-131,187],[-23,-260],[-9,-19],[-159,198],[-132,-20],[-180,29],[-32,22],[-82,110],[-7,14],[-255,162],[-2,-19],[-58,-236]],[[78065,61469,0],[-34,49],[-2,3]],[[78014,61967,0],[0,1],[-55,134]],[[77959,62102,0],[216,46],[-13,33],[-11,35],[-19,185],[43,63],[346,-152],[254,-36],[80,-58],[48,29],[103,71],[51,48],[12,15],[42,61],[43,123],[11,79],[35,6],[53,10],[44,2],[0,47],[127,14],[148,52],[8,117],[18,89],[-4,61],[19,13],[60,-35],[64,24],[59,-23],[-20,-122],[12,-188],[58,-147],[205,43],[51,279],[77,107],[118,96],[9,14],[74,119],[58,173],[45,-13],[30,-7],[-1,15],[15,-1],[7,10],[53,-10],[2,-33],[24,-20],[24,5],[31,5],[-6,28],[-7,16],[-52,87],[449,44],[-141,156],[-126,193],[-26,60],[-57,57],[-11,12],[75,111],[14,9],[30,-21],[48,-38],[53,-57],[43,-78],[95,-110],[54,-51],[65,-51],[76,-59],[61,-19],[35,-30],[29,-24],[42,-35],[49,-54],[13,-14],[28,-28],[167,-103],[48,69],[-70,67],[-2,24],[58,86],[18,-11],[47,-20],[36,102],[109,303],[-72,11],[29,127],[-40,5],[-82,4],[-29,16],[-51,14],[14,89],[-26,-2],[20,86],[28,236],[222,11],[55,9],[110,-8],[-1,854],[-12,75],[-38,-21],[-155,-38],[-31,-4],[-165,9],[-37,4],[37,103],[20,73]],[[82355,65824,0],[1,-53],[0,-10]],[[84624,60448,0],[148,-89]],[[84854,60325,0],[131,-56]],[[85129,60249,0],[124,1]],[[85336,60253,0],[89,2]],[[85509,60264,0],[83,14]],[[86130,59831,0],[-115,22],[-102,12],[-104,34],[-117,19],[-123,43],[-126,14],[-210,7],[-19,53],[-109,32],[-118,42],[-76,43],[-163,34],[-108,30],[-120,39],[-111,38],[-190,109],[2,16],[-42,1],[-31,-4],[-35,-4],[1,30],[1,150]],[[84334,60589,0],[75,-13],[97,-57]],[[84506,60519,0],[118,-71]],[[82944,60542,0],[7,-19],[40,-113]],[[82583,60061,0],[-110,15],[-128,7],[-256,-22],[-25,-2],[-33,1],[-37,-18],[-87,-41],[-90,-47],[-72,-3],[-70,-22],[-50,-12],[-26,3],[-94,20],[-118,12],[-43,-34],[-41,-102],[7,-66],[-180,68],[-194,50],[-147,-12],[-23,-134],[-177,0],[-14,17],[-91,10],[-33,-8],[-193,-18],[0,1],[-46,62]],[[80424,60847,0],[129,-103]],[[80553,60744,0],[-34,-31],[-15,-64],[112,-24],[224,-38],[224,-27],[230,-14],[278,-18],[136,2],[390,45],[30,6],[296,119],[268,101],[169,73],[24,7],[179,76]],[[83064,60957,0],[63,17],[80,22],[75,18],[62,13]],[[83344,61027,0],[40,2]],[[83238,60843,0],[22,-150]],[[78065,61469,0],[-239,-43],[-114,-95],[-7,47],[-20,110],[-246,-35]],[[77439,61453,0],[-45,285]],[[70394,44911,0],[0,-10],[-3,-50]],[[70391,44851,0],[-7,-102],[-7,-111]],[[70377,44638,0],[-2,-29]],[[70375,44609,0],[-7,-117]],[[70368,44492,0],[-3,-54],[-4,-66]],[[70361,44372,0],[-14,-258]],[[70046,43620,0],[-82,35],[-181,77]],[[69783,43732,0],[3,5]],[[69825,43803,0],[-2,1],[-57,22]],[[67809,45173,0],[-4,8],[-4,9]],[[67985,45256,0],[17,-4],[166,-35]],[[68168,45217,0],[174,-37]],[[68421,45162,0],[51,-8]],[[68520,45149,0],[109,-4],[64,2]],[[68875,45175,0],[109,32]],[[69031,45224,0],[19,9],[45,19]],[[69248,45343,0],[46,35]],[[69678,45663,0],[86,63],[116,86]],[[69925,45839,0],[41,24]],[[69966,45863,0],[42,22],[36,18]],[[70044,45903,0],[76,32]],[[70295,45996,0],[89,31]],[[70384,46027,0],[106,37]],[[70490,46064,0],[11,24]],[[70522,46067,0],[38,-97]],[[70370,45896,0],[13,-35],[11,-31],[11,-28]],[[70431,45731,0],[1,-12],[6,-61]],[[70428,45583,0],[-10,-74],[-3,-26]],[[70415,45483,0],[0,-48],[-1,-48]],[[70462,45201,0],[23,-44]],[[64633,35518,0],[-58,77]],[[64575,35595,0],[-42,91]],[[64444,35851,0],[-81,106]],[[64363,35957,0],[-87,96]],[[64248,36084,0],[-93,108]],[[63684,38664,0],[-23,-155],[-7,-115],[-6,-80],[1,-54],[0,-108],[-1,-53],[11,-130],[29,-104],[45,-124],[60,-117],[87,-129],[99,-112],[86,-75],[125,-88],[57,-27],[72,-31],[126,-43],[128,-30],[90,-11],[84,-9],[131,-6],[63,4],[56,12],[67,22],[21,9],[44,-115]],[[63966,39359,0],[54,83]],[[66561,39919,0],[108,8]],[[59462,61522,0],[37,32],[112,95]],[[60283,60611,0],[1,-532]],[[57995,61199,0],[-62,29],[-23,11]],[[57910,61239,0],[-34,17],[-34,19]],[[57267,61985,0],[-10,48],[-60,296]],[[57197,62329,0],[-1,39]],[[57598,62194,0],[-27,-107],[23,-6],[24,-7],[39,-14],[39,-15],[41,-18],[97,-70],[84,-65]],[[57918,61892,0],[104,-76],[44,-32]],[[58066,61784,0],[118,-87],[156,-116]],[[58340,61581,0],[9,-7],[73,-53]],[[58422,61521,0],[132,-99],[72,-54]],[[58848,61275,0],[15,-2],[37,-6]],[[61630,58042,0],[-22,3]],[[61500,58071,0],[-34,8]],[[60791,59569,0],[115,-130]],[[82185,69198,0],[219,-38],[67,52],[213,27],[-8,-22],[-6,-13],[-1,-10],[6,-16],[22,-72],[7,-16],[2,-14],[-1,-9],[-7,-88],[-3,-12],[-4,-3],[-44,-31],[-8,-8],[-7,-10],[-1,-12],[4,-14],[3,-10],[5,-7],[-2,-11],[-7,-12],[-119,-170],[-10,-61],[-13,-64],[-27,-93],[-23,-56],[-42,-32],[-129,-22],[-52,-102],[-299,0]],[[81920,68249,0],[-279,-44],[200,229],[-265,211],[-343,-199],[-235,-112],[-102,208],[17,83],[40,93],[-60,115],[-56,68],[31,35],[72,-10],[187,-118],[13,107],[21,189],[181,159],[237,224],[124,120],[34,-28]],[[81737,69579,0],[116,-56]],[[81853,69523,0],[86,-80]],[[82025,69309,0],[28,-82]],[[82053,69227,0],[132,-29]],[[81998,63103,0],[5,0],[30,-3]],[[82349,62622,0],[159,-96]],[[82671,62423,0],[67,-40],[146,-85]],[[83391,61907,0],[60,-75]],[[83563,61559,0],[27,-129]],[[83612,60931,0],[-184,83],[-44,15]],[[83384,61029,0],[-15,0],[-25,-2]],[[80553,60744,0],[-76,61],[-53,43],[-80,113]],[[80447,61446,0],[15,53]],[[80479,61546,0],[16,17],[14,19]],[[80526,61605,0],[20,22],[18,20]],[[80843,61797,0],[0,-15],[27,7],[42,-11],[11,53],[25,111],[-197,37]],[[80758,62068,0],[-4,23],[10,15],[5,11],[8,10],[16,22],[51,13],[128,43],[-25,130],[-66,10]],[[81159,62732,0],[-6,29],[-13,58]],[[81140,62842,0],[1,41]],[[81141,62902,0],[13,56]],[[81410,63378,0],[71,-21],[52,-14],[7,-2]],[[85844,71500,0],[-2,-37],[0,-14]],[[85842,71449,0],[120,-178],[12,-18],[19,-27],[25,-37],[10,-14],[46,-69]],[[85805,70428,0],[-211,7],[-24,1]],[[85472,70405,0],[-16,-3],[-123,-19]],[[85205,70357,0],[-96,-24],[-44,-11]],[[85065,70322,0],[-52,-9],[-10,-2]],[[85003,70311,0],[-23,-3],[-230,-27]],[[83252,69998,0],[-243,176],[35,17],[-55,19],[-4,5],[-5,54],[-88,96],[-115,14],[-37,60],[28,100],[1,4],[1,12],[0,4],[7,63],[3,41],[24,66],[-50,96],[-43,49],[-30,21],[-41,32],[-46,74],[5,54],[61,14]],[[82736,71093,0],[35,-31],[2,-1]],[[83828,70713,0],[448,153]],[[84491,70591,0],[178,-3],[375,-6]],[[85289,71207,0],[18,48],[19,47]]],"transform":{"scale":[0.0000019202792027920124,0.0000017377273772737583],"translate":[35.079838,31.713771]}} diff --git a/index.html b/index.html index 24c6eea..9b0f0a4 100644 --- a/index.html +++ b/index.html @@ -15,9 +15,11 @@ - - - + + + + + @@ -35,7 +37,7 @@
@@ -146,12 +149,12 @@

היתר בנייה

- - - + + + - - + + - + diff --git a/tests/test_index.js b/tests/test_index.js index 0a63752..5f98cd5 100644 --- a/tests/test_index.js +++ b/tests/test_index.js @@ -13,7 +13,7 @@ casper.options.viewportSize = {width:1024, height:768}; //initializing phantomcss //Starting the tests -casper.test.begin('Basic index.html elements test',27, function suite(test){ +casper.test.begin('Basic index.html elements test',33, function suite(test){ casper.on('page.init',initMock). on('remote.message',log). @@ -40,13 +40,16 @@ casper.test.begin('Basic index.html elements test',27, function suite(test){ //very tied to implentation should think about this //test.assertResourceExists('lib/pdfobject.js'); test.assertResourceExists('lib/path.js'); - test.assertResourceExists('data/jerusalem.js'); + test.assertResourceExists('jerusalem.topojson'); test.assertResourceExists('app.js'); test.assertResourceExists('lib/bootstrap/js/bootstrap.min.js'); // make sure the toggle button exists and is not visible test.assertExists('#toggle-button', 'The toggle button exists'); test.assertNotVisible('#toggle-button', 'The toggle button is not visible'); + + // search note should be hidden until a search is successfuly made + test.assertNotVisible('#search-note-p'); //TODO: phantomcss check map rendering }); @@ -77,6 +80,7 @@ casper.test.begin('Basic index.html elements test',27, function suite(test){ }, function then() { this.wait(3000, function() { test.assertSelectorHasText('#search-error-p', 'כתובת שגויה או שלא נמצאו נתונים', 'Search for an invalid address'); + test.assertNotVisible('#search-note-p'); }); }); @@ -89,6 +93,7 @@ casper.test.begin('Basic index.html elements test',27, function suite(test){ }, function then() { this.wait(3000, function() { test.assertSelectorHasText('#search-error-p', 'לא נמצא גוש התואם לכתובת', 'Search for an address in a differenct city (no gush will be found)'); + test.assertNotVisible('#search-note-p'); }); }); @@ -101,6 +106,7 @@ casper.test.begin('Basic index.html elements test',27, function suite(test){ }, function then() { this.wait(3000, function() { test.assertSelectorDoesntHaveText('#search-error-p', 'כתובת', 'Search for a good address'); + test.assertVisible('#search-note-p'); }); }); }); @@ -116,6 +122,7 @@ casper.test.begin('Basic index.html elements test',27, function suite(test){ }, function then() { this.wait(1000, function() { test.assertSelectorHasText('#search-error-p', 'גוש מספר 1 לא נמצא במפה', 'Search for an invalid gush number'); + test.assertNotVisible('#search-note-p'); }); }); @@ -128,6 +135,7 @@ casper.test.begin('Basic index.html elements test',27, function suite(test){ }, function then() { this.wait(1000, function() { test.assertSelectorDoesntHaveText('#search-error-p', 'גוש', 'Search for a good gush number'); + test.assertNotVisible('#search-note-p'); }); }); }); diff --git a/tests/test_index_small_screen.js b/tests/test_index_small_screen.js index 8fcd45c..f754299 100644 --- a/tests/test_index_small_screen.js +++ b/tests/test_index_small_screen.js @@ -26,7 +26,7 @@ casper.test.begin('Mobile index.html elements test',24, function suite(test){ //very tied to implentation should think about this //test.assertResourceExists('lib/pdfobject.js'); test.assertResourceExists('lib/path.js'); - test.assertResourceExists('data/jerusalem.js'); + test.assertResourceExists('jerusalem.topojson'); test.assertResourceExists('app.js'); test.assertResourceExists('lib/bootstrap/js/bootstrap.min.js'); diff --git a/tools/README.md b/tools/README.md deleted file mode 100644 index 2f3d57f..0000000 --- a/tools/README.md +++ /dev/null @@ -1,53 +0,0 @@ -Tools and scripts for OpenTABA -============================== - -add_muni.py ------------ -Script for adding a new municipality to the website - -Steps: - -+ Get a GeoJSON file representing the gushim map of the new municipality -+ Run the add_muni.py script like so: -``` -Usage: add_muni.py [options] - -Options: - -h, --help show this help message and exit - -c CLIENT_DIR Mandatory, path to the opentaba client directory, eg. - "../../opentaba-client" - -g GUSHIM_FILE Mandatory, local path to the new gushim file in the - opentaba client directory, eg. - "data/gushim/jerusalem.gush.js" - -s SERVER_DIR Mandatory, path to the opentaba server directory, eg. - "../../opentaba-server" - -n MUNI_NAME Mandatory, name of the municipality without special - symbols (for subdomain), eg. "batyam" - -d MUNI_DISPLAY_NAME Mandatory, display name for municipality (if having - Hebrew problems just replace in index file after - script), eg. "בת-ים" - -i INDEX_FILE Local path to the municipality index file in the - opentaba client directory, default="data/index.js" - -t TOPO_OUTPUT_DIR Local path to the output topojson file directory, - default="data" - -f TOPO_FILE_NAME File name for the output topojson file, default - ="[geojson-file-name].json" - -v Print verbose debugging information -``` - (eg. ./add_muni.py -c ../ -g data/geojson/jerusalem.gush.js -s ../../opentaba-server -n jerusalem -d ירושלים -f jerusalem.json) - - > **The script will do the following:** - > - Calculate the center point for the new municipality - > - Add the new municipality to the index.js file - > - Convert the GeoJSON file to TopoJSON - > - Add the gush numbers to the tools/gushim.py file in the server repository - > - Update the test_scrape.py test file with the new number of gushim - -+ Make sure the changes made locally are good and tests are succeeding, commit and push to client and server master branches, then: - 1. For Server - 1. Push changes to heroku remote - 2. Enter bash environment on heroku dyno and run `python tools/update_db.py --force` so the new gushim would be added to mongo - 3. If you want - run `python scrape.py` and `python worker.py` to start scraping now, or wait for the scheduled scraping - 2. For Client - 1. Register a virtual sub-domain with the MUNI_NAME you supplied the script - 2. Merge changes to gh-pages branch diff --git a/tools/add_muni.py b/tools/add_muni.py deleted file mode 100755 index 3fc3594..0000000 --- a/tools/add_muni.py +++ /dev/null @@ -1,248 +0,0 @@ -#!/usr/bin/env python2 -# -*- coding: utf-8 -*- - -""" -This is a helper script for adding a new municipaliy -""" - -import sys -import os -import logging -import json -import re -from optparse import OptionParser -from time import sleep -from subprocess import Popen -from helper.geojson_validator import validate_geojson, GeoJSONValidationException - - -def _which(program): - """ - Make sure a given program is in the running PATH so we can use it - """ - - def is_exe(fpath): - return os.path.isfile(fpath) and os.access(fpath, os.X_OK) - - fpath, fname = os.path.split(program) - if fpath: - if is_exe(program): - return program - else: - for path in os.environ["PATH"].split(os.pathsep): - path = path.strip('"') - exe_file = os.path.join(path, program) - if is_exe(exe_file): - return exe_file - - return None - - -def _load_gushim_json(client_dir, gushim_file): - """ - Load and validate the geojson file given as input for the newmunicipality - """ - - with open(os.path.join(client_dir, gushim_file)) as gushim_data: - try: - gushim_json = json.loads(gushim_data.read().replace('var gushim=', '').rstrip('\n').rstrip(';')) - validate_geojson(gushim_json) - except (ValueError, GeoJSONValidationException) as err: - log.error('Error loading gushim json file. Is it a valid geojson file?: ' + str(err)) - sys.exit(1) - - return gushim_json - - -def _get_muni_center(features): - """ - Get the center point for the municipality - average longtitude and latitude values - """ - - sum_x = 0 - sum_y = 0 - count = 0 - - for f in features: - for cgroup in f['geometry']['coordinates']: - for coord in cgroup: - sum_x += coord[0] - sum_y += coord[1] - count += 1 - - return [eval('{:.6f}'.format(sum_y / count)), eval('{:.6f}'.format(sum_x / count))] - - -def _update_scraper_gushim_list(gushim_json, server_dir, city_name, city_display): - """ - Update the gushim.py file in the server repository so that the gushim dictionary - there would be updated, and then when create_db or update_db are run mongo will - have all of them - """ - - try: - with open(os.path.join(server_dir, 'tools/gushim.py')) as gushim_data: - gushim_dict = json.loads(gushim_data.read().replace('GUSHIM = ', '')) - except: - log.warn('Couldn\'t load scraper\'s gushim list. You can safely ignore if it does not exist yet') - gushim_dict = {} - - if type(gushim_dict) is not dict: - log.warn('The scraper\'s gushim list is not a dictionary. This is normal if just upgrading to multiple municipalities') - gushim_dict = {} - - gushim_count = 0 - for c in gushim_dict.keys(): - gushim_count += len(gushim_dict[c]['list']) - - # either use an existing list of city gushim or create a new one - if city_name not in gushim_dict.keys(): - gushim_dict[city_name] = {'display': city_display, 'list': []} - - for f in gushim_json['features']: - if f['properties']['Name'] != '' and f['properties']['Name'] != '0' and f['properties']['Name'] not in gushim_dict[city_name]['list']: - gushim_dict[city_name]['list'].append(f['properties']['Name']) - gushim_count += 1 - - out = open(os.path.join(server_dir, 'tools/gushim.py'), 'w') - out.write('GUSHIM = ' + json.dumps(gushim_dict, sort_keys=True, indent=4, separators=(',', ': '))) - out.close - - return gushim_count - - -def _update_scraper_test(gushim_count, server_dir): - """ - Modify the test_return_json.py file in the server repository so the tests will continue to run well - (the number of gushim is changing here) - """ - - with open(os.path.join(server_dir, 'Tests/functional_tests/test_return_json.py')) as test_data: - test_code = test_data.read() - - gush_count_line_re = re.compile('(eq_\(len\(j\), )[0-9]+(\))') - test_code = gush_count_line_re.sub('eq_(len(j), %s)' % gushim_count, test_code, count=1) - - out = open(os.path.join(server_dir, 'Tests/functional_tests/test_return_json.py'), 'w') - out.write(test_code) - out.close - - -def _convert_to_topojson(client_dir, topojson_file, gushim_file): - """ - Convert the geojson to topojson - the reason i chose to use the official topojson as a subprocess and not - https://github.com/calvinmetcalf/topojson.py is because topojson.py is not a direct port and i don't - trust it to produce exactly the same results. also it's not on pip - """ - - topojson_full_path = os.path.join(client_dir, topojson_file) - p = Popen(['topojson', '--id-property', 'Name', '-q', '1e5', '-o', topojson_full_path, os.path.join(client_dir, gushim_file)]) - for i in range(60): - if not os.path.isfile(topojson_full_path): - sleep(0.5) - - if not os.path.isfile(topojson_full_path): - log.warn('Could not validate conversion to topojson, convertion may have failed or is just taking too long. If it is successful eventually you will need to change the object\'s name to "gushim" yourself') - else: - log.debug('Successfully converted to topojson') - - log.debug('Changing topojson object name') - with open(topojson_full_path) as topo_data: - j = json.loads(topo_data.read()) - curr_key = j['objects'].keys()[0] - j['objects']['gushim'] = j['objects'][curr_key] - del j['objects'][curr_key] - - out = open(topojson_full_path, 'w') - out.write(json.dumps(j)) - out.close - - -if __name__ == '__main__': - parser = OptionParser() - parser.add_option('-c', dest='client_dir', help='Mandatory, path to the opentaba client directory, eg. "../../opentaba-client"') - parser.add_option('-g', dest='gushim_file', help='Mandatory, local path to the new gushim file in the opentaba client directory, eg. "data/gushim/jerusalem.gush.js"') - parser.add_option('-s', dest='server_dir', help='Mandatory, path to the opentaba server directory, eg. "../../opentaba-server"') - parser.add_option('-n', dest='muni_name', help='Mandatory, name of the municipality without special symbols (for subdomain), eg. "batyam"') - parser.add_option('-d', dest='muni_display_name', help=u'Mandatory, display name for municipality (if having Hebrew problems just replace in index file after script), eg. "בת-ים"') - parser.add_option('-i', dest='index_file', default='data/index.js', help='Local path to the municipality index file in the opentaba client directory, default="data/index.js"') - parser.add_option('-t', dest='topo_output_dir', default='data', help='Local path to the output topojson file directory, default="data"') - parser.add_option('-f', dest='topo_file_name', help='File name for the output topojson file, default="[geojson-file-name].json"') - parser.add_option('-v', dest='verbose', action='store_true', default=False, help='Print verbose debugging information') - (options, args) = parser.parse_args() - - # initialize logging - if options.verbose: - lvl = logging.DEBUG - else: - lvl = logging.INFO - - logging.basicConfig(format='%(asctime)-15s %(name)s %(levelname)s %(message)s', level=lvl) - log = logging.getLogger(__name__) - - # validate options and prerequisites - if not options.client_dir or not options.gushim_file or not options.server_dir or not options.muni_name or not options.muni_display_name: - parser.print_help() - sys.exit(1) - - if _which('topojson') is None: - log.error('topojson does not seem to be in your path...') - sys.exit(1) - - for d in [options.client_dir, options.server_dir, os.path.join(options.client_dir, options.topo_output_dir)]: - if not os.path.isdir(d): - log.error(d + ' does not exists or is not a directory') - sys.exit(1) - - if not os.path.isfile(os.path.join(options.client_dir, options.gushim_file)): - print log.error(os.path.join(options.client_dir, options.gushim_file) + ' does not exists or is not a regular file') - sys.exit(1) - - # load index.json - log.debug('Attempting to load index json') - try: - with open(os.path.join(options.client_dir, options.index_file)) as index_data: - index_json = json.loads(index_data.read().replace('var municipalities = ', '').rstrip('\n').rstrip(';')) - except: - log.warn('Couldn\'t load index json. You can safely ignore if the index does not exist yet') - index_json = {} - - # load json - log.debug('Attempting to load the gushim geojson') - gushim_json = _load_gushim_json(options.client_dir, options.gushim_file) - - new_muni = {} - new_muni['display'] = options.muni_display_name - - # calculate center - log.debug('Calculating the map\'s center point') - new_muni['center'] = _get_muni_center(gushim_json['features']) - - # add to gushim.py - log.debug('Updating the scraper\'s list of gushim') - gushim_count = _update_scraper_gushim_list(gushim_json, options.server_dir, options.muni_name, options.muni_display_name) - - # update server/Tests/functional_test/test_return_json.py - log.debug('Updating the scraper\'s test file\'s number of gushim') - _update_scraper_test(gushim_count, options.server_dir) - - # convert to topojson - if options.topo_file_name: - topojson_file = os.path.join(options.topo_output_dir, options.topo_file_name) - else: - topojson_file = os.path.join(options.topo_output_dir, os.path.splitext(os.path.basename(options.gushim_file))[0]) + '.json' - - log.debug('Converting geojson to topojson') - _convert_to_topojson(options.client_dir, topojson_file, options.gushim_file) - - new_muni['file'] = topojson_file - index_json[options.muni_name] = new_muni - - # write back index.json - log.debug('Updating index json') - out = open(os.path.join(options.client_dir, options.index_file), 'w') - out.write('var municipalities = ' + json.dumps(index_json, sort_keys=True, indent=4, separators=(',', ': ')) + ';') - out.close - - log.info('Done') diff --git a/tools/helper/__init__.py b/tools/helper/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tools/helper/geojson_schemas.py b/tools/helper/geojson_schemas.py deleted file mode 100644 index 22a7494..0000000 --- a/tools/helper/geojson_schemas.py +++ /dev/null @@ -1,193 +0,0 @@ -""" -Copyright (c) 2012, Jason Sanford -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are -permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of - conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright notice, this list - of conditions and the following disclaimer in the documentation and/or other materials - provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -""" - -""" -Code copied from Json Sanford's geojsonlint project: https://github.com/JasonSanford/geojsonlint.com -""" - -position = { - "type": "array", - "minItems": 2, - "maxItems": 3, - "items": { - "type": "number" - } -} - -point = { - "type": "object", - "properties": { - "type": { - "pattern": "^Point$" - }, - "coordinates": { - "type": position - } - } -} - -multipoint = { - "type": "object", - "properties": { - "type": { - "pattern": "^MultiPoint$" - }, - "coordinates": { - "type": "array", - "minItems": 2, - "items": position - } - } -} - -linestring = { - "type": "object", - "properties": { - "type": { - "pattern": "^LineString$" - }, - "coordinates": { - "type": "array", - "minItems": 2, - "items": position - } - } -} - -multilinestring = { - "type": "object", - "properties": { - "type": { - "pattern": "^MultiLineString$" - }, - "coordinates": { - "type": "array", - "items": { - "type": "array", - "minItems": 2, - "items": position - } - } - } -} - -polygon = { - "type": "object", - "properties": { - "type": { - "pattern": "^Polygon$" - }, - "coordinates": { - "type": "array", - "items": { - "type": "array", - "minItems": 4, - "items": position - } - } - } -} - -multipolygon = { - "type": "object", - "properties": { - "type": { - "pattern": "^MultiPolygon$" - }, - "coordinates": { - "type": "array", - "items": { - "type": "array", - "items": { - "type": "array", - "minItems": 4, - "items": position - } - } - } - } -} - -geometrycollection = { - "type": "object", - "properties": { - "type": { - "pattern": "^GeometryCollection$" - }, - "geometries": { - "type": "array", - "items": { - "type": [ - point, - multipoint, - linestring, - multilinestring, - polygon, - multipolygon - ] - } - } - } -} - -feature = { - "type": "object", - "properties": { - "type": { - "pattern": "^Feature$" - }, - "properties": { - "type": [ - "object", - None - ] - }, - "geometry": { - "type": [ - point, - multipoint, - linestring, - multilinestring, - polygon, - multipolygon, - geometrycollection, - None - ] - } - } -} - -featurecollection = { - "type": "object", - "properties": { - "type": { - "pattern": "^FeatureCollection$" - }, - "features": { - "type": "array", - "items": feature - } - } -} diff --git a/tools/helper/geojson_validator.py b/tools/helper/geojson_validator.py deleted file mode 100644 index b144d89..0000000 --- a/tools/helper/geojson_validator.py +++ /dev/null @@ -1,104 +0,0 @@ -""" -Copyright (c) 2012, Jason Sanford -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are -permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of - conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright notice, this list - of conditions and the following disclaimer in the documentation and/or other materials - provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -""" - -""" -Code copied from Json Sanford's geojsonlint project: https://github.com/JasonSanford/geojsonlint.com -""" - -import validictory -from .geojson_schemas import point, multipoint, linestring, multilinestring, polygon, multipolygon, geometrycollection, feature, featurecollection - - -class GeoJSONValidationException(Exception): - pass - - -def validate_geojson(test_geojson): - geojson_types = { - 'Point': point, - 'MultiPoint': multipoint, - 'LineString': linestring, - 'MultiLineString': multilinestring, - 'Polygon': polygon, - 'MultiPolygon': multipolygon, - 'GeometryCollection': geometrycollection, - 'Feature': feature, - 'FeatureCollection': featurecollection, - } - - if not test_geojson['type'] in geojson_types: - raise GeoJSONValidationException('"%s" is not a valid GeoJSON type.' % test_geojson['type']) - - if test_geojson['type'] in ('Feature', 'FeatureCollection', 'GeometryCollection'): - # - # These are special cases that every JSON schema library - # I've tried doesn't seem to handle properly. - # - _validate_special_case(test_geojson) - else: - try: - validictory.validate(test_geojson, geojson_types[test_geojson['type']]) - except validictory.validator.ValidationError as error: - raise GeoJSONValidationException(str(error)) - - if test_geojson['type'] == 'Polygon': - # First and last coordinates must be coincident - _validate_polygon(test_geojson) - - return - -def _validate_special_case(test_geojson): - def _validate_feature_ish_thing(test_geojson): - if 'geometry' not in test_geojson: - raise GeoJSONValidationException('A Feature must have a "geometry" property.') - if 'properties' not in test_geojson: - raise GeoJSONValidationException('A Feature must have a "properties" property.') - if 'type' not in test_geojson: - raise GeoJSONValidationException('A Feature must have a "type" property.') - if test_geojson['geometry'] is not None: - validate_geojson(test_geojson['geometry']) - - if test_geojson['type'] == 'Feature': - _validate_feature_ish_thing(test_geojson) - elif test_geojson['type'] == 'FeatureCollection': - if 'features' not in test_geojson: - raise GeoJSONValidationException('A FeatureCollection must have a "features" property.') - elif not isinstance(test_geojson['features'], (list, tuple,)): - raise GeoJSONValidationException('A FeatureCollection\'s "features" property must be an array.') - for feature in test_geojson['features']: - _validate_feature_ish_thing(feature) - elif test_geojson['type'] == 'GeometryCollection': - if 'geometries' not in test_geojson: - raise GeoJSONValidationException('A GeometryCollection must have a "geometries" property.') - elif not isinstance(test_geojson['geometries'], (list, tuple,)): - raise GeoJSONValidationException('A GeometryCollection\'s "geometries" property must be an array.') - for geometry in test_geojson['geometries']: - if geometry is not None: - validate_geojson(geometry) - -def _validate_polygon(polygon): - for ring in polygon['coordinates']: - if ring[0] != ring[-1]: - raise GeoJSONValidationException('A Polygon\'s first and last points must be equivalent.') diff --git a/tools/requirements.txt b/tools/requirements.txt deleted file mode 100644 index 2b34eb4..0000000 --- a/tools/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -validictory==0.9.3